Home
last modified time | relevance | path

Searched refs:GlobalISelAbortMode (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/Target/
H A DTargetOptions.h107 enum class GlobalISelAbortMode { enum
254 GlobalISelAbortMode GlobalISelAbort = GlobalISelAbortMode::Enable;
H A DCGPassBuilderOption.h56 std::optional<GlobalISelAbortMode> EnableGlobalISelAbort;
H A DTargetMachine.h266 void setGlobalISelAbort(GlobalISelAbortMode Mode) { in setGlobalISelAbort()
/freebsd/contrib/llvm-project/llvm/lib/Target/
H A DTargetMachineC.cpp265 GlobalISelAbortMode AM = GlobalISelAbortMode::Enable; in LLVMSetTargetMachineGlobalISelAbort()
268 AM = GlobalISelAbortMode::Disable; in LLVMSetTargetMachineGlobalISelAbort()
271 AM = GlobalISelAbortMode::Enable; in LLVMSetTargetMachineGlobalISelAbort()
274 AM = GlobalISelAbortMode::DisableWithDiag; in LLVMSetTargetMachineGlobalISelAbort()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetPassConfig.cpp165 static cl::opt<GlobalISelAbortMode> EnableGlobalISelAbort(
170 clEnumValN(GlobalISelAbortMode::Disable, "0", "Disable the abort"),
171 clEnumValN(GlobalISelAbortMode::Enable, "1", "Enable the abort"),
172 clEnumValN(GlobalISelAbortMode::DisableWithDiag, "2",
1543 return TM->Options.GlobalISelAbort == GlobalISelAbortMode::Enable; in isGlobalISelAbortEnabled()
1547 return TM->Options.GlobalISelAbort == GlobalISelAbortMode::DisableWithDiag; in reportDiagnosticWhenGlobalISelFallback()
/freebsd/contrib/llvm-project/llvm/include/llvm/Passes/
H A DCodeGenPassBuilder.h268 return TM.Options.GlobalISelAbort == GlobalISelAbortMode::Enable; in isGlobalISelAbortEnabled()
275 return TM.Options.GlobalISelAbort == GlobalISelAbortMode::DisableWithDiag; in reportDiagnosticWhenGlobalISelFallback()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64TargetMachine.cpp390 setGlobalISelAbort(GlobalISelAbortMode::Disable); in AArch64TargetMachine()