Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/tools/llc/
H A Dllc.cpp432 std::string CPUStr = codegen::getCPUStr(), in compileModule() local
436 auto setMIRFunctionAttributes = [&CPUStr, &FeaturesStr](Function &F) { in compileModule()
437 codegen::setFunctionAttributes(CPUStr, FeaturesStr, F); in compileModule()
516 TheTriple.getTriple(), CPUStr, FeaturesStr, Options, RM, in compileModule()
561 TheTriple.getTriple(), CPUStr, FeaturesStr, Options, RM, in compileModule()
607 codegen::setFunctionAttributes(CPUStr, FeaturesStr, *M); in compileModule()
/netbsd-src/external/apache2/llvm/dist/llvm/bindings/ocaml/target/
H A Dtarget_ocaml.c236 const char *CPUStr = "", *FeaturesStr = ""; in llvm_create_targetmachine_native() local
242 CPUStr = String_val(Field(CPU, 0)); in llvm_create_targetmachine_native()
253 LLVMCreateTargetMachine(Target, String_val(Triple), CPUStr, FeaturesStr, in llvm_create_targetmachine_native()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-isel-fuzzer/
H A Dllvm-isel-fuzzer.cpp146 std::string CPUStr = codegen::getCPUStr(), in LLVMFuzzerInitialize() local
163 TheTriple.getTriple(), CPUStr, FeaturesStr, Options, in LLVMFuzzerInitialize()
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCodeGenFunction.h4737 llvm::Value *EmitX86CpuIs(StringRef CPUStr);
H A DCGBuiltin.cpp12178 StringRef CPUStr = cast<clang::StringLiteral>(CPUExpr)->getString(); in EmitX86CpuIs() local
12179 return EmitX86CpuIs(CPUStr); in EmitX86CpuIs()
12231 Value *CodeGenFunction::EmitX86CpuIs(StringRef CPUStr) { in EmitX86CpuIs() argument
12252 std::tie(Index, Value) = StringSwitch<std::pair<unsigned, unsigned>>(CPUStr) in EmitX86CpuIs()