Searched refs:TheTarget (Results 1 - 25 of 26) sorted by relevance

12

/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/
H A DTargetSelect.cpp48 const Target *TheTarget = nullptr; local
60 TheTarget = &*I;
69 TheTarget = TargetRegistry::lookupTarget(TheTriple.getTriple(), Error);
70 if (!TheTarget) {
88 TheTarget->createTargetMachine(TheTriple.getTriple(), MCPU, FeaturesStr,
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/
H A DCodeRegionGenerator.h48 const Target &TheTarget; member in class:llvm::mca::final
59 : CodeRegionGenerator(SM), TheTarget(T), Ctx(C), MAI(A), STI(S), MCII(I),
H A Dllvm-mca.cpp225 const Target *TheTarget = local
227 if (!TheTarget) {
233 return TheTarget;
308 const Target *TheTarget = getTarget(ProgName);
309 if (!TheTarget)
330 TheTarget->createMCSubtargetInfo(TripleName, MCPU, MATTR));
353 std::unique_ptr<MCRegisterInfo> MRI(TheTarget->createMCRegInfo(TripleName));
358 TheTarget->createMCAsmInfo(*MRI, TripleName, MCOptions));
373 std::unique_ptr<MCInstrInfo> MCII(TheTarget->createMCInstrInfo());
376 TheTarget
[all...]
H A DCodeRegionGenerator.cpp125 TheTarget.createMCAsmParser(STI, *Parser, MCII, Opts));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DJITTargetMachineBuilder.cpp45 auto *TheTarget = TargetRegistry::lookupTarget(TT.getTriple(), ErrMsg); local
46 if (!TheTarget)
50 TheTarget->createTargetMachine(TT.getTriple(), CPU, Features.getString(),
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCDisassembler/
H A DDisassembler.h60 const Target *TheTarget; member in class:llvm::LLVMDisasmContext
88 const Target *TheTarget,
97 GetOpInfo(GetOpInfo), SymbolLookUp(SymbolLookUp), TheTarget(TheTarget),
108 const Target *getTarget() const { return TheTarget; }
85 LLVMDisasmContext(std::string TripleName, void *DisInfo, int TagType, LLVMOpInfoCallback GetOpInfo, LLVMSymbolLookupCallback SymbolLookUp, const Target *TheTarget, std::unique_ptr<const MCAsmInfo> &&MAI, std::unique_ptr<const MCRegisterInfo> &&MRI, std::unique_ptr<const MCSubtargetInfo> &&MSI, std::unique_ptr<const MCInstrInfo> &&MII, std::unique_ptr<const llvm::MCContext> &&Ctx, std::unique_ptr<const MCDisassembler> &&DisAsm, std::unique_ptr<MCInstPrinter> &&IP) argument
H A DDisassembler.cpp52 const Target *TheTarget = TargetRegistry::lookupTarget(TT, Error); local
53 if (!TheTarget)
56 std::unique_ptr<const MCRegisterInfo> MRI(TheTarget->createMCRegInfo(TT));
63 TheTarget->createMCAsmInfo(*MRI, TT, MCOptions));
67 std::unique_ptr<const MCInstrInfo> MII(TheTarget->createMCInstrInfo());
72 TheTarget->createMCSubtargetInfo(TT, CPU, Features));
83 TheTarget->createMCDisassembler(*STI, *Ctx));
88 TheTarget->createMCRelocationInfo(TT, *Ctx));
92 std::unique_ptr<MCSymbolizer> Symbolizer(TheTarget->createMCSymbolizer(
98 std::unique_ptr<MCInstPrinter> IP(TheTarget
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mc/
H A Dllvm-mc.cpp200 const Target *TheTarget = TargetRegistry::lookupTarget(ArchName, TheTriple, local
202 if (!TheTarget) {
209 return TheTarget;
280 static int AssembleInput(const char *ProgName, const Target *TheTarget, argument
287 TheTarget->createMCAsmParser(STI, *Parser, MCII, MCOptions));
326 const Target *TheTarget = GetTarget(ProgName); local
327 if (!TheTarget)
351 std::unique_ptr<MCRegisterInfo> MRI(TheTarget->createMCRegInfo(TripleName));
355 TheTarget->createMCAsmInfo(*MRI, TripleName, MCOptions));
439 std::unique_ptr<MCInstrInfo> MCII(TheTarget
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DTargetRegistry.cpp30 const Target *TheTarget = nullptr; local
40 TheTarget = &*I;
50 TheTarget = TargetRegistry::lookupTarget(TheTriple.getTriple(), TempError);
51 if (!TheTarget) {
59 return TheTarget;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Lanai/
H A DLanaiTargetMachine.h32 LanaiTargetMachine(const Target &TheTarget, const Triple &TargetTriple,
/freebsd-11-stable/contrib/llvm-project/clang/tools/driver/
H A Dcc1as_main.cpp333 const Target *TheTarget = TargetRegistry::lookupTarget(Opts.Triple, Error); local
334 if (!TheTarget)
354 std::unique_ptr<MCRegisterInfo> MRI(TheTarget->createMCRegInfo(Opts.Triple));
359 TheTarget->createMCAsmInfo(*MRI, Opts.Triple, MCOptions));
433 std::unique_ptr<MCInstrInfo> MCII(TheTarget->createMCInstrInfo());
435 TheTarget->createMCSubtargetInfo(Opts.Triple, Opts.CPU, FS));
446 MCInstPrinter *IP = TheTarget->createMCInstPrinter(
451 CE.reset(TheTarget->createMCCodeEmitter(*MCII, *MRI, Ctx));
453 TheTarget->createMCAsmBackend(*STI, *MRI, MCOptions));
456 Str.reset(TheTarget
[all...]
H A Dcc1_main.cpp170 const llvm::Target *TheTarget =
172 if (!TheTarget) {
180 TheTarget->createTargetMachine(TargetStr, "", "+cpuHelp", Options, None));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DLLVMTargetMachine.cpp42 MRI.reset(TheTarget.createMCRegInfo(getTargetTriple().str()));
43 MII.reset(TheTarget.createMCInstrInfo());
48 STI.reset(TheTarget.createMCSubtargetInfo(
51 MCAsmInfo *TmpAsmInfo = TheTarget.createMCAsmInfo(
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Sparc/MCTargetDesc/
H A DSparcAsmBackend.cpp119 const Target &TheTarget; member in class:__anon2832::SparcAsmBackend
126 TheTarget(T), Is64Bit(StringRef(TheTarget.getName()) == "sparcv9") {}
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/
H A DParseStmtAsm.cpp551 const llvm::Target *TheTarget = nullptr;
556 TheTarget = llvm::TargetRegistry::lookupTarget(TT, Error);
557 if (!TheTarget)
571 if (!TheTarget || AsmToks.empty()) {
584 std::unique_ptr<llvm::MCRegisterInfo> MRI(TheTarget->createMCRegInfo(TT));
593 TheTarget->createMCAsmInfo(*MRI, TT, MCOptions));
595 std::unique_ptr<llvm::MCInstrInfo> MII(TheTarget->createMCInstrInfo());
598 TheTarget->createMCSubtargetInfo(TT, TO.CPU, FeaturesStr));
620 TheTarget->createMCAsmParser(*STI, *Parser, *MII, MCOptions));
629 TheTarget
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Target/
H A DTargetMachine.h72 const Target &TheTarget; member in class:llvm::TargetMachine
109 const Target &getTarget() const { return TheTarget; }
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-rtdyld/
H A Dllvm-rtdyld.cpp737 const Target *TheTarget = local
739 if (!TheTarget)
745 TheTarget->createMCSubtargetInfo(TripleName, MCPU, ""));
749 std::unique_ptr<MCRegisterInfo> MRI(TheTarget->createMCRegInfo(TripleName));
755 TheTarget->createMCAsmInfo(*MRI, TripleName, MCOptions));
762 TheTarget->createMCDisassembler(*STI, Ctx));
766 std::unique_ptr<MCInstrInfo> MII(TheTarget->createMCInstrInfo());
769 TheTarget->createMCInstPrinter(Triple(TripleName), 0, *MAI, *MII, *MRI));
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp480 const Target *TheTarget = TargetRegistry::lookupTarget(ArchName, TheTriple, local
482 if (!TheTarget)
487 return TheTarget;
1113 static void disassembleObject(const Target *TheTarget, const ObjectFile *Obj,
1250 TheTarget->createMCRelocationInfo(TripleName, Ctx));
1253 TheTarget->createMCSymbolizer(
1534 const Target *TheTarget = getTarget(Obj);
1543 TheTarget->createMCRegInfo(TripleName));
1551 TheTarget->createMCAsmInfo(*MRI, TripleName, MCOptions));
1556 TheTarget
[all...]
H A DMachODump.cpp219 const Target *TheTarget = TargetRegistry::lookupTarget(TripleName, Error); local
220 if (TheTarget && ThumbTripleName.empty())
221 return TheTarget;
225 return TheTarget;
228 if (!TheTarget)
7187 const Target *TheTarget = GetTarget(MachOOF, &McpuDefault, &ThumbTarget); local
7188 if (!TheTarget) {
7198 std::unique_ptr<const MCInstrInfo> InstrInfo(TheTarget->createMCInstrInfo());
7215 TheTarget->createMCRegInfo(TripleName));
7217 TheTarget
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llc/
H A Dllc.cpp436 const Target *TheTarget = TargetRegistry::lookupTarget(MArch, TheTriple, local
438 if (!TheTarget) {
464 std::unique_ptr<TargetMachine> Target(TheTarget->createTargetMachine(
482 GetOutputStream(TheTarget->getName(), TheTriple.getOS(), argv[0]);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/
H A DTargetMachine.cpp37 : TheTarget(T), DL(DataLayoutString), TargetTriple(TT), TargetCPU(CPU),
/freebsd-11-stable/contrib/llvm-project/llvm/lib/LTO/
H A DLTOBackend.cpp131 createTargetMachine(const Config &Conf, const Target *TheTarget, Module &M) { argument
151 return std::unique_ptr<TargetMachine>(TheTarget->createTargetMachine(
H A DThinLTOCodeGenerator.cpp546 const Target *TheTarget = local
548 if (!TheTarget) {
558 TheTarget->createTargetMachine(TheTriple.str(), MCpu, FeatureStr, Options,
/freebsd-11-stable/contrib/llvm-project/llvm/tools/opt/
H A Dopt.cpp473 const Target *TheTarget = TargetRegistry::lookupTarget(MArch, TheTriple, local
476 if (!TheTarget) {
480 return TheTarget->createTargetMachine(TheTriple.getTriple(), CPUStr,
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DBackendUtil.cpp755 const llvm::Target *TheTarget = TargetRegistry::lookupTarget(Triple, Error); local
756 if (!TheTarget) {
770 TM.reset(TheTarget->createTargetMachine(Triple, TargetOpts.CPU, FeaturesStr,

Completed in 167 milliseconds

12