HomeSort by relevance Sort by last modified time
    Searched defs:MAI (Results 1 - 25 of 25) sorted by null

  /external/llvm/include/llvm/MC/MCParser/
AsmLexer.h 28 const MCAsmInfo &MAI;
42 AsmLexer(const MCAsmInfo &MAI);
53 const MCAsmInfo &getMAI() const { return MAI; }
  /external/llvm/lib/ExecutionEngine/JIT/
JITDwarfEmitter.h 38 const MCAsmInfo *MAI;
  /external/llvm/lib/Target/Hexagon/MCTargetDesc/
HexagonMCTargetDesc.cpp 58 MCAsmInfo *MAI = new HexagonMCAsmInfo(T, TT);
63 MAI->addInitialFrameState(0, Dst, Src);
65 return MAI;
  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCMCTargetDesc.cpp 65 MCAsmInfo *MAI;
67 MAI = new PPCMCAsmInfoDarwin(isPPC64);
69 MAI = new PPCLinuxMCAsmInfo(isPPC64);
74 MAI->addInitialFrameState(0, Dst, Src);
76 return MAI;
115 const MCAsmInfo &MAI,
119 return new PPCInstPrinter(MAI, MII, MRI, SyntaxVariant);
  /external/llvm/lib/Target/XCore/MCTargetDesc/
XCoreMCTargetDesc.cpp 55 MCAsmInfo *MAI = new XCoreMCAsmInfo(T, TT);
60 MAI->addInitialFrameState(0, Dst, Src);
62 return MAI;
75 const MCAsmInfo &MAI,
79 return new XCoreInstPrinter(MAI, MII, MRI);
  /external/llvm/include/llvm/MC/
MCInstPrinter.h 32 const MCAsmInfo &MAI;
48 MCInstPrinter(const MCAsmInfo &mai, const MCInstrInfo &mii,
50 : CommentStream(0), MAI(mai), MII(mii), MRI(mri), AvailableFeatures(0),
MCContext.h 54 const MCAsmInfo &MAI;
166 explicit MCContext(const MCAsmInfo &MAI, const MCRegisterInfo &MRI,
173 const MCAsmInfo &getAsmInfo() const { return MAI; }
  /external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64MCTargetDesc.cpp 63 MCAsmInfo *MAI = new AArch64ELFMCAsmInfo();
66 MAI->addInitialFrameState(0, Dst, Src);
68 return MAI;
103 const MCAsmInfo &MAI,
108 return new AArch64InstPrinter(MAI, MII, MRI, STI);
  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsMCTargetDesc.cpp 97 MCAsmInfo *MAI = new MipsMCAsmInfo(T, TT);
101 MAI->addInitialFrameState(0, Dst, Src);
103 return MAI;
120 const MCAsmInfo &MAI,
124 return new MipsInstPrinter(MAI, MII, MRI);
  /external/llvm/unittests/Option/
OptionParsingTest.cpp 63 unsigned MAI, MAC;
67 MAI,
  /external/llvm/lib/CodeGen/
LLVMTargetMachine.cpp 162 const MCAsmInfo &MAI = *getMCAsmInfo();
170 getTarget().createMCInstPrinter(MAI.getAssemblerDialect(), MAI,
MachineFunction.cpp 437 const MCAsmInfo &MAI = *getTarget().getMCAsmInfo();
439 const char *Prefix = isLinkerPrivate ? MAI.getLinkerPrivateGlobalPrefix() :
440 MAI.getPrivateGlobalPrefix();
450 const MCAsmInfo &MAI = *Target.getMCAsmInfo();
451 return Ctx.GetOrCreateSymbol(Twine(MAI.getPrivateGlobalPrefix())+
    [all...]
  /external/llvm/lib/MC/MCDisassembler/
Disassembler.cpp 46 const MCAsmInfo *MAI = TheTarget->createMCAsmInfo(Triple);
47 if (!MAI)
67 MCContext *Ctx = new MCContext(*MAI, *MRI, 0);
78 int AsmPrinterVariant = MAI->getAssemblerDialect();
80 *MAI, *MII, *MRI, *STI);
86 TheTarget, MAI, MRI,
209 const MCAsmInfo *MAI = DC->getAsmInfo();
213 int AsmPrinterVariant = MAI->getAssemblerDialect();
216 AsmPrinterVariant, *MAI, *MII, *MRI, *STI);
Disassembler.h 63 llvm::OwningPtr<const llvm::MCAsmInfo> MAI;
85 const Target *theTarget, const MCAsmInfo *mAI,
94 MAI.reset(mAI);
111 const MCAsmInfo *getAsmInfo() const { return MAI.get(); }
  /external/llvm/lib/Target/
Mangler.cpp 49 static bool NameNeedsEscaping(StringRef Str, const MCAsmInfo &MAI) {
54 if (!MAI.doesAllowNameToStartWithDigit() && Str[0] >= '0' && Str[0] <= '9')
59 bool AllowPeriod = MAI.doesAllowPeriodsInName();
60 bool AllowUTF8 = MAI.doesAllowUTF8();
70 const MCAsmInfo &MAI) {
73 if (!MAI.doesAllowNameToStartWithDigit() && Str[0] >= '0' && Str[0] <= '9') {
78 bool AllowPeriod = MAI.doesAllowPeriodsInName();
79 bool AllowUTF8 = MAI.doesAllowUTF8();
112 const MCAsmInfo &MAI = Context.getAsmInfo();
119 const char *Prefix = MAI.getPrivateGlobalPrefix()
    [all...]
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MCTargetDesc.cpp 270 MCAsmInfo *MAI;
273 MAI = new X86_64MCAsmInfoDarwin(TheTriple);
275 MAI = new X86MCAsmInfoDarwin(TheTriple);
278 MAI = new X86ELFMCAsmInfo(TheTriple);
280 MAI = new X86MCAsmInfoMicrosoft(TheTriple);
282 MAI = new X86MCAsmInfoGNUCOFF(TheTriple);
285 MAI = new X86ELFMCAsmInfo(TheTriple);
295 MAI->addInitialFrameState(0, Dst, Src);
300 MAI->addInitialFrameState(0, CSDst, CSSrc);
302 return MAI;
    [all...]
  /frameworks/compile/mclinker/lib/CodeGen/
MCLDTargetMachine.cpp 278 const MCAsmInfo &MAI = *getTM().getMCAsmInfo();
284 getTarget().get()->createMCInstPrinter(MAI.getAssemblerDialect(), MAI,
  /external/llvm/include/llvm/CodeGen/
AsmPrinter.h 64 const MCAsmInfo *MAI;
  /external/llvm/lib/Target/X86/
X86MCInstLower.cpp 40 const MCAsmInfo &MAI;
60 MAI(*TM.getMCAsmInfo()), AsmPrinter(asmprinter) {}
86 Name += MAI.getGlobalPrefix();
205 if (MO.isJTI() && MAI.hasSetDirective()) {
  /external/llvm/lib/Target/AArch64/
AArch64InstrInfo.cpp 565 const MCAsmInfo &MAI = *MF.getTarget().getMCAsmInfo();
571 return getInlineAsmLength(MI.getOperand(0).getSymbolName(), MAI);
  /external/llvm/lib/MC/
MCAsmStreamer.cpp 41 const MCAsmInfo &MAI;
74 : MCStreamer(SK_AsmStreamer, Context), OS(os), MAI(Context.getAsmInfo()),
319 OS.PadToColumn(MAI.getCommentColumn());
321 OS << MAI.getCommentString() << ' ' << Comments.substr(0, Position) << '\n';
338 Section->PrintSwitchToSection(MAI, OS);
360 OS << *Symbol << MAI.getLabelSuffix();
368 OS << *Symbol << MAI.getDebugLabelSuffix();
376 case MCAF_Code16: OS << '\t'<< MAI.getCode16Directive(); break;
377 case MCAF_Code32: OS << '\t'<< MAI.getCode32Directive(); break;
378 case MCAF_Code64: OS << '\t'<< MAI.getCode64Directive(); break
    [all...]
MCDwarf.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMBaseInstrInfo.cpp 555 const MCAsmInfo *MAI = MF->getTarget().getMCAsmInfo();
563 return getInlineAsmLength(MI->getOperand(0).getSymbolName(), *MAI);
    [all...]
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp 128 const MCAsmInfo &MAI;
164 /// AssemblerDialect. ~OU means unset value and use value provided by MAI.
175 const MCAsmInfo &MAI);
195 return MAI.getAssemblerDialect();
470 : Lexer(_MAI), Ctx(_Ctx), Out(_Out), MAI(_MAI), SrcMgr(_SM),
640 if (!NoFinalize && MAI.hasSubsectionsViaSymbols()) {
    [all...]
  /external/llvm/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp     [all...]

Completed in 1320 milliseconds