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

/freebsd-10-stable/contrib/llvm/lib/ExecutionEngine/
H A DTargetSelect.cpp50 const Target *TheTarget = 0; local
55 TheTarget = &*it;
60 if (!TheTarget) {
74 TheTarget = TargetRegistry::lookupTarget(TheTriple.getTriple(), Error);
75 if (TheTarget == 0) {
100 TargetMachine *Target = TheTarget->createTargetMachine(TheTriple.getTriple(),
/freebsd-10-stable/contrib/llvm/lib/Support/
H A DTargetRegistry.cpp32 const Target *TheTarget = 0; local
37 TheTarget = &*it;
42 if (!TheTarget) {
55 TheTarget = TargetRegistry::lookupTarget(TheTriple.getTriple(), TempError);
56 if (TheTarget == 0) {
64 return TheTarget;
128 const Target *TheTarget = lookupTarget(sys::getDefaultTargetTriple(), Error); local
130 if (TheTarget && !TheTarget->hasJIT()) {
135 return TheTarget;
[all...]
/freebsd-10-stable/contrib/llvm/tools/llvm-mc/
H A Dllvm-mc.cpp196 const Target *TheTarget = TargetRegistry::lookupTarget(ArchName, TheTriple, local
198 if (!TheTarget) {
205 return TheTarget;
320 static int AssembleInput(const char *ProgName, const Target *TheTarget, argument
325 OwningPtr<MCTargetAsmParser> TAP(TheTarget->createMCAsmParser(STI, *Parser, MCII));
362 const Target *TheTarget = GetTarget(ProgName); local
363 if (!TheTarget)
382 llvm::OwningPtr<MCRegisterInfo> MRI(TheTarget->createMCRegInfo(TripleName));
385 llvm::OwningPtr<MCAsmInfo> MAI(TheTarget->createMCAsmInfo(*MRI, TripleName));
423 OwningPtr<MCInstrInfo> MCII(TheTarget
[all...]
/freebsd-10-stable/contrib/llvm/lib/MC/MCDisassembler/
H A DDisassembler.cpp45 const Target *TheTarget = TargetRegistry::lookupTarget(Triple, Error); local
46 if (!TheTarget)
49 const MCRegisterInfo *MRI = TheTarget->createMCRegInfo(Triple);
54 const MCAsmInfo *MAI = TheTarget->createMCAsmInfo(*MRI, Triple);
58 const MCInstrInfo *MII = TheTarget->createMCInstrInfo();
65 const MCSubtargetInfo *STI = TheTarget->createMCSubtargetInfo(Triple, CPU,
76 MCDisassembler *DisAsm = TheTarget->createMCDisassembler(*STI);
81 TheTarget->createMCRelocationInfo(Triple, *Ctx));
86 TheTarget->createMCSymbolizer(Triple, GetOpInfo, SymbolLookUp, DisInfo,
93 MCInstPrinter *IP = TheTarget
[all...]
H A DDisassembler.h61 const Target *TheTarget; member in class:llvm::LLVMDisasmContext
96 SymbolLookUp(symbolLookUp), TheTarget(theTarget),
114 const Target *getTarget() const { return TheTarget; }
/freebsd-10-stable/contrib/llvm/tools/clang/tools/driver/
H A Dcc1as_main.cpp268 const Target *TheTarget(TargetRegistry::lookupTarget(Opts.Triple, Error));
269 if (!TheTarget) {
291 OwningPtr<MCRegisterInfo> MRI(TheTarget->createMCRegInfo(Opts.Triple));
294 OwningPtr<MCAsmInfo> MAI(TheTarget->createMCAsmInfo(*MRI, Opts.Triple));
332 OwningPtr<MCInstrInfo> MCII(TheTarget->createMCInstrInfo());
334 STI(TheTarget->createMCSubtargetInfo(Opts.Triple, Opts.CPU, FS));
339 TheTarget->createMCInstPrinter(Opts.OutputAsmVariant, *MAI, *MCII, *MRI,
344 CE = TheTarget->createMCCodeEmitter(*MCII, *MRI, *STI, Ctx);
345 MAB = TheTarget->createMCAsmBackend(*MRI, Opts.Triple, Opts.CPU);
347 Str.reset(TheTarget
[all...]
/freebsd-10-stable/contrib/llvm/tools/llvm-objdump/
H A DMachODump.cpp62 const Target *TheTarget = TargetRegistry::lookupTarget(TripleName, Error); local
63 if (TheTarget)
64 return TheTarget;
218 const Target *TheTarget = GetTarget(MachOOF); local
219 if (!TheTarget) {
223 OwningPtr<const MCInstrInfo> InstrInfo(TheTarget->createMCInstrInfo());
225 InstrAnalysis(TheTarget->createMCInstrAnalysis(InstrInfo.get()));
228 OwningPtr<const MCRegisterInfo> MRI(TheTarget->createMCRegInfo(TripleName));
230 TheTarget->createMCAsmInfo(*MRI, TripleName));
232 STI(TheTarget
[all...]
H A Dllvm-objdump.cpp176 const Target *TheTarget = TargetRegistry::lookupTarget(ArchName, TheTriple, local
178 if (!TheTarget) {
185 return TheTarget;
269 const Target *TheTarget = getTarget(Obj); local
272 if (!TheTarget)
284 OwningPtr<const MCRegisterInfo> MRI(TheTarget->createMCRegInfo(TripleName));
292 TheTarget->createMCAsmInfo(*MRI, TripleName));
299 TheTarget->createMCSubtargetInfo(TripleName, "", FeaturesStr));
305 OwningPtr<const MCInstrInfo> MII(TheTarget->createMCInstrInfo());
311 OwningPtr<MCDisassembler> DisAsm(TheTarget
[all...]
/freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/
H A DPPCAsmBackend.cpp74 const Target &TheTarget; member in class:__anon2556::PPCAsmBackend
76 PPCAsmBackend(const Target &T) : MCAsmBackend(), TheTarget(T) {}
150 StringRef Name = TheTarget.getName();
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/MCTargetDesc/
H A DSparcAsmBackend.cpp93 const Target &TheTarget; member in class:__anon2611::SparcAsmBackend
95 SparcAsmBackend(const Target &T) : MCAsmBackend(), TheTarget(T) {}
206 StringRef name = TheTarget.getName();
/freebsd-10-stable/contrib/llvm/include/llvm/Target/
H A DTargetMachine.h68 /// TheTarget - The Target that this machine was created for.
69 const Target &TheTarget; member in class:llvm::TargetMachine
95 const Target &getTarget() const { return TheTarget; }
/freebsd-10-stable/contrib/llvm/tools/llc/
H A Dllc.cpp234 const Target *TheTarget = TargetRegistry::lookupTarget(MArch, TheTriple, local
236 if (!TheTarget) {
284 target(TheTarget->createTargetMachine(TheTriple.getTriple(),
310 (GetOutputStream(TheTarget->getName(), TheTriple.getOS(), argv[0]));
/freebsd-10-stable/contrib/llvm/lib/Target/
H A DTargetMachine.cpp50 : TheTarget(T), TargetTriple(TT), TargetCPU(CPU), TargetFS(FS),
/freebsd-10-stable/contrib/llvm/tools/clang/lib/CodeGen/
H A DBackendUtil.cpp359 const llvm::Target *TheTarget = TargetRegistry::lookupTarget(Triple, Error); local
360 if (!TheTarget) {
487 TargetMachine *TM = TheTarget->createTargetMachine(Triple, TargetOpts.CPU,
/freebsd-10-stable/contrib/llvm/lib/CodeGen/
H A DLLVMTargetMachine.cpp66 AsmInfo = TheTarget.createMCAsmInfo(*getRegisterInfo(), TargetTriple);
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Parse/
H A DParseStmt.cpp2133 const llvm::Target *TheTarget = 0;
2140 TheTarget = llvm::TargetRegistry::lookupTarget(TT, Error);
2141 if (!TheTarget)
2147 if (!TheTarget || AsmToks.empty()) {
2159 OwningPtr<llvm::MCRegisterInfo> MRI(TheTarget->createMCRegInfo(TT));
2160 OwningPtr<llvm::MCAsmInfo> MAI(TheTarget->createMCAsmInfo(*MRI, TT));
2162 const llvm::MCInstrInfo *MII = TheTarget->createMCInstrInfo();
2165 STI(TheTarget->createMCSubtargetInfo(TT, "", ""));
2179 TargetParser(TheTarget->createMCAsmParser(*STI, *Parser, *MII));
2182 TheTarget
[all...]
/freebsd-10-stable/contrib/llvm/tools/opt/
H A Dopt.cpp554 const Target *TheTarget = TargetRegistry::lookupTarget(MArch, TheTriple,
557 if (!TheTarget) {
570 return TheTarget->createTargetMachine(TheTriple.getTriple(),

Completed in 201 milliseconds