HomeSort by relevance Sort by last modified time
    Searched refs:TheTriple (Results 1 - 16 of 16) sorted by null

  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsMCAsmInfo.cpp 22 Triple TheTriple(TT);
23 if ((TheTriple.getArch() == Triple::mips) ||
24 (TheTriple.getArch() == Triple::mips64))
MipsMCTargetDesc.cpp 40 StringRef TheTriple;
47 TheTriple = TT.substr(0);
50 TheTriple = TT.substr(0,DashPosition);
53 if (TheTriple == "mips" || TheTriple == "mipsel") {
132 Triple TheTriple(TT);
  /external/llvm/lib/Target/PTX/MCTargetDesc/
PTXMCAsmInfo.cpp 22 Triple TheTriple(TT);
23 if (TheTriple.getArch() == Triple::ptx64)
  /external/llvm/lib/Target/Sparc/MCTargetDesc/
SparcMCAsmInfo.cpp 23 Triple TheTriple(TT);
24 if (TheTriple.getArch() == Triple::sparcv9)
  /external/llvm/lib/ExecutionEngine/
TargetSelect.cpp 43 Triple TheTriple(TargetTriple);
44 if (TheTriple.getTriple().empty())
45 TheTriple.setTriple(sys::getDefaultTargetTriple());
68 TheTriple.setArch(Type);
71 TheTarget = TargetRegistry::lookupTarget(TheTriple.getTriple(), Error);
89 TargetMachine *Target = TheTarget->createTargetMachine(TheTriple.getTriple(),
  /external/llvm/lib/Target/MBlaze/MCTargetDesc/
MBlazeMCTargetDesc.cpp 57 Triple TheTriple(TT);
58 switch (TheTriple.getOS()) {
82 Triple TheTriple(TT);
84 if (TheTriple.isOSDarwin()) {
88 if (TheTriple.isOSWindows()) {
MBlazeAsmBackend.cpp 160 Triple TheTriple(TT);
162 if (TheTriple.isOSDarwin())
165 if (TheTriple.isOSWindows())
168 uint8_t OSABI = MCELFObjectTargetWriter::getOSABI(TheTriple.getOS());
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MCTargetDesc.cpp 47 Triple TheTriple(TT);
49 if (TheTriple.getArch() == Triple::x86_64)
199 Triple TheTriple(TT);
200 if (TheTriple.getArch() == Triple::x86_64)
203 if (TheTriple.isOSDarwin())
205 if (TheTriple.getOS() == Triple::MinGW32 ||
206 TheTriple.getOS() == Triple::Cygwin)
359 Triple TheTriple(TT);
360 unsigned RA = (TheTriple.getArch() == Triple::x86_64)
373 Triple TheTriple(TT)
    [all...]
X86AsmBackend.cpp 443 Triple TheTriple(TT);
445 if (TheTriple.isOSDarwin() || TheTriple.getEnvironment() == Triple::MachO)
448 if (TheTriple.isOSWindows())
451 uint8_t OSABI = MCELFObjectTargetWriter::getOSABI(TheTriple.getOS());
456 Triple TheTriple(TT);
458 if (TheTriple.isOSDarwin() || TheTriple.getEnvironment() == Triple::MachO)
461 if (TheTriple.isOSWindows())
464 uint8_t OSABI = MCELFObjectTargetWriter::getOSABI(TheTriple.getOS())
    [all...]
  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCMCTargetDesc.cpp 44 Triple TheTriple(TT);
45 bool isPPC64 = (TheTriple.getArch() == Triple::ppc64);
62 Triple TheTriple(TT);
63 bool isPPC64 = TheTriple.getArch() == Triple::ppc64;
66 if (TheTriple.isOSDarwin())
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMMCTargetDesc.cpp 123 Triple TheTriple(TT);
125 if (TheTriple.isOSDarwin())
136 Triple TheTriple(TT);
138 RM = TheTriple.isOSDarwin() ? Reloc::PIC_ : Reloc::DynamicNoPIC;
151 Triple TheTriple(TT);
153 if (TheTriple.isOSDarwin())
156 if (TheTriple.isOSWindows()) {
ARMAsmBackend.cpp 633 Triple TheTriple(TT);
635 if (TheTriple.isOSDarwin()) {
636 if (TheTriple.getArchName() == "armv4t" ||
637 TheTriple.getArchName() == "thumbv4t")
639 else if (TheTriple.getArchName() == "armv5e" ||
640 TheTriple.getArchName() == "thumbv5e")
642 else if (TheTriple.getArchName() == "armv6" ||
643 TheTriple.getArchName() == "thumbv6")
648 if (TheTriple.isOSWindows())
  /external/llvm/tools/bugpoint/
BugDriver.cpp 96 Triple TheTriple(Result->getTargetTriple());
98 if (TheTriple.getTriple().empty())
99 TheTriple.setTriple(sys::getDefaultTargetTriple());
101 TargetTriple.setTriple(TheTriple.getTriple());
  /external/llvm/tools/llc/
llc.cpp 369 Triple TheTriple(mod.getTargetTriple());
370 if (TheTriple.getTriple().empty())
371 TheTriple.setTriple(sys::getDefaultTargetTriple());
395 TheTriple.setArch(Type);
398 TheTarget = TargetRegistry::lookupTarget(TheTriple.getTriple(), Err);
453 target(TheTarget->createTargetMachine(TheTriple.getTriple(),
472 if (TheTriple.isMacOSX() &&
473 TheTriple.isMacOSXVersionLT(10, 6))
478 (GetOutputStream(TheTarget->getName(), TheTriple.getOS(), argv[0]));
  /external/llvm/tools/llvm-mc/
llvm-mc.cpp 181 Triple TheTriple(Triple::normalize(TripleName));
202 TheTriple.setArch(Type);
206 TheTarget = TargetRegistry::lookupTarget(TheTriple.getTriple(), Error);
209 << TheTriple.getTriple()
215 TripleName = TheTriple.getTriple();
  /frameworks/compile/mclinker/tools/llvm-mcld/
llvm-mcld.cpp 740 Triple TheTriple;
742 TheTriple.setTriple(TargetTriple);
747 if (TheTriple.getTriple().empty()) {
752 TheTriple.setTriple(sys::getDefaultTargetTriple());
754 TheTriple.setTriple(TripleStr);
779 TheTriple.setArch(Type);
783 TheTarget = mcld::TargetRegistry::lookupTarget(TheTriple.getTriple(), Err);
839 TheTarget->createTargetMachine(TheTriple.getTriple(),
851 TheTriple.getOS(),

Completed in 67 milliseconds