OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CPUName
(Results
1 - 8
of
8
) sorted by null
/external/llvm/lib/Target/SystemZ/
SystemZSubtarget.cpp
28
std::string
CPUName
= CPU;
29
if (
CPUName
.empty())
30
CPUName
= "generic";
32
if (
CPUName
== "generic")
33
CPUName
= sys::getHostCPUName();
36
ParseSubtargetFeatures(
CPUName
, FS);
/external/llvm/lib/Target/Sparc/
SparcSubtarget.cpp
64
std::string
CPUName
= CPU;
65
if (
CPUName
.empty())
66
CPUName
= (Is64Bit) ? "v9" : "v8";
69
ParseSubtargetFeatures(
CPUName
, FS);
/external/llvm/lib/Target/PowerPC/
PPCSubtarget.cpp
147
std::string
CPUName
= CPU;
148
if (
CPUName
.empty())
149
CPUName
= "generic";
152
if (
CPUName
== "generic")
153
CPUName
= sys::getHostCPUName();
157
InstrItins = getInstrItineraryForCPU(
CPUName
);
159
// Make sure 64-bit features are available when
CPUname
is generic
182
ParseSubtargetFeatures(
CPUName
, FullFS);
/external/llvm/lib/Target/X86/
X86Subtarget.cpp
202
std::string
CPUName
= CPU;
203
if (
CPUName
.empty())
204
CPUName
= "generic";
217
ParseSubtargetFeatures(
CPUName
, FullFS);
220
InitCPUSchedModel(
CPUName
);
225
InstrItins = getInstrItineraryForCPU(
CPUName
);
/external/llvm/lib/Target/Mips/
MipsSubtarget.cpp
193
std::string
CPUName
= selectMipsCPU(TargetTriple, CPU);
196
ParseSubtargetFeatures(
CPUName
, FS);
198
InstrItins = getInstrItineraryForCPU(
CPUName
);
/external/llvm/lib/Target/X86/MCTargetDesc/
X86MCTargetDesc.cpp
230
std::string
CPUName
= CPU;
231
if (
CPUName
.empty())
232
CPUName
= "generic";
235
InitX86MCSubtargetInfo(X, TT,
CPUName
, ArchFS);
/external/clang/lib/Driver/
Tools.cpp
746
std::string
CPUName
= arm::getARMTargetCPU(Args, Triple);
760
StringRef(
CPUName
).startswith("cortex-m")) {
914
StringRef &
CPUName
,
929
CPUName
= A->getValue();
942
if (
CPUName
.empty() && ABIName.empty()) {
[
all
...]
/external/clang/lib/Basic/
Targets.cpp
57
static void defineCPUMacros(MacroBuilder &Builder, StringRef
CPUName
,
59
Builder.defineMacro("__" +
CPUName
);
60
Builder.defineMacro("__" +
CPUName
+ "__");
62
Builder.defineMacro("__tune_" +
CPUName
+ "__");
[
all
...]
Completed in 66 milliseconds