diff options
author | Philip Reames <listmail@philipreames.com> | 2014-08-05 17:48:20 +0000 |
---|---|---|
committer | Philip Reames <listmail@philipreames.com> | 2014-08-05 17:48:20 +0000 |
commit | 00c9b6461f65380deed20676147083a6e8c66c3e (patch) | |
tree | c517b350cce3dfaf732e9717a316622399e3761f /llvm/lib | |
parent | 064eb5a1777048c653f6df3975654ac0787249e5 (diff) | |
download | bcm5719-llvm-00c9b6461f65380deed20676147083a6e8c66c3e.tar.gz bcm5719-llvm-00c9b6461f65380deed20676147083a6e8c66c3e.zip |
Remove dead zero store to calloc initialized memory
Optimize the following IR:
%1 = tail call noalias i8* @calloc(i64 1, i64 4)
%2 = bitcast i8* %1 to i32*
; This store is dead and should be removed
store i32 0, i32* %2, align 4
Memory returned by calloc is guaranteed to be zero initialized. If the value being stored is the constant zero (and the store is not otherwise observable across threads), we can delete the store. If the store is to an out of bounds address, it is undefined and thus also removable.
Reviewed By: nicholas
Differential Revision: http://reviews.llvm.org/D3942
llvm-svn: 214897
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp | 50 |
1 files changed, 35 insertions, 15 deletions
diff --git a/llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp b/llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp index 3af8ee7546f..b8cd38bd6fc 100644 --- a/llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp +++ b/llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp @@ -514,30 +514,50 @@ bool DSE::runOnBasicBlock(BasicBlock &BB) { if (!InstDep.isDef() && !InstDep.isClobber()) continue; - // If we're storing the same value back to a pointer that we just - // loaded from, then the store can be removed. + // Check for cases where the store is redundant. if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) { + bool DeleteStore = false; + // If we're storing the same value back to a pointer that we just + // loaded from, then the store can be removed. if (LoadInst *DepLoad = dyn_cast<LoadInst>(InstDep.getInst())) { if (SI->getPointerOperand() == DepLoad->getPointerOperand() && SI->getOperand(0) == DepLoad && isRemovable(SI)) { DEBUG(dbgs() << "DSE: Remove Store Of Load from same pointer:\n " << "LOAD: " << *DepLoad << "\n STORE: " << *SI << '\n'); + DeleteStore = true; + } + } - // DeleteDeadInstruction can delete the current instruction. Save BBI - // in case we need it. - WeakVH NextInst(BBI); - - DeleteDeadInstruction(SI, *MD, TLI); - - if (!NextInst) // Next instruction deleted. - BBI = BB.begin(); - else if (BBI != BB.begin()) // Revisit this instruction if possible. - --BBI; - ++NumFastStores; - MadeChange = true; - continue; + // If we find a store to memory which was defined by calloc + // we can remove the store if the value being stored is a + // constant zero (since calloc initialized the memory to + // that same value) or the store is undefined (if out of + // bounds). + if (isCallocLikeFn(InstDep.getInst(), TLI) && isRemovable(SI)) { + Value *V = SI->getValueOperand(); + if (isa<Constant>(V) && cast<Constant>(V)->isNullValue()) { + DEBUG(dbgs() << "DSE: Remove Store Of Zero to Calloc:\n " + << "CALLOC: " << *InstDep.getInst() << "\n" + << "STORE: " << *SI << '\n'); + DeleteStore = true; } } + + if (DeleteStore) { + // DeleteDeadInstruction can delete the current instruction. Save BBI + // in case we need it. + WeakVH NextInst(BBI); + + DeleteDeadInstruction(SI, *MD, TLI); + + if (!NextInst) // Next instruction deleted. + BBI = BB.begin(); + else if (BBI != BB.begin()) // Revisit this instruction if possible. + --BBI; + ++NumFastStores; + MadeChange = true; + continue; + } } // Figure out what location is being stored to. |