blob: 09c01d314124e65ff3c7767db50d7f99eeb93ee9 [file] [log] [blame]
Owen Andersone3590582007-08-02 18:11:11 +00001//===- DeadStoreElimination.cpp - Fast Dead Store Elimination -------------===//
Owen Anderson5e72db32007-07-11 00:46:18 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Owen Anderson5e72db32007-07-11 00:46:18 +00007//
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 Anderson10e52ed2007-08-01 06:36:51 +000018#define DEBUG_TYPE "dse"
Owen Anderson5e72db32007-07-11 00:46:18 +000019#include "llvm/Transforms/Scalar.h"
Owen Anderson32c4a052007-07-12 21:41:30 +000020#include "llvm/Constants.h"
Owen Anderson5e72db32007-07-11 00:46:18 +000021#include "llvm/Function.h"
22#include "llvm/Instructions.h"
Owen Anderson48d37802008-01-29 06:18:36 +000023#include "llvm/IntrinsicInst.h"
Owen Anderson5e72db32007-07-11 00:46:18 +000024#include "llvm/Pass.h"
Owen Anderson5e72db32007-07-11 00:46:18 +000025#include "llvm/ADT/SmallPtrSet.h"
26#include "llvm/ADT/Statistic.h"
Owen Andersonaa071722007-07-11 23:19:17 +000027#include "llvm/Analysis/AliasAnalysis.h"
Owen Anderson3f338972008-07-28 16:14:26 +000028#include "llvm/Analysis/Dominators.h"
Victor Hernandezf390e042009-10-27 20:05:49 +000029#include "llvm/Analysis/MemoryBuiltins.h"
Owen Anderson5e72db32007-07-11 00:46:18 +000030#include "llvm/Analysis/MemoryDependenceAnalysis.h"
Owen Andersonaa071722007-07-11 23:19:17 +000031#include "llvm/Target/TargetData.h"
Owen Anderson5e72db32007-07-11 00:46:18 +000032#include "llvm/Transforms/Utils/Local.h"
Owen Anderson5e72db32007-07-11 00:46:18 +000033using namespace llvm;
34
35STATISTIC(NumFastStores, "Number of stores deleted");
36STATISTIC(NumFastOther , "Number of other instrs removed");
37
38namespace {
Chris Lattner2dd09db2009-09-02 06:11:42 +000039 struct DSE : public FunctionPass {
Dan Gohman67243a42009-07-24 18:13:53 +000040 TargetData *TD;
41
Owen Anderson5e72db32007-07-11 00:46:18 +000042 static char ID; // Pass identification, replacement for typeid
Dan Gohmana79db302008-09-04 17:05:41 +000043 DSE() : FunctionPass(&ID) {}
Owen Anderson5e72db32007-07-11 00:46:18 +000044
45 virtual bool runOnFunction(Function &F) {
46 bool Changed = false;
Chris Lattnerc053cbb2010-02-11 05:11:54 +000047
48 DominatorTree &DT = getAnalysis<DominatorTree>();
49
Owen Anderson5e72db32007-07-11 00:46:18 +000050 for (Function::iterator I = F.begin(), E = F.end(); I != E; ++I)
Chris Lattnerc053cbb2010-02-11 05:11:54 +000051 // Only check non-dead blocks. Dead blocks may have strange pointer
52 // cycles that will confuse alias analysis.
53 if (DT.isReachableFromEntry(I))
54 Changed |= runOnBasicBlock(*I);
Owen Anderson5e72db32007-07-11 00:46:18 +000055 return Changed;
56 }
Chris Lattnerde04e112008-11-29 01:43:36 +000057
Owen Anderson5e72db32007-07-11 00:46:18 +000058 bool runOnBasicBlock(BasicBlock &BB);
Victor Hernandeze2971492009-10-24 04:23:03 +000059 bool handleFreeWithNonTrivialDependency(Instruction *F, MemDepResult Dep);
Chris Lattner1adb6752008-11-28 00:27:14 +000060 bool handleEndBlock(BasicBlock &BB);
Nick Lewycky475d3d12010-01-03 04:39:07 +000061 bool RemoveUndeadPointers(Value *Ptr, uint64_t killPointerSize,
62 BasicBlock::iterator &BBI,
63 SmallPtrSet<Value*, 64> &deadPointers);
Chris Lattner1adb6752008-11-28 00:27:14 +000064 void DeleteDeadInstruction(Instruction *I,
65 SmallPtrSet<Value*, 64> *deadPointers = 0);
66
Owen Anderson5e72db32007-07-11 00:46:18 +000067
68 // getAnalysisUsage - We require post dominance frontiers (aka Control
69 // Dependence Graph)
70 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
71 AU.setPreservesCFG();
Owen Anderson3f338972008-07-28 16:14:26 +000072 AU.addRequired<DominatorTree>();
Owen Andersonaa071722007-07-11 23:19:17 +000073 AU.addRequired<AliasAnalysis>();
Owen Anderson5e72db32007-07-11 00:46:18 +000074 AU.addRequired<MemoryDependenceAnalysis>();
Owen Anderson3f338972008-07-28 16:14:26 +000075 AU.addPreserved<DominatorTree>();
Owen Andersonaa071722007-07-11 23:19:17 +000076 AU.addPreserved<AliasAnalysis>();
Owen Anderson5e72db32007-07-11 00:46:18 +000077 AU.addPreserved<MemoryDependenceAnalysis>();
78 }
Nick Lewycky475d3d12010-01-03 04:39:07 +000079
80 unsigned getPointerSize(Value *V) const;
Owen Anderson5e72db32007-07-11 00:46:18 +000081 };
Owen Anderson5e72db32007-07-11 00:46:18 +000082}
83
Dan Gohmand78c4002008-05-13 00:00:25 +000084char DSE::ID = 0;
85static RegisterPass<DSE> X("dse", "Dead Store Elimination");
86
Owen Anderson10e52ed2007-08-01 06:36:51 +000087FunctionPass *llvm::createDeadStoreEliminationPass() { return new DSE(); }
Owen Anderson5e72db32007-07-11 00:46:18 +000088
Nick Lewycky90271472009-11-10 06:46:40 +000089/// doesClobberMemory - Does this instruction clobber (write without reading)
90/// some memory?
91static bool doesClobberMemory(Instruction *I) {
92 if (isa<StoreInst>(I))
93 return true;
94 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I)) {
95 switch (II->getIntrinsicID()) {
Chris Lattner2764b4d2009-12-02 06:35:55 +000096 default:
97 return false;
98 case Intrinsic::memset:
99 case Intrinsic::memmove:
100 case Intrinsic::memcpy:
101 case Intrinsic::init_trampoline:
102 case Intrinsic::lifetime_end:
103 return true;
Nick Lewycky90271472009-11-10 06:46:40 +0000104 }
105 }
106 return false;
107}
108
Duncan Sands1925d3a2009-11-10 13:49:50 +0000109/// isElidable - If the value of this instruction and the memory it writes to is
Nick Lewycky90271472009-11-10 06:46:40 +0000110/// unused, may we delete this instrtction?
111static bool isElidable(Instruction *I) {
112 assert(doesClobberMemory(I));
113 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I))
114 return II->getIntrinsicID() != Intrinsic::lifetime_end;
115 if (StoreInst *SI = dyn_cast<StoreInst>(I))
116 return !SI->isVolatile();
117 return true;
118}
119
120/// getPointerOperand - Return the pointer that is being clobbered.
121static Value *getPointerOperand(Instruction *I) {
122 assert(doesClobberMemory(I));
123 if (StoreInst *SI = dyn_cast<StoreInst>(I))
124 return SI->getPointerOperand();
125 if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(I))
Eric Christopher7258dcd2010-04-16 23:37:20 +0000126 return MI->getOperand(1);
Chris Lattner2764b4d2009-12-02 06:35:55 +0000127
128 switch (cast<IntrinsicInst>(I)->getIntrinsicID()) {
129 default: assert(false && "Unexpected intrinsic!");
130 case Intrinsic::init_trampoline:
Gabor Greiff3755202010-04-16 15:33:14 +0000131 return I->getOperand(1);
Eric Christopher7258dcd2010-04-16 23:37:20 +0000132 case Intrinsic::lifetime_end:
133 return I->getOperand(2);
Duncan Sands1925d3a2009-11-10 13:49:50 +0000134 }
Nick Lewycky90271472009-11-10 06:46:40 +0000135}
136
137/// getStoreSize - Return the length in bytes of the write by the clobbering
138/// instruction. If variable or unknown, returns -1.
139static unsigned getStoreSize(Instruction *I, const TargetData *TD) {
140 assert(doesClobberMemory(I));
141 if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
142 if (!TD) return -1u;
Nick Lewycky5b3def92009-11-10 07:00:43 +0000143 return TD->getTypeStoreSize(SI->getOperand(0)->getType());
Nick Lewycky90271472009-11-10 06:46:40 +0000144 }
145
146 Value *Len;
147 if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(I)) {
148 Len = MI->getLength();
149 } else {
Chris Lattner2764b4d2009-12-02 06:35:55 +0000150 switch (cast<IntrinsicInst>(I)->getIntrinsicID()) {
151 default: assert(false && "Unexpected intrinsic!");
152 case Intrinsic::init_trampoline:
153 return -1u;
154 case Intrinsic::lifetime_end:
Eric Christopher7258dcd2010-04-16 23:37:20 +0000155 Len = I->getOperand(1);
Chris Lattner2764b4d2009-12-02 06:35:55 +0000156 break;
Duncan Sands1925d3a2009-11-10 13:49:50 +0000157 }
Nick Lewycky90271472009-11-10 06:46:40 +0000158 }
159 if (ConstantInt *LenCI = dyn_cast<ConstantInt>(Len))
160 if (!LenCI->isAllOnesValue())
161 return LenCI->getZExtValue();
162 return -1u;
163}
164
165/// isStoreAtLeastAsWideAs - Return true if the size of the store in I1 is
166/// greater than or equal to the store in I2. This returns false if we don't
167/// know.
Chris Lattnera0906272009-11-04 23:20:12 +0000168///
Nick Lewycky90271472009-11-10 06:46:40 +0000169static bool isStoreAtLeastAsWideAs(Instruction *I1, Instruction *I2,
170 const TargetData *TD) {
171 const Type *I1Ty = getPointerOperand(I1)->getType();
172 const Type *I2Ty = getPointerOperand(I2)->getType();
Chris Lattnera0906272009-11-04 23:20:12 +0000173
174 // Exactly the same type, must have exactly the same size.
Nick Lewycky90271472009-11-10 06:46:40 +0000175 if (I1Ty == I2Ty) return true;
Chris Lattnera0906272009-11-04 23:20:12 +0000176
Nick Lewycky90271472009-11-10 06:46:40 +0000177 int I1Size = getStoreSize(I1, TD);
178 int I2Size = getStoreSize(I2, TD);
Chris Lattnera0906272009-11-04 23:20:12 +0000179
Nick Lewycky90271472009-11-10 06:46:40 +0000180 return I1Size != -1 && I2Size != -1 && I1Size >= I2Size;
Chris Lattnera0906272009-11-04 23:20:12 +0000181}
182
Owen Anderson10e52ed2007-08-01 06:36:51 +0000183bool DSE::runOnBasicBlock(BasicBlock &BB) {
Nick Lewycky475d3d12010-01-03 04:39:07 +0000184 MemoryDependenceAnalysis &MD = getAnalysis<MemoryDependenceAnalysis>();
Dan Gohman67243a42009-07-24 18:13:53 +0000185 TD = getAnalysisIfAvailable<TargetData>();
Owen Anderson2ed651a2007-11-01 05:29:16 +0000186
Owen Anderson5e72db32007-07-11 00:46:18 +0000187 bool MadeChange = false;
188
Chris Lattner49162672009-09-02 06:31:02 +0000189 // Do a top-down walk on the BB.
Chris Lattnerf2a8ba42008-11-28 21:29:52 +0000190 for (BasicBlock::iterator BBI = BB.begin(), BBE = BB.end(); BBI != BBE; ) {
191 Instruction *Inst = BBI++;
192
Dan Gohman67243a42009-07-24 18:13:53 +0000193 // If we find a store or a free, get its memory dependence.
Nick Lewycky90271472009-11-10 06:46:40 +0000194 if (!doesClobberMemory(Inst) && !isFreeCall(Inst))
Owen Anderson0aecf0e2007-08-08 04:52:29 +0000195 continue;
Chris Lattner5df5b4c2008-12-07 00:25:15 +0000196
Chris Lattner57e91ea2008-12-06 00:53:22 +0000197 MemDepResult InstDep = MD.getDependency(Inst);
Chris Lattnerf2a8ba42008-11-28 21:29:52 +0000198
Chris Lattner57e91ea2008-12-06 00:53:22 +0000199 // Ignore non-local stores.
200 // FIXME: cross-block DSE would be fun. :)
201 if (InstDep.isNonLocal()) continue;
202
203 // Handle frees whose dependencies are non-trivial.
Victor Hernandezde5ad422009-10-26 23:43:48 +0000204 if (isFreeCall(Inst)) {
Victor Hernandeze2971492009-10-24 04:23:03 +0000205 MadeChange |= handleFreeWithNonTrivialDependency(Inst, InstDep);
Chris Lattner57e91ea2008-12-06 00:53:22 +0000206 continue;
207 }
208
Chris Lattner57e91ea2008-12-06 00:53:22 +0000209 // If not a definite must-alias dependency, ignore it.
210 if (!InstDep.isDef())
211 continue;
212
213 // If this is a store-store dependence, then the previous store is dead so
214 // long as this store is at least as big as it.
Nick Lewycky90271472009-11-10 06:46:40 +0000215 if (doesClobberMemory(InstDep.getInst())) {
216 Instruction *DepStore = InstDep.getInst();
217 if (isStoreAtLeastAsWideAs(Inst, DepStore, TD) &&
218 isElidable(DepStore)) {
Chris Lattner1adb6752008-11-28 00:27:14 +0000219 // Delete the store and now-dead instructions that feed it.
Chris Lattner57e91ea2008-12-06 00:53:22 +0000220 DeleteDeadInstruction(DepStore);
Owen Anderson0aecf0e2007-08-08 04:52:29 +0000221 NumFastStores++;
Owen Anderson0aecf0e2007-08-08 04:52:29 +0000222 MadeChange = true;
Chris Lattner49162672009-09-02 06:31:02 +0000223
224 // DeleteDeadInstruction can delete the current instruction in loop
225 // cases, reset BBI.
226 BBI = Inst;
Chris Lattner8c5ff512008-11-29 20:29:04 +0000227 if (BBI != BB.begin())
Chris Lattnerf3f6a802008-11-28 22:50:08 +0000228 --BBI;
Chris Lattnerf2a8ba42008-11-28 21:29:52 +0000229 continue;
230 }
Nick Lewycky90271472009-11-10 06:46:40 +0000231 }
232
233 if (!isElidable(Inst))
234 continue;
Owen Anderson0aecf0e2007-08-08 04:52:29 +0000235
Chris Lattner57e91ea2008-12-06 00:53:22 +0000236 // If we're storing the same value back to a pointer that we just
237 // loaded from, then the store can be removed.
Nick Lewycky90271472009-11-10 06:46:40 +0000238 if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
239 if (LoadInst *DepLoad = dyn_cast<LoadInst>(InstDep.getInst())) {
240 if (SI->getPointerOperand() == DepLoad->getPointerOperand() &&
241 SI->getOperand(0) == DepLoad) {
242 // DeleteDeadInstruction can delete the current instruction. Save BBI
243 // in case we need it.
244 WeakVH NextInst(BBI);
245
246 DeleteDeadInstruction(SI);
247
248 if (NextInst == 0) // Next instruction deleted.
249 BBI = BB.begin();
250 else if (BBI != BB.begin()) // Revisit this instruction if possible.
251 --BBI;
252 NumFastStores++;
253 MadeChange = true;
254 continue;
255 }
Chris Lattner0e3d6332008-12-05 21:04:20 +0000256 }
Owen Anderson5e72db32007-07-11 00:46:18 +0000257 }
Owen Anderson2b2bd282009-10-28 07:05:35 +0000258
259 // If this is a lifetime end marker, we can throw away the store.
Nick Lewycky90271472009-11-10 06:46:40 +0000260 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(InstDep.getInst())) {
Owen Anderson2b2bd282009-10-28 07:05:35 +0000261 if (II->getIntrinsicID() == Intrinsic::lifetime_end) {
262 // Delete the store and now-dead instructions that feed it.
263 // DeleteDeadInstruction can delete the current instruction. Save BBI
264 // in case we need it.
265 WeakVH NextInst(BBI);
266
Nick Lewycky90271472009-11-10 06:46:40 +0000267 DeleteDeadInstruction(Inst);
Owen Anderson2b2bd282009-10-28 07:05:35 +0000268
269 if (NextInst == 0) // Next instruction deleted.
270 BBI = BB.begin();
271 else if (BBI != BB.begin()) // Revisit this instruction if possible.
272 --BBI;
273 NumFastStores++;
274 MadeChange = true;
275 continue;
276 }
277 }
Owen Anderson5e72db32007-07-11 00:46:18 +0000278 }
279
Chris Lattnerf2a8ba42008-11-28 21:29:52 +0000280 // If this block ends in a return, unwind, or unreachable, all allocas are
281 // dead at its end, which means stores to them are also dead.
Owen Anderson32c4a052007-07-12 21:41:30 +0000282 if (BB.getTerminator()->getNumSuccessors() == 0)
Chris Lattner1adb6752008-11-28 00:27:14 +0000283 MadeChange |= handleEndBlock(BB);
Owen Anderson5e72db32007-07-11 00:46:18 +0000284
285 return MadeChange;
286}
287
Owen Andersonaa071722007-07-11 23:19:17 +0000288/// handleFreeWithNonTrivialDependency - Handle frees of entire structures whose
Chris Lattner1adb6752008-11-28 00:27:14 +0000289/// dependency is a store to a field of that structure.
Eric Christopher7258dcd2010-04-16 23:37:20 +0000290bool DSE::handleFreeWithNonTrivialDependency(Instruction *F, MemDepResult Dep) {
Owen Andersonaa071722007-07-11 23:19:17 +0000291 AliasAnalysis &AA = getAnalysis<AliasAnalysis>();
Owen Andersonaa071722007-07-11 23:19:17 +0000292
Nick Lewycky90271472009-11-10 06:46:40 +0000293 Instruction *Dependency = Dep.getInst();
294 if (!Dependency || !doesClobberMemory(Dependency) || !isElidable(Dependency))
Owen Anderson2b9ec7f2007-08-26 21:14:47 +0000295 return false;
Owen Andersond4451de2007-07-12 18:08:51 +0000296
Nick Lewycky90271472009-11-10 06:46:40 +0000297 Value *DepPointer = getPointerOperand(Dependency)->getUnderlyingObject();
Duncan Sandsfe3bef02008-01-20 10:49:23 +0000298
Chris Lattner57e91ea2008-12-06 00:53:22 +0000299 // Check for aliasing.
Eric Christopher7258dcd2010-04-16 23:37:20 +0000300 if (AA.alias(F->getOperand(1), 1, DepPointer, 1) !=
Chris Lattner57e91ea2008-12-06 00:53:22 +0000301 AliasAnalysis::MustAlias)
Chris Lattner1adb6752008-11-28 00:27:14 +0000302 return false;
Owen Andersonaa071722007-07-11 23:19:17 +0000303
Chris Lattner1adb6752008-11-28 00:27:14 +0000304 // DCE instructions only used to calculate that store
Chris Lattner57e91ea2008-12-06 00:53:22 +0000305 DeleteDeadInstruction(Dependency);
Chris Lattner1adb6752008-11-28 00:27:14 +0000306 NumFastStores++;
307 return true;
Owen Andersonaa071722007-07-11 23:19:17 +0000308}
309
Owen Andersone3590582007-08-02 18:11:11 +0000310/// handleEndBlock - Remove dead stores to stack-allocated locations in the
Owen Anderson52aaabf2007-08-08 17:50:09 +0000311/// function end block. Ex:
312/// %A = alloca i32
313/// ...
314/// store i32 1, i32* %A
315/// ret void
Chris Lattner1adb6752008-11-28 00:27:14 +0000316bool DSE::handleEndBlock(BasicBlock &BB) {
Owen Anderson32c4a052007-07-12 21:41:30 +0000317 AliasAnalysis &AA = getAnalysis<AliasAnalysis>();
Owen Anderson32c4a052007-07-12 21:41:30 +0000318
319 bool MadeChange = false;
320
321 // Pointers alloca'd in this function are dead in the end block
Owen Anderson48d37802008-01-29 06:18:36 +0000322 SmallPtrSet<Value*, 64> deadPointers;
Owen Anderson32c4a052007-07-12 21:41:30 +0000323
Chris Lattner1adb6752008-11-28 00:27:14 +0000324 // Find all of the alloca'd pointers in the entry block.
Owen Anderson32c4a052007-07-12 21:41:30 +0000325 BasicBlock *Entry = BB.getParent()->begin();
326 for (BasicBlock::iterator I = Entry->begin(), E = Entry->end(); I != E; ++I)
327 if (AllocaInst *AI = dyn_cast<AllocaInst>(I))
328 deadPointers.insert(AI);
Chris Lattner1adb6752008-11-28 00:27:14 +0000329
330 // Treat byval arguments the same, stores to them are dead at the end of the
331 // function.
Owen Anderson48d37802008-01-29 06:18:36 +0000332 for (Function::arg_iterator AI = BB.getParent()->arg_begin(),
333 AE = BB.getParent()->arg_end(); AI != AE; ++AI)
334 if (AI->hasByValAttr())
335 deadPointers.insert(AI);
Owen Anderson32c4a052007-07-12 21:41:30 +0000336
337 // Scan the basic block backwards
338 for (BasicBlock::iterator BBI = BB.end(); BBI != BB.begin(); ){
339 --BBI;
340
Chris Lattner1adb6752008-11-28 00:27:14 +0000341 // If we find a store whose pointer is dead.
Nick Lewycky90271472009-11-10 06:46:40 +0000342 if (doesClobberMemory(BBI)) {
343 if (isElidable(BBI)) {
Owen Anderson2b9ec7f2007-08-26 21:14:47 +0000344 // See through pointer-to-pointer bitcasts
Nick Lewycky90271472009-11-10 06:46:40 +0000345 Value *pointerOperand = getPointerOperand(BBI)->getUnderlyingObject();
Duncan Sandsd65a4da2008-10-01 15:25:41 +0000346
Owen Anderson6af19fd2008-01-25 10:10:33 +0000347 // Alloca'd pointers or byval arguments (which are functionally like
348 // alloca's) are valid candidates for removal.
Owen Anderson48d37802008-01-29 06:18:36 +0000349 if (deadPointers.count(pointerOperand)) {
Chris Lattner1adb6752008-11-28 00:27:14 +0000350 // DCE instructions only used to calculate that store.
Nick Lewycky90271472009-11-10 06:46:40 +0000351 Instruction *Dead = BBI;
Owen Anderson2b9ec7f2007-08-26 21:14:47 +0000352 BBI++;
Nick Lewycky90271472009-11-10 06:46:40 +0000353 DeleteDeadInstruction(Dead, &deadPointers);
Owen Anderson2b9ec7f2007-08-26 21:14:47 +0000354 NumFastStores++;
355 MadeChange = true;
Nick Lewycky90271472009-11-10 06:46:40 +0000356 continue;
Owen Anderson2b9ec7f2007-08-26 21:14:47 +0000357 }
Owen Anderson32c4a052007-07-12 21:41:30 +0000358 }
Owen Anderson52aaabf2007-08-08 17:50:09 +0000359
Nick Lewycky90271472009-11-10 06:46:40 +0000360 // Because a memcpy or memmove is also a load, we can't skip it if we
361 // didn't remove it.
362 if (!isa<MemTransferInst>(BBI))
Owen Anderson48d37802008-01-29 06:18:36 +0000363 continue;
Owen Anderson52aaabf2007-08-08 17:50:09 +0000364 }
365
Nick Lewycky475d3d12010-01-03 04:39:07 +0000366 Value *killPointer = 0;
Owen Andersona82c9932008-02-04 04:53:00 +0000367 uint64_t killPointerSize = ~0UL;
Owen Anderson32c4a052007-07-12 21:41:30 +0000368
369 // If we encounter a use of the pointer, it is no longer considered dead
Chris Lattner1adb6752008-11-28 00:27:14 +0000370 if (LoadInst *L = dyn_cast<LoadInst>(BBI)) {
Nate Begeman53c5c622008-05-13 01:48:26 +0000371 // However, if this load is unused and not volatile, we can go ahead and
372 // remove it, and not have to worry about it making our pointer undead!
Dan Gohman8cb19d92008-04-28 19:51:27 +0000373 if (L->use_empty() && !L->isVolatile()) {
Owen Anderson4e4b1162008-01-30 01:24:47 +0000374 BBI++;
Chris Lattner1adb6752008-11-28 00:27:14 +0000375 DeleteDeadInstruction(L, &deadPointers);
Owen Anderson4e4b1162008-01-30 01:24:47 +0000376 NumFastOther++;
377 MadeChange = true;
Owen Anderson4e4b1162008-01-30 01:24:47 +0000378 continue;
379 }
380
Owen Anderson32c4a052007-07-12 21:41:30 +0000381 killPointer = L->getPointerOperand();
Nick Lewycky475d3d12010-01-03 04:39:07 +0000382 } else if (VAArgInst *V = dyn_cast<VAArgInst>(BBI)) {
Owen Anderson32c4a052007-07-12 21:41:30 +0000383 killPointer = V->getOperand(0);
Nick Lewycky90271472009-11-10 06:46:40 +0000384 } else if (isa<MemTransferInst>(BBI) &&
385 isa<ConstantInt>(cast<MemTransferInst>(BBI)->getLength())) {
386 killPointer = cast<MemTransferInst>(BBI)->getSource();
Owen Andersona82c9932008-02-04 04:53:00 +0000387 killPointerSize = cast<ConstantInt>(
Nick Lewycky90271472009-11-10 06:46:40 +0000388 cast<MemTransferInst>(BBI)->getLength())->getZExtValue();
Nick Lewycky475d3d12010-01-03 04:39:07 +0000389 } else if (AllocaInst *A = dyn_cast<AllocaInst>(BBI)) {
Owen Anderson32c4a052007-07-12 21:41:30 +0000390 deadPointers.erase(A);
Owen Anderson4e4b1162008-01-30 01:24:47 +0000391
392 // Dead alloca's can be DCE'd when we reach them
Nick Lewycky6b016702008-01-30 08:01:28 +0000393 if (A->use_empty()) {
Owen Anderson4e4b1162008-01-30 01:24:47 +0000394 BBI++;
Chris Lattner1adb6752008-11-28 00:27:14 +0000395 DeleteDeadInstruction(A, &deadPointers);
Owen Anderson4e4b1162008-01-30 01:24:47 +0000396 NumFastOther++;
397 MadeChange = true;
Owen Anderson4e4b1162008-01-30 01:24:47 +0000398 }
399
Owen Anderson32c4a052007-07-12 21:41:30 +0000400 continue;
401 } else if (CallSite::get(BBI).getInstruction() != 0) {
Owen Anderson50df9682007-08-08 17:58:56 +0000402 // If this call does not access memory, it can't
403 // be undeadifying any of our pointers.
404 CallSite CS = CallSite::get(BBI);
Duncan Sands68b6f502007-12-01 07:51:45 +0000405 if (AA.doesNotAccessMemory(CS))
Owen Anderson50df9682007-08-08 17:58:56 +0000406 continue;
407
Owen Andersonddf4aee2007-08-08 18:38:28 +0000408 unsigned modRef = 0;
409 unsigned other = 0;
410
Owen Anderson32c4a052007-07-12 21:41:30 +0000411 // Remove any pointers made undead by the call from the dead set
Owen Anderson48d37802008-01-29 06:18:36 +0000412 std::vector<Value*> dead;
413 for (SmallPtrSet<Value*, 64>::iterator I = deadPointers.begin(),
Owen Anderson32c4a052007-07-12 21:41:30 +0000414 E = deadPointers.end(); I != E; ++I) {
Owen Andersonddf4aee2007-08-08 18:38:28 +0000415 // HACK: if we detect that our AA is imprecise, it's not
416 // worth it to scan the rest of the deadPointers set. Just
417 // assume that the AA will return ModRef for everything, and
418 // go ahead and bail.
419 if (modRef >= 16 && other == 0) {
420 deadPointers.clear();
421 return MadeChange;
422 }
Nick Lewycky475d3d12010-01-03 04:39:07 +0000423
Owen Anderson32c4a052007-07-12 21:41:30 +0000424 // See if the call site touches it
Nick Lewycky475d3d12010-01-03 04:39:07 +0000425 AliasAnalysis::ModRefResult A = AA.getModRefInfo(CS, *I,
426 getPointerSize(*I));
Owen Andersonddf4aee2007-08-08 18:38:28 +0000427
428 if (A == AliasAnalysis::ModRef)
429 modRef++;
430 else
431 other++;
432
Owen Anderson9c9ef212007-07-13 18:26:26 +0000433 if (A == AliasAnalysis::ModRef || A == AliasAnalysis::Ref)
Owen Anderson32c4a052007-07-12 21:41:30 +0000434 dead.push_back(*I);
435 }
436
Owen Anderson48d37802008-01-29 06:18:36 +0000437 for (std::vector<Value*>::iterator I = dead.begin(), E = dead.end();
Owen Anderson32c4a052007-07-12 21:41:30 +0000438 I != E; ++I)
Owen Anderson48d37802008-01-29 06:18:36 +0000439 deadPointers.erase(*I);
Owen Anderson32c4a052007-07-12 21:41:30 +0000440
441 continue;
Chris Lattner1adb6752008-11-28 00:27:14 +0000442 } else if (isInstructionTriviallyDead(BBI)) {
Owen Anderson4e4b1162008-01-30 01:24:47 +0000443 // For any non-memory-affecting non-terminators, DCE them as we reach them
Chris Lattner1adb6752008-11-28 00:27:14 +0000444 Instruction *Inst = BBI;
445 BBI++;
446 DeleteDeadInstruction(Inst, &deadPointers);
447 NumFastOther++;
448 MadeChange = true;
449 continue;
Owen Anderson32c4a052007-07-12 21:41:30 +0000450 }
451
452 if (!killPointer)
453 continue;
Duncan Sandsd65a4da2008-10-01 15:25:41 +0000454
455 killPointer = killPointer->getUnderlyingObject();
456
Owen Anderson32c4a052007-07-12 21:41:30 +0000457 // Deal with undead pointers
Owen Andersona82c9932008-02-04 04:53:00 +0000458 MadeChange |= RemoveUndeadPointers(killPointer, killPointerSize, BBI,
Chris Lattner1adb6752008-11-28 00:27:14 +0000459 deadPointers);
Owen Anderson32c4a052007-07-12 21:41:30 +0000460 }
461
462 return MadeChange;
463}
464
Owen Andersonddf4aee2007-08-08 18:38:28 +0000465/// RemoveUndeadPointers - check for uses of a pointer that make it
466/// undead when scanning for dead stores to alloca's.
Nick Lewycky475d3d12010-01-03 04:39:07 +0000467bool DSE::RemoveUndeadPointers(Value *killPointer, uint64_t killPointerSize,
Chris Lattner1adb6752008-11-28 00:27:14 +0000468 BasicBlock::iterator &BBI,
Nick Lewycky475d3d12010-01-03 04:39:07 +0000469 SmallPtrSet<Value*, 64> &deadPointers) {
Owen Anderson32c4a052007-07-12 21:41:30 +0000470 AliasAnalysis &AA = getAnalysis<AliasAnalysis>();
Nick Lewycky475d3d12010-01-03 04:39:07 +0000471
Owen Andersonddf4aee2007-08-08 18:38:28 +0000472 // If the kill pointer can be easily reduced to an alloca,
Chris Lattner1adb6752008-11-28 00:27:14 +0000473 // don't bother doing extraneous AA queries.
Owen Anderson48d37802008-01-29 06:18:36 +0000474 if (deadPointers.count(killPointer)) {
475 deadPointers.erase(killPointer);
Owen Andersonddf4aee2007-08-08 18:38:28 +0000476 return false;
477 }
478
Chris Lattner1adb6752008-11-28 00:27:14 +0000479 // A global can't be in the dead pointer set.
480 if (isa<GlobalValue>(killPointer))
481 return false;
482
Owen Anderson32c4a052007-07-12 21:41:30 +0000483 bool MadeChange = false;
484
Chris Lattner1adb6752008-11-28 00:27:14 +0000485 SmallVector<Value*, 16> undead;
Nick Lewycky475d3d12010-01-03 04:39:07 +0000486
Owen Anderson48d37802008-01-29 06:18:36 +0000487 for (SmallPtrSet<Value*, 64>::iterator I = deadPointers.begin(),
Nick Lewycky475d3d12010-01-03 04:39:07 +0000488 E = deadPointers.end(); I != E; ++I) {
Owen Anderson32c4a052007-07-12 21:41:30 +0000489 // See if this pointer could alias it
Nick Lewycky475d3d12010-01-03 04:39:07 +0000490 AliasAnalysis::AliasResult A = AA.alias(*I, getPointerSize(*I),
Owen Andersona82c9932008-02-04 04:53:00 +0000491 killPointer, killPointerSize);
Owen Anderson32c4a052007-07-12 21:41:30 +0000492
493 // If it must-alias and a store, we can delete it
494 if (isa<StoreInst>(BBI) && A == AliasAnalysis::MustAlias) {
Nick Lewycky475d3d12010-01-03 04:39:07 +0000495 StoreInst *S = cast<StoreInst>(BBI);
Owen Anderson32c4a052007-07-12 21:41:30 +0000496
497 // Remove it!
Nick Lewycky475d3d12010-01-03 04:39:07 +0000498 ++BBI;
Chris Lattner1adb6752008-11-28 00:27:14 +0000499 DeleteDeadInstruction(S, &deadPointers);
Owen Anderson32c4a052007-07-12 21:41:30 +0000500 NumFastStores++;
501 MadeChange = true;
502
503 continue;
504
505 // Otherwise, it is undead
Chris Lattner1adb6752008-11-28 00:27:14 +0000506 } else if (A != AliasAnalysis::NoAlias)
507 undead.push_back(*I);
Owen Anderson32c4a052007-07-12 21:41:30 +0000508 }
509
Chris Lattner1adb6752008-11-28 00:27:14 +0000510 for (SmallVector<Value*, 16>::iterator I = undead.begin(), E = undead.end();
Owen Anderson32c4a052007-07-12 21:41:30 +0000511 I != E; ++I)
Owen Anderson48d37802008-01-29 06:18:36 +0000512 deadPointers.erase(*I);
Owen Anderson32c4a052007-07-12 21:41:30 +0000513
514 return MadeChange;
515}
516
Chris Lattner1adb6752008-11-28 00:27:14 +0000517/// DeleteDeadInstruction - Delete this instruction. Before we do, go through
518/// and zero out all the operands of this instruction. If any of them become
519/// dead, delete them and the computation tree that feeds them.
520///
521/// If ValueSet is non-null, remove any deleted instructions from it as well.
522///
523void DSE::DeleteDeadInstruction(Instruction *I,
524 SmallPtrSet<Value*, 64> *ValueSet) {
525 SmallVector<Instruction*, 32> NowDeadInsts;
526
527 NowDeadInsts.push_back(I);
528 --NumFastOther;
Owen Anderson5e72db32007-07-11 00:46:18 +0000529
Chris Lattner1adb6752008-11-28 00:27:14 +0000530 // Before we touch this instruction, remove it from memdep!
531 MemoryDependenceAnalysis &MDA = getAnalysis<MemoryDependenceAnalysis>();
Dan Gohman28943872010-01-05 16:27:25 +0000532 do {
533 Instruction *DeadInst = NowDeadInsts.pop_back_val();
Owen Andersonbf971aa2007-07-11 19:03:09 +0000534
Chris Lattner1adb6752008-11-28 00:27:14 +0000535 ++NumFastOther;
536
537 // This instruction is dead, zap it, in stages. Start by removing it from
538 // MemDep, which needs to know the operands and needs it to be in the
539 // function.
540 MDA.removeInstruction(DeadInst);
541
542 for (unsigned op = 0, e = DeadInst->getNumOperands(); op != e; ++op) {
543 Value *Op = DeadInst->getOperand(op);
544 DeadInst->setOperand(op, 0);
545
546 // If this operand just became dead, add it to the NowDeadInsts list.
547 if (!Op->use_empty()) continue;
548
549 if (Instruction *OpI = dyn_cast<Instruction>(Op))
550 if (isInstructionTriviallyDead(OpI))
551 NowDeadInsts.push_back(OpI);
552 }
553
554 DeadInst->eraseFromParent();
555
556 if (ValueSet) ValueSet->erase(DeadInst);
Dan Gohman28943872010-01-05 16:27:25 +0000557 } while (!NowDeadInsts.empty());
Owen Anderson5e72db32007-07-11 00:46:18 +0000558}
Nick Lewycky475d3d12010-01-03 04:39:07 +0000559
560unsigned DSE::getPointerSize(Value *V) const {
561 if (TD) {
562 if (AllocaInst *A = dyn_cast<AllocaInst>(V)) {
563 // Get size information for the alloca
564 if (ConstantInt *C = dyn_cast<ConstantInt>(A->getArraySize()))
565 return C->getZExtValue() * TD->getTypeAllocSize(A->getAllocatedType());
566 } else {
567 assert(isa<Argument>(V) && "Expected AllocaInst or Argument!");
568 const PointerType *PT = cast<PointerType>(V->getType());
569 return TD->getTypeAllocSize(PT->getElementType());
570 }
571 }
572 return ~0U;
573}