[llvm] [Attributor] Change allocation size and load/store offsets using AAPointerInfo for Alloca instructions and keep track of instructions causing an Access (PR #72029)
Shilei Tian via llvm-commits
llvm-commits at lists.llvm.org
Sun Dec 7 21:50:46 PST 2025
================
@@ -13451,41 +13701,124 @@ struct AAAllocationInfoImpl : public AAAllocationInfo {
if (!AllocationSize)
return indicatePessimisticFixpoint();
- // For zero sized allocations, we give up.
- // Since we can't reduce further
+ // For zero sized allocations, we give up
+ // because we cannot reduce them any further.
if (*AllocationSize == 0)
return indicatePessimisticFixpoint();
- int64_t BinSize = PI->numOffsetBins();
-
- // TODO: implement for multiple bins
- if (BinSize > 1)
- return indicatePessimisticFixpoint();
-
- if (BinSize == 0) {
- auto NewAllocationSize = std::make_optional<TypeSize>(0, false);
+ int64_t NumBins = PI->numOffsetBins();
+ if (NumBins == 0) {
+ std::optional<TypeSize> NewAllocationSize =
----------------
shiltian wrote:
Also `/*Scalable=*/false`
https://github.com/llvm/llvm-project/pull/72029
More information about the llvm-commits
mailing list