blob: 4ac81f4a5a18a9db7f64d6111317a1b906fbe16e [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
Owen Andersona7aed182010-08-06 18:33:48 +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);
Gabor Greif07e92842010-06-25 07:40:32 +000059 bool handleFreeWithNonTrivialDependency(const CallInst *F,
60 MemDepResult Dep);
Chris Lattner1adb6752008-11-28 00:27:14 +000061 bool handleEndBlock(BasicBlock &BB);
Nick Lewycky475d3d12010-01-03 04:39:07 +000062 bool RemoveUndeadPointers(Value *Ptr, uint64_t killPointerSize,
63 BasicBlock::iterator &BBI,
64 SmallPtrSet<Value*, 64> &deadPointers);
Chris Lattner1adb6752008-11-28 00:27:14 +000065 void DeleteDeadInstruction(Instruction *I,
66 SmallPtrSet<Value*, 64> *deadPointers = 0);
67
Owen Anderson5e72db32007-07-11 00:46:18 +000068
69 // getAnalysisUsage - We require post dominance frontiers (aka Control
70 // Dependence Graph)
71 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
72 AU.setPreservesCFG();
Owen Anderson3f338972008-07-28 16:14:26 +000073 AU.addRequired<DominatorTree>();
Owen Andersonaa071722007-07-11 23:19:17 +000074 AU.addRequired<AliasAnalysis>();
Owen Anderson5e72db32007-07-11 00:46:18 +000075 AU.addRequired<MemoryDependenceAnalysis>();
Owen Anderson3f338972008-07-28 16:14:26 +000076 AU.addPreserved<DominatorTree>();
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;
Owen Andersondf7a4f22010-10-07 22:25:06 +000085INITIALIZE_PASS(DSE, "dse", "Dead Store Elimination", false, false)
Dan Gohmand78c4002008-05-13 00:00:25 +000086
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))
Gabor Greif91f95892010-06-24 12:03:56 +0000126 return MI->getArgOperand(0);
127
128 IntrinsicInst *II = cast<IntrinsicInst>(I);
129 switch (II->getIntrinsicID()) {
Chris Lattner2764b4d2009-12-02 06:35:55 +0000130 default: assert(false && "Unexpected intrinsic!");
131 case Intrinsic::init_trampoline:
Gabor Greif91f95892010-06-24 12:03:56 +0000132 return II->getArgOperand(0);
Eric Christopher7258dcd2010-04-16 23:37:20 +0000133 case Intrinsic::lifetime_end:
Gabor Greif91f95892010-06-24 12:03:56 +0000134 return II->getArgOperand(1);
Duncan Sands1925d3a2009-11-10 13:49:50 +0000135 }
Nick Lewycky90271472009-11-10 06:46:40 +0000136}
137
138/// getStoreSize - Return the length in bytes of the write by the clobbering
139/// instruction. If variable or unknown, returns -1.
140static unsigned getStoreSize(Instruction *I, const TargetData *TD) {
141 assert(doesClobberMemory(I));
142 if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
143 if (!TD) return -1u;
Nick Lewycky5b3def92009-11-10 07:00:43 +0000144 return TD->getTypeStoreSize(SI->getOperand(0)->getType());
Nick Lewycky90271472009-11-10 06:46:40 +0000145 }
146
147 Value *Len;
148 if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(I)) {
149 Len = MI->getLength();
150 } else {
Gabor Greif91f95892010-06-24 12:03:56 +0000151 IntrinsicInst *II = cast<IntrinsicInst>(I);
152 switch (II->getIntrinsicID()) {
Chris Lattner2764b4d2009-12-02 06:35:55 +0000153 default: assert(false && "Unexpected intrinsic!");
154 case Intrinsic::init_trampoline:
155 return -1u;
156 case Intrinsic::lifetime_end:
Gabor Greif91f95892010-06-24 12:03:56 +0000157 Len = II->getArgOperand(0);
Chris Lattner2764b4d2009-12-02 06:35:55 +0000158 break;
Duncan Sands1925d3a2009-11-10 13:49:50 +0000159 }
Nick Lewycky90271472009-11-10 06:46:40 +0000160 }
161 if (ConstantInt *LenCI = dyn_cast<ConstantInt>(Len))
162 if (!LenCI->isAllOnesValue())
163 return LenCI->getZExtValue();
164 return -1u;
165}
166
167/// isStoreAtLeastAsWideAs - Return true if the size of the store in I1 is
168/// greater than or equal to the store in I2. This returns false if we don't
169/// know.
Chris Lattnera0906272009-11-04 23:20:12 +0000170///
Nick Lewycky90271472009-11-10 06:46:40 +0000171static bool isStoreAtLeastAsWideAs(Instruction *I1, Instruction *I2,
172 const TargetData *TD) {
173 const Type *I1Ty = getPointerOperand(I1)->getType();
174 const Type *I2Ty = getPointerOperand(I2)->getType();
Chris Lattnera0906272009-11-04 23:20:12 +0000175
176 // Exactly the same type, must have exactly the same size.
Nick Lewycky90271472009-11-10 06:46:40 +0000177 if (I1Ty == I2Ty) return true;
Chris Lattnera0906272009-11-04 23:20:12 +0000178
Nick Lewycky90271472009-11-10 06:46:40 +0000179 int I1Size = getStoreSize(I1, TD);
180 int I2Size = getStoreSize(I2, TD);
Chris Lattnera0906272009-11-04 23:20:12 +0000181
Nick Lewycky90271472009-11-10 06:46:40 +0000182 return I1Size != -1 && I2Size != -1 && I1Size >= I2Size;
Chris Lattnera0906272009-11-04 23:20:12 +0000183}
184
Owen Anderson10e52ed2007-08-01 06:36:51 +0000185bool DSE::runOnBasicBlock(BasicBlock &BB) {
Nick Lewycky475d3d12010-01-03 04:39:07 +0000186 MemoryDependenceAnalysis &MD = getAnalysis<MemoryDependenceAnalysis>();
Dan Gohman67243a42009-07-24 18:13:53 +0000187 TD = getAnalysisIfAvailable<TargetData>();
Owen Anderson2ed651a2007-11-01 05:29:16 +0000188
Owen Anderson5e72db32007-07-11 00:46:18 +0000189 bool MadeChange = false;
190
Chris Lattner49162672009-09-02 06:31:02 +0000191 // Do a top-down walk on the BB.
Chris Lattnerf2a8ba42008-11-28 21:29:52 +0000192 for (BasicBlock::iterator BBI = BB.begin(), BBE = BB.end(); BBI != BBE; ) {
193 Instruction *Inst = BBI++;
194
Dan Gohman67243a42009-07-24 18:13:53 +0000195 // If we find a store or a free, get its memory dependence.
Nick Lewycky90271472009-11-10 06:46:40 +0000196 if (!doesClobberMemory(Inst) && !isFreeCall(Inst))
Owen Anderson0aecf0e2007-08-08 04:52:29 +0000197 continue;
Chris Lattner5df5b4c2008-12-07 00:25:15 +0000198
Chris Lattner57e91ea2008-12-06 00:53:22 +0000199 MemDepResult InstDep = MD.getDependency(Inst);
Chris Lattnerf2a8ba42008-11-28 21:29:52 +0000200
Chris Lattner57e91ea2008-12-06 00:53:22 +0000201 // Ignore non-local stores.
202 // FIXME: cross-block DSE would be fun. :)
203 if (InstDep.isNonLocal()) continue;
204
205 // Handle frees whose dependencies are non-trivial.
Gabor Greif07e92842010-06-25 07:40:32 +0000206 if (const CallInst *F = isFreeCall(Inst)) {
207 MadeChange |= handleFreeWithNonTrivialDependency(F, InstDep);
Chris Lattner57e91ea2008-12-06 00:53:22 +0000208 continue;
209 }
210
Chris Lattner57e91ea2008-12-06 00:53:22 +0000211 // If not a definite must-alias dependency, ignore it.
212 if (!InstDep.isDef())
213 continue;
214
215 // If this is a store-store dependence, then the previous store is dead so
216 // long as this store is at least as big as it.
Nick Lewycky90271472009-11-10 06:46:40 +0000217 if (doesClobberMemory(InstDep.getInst())) {
218 Instruction *DepStore = InstDep.getInst();
219 if (isStoreAtLeastAsWideAs(Inst, DepStore, TD) &&
220 isElidable(DepStore)) {
Chris Lattner1adb6752008-11-28 00:27:14 +0000221 // Delete the store and now-dead instructions that feed it.
Chris Lattner57e91ea2008-12-06 00:53:22 +0000222 DeleteDeadInstruction(DepStore);
Dan Gohmand2d1ae12010-06-22 15:08:57 +0000223 ++NumFastStores;
Owen Anderson0aecf0e2007-08-08 04:52:29 +0000224 MadeChange = true;
Chris Lattner49162672009-09-02 06:31:02 +0000225
226 // DeleteDeadInstruction can delete the current instruction in loop
227 // cases, reset BBI.
228 BBI = Inst;
Chris Lattner8c5ff512008-11-29 20:29:04 +0000229 if (BBI != BB.begin())
Chris Lattnerf3f6a802008-11-28 22:50:08 +0000230 --BBI;
Chris Lattnerf2a8ba42008-11-28 21:29:52 +0000231 continue;
232 }
Nick Lewycky90271472009-11-10 06:46:40 +0000233 }
234
235 if (!isElidable(Inst))
236 continue;
Owen Anderson0aecf0e2007-08-08 04:52:29 +0000237
Chris Lattner57e91ea2008-12-06 00:53:22 +0000238 // If we're storing the same value back to a pointer that we just
239 // loaded from, then the store can be removed.
Nick Lewycky90271472009-11-10 06:46:40 +0000240 if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
241 if (LoadInst *DepLoad = dyn_cast<LoadInst>(InstDep.getInst())) {
242 if (SI->getPointerOperand() == DepLoad->getPointerOperand() &&
243 SI->getOperand(0) == DepLoad) {
244 // DeleteDeadInstruction can delete the current instruction. Save BBI
245 // in case we need it.
246 WeakVH NextInst(BBI);
247
248 DeleteDeadInstruction(SI);
249
250 if (NextInst == 0) // Next instruction deleted.
251 BBI = BB.begin();
252 else if (BBI != BB.begin()) // Revisit this instruction if possible.
253 --BBI;
Dan Gohmand2d1ae12010-06-22 15:08:57 +0000254 ++NumFastStores;
Nick Lewycky90271472009-11-10 06:46:40 +0000255 MadeChange = true;
256 continue;
257 }
Chris Lattner0e3d6332008-12-05 21:04:20 +0000258 }
Owen Anderson5e72db32007-07-11 00:46:18 +0000259 }
Owen Anderson2b2bd282009-10-28 07:05:35 +0000260
261 // If this is a lifetime end marker, we can throw away the store.
Nick Lewycky90271472009-11-10 06:46:40 +0000262 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(InstDep.getInst())) {
Owen Anderson2b2bd282009-10-28 07:05:35 +0000263 if (II->getIntrinsicID() == Intrinsic::lifetime_end) {
264 // Delete the store and now-dead instructions that feed it.
265 // DeleteDeadInstruction can delete the current instruction. Save BBI
266 // in case we need it.
267 WeakVH NextInst(BBI);
268
Nick Lewycky90271472009-11-10 06:46:40 +0000269 DeleteDeadInstruction(Inst);
Owen Anderson2b2bd282009-10-28 07:05:35 +0000270
271 if (NextInst == 0) // Next instruction deleted.
272 BBI = BB.begin();
273 else if (BBI != BB.begin()) // Revisit this instruction if possible.
274 --BBI;
Dan Gohmand2d1ae12010-06-22 15:08:57 +0000275 ++NumFastStores;
Owen Anderson2b2bd282009-10-28 07:05:35 +0000276 MadeChange = true;
277 continue;
278 }
279 }
Owen Anderson5e72db32007-07-11 00:46:18 +0000280 }
281
Chris Lattnerf2a8ba42008-11-28 21:29:52 +0000282 // If this block ends in a return, unwind, or unreachable, all allocas are
283 // dead at its end, which means stores to them are also dead.
Owen Anderson32c4a052007-07-12 21:41:30 +0000284 if (BB.getTerminator()->getNumSuccessors() == 0)
Chris Lattner1adb6752008-11-28 00:27:14 +0000285 MadeChange |= handleEndBlock(BB);
Owen Anderson5e72db32007-07-11 00:46:18 +0000286
287 return MadeChange;
288}
289
Owen Andersonaa071722007-07-11 23:19:17 +0000290/// handleFreeWithNonTrivialDependency - Handle frees of entire structures whose
Chris Lattner1adb6752008-11-28 00:27:14 +0000291/// dependency is a store to a field of that structure.
Gabor Greif07e92842010-06-25 07:40:32 +0000292bool DSE::handleFreeWithNonTrivialDependency(const CallInst *F,
293 MemDepResult Dep) {
Owen Andersonaa071722007-07-11 23:19:17 +0000294 AliasAnalysis &AA = getAnalysis<AliasAnalysis>();
Owen Andersonaa071722007-07-11 23:19:17 +0000295
Nick Lewycky90271472009-11-10 06:46:40 +0000296 Instruction *Dependency = Dep.getInst();
297 if (!Dependency || !doesClobberMemory(Dependency) || !isElidable(Dependency))
Owen Anderson2b9ec7f2007-08-26 21:14:47 +0000298 return false;
Owen Andersond4451de2007-07-12 18:08:51 +0000299
Nick Lewycky90271472009-11-10 06:46:40 +0000300 Value *DepPointer = getPointerOperand(Dependency)->getUnderlyingObject();
Duncan Sandsfe3bef02008-01-20 10:49:23 +0000301
Chris Lattner57e91ea2008-12-06 00:53:22 +0000302 // Check for aliasing.
Gabor Greif07e92842010-06-25 07:40:32 +0000303 if (AA.alias(F->getArgOperand(0), 1, DepPointer, 1) !=
Chris Lattner57e91ea2008-12-06 00:53:22 +0000304 AliasAnalysis::MustAlias)
Chris Lattner1adb6752008-11-28 00:27:14 +0000305 return false;
Owen Andersonaa071722007-07-11 23:19:17 +0000306
Chris Lattner1adb6752008-11-28 00:27:14 +0000307 // DCE instructions only used to calculate that store
Chris Lattner57e91ea2008-12-06 00:53:22 +0000308 DeleteDeadInstruction(Dependency);
Dan Gohmand2d1ae12010-06-22 15:08:57 +0000309 ++NumFastStores;
Chris Lattner1adb6752008-11-28 00:27:14 +0000310 return true;
Owen Andersonaa071722007-07-11 23:19:17 +0000311}
312
Owen Andersone3590582007-08-02 18:11:11 +0000313/// handleEndBlock - Remove dead stores to stack-allocated locations in the
Owen Anderson52aaabf2007-08-08 17:50:09 +0000314/// function end block. Ex:
315/// %A = alloca i32
316/// ...
317/// store i32 1, i32* %A
318/// ret void
Chris Lattner1adb6752008-11-28 00:27:14 +0000319bool DSE::handleEndBlock(BasicBlock &BB) {
Owen Anderson32c4a052007-07-12 21:41:30 +0000320 AliasAnalysis &AA = getAnalysis<AliasAnalysis>();
Owen Anderson32c4a052007-07-12 21:41:30 +0000321
322 bool MadeChange = false;
323
324 // Pointers alloca'd in this function are dead in the end block
Owen Anderson48d37802008-01-29 06:18:36 +0000325 SmallPtrSet<Value*, 64> deadPointers;
Owen Anderson32c4a052007-07-12 21:41:30 +0000326
Chris Lattner1adb6752008-11-28 00:27:14 +0000327 // Find all of the alloca'd pointers in the entry block.
Owen Anderson32c4a052007-07-12 21:41:30 +0000328 BasicBlock *Entry = BB.getParent()->begin();
329 for (BasicBlock::iterator I = Entry->begin(), E = Entry->end(); I != E; ++I)
330 if (AllocaInst *AI = dyn_cast<AllocaInst>(I))
331 deadPointers.insert(AI);
Chris Lattner1adb6752008-11-28 00:27:14 +0000332
333 // Treat byval arguments the same, stores to them are dead at the end of the
334 // function.
Owen Anderson48d37802008-01-29 06:18:36 +0000335 for (Function::arg_iterator AI = BB.getParent()->arg_begin(),
336 AE = BB.getParent()->arg_end(); AI != AE; ++AI)
337 if (AI->hasByValAttr())
338 deadPointers.insert(AI);
Owen Anderson32c4a052007-07-12 21:41:30 +0000339
340 // Scan the basic block backwards
341 for (BasicBlock::iterator BBI = BB.end(); BBI != BB.begin(); ){
342 --BBI;
343
Chris Lattner1adb6752008-11-28 00:27:14 +0000344 // If we find a store whose pointer is dead.
Nick Lewycky90271472009-11-10 06:46:40 +0000345 if (doesClobberMemory(BBI)) {
346 if (isElidable(BBI)) {
Owen Anderson2b9ec7f2007-08-26 21:14:47 +0000347 // See through pointer-to-pointer bitcasts
Nick Lewycky90271472009-11-10 06:46:40 +0000348 Value *pointerOperand = getPointerOperand(BBI)->getUnderlyingObject();
Duncan Sandsd65a4da2008-10-01 15:25:41 +0000349
Owen Anderson6af19fd2008-01-25 10:10:33 +0000350 // Alloca'd pointers or byval arguments (which are functionally like
351 // alloca's) are valid candidates for removal.
Owen Anderson48d37802008-01-29 06:18:36 +0000352 if (deadPointers.count(pointerOperand)) {
Chris Lattner1adb6752008-11-28 00:27:14 +0000353 // DCE instructions only used to calculate that store.
Nick Lewycky90271472009-11-10 06:46:40 +0000354 Instruction *Dead = BBI;
Dan Gohmand2d1ae12010-06-22 15:08:57 +0000355 ++BBI;
Nick Lewycky90271472009-11-10 06:46:40 +0000356 DeleteDeadInstruction(Dead, &deadPointers);
Dan Gohmand2d1ae12010-06-22 15:08:57 +0000357 ++NumFastStores;
Owen Anderson2b9ec7f2007-08-26 21:14:47 +0000358 MadeChange = true;
Nick Lewycky90271472009-11-10 06:46:40 +0000359 continue;
Owen Anderson2b9ec7f2007-08-26 21:14:47 +0000360 }
Owen Anderson32c4a052007-07-12 21:41:30 +0000361 }
Owen Anderson52aaabf2007-08-08 17:50:09 +0000362
Nick Lewycky90271472009-11-10 06:46:40 +0000363 // Because a memcpy or memmove is also a load, we can't skip it if we
364 // didn't remove it.
365 if (!isa<MemTransferInst>(BBI))
Owen Anderson48d37802008-01-29 06:18:36 +0000366 continue;
Owen Anderson52aaabf2007-08-08 17:50:09 +0000367 }
368
Nick Lewycky475d3d12010-01-03 04:39:07 +0000369 Value *killPointer = 0;
Owen Andersona82c9932008-02-04 04:53:00 +0000370 uint64_t killPointerSize = ~0UL;
Owen Anderson32c4a052007-07-12 21:41:30 +0000371
372 // If we encounter a use of the pointer, it is no longer considered dead
Chris Lattner1adb6752008-11-28 00:27:14 +0000373 if (LoadInst *L = dyn_cast<LoadInst>(BBI)) {
Nate Begeman53c5c622008-05-13 01:48:26 +0000374 // However, if this load is unused and not volatile, we can go ahead and
375 // remove it, and not have to worry about it making our pointer undead!
Dan Gohman8cb19d92008-04-28 19:51:27 +0000376 if (L->use_empty() && !L->isVolatile()) {
Dan Gohmand2d1ae12010-06-22 15:08:57 +0000377 ++BBI;
Chris Lattner1adb6752008-11-28 00:27:14 +0000378 DeleteDeadInstruction(L, &deadPointers);
Dan Gohmand2d1ae12010-06-22 15:08:57 +0000379 ++NumFastOther;
Owen Anderson4e4b1162008-01-30 01:24:47 +0000380 MadeChange = true;
Owen Anderson4e4b1162008-01-30 01:24:47 +0000381 continue;
382 }
383
Owen Anderson32c4a052007-07-12 21:41:30 +0000384 killPointer = L->getPointerOperand();
Nick Lewycky475d3d12010-01-03 04:39:07 +0000385 } else if (VAArgInst *V = dyn_cast<VAArgInst>(BBI)) {
Owen Anderson32c4a052007-07-12 21:41:30 +0000386 killPointer = V->getOperand(0);
Nick Lewycky90271472009-11-10 06:46:40 +0000387 } else if (isa<MemTransferInst>(BBI) &&
388 isa<ConstantInt>(cast<MemTransferInst>(BBI)->getLength())) {
389 killPointer = cast<MemTransferInst>(BBI)->getSource();
Owen Andersona82c9932008-02-04 04:53:00 +0000390 killPointerSize = cast<ConstantInt>(
Nick Lewycky90271472009-11-10 06:46:40 +0000391 cast<MemTransferInst>(BBI)->getLength())->getZExtValue();
Nick Lewycky475d3d12010-01-03 04:39:07 +0000392 } else if (AllocaInst *A = dyn_cast<AllocaInst>(BBI)) {
Owen Anderson32c4a052007-07-12 21:41:30 +0000393 deadPointers.erase(A);
Owen Anderson4e4b1162008-01-30 01:24:47 +0000394
395 // Dead alloca's can be DCE'd when we reach them
Nick Lewycky6b016702008-01-30 08:01:28 +0000396 if (A->use_empty()) {
Dan Gohmand2d1ae12010-06-22 15:08:57 +0000397 ++BBI;
Chris Lattner1adb6752008-11-28 00:27:14 +0000398 DeleteDeadInstruction(A, &deadPointers);
Dan Gohmand2d1ae12010-06-22 15:08:57 +0000399 ++NumFastOther;
Owen Anderson4e4b1162008-01-30 01:24:47 +0000400 MadeChange = true;
Owen Anderson4e4b1162008-01-30 01:24:47 +0000401 }
402
Owen Anderson32c4a052007-07-12 21:41:30 +0000403 continue;
Gabor Greif0a970692010-07-28 14:28:18 +0000404 } else if (CallSite CS = cast<Value>(BBI)) {
Owen Anderson50df9682007-08-08 17:58:56 +0000405 // If this call does not access memory, it can't
406 // be undeadifying any of our pointers.
Duncan Sands68b6f502007-12-01 07:51:45 +0000407 if (AA.doesNotAccessMemory(CS))
Owen Anderson50df9682007-08-08 17:58:56 +0000408 continue;
409
Owen Andersonddf4aee2007-08-08 18:38:28 +0000410 unsigned modRef = 0;
411 unsigned other = 0;
412
Owen Anderson32c4a052007-07-12 21:41:30 +0000413 // Remove any pointers made undead by the call from the dead set
Owen Anderson48d37802008-01-29 06:18:36 +0000414 std::vector<Value*> dead;
415 for (SmallPtrSet<Value*, 64>::iterator I = deadPointers.begin(),
Owen Anderson32c4a052007-07-12 21:41:30 +0000416 E = deadPointers.end(); I != E; ++I) {
Owen Andersonddf4aee2007-08-08 18:38:28 +0000417 // HACK: if we detect that our AA is imprecise, it's not
418 // worth it to scan the rest of the deadPointers set. Just
419 // assume that the AA will return ModRef for everything, and
420 // go ahead and bail.
421 if (modRef >= 16 && other == 0) {
422 deadPointers.clear();
423 return MadeChange;
424 }
Nick Lewycky475d3d12010-01-03 04:39:07 +0000425
Owen Anderson32c4a052007-07-12 21:41:30 +0000426 // See if the call site touches it
Nick Lewycky475d3d12010-01-03 04:39:07 +0000427 AliasAnalysis::ModRefResult A = AA.getModRefInfo(CS, *I,
428 getPointerSize(*I));
Owen Andersonddf4aee2007-08-08 18:38:28 +0000429
430 if (A == AliasAnalysis::ModRef)
Dan Gohmand2d1ae12010-06-22 15:08:57 +0000431 ++modRef;
Owen Andersonddf4aee2007-08-08 18:38:28 +0000432 else
Dan Gohmand2d1ae12010-06-22 15:08:57 +0000433 ++other;
Owen Andersonddf4aee2007-08-08 18:38:28 +0000434
Owen Anderson9c9ef212007-07-13 18:26:26 +0000435 if (A == AliasAnalysis::ModRef || A == AliasAnalysis::Ref)
Owen Anderson32c4a052007-07-12 21:41:30 +0000436 dead.push_back(*I);
437 }
438
Owen Anderson48d37802008-01-29 06:18:36 +0000439 for (std::vector<Value*>::iterator I = dead.begin(), E = dead.end();
Owen Anderson32c4a052007-07-12 21:41:30 +0000440 I != E; ++I)
Owen Anderson48d37802008-01-29 06:18:36 +0000441 deadPointers.erase(*I);
Owen Anderson32c4a052007-07-12 21:41:30 +0000442
443 continue;
Chris Lattner1adb6752008-11-28 00:27:14 +0000444 } else if (isInstructionTriviallyDead(BBI)) {
Owen Anderson4e4b1162008-01-30 01:24:47 +0000445 // For any non-memory-affecting non-terminators, DCE them as we reach them
Chris Lattner1adb6752008-11-28 00:27:14 +0000446 Instruction *Inst = BBI;
Dan Gohmand2d1ae12010-06-22 15:08:57 +0000447 ++BBI;
Chris Lattner1adb6752008-11-28 00:27:14 +0000448 DeleteDeadInstruction(Inst, &deadPointers);
Dan Gohmand2d1ae12010-06-22 15:08:57 +0000449 ++NumFastOther;
Chris Lattner1adb6752008-11-28 00:27:14 +0000450 MadeChange = true;
451 continue;
Owen Anderson32c4a052007-07-12 21:41:30 +0000452 }
453
454 if (!killPointer)
455 continue;
Duncan Sandsd65a4da2008-10-01 15:25:41 +0000456
457 killPointer = killPointer->getUnderlyingObject();
458
Owen Anderson32c4a052007-07-12 21:41:30 +0000459 // Deal with undead pointers
Owen Andersona82c9932008-02-04 04:53:00 +0000460 MadeChange |= RemoveUndeadPointers(killPointer, killPointerSize, BBI,
Chris Lattner1adb6752008-11-28 00:27:14 +0000461 deadPointers);
Owen Anderson32c4a052007-07-12 21:41:30 +0000462 }
463
464 return MadeChange;
465}
466
Owen Andersonddf4aee2007-08-08 18:38:28 +0000467/// RemoveUndeadPointers - check for uses of a pointer that make it
468/// undead when scanning for dead stores to alloca's.
Nick Lewycky475d3d12010-01-03 04:39:07 +0000469bool DSE::RemoveUndeadPointers(Value *killPointer, uint64_t killPointerSize,
Chris Lattner1adb6752008-11-28 00:27:14 +0000470 BasicBlock::iterator &BBI,
Nick Lewycky475d3d12010-01-03 04:39:07 +0000471 SmallPtrSet<Value*, 64> &deadPointers) {
Owen Anderson32c4a052007-07-12 21:41:30 +0000472 AliasAnalysis &AA = getAnalysis<AliasAnalysis>();
Nick Lewycky475d3d12010-01-03 04:39:07 +0000473
Owen Andersonddf4aee2007-08-08 18:38:28 +0000474 // If the kill pointer can be easily reduced to an alloca,
Chris Lattner1adb6752008-11-28 00:27:14 +0000475 // don't bother doing extraneous AA queries.
Owen Anderson48d37802008-01-29 06:18:36 +0000476 if (deadPointers.count(killPointer)) {
477 deadPointers.erase(killPointer);
Owen Andersonddf4aee2007-08-08 18:38:28 +0000478 return false;
479 }
480
Chris Lattner1adb6752008-11-28 00:27:14 +0000481 // A global can't be in the dead pointer set.
482 if (isa<GlobalValue>(killPointer))
483 return false;
484
Owen Anderson32c4a052007-07-12 21:41:30 +0000485 bool MadeChange = false;
486
Chris Lattner1adb6752008-11-28 00:27:14 +0000487 SmallVector<Value*, 16> undead;
Nick Lewycky475d3d12010-01-03 04:39:07 +0000488
Owen Anderson48d37802008-01-29 06:18:36 +0000489 for (SmallPtrSet<Value*, 64>::iterator I = deadPointers.begin(),
Nick Lewycky475d3d12010-01-03 04:39:07 +0000490 E = deadPointers.end(); I != E; ++I) {
Owen Anderson32c4a052007-07-12 21:41:30 +0000491 // See if this pointer could alias it
Nick Lewycky475d3d12010-01-03 04:39:07 +0000492 AliasAnalysis::AliasResult A = AA.alias(*I, getPointerSize(*I),
Owen Andersona82c9932008-02-04 04:53:00 +0000493 killPointer, killPointerSize);
Owen Anderson32c4a052007-07-12 21:41:30 +0000494
495 // If it must-alias and a store, we can delete it
496 if (isa<StoreInst>(BBI) && A == AliasAnalysis::MustAlias) {
Nick Lewycky475d3d12010-01-03 04:39:07 +0000497 StoreInst *S = cast<StoreInst>(BBI);
Owen Anderson32c4a052007-07-12 21:41:30 +0000498
499 // Remove it!
Nick Lewycky475d3d12010-01-03 04:39:07 +0000500 ++BBI;
Chris Lattner1adb6752008-11-28 00:27:14 +0000501 DeleteDeadInstruction(S, &deadPointers);
Dan Gohmand2d1ae12010-06-22 15:08:57 +0000502 ++NumFastStores;
Owen Anderson32c4a052007-07-12 21:41:30 +0000503 MadeChange = true;
504
505 continue;
506
507 // Otherwise, it is undead
Chris Lattner1adb6752008-11-28 00:27:14 +0000508 } else if (A != AliasAnalysis::NoAlias)
509 undead.push_back(*I);
Owen Anderson32c4a052007-07-12 21:41:30 +0000510 }
511
Chris Lattner1adb6752008-11-28 00:27:14 +0000512 for (SmallVector<Value*, 16>::iterator I = undead.begin(), E = undead.end();
Owen Anderson32c4a052007-07-12 21:41:30 +0000513 I != E; ++I)
Owen Anderson48d37802008-01-29 06:18:36 +0000514 deadPointers.erase(*I);
Owen Anderson32c4a052007-07-12 21:41:30 +0000515
516 return MadeChange;
517}
518
Chris Lattner1adb6752008-11-28 00:27:14 +0000519/// DeleteDeadInstruction - Delete this instruction. Before we do, go through
520/// and zero out all the operands of this instruction. If any of them become
521/// dead, delete them and the computation tree that feeds them.
522///
523/// If ValueSet is non-null, remove any deleted instructions from it as well.
524///
525void DSE::DeleteDeadInstruction(Instruction *I,
526 SmallPtrSet<Value*, 64> *ValueSet) {
527 SmallVector<Instruction*, 32> NowDeadInsts;
528
529 NowDeadInsts.push_back(I);
530 --NumFastOther;
Owen Anderson5e72db32007-07-11 00:46:18 +0000531
Chris Lattner1adb6752008-11-28 00:27:14 +0000532 // Before we touch this instruction, remove it from memdep!
533 MemoryDependenceAnalysis &MDA = getAnalysis<MemoryDependenceAnalysis>();
Dan Gohman28943872010-01-05 16:27:25 +0000534 do {
535 Instruction *DeadInst = NowDeadInsts.pop_back_val();
Owen Andersonbf971aa2007-07-11 19:03:09 +0000536
Chris Lattner1adb6752008-11-28 00:27:14 +0000537 ++NumFastOther;
538
539 // This instruction is dead, zap it, in stages. Start by removing it from
540 // MemDep, which needs to know the operands and needs it to be in the
541 // function.
542 MDA.removeInstruction(DeadInst);
543
544 for (unsigned op = 0, e = DeadInst->getNumOperands(); op != e; ++op) {
545 Value *Op = DeadInst->getOperand(op);
546 DeadInst->setOperand(op, 0);
547
548 // If this operand just became dead, add it to the NowDeadInsts list.
549 if (!Op->use_empty()) continue;
550
551 if (Instruction *OpI = dyn_cast<Instruction>(Op))
552 if (isInstructionTriviallyDead(OpI))
553 NowDeadInsts.push_back(OpI);
554 }
555
556 DeadInst->eraseFromParent();
557
558 if (ValueSet) ValueSet->erase(DeadInst);
Dan Gohman28943872010-01-05 16:27:25 +0000559 } while (!NowDeadInsts.empty());
Owen Anderson5e72db32007-07-11 00:46:18 +0000560}
Nick Lewycky475d3d12010-01-03 04:39:07 +0000561
562unsigned DSE::getPointerSize(Value *V) const {
563 if (TD) {
564 if (AllocaInst *A = dyn_cast<AllocaInst>(V)) {
565 // Get size information for the alloca
566 if (ConstantInt *C = dyn_cast<ConstantInt>(A->getArraySize()))
567 return C->getZExtValue() * TD->getTypeAllocSize(A->getAllocatedType());
568 } else {
569 assert(isa<Argument>(V) && "Expected AllocaInst or Argument!");
570 const PointerType *PT = cast<PointerType>(V->getType());
571 return TD->getTypeAllocSize(PT->getElementType());
572 }
573 }
574 return ~0U;
575}