OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:MArch
(Results
1 - 8
of
8
) sorted by null
/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/llvm/unittests/ExecutionEngine/MCJIT/
MCJITTestBase.h
151
,
MArch
("")
194
.setMArch(
MArch
)
205
StringRef
MArch
;
/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
...]
/frameworks/compile/mclinker/tools/llvm-mcld/
llvm-mcld.cpp
97
MArch
("
march
", cl::desc("Architecture to generate code for (see --version)"));
[
all
...]
/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
,
Completed in 362 milliseconds