| /src/external/apache2/llvm/dist/llvm/lib/Target/Lanai/ |
| LanaiSubtarget.cpp | 26 std::string CPUName = std::string(CPU); 27 if (CPUName.empty()) 28 CPUName = "generic"; 30 ParseSubtargetFeatures(CPUName, /*TuneCPU*/ CPUName, FS);
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/MSP430/ |
| MSP430Subtarget.cpp | 46 StringRef CPUName = CPU; 47 if (CPUName.empty()) 48 CPUName = "msp430"; 50 ParseSubtargetFeatures(CPUName, /*TuneCPU*/ CPUName, FS);
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/VE/ |
| VESubtarget.cpp | 34 std::string CPUName = std::string(CPU); 35 if (CPUName.empty()) 36 CPUName = "generic"; 39 ParseSubtargetFeatures(CPUName, /*TuneCPU=*/CPU, FS);
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/CSKY/MCTargetDesc/ |
| CSKYMCTargetDesc.cpp | 69 std::string CPUName = std::string(CPU); 70 if (CPUName.empty()) 71 CPUName = "generic"; 72 return createCSKYMCSubtargetInfoImpl(TT, CPUName, /*TuneCPU=*/CPUName, FS);
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/Sparc/ |
| SparcSubtarget.cpp | 53 std::string CPUName = std::string(CPU); 54 if (CPUName.empty()) 55 CPUName = (Is64Bit) ? "v9" : "v8"; 58 ParseSubtargetFeatures(CPUName, /*TuneCPU*/ CPUName, FS);
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/ |
| SystemZSubtarget.cpp | 32 StringRef CPUName = CPU; 33 if (CPUName.empty()) 34 CPUName = "generic"; 36 ParseSubtargetFeatures(CPUName, /*TuneCPU*/ CPUName, FS);
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/ |
| PPCSubtarget.cpp | 146 std::string CPUName = std::string(CPU); 147 if (CPUName.empty() || CPU == "generic") { 150 CPUName = "ppc64le"; 152 CPUName = "e500"; 154 CPUName = "generic"; 158 InstrItins = getInstrItineraryForCPU(CPUName); 161 ParseSubtargetFeatures(CPUName, /*TuneCPU*/ CPUName, FS);
|
| /src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/Arch/ |
| Mips.h | 35 const llvm::Triple &Triple, StringRef &CPUName, 48 bool isFP64ADefault(const llvm::Triple &Triple, StringRef CPUName); 49 bool isFPXXDefault(const llvm::Triple &Triple, StringRef CPUName, 52 StringRef CPUName, StringRef ABIName,
|
| Mips.cpp | 25 StringRef &CPUName, StringRef &ABIName) { 61 CPUName = A->getValue(); 74 if (CPUName.empty() && ABIName.empty()) { 80 CPUName = DefMips32CPU; 84 CPUName = DefMips64CPU; 95 ABIName = llvm::StringSwitch<const char *>(CPUName) 121 if (CPUName.empty()) { 123 CPUName = llvm::StringSwitch<const char *>(ABIName) 134 StringRef CPUName, ABIName; 135 tools::mips::getMipsCPUAndABI(Args, Triple, CPUName, ABIName) [all...] |
| SystemZ.cpp | 39 llvm::StringRef CPUName = A->getValue(); 41 if (CPUName == "native") { 49 return std::string(CPUName);
|
| M68k.cpp | 31 StringRef CPUName = A->getValue(); 33 if (CPUName == "native") { 39 if (CPUName == "common") 42 return llvm::StringSwitch<std::string>(CPUName) 49 .Default(CPUName.str());
|
| PPC.cpp | 26 StringRef CPUName = A->getValue(); 28 if (CPUName == "native") { 36 return llvm::StringSwitch<const char *>(CPUName)
|
| ARM.cpp | 113 llvm::StringRef ArchName, llvm::StringRef CPUName, 121 (Split.second.size() && !DecodeARMFeatures(D, Split.second, CPUName, 128 llvm::StringRef CPUName, llvm::StringRef ArchName, 131 std::pair<StringRef, StringRef> Split = CPUName.split("+"); 133 std::string CPU = arm::getARMTargetCPU(CPUName, ArchName, Triple); 479 StringRef CPUName; 488 CPUName = WaCPU->second; 491 CPUName = CPUArg->getValue(); 500 checkARMArchName(D, WaArch->first, Args, ArchName, CPUName, 506 checkARMArchName(D, ArchArg, Args, ArchName, CPUName, ExtensionFeatures [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/Lanai/MCTargetDesc/ |
| LanaiMCTargetDesc.cpp | 55 std::string CPUName = std::string(CPU); 56 if (CPUName.empty()) 57 CPUName = "generic"; 59 return createLanaiMCSubtargetInfoImpl(TT, CPUName, /*TuneCPU*/ CPUName, FS);
|
| /src/external/apache2/llvm/dist/clang/lib/Basic/ |
| Targets.h | 38 void defineCPUMacros(clang::MacroBuilder &Builder, llvm::StringRef CPUName,
|
| Targets.cpp | 72 void defineCPUMacros(MacroBuilder &Builder, StringRef CPUName, bool Tuning) { 73 Builder.defineMacro("__" + CPUName); 74 Builder.defineMacro("__" + CPUName + "__"); 76 Builder.defineMacro("__tune_" + CPUName + "__");
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/M68k/ |
| M68kSubtarget.cpp | 66 std::string CPUName = selectM68kCPU(TT, CPU).str(); 69 ParseSubtargetFeatures(CPUName, CPUName, FS); 72 InstrItins = getInstrItineraryForCPU(CPUName);
|
| /src/external/apache2/llvm/dist/clang/lib/Basic/Targets/ |
| BPF.h | 112 StringRef CPUName(Name); 113 return isValidCPUName(CPUName);
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/ |
| MipsSubtarget.cpp | 240 StringRef CPUName = MIPS_MC::selectMipsCPU(TM.getTargetTriple(), CPU); 243 ParseSubtargetFeatures(CPUName, /*TuneCPU*/ CPUName, FS); 245 InstrItins = getInstrItineraryForCPU(CPUName);
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/MCTargetDesc/ |
| HexagonMCTargetDesc.cpp | 480 StringRef CPUName = Features.first; 484 TT, CPUName, /*TuneCPU*/ CPUName, ArchFS); 485 if (X != nullptr && (CPUName == "hexagonv67t")) 491 if (!isCPUValid(CPUName.str())) { 492 errs() << "error: invalid CPU \"" << CPUName.str().c_str() 508 (CPUName == "hexagonv67") || (CPUName == "hexagonv66");
|
| /src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/ |
| OpenBSD.cpp | 56 StringRef CPUName; 58 mips::getMipsCPUAndABI(Args, getToolChain().getTriple(), CPUName, ABIName);
|
| Gnu.cpp | 841 StringRef CPUName; 843 mips::getMipsCPUAndABI(Args, getToolChain().getTriple(), CPUName, ABIName); 847 CmdArgs.push_back(CPUName.data()); 878 Args, getToolChain().getTriple(), CPUName, ABIName, 923 std::string CPUName = systemz::getSystemZTargetCPU(Args); 924 CmdArgs.push_back(Args.MakeArgString("-march=" + CPUName)); 1453 StringRef CPUName; 1455 tools::mips::getMipsCPUAndABI(Args, TargetTriple, CPUName, ABIName); 1463 addMultilibFlag(CPUName == "mips32", "march=mips32", Flags); 1464 addMultilibFlag(CPUName == "mips32r2" || CPUName == "mips32r3" | [all...] |
| FreeBSD.cpp | 52 StringRef CPUName; 54 mips::getMipsCPUAndABI(Args, getToolChain().getTriple(), CPUName, ABIName); 57 CmdArgs.push_back(CPUName.data());
|
| NetBSD.cpp | 57 StringRef CPUName; 59 mips::getMipsCPUAndABI(Args, getToolChain().getTriple(), CPUName, ABIName); 62 CmdArgs.push_back(CPUName.data());
|
| Linux.cpp | 140 StringRef CPUName; 142 tools::mips::getMipsCPUAndABI(Args, Triple, CPUName, ABIName); 143 if (CPUName == "mips32r6") 145 if (CPUName == "mips32r2")
|