| /freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-mc/ |
| D | llvm-mc.cpp | 242 const Target *TheTarget = TargetRegistry::lookupTarget(ArchName, TheTriple, in GetTarget() local 244 if (!TheTarget) { in GetTarget() 251 return TheTarget; in GetTarget() 322 static int AssembleInput(const char *ProgName, const Target *TheTarget, in AssembleInput() argument 329 TheTarget->createMCAsmParser(STI, *Parser, MCII, MCOptions)); in AssembleInput() 371 const Target *TheTarget = GetTarget(ProgName); in main() local 372 if (!TheTarget) in main() 396 std::unique_ptr<MCRegisterInfo> MRI(TheTarget->createMCRegInfo(TripleName)); in main() 400 TheTarget->createMCAsmInfo(*MRI, TripleName, MCOptions)); in main() 425 TheTarget->createMCSubtargetInfo(TripleName, MCPU, FeaturesStr)); in main() [all …]
|
| /freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-dwp/ |
| D | llvm-dwp.cpp | 129 const Target *TheTarget = in main() local 131 if (!TheTarget) in main() 136 std::unique_ptr<MCRegisterInfo> MRI(TheTarget->createMCRegInfo(TripleName)); in main() 142 TheTarget->createMCAsmInfo(*MRI, TripleName, MCOptions)); in main() 147 TheTarget->createMCSubtargetInfo(TripleName, "", "")); in main() 153 TheTarget->createMCObjectFileInfo(MC, /*PIC=*/false)); in main() 157 auto MAB = TheTarget->createMCAsmBackend(*MSTI, *MRI, Options); in main() 161 std::unique_ptr<MCInstrInfo> MII(TheTarget->createMCInstrInfo()); in main() 165 MCCodeEmitter *MCE = TheTarget->createMCCodeEmitter(*MII, *MRI, MC); in main() 183 std::unique_ptr<MCStreamer> MS(TheTarget->createMCObjectStreamer( in main()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/MC/MCDisassembler/ |
| D | Disassembler.cpp | 52 const Target *TheTarget = TargetRegistry::lookupTarget(TT, Error); in LLVMCreateDisasmCPUFeatures() local 53 if (!TheTarget) in LLVMCreateDisasmCPUFeatures() 56 std::unique_ptr<const MCRegisterInfo> MRI(TheTarget->createMCRegInfo(TT)); in LLVMCreateDisasmCPUFeatures() 63 TheTarget->createMCAsmInfo(*MRI, TT, MCOptions)); in LLVMCreateDisasmCPUFeatures() 67 std::unique_ptr<const MCInstrInfo> MII(TheTarget->createMCInstrInfo()); in LLVMCreateDisasmCPUFeatures() 72 TheTarget->createMCSubtargetInfo(TT, CPU, Features)); in LLVMCreateDisasmCPUFeatures() 84 TheTarget->createMCDisassembler(*STI, *Ctx)); in LLVMCreateDisasmCPUFeatures() 89 TheTarget->createMCRelocationInfo(TT, *Ctx)); in LLVMCreateDisasmCPUFeatures() 93 std::unique_ptr<MCSymbolizer> Symbolizer(TheTarget->createMCSymbolizer( in LLVMCreateDisasmCPUFeatures() 99 std::unique_ptr<MCInstPrinter> IP(TheTarget->createMCInstPrinter( in LLVMCreateDisasmCPUFeatures() [all …]
|
| D | Disassembler.h | 60 const Target *TheTarget; variable 88 const Target *TheTarget, in LLVMDisasmContext() argument 97 GetOpInfo(GetOpInfo), SymbolLookUp(SymbolLookUp), TheTarget(TheTarget), in LLVMDisasmContext() 108 const Target *getTarget() const { return TheTarget; } in getTarget()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/ |
| D | TargetSelect.cpp | 48 const Target *TheTarget = nullptr; in selectTarget() local 60 TheTarget = &*I; in selectTarget() 69 TheTarget = TargetRegistry::lookupTarget(TheTriple.getTriple(), Error); in selectTarget() 70 if (!TheTarget) { in selectTarget() 88 TheTarget->createTargetMachine(TheTriple.getTriple(), MCPU, FeaturesStr, in selectTarget()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-mca/ |
| D | llvm-mca.cpp | 240 const Target *TheTarget = in getTarget() local 242 if (!TheTarget) { in getTarget() 251 return TheTarget; in getTarget() 361 const Target *TheTarget = getTarget(ProgName); in main() local 362 if (!TheTarget) in main() 380 TheTarget->createMCSubtargetInfo(TripleName, MCPU, MATTR)); in main() 407 std::unique_ptr<MCRegisterInfo> MRI(TheTarget->createMCRegInfo(TripleName)); in main() 412 TheTarget->createMCAsmInfo(*MRI, TripleName, MCOptions)); in main() 422 TheTarget->createMCObjectFileInfo(Ctx, /*PIC=*/false)); in main() 427 std::unique_ptr<MCInstrInfo> MCII(TheTarget->createMCInstrInfo()); in main() [all …]
|
| D | CodeRegionGenerator.h | 49 const Target &TheTarget; variable 60 : CodeRegionGenerator(SM), TheTarget(T), Ctx(C), MAI(A), STI(S), MCII(I), in AsmCodeRegionGenerator()
|
| D | CodeRegionGenerator.cpp | 121 TheTarget.createAsmTargetStreamer(Str, FOSRef, IP.get(), in parseCodeRegions() 135 TheTarget.createMCAsmParser(STI, *Parser, MCII, Opts)); in parseCodeRegions()
|
| /freebsd-12-stable/contrib/llvm-project/clang/tools/driver/ |
| D | cc1as_main.cpp | 340 const Target *TheTarget = TargetRegistry::lookupTarget(Opts.Triple, Error); in ExecuteAssemblerImpl() local 341 if (!TheTarget) in ExecuteAssemblerImpl() 361 std::unique_ptr<MCRegisterInfo> MRI(TheTarget->createMCRegInfo(Opts.Triple)); in ExecuteAssemblerImpl() 366 TheTarget->createMCAsmInfo(*MRI, Opts.Triple, MCOptions)); in ExecuteAssemblerImpl() 390 TheTarget->createMCSubtargetInfo(Opts.Triple, Opts.CPU, FS)); in ExecuteAssemblerImpl() 410 TheTarget->createMCObjectFileInfo(Ctx, PIC)); in ExecuteAssemblerImpl() 442 std::unique_ptr<MCInstrInfo> MCII(TheTarget->createMCInstrInfo()); in ExecuteAssemblerImpl() 454 MCInstPrinter *IP = TheTarget->createMCInstPrinter( in ExecuteAssemblerImpl() 459 CE.reset(TheTarget->createMCCodeEmitter(*MCII, *MRI, Ctx)); in ExecuteAssemblerImpl() 461 TheTarget->createMCAsmBackend(*STI, *MRI, MCOptions)); in ExecuteAssemblerImpl() [all …]
|
| D | cc1_main.cpp | 170 const llvm::Target *TheTarget = in PrintSupportedCPUs() local 172 if (!TheTarget) { in PrintSupportedCPUs() 180 TheTarget->createTargetMachine(TargetStr, "", "+cpuhelp", Options, None)); in PrintSupportedCPUs()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/ |
| D | TargetRegistry.cpp | 30 const Target *TheTarget = nullptr; in lookupTarget() local 40 TheTarget = &*I; in lookupTarget() 50 TheTarget = TargetRegistry::lookupTarget(TheTriple.getTriple(), TempError); in lookupTarget() 51 if (!TheTarget) { in lookupTarget() 59 return TheTarget; in lookupTarget()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/DWARFLinker/ |
| D | DWARFStreamer.cpp | 36 const Target *TheTarget = in init() local 38 if (!TheTarget) in init() 43 MRI.reset(TheTarget->createMCRegInfo(TripleName)); in init() 49 MAI.reset(TheTarget->createMCAsmInfo(*MRI, TripleName, MCOptions)); in init() 53 MSTI.reset(TheTarget->createMCSubtargetInfo(TripleName, "", "")); in init() 58 MOFI.reset(TheTarget->createMCObjectFileInfo(*MC, /*PIC=*/false)); in init() 61 MAB = TheTarget->createMCAsmBackend(*MSTI, *MRI, MCOptions); in init() 65 MII.reset(TheTarget->createMCInstrInfo()); in init() 69 MCE = TheTarget->createMCCodeEmitter(*MII, *MRI, *MC); in init() 75 MIP = TheTarget->createMCInstPrinter(TheTriple, MAI->getAssemblerDialect(), in init() [all …]
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
| D | JITTargetMachineBuilder.cpp | 46 auto *TheTarget = TargetRegistry::lookupTarget(TT.getTriple(), ErrMsg); in createTargetMachine() local 47 if (!TheTarget) in createTargetMachine() 51 TheTarget->createTargetMachine(TT.getTriple(), CPU, Features.getString(), in createTargetMachine()
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/Parse/ |
| D | ParseStmtAsm.cpp | 535 const llvm::Target *TheTarget = nullptr; in ParseMicrosoftAsmStatement() local 540 TheTarget = llvm::TargetRegistry::lookupTarget(TT, Error); in ParseMicrosoftAsmStatement() 541 if (!TheTarget) in ParseMicrosoftAsmStatement() 555 if (!TheTarget || AsmToks.empty()) { in ParseMicrosoftAsmStatement() 568 std::unique_ptr<llvm::MCRegisterInfo> MRI(TheTarget->createMCRegInfo(TT)); in ParseMicrosoftAsmStatement() 577 TheTarget->createMCAsmInfo(*MRI, TT, MCOptions)); in ParseMicrosoftAsmStatement() 579 std::unique_ptr<llvm::MCInstrInfo> MII(TheTarget->createMCInstrInfo()); in ParseMicrosoftAsmStatement() 581 TheTarget->createMCSubtargetInfo(TT, TO.CPU, FeaturesStr)); in ParseMicrosoftAsmStatement() 593 TheTarget->createMCObjectFileInfo(Ctx, /*PIC=*/false)); in ParseMicrosoftAsmStatement() 607 TheTarget->createMCAsmParser(*STI, *Parser, *MII, MCOptions)); in ParseMicrosoftAsmStatement() [all …]
|
| /freebsd-12-stable/contrib/llvm-project/llvm/tools/llc/ |
| D | llc.cpp | 486 const Target *TheTarget = nullptr; in compileModule() local 502 TheTarget = in compileModule() 504 if (!TheTarget) { in compileModule() 516 Target = std::unique_ptr<TargetMachine>(TheTarget->createTargetMachine( in compileModule() 545 TheTarget = in compileModule() 547 if (!TheTarget) { in compileModule() 561 Target = std::unique_ptr<TargetMachine>(TheTarget->createTargetMachine( in compileModule() 578 GetOutputStream(TheTarget->getName(), TheTriple.getOS(), argv[0]); in compileModule()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/ |
| D | LLVMTargetMachine.cpp | 42 MRI.reset(TheTarget.createMCRegInfo(getTargetTriple().str())); in initAsmInfo() 44 MII.reset(TheTarget.createMCInstrInfo()); in initAsmInfo() 50 STI.reset(TheTarget.createMCSubtargetInfo( in initAsmInfo() 54 MCAsmInfo *TmpAsmInfo = TheTarget.createMCAsmInfo( in initAsmInfo()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Sparc/MCTargetDesc/ |
| D | SparcAsmBackend.cpp | 121 const Target &TheTarget; member in __anond60c5d2d0111::SparcAsmBackend 128 TheTarget(T), Is64Bit(StringRef(TheTarget.getName()) == "sparcv9") {} in SparcAsmBackend()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-rtdyld/ |
| D | llvm-rtdyld.cpp | 739 const Target *TheTarget = in linkAndVerify() local 741 if (!TheTarget) in linkAndVerify() 747 TheTarget->createMCSubtargetInfo(TripleName, MCPU, "")); in linkAndVerify() 751 std::unique_ptr<MCRegisterInfo> MRI(TheTarget->createMCRegInfo(TripleName)); in linkAndVerify() 757 TheTarget->createMCAsmInfo(*MRI, TripleName, MCOptions)); in linkAndVerify() 764 TheTarget->createMCDisassembler(*STI, Ctx)); in linkAndVerify() 768 std::unique_ptr<MCInstrInfo> MII(TheTarget->createMCInstrInfo()); in linkAndVerify() 773 TheTarget->createMCInstPrinter(Triple(TripleName), 0, *MAI, *MII, *MRI)); in linkAndVerify()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/VE/MCTargetDesc/ |
| D | VEAsmBackend.cpp | 95 const Target &TheTarget; member in __anon4a2068510111::VEAsmBackend 98 VEAsmBackend(const Target &T) : MCAsmBackend(support::little), TheTarget(T) {} in VEAsmBackend()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-objdump/ |
| D | llvm-objdump.cpp | 364 const Target *TheTarget = TargetRegistry::lookupTarget(ArchName, TheTriple, in getTarget() local 366 if (!TheTarget) in getTarget() 371 return TheTarget; in getTarget() 1102 static void disassembleObject(const Target *TheTarget, const ObjectFile *Obj, in disassembleObject() argument 1268 addSymbolizer(Ctx, TheTarget, TripleName, DisAsm, SectionAddr, Bytes, in disassembleObject() 1631 const Target *TheTarget = getTarget(Obj); in disassembleObject() local 1640 TheTarget->createMCRegInfo(TripleName)); in disassembleObject() 1648 TheTarget->createMCAsmInfo(*MRI, TripleName, MCOptions)); in disassembleObject() 1657 TheTarget->createMCSubtargetInfo(TripleName, MCPU, Features.getString())); in disassembleObject() 1661 std::unique_ptr<const MCInstrInfo> MII(TheTarget->createMCInstrInfo()); in disassembleObject() [all …]
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Lanai/ |
| D | LanaiTargetMachine.h | 29 LanaiTargetMachine(const Target &TheTarget, const Triple &TargetTriple,
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Target/ |
| D | TargetMachine.h | 84 const Target &TheTarget; variable 121 const Target &getTarget() const { return TheTarget; } in getTarget()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/ |
| D | TargetMachine.cpp | 37 : TheTarget(T), DL(DataLayoutString), TargetTriple(TT), in TargetMachine()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/tools/opt/ |
| D | opt.cpp | 453 const Target *TheTarget = in GetTargetMachine() local 456 if (!TheTarget) { in GetTargetMachine() 460 return TheTarget->createTargetMachine( in GetTargetMachine()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/LTO/ |
| D | ThinLTOCodeGenerator.cpp | 642 const Target *TheTarget = in create() local 644 if (!TheTarget) { in create() 654 TheTarget->createTargetMachine(TheTriple.str(), MCpu, FeatureStr, Options, in create()
|