[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:55 PST 2025
================
@@ -1742,31 +1742,34 @@ bool MemoryDepChecker::couldPreventStoreLoadForward(uint64_t Distance,
// cause any slowdowns.
const uint64_t NumItersForStoreLoadThroughMemory = 8 * TypeByteSize;
// Maximum vector factor.
- uint64_t MaxVFWithoutSLForwardIssues = std::min(
- VectorizerParams::MaxVectorWidth * TypeByteSize, MinDepDistBytes);
+ uint64_t MaxVFWithoutSLForwardIssuesPowerOf2 = std::min(
----------------
alexey-bataev wrote:
Yes, mostly just name changes, since planning to add non-power-of-2 in the following patch
https://github.com/llvm/llvm-project/pull/121156
More information about the llvm-commits
mailing list