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