[llvm] [LV]Split store-load forward distance analysis from other checks (PR #121156)
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Mon Feb 3 03:48:05 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 {
----------------
fhahn wrote:
VF is always a power of 2 for now, does it need to be in the name?
https://github.com/llvm/llvm-project/pull/121156
More information about the llvm-commits
mailing list