Home
last modified time | relevance | path

Searched refs:CPUStr (Results 1 – 4 of 4) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/tools/llc/
H A Dllc.cpp455 std::string CPUStr = codegen::getCPUStr(), in compileModule() local
459 auto setMIRFunctionAttributes = [&CPUStr, &FeaturesStr](Function &F) { in compileModule()
460 codegen::setFunctionAttributes(CPUStr, FeaturesStr, F); in compileModule()
465 CPUStr == "help" || (!MAttrs.empty() && MAttrs.front() == "help"); in compileModule()
559 TheTriple.getTriple(), CPUStr, FeaturesStr, Options, RM, CM, OLvl)); in compileModule()
602 TheTriple.getTriple(), CPUStr, FeaturesStr, Options, RM, CM, OLvl)); in compileModule()
646 codegen::setFunctionAttributes(CPUStr, FeaturesStr, *M); in compileModule()
/freebsd-14.2/contrib/llvm-project/llvm/tools/opt/
H A Dopt.cpp636 std::string CPUStr, FeaturesStr; in main() local
639 CPUStr = codegen::getCPUStr(); in main()
659 codegen::setFunctionAttributes(CPUStr, FeaturesStr, *M); in main()
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenFunction.h4994 llvm::Value *EmitX86CpuIs(StringRef CPUStr);
H A DCGBuiltin.cpp13857 StringRef CPUStr = cast<clang::StringLiteral>(CPUExpr)->getString(); in EmitX86CpuIs() local
13858 return EmitX86CpuIs(CPUStr); in EmitX86CpuIs()
13898 Value *CodeGenFunction::EmitX86CpuIs(StringRef CPUStr) { in EmitX86CpuIs() argument
13919 std::tie(Index, Value) = StringSwitch<std::pair<unsigned, unsigned>>(CPUStr) in EmitX86CpuIs()