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

/external/llvm/lib/Target/Sparc/
H A DSparcSubtarget.cpp38 std::string CPUName = CPU; local
39 if (CPUName.empty())
40 CPUName = (Is64Bit) ? "v9" : "v8";
43 ParseSubtargetFeatures(CPUName, FS);
/external/llvm/lib/Target/SystemZ/
H A DSystemZSubtarget.cpp27 std::string CPUName = CPU; local
28 if (CPUName.empty())
29 CPUName = "generic";
31 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.cpp144 std::string CPUName = MIPS_MC::selectMipsCPU(TM.getTargetTriple(), CPU); local
147 ParseSubtargetFeatures(CPUName, FS);
149 InstrItins = getInstrItineraryForCPU(CPUName);
/external/llvm/lib/Target/X86/
H A DX86Subtarget.cpp182 std::string CPUName = CPU; local
183 if (CPUName.empty())
184 CPUName = "generic";
197 ParseSubtargetFeatures(CPUName, FullFS);
200 InitCPUSchedModel(CPUName);
202 InstrItins = getInstrItineraryForCPU(CPUName);
/external/llvm/lib/Target/PowerPC/
H A DPPCSubtarget.cpp107 std::string CPUName = CPU; local
108 if (CPUName.empty()) {
111 CPUName = "ppc64le";
113 CPUName = "generic";
117 InstrItins = getInstrItineraryForCPU(CPUName);
120 ParseSubtargetFeatures(CPUName, FS);
/external/llvm/lib/Target/X86/MCTargetDesc/
H A DX86MCTargetDesc.cpp88 std::string CPUName = CPU; local
89 if (CPUName.empty())
90 CPUName = "generic";
93 InitX86MCSubtargetInfo(X, TT, CPUName, ArchFS);
/external/clang/lib/Driver/
H A DToolChains.cpp1774 StringRef CPUName; local
1776 tools::mips::getMipsCPUAndABI(Args, TargetTriple, CPUName, ABIName);
1784 addMultilibFlag(CPUName == "mips32", "march=mips32", Flags);
1785 addMultilibFlag(CPUName == "mips32r2" || CPUName == "mips32r3" ||
1786 CPUName == "mips32r5",
1788 addMultilibFlag(CPUName == "mips32r6", "march=mips32r6", Flags);
1789 addMultilibFlag(CPUName == "mips64", "march=mips64", Flags);
1790 addMultilibFlag(CPUName == "mips64r2" || CPUName
[all...]
H A DTools.cpp769 std::string CPUName = arm::getARMTargetCPU(Args, Triple); local
783 StringRef(CPUName).startswith("cortex-m")) {
982 StringRef &CPUName,
1001 CPUName = A->getValue();
1014 if (CPUName.empty() && ABIName.empty()) {
1020 CPUName = DefMips32CPU;
1024 CPUName = DefMips64CPU;
1038 if (CPUName.empty()) {
1040 CPUName = llvm::StringSwitch<const char *>(ABIName)
1103 StringRef CPUName; local
980 getMipsCPUAndABI(const ArgList &Args, const llvm::Triple &Triple, StringRef &CPUName, StringRef &ABIName) argument
1176 StringRef CPUName; local
1233 StringRef CPUName = A->getValue(); local
1527 StringRef CPUName; local
5025 StringRef CPUName; local
5711 isFPXXDefault(const llvm::Triple &Triple, StringRef CPUName, StringRef ABIName) argument
6544 StringRef CPUName; local
6868 StringRef CPUName; local
7143 StringRef CPUName; local
7489 StringRef CPUName; local
7577 StringRef CPUName = getSystemZTargetCPU(Args); local
7670 StringRef CPUName; local
[all...]

Completed in 3098 milliseconds