blob: 216f65509ed7a5550a4d6ef5778d980df80b81df [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"
Chandler Carruthed0881b2012-12-03 16:50:05 +000020#include "llvm/ADT/STLExtras.h"
21#include "llvm/ADT/SetVector.h"
22#include "llvm/ADT/Statistic.h"
Owen Andersonaa071722007-07-11 23:19:17 +000023#include "llvm/Analysis/AliasAnalysis.h"
Nick Lewycky32f80512011-10-22 21:59:35 +000024#include "llvm/Analysis/CaptureTracking.h"
Victor Hernandezf390e042009-10-27 20:05:49 +000025#include "llvm/Analysis/MemoryBuiltins.h"
Owen Anderson5e72db32007-07-11 00:46:18 +000026#include "llvm/Analysis/MemoryDependenceAnalysis.h"
Chris Lattnerc0f33792010-11-30 23:05:20 +000027#include "llvm/Analysis/ValueTracking.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000028#include "llvm/IR/Constants.h"
29#include "llvm/IR/DataLayout.h"
Chandler Carruth5ad5f152014-01-13 09:26:24 +000030#include "llvm/IR/Dominators.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000031#include "llvm/IR/Function.h"
32#include "llvm/IR/GlobalVariable.h"
33#include "llvm/IR/Instructions.h"
34#include "llvm/IR/IntrinsicInst.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000035#include "llvm/Pass.h"
36#include "llvm/Support/Debug.h"
Nick Lewycky9f4729d2012-09-24 22:09:10 +000037#include "llvm/Target/TargetLibraryInfo.h"
Owen Anderson5e72db32007-07-11 00:46:18 +000038#include "llvm/Transforms/Utils/Local.h"
Owen Anderson5e72db32007-07-11 00:46:18 +000039using namespace llvm;
40
41STATISTIC(NumFastStores, "Number of stores deleted");
42STATISTIC(NumFastOther , "Number of other instrs removed");
43
44namespace {
Chris Lattner2dd09db2009-09-02 06:11:42 +000045 struct DSE : public FunctionPass {
Chris Lattner51c28a92010-11-30 19:34:42 +000046 AliasAnalysis *AA;
47 MemoryDependenceAnalysis *MD;
Nick Lewyckyf2905af2011-11-05 10:48:42 +000048 DominatorTree *DT;
Nick Lewycky135ac9a2012-09-24 22:07:09 +000049 const TargetLibraryInfo *TLI;
Chris Lattner51c28a92010-11-30 19:34:42 +000050
Owen Anderson5e72db32007-07-11 00:46:18 +000051 static char ID; // Pass identification, replacement for typeid
Nick Lewyckyf2905af2011-11-05 10:48:42 +000052 DSE() : FunctionPass(ID), AA(0), MD(0), DT(0) {
Owen Anderson6c18d1a2010-10-19 17:21:58 +000053 initializeDSEPass(*PassRegistry::getPassRegistry());
54 }
Owen Anderson5e72db32007-07-11 00:46:18 +000055
56 virtual bool runOnFunction(Function &F) {
Paul Robinsonaf4e64d2014-02-06 00:07:05 +000057 if (skipOptnoneFunction(F))
58 return false;
59
Chris Lattner51c28a92010-11-30 19:34:42 +000060 AA = &getAnalysis<AliasAnalysis>();
61 MD = &getAnalysis<MemoryDependenceAnalysis>();
Chandler Carruth73523022014-01-13 13:07:17 +000062 DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree();
Nick Lewycky135ac9a2012-09-24 22:07:09 +000063 TLI = AA->getTargetLibraryInfo();
Owen Anderson58704ee2011-09-06 18:14:09 +000064
Chris Lattner51c28a92010-11-30 19:34:42 +000065 bool Changed = false;
Owen Anderson5e72db32007-07-11 00:46:18 +000066 for (Function::iterator I = F.begin(), E = F.end(); I != E; ++I)
Chris Lattnerc053cbb2010-02-11 05:11:54 +000067 // Only check non-dead blocks. Dead blocks may have strange pointer
68 // cycles that will confuse alias analysis.
Nick Lewyckyf2905af2011-11-05 10:48:42 +000069 if (DT->isReachableFromEntry(I))
Chris Lattnerc053cbb2010-02-11 05:11:54 +000070 Changed |= runOnBasicBlock(*I);
Owen Anderson58704ee2011-09-06 18:14:09 +000071
Nick Lewyckyf2905af2011-11-05 10:48:42 +000072 AA = 0; MD = 0; DT = 0;
Owen Anderson5e72db32007-07-11 00:46:18 +000073 return Changed;
74 }
Owen Anderson58704ee2011-09-06 18:14:09 +000075
Owen Anderson5e72db32007-07-11 00:46:18 +000076 bool runOnBasicBlock(BasicBlock &BB);
Chris Lattner9d179d92010-11-30 01:28:33 +000077 bool HandleFree(CallInst *F);
Chris Lattner1adb6752008-11-28 00:27:14 +000078 bool handleEndBlock(BasicBlock &BB);
Chris Lattner51d67ce2010-11-30 21:47:58 +000079 void RemoveAccessedObjects(const AliasAnalysis::Location &LoadedLoc,
Evan Cheng773b2cd2012-06-16 04:28:11 +000080 SmallSetVector<Value*, 16> &DeadStackObjects);
Owen Anderson5e72db32007-07-11 00:46:18 +000081
Owen Anderson5e72db32007-07-11 00:46:18 +000082 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
83 AU.setPreservesCFG();
Chandler Carruth73523022014-01-13 13:07:17 +000084 AU.addRequired<DominatorTreeWrapperPass>();
Owen Andersonaa071722007-07-11 23:19:17 +000085 AU.addRequired<AliasAnalysis>();
Owen Anderson5e72db32007-07-11 00:46:18 +000086 AU.addRequired<MemoryDependenceAnalysis>();
Chris Lattner51c28a92010-11-30 19:34:42 +000087 AU.addPreserved<AliasAnalysis>();
Chandler Carruth73523022014-01-13 13:07:17 +000088 AU.addPreserved<DominatorTreeWrapperPass>();
Owen Anderson5e72db32007-07-11 00:46:18 +000089 AU.addPreserved<MemoryDependenceAnalysis>();
90 }
91 };
Owen Anderson5e72db32007-07-11 00:46:18 +000092}
93
Dan Gohmand78c4002008-05-13 00:00:25 +000094char DSE::ID = 0;
Owen Anderson8ac477f2010-10-12 19:48:12 +000095INITIALIZE_PASS_BEGIN(DSE, "dse", "Dead Store Elimination", false, false)
Chandler Carruth73523022014-01-13 13:07:17 +000096INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
Owen Anderson8ac477f2010-10-12 19:48:12 +000097INITIALIZE_PASS_DEPENDENCY(MemoryDependenceAnalysis)
98INITIALIZE_AG_DEPENDENCY(AliasAnalysis)
99INITIALIZE_PASS_END(DSE, "dse", "Dead Store Elimination", false, false)
Dan Gohmand78c4002008-05-13 00:00:25 +0000100
Owen Anderson10e52ed2007-08-01 06:36:51 +0000101FunctionPass *llvm::createDeadStoreEliminationPass() { return new DSE(); }
Owen Anderson5e72db32007-07-11 00:46:18 +0000102
Chris Lattner67122512010-11-30 21:58:14 +0000103//===----------------------------------------------------------------------===//
104// Helper functions
105//===----------------------------------------------------------------------===//
106
107/// DeleteDeadInstruction - Delete this instruction. Before we do, go through
108/// and zero out all the operands of this instruction. If any of them become
109/// dead, delete them and the computation tree that feeds them.
110///
111/// If ValueSet is non-null, remove any deleted instructions from it as well.
112///
113static void DeleteDeadInstruction(Instruction *I,
114 MemoryDependenceAnalysis &MD,
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000115 const TargetLibraryInfo *TLI,
Evan Cheng773b2cd2012-06-16 04:28:11 +0000116 SmallSetVector<Value*, 16> *ValueSet = 0) {
Chris Lattner67122512010-11-30 21:58:14 +0000117 SmallVector<Instruction*, 32> NowDeadInsts;
Owen Anderson58704ee2011-09-06 18:14:09 +0000118
Chris Lattner67122512010-11-30 21:58:14 +0000119 NowDeadInsts.push_back(I);
120 --NumFastOther;
Owen Anderson58704ee2011-09-06 18:14:09 +0000121
Chris Lattner67122512010-11-30 21:58:14 +0000122 // Before we touch this instruction, remove it from memdep!
123 do {
124 Instruction *DeadInst = NowDeadInsts.pop_back_val();
125 ++NumFastOther;
Owen Anderson58704ee2011-09-06 18:14:09 +0000126
Chris Lattner67122512010-11-30 21:58:14 +0000127 // This instruction is dead, zap it, in stages. Start by removing it from
128 // MemDep, which needs to know the operands and needs it to be in the
129 // function.
130 MD.removeInstruction(DeadInst);
Owen Anderson58704ee2011-09-06 18:14:09 +0000131
Chris Lattner67122512010-11-30 21:58:14 +0000132 for (unsigned op = 0, e = DeadInst->getNumOperands(); op != e; ++op) {
133 Value *Op = DeadInst->getOperand(op);
134 DeadInst->setOperand(op, 0);
Owen Anderson58704ee2011-09-06 18:14:09 +0000135
Chris Lattner67122512010-11-30 21:58:14 +0000136 // If this operand just became dead, add it to the NowDeadInsts list.
137 if (!Op->use_empty()) continue;
Owen Anderson58704ee2011-09-06 18:14:09 +0000138
Chris Lattner67122512010-11-30 21:58:14 +0000139 if (Instruction *OpI = dyn_cast<Instruction>(Op))
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000140 if (isInstructionTriviallyDead(OpI, TLI))
Chris Lattner67122512010-11-30 21:58:14 +0000141 NowDeadInsts.push_back(OpI);
142 }
Owen Anderson58704ee2011-09-06 18:14:09 +0000143
Chris Lattner67122512010-11-30 21:58:14 +0000144 DeadInst->eraseFromParent();
Owen Anderson58704ee2011-09-06 18:14:09 +0000145
Evan Cheng773b2cd2012-06-16 04:28:11 +0000146 if (ValueSet) ValueSet->remove(DeadInst);
Chris Lattner67122512010-11-30 21:58:14 +0000147 } while (!NowDeadInsts.empty());
148}
149
150
Chris Lattner2227a8a2010-11-30 01:37:52 +0000151/// hasMemoryWrite - Does this instruction write some memory? This only returns
152/// true for things that we can analyze with other helpers below.
Nick Lewycky9f4729d2012-09-24 22:09:10 +0000153static bool hasMemoryWrite(Instruction *I, const TargetLibraryInfo *TLI) {
Nick Lewycky90271472009-11-10 06:46:40 +0000154 if (isa<StoreInst>(I))
155 return true;
156 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I)) {
157 switch (II->getIntrinsicID()) {
Chris Lattner2764b4d2009-12-02 06:35:55 +0000158 default:
159 return false;
160 case Intrinsic::memset:
161 case Intrinsic::memmove:
162 case Intrinsic::memcpy:
163 case Intrinsic::init_trampoline:
164 case Intrinsic::lifetime_end:
165 return true;
Nick Lewycky90271472009-11-10 06:46:40 +0000166 }
167 }
Nick Lewycky9f4729d2012-09-24 22:09:10 +0000168 if (CallSite CS = I) {
169 if (Function *F = CS.getCalledFunction()) {
170 if (TLI && TLI->has(LibFunc::strcpy) &&
171 F->getName() == TLI->getName(LibFunc::strcpy)) {
172 return true;
173 }
174 if (TLI && TLI->has(LibFunc::strncpy) &&
175 F->getName() == TLI->getName(LibFunc::strncpy)) {
176 return true;
177 }
178 if (TLI && TLI->has(LibFunc::strcat) &&
179 F->getName() == TLI->getName(LibFunc::strcat)) {
180 return true;
181 }
182 if (TLI && TLI->has(LibFunc::strncat) &&
183 F->getName() == TLI->getName(LibFunc::strncat)) {
184 return true;
185 }
186 }
187 }
Nick Lewycky90271472009-11-10 06:46:40 +0000188 return false;
189}
190
Chris Lattner58b779e2010-11-30 07:23:21 +0000191/// getLocForWrite - Return a Location stored to by the specified instruction.
Eli Friedman72a93e52011-09-13 01:28:59 +0000192/// If isRemovable returns true, this function and getLocForRead completely
193/// describe the memory operations for this instruction.
Chris Lattner58b779e2010-11-30 07:23:21 +0000194static AliasAnalysis::Location
195getLocForWrite(Instruction *Inst, AliasAnalysis &AA) {
196 if (StoreInst *SI = dyn_cast<StoreInst>(Inst))
197 return AA.getLocation(SI);
Owen Anderson58704ee2011-09-06 18:14:09 +0000198
Chris Lattner58b779e2010-11-30 07:23:21 +0000199 if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(Inst)) {
200 // memcpy/memmove/memset.
201 AliasAnalysis::Location Loc = AA.getLocationForDest(MI);
202 // If we don't have target data around, an unknown size in Location means
203 // that we should use the size of the pointee type. This isn't valid for
204 // memset/memcpy, which writes more than an i8.
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000205 if (Loc.Size == AliasAnalysis::UnknownSize && AA.getDataLayout() == 0)
Chris Lattner58b779e2010-11-30 07:23:21 +0000206 return AliasAnalysis::Location();
207 return Loc;
208 }
Owen Anderson58704ee2011-09-06 18:14:09 +0000209
Chris Lattner58b779e2010-11-30 07:23:21 +0000210 IntrinsicInst *II = dyn_cast<IntrinsicInst>(Inst);
211 if (II == 0) return AliasAnalysis::Location();
Owen Anderson58704ee2011-09-06 18:14:09 +0000212
Chris Lattner58b779e2010-11-30 07:23:21 +0000213 switch (II->getIntrinsicID()) {
214 default: return AliasAnalysis::Location(); // Unhandled intrinsic.
215 case Intrinsic::init_trampoline:
216 // If we don't have target data around, an unknown size in Location means
217 // that we should use the size of the pointee type. This isn't valid for
218 // init.trampoline, which writes more than an i8.
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000219 if (AA.getDataLayout() == 0) return AliasAnalysis::Location();
Owen Anderson58704ee2011-09-06 18:14:09 +0000220
Chris Lattner58b779e2010-11-30 07:23:21 +0000221 // FIXME: We don't know the size of the trampoline, so we can't really
222 // handle it here.
223 return AliasAnalysis::Location(II->getArgOperand(0));
224 case Intrinsic::lifetime_end: {
225 uint64_t Len = cast<ConstantInt>(II->getArgOperand(0))->getZExtValue();
226 return AliasAnalysis::Location(II->getArgOperand(1), Len);
227 }
228 }
229}
230
Chris Lattner94fbdf32010-12-06 01:48:06 +0000231/// getLocForRead - Return the location read by the specified "hasMemoryWrite"
232/// instruction if any.
Owen Anderson58704ee2011-09-06 18:14:09 +0000233static AliasAnalysis::Location
Chris Lattner94fbdf32010-12-06 01:48:06 +0000234getLocForRead(Instruction *Inst, AliasAnalysis &AA) {
Nick Lewycky9f4729d2012-09-24 22:09:10 +0000235 assert(hasMemoryWrite(Inst, AA.getTargetLibraryInfo()) &&
236 "Unknown instruction case");
Owen Anderson58704ee2011-09-06 18:14:09 +0000237
Chris Lattner94fbdf32010-12-06 01:48:06 +0000238 // The only instructions that both read and write are the mem transfer
239 // instructions (memcpy/memmove).
240 if (MemTransferInst *MTI = dyn_cast<MemTransferInst>(Inst))
241 return AA.getLocationForSource(MTI);
242 return AliasAnalysis::Location();
243}
244
245
Chris Lattner3590ef82010-11-30 05:30:45 +0000246/// isRemovable - If the value of this instruction and the memory it writes to
247/// is unused, may we delete this instruction?
248static bool isRemovable(Instruction *I) {
Eli Friedman9a468152011-08-17 22:22:24 +0000249 // Don't remove volatile/atomic stores.
Nick Lewycky90271472009-11-10 06:46:40 +0000250 if (StoreInst *SI = dyn_cast<StoreInst>(I))
Eli Friedman9a468152011-08-17 22:22:24 +0000251 return SI->isUnordered();
Owen Anderson58704ee2011-09-06 18:14:09 +0000252
Nick Lewycky9f4729d2012-09-24 22:09:10 +0000253 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I)) {
254 switch (II->getIntrinsicID()) {
255 default: llvm_unreachable("doesn't pass 'hasMemoryWrite' predicate");
256 case Intrinsic::lifetime_end:
257 // Never remove dead lifetime_end's, e.g. because it is followed by a
258 // free.
259 return false;
260 case Intrinsic::init_trampoline:
261 // Always safe to remove init_trampoline.
262 return true;
Owen Anderson58704ee2011-09-06 18:14:09 +0000263
Nick Lewycky9f4729d2012-09-24 22:09:10 +0000264 case Intrinsic::memset:
265 case Intrinsic::memmove:
266 case Intrinsic::memcpy:
267 // Don't remove volatile memory intrinsics.
268 return !cast<MemIntrinsic>(II)->isVolatile();
269 }
Chris Lattnerb63ba732010-11-30 19:12:10 +0000270 }
Nick Lewycky9f4729d2012-09-24 22:09:10 +0000271
Nick Lewycky42bca052012-09-25 01:55:59 +0000272 if (CallSite CS = I)
273 return CS.getInstruction()->use_empty();
Nick Lewycky9f4729d2012-09-24 22:09:10 +0000274
275 return false;
Nick Lewycky90271472009-11-10 06:46:40 +0000276}
277
Pete Cooper856977c2011-11-09 23:07:35 +0000278
279/// isShortenable - Returns true if this instruction can be safely shortened in
280/// length.
281static bool isShortenable(Instruction *I) {
282 // Don't shorten stores for now
283 if (isa<StoreInst>(I))
284 return false;
Nadav Rotem465834c2012-07-24 10:51:42 +0000285
Nick Lewycky9f4729d2012-09-24 22:09:10 +0000286 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I)) {
287 switch (II->getIntrinsicID()) {
288 default: return false;
289 case Intrinsic::memset:
290 case Intrinsic::memcpy:
291 // Do shorten memory intrinsics.
292 return true;
293 }
Pete Cooper856977c2011-11-09 23:07:35 +0000294 }
Nick Lewycky9f4729d2012-09-24 22:09:10 +0000295
296 // Don't shorten libcalls calls for now.
297
298 return false;
Pete Cooper856977c2011-11-09 23:07:35 +0000299}
300
Chris Lattner67122512010-11-30 21:58:14 +0000301/// getStoredPointerOperand - Return the pointer that is being written to.
302static Value *getStoredPointerOperand(Instruction *I) {
Nick Lewycky90271472009-11-10 06:46:40 +0000303 if (StoreInst *SI = dyn_cast<StoreInst>(I))
304 return SI->getPointerOperand();
305 if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(I))
Chris Lattner67122512010-11-30 21:58:14 +0000306 return MI->getDest();
Gabor Greif91f95892010-06-24 12:03:56 +0000307
Nick Lewycky9f4729d2012-09-24 22:09:10 +0000308 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I)) {
309 switch (II->getIntrinsicID()) {
310 default: llvm_unreachable("Unexpected intrinsic!");
311 case Intrinsic::init_trampoline:
312 return II->getArgOperand(0);
313 }
Duncan Sands1925d3a2009-11-10 13:49:50 +0000314 }
Nick Lewycky9f4729d2012-09-24 22:09:10 +0000315
Nick Lewycky627d2172012-09-24 23:47:23 +0000316 CallSite CS = I;
Nick Lewycky9f4729d2012-09-24 22:09:10 +0000317 // All the supported functions so far happen to have dest as their first
318 // argument.
319 return CS.getArgument(0);
Nick Lewycky90271472009-11-10 06:46:40 +0000320}
321
Nick Lewyckyc7f1e792011-11-16 03:49:48 +0000322static uint64_t getPointerSize(const Value *V, AliasAnalysis &AA) {
Nuno Lopes55fff832012-06-21 15:45:28 +0000323 uint64_t Size;
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000324 if (getObjectSize(V, Size, AA.getDataLayout(), AA.getTargetLibraryInfo()))
Nuno Lopes55fff832012-06-21 15:45:28 +0000325 return Size;
Nick Lewyckyc7f1e792011-11-16 03:49:48 +0000326 return AliasAnalysis::UnknownSize;
Chris Lattner903add82010-11-30 23:43:23 +0000327}
Chris Lattner51c28a92010-11-30 19:34:42 +0000328
Pete Cooper856977c2011-11-09 23:07:35 +0000329namespace {
330 enum OverwriteResult
331 {
332 OverwriteComplete,
333 OverwriteEnd,
334 OverwriteUnknown
335 };
336}
337
338/// isOverwrite - Return 'OverwriteComplete' if a store to the 'Later' location
Chris Lattner58b779e2010-11-30 07:23:21 +0000339/// completely overwrites a store to the 'Earlier' location.
Nadav Rotem465834c2012-07-24 10:51:42 +0000340/// 'OverwriteEnd' if the end of the 'Earlier' location is completely
Pete Cooper39b52552012-02-28 05:06:24 +0000341/// overwritten by 'Later', or 'OverwriteUnknown' if nothing can be determined
Pete Cooper856977c2011-11-09 23:07:35 +0000342static OverwriteResult isOverwrite(const AliasAnalysis::Location &Later,
343 const AliasAnalysis::Location &Earlier,
344 AliasAnalysis &AA,
Nick Lewyckyc7f1e792011-11-16 03:49:48 +0000345 int64_t &EarlierOff,
346 int64_t &LaterOff) {
Chris Lattnerc0f33792010-11-30 23:05:20 +0000347 const Value *P1 = Earlier.Ptr->stripPointerCasts();
348 const Value *P2 = Later.Ptr->stripPointerCasts();
Owen Anderson58704ee2011-09-06 18:14:09 +0000349
Chris Lattnerc0f33792010-11-30 23:05:20 +0000350 // If the start pointers are the same, we just have to compare sizes to see if
351 // the later store was larger than the earlier store.
352 if (P1 == P2) {
353 // If we don't know the sizes of either access, then we can't do a
354 // comparison.
355 if (Later.Size == AliasAnalysis::UnknownSize ||
356 Earlier.Size == AliasAnalysis::UnknownSize) {
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000357 // If we have no DataLayout information around, then the size of the store
Chris Lattnerc0f33792010-11-30 23:05:20 +0000358 // is inferrable from the pointee type. If they are the same type, then
359 // we know that the store is safe.
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000360 if (AA.getDataLayout() == 0 &&
Pete Cooper856977c2011-11-09 23:07:35 +0000361 Later.Ptr->getType() == Earlier.Ptr->getType())
362 return OverwriteComplete;
Nadav Rotem465834c2012-07-24 10:51:42 +0000363
Pete Cooper856977c2011-11-09 23:07:35 +0000364 return OverwriteUnknown;
Chris Lattnerc0f33792010-11-30 23:05:20 +0000365 }
Owen Anderson58704ee2011-09-06 18:14:09 +0000366
Chris Lattnerc0f33792010-11-30 23:05:20 +0000367 // Make sure that the Later size is >= the Earlier size.
Pete Cooper856977c2011-11-09 23:07:35 +0000368 if (Later.Size >= Earlier.Size)
369 return OverwriteComplete;
Chris Lattner77d79fa2010-11-30 19:28:23 +0000370 }
Owen Anderson58704ee2011-09-06 18:14:09 +0000371
Chris Lattnerc0f33792010-11-30 23:05:20 +0000372 // Otherwise, we have to have size information, and the later store has to be
373 // larger than the earlier one.
374 if (Later.Size == AliasAnalysis::UnknownSize ||
375 Earlier.Size == AliasAnalysis::UnknownSize ||
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000376 AA.getDataLayout() == 0)
Pete Cooper856977c2011-11-09 23:07:35 +0000377 return OverwriteUnknown;
Owen Anderson58704ee2011-09-06 18:14:09 +0000378
Chris Lattner903add82010-11-30 23:43:23 +0000379 // Check to see if the later store is to the entire object (either a global,
Reid Kleckner26af2ca2014-01-28 02:38:36 +0000380 // an alloca, or a byval/inalloca argument). If so, then it clearly
381 // overwrites any other store to the same object.
Dan Gohman20a2ae92013-01-31 02:00:45 +0000382 const DataLayout *TD = AA.getDataLayout();
Owen Anderson58704ee2011-09-06 18:14:09 +0000383
Dan Gohman20a2ae92013-01-31 02:00:45 +0000384 const Value *UO1 = GetUnderlyingObject(P1, TD),
385 *UO2 = GetUnderlyingObject(P2, TD);
Owen Anderson58704ee2011-09-06 18:14:09 +0000386
Chris Lattner903add82010-11-30 23:43:23 +0000387 // If we can't resolve the same pointers to the same object, then we can't
388 // analyze them at all.
389 if (UO1 != UO2)
Pete Cooper856977c2011-11-09 23:07:35 +0000390 return OverwriteUnknown;
Owen Anderson58704ee2011-09-06 18:14:09 +0000391
Chris Lattner903add82010-11-30 23:43:23 +0000392 // If the "Later" store is to a recognizable object, get its size.
Nick Lewyckyc7f1e792011-11-16 03:49:48 +0000393 uint64_t ObjectSize = getPointerSize(UO2, AA);
394 if (ObjectSize != AliasAnalysis::UnknownSize)
Pete Coopera4237c32011-11-10 20:22:08 +0000395 if (ObjectSize == Later.Size && ObjectSize >= Earlier.Size)
Pete Cooper856977c2011-11-09 23:07:35 +0000396 return OverwriteComplete;
Owen Anderson58704ee2011-09-06 18:14:09 +0000397
Chris Lattnerc0f33792010-11-30 23:05:20 +0000398 // Okay, we have stores to two completely different pointers. Try to
399 // decompose the pointer into a "base + constant_offset" form. If the base
400 // pointers are equal, then we can reason about the two stores.
Pete Cooper856977c2011-11-09 23:07:35 +0000401 EarlierOff = 0;
402 LaterOff = 0;
Bill Wendling19f33b92011-03-26 08:02:59 +0000403 const Value *BP1 = GetPointerBaseWithConstantOffset(P1, EarlierOff, TD);
404 const Value *BP2 = GetPointerBaseWithConstantOffset(P2, LaterOff, TD);
Owen Anderson58704ee2011-09-06 18:14:09 +0000405
Chris Lattnerc0f33792010-11-30 23:05:20 +0000406 // If the base pointers still differ, we have two completely different stores.
407 if (BP1 != BP2)
Pete Cooper856977c2011-11-09 23:07:35 +0000408 return OverwriteUnknown;
Bill Wendlingdb40b5c2011-03-26 01:20:37 +0000409
Bill Wendling19f33b92011-03-26 08:02:59 +0000410 // The later store completely overlaps the earlier store if:
Owen Anderson58704ee2011-09-06 18:14:09 +0000411 //
Bill Wendling19f33b92011-03-26 08:02:59 +0000412 // 1. Both start at the same offset and the later one's size is greater than
413 // or equal to the earlier one's, or
414 //
415 // |--earlier--|
416 // |-- later --|
Owen Anderson58704ee2011-09-06 18:14:09 +0000417 //
Bill Wendling19f33b92011-03-26 08:02:59 +0000418 // 2. The earlier store has an offset greater than the later offset, but which
419 // still lies completely within the later store.
420 //
421 // |--earlier--|
422 // |----- later ------|
Bill Wendling50341592011-03-30 21:37:19 +0000423 //
424 // We have to be careful here as *Off is signed while *.Size is unsigned.
Bill Wendlingb5139922011-03-26 09:32:07 +0000425 if (EarlierOff >= LaterOff &&
Craig Topper2a404182012-08-14 07:32:05 +0000426 Later.Size >= Earlier.Size &&
Bill Wendling50341592011-03-30 21:37:19 +0000427 uint64_t(EarlierOff - LaterOff) + Earlier.Size <= Later.Size)
Pete Cooper856977c2011-11-09 23:07:35 +0000428 return OverwriteComplete;
Nadav Rotem465834c2012-07-24 10:51:42 +0000429
Pete Cooper856977c2011-11-09 23:07:35 +0000430 // The other interesting case is if the later store overwrites the end of
431 // the earlier store
432 //
433 // |--earlier--|
434 // |-- later --|
435 //
436 // In this case we may want to trim the size of earlier to avoid generating
437 // writes to addresses which will definitely be overwritten later
438 if (LaterOff > EarlierOff &&
439 LaterOff < int64_t(EarlierOff + Earlier.Size) &&
Pete Coopere03fe832011-12-03 00:04:30 +0000440 int64_t(LaterOff + Later.Size) >= int64_t(EarlierOff + Earlier.Size))
Pete Cooper856977c2011-11-09 23:07:35 +0000441 return OverwriteEnd;
Bill Wendling19f33b92011-03-26 08:02:59 +0000442
443 // Otherwise, they don't completely overlap.
Pete Cooper856977c2011-11-09 23:07:35 +0000444 return OverwriteUnknown;
Nick Lewycky90271472009-11-10 06:46:40 +0000445}
446
Chris Lattner94fbdf32010-12-06 01:48:06 +0000447/// isPossibleSelfRead - If 'Inst' might be a self read (i.e. a noop copy of a
448/// memory region into an identical pointer) then it doesn't actually make its
Owen Anderson58704ee2011-09-06 18:14:09 +0000449/// input dead in the traditional sense. Consider this case:
Chris Lattner94fbdf32010-12-06 01:48:06 +0000450///
451/// memcpy(A <- B)
452/// memcpy(A <- A)
453///
454/// In this case, the second store to A does not make the first store to A dead.
455/// The usual situation isn't an explicit A<-A store like this (which can be
456/// trivially removed) but a case where two pointers may alias.
457///
458/// This function detects when it is unsafe to remove a dependent instruction
459/// because the DSE inducing instruction may be a self-read.
460static bool isPossibleSelfRead(Instruction *Inst,
461 const AliasAnalysis::Location &InstStoreLoc,
462 Instruction *DepWrite, AliasAnalysis &AA) {
463 // Self reads can only happen for instructions that read memory. Get the
464 // location read.
465 AliasAnalysis::Location InstReadLoc = getLocForRead(Inst, AA);
466 if (InstReadLoc.Ptr == 0) return false; // Not a reading instruction.
Owen Anderson58704ee2011-09-06 18:14:09 +0000467
Chris Lattner94fbdf32010-12-06 01:48:06 +0000468 // If the read and written loc obviously don't alias, it isn't a read.
469 if (AA.isNoAlias(InstReadLoc, InstStoreLoc)) return false;
Owen Anderson58704ee2011-09-06 18:14:09 +0000470
Chris Lattner94fbdf32010-12-06 01:48:06 +0000471 // Okay, 'Inst' may copy over itself. However, we can still remove a the
472 // DepWrite instruction if we can prove that it reads from the same location
473 // as Inst. This handles useful cases like:
474 // memcpy(A <- B)
475 // memcpy(A <- B)
476 // Here we don't know if A/B may alias, but we do know that B/B are must
477 // aliases, so removing the first memcpy is safe (assuming it writes <= #
478 // bytes as the second one.
479 AliasAnalysis::Location DepReadLoc = getLocForRead(DepWrite, AA);
Owen Anderson58704ee2011-09-06 18:14:09 +0000480
Chris Lattner94fbdf32010-12-06 01:48:06 +0000481 if (DepReadLoc.Ptr && AA.isMustAlias(InstReadLoc.Ptr, DepReadLoc.Ptr))
482 return false;
Owen Anderson58704ee2011-09-06 18:14:09 +0000483
Chris Lattner94fbdf32010-12-06 01:48:06 +0000484 // If DepWrite doesn't read memory or if we can't prove it is a must alias,
485 // then it can't be considered dead.
486 return true;
487}
488
Chris Lattner67122512010-11-30 21:58:14 +0000489
490//===----------------------------------------------------------------------===//
491// DSE Pass
492//===----------------------------------------------------------------------===//
493
Owen Anderson10e52ed2007-08-01 06:36:51 +0000494bool DSE::runOnBasicBlock(BasicBlock &BB) {
Owen Anderson5e72db32007-07-11 00:46:18 +0000495 bool MadeChange = false;
Owen Anderson58704ee2011-09-06 18:14:09 +0000496
Chris Lattner49162672009-09-02 06:31:02 +0000497 // Do a top-down walk on the BB.
Chris Lattnerf2a8ba42008-11-28 21:29:52 +0000498 for (BasicBlock::iterator BBI = BB.begin(), BBE = BB.end(); BBI != BBE; ) {
499 Instruction *Inst = BBI++;
Owen Anderson58704ee2011-09-06 18:14:09 +0000500
Chris Lattner9d179d92010-11-30 01:28:33 +0000501 // Handle 'free' calls specially.
Nick Lewycky135ac9a2012-09-24 22:07:09 +0000502 if (CallInst *F = isFreeCall(Inst, TLI)) {
Chris Lattner9d179d92010-11-30 01:28:33 +0000503 MadeChange |= HandleFree(F);
504 continue;
505 }
Owen Anderson58704ee2011-09-06 18:14:09 +0000506
Chris Lattner2227a8a2010-11-30 01:37:52 +0000507 // If we find something that writes memory, get its memory dependence.
Nick Lewycky9f4729d2012-09-24 22:09:10 +0000508 if (!hasMemoryWrite(Inst, TLI))
Owen Anderson0aecf0e2007-08-08 04:52:29 +0000509 continue;
Chris Lattnerd4f10902010-11-30 00:01:19 +0000510
Chris Lattner51c28a92010-11-30 19:34:42 +0000511 MemDepResult InstDep = MD->getDependency(Inst);
Owen Anderson58704ee2011-09-06 18:14:09 +0000512
Eli Friedman7d58bc72011-06-15 00:47:34 +0000513 // Ignore any store where we can't find a local dependence.
Chris Lattner57e91ea2008-12-06 00:53:22 +0000514 // FIXME: cross-block DSE would be fun. :)
Eli Friedmanc1702c82011-10-13 22:14:57 +0000515 if (!InstDep.isDef() && !InstDep.isClobber())
Chris Lattner58b779e2010-11-30 07:23:21 +0000516 continue;
Owen Anderson58704ee2011-09-06 18:14:09 +0000517
Chris Lattner57e91ea2008-12-06 00:53:22 +0000518 // If we're storing the same value back to a pointer that we just
519 // loaded from, then the store can be removed.
Nick Lewycky90271472009-11-10 06:46:40 +0000520 if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
521 if (LoadInst *DepLoad = dyn_cast<LoadInst>(InstDep.getInst())) {
522 if (SI->getPointerOperand() == DepLoad->getPointerOperand() &&
Eli Friedman9a468152011-08-17 22:22:24 +0000523 SI->getOperand(0) == DepLoad && isRemovable(SI)) {
Chris Lattnerca335e32010-12-06 21:13:51 +0000524 DEBUG(dbgs() << "DSE: Remove Store Of Load from same pointer:\n "
525 << "LOAD: " << *DepLoad << "\n STORE: " << *SI << '\n');
Owen Anderson58704ee2011-09-06 18:14:09 +0000526
Nick Lewycky90271472009-11-10 06:46:40 +0000527 // DeleteDeadInstruction can delete the current instruction. Save BBI
528 // in case we need it.
529 WeakVH NextInst(BBI);
Owen Anderson58704ee2011-09-06 18:14:09 +0000530
Nick Lewycky135ac9a2012-09-24 22:07:09 +0000531 DeleteDeadInstruction(SI, *MD, TLI);
Owen Anderson58704ee2011-09-06 18:14:09 +0000532
Nick Lewycky90271472009-11-10 06:46:40 +0000533 if (NextInst == 0) // Next instruction deleted.
534 BBI = BB.begin();
535 else if (BBI != BB.begin()) // Revisit this instruction if possible.
536 --BBI;
Dan Gohmand2d1ae12010-06-22 15:08:57 +0000537 ++NumFastStores;
Nick Lewycky90271472009-11-10 06:46:40 +0000538 MadeChange = true;
539 continue;
540 }
Chris Lattner0e3d6332008-12-05 21:04:20 +0000541 }
Owen Anderson5e72db32007-07-11 00:46:18 +0000542 }
Owen Anderson58704ee2011-09-06 18:14:09 +0000543
Chris Lattner58b779e2010-11-30 07:23:21 +0000544 // Figure out what location is being stored to.
Chris Lattner51c28a92010-11-30 19:34:42 +0000545 AliasAnalysis::Location Loc = getLocForWrite(Inst, *AA);
Chris Lattner58b779e2010-11-30 07:23:21 +0000546
547 // If we didn't get a useful location, fail.
548 if (Loc.Ptr == 0)
549 continue;
Owen Anderson58704ee2011-09-06 18:14:09 +0000550
Eli Friedmanc1702c82011-10-13 22:14:57 +0000551 while (InstDep.isDef() || InstDep.isClobber()) {
Chris Lattner58b779e2010-11-30 07:23:21 +0000552 // Get the memory clobbered by the instruction we depend on. MemDep will
553 // skip any instructions that 'Loc' clearly doesn't interact with. If we
554 // end up depending on a may- or must-aliased load, then we can't optimize
555 // away the store and we bail out. However, if we depend on on something
556 // that overwrites the memory location we *can* potentially optimize it.
557 //
Chris Lattner0ab5e2c2011-04-15 05:18:47 +0000558 // Find out what memory location the dependent instruction stores.
Chris Lattner58b779e2010-11-30 07:23:21 +0000559 Instruction *DepWrite = InstDep.getInst();
Chris Lattner51c28a92010-11-30 19:34:42 +0000560 AliasAnalysis::Location DepLoc = getLocForWrite(DepWrite, *AA);
Chris Lattner58b779e2010-11-30 07:23:21 +0000561 // If we didn't get a useful location, or if it isn't a size, bail out.
562 if (DepLoc.Ptr == 0)
563 break;
564
Chris Lattner94fbdf32010-12-06 01:48:06 +0000565 // If we find a write that is a) removable (i.e., non-volatile), b) is
566 // completely obliterated by the store to 'Loc', and c) which we know that
567 // 'Inst' doesn't load from, then we can remove it.
Nadav Rotem465834c2012-07-24 10:51:42 +0000568 if (isRemovable(DepWrite) &&
Chris Lattner94fbdf32010-12-06 01:48:06 +0000569 !isPossibleSelfRead(Inst, Loc, DepWrite, *AA)) {
Nadav Rotem465834c2012-07-24 10:51:42 +0000570 int64_t InstWriteOffset, DepWriteOffset;
571 OverwriteResult OR = isOverwrite(Loc, DepLoc, *AA,
572 DepWriteOffset, InstWriteOffset);
Pete Cooper856977c2011-11-09 23:07:35 +0000573 if (OR == OverwriteComplete) {
574 DEBUG(dbgs() << "DSE: Remove Dead Store:\n DEAD: "
575 << *DepWrite << "\n KILLER: " << *Inst << '\n');
Owen Anderson58704ee2011-09-06 18:14:09 +0000576
Pete Cooper856977c2011-11-09 23:07:35 +0000577 // Delete the store and now-dead instructions that feed it.
Nick Lewycky135ac9a2012-09-24 22:07:09 +0000578 DeleteDeadInstruction(DepWrite, *MD, TLI);
Pete Cooper856977c2011-11-09 23:07:35 +0000579 ++NumFastStores;
580 MadeChange = true;
Nadav Rotem465834c2012-07-24 10:51:42 +0000581
Pete Cooper856977c2011-11-09 23:07:35 +0000582 // DeleteDeadInstruction can delete the current instruction in loop
583 // cases, reset BBI.
584 BBI = Inst;
585 if (BBI != BB.begin())
586 --BBI;
587 break;
588 } else if (OR == OverwriteEnd && isShortenable(DepWrite)) {
589 // TODO: base this on the target vector size so that if the earlier
590 // store was too small to get vector writes anyway then its likely
591 // a good idea to shorten it
592 // Power of 2 vector writes are probably always a bad idea to optimize
593 // as any store/memset/memcpy is likely using vector instructions so
594 // shortening it to not vector size is likely to be slower
595 MemIntrinsic* DepIntrinsic = cast<MemIntrinsic>(DepWrite);
596 unsigned DepWriteAlign = DepIntrinsic->getAlignment();
597 if (llvm::isPowerOf2_64(InstWriteOffset) ||
598 ((DepWriteAlign != 0) && InstWriteOffset % DepWriteAlign == 0)) {
Nadav Rotem465834c2012-07-24 10:51:42 +0000599
Pete Cooper856977c2011-11-09 23:07:35 +0000600 DEBUG(dbgs() << "DSE: Remove Dead Store:\n OW END: "
Nadav Rotem465834c2012-07-24 10:51:42 +0000601 << *DepWrite << "\n KILLER (offset "
602 << InstWriteOffset << ", "
Pete Cooper856977c2011-11-09 23:07:35 +0000603 << DepLoc.Size << ")"
604 << *Inst << '\n');
Nadav Rotem465834c2012-07-24 10:51:42 +0000605
Pete Cooper856977c2011-11-09 23:07:35 +0000606 Value* DepWriteLength = DepIntrinsic->getLength();
607 Value* TrimmedLength = ConstantInt::get(DepWriteLength->getType(),
Nadav Rotem465834c2012-07-24 10:51:42 +0000608 InstWriteOffset -
Pete Cooper856977c2011-11-09 23:07:35 +0000609 DepWriteOffset);
610 DepIntrinsic->setLength(TrimmedLength);
611 MadeChange = true;
612 }
613 }
Chris Lattner58b779e2010-11-30 07:23:21 +0000614 }
Owen Anderson58704ee2011-09-06 18:14:09 +0000615
Chris Lattnerd4f10902010-11-30 00:01:19 +0000616 // If this is a may-aliased store that is clobbering the store value, we
617 // can keep searching past it for another must-aliased pointer that stores
618 // to the same location. For example, in:
619 // store -> P
620 // store -> Q
621 // store -> P
622 // we can remove the first store to P even though we don't know if P and Q
623 // alias.
Chris Lattner58b779e2010-11-30 07:23:21 +0000624 if (DepWrite == &BB.front()) break;
Owen Anderson58704ee2011-09-06 18:14:09 +0000625
Chris Lattner58b779e2010-11-30 07:23:21 +0000626 // Can't look past this instruction if it might read 'Loc'.
Chris Lattner51c28a92010-11-30 19:34:42 +0000627 if (AA->getModRefInfo(DepWrite, Loc) & AliasAnalysis::Ref)
Chris Lattner58b779e2010-11-30 07:23:21 +0000628 break;
Owen Anderson58704ee2011-09-06 18:14:09 +0000629
Chris Lattner51c28a92010-11-30 19:34:42 +0000630 InstDep = MD->getPointerDependencyFrom(Loc, false, DepWrite, &BB);
Owen Anderson2b2bd282009-10-28 07:05:35 +0000631 }
Owen Anderson5e72db32007-07-11 00:46:18 +0000632 }
Owen Anderson58704ee2011-09-06 18:14:09 +0000633
Chris Lattnerf2a8ba42008-11-28 21:29:52 +0000634 // If this block ends in a return, unwind, or unreachable, all allocas are
635 // dead at its end, which means stores to them are also dead.
Owen Anderson32c4a052007-07-12 21:41:30 +0000636 if (BB.getTerminator()->getNumSuccessors() == 0)
Chris Lattner1adb6752008-11-28 00:27:14 +0000637 MadeChange |= handleEndBlock(BB);
Owen Anderson58704ee2011-09-06 18:14:09 +0000638
Owen Anderson5e72db32007-07-11 00:46:18 +0000639 return MadeChange;
640}
641
Nick Lewyckyf2905af2011-11-05 10:48:42 +0000642/// Find all blocks that will unconditionally lead to the block BB and append
643/// them to F.
644static void FindUnconditionalPreds(SmallVectorImpl<BasicBlock *> &Blocks,
645 BasicBlock *BB, DominatorTree *DT) {
646 for (pred_iterator I = pred_begin(BB), E = pred_end(BB); I != E; ++I) {
647 BasicBlock *Pred = *I;
Nick Lewyckyfe970722011-12-08 22:36:35 +0000648 if (Pred == BB) continue;
Nick Lewyckyf2905af2011-11-05 10:48:42 +0000649 TerminatorInst *PredTI = Pred->getTerminator();
650 if (PredTI->getNumSuccessors() != 1)
651 continue;
652
653 if (DT->isReachableFromEntry(Pred))
654 Blocks.push_back(Pred);
655 }
656}
657
Chris Lattner9d179d92010-11-30 01:28:33 +0000658/// HandleFree - Handle frees of entire structures whose dependency is a store
659/// to a field of that structure.
660bool DSE::HandleFree(CallInst *F) {
Eli Friedman7d58bc72011-06-15 00:47:34 +0000661 bool MadeChange = false;
662
Nick Lewyckyf2905af2011-11-05 10:48:42 +0000663 AliasAnalysis::Location Loc = AliasAnalysis::Location(F->getOperand(0));
664 SmallVector<BasicBlock *, 16> Blocks;
665 Blocks.push_back(F->getParent());
Eli Friedman7d58bc72011-06-15 00:47:34 +0000666
Nick Lewyckyf2905af2011-11-05 10:48:42 +0000667 while (!Blocks.empty()) {
668 BasicBlock *BB = Blocks.pop_back_val();
669 Instruction *InstPt = BB->getTerminator();
670 if (BB == F->getParent()) InstPt = F;
Owen Anderson58704ee2011-09-06 18:14:09 +0000671
Nick Lewyckyf2905af2011-11-05 10:48:42 +0000672 MemDepResult Dep = MD->getPointerDependencyFrom(Loc, false, InstPt, BB);
673 while (Dep.isDef() || Dep.isClobber()) {
674 Instruction *Dependency = Dep.getInst();
Nick Lewycky9f4729d2012-09-24 22:09:10 +0000675 if (!hasMemoryWrite(Dependency, TLI) || !isRemovable(Dependency))
Nick Lewyckyf2905af2011-11-05 10:48:42 +0000676 break;
Duncan Sandsfe3bef02008-01-20 10:49:23 +0000677
Nick Lewyckyf2905af2011-11-05 10:48:42 +0000678 Value *DepPointer =
679 GetUnderlyingObject(getStoredPointerOperand(Dependency));
Owen Anderson58704ee2011-09-06 18:14:09 +0000680
Nick Lewyckyf2905af2011-11-05 10:48:42 +0000681 // Check for aliasing.
682 if (!AA->isMustAlias(F->getArgOperand(0), DepPointer))
683 break;
Dan Gohmand4b7fff2010-11-12 02:19:17 +0000684
Nick Lewyckyf2905af2011-11-05 10:48:42 +0000685 Instruction *Next = llvm::next(BasicBlock::iterator(Dependency));
686
687 // DCE instructions only used to calculate that store
Nick Lewycky135ac9a2012-09-24 22:07:09 +0000688 DeleteDeadInstruction(Dependency, *MD, TLI);
Nick Lewyckyf2905af2011-11-05 10:48:42 +0000689 ++NumFastStores;
690 MadeChange = true;
691
692 // Inst's old Dependency is now deleted. Compute the next dependency,
693 // which may also be dead, as in
694 // s[0] = 0;
695 // s[1] = 0; // This has just been deleted.
696 // free(s);
697 Dep = MD->getPointerDependencyFrom(Loc, false, Next, BB);
698 }
699
700 if (Dep.isNonLocal())
701 FindUnconditionalPreds(Blocks, BB, DT);
702 }
Owen Anderson58704ee2011-09-06 18:14:09 +0000703
Eli Friedman7d58bc72011-06-15 00:47:34 +0000704 return MadeChange;
Owen Andersonaa071722007-07-11 23:19:17 +0000705}
706
Benjamin Kramer650b1db2012-10-14 10:21:31 +0000707namespace {
708 struct CouldRef {
709 typedef Value *argument_type;
710 const CallSite CS;
711 AliasAnalysis *AA;
712
713 bool operator()(Value *I) {
714 // See if the call site touches the value.
715 AliasAnalysis::ModRefResult A =
716 AA->getModRefInfo(CS, I, getPointerSize(I, *AA));
717
718 return A == AliasAnalysis::ModRef || A == AliasAnalysis::Ref;
719 }
720 };
721}
722
Owen Andersone3590582007-08-02 18:11:11 +0000723/// handleEndBlock - Remove dead stores to stack-allocated locations in the
Owen Anderson52aaabf2007-08-08 17:50:09 +0000724/// function end block. Ex:
725/// %A = alloca i32
726/// ...
727/// store i32 1, i32* %A
728/// ret void
Chris Lattner1adb6752008-11-28 00:27:14 +0000729bool DSE::handleEndBlock(BasicBlock &BB) {
Owen Anderson32c4a052007-07-12 21:41:30 +0000730 bool MadeChange = false;
Owen Anderson58704ee2011-09-06 18:14:09 +0000731
Chris Lattner7fe08b62010-11-30 21:32:12 +0000732 // Keep track of all of the stack objects that are dead at the end of the
733 // function.
Evan Cheng773b2cd2012-06-16 04:28:11 +0000734 SmallSetVector<Value*, 16> DeadStackObjects;
Owen Anderson58704ee2011-09-06 18:14:09 +0000735
Chris Lattner1adb6752008-11-28 00:27:14 +0000736 // Find all of the alloca'd pointers in the entry block.
Owen Anderson32c4a052007-07-12 21:41:30 +0000737 BasicBlock *Entry = BB.getParent()->begin();
Nick Lewycky32f80512011-10-22 21:59:35 +0000738 for (BasicBlock::iterator I = Entry->begin(), E = Entry->end(); I != E; ++I) {
Nuno Lopes55fff832012-06-21 15:45:28 +0000739 if (isa<AllocaInst>(I))
740 DeadStackObjects.insert(I);
Owen Anderson58704ee2011-09-06 18:14:09 +0000741
Nick Lewycky32f80512011-10-22 21:59:35 +0000742 // Okay, so these are dead heap objects, but if the pointer never escapes
743 // then it's leaked by this function anyways.
Nick Lewycky135ac9a2012-09-24 22:07:09 +0000744 else if (isAllocLikeFn(I, TLI) && !PointerMayBeCaptured(I, true, true))
Nuno Lopes55fff832012-06-21 15:45:28 +0000745 DeadStackObjects.insert(I);
Nick Lewycky32f80512011-10-22 21:59:35 +0000746 }
747
Reid Kleckner26af2ca2014-01-28 02:38:36 +0000748 // Treat byval or inalloca arguments the same, stores to them are dead at the
749 // end of the function.
Owen Anderson48d37802008-01-29 06:18:36 +0000750 for (Function::arg_iterator AI = BB.getParent()->arg_begin(),
751 AE = BB.getParent()->arg_end(); AI != AE; ++AI)
Reid Kleckner26af2ca2014-01-28 02:38:36 +0000752 if (AI->hasByValOrInAllocaAttr())
Chris Lattner7fe08b62010-11-30 21:32:12 +0000753 DeadStackObjects.insert(AI);
Owen Anderson58704ee2011-09-06 18:14:09 +0000754
Owen Anderson32c4a052007-07-12 21:41:30 +0000755 // Scan the basic block backwards
756 for (BasicBlock::iterator BBI = BB.end(); BBI != BB.begin(); ){
757 --BBI;
Owen Anderson58704ee2011-09-06 18:14:09 +0000758
Chris Lattner60a8b3d2010-11-30 19:48:15 +0000759 // If we find a store, check to see if it points into a dead stack value.
Nick Lewycky9f4729d2012-09-24 22:09:10 +0000760 if (hasMemoryWrite(BBI, TLI) && isRemovable(BBI)) {
Chris Lattner60a8b3d2010-11-30 19:48:15 +0000761 // See through pointer-to-pointer bitcasts
Dan Gohmaned7c24e22012-05-10 18:57:38 +0000762 SmallVector<Value *, 4> Pointers;
763 GetUnderlyingObjects(getStoredPointerOperand(BBI), Pointers);
Duncan Sandsd65a4da2008-10-01 15:25:41 +0000764
Chris Lattner67122512010-11-30 21:58:14 +0000765 // Stores to stack values are valid candidates for removal.
Dan Gohmaned7c24e22012-05-10 18:57:38 +0000766 bool AllDead = true;
767 for (SmallVectorImpl<Value *>::iterator I = Pointers.begin(),
768 E = Pointers.end(); I != E; ++I)
769 if (!DeadStackObjects.count(*I)) {
770 AllDead = false;
771 break;
772 }
773
774 if (AllDead) {
Chris Lattner60a8b3d2010-11-30 19:48:15 +0000775 Instruction *Dead = BBI++;
Owen Anderson58704ee2011-09-06 18:14:09 +0000776
Chris Lattnerca335e32010-12-06 21:13:51 +0000777 DEBUG(dbgs() << "DSE: Dead Store at End of Block:\n DEAD: "
Dan Gohmaned7c24e22012-05-10 18:57:38 +0000778 << *Dead << "\n Objects: ";
779 for (SmallVectorImpl<Value *>::iterator I = Pointers.begin(),
780 E = Pointers.end(); I != E; ++I) {
781 dbgs() << **I;
782 if (llvm::next(I) != E)
783 dbgs() << ", ";
784 }
785 dbgs() << '\n');
Owen Anderson58704ee2011-09-06 18:14:09 +0000786
Chris Lattnerca335e32010-12-06 21:13:51 +0000787 // DCE instructions only used to calculate that store.
Nick Lewycky135ac9a2012-09-24 22:07:09 +0000788 DeleteDeadInstruction(Dead, *MD, TLI, &DeadStackObjects);
Chris Lattner60a8b3d2010-11-30 19:48:15 +0000789 ++NumFastStores;
790 MadeChange = true;
Owen Andersone316e5b2011-08-30 21:11:06 +0000791 continue;
Chris Lattner60a8b3d2010-11-30 19:48:15 +0000792 }
Owen Anderson52aaabf2007-08-08 17:50:09 +0000793 }
Owen Anderson58704ee2011-09-06 18:14:09 +0000794
Chris Lattner60a8b3d2010-11-30 19:48:15 +0000795 // Remove any dead non-memory-mutating instructions.
Nick Lewycky135ac9a2012-09-24 22:07:09 +0000796 if (isInstructionTriviallyDead(BBI, TLI)) {
Chris Lattner60a8b3d2010-11-30 19:48:15 +0000797 Instruction *Inst = BBI++;
Nick Lewycky135ac9a2012-09-24 22:07:09 +0000798 DeleteDeadInstruction(Inst, *MD, TLI, &DeadStackObjects);
Chris Lattner60a8b3d2010-11-30 19:48:15 +0000799 ++NumFastOther;
800 MadeChange = true;
801 continue;
802 }
Owen Anderson58704ee2011-09-06 18:14:09 +0000803
Eli Friedman08ec0a82012-08-08 02:17:32 +0000804 if (isa<AllocaInst>(BBI)) {
805 // Remove allocas from the list of dead stack objects; there can't be
806 // any references before the definition.
Nuno Lopes55fff832012-06-21 15:45:28 +0000807 DeadStackObjects.remove(BBI);
Nuno Lopes300d6292012-05-10 17:14:00 +0000808 continue;
809 }
810
Chris Lattner127818d2010-11-30 21:18:46 +0000811 if (CallSite CS = cast<Value>(BBI)) {
Eli Friedman08ec0a82012-08-08 02:17:32 +0000812 // Remove allocation function calls from the list of dead stack objects;
813 // there can't be any references before the definition.
Nick Lewycky135ac9a2012-09-24 22:07:09 +0000814 if (isAllocLikeFn(BBI, TLI))
Eli Friedman08ec0a82012-08-08 02:17:32 +0000815 DeadStackObjects.remove(BBI);
816
Chris Lattner127818d2010-11-30 21:18:46 +0000817 // If this call does not access memory, it can't be loading any of our
818 // pointers.
819 if (AA->doesNotAccessMemory(CS))
820 continue;
Owen Anderson58704ee2011-09-06 18:14:09 +0000821
Chris Lattner127818d2010-11-30 21:18:46 +0000822 // If the call might load from any of our allocas, then any store above
823 // the call is live.
Benjamin Kramer650b1db2012-10-14 10:21:31 +0000824 CouldRef Pred = { CS, AA };
825 DeadStackObjects.remove_if(Pred);
Owen Anderson58704ee2011-09-06 18:14:09 +0000826
Benjamin Kramer2b11eb02012-09-09 16:44:05 +0000827 // If all of the allocas were clobbered by the call then we're not going
828 // to find anything else to process.
Benjamin Kramer650b1db2012-10-14 10:21:31 +0000829 if (DeadStackObjects.empty())
Benjamin Kramer2b11eb02012-09-09 16:44:05 +0000830 break;
831
Chris Lattner127818d2010-11-30 21:18:46 +0000832 continue;
833 }
Eli Friedman89b694b2011-07-27 01:08:30 +0000834
Chris Lattner51d67ce2010-11-30 21:47:58 +0000835 AliasAnalysis::Location LoadedLoc;
Owen Anderson58704ee2011-09-06 18:14:09 +0000836
Owen Anderson32c4a052007-07-12 21:41:30 +0000837 // If we encounter a use of the pointer, it is no longer considered dead
Chris Lattner1adb6752008-11-28 00:27:14 +0000838 if (LoadInst *L = dyn_cast<LoadInst>(BBI)) {
Eli Friedman9a468152011-08-17 22:22:24 +0000839 if (!L->isUnordered()) // Be conservative with atomic/volatile load
840 break;
Chris Lattner51d67ce2010-11-30 21:47:58 +0000841 LoadedLoc = AA->getLocation(L);
Nick Lewycky475d3d12010-01-03 04:39:07 +0000842 } else if (VAArgInst *V = dyn_cast<VAArgInst>(BBI)) {
Chris Lattner51d67ce2010-11-30 21:47:58 +0000843 LoadedLoc = AA->getLocation(V);
Chris Lattner60a8b3d2010-11-30 19:48:15 +0000844 } else if (MemTransferInst *MTI = dyn_cast<MemTransferInst>(BBI)) {
Chris Lattner51d67ce2010-11-30 21:47:58 +0000845 LoadedLoc = AA->getLocationForSource(MTI);
Owen Anderson58704ee2011-09-06 18:14:09 +0000846 } else if (!BBI->mayReadFromMemory()) {
847 // Instruction doesn't read memory. Note that stores that weren't removed
848 // above will hit this case.
Chris Lattner1adb6752008-11-28 00:27:14 +0000849 continue;
Eli Friedman89b694b2011-07-27 01:08:30 +0000850 } else {
851 // Unknown inst; assume it clobbers everything.
852 break;
Owen Anderson32c4a052007-07-12 21:41:30 +0000853 }
Duncan Sandsd65a4da2008-10-01 15:25:41 +0000854
Chris Lattner7fe08b62010-11-30 21:32:12 +0000855 // Remove any allocas from the DeadPointer set that are loaded, as this
856 // makes any stores above the access live.
Chris Lattner51d67ce2010-11-30 21:47:58 +0000857 RemoveAccessedObjects(LoadedLoc, DeadStackObjects);
Duncan Sandsd65a4da2008-10-01 15:25:41 +0000858
Chris Lattner7fe08b62010-11-30 21:32:12 +0000859 // If all of the allocas were clobbered by the access then we're not going
860 // to find anything else to process.
861 if (DeadStackObjects.empty())
862 break;
Owen Anderson32c4a052007-07-12 21:41:30 +0000863 }
Owen Anderson58704ee2011-09-06 18:14:09 +0000864
Owen Anderson32c4a052007-07-12 21:41:30 +0000865 return MadeChange;
866}
867
Benjamin Kramer650b1db2012-10-14 10:21:31 +0000868namespace {
869 struct CouldAlias {
870 typedef Value *argument_type;
871 const AliasAnalysis::Location &LoadedLoc;
872 AliasAnalysis *AA;
873
874 bool operator()(Value *I) {
875 // See if the loaded location could alias the stack location.
876 AliasAnalysis::Location StackLoc(I, getPointerSize(I, *AA));
877 return !AA->isNoAlias(StackLoc, LoadedLoc);
878 }
879 };
880}
881
Chris Lattner7fe08b62010-11-30 21:32:12 +0000882/// RemoveAccessedObjects - Check to see if the specified location may alias any
883/// of the stack objects in the DeadStackObjects set. If so, they become live
884/// because the location is being loaded.
Chris Lattner51d67ce2010-11-30 21:47:58 +0000885void DSE::RemoveAccessedObjects(const AliasAnalysis::Location &LoadedLoc,
Evan Cheng773b2cd2012-06-16 04:28:11 +0000886 SmallSetVector<Value*, 16> &DeadStackObjects) {
Dan Gohmana4fcd242010-12-15 20:02:24 +0000887 const Value *UnderlyingPointer = GetUnderlyingObject(LoadedLoc.Ptr);
Chris Lattner7fe08b62010-11-30 21:32:12 +0000888
889 // A constant can't be in the dead pointer set.
890 if (isa<Constant>(UnderlyingPointer))
Chris Lattnerf80b3992010-11-30 21:38:30 +0000891 return;
Owen Anderson58704ee2011-09-06 18:14:09 +0000892
Chris Lattner7fe08b62010-11-30 21:32:12 +0000893 // If the kill pointer can be easily reduced to an alloca, don't bother doing
894 // extraneous AA queries.
Chris Lattnerf80b3992010-11-30 21:38:30 +0000895 if (isa<AllocaInst>(UnderlyingPointer) || isa<Argument>(UnderlyingPointer)) {
Evan Cheng773b2cd2012-06-16 04:28:11 +0000896 DeadStackObjects.remove(const_cast<Value*>(UnderlyingPointer));
Chris Lattnerf80b3992010-11-30 21:38:30 +0000897 return;
Owen Andersonddf4aee2007-08-08 18:38:28 +0000898 }
Owen Anderson58704ee2011-09-06 18:14:09 +0000899
Benjamin Kramer650b1db2012-10-14 10:21:31 +0000900 // Remove objects that could alias LoadedLoc.
901 CouldAlias Pred = { LoadedLoc, AA };
902 DeadStackObjects.remove_if(Pred);
Owen Anderson32c4a052007-07-12 21:41:30 +0000903}