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

  /external/llvm/lib/ExecutionEngine/
TargetSelect.cpp 11 // allows the user to specify a specific one on the commandline with -march=x,
36 return selectTarget(TT, MArch, MCPU, MAttrs);
39 /// selectTarget - Pick a target either via -march or by guessing the native
42 StringRef MArch,
51 if (!MArch.empty()) {
54 if (MArch == it->getName()) {
62 *ErrorStr = "No available targets are compatible with this -march, "
69 Triple::ArchType Type = Triple::getArchTypeForLLVMName(MArch);
  /external/clang/lib/Driver/
ToolChain.cpp 113 // corresponding -march option) should determine the architecture
116 // FIXME: Warn on inconsistent use of -mcpu and -march.
122 StringRef MArch;
124 // Otherwise, if we have -march= choose the base CPU for that arch.
125 MArch = A->getValue();
128 MArch = Triple.getArchName();
131 return llvm::StringSwitch<const char *>(MArch)
ToolChains.cpp 743 const Option MArch = Opts.getOption(options::OPT_march_EQ);
772 DAL->AddJoinedArg(0, MArch, "i486");
774 DAL->AddJoinedArg(0, MArch, "i586");
776 DAL->AddJoinedArg(0, MArch, "i686");
778 DAL->AddJoinedArg(0, MArch, "pentium");
780 DAL->AddJoinedArg(0, MArch, "pentium2");
782 DAL->AddJoinedArg(0, MArch, "pentiumpro");
784 DAL->AddJoinedArg(0, MArch, "pentium2");
790 DAL->AddJoinedArg(0, MArch, "armv4t");
792 DAL->AddJoinedArg(0, MArch, "armv4t")
    [all...]
Tools.cpp 475 // FIXME: Warn on inconsistent use of -mcpu and -march.
487 StringRef MArch;
489 // Otherwise, if we have -march= choose the base CPU for that arch.
490 MArch = A->getValue();
493 MArch = Triple.getArchName();
496 // Handle -march=native.
498 if (MArch == "native") {
504 MArch = NativeMArch;
508 return llvm::StringSwitch<const char *>(MArch)
738 // Set the CPU based on -march= and -mcpu=
    [all...]
  /external/llvm/unittests/ExecutionEngine/MCJIT/
MCJITTestBase.h 52 , MArch("")
216 .setMArch(MArch)
228 StringRef MArch;
  /external/llvm/include/llvm/ExecutionEngine/
ExecutionEngine.h 496 std::string MArch;
586 EngineBuilder &setMArch(StringRef march) {
587 MArch.assign(march.begin(), march.end());
614 /// selectTarget - Pick a target either via -march or by guessing the native
617 StringRef MArch,
  /external/llvm/tools/lli/
lli.cpp 93 MArch("march",
329 builder.setMArch(MArch);
  /external/llvm/include/llvm/CodeGen/
CommandFlags.h 26 MArch("march", cl::desc("Architecture to generate code for (see --version)"));
  /frameworks/compile/mclinker/tools/llvm-mcld/
llvm-mcld.cpp 95 MArch("march", cl::desc("Architecture to generate code for (see --version)"));
    [all...]
  /external/llvm/tools/llc/
llc.cpp 231 const Target *TheTarget = TargetRegistry::lookupTarget(MArch, TheTriple,
  /external/llvm/tools/opt/
opt.cpp 528 const Target *TheTarget = TargetRegistry::lookupTarget(MArch, TheTriple,

Completed in 473 milliseconds