OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CPUName
(Results
1 - 9
of
9
) sorted by null
/external/llvm/lib/Target/Sparc/
SparcSubtarget.cpp
36
std::string
CPUName
= CPU;
37
if (
CPUName
.empty()) {
39
CPUName
= "v9";
41
CPUName
= "v8";
43
IsV9 =
CPUName
== "v9";
46
ParseSubtargetFeatures(
CPUName
, FS);
/external/llvm/lib/Target/MSP430/
MSP430Subtarget.cpp
30
std::string
CPUName
= "generic";
33
ParseSubtargetFeatures(
CPUName
, FS);
/external/llvm/lib/Target/SystemZ/
SystemZSubtarget.cpp
25
std::string
CPUName
= CPU;
26
if (
CPUName
.empty())
27
CPUName
= "z10";
30
ParseSubtargetFeatures(
CPUName
, FS);
/external/llvm/lib/Target/PowerPC/
PPCSubtarget.cpp
97
std::string
CPUName
= CPU;
98
if (
CPUName
.empty())
99
CPUName
= "generic";
102
if (
CPUName
== "generic")
103
CPUName
= sys::getHostCPUName();
107
InstrItins = getInstrItineraryForCPU(
CPUName
);
109
// Make sure 64-bit features are available when
CPUname
is generic
124
ParseSubtargetFeatures(
CPUName
, FullFS);
/external/llvm/lib/Target/Mips/
MipsSubtarget.cpp
71
std::string
CPUName
= CPU;
72
if (
CPUName
.empty())
73
CPUName
= "mips32";
76
ParseSubtargetFeatures(
CPUName
, FS);
81
InstrItins = getInstrItineraryForCPU(
CPUName
);
/external/llvm/lib/Target/X86/
X86Subtarget.cpp
383
std::string
CPUName
= CPU;
385
if (
CPUName
.empty()) {
388
CPUName
= sys::getHostCPUName();
390
CPUName
= "generic";
405
ParseSubtargetFeatures(
CPUName
, FullFS);
407
if (
CPUName
.empty()) {
409
CPUName
= sys::getHostCPUName();
411
CPUName
= "generic";
430
//
CPUName
may have been set by the CPU detection code. Make sure the
432
InitMCProcessorInfo(
CPUName
, FS)
[
all
...]
/external/llvm/lib/Target/X86/MCTargetDesc/
X86MCTargetDesc.cpp
230
std::string
CPUName
= CPU;
231
if (
CPUName
.empty()) {
234
CPUName
= sys::getHostCPUName();
236
CPUName
= "generic";
241
InitX86MCSubtargetInfo(X, TT,
CPUName
, ArchFS);
/external/clang/lib/Driver/
Tools.cpp
721
std::string
CPUName
= getARMTargetCPU(Args, Triple);
732
if (StringRef(
CPUName
).startswith("cortex-m")) {
757
CmdArgs.push_back(Args.MakeArgString(
CPUName
));
859
StringRef &
CPUName
,
868
CPUName
= getMipsCPUFromAlias(*A);
870
CPUName
= A->getValue();
884
if (
CPUName
.empty() && ABIName.empty()) {
890
CPUName
= DefMips32CPU;
894
CPUName
= DefMips64CPU;
901
CPUName
= llvm::StringSwitch<const char *>(ABIName
[
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 255 milliseconds