Home
last modified time | relevance | path

Searched refs:TheTarget (Results 1 – 13 of 13) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/MCDisassembler/
DDisassembler.cpp52 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()
83 TheTarget->createMCDisassembler(*STI, *Ctx)); in LLVMCreateDisasmCPUFeatures()
88 TheTarget->createMCRelocationInfo(TT, *Ctx)); in LLVMCreateDisasmCPUFeatures()
92 std::unique_ptr<MCSymbolizer> Symbolizer(TheTarget->createMCSymbolizer( in LLVMCreateDisasmCPUFeatures()
98 std::unique_ptr<MCInstPrinter> IP(TheTarget->createMCInstPrinter( in LLVMCreateDisasmCPUFeatures()
[all …]
DDisassembler.h60 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()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/
DTargetSelect.cpp48 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()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DTargetRegistry.cpp30 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()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Orc/
DJITTargetMachineBuilder.cpp45 auto *TheTarget = TargetRegistry::lookupTarget(TT.getTriple(), ErrMsg); in createTargetMachine() local
46 if (!TheTarget) in createTargetMachine()
50 TheTarget->createTargetMachine(TT.getTriple(), CPU, Features.getString(), in createTargetMachine()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DLLVMTargetMachine.cpp42 MRI.reset(TheTarget.createMCRegInfo(getTargetTriple().str())); in initAsmInfo()
43 MII.reset(TheTarget.createMCInstrInfo()); in initAsmInfo()
48 STI.reset(TheTarget.createMCSubtargetInfo( in initAsmInfo()
51 MCAsmInfo *TmpAsmInfo = TheTarget.createMCAsmInfo( in initAsmInfo()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Sparc/MCTargetDesc/
DSparcAsmBackend.cpp119 const Target &TheTarget; member in __anon208c598c0111::SparcAsmBackend
126 TheTarget(T), Is64Bit(StringRef(TheTarget.getName()) == "sparcv9") {} in SparcAsmBackend()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Target/
DTargetMachine.h72 const Target &TheTarget; variable
109 const Target &getTarget() const { return TheTarget; } in getTarget()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Lanai/
DLanaiTargetMachine.h32 LanaiTargetMachine(const Target &TheTarget, const Triple &TargetTriple,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/
DTargetMachine.cpp37 : TheTarget(T), DL(DataLayoutString), TargetTriple(TT), TargetCPU(CPU), in TargetMachine()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/LTO/
DLTOBackend.cpp131 createTargetMachine(const Config &Conf, const Target *TheTarget, Module &M) { in createTargetMachine() argument
151 return std::unique_ptr<TargetMachine>(TheTarget->createTargetMachine( in createTargetMachine()
DThinLTOCodeGenerator.cpp546 const Target *TheTarget = in create() local
548 if (!TheTarget) { in create()
558 TheTarget->createTargetMachine(TheTriple.str(), MCpu, FeatureStr, Options, in create()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/
DDWARFContext.cpp1915 const Target *TheTarget = in loadRegisterInfo() local
1920 RegInfo.reset(TheTarget->createMCRegInfo(TT.str())); in loadRegisterInfo()