[llvm] [DependenceAnalysis] Extending SIV to handle separate loops (PR #128782)

Michael Kruse via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 11 08:16:51 PDT 2025


================
@@ -3651,6 +3769,38 @@ DependenceInfo::depends(Instruction *Src, Instruction *Dst) {
     }
   }
 
+  // establish loop nesting levels considering separate but similar loops as
+  // common
+  establishNestingLevels(Src, Dst, true);
+  if (SeparateLevels > 0) {
+    // MIV is not handled yet on separate loops; check if there is any MIV test
+    for (unsigned P = 0; P < Pairs; ++P) {
+      Pair[P].Loops.resize(MaxLevels + 1);
+      auto classification = classifyPair(
----------------
Meinersbur wrote:

[Style] Local variables start with capital letters; No Almost-Always-Auto

https://github.com/llvm/llvm-project/pull/128782


More information about the llvm-commits mailing list