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