[llvm] [LAA] Scale strides using type-size (NFC) (PR #124529)
Ramkumar Ramachandra via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 20 05:48:59 PST 2025
================
@@ -1981,25 +1977,27 @@ MemoryDepChecker::getDependenceDistanceStrideAndSize(
return MemoryDepChecker::Dependence::Unknown;
}
- uint64_t TypeByteSize = DL.getTypeAllocSize(ATy);
- bool HasSameSize =
- DL.getTypeStoreSizeInBits(ATy) == DL.getTypeStoreSizeInBits(BTy);
- if (!HasSameSize)
- TypeByteSize = 0;
+ TypeSize AStoreSz = DL.getTypeStoreSize(ATy),
+ BStoreSz = DL.getTypeStoreSize(BTy);
+
+ // If store sizes are not the same, set TypeByteSize to zero, so we can check
+ // it in the caller.
----------------
artagnon wrote:
Side note: this is hopefully temporary, and I'm planning to iterate on https://github.com/llvm/llvm-project/pull/122318.
https://github.com/llvm/llvm-project/pull/124529
More information about the llvm-commits
mailing list