| /src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/ |
| RISCVSubtarget.cpp | 52 StringRef TuneCPU, StringRef FS, 62 if (TuneCPU.empty()) 63 TuneCPU = CPU; 65 ParseSubtargetFeatures(CPU, TuneCPU, FS); 77 StringRef TuneCPU, StringRef FS, 79 : RISCVGenSubtargetInfo(TT, CPU, TuneCPU, FS), 81 FrameLowering(initializeSubtargetDependencies(TT, CPU, TuneCPU, FS, ABIName)),
|
| RISCVSubtarget.h | 77 StringRef TuneCPU, 83 RISCVSubtarget(const Triple &TT, StringRef CPU, StringRef TuneCPU, 88 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
|
| RISCVTargetMachine.cpp | 83 std::string TuneCPU = 87 std::string Key = CPU + TuneCPU + FS; 104 I = std::make_unique<RISCVSubtarget>(TargetTriple, CPU, TuneCPU, FS, ABIName, *this);
|
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| TargetSubtargetInfo.cpp | 18 const Triple &TT, StringRef CPU, StringRef TuneCPU, StringRef FS, 23 : MCSubtargetInfo(TT, CPU, TuneCPU, FS, PF, PD, WPR, WL, RA, IS, OC, FP) {}
|
| /src/external/apache2/llvm/dist/llvm/lib/MC/ |
| MCSubtargetInfo.cpp | 150 static FeatureBitset getFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS, 181 if (!TuneCPU.empty()) { 182 const SubtargetSubTypeKV *CPUEntry = Find(TuneCPU, ProcDesc); 188 } else if (TuneCPU != CPU) { 189 errs() << "'" << TuneCPU << "' is not a recognized processor for this " 208 void MCSubtargetInfo::InitMCProcessorInfo(StringRef CPU, StringRef TuneCPU, 210 FeatureBits = getFeatures(CPU, TuneCPU, FS, ProcDesc, ProcFeatures); 213 if (!TuneCPU.empty()) 214 CPUSchedModel = &getSchedModelForCPU(TuneCPU); 219 void MCSubtargetInfo::setDefaultFeatures(StringRef CPU, StringRef TuneCPU, [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/X86/ |
| X86Subtarget.cpp | 237 void X86Subtarget::initSubtargetFeatures(StringRef CPU, StringRef TuneCPU, 242 if (TuneCPU.empty()) 243 TuneCPU = "i586"; // FIXME: "generic" is more modern than llc tests expect. 252 ParseSubtargetFeatures(CPU, TuneCPU, FullFS); 287 StringRef TuneCPU, 289 initSubtargetFeatures(CPU, TuneCPU, FS); 293 X86Subtarget::X86Subtarget(const Triple &TT, StringRef CPU, StringRef TuneCPU, 298 : X86GenSubtargetInfo(TT, CPU, TuneCPU, FS), 303 InstrInfo(initializeSubtargetDependencies(CPU, TuneCPU, FS)),
|
| X86Subtarget.h | 540 X86Subtarget(const Triple &TT, StringRef CPU, StringRef TuneCPU, StringRef FS, 577 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS); 589 StringRef TuneCPU, 591 void initSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
|
| X86TargetMachine.cpp | 248 StringRef TuneCPU = 289 Key += TuneCPU; 318 TargetTriple, CPU, TuneCPU, FS, *this,
|
| /src/external/apache2/llvm/dist/clang/include/clang/Basic/ |
| TargetOptions.h | 39 std::string TuneCPU;
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/ARC/ |
| ARCSubtarget.h | 46 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/Lanai/ |
| LanaiSubtarget.h | 40 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/XCore/ |
| XCoreSubtarget.h | 47 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
|
| /src/external/apache2/llvm/dist/llvm/lib/Support/ |
| TargetParser.cpp | 277 StringRef resolveTuneCPUAlias(StringRef TuneCPU, bool IsRV64) { 278 return llvm::StringSwitch<StringRef>(TuneCPU) 281 .Default(TuneCPU); 284 CPUKind parseTuneCPUKind(StringRef TuneCPU, bool IsRV64) { 285 TuneCPU = resolveTuneCPUAlias(TuneCPU, IsRV64); 287 return llvm::StringSwitch<CPUKind>(TuneCPU)
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/MC/ |
| MCSubtargetInfo.h | 78 std::string TuneCPU; // CPU being tuned for. 96 MCSubtargetInfo(const Triple &TT, StringRef CPU, StringRef TuneCPU, 109 StringRef getTuneCPU() const { return TuneCPU; } 127 void InitMCProcessorInfo(StringRef CPU, StringRef TuneCPU, StringRef FS); 130 /// Set the features to the default for the given CPU and TuneCPU, with ano 132 void setDefaultFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/BPF/ |
| BPFSubtarget.h | 70 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/MSP430/ |
| MSP430Subtarget.h | 57 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/ |
| NVPTXSubtarget.h | 86 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/VE/ |
| VESubtarget.h | 69 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/ |
| WebAssemblySubtarget.h | 104 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/ |
| R600Subtarget.h | 80 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/AVR/ |
| AVRSubtarget.h | 49 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/M68k/ |
| M68kSubtarget.h | 79 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/Sparc/ |
| SparcSubtarget.h | 104 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
| TargetParser.h | 174 StringRef resolveTuneCPUAlias(StringRef TuneCPU, bool IsRV64);
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/ |
| SystemZSubtarget.h | 125 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
|