[llvm] LAA: scale strides using type-size (NFC) (PR #124529)

Michael Kruse via llvm-commits llvm-commits at lists.llvm.org
Wed Feb 19 05:27:22 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.
+  uint64_t ASz = DL.getTypeAllocSize(ATy), BSz = DL.getTypeAllocSize(BTy),
+           TypeByteSize = AStoreSz == BStoreSz ? BSz : 0;
----------------
Meinersbur wrote:

```suggestion
  uint64_t ASz = DL.getTypeAllocSize(ATy);
  uint64_t BSz = DL.getTypeAllocSize(BTy);
  uint64_t TypeByteSize = (AStoreSz == BStoreSz) ? BSz : 0;
```
`TypeByteSize` whould also clean be modeled as an `std::options`, but no need to change it in this PR.

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


More information about the llvm-commits mailing list