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

Alexey Bataev via llvm-commits llvm-commits at lists.llvm.org
Mon Feb 3 07:55:20 PST 2025


================
@@ -406,6 +406,12 @@ class LoopVectorizationLegality {
     return hasUncountableEarlyExit() ? getUncountableEdge()->second : nullptr;
   }
 
+  /// Return safe power-of-2 number of elements, which do not prevent store-load
+  /// forwarding and safe to operate simultaneously.
+  std::optional<unsigned> getMaxStoreLoadForwardSafeVFPowerOf2() const {
----------------
alexey-bataev wrote:

For now - yes, but I will add non-power-of-2 in the next patch. You asked to split the patch, so renaming happens in this patch

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


More information about the llvm-commits mailing list