HomeSort by relevance Sort by last modified time
    Searched refs:MArch (Results 1 - 13 of 13) 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/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
lp_bld_misc.cpp 280 StringRef MArch = "";
283 JIT = builder.create(builder.selectTarget(TT, MArch, MCPU, MAttrs));
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_misc.cpp 280 StringRef MArch = "";
283 JIT = builder.create(builder.selectTarget(TT, MArch, MCPU, MAttrs));
  /external/clang/lib/Driver/
ToolChain.cpp 161 // corresponding -march option) should determine the architecture
164 // FIXME: Warn on inconsistent use of -mcpu and -march.
170 StringRef MArch;
172 // Otherwise, if we have -march= choose the base CPU for that arch.
173 MArch = A->getValue();
176 MArch = Triple.getArchName();
179 return llvm::StringSwitch<const char *>(MArch)
ToolChains.cpp 732 const Option MArch = Opts.getOption(options::OPT_march_EQ);
761 DAL->AddJoinedArg(0, MArch, "i486");
763 DAL->AddJoinedArg(0, MArch, "i586");
765 DAL->AddJoinedArg(0, MArch, "i686");
767 DAL->AddJoinedArg(0, MArch, "pentium");
769 DAL->AddJoinedArg(0, MArch, "pentium2");
771 DAL->AddJoinedArg(0, MArch, "pentiumpro");
773 DAL->AddJoinedArg(0, MArch, "pentium2");
779 DAL->AddJoinedArg(0, MArch, "armv4t");
781 DAL->AddJoinedArg(0, MArch, "armv4t")
    [all...]
Tools.cpp 477 // FIXME: Warn on inconsistent use of -mcpu and -march.
489 StringRef MArch;
491 // Otherwise, if we have -march= choose the base CPU for that arch.
492 MArch = A->getValue();
495 MArch = Triple.getArchName();
498 // Handle -march=native.
500 if (MArch == "native") {
506 MArch = NativeMArch;
510 return llvm::StringSwitch<const char *>(MArch)
755 // Set the CPU based on -march= and -mcpu=
    [all...]
  /external/llvm/unittests/ExecutionEngine/MCJIT/
MCJITTestBase.h 151 , MArch("")
194 .setMArch(MArch)
205 StringRef MArch;
  /external/llvm/include/llvm/ExecutionEngine/
ExecutionEngine.h 509 std::string MArch;
617 EngineBuilder &setMArch(StringRef march) {
618 MArch.assign(march.begin(), march.end());
645 /// selectTarget - Pick a target either via -march or by guessing the native
648 StringRef MArch,
  /external/llvm/include/llvm/CodeGen/
CommandFlags.h 26 MArch("march", cl::desc("Architecture to generate code for (see --version)"));
  /external/llvm/tools/lli/
lli.cpp 99 MArch("march",
341 builder.setMArch(MArch);
  /external/llvm/tools/llc/
llc.cpp 234 const Target *TheTarget = TargetRegistry::lookupTarget(MArch, TheTriple,
  /frameworks/compile/mclinker/tools/llvm-mcld/
llvm-mcld.cpp 97 MArch("march", cl::desc("Architecture to generate code for (see --version)"));
    [all...]
  /external/llvm/tools/opt/
opt.cpp 527 const Target *TheTarget = TargetRegistry::lookupTarget(MArch, TheTriple,

Completed in 788 milliseconds