Searched defs:CPUName (Results 1 - 9 of 9) sorted by relevance

/external/llvm/lib/Target/MSP430/
H A DMSP430Subtarget.cpp30 std::string CPUName = "generic"; local
33 ParseSubtargetFeatures(CPUName, FS);
/external/llvm/lib/Target/Sparc/
H A DSparcSubtarget.cpp36 std::string CPUName = CPU; local
37 if (CPUName.empty()) {
39 CPUName = "v9";
41 CPUName = "v8";
43 IsV9 = CPUName == "v9";
46 ParseSubtargetFeatures(CPUName, FS);
/external/llvm/lib/Target/SystemZ/
H A DSystemZSubtarget.cpp25 std::string CPUName = CPU; local
26 if (CPUName.empty())
27 CPUName = "z10";
30 ParseSubtargetFeatures(CPUName, FS);
/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 + "__");
/external/llvm/lib/Target/Mips/
H A DMipsSubtarget.cpp71 std::string CPUName = CPU; local
72 if (CPUName.empty())
73 CPUName = "mips32";
76 ParseSubtargetFeatures(CPUName, FS);
81 InstrItins = getInstrItineraryForCPU(CPUName);
/external/llvm/lib/Target/PowerPC/
H A DPPCSubtarget.cpp97 std::string CPUName = CPU; local
98 if (CPUName.empty())
99 CPUName = "generic";
102 if (CPUName == "generic")
103 CPUName = sys::getHostCPUName();
107 InstrItins = getInstrItineraryForCPU(CPUName);
124 ParseSubtargetFeatures(CPUName, FullFS);
/external/llvm/lib/Target/X86/MCTargetDesc/
H A DX86MCTargetDesc.cpp230 std::string CPUName = CPU; local
231 if (CPUName.empty()) {
234 CPUName = sys::getHostCPUName();
236 CPUName = "generic";
241 InitX86MCSubtargetInfo(X, TT, CPUName, ArchFS);
/external/llvm/lib/Target/X86/
H A DX86Subtarget.cpp383 std::string CPUName = CPU; local
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, F
[all...]
/external/clang/lib/Driver/
H A DTools.cpp721 std::string CPUName = getARMTargetCPU(Args, Triple); local
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
857 getMipsCPUAndABI(const ArgList &Args, const ToolChain &TC, StringRef &CPUName, StringRef &ABIName) argument
973 StringRef CPUName; local
1061 StringRef CPUName = A->getValue(); local
1239 const char *CPUName = getSystemZTargetCPU(Args); local
5527 StringRef CPUName; local
5951 StringRef CPUName; local
5987 StringRef CPUName = getSystemZTargetCPU(Args); local
[all...]

Completed in 1270 milliseconds