Home
last modified time | relevance | path

Searched refs:EnableFastISel (Results 1 – 13 of 13) sorted by relevance

/llvm-project-15.0.7/llvm/include/llvm/Target/
H A DTargetOptions.h132 EnableFastISel(false), EnableGlobalISel(false), UseInitArray(false), in TargetOptions()
232 unsigned EnableFastISel : 1; variable
H A DTargetMachine.h246 void setFastISel(bool Enable) { Options.EnableFastISel = Enable; } in setFastISel()
/llvm-project-15.0.7/llvm/bindings/ocaml/executionengine/
H A Dexecutionengine_ocaml.c53 Options.EnableFastISel = Int_val(Field(OptRecord, 3)); in llvm_ee_create()
/llvm-project-15.0.7/llvm/include/llvm-c/
H A DExecutionEngine.h47 LLVMBool EnableFastISel; member
/llvm-project-15.0.7/llvm/lib/ExecutionEngine/
H A DExecutionEngineBindings.cpp182 targetOptions.EnableFastISel = options.EnableFastISel; in LLVMCreateMCJITCompilerForModule()
/llvm-project-15.0.7/llvm/bindings/go/llvm/
H A Dexecutionengine.go47 options.C.EnableFastISel = boolToLLVMBool(fastisel)
/llvm-project-15.0.7/llvm/lib/Target/ARM/
H A DARMSubtarget.cpp448 return TM.Options.EnableFastISel && in useFastISel()
H A DARMISelLowering.cpp3772 DAG.getMachineFunction().getTarget().Options.EnableFastISel) in promoteToConstantPool()
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DStackProtector.cpp442 (EnableSelectionDAGSP && !TM->Options.EnableFastISel); in InsertStackProtectors()
H A DCodeGenPrepare.cpp8251 if (!TM->Options.EnableFastISel || TLI->isJumpExpensive()) in splitBranchCondition()
/llvm-project-15.0.7/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGISel.cpp216 SavedFastISel = IS.TM.Options.EnableFastISel; in OptLevelChanger()
229 << (IS.TM.Options.EnableFastISel ? "enabled" : "disabled") in OptLevelChanger()
377 assert((!EnableFastISelAbort || TM.Options.EnableFastISel) && in runOnMachineFunction()
1336 if (TM.Options.EnableFastISel) { in SelectAllBasicBlocks()
H A DSelectionDAGBuilder.cpp10569 if (!TM.Options.EnableFastISel && Res.getOpcode() == ISD::BUILD_PAIR) { in LowerArguments()
10609 if (!isOnlyUsedInEntryBlock(&Arg, TM.Options.EnableFastISel)) { in LowerArguments()
/llvm-project-15.0.7/llvm/lib/Target/Mips/
H A DMipsISelLowering.cpp527 bool UseFastISel = TM.Options.EnableFastISel && Subtarget.hasMips32() && in createFastISel()