blob: e5c557c349ff80427dcde790412aedbef6a7ac6c [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//
Owen Andersonbf971aa2007-07-11 19:03:09 +00005// This file was developed by Owen Anderson and is distributed under
Owen Anderson5e72db32007-07-11 00:46:18 +00006// the University of Illinois Open Source License. See LICENSE.TXT for details.
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 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"
23#include "llvm/Pass.h"
24#include "llvm/ADT/SetVector.h"
25#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 Anderson5e72db32007-07-11 00:46:18 +000028#include "llvm/Analysis/MemoryDependenceAnalysis.h"
Owen Andersonaa071722007-07-11 23:19:17 +000029#include "llvm/Target/TargetData.h"
Owen Anderson5e72db32007-07-11 00:46:18 +000030#include "llvm/Transforms/Utils/Local.h"
31#include "llvm/Support/Compiler.h"
32using namespace llvm;
33
34STATISTIC(NumFastStores, "Number of stores deleted");
35STATISTIC(NumFastOther , "Number of other instrs removed");
36
37namespace {
Owen Anderson10e52ed2007-08-01 06:36:51 +000038 struct VISIBILITY_HIDDEN DSE : public FunctionPass {
Owen Anderson5e72db32007-07-11 00:46:18 +000039 static char ID; // Pass identification, replacement for typeid
Owen Anderson10e52ed2007-08-01 06:36:51 +000040 DSE() : FunctionPass((intptr_t)&ID) {}
Owen Anderson5e72db32007-07-11 00:46:18 +000041
42 virtual bool runOnFunction(Function &F) {
43 bool Changed = false;
44 for (Function::iterator I = F.begin(), E = F.end(); I != E; ++I)
45 Changed |= runOnBasicBlock(*I);
46 return Changed;
47 }
48
49 bool runOnBasicBlock(BasicBlock &BB);
Owen Andersone3590582007-08-02 18:11:11 +000050 bool handleFreeWithNonTrivialDependency(FreeInst* F,
51 Instruction* dependency,
52 SetVector<Instruction*>& possiblyDead);
Owen Anderson32c4a052007-07-12 21:41:30 +000053 bool handleEndBlock(BasicBlock& BB, SetVector<Instruction*>& possiblyDead);
Owen Anderson52aaabf2007-08-08 17:50:09 +000054 bool RemoveUndeadPointers(Value* pointer,
Owen Anderson32c4a052007-07-12 21:41:30 +000055 BasicBlock::iterator& BBI,
Owen Anderson52aaabf2007-08-08 17:50:09 +000056 SmallPtrSet<AllocaInst*, 64>& deadPointers,
Owen Anderson32c4a052007-07-12 21:41:30 +000057 SetVector<Instruction*>& possiblyDead);
Owen Anderson5e72db32007-07-11 00:46:18 +000058 void DeleteDeadInstructionChains(Instruction *I,
59 SetVector<Instruction*> &DeadInsts);
Owen Anderson0aecf0e2007-08-08 04:52:29 +000060
Owen Andersonb17ab032007-08-08 06:06:02 +000061 /// Find the base pointer that a pointer came from
62 /// Because this is used to find pointers that originate
63 /// from allocas, it is safe to ignore GEP indices, since
64 /// either the store will be in the alloca, and thus dead,
65 /// or beyond the end of the alloca, and thus undefined.
Owen Anderson2ed651a2007-11-01 05:29:16 +000066 void TranslatePointerBitCasts(Value*& v, bool zeroGepsOnly = false) {
Owen Andersone3590582007-08-02 18:11:11 +000067 assert(isa<PointerType>(v->getType()) &&
68 "Translating a non-pointer type?");
Owen Anderson0aecf0e2007-08-08 04:52:29 +000069 while (true) {
Owen Anderson09f86992007-07-16 23:34:39 +000070 if (BitCastInst* C = dyn_cast<BitCastInst>(v))
71 v = C->getOperand(0);
72 else if (GetElementPtrInst* G = dyn_cast<GetElementPtrInst>(v))
Owen Anderson2ed651a2007-11-01 05:29:16 +000073 if (!zeroGepsOnly || G->hasAllZeroIndices()) {
74 v = G->getOperand(0);
75 } else {
76 break;
77 }
Owen Anderson0aecf0e2007-08-08 04:52:29 +000078 else
79 break;
80 }
Owen Anderson9c9ef212007-07-13 18:26:26 +000081 }
Owen Anderson5e72db32007-07-11 00:46:18 +000082
83 // getAnalysisUsage - We require post dominance frontiers (aka Control
84 // Dependence Graph)
85 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
86 AU.setPreservesCFG();
Owen Andersonaa071722007-07-11 23:19:17 +000087 AU.addRequired<TargetData>();
88 AU.addRequired<AliasAnalysis>();
Owen Anderson5e72db32007-07-11 00:46:18 +000089 AU.addRequired<MemoryDependenceAnalysis>();
Owen Andersonaa071722007-07-11 23:19:17 +000090 AU.addPreserved<AliasAnalysis>();
Owen Anderson5e72db32007-07-11 00:46:18 +000091 AU.addPreserved<MemoryDependenceAnalysis>();
92 }
93 };
Owen Anderson10e52ed2007-08-01 06:36:51 +000094 char DSE::ID = 0;
95 RegisterPass<DSE> X("dse", "Dead Store Elimination");
Owen Anderson5e72db32007-07-11 00:46:18 +000096}
97
Owen Anderson10e52ed2007-08-01 06:36:51 +000098FunctionPass *llvm::createDeadStoreEliminationPass() { return new DSE(); }
Owen Anderson5e72db32007-07-11 00:46:18 +000099
Owen Anderson10e52ed2007-08-01 06:36:51 +0000100bool DSE::runOnBasicBlock(BasicBlock &BB) {
Owen Anderson5e72db32007-07-11 00:46:18 +0000101 MemoryDependenceAnalysis& MD = getAnalysis<MemoryDependenceAnalysis>();
Owen Anderson2ed651a2007-11-01 05:29:16 +0000102 TargetData &TD = getAnalysis<TargetData>();
103
Owen Andersonbf971aa2007-07-11 19:03:09 +0000104 // Record the last-seen store to this pointer
Owen Anderson5e72db32007-07-11 00:46:18 +0000105 DenseMap<Value*, StoreInst*> lastStore;
Owen Andersonbf971aa2007-07-11 19:03:09 +0000106 // Record instructions possibly made dead by deleting a store
Owen Anderson5e72db32007-07-11 00:46:18 +0000107 SetVector<Instruction*> possiblyDead;
108
109 bool MadeChange = false;
110
111 // Do a top-down walk on the BB
Owen Andersone3590582007-08-02 18:11:11 +0000112 for (BasicBlock::iterator BBI = BB.begin(), BBE = BB.end();
113 BBI != BBE; ++BBI) {
Owen Anderson14414702007-07-11 21:06:56 +0000114 // If we find a store or a free...
Owen Anderson0aecf0e2007-08-08 04:52:29 +0000115 if (!isa<StoreInst>(BBI) && !isa<FreeInst>(BBI))
116 continue;
Owen Anderson9c9ef212007-07-13 18:26:26 +0000117
Owen Anderson0aecf0e2007-08-08 04:52:29 +0000118 Value* pointer = 0;
Owen Anderson2b9ec7f2007-08-26 21:14:47 +0000119 if (StoreInst* S = dyn_cast<StoreInst>(BBI)) {
120 if (!S->isVolatile())
121 pointer = S->getPointerOperand();
122 else
123 continue;
124 } else
Owen Andersonb17ab032007-08-08 06:06:02 +0000125 pointer = cast<FreeInst>(BBI)->getPointerOperand();
Owen Anderson5e72db32007-07-11 00:46:18 +0000126
Owen Anderson2ed651a2007-11-01 05:29:16 +0000127 TranslatePointerBitCasts(pointer, true);
Owen Anderson0aecf0e2007-08-08 04:52:29 +0000128 StoreInst*& last = lastStore[pointer];
129 bool deletedStore = false;
130
131 // ... to a pointer that has been stored to before...
132 if (last) {
Owen Anderson9b1cc8c2007-08-09 04:42:44 +0000133 Instruction* dep = MD.getDependency(BBI);
Owen Anderson5e72db32007-07-11 00:46:18 +0000134
Owen Anderson0aecf0e2007-08-08 04:52:29 +0000135 // ... and no other memory dependencies are between them....
136 while (dep != MemoryDependenceAnalysis::None &&
137 dep != MemoryDependenceAnalysis::NonLocal &&
138 isa<StoreInst>(dep)) {
Owen Anderson2ed651a2007-11-01 05:29:16 +0000139 if (dep != last ||
Duncan Sands44b87212007-11-01 20:53:16 +0000140 TD.getTypeStoreSize(last->getOperand(0)->getType()) >
141 TD.getTypeStoreSize(BBI->getOperand(0)->getType())) {
Owen Anderson9b1cc8c2007-08-09 04:42:44 +0000142 dep = MD.getDependency(BBI, dep);
Owen Anderson0aecf0e2007-08-08 04:52:29 +0000143 continue;
Owen Andersond4451de2007-07-12 18:08:51 +0000144 }
Owen Anderson0aecf0e2007-08-08 04:52:29 +0000145
146 // Remove it!
147 MD.removeInstruction(last);
148
149 // DCE instructions only used to calculate that store
150 if (Instruction* D = dyn_cast<Instruction>(last->getOperand(0)))
151 possiblyDead.insert(D);
152 if (Instruction* D = dyn_cast<Instruction>(last->getOperand(1)))
153 possiblyDead.insert(D);
154
155 last->eraseFromParent();
156 NumFastStores++;
157 deletedStore = true;
158 MadeChange = true;
159
160 break;
Owen Anderson5e72db32007-07-11 00:46:18 +0000161 }
Owen Anderson0aecf0e2007-08-08 04:52:29 +0000162 }
163
164 // Handle frees whose dependencies are non-trivial.
165 if (FreeInst* F = dyn_cast<FreeInst>(BBI)) {
166 if (!deletedStore)
167 MadeChange |= handleFreeWithNonTrivialDependency(F,
Owen Anderson9b1cc8c2007-08-09 04:42:44 +0000168 MD.getDependency(F),
Owen Anderson0aecf0e2007-08-08 04:52:29 +0000169 possiblyDead);
170 // No known stores after the free
171 last = 0;
172 } else {
173 // Update our most-recent-store map.
174 last = cast<StoreInst>(BBI);
Owen Anderson5e72db32007-07-11 00:46:18 +0000175 }
176 }
177
Owen Anderson32c4a052007-07-12 21:41:30 +0000178 // If this block ends in a return, unwind, unreachable, and eventually
179 // tailcall, then all allocas are dead at its end.
180 if (BB.getTerminator()->getNumSuccessors() == 0)
181 MadeChange |= handleEndBlock(BB, possiblyDead);
182
Owen Anderson5e72db32007-07-11 00:46:18 +0000183 // Do a trivial DCE
184 while (!possiblyDead.empty()) {
185 Instruction *I = possiblyDead.back();
186 possiblyDead.pop_back();
187 DeleteDeadInstructionChains(I, possiblyDead);
188 }
189
190 return MadeChange;
191}
192
Owen Andersonaa071722007-07-11 23:19:17 +0000193/// handleFreeWithNonTrivialDependency - Handle frees of entire structures whose
194/// dependency is a store to a field of that structure
Owen Anderson10e52ed2007-08-01 06:36:51 +0000195bool DSE::handleFreeWithNonTrivialDependency(FreeInst* F, Instruction* dep,
Owen Andersone3590582007-08-02 18:11:11 +0000196 SetVector<Instruction*>& possiblyDead) {
Owen Andersonaa071722007-07-11 23:19:17 +0000197 TargetData &TD = getAnalysis<TargetData>();
198 AliasAnalysis &AA = getAnalysis<AliasAnalysis>();
199 MemoryDependenceAnalysis& MD = getAnalysis<MemoryDependenceAnalysis>();
200
Owen Andersond4451de2007-07-12 18:08:51 +0000201 if (dep == MemoryDependenceAnalysis::None ||
202 dep == MemoryDependenceAnalysis::NonLocal)
203 return false;
204
205 StoreInst* dependency = dyn_cast<StoreInst>(dep);
206 if (!dependency)
207 return false;
Owen Anderson2b9ec7f2007-08-26 21:14:47 +0000208 else if (dependency->isVolatile())
209 return false;
Owen Andersond4451de2007-07-12 18:08:51 +0000210
Owen Andersonaa071722007-07-11 23:19:17 +0000211 Value* depPointer = dependency->getPointerOperand();
Owen Andersone3590582007-08-02 18:11:11 +0000212 const Type* depType = dependency->getOperand(0)->getType();
Duncan Sands44b87212007-11-01 20:53:16 +0000213 unsigned depPointerSize = TD.getTypeStoreSize(depType);
Owen Anderson9c9ef212007-07-13 18:26:26 +0000214
Owen Andersonaa071722007-07-11 23:19:17 +0000215 // Check for aliasing
216 AliasAnalysis::AliasResult A = AA.alias(F->getPointerOperand(), ~0UL,
217 depPointer, depPointerSize);
218
219 if (A == AliasAnalysis::MustAlias) {
220 // Remove it!
221 MD.removeInstruction(dependency);
Owen Andersonaa071722007-07-11 23:19:17 +0000222
223 // DCE instructions only used to calculate that store
224 if (Instruction* D = dyn_cast<Instruction>(dependency->getOperand(0)))
225 possiblyDead.insert(D);
Owen Anderson9c9ef212007-07-13 18:26:26 +0000226 if (Instruction* D = dyn_cast<Instruction>(dependency->getOperand(1)))
227 possiblyDead.insert(D);
Owen Andersonaa071722007-07-11 23:19:17 +0000228
229 dependency->eraseFromParent();
230 NumFastStores++;
231 return true;
232 }
233
234 return false;
235}
236
Owen Andersone3590582007-08-02 18:11:11 +0000237/// handleEndBlock - Remove dead stores to stack-allocated locations in the
Owen Anderson52aaabf2007-08-08 17:50:09 +0000238/// function end block. Ex:
239/// %A = alloca i32
240/// ...
241/// store i32 1, i32* %A
242/// ret void
Owen Andersone3590582007-08-02 18:11:11 +0000243bool DSE::handleEndBlock(BasicBlock& BB,
244 SetVector<Instruction*>& possiblyDead) {
Owen Anderson32c4a052007-07-12 21:41:30 +0000245 TargetData &TD = getAnalysis<TargetData>();
246 AliasAnalysis &AA = getAnalysis<AliasAnalysis>();
247 MemoryDependenceAnalysis& MD = getAnalysis<MemoryDependenceAnalysis>();
248
249 bool MadeChange = false;
250
251 // Pointers alloca'd in this function are dead in the end block
Owen Anderson52aaabf2007-08-08 17:50:09 +0000252 SmallPtrSet<AllocaInst*, 64> deadPointers;
Owen Anderson32c4a052007-07-12 21:41:30 +0000253
254 // Find all of the alloca'd pointers in the entry block
255 BasicBlock *Entry = BB.getParent()->begin();
256 for (BasicBlock::iterator I = Entry->begin(), E = Entry->end(); I != E; ++I)
257 if (AllocaInst *AI = dyn_cast<AllocaInst>(I))
258 deadPointers.insert(AI);
259
260 // Scan the basic block backwards
261 for (BasicBlock::iterator BBI = BB.end(); BBI != BB.begin(); ){
262 --BBI;
263
264 if (deadPointers.empty())
265 break;
266
Owen Anderson32c4a052007-07-12 21:41:30 +0000267 // If we find a store whose pointer is dead...
268 if (StoreInst* S = dyn_cast<StoreInst>(BBI)) {
Owen Anderson2b9ec7f2007-08-26 21:14:47 +0000269 if (!S->isVolatile()) {
270 Value* pointerOperand = S->getPointerOperand();
271 // See through pointer-to-pointer bitcasts
272 TranslatePointerBitCasts(pointerOperand);
Owen Anderson9c9ef212007-07-13 18:26:26 +0000273
Owen Anderson2b9ec7f2007-08-26 21:14:47 +0000274 if (deadPointers.count(pointerOperand)){
275 // Remove it!
276 MD.removeInstruction(S);
Owen Anderson32c4a052007-07-12 21:41:30 +0000277
Owen Anderson2b9ec7f2007-08-26 21:14:47 +0000278 // DCE instructions only used to calculate that store
279 if (Instruction* D = dyn_cast<Instruction>(S->getOperand(0)))
280 possiblyDead.insert(D);
281 if (Instruction* D = dyn_cast<Instruction>(S->getOperand(1)))
282 possiblyDead.insert(D);
Owen Anderson32c4a052007-07-12 21:41:30 +0000283
Owen Anderson2b9ec7f2007-08-26 21:14:47 +0000284 BBI++;
285 S->eraseFromParent();
286 NumFastStores++;
287 MadeChange = true;
288 }
Owen Anderson32c4a052007-07-12 21:41:30 +0000289 }
Owen Anderson52aaabf2007-08-08 17:50:09 +0000290
291 continue;
292 }
293
294 Value* killPointer = 0;
Owen Anderson32c4a052007-07-12 21:41:30 +0000295
296 // If we encounter a use of the pointer, it is no longer considered dead
Owen Anderson52aaabf2007-08-08 17:50:09 +0000297 if (LoadInst* L = dyn_cast<LoadInst>(BBI)) {
Owen Anderson32c4a052007-07-12 21:41:30 +0000298 killPointer = L->getPointerOperand();
Owen Anderson32c4a052007-07-12 21:41:30 +0000299 } else if (VAArgInst* V = dyn_cast<VAArgInst>(BBI)) {
300 killPointer = V->getOperand(0);
Owen Anderson32c4a052007-07-12 21:41:30 +0000301 } else if (AllocaInst* A = dyn_cast<AllocaInst>(BBI)) {
302 deadPointers.erase(A);
303 continue;
304 } else if (CallSite::get(BBI).getInstruction() != 0) {
Owen Anderson50df9682007-08-08 17:58:56 +0000305 // If this call does not access memory, it can't
306 // be undeadifying any of our pointers.
307 CallSite CS = CallSite::get(BBI);
308 if (CS.getCalledFunction() &&
309 AA.doesNotAccessMemory(CS.getCalledFunction()))
310 continue;
311
Owen Andersonddf4aee2007-08-08 18:38:28 +0000312 unsigned modRef = 0;
313 unsigned other = 0;
314
Owen Anderson32c4a052007-07-12 21:41:30 +0000315 // Remove any pointers made undead by the call from the dead set
316 std::vector<Instruction*> dead;
Owen Anderson52aaabf2007-08-08 17:50:09 +0000317 for (SmallPtrSet<AllocaInst*, 64>::iterator I = deadPointers.begin(),
Owen Anderson32c4a052007-07-12 21:41:30 +0000318 E = deadPointers.end(); I != E; ++I) {
Owen Andersonddf4aee2007-08-08 18:38:28 +0000319 // HACK: if we detect that our AA is imprecise, it's not
320 // worth it to scan the rest of the deadPointers set. Just
321 // assume that the AA will return ModRef for everything, and
322 // go ahead and bail.
323 if (modRef >= 16 && other == 0) {
324 deadPointers.clear();
325 return MadeChange;
326 }
327
Owen Anderson32c4a052007-07-12 21:41:30 +0000328 // Get size information for the alloca
329 unsigned pointerSize = ~0UL;
330 if (ConstantInt* C = dyn_cast<ConstantInt>((*I)->getArraySize()))
Owen Andersone3590582007-08-02 18:11:11 +0000331 pointerSize = C->getZExtValue() * \
Duncan Sands44b87212007-11-01 20:53:16 +0000332 TD.getABITypeSize((*I)->getAllocatedType());
Owen Anderson32c4a052007-07-12 21:41:30 +0000333
334 // See if the call site touches it
Owen Anderson50df9682007-08-08 17:58:56 +0000335 AliasAnalysis::ModRefResult A = AA.getModRefInfo(CS, *I, pointerSize);
Owen Andersonddf4aee2007-08-08 18:38:28 +0000336
337 if (A == AliasAnalysis::ModRef)
338 modRef++;
339 else
340 other++;
341
Owen Anderson9c9ef212007-07-13 18:26:26 +0000342 if (A == AliasAnalysis::ModRef || A == AliasAnalysis::Ref)
Owen Anderson32c4a052007-07-12 21:41:30 +0000343 dead.push_back(*I);
344 }
345
346 for (std::vector<Instruction*>::iterator I = dead.begin(), E = dead.end();
347 I != E; ++I)
348 deadPointers.erase(*I);
349
350 continue;
351 }
352
353 if (!killPointer)
354 continue;
355
Owen Andersonddf4aee2007-08-08 18:38:28 +0000356 TranslatePointerBitCasts(killPointer);
357
Owen Anderson32c4a052007-07-12 21:41:30 +0000358 // Deal with undead pointers
Owen Anderson52aaabf2007-08-08 17:50:09 +0000359 MadeChange |= RemoveUndeadPointers(killPointer, BBI,
Owen Anderson32c4a052007-07-12 21:41:30 +0000360 deadPointers, possiblyDead);
361 }
362
363 return MadeChange;
364}
365
Owen Andersonddf4aee2007-08-08 18:38:28 +0000366/// RemoveUndeadPointers - check for uses of a pointer that make it
367/// undead when scanning for dead stores to alloca's.
Owen Anderson52aaabf2007-08-08 17:50:09 +0000368bool DSE::RemoveUndeadPointers(Value* killPointer,
Owen Anderson32c4a052007-07-12 21:41:30 +0000369 BasicBlock::iterator& BBI,
Owen Anderson52aaabf2007-08-08 17:50:09 +0000370 SmallPtrSet<AllocaInst*, 64>& deadPointers,
Owen Anderson32c4a052007-07-12 21:41:30 +0000371 SetVector<Instruction*>& possiblyDead) {
372 TargetData &TD = getAnalysis<TargetData>();
373 AliasAnalysis &AA = getAnalysis<AliasAnalysis>();
374 MemoryDependenceAnalysis& MD = getAnalysis<MemoryDependenceAnalysis>();
375
Owen Andersonddf4aee2007-08-08 18:38:28 +0000376 // If the kill pointer can be easily reduced to an alloca,
377 // don't bother doing extraneous AA queries
378 if (AllocaInst* A = dyn_cast<AllocaInst>(killPointer)) {
379 if (deadPointers.count(A))
380 deadPointers.erase(A);
381 return false;
Owen Anderson68086282007-08-08 19:12:31 +0000382 } else if (isa<GlobalValue>(killPointer)) {
383 // A global can't be in the dead pointer set
384 return false;
Owen Andersonddf4aee2007-08-08 18:38:28 +0000385 }
386
Owen Anderson32c4a052007-07-12 21:41:30 +0000387 bool MadeChange = false;
388
389 std::vector<Instruction*> undead;
390
Owen Anderson52aaabf2007-08-08 17:50:09 +0000391 for (SmallPtrSet<AllocaInst*, 64>::iterator I = deadPointers.begin(),
Owen Anderson32c4a052007-07-12 21:41:30 +0000392 E = deadPointers.end(); I != E; ++I) {
393 // Get size information for the alloca
394 unsigned pointerSize = ~0UL;
395 if (ConstantInt* C = dyn_cast<ConstantInt>((*I)->getArraySize()))
Owen Andersone3590582007-08-02 18:11:11 +0000396 pointerSize = C->getZExtValue() * \
Duncan Sands44b87212007-11-01 20:53:16 +0000397 TD.getABITypeSize((*I)->getAllocatedType());
Owen Anderson32c4a052007-07-12 21:41:30 +0000398
399 // See if this pointer could alias it
Owen Andersone3590582007-08-02 18:11:11 +0000400 AliasAnalysis::AliasResult A = AA.alias(*I, pointerSize,
Owen Anderson52aaabf2007-08-08 17:50:09 +0000401 killPointer, ~0UL);
Owen Anderson32c4a052007-07-12 21:41:30 +0000402
403 // If it must-alias and a store, we can delete it
404 if (isa<StoreInst>(BBI) && A == AliasAnalysis::MustAlias) {
405 StoreInst* S = cast<StoreInst>(BBI);
406
407 // Remove it!
408 MD.removeInstruction(S);
409
410 // DCE instructions only used to calculate that store
411 if (Instruction* D = dyn_cast<Instruction>(S->getOperand(0)))
412 possiblyDead.insert(D);
Owen Anderson9c9ef212007-07-13 18:26:26 +0000413 if (Instruction* D = dyn_cast<Instruction>(S->getOperand(1)))
414 possiblyDead.insert(D);
Owen Anderson32c4a052007-07-12 21:41:30 +0000415
416 BBI++;
417 S->eraseFromParent();
418 NumFastStores++;
419 MadeChange = true;
420
421 continue;
422
423 // Otherwise, it is undead
424 } else if (A != AliasAnalysis::NoAlias)
425 undead.push_back(*I);
426 }
427
428 for (std::vector<Instruction*>::iterator I = undead.begin(), E = undead.end();
429 I != E; ++I)
430 deadPointers.erase(*I);
431
432 return MadeChange;
433}
434
Owen Anderson52aaabf2007-08-08 17:50:09 +0000435/// DeleteDeadInstructionChains - takes an instruction and a setvector of
436/// dead instructions. If I is dead, it is erased, and its operands are
437/// checked for deadness. If they are dead, they are added to the dead
438/// setvector.
Owen Anderson10e52ed2007-08-01 06:36:51 +0000439void DSE::DeleteDeadInstructionChains(Instruction *I,
Owen Anderson5e72db32007-07-11 00:46:18 +0000440 SetVector<Instruction*> &DeadInsts) {
441 // Instruction must be dead.
442 if (!I->use_empty() || !isInstructionTriviallyDead(I)) return;
443
444 // Let the memory dependence know
445 getAnalysis<MemoryDependenceAnalysis>().removeInstruction(I);
446
447 // See if this made any operands dead. We do it this way in case the
448 // instruction uses the same operand twice. We don't want to delete a
449 // value then reference it.
450 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) {
Owen Andersonbf971aa2007-07-11 19:03:09 +0000451 if (I->getOperand(i)->hasOneUse())
452 if (Instruction* Op = dyn_cast<Instruction>(I->getOperand(i)))
453 DeadInsts.insert(Op); // Attempt to nuke it later.
454
Owen Anderson5e72db32007-07-11 00:46:18 +0000455 I->setOperand(i, 0); // Drop from the operand list.
456 }
457
458 I->eraseFromParent();
459 ++NumFastOther;
460}