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

1 2

  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/
TargetSelect.cpp 41 const Target *TheTarget = 0;
46 TheTarget = &*it;
51 if (!TheTarget) {
64 TheTarget = TargetRegistry::lookupTarget(TheTriple.getTriple(), Error);
65 if (TheTarget == 0) {
72 if (!TheTarget->hasJIT()) {
88 TargetMachine *Target = TheTarget->createTargetMachine(TheTriple.getTriple(),
  /external/llvm/lib/ExecutionEngine/
TargetSelect.cpp 49 const Target *TheTarget = nullptr;
62 TheTarget = &*I;
71 TheTarget = TargetRegistry::lookupTarget(TheTriple.getTriple(), Error);
72 if (!TheTarget) {
96 TargetMachine *Target = TheTarget->createTargetMachine(TheTriple.getTriple(),
  /external/llvm/lib/Support/
TargetRegistry.cpp 31 const Target *TheTarget = nullptr;
42 TheTarget = &*I;
52 TheTarget = TargetRegistry::lookupTarget(TheTriple.getTriple(), TempError);
53 if (!TheTarget) {
61 return TheTarget;
  /external/llvm/lib/Target/Sparc/MCTargetDesc/
SparcAsmBackend.cpp 102 const Target &TheTarget;
108 : MCAsmBackend(), TheTarget(T),
109 IsLittleEndian(StringRef(TheTarget.getName()) == "sparcel"),
110 Is64Bit(StringRef(TheTarget.getName()) == "sparcv9") {}
  /external/swiftshader/third_party/LLVM/lib/Support/
TargetRegistry.cpp 87 const Target *TheTarget = lookupTarget(sys::getHostTriple(), Error);
89 if (TheTarget && !TheTarget->hasJIT()) {
94 return TheTarget;
  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCAsmBackend.cpp 76 const Target &TheTarget;
79 PPCAsmBackend(const Target &T, bool isLittle) : MCAsmBackend(), TheTarget(T),
188 StringRef Name = TheTarget.getName();
  /external/swiftshader/third_party/LLVM/include/llvm/MC/
MCTargetAsmLexer.h 39 /// TheTarget - The Target that this machine was created for.
40 const Target &TheTarget;
46 const Target &getTarget() const { return TheTarget; }
  /external/swiftshader/third_party/LLVM/lib/MC/MCDisassembler/
Disassembler.h 59 const Target *TheTarget;
79 const Target *theTarget, const MCAsmInfo *mAI,
84 SymbolLookUp(symbolLookUp), TheTarget(theTarget),
Disassembler.cpp 46 const Target *TheTarget = TargetRegistry::lookupTarget(TripleName, Error);
47 assert(TheTarget && "Unable to create target!");
50 const MCAsmInfo *MAI = TheTarget->createMCAsmInfo(TripleName);
53 const MCRegisterInfo *MRI = TheTarget->createMCRegInfo(TripleName);
60 const MCSubtargetInfo *STI = TheTarget->createMCSubtargetInfo(TripleName, CPU,
69 MCDisassembler *DisAsm = TheTarget->createMCDisassembler(*STI);
75 MCInstPrinter *IP = TheTarget->createMCInstPrinter(AsmPrinterVariant,
81 TheTarget, MAI, MRI,
  /external/llvm/unittests/MC/
DwarfLineTables.cpp 36 const Target *TheTarget = TargetRegistry::lookupTarget(Triple, Error);
37 if (!TheTarget)
40 MRI.reset(TheTarget->createMCRegInfo(Triple));
41 MAI.reset(TheTarget->createMCAsmInfo(*MRI, Triple));
  /external/swiftshader/third_party/LLVM/lib/Target/PowerPC/MCTargetDesc/
PPCAsmBackend.cpp 68 const Target &TheTarget;
70 PPCAsmBackend(const Target &T) : MCAsmBackend(), TheTarget(T) {}
111 StringRef Name = TheTarget.getName();
  /external/swiftshader/third_party/LLVM/tools/llc/
llc.cpp 266 const Target *TheTarget = 0;
271 TheTarget = &*it;
276 if (!TheTarget) {
288 TheTarget = TargetRegistry::lookupTarget(TheTriple.getTriple(), Err);
289 if (TheTarget == 0) {
307 target(TheTarget->createTargetMachine(TheTriple.getTriple(),
326 (GetOutputStream(TheTarget->getName(), TheTriple.getOS(), argv[0]));
  /external/llvm/lib/MC/MCDisassembler/
Disassembler.cpp 42 const Target *TheTarget = TargetRegistry::lookupTarget(TT, Error);
43 if (!TheTarget)
46 const MCRegisterInfo *MRI = TheTarget->createMCRegInfo(TT);
51 const MCAsmInfo *MAI = TheTarget->createMCAsmInfo(*MRI, TT);
55 const MCInstrInfo *MII = TheTarget->createMCInstrInfo();
60 TheTarget->createMCSubtargetInfo(TT, CPU, Features);
70 MCDisassembler *DisAsm = TheTarget->createMCDisassembler(*STI, *Ctx);
75 TheTarget->createMCRelocationInfo(TT, *Ctx));
79 std::unique_ptr<MCSymbolizer> Symbolizer(TheTarget->createMCSymbolizer(
85 MCInstPrinter *IP = TheTarget->createMCInstPrinter
    [all...]
Disassembler.h 61 const Target *TheTarget;
89 const Target *theTarget, const MCAsmInfo *mAI,
94 GetOpInfo(getOpInfo), SymbolLookUp(symbolLookUp), TheTarget(theTarget),
111 const Target *getTarget() const { return TheTarget; }
  /external/swiftshader/third_party/LLVM/tools/llvm-mc/
llvm-mc.cpp 181 const Target *TheTarget = 0;
186 TheTarget = &*it;
191 if (!TheTarget) {
204 TheTarget = TargetRegistry::lookupTarget(TheTriple.getTriple(), Error);
205 if (TheTarget == 0) {
214 return TheTarget;
250 const Target *TheTarget = GetTarget(ProgName);
251 if (!TheTarget)
254 llvm::OwningPtr<MCAsmInfo> MAI(TheTarget->createMCAsmInfo(TripleName));
343 const Target *TheTarget = GetTarget(ProgName)
    [all...]
  /external/llvm/include/llvm/Target/
TargetMachine.h 75 const Target &TheTarget;
110 const Target &getTarget() const { return TheTarget; }
  /external/llvm/tools/llc/
llc.cpp 314 const Target *TheTarget = TargetRegistry::lookupTarget(MArch, TheTriple,
316 if (!TheTarget) {
343 TheTarget->createTargetMachine(TheTriple.getTriple(), CPUStr, FeaturesStr,
360 GetOutputStream(TheTarget->getName(), TheTriple.getOS(), argv[0]);
  /external/llvm/tools/llvm-mc/
llvm-mc.cpp 204 const Target *TheTarget = TargetRegistry::lookupTarget(ArchName, TheTriple,
206 if (!TheTarget) {
213 return TheTarget;
348 static int AssembleInput(const char *ProgName, const Target *TheTarget,
355 TheTarget->createMCAsmParser(STI, *Parser, MCII, MCOptions));
397 const Target *TheTarget = GetTarget(ProgName);
398 if (!TheTarget)
421 std::unique_ptr<MCRegisterInfo> MRI(TheTarget->createMCRegInfo(TripleName));
424 std::unique_ptr<MCAsmInfo> MAI(TheTarget->createMCAsmInfo(*MRI, TripleName));
489 std::unique_ptr<MCInstrInfo> MCII(TheTarget->createMCInstrInfo())
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Target/
TargetMachine.h 83 /// TheTarget - The Target that this machine was created for.
84 const Target &TheTarget;
108 const Target &getTarget() const { return TheTarget; }
  /external/swiftshader/third_party/LLVM/tools/llvm-objdump/
llvm-objdump.cpp 112 const Target *TheTarget = TargetRegistry::lookupTarget(TripleName, Error);
113 if (TheTarget)
114 return TheTarget;
155 const Target *TheTarget = GetTarget(Obj);
156 if (!TheTarget) {
219 OwningPtr<const MCAsmInfo> AsmInfo(TheTarget->createMCAsmInfo(TripleName));
227 TheTarget->createMCSubtargetInfo(TripleName, "", ""));
235 TheTarget->createMCDisassembler(*STI));
242 OwningPtr<MCInstPrinter> IP(TheTarget->createMCInstPrinter(
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Target/
TargetMachine.h 64 const Target &TheTarget;
102 const Target &getTarget() const { return TheTarget; }
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Target/
TargetMachine.h 64 const Target &TheTarget;
102 const Target &getTarget() const { return TheTarget; }
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Target/
TargetMachine.h 64 const Target &TheTarget;
102 const Target &getTarget() const { return TheTarget; }
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Target/
TargetMachine.h 64 const Target &TheTarget;
102 const Target &getTarget() const { return TheTarget; }
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Target/
TargetMachine.h 64 const Target &TheTarget;
102 const Target &getTarget() const { return TheTarget; }

Completed in 978 milliseconds

1 2