[llvm] 884bb97 - [MustExec][LICM] Handle latch being part of an inner cycle (PR57780)
Nikita Popov via llvm-commits
llvm-commits at lists.llvm.org
Tue Oct 11 00:32:42 PDT 2022
Author: Nikita Popov
Date: 2022-10-11T09:30:13+02:00
New Revision: 884bb97dca257b90dbe6fd0faf09512858292151
URL: https://github.com/llvm/llvm-project/commit/884bb97dca257b90dbe6fd0faf09512858292151
DIFF: https://github.com/llvm/llvm-project/commit/884bb97dca257b90dbe6fd0faf09512858292151.diff
LOG: [MustExec][LICM] Handle latch being part of an inner cycle (PR57780)
The algorithm in allLoopPathsLeadToBlock() does not handle the case
where the loop latch is part of the predecessor set correctly: In
this case, we may take the backedge (escaping to a different loop
iteration) and not execute other latch successors. This can happen
if the latch is part of an inner cycle.
Fixes https://github.com/llvm/llvm-project/issues/57780.
Differential Revision: https://reviews.llvm.org/D134279
Added:
Modified:
llvm/lib/Analysis/MustExecute.cpp
llvm/test/Analysis/MustExecute/pr57780.ll
llvm/test/Transforms/LICM/pr57780.ll
Removed:
################################################################################
diff --git a/llvm/lib/Analysis/MustExecute.cpp b/llvm/lib/Analysis/MustExecute.cpp
index 6296f58051573..8a6318eabecff 100644
--- a/llvm/lib/Analysis/MustExecute.cpp
+++ b/llvm/lib/Analysis/MustExecute.cpp
@@ -201,6 +201,15 @@ bool LoopSafetyInfo::allLoopPathsLeadToBlock(const Loop *CurLoop,
SmallPtrSet<const BasicBlock *, 4> Predecessors;
collectTransitivePredecessors(CurLoop, BB, Predecessors);
+ // Bail out if a latch block is part of the predecessor set. In this case
+ // we may take the backedge to the header and not execute other latch
+ // successors.
+ for (const BasicBlock *Pred : predecessors(CurLoop->getHeader()))
+ // Predecessors only contains loop blocks, so we don't have to worry about
+ // preheader predecessors here.
+ if (Predecessors.contains(Pred))
+ return false;
+
// Make sure that all successors of, all predecessors of BB which are not
// dominated by BB, are either:
// 1) BB,
diff --git a/llvm/test/Analysis/MustExecute/pr57780.ll b/llvm/test/Analysis/MustExecute/pr57780.ll
index a7b47a1fb8b5f..b044408a8b8a3 100644
--- a/llvm/test/Analysis/MustExecute/pr57780.ll
+++ b/llvm/test/Analysis/MustExecute/pr57780.ll
@@ -2,9 +2,8 @@
@c = global i16 0, align 2
-; FIXME: miscompile
; CHECK-LABEL: define void @latch_cycle_irreducible
-; CHECK: store i16 5, ptr @c, align 2 ; (mustexec in: loop)
+; CHECK: store i16 5, ptr @c, align 2{{$}}
define void @latch_cycle_irreducible() {
entry:
br label %loop
@@ -28,9 +27,8 @@ loop.exit: ; preds = %loop
ret void
}
-; FIXME: miscompile
; CHECK-LABEL: define void @latch_cycle_reducible
-; CHECK: store i16 5, ptr @c, align 2 ; (mustexec in: loop)
+; CHECK: store i16 5, ptr @c, align 2{{$}}
define void @latch_cycle_reducible() {
entry:
br label %loop
diff --git a/llvm/test/Transforms/LICM/pr57780.ll b/llvm/test/Transforms/LICM/pr57780.ll
index 89f48edce4d0b..2c075e9192bd5 100644
--- a/llvm/test/Transforms/LICM/pr57780.ll
+++ b/llvm/test/Transforms/LICM/pr57780.ll
@@ -7,7 +7,6 @@
define void @test() {
; CHECK-LABEL: @test(
; CHECK-NEXT: entry:
-; CHECK-NEXT: store i16 5, ptr @c, align 2
; CHECK-NEXT: br label [[LOOP:%.*]]
; CHECK: loop:
; CHECK-NEXT: [[V:%.*]] = phi i32 [ 10, [[ENTRY:%.*]] ], [ 0, [[LOOP_LATCH:%.*]] ]
@@ -16,6 +15,7 @@ define void @test() {
; CHECK: loop.cont:
; CHECK-NEXT: br i1 false, label [[LOOP_IRREDUCIBLE:%.*]], label [[LOOP_LATCH]]
; CHECK: loop.irreducible:
+; CHECK-NEXT: store i16 5, ptr @c, align 2
; CHECK-NEXT: br label [[LOOP_LATCH]]
; CHECK: loop.latch:
; CHECK-NEXT: br i1 false, label [[LOOP_IRREDUCIBLE]], label [[LOOP]]
More information about the llvm-commits
mailing list