diff options
| author | Jim Grosbach <grosbach@apple.com> | 2013-03-06 05:44:53 +0000 |
|---|---|---|
| committer | Jim Grosbach <grosbach@apple.com> | 2013-03-06 05:44:53 +0000 |
| commit | 95d2eb95c303f859adb9d3b19ecce056e539f61d (patch) | |
| tree | 222a7064c4cd99e3f6b327b568950c8626b65597 /llvm/lib | |
| parent | 2a844b7ff850f9538f4952c5f2aef0c6d38b2b72 (diff) | |
| download | bcm5719-llvm-95d2eb95c303f859adb9d3b19ecce056e539f61d.tar.gz bcm5719-llvm-95d2eb95c303f859adb9d3b19ecce056e539f61d.zip | |
InstCombine: Don't shrink allocas when combining with a bitcast.
When considering folding a bitcast of an alloca into the alloca itself,
make sure we don't shrink the amount of memory being allocated, or
things rapidly go sideways.
rdar://13324424
llvm-svn: 176547
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp b/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp index a960ab2499c..d162223a6f5 100644 --- a/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp +++ b/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp @@ -104,6 +104,12 @@ Instruction *InstCombiner::PromoteCastOfAllocation(BitCastInst &CI, uint64_t CastElTySize = TD->getTypeAllocSize(CastElTy); if (CastElTySize == 0 || AllocElTySize == 0) return 0; + // If the allocation has multiple uses, only promote it if we're not + // shrinking the amount of memory being allocated. + uint64_t AllocElTyStoreSize = TD->getTypeStoreSize(AllocElTy); + uint64_t CastElTyStoreSize = TD->getTypeStoreSize(CastElTy); + if (!AI.hasOneUse() && CastElTyStoreSize < AllocElTyStoreSize) return 0; + // See if we can satisfy the modulus by pulling a scale out of the array // size argument. unsigned ArraySizeScale; |

