blob: 01952cf6e8b38c2b45a7d4e16dcf647e31ea55eb [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 Anderson5e72db32007-07-11 00:46:18 +000018#include "llvm/Transforms/Scalar.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000019#include "llvm/ADT/STLExtras.h"
20#include "llvm/ADT/SetVector.h"
21#include "llvm/ADT/Statistic.h"
Owen Andersonaa071722007-07-11 23:19:17 +000022#include "llvm/Analysis/AliasAnalysis.h"
Nick Lewycky32f80512011-10-22 21:59:35 +000023#include "llvm/Analysis/CaptureTracking.h"
Victor Hernandezf390e042009-10-27 20:05:49 +000024#include "llvm/Analysis/MemoryBuiltins.h"
Owen Anderson5e72db32007-07-11 00:46:18 +000025#include "llvm/Analysis/MemoryDependenceAnalysis.h"
Benjamin Kramer799003b2015-03-23 19:32:43 +000026#include "llvm/Analysis/TargetLibraryInfo.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"
Benjamin Kramer799003b2015-03-23 19:32:43 +000037#include "llvm/Support/raw_ostream.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
Chandler Carruth964daaa2014-04-22 02:55:47 +000041#define DEBUG_TYPE "dse"
42
Owen Anderson5e72db32007-07-11 00:46:18 +000043STATISTIC(NumFastStores, "Number of stores deleted");
44STATISTIC(NumFastOther , "Number of other instrs removed");
45
46namespace {
Chris Lattner2dd09db2009-09-02 06:11:42 +000047 struct DSE : public FunctionPass {
Chris Lattner51c28a92010-11-30 19:34:42 +000048 AliasAnalysis *AA;
49 MemoryDependenceAnalysis *MD;
Nick Lewyckyf2905af2011-11-05 10:48:42 +000050 DominatorTree *DT;
Nick Lewycky135ac9a2012-09-24 22:07:09 +000051 const TargetLibraryInfo *TLI;
Chris Lattner51c28a92010-11-30 19:34:42 +000052
Owen Anderson5e72db32007-07-11 00:46:18 +000053 static char ID; // Pass identification, replacement for typeid
Craig Topperf40110f2014-04-25 05:29:35 +000054 DSE() : FunctionPass(ID), AA(nullptr), MD(nullptr), DT(nullptr) {
Owen Anderson6c18d1a2010-10-19 17:21:58 +000055 initializeDSEPass(*PassRegistry::getPassRegistry());
56 }
Owen Anderson5e72db32007-07-11 00:46:18 +000057
Craig Topper3e4c6972014-03-05 09:10:37 +000058 bool runOnFunction(Function &F) override {
Paul Robinsonaf4e64d2014-02-06 00:07:05 +000059 if (skipOptnoneFunction(F))
60 return false;
61
Chris Lattner51c28a92010-11-30 19:34:42 +000062 AA = &getAnalysis<AliasAnalysis>();
63 MD = &getAnalysis<MemoryDependenceAnalysis>();
Chandler Carruth73523022014-01-13 13:07:17 +000064 DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree();
Nick Lewycky135ac9a2012-09-24 22:07:09 +000065 TLI = AA->getTargetLibraryInfo();
Owen Anderson58704ee2011-09-06 18:14:09 +000066
Chris Lattner51c28a92010-11-30 19:34:42 +000067 bool Changed = false;
Owen Anderson5e72db32007-07-11 00:46:18 +000068 for (Function::iterator I = F.begin(), E = F.end(); I != E; ++I)
Chris Lattnerc053cbb2010-02-11 05:11:54 +000069 // Only check non-dead blocks. Dead blocks may have strange pointer
70 // cycles that will confuse alias analysis.
Nick Lewyckyf2905af2011-11-05 10:48:42 +000071 if (DT->isReachableFromEntry(I))
Chris Lattnerc053cbb2010-02-11 05:11:54 +000072 Changed |= runOnBasicBlock(*I);
Owen Anderson58704ee2011-09-06 18:14:09 +000073
Craig Topperf40110f2014-04-25 05:29:35 +000074 AA = nullptr; MD = nullptr; DT = nullptr;
Owen Anderson5e72db32007-07-11 00:46:18 +000075 return Changed;
76 }
Owen Anderson58704ee2011-09-06 18:14:09 +000077
Owen Anderson5e72db32007-07-11 00:46:18 +000078 bool runOnBasicBlock(BasicBlock &BB);
Chris Lattner9d179d92010-11-30 01:28:33 +000079 bool HandleFree(CallInst *F);
Chris Lattner1adb6752008-11-28 00:27:14 +000080 bool handleEndBlock(BasicBlock &BB);
Chris Lattner51d67ce2010-11-30 21:47:58 +000081 void RemoveAccessedObjects(const AliasAnalysis::Location &LoadedLoc,
Mehdi Aminia28d91d2015-03-10 02:37:25 +000082 SmallSetVector<Value *, 16> &DeadStackObjects,
83 const DataLayout &DL);
Owen Anderson5e72db32007-07-11 00:46:18 +000084
Craig Topper3e4c6972014-03-05 09:10:37 +000085 void getAnalysisUsage(AnalysisUsage &AU) const override {
Owen Anderson5e72db32007-07-11 00:46:18 +000086 AU.setPreservesCFG();
Chandler Carruth73523022014-01-13 13:07:17 +000087 AU.addRequired<DominatorTreeWrapperPass>();
Owen Andersonaa071722007-07-11 23:19:17 +000088 AU.addRequired<AliasAnalysis>();
Owen Anderson5e72db32007-07-11 00:46:18 +000089 AU.addRequired<MemoryDependenceAnalysis>();
Chris Lattner51c28a92010-11-30 19:34:42 +000090 AU.addPreserved<AliasAnalysis>();
Chandler Carruth73523022014-01-13 13:07:17 +000091 AU.addPreserved<DominatorTreeWrapperPass>();
Owen Anderson5e72db32007-07-11 00:46:18 +000092 AU.addPreserved<MemoryDependenceAnalysis>();
93 }
94 };
Owen Anderson5e72db32007-07-11 00:46:18 +000095}
96
Dan Gohmand78c4002008-05-13 00:00:25 +000097char DSE::ID = 0;
Owen Anderson8ac477f2010-10-12 19:48:12 +000098INITIALIZE_PASS_BEGIN(DSE, "dse", "Dead Store Elimination", false, false)
Chandler Carruth73523022014-01-13 13:07:17 +000099INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
Owen Anderson8ac477f2010-10-12 19:48:12 +0000100INITIALIZE_PASS_DEPENDENCY(MemoryDependenceAnalysis)
101INITIALIZE_AG_DEPENDENCY(AliasAnalysis)
102INITIALIZE_PASS_END(DSE, "dse", "Dead Store Elimination", false, false)
Dan Gohmand78c4002008-05-13 00:00:25 +0000103
Owen Anderson10e52ed2007-08-01 06:36:51 +0000104FunctionPass *llvm::createDeadStoreEliminationPass() { return new DSE(); }
Owen Anderson5e72db32007-07-11 00:46:18 +0000105
Chris Lattner67122512010-11-30 21:58:14 +0000106//===----------------------------------------------------------------------===//
107// Helper functions
108//===----------------------------------------------------------------------===//
109
110/// DeleteDeadInstruction - Delete this instruction. Before we do, go through
111/// and zero out all the operands of this instruction. If any of them become
112/// dead, delete them and the computation tree that feeds them.
113///
114/// If ValueSet is non-null, remove any deleted instructions from it as well.
115///
116static void DeleteDeadInstruction(Instruction *I,
Craig Topperf40110f2014-04-25 05:29:35 +0000117 MemoryDependenceAnalysis &MD,
118 const TargetLibraryInfo *TLI,
119 SmallSetVector<Value*, 16> *ValueSet = nullptr) {
Chris Lattner67122512010-11-30 21:58:14 +0000120 SmallVector<Instruction*, 32> NowDeadInsts;
Owen Anderson58704ee2011-09-06 18:14:09 +0000121
Chris Lattner67122512010-11-30 21:58:14 +0000122 NowDeadInsts.push_back(I);
123 --NumFastOther;
Owen Anderson58704ee2011-09-06 18:14:09 +0000124
Chris Lattner67122512010-11-30 21:58:14 +0000125 // Before we touch this instruction, remove it from memdep!
126 do {
127 Instruction *DeadInst = NowDeadInsts.pop_back_val();
128 ++NumFastOther;
Owen Anderson58704ee2011-09-06 18:14:09 +0000129
Chris Lattner67122512010-11-30 21:58:14 +0000130 // This instruction is dead, zap it, in stages. Start by removing it from
131 // MemDep, which needs to know the operands and needs it to be in the
132 // function.
133 MD.removeInstruction(DeadInst);
Owen Anderson58704ee2011-09-06 18:14:09 +0000134
Chris Lattner67122512010-11-30 21:58:14 +0000135 for (unsigned op = 0, e = DeadInst->getNumOperands(); op != e; ++op) {
136 Value *Op = DeadInst->getOperand(op);
Craig Topperf40110f2014-04-25 05:29:35 +0000137 DeadInst->setOperand(op, nullptr);
Owen Anderson58704ee2011-09-06 18:14:09 +0000138
Chris Lattner67122512010-11-30 21:58:14 +0000139 // If this operand just became dead, add it to the NowDeadInsts list.
140 if (!Op->use_empty()) continue;
Owen Anderson58704ee2011-09-06 18:14:09 +0000141
Chris Lattner67122512010-11-30 21:58:14 +0000142 if (Instruction *OpI = dyn_cast<Instruction>(Op))
Benjamin Kramer8bcc9712012-08-29 15:32:21 +0000143 if (isInstructionTriviallyDead(OpI, TLI))
Chris Lattner67122512010-11-30 21:58:14 +0000144 NowDeadInsts.push_back(OpI);
145 }
Owen Anderson58704ee2011-09-06 18:14:09 +0000146
Chris Lattner67122512010-11-30 21:58:14 +0000147 DeadInst->eraseFromParent();
Owen Anderson58704ee2011-09-06 18:14:09 +0000148
Evan Cheng773b2cd2012-06-16 04:28:11 +0000149 if (ValueSet) ValueSet->remove(DeadInst);
Chris Lattner67122512010-11-30 21:58:14 +0000150 } while (!NowDeadInsts.empty());
151}
152
153
Chris Lattner2227a8a2010-11-30 01:37:52 +0000154/// hasMemoryWrite - Does this instruction write some memory? This only returns
155/// true for things that we can analyze with other helpers below.
Nick Lewycky9f4729d2012-09-24 22:09:10 +0000156static bool hasMemoryWrite(Instruction *I, const TargetLibraryInfo *TLI) {
Nick Lewycky90271472009-11-10 06:46:40 +0000157 if (isa<StoreInst>(I))
158 return true;
159 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I)) {
160 switch (II->getIntrinsicID()) {
Chris Lattner2764b4d2009-12-02 06:35:55 +0000161 default:
162 return false;
163 case Intrinsic::memset:
164 case Intrinsic::memmove:
165 case Intrinsic::memcpy:
166 case Intrinsic::init_trampoline:
167 case Intrinsic::lifetime_end:
168 return true;
Nick Lewycky90271472009-11-10 06:46:40 +0000169 }
170 }
Benjamin Kramer3a09ef62015-04-10 14:50:08 +0000171 if (auto CS = CallSite(I)) {
Nick Lewycky9f4729d2012-09-24 22:09:10 +0000172 if (Function *F = CS.getCalledFunction()) {
173 if (TLI && TLI->has(LibFunc::strcpy) &&
174 F->getName() == TLI->getName(LibFunc::strcpy)) {
175 return true;
176 }
177 if (TLI && TLI->has(LibFunc::strncpy) &&
178 F->getName() == TLI->getName(LibFunc::strncpy)) {
179 return true;
180 }
181 if (TLI && TLI->has(LibFunc::strcat) &&
182 F->getName() == TLI->getName(LibFunc::strcat)) {
183 return true;
184 }
185 if (TLI && TLI->has(LibFunc::strncat) &&
186 F->getName() == TLI->getName(LibFunc::strncat)) {
187 return true;
188 }
189 }
190 }
Nick Lewycky90271472009-11-10 06:46:40 +0000191 return false;
192}
193
Chris Lattner58b779e2010-11-30 07:23:21 +0000194/// getLocForWrite - Return a Location stored to by the specified instruction.
Eli Friedman72a93e52011-09-13 01:28:59 +0000195/// If isRemovable returns true, this function and getLocForRead completely
196/// describe the memory operations for this instruction.
Chris Lattner58b779e2010-11-30 07:23:21 +0000197static AliasAnalysis::Location
198getLocForWrite(Instruction *Inst, AliasAnalysis &AA) {
199 if (StoreInst *SI = dyn_cast<StoreInst>(Inst))
200 return AA.getLocation(SI);
Owen Anderson58704ee2011-09-06 18:14:09 +0000201
Chris Lattner58b779e2010-11-30 07:23:21 +0000202 if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(Inst)) {
203 // memcpy/memmove/memset.
204 AliasAnalysis::Location Loc = AA.getLocationForDest(MI);
Chris Lattner58b779e2010-11-30 07:23:21 +0000205 return Loc;
206 }
Owen Anderson58704ee2011-09-06 18:14:09 +0000207
Chris Lattner58b779e2010-11-30 07:23:21 +0000208 IntrinsicInst *II = dyn_cast<IntrinsicInst>(Inst);
Craig Topperf40110f2014-04-25 05:29:35 +0000209 if (!II) return AliasAnalysis::Location();
Owen Anderson58704ee2011-09-06 18:14:09 +0000210
Chris Lattner58b779e2010-11-30 07:23:21 +0000211 switch (II->getIntrinsicID()) {
212 default: return AliasAnalysis::Location(); // Unhandled intrinsic.
213 case Intrinsic::init_trampoline:
Chris Lattner58b779e2010-11-30 07:23:21 +0000214 // FIXME: We don't know the size of the trampoline, so we can't really
215 // handle it here.
216 return AliasAnalysis::Location(II->getArgOperand(0));
217 case Intrinsic::lifetime_end: {
218 uint64_t Len = cast<ConstantInt>(II->getArgOperand(0))->getZExtValue();
219 return AliasAnalysis::Location(II->getArgOperand(1), Len);
220 }
221 }
222}
223
Chris Lattner94fbdf32010-12-06 01:48:06 +0000224/// getLocForRead - Return the location read by the specified "hasMemoryWrite"
225/// instruction if any.
Owen Anderson58704ee2011-09-06 18:14:09 +0000226static AliasAnalysis::Location
Chris Lattner94fbdf32010-12-06 01:48:06 +0000227getLocForRead(Instruction *Inst, AliasAnalysis &AA) {
Nick Lewycky9f4729d2012-09-24 22:09:10 +0000228 assert(hasMemoryWrite(Inst, AA.getTargetLibraryInfo()) &&
229 "Unknown instruction case");
Owen Anderson58704ee2011-09-06 18:14:09 +0000230
Chris Lattner94fbdf32010-12-06 01:48:06 +0000231 // The only instructions that both read and write are the mem transfer
232 // instructions (memcpy/memmove).
233 if (MemTransferInst *MTI = dyn_cast<MemTransferInst>(Inst))
234 return AA.getLocationForSource(MTI);
235 return AliasAnalysis::Location();
236}
237
238
Chris Lattner3590ef82010-11-30 05:30:45 +0000239/// isRemovable - If the value of this instruction and the memory it writes to
240/// is unused, may we delete this instruction?
241static bool isRemovable(Instruction *I) {
Eli Friedman9a468152011-08-17 22:22:24 +0000242 // Don't remove volatile/atomic stores.
Nick Lewycky90271472009-11-10 06:46:40 +0000243 if (StoreInst *SI = dyn_cast<StoreInst>(I))
Eli Friedman9a468152011-08-17 22:22:24 +0000244 return SI->isUnordered();
Owen Anderson58704ee2011-09-06 18:14:09 +0000245
Nick Lewycky9f4729d2012-09-24 22:09:10 +0000246 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I)) {
247 switch (II->getIntrinsicID()) {
248 default: llvm_unreachable("doesn't pass 'hasMemoryWrite' predicate");
249 case Intrinsic::lifetime_end:
250 // Never remove dead lifetime_end's, e.g. because it is followed by a
251 // free.
252 return false;
253 case Intrinsic::init_trampoline:
254 // Always safe to remove init_trampoline.
255 return true;
Owen Anderson58704ee2011-09-06 18:14:09 +0000256
Nick Lewycky9f4729d2012-09-24 22:09:10 +0000257 case Intrinsic::memset:
258 case Intrinsic::memmove:
259 case Intrinsic::memcpy:
260 // Don't remove volatile memory intrinsics.
261 return !cast<MemIntrinsic>(II)->isVolatile();
262 }
Chris Lattnerb63ba732010-11-30 19:12:10 +0000263 }
Nick Lewycky9f4729d2012-09-24 22:09:10 +0000264
Benjamin Kramer3a09ef62015-04-10 14:50:08 +0000265 if (auto CS = CallSite(I))
Nick Lewycky42bca052012-09-25 01:55:59 +0000266 return CS.getInstruction()->use_empty();
Nick Lewycky9f4729d2012-09-24 22:09:10 +0000267
268 return false;
Nick Lewycky90271472009-11-10 06:46:40 +0000269}
270
Pete Cooper856977c2011-11-09 23:07:35 +0000271
272/// isShortenable - Returns true if this instruction can be safely shortened in
273/// length.
274static bool isShortenable(Instruction *I) {
275 // Don't shorten stores for now
276 if (isa<StoreInst>(I))
277 return false;
Nadav Rotem465834c2012-07-24 10:51:42 +0000278
Nick Lewycky9f4729d2012-09-24 22:09:10 +0000279 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I)) {
280 switch (II->getIntrinsicID()) {
281 default: return false;
282 case Intrinsic::memset:
283 case Intrinsic::memcpy:
284 // Do shorten memory intrinsics.
285 return true;
286 }
Pete Cooper856977c2011-11-09 23:07:35 +0000287 }
Nick Lewycky9f4729d2012-09-24 22:09:10 +0000288
289 // Don't shorten libcalls calls for now.
290
291 return false;
Pete Cooper856977c2011-11-09 23:07:35 +0000292}
293
Chris Lattner67122512010-11-30 21:58:14 +0000294/// getStoredPointerOperand - Return the pointer that is being written to.
295static Value *getStoredPointerOperand(Instruction *I) {
Nick Lewycky90271472009-11-10 06:46:40 +0000296 if (StoreInst *SI = dyn_cast<StoreInst>(I))
297 return SI->getPointerOperand();
298 if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(I))
Chris Lattner67122512010-11-30 21:58:14 +0000299 return MI->getDest();
Gabor Greif91f95892010-06-24 12:03:56 +0000300
Nick Lewycky9f4729d2012-09-24 22:09:10 +0000301 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I)) {
302 switch (II->getIntrinsicID()) {
303 default: llvm_unreachable("Unexpected intrinsic!");
304 case Intrinsic::init_trampoline:
305 return II->getArgOperand(0);
306 }
Duncan Sands1925d3a2009-11-10 13:49:50 +0000307 }
Nick Lewycky9f4729d2012-09-24 22:09:10 +0000308
Benjamin Kramer3a09ef62015-04-10 14:50:08 +0000309 CallSite CS(I);
Nick Lewycky9f4729d2012-09-24 22:09:10 +0000310 // All the supported functions so far happen to have dest as their first
311 // argument.
312 return CS.getArgument(0);
Nick Lewycky90271472009-11-10 06:46:40 +0000313}
314
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000315static uint64_t getPointerSize(const Value *V, const DataLayout &DL,
316 const TargetLibraryInfo *TLI) {
Nuno Lopes55fff832012-06-21 15:45:28 +0000317 uint64_t Size;
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000318 if (getObjectSize(V, Size, DL, TLI))
Nuno Lopes55fff832012-06-21 15:45:28 +0000319 return Size;
Nick Lewyckyc7f1e792011-11-16 03:49:48 +0000320 return AliasAnalysis::UnknownSize;
Chris Lattner903add82010-11-30 23:43:23 +0000321}
Chris Lattner51c28a92010-11-30 19:34:42 +0000322
Pete Cooper856977c2011-11-09 23:07:35 +0000323namespace {
324 enum OverwriteResult
325 {
326 OverwriteComplete,
327 OverwriteEnd,
328 OverwriteUnknown
329 };
330}
331
332/// isOverwrite - Return 'OverwriteComplete' if a store to the 'Later' location
Chris Lattner58b779e2010-11-30 07:23:21 +0000333/// completely overwrites a store to the 'Earlier' location.
Nadav Rotem465834c2012-07-24 10:51:42 +0000334/// 'OverwriteEnd' if the end of the 'Earlier' location is completely
Pete Cooper39b52552012-02-28 05:06:24 +0000335/// overwritten by 'Later', or 'OverwriteUnknown' if nothing can be determined
Pete Cooper856977c2011-11-09 23:07:35 +0000336static OverwriteResult isOverwrite(const AliasAnalysis::Location &Later,
337 const AliasAnalysis::Location &Earlier,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000338 const DataLayout &DL,
339 const TargetLibraryInfo *TLI,
340 int64_t &EarlierOff, int64_t &LaterOff) {
Chris Lattnerc0f33792010-11-30 23:05:20 +0000341 const Value *P1 = Earlier.Ptr->stripPointerCasts();
342 const Value *P2 = Later.Ptr->stripPointerCasts();
Owen Anderson58704ee2011-09-06 18:14:09 +0000343
Chris Lattnerc0f33792010-11-30 23:05:20 +0000344 // If the start pointers are the same, we just have to compare sizes to see if
345 // the later store was larger than the earlier store.
346 if (P1 == P2) {
347 // If we don't know the sizes of either access, then we can't do a
348 // comparison.
349 if (Later.Size == AliasAnalysis::UnknownSize ||
Hal Finkeldd38c0b2014-10-17 11:56:00 +0000350 Earlier.Size == AliasAnalysis::UnknownSize)
Pete Cooper856977c2011-11-09 23:07:35 +0000351 return OverwriteUnknown;
Owen Anderson58704ee2011-09-06 18:14:09 +0000352
Chris Lattnerc0f33792010-11-30 23:05:20 +0000353 // Make sure that the Later size is >= the Earlier size.
Pete Cooper856977c2011-11-09 23:07:35 +0000354 if (Later.Size >= Earlier.Size)
355 return OverwriteComplete;
Chris Lattner77d79fa2010-11-30 19:28:23 +0000356 }
Owen Anderson58704ee2011-09-06 18:14:09 +0000357
Chris Lattnerc0f33792010-11-30 23:05:20 +0000358 // Otherwise, we have to have size information, and the later store has to be
359 // larger than the earlier one.
360 if (Later.Size == AliasAnalysis::UnknownSize ||
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000361 Earlier.Size == AliasAnalysis::UnknownSize)
Pete Cooper856977c2011-11-09 23:07:35 +0000362 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,
Reid Kleckner26af2ca2014-01-28 02:38:36 +0000365 // an alloca, or a byval/inalloca argument). If so, then it clearly
366 // overwrites any other store to the same object.
Rafael Espindola5f57f462014-02-21 18:34:28 +0000367 const Value *UO1 = GetUnderlyingObject(P1, DL),
368 *UO2 = GetUnderlyingObject(P2, DL);
Owen Anderson58704ee2011-09-06 18:14:09 +0000369
Chris Lattner903add82010-11-30 23:43:23 +0000370 // If we can't resolve the same pointers to the same object, then we can't
371 // analyze them at all.
372 if (UO1 != UO2)
Pete Cooper856977c2011-11-09 23:07:35 +0000373 return OverwriteUnknown;
Owen Anderson58704ee2011-09-06 18:14:09 +0000374
Chris Lattner903add82010-11-30 23:43:23 +0000375 // If the "Later" store is to a recognizable object, get its size.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000376 uint64_t ObjectSize = getPointerSize(UO2, DL, TLI);
Nick Lewyckyc7f1e792011-11-16 03:49:48 +0000377 if (ObjectSize != AliasAnalysis::UnknownSize)
Pete Coopera4237c32011-11-10 20:22:08 +0000378 if (ObjectSize == Later.Size && ObjectSize >= Earlier.Size)
Pete Cooper856977c2011-11-09 23:07:35 +0000379 return OverwriteComplete;
Owen Anderson58704ee2011-09-06 18:14:09 +0000380
Chris Lattnerc0f33792010-11-30 23:05:20 +0000381 // Okay, we have stores to two completely different pointers. Try to
382 // decompose the pointer into a "base + constant_offset" form. If the base
383 // pointers are equal, then we can reason about the two stores.
Pete Cooper856977c2011-11-09 23:07:35 +0000384 EarlierOff = 0;
385 LaterOff = 0;
Rafael Espindola5f57f462014-02-21 18:34:28 +0000386 const Value *BP1 = GetPointerBaseWithConstantOffset(P1, EarlierOff, DL);
387 const Value *BP2 = GetPointerBaseWithConstantOffset(P2, LaterOff, DL);
Owen Anderson58704ee2011-09-06 18:14:09 +0000388
Chris Lattnerc0f33792010-11-30 23:05:20 +0000389 // If the base pointers still differ, we have two completely different stores.
390 if (BP1 != BP2)
Pete Cooper856977c2011-11-09 23:07:35 +0000391 return OverwriteUnknown;
Bill Wendlingdb40b5c2011-03-26 01:20:37 +0000392
Bill Wendling19f33b92011-03-26 08:02:59 +0000393 // The later store completely overlaps the earlier store if:
Owen Anderson58704ee2011-09-06 18:14:09 +0000394 //
Bill Wendling19f33b92011-03-26 08:02:59 +0000395 // 1. Both start at the same offset and the later one's size is greater than
396 // or equal to the earlier one's, or
397 //
398 // |--earlier--|
399 // |-- later --|
Owen Anderson58704ee2011-09-06 18:14:09 +0000400 //
Bill Wendling19f33b92011-03-26 08:02:59 +0000401 // 2. The earlier store has an offset greater than the later offset, but which
402 // still lies completely within the later store.
403 //
404 // |--earlier--|
405 // |----- later ------|
Bill Wendling50341592011-03-30 21:37:19 +0000406 //
407 // We have to be careful here as *Off is signed while *.Size is unsigned.
Bill Wendlingb5139922011-03-26 09:32:07 +0000408 if (EarlierOff >= LaterOff &&
Craig Topper2a404182012-08-14 07:32:05 +0000409 Later.Size >= Earlier.Size &&
Bill Wendling50341592011-03-30 21:37:19 +0000410 uint64_t(EarlierOff - LaterOff) + Earlier.Size <= Later.Size)
Pete Cooper856977c2011-11-09 23:07:35 +0000411 return OverwriteComplete;
Nadav Rotem465834c2012-07-24 10:51:42 +0000412
Pete Cooper856977c2011-11-09 23:07:35 +0000413 // The other interesting case is if the later store overwrites the end of
414 // the earlier store
415 //
416 // |--earlier--|
417 // |-- later --|
418 //
419 // In this case we may want to trim the size of earlier to avoid generating
420 // writes to addresses which will definitely be overwritten later
421 if (LaterOff > EarlierOff &&
422 LaterOff < int64_t(EarlierOff + Earlier.Size) &&
Pete Coopere03fe832011-12-03 00:04:30 +0000423 int64_t(LaterOff + Later.Size) >= int64_t(EarlierOff + Earlier.Size))
Pete Cooper856977c2011-11-09 23:07:35 +0000424 return OverwriteEnd;
Bill Wendling19f33b92011-03-26 08:02:59 +0000425
426 // Otherwise, they don't completely overlap.
Pete Cooper856977c2011-11-09 23:07:35 +0000427 return OverwriteUnknown;
Nick Lewycky90271472009-11-10 06:46:40 +0000428}
429
Chris Lattner94fbdf32010-12-06 01:48:06 +0000430/// isPossibleSelfRead - If 'Inst' might be a self read (i.e. a noop copy of a
431/// memory region into an identical pointer) then it doesn't actually make its
Owen Anderson58704ee2011-09-06 18:14:09 +0000432/// input dead in the traditional sense. Consider this case:
Chris Lattner94fbdf32010-12-06 01:48:06 +0000433///
434/// memcpy(A <- B)
435/// memcpy(A <- A)
436///
437/// In this case, the second store to A does not make the first store to A dead.
438/// The usual situation isn't an explicit A<-A store like this (which can be
439/// trivially removed) but a case where two pointers may alias.
440///
441/// This function detects when it is unsafe to remove a dependent instruction
442/// because the DSE inducing instruction may be a self-read.
443static bool isPossibleSelfRead(Instruction *Inst,
444 const AliasAnalysis::Location &InstStoreLoc,
445 Instruction *DepWrite, AliasAnalysis &AA) {
446 // Self reads can only happen for instructions that read memory. Get the
447 // location read.
448 AliasAnalysis::Location InstReadLoc = getLocForRead(Inst, AA);
Craig Topperf40110f2014-04-25 05:29:35 +0000449 if (!InstReadLoc.Ptr) return false; // Not a reading instruction.
Owen Anderson58704ee2011-09-06 18:14:09 +0000450
Chris Lattner94fbdf32010-12-06 01:48:06 +0000451 // If the read and written loc obviously don't alias, it isn't a read.
452 if (AA.isNoAlias(InstReadLoc, InstStoreLoc)) return false;
Owen Anderson58704ee2011-09-06 18:14:09 +0000453
Chris Lattner94fbdf32010-12-06 01:48:06 +0000454 // Okay, 'Inst' may copy over itself. However, we can still remove a the
455 // DepWrite instruction if we can prove that it reads from the same location
456 // as Inst. This handles useful cases like:
457 // memcpy(A <- B)
458 // memcpy(A <- B)
459 // Here we don't know if A/B may alias, but we do know that B/B are must
460 // aliases, so removing the first memcpy is safe (assuming it writes <= #
461 // bytes as the second one.
462 AliasAnalysis::Location DepReadLoc = getLocForRead(DepWrite, AA);
Owen Anderson58704ee2011-09-06 18:14:09 +0000463
Chris Lattner94fbdf32010-12-06 01:48:06 +0000464 if (DepReadLoc.Ptr && AA.isMustAlias(InstReadLoc.Ptr, DepReadLoc.Ptr))
465 return false;
Owen Anderson58704ee2011-09-06 18:14:09 +0000466
Chris Lattner94fbdf32010-12-06 01:48:06 +0000467 // If DepWrite doesn't read memory or if we can't prove it is a must alias,
468 // then it can't be considered dead.
469 return true;
470}
471
Chris Lattner67122512010-11-30 21:58:14 +0000472
473//===----------------------------------------------------------------------===//
474// DSE Pass
475//===----------------------------------------------------------------------===//
476
Owen Anderson10e52ed2007-08-01 06:36:51 +0000477bool DSE::runOnBasicBlock(BasicBlock &BB) {
Owen Anderson5e72db32007-07-11 00:46:18 +0000478 bool MadeChange = false;
Owen Anderson58704ee2011-09-06 18:14:09 +0000479
Chris Lattner49162672009-09-02 06:31:02 +0000480 // Do a top-down walk on the BB.
Chris Lattnerf2a8ba42008-11-28 21:29:52 +0000481 for (BasicBlock::iterator BBI = BB.begin(), BBE = BB.end(); BBI != BBE; ) {
482 Instruction *Inst = BBI++;
Owen Anderson58704ee2011-09-06 18:14:09 +0000483
Chris Lattner9d179d92010-11-30 01:28:33 +0000484 // Handle 'free' calls specially.
Nick Lewycky135ac9a2012-09-24 22:07:09 +0000485 if (CallInst *F = isFreeCall(Inst, TLI)) {
Chris Lattner9d179d92010-11-30 01:28:33 +0000486 MadeChange |= HandleFree(F);
487 continue;
488 }
Owen Anderson58704ee2011-09-06 18:14:09 +0000489
Chris Lattner2227a8a2010-11-30 01:37:52 +0000490 // If we find something that writes memory, get its memory dependence.
Nick Lewycky9f4729d2012-09-24 22:09:10 +0000491 if (!hasMemoryWrite(Inst, TLI))
Owen Anderson0aecf0e2007-08-08 04:52:29 +0000492 continue;
Chris Lattnerd4f10902010-11-30 00:01:19 +0000493
Chris Lattner51c28a92010-11-30 19:34:42 +0000494 MemDepResult InstDep = MD->getDependency(Inst);
Owen Anderson58704ee2011-09-06 18:14:09 +0000495
Eli Friedman7d58bc72011-06-15 00:47:34 +0000496 // Ignore any store where we can't find a local dependence.
Chris Lattner57e91ea2008-12-06 00:53:22 +0000497 // FIXME: cross-block DSE would be fun. :)
Eli Friedmanc1702c82011-10-13 22:14:57 +0000498 if (!InstDep.isDef() && !InstDep.isClobber())
Chris Lattner58b779e2010-11-30 07:23:21 +0000499 continue;
Owen Anderson58704ee2011-09-06 18:14:09 +0000500
Rui Ueyamac487f772014-08-06 19:30:38 +0000501 // If we're storing the same value back to a pointer that we just
502 // loaded from, then the store can be removed.
Nick Lewycky90271472009-11-10 06:46:40 +0000503 if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
504 if (LoadInst *DepLoad = dyn_cast<LoadInst>(InstDep.getInst())) {
505 if (SI->getPointerOperand() == DepLoad->getPointerOperand() &&
Eli Friedman9a468152011-08-17 22:22:24 +0000506 SI->getOperand(0) == DepLoad && isRemovable(SI)) {
Chris Lattnerca335e32010-12-06 21:13:51 +0000507 DEBUG(dbgs() << "DSE: Remove Store Of Load from same pointer:\n "
508 << "LOAD: " << *DepLoad << "\n STORE: " << *SI << '\n');
Philip Reames00c9b642014-08-05 17:48:20 +0000509
Rui Ueyamac487f772014-08-06 19:30:38 +0000510 // DeleteDeadInstruction can delete the current instruction. Save BBI
511 // in case we need it.
512 WeakVH NextInst(BBI);
Philip Reames00c9b642014-08-05 17:48:20 +0000513
Rui Ueyamac487f772014-08-06 19:30:38 +0000514 DeleteDeadInstruction(SI, *MD, TLI);
515
516 if (!NextInst) // Next instruction deleted.
517 BBI = BB.begin();
518 else if (BBI != BB.begin()) // Revisit this instruction if possible.
519 --BBI;
520 ++NumFastStores;
521 MadeChange = true;
522 continue;
523 }
Philip Reames00c9b642014-08-05 17:48:20 +0000524 }
Owen Anderson5e72db32007-07-11 00:46:18 +0000525 }
Owen Anderson58704ee2011-09-06 18:14:09 +0000526
Chris Lattner58b779e2010-11-30 07:23:21 +0000527 // Figure out what location is being stored to.
Chris Lattner51c28a92010-11-30 19:34:42 +0000528 AliasAnalysis::Location Loc = getLocForWrite(Inst, *AA);
Chris Lattner58b779e2010-11-30 07:23:21 +0000529
530 // If we didn't get a useful location, fail.
Craig Topperf40110f2014-04-25 05:29:35 +0000531 if (!Loc.Ptr)
Chris Lattner58b779e2010-11-30 07:23:21 +0000532 continue;
Owen Anderson58704ee2011-09-06 18:14:09 +0000533
Eli Friedmanc1702c82011-10-13 22:14:57 +0000534 while (InstDep.isDef() || InstDep.isClobber()) {
Chris Lattner58b779e2010-11-30 07:23:21 +0000535 // Get the memory clobbered by the instruction we depend on. MemDep will
536 // skip any instructions that 'Loc' clearly doesn't interact with. If we
537 // end up depending on a may- or must-aliased load, then we can't optimize
538 // away the store and we bail out. However, if we depend on on something
539 // that overwrites the memory location we *can* potentially optimize it.
540 //
Chris Lattner0ab5e2c2011-04-15 05:18:47 +0000541 // Find out what memory location the dependent instruction stores.
Chris Lattner58b779e2010-11-30 07:23:21 +0000542 Instruction *DepWrite = InstDep.getInst();
Chris Lattner51c28a92010-11-30 19:34:42 +0000543 AliasAnalysis::Location DepLoc = getLocForWrite(DepWrite, *AA);
Chris Lattner58b779e2010-11-30 07:23:21 +0000544 // If we didn't get a useful location, or if it isn't a size, bail out.
Craig Topperf40110f2014-04-25 05:29:35 +0000545 if (!DepLoc.Ptr)
Chris Lattner58b779e2010-11-30 07:23:21 +0000546 break;
547
Chris Lattner94fbdf32010-12-06 01:48:06 +0000548 // If we find a write that is a) removable (i.e., non-volatile), b) is
549 // completely obliterated by the store to 'Loc', and c) which we know that
550 // 'Inst' doesn't load from, then we can remove it.
Nadav Rotem465834c2012-07-24 10:51:42 +0000551 if (isRemovable(DepWrite) &&
Chris Lattner94fbdf32010-12-06 01:48:06 +0000552 !isPossibleSelfRead(Inst, Loc, DepWrite, *AA)) {
Nadav Rotem465834c2012-07-24 10:51:42 +0000553 int64_t InstWriteOffset, DepWriteOffset;
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000554 const DataLayout &DL = BB.getModule()->getDataLayout();
555 OverwriteResult OR =
556 isOverwrite(Loc, DepLoc, DL, AA->getTargetLibraryInfo(),
557 DepWriteOffset, InstWriteOffset);
Pete Cooper856977c2011-11-09 23:07:35 +0000558 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.
Nick Lewycky135ac9a2012-09-24 22:07:09 +0000563 DeleteDeadInstruction(DepWrite, *MD, TLI);
Pete Cooper856977c2011-11-09 23:07:35 +0000564 ++NumFastStores;
565 MadeChange = true;
Nadav Rotem465834c2012-07-24 10:51:42 +0000566
Pete Cooper856977c2011-11-09 23:07:35 +0000567 // 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)) {
Nadav Rotem465834c2012-07-24 10:51:42 +0000584
Pete Cooper856977c2011-11-09 23:07:35 +0000585 DEBUG(dbgs() << "DSE: Remove Dead Store:\n OW END: "
Nadav Rotem465834c2012-07-24 10:51:42 +0000586 << *DepWrite << "\n KILLER (offset "
587 << InstWriteOffset << ", "
Pete Cooper856977c2011-11-09 23:07:35 +0000588 << DepLoc.Size << ")"
589 << *Inst << '\n');
Nadav Rotem465834c2012-07-24 10:51:42 +0000590
Pete Cooper856977c2011-11-09 23:07:35 +0000591 Value* DepWriteLength = DepIntrinsic->getLength();
592 Value* TrimmedLength = ConstantInt::get(DepWriteLength->getType(),
Nadav Rotem465834c2012-07-24 10:51:42 +0000593 InstWriteOffset -
Pete Cooper856977c2011-11-09 23:07:35 +0000594 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) {
Duncan P. N. Exon Smith6c990152014-07-21 17:06:51 +0000631 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());
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000651 const DataLayout &DL = F->getModule()->getDataLayout();
Eli Friedman7d58bc72011-06-15 00:47:34 +0000652
Nick Lewyckyf2905af2011-11-05 10:48:42 +0000653 while (!Blocks.empty()) {
654 BasicBlock *BB = Blocks.pop_back_val();
655 Instruction *InstPt = BB->getTerminator();
656 if (BB == F->getParent()) InstPt = F;
Owen Anderson58704ee2011-09-06 18:14:09 +0000657
Nick Lewyckyf2905af2011-11-05 10:48:42 +0000658 MemDepResult Dep = MD->getPointerDependencyFrom(Loc, false, InstPt, BB);
659 while (Dep.isDef() || Dep.isClobber()) {
660 Instruction *Dependency = Dep.getInst();
Nick Lewycky9f4729d2012-09-24 22:09:10 +0000661 if (!hasMemoryWrite(Dependency, TLI) || !isRemovable(Dependency))
Nick Lewyckyf2905af2011-11-05 10:48:42 +0000662 break;
Duncan Sandsfe3bef02008-01-20 10:49:23 +0000663
Nick Lewyckyf2905af2011-11-05 10:48:42 +0000664 Value *DepPointer =
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000665 GetUnderlyingObject(getStoredPointerOperand(Dependency), DL);
Owen Anderson58704ee2011-09-06 18:14:09 +0000666
Nick Lewyckyf2905af2011-11-05 10:48:42 +0000667 // Check for aliasing.
668 if (!AA->isMustAlias(F->getArgOperand(0), DepPointer))
669 break;
Dan Gohmand4b7fff2010-11-12 02:19:17 +0000670
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000671 Instruction *Next = std::next(BasicBlock::iterator(Dependency));
Nick Lewyckyf2905af2011-11-05 10:48:42 +0000672
673 // DCE instructions only used to calculate that store
Nick Lewycky135ac9a2012-09-24 22:07:09 +0000674 DeleteDeadInstruction(Dependency, *MD, TLI);
Nick Lewyckyf2905af2011-11-05 10:48:42 +0000675 ++NumFastStores;
676 MadeChange = true;
677
678 // Inst's old Dependency is now deleted. Compute the next dependency,
679 // which may also be dead, as in
680 // s[0] = 0;
681 // s[1] = 0; // This has just been deleted.
682 // free(s);
683 Dep = MD->getPointerDependencyFrom(Loc, false, Next, BB);
684 }
685
686 if (Dep.isNonLocal())
687 FindUnconditionalPreds(Blocks, BB, DT);
688 }
Owen Anderson58704ee2011-09-06 18:14:09 +0000689
Eli Friedman7d58bc72011-06-15 00:47:34 +0000690 return MadeChange;
Owen Andersonaa071722007-07-11 23:19:17 +0000691}
692
Owen Andersone3590582007-08-02 18:11:11 +0000693/// handleEndBlock - Remove dead stores to stack-allocated locations in the
Owen Anderson52aaabf2007-08-08 17:50:09 +0000694/// function end block. Ex:
695/// %A = alloca i32
696/// ...
697/// store i32 1, i32* %A
698/// ret void
Chris Lattner1adb6752008-11-28 00:27:14 +0000699bool DSE::handleEndBlock(BasicBlock &BB) {
Owen Anderson32c4a052007-07-12 21:41:30 +0000700 bool MadeChange = false;
Owen Anderson58704ee2011-09-06 18:14:09 +0000701
Chris Lattner7fe08b62010-11-30 21:32:12 +0000702 // Keep track of all of the stack objects that are dead at the end of the
703 // function.
Evan Cheng773b2cd2012-06-16 04:28:11 +0000704 SmallSetVector<Value*, 16> DeadStackObjects;
Owen Anderson58704ee2011-09-06 18:14:09 +0000705
Chris Lattner1adb6752008-11-28 00:27:14 +0000706 // Find all of the alloca'd pointers in the entry block.
Owen Anderson32c4a052007-07-12 21:41:30 +0000707 BasicBlock *Entry = BB.getParent()->begin();
Nick Lewycky32f80512011-10-22 21:59:35 +0000708 for (BasicBlock::iterator I = Entry->begin(), E = Entry->end(); I != E; ++I) {
Nuno Lopes55fff832012-06-21 15:45:28 +0000709 if (isa<AllocaInst>(I))
710 DeadStackObjects.insert(I);
Owen Anderson58704ee2011-09-06 18:14:09 +0000711
Nick Lewycky32f80512011-10-22 21:59:35 +0000712 // Okay, so these are dead heap objects, but if the pointer never escapes
713 // then it's leaked by this function anyways.
Nick Lewycky135ac9a2012-09-24 22:07:09 +0000714 else if (isAllocLikeFn(I, TLI) && !PointerMayBeCaptured(I, true, true))
Nuno Lopes55fff832012-06-21 15:45:28 +0000715 DeadStackObjects.insert(I);
Nick Lewycky32f80512011-10-22 21:59:35 +0000716 }
717
Reid Kleckner26af2ca2014-01-28 02:38:36 +0000718 // Treat byval or inalloca arguments the same, stores to them are dead at the
719 // end of the function.
Owen Anderson48d37802008-01-29 06:18:36 +0000720 for (Function::arg_iterator AI = BB.getParent()->arg_begin(),
721 AE = BB.getParent()->arg_end(); AI != AE; ++AI)
Reid Kleckner26af2ca2014-01-28 02:38:36 +0000722 if (AI->hasByValOrInAllocaAttr())
Chris Lattner7fe08b62010-11-30 21:32:12 +0000723 DeadStackObjects.insert(AI);
Owen Anderson58704ee2011-09-06 18:14:09 +0000724
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000725 const DataLayout &DL = BB.getModule()->getDataLayout();
726
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.
Nick Lewycky9f4729d2012-09-24 22:09:10 +0000732 if (hasMemoryWrite(BBI, TLI) && isRemovable(BBI)) {
Chris Lattner60a8b3d2010-11-30 19:48:15 +0000733 // See through pointer-to-pointer bitcasts
Dan Gohmaned7c24e22012-05-10 18:57:38 +0000734 SmallVector<Value *, 4> Pointers;
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000735 GetUnderlyingObjects(getStoredPointerOperand(BBI), Pointers, DL);
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;
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000754 if (std::next(I) != E)
Dan Gohmaned7c24e22012-05-10 18:57:38 +0000755 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.
Nick Lewycky135ac9a2012-09-24 22:07:09 +0000760 DeleteDeadInstruction(Dead, *MD, TLI, &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.
Nick Lewycky135ac9a2012-09-24 22:07:09 +0000768 if (isInstructionTriviallyDead(BBI, TLI)) {
Chris Lattner60a8b3d2010-11-30 19:48:15 +0000769 Instruction *Inst = BBI++;
Nick Lewycky135ac9a2012-09-24 22:07:09 +0000770 DeleteDeadInstruction(Inst, *MD, TLI, &DeadStackObjects);
Chris Lattner60a8b3d2010-11-30 19:48:15 +0000771 ++NumFastOther;
772 MadeChange = true;
773 continue;
774 }
Owen Anderson58704ee2011-09-06 18:14:09 +0000775
Eli Friedman08ec0a82012-08-08 02:17:32 +0000776 if (isa<AllocaInst>(BBI)) {
777 // Remove allocas from the list of dead stack objects; there can't be
778 // any references before the definition.
Nuno Lopes55fff832012-06-21 15:45:28 +0000779 DeadStackObjects.remove(BBI);
Nuno Lopes300d6292012-05-10 17:14:00 +0000780 continue;
781 }
782
Benjamin Kramer3a09ef62015-04-10 14:50:08 +0000783 if (auto CS = CallSite(BBI)) {
Eli Friedman08ec0a82012-08-08 02:17:32 +0000784 // Remove allocation function calls from the list of dead stack objects;
785 // there can't be any references before the definition.
Nick Lewycky135ac9a2012-09-24 22:07:09 +0000786 if (isAllocLikeFn(BBI, TLI))
Eli Friedman08ec0a82012-08-08 02:17:32 +0000787 DeadStackObjects.remove(BBI);
788
Chris Lattner127818d2010-11-30 21:18:46 +0000789 // If this call does not access memory, it can't be loading any of our
790 // pointers.
791 if (AA->doesNotAccessMemory(CS))
792 continue;
Owen Anderson58704ee2011-09-06 18:14:09 +0000793
Chris Lattner127818d2010-11-30 21:18:46 +0000794 // If the call might load from any of our allocas, then any store above
795 // the call is live.
Chandler Carruthd031fe92014-03-03 19:28:52 +0000796 DeadStackObjects.remove_if([&](Value *I) {
Benjamin Kramer3a377bc2014-03-01 11:47:00 +0000797 // See if the call site touches the value.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000798 AliasAnalysis::ModRefResult A = AA->getModRefInfo(
799 CS, I, getPointerSize(I, DL, AA->getTargetLibraryInfo()));
Benjamin Kramer3a377bc2014-03-01 11:47:00 +0000800
801 return A == AliasAnalysis::ModRef || A == AliasAnalysis::Ref;
Chandler Carruthd031fe92014-03-03 19:28:52 +0000802 });
Owen Anderson58704ee2011-09-06 18:14:09 +0000803
Benjamin Kramer2b11eb02012-09-09 16:44:05 +0000804 // If all of the allocas were clobbered by the call then we're not going
805 // to find anything else to process.
Benjamin Kramer650b1db2012-10-14 10:21:31 +0000806 if (DeadStackObjects.empty())
Benjamin Kramer2b11eb02012-09-09 16:44:05 +0000807 break;
808
Chris Lattner127818d2010-11-30 21:18:46 +0000809 continue;
810 }
Eli Friedman89b694b2011-07-27 01:08:30 +0000811
Chris Lattner51d67ce2010-11-30 21:47:58 +0000812 AliasAnalysis::Location LoadedLoc;
Owen Anderson58704ee2011-09-06 18:14:09 +0000813
Owen Anderson32c4a052007-07-12 21:41:30 +0000814 // If we encounter a use of the pointer, it is no longer considered dead
Chris Lattner1adb6752008-11-28 00:27:14 +0000815 if (LoadInst *L = dyn_cast<LoadInst>(BBI)) {
Eli Friedman9a468152011-08-17 22:22:24 +0000816 if (!L->isUnordered()) // Be conservative with atomic/volatile load
817 break;
Chris Lattner51d67ce2010-11-30 21:47:58 +0000818 LoadedLoc = AA->getLocation(L);
Nick Lewycky475d3d12010-01-03 04:39:07 +0000819 } else if (VAArgInst *V = dyn_cast<VAArgInst>(BBI)) {
Chris Lattner51d67ce2010-11-30 21:47:58 +0000820 LoadedLoc = AA->getLocation(V);
Chris Lattner60a8b3d2010-11-30 19:48:15 +0000821 } else if (MemTransferInst *MTI = dyn_cast<MemTransferInst>(BBI)) {
Chris Lattner51d67ce2010-11-30 21:47:58 +0000822 LoadedLoc = AA->getLocationForSource(MTI);
Owen Anderson58704ee2011-09-06 18:14:09 +0000823 } else if (!BBI->mayReadFromMemory()) {
824 // Instruction doesn't read memory. Note that stores that weren't removed
825 // above will hit this case.
Chris Lattner1adb6752008-11-28 00:27:14 +0000826 continue;
Eli Friedman89b694b2011-07-27 01:08:30 +0000827 } else {
828 // Unknown inst; assume it clobbers everything.
829 break;
Owen Anderson32c4a052007-07-12 21:41:30 +0000830 }
Duncan Sandsd65a4da2008-10-01 15:25:41 +0000831
Chris Lattner7fe08b62010-11-30 21:32:12 +0000832 // Remove any allocas from the DeadPointer set that are loaded, as this
833 // makes any stores above the access live.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000834 RemoveAccessedObjects(LoadedLoc, DeadStackObjects, DL);
Duncan Sandsd65a4da2008-10-01 15:25:41 +0000835
Chris Lattner7fe08b62010-11-30 21:32:12 +0000836 // If all of the allocas were clobbered by the access then we're not going
837 // to find anything else to process.
838 if (DeadStackObjects.empty())
839 break;
Owen Anderson32c4a052007-07-12 21:41:30 +0000840 }
Owen Anderson58704ee2011-09-06 18:14:09 +0000841
Owen Anderson32c4a052007-07-12 21:41:30 +0000842 return MadeChange;
843}
844
Chris Lattner7fe08b62010-11-30 21:32:12 +0000845/// RemoveAccessedObjects - Check to see if the specified location may alias any
846/// of the stack objects in the DeadStackObjects set. If so, they become live
847/// because the location is being loaded.
Chris Lattner51d67ce2010-11-30 21:47:58 +0000848void DSE::RemoveAccessedObjects(const AliasAnalysis::Location &LoadedLoc,
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000849 SmallSetVector<Value *, 16> &DeadStackObjects,
850 const DataLayout &DL) {
851 const Value *UnderlyingPointer = GetUnderlyingObject(LoadedLoc.Ptr, DL);
Chris Lattner7fe08b62010-11-30 21:32:12 +0000852
853 // A constant can't be in the dead pointer set.
854 if (isa<Constant>(UnderlyingPointer))
Chris Lattnerf80b3992010-11-30 21:38:30 +0000855 return;
Owen Anderson58704ee2011-09-06 18:14:09 +0000856
Chris Lattner7fe08b62010-11-30 21:32:12 +0000857 // If the kill pointer can be easily reduced to an alloca, don't bother doing
858 // extraneous AA queries.
Chris Lattnerf80b3992010-11-30 21:38:30 +0000859 if (isa<AllocaInst>(UnderlyingPointer) || isa<Argument>(UnderlyingPointer)) {
Evan Cheng773b2cd2012-06-16 04:28:11 +0000860 DeadStackObjects.remove(const_cast<Value*>(UnderlyingPointer));
Chris Lattnerf80b3992010-11-30 21:38:30 +0000861 return;
Owen Andersonddf4aee2007-08-08 18:38:28 +0000862 }
Owen Anderson58704ee2011-09-06 18:14:09 +0000863
Benjamin Kramer650b1db2012-10-14 10:21:31 +0000864 // Remove objects that could alias LoadedLoc.
Benjamin Kramer9c794c72014-03-03 19:49:02 +0000865 DeadStackObjects.remove_if([&](Value *I) {
Benjamin Kramer3a377bc2014-03-01 11:47:00 +0000866 // See if the loaded location could alias the stack location.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000867 AliasAnalysis::Location StackLoc(
868 I, getPointerSize(I, DL, AA->getTargetLibraryInfo()));
Benjamin Kramer3a377bc2014-03-01 11:47:00 +0000869 return !AA->isNoAlias(StackLoc, LoadedLoc);
Benjamin Kramer9c794c72014-03-03 19:49:02 +0000870 });
Owen Anderson32c4a052007-07-12 21:41:30 +0000871}