blob: 867a06ad202d7f4525842b2d9e899b8d10134028 [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"
Chris Lattner903add82010-11-30 23:43:23 +000022#include "llvm/GlobalVariable.h"
Owen Anderson5e72db32007-07-11 00:46:18 +000023#include "llvm/Instructions.h"
Owen Anderson48d37802008-01-29 06:18:36 +000024#include "llvm/IntrinsicInst.h"
Owen Anderson5e72db32007-07-11 00:46:18 +000025#include "llvm/Pass.h"
Owen Andersonaa071722007-07-11 23:19:17 +000026#include "llvm/Analysis/AliasAnalysis.h"
Owen Anderson3f338972008-07-28 16:14:26 +000027#include "llvm/Analysis/Dominators.h"
Victor Hernandezf390e042009-10-27 20:05:49 +000028#include "llvm/Analysis/MemoryBuiltins.h"
Owen Anderson5e72db32007-07-11 00:46:18 +000029#include "llvm/Analysis/MemoryDependenceAnalysis.h"
Chris Lattnerc0f33792010-11-30 23:05:20 +000030#include "llvm/Analysis/ValueTracking.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"
Chris Lattnerca335e32010-12-06 21:13:51 +000033#include "llvm/Support/Debug.h"
34#include "llvm/ADT/SmallPtrSet.h"
35#include "llvm/ADT/Statistic.h"
Owen Anderson5e72db32007-07-11 00:46:18 +000036using namespace llvm;
37
38STATISTIC(NumFastStores, "Number of stores deleted");
39STATISTIC(NumFastOther , "Number of other instrs removed");
40
41namespace {
Chris Lattner2dd09db2009-09-02 06:11:42 +000042 struct DSE : public FunctionPass {
Chris Lattner51c28a92010-11-30 19:34:42 +000043 AliasAnalysis *AA;
44 MemoryDependenceAnalysis *MD;
45
Owen Anderson5e72db32007-07-11 00:46:18 +000046 static char ID; // Pass identification, replacement for typeid
Chris Lattner51c28a92010-11-30 19:34:42 +000047 DSE() : FunctionPass(ID), AA(0), MD(0) {
Owen Anderson6c18d1a2010-10-19 17:21:58 +000048 initializeDSEPass(*PassRegistry::getPassRegistry());
49 }
Owen Anderson5e72db32007-07-11 00:46:18 +000050
51 virtual bool runOnFunction(Function &F) {
Chris Lattner51c28a92010-11-30 19:34:42 +000052 AA = &getAnalysis<AliasAnalysis>();
53 MD = &getAnalysis<MemoryDependenceAnalysis>();
Chris Lattnerc053cbb2010-02-11 05:11:54 +000054 DominatorTree &DT = getAnalysis<DominatorTree>();
55
Chris Lattner51c28a92010-11-30 19:34:42 +000056 bool Changed = false;
Owen Anderson5e72db32007-07-11 00:46:18 +000057 for (Function::iterator I = F.begin(), E = F.end(); I != E; ++I)
Chris Lattnerc053cbb2010-02-11 05:11:54 +000058 // Only check non-dead blocks. Dead blocks may have strange pointer
59 // cycles that will confuse alias analysis.
60 if (DT.isReachableFromEntry(I))
61 Changed |= runOnBasicBlock(*I);
Chris Lattner51c28a92010-11-30 19:34:42 +000062
63 AA = 0; MD = 0;
Owen Anderson5e72db32007-07-11 00:46:18 +000064 return Changed;
65 }
Chris Lattnerde04e112008-11-29 01:43:36 +000066
Owen Anderson5e72db32007-07-11 00:46:18 +000067 bool runOnBasicBlock(BasicBlock &BB);
Chris Lattner9d179d92010-11-30 01:28:33 +000068 bool HandleFree(CallInst *F);
Chris Lattner1adb6752008-11-28 00:27:14 +000069 bool handleEndBlock(BasicBlock &BB);
Chris Lattner51d67ce2010-11-30 21:47:58 +000070 void RemoveAccessedObjects(const AliasAnalysis::Location &LoadedLoc,
71 SmallPtrSet<Value*, 16> &DeadStackObjects);
Owen Anderson5e72db32007-07-11 00:46:18 +000072
Owen Anderson5e72db32007-07-11 00:46:18 +000073 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
74 AU.setPreservesCFG();
Owen Anderson3f338972008-07-28 16:14:26 +000075 AU.addRequired<DominatorTree>();
Owen Andersonaa071722007-07-11 23:19:17 +000076 AU.addRequired<AliasAnalysis>();
Owen Anderson5e72db32007-07-11 00:46:18 +000077 AU.addRequired<MemoryDependenceAnalysis>();
Chris Lattner51c28a92010-11-30 19:34:42 +000078 AU.addPreserved<AliasAnalysis>();
Owen Anderson3f338972008-07-28 16:14:26 +000079 AU.addPreserved<DominatorTree>();
Owen Anderson5e72db32007-07-11 00:46:18 +000080 AU.addPreserved<MemoryDependenceAnalysis>();
81 }
82 };
Owen Anderson5e72db32007-07-11 00:46:18 +000083}
84
Dan Gohmand78c4002008-05-13 00:00:25 +000085char DSE::ID = 0;
Owen Anderson8ac477f2010-10-12 19:48:12 +000086INITIALIZE_PASS_BEGIN(DSE, "dse", "Dead Store Elimination", false, false)
87INITIALIZE_PASS_DEPENDENCY(DominatorTree)
88INITIALIZE_PASS_DEPENDENCY(MemoryDependenceAnalysis)
89INITIALIZE_AG_DEPENDENCY(AliasAnalysis)
90INITIALIZE_PASS_END(DSE, "dse", "Dead Store Elimination", false, false)
Dan Gohmand78c4002008-05-13 00:00:25 +000091
Owen Anderson10e52ed2007-08-01 06:36:51 +000092FunctionPass *llvm::createDeadStoreEliminationPass() { return new DSE(); }
Owen Anderson5e72db32007-07-11 00:46:18 +000093
Chris Lattner67122512010-11-30 21:58:14 +000094//===----------------------------------------------------------------------===//
95// Helper functions
96//===----------------------------------------------------------------------===//
97
98/// DeleteDeadInstruction - Delete this instruction. Before we do, go through
99/// and zero out all the operands of this instruction. If any of them become
100/// dead, delete them and the computation tree that feeds them.
101///
102/// If ValueSet is non-null, remove any deleted instructions from it as well.
103///
104static void DeleteDeadInstruction(Instruction *I,
105 MemoryDependenceAnalysis &MD,
106 SmallPtrSet<Value*, 16> *ValueSet = 0) {
107 SmallVector<Instruction*, 32> NowDeadInsts;
108
109 NowDeadInsts.push_back(I);
110 --NumFastOther;
111
112 // Before we touch this instruction, remove it from memdep!
113 do {
114 Instruction *DeadInst = NowDeadInsts.pop_back_val();
115 ++NumFastOther;
116
117 // This instruction is dead, zap it, in stages. Start by removing it from
118 // MemDep, which needs to know the operands and needs it to be in the
119 // function.
120 MD.removeInstruction(DeadInst);
121
122 for (unsigned op = 0, e = DeadInst->getNumOperands(); op != e; ++op) {
123 Value *Op = DeadInst->getOperand(op);
124 DeadInst->setOperand(op, 0);
125
126 // If this operand just became dead, add it to the NowDeadInsts list.
127 if (!Op->use_empty()) continue;
128
129 if (Instruction *OpI = dyn_cast<Instruction>(Op))
130 if (isInstructionTriviallyDead(OpI))
131 NowDeadInsts.push_back(OpI);
132 }
133
134 DeadInst->eraseFromParent();
135
136 if (ValueSet) ValueSet->erase(DeadInst);
137 } while (!NowDeadInsts.empty());
138}
139
140
Chris Lattner2227a8a2010-11-30 01:37:52 +0000141/// hasMemoryWrite - Does this instruction write some memory? This only returns
142/// true for things that we can analyze with other helpers below.
143static bool hasMemoryWrite(Instruction *I) {
Nick Lewycky90271472009-11-10 06:46:40 +0000144 if (isa<StoreInst>(I))
145 return true;
146 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I)) {
147 switch (II->getIntrinsicID()) {
Chris Lattner2764b4d2009-12-02 06:35:55 +0000148 default:
149 return false;
150 case Intrinsic::memset:
151 case Intrinsic::memmove:
152 case Intrinsic::memcpy:
153 case Intrinsic::init_trampoline:
154 case Intrinsic::lifetime_end:
155 return true;
Nick Lewycky90271472009-11-10 06:46:40 +0000156 }
157 }
158 return false;
159}
160
Chris Lattner58b779e2010-11-30 07:23:21 +0000161/// getLocForWrite - Return a Location stored to by the specified instruction.
162static AliasAnalysis::Location
163getLocForWrite(Instruction *Inst, AliasAnalysis &AA) {
164 if (StoreInst *SI = dyn_cast<StoreInst>(Inst))
165 return AA.getLocation(SI);
166
167 if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(Inst)) {
168 // memcpy/memmove/memset.
169 AliasAnalysis::Location Loc = AA.getLocationForDest(MI);
170 // If we don't have target data around, an unknown size in Location means
171 // that we should use the size of the pointee type. This isn't valid for
172 // memset/memcpy, which writes more than an i8.
173 if (Loc.Size == AliasAnalysis::UnknownSize && AA.getTargetData() == 0)
174 return AliasAnalysis::Location();
175 return Loc;
176 }
177
178 IntrinsicInst *II = dyn_cast<IntrinsicInst>(Inst);
179 if (II == 0) return AliasAnalysis::Location();
180
181 switch (II->getIntrinsicID()) {
182 default: return AliasAnalysis::Location(); // Unhandled intrinsic.
183 case Intrinsic::init_trampoline:
184 // If we don't have target data around, an unknown size in Location means
185 // that we should use the size of the pointee type. This isn't valid for
186 // init.trampoline, which writes more than an i8.
187 if (AA.getTargetData() == 0) return AliasAnalysis::Location();
188
189 // FIXME: We don't know the size of the trampoline, so we can't really
190 // handle it here.
191 return AliasAnalysis::Location(II->getArgOperand(0));
192 case Intrinsic::lifetime_end: {
193 uint64_t Len = cast<ConstantInt>(II->getArgOperand(0))->getZExtValue();
194 return AliasAnalysis::Location(II->getArgOperand(1), Len);
195 }
196 }
197}
198
Chris Lattner94fbdf32010-12-06 01:48:06 +0000199/// getLocForRead - Return the location read by the specified "hasMemoryWrite"
200/// instruction if any.
201static AliasAnalysis::Location
202getLocForRead(Instruction *Inst, AliasAnalysis &AA) {
203 assert(hasMemoryWrite(Inst) && "Unknown instruction case");
204
205 // The only instructions that both read and write are the mem transfer
206 // instructions (memcpy/memmove).
207 if (MemTransferInst *MTI = dyn_cast<MemTransferInst>(Inst))
208 return AA.getLocationForSource(MTI);
209 return AliasAnalysis::Location();
210}
211
212
Chris Lattner3590ef82010-11-30 05:30:45 +0000213/// isRemovable - If the value of this instruction and the memory it writes to
214/// is unused, may we delete this instruction?
215static bool isRemovable(Instruction *I) {
Chris Lattnerb63ba732010-11-30 19:12:10 +0000216 // Don't remove volatile stores.
Nick Lewycky90271472009-11-10 06:46:40 +0000217 if (StoreInst *SI = dyn_cast<StoreInst>(I))
218 return !SI->isVolatile();
Chris Lattnerb63ba732010-11-30 19:12:10 +0000219
220 IntrinsicInst *II = cast<IntrinsicInst>(I);
221 switch (II->getIntrinsicID()) {
222 default: assert(0 && "doesn't pass 'hasMemoryWrite' predicate");
223 case Intrinsic::lifetime_end:
224 // Never remove dead lifetime_end's, e.g. because it is followed by a
225 // free.
226 return false;
227 case Intrinsic::init_trampoline:
228 // Always safe to remove init_trampoline.
229 return true;
230
231 case Intrinsic::memset:
232 case Intrinsic::memmove:
233 case Intrinsic::memcpy:
234 // Don't remove volatile memory intrinsics.
235 return !cast<MemIntrinsic>(II)->isVolatile();
236 }
Nick Lewycky90271472009-11-10 06:46:40 +0000237}
238
Chris Lattner67122512010-11-30 21:58:14 +0000239/// getStoredPointerOperand - Return the pointer that is being written to.
240static Value *getStoredPointerOperand(Instruction *I) {
Nick Lewycky90271472009-11-10 06:46:40 +0000241 if (StoreInst *SI = dyn_cast<StoreInst>(I))
242 return SI->getPointerOperand();
243 if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(I))
Chris Lattner67122512010-11-30 21:58:14 +0000244 return MI->getDest();
Gabor Greif91f95892010-06-24 12:03:56 +0000245
246 IntrinsicInst *II = cast<IntrinsicInst>(I);
247 switch (II->getIntrinsicID()) {
Chris Lattner2764b4d2009-12-02 06:35:55 +0000248 default: assert(false && "Unexpected intrinsic!");
249 case Intrinsic::init_trampoline:
Gabor Greif91f95892010-06-24 12:03:56 +0000250 return II->getArgOperand(0);
Duncan Sands1925d3a2009-11-10 13:49:50 +0000251 }
Nick Lewycky90271472009-11-10 06:46:40 +0000252}
253
Chris Lattner51c28a92010-11-30 19:34:42 +0000254static uint64_t getPointerSize(Value *V, AliasAnalysis &AA) {
255 const TargetData *TD = AA.getTargetData();
256 if (TD == 0)
257 return AliasAnalysis::UnknownSize;
258
259 if (AllocaInst *A = dyn_cast<AllocaInst>(V)) {
260 // Get size information for the alloca
261 if (ConstantInt *C = dyn_cast<ConstantInt>(A->getArraySize()))
262 return C->getZExtValue() * TD->getTypeAllocSize(A->getAllocatedType());
263 return AliasAnalysis::UnknownSize;
264 }
265
266 assert(isa<Argument>(V) && "Expected AllocaInst or Argument!");
267 const PointerType *PT = cast<PointerType>(V->getType());
268 return TD->getTypeAllocSize(PT->getElementType());
269}
270
Chris Lattner903add82010-11-30 23:43:23 +0000271/// isObjectPointerWithTrustworthySize - Return true if the specified Value* is
272/// pointing to an object with a pointer size we can trust.
273static bool isObjectPointerWithTrustworthySize(const Value *V) {
274 if (const AllocaInst *AI = dyn_cast<AllocaInst>(V))
275 return !AI->isArrayAllocation();
276 if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(V))
Chris Lattner4dc53e32010-12-06 21:48:10 +0000277 return !GV->mayBeOverridden();
Chris Lattner903add82010-11-30 23:43:23 +0000278 if (const Argument *A = dyn_cast<Argument>(V))
279 return A->hasByValAttr();
280 return false;
281}
Chris Lattner51c28a92010-11-30 19:34:42 +0000282
Chris Lattner58b779e2010-11-30 07:23:21 +0000283/// isCompleteOverwrite - Return true if a store to the 'Later' location
284/// completely overwrites a store to the 'Earlier' location.
285static bool isCompleteOverwrite(const AliasAnalysis::Location &Later,
286 const AliasAnalysis::Location &Earlier,
Chris Lattner77d79fa2010-11-30 19:28:23 +0000287 AliasAnalysis &AA) {
Chris Lattnerc0f33792010-11-30 23:05:20 +0000288 const Value *P1 = Earlier.Ptr->stripPointerCasts();
289 const Value *P2 = Later.Ptr->stripPointerCasts();
Chris Lattner58b779e2010-11-30 07:23:21 +0000290
Chris Lattnerc0f33792010-11-30 23:05:20 +0000291 // If the start pointers are the same, we just have to compare sizes to see if
292 // the later store was larger than the earlier store.
293 if (P1 == P2) {
294 // If we don't know the sizes of either access, then we can't do a
295 // comparison.
296 if (Later.Size == AliasAnalysis::UnknownSize ||
297 Earlier.Size == AliasAnalysis::UnknownSize) {
298 // If we have no TargetData information around, then the size of the store
299 // is inferrable from the pointee type. If they are the same type, then
300 // we know that the store is safe.
301 if (AA.getTargetData() == 0)
302 return Later.Ptr->getType() == Earlier.Ptr->getType();
303 return false;
304 }
305
306 // Make sure that the Later size is >= the Earlier size.
307 if (Later.Size < Earlier.Size)
308 return false;
309 return true;
Chris Lattner77d79fa2010-11-30 19:28:23 +0000310 }
Chris Lattner58b779e2010-11-30 07:23:21 +0000311
Chris Lattnerc0f33792010-11-30 23:05:20 +0000312 // Otherwise, we have to have size information, and the later store has to be
313 // larger than the earlier one.
314 if (Later.Size == AliasAnalysis::UnknownSize ||
315 Earlier.Size == AliasAnalysis::UnknownSize ||
Chris Lattner903add82010-11-30 23:43:23 +0000316 Later.Size <= Earlier.Size || AA.getTargetData() == 0)
Chris Lattner58b779e2010-11-30 07:23:21 +0000317 return false;
318
Chris Lattner903add82010-11-30 23:43:23 +0000319 // Check to see if the later store is to the entire object (either a global,
320 // an alloca, or a byval argument). If so, then it clearly overwrites any
321 // other store to the same object.
Chris Lattnerc0f33792010-11-30 23:05:20 +0000322 const TargetData &TD = *AA.getTargetData();
323
Dan Gohman0f124e12011-01-24 18:53:32 +0000324 const Value *UO1 = GetUnderlyingObject(P1, &TD),
325 *UO2 = GetUnderlyingObject(P2, &TD);
Chris Lattner903add82010-11-30 23:43:23 +0000326
327 // If we can't resolve the same pointers to the same object, then we can't
328 // analyze them at all.
329 if (UO1 != UO2)
330 return false;
331
332 // If the "Later" store is to a recognizable object, get its size.
333 if (isObjectPointerWithTrustworthySize(UO2)) {
334 uint64_t ObjectSize =
335 TD.getTypeAllocSize(cast<PointerType>(UO2->getType())->getElementType());
336 if (ObjectSize == Later.Size)
337 return true;
338 }
339
Chris Lattnerc0f33792010-11-30 23:05:20 +0000340 // Okay, we have stores to two completely different pointers. Try to
341 // decompose the pointer into a "base + constant_offset" form. If the base
342 // pointers are equal, then we can reason about the two stores.
343 int64_t Off1 = 0, Off2 = 0;
344 const Value *BP1 = GetPointerBaseWithConstantOffset(P1, Off1, TD);
345 const Value *BP2 = GetPointerBaseWithConstantOffset(P2, Off2, TD);
346
347 // If the base pointers still differ, we have two completely different stores.
348 if (BP1 != BP2)
349 return false;
350
351 // Otherwise, we might have a situation like:
352 // store i16 -> P + 1 Byte
353 // store i32 -> P
354 // In this case, we see if the later store completely overlaps all bytes
355 // stored by the previous store.
356 if (Off1 < Off2 || // Earlier starts before Later.
357 Off1+Earlier.Size > Off2+Later.Size) // Earlier goes beyond Later.
358 return false;
359 // Otherwise, we have complete overlap.
Chris Lattner58b779e2010-11-30 07:23:21 +0000360 return true;
Nick Lewycky90271472009-11-10 06:46:40 +0000361}
362
Chris Lattner94fbdf32010-12-06 01:48:06 +0000363/// isPossibleSelfRead - If 'Inst' might be a self read (i.e. a noop copy of a
364/// memory region into an identical pointer) then it doesn't actually make its
365/// input dead in the traditional sense. Consider this case:
366///
367/// memcpy(A <- B)
368/// memcpy(A <- A)
369///
370/// In this case, the second store to A does not make the first store to A dead.
371/// The usual situation isn't an explicit A<-A store like this (which can be
372/// trivially removed) but a case where two pointers may alias.
373///
374/// This function detects when it is unsafe to remove a dependent instruction
375/// because the DSE inducing instruction may be a self-read.
376static bool isPossibleSelfRead(Instruction *Inst,
377 const AliasAnalysis::Location &InstStoreLoc,
378 Instruction *DepWrite, AliasAnalysis &AA) {
379 // Self reads can only happen for instructions that read memory. Get the
380 // location read.
381 AliasAnalysis::Location InstReadLoc = getLocForRead(Inst, AA);
382 if (InstReadLoc.Ptr == 0) return false; // Not a reading instruction.
383
384 // If the read and written loc obviously don't alias, it isn't a read.
385 if (AA.isNoAlias(InstReadLoc, InstStoreLoc)) return false;
386
387 // Okay, 'Inst' may copy over itself. However, we can still remove a the
388 // DepWrite instruction if we can prove that it reads from the same location
389 // as Inst. This handles useful cases like:
390 // memcpy(A <- B)
391 // memcpy(A <- B)
392 // Here we don't know if A/B may alias, but we do know that B/B are must
393 // aliases, so removing the first memcpy is safe (assuming it writes <= #
394 // bytes as the second one.
395 AliasAnalysis::Location DepReadLoc = getLocForRead(DepWrite, AA);
396
397 if (DepReadLoc.Ptr && AA.isMustAlias(InstReadLoc.Ptr, DepReadLoc.Ptr))
398 return false;
399
400 // If DepWrite doesn't read memory or if we can't prove it is a must alias,
401 // then it can't be considered dead.
402 return true;
403}
404
Chris Lattner67122512010-11-30 21:58:14 +0000405
406//===----------------------------------------------------------------------===//
407// DSE Pass
408//===----------------------------------------------------------------------===//
409
Owen Anderson10e52ed2007-08-01 06:36:51 +0000410bool DSE::runOnBasicBlock(BasicBlock &BB) {
Owen Anderson5e72db32007-07-11 00:46:18 +0000411 bool MadeChange = false;
412
Chris Lattner49162672009-09-02 06:31:02 +0000413 // Do a top-down walk on the BB.
Chris Lattnerf2a8ba42008-11-28 21:29:52 +0000414 for (BasicBlock::iterator BBI = BB.begin(), BBE = BB.end(); BBI != BBE; ) {
415 Instruction *Inst = BBI++;
416
Chris Lattner9d179d92010-11-30 01:28:33 +0000417 // Handle 'free' calls specially.
418 if (CallInst *F = isFreeCall(Inst)) {
419 MadeChange |= HandleFree(F);
420 continue;
421 }
422
Chris Lattner2227a8a2010-11-30 01:37:52 +0000423 // If we find something that writes memory, get its memory dependence.
424 if (!hasMemoryWrite(Inst))
Owen Anderson0aecf0e2007-08-08 04:52:29 +0000425 continue;
Chris Lattnerd4f10902010-11-30 00:01:19 +0000426
Chris Lattner51c28a92010-11-30 19:34:42 +0000427 MemDepResult InstDep = MD->getDependency(Inst);
Chris Lattnerf2a8ba42008-11-28 21:29:52 +0000428
Chris Lattnerd4f10902010-11-30 00:01:19 +0000429 // Ignore non-local store liveness.
Chris Lattner57e91ea2008-12-06 00:53:22 +0000430 // FIXME: cross-block DSE would be fun. :)
Chris Lattner58b779e2010-11-30 07:23:21 +0000431 if (InstDep.isNonLocal() ||
432 // Ignore self dependence, which happens in the entry block of the
433 // function.
434 InstDep.getInst() == Inst)
435 continue;
Chris Lattner9d179d92010-11-30 01:28:33 +0000436
Chris Lattner57e91ea2008-12-06 00:53:22 +0000437 // If we're storing the same value back to a pointer that we just
438 // loaded from, then the store can be removed.
Nick Lewycky90271472009-11-10 06:46:40 +0000439 if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
440 if (LoadInst *DepLoad = dyn_cast<LoadInst>(InstDep.getInst())) {
441 if (SI->getPointerOperand() == DepLoad->getPointerOperand() &&
Chris Lattnerc3c754f2010-11-30 00:12:39 +0000442 SI->getOperand(0) == DepLoad && !SI->isVolatile()) {
Chris Lattnerca335e32010-12-06 21:13:51 +0000443 DEBUG(dbgs() << "DSE: Remove Store Of Load from same pointer:\n "
444 << "LOAD: " << *DepLoad << "\n STORE: " << *SI << '\n');
445
Nick Lewycky90271472009-11-10 06:46:40 +0000446 // DeleteDeadInstruction can delete the current instruction. Save BBI
447 // in case we need it.
448 WeakVH NextInst(BBI);
449
Chris Lattner67122512010-11-30 21:58:14 +0000450 DeleteDeadInstruction(SI, *MD);
Nick Lewycky90271472009-11-10 06:46:40 +0000451
452 if (NextInst == 0) // Next instruction deleted.
453 BBI = BB.begin();
454 else if (BBI != BB.begin()) // Revisit this instruction if possible.
455 --BBI;
Dan Gohmand2d1ae12010-06-22 15:08:57 +0000456 ++NumFastStores;
Nick Lewycky90271472009-11-10 06:46:40 +0000457 MadeChange = true;
458 continue;
459 }
Chris Lattner0e3d6332008-12-05 21:04:20 +0000460 }
Owen Anderson5e72db32007-07-11 00:46:18 +0000461 }
Chris Lattner3590ef82010-11-30 05:30:45 +0000462
Chris Lattner58b779e2010-11-30 07:23:21 +0000463 // Figure out what location is being stored to.
Chris Lattner51c28a92010-11-30 19:34:42 +0000464 AliasAnalysis::Location Loc = getLocForWrite(Inst, *AA);
Chris Lattner58b779e2010-11-30 07:23:21 +0000465
466 // If we didn't get a useful location, fail.
467 if (Loc.Ptr == 0)
468 continue;
469
470 while (!InstDep.isNonLocal()) {
471 // Get the memory clobbered by the instruction we depend on. MemDep will
472 // skip any instructions that 'Loc' clearly doesn't interact with. If we
473 // end up depending on a may- or must-aliased load, then we can't optimize
474 // away the store and we bail out. However, if we depend on on something
475 // that overwrites the memory location we *can* potentially optimize it.
476 //
477 // Find out what memory location the dependant instruction stores.
478 Instruction *DepWrite = InstDep.getInst();
Chris Lattner51c28a92010-11-30 19:34:42 +0000479 AliasAnalysis::Location DepLoc = getLocForWrite(DepWrite, *AA);
Chris Lattner58b779e2010-11-30 07:23:21 +0000480 // If we didn't get a useful location, or if it isn't a size, bail out.
481 if (DepLoc.Ptr == 0)
482 break;
483
Chris Lattner94fbdf32010-12-06 01:48:06 +0000484 // If we find a write that is a) removable (i.e., non-volatile), b) is
485 // completely obliterated by the store to 'Loc', and c) which we know that
486 // 'Inst' doesn't load from, then we can remove it.
487 if (isRemovable(DepWrite) && isCompleteOverwrite(Loc, DepLoc, *AA) &&
488 !isPossibleSelfRead(Inst, Loc, DepWrite, *AA)) {
Chris Lattnerca335e32010-12-06 21:13:51 +0000489 DEBUG(dbgs() << "DSE: Remove Dead Store:\n DEAD: "
490 << *DepWrite << "\n KILLER: " << *Inst << '\n');
491
Chris Lattner58b779e2010-11-30 07:23:21 +0000492 // Delete the store and now-dead instructions that feed it.
Chris Lattner67122512010-11-30 21:58:14 +0000493 DeleteDeadInstruction(DepWrite, *MD);
Chris Lattner58b779e2010-11-30 07:23:21 +0000494 ++NumFastStores;
495 MadeChange = true;
496
497 // DeleteDeadInstruction can delete the current instruction in loop
498 // cases, reset BBI.
499 BBI = Inst;
500 if (BBI != BB.begin())
501 --BBI;
502 break;
503 }
504
Chris Lattnerd4f10902010-11-30 00:01:19 +0000505 // If this is a may-aliased store that is clobbering the store value, we
506 // can keep searching past it for another must-aliased pointer that stores
507 // to the same location. For example, in:
508 // store -> P
509 // store -> Q
510 // store -> P
511 // we can remove the first store to P even though we don't know if P and Q
512 // alias.
Chris Lattner58b779e2010-11-30 07:23:21 +0000513 if (DepWrite == &BB.front()) break;
514
515 // Can't look past this instruction if it might read 'Loc'.
Chris Lattner51c28a92010-11-30 19:34:42 +0000516 if (AA->getModRefInfo(DepWrite, Loc) & AliasAnalysis::Ref)
Chris Lattner58b779e2010-11-30 07:23:21 +0000517 break;
Chris Lattner3590ef82010-11-30 05:30:45 +0000518
Chris Lattner51c28a92010-11-30 19:34:42 +0000519 InstDep = MD->getPointerDependencyFrom(Loc, false, DepWrite, &BB);
Owen Anderson2b2bd282009-10-28 07:05:35 +0000520 }
Owen Anderson5e72db32007-07-11 00:46:18 +0000521 }
522
Chris Lattnerf2a8ba42008-11-28 21:29:52 +0000523 // If this block ends in a return, unwind, or unreachable, all allocas are
524 // dead at its end, which means stores to them are also dead.
Owen Anderson32c4a052007-07-12 21:41:30 +0000525 if (BB.getTerminator()->getNumSuccessors() == 0)
Chris Lattner1adb6752008-11-28 00:27:14 +0000526 MadeChange |= handleEndBlock(BB);
Owen Anderson5e72db32007-07-11 00:46:18 +0000527
528 return MadeChange;
529}
530
Chris Lattner9d179d92010-11-30 01:28:33 +0000531/// HandleFree - Handle frees of entire structures whose dependency is a store
532/// to a field of that structure.
533bool DSE::HandleFree(CallInst *F) {
Chris Lattner51c28a92010-11-30 19:34:42 +0000534 MemDepResult Dep = MD->getDependency(F);
Dan Gohmand4b7fff2010-11-12 02:19:17 +0000535 do {
Chris Lattner9d179d92010-11-30 01:28:33 +0000536 if (Dep.isNonLocal()) return false;
537
Dan Gohmand4b7fff2010-11-12 02:19:17 +0000538 Instruction *Dependency = Dep.getInst();
Chris Lattner3590ef82010-11-30 05:30:45 +0000539 if (!hasMemoryWrite(Dependency) || !isRemovable(Dependency))
Dan Gohmand4b7fff2010-11-12 02:19:17 +0000540 return false;
Owen Andersond4451de2007-07-12 18:08:51 +0000541
Chris Lattner67122512010-11-30 21:58:14 +0000542 Value *DepPointer =
Dan Gohmana4fcd242010-12-15 20:02:24 +0000543 GetUnderlyingObject(getStoredPointerOperand(Dependency));
Duncan Sandsfe3bef02008-01-20 10:49:23 +0000544
Dan Gohmand4b7fff2010-11-12 02:19:17 +0000545 // Check for aliasing.
Chris Lattner94fbdf32010-12-06 01:48:06 +0000546 if (!AA->isMustAlias(F->getArgOperand(0), DepPointer))
Dan Gohmand4b7fff2010-11-12 02:19:17 +0000547 return false;
Owen Andersonaa071722007-07-11 23:19:17 +0000548
Dan Gohmand4b7fff2010-11-12 02:19:17 +0000549 // DCE instructions only used to calculate that store
Chris Lattner67122512010-11-30 21:58:14 +0000550 DeleteDeadInstruction(Dependency, *MD);
Dan Gohmand4b7fff2010-11-12 02:19:17 +0000551 ++NumFastStores;
552
553 // Inst's old Dependency is now deleted. Compute the next dependency,
554 // which may also be dead, as in
555 // s[0] = 0;
556 // s[1] = 0; // This has just been deleted.
557 // free(s);
Chris Lattner51c28a92010-11-30 19:34:42 +0000558 Dep = MD->getDependency(F);
Dan Gohmand4b7fff2010-11-12 02:19:17 +0000559 } while (!Dep.isNonLocal());
Chris Lattner9d179d92010-11-30 01:28:33 +0000560
Chris Lattner1adb6752008-11-28 00:27:14 +0000561 return true;
Owen Andersonaa071722007-07-11 23:19:17 +0000562}
563
Owen Andersone3590582007-08-02 18:11:11 +0000564/// handleEndBlock - Remove dead stores to stack-allocated locations in the
Owen Anderson52aaabf2007-08-08 17:50:09 +0000565/// function end block. Ex:
566/// %A = alloca i32
567/// ...
568/// store i32 1, i32* %A
569/// ret void
Chris Lattner1adb6752008-11-28 00:27:14 +0000570bool DSE::handleEndBlock(BasicBlock &BB) {
Owen Anderson32c4a052007-07-12 21:41:30 +0000571 bool MadeChange = false;
572
Chris Lattner7fe08b62010-11-30 21:32:12 +0000573 // Keep track of all of the stack objects that are dead at the end of the
574 // function.
575 SmallPtrSet<Value*, 16> DeadStackObjects;
Owen Anderson32c4a052007-07-12 21:41:30 +0000576
Chris Lattner1adb6752008-11-28 00:27:14 +0000577 // Find all of the alloca'd pointers in the entry block.
Owen Anderson32c4a052007-07-12 21:41:30 +0000578 BasicBlock *Entry = BB.getParent()->begin();
579 for (BasicBlock::iterator I = Entry->begin(), E = Entry->end(); I != E; ++I)
580 if (AllocaInst *AI = dyn_cast<AllocaInst>(I))
Chris Lattner7fe08b62010-11-30 21:32:12 +0000581 DeadStackObjects.insert(AI);
Chris Lattner1adb6752008-11-28 00:27:14 +0000582
583 // Treat byval arguments the same, stores to them are dead at the end of the
584 // function.
Owen Anderson48d37802008-01-29 06:18:36 +0000585 for (Function::arg_iterator AI = BB.getParent()->arg_begin(),
586 AE = BB.getParent()->arg_end(); AI != AE; ++AI)
587 if (AI->hasByValAttr())
Chris Lattner7fe08b62010-11-30 21:32:12 +0000588 DeadStackObjects.insert(AI);
Owen Anderson32c4a052007-07-12 21:41:30 +0000589
590 // Scan the basic block backwards
591 for (BasicBlock::iterator BBI = BB.end(); BBI != BB.begin(); ){
592 --BBI;
593
Chris Lattner60a8b3d2010-11-30 19:48:15 +0000594 // If we find a store, check to see if it points into a dead stack value.
595 if (hasMemoryWrite(BBI) && isRemovable(BBI)) {
596 // See through pointer-to-pointer bitcasts
Dan Gohmana4fcd242010-12-15 20:02:24 +0000597 Value *Pointer = GetUnderlyingObject(getStoredPointerOperand(BBI));
Duncan Sandsd65a4da2008-10-01 15:25:41 +0000598
Chris Lattner67122512010-11-30 21:58:14 +0000599 // Stores to stack values are valid candidates for removal.
Chris Lattner7fe08b62010-11-30 21:32:12 +0000600 if (DeadStackObjects.count(Pointer)) {
Chris Lattner60a8b3d2010-11-30 19:48:15 +0000601 Instruction *Dead = BBI++;
Chris Lattnerca335e32010-12-06 21:13:51 +0000602
603 DEBUG(dbgs() << "DSE: Dead Store at End of Block:\n DEAD: "
604 << *Dead << "\n Object: " << *Pointer << '\n');
605
606 // DCE instructions only used to calculate that store.
Chris Lattner67122512010-11-30 21:58:14 +0000607 DeleteDeadInstruction(Dead, *MD, &DeadStackObjects);
Chris Lattner60a8b3d2010-11-30 19:48:15 +0000608 ++NumFastStores;
609 MadeChange = true;
Owen Anderson48d37802008-01-29 06:18:36 +0000610 continue;
Chris Lattner60a8b3d2010-11-30 19:48:15 +0000611 }
Owen Anderson52aaabf2007-08-08 17:50:09 +0000612 }
613
Chris Lattner60a8b3d2010-11-30 19:48:15 +0000614 // Remove any dead non-memory-mutating instructions.
615 if (isInstructionTriviallyDead(BBI)) {
616 Instruction *Inst = BBI++;
Chris Lattner67122512010-11-30 21:58:14 +0000617 DeleteDeadInstruction(Inst, *MD, &DeadStackObjects);
Chris Lattner60a8b3d2010-11-30 19:48:15 +0000618 ++NumFastOther;
619 MadeChange = true;
620 continue;
621 }
622
623 if (AllocaInst *A = dyn_cast<AllocaInst>(BBI)) {
Chris Lattner7fe08b62010-11-30 21:32:12 +0000624 DeadStackObjects.erase(A);
Chris Lattner60a8b3d2010-11-30 19:48:15 +0000625 continue;
626 }
627
Chris Lattner127818d2010-11-30 21:18:46 +0000628 if (CallSite CS = cast<Value>(BBI)) {
629 // If this call does not access memory, it can't be loading any of our
630 // pointers.
631 if (AA->doesNotAccessMemory(CS))
632 continue;
633
634 unsigned NumModRef = 0, NumOther = 0;
635
636 // If the call might load from any of our allocas, then any store above
637 // the call is live.
638 SmallVector<Value*, 8> LiveAllocas;
Chris Lattner7fe08b62010-11-30 21:32:12 +0000639 for (SmallPtrSet<Value*, 16>::iterator I = DeadStackObjects.begin(),
640 E = DeadStackObjects.end(); I != E; ++I) {
Chris Lattner127818d2010-11-30 21:18:46 +0000641 // If we detect that our AA is imprecise, it's not worth it to scan the
642 // rest of the DeadPointers set. Just assume that the AA will return
643 // ModRef for everything, and go ahead and bail out.
644 if (NumModRef >= 16 && NumOther == 0)
645 return MadeChange;
646
647 // See if the call site touches it.
648 AliasAnalysis::ModRefResult A =
649 AA->getModRefInfo(CS, *I, getPointerSize(*I, *AA));
650
651 if (A == AliasAnalysis::ModRef)
652 ++NumModRef;
653 else
654 ++NumOther;
655
656 if (A == AliasAnalysis::ModRef || A == AliasAnalysis::Ref)
657 LiveAllocas.push_back(*I);
658 }
659
660 for (SmallVector<Value*, 8>::iterator I = LiveAllocas.begin(),
661 E = LiveAllocas.end(); I != E; ++I)
Chris Lattner7fe08b62010-11-30 21:32:12 +0000662 DeadStackObjects.erase(*I);
Chris Lattner127818d2010-11-30 21:18:46 +0000663
664 // If all of the allocas were clobbered by the call then we're not going
665 // to find anything else to process.
Chris Lattner7fe08b62010-11-30 21:32:12 +0000666 if (DeadStackObjects.empty())
Chris Lattner127818d2010-11-30 21:18:46 +0000667 return MadeChange;
668
669 continue;
670 }
Chris Lattner60a8b3d2010-11-30 19:48:15 +0000671
Chris Lattner51d67ce2010-11-30 21:47:58 +0000672 AliasAnalysis::Location LoadedLoc;
Owen Anderson32c4a052007-07-12 21:41:30 +0000673
674 // If we encounter a use of the pointer, it is no longer considered dead
Chris Lattner1adb6752008-11-28 00:27:14 +0000675 if (LoadInst *L = dyn_cast<LoadInst>(BBI)) {
Chris Lattner51d67ce2010-11-30 21:47:58 +0000676 LoadedLoc = AA->getLocation(L);
Nick Lewycky475d3d12010-01-03 04:39:07 +0000677 } else if (VAArgInst *V = dyn_cast<VAArgInst>(BBI)) {
Chris Lattner51d67ce2010-11-30 21:47:58 +0000678 LoadedLoc = AA->getLocation(V);
Chris Lattner60a8b3d2010-11-30 19:48:15 +0000679 } else if (MemTransferInst *MTI = dyn_cast<MemTransferInst>(BBI)) {
Chris Lattner51d67ce2010-11-30 21:47:58 +0000680 LoadedLoc = AA->getLocationForSource(MTI);
Chris Lattner60a8b3d2010-11-30 19:48:15 +0000681 } else {
682 // Not a loading instruction.
Chris Lattner1adb6752008-11-28 00:27:14 +0000683 continue;
Owen Anderson32c4a052007-07-12 21:41:30 +0000684 }
Duncan Sandsd65a4da2008-10-01 15:25:41 +0000685
Chris Lattner7fe08b62010-11-30 21:32:12 +0000686 // Remove any allocas from the DeadPointer set that are loaded, as this
687 // makes any stores above the access live.
Chris Lattner51d67ce2010-11-30 21:47:58 +0000688 RemoveAccessedObjects(LoadedLoc, DeadStackObjects);
Duncan Sandsd65a4da2008-10-01 15:25:41 +0000689
Chris Lattner7fe08b62010-11-30 21:32:12 +0000690 // If all of the allocas were clobbered by the access then we're not going
691 // to find anything else to process.
692 if (DeadStackObjects.empty())
693 break;
Owen Anderson32c4a052007-07-12 21:41:30 +0000694 }
695
696 return MadeChange;
697}
698
Chris Lattner7fe08b62010-11-30 21:32:12 +0000699/// RemoveAccessedObjects - Check to see if the specified location may alias any
700/// of the stack objects in the DeadStackObjects set. If so, they become live
701/// because the location is being loaded.
Chris Lattner51d67ce2010-11-30 21:47:58 +0000702void DSE::RemoveAccessedObjects(const AliasAnalysis::Location &LoadedLoc,
Chris Lattner7fe08b62010-11-30 21:32:12 +0000703 SmallPtrSet<Value*, 16> &DeadStackObjects) {
Dan Gohmana4fcd242010-12-15 20:02:24 +0000704 const Value *UnderlyingPointer = GetUnderlyingObject(LoadedLoc.Ptr);
Chris Lattner7fe08b62010-11-30 21:32:12 +0000705
706 // A constant can't be in the dead pointer set.
707 if (isa<Constant>(UnderlyingPointer))
Chris Lattnerf80b3992010-11-30 21:38:30 +0000708 return;
Chris Lattner7fe08b62010-11-30 21:32:12 +0000709
710 // If the kill pointer can be easily reduced to an alloca, don't bother doing
711 // extraneous AA queries.
Chris Lattnerf80b3992010-11-30 21:38:30 +0000712 if (isa<AllocaInst>(UnderlyingPointer) || isa<Argument>(UnderlyingPointer)) {
Chris Lattner51d67ce2010-11-30 21:47:58 +0000713 DeadStackObjects.erase(const_cast<Value*>(UnderlyingPointer));
Chris Lattnerf80b3992010-11-30 21:38:30 +0000714 return;
Owen Andersonddf4aee2007-08-08 18:38:28 +0000715 }
716
Chris Lattner7fe08b62010-11-30 21:32:12 +0000717 SmallVector<Value*, 16> NowLive;
Chris Lattner7fe08b62010-11-30 21:32:12 +0000718 for (SmallPtrSet<Value*, 16>::iterator I = DeadStackObjects.begin(),
719 E = DeadStackObjects.end(); I != E; ++I) {
Chris Lattner51d67ce2010-11-30 21:47:58 +0000720 // See if the loaded location could alias the stack location.
721 AliasAnalysis::Location StackLoc(*I, getPointerSize(*I, *AA));
722 if (!AA->isNoAlias(StackLoc, LoadedLoc))
Chris Lattner7fe08b62010-11-30 21:32:12 +0000723 NowLive.push_back(*I);
Owen Anderson32c4a052007-07-12 21:41:30 +0000724 }
725
Chris Lattner7fe08b62010-11-30 21:32:12 +0000726 for (SmallVector<Value*, 16>::iterator I = NowLive.begin(), E = NowLive.end();
Owen Anderson32c4a052007-07-12 21:41:30 +0000727 I != E; ++I)
Chris Lattner7fe08b62010-11-30 21:32:12 +0000728 DeadStackObjects.erase(*I);
Owen Anderson32c4a052007-07-12 21:41:30 +0000729}
730