HomeSort by relevance Sort by last modified time
    Searched defs:TheTarget (Results 1 - 14 of 14) sorted by null

  /external/llvm/lib/ExecutionEngine/
TargetSelect.cpp 50 const Target *TheTarget = nullptr;
55 TheTarget = &*it;
60 if (!TheTarget) {
74 TheTarget = TargetRegistry::lookupTarget(TheTriple.getTriple(), Error);
75 if (!TheTarget) {
100 TargetMachine *Target = TheTarget->createTargetMachine(TheTriple.getTriple(),
  /external/llvm/lib/Support/
TargetRegistry.cpp 32 const Target *TheTarget = nullptr;
37 TheTarget = &*it;
42 if (!TheTarget) {
55 TheTarget = TargetRegistry::lookupTarget(TheTriple.getTriple(), TempError);
56 if (!TheTarget) {
64 return TheTarget;
  /external/llvm/lib/Target/Sparc/MCTargetDesc/
SparcAsmBackend.cpp 101 const Target &TheTarget;
103 SparcAsmBackend(const Target &T) : MCAsmBackend(), TheTarget(T) {}
220 StringRef name = TheTarget.getName();
  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCAsmBackend.cpp 74 const Target &TheTarget;
77 PPCAsmBackend(const Target &T, bool isLittle) : MCAsmBackend(), TheTarget(T),
166 StringRef Name = TheTarget.getName();
  /external/llvm/lib/MC/MCDisassembler/
Disassembler.h 60 const Target *TheTarget;
88 const Target *theTarget, const MCAsmInfo *mAI,
95 SymbolLookUp(symbolLookUp), TheTarget(theTarget),
113 const Target *getTarget() const { return TheTarget; }
Disassembler.cpp 42 const Target *TheTarget = TargetRegistry::lookupTarget(Triple, Error);
43 if (!TheTarget)
46 const MCRegisterInfo *MRI = TheTarget->createMCRegInfo(Triple);
51 const MCAsmInfo *MAI = TheTarget->createMCAsmInfo(*MRI, Triple);
55 const MCInstrInfo *MII = TheTarget->createMCInstrInfo();
62 const MCSubtargetInfo *STI = TheTarget->createMCSubtargetInfo(Triple, CPU,
73 MCDisassembler *DisAsm = TheTarget->createMCDisassembler(*STI, *Ctx);
78 TheTarget->createMCRelocationInfo(Triple, *Ctx));
82 std::unique_ptr<MCSymbolizer> Symbolizer(TheTarget->createMCSymbolizer(
88 MCInstPrinter *IP = TheTarget->createMCInstPrinter(AsmPrinterVariant
    [all...]
  /external/llvm/tools/llc/
llc.cpp 254 const Target *TheTarget = TargetRegistry::lookupTarget(MArch, TheTriple,
256 if (!TheTarget) {
289 TheTarget->createTargetMachine(TheTriple.getTriple(), MCPU, FeaturesStr,
307 GetOutputStream(TheTarget->getName(), TheTriple.getOS(), argv[0]));
  /external/llvm/tools/llvm-mc/
llvm-mc.cpp 195 const Target *TheTarget = TargetRegistry::lookupTarget(ArchName, TheTriple,
197 if (!TheTarget) {
204 return TheTarget;
320 static int AssembleInput(const char *ProgName, const Target *TheTarget,
327 TheTarget->createMCAsmParser(STI, *Parser, MCII, MCOptions));
366 const Target *TheTarget = GetTarget(ProgName);
367 if (!TheTarget)
387 std::unique_ptr<MCRegisterInfo> MRI(TheTarget->createMCRegInfo(TripleName));
390 std::unique_ptr<MCAsmInfo> MAI(TheTarget->createMCAsmInfo(*MRI, TripleName));
445 std::unique_ptr<MCInstrInfo> MCII(TheTarget->createMCInstrInfo())
    [all...]
  /external/llvm/tools/llvm-rtdyld/
llvm-rtdyld.cpp 314 const Target *TheTarget =
316 if (!TheTarget) {
324 TheTarget->createMCSubtargetInfo(TripleName, "", ""));
327 std::unique_ptr<MCRegisterInfo> MRI(TheTarget->createMCRegInfo(TripleName));
330 std::unique_ptr<MCAsmInfo> MAI(TheTarget->createMCAsmInfo(*MRI, TripleName));
336 TheTarget->createMCDisassembler(*STI, Ctx));
339 std::unique_ptr<MCInstrInfo> MII(TheTarget->createMCInstrInfo());
342 TheTarget->createMCInstPrinter(0, *MAI, *MII, *MRI, *STI));
  /external/clang/lib/CodeGen/
BackendUtil.cpp 353 const llvm::Target *TheTarget = TargetRegistry::lookupTarget(Triple, Error);
354 if (!TheTarget) {
481 TargetMachine *TM = TheTarget->createTargetMachine(Triple, TargetOpts.CPU,
  /external/clang/tools/driver/
cc1as_main.cpp 283 const Target *TheTarget = TargetRegistry::lookupTarget(Opts.Triple, Error);
284 if (!TheTarget)
304 std::unique_ptr<MCRegisterInfo> MRI(TheTarget->createMCRegInfo(Opts.Triple));
307 std::unique_ptr<MCAsmInfo> MAI(TheTarget->createMCAsmInfo(*MRI, Opts.Triple));
353 std::unique_ptr<MCInstrInfo> MCII(TheTarget->createMCInstrInfo());
355 TheTarget->createMCSubtargetInfo(Opts.Triple, Opts.CPU, FS));
360 TheTarget->createMCInstPrinter(Opts.OutputAsmVariant, *MAI, *MCII, *MRI,
365 CE = TheTarget->createMCCodeEmitter(*MCII, *MRI, *STI, Ctx);
366 MAB = TheTarget->createMCAsmBackend(*MRI, Opts.Triple, Opts.CPU);
368 Str.reset(TheTarget->createAsmStreamer(Ctx, *Out, /*asmverbose*/true
    [all...]
  /external/llvm/include/llvm/Target/
TargetMachine.h 70 /// TheTarget - The Target that this machine was created for.
71 const Target &TheTarget;
92 const Target &getTarget() const { return TheTarget; }
  /external/llvm/tools/llvm-objdump/
MachODump.cpp 62 const Target *TheTarget = TargetRegistry::lookupTarget(TripleName, Error);
63 if (TheTarget)
64 return TheTarget;
213 const Target *TheTarget = GetTarget(MachOOF);
214 if (!TheTarget) {
218 std::unique_ptr<const MCInstrInfo> InstrInfo(TheTarget->createMCInstrInfo());
220 TheTarget->createMCInstrAnalysis(InstrInfo.get()));
224 TheTarget->createMCRegInfo(TripleName));
226 TheTarget->createMCAsmInfo(*MRI, TripleName));
228 TheTarget->createMCSubtargetInfo(TripleName, "", ""))
    [all...]
llvm-objdump.cpp 182 const Target *TheTarget = TargetRegistry::lookupTarget(ArchName, TheTriple,
184 if (!TheTarget) {
191 return TheTarget;
275 const Target *TheTarget = getTarget(Obj);
278 if (!TheTarget)
291 TheTarget->createMCRegInfo(TripleName));
299 TheTarget->createMCAsmInfo(*MRI, TripleName));
306 TheTarget->createMCSubtargetInfo(TripleName, "", FeaturesStr));
312 std::unique_ptr<const MCInstrInfo> MII(TheTarget->createMCInstrInfo());
322 TheTarget->createMCDisassembler(*STI, Ctx))
    [all...]

Completed in 385 milliseconds