aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/PHIElimination.cpp
diff options
context:
space:
mode:
authorNikita Popov <npopov@redhat.com>2024-07-11 09:13:37 +0200
committerNikita Popov <npopov@redhat.com>2024-07-11 09:13:37 +0200
commit6a907699d8b4fb35a843ab8fd84ca56ed93fc201 (patch)
tree701af32d40c315b70f40dca3e07f1fe2ddc44818 /llvm/lib/CodeGen/PHIElimination.cpp
parent7868033d2e846fa30c20455ca819fad29d9d795e (diff)
downloadllvm-6a907699d8b4fb35a843ab8fd84ca56ed93fc201.zip
llvm-6a907699d8b4fb35a843ab8fd84ca56ed93fc201.tar.gz
llvm-6a907699d8b4fb35a843ab8fd84ca56ed93fc201.tar.bz2
Revert "[CodeGen] Remove `applySplitCriticalEdges` in `MachineDominatorTree` (#97055)"
This reverts commit c5e5088033fed170068d818c54af6862e449b545. Causes large compile-time regressions.
Diffstat (limited to 'llvm/lib/CodeGen/PHIElimination.cpp')
-rw-r--r--llvm/lib/CodeGen/PHIElimination.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/PHIElimination.cpp b/llvm/lib/CodeGen/PHIElimination.cpp
index 2a2d7a4..e392bb8 100644
--- a/llvm/lib/CodeGen/PHIElimination.cpp
+++ b/llvm/lib/CodeGen/PHIElimination.cpp
@@ -222,6 +222,11 @@ bool PHIElimination::runOnMachineFunction(MachineFunction &MF) {
MF.deleteMachineInstr(I.first);
}
+ // TODO: we should use the incremental DomTree updater here.
+ if (Changed)
+ if (auto *MDT = getAnalysisIfAvailable<MachineDominatorTreeWrapperPass>())
+ MDT->getDomTree().getBase().recalculate(MF);
+
LoweredPHIs.clear();
ImpDefs.clear();
VRegPHIUseCount.clear();