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

  /external/llvm/lib/Target/Mips/MCTargetDesc/
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/tools/llc/
llc.cpp 390 Triple TheTriple;
407 TheTriple = Triple(mod->getTargetTriple());
409 TheTriple = Triple(Triple::normalize(TargetTriple));
412 if (TheTriple.getTriple().empty())
413 TheTriple.setTriple(sys::getDefaultTargetTriple());
417 const Target *TheTarget = TargetRegistry::lookupTarget(MArch, TheTriple,
470 target(TheTarget->createTargetMachine(TheTriple.getTriple(),
490 if (TheTriple.isMacOSX() &&
491 TheTriple.isMacOSXVersionLT(10, 6))
496 (GetOutputStream(TheTarget->getName(), TheTriple.getOS(), argv[0]))
    [all...]
  /frameworks/compile/mclinker/tools/llvm-mcld/
llvm-mcld.cpp 961 Triple TheTriple;
963 TheTriple.setTriple(TargetTriple);
968 if (TheTriple.getTriple().empty()) {
973 TheTriple.setTriple(sys::getDefaultTargetTriple());
975 TheTriple.setTriple(TripleStr);
    [all...]

Completed in 4503 milliseconds