[PATCH] D125574: [BasicBlockUtils] Do not move loop metadata if outer loop header.

Hendrik Greving via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon May 16 08:49:40 PDT 2022


hgreving updated this revision to Diff 429732.
hgreving added a comment.

Rebased to https://reviews.llvm.org/D125696


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D125574/new/

https://reviews.llvm.org/D125574

Files:
  llvm/lib/Transforms/Utils/BasicBlockUtils.cpp
  llvm/test/Transforms/LoopSimplify/update_latch_md2.ll


Index: llvm/test/Transforms/LoopSimplify/update_latch_md2.ll
===================================================================
--- llvm/test/Transforms/LoopSimplify/update_latch_md2.ll
+++ llvm/test/Transforms/LoopSimplify/update_latch_md2.ll
@@ -1,13 +1,11 @@
 ; Tests loop-simplify does not move the loop metadata, because
 ; the loopexit block is not the latch of the loop _bb6.
 
-; FIXME(#55416): The metadata should not move.
-
 ; RUN: opt < %s -passes=loop-simplify -S | FileCheck %s
 ; CHECK-LABEL: loop.header.loopexit:
-; CHECK: br label %loop.header, !llvm.loop !0
+; CHECK-NOT: br label %loop.header, !llvm.loop !0
 ; CHECK-LABEL: loop.latch:
-; CHECK-NOT: br i1 %p, label %loop.latch, label %loop.header.loopexit, !llvm.loop !0
+; CHECK: br i1 %p, label %loop.latch, label %loop.header.loopexit, !llvm.loop !0
 
 define void @func(i1 %p) {
 bb1:
Index: llvm/lib/Transforms/Utils/BasicBlockUtils.cpp
===================================================================
--- llvm/lib/Transforms/Utils/BasicBlockUtils.cpp
+++ llvm/lib/Transforms/Utils/BasicBlockUtils.cpp
@@ -1158,11 +1158,16 @@
   }
 
   if (OldLatch) {
-    BasicBlock *NewLatch = L->getLoopLatch();
-    if (NewLatch != OldLatch) {
-      MDNode *MD = OldLatch->getTerminator()->getMetadata("llvm.loop");
-      NewLatch->getTerminator()->setMetadata("llvm.loop", MD);
-      OldLatch->getTerminator()->setMetadata("llvm.loop", nullptr);
+    Loop *IL = LI->getLoopFor(OldLatch);
+    // It's still possible that OldLatch is the latch of another inner loop, in
+    // which case we do not move the metadata.
+    if (IL && IL->getLoopLatch() != OldLatch) {
+      BasicBlock *NewLatch = L->getLoopLatch();
+      if (NewLatch != OldLatch) {
+        MDNode *MD = OldLatch->getTerminator()->getMetadata("llvm.loop");
+        NewLatch->getTerminator()->setMetadata("llvm.loop", MD);
+        OldLatch->getTerminator()->setMetadata("llvm.loop", nullptr);
+      }
     }
   }
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D125574.429732.patch
Type: text/x-patch
Size: 1957 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20220516/9a2f6928/attachment.bin>


More information about the llvm-commits mailing list