| /freebsd-13.1/contrib/llvm-project/llvm/lib/MC/ |
| H A D | MCSubtargetInfo.cpp | 181 if (!TuneCPU.empty()) { in getFeatures() 182 const SubtargetSubTypeKV *CPUEntry = Find(TuneCPU, ProcDesc); in getFeatures() 188 } else if (TuneCPU != CPU) { in getFeatures() 208 void MCSubtargetInfo::InitMCProcessorInfo(StringRef CPU, StringRef TuneCPU, in InitMCProcessorInfo() argument 210 FeatureBits = getFeatures(CPU, TuneCPU, FS, ProcDesc, ProcFeatures); in InitMCProcessorInfo() 213 if (!TuneCPU.empty()) in InitMCProcessorInfo() 214 CPUSchedModel = &getSchedModelForCPU(TuneCPU); in InitMCProcessorInfo() 219 void MCSubtargetInfo::setDefaultFeatures(StringRef CPU, StringRef TuneCPU, in setDefaultFeatures() argument 221 FeatureBits = getFeatures(CPU, TuneCPU, FS, ProcDesc, ProcFeatures); in setDefaultFeatures() 233 : TargetTriple(TT), CPU(std::string(C)), TuneCPU(std::string(TC)), in MCSubtargetInfo() [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/RISCV/ |
| H A D | RISCVSubtarget.cpp | 52 StringRef TuneCPU, StringRef FS, in initializeSubtargetDependencies() argument 62 if (TuneCPU.empty()) in initializeSubtargetDependencies() 63 TuneCPU = CPU; in initializeSubtargetDependencies() 65 ParseSubtargetFeatures(CPU, TuneCPU, FS); in initializeSubtargetDependencies() 77 StringRef TuneCPU, StringRef FS, in RISCVSubtarget() argument 79 : RISCVGenSubtargetInfo(TT, CPU, TuneCPU, FS), in RISCVSubtarget() 81 FrameLowering(initializeSubtargetDependencies(TT, CPU, TuneCPU, FS, ABIName)), in RISCVSubtarget()
|
| H A D | RISCVSubtarget.h | 78 StringRef TuneCPU, 84 RISCVSubtarget(const Triple &TT, StringRef CPU, StringRef TuneCPU, 89 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
|
| H A D | RISCVTargetMachine.cpp | 83 std::string TuneCPU = in getSubtargetImpl() local 87 std::string Key = CPU + TuneCPU + FS; in getSubtargetImpl() 104 I = std::make_unique<RISCVSubtarget>(TargetTriple, CPU, TuneCPU, FS, ABIName, *this); in getSubtargetImpl()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86Subtarget.cpp | 237 void X86Subtarget::initSubtargetFeatures(StringRef CPU, StringRef TuneCPU, in initSubtargetFeatures() argument 242 if (TuneCPU.empty()) in initSubtargetFeatures() 243 TuneCPU = "i586"; // FIXME: "generic" is more modern than llc tests expect. in initSubtargetFeatures() 252 ParseSubtargetFeatures(CPU, TuneCPU, FullFS); in initSubtargetFeatures() 287 StringRef TuneCPU, in initializeSubtargetDependencies() argument 289 initSubtargetFeatures(CPU, TuneCPU, FS); in initializeSubtargetDependencies() 293 X86Subtarget::X86Subtarget(const Triple &TT, StringRef CPU, StringRef TuneCPU, in X86Subtarget() argument 298 : X86GenSubtargetInfo(TT, CPU, TuneCPU, FS), in X86Subtarget() 303 InstrInfo(initializeSubtargetDependencies(CPU, TuneCPU, FS)), in X86Subtarget()
|
| H A D | X86Subtarget.h | 544 X86Subtarget(const Triple &TT, StringRef CPU, StringRef TuneCPU, StringRef FS, 581 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS); 593 StringRef TuneCPU, 595 void initSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
|
| H A D | X86TargetMachine.cpp | 246 StringRef TuneCPU = in getSubtargetImpl() local 287 Key += TuneCPU; in getSubtargetImpl() 316 TargetTriple, CPU, TuneCPU, FS, *this, in getSubtargetImpl()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/MC/ |
| H A D | MCSubtargetInfo.h | 78 std::string TuneCPU; // CPU being tuned for. variable 96 MCSubtargetInfo(const Triple &TT, StringRef CPU, StringRef TuneCPU, 109 StringRef getTuneCPU() const { return TuneCPU; } in getTuneCPU() 127 void InitMCProcessorInfo(StringRef CPU, StringRef TuneCPU, StringRef FS); 132 void setDefaultFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Support/ |
| H A D | TargetParser.cpp | 281 StringRef resolveTuneCPUAlias(StringRef TuneCPU, bool IsRV64) { in resolveTuneCPUAlias() argument 282 return llvm::StringSwitch<StringRef>(TuneCPU) in resolveTuneCPUAlias() 285 .Default(TuneCPU); in resolveTuneCPUAlias() 288 CPUKind parseTuneCPUKind(StringRef TuneCPU, bool IsRV64) { in parseTuneCPUKind() argument 289 TuneCPU = resolveTuneCPUAlias(TuneCPU, IsRV64); in parseTuneCPUKind() 291 return llvm::StringSwitch<CPUKind>(TuneCPU) in parseTuneCPUKind()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | TargetSubtargetInfo.cpp | 18 const Triple &TT, StringRef CPU, StringRef TuneCPU, StringRef FS, in TargetSubtargetInfo() argument 23 : MCSubtargetInfo(TT, CPU, TuneCPU, FS, PF, PD, WPR, WL, RA, IS, OC, FP) {} in TargetSubtargetInfo()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | TargetOptions.h | 39 std::string TuneCPU; variable
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/XCore/ |
| H A D | XCoreSubtarget.h | 47 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/ARC/ |
| H A D | ARCSubtarget.h | 48 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Lanai/ |
| H A D | LanaiSubtarget.h | 40 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/VE/ |
| H A D | VESubtarget.h | 69 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/MSP430/ |
| H A D | MSP430Subtarget.h | 57 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/BPF/ |
| H A D | BPFSubtarget.h | 70 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/NVPTX/ |
| H A D | NVPTXSubtarget.h | 86 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
| H A D | WebAssemblySubtarget.h | 104 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AVR/ |
| H A D | AVRSubtarget.h | 49 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Sparc/ |
| H A D | SparcSubtarget.h | 104 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | R600Subtarget.h | 80 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | TargetParser.h | 176 StringRef resolveTuneCPUAlias(StringRef TuneCPU, bool IsRV64);
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/M68k/ |
| H A D | M68kSubtarget.h | 83 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
| H A D | SystemZSubtarget.h | 130 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
|