Searched refs:CPUStr (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/llvm-project/llvm/tools/llc/ |
H A D | llc.cpp | 452 std::string CPUStr = codegen::getCPUStr(), in compileModule() local 456 auto setMIRFunctionAttributes = [&CPUStr, &FeaturesStr](Function &F) { in compileModule() 457 codegen::setFunctionAttributes(CPUStr, FeaturesStr, F); in compileModule() 462 CPUStr == "help" || (!MAttrs.empty() && MAttrs.front() == "help"); in compileModule() 556 TheTriple.getTriple(), CPUStr, FeaturesStr, Options, RM, CM, OLvl)); in compileModule() 599 TheTriple.getTriple(), CPUStr, FeaturesStr, Options, RM, CM, OLvl)); in compileModule() 643 codegen::setFunctionAttributes(CPUStr, FeaturesStr, *M); in compileModule()
|
/freebsd/contrib/llvm-project/llvm/tools/opt/ |
H A D | optdriver.cpp | 636 std::string CPUStr, FeaturesStr; in optMain() local 639 CPUStr = codegen::getCPUStr(); in optMain() 659 codegen::setFunctionAttributes(CPUStr, FeaturesStr, *M); in optMain()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGBuiltin.cpp | 14141 StringRef CPUStr = cast<clang::StringLiteral>(CPUExpr)->getString(); in EmitX86CpuIs() local 14142 return EmitX86CpuIs(CPUStr); in EmitX86CpuIs() 14182 Value *CodeGenFunction::EmitX86CpuIs(StringRef CPUStr) { in EmitX86CpuIs() argument 14203 std::tie(Index, Value) = StringSwitch<std::pair<unsigned, unsigned>>(CPUStr) in EmitX86CpuIs() 16897 StringRef CPUStr = cast<clang::StringLiteral>(CPUExpr)->getString(); in EmitPPCBuiltinExpr() local 16904 static_cast<CPUInfo>(StringSwitch<CPUInfo>(CPUStr) in EmitPPCBuiltinExpr() 16937 StringRef CPUStr = cast<clang::StringLiteral>(CPUExpr)->getString(); in EmitPPCBuiltinExpr() local 16945 static_cast<CPUSupportType>(StringSwitch<CPUSupportType>(CPUStr) in EmitPPCBuiltinExpr() 16961 StringSwitch<std::pair<unsigned, unsigned>>(CPUStr) in EmitPPCBuiltinExpr()
|
H A D | CodeGenFunction.h | 5332 llvm::Value *EmitX86CpuIs(StringRef CPUStr);
|