Owen Anderson | e359058 | 2007-08-02 18:11:11 +0000 | [diff] [blame] | 1 | //===- DeadStoreElimination.cpp - Fast Dead Store Elimination -------------===// |
Owen Anderson | 5e72db3 | 2007-07-11 00:46:18 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | f3ebc3f | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Owen Anderson | 5e72db3 | 2007-07-11 00:46:18 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements a trivial dead store elimination that only considers |
| 11 | // basic-block local redundant stores. |
| 12 | // |
| 13 | // FIXME: This should eventually be extended to be a post-dominator tree |
| 14 | // traversal. Doing so would be pretty trivial. |
| 15 | // |
| 16 | //===----------------------------------------------------------------------===// |
| 17 | |
Owen Anderson | 10e52ed | 2007-08-01 06:36:51 +0000 | [diff] [blame] | 18 | #define DEBUG_TYPE "dse" |
Owen Anderson | 5e72db3 | 2007-07-11 00:46:18 +0000 | [diff] [blame] | 19 | #include "llvm/Transforms/Scalar.h" |
Owen Anderson | 32c4a05 | 2007-07-12 21:41:30 +0000 | [diff] [blame] | 20 | #include "llvm/Constants.h" |
Owen Anderson | 5e72db3 | 2007-07-11 00:46:18 +0000 | [diff] [blame] | 21 | #include "llvm/Function.h" |
| 22 | #include "llvm/Instructions.h" |
Owen Anderson | 48d3780 | 2008-01-29 06:18:36 +0000 | [diff] [blame] | 23 | #include "llvm/IntrinsicInst.h" |
Owen Anderson | 5e72db3 | 2007-07-11 00:46:18 +0000 | [diff] [blame] | 24 | #include "llvm/Pass.h" |
Owen Anderson | 5e72db3 | 2007-07-11 00:46:18 +0000 | [diff] [blame] | 25 | #include "llvm/ADT/SmallPtrSet.h" |
| 26 | #include "llvm/ADT/Statistic.h" |
Owen Anderson | aa07172 | 2007-07-11 23:19:17 +0000 | [diff] [blame] | 27 | #include "llvm/Analysis/AliasAnalysis.h" |
Owen Anderson | 3f33897 | 2008-07-28 16:14:26 +0000 | [diff] [blame] | 28 | #include "llvm/Analysis/Dominators.h" |
Victor Hernandez | f390e04 | 2009-10-27 20:05:49 +0000 | [diff] [blame] | 29 | #include "llvm/Analysis/MemoryBuiltins.h" |
Owen Anderson | 5e72db3 | 2007-07-11 00:46:18 +0000 | [diff] [blame] | 30 | #include "llvm/Analysis/MemoryDependenceAnalysis.h" |
Owen Anderson | aa07172 | 2007-07-11 23:19:17 +0000 | [diff] [blame] | 31 | #include "llvm/Target/TargetData.h" |
Owen Anderson | 5e72db3 | 2007-07-11 00:46:18 +0000 | [diff] [blame] | 32 | #include "llvm/Transforms/Utils/Local.h" |
Owen Anderson | 5e72db3 | 2007-07-11 00:46:18 +0000 | [diff] [blame] | 33 | using namespace llvm; |
| 34 | |
| 35 | STATISTIC(NumFastStores, "Number of stores deleted"); |
| 36 | STATISTIC(NumFastOther , "Number of other instrs removed"); |
| 37 | |
| 38 | namespace { |
Chris Lattner | 2dd09db | 2009-09-02 06:11:42 +0000 | [diff] [blame] | 39 | struct DSE : public FunctionPass { |
Dan Gohman | 67243a4 | 2009-07-24 18:13:53 +0000 | [diff] [blame] | 40 | TargetData *TD; |
| 41 | |
Owen Anderson | 5e72db3 | 2007-07-11 00:46:18 +0000 | [diff] [blame] | 42 | static char ID; // Pass identification, replacement for typeid |
Dan Gohman | a79db30 | 2008-09-04 17:05:41 +0000 | [diff] [blame] | 43 | DSE() : FunctionPass(&ID) {} |
Owen Anderson | 5e72db3 | 2007-07-11 00:46:18 +0000 | [diff] [blame] | 44 | |
| 45 | virtual bool runOnFunction(Function &F) { |
| 46 | bool Changed = false; |
| 47 | for (Function::iterator I = F.begin(), E = F.end(); I != E; ++I) |
| 48 | Changed |= runOnBasicBlock(*I); |
| 49 | return Changed; |
| 50 | } |
Chris Lattner | de04e11 | 2008-11-29 01:43:36 +0000 | [diff] [blame] | 51 | |
Owen Anderson | 5e72db3 | 2007-07-11 00:46:18 +0000 | [diff] [blame] | 52 | bool runOnBasicBlock(BasicBlock &BB); |
Victor Hernandez | e297149 | 2009-10-24 04:23:03 +0000 | [diff] [blame] | 53 | bool handleFreeWithNonTrivialDependency(Instruction *F, MemDepResult Dep); |
Chris Lattner | 1adb675 | 2008-11-28 00:27:14 +0000 | [diff] [blame] | 54 | bool handleEndBlock(BasicBlock &BB); |
Chris Lattner | 57e91ea | 2008-12-06 00:53:22 +0000 | [diff] [blame] | 55 | bool RemoveUndeadPointers(Value* Ptr, uint64_t killPointerSize, |
Owen Anderson | 32c4a05 | 2007-07-12 21:41:30 +0000 | [diff] [blame] | 56 | BasicBlock::iterator& BBI, |
Chris Lattner | 1adb675 | 2008-11-28 00:27:14 +0000 | [diff] [blame] | 57 | SmallPtrSet<Value*, 64>& deadPointers); |
| 58 | void DeleteDeadInstruction(Instruction *I, |
| 59 | SmallPtrSet<Value*, 64> *deadPointers = 0); |
| 60 | |
Owen Anderson | 5e72db3 | 2007-07-11 00:46:18 +0000 | [diff] [blame] | 61 | |
| 62 | // getAnalysisUsage - We require post dominance frontiers (aka Control |
| 63 | // Dependence Graph) |
| 64 | virtual void getAnalysisUsage(AnalysisUsage &AU) const { |
| 65 | AU.setPreservesCFG(); |
Owen Anderson | 3f33897 | 2008-07-28 16:14:26 +0000 | [diff] [blame] | 66 | AU.addRequired<DominatorTree>(); |
Owen Anderson | aa07172 | 2007-07-11 23:19:17 +0000 | [diff] [blame] | 67 | AU.addRequired<AliasAnalysis>(); |
Owen Anderson | 5e72db3 | 2007-07-11 00:46:18 +0000 | [diff] [blame] | 68 | AU.addRequired<MemoryDependenceAnalysis>(); |
Owen Anderson | 3f33897 | 2008-07-28 16:14:26 +0000 | [diff] [blame] | 69 | AU.addPreserved<DominatorTree>(); |
Owen Anderson | aa07172 | 2007-07-11 23:19:17 +0000 | [diff] [blame] | 70 | AU.addPreserved<AliasAnalysis>(); |
Owen Anderson | 5e72db3 | 2007-07-11 00:46:18 +0000 | [diff] [blame] | 71 | AU.addPreserved<MemoryDependenceAnalysis>(); |
| 72 | } |
| 73 | }; |
Owen Anderson | 5e72db3 | 2007-07-11 00:46:18 +0000 | [diff] [blame] | 74 | } |
| 75 | |
Dan Gohman | d78c400 | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 76 | char DSE::ID = 0; |
| 77 | static RegisterPass<DSE> X("dse", "Dead Store Elimination"); |
| 78 | |
Owen Anderson | 10e52ed | 2007-08-01 06:36:51 +0000 | [diff] [blame] | 79 | FunctionPass *llvm::createDeadStoreEliminationPass() { return new DSE(); } |
Owen Anderson | 5e72db3 | 2007-07-11 00:46:18 +0000 | [diff] [blame] | 80 | |
Owen Anderson | 10e52ed | 2007-08-01 06:36:51 +0000 | [diff] [blame] | 81 | bool DSE::runOnBasicBlock(BasicBlock &BB) { |
Owen Anderson | 5e72db3 | 2007-07-11 00:46:18 +0000 | [diff] [blame] | 82 | MemoryDependenceAnalysis& MD = getAnalysis<MemoryDependenceAnalysis>(); |
Dan Gohman | 67243a4 | 2009-07-24 18:13:53 +0000 | [diff] [blame] | 83 | TD = getAnalysisIfAvailable<TargetData>(); |
Owen Anderson | 2ed651a | 2007-11-01 05:29:16 +0000 | [diff] [blame] | 84 | |
Owen Anderson | 5e72db3 | 2007-07-11 00:46:18 +0000 | [diff] [blame] | 85 | bool MadeChange = false; |
| 86 | |
Chris Lattner | 4916267 | 2009-09-02 06:31:02 +0000 | [diff] [blame] | 87 | // Do a top-down walk on the BB. |
Chris Lattner | f2a8ba4 | 2008-11-28 21:29:52 +0000 | [diff] [blame] | 88 | for (BasicBlock::iterator BBI = BB.begin(), BBE = BB.end(); BBI != BBE; ) { |
| 89 | Instruction *Inst = BBI++; |
| 90 | |
Dan Gohman | 67243a4 | 2009-07-24 18:13:53 +0000 | [diff] [blame] | 91 | // If we find a store or a free, get its memory dependence. |
Victor Hernandez | de5ad42 | 2009-10-26 23:43:48 +0000 | [diff] [blame] | 92 | if (!isa<StoreInst>(Inst) && !isFreeCall(Inst)) |
Owen Anderson | 0aecf0e | 2007-08-08 04:52:29 +0000 | [diff] [blame] | 93 | continue; |
Chris Lattner | 5df5b4c | 2008-12-07 00:25:15 +0000 | [diff] [blame] | 94 | |
| 95 | // Don't molest volatile stores or do queries that will return "clobber". |
| 96 | if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) |
| 97 | if (SI->isVolatile()) |
| 98 | continue; |
Duncan Sands | d65a4da | 2008-10-01 15:25:41 +0000 | [diff] [blame] | 99 | |
Chris Lattner | 57e91ea | 2008-12-06 00:53:22 +0000 | [diff] [blame] | 100 | MemDepResult InstDep = MD.getDependency(Inst); |
Chris Lattner | f2a8ba4 | 2008-11-28 21:29:52 +0000 | [diff] [blame] | 101 | |
Chris Lattner | 57e91ea | 2008-12-06 00:53:22 +0000 | [diff] [blame] | 102 | // Ignore non-local stores. |
| 103 | // FIXME: cross-block DSE would be fun. :) |
| 104 | if (InstDep.isNonLocal()) continue; |
| 105 | |
| 106 | // Handle frees whose dependencies are non-trivial. |
Victor Hernandez | de5ad42 | 2009-10-26 23:43:48 +0000 | [diff] [blame] | 107 | if (isFreeCall(Inst)) { |
Victor Hernandez | e297149 | 2009-10-24 04:23:03 +0000 | [diff] [blame] | 108 | MadeChange |= handleFreeWithNonTrivialDependency(Inst, InstDep); |
Chris Lattner | 57e91ea | 2008-12-06 00:53:22 +0000 | [diff] [blame] | 109 | continue; |
| 110 | } |
| 111 | |
| 112 | StoreInst *SI = cast<StoreInst>(Inst); |
| 113 | |
| 114 | // If not a definite must-alias dependency, ignore it. |
| 115 | if (!InstDep.isDef()) |
| 116 | continue; |
| 117 | |
| 118 | // If this is a store-store dependence, then the previous store is dead so |
| 119 | // long as this store is at least as big as it. |
| 120 | if (StoreInst *DepStore = dyn_cast<StoreInst>(InstDep.getInst())) |
Dan Gohman | 0b5be94 | 2009-07-24 18:31:07 +0000 | [diff] [blame] | 121 | if (TD && |
Dan Gohman | 67243a4 | 2009-07-24 18:13:53 +0000 | [diff] [blame] | 122 | TD->getTypeStoreSize(DepStore->getOperand(0)->getType()) <= |
| 123 | TD->getTypeStoreSize(SI->getOperand(0)->getType())) { |
Chris Lattner | 1adb675 | 2008-11-28 00:27:14 +0000 | [diff] [blame] | 124 | // Delete the store and now-dead instructions that feed it. |
Chris Lattner | 57e91ea | 2008-12-06 00:53:22 +0000 | [diff] [blame] | 125 | DeleteDeadInstruction(DepStore); |
Owen Anderson | 0aecf0e | 2007-08-08 04:52:29 +0000 | [diff] [blame] | 126 | NumFastStores++; |
Owen Anderson | 0aecf0e | 2007-08-08 04:52:29 +0000 | [diff] [blame] | 127 | MadeChange = true; |
Chris Lattner | 4916267 | 2009-09-02 06:31:02 +0000 | [diff] [blame] | 128 | |
| 129 | // DeleteDeadInstruction can delete the current instruction in loop |
| 130 | // cases, reset BBI. |
| 131 | BBI = Inst; |
Chris Lattner | 8c5ff51 | 2008-11-29 20:29:04 +0000 | [diff] [blame] | 132 | if (BBI != BB.begin()) |
Chris Lattner | f3f6a80 | 2008-11-28 22:50:08 +0000 | [diff] [blame] | 133 | --BBI; |
Chris Lattner | f2a8ba4 | 2008-11-28 21:29:52 +0000 | [diff] [blame] | 134 | continue; |
| 135 | } |
Owen Anderson | 0aecf0e | 2007-08-08 04:52:29 +0000 | [diff] [blame] | 136 | |
Chris Lattner | 57e91ea | 2008-12-06 00:53:22 +0000 | [diff] [blame] | 137 | // If we're storing the same value back to a pointer that we just |
| 138 | // loaded from, then the store can be removed. |
| 139 | if (LoadInst *DepLoad = dyn_cast<LoadInst>(InstDep.getInst())) { |
| 140 | if (SI->getPointerOperand() == DepLoad->getPointerOperand() && |
| 141 | SI->getOperand(0) == DepLoad) { |
Chris Lattner | 4916267 | 2009-09-02 06:31:02 +0000 | [diff] [blame] | 142 | // DeleteDeadInstruction can delete the current instruction. Save BBI |
| 143 | // in case we need it. |
| 144 | WeakVH NextInst(BBI); |
| 145 | |
Chris Lattner | 57e91ea | 2008-12-06 00:53:22 +0000 | [diff] [blame] | 146 | DeleteDeadInstruction(SI); |
Chris Lattner | 4916267 | 2009-09-02 06:31:02 +0000 | [diff] [blame] | 147 | |
| 148 | if (NextInst == 0) // Next instruction deleted. |
| 149 | BBI = BB.begin(); |
| 150 | else if (BBI != BB.begin()) // Revisit this instruction if possible. |
Chris Lattner | 57e91ea | 2008-12-06 00:53:22 +0000 | [diff] [blame] | 151 | --BBI; |
| 152 | NumFastStores++; |
| 153 | MadeChange = true; |
| 154 | continue; |
Chris Lattner | 0e3d633 | 2008-12-05 21:04:20 +0000 | [diff] [blame] | 155 | } |
Owen Anderson | 5e72db3 | 2007-07-11 00:46:18 +0000 | [diff] [blame] | 156 | } |
Owen Anderson | 2b2bd28 | 2009-10-28 07:05:35 +0000 | [diff] [blame^] | 157 | |
| 158 | // If this is a lifetime end marker, we can throw away the store. |
| 159 | if (IntrinsicInst* II = dyn_cast<IntrinsicInst>(InstDep.getInst())) { |
| 160 | if (II->getIntrinsicID() == Intrinsic::lifetime_end) { |
| 161 | // Delete the store and now-dead instructions that feed it. |
| 162 | // DeleteDeadInstruction can delete the current instruction. Save BBI |
| 163 | // in case we need it. |
| 164 | WeakVH NextInst(BBI); |
| 165 | |
| 166 | DeleteDeadInstruction(SI); |
| 167 | |
| 168 | if (NextInst == 0) // Next instruction deleted. |
| 169 | BBI = BB.begin(); |
| 170 | else if (BBI != BB.begin()) // Revisit this instruction if possible. |
| 171 | --BBI; |
| 172 | NumFastStores++; |
| 173 | MadeChange = true; |
| 174 | continue; |
| 175 | } |
| 176 | } |
Owen Anderson | 5e72db3 | 2007-07-11 00:46:18 +0000 | [diff] [blame] | 177 | } |
| 178 | |
Chris Lattner | f2a8ba4 | 2008-11-28 21:29:52 +0000 | [diff] [blame] | 179 | // If this block ends in a return, unwind, or unreachable, all allocas are |
| 180 | // dead at its end, which means stores to them are also dead. |
Owen Anderson | 32c4a05 | 2007-07-12 21:41:30 +0000 | [diff] [blame] | 181 | if (BB.getTerminator()->getNumSuccessors() == 0) |
Chris Lattner | 1adb675 | 2008-11-28 00:27:14 +0000 | [diff] [blame] | 182 | MadeChange |= handleEndBlock(BB); |
Owen Anderson | 5e72db3 | 2007-07-11 00:46:18 +0000 | [diff] [blame] | 183 | |
| 184 | return MadeChange; |
| 185 | } |
| 186 | |
Owen Anderson | aa07172 | 2007-07-11 23:19:17 +0000 | [diff] [blame] | 187 | /// handleFreeWithNonTrivialDependency - Handle frees of entire structures whose |
Chris Lattner | 1adb675 | 2008-11-28 00:27:14 +0000 | [diff] [blame] | 188 | /// dependency is a store to a field of that structure. |
Victor Hernandez | e297149 | 2009-10-24 04:23:03 +0000 | [diff] [blame] | 189 | bool DSE::handleFreeWithNonTrivialDependency(Instruction *F, MemDepResult Dep) { |
Owen Anderson | aa07172 | 2007-07-11 23:19:17 +0000 | [diff] [blame] | 190 | AliasAnalysis &AA = getAnalysis<AliasAnalysis>(); |
Owen Anderson | aa07172 | 2007-07-11 23:19:17 +0000 | [diff] [blame] | 191 | |
Chris Lattner | 57e91ea | 2008-12-06 00:53:22 +0000 | [diff] [blame] | 192 | StoreInst *Dependency = dyn_cast_or_null<StoreInst>(Dep.getInst()); |
| 193 | if (!Dependency || Dependency->isVolatile()) |
Owen Anderson | 2b9ec7f | 2007-08-26 21:14:47 +0000 | [diff] [blame] | 194 | return false; |
Owen Anderson | d4451de | 2007-07-12 18:08:51 +0000 | [diff] [blame] | 195 | |
Chris Lattner | 57e91ea | 2008-12-06 00:53:22 +0000 | [diff] [blame] | 196 | Value *DepPointer = Dependency->getPointerOperand()->getUnderlyingObject(); |
Duncan Sands | fe3bef0 | 2008-01-20 10:49:23 +0000 | [diff] [blame] | 197 | |
Chris Lattner | 57e91ea | 2008-12-06 00:53:22 +0000 | [diff] [blame] | 198 | // Check for aliasing. |
Victor Hernandez | de5ad42 | 2009-10-26 23:43:48 +0000 | [diff] [blame] | 199 | if (AA.alias(F->getOperand(1), 1, DepPointer, 1) != |
Chris Lattner | 57e91ea | 2008-12-06 00:53:22 +0000 | [diff] [blame] | 200 | AliasAnalysis::MustAlias) |
Chris Lattner | 1adb675 | 2008-11-28 00:27:14 +0000 | [diff] [blame] | 201 | return false; |
Owen Anderson | aa07172 | 2007-07-11 23:19:17 +0000 | [diff] [blame] | 202 | |
Chris Lattner | 1adb675 | 2008-11-28 00:27:14 +0000 | [diff] [blame] | 203 | // DCE instructions only used to calculate that store |
Chris Lattner | 57e91ea | 2008-12-06 00:53:22 +0000 | [diff] [blame] | 204 | DeleteDeadInstruction(Dependency); |
Chris Lattner | 1adb675 | 2008-11-28 00:27:14 +0000 | [diff] [blame] | 205 | NumFastStores++; |
| 206 | return true; |
Owen Anderson | aa07172 | 2007-07-11 23:19:17 +0000 | [diff] [blame] | 207 | } |
| 208 | |
Owen Anderson | e359058 | 2007-08-02 18:11:11 +0000 | [diff] [blame] | 209 | /// handleEndBlock - Remove dead stores to stack-allocated locations in the |
Owen Anderson | 52aaabf | 2007-08-08 17:50:09 +0000 | [diff] [blame] | 210 | /// function end block. Ex: |
| 211 | /// %A = alloca i32 |
| 212 | /// ... |
| 213 | /// store i32 1, i32* %A |
| 214 | /// ret void |
Chris Lattner | 1adb675 | 2008-11-28 00:27:14 +0000 | [diff] [blame] | 215 | bool DSE::handleEndBlock(BasicBlock &BB) { |
Owen Anderson | 32c4a05 | 2007-07-12 21:41:30 +0000 | [diff] [blame] | 216 | AliasAnalysis &AA = getAnalysis<AliasAnalysis>(); |
Owen Anderson | 32c4a05 | 2007-07-12 21:41:30 +0000 | [diff] [blame] | 217 | |
| 218 | bool MadeChange = false; |
| 219 | |
| 220 | // Pointers alloca'd in this function are dead in the end block |
Owen Anderson | 48d3780 | 2008-01-29 06:18:36 +0000 | [diff] [blame] | 221 | SmallPtrSet<Value*, 64> deadPointers; |
Owen Anderson | 32c4a05 | 2007-07-12 21:41:30 +0000 | [diff] [blame] | 222 | |
Chris Lattner | 1adb675 | 2008-11-28 00:27:14 +0000 | [diff] [blame] | 223 | // Find all of the alloca'd pointers in the entry block. |
Owen Anderson | 32c4a05 | 2007-07-12 21:41:30 +0000 | [diff] [blame] | 224 | BasicBlock *Entry = BB.getParent()->begin(); |
| 225 | for (BasicBlock::iterator I = Entry->begin(), E = Entry->end(); I != E; ++I) |
| 226 | if (AllocaInst *AI = dyn_cast<AllocaInst>(I)) |
| 227 | deadPointers.insert(AI); |
Chris Lattner | 1adb675 | 2008-11-28 00:27:14 +0000 | [diff] [blame] | 228 | |
| 229 | // Treat byval arguments the same, stores to them are dead at the end of the |
| 230 | // function. |
Owen Anderson | 48d3780 | 2008-01-29 06:18:36 +0000 | [diff] [blame] | 231 | for (Function::arg_iterator AI = BB.getParent()->arg_begin(), |
| 232 | AE = BB.getParent()->arg_end(); AI != AE; ++AI) |
| 233 | if (AI->hasByValAttr()) |
| 234 | deadPointers.insert(AI); |
Owen Anderson | 32c4a05 | 2007-07-12 21:41:30 +0000 | [diff] [blame] | 235 | |
| 236 | // Scan the basic block backwards |
| 237 | for (BasicBlock::iterator BBI = BB.end(); BBI != BB.begin(); ){ |
| 238 | --BBI; |
| 239 | |
Chris Lattner | 1adb675 | 2008-11-28 00:27:14 +0000 | [diff] [blame] | 240 | // If we find a store whose pointer is dead. |
Owen Anderson | 32c4a05 | 2007-07-12 21:41:30 +0000 | [diff] [blame] | 241 | if (StoreInst* S = dyn_cast<StoreInst>(BBI)) { |
Owen Anderson | 2b9ec7f | 2007-08-26 21:14:47 +0000 | [diff] [blame] | 242 | if (!S->isVolatile()) { |
Owen Anderson | 2b9ec7f | 2007-08-26 21:14:47 +0000 | [diff] [blame] | 243 | // See through pointer-to-pointer bitcasts |
Duncan Sands | d65a4da | 2008-10-01 15:25:41 +0000 | [diff] [blame] | 244 | Value* pointerOperand = S->getPointerOperand()->getUnderlyingObject(); |
| 245 | |
Owen Anderson | 6af19fd | 2008-01-25 10:10:33 +0000 | [diff] [blame] | 246 | // Alloca'd pointers or byval arguments (which are functionally like |
| 247 | // alloca's) are valid candidates for removal. |
Owen Anderson | 48d3780 | 2008-01-29 06:18:36 +0000 | [diff] [blame] | 248 | if (deadPointers.count(pointerOperand)) { |
Chris Lattner | 1adb675 | 2008-11-28 00:27:14 +0000 | [diff] [blame] | 249 | // DCE instructions only used to calculate that store. |
Owen Anderson | 2b9ec7f | 2007-08-26 21:14:47 +0000 | [diff] [blame] | 250 | BBI++; |
Chris Lattner | 1adb675 | 2008-11-28 00:27:14 +0000 | [diff] [blame] | 251 | DeleteDeadInstruction(S, &deadPointers); |
Owen Anderson | 2b9ec7f | 2007-08-26 21:14:47 +0000 | [diff] [blame] | 252 | NumFastStores++; |
| 253 | MadeChange = true; |
| 254 | } |
Owen Anderson | 32c4a05 | 2007-07-12 21:41:30 +0000 | [diff] [blame] | 255 | } |
Owen Anderson | 52aaabf | 2007-08-08 17:50:09 +0000 | [diff] [blame] | 256 | |
| 257 | continue; |
Chris Lattner | 1adb675 | 2008-11-28 00:27:14 +0000 | [diff] [blame] | 258 | } |
Owen Anderson | 48d3780 | 2008-01-29 06:18:36 +0000 | [diff] [blame] | 259 | |
Chris Lattner | 1adb675 | 2008-11-28 00:27:14 +0000 | [diff] [blame] | 260 | // We can also remove memcpy's to local variables at the end of a function. |
| 261 | if (MemCpyInst *M = dyn_cast<MemCpyInst>(BBI)) { |
| 262 | Value *dest = M->getDest()->getUnderlyingObject(); |
Duncan Sands | d65a4da | 2008-10-01 15:25:41 +0000 | [diff] [blame] | 263 | |
Owen Anderson | 48d3780 | 2008-01-29 06:18:36 +0000 | [diff] [blame] | 264 | if (deadPointers.count(dest)) { |
Owen Anderson | 48d3780 | 2008-01-29 06:18:36 +0000 | [diff] [blame] | 265 | BBI++; |
Chris Lattner | 1adb675 | 2008-11-28 00:27:14 +0000 | [diff] [blame] | 266 | DeleteDeadInstruction(M, &deadPointers); |
Owen Anderson | 48d3780 | 2008-01-29 06:18:36 +0000 | [diff] [blame] | 267 | NumFastOther++; |
| 268 | MadeChange = true; |
Owen Anderson | 48d3780 | 2008-01-29 06:18:36 +0000 | [diff] [blame] | 269 | continue; |
| 270 | } |
| 271 | |
Chris Lattner | 1adb675 | 2008-11-28 00:27:14 +0000 | [diff] [blame] | 272 | // Because a memcpy is also a load, we can't skip it if we didn't remove |
| 273 | // it. |
Owen Anderson | 52aaabf | 2007-08-08 17:50:09 +0000 | [diff] [blame] | 274 | } |
| 275 | |
| 276 | Value* killPointer = 0; |
Owen Anderson | a82c993 | 2008-02-04 04:53:00 +0000 | [diff] [blame] | 277 | uint64_t killPointerSize = ~0UL; |
Owen Anderson | 32c4a05 | 2007-07-12 21:41:30 +0000 | [diff] [blame] | 278 | |
| 279 | // If we encounter a use of the pointer, it is no longer considered dead |
Chris Lattner | 1adb675 | 2008-11-28 00:27:14 +0000 | [diff] [blame] | 280 | if (LoadInst *L = dyn_cast<LoadInst>(BBI)) { |
Nate Begeman | 53c5c62 | 2008-05-13 01:48:26 +0000 | [diff] [blame] | 281 | // However, if this load is unused and not volatile, we can go ahead and |
| 282 | // remove it, and not have to worry about it making our pointer undead! |
Dan Gohman | 8cb19d9 | 2008-04-28 19:51:27 +0000 | [diff] [blame] | 283 | if (L->use_empty() && !L->isVolatile()) { |
Owen Anderson | 4e4b116 | 2008-01-30 01:24:47 +0000 | [diff] [blame] | 284 | BBI++; |
Chris Lattner | 1adb675 | 2008-11-28 00:27:14 +0000 | [diff] [blame] | 285 | DeleteDeadInstruction(L, &deadPointers); |
Owen Anderson | 4e4b116 | 2008-01-30 01:24:47 +0000 | [diff] [blame] | 286 | NumFastOther++; |
| 287 | MadeChange = true; |
Owen Anderson | 4e4b116 | 2008-01-30 01:24:47 +0000 | [diff] [blame] | 288 | continue; |
| 289 | } |
| 290 | |
Owen Anderson | 32c4a05 | 2007-07-12 21:41:30 +0000 | [diff] [blame] | 291 | killPointer = L->getPointerOperand(); |
Owen Anderson | 32c4a05 | 2007-07-12 21:41:30 +0000 | [diff] [blame] | 292 | } else if (VAArgInst* V = dyn_cast<VAArgInst>(BBI)) { |
| 293 | killPointer = V->getOperand(0); |
Owen Anderson | a82c993 | 2008-02-04 04:53:00 +0000 | [diff] [blame] | 294 | } else if (isa<MemCpyInst>(BBI) && |
| 295 | isa<ConstantInt>(cast<MemCpyInst>(BBI)->getLength())) { |
| 296 | killPointer = cast<MemCpyInst>(BBI)->getSource(); |
| 297 | killPointerSize = cast<ConstantInt>( |
| 298 | cast<MemCpyInst>(BBI)->getLength())->getZExtValue(); |
Owen Anderson | 32c4a05 | 2007-07-12 21:41:30 +0000 | [diff] [blame] | 299 | } else if (AllocaInst* A = dyn_cast<AllocaInst>(BBI)) { |
| 300 | deadPointers.erase(A); |
Owen Anderson | 4e4b116 | 2008-01-30 01:24:47 +0000 | [diff] [blame] | 301 | |
| 302 | // Dead alloca's can be DCE'd when we reach them |
Nick Lewycky | 6b01670 | 2008-01-30 08:01:28 +0000 | [diff] [blame] | 303 | if (A->use_empty()) { |
Owen Anderson | 4e4b116 | 2008-01-30 01:24:47 +0000 | [diff] [blame] | 304 | BBI++; |
Chris Lattner | 1adb675 | 2008-11-28 00:27:14 +0000 | [diff] [blame] | 305 | DeleteDeadInstruction(A, &deadPointers); |
Owen Anderson | 4e4b116 | 2008-01-30 01:24:47 +0000 | [diff] [blame] | 306 | NumFastOther++; |
| 307 | MadeChange = true; |
Owen Anderson | 4e4b116 | 2008-01-30 01:24:47 +0000 | [diff] [blame] | 308 | } |
| 309 | |
Owen Anderson | 32c4a05 | 2007-07-12 21:41:30 +0000 | [diff] [blame] | 310 | continue; |
| 311 | } else if (CallSite::get(BBI).getInstruction() != 0) { |
Owen Anderson | 50df968 | 2007-08-08 17:58:56 +0000 | [diff] [blame] | 312 | // If this call does not access memory, it can't |
| 313 | // be undeadifying any of our pointers. |
| 314 | CallSite CS = CallSite::get(BBI); |
Duncan Sands | 68b6f50 | 2007-12-01 07:51:45 +0000 | [diff] [blame] | 315 | if (AA.doesNotAccessMemory(CS)) |
Owen Anderson | 50df968 | 2007-08-08 17:58:56 +0000 | [diff] [blame] | 316 | continue; |
| 317 | |
Owen Anderson | ddf4aee | 2007-08-08 18:38:28 +0000 | [diff] [blame] | 318 | unsigned modRef = 0; |
| 319 | unsigned other = 0; |
| 320 | |
Owen Anderson | 32c4a05 | 2007-07-12 21:41:30 +0000 | [diff] [blame] | 321 | // Remove any pointers made undead by the call from the dead set |
Owen Anderson | 48d3780 | 2008-01-29 06:18:36 +0000 | [diff] [blame] | 322 | std::vector<Value*> dead; |
| 323 | for (SmallPtrSet<Value*, 64>::iterator I = deadPointers.begin(), |
Owen Anderson | 32c4a05 | 2007-07-12 21:41:30 +0000 | [diff] [blame] | 324 | E = deadPointers.end(); I != E; ++I) { |
Owen Anderson | ddf4aee | 2007-08-08 18:38:28 +0000 | [diff] [blame] | 325 | // HACK: if we detect that our AA is imprecise, it's not |
| 326 | // worth it to scan the rest of the deadPointers set. Just |
| 327 | // assume that the AA will return ModRef for everything, and |
| 328 | // go ahead and bail. |
| 329 | if (modRef >= 16 && other == 0) { |
| 330 | deadPointers.clear(); |
| 331 | return MadeChange; |
| 332 | } |
Duncan Sands | fe3bef0 | 2008-01-20 10:49:23 +0000 | [diff] [blame] | 333 | |
Owen Anderson | 32c4a05 | 2007-07-12 21:41:30 +0000 | [diff] [blame] | 334 | // Get size information for the alloca |
Duncan Sands | fe3bef0 | 2008-01-20 10:49:23 +0000 | [diff] [blame] | 335 | unsigned pointerSize = ~0U; |
Dan Gohman | 67243a4 | 2009-07-24 18:13:53 +0000 | [diff] [blame] | 336 | if (TD) { |
| 337 | if (AllocaInst* A = dyn_cast<AllocaInst>(*I)) { |
| 338 | if (ConstantInt* C = dyn_cast<ConstantInt>(A->getArraySize())) |
| 339 | pointerSize = C->getZExtValue() * |
| 340 | TD->getTypeAllocSize(A->getAllocatedType()); |
| 341 | } else { |
| 342 | const PointerType* PT = cast<PointerType>( |
| 343 | cast<Argument>(*I)->getType()); |
| 344 | pointerSize = TD->getTypeAllocSize(PT->getElementType()); |
| 345 | } |
Owen Anderson | 48d3780 | 2008-01-29 06:18:36 +0000 | [diff] [blame] | 346 | } |
Duncan Sands | fe3bef0 | 2008-01-20 10:49:23 +0000 | [diff] [blame] | 347 | |
Owen Anderson | 32c4a05 | 2007-07-12 21:41:30 +0000 | [diff] [blame] | 348 | // See if the call site touches it |
Owen Anderson | 50df968 | 2007-08-08 17:58:56 +0000 | [diff] [blame] | 349 | AliasAnalysis::ModRefResult A = AA.getModRefInfo(CS, *I, pointerSize); |
Owen Anderson | ddf4aee | 2007-08-08 18:38:28 +0000 | [diff] [blame] | 350 | |
| 351 | if (A == AliasAnalysis::ModRef) |
| 352 | modRef++; |
| 353 | else |
| 354 | other++; |
| 355 | |
Owen Anderson | 9c9ef21 | 2007-07-13 18:26:26 +0000 | [diff] [blame] | 356 | if (A == AliasAnalysis::ModRef || A == AliasAnalysis::Ref) |
Owen Anderson | 32c4a05 | 2007-07-12 21:41:30 +0000 | [diff] [blame] | 357 | dead.push_back(*I); |
| 358 | } |
| 359 | |
Owen Anderson | 48d3780 | 2008-01-29 06:18:36 +0000 | [diff] [blame] | 360 | for (std::vector<Value*>::iterator I = dead.begin(), E = dead.end(); |
Owen Anderson | 32c4a05 | 2007-07-12 21:41:30 +0000 | [diff] [blame] | 361 | I != E; ++I) |
Owen Anderson | 48d3780 | 2008-01-29 06:18:36 +0000 | [diff] [blame] | 362 | deadPointers.erase(*I); |
Owen Anderson | 32c4a05 | 2007-07-12 21:41:30 +0000 | [diff] [blame] | 363 | |
| 364 | continue; |
Chris Lattner | 1adb675 | 2008-11-28 00:27:14 +0000 | [diff] [blame] | 365 | } else if (isInstructionTriviallyDead(BBI)) { |
Owen Anderson | 4e4b116 | 2008-01-30 01:24:47 +0000 | [diff] [blame] | 366 | // For any non-memory-affecting non-terminators, DCE them as we reach them |
Chris Lattner | 1adb675 | 2008-11-28 00:27:14 +0000 | [diff] [blame] | 367 | Instruction *Inst = BBI; |
| 368 | BBI++; |
| 369 | DeleteDeadInstruction(Inst, &deadPointers); |
| 370 | NumFastOther++; |
| 371 | MadeChange = true; |
| 372 | continue; |
Owen Anderson | 32c4a05 | 2007-07-12 21:41:30 +0000 | [diff] [blame] | 373 | } |
| 374 | |
| 375 | if (!killPointer) |
| 376 | continue; |
Duncan Sands | d65a4da | 2008-10-01 15:25:41 +0000 | [diff] [blame] | 377 | |
| 378 | killPointer = killPointer->getUnderlyingObject(); |
| 379 | |
Owen Anderson | 32c4a05 | 2007-07-12 21:41:30 +0000 | [diff] [blame] | 380 | // Deal with undead pointers |
Owen Anderson | a82c993 | 2008-02-04 04:53:00 +0000 | [diff] [blame] | 381 | MadeChange |= RemoveUndeadPointers(killPointer, killPointerSize, BBI, |
Chris Lattner | 1adb675 | 2008-11-28 00:27:14 +0000 | [diff] [blame] | 382 | deadPointers); |
Owen Anderson | 32c4a05 | 2007-07-12 21:41:30 +0000 | [diff] [blame] | 383 | } |
| 384 | |
| 385 | return MadeChange; |
| 386 | } |
| 387 | |
Owen Anderson | ddf4aee | 2007-08-08 18:38:28 +0000 | [diff] [blame] | 388 | /// RemoveUndeadPointers - check for uses of a pointer that make it |
| 389 | /// undead when scanning for dead stores to alloca's. |
Owen Anderson | a82c993 | 2008-02-04 04:53:00 +0000 | [diff] [blame] | 390 | bool DSE::RemoveUndeadPointers(Value* killPointer, uint64_t killPointerSize, |
Chris Lattner | 1adb675 | 2008-11-28 00:27:14 +0000 | [diff] [blame] | 391 | BasicBlock::iterator &BBI, |
| 392 | SmallPtrSet<Value*, 64>& deadPointers) { |
Owen Anderson | 32c4a05 | 2007-07-12 21:41:30 +0000 | [diff] [blame] | 393 | AliasAnalysis &AA = getAnalysis<AliasAnalysis>(); |
Owen Anderson | 32c4a05 | 2007-07-12 21:41:30 +0000 | [diff] [blame] | 394 | |
Owen Anderson | ddf4aee | 2007-08-08 18:38:28 +0000 | [diff] [blame] | 395 | // If the kill pointer can be easily reduced to an alloca, |
Chris Lattner | 1adb675 | 2008-11-28 00:27:14 +0000 | [diff] [blame] | 396 | // don't bother doing extraneous AA queries. |
Owen Anderson | 48d3780 | 2008-01-29 06:18:36 +0000 | [diff] [blame] | 397 | if (deadPointers.count(killPointer)) { |
| 398 | deadPointers.erase(killPointer); |
Owen Anderson | ddf4aee | 2007-08-08 18:38:28 +0000 | [diff] [blame] | 399 | return false; |
| 400 | } |
| 401 | |
Chris Lattner | 1adb675 | 2008-11-28 00:27:14 +0000 | [diff] [blame] | 402 | // A global can't be in the dead pointer set. |
| 403 | if (isa<GlobalValue>(killPointer)) |
| 404 | return false; |
| 405 | |
Owen Anderson | 32c4a05 | 2007-07-12 21:41:30 +0000 | [diff] [blame] | 406 | bool MadeChange = false; |
| 407 | |
Chris Lattner | 1adb675 | 2008-11-28 00:27:14 +0000 | [diff] [blame] | 408 | SmallVector<Value*, 16> undead; |
Owen Anderson | 32c4a05 | 2007-07-12 21:41:30 +0000 | [diff] [blame] | 409 | |
Owen Anderson | 48d3780 | 2008-01-29 06:18:36 +0000 | [diff] [blame] | 410 | for (SmallPtrSet<Value*, 64>::iterator I = deadPointers.begin(), |
Owen Anderson | 32c4a05 | 2007-07-12 21:41:30 +0000 | [diff] [blame] | 411 | E = deadPointers.end(); I != E; ++I) { |
Chris Lattner | 1adb675 | 2008-11-28 00:27:14 +0000 | [diff] [blame] | 412 | // Get size information for the alloca. |
Duncan Sands | fe3bef0 | 2008-01-20 10:49:23 +0000 | [diff] [blame] | 413 | unsigned pointerSize = ~0U; |
Dan Gohman | 67243a4 | 2009-07-24 18:13:53 +0000 | [diff] [blame] | 414 | if (TD) { |
| 415 | if (AllocaInst* A = dyn_cast<AllocaInst>(*I)) { |
| 416 | if (ConstantInt* C = dyn_cast<ConstantInt>(A->getArraySize())) |
| 417 | pointerSize = C->getZExtValue() * |
| 418 | TD->getTypeAllocSize(A->getAllocatedType()); |
| 419 | } else { |
| 420 | const PointerType* PT = cast<PointerType>(cast<Argument>(*I)->getType()); |
| 421 | pointerSize = TD->getTypeAllocSize(PT->getElementType()); |
| 422 | } |
Owen Anderson | 48d3780 | 2008-01-29 06:18:36 +0000 | [diff] [blame] | 423 | } |
Duncan Sands | fe3bef0 | 2008-01-20 10:49:23 +0000 | [diff] [blame] | 424 | |
Owen Anderson | 32c4a05 | 2007-07-12 21:41:30 +0000 | [diff] [blame] | 425 | // See if this pointer could alias it |
Owen Anderson | e359058 | 2007-08-02 18:11:11 +0000 | [diff] [blame] | 426 | AliasAnalysis::AliasResult A = AA.alias(*I, pointerSize, |
Owen Anderson | a82c993 | 2008-02-04 04:53:00 +0000 | [diff] [blame] | 427 | killPointer, killPointerSize); |
Owen Anderson | 32c4a05 | 2007-07-12 21:41:30 +0000 | [diff] [blame] | 428 | |
| 429 | // If it must-alias and a store, we can delete it |
| 430 | if (isa<StoreInst>(BBI) && A == AliasAnalysis::MustAlias) { |
| 431 | StoreInst* S = cast<StoreInst>(BBI); |
| 432 | |
| 433 | // Remove it! |
Owen Anderson | 32c4a05 | 2007-07-12 21:41:30 +0000 | [diff] [blame] | 434 | BBI++; |
Chris Lattner | 1adb675 | 2008-11-28 00:27:14 +0000 | [diff] [blame] | 435 | DeleteDeadInstruction(S, &deadPointers); |
Owen Anderson | 32c4a05 | 2007-07-12 21:41:30 +0000 | [diff] [blame] | 436 | NumFastStores++; |
| 437 | MadeChange = true; |
| 438 | |
| 439 | continue; |
| 440 | |
| 441 | // Otherwise, it is undead |
Chris Lattner | 1adb675 | 2008-11-28 00:27:14 +0000 | [diff] [blame] | 442 | } else if (A != AliasAnalysis::NoAlias) |
| 443 | undead.push_back(*I); |
Owen Anderson | 32c4a05 | 2007-07-12 21:41:30 +0000 | [diff] [blame] | 444 | } |
| 445 | |
Chris Lattner | 1adb675 | 2008-11-28 00:27:14 +0000 | [diff] [blame] | 446 | for (SmallVector<Value*, 16>::iterator I = undead.begin(), E = undead.end(); |
Owen Anderson | 32c4a05 | 2007-07-12 21:41:30 +0000 | [diff] [blame] | 447 | I != E; ++I) |
Owen Anderson | 48d3780 | 2008-01-29 06:18:36 +0000 | [diff] [blame] | 448 | deadPointers.erase(*I); |
Owen Anderson | 32c4a05 | 2007-07-12 21:41:30 +0000 | [diff] [blame] | 449 | |
| 450 | return MadeChange; |
| 451 | } |
| 452 | |
Chris Lattner | 1adb675 | 2008-11-28 00:27:14 +0000 | [diff] [blame] | 453 | /// DeleteDeadInstruction - Delete this instruction. Before we do, go through |
| 454 | /// and zero out all the operands of this instruction. If any of them become |
| 455 | /// dead, delete them and the computation tree that feeds them. |
| 456 | /// |
| 457 | /// If ValueSet is non-null, remove any deleted instructions from it as well. |
| 458 | /// |
| 459 | void DSE::DeleteDeadInstruction(Instruction *I, |
| 460 | SmallPtrSet<Value*, 64> *ValueSet) { |
| 461 | SmallVector<Instruction*, 32> NowDeadInsts; |
| 462 | |
| 463 | NowDeadInsts.push_back(I); |
| 464 | --NumFastOther; |
Owen Anderson | 5e72db3 | 2007-07-11 00:46:18 +0000 | [diff] [blame] | 465 | |
Chris Lattner | 1adb675 | 2008-11-28 00:27:14 +0000 | [diff] [blame] | 466 | // Before we touch this instruction, remove it from memdep! |
| 467 | MemoryDependenceAnalysis &MDA = getAnalysis<MemoryDependenceAnalysis>(); |
| 468 | while (!NowDeadInsts.empty()) { |
| 469 | Instruction *DeadInst = NowDeadInsts.back(); |
| 470 | NowDeadInsts.pop_back(); |
Owen Anderson | bf971aa | 2007-07-11 19:03:09 +0000 | [diff] [blame] | 471 | |
Chris Lattner | 1adb675 | 2008-11-28 00:27:14 +0000 | [diff] [blame] | 472 | ++NumFastOther; |
| 473 | |
| 474 | // This instruction is dead, zap it, in stages. Start by removing it from |
| 475 | // MemDep, which needs to know the operands and needs it to be in the |
| 476 | // function. |
| 477 | MDA.removeInstruction(DeadInst); |
| 478 | |
| 479 | for (unsigned op = 0, e = DeadInst->getNumOperands(); op != e; ++op) { |
| 480 | Value *Op = DeadInst->getOperand(op); |
| 481 | DeadInst->setOperand(op, 0); |
| 482 | |
| 483 | // If this operand just became dead, add it to the NowDeadInsts list. |
| 484 | if (!Op->use_empty()) continue; |
| 485 | |
| 486 | if (Instruction *OpI = dyn_cast<Instruction>(Op)) |
| 487 | if (isInstructionTriviallyDead(OpI)) |
| 488 | NowDeadInsts.push_back(OpI); |
| 489 | } |
| 490 | |
| 491 | DeadInst->eraseFromParent(); |
| 492 | |
| 493 | if (ValueSet) ValueSet->erase(DeadInst); |
Owen Anderson | 5e72db3 | 2007-07-11 00:46:18 +0000 | [diff] [blame] | 494 | } |
Owen Anderson | 5e72db3 | 2007-07-11 00:46:18 +0000 | [diff] [blame] | 495 | } |