Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/tools/llc/
H A Dllc.cpp433 std::string CPUStr = codegen::getCPUStr(), in compileModule() local
437 auto setMIRFunctionAttributes = [&CPUStr, &FeaturesStr](Function &F) { in compileModule()
438 codegen::setFunctionAttributes(CPUStr, FeaturesStr, F); in compileModule()
517 TheTriple.getTriple(), CPUStr, FeaturesStr, Options, RM, in compileModule()
562 TheTriple.getTriple(), CPUStr, FeaturesStr, Options, RM, in compileModule()
608 codegen::setFunctionAttributes(CPUStr, FeaturesStr, *M); in compileModule()
/freebsd-13.1/contrib/llvm-project/llvm/tools/opt/
H A Dopt.cpp449 static TargetMachine* GetTargetMachine(Triple TheTriple, StringRef CPUStr, in GetTargetMachine() argument
725 std::string CPUStr, FeaturesStr; in main() local
731 CPUStr = codegen::getCPUStr(); in main()
733 Machine = GetTargetMachine(ModuleTriple, CPUStr, FeaturesStr, Options); in main()
745 codegen::setFunctionAttributes(CPUStr, FeaturesStr, *M); in main()
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenFunction.h4743 llvm::Value *EmitX86CpuIs(StringRef CPUStr);
H A DCGBuiltin.cpp12283 StringRef CPUStr = cast<clang::StringLiteral>(CPUExpr)->getString(); in EmitX86CpuIs() local
12284 return EmitX86CpuIs(CPUStr); in EmitX86CpuIs()
12336 Value *CodeGenFunction::EmitX86CpuIs(StringRef CPUStr) { in EmitX86CpuIs() argument
12357 std::tie(Index, Value) = StringSwitch<std::pair<unsigned, unsigned>>(CPUStr) in EmitX86CpuIs()