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