Home
last modified time | relevance | path

Searched refs:TuneCPU (Results 1 – 25 of 40) sorted by relevance

12

/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/
H A DMCSubtargetInfo.cpp150 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 DRISCVSubtarget.cpp52 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 DRISCVSubtarget.h77 StringRef TuneCPU,
83 RISCVSubtarget(const Triple &TT, StringRef CPU, StringRef TuneCPU,
88 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
H A DRISCVTargetMachine.cpp83 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 DX86Subtarget.cpp237 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 DX86Subtarget.h540 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 DX86TargetMachine.cpp248 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 DTargetParser.cpp277 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 DMCSubtargetInfo.h78 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 DTargetSubtargetInfo.cpp18 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 DXCoreSubtarget.h47 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARC/
H A DARCSubtarget.h46 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DTargetOptions.h39 std::string TuneCPU; variable
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Lanai/
H A DLanaiSubtarget.h40 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/VE/
H A DVESubtarget.h69 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/MSP430/
H A DMSP430Subtarget.h57 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/BPF/
H A DBPFSubtarget.h70 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/
H A DNVPTXSubtarget.h86 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
H A DWebAssemblySubtarget.h104 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AVR/
H A DAVRSubtarget.h49 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Sparc/
H A DSparcSubtarget.h104 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DR600Subtarget.h80 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/M68k/
H A DM68kSubtarget.h79 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DTargetParser.h174 StringRef resolveTuneCPUAlias(StringRef TuneCPU, bool IsRV64);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
H A DSystemZSubtarget.h125 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS);

12