| /netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/ |
| H A D | MCSubtargetInfo.cpp | 150 static FeatureBitset getFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS, in getFeatures() argument 181 if (!TuneCPU.empty()) { in getFeatures() 182 const SubtargetSubTypeKV *CPUEntry = Find(TuneCPU, ProcDesc); in getFeatures() 188 } else if (TuneCPU != CPU) { in getFeatures() 189 errs() << "'" << TuneCPU << "' is not a recognized processor for this " 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 [all …]
|
| /netbsd-src/external/apache2/llvm/dist/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 | 77 StringRef TuneCPU, 83 RISCVSubtarget(const Triple &TT, StringRef CPU, StringRef TuneCPU, 88 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()
|
| /netbsd-src/external/apache2/llvm/dist/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 | 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);
|
| H A D | X86TargetMachine.cpp | 248 StringRef TuneCPU = in getSubtargetImpl() local 289 Key += TuneCPU; in getSubtargetImpl() 318 TargetTriple, CPU, TuneCPU, FS, *this, in getSubtargetImpl()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/ |
| H A D | TargetParser.cpp | 277 StringRef resolveTuneCPUAlias(StringRef TuneCPU, bool IsRV64) { in resolveTuneCPUAlias() argument 278 return llvm::StringSwitch<StringRef>(TuneCPU) in resolveTuneCPUAlias() 281 .Default(TuneCPU); in resolveTuneCPUAlias() 284 CPUKind parseTuneCPUKind(StringRef TuneCPU, bool IsRV64) { in parseTuneCPUKind() argument 285 TuneCPU = resolveTuneCPUAlias(TuneCPU, IsRV64); in parseTuneCPUKind() 287 return llvm::StringSwitch<CPUKind>(TuneCPU) in parseTuneCPUKind()
|
| /netbsd-src/external/apache2/llvm/dist/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);
|
| /netbsd-src/external/apache2/llvm/dist/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()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/XCore/ |
| H A D | XCoreSubtarget.h | 47 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARC/ |
| H A D | ARCSubtarget.h | 46 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/ |
| H A D | TargetOptions.h | 39 std::string TuneCPU; variable
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Lanai/ |
| H A D | LanaiSubtarget.h | 40 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/VE/ |
| H A D | VESubtarget.h | 69 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/MSP430/ |
| H A D | MSP430Subtarget.h | 57 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/BPF/ |
| H A D | BPFSubtarget.h | 70 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/ |
| H A D | NVPTXSubtarget.h | 86 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/ |
| H A D | WebAssemblySubtarget.h | 104 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AVR/ |
| H A D | AVRSubtarget.h | 49 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Sparc/ |
| H A D | SparcSubtarget.h | 104 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/ |
| H A D | R600Subtarget.h | 80 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/M68k/ |
| H A D | M68kSubtarget.h | 79 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
| H A D | TargetParser.h | 174 StringRef resolveTuneCPUAlias(StringRef TuneCPU, bool IsRV64);
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/ |
| H A D | SystemZSubtarget.h | 125 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
|