Lines Matching refs:CPU
1 //===- SubtargetFeature.cpp - CPU characteristics Implementation ----------===//
115 // Determine the length of the longest CPU and Feature entries.
119 // Print the CPU table.
121 for (auto &CPU : CPUTable)
122 errs() << format(" %-*s - %s.\n", MaxCPULen, CPU.Key, CPU.Desc);
213 /// getFeatureBits - Get feature bits a CPU.
216 SubtargetFeatures::getFeatureBits(const StringRef CPU,
226 "CPU table is not sorted");
230 "CPU features table is not sorted");
236 if (CPU == "help")
239 // Find CPU entry if CPU name is specified.
240 else if (!CPU.empty()) {
241 const SubtargetFeatureKV *CPUEntry = Find(CPU, CPUTable);
248 // Set the feature implied by this CPU feature, if any.
254 errs() << "'" << CPU