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