[PATCH] D97286: [LoopNest] Use `getUniqueSuccessor()` instead when checking empty blocks

Ta-Wei Tu via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Feb 23 06:56:12 PST 2021


TaWeiTu created this revision.
TaWeiTu added reviewers: Whitney, fhahn.
Herald added a subscriber: hiraditya.
TaWeiTu requested review of this revision.
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.

Blocks that contain only a single branch instruction to the next block can be skipped in analyzing the loop-nest structure.
This is currently done by `getSingleSuccessor()`.
However, the branch instruction might have multiple targets which happen to all be the same.
In this case, the block should still be considered as empty and skipped.

An example


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D97286

Files:
  llvm/lib/Analysis/LoopNestAnalysis.cpp
  llvm/test/Analysis/LoopNestAnalysis/duplicate-successors.ll


Index: llvm/test/Analysis/LoopNestAnalysis/duplicate-successors.ll
===================================================================
--- /dev/null
+++ llvm/test/Analysis/LoopNestAnalysis/duplicate-successors.ll
@@ -0,0 +1,44 @@
+; RUN: opt -passes='print<loopnest>' %s 2>&1 | FileCheck %s
+ at global = external dso_local global [1000 x [1000 x i32]], align 16
+
+; CHECK: IsPerfect=true, Depth=1, OutermostLoop: inner.header, Loops: ( inner.header )
+; CHECK-NEXT: IsPerfect=true, Depth=2, OutermostLoop: outer.header, Loops: ( outer.header inner.header )
+
+define void @foo1(i1 %cmp) {
+entry:
+  br i1 %cmp, label %bb1, label %bb1
+
+bb1:                                              ; preds = %entry, %entry
+  br i1 %cmp, label %outer.header.preheader, label %outer.header.preheader
+
+outer.header.preheader:                           ; preds = %bb1, %bb1
+  br label %outer.header
+
+outer.header:                                     ; preds = %outer.header.preheader, %outer.latch
+  %outer.iv = phi i64 [ %outer.iv.next, %outer.latch ], [ 0, %outer.header.preheader ]
+  br i1 %cmp, label %inner.header.preheader, label %inner.header.preheader
+
+inner.header.preheader:                           ; preds = %outer.header, %outer.header
+  br label %inner.header
+
+inner.header:                                     ; preds = %inner.header.preheader, %inner.header
+  %inner.iv = phi i64 [ %inner.iv.next, %inner.header ], [ 5, %inner.header.preheader ]
+  %ptr = getelementptr inbounds [1000 x [1000 x i32]], [1000 x [1000 x i32]]* @global, i64 0, i64 %inner.iv, i64 %outer.iv
+  %lv = load i32, i32* %ptr, align 4
+  %v = mul i32 %lv, 100
+  store i32 %v, i32* %ptr, align 4
+  %inner.iv.next = add nsw i64 %inner.iv, 1
+  %cond1 = icmp eq i64 %inner.iv.next, 1000
+  br i1 %cond1, label %outer.latch, label %inner.header
+
+outer.latch:                                      ; preds = %inner.header
+  %outer.iv.next = add nuw nsw i64 %outer.iv, 1
+  %cond2 = icmp eq i64 %outer.iv.next, 1000
+  br i1 %cond2, label %bb9, label %outer.header
+
+bb9:                                              ; preds = %outer.latch
+  br label %bb10
+
+bb10:                                             ; preds = %bb9
+  ret void
+}
Index: llvm/lib/Analysis/LoopNestAnalysis.cpp
===================================================================
--- llvm/lib/Analysis/LoopNestAnalysis.cpp
+++ llvm/lib/Analysis/LoopNestAnalysis.cpp
@@ -210,7 +210,7 @@
   assert(From && "Expecting valid From");
   assert(End && "Expecting valid End");
 
-  if (From == End || !From->getSingleSuccessor())
+  if (From == End || !From->getUniqueSuccessor())
     return *From;
 
   auto IsEmpty = [](const BasicBlock *BB) {
@@ -219,12 +219,12 @@
 
   // Visited is used to avoid running into an infinite loop.
   SmallPtrSet<const BasicBlock *, 4> Visited;
-  const BasicBlock *BB = From->getSingleSuccessor();
+  const BasicBlock *BB = From->getUniqueSuccessor();
   const BasicBlock *PredBB = BB;
   while (BB && BB != End && IsEmpty(BB) && !Visited.count(BB)) {
     Visited.insert(BB);
     PredBB = BB;
-    BB = BB->getSingleSuccessor();
+    BB = BB->getUniqueSuccessor();
   }
 
   return (BB == End) ? *End : *PredBB;


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D97286.325779.patch
Type: text/x-patch
Size: 3206 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210223/07e82aee/attachment.bin>


More information about the llvm-commits mailing list