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

/external/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) {
92 TargetMachine *Target = TheTarget->createTargetMachine(TheTriple.getTriple(),
/external/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...]
/external/llvm/tools/llvm-mc/
H A Dllvm-mc.cpp199 const Target *TheTarget = TargetRegistry::lookupTarget(ArchName, TheTriple, local
201 if (!TheTarget) {
208 return TheTarget;
323 static int AssembleInput(const char *ProgName, const Target *TheTarget, argument
328 OwningPtr<MCTargetAsmParser> TAP(TheTarget->createMCAsmParser(STI, *Parser));
365 const Target *TheTarget = GetTarget(ProgName); local
366 if (!TheTarget)
385 llvm::OwningPtr<MCAsmInfo> MAI(TheTarget->createMCAsmInfo(TripleName));
388 llvm::OwningPtr<MCRegisterInfo> MRI(TheTarget->createMCRegInfo(TripleName));
426 OwningPtr<MCInstrInfo> MCII(TheTarget
[all...]
/external/llvm/lib/MC/MCDisassembler/
H A DDisassembler.cpp42 const Target *TheTarget = TargetRegistry::lookupTarget(Triple, Error); local
43 assert(TheTarget && "Unable to create target!");
46 const MCAsmInfo *MAI = TheTarget->createMCAsmInfo(Triple);
50 const MCInstrInfo *MII = TheTarget->createMCInstrInfo();
54 const MCRegisterInfo *MRI = TheTarget->createMCRegInfo(Triple);
61 const MCSubtargetInfo *STI = TheTarget->createMCSubtargetInfo(Triple, CPU,
72 MCDisassembler *DisAsm = TheTarget->createMCDisassembler(*STI);
79 MCInstPrinter *IP = TheTarget->createMCInstPrinter(AsmPrinterVariant,
86 TheTarget, MAI, MRI,
H A DDisassembler.h61 const Target *TheTarget; member in class:llvm::LLVMDisasmContext
92 SymbolLookUp(symbolLookUp), TheTarget(theTarget),
109 const Target *getTarget() const { return TheTarget; }
/external/clang/tools/driver/
H A Dcc1as_main.cpp267 const Target *TheTarget(TargetRegistry::lookupTarget(Opts.Triple, Error));
268 if (!TheTarget) {
290 OwningPtr<MCAsmInfo> MAI(TheTarget->createMCAsmInfo(Opts.Triple));
293 OwningPtr<MCRegisterInfo> MRI(TheTarget->createMCRegInfo(Opts.Triple));
331 OwningPtr<MCInstrInfo> MCII(TheTarget->createMCInstrInfo());
333 STI(TheTarget->createMCSubtargetInfo(Opts.Triple, Opts.CPU, FS));
338 TheTarget->createMCInstPrinter(Opts.OutputAsmVariant, *MAI, *MCII, *MRI,
343 CE = TheTarget->createMCCodeEmitter(*MCII, *MRI, *STI, Ctx);
344 MAB = TheTarget->createMCAsmBackend(Opts.Triple, Opts.CPU);
346 Str.reset(TheTarget
[all...]
/external/llvm/lib/Target/PowerPC/MCTargetDesc/
H A DPPCAsmBackend.cpp72 const Target &TheTarget; member in class:__anon9752::PPCAsmBackend
74 PPCAsmBackend(const Target &T) : MCAsmBackend(), TheTarget(T) {}
143 StringRef Name = TheTarget.getName();
/external/llvm/include/llvm/Target/
H A DTargetMachine.h62 /// TheTarget - The Target that this machine was created for.
63 const Target &TheTarget; member in class:llvm::TargetMachine
88 const Target &getTarget() const { return TheTarget; }
/external/llvm/tools/llc/
H A Dllc.cpp231 const Target *TheTarget = TargetRegistry::lookupTarget(MArch, TheTriple, local
233 if (!TheTarget) {
284 target(TheTarget->createTargetMachine(TheTriple.getTriple(),
310 (GetOutputStream(TheTarget->getName(), TheTriple.getOS(), argv[0]));
/external/llvm/tools/llvm-objdump/
H A DMachODump.cpp81 const Target *TheTarget = TargetRegistry::lookupTarget(TripleName, Error); local
82 if (TheTarget)
83 return TheTarget;
247 const Target *TheTarget = GetTarget(MachOObj); local
248 if (!TheTarget) {
252 OwningPtr<const MCInstrInfo> InstrInfo(TheTarget->createMCInstrInfo());
254 InstrAnalysis(TheTarget->createMCInstrAnalysis(InstrInfo.get()));
257 OwningPtr<const MCAsmInfo> AsmInfo(TheTarget->createMCAsmInfo(TripleName));
259 STI(TheTarget->createMCSubtargetInfo(TripleName, "", ""));
260 OwningPtr<const MCDisassembler> DisAsm(TheTarget
[all...]
H A Dllvm-objdump.cpp147 const Target *TheTarget = TargetRegistry::lookupTarget(ArchName, TheTriple, local
149 if (!TheTarget) {
156 return TheTarget;
195 const Target *TheTarget = getTarget(Obj); local
198 if (!TheTarget)
275 OwningPtr<const MCAsmInfo> AsmInfo(TheTarget->createMCAsmInfo(TripleName));
283 TheTarget->createMCSubtargetInfo(TripleName, "", FeaturesStr));
291 TheTarget->createMCDisassembler(*STI));
297 OwningPtr<const MCRegisterInfo> MRI(TheTarget->createMCRegInfo(TripleName));
303 OwningPtr<const MCInstrInfo> MII(TheTarget
[all...]
/external/clang/lib/Sema/
H A DSemaStmtAsm.cpp609 const llvm::Target *TheTarget(llvm::TargetRegistry::lookupTarget(TT, Error));
611 OwningPtr<llvm::MCAsmInfo> MAI(TheTarget->createMCAsmInfo(TT));
612 OwningPtr<llvm::MCRegisterInfo> MRI(TheTarget->createMCRegInfo(TT));
615 STI(TheTarget->createMCSubtargetInfo(TT, "", ""));
629 TargetParser(TheTarget->createMCAsmParser(*STI, *Parser));
632 const llvm::MCInstrInfo *MII = TheTarget->createMCInstrInfo();
634 TheTarget->createMCInstPrinter(1, *MAI, *MII, *MRI, *STI);
/external/llvm/lib/Target/
H A DTargetMachine.cpp50 : TheTarget(T), TargetTriple(TT), TargetCPU(CPU), TargetFS(FS),
/external/clang/lib/CodeGen/
H A DBackendUtil.cpp329 const llvm::Target *TheTarget = TargetRegistry::lookupTarget(Triple, Error); local
330 if (!TheTarget) {
461 TargetMachine *TM = TheTarget->createTargetMachine(Triple, TargetOpts.CPU,
/external/llvm/tools/opt/
H A Dopt.cpp528 const Target *TheTarget = TargetRegistry::lookupTarget(MArch, TheTriple, local
531 if (!TheTarget) {
544 return TheTarget->createTargetMachine(TheTriple.getTriple(),

Completed in 314 milliseconds