Owen Anderson | e359058 | 2007-08-02 18:11:11 +0000 | [diff] [blame] | 1 | //===- DeadStoreElimination.cpp - Fast Dead Store Elimination -------------===// |
Owen Anderson | 5e72db3 | 2007-07-11 00:46:18 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | f3ebc3f | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Owen Anderson | 5e72db3 | 2007-07-11 00:46:18 +0000 | [diff] [blame] | 7 | // |
| 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 Anderson | 5e72db3 | 2007-07-11 00:46:18 +0000 | [diff] [blame] | 18 | #include "llvm/Transforms/Scalar.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 19 | #include "llvm/ADT/STLExtras.h" |
| 20 | #include "llvm/ADT/SetVector.h" |
| 21 | #include "llvm/ADT/Statistic.h" |
Owen Anderson | aa07172 | 2007-07-11 23:19:17 +0000 | [diff] [blame] | 22 | #include "llvm/Analysis/AliasAnalysis.h" |
Nick Lewycky | 32f8051 | 2011-10-22 21:59:35 +0000 | [diff] [blame] | 23 | #include "llvm/Analysis/CaptureTracking.h" |
Victor Hernandez | f390e04 | 2009-10-27 20:05:49 +0000 | [diff] [blame] | 24 | #include "llvm/Analysis/MemoryBuiltins.h" |
Owen Anderson | 5e72db3 | 2007-07-11 00:46:18 +0000 | [diff] [blame] | 25 | #include "llvm/Analysis/MemoryDependenceAnalysis.h" |
Benjamin Kramer | 799003b | 2015-03-23 19:32:43 +0000 | [diff] [blame] | 26 | #include "llvm/Analysis/TargetLibraryInfo.h" |
Chris Lattner | c0f3379 | 2010-11-30 23:05:20 +0000 | [diff] [blame] | 27 | #include "llvm/Analysis/ValueTracking.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 28 | #include "llvm/IR/Constants.h" |
| 29 | #include "llvm/IR/DataLayout.h" |
Chandler Carruth | 5ad5f15 | 2014-01-13 09:26:24 +0000 | [diff] [blame] | 30 | #include "llvm/IR/Dominators.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 31 | #include "llvm/IR/Function.h" |
| 32 | #include "llvm/IR/GlobalVariable.h" |
| 33 | #include "llvm/IR/Instructions.h" |
| 34 | #include "llvm/IR/IntrinsicInst.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 35 | #include "llvm/Pass.h" |
| 36 | #include "llvm/Support/Debug.h" |
Benjamin Kramer | 799003b | 2015-03-23 19:32:43 +0000 | [diff] [blame] | 37 | #include "llvm/Support/raw_ostream.h" |
Owen Anderson | 5e72db3 | 2007-07-11 00:46:18 +0000 | [diff] [blame] | 38 | #include "llvm/Transforms/Utils/Local.h" |
Owen Anderson | 5e72db3 | 2007-07-11 00:46:18 +0000 | [diff] [blame] | 39 | using namespace llvm; |
| 40 | |
Chandler Carruth | 964daaa | 2014-04-22 02:55:47 +0000 | [diff] [blame] | 41 | #define DEBUG_TYPE "dse" |
| 42 | |
Erik Eckstein | 11fc817 | 2015-08-13 15:36:11 +0000 | [diff] [blame] | 43 | STATISTIC(NumRedundantStores, "Number of redundant stores deleted"); |
Owen Anderson | 5e72db3 | 2007-07-11 00:46:18 +0000 | [diff] [blame] | 44 | STATISTIC(NumFastStores, "Number of stores deleted"); |
| 45 | STATISTIC(NumFastOther , "Number of other instrs removed"); |
| 46 | |
| 47 | namespace { |
Chris Lattner | 2dd09db | 2009-09-02 06:11:42 +0000 | [diff] [blame] | 48 | struct DSE : public FunctionPass { |
Chris Lattner | 51c28a9 | 2010-11-30 19:34:42 +0000 | [diff] [blame] | 49 | AliasAnalysis *AA; |
| 50 | MemoryDependenceAnalysis *MD; |
Nick Lewycky | f2905af | 2011-11-05 10:48:42 +0000 | [diff] [blame] | 51 | DominatorTree *DT; |
Nick Lewycky | 135ac9a | 2012-09-24 22:07:09 +0000 | [diff] [blame] | 52 | const TargetLibraryInfo *TLI; |
Karthik Bhat | 3af2894 | 2015-08-17 05:51:39 +0000 | [diff] [blame] | 53 | |
Eric Christopher | 0efe9f6 | 2015-08-19 02:15:13 +0000 | [diff] [blame] | 54 | static char ID; // Pass identification, replacement for typeid |
| 55 | DSE() : FunctionPass(ID), AA(nullptr), MD(nullptr), DT(nullptr) { |
| 56 | initializeDSEPass(*PassRegistry::getPassRegistry()); |
Karthik Bhat | 3af2894 | 2015-08-17 05:51:39 +0000 | [diff] [blame] | 57 | } |
Owen Anderson | 5e72db3 | 2007-07-11 00:46:18 +0000 | [diff] [blame] | 58 | |
Craig Topper | 3e4c697 | 2014-03-05 09:10:37 +0000 | [diff] [blame] | 59 | bool runOnFunction(Function &F) override { |
Paul Robinson | af4e64d | 2014-02-06 00:07:05 +0000 | [diff] [blame] | 60 | if (skipOptnoneFunction(F)) |
| 61 | return false; |
| 62 | |
Chris Lattner | 51c28a9 | 2010-11-30 19:34:42 +0000 | [diff] [blame] | 63 | AA = &getAnalysis<AliasAnalysis>(); |
| 64 | MD = &getAnalysis<MemoryDependenceAnalysis>(); |
Chandler Carruth | 7352302 | 2014-01-13 13:07:17 +0000 | [diff] [blame] | 65 | DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree(); |
Chandler Carruth | dbe40fb | 2015-08-12 18:01:44 +0000 | [diff] [blame] | 66 | TLI = &getAnalysis<TargetLibraryInfoWrapperPass>().getTLI(); |
Owen Anderson | 58704ee | 2011-09-06 18:14:09 +0000 | [diff] [blame] | 67 | |
Chris Lattner | 51c28a9 | 2010-11-30 19:34:42 +0000 | [diff] [blame] | 68 | bool Changed = false; |
Owen Anderson | 5e72db3 | 2007-07-11 00:46:18 +0000 | [diff] [blame] | 69 | for (Function::iterator I = F.begin(), E = F.end(); I != E; ++I) |
Chris Lattner | c053cbb | 2010-02-11 05:11:54 +0000 | [diff] [blame] | 70 | // Only check non-dead blocks. Dead blocks may have strange pointer |
| 71 | // cycles that will confuse alias analysis. |
Nick Lewycky | f2905af | 2011-11-05 10:48:42 +0000 | [diff] [blame] | 72 | if (DT->isReachableFromEntry(I)) |
Chris Lattner | c053cbb | 2010-02-11 05:11:54 +0000 | [diff] [blame] | 73 | Changed |= runOnBasicBlock(*I); |
Owen Anderson | 58704ee | 2011-09-06 18:14:09 +0000 | [diff] [blame] | 74 | |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 75 | AA = nullptr; MD = nullptr; DT = nullptr; |
Owen Anderson | 5e72db3 | 2007-07-11 00:46:18 +0000 | [diff] [blame] | 76 | return Changed; |
| 77 | } |
Owen Anderson | 58704ee | 2011-09-06 18:14:09 +0000 | [diff] [blame] | 78 | |
Owen Anderson | 5e72db3 | 2007-07-11 00:46:18 +0000 | [diff] [blame] | 79 | bool runOnBasicBlock(BasicBlock &BB); |
Erik Eckstein | 11fc817 | 2015-08-13 15:36:11 +0000 | [diff] [blame] | 80 | bool MemoryIsNotModifiedBetween(LoadInst *LI, StoreInst *SI); |
Chris Lattner | 9d179d9 | 2010-11-30 01:28:33 +0000 | [diff] [blame] | 81 | bool HandleFree(CallInst *F); |
Chris Lattner | 1adb675 | 2008-11-28 00:27:14 +0000 | [diff] [blame] | 82 | bool handleEndBlock(BasicBlock &BB); |
Chandler Carruth | ac80dc7 | 2015-06-17 07:18:54 +0000 | [diff] [blame] | 83 | void RemoveAccessedObjects(const MemoryLocation &LoadedLoc, |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 84 | SmallSetVector<Value *, 16> &DeadStackObjects, |
| 85 | const DataLayout &DL); |
Eric Christopher | 0efe9f6 | 2015-08-19 02:15:13 +0000 | [diff] [blame] | 86 | |
Craig Topper | 3e4c697 | 2014-03-05 09:10:37 +0000 | [diff] [blame] | 87 | void getAnalysisUsage(AnalysisUsage &AU) const override { |
Owen Anderson | 5e72db3 | 2007-07-11 00:46:18 +0000 | [diff] [blame] | 88 | AU.setPreservesCFG(); |
Chandler Carruth | 7352302 | 2014-01-13 13:07:17 +0000 | [diff] [blame] | 89 | AU.addRequired<DominatorTreeWrapperPass>(); |
Owen Anderson | aa07172 | 2007-07-11 23:19:17 +0000 | [diff] [blame] | 90 | AU.addRequired<AliasAnalysis>(); |
Owen Anderson | 5e72db3 | 2007-07-11 00:46:18 +0000 | [diff] [blame] | 91 | AU.addRequired<MemoryDependenceAnalysis>(); |
Chandler Carruth | dbe40fb | 2015-08-12 18:01:44 +0000 | [diff] [blame] | 92 | AU.addRequired<TargetLibraryInfoWrapperPass>(); |
Chris Lattner | 51c28a9 | 2010-11-30 19:34:42 +0000 | [diff] [blame] | 93 | AU.addPreserved<AliasAnalysis>(); |
Chandler Carruth | 7352302 | 2014-01-13 13:07:17 +0000 | [diff] [blame] | 94 | AU.addPreserved<DominatorTreeWrapperPass>(); |
Owen Anderson | 5e72db3 | 2007-07-11 00:46:18 +0000 | [diff] [blame] | 95 | AU.addPreserved<MemoryDependenceAnalysis>(); |
| 96 | } |
| 97 | }; |
Alexander Kornienko | f00654e | 2015-06-23 09:49:53 +0000 | [diff] [blame] | 98 | } |
Owen Anderson | 5e72db3 | 2007-07-11 00:46:18 +0000 | [diff] [blame] | 99 | |
Dan Gohman | d78c400 | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 100 | char DSE::ID = 0; |
Owen Anderson | 8ac477f | 2010-10-12 19:48:12 +0000 | [diff] [blame] | 101 | INITIALIZE_PASS_BEGIN(DSE, "dse", "Dead Store Elimination", false, false) |
Chandler Carruth | 19ac7d5 | 2015-08-12 18:10:45 +0000 | [diff] [blame] | 102 | INITIALIZE_AG_DEPENDENCY(AliasAnalysis) |
Chandler Carruth | 7352302 | 2014-01-13 13:07:17 +0000 | [diff] [blame] | 103 | INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass) |
Owen Anderson | 8ac477f | 2010-10-12 19:48:12 +0000 | [diff] [blame] | 104 | INITIALIZE_PASS_DEPENDENCY(MemoryDependenceAnalysis) |
Chandler Carruth | 19ac7d5 | 2015-08-12 18:10:45 +0000 | [diff] [blame] | 105 | INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass) |
Owen Anderson | 8ac477f | 2010-10-12 19:48:12 +0000 | [diff] [blame] | 106 | INITIALIZE_PASS_END(DSE, "dse", "Dead Store Elimination", false, false) |
Dan Gohman | d78c400 | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 107 | |
Owen Anderson | 10e52ed | 2007-08-01 06:36:51 +0000 | [diff] [blame] | 108 | FunctionPass *llvm::createDeadStoreEliminationPass() { return new DSE(); } |
Owen Anderson | 5e72db3 | 2007-07-11 00:46:18 +0000 | [diff] [blame] | 109 | |
Chris Lattner | 6712251 | 2010-11-30 21:58:14 +0000 | [diff] [blame] | 110 | //===----------------------------------------------------------------------===// |
| 111 | // Helper functions |
| 112 | //===----------------------------------------------------------------------===// |
| 113 | |
Eric Christopher | 0efe9f6 | 2015-08-19 02:15:13 +0000 | [diff] [blame] | 114 | /// DeleteDeadInstruction - Delete this instruction. Before we do, go through |
| 115 | /// and zero out all the operands of this instruction. If any of them become |
| 116 | /// dead, delete them and the computation tree that feeds them. |
| 117 | /// |
| 118 | /// If ValueSet is non-null, remove any deleted instructions from it as well. |
| 119 | /// |
| 120 | static void DeleteDeadInstruction(Instruction *I, |
| 121 | MemoryDependenceAnalysis &MD, |
| 122 | const TargetLibraryInfo &TLI, |
| 123 | SmallSetVector<Value*, 16> *ValueSet = nullptr) { |
| 124 | SmallVector<Instruction*, 32> NowDeadInsts; |
| 125 | |
| 126 | NowDeadInsts.push_back(I); |
| 127 | --NumFastOther; |
| 128 | |
| 129 | // Before we touch this instruction, remove it from memdep! |
| 130 | do { |
| 131 | Instruction *DeadInst = NowDeadInsts.pop_back_val(); |
| 132 | ++NumFastOther; |
| 133 | |
| 134 | // This instruction is dead, zap it, in stages. Start by removing it from |
| 135 | // MemDep, which needs to know the operands and needs it to be in the |
| 136 | // function. |
| 137 | MD.removeInstruction(DeadInst); |
| 138 | |
| 139 | for (unsigned op = 0, e = DeadInst->getNumOperands(); op != e; ++op) { |
| 140 | Value *Op = DeadInst->getOperand(op); |
| 141 | DeadInst->setOperand(op, nullptr); |
| 142 | |
| 143 | // If this operand just became dead, add it to the NowDeadInsts list. |
| 144 | if (!Op->use_empty()) continue; |
| 145 | |
| 146 | if (Instruction *OpI = dyn_cast<Instruction>(Op)) |
| 147 | if (isInstructionTriviallyDead(OpI, &TLI)) |
| 148 | NowDeadInsts.push_back(OpI); |
| 149 | } |
| 150 | |
| 151 | DeadInst->eraseFromParent(); |
| 152 | |
| 153 | if (ValueSet) ValueSet->remove(DeadInst); |
| 154 | } while (!NowDeadInsts.empty()); |
| 155 | } |
| 156 | |
| 157 | |
Chris Lattner | 2227a8a | 2010-11-30 01:37:52 +0000 | [diff] [blame] | 158 | /// hasMemoryWrite - Does this instruction write some memory? This only returns |
| 159 | /// true for things that we can analyze with other helpers below. |
Chandler Carruth | dbe40fb | 2015-08-12 18:01:44 +0000 | [diff] [blame] | 160 | static bool hasMemoryWrite(Instruction *I, const TargetLibraryInfo &TLI) { |
Nick Lewycky | 9027147 | 2009-11-10 06:46:40 +0000 | [diff] [blame] | 161 | if (isa<StoreInst>(I)) |
| 162 | return true; |
| 163 | if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I)) { |
| 164 | switch (II->getIntrinsicID()) { |
Chris Lattner | 2764b4d | 2009-12-02 06:35:55 +0000 | [diff] [blame] | 165 | default: |
| 166 | return false; |
| 167 | case Intrinsic::memset: |
| 168 | case Intrinsic::memmove: |
| 169 | case Intrinsic::memcpy: |
| 170 | case Intrinsic::init_trampoline: |
| 171 | case Intrinsic::lifetime_end: |
| 172 | return true; |
Nick Lewycky | 9027147 | 2009-11-10 06:46:40 +0000 | [diff] [blame] | 173 | } |
| 174 | } |
Benjamin Kramer | 3a09ef6 | 2015-04-10 14:50:08 +0000 | [diff] [blame] | 175 | if (auto CS = CallSite(I)) { |
Nick Lewycky | 9f4729d | 2012-09-24 22:09:10 +0000 | [diff] [blame] | 176 | if (Function *F = CS.getCalledFunction()) { |
Chandler Carruth | dbe40fb | 2015-08-12 18:01:44 +0000 | [diff] [blame] | 177 | if (TLI.has(LibFunc::strcpy) && |
| 178 | F->getName() == TLI.getName(LibFunc::strcpy)) { |
Nick Lewycky | 9f4729d | 2012-09-24 22:09:10 +0000 | [diff] [blame] | 179 | return true; |
| 180 | } |
Chandler Carruth | dbe40fb | 2015-08-12 18:01:44 +0000 | [diff] [blame] | 181 | if (TLI.has(LibFunc::strncpy) && |
| 182 | F->getName() == TLI.getName(LibFunc::strncpy)) { |
Nick Lewycky | 9f4729d | 2012-09-24 22:09:10 +0000 | [diff] [blame] | 183 | return true; |
| 184 | } |
Chandler Carruth | dbe40fb | 2015-08-12 18:01:44 +0000 | [diff] [blame] | 185 | if (TLI.has(LibFunc::strcat) && |
| 186 | F->getName() == TLI.getName(LibFunc::strcat)) { |
Nick Lewycky | 9f4729d | 2012-09-24 22:09:10 +0000 | [diff] [blame] | 187 | return true; |
| 188 | } |
Chandler Carruth | dbe40fb | 2015-08-12 18:01:44 +0000 | [diff] [blame] | 189 | if (TLI.has(LibFunc::strncat) && |
| 190 | F->getName() == TLI.getName(LibFunc::strncat)) { |
Nick Lewycky | 9f4729d | 2012-09-24 22:09:10 +0000 | [diff] [blame] | 191 | return true; |
| 192 | } |
| 193 | } |
| 194 | } |
Nick Lewycky | 9027147 | 2009-11-10 06:46:40 +0000 | [diff] [blame] | 195 | return false; |
| 196 | } |
| 197 | |
Chris Lattner | 58b779e | 2010-11-30 07:23:21 +0000 | [diff] [blame] | 198 | /// getLocForWrite - Return a Location stored to by the specified instruction. |
Eli Friedman | 72a93e5 | 2011-09-13 01:28:59 +0000 | [diff] [blame] | 199 | /// If isRemovable returns true, this function and getLocForRead completely |
| 200 | /// describe the memory operations for this instruction. |
Chandler Carruth | ac80dc7 | 2015-06-17 07:18:54 +0000 | [diff] [blame] | 201 | static MemoryLocation getLocForWrite(Instruction *Inst, AliasAnalysis &AA) { |
Chris Lattner | 58b779e | 2010-11-30 07:23:21 +0000 | [diff] [blame] | 202 | if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) |
Chandler Carruth | 70c61c1 | 2015-06-04 02:03:15 +0000 | [diff] [blame] | 203 | return MemoryLocation::get(SI); |
Owen Anderson | 58704ee | 2011-09-06 18:14:09 +0000 | [diff] [blame] | 204 | |
Chris Lattner | 58b779e | 2010-11-30 07:23:21 +0000 | [diff] [blame] | 205 | if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(Inst)) { |
| 206 | // memcpy/memmove/memset. |
Chandler Carruth | ac80dc7 | 2015-06-17 07:18:54 +0000 | [diff] [blame] | 207 | MemoryLocation Loc = MemoryLocation::getForDest(MI); |
Chris Lattner | 58b779e | 2010-11-30 07:23:21 +0000 | [diff] [blame] | 208 | return Loc; |
| 209 | } |
Owen Anderson | 58704ee | 2011-09-06 18:14:09 +0000 | [diff] [blame] | 210 | |
Chris Lattner | 58b779e | 2010-11-30 07:23:21 +0000 | [diff] [blame] | 211 | IntrinsicInst *II = dyn_cast<IntrinsicInst>(Inst); |
Chandler Carruth | ac80dc7 | 2015-06-17 07:18:54 +0000 | [diff] [blame] | 212 | if (!II) |
| 213 | return MemoryLocation(); |
Owen Anderson | 58704ee | 2011-09-06 18:14:09 +0000 | [diff] [blame] | 214 | |
Chris Lattner | 58b779e | 2010-11-30 07:23:21 +0000 | [diff] [blame] | 215 | switch (II->getIntrinsicID()) { |
Chandler Carruth | ac80dc7 | 2015-06-17 07:18:54 +0000 | [diff] [blame] | 216 | default: |
| 217 | return MemoryLocation(); // Unhandled intrinsic. |
Chris Lattner | 58b779e | 2010-11-30 07:23:21 +0000 | [diff] [blame] | 218 | case Intrinsic::init_trampoline: |
Chris Lattner | 58b779e | 2010-11-30 07:23:21 +0000 | [diff] [blame] | 219 | // FIXME: We don't know the size of the trampoline, so we can't really |
| 220 | // handle it here. |
Chandler Carruth | ac80dc7 | 2015-06-17 07:18:54 +0000 | [diff] [blame] | 221 | return MemoryLocation(II->getArgOperand(0)); |
Chris Lattner | 58b779e | 2010-11-30 07:23:21 +0000 | [diff] [blame] | 222 | case Intrinsic::lifetime_end: { |
| 223 | uint64_t Len = cast<ConstantInt>(II->getArgOperand(0))->getZExtValue(); |
Chandler Carruth | ac80dc7 | 2015-06-17 07:18:54 +0000 | [diff] [blame] | 224 | return MemoryLocation(II->getArgOperand(1), Len); |
Chris Lattner | 58b779e | 2010-11-30 07:23:21 +0000 | [diff] [blame] | 225 | } |
| 226 | } |
| 227 | } |
| 228 | |
Chris Lattner | 94fbdf3 | 2010-12-06 01:48:06 +0000 | [diff] [blame] | 229 | /// getLocForRead - Return the location read by the specified "hasMemoryWrite" |
| 230 | /// instruction if any. |
Chandler Carruth | dbe40fb | 2015-08-12 18:01:44 +0000 | [diff] [blame] | 231 | static MemoryLocation getLocForRead(Instruction *Inst, |
| 232 | const TargetLibraryInfo &TLI) { |
| 233 | assert(hasMemoryWrite(Inst, TLI) && "Unknown instruction case"); |
Owen Anderson | 58704ee | 2011-09-06 18:14:09 +0000 | [diff] [blame] | 234 | |
Chris Lattner | 94fbdf3 | 2010-12-06 01:48:06 +0000 | [diff] [blame] | 235 | // The only instructions that both read and write are the mem transfer |
| 236 | // instructions (memcpy/memmove). |
| 237 | if (MemTransferInst *MTI = dyn_cast<MemTransferInst>(Inst)) |
Chandler Carruth | 70c61c1 | 2015-06-04 02:03:15 +0000 | [diff] [blame] | 238 | return MemoryLocation::getForSource(MTI); |
Chandler Carruth | ac80dc7 | 2015-06-17 07:18:54 +0000 | [diff] [blame] | 239 | return MemoryLocation(); |
Chris Lattner | 94fbdf3 | 2010-12-06 01:48:06 +0000 | [diff] [blame] | 240 | } |
| 241 | |
| 242 | |
Chris Lattner | 3590ef8 | 2010-11-30 05:30:45 +0000 | [diff] [blame] | 243 | /// isRemovable - If the value of this instruction and the memory it writes to |
| 244 | /// is unused, may we delete this instruction? |
| 245 | static bool isRemovable(Instruction *I) { |
Eli Friedman | 9a46815 | 2011-08-17 22:22:24 +0000 | [diff] [blame] | 246 | // Don't remove volatile/atomic stores. |
Nick Lewycky | 9027147 | 2009-11-10 06:46:40 +0000 | [diff] [blame] | 247 | if (StoreInst *SI = dyn_cast<StoreInst>(I)) |
Eli Friedman | 9a46815 | 2011-08-17 22:22:24 +0000 | [diff] [blame] | 248 | return SI->isUnordered(); |
Owen Anderson | 58704ee | 2011-09-06 18:14:09 +0000 | [diff] [blame] | 249 | |
Nick Lewycky | 9f4729d | 2012-09-24 22:09:10 +0000 | [diff] [blame] | 250 | if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I)) { |
| 251 | switch (II->getIntrinsicID()) { |
| 252 | default: llvm_unreachable("doesn't pass 'hasMemoryWrite' predicate"); |
| 253 | case Intrinsic::lifetime_end: |
| 254 | // Never remove dead lifetime_end's, e.g. because it is followed by a |
| 255 | // free. |
| 256 | return false; |
| 257 | case Intrinsic::init_trampoline: |
| 258 | // Always safe to remove init_trampoline. |
| 259 | return true; |
Owen Anderson | 58704ee | 2011-09-06 18:14:09 +0000 | [diff] [blame] | 260 | |
Nick Lewycky | 9f4729d | 2012-09-24 22:09:10 +0000 | [diff] [blame] | 261 | case Intrinsic::memset: |
| 262 | case Intrinsic::memmove: |
| 263 | case Intrinsic::memcpy: |
| 264 | // Don't remove volatile memory intrinsics. |
| 265 | return !cast<MemIntrinsic>(II)->isVolatile(); |
| 266 | } |
Chris Lattner | b63ba73 | 2010-11-30 19:12:10 +0000 | [diff] [blame] | 267 | } |
Nick Lewycky | 9f4729d | 2012-09-24 22:09:10 +0000 | [diff] [blame] | 268 | |
Benjamin Kramer | 3a09ef6 | 2015-04-10 14:50:08 +0000 | [diff] [blame] | 269 | if (auto CS = CallSite(I)) |
Nick Lewycky | 42bca05 | 2012-09-25 01:55:59 +0000 | [diff] [blame] | 270 | return CS.getInstruction()->use_empty(); |
Nick Lewycky | 9f4729d | 2012-09-24 22:09:10 +0000 | [diff] [blame] | 271 | |
| 272 | return false; |
Nick Lewycky | 9027147 | 2009-11-10 06:46:40 +0000 | [diff] [blame] | 273 | } |
| 274 | |
Pete Cooper | 856977c | 2011-11-09 23:07:35 +0000 | [diff] [blame] | 275 | |
| 276 | /// isShortenable - Returns true if this instruction can be safely shortened in |
| 277 | /// length. |
| 278 | static bool isShortenable(Instruction *I) { |
| 279 | // Don't shorten stores for now |
| 280 | if (isa<StoreInst>(I)) |
| 281 | return false; |
Nadav Rotem | 465834c | 2012-07-24 10:51:42 +0000 | [diff] [blame] | 282 | |
Nick Lewycky | 9f4729d | 2012-09-24 22:09:10 +0000 | [diff] [blame] | 283 | if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I)) { |
| 284 | switch (II->getIntrinsicID()) { |
| 285 | default: return false; |
| 286 | case Intrinsic::memset: |
| 287 | case Intrinsic::memcpy: |
| 288 | // Do shorten memory intrinsics. |
| 289 | return true; |
| 290 | } |
Pete Cooper | 856977c | 2011-11-09 23:07:35 +0000 | [diff] [blame] | 291 | } |
Nick Lewycky | 9f4729d | 2012-09-24 22:09:10 +0000 | [diff] [blame] | 292 | |
| 293 | // Don't shorten libcalls calls for now. |
| 294 | |
| 295 | return false; |
Pete Cooper | 856977c | 2011-11-09 23:07:35 +0000 | [diff] [blame] | 296 | } |
| 297 | |
Chris Lattner | 6712251 | 2010-11-30 21:58:14 +0000 | [diff] [blame] | 298 | /// getStoredPointerOperand - Return the pointer that is being written to. |
| 299 | static Value *getStoredPointerOperand(Instruction *I) { |
Nick Lewycky | 9027147 | 2009-11-10 06:46:40 +0000 | [diff] [blame] | 300 | if (StoreInst *SI = dyn_cast<StoreInst>(I)) |
| 301 | return SI->getPointerOperand(); |
| 302 | if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(I)) |
Chris Lattner | 6712251 | 2010-11-30 21:58:14 +0000 | [diff] [blame] | 303 | return MI->getDest(); |
Gabor Greif | 91f9589 | 2010-06-24 12:03:56 +0000 | [diff] [blame] | 304 | |
Nick Lewycky | 9f4729d | 2012-09-24 22:09:10 +0000 | [diff] [blame] | 305 | if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I)) { |
| 306 | switch (II->getIntrinsicID()) { |
| 307 | default: llvm_unreachable("Unexpected intrinsic!"); |
| 308 | case Intrinsic::init_trampoline: |
| 309 | return II->getArgOperand(0); |
| 310 | } |
Duncan Sands | 1925d3a | 2009-11-10 13:49:50 +0000 | [diff] [blame] | 311 | } |
Nick Lewycky | 9f4729d | 2012-09-24 22:09:10 +0000 | [diff] [blame] | 312 | |
Benjamin Kramer | 3a09ef6 | 2015-04-10 14:50:08 +0000 | [diff] [blame] | 313 | CallSite CS(I); |
Nick Lewycky | 9f4729d | 2012-09-24 22:09:10 +0000 | [diff] [blame] | 314 | // All the supported functions so far happen to have dest as their first |
| 315 | // argument. |
| 316 | return CS.getArgument(0); |
Nick Lewycky | 9027147 | 2009-11-10 06:46:40 +0000 | [diff] [blame] | 317 | } |
| 318 | |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 319 | static uint64_t getPointerSize(const Value *V, const DataLayout &DL, |
Chandler Carruth | dbe40fb | 2015-08-12 18:01:44 +0000 | [diff] [blame] | 320 | const TargetLibraryInfo &TLI) { |
Nuno Lopes | 55fff83 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 321 | uint64_t Size; |
Chandler Carruth | dbe40fb | 2015-08-12 18:01:44 +0000 | [diff] [blame] | 322 | if (getObjectSize(V, Size, DL, &TLI)) |
Nuno Lopes | 55fff83 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 323 | return Size; |
Chandler Carruth | ecbd168 | 2015-06-17 07:21:38 +0000 | [diff] [blame] | 324 | return MemoryLocation::UnknownSize; |
Chris Lattner | 903add8 | 2010-11-30 23:43:23 +0000 | [diff] [blame] | 325 | } |
Chris Lattner | 51c28a9 | 2010-11-30 19:34:42 +0000 | [diff] [blame] | 326 | |
Pete Cooper | 856977c | 2011-11-09 23:07:35 +0000 | [diff] [blame] | 327 | namespace { |
| 328 | enum OverwriteResult |
| 329 | { |
| 330 | OverwriteComplete, |
| 331 | OverwriteEnd, |
| 332 | OverwriteUnknown |
| 333 | }; |
| 334 | } |
| 335 | |
| 336 | /// isOverwrite - Return 'OverwriteComplete' if a store to the 'Later' location |
Chris Lattner | 58b779e | 2010-11-30 07:23:21 +0000 | [diff] [blame] | 337 | /// completely overwrites a store to the 'Earlier' location. |
Nadav Rotem | 465834c | 2012-07-24 10:51:42 +0000 | [diff] [blame] | 338 | /// 'OverwriteEnd' if the end of the 'Earlier' location is completely |
Pete Cooper | 39b5255 | 2012-02-28 05:06:24 +0000 | [diff] [blame] | 339 | /// overwritten by 'Later', or 'OverwriteUnknown' if nothing can be determined |
Chandler Carruth | ac80dc7 | 2015-06-17 07:18:54 +0000 | [diff] [blame] | 340 | static OverwriteResult isOverwrite(const MemoryLocation &Later, |
| 341 | const MemoryLocation &Earlier, |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 342 | const DataLayout &DL, |
Chandler Carruth | dbe40fb | 2015-08-12 18:01:44 +0000 | [diff] [blame] | 343 | const TargetLibraryInfo &TLI, |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 344 | int64_t &EarlierOff, int64_t &LaterOff) { |
Chris Lattner | c0f3379 | 2010-11-30 23:05:20 +0000 | [diff] [blame] | 345 | const Value *P1 = Earlier.Ptr->stripPointerCasts(); |
| 346 | const Value *P2 = Later.Ptr->stripPointerCasts(); |
Owen Anderson | 58704ee | 2011-09-06 18:14:09 +0000 | [diff] [blame] | 347 | |
Chris Lattner | c0f3379 | 2010-11-30 23:05:20 +0000 | [diff] [blame] | 348 | // If the start pointers are the same, we just have to compare sizes to see if |
| 349 | // the later store was larger than the earlier store. |
| 350 | if (P1 == P2) { |
| 351 | // If we don't know the sizes of either access, then we can't do a |
| 352 | // comparison. |
Chandler Carruth | ecbd168 | 2015-06-17 07:21:38 +0000 | [diff] [blame] | 353 | if (Later.Size == MemoryLocation::UnknownSize || |
| 354 | Earlier.Size == MemoryLocation::UnknownSize) |
Pete Cooper | 856977c | 2011-11-09 23:07:35 +0000 | [diff] [blame] | 355 | return OverwriteUnknown; |
Owen Anderson | 58704ee | 2011-09-06 18:14:09 +0000 | [diff] [blame] | 356 | |
Chris Lattner | c0f3379 | 2010-11-30 23:05:20 +0000 | [diff] [blame] | 357 | // Make sure that the Later size is >= the Earlier size. |
Pete Cooper | 856977c | 2011-11-09 23:07:35 +0000 | [diff] [blame] | 358 | if (Later.Size >= Earlier.Size) |
| 359 | return OverwriteComplete; |
Chris Lattner | 77d79fa | 2010-11-30 19:28:23 +0000 | [diff] [blame] | 360 | } |
Owen Anderson | 58704ee | 2011-09-06 18:14:09 +0000 | [diff] [blame] | 361 | |
Chris Lattner | c0f3379 | 2010-11-30 23:05:20 +0000 | [diff] [blame] | 362 | // Otherwise, we have to have size information, and the later store has to be |
| 363 | // larger than the earlier one. |
Chandler Carruth | ecbd168 | 2015-06-17 07:21:38 +0000 | [diff] [blame] | 364 | if (Later.Size == MemoryLocation::UnknownSize || |
| 365 | Earlier.Size == MemoryLocation::UnknownSize) |
Pete Cooper | 856977c | 2011-11-09 23:07:35 +0000 | [diff] [blame] | 366 | return OverwriteUnknown; |
Owen Anderson | 58704ee | 2011-09-06 18:14:09 +0000 | [diff] [blame] | 367 | |
Chris Lattner | 903add8 | 2010-11-30 23:43:23 +0000 | [diff] [blame] | 368 | // Check to see if the later store is to the entire object (either a global, |
Reid Kleckner | 26af2ca | 2014-01-28 02:38:36 +0000 | [diff] [blame] | 369 | // an alloca, or a byval/inalloca argument). If so, then it clearly |
| 370 | // overwrites any other store to the same object. |
Rafael Espindola | 5f57f46 | 2014-02-21 18:34:28 +0000 | [diff] [blame] | 371 | const Value *UO1 = GetUnderlyingObject(P1, DL), |
| 372 | *UO2 = GetUnderlyingObject(P2, DL); |
Owen Anderson | 58704ee | 2011-09-06 18:14:09 +0000 | [diff] [blame] | 373 | |
Chris Lattner | 903add8 | 2010-11-30 23:43:23 +0000 | [diff] [blame] | 374 | // If we can't resolve the same pointers to the same object, then we can't |
| 375 | // analyze them at all. |
| 376 | if (UO1 != UO2) |
Pete Cooper | 856977c | 2011-11-09 23:07:35 +0000 | [diff] [blame] | 377 | return OverwriteUnknown; |
Owen Anderson | 58704ee | 2011-09-06 18:14:09 +0000 | [diff] [blame] | 378 | |
Chris Lattner | 903add8 | 2010-11-30 23:43:23 +0000 | [diff] [blame] | 379 | // If the "Later" store is to a recognizable object, get its size. |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 380 | uint64_t ObjectSize = getPointerSize(UO2, DL, TLI); |
Chandler Carruth | ecbd168 | 2015-06-17 07:21:38 +0000 | [diff] [blame] | 381 | if (ObjectSize != MemoryLocation::UnknownSize) |
Pete Cooper | a4237c3 | 2011-11-10 20:22:08 +0000 | [diff] [blame] | 382 | if (ObjectSize == Later.Size && ObjectSize >= Earlier.Size) |
Pete Cooper | 856977c | 2011-11-09 23:07:35 +0000 | [diff] [blame] | 383 | return OverwriteComplete; |
Owen Anderson | 58704ee | 2011-09-06 18:14:09 +0000 | [diff] [blame] | 384 | |
Chris Lattner | c0f3379 | 2010-11-30 23:05:20 +0000 | [diff] [blame] | 385 | // Okay, we have stores to two completely different pointers. Try to |
| 386 | // decompose the pointer into a "base + constant_offset" form. If the base |
| 387 | // pointers are equal, then we can reason about the two stores. |
Pete Cooper | 856977c | 2011-11-09 23:07:35 +0000 | [diff] [blame] | 388 | EarlierOff = 0; |
| 389 | LaterOff = 0; |
Rafael Espindola | 5f57f46 | 2014-02-21 18:34:28 +0000 | [diff] [blame] | 390 | const Value *BP1 = GetPointerBaseWithConstantOffset(P1, EarlierOff, DL); |
| 391 | const Value *BP2 = GetPointerBaseWithConstantOffset(P2, LaterOff, DL); |
Owen Anderson | 58704ee | 2011-09-06 18:14:09 +0000 | [diff] [blame] | 392 | |
Chris Lattner | c0f3379 | 2010-11-30 23:05:20 +0000 | [diff] [blame] | 393 | // If the base pointers still differ, we have two completely different stores. |
| 394 | if (BP1 != BP2) |
Pete Cooper | 856977c | 2011-11-09 23:07:35 +0000 | [diff] [blame] | 395 | return OverwriteUnknown; |
Bill Wendling | db40b5c | 2011-03-26 01:20:37 +0000 | [diff] [blame] | 396 | |
Bill Wendling | 19f33b9 | 2011-03-26 08:02:59 +0000 | [diff] [blame] | 397 | // The later store completely overlaps the earlier store if: |
Owen Anderson | 58704ee | 2011-09-06 18:14:09 +0000 | [diff] [blame] | 398 | // |
Bill Wendling | 19f33b9 | 2011-03-26 08:02:59 +0000 | [diff] [blame] | 399 | // 1. Both start at the same offset and the later one's size is greater than |
| 400 | // or equal to the earlier one's, or |
| 401 | // |
| 402 | // |--earlier--| |
| 403 | // |-- later --| |
Owen Anderson | 58704ee | 2011-09-06 18:14:09 +0000 | [diff] [blame] | 404 | // |
Bill Wendling | 19f33b9 | 2011-03-26 08:02:59 +0000 | [diff] [blame] | 405 | // 2. The earlier store has an offset greater than the later offset, but which |
| 406 | // still lies completely within the later store. |
| 407 | // |
| 408 | // |--earlier--| |
| 409 | // |----- later ------| |
Bill Wendling | 5034159 | 2011-03-30 21:37:19 +0000 | [diff] [blame] | 410 | // |
| 411 | // We have to be careful here as *Off is signed while *.Size is unsigned. |
Bill Wendling | b513992 | 2011-03-26 09:32:07 +0000 | [diff] [blame] | 412 | if (EarlierOff >= LaterOff && |
Craig Topper | 2a40418 | 2012-08-14 07:32:05 +0000 | [diff] [blame] | 413 | Later.Size >= Earlier.Size && |
Bill Wendling | 5034159 | 2011-03-30 21:37:19 +0000 | [diff] [blame] | 414 | uint64_t(EarlierOff - LaterOff) + Earlier.Size <= Later.Size) |
Pete Cooper | 856977c | 2011-11-09 23:07:35 +0000 | [diff] [blame] | 415 | return OverwriteComplete; |
Nadav Rotem | 465834c | 2012-07-24 10:51:42 +0000 | [diff] [blame] | 416 | |
Pete Cooper | 856977c | 2011-11-09 23:07:35 +0000 | [diff] [blame] | 417 | // The other interesting case is if the later store overwrites the end of |
| 418 | // the earlier store |
| 419 | // |
| 420 | // |--earlier--| |
| 421 | // |-- later --| |
| 422 | // |
| 423 | // In this case we may want to trim the size of earlier to avoid generating |
| 424 | // writes to addresses which will definitely be overwritten later |
| 425 | if (LaterOff > EarlierOff && |
| 426 | LaterOff < int64_t(EarlierOff + Earlier.Size) && |
Pete Cooper | e03fe83 | 2011-12-03 00:04:30 +0000 | [diff] [blame] | 427 | int64_t(LaterOff + Later.Size) >= int64_t(EarlierOff + Earlier.Size)) |
Pete Cooper | 856977c | 2011-11-09 23:07:35 +0000 | [diff] [blame] | 428 | return OverwriteEnd; |
Bill Wendling | 19f33b9 | 2011-03-26 08:02:59 +0000 | [diff] [blame] | 429 | |
| 430 | // Otherwise, they don't completely overlap. |
Pete Cooper | 856977c | 2011-11-09 23:07:35 +0000 | [diff] [blame] | 431 | return OverwriteUnknown; |
Nick Lewycky | 9027147 | 2009-11-10 06:46:40 +0000 | [diff] [blame] | 432 | } |
| 433 | |
Chris Lattner | 94fbdf3 | 2010-12-06 01:48:06 +0000 | [diff] [blame] | 434 | /// isPossibleSelfRead - If 'Inst' might be a self read (i.e. a noop copy of a |
| 435 | /// memory region into an identical pointer) then it doesn't actually make its |
Owen Anderson | 58704ee | 2011-09-06 18:14:09 +0000 | [diff] [blame] | 436 | /// input dead in the traditional sense. Consider this case: |
Chris Lattner | 94fbdf3 | 2010-12-06 01:48:06 +0000 | [diff] [blame] | 437 | /// |
| 438 | /// memcpy(A <- B) |
| 439 | /// memcpy(A <- A) |
| 440 | /// |
| 441 | /// In this case, the second store to A does not make the first store to A dead. |
| 442 | /// The usual situation isn't an explicit A<-A store like this (which can be |
| 443 | /// trivially removed) but a case where two pointers may alias. |
| 444 | /// |
| 445 | /// This function detects when it is unsafe to remove a dependent instruction |
| 446 | /// because the DSE inducing instruction may be a self-read. |
| 447 | static bool isPossibleSelfRead(Instruction *Inst, |
Chandler Carruth | ac80dc7 | 2015-06-17 07:18:54 +0000 | [diff] [blame] | 448 | const MemoryLocation &InstStoreLoc, |
Chandler Carruth | dbe40fb | 2015-08-12 18:01:44 +0000 | [diff] [blame] | 449 | Instruction *DepWrite, |
| 450 | const TargetLibraryInfo &TLI, |
| 451 | AliasAnalysis &AA) { |
Chris Lattner | 94fbdf3 | 2010-12-06 01:48:06 +0000 | [diff] [blame] | 452 | // Self reads can only happen for instructions that read memory. Get the |
| 453 | // location read. |
Chandler Carruth | dbe40fb | 2015-08-12 18:01:44 +0000 | [diff] [blame] | 454 | MemoryLocation InstReadLoc = getLocForRead(Inst, TLI); |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 455 | if (!InstReadLoc.Ptr) return false; // Not a reading instruction. |
Owen Anderson | 58704ee | 2011-09-06 18:14:09 +0000 | [diff] [blame] | 456 | |
Chris Lattner | 94fbdf3 | 2010-12-06 01:48:06 +0000 | [diff] [blame] | 457 | // If the read and written loc obviously don't alias, it isn't a read. |
| 458 | if (AA.isNoAlias(InstReadLoc, InstStoreLoc)) return false; |
Owen Anderson | 58704ee | 2011-09-06 18:14:09 +0000 | [diff] [blame] | 459 | |
Chris Lattner | 94fbdf3 | 2010-12-06 01:48:06 +0000 | [diff] [blame] | 460 | // Okay, 'Inst' may copy over itself. However, we can still remove a the |
| 461 | // DepWrite instruction if we can prove that it reads from the same location |
| 462 | // as Inst. This handles useful cases like: |
| 463 | // memcpy(A <- B) |
| 464 | // memcpy(A <- B) |
| 465 | // Here we don't know if A/B may alias, but we do know that B/B are must |
| 466 | // aliases, so removing the first memcpy is safe (assuming it writes <= # |
| 467 | // bytes as the second one. |
Chandler Carruth | dbe40fb | 2015-08-12 18:01:44 +0000 | [diff] [blame] | 468 | MemoryLocation DepReadLoc = getLocForRead(DepWrite, TLI); |
Owen Anderson | 58704ee | 2011-09-06 18:14:09 +0000 | [diff] [blame] | 469 | |
Chris Lattner | 94fbdf3 | 2010-12-06 01:48:06 +0000 | [diff] [blame] | 470 | if (DepReadLoc.Ptr && AA.isMustAlias(InstReadLoc.Ptr, DepReadLoc.Ptr)) |
| 471 | return false; |
Owen Anderson | 58704ee | 2011-09-06 18:14:09 +0000 | [diff] [blame] | 472 | |
Chris Lattner | 94fbdf3 | 2010-12-06 01:48:06 +0000 | [diff] [blame] | 473 | // If DepWrite doesn't read memory or if we can't prove it is a must alias, |
| 474 | // then it can't be considered dead. |
| 475 | return true; |
| 476 | } |
| 477 | |
Chris Lattner | 6712251 | 2010-11-30 21:58:14 +0000 | [diff] [blame] | 478 | |
| 479 | //===----------------------------------------------------------------------===// |
| 480 | // DSE Pass |
| 481 | //===----------------------------------------------------------------------===// |
| 482 | |
Owen Anderson | 10e52ed | 2007-08-01 06:36:51 +0000 | [diff] [blame] | 483 | bool DSE::runOnBasicBlock(BasicBlock &BB) { |
Owen Anderson | 5e72db3 | 2007-07-11 00:46:18 +0000 | [diff] [blame] | 484 | bool MadeChange = false; |
Owen Anderson | 58704ee | 2011-09-06 18:14:09 +0000 | [diff] [blame] | 485 | |
Chris Lattner | 4916267 | 2009-09-02 06:31:02 +0000 | [diff] [blame] | 486 | // Do a top-down walk on the BB. |
Chris Lattner | f2a8ba4 | 2008-11-28 21:29:52 +0000 | [diff] [blame] | 487 | for (BasicBlock::iterator BBI = BB.begin(), BBE = BB.end(); BBI != BBE; ) { |
| 488 | Instruction *Inst = BBI++; |
Owen Anderson | 58704ee | 2011-09-06 18:14:09 +0000 | [diff] [blame] | 489 | |
Chris Lattner | 9d179d9 | 2010-11-30 01:28:33 +0000 | [diff] [blame] | 490 | // Handle 'free' calls specially. |
Nick Lewycky | 135ac9a | 2012-09-24 22:07:09 +0000 | [diff] [blame] | 491 | if (CallInst *F = isFreeCall(Inst, TLI)) { |
Chris Lattner | 9d179d9 | 2010-11-30 01:28:33 +0000 | [diff] [blame] | 492 | MadeChange |= HandleFree(F); |
| 493 | continue; |
| 494 | } |
Owen Anderson | 58704ee | 2011-09-06 18:14:09 +0000 | [diff] [blame] | 495 | |
Chris Lattner | 2227a8a | 2010-11-30 01:37:52 +0000 | [diff] [blame] | 496 | // If we find something that writes memory, get its memory dependence. |
Chandler Carruth | dbe40fb | 2015-08-12 18:01:44 +0000 | [diff] [blame] | 497 | if (!hasMemoryWrite(Inst, *TLI)) |
Owen Anderson | 0aecf0e | 2007-08-08 04:52:29 +0000 | [diff] [blame] | 498 | continue; |
Chris Lattner | d4f1090 | 2010-11-30 00:01:19 +0000 | [diff] [blame] | 499 | |
Rui Ueyama | c487f77 | 2014-08-06 19:30:38 +0000 | [diff] [blame] | 500 | // If we're storing the same value back to a pointer that we just |
| 501 | // loaded from, then the store can be removed. |
Nick Lewycky | 9027147 | 2009-11-10 06:46:40 +0000 | [diff] [blame] | 502 | if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) { |
Erik Eckstein | 11fc817 | 2015-08-13 15:36:11 +0000 | [diff] [blame] | 503 | if (LoadInst *DepLoad = dyn_cast<LoadInst>(SI->getValueOperand())) { |
Nick Lewycky | 9027147 | 2009-11-10 06:46:40 +0000 | [diff] [blame] | 504 | if (SI->getPointerOperand() == DepLoad->getPointerOperand() && |
Erik Eckstein | 11fc817 | 2015-08-13 15:36:11 +0000 | [diff] [blame] | 505 | isRemovable(SI) && |
| 506 | MemoryIsNotModifiedBetween(DepLoad, SI)) { |
| 507 | |
Chris Lattner | ca335e3 | 2010-12-06 21:13:51 +0000 | [diff] [blame] | 508 | DEBUG(dbgs() << "DSE: Remove Store Of Load from same pointer:\n " |
| 509 | << "LOAD: " << *DepLoad << "\n STORE: " << *SI << '\n'); |
Philip Reames | 00c9b64 | 2014-08-05 17:48:20 +0000 | [diff] [blame] | 510 | |
Rui Ueyama | c487f77 | 2014-08-06 19:30:38 +0000 | [diff] [blame] | 511 | // DeleteDeadInstruction can delete the current instruction. Save BBI |
| 512 | // in case we need it. |
| 513 | WeakVH NextInst(BBI); |
Philip Reames | 00c9b64 | 2014-08-05 17:48:20 +0000 | [diff] [blame] | 514 | |
Chandler Carruth | dbe40fb | 2015-08-12 18:01:44 +0000 | [diff] [blame] | 515 | DeleteDeadInstruction(SI, *MD, *TLI); |
Rui Ueyama | c487f77 | 2014-08-06 19:30:38 +0000 | [diff] [blame] | 516 | |
| 517 | if (!NextInst) // Next instruction deleted. |
| 518 | BBI = BB.begin(); |
| 519 | else if (BBI != BB.begin()) // Revisit this instruction if possible. |
| 520 | --BBI; |
Erik Eckstein | 11fc817 | 2015-08-13 15:36:11 +0000 | [diff] [blame] | 521 | ++NumRedundantStores; |
Rui Ueyama | c487f77 | 2014-08-06 19:30:38 +0000 | [diff] [blame] | 522 | MadeChange = true; |
| 523 | continue; |
| 524 | } |
Philip Reames | 00c9b64 | 2014-08-05 17:48:20 +0000 | [diff] [blame] | 525 | } |
Owen Anderson | 5e72db3 | 2007-07-11 00:46:18 +0000 | [diff] [blame] | 526 | } |
Owen Anderson | 58704ee | 2011-09-06 18:14:09 +0000 | [diff] [blame] | 527 | |
Erik Eckstein | 11fc817 | 2015-08-13 15:36:11 +0000 | [diff] [blame] | 528 | MemDepResult InstDep = MD->getDependency(Inst); |
| 529 | |
Eric Christopher | 0efe9f6 | 2015-08-19 02:15:13 +0000 | [diff] [blame] | 530 | // Ignore any store where we can't find a local dependence. |
| 531 | // FIXME: cross-block DSE would be fun. :) |
| 532 | if (!InstDep.isDef() && !InstDep.isClobber()) |
Erik Eckstein | 11fc817 | 2015-08-13 15:36:11 +0000 | [diff] [blame] | 533 | continue; |
| 534 | |
Chris Lattner | 58b779e | 2010-11-30 07:23:21 +0000 | [diff] [blame] | 535 | // Figure out what location is being stored to. |
Chandler Carruth | ac80dc7 | 2015-06-17 07:18:54 +0000 | [diff] [blame] | 536 | MemoryLocation Loc = getLocForWrite(Inst, *AA); |
Chris Lattner | 58b779e | 2010-11-30 07:23:21 +0000 | [diff] [blame] | 537 | |
| 538 | // If we didn't get a useful location, fail. |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 539 | if (!Loc.Ptr) |
Chris Lattner | 58b779e | 2010-11-30 07:23:21 +0000 | [diff] [blame] | 540 | continue; |
Owen Anderson | 58704ee | 2011-09-06 18:14:09 +0000 | [diff] [blame] | 541 | |
Eli Friedman | c1702c8 | 2011-10-13 22:14:57 +0000 | [diff] [blame] | 542 | while (InstDep.isDef() || InstDep.isClobber()) { |
Chris Lattner | 58b779e | 2010-11-30 07:23:21 +0000 | [diff] [blame] | 543 | // Get the memory clobbered by the instruction we depend on. MemDep will |
| 544 | // skip any instructions that 'Loc' clearly doesn't interact with. If we |
| 545 | // end up depending on a may- or must-aliased load, then we can't optimize |
| 546 | // away the store and we bail out. However, if we depend on on something |
| 547 | // that overwrites the memory location we *can* potentially optimize it. |
| 548 | // |
Chris Lattner | 0ab5e2c | 2011-04-15 05:18:47 +0000 | [diff] [blame] | 549 | // Find out what memory location the dependent instruction stores. |
Chris Lattner | 58b779e | 2010-11-30 07:23:21 +0000 | [diff] [blame] | 550 | Instruction *DepWrite = InstDep.getInst(); |
Chandler Carruth | ac80dc7 | 2015-06-17 07:18:54 +0000 | [diff] [blame] | 551 | MemoryLocation DepLoc = getLocForWrite(DepWrite, *AA); |
Chris Lattner | 58b779e | 2010-11-30 07:23:21 +0000 | [diff] [blame] | 552 | // If we didn't get a useful location, or if it isn't a size, bail out. |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 553 | if (!DepLoc.Ptr) |
Chris Lattner | 58b779e | 2010-11-30 07:23:21 +0000 | [diff] [blame] | 554 | break; |
| 555 | |
Chris Lattner | 94fbdf3 | 2010-12-06 01:48:06 +0000 | [diff] [blame] | 556 | // If we find a write that is a) removable (i.e., non-volatile), b) is |
| 557 | // completely obliterated by the store to 'Loc', and c) which we know that |
| 558 | // 'Inst' doesn't load from, then we can remove it. |
Nadav Rotem | 465834c | 2012-07-24 10:51:42 +0000 | [diff] [blame] | 559 | if (isRemovable(DepWrite) && |
Chandler Carruth | dbe40fb | 2015-08-12 18:01:44 +0000 | [diff] [blame] | 560 | !isPossibleSelfRead(Inst, Loc, DepWrite, *TLI, *AA)) { |
Nadav Rotem | 465834c | 2012-07-24 10:51:42 +0000 | [diff] [blame] | 561 | int64_t InstWriteOffset, DepWriteOffset; |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 562 | const DataLayout &DL = BB.getModule()->getDataLayout(); |
| 563 | OverwriteResult OR = |
Chandler Carruth | dbe40fb | 2015-08-12 18:01:44 +0000 | [diff] [blame] | 564 | isOverwrite(Loc, DepLoc, DL, *TLI, DepWriteOffset, InstWriteOffset); |
Pete Cooper | 856977c | 2011-11-09 23:07:35 +0000 | [diff] [blame] | 565 | if (OR == OverwriteComplete) { |
| 566 | DEBUG(dbgs() << "DSE: Remove Dead Store:\n DEAD: " |
| 567 | << *DepWrite << "\n KILLER: " << *Inst << '\n'); |
Owen Anderson | 58704ee | 2011-09-06 18:14:09 +0000 | [diff] [blame] | 568 | |
Pete Cooper | 856977c | 2011-11-09 23:07:35 +0000 | [diff] [blame] | 569 | // Delete the store and now-dead instructions that feed it. |
Chandler Carruth | dbe40fb | 2015-08-12 18:01:44 +0000 | [diff] [blame] | 570 | DeleteDeadInstruction(DepWrite, *MD, *TLI); |
Pete Cooper | 856977c | 2011-11-09 23:07:35 +0000 | [diff] [blame] | 571 | ++NumFastStores; |
| 572 | MadeChange = true; |
Nadav Rotem | 465834c | 2012-07-24 10:51:42 +0000 | [diff] [blame] | 573 | |
Pete Cooper | 856977c | 2011-11-09 23:07:35 +0000 | [diff] [blame] | 574 | // DeleteDeadInstruction can delete the current instruction in loop |
| 575 | // cases, reset BBI. |
| 576 | BBI = Inst; |
| 577 | if (BBI != BB.begin()) |
| 578 | --BBI; |
| 579 | break; |
| 580 | } else if (OR == OverwriteEnd && isShortenable(DepWrite)) { |
| 581 | // TODO: base this on the target vector size so that if the earlier |
| 582 | // store was too small to get vector writes anyway then its likely |
| 583 | // a good idea to shorten it |
| 584 | // Power of 2 vector writes are probably always a bad idea to optimize |
| 585 | // as any store/memset/memcpy is likely using vector instructions so |
| 586 | // shortening it to not vector size is likely to be slower |
| 587 | MemIntrinsic* DepIntrinsic = cast<MemIntrinsic>(DepWrite); |
| 588 | unsigned DepWriteAlign = DepIntrinsic->getAlignment(); |
| 589 | if (llvm::isPowerOf2_64(InstWriteOffset) || |
| 590 | ((DepWriteAlign != 0) && InstWriteOffset % DepWriteAlign == 0)) { |
Nadav Rotem | 465834c | 2012-07-24 10:51:42 +0000 | [diff] [blame] | 591 | |
Pete Cooper | 856977c | 2011-11-09 23:07:35 +0000 | [diff] [blame] | 592 | DEBUG(dbgs() << "DSE: Remove Dead Store:\n OW END: " |
Nadav Rotem | 465834c | 2012-07-24 10:51:42 +0000 | [diff] [blame] | 593 | << *DepWrite << "\n KILLER (offset " |
| 594 | << InstWriteOffset << ", " |
Pete Cooper | 856977c | 2011-11-09 23:07:35 +0000 | [diff] [blame] | 595 | << DepLoc.Size << ")" |
| 596 | << *Inst << '\n'); |
Nadav Rotem | 465834c | 2012-07-24 10:51:42 +0000 | [diff] [blame] | 597 | |
Pete Cooper | 856977c | 2011-11-09 23:07:35 +0000 | [diff] [blame] | 598 | Value* DepWriteLength = DepIntrinsic->getLength(); |
| 599 | Value* TrimmedLength = ConstantInt::get(DepWriteLength->getType(), |
Nadav Rotem | 465834c | 2012-07-24 10:51:42 +0000 | [diff] [blame] | 600 | InstWriteOffset - |
Pete Cooper | 856977c | 2011-11-09 23:07:35 +0000 | [diff] [blame] | 601 | DepWriteOffset); |
| 602 | DepIntrinsic->setLength(TrimmedLength); |
| 603 | MadeChange = true; |
| 604 | } |
| 605 | } |
Chris Lattner | 58b779e | 2010-11-30 07:23:21 +0000 | [diff] [blame] | 606 | } |
Owen Anderson | 58704ee | 2011-09-06 18:14:09 +0000 | [diff] [blame] | 607 | |
Chris Lattner | d4f1090 | 2010-11-30 00:01:19 +0000 | [diff] [blame] | 608 | // If this is a may-aliased store that is clobbering the store value, we |
| 609 | // can keep searching past it for another must-aliased pointer that stores |
| 610 | // to the same location. For example, in: |
| 611 | // store -> P |
| 612 | // store -> Q |
| 613 | // store -> P |
| 614 | // we can remove the first store to P even though we don't know if P and Q |
| 615 | // alias. |
Chris Lattner | 58b779e | 2010-11-30 07:23:21 +0000 | [diff] [blame] | 616 | if (DepWrite == &BB.front()) break; |
Owen Anderson | 58704ee | 2011-09-06 18:14:09 +0000 | [diff] [blame] | 617 | |
Chris Lattner | 58b779e | 2010-11-30 07:23:21 +0000 | [diff] [blame] | 618 | // Can't look past this instruction if it might read 'Loc'. |
Chandler Carruth | 194f59c | 2015-07-22 23:15:57 +0000 | [diff] [blame] | 619 | if (AA->getModRefInfo(DepWrite, Loc) & MRI_Ref) |
Chris Lattner | 58b779e | 2010-11-30 07:23:21 +0000 | [diff] [blame] | 620 | break; |
Owen Anderson | 58704ee | 2011-09-06 18:14:09 +0000 | [diff] [blame] | 621 | |
Chris Lattner | 51c28a9 | 2010-11-30 19:34:42 +0000 | [diff] [blame] | 622 | InstDep = MD->getPointerDependencyFrom(Loc, false, DepWrite, &BB); |
Owen Anderson | 2b2bd28 | 2009-10-28 07:05:35 +0000 | [diff] [blame] | 623 | } |
Owen Anderson | 5e72db3 | 2007-07-11 00:46:18 +0000 | [diff] [blame] | 624 | } |
Owen Anderson | 58704ee | 2011-09-06 18:14:09 +0000 | [diff] [blame] | 625 | |
Chris Lattner | f2a8ba4 | 2008-11-28 21:29:52 +0000 | [diff] [blame] | 626 | // If this block ends in a return, unwind, or unreachable, all allocas are |
| 627 | // dead at its end, which means stores to them are also dead. |
Owen Anderson | 32c4a05 | 2007-07-12 21:41:30 +0000 | [diff] [blame] | 628 | if (BB.getTerminator()->getNumSuccessors() == 0) |
Chris Lattner | 1adb675 | 2008-11-28 00:27:14 +0000 | [diff] [blame] | 629 | MadeChange |= handleEndBlock(BB); |
Owen Anderson | 58704ee | 2011-09-06 18:14:09 +0000 | [diff] [blame] | 630 | |
Owen Anderson | 5e72db3 | 2007-07-11 00:46:18 +0000 | [diff] [blame] | 631 | return MadeChange; |
| 632 | } |
| 633 | |
Erik Eckstein | 11fc817 | 2015-08-13 15:36:11 +0000 | [diff] [blame] | 634 | /// Returns true if the memory which is accessed by the store instruction is not |
| 635 | /// modified between the load and the store instruction. |
| 636 | /// Precondition: The store instruction must be dominated by the load |
| 637 | /// instruction. |
| 638 | bool DSE::MemoryIsNotModifiedBetween(LoadInst *LI, StoreInst *SI) { |
| 639 | SmallVector<BasicBlock *, 16> WorkList; |
| 640 | SmallPtrSet<BasicBlock *, 8> Visited; |
| 641 | BasicBlock::iterator LoadBBI(LI); |
| 642 | ++LoadBBI; |
| 643 | BasicBlock::iterator StoreBBI(SI); |
| 644 | BasicBlock *LoadBB = LI->getParent(); |
| 645 | BasicBlock *StoreBB = SI->getParent(); |
| 646 | MemoryLocation StoreLoc = MemoryLocation::get(SI); |
| 647 | |
| 648 | // Start checking the store-block. |
| 649 | WorkList.push_back(StoreBB); |
| 650 | bool isFirstBlock = true; |
| 651 | |
| 652 | // Check all blocks going backward until we reach the load-block. |
| 653 | while (!WorkList.empty()) { |
| 654 | BasicBlock *B = WorkList.pop_back_val(); |
| 655 | |
| 656 | // Ignore instructions before LI if this is the LoadBB. |
| 657 | BasicBlock::iterator BI = (B == LoadBB ? LoadBBI : B->begin()); |
| 658 | |
| 659 | BasicBlock::iterator EI; |
| 660 | if (isFirstBlock) { |
| 661 | // Ignore instructions after SI if this is the first visit of StoreBB. |
| 662 | assert(B == StoreBB && "first block is not the store block"); |
| 663 | EI = StoreBBI; |
| 664 | isFirstBlock = false; |
| 665 | } else { |
| 666 | // It's not StoreBB or (in case of a loop) the second visit of StoreBB. |
| 667 | // In this case we also have to look at instructions after SI. |
| 668 | EI = B->end(); |
| 669 | } |
| 670 | for (; BI != EI; ++BI) { |
| 671 | Instruction *I = BI; |
| 672 | if (I->mayWriteToMemory() && I != SI) { |
| 673 | auto Res = AA->getModRefInfo(I, StoreLoc); |
| 674 | if (Res != MRI_NoModRef) |
| 675 | return false; |
| 676 | } |
| 677 | } |
| 678 | if (B != LoadBB) { |
| 679 | assert(B != &LoadBB->getParent()->getEntryBlock() && |
| 680 | "Should not hit the entry block because SI must be dominated by LI"); |
| 681 | for (auto PredI = pred_begin(B), PE = pred_end(B); PredI != PE; ++PredI) { |
| 682 | if (!Visited.insert(*PredI).second) |
| 683 | continue; |
| 684 | WorkList.push_back(*PredI); |
| 685 | } |
| 686 | } |
| 687 | } |
| 688 | return true; |
| 689 | } |
| 690 | |
Nick Lewycky | f2905af | 2011-11-05 10:48:42 +0000 | [diff] [blame] | 691 | /// Find all blocks that will unconditionally lead to the block BB and append |
| 692 | /// them to F. |
| 693 | static void FindUnconditionalPreds(SmallVectorImpl<BasicBlock *> &Blocks, |
| 694 | BasicBlock *BB, DominatorTree *DT) { |
Duncan P. N. Exon Smith | 6c99015 | 2014-07-21 17:06:51 +0000 | [diff] [blame] | 695 | for (pred_iterator I = pred_begin(BB), E = pred_end(BB); I != E; ++I) { |
| 696 | BasicBlock *Pred = *I; |
Nick Lewycky | fe97072 | 2011-12-08 22:36:35 +0000 | [diff] [blame] | 697 | if (Pred == BB) continue; |
Nick Lewycky | f2905af | 2011-11-05 10:48:42 +0000 | [diff] [blame] | 698 | TerminatorInst *PredTI = Pred->getTerminator(); |
| 699 | if (PredTI->getNumSuccessors() != 1) |
| 700 | continue; |
| 701 | |
| 702 | if (DT->isReachableFromEntry(Pred)) |
| 703 | Blocks.push_back(Pred); |
| 704 | } |
| 705 | } |
| 706 | |
Chris Lattner | 9d179d9 | 2010-11-30 01:28:33 +0000 | [diff] [blame] | 707 | /// HandleFree - Handle frees of entire structures whose dependency is a store |
| 708 | /// to a field of that structure. |
| 709 | bool DSE::HandleFree(CallInst *F) { |
Eli Friedman | 7d58bc7 | 2011-06-15 00:47:34 +0000 | [diff] [blame] | 710 | bool MadeChange = false; |
| 711 | |
Chandler Carruth | ac80dc7 | 2015-06-17 07:18:54 +0000 | [diff] [blame] | 712 | MemoryLocation Loc = MemoryLocation(F->getOperand(0)); |
Nick Lewycky | f2905af | 2011-11-05 10:48:42 +0000 | [diff] [blame] | 713 | SmallVector<BasicBlock *, 16> Blocks; |
| 714 | Blocks.push_back(F->getParent()); |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 715 | const DataLayout &DL = F->getModule()->getDataLayout(); |
Eli Friedman | 7d58bc7 | 2011-06-15 00:47:34 +0000 | [diff] [blame] | 716 | |
Nick Lewycky | f2905af | 2011-11-05 10:48:42 +0000 | [diff] [blame] | 717 | while (!Blocks.empty()) { |
| 718 | BasicBlock *BB = Blocks.pop_back_val(); |
| 719 | Instruction *InstPt = BB->getTerminator(); |
| 720 | if (BB == F->getParent()) InstPt = F; |
Owen Anderson | 58704ee | 2011-09-06 18:14:09 +0000 | [diff] [blame] | 721 | |
Nick Lewycky | f2905af | 2011-11-05 10:48:42 +0000 | [diff] [blame] | 722 | MemDepResult Dep = MD->getPointerDependencyFrom(Loc, false, InstPt, BB); |
| 723 | while (Dep.isDef() || Dep.isClobber()) { |
| 724 | Instruction *Dependency = Dep.getInst(); |
Chandler Carruth | dbe40fb | 2015-08-12 18:01:44 +0000 | [diff] [blame] | 725 | if (!hasMemoryWrite(Dependency, *TLI) || !isRemovable(Dependency)) |
Nick Lewycky | f2905af | 2011-11-05 10:48:42 +0000 | [diff] [blame] | 726 | break; |
Duncan Sands | fe3bef0 | 2008-01-20 10:49:23 +0000 | [diff] [blame] | 727 | |
Nick Lewycky | f2905af | 2011-11-05 10:48:42 +0000 | [diff] [blame] | 728 | Value *DepPointer = |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 729 | GetUnderlyingObject(getStoredPointerOperand(Dependency), DL); |
Owen Anderson | 58704ee | 2011-09-06 18:14:09 +0000 | [diff] [blame] | 730 | |
Nick Lewycky | f2905af | 2011-11-05 10:48:42 +0000 | [diff] [blame] | 731 | // Check for aliasing. |
| 732 | if (!AA->isMustAlias(F->getArgOperand(0), DepPointer)) |
| 733 | break; |
Dan Gohman | d4b7fff | 2010-11-12 02:19:17 +0000 | [diff] [blame] | 734 | |
Benjamin Kramer | b6d0bd4 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 735 | Instruction *Next = std::next(BasicBlock::iterator(Dependency)); |
Nick Lewycky | f2905af | 2011-11-05 10:48:42 +0000 | [diff] [blame] | 736 | |
| 737 | // DCE instructions only used to calculate that store |
Chandler Carruth | dbe40fb | 2015-08-12 18:01:44 +0000 | [diff] [blame] | 738 | DeleteDeadInstruction(Dependency, *MD, *TLI); |
Nick Lewycky | f2905af | 2011-11-05 10:48:42 +0000 | [diff] [blame] | 739 | ++NumFastStores; |
| 740 | MadeChange = true; |
| 741 | |
| 742 | // Inst's old Dependency is now deleted. Compute the next dependency, |
| 743 | // which may also be dead, as in |
| 744 | // s[0] = 0; |
| 745 | // s[1] = 0; // This has just been deleted. |
| 746 | // free(s); |
| 747 | Dep = MD->getPointerDependencyFrom(Loc, false, Next, BB); |
| 748 | } |
| 749 | |
| 750 | if (Dep.isNonLocal()) |
| 751 | FindUnconditionalPreds(Blocks, BB, DT); |
| 752 | } |
Owen Anderson | 58704ee | 2011-09-06 18:14:09 +0000 | [diff] [blame] | 753 | |
Eli Friedman | 7d58bc7 | 2011-06-15 00:47:34 +0000 | [diff] [blame] | 754 | return MadeChange; |
Owen Anderson | aa07172 | 2007-07-11 23:19:17 +0000 | [diff] [blame] | 755 | } |
| 756 | |
Owen Anderson | e359058 | 2007-08-02 18:11:11 +0000 | [diff] [blame] | 757 | /// handleEndBlock - Remove dead stores to stack-allocated locations in the |
Owen Anderson | 52aaabf | 2007-08-08 17:50:09 +0000 | [diff] [blame] | 758 | /// function end block. Ex: |
| 759 | /// %A = alloca i32 |
| 760 | /// ... |
| 761 | /// store i32 1, i32* %A |
| 762 | /// ret void |
Chris Lattner | 1adb675 | 2008-11-28 00:27:14 +0000 | [diff] [blame] | 763 | bool DSE::handleEndBlock(BasicBlock &BB) { |
Owen Anderson | 32c4a05 | 2007-07-12 21:41:30 +0000 | [diff] [blame] | 764 | bool MadeChange = false; |
Owen Anderson | 58704ee | 2011-09-06 18:14:09 +0000 | [diff] [blame] | 765 | |
Chris Lattner | 7fe08b6 | 2010-11-30 21:32:12 +0000 | [diff] [blame] | 766 | // Keep track of all of the stack objects that are dead at the end of the |
| 767 | // function. |
Evan Cheng | 773b2cd | 2012-06-16 04:28:11 +0000 | [diff] [blame] | 768 | SmallSetVector<Value*, 16> DeadStackObjects; |
Owen Anderson | 58704ee | 2011-09-06 18:14:09 +0000 | [diff] [blame] | 769 | |
Chris Lattner | 1adb675 | 2008-11-28 00:27:14 +0000 | [diff] [blame] | 770 | // Find all of the alloca'd pointers in the entry block. |
Owen Anderson | 32c4a05 | 2007-07-12 21:41:30 +0000 | [diff] [blame] | 771 | BasicBlock *Entry = BB.getParent()->begin(); |
Nick Lewycky | 32f8051 | 2011-10-22 21:59:35 +0000 | [diff] [blame] | 772 | for (BasicBlock::iterator I = Entry->begin(), E = Entry->end(); I != E; ++I) { |
Nuno Lopes | 55fff83 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 773 | if (isa<AllocaInst>(I)) |
| 774 | DeadStackObjects.insert(I); |
Owen Anderson | 58704ee | 2011-09-06 18:14:09 +0000 | [diff] [blame] | 775 | |
Nick Lewycky | 32f8051 | 2011-10-22 21:59:35 +0000 | [diff] [blame] | 776 | // Okay, so these are dead heap objects, but if the pointer never escapes |
| 777 | // then it's leaked by this function anyways. |
Nick Lewycky | 135ac9a | 2012-09-24 22:07:09 +0000 | [diff] [blame] | 778 | else if (isAllocLikeFn(I, TLI) && !PointerMayBeCaptured(I, true, true)) |
Nuno Lopes | 55fff83 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 779 | DeadStackObjects.insert(I); |
Nick Lewycky | 32f8051 | 2011-10-22 21:59:35 +0000 | [diff] [blame] | 780 | } |
| 781 | |
Reid Kleckner | 26af2ca | 2014-01-28 02:38:36 +0000 | [diff] [blame] | 782 | // Treat byval or inalloca arguments the same, stores to them are dead at the |
| 783 | // end of the function. |
Owen Anderson | 48d3780 | 2008-01-29 06:18:36 +0000 | [diff] [blame] | 784 | for (Function::arg_iterator AI = BB.getParent()->arg_begin(), |
| 785 | AE = BB.getParent()->arg_end(); AI != AE; ++AI) |
Reid Kleckner | 26af2ca | 2014-01-28 02:38:36 +0000 | [diff] [blame] | 786 | if (AI->hasByValOrInAllocaAttr()) |
Chris Lattner | 7fe08b6 | 2010-11-30 21:32:12 +0000 | [diff] [blame] | 787 | DeadStackObjects.insert(AI); |
Owen Anderson | 58704ee | 2011-09-06 18:14:09 +0000 | [diff] [blame] | 788 | |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 789 | const DataLayout &DL = BB.getModule()->getDataLayout(); |
| 790 | |
Owen Anderson | 32c4a05 | 2007-07-12 21:41:30 +0000 | [diff] [blame] | 791 | // Scan the basic block backwards |
| 792 | for (BasicBlock::iterator BBI = BB.end(); BBI != BB.begin(); ){ |
| 793 | --BBI; |
Owen Anderson | 58704ee | 2011-09-06 18:14:09 +0000 | [diff] [blame] | 794 | |
Bjorn Steinbrink | 2e2f665 | 2015-08-20 08:58:47 +0000 | [diff] [blame] | 795 | // If we find a store, check to see if it points into a dead stack value. |
| 796 | if (hasMemoryWrite(BBI, *TLI) && isRemovable(BBI)) { |
Chris Lattner | 60a8b3d | 2010-11-30 19:48:15 +0000 | [diff] [blame] | 797 | // See through pointer-to-pointer bitcasts |
Dan Gohman | ed7c24e2 | 2012-05-10 18:57:38 +0000 | [diff] [blame] | 798 | SmallVector<Value *, 4> Pointers; |
Bjorn Steinbrink | 2e2f665 | 2015-08-20 08:58:47 +0000 | [diff] [blame] | 799 | GetUnderlyingObjects(getStoredPointerOperand(BBI), Pointers, DL); |
Duncan Sands | d65a4da | 2008-10-01 15:25:41 +0000 | [diff] [blame] | 800 | |
Chris Lattner | 6712251 | 2010-11-30 21:58:14 +0000 | [diff] [blame] | 801 | // Stores to stack values are valid candidates for removal. |
Dan Gohman | ed7c24e2 | 2012-05-10 18:57:38 +0000 | [diff] [blame] | 802 | bool AllDead = true; |
| 803 | for (SmallVectorImpl<Value *>::iterator I = Pointers.begin(), |
| 804 | E = Pointers.end(); I != E; ++I) |
| 805 | if (!DeadStackObjects.count(*I)) { |
| 806 | AllDead = false; |
| 807 | break; |
| 808 | } |
| 809 | |
| 810 | if (AllDead) { |
Chris Lattner | 60a8b3d | 2010-11-30 19:48:15 +0000 | [diff] [blame] | 811 | Instruction *Dead = BBI++; |
Owen Anderson | 58704ee | 2011-09-06 18:14:09 +0000 | [diff] [blame] | 812 | |
Chris Lattner | ca335e3 | 2010-12-06 21:13:51 +0000 | [diff] [blame] | 813 | DEBUG(dbgs() << "DSE: Dead Store at End of Block:\n DEAD: " |
Dan Gohman | ed7c24e2 | 2012-05-10 18:57:38 +0000 | [diff] [blame] | 814 | << *Dead << "\n Objects: "; |
| 815 | for (SmallVectorImpl<Value *>::iterator I = Pointers.begin(), |
| 816 | E = Pointers.end(); I != E; ++I) { |
| 817 | dbgs() << **I; |
Benjamin Kramer | b6d0bd4 | 2014-03-02 12:27:27 +0000 | [diff] [blame] | 818 | if (std::next(I) != E) |
Dan Gohman | ed7c24e2 | 2012-05-10 18:57:38 +0000 | [diff] [blame] | 819 | dbgs() << ", "; |
| 820 | } |
| 821 | dbgs() << '\n'); |
Owen Anderson | 58704ee | 2011-09-06 18:14:09 +0000 | [diff] [blame] | 822 | |
Chris Lattner | ca335e3 | 2010-12-06 21:13:51 +0000 | [diff] [blame] | 823 | // DCE instructions only used to calculate that store. |
Chandler Carruth | dbe40fb | 2015-08-12 18:01:44 +0000 | [diff] [blame] | 824 | DeleteDeadInstruction(Dead, *MD, *TLI, &DeadStackObjects); |
Chris Lattner | 60a8b3d | 2010-11-30 19:48:15 +0000 | [diff] [blame] | 825 | ++NumFastStores; |
| 826 | MadeChange = true; |
Owen Anderson | e316e5b | 2011-08-30 21:11:06 +0000 | [diff] [blame] | 827 | continue; |
Chris Lattner | 60a8b3d | 2010-11-30 19:48:15 +0000 | [diff] [blame] | 828 | } |
Owen Anderson | 52aaabf | 2007-08-08 17:50:09 +0000 | [diff] [blame] | 829 | } |
Owen Anderson | 58704ee | 2011-09-06 18:14:09 +0000 | [diff] [blame] | 830 | |
Chris Lattner | 60a8b3d | 2010-11-30 19:48:15 +0000 | [diff] [blame] | 831 | // Remove any dead non-memory-mutating instructions. |
Nick Lewycky | 135ac9a | 2012-09-24 22:07:09 +0000 | [diff] [blame] | 832 | if (isInstructionTriviallyDead(BBI, TLI)) { |
Chris Lattner | 60a8b3d | 2010-11-30 19:48:15 +0000 | [diff] [blame] | 833 | Instruction *Inst = BBI++; |
Chandler Carruth | dbe40fb | 2015-08-12 18:01:44 +0000 | [diff] [blame] | 834 | DeleteDeadInstruction(Inst, *MD, *TLI, &DeadStackObjects); |
Chris Lattner | 60a8b3d | 2010-11-30 19:48:15 +0000 | [diff] [blame] | 835 | ++NumFastOther; |
| 836 | MadeChange = true; |
| 837 | continue; |
| 838 | } |
Owen Anderson | 58704ee | 2011-09-06 18:14:09 +0000 | [diff] [blame] | 839 | |
Eli Friedman | 08ec0a8 | 2012-08-08 02:17:32 +0000 | [diff] [blame] | 840 | if (isa<AllocaInst>(BBI)) { |
| 841 | // Remove allocas from the list of dead stack objects; there can't be |
| 842 | // any references before the definition. |
Nuno Lopes | 55fff83 | 2012-06-21 15:45:28 +0000 | [diff] [blame] | 843 | DeadStackObjects.remove(BBI); |
Nuno Lopes | 300d629 | 2012-05-10 17:14:00 +0000 | [diff] [blame] | 844 | continue; |
| 845 | } |
| 846 | |
Benjamin Kramer | 3a09ef6 | 2015-04-10 14:50:08 +0000 | [diff] [blame] | 847 | if (auto CS = CallSite(BBI)) { |
Eli Friedman | 08ec0a8 | 2012-08-08 02:17:32 +0000 | [diff] [blame] | 848 | // Remove allocation function calls from the list of dead stack objects; |
| 849 | // there can't be any references before the definition. |
Nick Lewycky | 135ac9a | 2012-09-24 22:07:09 +0000 | [diff] [blame] | 850 | if (isAllocLikeFn(BBI, TLI)) |
Eli Friedman | 08ec0a8 | 2012-08-08 02:17:32 +0000 | [diff] [blame] | 851 | DeadStackObjects.remove(BBI); |
| 852 | |
Chris Lattner | 127818d | 2010-11-30 21:18:46 +0000 | [diff] [blame] | 853 | // If this call does not access memory, it can't be loading any of our |
| 854 | // pointers. |
| 855 | if (AA->doesNotAccessMemory(CS)) |
| 856 | continue; |
Owen Anderson | 58704ee | 2011-09-06 18:14:09 +0000 | [diff] [blame] | 857 | |
Chris Lattner | 127818d | 2010-11-30 21:18:46 +0000 | [diff] [blame] | 858 | // If the call might load from any of our allocas, then any store above |
| 859 | // the call is live. |
Chandler Carruth | d031fe9 | 2014-03-03 19:28:52 +0000 | [diff] [blame] | 860 | DeadStackObjects.remove_if([&](Value *I) { |
Benjamin Kramer | 3a377bc | 2014-03-01 11:47:00 +0000 | [diff] [blame] | 861 | // See if the call site touches the value. |
Chandler Carruth | dbe40fb | 2015-08-12 18:01:44 +0000 | [diff] [blame] | 862 | ModRefInfo A = AA->getModRefInfo(CS, I, getPointerSize(I, DL, *TLI)); |
Benjamin Kramer | 3a377bc | 2014-03-01 11:47:00 +0000 | [diff] [blame] | 863 | |
Chandler Carruth | 194f59c | 2015-07-22 23:15:57 +0000 | [diff] [blame] | 864 | return A == MRI_ModRef || A == MRI_Ref; |
Chandler Carruth | d031fe9 | 2014-03-03 19:28:52 +0000 | [diff] [blame] | 865 | }); |
Owen Anderson | 58704ee | 2011-09-06 18:14:09 +0000 | [diff] [blame] | 866 | |
Benjamin Kramer | 2b11eb0 | 2012-09-09 16:44:05 +0000 | [diff] [blame] | 867 | // If all of the allocas were clobbered by the call then we're not going |
| 868 | // to find anything else to process. |
Benjamin Kramer | 650b1db | 2012-10-14 10:21:31 +0000 | [diff] [blame] | 869 | if (DeadStackObjects.empty()) |
Benjamin Kramer | 2b11eb0 | 2012-09-09 16:44:05 +0000 | [diff] [blame] | 870 | break; |
| 871 | |
Chris Lattner | 127818d | 2010-11-30 21:18:46 +0000 | [diff] [blame] | 872 | continue; |
| 873 | } |
Eli Friedman | 89b694b | 2011-07-27 01:08:30 +0000 | [diff] [blame] | 874 | |
Chandler Carruth | ac80dc7 | 2015-06-17 07:18:54 +0000 | [diff] [blame] | 875 | MemoryLocation LoadedLoc; |
Owen Anderson | 58704ee | 2011-09-06 18:14:09 +0000 | [diff] [blame] | 876 | |
Owen Anderson | 32c4a05 | 2007-07-12 21:41:30 +0000 | [diff] [blame] | 877 | // If we encounter a use of the pointer, it is no longer considered dead |
Chris Lattner | 1adb675 | 2008-11-28 00:27:14 +0000 | [diff] [blame] | 878 | if (LoadInst *L = dyn_cast<LoadInst>(BBI)) { |
Eli Friedman | 9a46815 | 2011-08-17 22:22:24 +0000 | [diff] [blame] | 879 | if (!L->isUnordered()) // Be conservative with atomic/volatile load |
| 880 | break; |
Chandler Carruth | 70c61c1 | 2015-06-04 02:03:15 +0000 | [diff] [blame] | 881 | LoadedLoc = MemoryLocation::get(L); |
Nick Lewycky | 475d3d1 | 2010-01-03 04:39:07 +0000 | [diff] [blame] | 882 | } else if (VAArgInst *V = dyn_cast<VAArgInst>(BBI)) { |
Chandler Carruth | 70c61c1 | 2015-06-04 02:03:15 +0000 | [diff] [blame] | 883 | LoadedLoc = MemoryLocation::get(V); |
Chris Lattner | 60a8b3d | 2010-11-30 19:48:15 +0000 | [diff] [blame] | 884 | } else if (MemTransferInst *MTI = dyn_cast<MemTransferInst>(BBI)) { |
Chandler Carruth | 70c61c1 | 2015-06-04 02:03:15 +0000 | [diff] [blame] | 885 | LoadedLoc = MemoryLocation::getForSource(MTI); |
Owen Anderson | 58704ee | 2011-09-06 18:14:09 +0000 | [diff] [blame] | 886 | } else if (!BBI->mayReadFromMemory()) { |
| 887 | // Instruction doesn't read memory. Note that stores that weren't removed |
| 888 | // above will hit this case. |
Chris Lattner | 1adb675 | 2008-11-28 00:27:14 +0000 | [diff] [blame] | 889 | continue; |
Eli Friedman | 89b694b | 2011-07-27 01:08:30 +0000 | [diff] [blame] | 890 | } else { |
| 891 | // Unknown inst; assume it clobbers everything. |
| 892 | break; |
Owen Anderson | 32c4a05 | 2007-07-12 21:41:30 +0000 | [diff] [blame] | 893 | } |
Duncan Sands | d65a4da | 2008-10-01 15:25:41 +0000 | [diff] [blame] | 894 | |
Chris Lattner | 7fe08b6 | 2010-11-30 21:32:12 +0000 | [diff] [blame] | 895 | // Remove any allocas from the DeadPointer set that are loaded, as this |
| 896 | // makes any stores above the access live. |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 897 | RemoveAccessedObjects(LoadedLoc, DeadStackObjects, DL); |
Duncan Sands | d65a4da | 2008-10-01 15:25:41 +0000 | [diff] [blame] | 898 | |
Chris Lattner | 7fe08b6 | 2010-11-30 21:32:12 +0000 | [diff] [blame] | 899 | // If all of the allocas were clobbered by the access then we're not going |
| 900 | // to find anything else to process. |
| 901 | if (DeadStackObjects.empty()) |
| 902 | break; |
Owen Anderson | 32c4a05 | 2007-07-12 21:41:30 +0000 | [diff] [blame] | 903 | } |
Owen Anderson | 58704ee | 2011-09-06 18:14:09 +0000 | [diff] [blame] | 904 | |
Owen Anderson | 32c4a05 | 2007-07-12 21:41:30 +0000 | [diff] [blame] | 905 | return MadeChange; |
| 906 | } |
| 907 | |
Chris Lattner | 7fe08b6 | 2010-11-30 21:32:12 +0000 | [diff] [blame] | 908 | /// RemoveAccessedObjects - Check to see if the specified location may alias any |
| 909 | /// of the stack objects in the DeadStackObjects set. If so, they become live |
| 910 | /// because the location is being loaded. |
Chandler Carruth | ac80dc7 | 2015-06-17 07:18:54 +0000 | [diff] [blame] | 911 | void DSE::RemoveAccessedObjects(const MemoryLocation &LoadedLoc, |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 912 | SmallSetVector<Value *, 16> &DeadStackObjects, |
| 913 | const DataLayout &DL) { |
| 914 | const Value *UnderlyingPointer = GetUnderlyingObject(LoadedLoc.Ptr, DL); |
Chris Lattner | 7fe08b6 | 2010-11-30 21:32:12 +0000 | [diff] [blame] | 915 | |
| 916 | // A constant can't be in the dead pointer set. |
| 917 | if (isa<Constant>(UnderlyingPointer)) |
Chris Lattner | f80b399 | 2010-11-30 21:38:30 +0000 | [diff] [blame] | 918 | return; |
Owen Anderson | 58704ee | 2011-09-06 18:14:09 +0000 | [diff] [blame] | 919 | |
Chris Lattner | 7fe08b6 | 2010-11-30 21:32:12 +0000 | [diff] [blame] | 920 | // If the kill pointer can be easily reduced to an alloca, don't bother doing |
| 921 | // extraneous AA queries. |
Chris Lattner | f80b399 | 2010-11-30 21:38:30 +0000 | [diff] [blame] | 922 | if (isa<AllocaInst>(UnderlyingPointer) || isa<Argument>(UnderlyingPointer)) { |
Evan Cheng | 773b2cd | 2012-06-16 04:28:11 +0000 | [diff] [blame] | 923 | DeadStackObjects.remove(const_cast<Value*>(UnderlyingPointer)); |
Chris Lattner | f80b399 | 2010-11-30 21:38:30 +0000 | [diff] [blame] | 924 | return; |
Owen Anderson | ddf4aee | 2007-08-08 18:38:28 +0000 | [diff] [blame] | 925 | } |
Owen Anderson | 58704ee | 2011-09-06 18:14:09 +0000 | [diff] [blame] | 926 | |
Benjamin Kramer | 650b1db | 2012-10-14 10:21:31 +0000 | [diff] [blame] | 927 | // Remove objects that could alias LoadedLoc. |
Benjamin Kramer | 9c794c7 | 2014-03-03 19:49:02 +0000 | [diff] [blame] | 928 | DeadStackObjects.remove_if([&](Value *I) { |
Benjamin Kramer | 3a377bc | 2014-03-01 11:47:00 +0000 | [diff] [blame] | 929 | // See if the loaded location could alias the stack location. |
Chandler Carruth | dbe40fb | 2015-08-12 18:01:44 +0000 | [diff] [blame] | 930 | MemoryLocation StackLoc(I, getPointerSize(I, DL, *TLI)); |
Benjamin Kramer | 3a377bc | 2014-03-01 11:47:00 +0000 | [diff] [blame] | 931 | return !AA->isNoAlias(StackLoc, LoadedLoc); |
Benjamin Kramer | 9c794c7 | 2014-03-03 19:49:02 +0000 | [diff] [blame] | 932 | }); |
Owen Anderson | 32c4a05 | 2007-07-12 21:41:30 +0000 | [diff] [blame] | 933 | } |