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

Alexey Bataev via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 17 11:26:17 PDT 2025


================
@@ -216,6 +216,12 @@ class MemoryDepChecker {
     return MaxSafeVectorWidthInBits;
   }
 
+  /// Return safe power-of-2 number of elements, which do not prevent store-load
+  /// forwarding, multiplied by the size of the elements in bits.
+  std::optional<uint64_t> getStoreLoadForwardSafeVF() const {
+    return MaxStoreLoadForwardSafeVF;
----------------
alexey-bataev wrote:

Done

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


More information about the llvm-commits mailing list