blob: 78004595ece8a7331f15164b9848f66788e889eb [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"
Chris Lattnerc0f33792010-11-30 23:05:20 +000031#include "llvm/Analysis/ValueTracking.h"
Owen Andersonaa071722007-07-11 23:19:17 +000032#include "llvm/Target/TargetData.h"
Owen Anderson5e72db32007-07-11 00:46:18 +000033#include "llvm/Transforms/Utils/Local.h"
Owen Anderson5e72db32007-07-11 00:46:18 +000034using namespace llvm;
35
36STATISTIC(NumFastStores, "Number of stores deleted");
37STATISTIC(NumFastOther , "Number of other instrs removed");
38
39namespace {
Chris Lattner2dd09db2009-09-02 06:11:42 +000040 struct DSE : public FunctionPass {
Chris Lattner51c28a92010-11-30 19:34:42 +000041 AliasAnalysis *AA;
42 MemoryDependenceAnalysis *MD;
43
Owen Anderson5e72db32007-07-11 00:46:18 +000044 static char ID; // Pass identification, replacement for typeid
Chris Lattner51c28a92010-11-30 19:34:42 +000045 DSE() : FunctionPass(ID), AA(0), MD(0) {
Owen Anderson6c18d1a2010-10-19 17:21:58 +000046 initializeDSEPass(*PassRegistry::getPassRegistry());
47 }
Owen Anderson5e72db32007-07-11 00:46:18 +000048
49 virtual bool runOnFunction(Function &F) {
Chris Lattner51c28a92010-11-30 19:34:42 +000050 AA = &getAnalysis<AliasAnalysis>();
51 MD = &getAnalysis<MemoryDependenceAnalysis>();
Chris Lattnerc053cbb2010-02-11 05:11:54 +000052 DominatorTree &DT = getAnalysis<DominatorTree>();
53
Chris Lattner51c28a92010-11-30 19:34:42 +000054 bool Changed = false;
Owen Anderson5e72db32007-07-11 00:46:18 +000055 for (Function::iterator I = F.begin(), E = F.end(); I != E; ++I)
Chris Lattnerc053cbb2010-02-11 05:11:54 +000056 // Only check non-dead blocks. Dead blocks may have strange pointer
57 // cycles that will confuse alias analysis.
58 if (DT.isReachableFromEntry(I))
59 Changed |= runOnBasicBlock(*I);
Chris Lattner51c28a92010-11-30 19:34:42 +000060
61 AA = 0; MD = 0;
Owen Anderson5e72db32007-07-11 00:46:18 +000062 return Changed;
63 }
Chris Lattnerde04e112008-11-29 01:43:36 +000064
Owen Anderson5e72db32007-07-11 00:46:18 +000065 bool runOnBasicBlock(BasicBlock &BB);
Chris Lattner9d179d92010-11-30 01:28:33 +000066 bool HandleFree(CallInst *F);
Chris Lattner1adb6752008-11-28 00:27:14 +000067 bool handleEndBlock(BasicBlock &BB);
Chris Lattner51d67ce2010-11-30 21:47:58 +000068 void RemoveAccessedObjects(const AliasAnalysis::Location &LoadedLoc,
69 SmallPtrSet<Value*, 16> &DeadStackObjects);
Chris Lattner1adb6752008-11-28 00:27:14 +000070
Owen Anderson5e72db32007-07-11 00:46:18 +000071
72 // getAnalysisUsage - We require post dominance frontiers (aka Control
73 // Dependence Graph)
74 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
75 AU.setPreservesCFG();
Owen Anderson3f338972008-07-28 16:14:26 +000076 AU.addRequired<DominatorTree>();
Owen Andersonaa071722007-07-11 23:19:17 +000077 AU.addRequired<AliasAnalysis>();
Owen Anderson5e72db32007-07-11 00:46:18 +000078 AU.addRequired<MemoryDependenceAnalysis>();
Chris Lattner51c28a92010-11-30 19:34:42 +000079 AU.addPreserved<AliasAnalysis>();
Owen Anderson3f338972008-07-28 16:14:26 +000080 AU.addPreserved<DominatorTree>();
Owen Anderson5e72db32007-07-11 00:46:18 +000081 AU.addPreserved<MemoryDependenceAnalysis>();
82 }
83 };
Owen Anderson5e72db32007-07-11 00:46:18 +000084}
85
Dan Gohmand78c4002008-05-13 00:00:25 +000086char DSE::ID = 0;
Owen Anderson8ac477f2010-10-12 19:48:12 +000087INITIALIZE_PASS_BEGIN(DSE, "dse", "Dead Store Elimination", false, false)
88INITIALIZE_PASS_DEPENDENCY(DominatorTree)
89INITIALIZE_PASS_DEPENDENCY(MemoryDependenceAnalysis)
90INITIALIZE_AG_DEPENDENCY(AliasAnalysis)
91INITIALIZE_PASS_END(DSE, "dse", "Dead Store Elimination", false, false)
Dan Gohmand78c4002008-05-13 00:00:25 +000092
Owen Anderson10e52ed2007-08-01 06:36:51 +000093FunctionPass *llvm::createDeadStoreEliminationPass() { return new DSE(); }
Owen Anderson5e72db32007-07-11 00:46:18 +000094
Chris Lattner67122512010-11-30 21:58:14 +000095//===----------------------------------------------------------------------===//
96// Helper functions
97//===----------------------------------------------------------------------===//
98
99/// DeleteDeadInstruction - Delete this instruction. Before we do, go through
100/// and zero out all the operands of this instruction. If any of them become
101/// dead, delete them and the computation tree that feeds them.
102///
103/// If ValueSet is non-null, remove any deleted instructions from it as well.
104///
105static void DeleteDeadInstruction(Instruction *I,
106 MemoryDependenceAnalysis &MD,
107 SmallPtrSet<Value*, 16> *ValueSet = 0) {
108 SmallVector<Instruction*, 32> NowDeadInsts;
109
110 NowDeadInsts.push_back(I);
111 --NumFastOther;
112
113 // Before we touch this instruction, remove it from memdep!
114 do {
115 Instruction *DeadInst = NowDeadInsts.pop_back_val();
116 ++NumFastOther;
117
118 // This instruction is dead, zap it, in stages. Start by removing it from
119 // MemDep, which needs to know the operands and needs it to be in the
120 // function.
121 MD.removeInstruction(DeadInst);
122
123 for (unsigned op = 0, e = DeadInst->getNumOperands(); op != e; ++op) {
124 Value *Op = DeadInst->getOperand(op);
125 DeadInst->setOperand(op, 0);
126
127 // If this operand just became dead, add it to the NowDeadInsts list.
128 if (!Op->use_empty()) continue;
129
130 if (Instruction *OpI = dyn_cast<Instruction>(Op))
131 if (isInstructionTriviallyDead(OpI))
132 NowDeadInsts.push_back(OpI);
133 }
134
135 DeadInst->eraseFromParent();
136
137 if (ValueSet) ValueSet->erase(DeadInst);
138 } while (!NowDeadInsts.empty());
139}
140
141
Chris Lattner2227a8a2010-11-30 01:37:52 +0000142/// hasMemoryWrite - Does this instruction write some memory? This only returns
143/// true for things that we can analyze with other helpers below.
144static bool hasMemoryWrite(Instruction *I) {
Nick Lewycky90271472009-11-10 06:46:40 +0000145 if (isa<StoreInst>(I))
146 return true;
147 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I)) {
148 switch (II->getIntrinsicID()) {
Chris Lattner2764b4d2009-12-02 06:35:55 +0000149 default:
150 return false;
151 case Intrinsic::memset:
152 case Intrinsic::memmove:
153 case Intrinsic::memcpy:
154 case Intrinsic::init_trampoline:
155 case Intrinsic::lifetime_end:
156 return true;
Nick Lewycky90271472009-11-10 06:46:40 +0000157 }
158 }
159 return false;
160}
161
Chris Lattner58b779e2010-11-30 07:23:21 +0000162/// getLocForWrite - Return a Location stored to by the specified instruction.
163static AliasAnalysis::Location
164getLocForWrite(Instruction *Inst, AliasAnalysis &AA) {
165 if (StoreInst *SI = dyn_cast<StoreInst>(Inst))
166 return AA.getLocation(SI);
167
168 if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(Inst)) {
169 // memcpy/memmove/memset.
170 AliasAnalysis::Location Loc = AA.getLocationForDest(MI);
171 // If we don't have target data around, an unknown size in Location means
172 // that we should use the size of the pointee type. This isn't valid for
173 // memset/memcpy, which writes more than an i8.
174 if (Loc.Size == AliasAnalysis::UnknownSize && AA.getTargetData() == 0)
175 return AliasAnalysis::Location();
176 return Loc;
177 }
178
179 IntrinsicInst *II = dyn_cast<IntrinsicInst>(Inst);
180 if (II == 0) return AliasAnalysis::Location();
181
182 switch (II->getIntrinsicID()) {
183 default: return AliasAnalysis::Location(); // Unhandled intrinsic.
184 case Intrinsic::init_trampoline:
185 // If we don't have target data around, an unknown size in Location means
186 // that we should use the size of the pointee type. This isn't valid for
187 // init.trampoline, which writes more than an i8.
188 if (AA.getTargetData() == 0) return AliasAnalysis::Location();
189
190 // FIXME: We don't know the size of the trampoline, so we can't really
191 // handle it here.
192 return AliasAnalysis::Location(II->getArgOperand(0));
193 case Intrinsic::lifetime_end: {
194 uint64_t Len = cast<ConstantInt>(II->getArgOperand(0))->getZExtValue();
195 return AliasAnalysis::Location(II->getArgOperand(1), Len);
196 }
197 }
198}
199
Chris Lattner3590ef82010-11-30 05:30:45 +0000200/// isRemovable - If the value of this instruction and the memory it writes to
201/// is unused, may we delete this instruction?
202static bool isRemovable(Instruction *I) {
Chris Lattnerb63ba732010-11-30 19:12:10 +0000203 // Don't remove volatile stores.
Nick Lewycky90271472009-11-10 06:46:40 +0000204 if (StoreInst *SI = dyn_cast<StoreInst>(I))
205 return !SI->isVolatile();
Chris Lattnerb63ba732010-11-30 19:12:10 +0000206
207 IntrinsicInst *II = cast<IntrinsicInst>(I);
208 switch (II->getIntrinsicID()) {
209 default: assert(0 && "doesn't pass 'hasMemoryWrite' predicate");
210 case Intrinsic::lifetime_end:
211 // Never remove dead lifetime_end's, e.g. because it is followed by a
212 // free.
213 return false;
214 case Intrinsic::init_trampoline:
215 // Always safe to remove init_trampoline.
216 return true;
217
218 case Intrinsic::memset:
219 case Intrinsic::memmove:
220 case Intrinsic::memcpy:
221 // Don't remove volatile memory intrinsics.
222 return !cast<MemIntrinsic>(II)->isVolatile();
223 }
Nick Lewycky90271472009-11-10 06:46:40 +0000224}
225
Chris Lattner67122512010-11-30 21:58:14 +0000226/// getStoredPointerOperand - Return the pointer that is being written to.
227static Value *getStoredPointerOperand(Instruction *I) {
Nick Lewycky90271472009-11-10 06:46:40 +0000228 if (StoreInst *SI = dyn_cast<StoreInst>(I))
229 return SI->getPointerOperand();
230 if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(I))
Chris Lattner67122512010-11-30 21:58:14 +0000231 return MI->getDest();
Gabor Greif91f95892010-06-24 12:03:56 +0000232
233 IntrinsicInst *II = cast<IntrinsicInst>(I);
234 switch (II->getIntrinsicID()) {
Chris Lattner2764b4d2009-12-02 06:35:55 +0000235 default: assert(false && "Unexpected intrinsic!");
236 case Intrinsic::init_trampoline:
Gabor Greif91f95892010-06-24 12:03:56 +0000237 return II->getArgOperand(0);
Duncan Sands1925d3a2009-11-10 13:49:50 +0000238 }
Nick Lewycky90271472009-11-10 06:46:40 +0000239}
240
Chris Lattner51c28a92010-11-30 19:34:42 +0000241static uint64_t getPointerSize(Value *V, AliasAnalysis &AA) {
242 const TargetData *TD = AA.getTargetData();
243 if (TD == 0)
244 return AliasAnalysis::UnknownSize;
245
246 if (AllocaInst *A = dyn_cast<AllocaInst>(V)) {
247 // Get size information for the alloca
248 if (ConstantInt *C = dyn_cast<ConstantInt>(A->getArraySize()))
249 return C->getZExtValue() * TD->getTypeAllocSize(A->getAllocatedType());
250 return AliasAnalysis::UnknownSize;
251 }
252
253 assert(isa<Argument>(V) && "Expected AllocaInst or Argument!");
254 const PointerType *PT = cast<PointerType>(V->getType());
255 return TD->getTypeAllocSize(PT->getElementType());
256}
257
258
Chris Lattner58b779e2010-11-30 07:23:21 +0000259/// isCompleteOverwrite - Return true if a store to the 'Later' location
260/// completely overwrites a store to the 'Earlier' location.
261static bool isCompleteOverwrite(const AliasAnalysis::Location &Later,
262 const AliasAnalysis::Location &Earlier,
Chris Lattner77d79fa2010-11-30 19:28:23 +0000263 AliasAnalysis &AA) {
Chris Lattnerc0f33792010-11-30 23:05:20 +0000264 const Value *P1 = Earlier.Ptr->stripPointerCasts();
265 const Value *P2 = Later.Ptr->stripPointerCasts();
Chris Lattner58b779e2010-11-30 07:23:21 +0000266
Chris Lattnerc0f33792010-11-30 23:05:20 +0000267 // If the start pointers are the same, we just have to compare sizes to see if
268 // the later store was larger than the earlier store.
269 if (P1 == P2) {
270 // If we don't know the sizes of either access, then we can't do a
271 // comparison.
272 if (Later.Size == AliasAnalysis::UnknownSize ||
273 Earlier.Size == AliasAnalysis::UnknownSize) {
274 // If we have no TargetData information around, then the size of the store
275 // is inferrable from the pointee type. If they are the same type, then
276 // we know that the store is safe.
277 if (AA.getTargetData() == 0)
278 return Later.Ptr->getType() == Earlier.Ptr->getType();
279 return false;
280 }
281
282 // Make sure that the Later size is >= the Earlier size.
283 if (Later.Size < Earlier.Size)
284 return false;
285 return true;
Chris Lattner77d79fa2010-11-30 19:28:23 +0000286 }
Chris Lattner58b779e2010-11-30 07:23:21 +0000287
Chris Lattnerc0f33792010-11-30 23:05:20 +0000288 // Otherwise, we have to have size information, and the later store has to be
289 // larger than the earlier one.
290 if (Later.Size == AliasAnalysis::UnknownSize ||
291 Earlier.Size == AliasAnalysis::UnknownSize ||
292 Later.Size <= Earlier.Size ||
293 AA.getTargetData() == 0)
Chris Lattner58b779e2010-11-30 07:23:21 +0000294 return false;
295
Chris Lattnerc0f33792010-11-30 23:05:20 +0000296 const TargetData &TD = *AA.getTargetData();
297
298 // Okay, we have stores to two completely different pointers. Try to
299 // decompose the pointer into a "base + constant_offset" form. If the base
300 // pointers are equal, then we can reason about the two stores.
301 int64_t Off1 = 0, Off2 = 0;
302 const Value *BP1 = GetPointerBaseWithConstantOffset(P1, Off1, TD);
303 const Value *BP2 = GetPointerBaseWithConstantOffset(P2, Off2, TD);
304
305 // If the base pointers still differ, we have two completely different stores.
306 if (BP1 != BP2)
307 return false;
308
309 // Otherwise, we might have a situation like:
310 // store i16 -> P + 1 Byte
311 // store i32 -> P
312 // In this case, we see if the later store completely overlaps all bytes
313 // stored by the previous store.
314 if (Off1 < Off2 || // Earlier starts before Later.
315 Off1+Earlier.Size > Off2+Later.Size) // Earlier goes beyond Later.
316 return false;
317 // Otherwise, we have complete overlap.
Chris Lattner58b779e2010-11-30 07:23:21 +0000318 return true;
Nick Lewycky90271472009-11-10 06:46:40 +0000319}
320
Chris Lattner67122512010-11-30 21:58:14 +0000321
322//===----------------------------------------------------------------------===//
323// DSE Pass
324//===----------------------------------------------------------------------===//
325
Owen Anderson10e52ed2007-08-01 06:36:51 +0000326bool DSE::runOnBasicBlock(BasicBlock &BB) {
Owen Anderson5e72db32007-07-11 00:46:18 +0000327 bool MadeChange = false;
328
Chris Lattner49162672009-09-02 06:31:02 +0000329 // Do a top-down walk on the BB.
Chris Lattnerf2a8ba42008-11-28 21:29:52 +0000330 for (BasicBlock::iterator BBI = BB.begin(), BBE = BB.end(); BBI != BBE; ) {
331 Instruction *Inst = BBI++;
332
Chris Lattner9d179d92010-11-30 01:28:33 +0000333 // Handle 'free' calls specially.
334 if (CallInst *F = isFreeCall(Inst)) {
335 MadeChange |= HandleFree(F);
336 continue;
337 }
338
Chris Lattner2227a8a2010-11-30 01:37:52 +0000339 // If we find something that writes memory, get its memory dependence.
340 if (!hasMemoryWrite(Inst))
Owen Anderson0aecf0e2007-08-08 04:52:29 +0000341 continue;
Chris Lattnerd4f10902010-11-30 00:01:19 +0000342
Chris Lattner51c28a92010-11-30 19:34:42 +0000343 MemDepResult InstDep = MD->getDependency(Inst);
Chris Lattnerf2a8ba42008-11-28 21:29:52 +0000344
Chris Lattnerd4f10902010-11-30 00:01:19 +0000345 // Ignore non-local store liveness.
Chris Lattner57e91ea2008-12-06 00:53:22 +0000346 // FIXME: cross-block DSE would be fun. :)
Chris Lattner58b779e2010-11-30 07:23:21 +0000347 if (InstDep.isNonLocal() ||
348 // Ignore self dependence, which happens in the entry block of the
349 // function.
350 InstDep.getInst() == Inst)
351 continue;
Chris Lattner9d179d92010-11-30 01:28:33 +0000352
Chris Lattner57e91ea2008-12-06 00:53:22 +0000353 // If we're storing the same value back to a pointer that we just
354 // loaded from, then the store can be removed.
Nick Lewycky90271472009-11-10 06:46:40 +0000355 if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
356 if (LoadInst *DepLoad = dyn_cast<LoadInst>(InstDep.getInst())) {
357 if (SI->getPointerOperand() == DepLoad->getPointerOperand() &&
Chris Lattnerc3c754f2010-11-30 00:12:39 +0000358 SI->getOperand(0) == DepLoad && !SI->isVolatile()) {
Nick Lewycky90271472009-11-10 06:46:40 +0000359 // DeleteDeadInstruction can delete the current instruction. Save BBI
360 // in case we need it.
361 WeakVH NextInst(BBI);
362
Chris Lattner67122512010-11-30 21:58:14 +0000363 DeleteDeadInstruction(SI, *MD);
Nick Lewycky90271472009-11-10 06:46:40 +0000364
365 if (NextInst == 0) // Next instruction deleted.
366 BBI = BB.begin();
367 else if (BBI != BB.begin()) // Revisit this instruction if possible.
368 --BBI;
Dan Gohmand2d1ae12010-06-22 15:08:57 +0000369 ++NumFastStores;
Nick Lewycky90271472009-11-10 06:46:40 +0000370 MadeChange = true;
371 continue;
372 }
Chris Lattner0e3d6332008-12-05 21:04:20 +0000373 }
Owen Anderson5e72db32007-07-11 00:46:18 +0000374 }
Chris Lattner3590ef82010-11-30 05:30:45 +0000375
Chris Lattner58b779e2010-11-30 07:23:21 +0000376 // Figure out what location is being stored to.
Chris Lattner51c28a92010-11-30 19:34:42 +0000377 AliasAnalysis::Location Loc = getLocForWrite(Inst, *AA);
Chris Lattner58b779e2010-11-30 07:23:21 +0000378
379 // If we didn't get a useful location, fail.
380 if (Loc.Ptr == 0)
381 continue;
382
383 while (!InstDep.isNonLocal()) {
384 // Get the memory clobbered by the instruction we depend on. MemDep will
385 // skip any instructions that 'Loc' clearly doesn't interact with. If we
386 // end up depending on a may- or must-aliased load, then we can't optimize
387 // away the store and we bail out. However, if we depend on on something
388 // that overwrites the memory location we *can* potentially optimize it.
389 //
390 // Find out what memory location the dependant instruction stores.
391 Instruction *DepWrite = InstDep.getInst();
Chris Lattner51c28a92010-11-30 19:34:42 +0000392 AliasAnalysis::Location DepLoc = getLocForWrite(DepWrite, *AA);
Chris Lattner58b779e2010-11-30 07:23:21 +0000393 // If we didn't get a useful location, or if it isn't a size, bail out.
394 if (DepLoc.Ptr == 0)
395 break;
396
397 // If we find a removable write that is completely obliterated by the
398 // store to 'Loc' then we can remove it.
Chris Lattner51c28a92010-11-30 19:34:42 +0000399 if (isRemovable(DepWrite) && isCompleteOverwrite(Loc, DepLoc, *AA)) {
Chris Lattner58b779e2010-11-30 07:23:21 +0000400 // Delete the store and now-dead instructions that feed it.
Chris Lattner67122512010-11-30 21:58:14 +0000401 DeleteDeadInstruction(DepWrite, *MD);
Chris Lattner58b779e2010-11-30 07:23:21 +0000402 ++NumFastStores;
403 MadeChange = true;
404
405 // DeleteDeadInstruction can delete the current instruction in loop
406 // cases, reset BBI.
407 BBI = Inst;
408 if (BBI != BB.begin())
409 --BBI;
410 break;
411 }
412
Chris Lattnerd4f10902010-11-30 00:01:19 +0000413 // If this is a may-aliased store that is clobbering the store value, we
414 // can keep searching past it for another must-aliased pointer that stores
415 // to the same location. For example, in:
416 // store -> P
417 // store -> Q
418 // store -> P
419 // we can remove the first store to P even though we don't know if P and Q
420 // alias.
Chris Lattner58b779e2010-11-30 07:23:21 +0000421 if (DepWrite == &BB.front()) break;
422
423 // Can't look past this instruction if it might read 'Loc'.
Chris Lattner51c28a92010-11-30 19:34:42 +0000424 if (AA->getModRefInfo(DepWrite, Loc) & AliasAnalysis::Ref)
Chris Lattner58b779e2010-11-30 07:23:21 +0000425 break;
Chris Lattner3590ef82010-11-30 05:30:45 +0000426
Chris Lattner51c28a92010-11-30 19:34:42 +0000427 InstDep = MD->getPointerDependencyFrom(Loc, false, DepWrite, &BB);
Owen Anderson2b2bd282009-10-28 07:05:35 +0000428 }
Owen Anderson5e72db32007-07-11 00:46:18 +0000429 }
430
Chris Lattnerf2a8ba42008-11-28 21:29:52 +0000431 // If this block ends in a return, unwind, or unreachable, all allocas are
432 // dead at its end, which means stores to them are also dead.
Owen Anderson32c4a052007-07-12 21:41:30 +0000433 if (BB.getTerminator()->getNumSuccessors() == 0)
Chris Lattner1adb6752008-11-28 00:27:14 +0000434 MadeChange |= handleEndBlock(BB);
Owen Anderson5e72db32007-07-11 00:46:18 +0000435
436 return MadeChange;
437}
438
Chris Lattner9d179d92010-11-30 01:28:33 +0000439/// HandleFree - Handle frees of entire structures whose dependency is a store
440/// to a field of that structure.
441bool DSE::HandleFree(CallInst *F) {
Chris Lattner51c28a92010-11-30 19:34:42 +0000442 MemDepResult Dep = MD->getDependency(F);
Dan Gohmand4b7fff2010-11-12 02:19:17 +0000443 do {
Chris Lattner9d179d92010-11-30 01:28:33 +0000444 if (Dep.isNonLocal()) return false;
445
Dan Gohmand4b7fff2010-11-12 02:19:17 +0000446 Instruction *Dependency = Dep.getInst();
Chris Lattner3590ef82010-11-30 05:30:45 +0000447 if (!hasMemoryWrite(Dependency) || !isRemovable(Dependency))
Dan Gohmand4b7fff2010-11-12 02:19:17 +0000448 return false;
Owen Andersond4451de2007-07-12 18:08:51 +0000449
Chris Lattner67122512010-11-30 21:58:14 +0000450 Value *DepPointer =
451 getStoredPointerOperand(Dependency)->getUnderlyingObject();
Duncan Sandsfe3bef02008-01-20 10:49:23 +0000452
Dan Gohmand4b7fff2010-11-12 02:19:17 +0000453 // Check for aliasing.
Chris Lattner51c28a92010-11-30 19:34:42 +0000454 if (AA->alias(F->getArgOperand(0), 1, DepPointer, 1) !=
Chris Lattner9d179d92010-11-30 01:28:33 +0000455 AliasAnalysis::MustAlias)
Dan Gohmand4b7fff2010-11-12 02:19:17 +0000456 return false;
Owen Andersonaa071722007-07-11 23:19:17 +0000457
Dan Gohmand4b7fff2010-11-12 02:19:17 +0000458 // DCE instructions only used to calculate that store
Chris Lattner67122512010-11-30 21:58:14 +0000459 DeleteDeadInstruction(Dependency, *MD);
Dan Gohmand4b7fff2010-11-12 02:19:17 +0000460 ++NumFastStores;
461
462 // Inst's old Dependency is now deleted. Compute the next dependency,
463 // which may also be dead, as in
464 // s[0] = 0;
465 // s[1] = 0; // This has just been deleted.
466 // free(s);
Chris Lattner51c28a92010-11-30 19:34:42 +0000467 Dep = MD->getDependency(F);
Dan Gohmand4b7fff2010-11-12 02:19:17 +0000468 } while (!Dep.isNonLocal());
Chris Lattner9d179d92010-11-30 01:28:33 +0000469
Chris Lattner1adb6752008-11-28 00:27:14 +0000470 return true;
Owen Andersonaa071722007-07-11 23:19:17 +0000471}
472
Owen Andersone3590582007-08-02 18:11:11 +0000473/// handleEndBlock - Remove dead stores to stack-allocated locations in the
Owen Anderson52aaabf2007-08-08 17:50:09 +0000474/// function end block. Ex:
475/// %A = alloca i32
476/// ...
477/// store i32 1, i32* %A
478/// ret void
Chris Lattner1adb6752008-11-28 00:27:14 +0000479bool DSE::handleEndBlock(BasicBlock &BB) {
Owen Anderson32c4a052007-07-12 21:41:30 +0000480 bool MadeChange = false;
481
Chris Lattner7fe08b62010-11-30 21:32:12 +0000482 // Keep track of all of the stack objects that are dead at the end of the
483 // function.
484 SmallPtrSet<Value*, 16> DeadStackObjects;
Owen Anderson32c4a052007-07-12 21:41:30 +0000485
Chris Lattner1adb6752008-11-28 00:27:14 +0000486 // Find all of the alloca'd pointers in the entry block.
Owen Anderson32c4a052007-07-12 21:41:30 +0000487 BasicBlock *Entry = BB.getParent()->begin();
488 for (BasicBlock::iterator I = Entry->begin(), E = Entry->end(); I != E; ++I)
489 if (AllocaInst *AI = dyn_cast<AllocaInst>(I))
Chris Lattner7fe08b62010-11-30 21:32:12 +0000490 DeadStackObjects.insert(AI);
Chris Lattner1adb6752008-11-28 00:27:14 +0000491
492 // Treat byval arguments the same, stores to them are dead at the end of the
493 // function.
Owen Anderson48d37802008-01-29 06:18:36 +0000494 for (Function::arg_iterator AI = BB.getParent()->arg_begin(),
495 AE = BB.getParent()->arg_end(); AI != AE; ++AI)
496 if (AI->hasByValAttr())
Chris Lattner7fe08b62010-11-30 21:32:12 +0000497 DeadStackObjects.insert(AI);
Owen Anderson32c4a052007-07-12 21:41:30 +0000498
499 // Scan the basic block backwards
500 for (BasicBlock::iterator BBI = BB.end(); BBI != BB.begin(); ){
501 --BBI;
502
Chris Lattner60a8b3d2010-11-30 19:48:15 +0000503 // If we find a store, check to see if it points into a dead stack value.
504 if (hasMemoryWrite(BBI) && isRemovable(BBI)) {
505 // See through pointer-to-pointer bitcasts
Chris Lattner67122512010-11-30 21:58:14 +0000506 Value *Pointer = getStoredPointerOperand(BBI)->getUnderlyingObject();
Duncan Sandsd65a4da2008-10-01 15:25:41 +0000507
Chris Lattner67122512010-11-30 21:58:14 +0000508 // Stores to stack values are valid candidates for removal.
Chris Lattner7fe08b62010-11-30 21:32:12 +0000509 if (DeadStackObjects.count(Pointer)) {
Chris Lattner60a8b3d2010-11-30 19:48:15 +0000510 // DCE instructions only used to calculate that store.
511 Instruction *Dead = BBI++;
Chris Lattner67122512010-11-30 21:58:14 +0000512 DeleteDeadInstruction(Dead, *MD, &DeadStackObjects);
Chris Lattner60a8b3d2010-11-30 19:48:15 +0000513 ++NumFastStores;
514 MadeChange = true;
Owen Anderson48d37802008-01-29 06:18:36 +0000515 continue;
Chris Lattner60a8b3d2010-11-30 19:48:15 +0000516 }
Owen Anderson52aaabf2007-08-08 17:50:09 +0000517 }
518
Chris Lattner60a8b3d2010-11-30 19:48:15 +0000519 // Remove any dead non-memory-mutating instructions.
520 if (isInstructionTriviallyDead(BBI)) {
521 Instruction *Inst = BBI++;
Chris Lattner67122512010-11-30 21:58:14 +0000522 DeleteDeadInstruction(Inst, *MD, &DeadStackObjects);
Chris Lattner60a8b3d2010-11-30 19:48:15 +0000523 ++NumFastOther;
524 MadeChange = true;
525 continue;
526 }
527
528 if (AllocaInst *A = dyn_cast<AllocaInst>(BBI)) {
Chris Lattner7fe08b62010-11-30 21:32:12 +0000529 DeadStackObjects.erase(A);
Chris Lattner60a8b3d2010-11-30 19:48:15 +0000530 continue;
531 }
532
Chris Lattner127818d2010-11-30 21:18:46 +0000533 if (CallSite CS = cast<Value>(BBI)) {
534 // If this call does not access memory, it can't be loading any of our
535 // pointers.
536 if (AA->doesNotAccessMemory(CS))
537 continue;
538
539 unsigned NumModRef = 0, NumOther = 0;
540
541 // If the call might load from any of our allocas, then any store above
542 // the call is live.
543 SmallVector<Value*, 8> LiveAllocas;
Chris Lattner7fe08b62010-11-30 21:32:12 +0000544 for (SmallPtrSet<Value*, 16>::iterator I = DeadStackObjects.begin(),
545 E = DeadStackObjects.end(); I != E; ++I) {
Chris Lattner127818d2010-11-30 21:18:46 +0000546 // If we detect that our AA is imprecise, it's not worth it to scan the
547 // rest of the DeadPointers set. Just assume that the AA will return
548 // ModRef for everything, and go ahead and bail out.
549 if (NumModRef >= 16 && NumOther == 0)
550 return MadeChange;
551
552 // See if the call site touches it.
553 AliasAnalysis::ModRefResult A =
554 AA->getModRefInfo(CS, *I, getPointerSize(*I, *AA));
555
556 if (A == AliasAnalysis::ModRef)
557 ++NumModRef;
558 else
559 ++NumOther;
560
561 if (A == AliasAnalysis::ModRef || A == AliasAnalysis::Ref)
562 LiveAllocas.push_back(*I);
563 }
564
565 for (SmallVector<Value*, 8>::iterator I = LiveAllocas.begin(),
566 E = LiveAllocas.end(); I != E; ++I)
Chris Lattner7fe08b62010-11-30 21:32:12 +0000567 DeadStackObjects.erase(*I);
Chris Lattner127818d2010-11-30 21:18:46 +0000568
569 // If all of the allocas were clobbered by the call then we're not going
570 // to find anything else to process.
Chris Lattner7fe08b62010-11-30 21:32:12 +0000571 if (DeadStackObjects.empty())
Chris Lattner127818d2010-11-30 21:18:46 +0000572 return MadeChange;
573
574 continue;
575 }
Chris Lattner60a8b3d2010-11-30 19:48:15 +0000576
Chris Lattner51d67ce2010-11-30 21:47:58 +0000577 AliasAnalysis::Location LoadedLoc;
Owen Anderson32c4a052007-07-12 21:41:30 +0000578
579 // If we encounter a use of the pointer, it is no longer considered dead
Chris Lattner1adb6752008-11-28 00:27:14 +0000580 if (LoadInst *L = dyn_cast<LoadInst>(BBI)) {
Chris Lattner51d67ce2010-11-30 21:47:58 +0000581 LoadedLoc = AA->getLocation(L);
Nick Lewycky475d3d12010-01-03 04:39:07 +0000582 } else if (VAArgInst *V = dyn_cast<VAArgInst>(BBI)) {
Chris Lattner51d67ce2010-11-30 21:47:58 +0000583 LoadedLoc = AA->getLocation(V);
Chris Lattner60a8b3d2010-11-30 19:48:15 +0000584 } else if (MemTransferInst *MTI = dyn_cast<MemTransferInst>(BBI)) {
Chris Lattner51d67ce2010-11-30 21:47:58 +0000585 LoadedLoc = AA->getLocationForSource(MTI);
Chris Lattner60a8b3d2010-11-30 19:48:15 +0000586 } else {
587 // Not a loading instruction.
Chris Lattner1adb6752008-11-28 00:27:14 +0000588 continue;
Owen Anderson32c4a052007-07-12 21:41:30 +0000589 }
Duncan Sandsd65a4da2008-10-01 15:25:41 +0000590
Chris Lattner7fe08b62010-11-30 21:32:12 +0000591 // Remove any allocas from the DeadPointer set that are loaded, as this
592 // makes any stores above the access live.
Chris Lattner51d67ce2010-11-30 21:47:58 +0000593 RemoveAccessedObjects(LoadedLoc, DeadStackObjects);
Duncan Sandsd65a4da2008-10-01 15:25:41 +0000594
Chris Lattner7fe08b62010-11-30 21:32:12 +0000595 // If all of the allocas were clobbered by the access then we're not going
596 // to find anything else to process.
597 if (DeadStackObjects.empty())
598 break;
Owen Anderson32c4a052007-07-12 21:41:30 +0000599 }
600
601 return MadeChange;
602}
603
Chris Lattner7fe08b62010-11-30 21:32:12 +0000604/// RemoveAccessedObjects - Check to see if the specified location may alias any
605/// of the stack objects in the DeadStackObjects set. If so, they become live
606/// because the location is being loaded.
Chris Lattner51d67ce2010-11-30 21:47:58 +0000607void DSE::RemoveAccessedObjects(const AliasAnalysis::Location &LoadedLoc,
Chris Lattner7fe08b62010-11-30 21:32:12 +0000608 SmallPtrSet<Value*, 16> &DeadStackObjects) {
Chris Lattner51d67ce2010-11-30 21:47:58 +0000609 const Value *UnderlyingPointer = LoadedLoc.Ptr->getUnderlyingObject();
Chris Lattner7fe08b62010-11-30 21:32:12 +0000610
611 // A constant can't be in the dead pointer set.
612 if (isa<Constant>(UnderlyingPointer))
Chris Lattnerf80b3992010-11-30 21:38:30 +0000613 return;
Chris Lattner7fe08b62010-11-30 21:32:12 +0000614
615 // If the kill pointer can be easily reduced to an alloca, don't bother doing
616 // extraneous AA queries.
Chris Lattnerf80b3992010-11-30 21:38:30 +0000617 if (isa<AllocaInst>(UnderlyingPointer) || isa<Argument>(UnderlyingPointer)) {
Chris Lattner51d67ce2010-11-30 21:47:58 +0000618 DeadStackObjects.erase(const_cast<Value*>(UnderlyingPointer));
Chris Lattnerf80b3992010-11-30 21:38:30 +0000619 return;
Owen Andersonddf4aee2007-08-08 18:38:28 +0000620 }
621
Chris Lattner7fe08b62010-11-30 21:32:12 +0000622 SmallVector<Value*, 16> NowLive;
Chris Lattner7fe08b62010-11-30 21:32:12 +0000623 for (SmallPtrSet<Value*, 16>::iterator I = DeadStackObjects.begin(),
624 E = DeadStackObjects.end(); I != E; ++I) {
Chris Lattner51d67ce2010-11-30 21:47:58 +0000625 // See if the loaded location could alias the stack location.
626 AliasAnalysis::Location StackLoc(*I, getPointerSize(*I, *AA));
627 if (!AA->isNoAlias(StackLoc, LoadedLoc))
Chris Lattner7fe08b62010-11-30 21:32:12 +0000628 NowLive.push_back(*I);
Owen Anderson32c4a052007-07-12 21:41:30 +0000629 }
630
Chris Lattner7fe08b62010-11-30 21:32:12 +0000631 for (SmallVector<Value*, 16>::iterator I = NowLive.begin(), E = NowLive.end();
Owen Anderson32c4a052007-07-12 21:41:30 +0000632 I != E; ++I)
Chris Lattner7fe08b62010-11-30 21:32:12 +0000633 DeadStackObjects.erase(*I);
Owen Anderson32c4a052007-07-12 21:41:30 +0000634}
635