[PATCH] D23722: [InstCombine] Allow sinking from unique predecessor with multiple edges

Jun Bum Lim via llvm-commits llvm-commits at lists.llvm.org
Mon Aug 22 11:30:17 PDT 2016


This revision was automatically updated to reflect the committed changes.
Closed by commit rL279448: [InstCombine] Allow sinking from unique predecessor with multiple edges (authored by junbuml).

Changed prior to commit:
  https://reviews.llvm.org/D23722?vs=68714&id=68889#toc

Repository:
  rL LLVM

https://reviews.llvm.org/D23722

Files:
  llvm/trunk/lib/Transforms/InstCombine/InstructionCombining.cpp
  llvm/trunk/test/Transforms/InstCombine/sink_instruction.ll

Index: llvm/trunk/test/Transforms/InstCombine/sink_instruction.ll
===================================================================
--- llvm/trunk/test/Transforms/InstCombine/sink_instruction.ll
+++ llvm/trunk/test/Transforms/InstCombine/sink_instruction.ll
@@ -54,3 +54,26 @@
 }
 
 declare i32 @bar()
+
+define i32 @test3(i32* nocapture readonly %P, i32 %i) {
+entry:
+  %idxprom = sext i32 %i to i64
+  %arrayidx = getelementptr inbounds i32, i32* %P, i64 %idxprom
+  %0 = load i32, i32* %arrayidx, align 4
+  switch i32 %i, label %sw.epilog [
+    i32 5, label %sw.bb
+    i32 2, label %sw.bb
+  ]
+
+sw.bb:                                            ; preds = %entry, %entry
+; CHECK-LABEL: sw.bb:
+; CHECK: %idxprom = sext i32 %i to i64
+; CHECK: %arrayidx = getelementptr inbounds i32, i32* %P, i64 %idxprom
+; CHECK: %0 = load i32, i32* %arrayidx, align 4
+  %add = add nsw i32 %0, %i
+  br label %sw.epilog
+
+sw.epilog:                                        ; preds = %entry, %sw.bb
+  %sum.0 = phi i32 [ %add, %sw.bb ], [ 0, %entry ]
+  ret i32 %sum.0
+}
Index: llvm/trunk/lib/Transforms/InstCombine/InstructionCombining.cpp
===================================================================
--- llvm/trunk/lib/Transforms/InstCombine/InstructionCombining.cpp
+++ llvm/trunk/lib/Transforms/InstCombine/InstructionCombining.cpp
@@ -2903,7 +2903,7 @@
         // If the user is one of our immediate successors, and if that successor
         // only has us as a predecessors (we'd have to split the critical edge
         // otherwise), we can keep going.
-        if (UserIsSuccessor && UserParent->getSinglePredecessor()) {
+        if (UserIsSuccessor && UserParent->getUniquePredecessor()) {
           // Okay, the CFG is simple enough, try to sink this instruction.
           if (TryToSinkInstruction(I, UserParent)) {
             DEBUG(dbgs() << "IC: Sink: " << *I << '\n');


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D23722.68889.patch
Type: text/x-patch
Size: 1895 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20160822/b76d01a0/attachment.bin>


More information about the llvm-commits mailing list