Lines Matching defs:CPU
46 BPFSubtarget &BPFSubtarget::initializeSubtargetDependencies(StringRef CPU,
49 initSubtargetFeatures(CPU, FS);
50 ParseSubtargetFeatures(CPU, /*TuneCPU*/ CPU, FS);
67 void BPFSubtarget::initSubtargetFeatures(StringRef CPU, StringRef FS) {
68 if (CPU == "probe")
69 CPU = sys::detail::getHostCPUNameForBPF();
70 if (CPU == "generic" || CPU == "v1")
72 if (CPU == "v2") {
76 if (CPU == "v3") {
82 if (CPU == "v4") {
96 BPFSubtarget::BPFSubtarget(const Triple &TT, const std::string &CPU,
98 : BPFGenSubtargetInfo(TT, CPU, /*TuneCPU*/ CPU, FS),
99 FrameLowering(initializeSubtargetDependencies(CPU, FS)),