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

1 2 3 4

  /external/llvm/lib/MC/
MCInst.cpp 18 void MCOperand::print(raw_ostream &OS, const MCAsmInfo *MAI) const {
42 void MCInst::print(raw_ostream &OS, const MCAsmInfo *MAI) const {
46 getOperand(i).print(OS, MAI);
51 void MCInst::dump_pretty(raw_ostream &OS, const MCAsmInfo *MAI,
62 getOperand(i).print(OS, MAI);
MCValue.cpp 17 void MCValue::print(raw_ostream &OS, const MCAsmInfo *MAI) const {
MCSectionELF.cpp 25 const MCAsmInfo &MAI) const {
29 (Name == ".bss" && !MAI.usesELFSectionDirectiveForBSS()))
35 void MCSectionELF::PrintSwitchToSection(const MCAsmInfo &MAI,
39 if (ShouldOmitSectionDirective(SectionName, MAI)) {
70 if (MAI.usesSunStyleELFSectionSwitchSyntax() &&
111 if (MAI.getCommentString()[0] == '@')
MCSectionCOFF.cpp 22 const MCAsmInfo &MAI) const {
42 void MCSectionCOFF::PrintSwitchToSection(const MCAsmInfo &MAI,
47 if (ShouldOmitSectionDirective(SectionName, MAI)) {
MCAsmStreamer.cpp 41 const MCAsmInfo *MAI;
74 : MCStreamer(SK_AsmStreamer, Context), OS(os), MAI(Context.getAsmInfo()),
312 OS.PadToColumn(MAI->getCommentColumn());
314 OS << MAI->getCommentString() << ' ' << Comments.substr(0, Position) <<'\n';
332 Section->PrintSwitchToSection(*MAI, OS, Subsection);
354 OS << *Symbol << MAI->getLabelSuffix();
362 OS << *Symbol << MAI->getDebugLabelSuffix();
370 case MCAF_Code16: OS << '\t'<< MAI->getCode16Directive();break;
371 case MCAF_Code32: OS << '\t'<< MAI->getCode32Directive();break;
372 case MCAF_Code64: OS << '\t'<< MAI->getCode64Directive();break
    [all...]
  /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/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/InstPrinter/
AMDGPUInstPrinter.h 13 AMDGPUInstPrinter(const MCAsmInfo &MAI, const MCInstrInfo &MII,
15 : MCInstPrinter(MAI, MII, MRI) {}
  /external/mesa3d/src/gallium/drivers/radeon/InstPrinter/
AMDGPUInstPrinter.h 13 AMDGPUInstPrinter(const MCAsmInfo &MAI, const MCInstrInfo &MII,
15 : MCInstPrinter(MAI, MII, MRI) {}
  /external/llvm/lib/Target/
Mangler.cpp 50 static bool NameNeedsEscaping(StringRef Str, const MCAsmInfo *MAI) {
55 if (!MAI->doesAllowNameToStartWithDigit() && Str[0] >= '0' && Str[0] <= '9')
60 bool AllowPeriod = MAI->doesAllowPeriodsInName();
61 bool AllowUTF8 = MAI->doesAllowUTF8();
71 const MCAsmInfo *MAI) {
74 if (!MAI->doesAllowNameToStartWithDigit() && Str[0] >= '0' && Str[0] <= '9') {
79 bool AllowPeriod = MAI->doesAllowPeriodsInName();
80 bool AllowUTF8 = MAI->doesAllowUTF8();
114 const MCAsmInfo *MAI = Context.getAsmInfo();
121 const char *Prefix = MAI->getPrivateGlobalPrefix()
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXSection.h 34 virtual void PrintSwitchToSection(const MCAsmInfo &MAI,
  /external/llvm/lib/Target/XCore/MCTargetDesc/
XCoreMCTargetDesc.cpp 56 MCAsmInfo *MAI = new XCoreMCAsmInfo(TT);
60 MAI->addInitialFrameState(Inst);
62 return MAI;
78 const MCAsmInfo &MAI,
82 return new XCoreInstPrinter(MAI, MII, MRI);
  /external/llvm/lib/Target/MSP430/InstPrinter/
MSP430InstPrinter.h 24 MSP430InstPrinter(const MCAsmInfo &MAI, const MCInstrInfo &MII,
26 : MCInstPrinter(MAI, MII, MRI) {}
  /external/llvm/lib/Target/XCore/InstPrinter/
XCoreInstPrinter.h 26 XCoreInstPrinter(const MCAsmInfo &MAI, const MCInstrInfo &MII,
28 : MCInstPrinter(MAI, MII, MRI) {}
  /external/llvm/lib/Target/Hexagon/MCTargetDesc/
HexagonMCTargetDesc.cpp 59 MCAsmInfo *MAI = new HexagonMCAsmInfo(TT);
64 MAI->addInitialFrameState(Inst);
66 return MAI;
  /external/llvm/unittests/Option/
OptionParsingTest.cpp 70 unsigned MAI, MAC;
71 OwningPtr<InputArgList> AL(T.ParseArgs(Args, array_endof(Args), MAI, MAC));
113 unsigned MAI, MAC;
117 AL.reset(T.ParseArgs(Args, array_endof(Args), MAI, MAC,
125 AL.reset(T.ParseArgs(Args, array_endof(Args), MAI, MAC,
133 AL.reset(T.ParseArgs(NewArgs, array_endof(NewArgs), MAI, MAC));
142 unsigned MAI, MAC;
145 OwningPtr<InputArgList> AL(T.ParseArgs(MyArgs, array_endof(MyArgs), MAI, MAC));
151 unsigned MAI, MAC;
154 OwningPtr<InputArgList> AL(T.ParseArgs(MyArgs, array_endof(MyArgs), MAI, MAC))
    [all...]
  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCMCTargetDesc.cpp 67 MCAsmInfo *MAI;
69 MAI = new PPCMCAsmInfoDarwin(isPPC64);
71 MAI = new PPCLinuxMCAsmInfo(isPPC64);
77 MAI->addInitialFrameState(Inst);
79 return MAI;
119 const MCAsmInfo &MAI,
124 return new PPCInstPrinter(MAI, MII, MRI, isDarwin);
  /external/llvm/include/llvm/MC/
MCSection.h 52 virtual void PrintSwitchToSection(const MCAsmInfo &MAI,
MCSectionCOFF.h 61 bool ShouldOmitSectionDirective(StringRef Name, const MCAsmInfo &MAI) const;
76 virtual void PrintSwitchToSection(const MCAsmInfo &MAI,
MCSectionELF.h 59 bool ShouldOmitSectionDirective(StringRef Name, const MCAsmInfo &MAI) const;
72 void PrintSwitchToSection(const MCAsmInfo &MAI,
  /external/llvm/lib/MC/MCDisassembler/
Disassembler.cpp 53 const MCAsmInfo *MAI = TheTarget->createMCAsmInfo(*MRI, Triple);
54 if (!MAI)
70 MCContext *Ctx = new MCContext(MAI, MRI, 0);
91 int AsmPrinterVariant = MAI->getAssemblerDialect();
93 *MAI, *MII, *MRI, *STI);
99 TheTarget, MAI, MRI,
222 const MCAsmInfo *MAI = DC->getAsmInfo();
226 int AsmPrinterVariant = MAI->getAssemblerDialect();
229 AsmPrinterVariant, *MAI, *MII, *MRI, *STI);
  /external/llvm/lib/Target/MSP430/MCTargetDesc/
MSP430MCTargetDesc.cpp 63 const MCAsmInfo &MAI,
68 return new MSP430InstPrinter(MAI, MII, MRI);
  /external/llvm/lib/Target/PowerPC/InstPrinter/
PPCInstPrinter.h 26 PPCInstPrinter(const MCAsmInfo &MAI, const MCInstrInfo &MII,
28 : MCInstPrinter(MAI, MII, MRI), IsDarwin(isDarwin) {}
  /external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64MCTargetDesc.cpp 64 MCAsmInfo *MAI = new AArch64ELFMCAsmInfo();
67 MAI->addInitialFrameState(Inst);
69 return MAI;
110 const MCAsmInfo &MAI,
115 return new AArch64InstPrinter(MAI, MII, MRI, STI);
  /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);
296 MAI->addInitialFrameState(Inst);
302 MAI->addInitialFrameState(Inst2);
304 return MAI;
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinterInlineAsm.cpp 115 *MAI));
433 OutStreamer.EmitRawText(Twine("\t")+MAI->getCommentString()+
434 MAI->getInlineAsmStart());
435 OutStreamer.EmitRawText(Twine("\t")+MAI->getCommentString()+
436 MAI->getInlineAsmEnd());
443 OutStreamer.EmitRawText(Twine("\t")+MAI->getCommentString()+
444 MAI->getInlineAsmStart());
467 int AsmPrinterVariant = MAI->getAssemblerDialect();
481 OutStreamer.EmitRawText(Twine("\t")+MAI->getCommentString()+
482 MAI->getInlineAsmEnd())
    [all...]

Completed in 1831 milliseconds

1 2 3 4