Home
last modified time | relevance | path

Searched refs:FeaturesStr (Results 1 – 21 of 21) sorted by relevance

/external/llvm-project/llvm/lib/ExecutionEngine/
DTargetSelect.cpp78 std::string FeaturesStr; in selectTarget() local
83 FeaturesStr = Features.getString(); in selectTarget()
88 TheTarget->createTargetMachine(TheTriple.getTriple(), MCPU, FeaturesStr, in selectTarget()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/
DTargetSelect.cpp78 std::string FeaturesStr; in selectTarget() local
83 FeaturesStr = Features.getString(); in selectTarget()
88 TheTarget->createTargetMachine(TheTriple.getTriple(), MCPU, FeaturesStr, in selectTarget()
/external/llvm/lib/ExecutionEngine/
DTargetSelect.cpp80 std::string FeaturesStr; in selectTarget() local
85 FeaturesStr = Features.getString(); in selectTarget()
97 MCPU, FeaturesStr, in selectTarget()
/external/llvm-project/llvm/tools/llvm-mc-disassemble-fuzzer/
Dllvm-mc-disassemble-fuzzer.cpp42 std::string FeaturesStr; variable
56 TripleName.c_str(), MCPU.c_str(), FeaturesStr.c_str(), nullptr, 0, in DisassembleOneInput()
136 FeaturesStr = Features.getString(); in LLVMFuzzerInitialize()
/external/llvm/tools/llvm-mc-fuzzer/
Dllvm-mc-fuzzer.cpp57 std::string FeaturesStr; variable
71 TripleName.c_str(), MCPU.c_str(), FeaturesStr.c_str(), nullptr, 0, in DisassembleOneInput()
156 FeaturesStr = Features.getString(); in LLVMFuzzerInitialize()
/external/llvm/tools/opt/
Dopt.cpp305 StringRef FeaturesStr, in GetTargetMachine() argument
316 FeaturesStr, Options, getRelocModel(), in GetTargetMachine()
432 std::string CPUStr, FeaturesStr; in main() local
438 FeaturesStr = getFeaturesStr(); in main()
439 Machine = GetTargetMachine(ModuleTriple, CPUStr, FeaturesStr, Options); in main()
446 setFunctionAttributes(CPUStr, FeaturesStr, *M); in main()
/external/llvm-project/llvm/tools/llc/
Dllc.cpp407 FeaturesStr = codegen::getFeaturesStr(); in compileModule() local
410 auto setMIRFunctionAttributes = [&CPUStr, &FeaturesStr](Function &F) { in compileModule()
411 codegen::setFunctionAttributes(CPUStr, FeaturesStr, F); in compileModule()
477 TheTriple.getTriple(), CPUStr, FeaturesStr, Options, RM, in compileModule()
522 TheTriple.getTriple(), CPUStr, FeaturesStr, Options, RM, in compileModule()
574 codegen::setFunctionAttributes(CPUStr, FeaturesStr, *M); in compileModule()
/external/llvm-project/llvm/tools/llvm-mc-assemble-fuzzer/
Dllvm-mc-assemble-fuzzer.cpp60 std::string FeaturesStr; variable
195 TheTarget->createMCSubtargetInfo(TripleName, MCPU, FeaturesStr)); in AssembleOneInput()
307 FeaturesStr = Features.getString(); in LLVMFuzzerInitialize()
/external/llvm-project/llvm/tools/llvm-isel-fuzzer/
Dllvm-isel-fuzzer.cpp147 FeaturesStr = codegen::getFeaturesStr(); in LLVMFuzzerInitialize() local
163 TheTriple.getTriple(), CPUStr, FeaturesStr, Options, in LLVMFuzzerInitialize()
/external/llvm-project/llvm/bindings/ocaml/target/
Dtarget_ocaml.c249 const char *CPUStr = "", *FeaturesStr = ""; in llvm_create_targetmachine_native() local
257 FeaturesStr = String_val(Field(Features, 0)); in llvm_create_targetmachine_native()
266 FeaturesStr, OptLevelEnum, RelocModeEnum, CodeModelEnum); in llvm_create_targetmachine_native()
/external/llvm/bindings/ocaml/target/
Dtarget_ocaml.c249 const char *CPUStr = "", *FeaturesStr = ""; in llvm_create_targetmachine_native() local
257 FeaturesStr = String_val(Field(Features, 0)); in llvm_create_targetmachine_native()
266 FeaturesStr, OptLevelEnum, RelocModeEnum, CodeModelEnum); in llvm_create_targetmachine_native()
/external/llvm/tools/llc/
Dllc.cpp321 std::string CPUStr = getCPUStr(), FeaturesStr = getFeaturesStr(); in compileModule() local
343 TheTarget->createTargetMachine(TheTriple.getTriple(), CPUStr, FeaturesStr, in compileModule()
379 setFunctionAttributes(CPUStr, FeaturesStr, *M); in compileModule()
/external/llvm-project/llvm/tools/opt/
Dopt.cpp422 StringRef FeaturesStr, in GetTargetMachine() argument
680 std::string CPUStr, FeaturesStr; in main() local
687 FeaturesStr = codegen::getFeaturesStr(); in main()
688 Machine = GetTargetMachine(ModuleTriple, CPUStr, FeaturesStr, Options); in main()
700 codegen::setFunctionAttributes(CPUStr, FeaturesStr, *M); in main()
/external/llvm-project/llvm/tools/llvm-mc/
Dllvm-mc.cpp442 std::string FeaturesStr; in main() local
447 FeaturesStr = Features.getString(); in main()
475 TheTarget->createMCSubtargetInfo(TripleName, MCPU, FeaturesStr)); in main()
/external/llvm/tools/llvm-mc/
Dllvm-mc.cpp473 std::string FeaturesStr; in main() local
478 FeaturesStr = Features.getString(); in main()
491 TheTarget->createMCSubtargetInfo(TripleName, MCPU, FeaturesStr)); in main()
/external/clang/lib/Parse/
DParseStmtAsm.cpp562 std::string FeaturesStr = in ParseMicrosoftAsmStatement() local
571 TheTarget->createMCSubtargetInfo(TT, TO.CPU, FeaturesStr)); in ParseMicrosoftAsmStatement()
/external/llvm-project/clang/lib/Parse/
DParseStmtAsm.cpp565 std::string FeaturesStr = in ParseMicrosoftAsmStatement() local
582 TheTarget->createMCSubtargetInfo(TT, TO.CPU, FeaturesStr)); in ParseMicrosoftAsmStatement()
/external/clang/lib/CodeGen/
DBackendUtil.cpp547 std::string FeaturesStr = in CreateTargetMachine() local
641 FeaturesStr, Options, in CreateTargetMachine()
/external/llvm-project/clang/lib/CodeGen/
DBackendUtil.cpp866 std::string FeaturesStr = in CreateTargetMachine() local
875 TM.reset(TheTarget->createTargetMachine(Triple, TargetOpts.CPU, FeaturesStr, in CreateTargetMachine()
/external/llvm/tools/llvm-objdump/
DMachODump.cpp6428 std::string FeaturesStr; in DisassembleMachO() local
6433 FeaturesStr = Features.getString(); in DisassembleMachO()
6442 TheTarget->createMCSubtargetInfo(TripleName, MCPU, FeaturesStr)); in DisassembleMachO()
6492 ThumbTarget->createMCSubtargetInfo(ThumbTripleName, MCPU, FeaturesStr)); in DisassembleMachO()
/external/llvm-project/llvm/tools/llvm-objdump/
DMachODump.cpp7231 std::string FeaturesStr; in DisassembleMachO() local
7236 FeaturesStr = Features.getString(); in DisassembleMachO()
7248 TheTarget->createMCSubtargetInfo(TripleName, MachOMCPU, FeaturesStr)); in DisassembleMachO()
7298 FeaturesStr)); in DisassembleMachO()