HomeSort by relevance Sort by last modified time
    Searched refs:MAI (Results 51 - 75 of 92) sorted by null

1 23 4

  /external/llvm/lib/Target/Hexagon/
HexagonAsmPrinter.cpp 221 const MCAsmInfo &MAI,
226 return(new HexagonInstPrinter(MAI, MII, MRI));
  /external/llvm/lib/MC/
MCContext.cpp 32 MCContext::MCContext(const MCAsmInfo *mai, const MCRegisterInfo *mri,
35 : SrcMgr(mgr), MAI(mai), MRI(mri), MOFI(mofi), Allocator(),
117 isTemporary = Name.startswith(MAI->getPrivateGlobalPrefix());
146 << MAI->getLinkerPrivateGlobalPrefix() << "tmp" << NextUniqueID++;
153 << MAI->getPrivateGlobalPrefix() << "tmp" << NextUniqueID++;
MCInstPrinter.cpp 41 OS << " " << MAI.getCommentString() << " " << Annot;
MCSectionMachO.cpp 90 void MCSectionMachO::PrintSwitchToSection(const MCAsmInfo &MAI,
  /external/llvm/lib/Object/
IRObjectFile.cpp 59 std::unique_ptr<MCAsmInfo> MAI(T->createMCAsmInfo(*MRI, Triple));
60 if (!MAI)
73 MCContext MCCtx(MAI.get(), MRI.get(), &MOFI);
81 createMCAsmParser(SrcMgr, MCCtx, *Streamer, *MAI));
  /external/llvm/lib/CodeGen/
LLVMTargetMachine.cpp 168 const MCAsmInfo &MAI = *getMCAsmInfo();
177 getTarget().createMCInstPrinter(MAI.getAssemblerDialect(), MAI,
TargetInstrInfo.cpp 76 const MCAsmInfo &MAI) const {
83 if (*Str == '\n' || strncmp(Str, MAI.getSeparatorString(),
84 strlen(MAI.getSeparatorString())) == 0)
87 Length += MAI.getMaxInstLength();
90 if (atInsnStart && strncmp(Str, MAI.getCommentString(),
91 strlen(MAI.getCommentString())) == 0)
MachineModuleInfo.cpp 253 MachineModuleInfo::MachineModuleInfo(const MCAsmInfo &MAI,
256 : ImmutablePass(ID), Context(&MAI, &MRI, MOFI, nullptr, false) {
  /external/llvm/lib/CodeGen/AsmPrinter/
EHStreamer.cpp 240 if (SawPotentiallyThrowing && Asm->MAI->isExceptionHandlingDwarf()) {
262 if (PreviousIsInvoke && Asm->MAI->isExceptionHandlingDwarf()) {
272 if (Asm->MAI->isExceptionHandlingDwarf())
290 if (SawPotentiallyThrowing && Asm->MAI->isExceptionHandlingDwarf()) {
362 bool IsSJLJ = Asm->MAI->getExceptionHandlingType() == ExceptionHandling::SjLj;
523 assert(Asm->MAI->isExceptionHandlingDwarf());
DIE.cpp 387 if (AP->MAI->doesDwarfUseRelocationsAcrossSections())
556 if (AP->MAI->doesDwarfUseRelocationsAcrossSections() && !DD->useSplitDwarf())
AsmPrinterDwarf.cpp 165 if (MAI->needsDwarfSectionOffsetDirective()) {
  /external/llvm/lib/Target/Mips/
Mips16InstrInfo.cpp 498 const MCAsmInfo &MAI) const {
505 if (*Str == '\n' || strncmp(Str, MAI.getSeparatorString(),
506 strlen(MAI.getSeparatorString())) == 0)
518 Length += MAI.getMaxInstLength();
521 if (atInsnStart && strncmp(Str, MAI.getCommentString(),
522 strlen(MAI.getCommentString())) == 0)
Mips16InstrInfo.h 107 const MCAsmInfo &MAI) const override;
  /external/llvm/include/llvm/MC/
MCContext.h 59 const MCAsmInfo *MAI;
179 explicit MCContext(const MCAsmInfo *MAI, const MCRegisterInfo *MRI,
186 const MCAsmInfo *getAsmInfo() const { return MAI; }
MCExpr.h 280 const MCAsmInfo *MAI;
284 : MCExpr(MCExpr::SymbolRef), Symbol(_Symbol), Kind(_Kind), MAI(_MAI) {
286 assert(MAI);
307 const MCAsmInfo &getMCAsmInfo() const { return *MAI; }
  /external/llvm/tools/llvm-rtdyld/
llvm-rtdyld.cpp 330 std::unique_ptr<MCAsmInfo> MAI(TheTarget->createMCAsmInfo(*MRI, TripleName));
331 assert(MAI && "Unable to create target asm info!");
333 MCContext Ctx(MAI.get(), MRI.get(), nullptr);
342 TheTarget->createMCInstPrinter(0, *MAI, *MII, *MRI, *STI));
  /external/llvm/lib/Target/AArch64/InstPrinter/
AArch64InstPrinter.h 28 AArch64InstPrinter(const MCAsmInfo &MAI, const MCInstrInfo &MII,
123 AArch64AppleInstPrinter(const MCAsmInfo &MAI, const MCInstrInfo &MII,
  /external/llvm/lib/Target/NVPTX/InstPrinter/
NVPTXInstPrinter.cpp 32 NVPTXInstPrinter::NVPTXInstPrinter(const MCAsmInfo &MAI, const MCInstrInfo &MII,
35 : MCInstPrinter(MAI, MII, MRI) {
  /external/llvm/lib/Target/X86/InstPrinter/
X86ATTInstPrinter.h 25 X86ATTInstPrinter(const MCAsmInfo &MAI, const MCInstrInfo &MII,
27 : MCInstPrinter(MAI, MII, MRI) {}
X86IntelInstPrinter.h 26 X86IntelInstPrinter(const MCAsmInfo &MAI, const MCInstrInfo &MII,
28 : MCInstPrinter(MAI, MII, MRI) {}
  /frameworks/compile/mclinker/lib/CodeGen/
MCLDTargetMachine.cpp 283 const MCAsmInfo &MAI = *getTM().getMCAsmInfo();
289 m_pLLVMTarget->createMCInstPrinter(MAI.getAssemblerDialect(), MAI,
  /external/clang/lib/Parse/
ParseStmtAsm.cpp 481 std::unique_ptr<llvm::MCAsmInfo> MAI(TheTarget->createMCAsmInfo(*MRI, TT));
489 llvm::MCContext Ctx(MAI.get(), MRI.get(), MOFI.get(), &TempSrcMgr);
498 createMCAsmParser(TempSrcMgr, Ctx, *Str.get(), *MAI));
506 TheTarget->createMCInstPrinter(1, *MAI, *MII, *MRI, *STI));
  /external/llvm/include/llvm/Support/
TargetRegistry.h 118 const MCAsmInfo &MAI,
398 const MCAsmInfo &MAI,
404 return MCInstPrinterCtorFn(*this, SyntaxVariant, MAI, MII, MRI, STI);
    [all...]
  /external/llvm/include/llvm/CodeGen/
AsmPrinter.h 69 const MCAsmInfo *MAI;
MachineModuleInfo.h 181 MachineModuleInfo(const MCAsmInfo &MAI, const MCRegisterInfo &MRI,

Completed in 1403 milliseconds

1 23 4