HomeSort by relevance Sort by last modified time
    Searched refs:MAI (Results 1 - 25 of 86) 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);
MCSectionCOFF.cpp 22 const MCAsmInfo &MAI) const {
31 void MCSectionCOFF::PrintSwitchToSection(const MCAsmInfo &MAI,
35 if (ShouldOmitSectionDirective(SectionName, MAI)) {
MCValue.cpp 17 void MCValue::print(raw_ostream &OS, const MCAsmInfo *MAI) const {
MCSectionELF.cpp 24 const MCAsmInfo &MAI) const {
28 (Name == ".bss" && !MAI.usesELFSectionDirectiveForBSS()))
34 void MCSectionELF::PrintSwitchToSection(const MCAsmInfo &MAI,
37 if (ShouldOmitSectionDirective(SectionName, MAI)) {
65 if (MAI.usesSunStyleELFSectionSwitchSyntax() &&
106 if (MAI.getCommentString()[0] == '@')
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...]
  /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/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/NVPTX/
NVPTXSection.h 34 virtual void PrintSwitchToSection(const MCAsmInfo &MAI,
  /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/
MCSectionCOFF.h 50 bool ShouldOmitSectionDirective(StringRef Name, const MCAsmInfo &MAI) const;
62 virtual void PrintSwitchToSection(const MCAsmInfo &MAI,
MCSection.h 51 virtual void PrintSwitchToSection(const MCAsmInfo &MAI,
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),
MCSectionELF.h 59 bool ShouldOmitSectionDirective(StringRef Name, const MCAsmInfo &MAI) const;
72 void PrintSwitchToSection(const MCAsmInfo &MAI,
  /external/llvm/lib/Target/MBlaze/InstPrinter/
MBlazeInstPrinter.h 24 MBlazeInstPrinter(const MCAsmInfo &MAI, const MCInstrInfo &MII,
26 : MCInstPrinter(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 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/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);
  /external/llvm/lib/Target/MSP430/MCTargetDesc/
MSP430MCTargetDesc.cpp 63 const MCAsmInfo &MAI,
68 return new MSP430InstPrinter(MAI, MII, MRI);
  /external/llvm/lib/Target/Mips/InstPrinter/
MipsInstPrinter.h 80 MipsInstPrinter(const MCAsmInfo &MAI, const MCInstrInfo &MII,
82 : MCInstPrinter(MAI, MII, MRI) {}
  /external/llvm/lib/Target/R600/InstPrinter/
AMDGPUInstPrinter.h 24 AMDGPUInstPrinter(const MCAsmInfo &MAI, const MCInstrInfo &MII,
26 : MCInstPrinter(MAI, MII, MRI) {}
  /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/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...]
  /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 353 milliseconds

1 2 3 4