Lines Matching defs:CPUStr
14898 StringRef CPUStr = cast<clang::StringLiteral>(CPUExpr)->getString();
14899 return EmitX86CpuIs(CPUStr);
14939 Value *CodeGenFunction::EmitX86CpuIs(StringRef CPUStr) {
14960 std::tie(Index, Value) = StringSwitch<std::pair<unsigned, unsigned>>(CPUStr)
14973 assert(Value != 0 && "Invalid CPUStr passed to CpuIs");
17845 StringRef CPUStr = cast<clang::StringLiteral>(CPUExpr)->getString();
17852 static_cast<CPUInfo>(StringSwitch<CPUInfo>(CPUStr)
17885 StringRef CPUStr = cast<clang::StringLiteral>(CPUExpr)->getString();
17893 static_cast<CPUSupportType>(StringSwitch<CPUSupportType>(CPUStr)
17909 StringSwitch<std::pair<unsigned, unsigned>>(CPUStr)
23160 StringRef CPUStr = cast<clang::StringLiteral>(CPUExpr)->getString();
23161 return EmitRISCVCpuIs(CPUStr);
23164 Value *CodeGenFunction::EmitRISCVCpuIs(StringRef CPUStr) {
23179 const llvm::RISCV::CPUModel Model = llvm::RISCV::getCPUModel(CPUStr);