[llvm] 3275578 - [JumpThreading] Put a limit on the PHI nodes when duplicating a BB.
Usman Nadeem via llvm-commits
llvm-commits at lists.llvm.org
Mon Oct 31 15:52:14 PDT 2022
Author: Usman Nadeem
Date: 2022-10-31T15:51:56-07:00
New Revision: 32755786e02083980e177841bda30560dddf7685
URL: https://github.com/llvm/llvm-project/commit/32755786e02083980e177841bda30560dddf7685
DIFF: https://github.com/llvm/llvm-project/commit/32755786e02083980e177841bda30560dddf7685.diff
LOG: [JumpThreading] Put a limit on the PHI nodes when duplicating a BB.
Do not duplicate a BB if it has a lot of PHI nodes.
If a threadable chain is too long then the number of duplicated PHI nodes
can add up, leading to a substantial increase in compile time when rewriting
the SSA.
Fixes https://github.com/llvm/llvm-project/issues/58203
Differential Revision: https://reviews.llvm.org/D136716
The threshold of 76 in this patch is reasonably high and reduces the compile
time of cldwat2m_macro.f90 in SPEC2017/cam4 from 80+min to <2min.
Change-Id: I153c89a8e0d89b206a5193dc1b908c67e320717e
Added:
Modified:
llvm/lib/Transforms/Scalar/JumpThreading.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Transforms/Scalar/JumpThreading.cpp b/llvm/lib/Transforms/Scalar/JumpThreading.cpp
index f9cd4cdf3d17c..75bc4bb762604 100644
--- a/llvm/lib/Transforms/Scalar/JumpThreading.cpp
+++ b/llvm/lib/Transforms/Scalar/JumpThreading.cpp
@@ -100,6 +100,11 @@ ImplicationSearchThreshold(
"condition to use to thread over a weaker condition"),
cl::init(3), cl::Hidden);
+static cl::opt<unsigned> PhiDuplicateThreshold(
+ "jump-threading-phi-threshold",
+ cl::desc("Max PHIs in BB to duplicate for jump threading"), cl::init(76),
+ cl::Hidden);
+
static cl::opt<bool> PrintLVIAfterJumpThreading(
"print-lvi-after-jump-threading",
cl::desc("Print the LazyValueInfo cache after JumpThreading"), cl::init(false),
@@ -518,8 +523,23 @@ static unsigned getJumpThreadDuplicationCost(const TargetTransformInfo *TTI,
Instruction *StopAt,
unsigned Threshold) {
assert(StopAt->getParent() == BB && "Not an instruction from proper BB?");
+
+ // Do not duplicate the BB if it has a lot of PHI nodes.
+ // If a threadable chain is too long then the number of PHI nodes can add up,
+ // leading to a substantial increase in compile time when rewriting the SSA.
+ unsigned PhiCount = 0;
+ Instruction *FirstNonPHI = nullptr;
+ for (Instruction &I : *BB) {
+ if (!isa<PHINode>(&I)) {
+ FirstNonPHI = &I;
+ break;
+ }
+ if (++PhiCount > PhiDuplicateThreshold)
+ return ~0U;
+ }
+
/// Ignore PHI nodes, these will be flattened when duplication happens.
- BasicBlock::const_iterator I(BB->getFirstNonPHI());
+ BasicBlock::const_iterator I(FirstNonPHI);
// FIXME: THREADING will delete values that are just used to compute the
// branch, so they shouldn't count against the duplication cost.
More information about the llvm-commits
mailing list