blob: f498cc79349f733c8b9995eeca39629648d50f6c [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"
Nick Lewycky32f80512011-10-22 21:59:35 +000027#include "llvm/Analysis/CaptureTracking.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"
Chris Lattnerca335e32010-12-06 21:13:51 +000034#include "llvm/Support/Debug.h"
35#include "llvm/ADT/SmallPtrSet.h"
36#include "llvm/ADT/Statistic.h"
Nick Lewyckyf2905af2011-11-05 10:48:42 +000037#include "llvm/ADT/STLExtras.h"
Owen Anderson5e72db32007-07-11 00:46:18 +000038using namespace llvm;
39
40STATISTIC(NumFastStores, "Number of stores deleted");
41STATISTIC(NumFastOther , "Number of other instrs removed");
42
43namespace {
Chris Lattner2dd09db2009-09-02 06:11:42 +000044 struct DSE : public FunctionPass {
Chris Lattner51c28a92010-11-30 19:34:42 +000045 AliasAnalysis *AA;
46 MemoryDependenceAnalysis *MD;
Nick Lewyckyf2905af2011-11-05 10:48:42 +000047 DominatorTree *DT;
Chris Lattner51c28a92010-11-30 19:34:42 +000048
Owen Anderson5e72db32007-07-11 00:46:18 +000049 static char ID; // Pass identification, replacement for typeid
Nick Lewyckyf2905af2011-11-05 10:48:42 +000050 DSE() : FunctionPass(ID), AA(0), MD(0), DT(0) {
Owen Anderson6c18d1a2010-10-19 17:21:58 +000051 initializeDSEPass(*PassRegistry::getPassRegistry());
52 }
Owen Anderson5e72db32007-07-11 00:46:18 +000053
54 virtual bool runOnFunction(Function &F) {
Chris Lattner51c28a92010-11-30 19:34:42 +000055 AA = &getAnalysis<AliasAnalysis>();
56 MD = &getAnalysis<MemoryDependenceAnalysis>();
Nick Lewyckyf2905af2011-11-05 10:48:42 +000057 DT = &getAnalysis<DominatorTree>();
Owen Anderson58704ee2011-09-06 18:14:09 +000058
Chris Lattner51c28a92010-11-30 19:34:42 +000059 bool Changed = false;
Owen Anderson5e72db32007-07-11 00:46:18 +000060 for (Function::iterator I = F.begin(), E = F.end(); I != E; ++I)
Chris Lattnerc053cbb2010-02-11 05:11:54 +000061 // Only check non-dead blocks. Dead blocks may have strange pointer
62 // cycles that will confuse alias analysis.
Nick Lewyckyf2905af2011-11-05 10:48:42 +000063 if (DT->isReachableFromEntry(I))
Chris Lattnerc053cbb2010-02-11 05:11:54 +000064 Changed |= runOnBasicBlock(*I);
Owen Anderson58704ee2011-09-06 18:14:09 +000065
Nick Lewyckyf2905af2011-11-05 10:48:42 +000066 AA = 0; MD = 0; DT = 0;
Owen Anderson5e72db32007-07-11 00:46:18 +000067 return Changed;
68 }
Owen Anderson58704ee2011-09-06 18:14:09 +000069
Owen Anderson5e72db32007-07-11 00:46:18 +000070 bool runOnBasicBlock(BasicBlock &BB);
Chris Lattner9d179d92010-11-30 01:28:33 +000071 bool HandleFree(CallInst *F);
Chris Lattner1adb6752008-11-28 00:27:14 +000072 bool handleEndBlock(BasicBlock &BB);
Chris Lattner51d67ce2010-11-30 21:47:58 +000073 void RemoveAccessedObjects(const AliasAnalysis::Location &LoadedLoc,
74 SmallPtrSet<Value*, 16> &DeadStackObjects);
Owen Anderson5e72db32007-07-11 00:46:18 +000075
Owen Anderson5e72db32007-07-11 00:46:18 +000076 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
77 AU.setPreservesCFG();
Owen Anderson3f338972008-07-28 16:14:26 +000078 AU.addRequired<DominatorTree>();
Owen Andersonaa071722007-07-11 23:19:17 +000079 AU.addRequired<AliasAnalysis>();
Owen Anderson5e72db32007-07-11 00:46:18 +000080 AU.addRequired<MemoryDependenceAnalysis>();
Chris Lattner51c28a92010-11-30 19:34:42 +000081 AU.addPreserved<AliasAnalysis>();
Owen Anderson3f338972008-07-28 16:14:26 +000082 AU.addPreserved<DominatorTree>();
Owen Anderson5e72db32007-07-11 00:46:18 +000083 AU.addPreserved<MemoryDependenceAnalysis>();
84 }
85 };
Owen Anderson5e72db32007-07-11 00:46:18 +000086}
87
Dan Gohmand78c4002008-05-13 00:00:25 +000088char DSE::ID = 0;
Owen Anderson8ac477f2010-10-12 19:48:12 +000089INITIALIZE_PASS_BEGIN(DSE, "dse", "Dead Store Elimination", false, false)
90INITIALIZE_PASS_DEPENDENCY(DominatorTree)
91INITIALIZE_PASS_DEPENDENCY(MemoryDependenceAnalysis)
92INITIALIZE_AG_DEPENDENCY(AliasAnalysis)
93INITIALIZE_PASS_END(DSE, "dse", "Dead Store Elimination", false, false)
Dan Gohmand78c4002008-05-13 00:00:25 +000094
Owen Anderson10e52ed2007-08-01 06:36:51 +000095FunctionPass *llvm::createDeadStoreEliminationPass() { return new DSE(); }
Owen Anderson5e72db32007-07-11 00:46:18 +000096
Chris Lattner67122512010-11-30 21:58:14 +000097//===----------------------------------------------------------------------===//
98// Helper functions
99//===----------------------------------------------------------------------===//
100
101/// DeleteDeadInstruction - Delete this instruction. Before we do, go through
102/// and zero out all the operands of this instruction. If any of them become
103/// dead, delete them and the computation tree that feeds them.
104///
105/// If ValueSet is non-null, remove any deleted instructions from it as well.
106///
107static void DeleteDeadInstruction(Instruction *I,
108 MemoryDependenceAnalysis &MD,
109 SmallPtrSet<Value*, 16> *ValueSet = 0) {
110 SmallVector<Instruction*, 32> NowDeadInsts;
Owen Anderson58704ee2011-09-06 18:14:09 +0000111
Chris Lattner67122512010-11-30 21:58:14 +0000112 NowDeadInsts.push_back(I);
113 --NumFastOther;
Owen Anderson58704ee2011-09-06 18:14:09 +0000114
Chris Lattner67122512010-11-30 21:58:14 +0000115 // Before we touch this instruction, remove it from memdep!
116 do {
117 Instruction *DeadInst = NowDeadInsts.pop_back_val();
118 ++NumFastOther;
Owen Anderson58704ee2011-09-06 18:14:09 +0000119
Chris Lattner67122512010-11-30 21:58:14 +0000120 // This instruction is dead, zap it, in stages. Start by removing it from
121 // MemDep, which needs to know the operands and needs it to be in the
122 // function.
123 MD.removeInstruction(DeadInst);
Owen Anderson58704ee2011-09-06 18:14:09 +0000124
Chris Lattner67122512010-11-30 21:58:14 +0000125 for (unsigned op = 0, e = DeadInst->getNumOperands(); op != e; ++op) {
126 Value *Op = DeadInst->getOperand(op);
127 DeadInst->setOperand(op, 0);
Owen Anderson58704ee2011-09-06 18:14:09 +0000128
Chris Lattner67122512010-11-30 21:58:14 +0000129 // If this operand just became dead, add it to the NowDeadInsts list.
130 if (!Op->use_empty()) continue;
Owen Anderson58704ee2011-09-06 18:14:09 +0000131
Chris Lattner67122512010-11-30 21:58:14 +0000132 if (Instruction *OpI = dyn_cast<Instruction>(Op))
133 if (isInstructionTriviallyDead(OpI))
134 NowDeadInsts.push_back(OpI);
135 }
Owen Anderson58704ee2011-09-06 18:14:09 +0000136
Chris Lattner67122512010-11-30 21:58:14 +0000137 DeadInst->eraseFromParent();
Owen Anderson58704ee2011-09-06 18:14:09 +0000138
Chris Lattner67122512010-11-30 21:58:14 +0000139 if (ValueSet) ValueSet->erase(DeadInst);
140 } while (!NowDeadInsts.empty());
141}
142
143
Chris Lattner2227a8a2010-11-30 01:37:52 +0000144/// hasMemoryWrite - Does this instruction write some memory? This only returns
145/// true for things that we can analyze with other helpers below.
146static bool hasMemoryWrite(Instruction *I) {
Nick Lewycky90271472009-11-10 06:46:40 +0000147 if (isa<StoreInst>(I))
148 return true;
149 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I)) {
150 switch (II->getIntrinsicID()) {
Chris Lattner2764b4d2009-12-02 06:35:55 +0000151 default:
152 return false;
153 case Intrinsic::memset:
154 case Intrinsic::memmove:
155 case Intrinsic::memcpy:
156 case Intrinsic::init_trampoline:
157 case Intrinsic::lifetime_end:
158 return true;
Nick Lewycky90271472009-11-10 06:46:40 +0000159 }
160 }
161 return false;
162}
163
Chris Lattner58b779e2010-11-30 07:23:21 +0000164/// getLocForWrite - Return a Location stored to by the specified instruction.
Eli Friedman72a93e52011-09-13 01:28:59 +0000165/// If isRemovable returns true, this function and getLocForRead completely
166/// describe the memory operations for this instruction.
Chris Lattner58b779e2010-11-30 07:23:21 +0000167static AliasAnalysis::Location
168getLocForWrite(Instruction *Inst, AliasAnalysis &AA) {
169 if (StoreInst *SI = dyn_cast<StoreInst>(Inst))
170 return AA.getLocation(SI);
Owen Anderson58704ee2011-09-06 18:14:09 +0000171
Chris Lattner58b779e2010-11-30 07:23:21 +0000172 if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(Inst)) {
173 // memcpy/memmove/memset.
174 AliasAnalysis::Location Loc = AA.getLocationForDest(MI);
175 // If we don't have target data around, an unknown size in Location means
176 // that we should use the size of the pointee type. This isn't valid for
177 // memset/memcpy, which writes more than an i8.
178 if (Loc.Size == AliasAnalysis::UnknownSize && AA.getTargetData() == 0)
179 return AliasAnalysis::Location();
180 return Loc;
181 }
Owen Anderson58704ee2011-09-06 18:14:09 +0000182
Chris Lattner58b779e2010-11-30 07:23:21 +0000183 IntrinsicInst *II = dyn_cast<IntrinsicInst>(Inst);
184 if (II == 0) return AliasAnalysis::Location();
Owen Anderson58704ee2011-09-06 18:14:09 +0000185
Chris Lattner58b779e2010-11-30 07:23:21 +0000186 switch (II->getIntrinsicID()) {
187 default: return AliasAnalysis::Location(); // Unhandled intrinsic.
188 case Intrinsic::init_trampoline:
189 // If we don't have target data around, an unknown size in Location means
190 // that we should use the size of the pointee type. This isn't valid for
191 // init.trampoline, which writes more than an i8.
192 if (AA.getTargetData() == 0) return AliasAnalysis::Location();
Owen Anderson58704ee2011-09-06 18:14:09 +0000193
Chris Lattner58b779e2010-11-30 07:23:21 +0000194 // FIXME: We don't know the size of the trampoline, so we can't really
195 // handle it here.
196 return AliasAnalysis::Location(II->getArgOperand(0));
197 case Intrinsic::lifetime_end: {
198 uint64_t Len = cast<ConstantInt>(II->getArgOperand(0))->getZExtValue();
199 return AliasAnalysis::Location(II->getArgOperand(1), Len);
200 }
201 }
202}
203
Chris Lattner94fbdf32010-12-06 01:48:06 +0000204/// getLocForRead - Return the location read by the specified "hasMemoryWrite"
205/// instruction if any.
Owen Anderson58704ee2011-09-06 18:14:09 +0000206static AliasAnalysis::Location
Chris Lattner94fbdf32010-12-06 01:48:06 +0000207getLocForRead(Instruction *Inst, AliasAnalysis &AA) {
208 assert(hasMemoryWrite(Inst) && "Unknown instruction case");
Owen Anderson58704ee2011-09-06 18:14:09 +0000209
Chris Lattner94fbdf32010-12-06 01:48:06 +0000210 // The only instructions that both read and write are the mem transfer
211 // instructions (memcpy/memmove).
212 if (MemTransferInst *MTI = dyn_cast<MemTransferInst>(Inst))
213 return AA.getLocationForSource(MTI);
214 return AliasAnalysis::Location();
215}
216
217
Chris Lattner3590ef82010-11-30 05:30:45 +0000218/// isRemovable - If the value of this instruction and the memory it writes to
219/// is unused, may we delete this instruction?
220static bool isRemovable(Instruction *I) {
Eli Friedman9a468152011-08-17 22:22:24 +0000221 // Don't remove volatile/atomic stores.
Nick Lewycky90271472009-11-10 06:46:40 +0000222 if (StoreInst *SI = dyn_cast<StoreInst>(I))
Eli Friedman9a468152011-08-17 22:22:24 +0000223 return SI->isUnordered();
Owen Anderson58704ee2011-09-06 18:14:09 +0000224
Chris Lattnerb63ba732010-11-30 19:12:10 +0000225 IntrinsicInst *II = cast<IntrinsicInst>(I);
226 switch (II->getIntrinsicID()) {
Craig Toppera2886c22012-02-07 05:05:23 +0000227 default: llvm_unreachable("doesn't pass 'hasMemoryWrite' predicate");
Chris Lattnerb63ba732010-11-30 19:12:10 +0000228 case Intrinsic::lifetime_end:
229 // Never remove dead lifetime_end's, e.g. because it is followed by a
230 // free.
231 return false;
232 case Intrinsic::init_trampoline:
233 // Always safe to remove init_trampoline.
234 return true;
Owen Anderson58704ee2011-09-06 18:14:09 +0000235
Chris Lattnerb63ba732010-11-30 19:12:10 +0000236 case Intrinsic::memset:
237 case Intrinsic::memmove:
238 case Intrinsic::memcpy:
239 // Don't remove volatile memory intrinsics.
240 return !cast<MemIntrinsic>(II)->isVolatile();
241 }
Nick Lewycky90271472009-11-10 06:46:40 +0000242}
243
Pete Cooper856977c2011-11-09 23:07:35 +0000244
245/// isShortenable - Returns true if this instruction can be safely shortened in
246/// length.
247static bool isShortenable(Instruction *I) {
248 // Don't shorten stores for now
249 if (isa<StoreInst>(I))
250 return false;
251
252 IntrinsicInst *II = cast<IntrinsicInst>(I);
253 switch (II->getIntrinsicID()) {
254 default: return false;
255 case Intrinsic::memset:
256 case Intrinsic::memcpy:
257 // Do shorten memory intrinsics.
258 return true;
259 }
260}
261
Chris Lattner67122512010-11-30 21:58:14 +0000262/// getStoredPointerOperand - Return the pointer that is being written to.
263static Value *getStoredPointerOperand(Instruction *I) {
Nick Lewycky90271472009-11-10 06:46:40 +0000264 if (StoreInst *SI = dyn_cast<StoreInst>(I))
265 return SI->getPointerOperand();
266 if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(I))
Chris Lattner67122512010-11-30 21:58:14 +0000267 return MI->getDest();
Gabor Greif91f95892010-06-24 12:03:56 +0000268
269 IntrinsicInst *II = cast<IntrinsicInst>(I);
270 switch (II->getIntrinsicID()) {
Craig Toppera2886c22012-02-07 05:05:23 +0000271 default: llvm_unreachable("Unexpected intrinsic!");
Chris Lattner2764b4d2009-12-02 06:35:55 +0000272 case Intrinsic::init_trampoline:
Gabor Greif91f95892010-06-24 12:03:56 +0000273 return II->getArgOperand(0);
Duncan Sands1925d3a2009-11-10 13:49:50 +0000274 }
Nick Lewycky90271472009-11-10 06:46:40 +0000275}
276
Nick Lewyckyc7f1e792011-11-16 03:49:48 +0000277static uint64_t getPointerSize(const Value *V, AliasAnalysis &AA) {
Chris Lattner51c28a92010-11-30 19:34:42 +0000278 const TargetData *TD = AA.getTargetData();
Nick Lewycky32f80512011-10-22 21:59:35 +0000279
Nick Lewyckyc7f1e792011-11-16 03:49:48 +0000280 if (const CallInst *CI = extractMallocCall(V)) {
281 if (const ConstantInt *C = dyn_cast<ConstantInt>(CI->getArgOperand(0)))
Nick Lewycky32f80512011-10-22 21:59:35 +0000282 return C->getZExtValue();
Nick Lewycky32f80512011-10-22 21:59:35 +0000283 }
284
Nuno Lopes300d6292012-05-10 17:14:00 +0000285 if (const CallInst *CI = extractCallocCall(V)) {
286 if (const ConstantInt *C1 = dyn_cast<ConstantInt>(CI->getArgOperand(0)))
287 if (const ConstantInt *C2 = dyn_cast<ConstantInt>(CI->getArgOperand(1)))
288 return (C1->getValue() * C2->getValue()).getZExtValue();
289 }
290
Chris Lattner51c28a92010-11-30 19:34:42 +0000291 if (TD == 0)
292 return AliasAnalysis::UnknownSize;
Owen Anderson58704ee2011-09-06 18:14:09 +0000293
Nick Lewyckyc7f1e792011-11-16 03:49:48 +0000294 if (const AllocaInst *A = dyn_cast<AllocaInst>(V)) {
Chris Lattner51c28a92010-11-30 19:34:42 +0000295 // Get size information for the alloca
Nick Lewyckyc7f1e792011-11-16 03:49:48 +0000296 if (const ConstantInt *C = dyn_cast<ConstantInt>(A->getArraySize()))
Chris Lattner51c28a92010-11-30 19:34:42 +0000297 return C->getZExtValue() * TD->getTypeAllocSize(A->getAllocatedType());
Chris Lattner51c28a92010-11-30 19:34:42 +0000298 }
Owen Anderson58704ee2011-09-06 18:14:09 +0000299
Nick Lewyckyc7f1e792011-11-16 03:49:48 +0000300 if (const Argument *A = dyn_cast<Argument>(V)) {
301 if (A->hasByValAttr())
302 if (PointerType *PT = dyn_cast<PointerType>(A->getType()))
303 return TD->getTypeAllocSize(PT->getElementType());
304 }
Chris Lattner51c28a92010-11-30 19:34:42 +0000305
Nick Lewyckyc7f1e792011-11-16 03:49:48 +0000306 if (const GlobalVariable *GV = dyn_cast<GlobalVariable>(V)) {
307 if (!GV->mayBeOverridden())
308 return TD->getTypeAllocSize(GV->getType()->getElementType());
309 }
310
311 return AliasAnalysis::UnknownSize;
Chris Lattner903add82010-11-30 23:43:23 +0000312}
Chris Lattner51c28a92010-11-30 19:34:42 +0000313
Pete Cooper856977c2011-11-09 23:07:35 +0000314namespace {
315 enum OverwriteResult
316 {
317 OverwriteComplete,
318 OverwriteEnd,
319 OverwriteUnknown
320 };
321}
322
323/// isOverwrite - Return 'OverwriteComplete' if a store to the 'Later' location
Chris Lattner58b779e2010-11-30 07:23:21 +0000324/// completely overwrites a store to the 'Earlier' location.
Pete Cooper39b52552012-02-28 05:06:24 +0000325/// 'OverwriteEnd' if the end of the 'Earlier' location is completely
326/// overwritten by 'Later', or 'OverwriteUnknown' if nothing can be determined
Pete Cooper856977c2011-11-09 23:07:35 +0000327static OverwriteResult isOverwrite(const AliasAnalysis::Location &Later,
328 const AliasAnalysis::Location &Earlier,
329 AliasAnalysis &AA,
Nick Lewyckyc7f1e792011-11-16 03:49:48 +0000330 int64_t &EarlierOff,
331 int64_t &LaterOff) {
Chris Lattnerc0f33792010-11-30 23:05:20 +0000332 const Value *P1 = Earlier.Ptr->stripPointerCasts();
333 const Value *P2 = Later.Ptr->stripPointerCasts();
Owen Anderson58704ee2011-09-06 18:14:09 +0000334
Chris Lattnerc0f33792010-11-30 23:05:20 +0000335 // If the start pointers are the same, we just have to compare sizes to see if
336 // the later store was larger than the earlier store.
337 if (P1 == P2) {
338 // If we don't know the sizes of either access, then we can't do a
339 // comparison.
340 if (Later.Size == AliasAnalysis::UnknownSize ||
341 Earlier.Size == AliasAnalysis::UnknownSize) {
342 // If we have no TargetData information around, then the size of the store
343 // is inferrable from the pointee type. If they are the same type, then
344 // we know that the store is safe.
Pete Cooper856977c2011-11-09 23:07:35 +0000345 if (AA.getTargetData() == 0 &&
346 Later.Ptr->getType() == Earlier.Ptr->getType())
347 return OverwriteComplete;
348
349 return OverwriteUnknown;
Chris Lattnerc0f33792010-11-30 23:05:20 +0000350 }
Owen Anderson58704ee2011-09-06 18:14:09 +0000351
Chris Lattnerc0f33792010-11-30 23:05:20 +0000352 // Make sure that the Later size is >= the Earlier size.
Pete Cooper856977c2011-11-09 23:07:35 +0000353 if (Later.Size >= Earlier.Size)
354 return OverwriteComplete;
Chris Lattner77d79fa2010-11-30 19:28:23 +0000355 }
Owen Anderson58704ee2011-09-06 18:14:09 +0000356
Chris Lattnerc0f33792010-11-30 23:05:20 +0000357 // Otherwise, we have to have size information, and the later store has to be
358 // larger than the earlier one.
359 if (Later.Size == AliasAnalysis::UnknownSize ||
360 Earlier.Size == AliasAnalysis::UnknownSize ||
Pete Cooper856977c2011-11-09 23:07:35 +0000361 AA.getTargetData() == 0)
362 return OverwriteUnknown;
Owen Anderson58704ee2011-09-06 18:14:09 +0000363
Chris Lattner903add82010-11-30 23:43:23 +0000364 // Check to see if the later store is to the entire object (either a global,
365 // an alloca, or a byval argument). If so, then it clearly overwrites any
366 // other store to the same object.
Chris Lattnerc0f33792010-11-30 23:05:20 +0000367 const TargetData &TD = *AA.getTargetData();
Owen Anderson58704ee2011-09-06 18:14:09 +0000368
Dan Gohman0f124e12011-01-24 18:53:32 +0000369 const Value *UO1 = GetUnderlyingObject(P1, &TD),
370 *UO2 = GetUnderlyingObject(P2, &TD);
Owen Anderson58704ee2011-09-06 18:14:09 +0000371
Chris Lattner903add82010-11-30 23:43:23 +0000372 // If we can't resolve the same pointers to the same object, then we can't
373 // analyze them at all.
374 if (UO1 != UO2)
Pete Cooper856977c2011-11-09 23:07:35 +0000375 return OverwriteUnknown;
Owen Anderson58704ee2011-09-06 18:14:09 +0000376
Chris Lattner903add82010-11-30 23:43:23 +0000377 // If the "Later" store is to a recognizable object, get its size.
Nick Lewyckyc7f1e792011-11-16 03:49:48 +0000378 uint64_t ObjectSize = getPointerSize(UO2, AA);
379 if (ObjectSize != AliasAnalysis::UnknownSize)
Pete Coopera4237c32011-11-10 20:22:08 +0000380 if (ObjectSize == Later.Size && ObjectSize >= Earlier.Size)
Pete Cooper856977c2011-11-09 23:07:35 +0000381 return OverwriteComplete;
Owen Anderson58704ee2011-09-06 18:14:09 +0000382
Chris Lattnerc0f33792010-11-30 23:05:20 +0000383 // Okay, we have stores to two completely different pointers. Try to
384 // decompose the pointer into a "base + constant_offset" form. If the base
385 // pointers are equal, then we can reason about the two stores.
Pete Cooper856977c2011-11-09 23:07:35 +0000386 EarlierOff = 0;
387 LaterOff = 0;
Bill Wendling19f33b92011-03-26 08:02:59 +0000388 const Value *BP1 = GetPointerBaseWithConstantOffset(P1, EarlierOff, TD);
389 const Value *BP2 = GetPointerBaseWithConstantOffset(P2, LaterOff, TD);
Owen Anderson58704ee2011-09-06 18:14:09 +0000390
Chris Lattnerc0f33792010-11-30 23:05:20 +0000391 // If the base pointers still differ, we have two completely different stores.
392 if (BP1 != BP2)
Pete Cooper856977c2011-11-09 23:07:35 +0000393 return OverwriteUnknown;
Bill Wendlingdb40b5c2011-03-26 01:20:37 +0000394
Bill Wendling19f33b92011-03-26 08:02:59 +0000395 // The later store completely overlaps the earlier store if:
Owen Anderson58704ee2011-09-06 18:14:09 +0000396 //
Bill Wendling19f33b92011-03-26 08:02:59 +0000397 // 1. Both start at the same offset and the later one's size is greater than
398 // or equal to the earlier one's, or
399 //
400 // |--earlier--|
401 // |-- later --|
Owen Anderson58704ee2011-09-06 18:14:09 +0000402 //
Bill Wendling19f33b92011-03-26 08:02:59 +0000403 // 2. The earlier store has an offset greater than the later offset, but which
404 // still lies completely within the later store.
405 //
406 // |--earlier--|
407 // |----- later ------|
Bill Wendling50341592011-03-30 21:37:19 +0000408 //
409 // We have to be careful here as *Off is signed while *.Size is unsigned.
Bill Wendlingb5139922011-03-26 09:32:07 +0000410 if (EarlierOff >= LaterOff &&
Pete Cooper856977c2011-11-09 23:07:35 +0000411 Later.Size > Earlier.Size &&
Bill Wendling50341592011-03-30 21:37:19 +0000412 uint64_t(EarlierOff - LaterOff) + Earlier.Size <= Later.Size)
Pete Cooper856977c2011-11-09 23:07:35 +0000413 return OverwriteComplete;
414
415 // The other interesting case is if the later store overwrites the end of
416 // the earlier store
417 //
418 // |--earlier--|
419 // |-- later --|
420 //
421 // In this case we may want to trim the size of earlier to avoid generating
422 // writes to addresses which will definitely be overwritten later
423 if (LaterOff > EarlierOff &&
424 LaterOff < int64_t(EarlierOff + Earlier.Size) &&
Pete Coopere03fe832011-12-03 00:04:30 +0000425 int64_t(LaterOff + Later.Size) >= int64_t(EarlierOff + Earlier.Size))
Pete Cooper856977c2011-11-09 23:07:35 +0000426 return OverwriteEnd;
Bill Wendling19f33b92011-03-26 08:02:59 +0000427
428 // Otherwise, they don't completely overlap.
Pete Cooper856977c2011-11-09 23:07:35 +0000429 return OverwriteUnknown;
Nick Lewycky90271472009-11-10 06:46:40 +0000430}
431
Chris Lattner94fbdf32010-12-06 01:48:06 +0000432/// isPossibleSelfRead - If 'Inst' might be a self read (i.e. a noop copy of a
433/// memory region into an identical pointer) then it doesn't actually make its
Owen Anderson58704ee2011-09-06 18:14:09 +0000434/// input dead in the traditional sense. Consider this case:
Chris Lattner94fbdf32010-12-06 01:48:06 +0000435///
436/// memcpy(A <- B)
437/// memcpy(A <- A)
438///
439/// In this case, the second store to A does not make the first store to A dead.
440/// The usual situation isn't an explicit A<-A store like this (which can be
441/// trivially removed) but a case where two pointers may alias.
442///
443/// This function detects when it is unsafe to remove a dependent instruction
444/// because the DSE inducing instruction may be a self-read.
445static bool isPossibleSelfRead(Instruction *Inst,
446 const AliasAnalysis::Location &InstStoreLoc,
447 Instruction *DepWrite, AliasAnalysis &AA) {
448 // Self reads can only happen for instructions that read memory. Get the
449 // location read.
450 AliasAnalysis::Location InstReadLoc = getLocForRead(Inst, AA);
451 if (InstReadLoc.Ptr == 0) return false; // Not a reading instruction.
Owen Anderson58704ee2011-09-06 18:14:09 +0000452
Chris Lattner94fbdf32010-12-06 01:48:06 +0000453 // If the read and written loc obviously don't alias, it isn't a read.
454 if (AA.isNoAlias(InstReadLoc, InstStoreLoc)) return false;
Owen Anderson58704ee2011-09-06 18:14:09 +0000455
Chris Lattner94fbdf32010-12-06 01:48:06 +0000456 // Okay, 'Inst' may copy over itself. However, we can still remove a the
457 // DepWrite instruction if we can prove that it reads from the same location
458 // as Inst. This handles useful cases like:
459 // memcpy(A <- B)
460 // memcpy(A <- B)
461 // Here we don't know if A/B may alias, but we do know that B/B are must
462 // aliases, so removing the first memcpy is safe (assuming it writes <= #
463 // bytes as the second one.
464 AliasAnalysis::Location DepReadLoc = getLocForRead(DepWrite, AA);
Owen Anderson58704ee2011-09-06 18:14:09 +0000465
Chris Lattner94fbdf32010-12-06 01:48:06 +0000466 if (DepReadLoc.Ptr && AA.isMustAlias(InstReadLoc.Ptr, DepReadLoc.Ptr))
467 return false;
Owen Anderson58704ee2011-09-06 18:14:09 +0000468
Chris Lattner94fbdf32010-12-06 01:48:06 +0000469 // If DepWrite doesn't read memory or if we can't prove it is a must alias,
470 // then it can't be considered dead.
471 return true;
472}
473
Chris Lattner67122512010-11-30 21:58:14 +0000474
475//===----------------------------------------------------------------------===//
476// DSE Pass
477//===----------------------------------------------------------------------===//
478
Owen Anderson10e52ed2007-08-01 06:36:51 +0000479bool DSE::runOnBasicBlock(BasicBlock &BB) {
Owen Anderson5e72db32007-07-11 00:46:18 +0000480 bool MadeChange = false;
Owen Anderson58704ee2011-09-06 18:14:09 +0000481
Chris Lattner49162672009-09-02 06:31:02 +0000482 // Do a top-down walk on the BB.
Chris Lattnerf2a8ba42008-11-28 21:29:52 +0000483 for (BasicBlock::iterator BBI = BB.begin(), BBE = BB.end(); BBI != BBE; ) {
484 Instruction *Inst = BBI++;
Owen Anderson58704ee2011-09-06 18:14:09 +0000485
Chris Lattner9d179d92010-11-30 01:28:33 +0000486 // Handle 'free' calls specially.
487 if (CallInst *F = isFreeCall(Inst)) {
488 MadeChange |= HandleFree(F);
489 continue;
490 }
Owen Anderson58704ee2011-09-06 18:14:09 +0000491
Chris Lattner2227a8a2010-11-30 01:37:52 +0000492 // If we find something that writes memory, get its memory dependence.
493 if (!hasMemoryWrite(Inst))
Owen Anderson0aecf0e2007-08-08 04:52:29 +0000494 continue;
Chris Lattnerd4f10902010-11-30 00:01:19 +0000495
Chris Lattner51c28a92010-11-30 19:34:42 +0000496 MemDepResult InstDep = MD->getDependency(Inst);
Owen Anderson58704ee2011-09-06 18:14:09 +0000497
Eli Friedman7d58bc72011-06-15 00:47:34 +0000498 // Ignore any store where we can't find a local dependence.
Chris Lattner57e91ea2008-12-06 00:53:22 +0000499 // FIXME: cross-block DSE would be fun. :)
Eli Friedmanc1702c82011-10-13 22:14:57 +0000500 if (!InstDep.isDef() && !InstDep.isClobber())
Chris Lattner58b779e2010-11-30 07:23:21 +0000501 continue;
Owen Anderson58704ee2011-09-06 18:14:09 +0000502
Chris Lattner57e91ea2008-12-06 00:53:22 +0000503 // If we're storing the same value back to a pointer that we just
504 // loaded from, then the store can be removed.
Nick Lewycky90271472009-11-10 06:46:40 +0000505 if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
506 if (LoadInst *DepLoad = dyn_cast<LoadInst>(InstDep.getInst())) {
507 if (SI->getPointerOperand() == DepLoad->getPointerOperand() &&
Eli Friedman9a468152011-08-17 22:22:24 +0000508 SI->getOperand(0) == DepLoad && isRemovable(SI)) {
Chris Lattnerca335e32010-12-06 21:13:51 +0000509 DEBUG(dbgs() << "DSE: Remove Store Of Load from same pointer:\n "
510 << "LOAD: " << *DepLoad << "\n STORE: " << *SI << '\n');
Owen Anderson58704ee2011-09-06 18:14:09 +0000511
Nick Lewycky90271472009-11-10 06:46:40 +0000512 // DeleteDeadInstruction can delete the current instruction. Save BBI
513 // in case we need it.
514 WeakVH NextInst(BBI);
Owen Anderson58704ee2011-09-06 18:14:09 +0000515
Chris Lattner67122512010-11-30 21:58:14 +0000516 DeleteDeadInstruction(SI, *MD);
Owen Anderson58704ee2011-09-06 18:14:09 +0000517
Nick Lewycky90271472009-11-10 06:46:40 +0000518 if (NextInst == 0) // Next instruction deleted.
519 BBI = BB.begin();
520 else if (BBI != BB.begin()) // Revisit this instruction if possible.
521 --BBI;
Dan Gohmand2d1ae12010-06-22 15:08:57 +0000522 ++NumFastStores;
Nick Lewycky90271472009-11-10 06:46:40 +0000523 MadeChange = true;
524 continue;
525 }
Chris Lattner0e3d6332008-12-05 21:04:20 +0000526 }
Owen Anderson5e72db32007-07-11 00:46:18 +0000527 }
Owen Anderson58704ee2011-09-06 18:14:09 +0000528
Chris Lattner58b779e2010-11-30 07:23:21 +0000529 // Figure out what location is being stored to.
Chris Lattner51c28a92010-11-30 19:34:42 +0000530 AliasAnalysis::Location Loc = getLocForWrite(Inst, *AA);
Chris Lattner58b779e2010-11-30 07:23:21 +0000531
532 // If we didn't get a useful location, fail.
533 if (Loc.Ptr == 0)
534 continue;
Owen Anderson58704ee2011-09-06 18:14:09 +0000535
Eli Friedmanc1702c82011-10-13 22:14:57 +0000536 while (InstDep.isDef() || InstDep.isClobber()) {
Chris Lattner58b779e2010-11-30 07:23:21 +0000537 // Get the memory clobbered by the instruction we depend on. MemDep will
538 // skip any instructions that 'Loc' clearly doesn't interact with. If we
539 // end up depending on a may- or must-aliased load, then we can't optimize
540 // away the store and we bail out. However, if we depend on on something
541 // that overwrites the memory location we *can* potentially optimize it.
542 //
Chris Lattner0ab5e2c2011-04-15 05:18:47 +0000543 // Find out what memory location the dependent instruction stores.
Chris Lattner58b779e2010-11-30 07:23:21 +0000544 Instruction *DepWrite = InstDep.getInst();
Chris Lattner51c28a92010-11-30 19:34:42 +0000545 AliasAnalysis::Location DepLoc = getLocForWrite(DepWrite, *AA);
Chris Lattner58b779e2010-11-30 07:23:21 +0000546 // If we didn't get a useful location, or if it isn't a size, bail out.
547 if (DepLoc.Ptr == 0)
548 break;
549
Chris Lattner94fbdf32010-12-06 01:48:06 +0000550 // If we find a write that is a) removable (i.e., non-volatile), b) is
551 // completely obliterated by the store to 'Loc', and c) which we know that
552 // 'Inst' doesn't load from, then we can remove it.
Pete Cooper856977c2011-11-09 23:07:35 +0000553 if (isRemovable(DepWrite) &&
Chris Lattner94fbdf32010-12-06 01:48:06 +0000554 !isPossibleSelfRead(Inst, Loc, DepWrite, *AA)) {
Pete Cooper856977c2011-11-09 23:07:35 +0000555 int64_t InstWriteOffset, DepWriteOffset;
556 OverwriteResult OR = isOverwrite(Loc, DepLoc, *AA,
557 DepWriteOffset, InstWriteOffset);
558 if (OR == OverwriteComplete) {
559 DEBUG(dbgs() << "DSE: Remove Dead Store:\n DEAD: "
560 << *DepWrite << "\n KILLER: " << *Inst << '\n');
Owen Anderson58704ee2011-09-06 18:14:09 +0000561
Pete Cooper856977c2011-11-09 23:07:35 +0000562 // Delete the store and now-dead instructions that feed it.
563 DeleteDeadInstruction(DepWrite, *MD);
564 ++NumFastStores;
565 MadeChange = true;
566
567 // DeleteDeadInstruction can delete the current instruction in loop
568 // cases, reset BBI.
569 BBI = Inst;
570 if (BBI != BB.begin())
571 --BBI;
572 break;
573 } else if (OR == OverwriteEnd && isShortenable(DepWrite)) {
574 // TODO: base this on the target vector size so that if the earlier
575 // store was too small to get vector writes anyway then its likely
576 // a good idea to shorten it
577 // Power of 2 vector writes are probably always a bad idea to optimize
578 // as any store/memset/memcpy is likely using vector instructions so
579 // shortening it to not vector size is likely to be slower
580 MemIntrinsic* DepIntrinsic = cast<MemIntrinsic>(DepWrite);
581 unsigned DepWriteAlign = DepIntrinsic->getAlignment();
582 if (llvm::isPowerOf2_64(InstWriteOffset) ||
583 ((DepWriteAlign != 0) && InstWriteOffset % DepWriteAlign == 0)) {
584
585 DEBUG(dbgs() << "DSE: Remove Dead Store:\n OW END: "
586 << *DepWrite << "\n KILLER (offset "
587 << InstWriteOffset << ", "
588 << DepLoc.Size << ")"
589 << *Inst << '\n');
590
591 Value* DepWriteLength = DepIntrinsic->getLength();
592 Value* TrimmedLength = ConstantInt::get(DepWriteLength->getType(),
593 InstWriteOffset -
594 DepWriteOffset);
595 DepIntrinsic->setLength(TrimmedLength);
596 MadeChange = true;
597 }
598 }
Chris Lattner58b779e2010-11-30 07:23:21 +0000599 }
Owen Anderson58704ee2011-09-06 18:14:09 +0000600
Chris Lattnerd4f10902010-11-30 00:01:19 +0000601 // If this is a may-aliased store that is clobbering the store value, we
602 // can keep searching past it for another must-aliased pointer that stores
603 // to the same location. For example, in:
604 // store -> P
605 // store -> Q
606 // store -> P
607 // we can remove the first store to P even though we don't know if P and Q
608 // alias.
Chris Lattner58b779e2010-11-30 07:23:21 +0000609 if (DepWrite == &BB.front()) break;
Owen Anderson58704ee2011-09-06 18:14:09 +0000610
Chris Lattner58b779e2010-11-30 07:23:21 +0000611 // Can't look past this instruction if it might read 'Loc'.
Chris Lattner51c28a92010-11-30 19:34:42 +0000612 if (AA->getModRefInfo(DepWrite, Loc) & AliasAnalysis::Ref)
Chris Lattner58b779e2010-11-30 07:23:21 +0000613 break;
Owen Anderson58704ee2011-09-06 18:14:09 +0000614
Chris Lattner51c28a92010-11-30 19:34:42 +0000615 InstDep = MD->getPointerDependencyFrom(Loc, false, DepWrite, &BB);
Owen Anderson2b2bd282009-10-28 07:05:35 +0000616 }
Owen Anderson5e72db32007-07-11 00:46:18 +0000617 }
Owen Anderson58704ee2011-09-06 18:14:09 +0000618
Chris Lattnerf2a8ba42008-11-28 21:29:52 +0000619 // If this block ends in a return, unwind, or unreachable, all allocas are
620 // dead at its end, which means stores to them are also dead.
Owen Anderson32c4a052007-07-12 21:41:30 +0000621 if (BB.getTerminator()->getNumSuccessors() == 0)
Chris Lattner1adb6752008-11-28 00:27:14 +0000622 MadeChange |= handleEndBlock(BB);
Owen Anderson58704ee2011-09-06 18:14:09 +0000623
Owen Anderson5e72db32007-07-11 00:46:18 +0000624 return MadeChange;
625}
626
Nick Lewyckyf2905af2011-11-05 10:48:42 +0000627/// Find all blocks that will unconditionally lead to the block BB and append
628/// them to F.
629static void FindUnconditionalPreds(SmallVectorImpl<BasicBlock *> &Blocks,
630 BasicBlock *BB, DominatorTree *DT) {
631 for (pred_iterator I = pred_begin(BB), E = pred_end(BB); I != E; ++I) {
632 BasicBlock *Pred = *I;
Nick Lewyckyfe970722011-12-08 22:36:35 +0000633 if (Pred == BB) continue;
Nick Lewyckyf2905af2011-11-05 10:48:42 +0000634 TerminatorInst *PredTI = Pred->getTerminator();
635 if (PredTI->getNumSuccessors() != 1)
636 continue;
637
638 if (DT->isReachableFromEntry(Pred))
639 Blocks.push_back(Pred);
640 }
641}
642
Chris Lattner9d179d92010-11-30 01:28:33 +0000643/// HandleFree - Handle frees of entire structures whose dependency is a store
644/// to a field of that structure.
645bool DSE::HandleFree(CallInst *F) {
Eli Friedman7d58bc72011-06-15 00:47:34 +0000646 bool MadeChange = false;
647
Nick Lewyckyf2905af2011-11-05 10:48:42 +0000648 AliasAnalysis::Location Loc = AliasAnalysis::Location(F->getOperand(0));
649 SmallVector<BasicBlock *, 16> Blocks;
650 Blocks.push_back(F->getParent());
Eli Friedman7d58bc72011-06-15 00:47:34 +0000651
Nick Lewyckyf2905af2011-11-05 10:48:42 +0000652 while (!Blocks.empty()) {
653 BasicBlock *BB = Blocks.pop_back_val();
654 Instruction *InstPt = BB->getTerminator();
655 if (BB == F->getParent()) InstPt = F;
Owen Anderson58704ee2011-09-06 18:14:09 +0000656
Nick Lewyckyf2905af2011-11-05 10:48:42 +0000657 MemDepResult Dep = MD->getPointerDependencyFrom(Loc, false, InstPt, BB);
658 while (Dep.isDef() || Dep.isClobber()) {
659 Instruction *Dependency = Dep.getInst();
660 if (!hasMemoryWrite(Dependency) || !isRemovable(Dependency))
661 break;
Duncan Sandsfe3bef02008-01-20 10:49:23 +0000662
Nick Lewyckyf2905af2011-11-05 10:48:42 +0000663 Value *DepPointer =
664 GetUnderlyingObject(getStoredPointerOperand(Dependency));
Owen Anderson58704ee2011-09-06 18:14:09 +0000665
Nick Lewyckyf2905af2011-11-05 10:48:42 +0000666 // Check for aliasing.
667 if (!AA->isMustAlias(F->getArgOperand(0), DepPointer))
668 break;
Dan Gohmand4b7fff2010-11-12 02:19:17 +0000669
Nick Lewyckyf2905af2011-11-05 10:48:42 +0000670 Instruction *Next = llvm::next(BasicBlock::iterator(Dependency));
671
672 // DCE instructions only used to calculate that store
673 DeleteDeadInstruction(Dependency, *MD);
674 ++NumFastStores;
675 MadeChange = true;
676
677 // Inst's old Dependency is now deleted. Compute the next dependency,
678 // which may also be dead, as in
679 // s[0] = 0;
680 // s[1] = 0; // This has just been deleted.
681 // free(s);
682 Dep = MD->getPointerDependencyFrom(Loc, false, Next, BB);
683 }
684
685 if (Dep.isNonLocal())
686 FindUnconditionalPreds(Blocks, BB, DT);
687 }
Owen Anderson58704ee2011-09-06 18:14:09 +0000688
Eli Friedman7d58bc72011-06-15 00:47:34 +0000689 return MadeChange;
Owen Andersonaa071722007-07-11 23:19:17 +0000690}
691
Owen Andersone3590582007-08-02 18:11:11 +0000692/// handleEndBlock - Remove dead stores to stack-allocated locations in the
Owen Anderson52aaabf2007-08-08 17:50:09 +0000693/// function end block. Ex:
694/// %A = alloca i32
695/// ...
696/// store i32 1, i32* %A
697/// ret void
Chris Lattner1adb6752008-11-28 00:27:14 +0000698bool DSE::handleEndBlock(BasicBlock &BB) {
Owen Anderson32c4a052007-07-12 21:41:30 +0000699 bool MadeChange = false;
Owen Anderson58704ee2011-09-06 18:14:09 +0000700
Chris Lattner7fe08b62010-11-30 21:32:12 +0000701 // Keep track of all of the stack objects that are dead at the end of the
702 // function.
703 SmallPtrSet<Value*, 16> DeadStackObjects;
Owen Anderson58704ee2011-09-06 18:14:09 +0000704
Chris Lattner1adb6752008-11-28 00:27:14 +0000705 // Find all of the alloca'd pointers in the entry block.
Owen Anderson32c4a052007-07-12 21:41:30 +0000706 BasicBlock *Entry = BB.getParent()->begin();
Nick Lewycky32f80512011-10-22 21:59:35 +0000707 for (BasicBlock::iterator I = Entry->begin(), E = Entry->end(); I != E; ++I) {
Owen Anderson32c4a052007-07-12 21:41:30 +0000708 if (AllocaInst *AI = dyn_cast<AllocaInst>(I))
Chris Lattner7fe08b62010-11-30 21:32:12 +0000709 DeadStackObjects.insert(AI);
Owen Anderson58704ee2011-09-06 18:14:09 +0000710
Nick Lewycky32f80512011-10-22 21:59:35 +0000711 // Okay, so these are dead heap objects, but if the pointer never escapes
712 // then it's leaked by this function anyways.
Nuno Lopes300d6292012-05-10 17:14:00 +0000713 CallInst *CI = extractMallocCall(I);
714 if (!CI)
715 CI = extractCallocCall(I);
716 if (CI && !PointerMayBeCaptured(CI, true, true))
717 DeadStackObjects.insert(CI);
Nick Lewycky32f80512011-10-22 21:59:35 +0000718 }
719
Chris Lattner1adb6752008-11-28 00:27:14 +0000720 // Treat byval arguments the same, stores to them are dead at the end of the
721 // function.
Owen Anderson48d37802008-01-29 06:18:36 +0000722 for (Function::arg_iterator AI = BB.getParent()->arg_begin(),
723 AE = BB.getParent()->arg_end(); AI != AE; ++AI)
724 if (AI->hasByValAttr())
Chris Lattner7fe08b62010-11-30 21:32:12 +0000725 DeadStackObjects.insert(AI);
Owen Anderson58704ee2011-09-06 18:14:09 +0000726
Owen Anderson32c4a052007-07-12 21:41:30 +0000727 // Scan the basic block backwards
728 for (BasicBlock::iterator BBI = BB.end(); BBI != BB.begin(); ){
729 --BBI;
Owen Anderson58704ee2011-09-06 18:14:09 +0000730
Chris Lattner60a8b3d2010-11-30 19:48:15 +0000731 // If we find a store, check to see if it points into a dead stack value.
732 if (hasMemoryWrite(BBI) && isRemovable(BBI)) {
733 // See through pointer-to-pointer bitcasts
Dan Gohmaned7c24e22012-05-10 18:57:38 +0000734 SmallVector<Value *, 4> Pointers;
735 GetUnderlyingObjects(getStoredPointerOperand(BBI), Pointers);
Duncan Sandsd65a4da2008-10-01 15:25:41 +0000736
Chris Lattner67122512010-11-30 21:58:14 +0000737 // Stores to stack values are valid candidates for removal.
Dan Gohmaned7c24e22012-05-10 18:57:38 +0000738 bool AllDead = true;
739 for (SmallVectorImpl<Value *>::iterator I = Pointers.begin(),
740 E = Pointers.end(); I != E; ++I)
741 if (!DeadStackObjects.count(*I)) {
742 AllDead = false;
743 break;
744 }
745
746 if (AllDead) {
Chris Lattner60a8b3d2010-11-30 19:48:15 +0000747 Instruction *Dead = BBI++;
Owen Anderson58704ee2011-09-06 18:14:09 +0000748
Chris Lattnerca335e32010-12-06 21:13:51 +0000749 DEBUG(dbgs() << "DSE: Dead Store at End of Block:\n DEAD: "
Dan Gohmaned7c24e22012-05-10 18:57:38 +0000750 << *Dead << "\n Objects: ";
751 for (SmallVectorImpl<Value *>::iterator I = Pointers.begin(),
752 E = Pointers.end(); I != E; ++I) {
753 dbgs() << **I;
754 if (llvm::next(I) != E)
755 dbgs() << ", ";
756 }
757 dbgs() << '\n');
Owen Anderson58704ee2011-09-06 18:14:09 +0000758
Chris Lattnerca335e32010-12-06 21:13:51 +0000759 // DCE instructions only used to calculate that store.
Chris Lattner67122512010-11-30 21:58:14 +0000760 DeleteDeadInstruction(Dead, *MD, &DeadStackObjects);
Chris Lattner60a8b3d2010-11-30 19:48:15 +0000761 ++NumFastStores;
762 MadeChange = true;
Owen Andersone316e5b2011-08-30 21:11:06 +0000763 continue;
Chris Lattner60a8b3d2010-11-30 19:48:15 +0000764 }
Owen Anderson52aaabf2007-08-08 17:50:09 +0000765 }
Owen Anderson58704ee2011-09-06 18:14:09 +0000766
Chris Lattner60a8b3d2010-11-30 19:48:15 +0000767 // Remove any dead non-memory-mutating instructions.
768 if (isInstructionTriviallyDead(BBI)) {
769 Instruction *Inst = BBI++;
Chris Lattner67122512010-11-30 21:58:14 +0000770 DeleteDeadInstruction(Inst, *MD, &DeadStackObjects);
Chris Lattner60a8b3d2010-11-30 19:48:15 +0000771 ++NumFastOther;
772 MadeChange = true;
773 continue;
774 }
Owen Anderson58704ee2011-09-06 18:14:09 +0000775
Chris Lattner60a8b3d2010-11-30 19:48:15 +0000776 if (AllocaInst *A = dyn_cast<AllocaInst>(BBI)) {
Chris Lattner7fe08b62010-11-30 21:32:12 +0000777 DeadStackObjects.erase(A);
Chris Lattner60a8b3d2010-11-30 19:48:15 +0000778 continue;
779 }
Owen Anderson58704ee2011-09-06 18:14:09 +0000780
Nick Lewycky32f80512011-10-22 21:59:35 +0000781 if (CallInst *CI = extractMallocCall(BBI)) {
782 DeadStackObjects.erase(CI);
783 continue;
784 }
785
Nuno Lopes300d6292012-05-10 17:14:00 +0000786 if (CallInst *CI = extractCallocCall(BBI)) {
787 DeadStackObjects.erase(CI);
788 continue;
789 }
790
Chris Lattner127818d2010-11-30 21:18:46 +0000791 if (CallSite CS = cast<Value>(BBI)) {
792 // If this call does not access memory, it can't be loading any of our
793 // pointers.
794 if (AA->doesNotAccessMemory(CS))
795 continue;
Owen Anderson58704ee2011-09-06 18:14:09 +0000796
Chris Lattner127818d2010-11-30 21:18:46 +0000797 // If the call might load from any of our allocas, then any store above
798 // the call is live.
799 SmallVector<Value*, 8> LiveAllocas;
Chris Lattner7fe08b62010-11-30 21:32:12 +0000800 for (SmallPtrSet<Value*, 16>::iterator I = DeadStackObjects.begin(),
801 E = DeadStackObjects.end(); I != E; ++I) {
Chris Lattner127818d2010-11-30 21:18:46 +0000802 // See if the call site touches it.
Owen Anderson58704ee2011-09-06 18:14:09 +0000803 AliasAnalysis::ModRefResult A =
Chris Lattner127818d2010-11-30 21:18:46 +0000804 AA->getModRefInfo(CS, *I, getPointerSize(*I, *AA));
Owen Anderson58704ee2011-09-06 18:14:09 +0000805
Chris Lattner127818d2010-11-30 21:18:46 +0000806 if (A == AliasAnalysis::ModRef || A == AliasAnalysis::Ref)
807 LiveAllocas.push_back(*I);
808 }
Owen Anderson58704ee2011-09-06 18:14:09 +0000809
Chris Lattner127818d2010-11-30 21:18:46 +0000810 for (SmallVector<Value*, 8>::iterator I = LiveAllocas.begin(),
811 E = LiveAllocas.end(); I != E; ++I)
Chris Lattner7fe08b62010-11-30 21:32:12 +0000812 DeadStackObjects.erase(*I);
Owen Anderson58704ee2011-09-06 18:14:09 +0000813
Chris Lattner127818d2010-11-30 21:18:46 +0000814 // If all of the allocas were clobbered by the call then we're not going
815 // to find anything else to process.
Chris Lattner7fe08b62010-11-30 21:32:12 +0000816 if (DeadStackObjects.empty())
Chris Lattner127818d2010-11-30 21:18:46 +0000817 return MadeChange;
Owen Anderson58704ee2011-09-06 18:14:09 +0000818
Chris Lattner127818d2010-11-30 21:18:46 +0000819 continue;
820 }
Eli Friedman89b694b2011-07-27 01:08:30 +0000821
Chris Lattner51d67ce2010-11-30 21:47:58 +0000822 AliasAnalysis::Location LoadedLoc;
Owen Anderson58704ee2011-09-06 18:14:09 +0000823
Owen Anderson32c4a052007-07-12 21:41:30 +0000824 // If we encounter a use of the pointer, it is no longer considered dead
Chris Lattner1adb6752008-11-28 00:27:14 +0000825 if (LoadInst *L = dyn_cast<LoadInst>(BBI)) {
Eli Friedman9a468152011-08-17 22:22:24 +0000826 if (!L->isUnordered()) // Be conservative with atomic/volatile load
827 break;
Chris Lattner51d67ce2010-11-30 21:47:58 +0000828 LoadedLoc = AA->getLocation(L);
Nick Lewycky475d3d12010-01-03 04:39:07 +0000829 } else if (VAArgInst *V = dyn_cast<VAArgInst>(BBI)) {
Chris Lattner51d67ce2010-11-30 21:47:58 +0000830 LoadedLoc = AA->getLocation(V);
Chris Lattner60a8b3d2010-11-30 19:48:15 +0000831 } else if (MemTransferInst *MTI = dyn_cast<MemTransferInst>(BBI)) {
Chris Lattner51d67ce2010-11-30 21:47:58 +0000832 LoadedLoc = AA->getLocationForSource(MTI);
Owen Anderson58704ee2011-09-06 18:14:09 +0000833 } else if (!BBI->mayReadFromMemory()) {
834 // Instruction doesn't read memory. Note that stores that weren't removed
835 // above will hit this case.
Chris Lattner1adb6752008-11-28 00:27:14 +0000836 continue;
Eli Friedman89b694b2011-07-27 01:08:30 +0000837 } else {
838 // Unknown inst; assume it clobbers everything.
839 break;
Owen Anderson32c4a052007-07-12 21:41:30 +0000840 }
Duncan Sandsd65a4da2008-10-01 15:25:41 +0000841
Chris Lattner7fe08b62010-11-30 21:32:12 +0000842 // Remove any allocas from the DeadPointer set that are loaded, as this
843 // makes any stores above the access live.
Chris Lattner51d67ce2010-11-30 21:47:58 +0000844 RemoveAccessedObjects(LoadedLoc, DeadStackObjects);
Duncan Sandsd65a4da2008-10-01 15:25:41 +0000845
Chris Lattner7fe08b62010-11-30 21:32:12 +0000846 // If all of the allocas were clobbered by the access then we're not going
847 // to find anything else to process.
848 if (DeadStackObjects.empty())
849 break;
Owen Anderson32c4a052007-07-12 21:41:30 +0000850 }
Owen Anderson58704ee2011-09-06 18:14:09 +0000851
Owen Anderson32c4a052007-07-12 21:41:30 +0000852 return MadeChange;
853}
854
Chris Lattner7fe08b62010-11-30 21:32:12 +0000855/// RemoveAccessedObjects - Check to see if the specified location may alias any
856/// of the stack objects in the DeadStackObjects set. If so, they become live
857/// because the location is being loaded.
Chris Lattner51d67ce2010-11-30 21:47:58 +0000858void DSE::RemoveAccessedObjects(const AliasAnalysis::Location &LoadedLoc,
Chris Lattner7fe08b62010-11-30 21:32:12 +0000859 SmallPtrSet<Value*, 16> &DeadStackObjects) {
Dan Gohmana4fcd242010-12-15 20:02:24 +0000860 const Value *UnderlyingPointer = GetUnderlyingObject(LoadedLoc.Ptr);
Chris Lattner7fe08b62010-11-30 21:32:12 +0000861
862 // A constant can't be in the dead pointer set.
863 if (isa<Constant>(UnderlyingPointer))
Chris Lattnerf80b3992010-11-30 21:38:30 +0000864 return;
Owen Anderson58704ee2011-09-06 18:14:09 +0000865
Chris Lattner7fe08b62010-11-30 21:32:12 +0000866 // If the kill pointer can be easily reduced to an alloca, don't bother doing
867 // extraneous AA queries.
Chris Lattnerf80b3992010-11-30 21:38:30 +0000868 if (isa<AllocaInst>(UnderlyingPointer) || isa<Argument>(UnderlyingPointer)) {
Chris Lattner51d67ce2010-11-30 21:47:58 +0000869 DeadStackObjects.erase(const_cast<Value*>(UnderlyingPointer));
Chris Lattnerf80b3992010-11-30 21:38:30 +0000870 return;
Owen Andersonddf4aee2007-08-08 18:38:28 +0000871 }
Owen Anderson58704ee2011-09-06 18:14:09 +0000872
Chris Lattner7fe08b62010-11-30 21:32:12 +0000873 SmallVector<Value*, 16> NowLive;
Chris Lattner7fe08b62010-11-30 21:32:12 +0000874 for (SmallPtrSet<Value*, 16>::iterator I = DeadStackObjects.begin(),
875 E = DeadStackObjects.end(); I != E; ++I) {
Chris Lattner51d67ce2010-11-30 21:47:58 +0000876 // See if the loaded location could alias the stack location.
877 AliasAnalysis::Location StackLoc(*I, getPointerSize(*I, *AA));
878 if (!AA->isNoAlias(StackLoc, LoadedLoc))
Chris Lattner7fe08b62010-11-30 21:32:12 +0000879 NowLive.push_back(*I);
Owen Anderson32c4a052007-07-12 21:41:30 +0000880 }
881
Chris Lattner7fe08b62010-11-30 21:32:12 +0000882 for (SmallVector<Value*, 16>::iterator I = NowLive.begin(), E = NowLive.end();
Owen Anderson32c4a052007-07-12 21:41:30 +0000883 I != E; ++I)
Chris Lattner7fe08b62010-11-30 21:32:12 +0000884 DeadStackObjects.erase(*I);
Owen Anderson32c4a052007-07-12 21:41:30 +0000885}