[llvm] [LV]Split store-load forward distance analysis from other checks, NFC (PR #121156)

Florian Hahn via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 10 03:48:48 PDT 2025


================
@@ -2254,7 +2249,12 @@ MemoryDepChecker::isDependent(const MemAccessInfo &A, unsigned AIdx,
     return Dependence::Unknown;
   }
 
+  if (IsTrueDataDependence && EnableForwardingConflictDetection && ConstDist) {
+    if (couldPreventStoreLoadForward(MinDistance, TypeByteSize, *CommonStride))
+      return Dependence::BackwardVectorizableButPreventsForwarding;
+  }
----------------
fhahn wrote:

Why does this need moving?

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


More information about the llvm-commits mailing list