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

  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsMCTargetDesc.cpp 41 StringRef TheTriple;
48 TheTriple = TT.substr(0);
51 TheTriple = TT.substr(0,DashPosition);
54 if (TheTriple == "mips" || TheTriple == "mipsel") {
133 Triple TheTriple(TT);
  /external/llvm/tools/llc/
llc.cpp 204 Triple TheTriple;
221 TheTriple = Triple(mod->getTargetTriple());
223 TheTriple = Triple(Triple::normalize(TargetTriple));
226 if (TheTriple.getTriple().empty())
227 TheTriple.setTriple(sys::getDefaultTargetTriple());
231 const Target *TheTarget = TargetRegistry::lookupTarget(MArch, TheTriple,
284 target(TheTarget->createTargetMachine(TheTriple.getTriple(),
304 if (TheTriple.isMacOSX() &&
305 TheTriple.isMacOSXVersionLT(10, 6))
310 (GetOutputStream(TheTarget->getName(), TheTriple.getOS(), argv[0]))
    [all...]
  /frameworks/compile/mclinker/tools/llvm-mcld/
llvm-mcld.cpp     [all...]
  /external/clang/lib/Sema/
SemaStmtAsm.cpp 583 llvm::Triple TheTriple = Context.getTargetInfo().getTriple();
584 llvm::Triple::ArchType ArchTy = TheTriple.getArch();
588 Diag(AsmLoc, diag::err_msasm_unsupported_arch) << TheTriple.getArchName();
608 const std::string &TT = TheTriple.getTriple();

Completed in 272 milliseconds