[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 17 04:49:14 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;
----------------
fhahn wrote:
If multiplied by the size of the elements in bits, should be `MaxStoreLoadForwardSafeDistanceInBits`?
https://github.com/llvm/llvm-project/pull/121156
More information about the llvm-commits
mailing list