[llvm] [X86,SimplifyCFG] Support conditional faulting load or store only (PR #132032)
Phoebe Wang via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 20 05:14:04 PDT 2025
================
@@ -132,6 +132,11 @@ static cl::opt<unsigned> HoistLoadsStoresWithCondFaultingThreshold(
"to speculatively execute to eliminate conditional branch "
"(default = 6)"));
+static cl::opt<unsigned> DisableCloadCstore(
+ "disable-cload-cstore", cl::Hidden, cl::init(0),
+ cl::desc("Control to disable cond-faulting-load(1)/cond-faulting-store(2)"
+ "/all(3)"));
----------------
phoebewang wrote:
It is used to test the functionality of the code. We don't have a target has single ConditionalLoad or ConditionalStore, so the change of TTI doesn't help with this patch.
https://github.com/llvm/llvm-project/pull/132032
More information about the llvm-commits
mailing list