Lines Matching defs:TuneCPU
170 StringRef TuneCPU, StringRef FS,
202 if (!TuneCPU.empty()) {
203 const SubtargetSubTypeKV *CPUEntry = Find(TuneCPU, ProcDesc);
209 } else if (TuneCPU != CPU) {
210 errs() << "'" << TuneCPU << "' is not a recognized processor for this "
229 void MCSubtargetInfo::InitMCProcessorInfo(StringRef CPU, StringRef TuneCPU,
232 getFeatures(*this, CPU, TuneCPU, FS, ProcNames, ProcDesc, ProcFeatures);
235 if (!TuneCPU.empty())
236 CPUSchedModel = &getSchedModelForCPU(TuneCPU);
241 void MCSubtargetInfo::setDefaultFeatures(StringRef CPU, StringRef TuneCPU,
244 getFeatures(*this, CPU, TuneCPU, FS, ProcNames, ProcDesc, ProcFeatures);
254 : TargetTriple(TT), CPU(std::string(C)), TuneCPU(std::string(TC)),
258 InitMCProcessorInfo(CPU, TuneCPU, FS);