Searched refs:CPUName (Results 1 - 8 of 8) sorted by relevance

/external/llvm/lib/Target/SystemZ/
H A DSystemZSubtarget.cpp28 std::string CPUName = CPU; local
29 if (CPUName.empty())
30 CPUName = "generic";
32 if (CPUName == "generic")
33 CPUName = sys::getHostCPUName();
36 ParseSubtargetFeatures(CPUName, FS);
/external/llvm/lib/Target/Sparc/
H A DSparcSubtarget.cpp64 std::string CPUName = CPU; local
65 if (CPUName.empty())
66 CPUName = (Is64Bit) ? "v9" : "v8";
69 ParseSubtargetFeatures(CPUName, FS);
/external/llvm/lib/Target/PowerPC/
H A DPPCSubtarget.cpp147 std::string CPUName = CPU; local
148 if (CPUName.empty())
149 CPUName = "generic";
152 if (CPUName == "generic")
153 CPUName = sys::getHostCPUName();
157 InstrItins = getInstrItineraryForCPU(CPUName);
182 ParseSubtargetFeatures(CPUName, FullFS);
/external/llvm/lib/Target/X86/
H A DX86Subtarget.cpp202 std::string CPUName = CPU; local
203 if (CPUName.empty())
204 CPUName = "generic";
217 ParseSubtargetFeatures(CPUName, FullFS);
220 InitCPUSchedModel(CPUName);
225 InstrItins = getInstrItineraryForCPU(CPUName);
/external/llvm/lib/Target/Mips/
H A DMipsSubtarget.cpp193 std::string CPUName = selectMipsCPU(TargetTriple, CPU); local
196 ParseSubtargetFeatures(CPUName, FS);
198 InstrItins = getInstrItineraryForCPU(CPUName);
/external/llvm/lib/Target/X86/MCTargetDesc/
H A DX86MCTargetDesc.cpp230 std::string CPUName = CPU; local
231 if (CPUName.empty())
232 CPUName = "generic";
235 InitX86MCSubtargetInfo(X, TT, CPUName, ArchFS);
/external/clang/lib/Driver/
H A DTools.cpp746 std::string CPUName = arm::getARMTargetCPU(Args, Triple); local
760 StringRef(CPUName).startswith("cortex-m")) {
914 StringRef &CPUName,
929 CPUName = A->getValue();
942 if (CPUName.empty() && ABIName.empty()) {
948 CPUName = DefMips32CPU;
952 CPUName = DefMips64CPU;
966 if (CPUName.empty()) {
968 CPUName = llvm::StringSwitch<const char *>(ABIName)
1068 StringRef CPUName; local
912 getMipsCPUAndABI(const ArgList &Args, const llvm::Triple &Triple, StringRef &CPUName, StringRef &ABIName) argument
1125 StringRef CPUName = A->getValue(); local
1363 StringRef CPUName; local
6016 StringRef CPUName; local
6338 StringRef CPUName; local
6611 StringRef CPUName; local
6905 StringRef CPUName; local
6944 StringRef CPUName = getSystemZTargetCPU(Args); local
[all...]
/external/clang/lib/Basic/
H A DTargets.cpp57 static void defineCPUMacros(MacroBuilder &Builder, StringRef CPUName, argument
59 Builder.defineMacro("__" + CPUName);
60 Builder.defineMacro("__" + CPUName + "__");
62 Builder.defineMacro("__tune_" + CPUName + "__");

Completed in 284 milliseconds