Chris Lattner | e0e734e | 2002-05-10 22:44:58 +0000 | [diff] [blame] | 1 | //===-- LICM.cpp - Loop Invariant Code Motion Pass ------------------------===// |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 2 | // |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 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. |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 7 | // |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Chris Lattner | e0e734e | 2002-05-10 22:44:58 +0000 | [diff] [blame] | 9 | // |
Chris Lattner | 92094b4 | 2003-12-09 17:18:00 +0000 | [diff] [blame] | 10 | // This pass performs loop invariant code motion, attempting to remove as much |
| 11 | // code from the body of a loop as possible. It does this by either hoisting |
| 12 | // code into the preheader block, or by sinking code to the exit blocks if it is |
| 13 | // safe. This pass also promotes must-aliased memory locations in the loop to |
Chris Lattner | e4365b2 | 2003-12-19 07:22:45 +0000 | [diff] [blame] | 14 | // live in registers, thus hoisting and sinking "invariant" loads and stores. |
Chris Lattner | 92094b4 | 2003-12-09 17:18:00 +0000 | [diff] [blame] | 15 | // |
| 16 | // This pass uses alias analysis for two purposes: |
Chris Lattner | 2e6e741 | 2003-02-24 03:52:32 +0000 | [diff] [blame] | 17 | // |
Chris Lattner | 2741c97 | 2004-05-23 21:20:19 +0000 | [diff] [blame] | 18 | // 1. Moving loop invariant loads and calls out of loops. If we can determine |
| 19 | // that a load or call inside of a loop never aliases anything stored to, |
| 20 | // we can hoist it or sink it like any other instruction. |
Chris Lattner | 2e6e741 | 2003-02-24 03:52:32 +0000 | [diff] [blame] | 21 | // 2. Scalar Promotion of Memory - If there is a store instruction inside of |
| 22 | // the loop, we try to move the store to happen AFTER the loop instead of |
| 23 | // inside of the loop. This can only happen if a few conditions are true: |
| 24 | // A. The pointer stored through is loop invariant |
| 25 | // B. There are no stores or loads in the loop which _may_ alias the |
| 26 | // pointer. There are no calls in the loop which mod/ref the pointer. |
| 27 | // If these conditions are true, we can promote the loads and stores in the |
| 28 | // loop of the pointer to use a temporary alloca'd variable. We then use |
Chris Lattner | e488064 | 2010-08-29 06:43:52 +0000 | [diff] [blame] | 29 | // the SSAUpdater to construct the appropriate SSA form for the value. |
Chris Lattner | e0e734e | 2002-05-10 22:44:58 +0000 | [diff] [blame] | 30 | // |
Chris Lattner | e0e734e | 2002-05-10 22:44:58 +0000 | [diff] [blame] | 31 | //===----------------------------------------------------------------------===// |
| 32 | |
Chris Lattner | 1f309c1 | 2005-03-23 21:00:12 +0000 | [diff] [blame] | 33 | #define DEBUG_TYPE "licm" |
Chris Lattner | e0e734e | 2002-05-10 22:44:58 +0000 | [diff] [blame] | 34 | #include "llvm/Transforms/Scalar.h" |
Chris Lattner | 79066fa | 2007-01-30 23:46:24 +0000 | [diff] [blame] | 35 | #include "llvm/Constants.h" |
Chris Lattner | 2741c97 | 2004-05-23 21:20:19 +0000 | [diff] [blame] | 36 | #include "llvm/DerivedTypes.h" |
Torok Edwin | 9289ae8 | 2009-10-11 19:15:54 +0000 | [diff] [blame] | 37 | #include "llvm/IntrinsicInst.h" |
Chris Lattner | 2741c97 | 2004-05-23 21:20:19 +0000 | [diff] [blame] | 38 | #include "llvm/Instructions.h" |
Dan Gohman | a8702ea | 2010-10-18 20:44:50 +0000 | [diff] [blame] | 39 | #include "llvm/LLVMContext.h" |
Chris Lattner | f5e84aa | 2002-08-22 21:39:55 +0000 | [diff] [blame] | 40 | #include "llvm/Analysis/AliasAnalysis.h" |
Chris Lattner | 0252e49 | 2003-03-03 23:32:45 +0000 | [diff] [blame] | 41 | #include "llvm/Analysis/AliasSetTracker.h" |
Chris Lattner | 2ac6e23 | 2010-08-31 23:00:16 +0000 | [diff] [blame] | 42 | #include "llvm/Analysis/ConstantFolding.h" |
| 43 | #include "llvm/Analysis/LoopInfo.h" |
| 44 | #include "llvm/Analysis/LoopPass.h" |
Chris Lattner | 952eaee | 2002-09-29 21:46:09 +0000 | [diff] [blame] | 45 | #include "llvm/Analysis/Dominators.h" |
Chris Lattner | 0de5cad | 2010-08-29 18:22:25 +0000 | [diff] [blame] | 46 | #include "llvm/Transforms/Utils/Local.h" |
Chris Lattner | a6a36f5 | 2010-08-29 04:55:06 +0000 | [diff] [blame] | 47 | #include "llvm/Transforms/Utils/SSAUpdater.h" |
Reid Spencer | 9133fe2 | 2007-02-05 23:32:05 +0000 | [diff] [blame] | 48 | #include "llvm/Support/CFG.h" |
Reid Spencer | 551ccae | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 49 | #include "llvm/Support/CommandLine.h" |
Daniel Dunbar | ce63ffb | 2009-07-25 00:23:56 +0000 | [diff] [blame] | 50 | #include "llvm/Support/raw_ostream.h" |
Reid Spencer | 551ccae | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 51 | #include "llvm/Support/Debug.h" |
| 52 | #include "llvm/ADT/Statistic.h" |
Chris Lattner | e0e734e | 2002-05-10 22:44:58 +0000 | [diff] [blame] | 53 | #include <algorithm> |
Chris Lattner | 92094b4 | 2003-12-09 17:18:00 +0000 | [diff] [blame] | 54 | using namespace llvm; |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 55 | |
Chris Lattner | 0e5f499 | 2006-12-19 21:40:18 +0000 | [diff] [blame] | 56 | STATISTIC(NumSunk , "Number of instructions sunk out of loop"); |
| 57 | STATISTIC(NumHoisted , "Number of instructions hoisted out of loop"); |
| 58 | STATISTIC(NumMovedLoads, "Number of load insts hoisted or sunk"); |
| 59 | STATISTIC(NumMovedCalls, "Number of call insts hoisted or sunk"); |
| 60 | STATISTIC(NumPromoted , "Number of memory locations promoted to registers"); |
| 61 | |
Dan Gohman | 844731a | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 62 | static cl::opt<bool> |
| 63 | DisablePromotion("disable-licm-promotion", cl::Hidden, |
| 64 | cl::desc("Disable memory promotion in LICM pass")); |
Chris Lattner | 2e6e741 | 2003-02-24 03:52:32 +0000 | [diff] [blame] | 65 | |
Dan Gohman | 844731a | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 66 | namespace { |
Chris Lattner | 3e8b663 | 2009-09-02 06:11:42 +0000 | [diff] [blame] | 67 | struct LICM : public LoopPass { |
Nick Lewycky | ecd94c8 | 2007-05-06 13:37:16 +0000 | [diff] [blame] | 68 | static char ID; // Pass identification, replacement for typeid |
Owen Anderson | 081c34b | 2010-10-19 17:21:58 +0000 | [diff] [blame] | 69 | LICM() : LoopPass(ID) { |
| 70 | initializeLICMPass(*PassRegistry::getPassRegistry()); |
| 71 | } |
Devang Patel | 794fd75 | 2007-05-01 21:15:47 +0000 | [diff] [blame] | 72 | |
Devang Patel | 54959d6 | 2007-03-07 04:41:30 +0000 | [diff] [blame] | 73 | virtual bool runOnLoop(Loop *L, LPPassManager &LPM); |
Chris Lattner | e0e734e | 2002-05-10 22:44:58 +0000 | [diff] [blame] | 74 | |
Chris Lattner | 9417059 | 2002-09-26 16:52:07 +0000 | [diff] [blame] | 75 | /// This transformation requires natural loop information & requires that |
| 76 | /// loop preheaders be inserted into the CFG... |
| 77 | /// |
Chris Lattner | e0e734e | 2002-05-10 22:44:58 +0000 | [diff] [blame] | 78 | virtual void getAnalysisUsage(AnalysisUsage &AU) const { |
Chris Lattner | cb2610e | 2002-10-21 20:00:28 +0000 | [diff] [blame] | 79 | AU.setPreservesCFG(); |
Owen Anderson | 3a2b58f | 2007-04-24 06:40:39 +0000 | [diff] [blame] | 80 | AU.addRequired<DominatorTree>(); |
Dan Gohman | 1e381fc | 2010-07-16 17:58:45 +0000 | [diff] [blame] | 81 | AU.addRequired<LoopInfo>(); |
| 82 | AU.addRequiredID(LoopSimplifyID); |
Chris Lattner | f5e84aa | 2002-08-22 21:39:55 +0000 | [diff] [blame] | 83 | AU.addRequired<AliasAnalysis>(); |
Chris Lattner | e418ac8 | 2010-08-29 07:02:56 +0000 | [diff] [blame] | 84 | AU.addPreserved<AliasAnalysis>(); |
Dan Gohman | a9b61e7 | 2010-11-17 20:50:07 +0000 | [diff] [blame] | 85 | AU.addPreserved("scalar-evolution"); |
Dan Gohman | 5c89b52 | 2009-09-08 15:45:00 +0000 | [diff] [blame] | 86 | AU.addPreservedID(LoopSimplifyID); |
Chris Lattner | e0e734e | 2002-05-10 22:44:58 +0000 | [diff] [blame] | 87 | } |
| 88 | |
Dan Gohman | 747603e | 2007-04-17 18:21:36 +0000 | [diff] [blame] | 89 | bool doFinalization() { |
Chris Lattner | 4282e32 | 2010-08-29 17:46:00 +0000 | [diff] [blame] | 90 | assert(LoopToAliasSetMap.empty() && "Didn't free loop alias sets"); |
Devang Patel | 54959d6 | 2007-03-07 04:41:30 +0000 | [diff] [blame] | 91 | return false; |
| 92 | } |
| 93 | |
Chris Lattner | e0e734e | 2002-05-10 22:44:58 +0000 | [diff] [blame] | 94 | private: |
Chris Lattner | 2e6e741 | 2003-02-24 03:52:32 +0000 | [diff] [blame] | 95 | AliasAnalysis *AA; // Current AliasAnalysis information |
Chris Lattner | 92094b4 | 2003-12-09 17:18:00 +0000 | [diff] [blame] | 96 | LoopInfo *LI; // Current LoopInfo |
Chris Lattner | 44e2bd3 | 2010-08-29 06:49:44 +0000 | [diff] [blame] | 97 | DominatorTree *DT; // Dominator Tree for the current Loop. |
Chris Lattner | 92094b4 | 2003-12-09 17:18:00 +0000 | [diff] [blame] | 98 | |
Chris Lattner | 4282e32 | 2010-08-29 17:46:00 +0000 | [diff] [blame] | 99 | // State that is updated as we process loops. |
Chris Lattner | 2e6e741 | 2003-02-24 03:52:32 +0000 | [diff] [blame] | 100 | bool Changed; // Set to true when we change anything. |
| 101 | BasicBlock *Preheader; // The preheader block of the current loop... |
| 102 | Loop *CurLoop; // The current loop we are working on... |
Chris Lattner | 0252e49 | 2003-03-03 23:32:45 +0000 | [diff] [blame] | 103 | AliasSetTracker *CurAST; // AliasSet information for the current loop... |
Chris Lattner | 4282e32 | 2010-08-29 17:46:00 +0000 | [diff] [blame] | 104 | DenseMap<Loop*, AliasSetTracker*> LoopToAliasSetMap; |
Chris Lattner | e0e734e | 2002-05-10 22:44:58 +0000 | [diff] [blame] | 105 | |
Devang Patel | 91d22c8 | 2007-07-31 08:01:41 +0000 | [diff] [blame] | 106 | /// cloneBasicBlockAnalysis - Simple Analysis hook. Clone alias set info. |
| 107 | void cloneBasicBlockAnalysis(BasicBlock *From, BasicBlock *To, Loop *L); |
| 108 | |
| 109 | /// deleteAnalysisValue - Simple Analysis hook. Delete value V from alias |
| 110 | /// set. |
| 111 | void deleteAnalysisValue(Value *V, Loop *L); |
| 112 | |
Chris Lattner | e4365b2 | 2003-12-19 07:22:45 +0000 | [diff] [blame] | 113 | /// SinkRegion - Walk the specified region of the CFG (defined by all blocks |
| 114 | /// dominated by the specified block, and that are in the current loop) in |
Owen Anderson | 3a2b58f | 2007-04-24 06:40:39 +0000 | [diff] [blame] | 115 | /// reverse depth first order w.r.t the DominatorTree. This allows us to |
Chris Lattner | e4365b2 | 2003-12-19 07:22:45 +0000 | [diff] [blame] | 116 | /// visit uses before definitions, allowing us to sink a loop body in one |
| 117 | /// pass without iteration. |
| 118 | /// |
Devang Patel | 2604242 | 2007-06-04 00:32:22 +0000 | [diff] [blame] | 119 | void SinkRegion(DomTreeNode *N); |
Chris Lattner | e4365b2 | 2003-12-19 07:22:45 +0000 | [diff] [blame] | 120 | |
Chris Lattner | 952eaee | 2002-09-29 21:46:09 +0000 | [diff] [blame] | 121 | /// HoistRegion - Walk the specified region of the CFG (defined by all |
| 122 | /// blocks dominated by the specified block, and that are in the current |
Owen Anderson | 3a2b58f | 2007-04-24 06:40:39 +0000 | [diff] [blame] | 123 | /// loop) in depth first order w.r.t the DominatorTree. This allows us to |
Misha Brukman | cf00c4a | 2003-10-10 17:57:28 +0000 | [diff] [blame] | 124 | /// visit definitions before uses, allowing us to hoist a loop body in one |
Chris Lattner | 952eaee | 2002-09-29 21:46:09 +0000 | [diff] [blame] | 125 | /// pass without iteration. |
| 126 | /// |
Devang Patel | 2604242 | 2007-06-04 00:32:22 +0000 | [diff] [blame] | 127 | void HoistRegion(DomTreeNode *N); |
Chris Lattner | 952eaee | 2002-09-29 21:46:09 +0000 | [diff] [blame] | 128 | |
Chris Lattner | b461373 | 2002-09-29 22:26:07 +0000 | [diff] [blame] | 129 | /// inSubLoop - Little predicate that returns true if the specified basic |
| 130 | /// block is in a subloop of the current one, not the current one itself. |
Chris Lattner | 9417059 | 2002-09-26 16:52:07 +0000 | [diff] [blame] | 131 | /// |
Chris Lattner | b461373 | 2002-09-29 22:26:07 +0000 | [diff] [blame] | 132 | bool inSubLoop(BasicBlock *BB) { |
| 133 | assert(CurLoop->contains(BB) && "Only valid if BB is IN the loop"); |
Chris Lattner | 329c1c6 | 2004-01-08 00:09:44 +0000 | [diff] [blame] | 134 | for (Loop::iterator I = CurLoop->begin(), E = CurLoop->end(); I != E; ++I) |
| 135 | if ((*I)->contains(BB)) |
Chris Lattner | b461373 | 2002-09-29 22:26:07 +0000 | [diff] [blame] | 136 | return true; // A subloop actually contains this block! |
| 137 | return false; |
Chris Lattner | e0e734e | 2002-05-10 22:44:58 +0000 | [diff] [blame] | 138 | } |
| 139 | |
Chris Lattner | a270651 | 2003-12-10 06:41:05 +0000 | [diff] [blame] | 140 | /// sink - When an instruction is found to only be used outside of the loop, |
| 141 | /// this function moves it to the exit blocks and patches up SSA form as |
| 142 | /// needed. |
| 143 | /// |
| 144 | void sink(Instruction &I); |
| 145 | |
Chris Lattner | 9417059 | 2002-09-26 16:52:07 +0000 | [diff] [blame] | 146 | /// hoist - When an instruction is found to only use loop invariant operands |
| 147 | /// that is safe to hoist, this instruction is called to do the dirty work. |
| 148 | /// |
Chris Lattner | 7e70829 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 149 | void hoist(Instruction &I); |
Chris Lattner | e0e734e | 2002-05-10 22:44:58 +0000 | [diff] [blame] | 150 | |
Chris Lattner | a270651 | 2003-12-10 06:41:05 +0000 | [diff] [blame] | 151 | /// isSafeToExecuteUnconditionally - Only sink or hoist an instruction if it |
| 152 | /// is not a trapping instruction or if it is a trapping instruction and is |
| 153 | /// guaranteed to execute. |
Tanya Lattner | 9966c03 | 2003-08-05 18:45:46 +0000 | [diff] [blame] | 154 | /// |
Chris Lattner | a270651 | 2003-12-10 06:41:05 +0000 | [diff] [blame] | 155 | bool isSafeToExecuteUnconditionally(Instruction &I); |
Tanya Lattner | 9966c03 | 2003-08-05 18:45:46 +0000 | [diff] [blame] | 156 | |
Chris Lattner | 9417059 | 2002-09-26 16:52:07 +0000 | [diff] [blame] | 157 | /// pointerInvalidatedByLoop - Return true if the body of this loop may |
| 158 | /// store into the memory location pointed to by V. |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 159 | /// |
Dan Gohman | 3da848b | 2010-10-19 22:54:46 +0000 | [diff] [blame] | 160 | bool pointerInvalidatedByLoop(Value *V, uint64_t Size, |
Dan Gohman | a8702ea | 2010-10-18 20:44:50 +0000 | [diff] [blame] | 161 | const MDNode *TBAAInfo) { |
Chris Lattner | 0252e49 | 2003-03-03 23:32:45 +0000 | [diff] [blame] | 162 | // Check to see if any of the basic blocks in CurLoop invalidate *V. |
Dan Gohman | a8702ea | 2010-10-18 20:44:50 +0000 | [diff] [blame] | 163 | return CurAST->getAliasSetForPointer(V, Size, TBAAInfo).isMod(); |
Chris Lattner | 2e6e741 | 2003-02-24 03:52:32 +0000 | [diff] [blame] | 164 | } |
Chris Lattner | f5e84aa | 2002-08-22 21:39:55 +0000 | [diff] [blame] | 165 | |
Chris Lattner | a270651 | 2003-12-10 06:41:05 +0000 | [diff] [blame] | 166 | bool canSinkOrHoistInst(Instruction &I); |
Chris Lattner | a270651 | 2003-12-10 06:41:05 +0000 | [diff] [blame] | 167 | bool isNotUsedInLoop(Instruction &I); |
Chris Lattner | e0e734e | 2002-05-10 22:44:58 +0000 | [diff] [blame] | 168 | |
Chris Lattner | e488064 | 2010-08-29 06:43:52 +0000 | [diff] [blame] | 169 | void PromoteAliasSet(AliasSet &AS); |
Chris Lattner | e0e734e | 2002-05-10 22:44:58 +0000 | [diff] [blame] | 170 | }; |
| 171 | } |
| 172 | |
Dan Gohman | 844731a | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 173 | char LICM::ID = 0; |
Owen Anderson | 2ab36d3 | 2010-10-12 19:48:12 +0000 | [diff] [blame] | 174 | INITIALIZE_PASS_BEGIN(LICM, "licm", "Loop Invariant Code Motion", false, false) |
| 175 | INITIALIZE_PASS_DEPENDENCY(DominatorTree) |
| 176 | INITIALIZE_PASS_DEPENDENCY(LoopInfo) |
Owen Anderson | 2ab36d3 | 2010-10-12 19:48:12 +0000 | [diff] [blame] | 177 | INITIALIZE_PASS_DEPENDENCY(LoopSimplify) |
| 178 | INITIALIZE_AG_DEPENDENCY(AliasAnalysis) |
| 179 | INITIALIZE_PASS_END(LICM, "licm", "Loop Invariant Code Motion", false, false) |
Dan Gohman | 844731a | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 180 | |
Daniel Dunbar | 394f044 | 2008-10-22 23:32:42 +0000 | [diff] [blame] | 181 | Pass *llvm::createLICMPass() { return new LICM(); } |
Chris Lattner | e0e734e | 2002-05-10 22:44:58 +0000 | [diff] [blame] | 182 | |
Devang Patel | 8d246f0 | 2007-07-31 16:52:25 +0000 | [diff] [blame] | 183 | /// Hoist expressions out of the specified loop. Note, alias info for inner |
| 184 | /// loop is not preserved so it is not a good idea to run LICM multiple |
| 185 | /// times on one loop. |
Chris Lattner | 9417059 | 2002-09-26 16:52:07 +0000 | [diff] [blame] | 186 | /// |
Devang Patel | 54959d6 | 2007-03-07 04:41:30 +0000 | [diff] [blame] | 187 | bool LICM::runOnLoop(Loop *L, LPPassManager &LPM) { |
Chris Lattner | 2e6e741 | 2003-02-24 03:52:32 +0000 | [diff] [blame] | 188 | Changed = false; |
Chris Lattner | e0e734e | 2002-05-10 22:44:58 +0000 | [diff] [blame] | 189 | |
Chris Lattner | 2e6e741 | 2003-02-24 03:52:32 +0000 | [diff] [blame] | 190 | // Get our Loop and Alias Analysis information... |
| 191 | LI = &getAnalysis<LoopInfo>(); |
Chris Lattner | f5e84aa | 2002-08-22 21:39:55 +0000 | [diff] [blame] | 192 | AA = &getAnalysis<AliasAnalysis>(); |
Owen Anderson | 3a2b58f | 2007-04-24 06:40:39 +0000 | [diff] [blame] | 193 | DT = &getAnalysis<DominatorTree>(); |
Chris Lattner | f5e84aa | 2002-08-22 21:39:55 +0000 | [diff] [blame] | 194 | |
Devang Patel | 54959d6 | 2007-03-07 04:41:30 +0000 | [diff] [blame] | 195 | CurAST = new AliasSetTracker(*AA); |
Chris Lattner | 4282e32 | 2010-08-29 17:46:00 +0000 | [diff] [blame] | 196 | // Collect Alias info from subloops. |
Devang Patel | 54959d6 | 2007-03-07 04:41:30 +0000 | [diff] [blame] | 197 | for (Loop::iterator LoopItr = L->begin(), LoopItrE = L->end(); |
| 198 | LoopItr != LoopItrE; ++LoopItr) { |
| 199 | Loop *InnerL = *LoopItr; |
Chris Lattner | 4282e32 | 2010-08-29 17:46:00 +0000 | [diff] [blame] | 200 | AliasSetTracker *InnerAST = LoopToAliasSetMap[InnerL]; |
| 201 | assert(InnerAST && "Where is my AST?"); |
Devang Patel | 54959d6 | 2007-03-07 04:41:30 +0000 | [diff] [blame] | 202 | |
| 203 | // What if InnerLoop was modified by other passes ? |
| 204 | CurAST->add(*InnerAST); |
Chris Lattner | 4282e32 | 2010-08-29 17:46:00 +0000 | [diff] [blame] | 205 | |
| 206 | // Once we've incorporated the inner loop's AST into ours, we don't need the |
| 207 | // subloop's anymore. |
| 208 | delete InnerAST; |
| 209 | LoopToAliasSetMap.erase(InnerL); |
Chris Lattner | 2e6e741 | 2003-02-24 03:52:32 +0000 | [diff] [blame] | 210 | } |
Devang Patel | 54959d6 | 2007-03-07 04:41:30 +0000 | [diff] [blame] | 211 | |
Chris Lattner | e0e734e | 2002-05-10 22:44:58 +0000 | [diff] [blame] | 212 | CurLoop = L; |
| 213 | |
Chris Lattner | 99a5721 | 2002-09-26 19:40:25 +0000 | [diff] [blame] | 214 | // Get the preheader block to move instructions into... |
| 215 | Preheader = L->getLoopPreheader(); |
Chris Lattner | 99a5721 | 2002-09-26 19:40:25 +0000 | [diff] [blame] | 216 | |
Chris Lattner | 2e6e741 | 2003-02-24 03:52:32 +0000 | [diff] [blame] | 217 | // Loop over the body of this loop, looking for calls, invokes, and stores. |
Chris Lattner | 0252e49 | 2003-03-03 23:32:45 +0000 | [diff] [blame] | 218 | // Because subloops have already been incorporated into AST, we skip blocks in |
Chris Lattner | 2e6e741 | 2003-02-24 03:52:32 +0000 | [diff] [blame] | 219 | // subloops. |
| 220 | // |
Dan Gohman | 9b78763 | 2008-06-22 20:18:58 +0000 | [diff] [blame] | 221 | for (Loop::block_iterator I = L->block_begin(), E = L->block_end(); |
| 222 | I != E; ++I) { |
| 223 | BasicBlock *BB = *I; |
Chris Lattner | 4282e32 | 2010-08-29 17:46:00 +0000 | [diff] [blame] | 224 | if (LI->getLoopFor(BB) == L) // Ignore blocks in subloops. |
Dan Gohman | 9b78763 | 2008-06-22 20:18:58 +0000 | [diff] [blame] | 225 | CurAST->add(*BB); // Incorporate the specified basic block |
| 226 | } |
Chris Lattner | 2e6e741 | 2003-02-24 03:52:32 +0000 | [diff] [blame] | 227 | |
Chris Lattner | e0e734e | 2002-05-10 22:44:58 +0000 | [diff] [blame] | 228 | // We want to visit all of the instructions in this loop... that are not parts |
| 229 | // of our subloops (they have already had their invariants hoisted out of |
| 230 | // their loop, into this loop, so there is no need to process the BODIES of |
| 231 | // the subloops). |
| 232 | // |
Chris Lattner | 952eaee | 2002-09-29 21:46:09 +0000 | [diff] [blame] | 233 | // Traverse the body of the loop in depth first order on the dominator tree so |
| 234 | // that we are guaranteed to see definitions before we see uses. This allows |
Nick Lewycky | af5cbc8 | 2007-08-18 15:08:56 +0000 | [diff] [blame] | 235 | // us to sink instructions in one pass, without iteration. After sinking |
Chris Lattner | e4365b2 | 2003-12-19 07:22:45 +0000 | [diff] [blame] | 236 | // instructions, we perform another pass to hoist them out of the loop. |
Chris Lattner | 952eaee | 2002-09-29 21:46:09 +0000 | [diff] [blame] | 237 | // |
Dan Gohman | 03e896b | 2009-11-05 21:11:53 +0000 | [diff] [blame] | 238 | if (L->hasDedicatedExits()) |
| 239 | SinkRegion(DT->getNode(L->getHeader())); |
| 240 | if (Preheader) |
| 241 | HoistRegion(DT->getNode(L->getHeader())); |
Chris Lattner | e0e734e | 2002-05-10 22:44:58 +0000 | [diff] [blame] | 242 | |
Chris Lattner | 2e6e741 | 2003-02-24 03:52:32 +0000 | [diff] [blame] | 243 | // Now that all loop invariants have been removed from the loop, promote any |
Chris Lattner | e488064 | 2010-08-29 06:43:52 +0000 | [diff] [blame] | 244 | // memory references to scalars that we can. |
| 245 | if (!DisablePromotion && Preheader && L->hasDedicatedExits()) { |
| 246 | // Loop over all of the alias sets in the tracker object. |
| 247 | for (AliasSetTracker::iterator I = CurAST->begin(), E = CurAST->end(); |
| 248 | I != E; ++I) |
| 249 | PromoteAliasSet(*I); |
| 250 | } |
| 251 | |
Chris Lattner | e0e734e | 2002-05-10 22:44:58 +0000 | [diff] [blame] | 252 | // Clear out loops state information for the next iteration |
| 253 | CurLoop = 0; |
Chris Lattner | 99a5721 | 2002-09-26 19:40:25 +0000 | [diff] [blame] | 254 | Preheader = 0; |
Devang Patel | 54959d6 | 2007-03-07 04:41:30 +0000 | [diff] [blame] | 255 | |
Chris Lattner | 4282e32 | 2010-08-29 17:46:00 +0000 | [diff] [blame] | 256 | // If this loop is nested inside of another one, save the alias information |
| 257 | // for when we process the outer loop. |
| 258 | if (L->getParentLoop()) |
| 259 | LoopToAliasSetMap[L] = CurAST; |
| 260 | else |
| 261 | delete CurAST; |
Devang Patel | 54959d6 | 2007-03-07 04:41:30 +0000 | [diff] [blame] | 262 | return Changed; |
Chris Lattner | e0e734e | 2002-05-10 22:44:58 +0000 | [diff] [blame] | 263 | } |
| 264 | |
Chris Lattner | e4365b2 | 2003-12-19 07:22:45 +0000 | [diff] [blame] | 265 | /// SinkRegion - Walk the specified region of the CFG (defined by all blocks |
| 266 | /// dominated by the specified block, and that are in the current loop) in |
Owen Anderson | 3a2b58f | 2007-04-24 06:40:39 +0000 | [diff] [blame] | 267 | /// reverse depth first order w.r.t the DominatorTree. This allows us to visit |
Chris Lattner | e4365b2 | 2003-12-19 07:22:45 +0000 | [diff] [blame] | 268 | /// uses before definitions, allowing us to sink a loop body in one pass without |
| 269 | /// iteration. |
| 270 | /// |
Devang Patel | 2604242 | 2007-06-04 00:32:22 +0000 | [diff] [blame] | 271 | void LICM::SinkRegion(DomTreeNode *N) { |
Owen Anderson | 3a2b58f | 2007-04-24 06:40:39 +0000 | [diff] [blame] | 272 | assert(N != 0 && "Null dominator tree node?"); |
| 273 | BasicBlock *BB = N->getBlock(); |
Chris Lattner | e4365b2 | 2003-12-19 07:22:45 +0000 | [diff] [blame] | 274 | |
| 275 | // If this subregion is not in the top level loop at all, exit. |
| 276 | if (!CurLoop->contains(BB)) return; |
| 277 | |
Chris Lattner | 0de5cad | 2010-08-29 18:22:25 +0000 | [diff] [blame] | 278 | // We are processing blocks in reverse dfo, so process children first. |
Devang Patel | 2604242 | 2007-06-04 00:32:22 +0000 | [diff] [blame] | 279 | const std::vector<DomTreeNode*> &Children = N->getChildren(); |
Chris Lattner | e4365b2 | 2003-12-19 07:22:45 +0000 | [diff] [blame] | 280 | for (unsigned i = 0, e = Children.size(); i != e; ++i) |
| 281 | SinkRegion(Children[i]); |
| 282 | |
| 283 | // Only need to process the contents of this block if it is not part of a |
| 284 | // subloop (which would already have been processed). |
| 285 | if (inSubLoop(BB)) return; |
| 286 | |
Chris Lattner | a3df8a9 | 2003-12-19 08:18:16 +0000 | [diff] [blame] | 287 | for (BasicBlock::iterator II = BB->end(); II != BB->begin(); ) { |
| 288 | Instruction &I = *--II; |
Chris Lattner | 0de5cad | 2010-08-29 18:22:25 +0000 | [diff] [blame] | 289 | |
| 290 | // If the instruction is dead, we would try to sink it because it isn't used |
| 291 | // in the loop, instead, just delete it. |
| 292 | if (isInstructionTriviallyDead(&I)) { |
Chris Lattner | cb7f653 | 2010-08-29 18:42:23 +0000 | [diff] [blame] | 293 | DEBUG(dbgs() << "LICM deleting dead inst: " << I << '\n'); |
Chris Lattner | 0de5cad | 2010-08-29 18:22:25 +0000 | [diff] [blame] | 294 | ++II; |
| 295 | CurAST->deleteValue(&I); |
| 296 | I.eraseFromParent(); |
| 297 | Changed = true; |
| 298 | continue; |
| 299 | } |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 300 | |
Chris Lattner | e4365b2 | 2003-12-19 07:22:45 +0000 | [diff] [blame] | 301 | // Check to see if we can sink this instruction to the exit blocks |
| 302 | // of the loop. We can do this if the all users of the instruction are |
| 303 | // outside of the loop. In this case, it doesn't even matter if the |
| 304 | // operands of the instruction are loop invariant. |
| 305 | // |
Chris Lattner | 70ac2dc | 2005-03-25 00:22:36 +0000 | [diff] [blame] | 306 | if (isNotUsedInLoop(I) && canSinkOrHoistInst(I)) { |
Chris Lattner | a3df8a9 | 2003-12-19 08:18:16 +0000 | [diff] [blame] | 307 | ++II; |
Chris Lattner | e4365b2 | 2003-12-19 07:22:45 +0000 | [diff] [blame] | 308 | sink(I); |
Chris Lattner | a3df8a9 | 2003-12-19 08:18:16 +0000 | [diff] [blame] | 309 | } |
Chris Lattner | e4365b2 | 2003-12-19 07:22:45 +0000 | [diff] [blame] | 310 | } |
| 311 | } |
| 312 | |
Chris Lattner | 952eaee | 2002-09-29 21:46:09 +0000 | [diff] [blame] | 313 | /// HoistRegion - Walk the specified region of the CFG (defined by all blocks |
| 314 | /// dominated by the specified block, and that are in the current loop) in depth |
Owen Anderson | 3a2b58f | 2007-04-24 06:40:39 +0000 | [diff] [blame] | 315 | /// first order w.r.t the DominatorTree. This allows us to visit definitions |
Chris Lattner | 952eaee | 2002-09-29 21:46:09 +0000 | [diff] [blame] | 316 | /// before uses, allowing us to hoist a loop body in one pass without iteration. |
| 317 | /// |
Devang Patel | 2604242 | 2007-06-04 00:32:22 +0000 | [diff] [blame] | 318 | void LICM::HoistRegion(DomTreeNode *N) { |
Owen Anderson | 3a2b58f | 2007-04-24 06:40:39 +0000 | [diff] [blame] | 319 | assert(N != 0 && "Null dominator tree node?"); |
| 320 | BasicBlock *BB = N->getBlock(); |
Chris Lattner | 952eaee | 2002-09-29 21:46:09 +0000 | [diff] [blame] | 321 | |
Chris Lattner | b461373 | 2002-09-29 22:26:07 +0000 | [diff] [blame] | 322 | // If this subregion is not in the top level loop at all, exit. |
Chris Lattner | ed6dfc2 | 2003-12-09 19:32:44 +0000 | [diff] [blame] | 323 | if (!CurLoop->contains(BB)) return; |
Chris Lattner | 952eaee | 2002-09-29 21:46:09 +0000 | [diff] [blame] | 324 | |
Chris Lattner | a270651 | 2003-12-10 06:41:05 +0000 | [diff] [blame] | 325 | // Only need to process the contents of this block if it is not part of a |
| 326 | // subloop (which would already have been processed). |
Chris Lattner | ed6dfc2 | 2003-12-09 19:32:44 +0000 | [diff] [blame] | 327 | if (!inSubLoop(BB)) |
Chris Lattner | a270651 | 2003-12-10 06:41:05 +0000 | [diff] [blame] | 328 | for (BasicBlock::iterator II = BB->begin(), E = BB->end(); II != E; ) { |
| 329 | Instruction &I = *II++; |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 330 | |
Chris Lattner | 2ac6e23 | 2010-08-31 23:00:16 +0000 | [diff] [blame] | 331 | // Try constant folding this instruction. If all the operands are |
| 332 | // constants, it is technically hoistable, but it would be better to just |
| 333 | // fold it. |
| 334 | if (Constant *C = ConstantFoldInstruction(&I)) { |
| 335 | DEBUG(dbgs() << "LICM folding inst: " << I << " --> " << *C << '\n'); |
| 336 | CurAST->copyValue(&I, C); |
| 337 | CurAST->deleteValue(&I); |
| 338 | I.replaceAllUsesWith(C); |
| 339 | I.eraseFromParent(); |
| 340 | continue; |
| 341 | } |
| 342 | |
Chris Lattner | e4365b2 | 2003-12-19 07:22:45 +0000 | [diff] [blame] | 343 | // Try hoisting the instruction out to the preheader. We can only do this |
| 344 | // if all of the operands of the instruction are loop invariant and if it |
| 345 | // is safe to hoist the instruction. |
| 346 | // |
Chris Lattner | adc7991 | 2010-09-06 01:05:37 +0000 | [diff] [blame] | 347 | if (CurLoop->hasLoopInvariantOperands(&I) && canSinkOrHoistInst(I) && |
Chris Lattner | e4365b2 | 2003-12-19 07:22:45 +0000 | [diff] [blame] | 348 | isSafeToExecuteUnconditionally(I)) |
Chris Lattner | 3c80a51 | 2006-06-26 19:10:05 +0000 | [diff] [blame] | 349 | hoist(I); |
Chris Lattner | 2ac6e23 | 2010-08-31 23:00:16 +0000 | [diff] [blame] | 350 | } |
Chris Lattner | 952eaee | 2002-09-29 21:46:09 +0000 | [diff] [blame] | 351 | |
Devang Patel | 2604242 | 2007-06-04 00:32:22 +0000 | [diff] [blame] | 352 | const std::vector<DomTreeNode*> &Children = N->getChildren(); |
Chris Lattner | 952eaee | 2002-09-29 21:46:09 +0000 | [diff] [blame] | 353 | for (unsigned i = 0, e = Children.size(); i != e; ++i) |
Chris Lattner | 56b7ee2 | 2004-06-19 20:23:35 +0000 | [diff] [blame] | 354 | HoistRegion(Children[i]); |
Chris Lattner | 952eaee | 2002-09-29 21:46:09 +0000 | [diff] [blame] | 355 | } |
| 356 | |
Chris Lattner | a270651 | 2003-12-10 06:41:05 +0000 | [diff] [blame] | 357 | /// canSinkOrHoistInst - Return true if the hoister and sinker can handle this |
| 358 | /// instruction. |
| 359 | /// |
| 360 | bool LICM::canSinkOrHoistInst(Instruction &I) { |
Chris Lattner | ed6dfc2 | 2003-12-09 19:32:44 +0000 | [diff] [blame] | 361 | // Loads have extra constraints we have to verify before we can hoist them. |
| 362 | if (LoadInst *LI = dyn_cast<LoadInst>(&I)) { |
| 363 | if (LI->isVolatile()) |
| 364 | return false; // Don't hoist volatile loads! |
| 365 | |
Chris Lattner | 967948b | 2008-07-23 05:06:28 +0000 | [diff] [blame] | 366 | // Loads from constant memory are always safe to move, even if they end up |
| 367 | // in the same alias set as something that ends up being modified. |
Dan Gohman | dab249b | 2009-11-19 19:00:10 +0000 | [diff] [blame] | 368 | if (AA->pointsToConstantMemory(LI->getOperand(0))) |
Chris Lattner | 967948b | 2008-07-23 05:06:28 +0000 | [diff] [blame] | 369 | return true; |
| 370 | |
Chris Lattner | ed6dfc2 | 2003-12-09 19:32:44 +0000 | [diff] [blame] | 371 | // Don't hoist loads which have may-aliased stores in loop. |
Dan Gohman | 3da848b | 2010-10-19 22:54:46 +0000 | [diff] [blame] | 372 | uint64_t Size = 0; |
Chris Lattner | f3e1d69 | 2004-11-26 21:20:09 +0000 | [diff] [blame] | 373 | if (LI->getType()->isSized()) |
Dan Gohman | fc2a3ed | 2009-07-25 00:48:42 +0000 | [diff] [blame] | 374 | Size = AA->getTypeStoreSize(LI->getType()); |
Dan Gohman | a8702ea | 2010-10-18 20:44:50 +0000 | [diff] [blame] | 375 | return !pointerInvalidatedByLoop(LI->getOperand(0), Size, |
| 376 | LI->getMetadata(LLVMContext::MD_tbaa)); |
Chris Lattner | 118dd0c | 2004-03-15 04:11:30 +0000 | [diff] [blame] | 377 | } else if (CallInst *CI = dyn_cast<CallInst>(&I)) { |
| 378 | // Handle obvious cases efficiently. |
Duncan Sands | dff6710 | 2007-12-01 07:51:45 +0000 | [diff] [blame] | 379 | AliasAnalysis::ModRefBehavior Behavior = AA->getModRefBehavior(CI); |
| 380 | if (Behavior == AliasAnalysis::DoesNotAccessMemory) |
| 381 | return true; |
Dan Gohman | cd93f3b | 2010-11-09 19:58:21 +0000 | [diff] [blame] | 382 | if (AliasAnalysis::onlyReadsMemory(Behavior)) { |
Duncan Sands | dff6710 | 2007-12-01 07:51:45 +0000 | [diff] [blame] | 383 | // If this call only reads from memory and there are no writes to memory |
| 384 | // in the loop, we can hoist or sink the call as appropriate. |
| 385 | bool FoundMod = false; |
| 386 | for (AliasSetTracker::iterator I = CurAST->begin(), E = CurAST->end(); |
| 387 | I != E; ++I) { |
| 388 | AliasSet &AS = *I; |
| 389 | if (!AS.isForwardingAliasSet() && AS.isMod()) { |
| 390 | FoundMod = true; |
| 391 | break; |
Chris Lattner | 118dd0c | 2004-03-15 04:11:30 +0000 | [diff] [blame] | 392 | } |
Chris Lattner | 118dd0c | 2004-03-15 04:11:30 +0000 | [diff] [blame] | 393 | } |
Duncan Sands | dff6710 | 2007-12-01 07:51:45 +0000 | [diff] [blame] | 394 | if (!FoundMod) return true; |
Chris Lattner | 118dd0c | 2004-03-15 04:11:30 +0000 | [diff] [blame] | 395 | } |
| 396 | |
| 397 | // FIXME: This should use mod/ref information to see if we can hoist or sink |
| 398 | // the call. |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 399 | |
Chris Lattner | 118dd0c | 2004-03-15 04:11:30 +0000 | [diff] [blame] | 400 | return false; |
Chris Lattner | ed6dfc2 | 2003-12-09 19:32:44 +0000 | [diff] [blame] | 401 | } |
| 402 | |
Reid Spencer | 3da59db | 2006-11-27 01:05:10 +0000 | [diff] [blame] | 403 | // Otherwise these instructions are hoistable/sinkable |
Reid Spencer | 832254e | 2007-02-02 02:16:23 +0000 | [diff] [blame] | 404 | return isa<BinaryOperator>(I) || isa<CastInst>(I) || |
Dan Gohman | d8af90c | 2007-06-05 16:05:55 +0000 | [diff] [blame] | 405 | isa<SelectInst>(I) || isa<GetElementPtrInst>(I) || isa<CmpInst>(I) || |
| 406 | isa<InsertElementInst>(I) || isa<ExtractElementInst>(I) || |
| 407 | isa<ShuffleVectorInst>(I); |
Chris Lattner | a270651 | 2003-12-10 06:41:05 +0000 | [diff] [blame] | 408 | } |
| 409 | |
| 410 | /// isNotUsedInLoop - Return true if the only users of this instruction are |
| 411 | /// outside of the loop. If this is true, we can sink the instruction to the |
| 412 | /// exit blocks of the loop. |
| 413 | /// |
| 414 | bool LICM::isNotUsedInLoop(Instruction &I) { |
Chris Lattner | ea9403f | 2003-12-11 22:23:32 +0000 | [diff] [blame] | 415 | for (Value::use_iterator UI = I.use_begin(), E = I.use_end(); UI != E; ++UI) { |
| 416 | Instruction *User = cast<Instruction>(*UI); |
| 417 | if (PHINode *PN = dyn_cast<PHINode>(User)) { |
| 418 | // PHI node uses occur in predecessor blocks! |
| 419 | for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) |
| 420 | if (PN->getIncomingValue(i) == &I) |
| 421 | if (CurLoop->contains(PN->getIncomingBlock(i))) |
| 422 | return false; |
Dan Gohman | 92329c7 | 2009-12-18 01:24:09 +0000 | [diff] [blame] | 423 | } else if (CurLoop->contains(User)) { |
Chris Lattner | a270651 | 2003-12-10 06:41:05 +0000 | [diff] [blame] | 424 | return false; |
Chris Lattner | ea9403f | 2003-12-11 22:23:32 +0000 | [diff] [blame] | 425 | } |
| 426 | } |
Chris Lattner | a270651 | 2003-12-10 06:41:05 +0000 | [diff] [blame] | 427 | return true; |
| 428 | } |
| 429 | |
| 430 | |
Chris Lattner | a270651 | 2003-12-10 06:41:05 +0000 | [diff] [blame] | 431 | /// sink - When an instruction is found to only be used outside of the loop, |
Chris Lattner | a3df8a9 | 2003-12-19 08:18:16 +0000 | [diff] [blame] | 432 | /// this function moves it to the exit blocks and patches up SSA form as needed. |
| 433 | /// This method is guaranteed to remove the original instruction from its |
| 434 | /// position, and may either delete it or move it to outside of the loop. |
Chris Lattner | a270651 | 2003-12-10 06:41:05 +0000 | [diff] [blame] | 435 | /// |
| 436 | void LICM::sink(Instruction &I) { |
Nick Lewycky | 39a3831 | 2010-07-30 20:27:01 +0000 | [diff] [blame] | 437 | DEBUG(dbgs() << "LICM sinking instruction: " << I << "\n"); |
Chris Lattner | a270651 | 2003-12-10 06:41:05 +0000 | [diff] [blame] | 438 | |
Devang Patel | b7211a2 | 2007-08-21 00:31:24 +0000 | [diff] [blame] | 439 | SmallVector<BasicBlock*, 8> ExitBlocks; |
Chris Lattner | d7bc19d | 2010-08-29 04:28:20 +0000 | [diff] [blame] | 440 | CurLoop->getUniqueExitBlocks(ExitBlocks); |
Chris Lattner | df45bd3 | 2003-12-10 20:43:29 +0000 | [diff] [blame] | 441 | |
| 442 | if (isa<LoadInst>(I)) ++NumMovedLoads; |
Chris Lattner | 118dd0c | 2004-03-15 04:11:30 +0000 | [diff] [blame] | 443 | else if (isa<CallInst>(I)) ++NumMovedCalls; |
Chris Lattner | df45bd3 | 2003-12-10 20:43:29 +0000 | [diff] [blame] | 444 | ++NumSunk; |
| 445 | Changed = true; |
| 446 | |
Chris Lattner | a270651 | 2003-12-10 06:41:05 +0000 | [diff] [blame] | 447 | // The case where there is only a single exit node of this loop is common |
| 448 | // enough that we handle it as a special (more efficient) case. It is more |
| 449 | // efficient to handle because there are no PHI nodes that need to be placed. |
| 450 | if (ExitBlocks.size() == 1) { |
Chris Lattner | 83fc584 | 2011-01-02 18:45:39 +0000 | [diff] [blame^] | 451 | if (!DT->dominates(I.getParent(), ExitBlocks[0])) { |
Chris Lattner | a270651 | 2003-12-10 06:41:05 +0000 | [diff] [blame] | 452 | // Instruction is not used, just delete it. |
Chris Lattner | 2741c97 | 2004-05-23 21:20:19 +0000 | [diff] [blame] | 453 | CurAST->deleteValue(&I); |
Devang Patel | 1bf5ebc | 2009-10-13 21:41:20 +0000 | [diff] [blame] | 454 | // If I has users in unreachable blocks, eliminate. |
Devang Patel | 228ebd0 | 2009-10-13 22:56:32 +0000 | [diff] [blame] | 455 | // If I is not void type then replaceAllUsesWith undef. |
| 456 | // This allows ValueHandlers and custom metadata to adjust itself. |
Chris Lattner | a6a36f5 | 2010-08-29 04:55:06 +0000 | [diff] [blame] | 457 | if (!I.use_empty()) |
Devang Patel | 228ebd0 | 2009-10-13 22:56:32 +0000 | [diff] [blame] | 458 | I.replaceAllUsesWith(UndefValue::get(I.getType())); |
Chris Lattner | 3c80a51 | 2006-06-26 19:10:05 +0000 | [diff] [blame] | 459 | I.eraseFromParent(); |
Chris Lattner | a270651 | 2003-12-10 06:41:05 +0000 | [diff] [blame] | 460 | } else { |
| 461 | // Move the instruction to the start of the exit block, after any PHI |
| 462 | // nodes in it. |
Chris Lattner | d9a5dae | 2010-08-29 18:18:40 +0000 | [diff] [blame] | 463 | I.moveBefore(ExitBlocks[0]->getFirstNonPHI()); |
Chris Lattner | 4282e32 | 2010-08-29 17:46:00 +0000 | [diff] [blame] | 464 | |
| 465 | // This instruction is no longer in the AST for the current loop, because |
| 466 | // we just sunk it out of the loop. If we just sunk it into an outer |
| 467 | // loop, we will rediscover the operation when we process it. |
| 468 | CurAST->deleteValue(&I); |
Chris Lattner | a270651 | 2003-12-10 06:41:05 +0000 | [diff] [blame] | 469 | } |
Chris Lattner | d7bc19d | 2010-08-29 04:28:20 +0000 | [diff] [blame] | 470 | return; |
| 471 | } |
| 472 | |
| 473 | if (ExitBlocks.empty()) { |
Chris Lattner | a270651 | 2003-12-10 06:41:05 +0000 | [diff] [blame] | 474 | // The instruction is actually dead if there ARE NO exit blocks. |
Chris Lattner | 2741c97 | 2004-05-23 21:20:19 +0000 | [diff] [blame] | 475 | CurAST->deleteValue(&I); |
Devang Patel | 1bf5ebc | 2009-10-13 21:41:20 +0000 | [diff] [blame] | 476 | // If I has users in unreachable blocks, eliminate. |
Devang Patel | 228ebd0 | 2009-10-13 22:56:32 +0000 | [diff] [blame] | 477 | // If I is not void type then replaceAllUsesWith undef. |
| 478 | // This allows ValueHandlers and custom metadata to adjust itself. |
Chris Lattner | a6a36f5 | 2010-08-29 04:55:06 +0000 | [diff] [blame] | 479 | if (!I.use_empty()) |
Devang Patel | 228ebd0 | 2009-10-13 22:56:32 +0000 | [diff] [blame] | 480 | I.replaceAllUsesWith(UndefValue::get(I.getType())); |
Chris Lattner | 3c80a51 | 2006-06-26 19:10:05 +0000 | [diff] [blame] | 481 | I.eraseFromParent(); |
Chris Lattner | d7bc19d | 2010-08-29 04:28:20 +0000 | [diff] [blame] | 482 | return; |
| 483 | } |
| 484 | |
Chris Lattner | a6a36f5 | 2010-08-29 04:55:06 +0000 | [diff] [blame] | 485 | // Otherwise, if we have multiple exits, use the SSAUpdater to do all of the |
| 486 | // hard work of inserting PHI nodes as necessary. |
| 487 | SmallVector<PHINode*, 8> NewPHIs; |
| 488 | SSAUpdater SSA(&NewPHIs); |
Chris Lattner | d7bc19d | 2010-08-29 04:28:20 +0000 | [diff] [blame] | 489 | |
Chris Lattner | a6a36f5 | 2010-08-29 04:55:06 +0000 | [diff] [blame] | 490 | if (!I.use_empty()) |
Duncan Sands | fc6e29d | 2010-09-02 08:14:03 +0000 | [diff] [blame] | 491 | SSA.Initialize(I.getType(), I.getName()); |
Chris Lattner | a6a36f5 | 2010-08-29 04:55:06 +0000 | [diff] [blame] | 492 | |
| 493 | // Insert a copy of the instruction in each exit block of the loop that is |
| 494 | // dominated by the instruction. Each exit block is known to only be in the |
| 495 | // ExitBlocks list once. |
| 496 | BasicBlock *InstOrigBB = I.getParent(); |
Chris Lattner | d7bc19d | 2010-08-29 04:28:20 +0000 | [diff] [blame] | 497 | unsigned NumInserted = 0; |
Chris Lattner | a6a36f5 | 2010-08-29 04:55:06 +0000 | [diff] [blame] | 498 | |
Chris Lattner | d7bc19d | 2010-08-29 04:28:20 +0000 | [diff] [blame] | 499 | for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i) { |
| 500 | BasicBlock *ExitBlock = ExitBlocks[i]; |
Chris Lattner | a6a36f5 | 2010-08-29 04:55:06 +0000 | [diff] [blame] | 501 | |
Chris Lattner | 83fc584 | 2011-01-02 18:45:39 +0000 | [diff] [blame^] | 502 | if (!DT->dominates(InstOrigBB, ExitBlock)) |
Chris Lattner | d7bc19d | 2010-08-29 04:28:20 +0000 | [diff] [blame] | 503 | continue; |
| 504 | |
Chris Lattner | a6a36f5 | 2010-08-29 04:55:06 +0000 | [diff] [blame] | 505 | // Insert the code after the last PHI node. |
Chris Lattner | d7bc19d | 2010-08-29 04:28:20 +0000 | [diff] [blame] | 506 | BasicBlock::iterator InsertPt = ExitBlock->getFirstNonPHI(); |
Chris Lattner | a6a36f5 | 2010-08-29 04:55:06 +0000 | [diff] [blame] | 507 | |
Chris Lattner | d7bc19d | 2010-08-29 04:28:20 +0000 | [diff] [blame] | 508 | // If this is the first exit block processed, just move the original |
| 509 | // instruction, otherwise clone the original instruction and insert |
| 510 | // the copy. |
| 511 | Instruction *New; |
Chris Lattner | a6a36f5 | 2010-08-29 04:55:06 +0000 | [diff] [blame] | 512 | if (NumInserted++ == 0) { |
| 513 | I.moveBefore(InsertPt); |
Chris Lattner | d7bc19d | 2010-08-29 04:28:20 +0000 | [diff] [blame] | 514 | New = &I; |
| 515 | } else { |
| 516 | New = I.clone(); |
Chris Lattner | d7bc19d | 2010-08-29 04:28:20 +0000 | [diff] [blame] | 517 | if (!I.getName().empty()) |
| 518 | New->setName(I.getName()+".le"); |
| 519 | ExitBlock->getInstList().insert(InsertPt, New); |
Chris Lattner | eaa2430 | 2004-07-27 07:38:32 +0000 | [diff] [blame] | 520 | } |
Chris Lattner | d7bc19d | 2010-08-29 04:28:20 +0000 | [diff] [blame] | 521 | |
Chris Lattner | a6a36f5 | 2010-08-29 04:55:06 +0000 | [diff] [blame] | 522 | // Now that we have inserted the instruction, inform SSAUpdater. |
| 523 | if (!I.use_empty()) |
| 524 | SSA.AddAvailableValue(ExitBlock, New); |
Chris Lattner | d7bc19d | 2010-08-29 04:28:20 +0000 | [diff] [blame] | 525 | } |
Chris Lattner | a6a36f5 | 2010-08-29 04:55:06 +0000 | [diff] [blame] | 526 | |
Chris Lattner | d7bc19d | 2010-08-29 04:28:20 +0000 | [diff] [blame] | 527 | // If the instruction doesn't dominate any exit blocks, it must be dead. |
| 528 | if (NumInserted == 0) { |
| 529 | CurAST->deleteValue(&I); |
Chris Lattner | a6a36f5 | 2010-08-29 04:55:06 +0000 | [diff] [blame] | 530 | if (!I.use_empty()) |
| 531 | I.replaceAllUsesWith(UndefValue::get(I.getType())); |
Chris Lattner | d7bc19d | 2010-08-29 04:28:20 +0000 | [diff] [blame] | 532 | I.eraseFromParent(); |
Chris Lattner | a6a36f5 | 2010-08-29 04:55:06 +0000 | [diff] [blame] | 533 | return; |
Chris Lattner | d7bc19d | 2010-08-29 04:28:20 +0000 | [diff] [blame] | 534 | } |
Chris Lattner | a6a36f5 | 2010-08-29 04:55:06 +0000 | [diff] [blame] | 535 | |
| 536 | // Next, rewrite uses of the instruction, inserting PHI nodes as needed. |
| 537 | for (Value::use_iterator UI = I.use_begin(), UE = I.use_end(); UI != UE; ) { |
| 538 | // Grab the use before incrementing the iterator. |
| 539 | Use &U = UI.getUse(); |
| 540 | // Increment the iterator before removing the use from the list. |
| 541 | ++UI; |
| 542 | SSA.RewriteUseAfterInsertions(U); |
Chris Lattner | a270651 | 2003-12-10 06:41:05 +0000 | [diff] [blame] | 543 | } |
Chris Lattner | a6a36f5 | 2010-08-29 04:55:06 +0000 | [diff] [blame] | 544 | |
| 545 | // Update CurAST for NewPHIs if I had pointer type. |
| 546 | if (I.getType()->isPointerTy()) |
| 547 | for (unsigned i = 0, e = NewPHIs.size(); i != e; ++i) |
Chris Lattner | 9c28201 | 2010-09-02 22:19:10 +0000 | [diff] [blame] | 548 | CurAST->copyValue(&I, NewPHIs[i]); |
Chris Lattner | 9891750 | 2010-08-29 18:00:00 +0000 | [diff] [blame] | 549 | |
| 550 | // Finally, remove the instruction from CurAST. It is no longer in the loop. |
| 551 | CurAST->deleteValue(&I); |
Chris Lattner | a270651 | 2003-12-10 06:41:05 +0000 | [diff] [blame] | 552 | } |
Chris Lattner | 952eaee | 2002-09-29 21:46:09 +0000 | [diff] [blame] | 553 | |
Chris Lattner | 9417059 | 2002-09-26 16:52:07 +0000 | [diff] [blame] | 554 | /// hoist - When an instruction is found to only use loop invariant operands |
| 555 | /// that is safe to hoist, this instruction is called to do the dirty work. |
| 556 | /// |
Chris Lattner | a270651 | 2003-12-10 06:41:05 +0000 | [diff] [blame] | 557 | void LICM::hoist(Instruction &I) { |
David Greene | f158269 | 2010-01-05 01:27:30 +0000 | [diff] [blame] | 558 | DEBUG(dbgs() << "LICM hoisting to " << Preheader->getName() << ": " |
Evan Cheng | 67d1d1f | 2009-10-12 22:25:23 +0000 | [diff] [blame] | 559 | << I << "\n"); |
Chris Lattner | ed6dfc2 | 2003-12-09 19:32:44 +0000 | [diff] [blame] | 560 | |
Chris Lattner | d9a5dae | 2010-08-29 18:18:40 +0000 | [diff] [blame] | 561 | // Move the new node to the Preheader, before its terminator. |
| 562 | I.moveBefore(Preheader->getTerminator()); |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 563 | |
Chris Lattner | a270651 | 2003-12-10 06:41:05 +0000 | [diff] [blame] | 564 | if (isa<LoadInst>(I)) ++NumMovedLoads; |
Chris Lattner | 118dd0c | 2004-03-15 04:11:30 +0000 | [diff] [blame] | 565 | else if (isa<CallInst>(I)) ++NumMovedCalls; |
Chris Lattner | 9646e6b | 2002-09-26 16:38:03 +0000 | [diff] [blame] | 566 | ++NumHoisted; |
Chris Lattner | e0e734e | 2002-05-10 22:44:58 +0000 | [diff] [blame] | 567 | Changed = true; |
| 568 | } |
| 569 | |
Chris Lattner | a270651 | 2003-12-10 06:41:05 +0000 | [diff] [blame] | 570 | /// isSafeToExecuteUnconditionally - Only sink or hoist an instruction if it is |
| 571 | /// not a trapping instruction or if it is a trapping instruction and is |
| 572 | /// guaranteed to execute. |
Tanya Lattner | 9966c03 | 2003-08-05 18:45:46 +0000 | [diff] [blame] | 573 | /// |
Chris Lattner | a270651 | 2003-12-10 06:41:05 +0000 | [diff] [blame] | 574 | bool LICM::isSafeToExecuteUnconditionally(Instruction &Inst) { |
Chris Lattner | 92094b4 | 2003-12-09 17:18:00 +0000 | [diff] [blame] | 575 | // If it is not a trapping instruction, it is always safe to hoist. |
Eli Friedman | 0b79a77 | 2009-07-17 04:28:42 +0000 | [diff] [blame] | 576 | if (Inst.isSafeToSpeculativelyExecute()) |
| 577 | return true; |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 578 | |
Chris Lattner | 92094b4 | 2003-12-09 17:18:00 +0000 | [diff] [blame] | 579 | // Otherwise we have to check to make sure that the instruction dominates all |
| 580 | // of the exit blocks. If it doesn't, then there is a path out of the loop |
| 581 | // which does not execute this instruction, so we can't hoist it. |
Tanya Lattner | 9966c03 | 2003-08-05 18:45:46 +0000 | [diff] [blame] | 582 | |
Chris Lattner | 92094b4 | 2003-12-09 17:18:00 +0000 | [diff] [blame] | 583 | // If the instruction is in the header block for the loop (which is very |
| 584 | // common), it is always guaranteed to dominate the exit blocks. Since this |
| 585 | // is a common case, and can save some work, check it now. |
Chris Lattner | a270651 | 2003-12-10 06:41:05 +0000 | [diff] [blame] | 586 | if (Inst.getParent() == CurLoop->getHeader()) |
Chris Lattner | 92094b4 | 2003-12-09 17:18:00 +0000 | [diff] [blame] | 587 | return true; |
Tanya Lattner | 9966c03 | 2003-08-05 18:45:46 +0000 | [diff] [blame] | 588 | |
Chris Lattner | 92094b4 | 2003-12-09 17:18:00 +0000 | [diff] [blame] | 589 | // Get the exit blocks for the current loop. |
Devang Patel | b7211a2 | 2007-08-21 00:31:24 +0000 | [diff] [blame] | 590 | SmallVector<BasicBlock*, 8> ExitBlocks; |
Chris Lattner | 5fa802f | 2004-04-18 22:15:13 +0000 | [diff] [blame] | 591 | CurLoop->getExitBlocks(ExitBlocks); |
Chris Lattner | 92094b4 | 2003-12-09 17:18:00 +0000 | [diff] [blame] | 592 | |
Chris Lattner | 83fc584 | 2011-01-02 18:45:39 +0000 | [diff] [blame^] | 593 | // Verify that the block dominates each of the exit blocks of the loop. |
Chris Lattner | a270651 | 2003-12-10 06:41:05 +0000 | [diff] [blame] | 594 | for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i) |
Chris Lattner | 83fc584 | 2011-01-02 18:45:39 +0000 | [diff] [blame^] | 595 | if (!DT->dominates(Inst.getParent(), ExitBlocks[i])) |
Chris Lattner | a270651 | 2003-12-10 06:41:05 +0000 | [diff] [blame] | 596 | return false; |
Misha Brukman | fd93908 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 597 | |
Tanya Lattner | 9966c03 | 2003-08-05 18:45:46 +0000 | [diff] [blame] | 598 | return true; |
| 599 | } |
| 600 | |
Chris Lattner | e488064 | 2010-08-29 06:43:52 +0000 | [diff] [blame] | 601 | /// PromoteAliasSet - Try to promote memory values to scalars by sinking |
Chris Lattner | 2e6e741 | 2003-02-24 03:52:32 +0000 | [diff] [blame] | 602 | /// stores out of the loop and moving loads to before the loop. We do this by |
| 603 | /// looping over the stores in the loop, looking for stores to Must pointers |
Chris Lattner | e488064 | 2010-08-29 06:43:52 +0000 | [diff] [blame] | 604 | /// which are loop invariant. |
Chris Lattner | 2e6e741 | 2003-02-24 03:52:32 +0000 | [diff] [blame] | 605 | /// |
Chris Lattner | e488064 | 2010-08-29 06:43:52 +0000 | [diff] [blame] | 606 | void LICM::PromoteAliasSet(AliasSet &AS) { |
| 607 | // We can promote this alias set if it has a store, if it is a "Must" alias |
| 608 | // set, if the pointer is loop invariant, and if we are not eliminating any |
| 609 | // volatile loads or stores. |
| 610 | if (AS.isForwardingAliasSet() || !AS.isMod() || !AS.isMustAlias() || |
| 611 | AS.isVolatile() || !CurLoop->isLoopInvariant(AS.begin()->getValue())) |
| 612 | return; |
| 613 | |
| 614 | assert(!AS.empty() && |
| 615 | "Must alias set should have at least one pointer element in it!"); |
| 616 | Value *SomePtr = AS.begin()->getValue(); |
Chris Lattner | 2e6e741 | 2003-02-24 03:52:32 +0000 | [diff] [blame] | 617 | |
Chris Lattner | e488064 | 2010-08-29 06:43:52 +0000 | [diff] [blame] | 618 | // It isn't safe to promote a load/store from the loop if the load/store is |
| 619 | // conditional. For example, turning: |
Chris Lattner | 2e6e741 | 2003-02-24 03:52:32 +0000 | [diff] [blame] | 620 | // |
Chris Lattner | e488064 | 2010-08-29 06:43:52 +0000 | [diff] [blame] | 621 | // for () { if (c) *P += 1; } |
Chris Lattner | 2e6e741 | 2003-02-24 03:52:32 +0000 | [diff] [blame] | 622 | // |
Chris Lattner | e488064 | 2010-08-29 06:43:52 +0000 | [diff] [blame] | 623 | // into: |
| 624 | // |
| 625 | // tmp = *P; for () { if (c) tmp +=1; } *P = tmp; |
| 626 | // |
| 627 | // is not safe, because *P may only be valid to access if 'c' is true. |
| 628 | // |
| 629 | // It is safe to promote P if all uses are direct load/stores and if at |
| 630 | // least one is guaranteed to be executed. |
| 631 | bool GuaranteedToExecute = false; |
| 632 | |
| 633 | SmallVector<Instruction*, 64> LoopUses; |
| 634 | SmallPtrSet<Value*, 4> PointerMustAliases; |
Chris Lattner | 2e6e741 | 2003-02-24 03:52:32 +0000 | [diff] [blame] | 635 | |
Chris Lattner | e488064 | 2010-08-29 06:43:52 +0000 | [diff] [blame] | 636 | // Check that all of the pointers in the alias set have the same type. We |
| 637 | // cannot (yet) promote a memory location that is loaded and stored in |
| 638 | // different sizes. |
| 639 | for (AliasSet::iterator ASI = AS.begin(), E = AS.end(); ASI != E; ++ASI) { |
| 640 | Value *ASIV = ASI->getValue(); |
| 641 | PointerMustAliases.insert(ASIV); |
Chris Lattner | 29d9293 | 2008-05-22 00:53:38 +0000 | [diff] [blame] | 642 | |
Chris Lattner | 29d9293 | 2008-05-22 00:53:38 +0000 | [diff] [blame] | 643 | // Check that all of the pointers in the alias set have the same type. We |
| 644 | // cannot (yet) promote a memory location that is loaded and stored in |
| 645 | // different sizes. |
Chris Lattner | e488064 | 2010-08-29 06:43:52 +0000 | [diff] [blame] | 646 | if (SomePtr->getType() != ASIV->getType()) |
| 647 | return; |
| 648 | |
| 649 | for (Value::use_iterator UI = ASIV->use_begin(), UE = ASIV->use_end(); |
Chris Lattner | 19d9d43 | 2008-05-22 03:22:42 +0000 | [diff] [blame] | 650 | UI != UE; ++UI) { |
Chris Lattner | e488064 | 2010-08-29 06:43:52 +0000 | [diff] [blame] | 651 | // Ignore instructions that are outside the loop. |
Chris Lattner | 29d9293 | 2008-05-22 00:53:38 +0000 | [diff] [blame] | 652 | Instruction *Use = dyn_cast<Instruction>(*UI); |
Dan Gohman | 92329c7 | 2009-12-18 01:24:09 +0000 | [diff] [blame] | 653 | if (!Use || !CurLoop->contains(Use)) |
Chris Lattner | 29d9293 | 2008-05-22 00:53:38 +0000 | [diff] [blame] | 654 | continue; |
Chris Lattner | e488064 | 2010-08-29 06:43:52 +0000 | [diff] [blame] | 655 | |
| 656 | // If there is an non-load/store instruction in the loop, we can't promote |
| 657 | // it. |
| 658 | if (isa<LoadInst>(Use)) |
| 659 | assert(!cast<LoadInst>(Use)->isVolatile() && "AST broken"); |
Chris Lattner | 0cccd76 | 2010-09-06 05:11:24 +0000 | [diff] [blame] | 660 | else if (isa<StoreInst>(Use)) { |
Chris Lattner | 1dec0d2 | 2010-12-19 05:57:25 +0000 | [diff] [blame] | 661 | // Stores *of* the pointer are not interesting, only stores *to* the |
| 662 | // pointer. |
| 663 | if (Use->getOperand(1) != ASIV) |
| 664 | continue; |
Chris Lattner | 1c0af0e | 2010-12-19 05:51:54 +0000 | [diff] [blame] | 665 | assert(!cast<StoreInst>(Use)->isVolatile() && "AST broken"); |
Chris Lattner | 0cccd76 | 2010-09-06 05:11:24 +0000 | [diff] [blame] | 666 | } else |
Chris Lattner | e488064 | 2010-08-29 06:43:52 +0000 | [diff] [blame] | 667 | return; // Not a load or store. |
Chris Lattner | 19d9d43 | 2008-05-22 03:22:42 +0000 | [diff] [blame] | 668 | |
| 669 | if (!GuaranteedToExecute) |
| 670 | GuaranteedToExecute = isSafeToExecuteUnconditionally(*Use); |
Chris Lattner | e488064 | 2010-08-29 06:43:52 +0000 | [diff] [blame] | 671 | |
| 672 | LoopUses.push_back(Use); |
| 673 | } |
| 674 | } |
| 675 | |
| 676 | // If there isn't a guaranteed-to-execute instruction, we can't promote. |
| 677 | if (!GuaranteedToExecute) |
| 678 | return; |
| 679 | |
| 680 | // Otherwise, this is safe to promote, lets do it! |
| 681 | DEBUG(dbgs() << "LICM: Promoting value stored to in loop: " <<*SomePtr<<'\n'); |
| 682 | Changed = true; |
| 683 | ++NumPromoted; |
| 684 | |
| 685 | // We use the SSAUpdater interface to insert phi nodes as required. |
| 686 | SmallVector<PHINode*, 16> NewPHIs; |
| 687 | SSAUpdater SSA(&NewPHIs); |
| 688 | |
| 689 | // It wants to know some value of the same type as what we'll be inserting. |
| 690 | Value *SomeValue; |
| 691 | if (isa<LoadInst>(LoopUses[0])) |
| 692 | SomeValue = LoopUses[0]; |
| 693 | else |
| 694 | SomeValue = cast<StoreInst>(LoopUses[0])->getOperand(0); |
Duncan Sands | fc6e29d | 2010-09-02 08:14:03 +0000 | [diff] [blame] | 695 | SSA.Initialize(SomeValue->getType(), SomeValue->getName()); |
Chris Lattner | e488064 | 2010-08-29 06:43:52 +0000 | [diff] [blame] | 696 | |
| 697 | // First step: bucket up uses of the pointers by the block they occur in. |
| 698 | // This is important because we have to handle multiple defs/uses in a block |
| 699 | // ourselves: SSAUpdater is purely for cross-block references. |
| 700 | // FIXME: Want a TinyVector<Instruction*> since there is usually 0/1 element. |
| 701 | DenseMap<BasicBlock*, std::vector<Instruction*> > UsesByBlock; |
| 702 | for (unsigned i = 0, e = LoopUses.size(); i != e; ++i) { |
| 703 | Instruction *User = LoopUses[i]; |
| 704 | UsesByBlock[User->getParent()].push_back(User); |
| 705 | } |
| 706 | |
| 707 | // Okay, now we can iterate over all the blocks in the loop with uses, |
| 708 | // processing them. Keep track of which loads are loading a live-in value. |
| 709 | SmallVector<LoadInst*, 32> LiveInLoads; |
Chris Lattner | 4699964 | 2010-09-04 00:12:30 +0000 | [diff] [blame] | 710 | DenseMap<Value*, Value*> ReplacedLoads; |
Chris Lattner | e488064 | 2010-08-29 06:43:52 +0000 | [diff] [blame] | 711 | |
| 712 | for (unsigned LoopUse = 0, e = LoopUses.size(); LoopUse != e; ++LoopUse) { |
| 713 | Instruction *User = LoopUses[LoopUse]; |
| 714 | std::vector<Instruction*> &BlockUses = UsesByBlock[User->getParent()]; |
| 715 | |
| 716 | // If this block has already been processed, ignore this repeat use. |
| 717 | if (BlockUses.empty()) continue; |
| 718 | |
| 719 | // Okay, this is the first use in the block. If this block just has a |
| 720 | // single user in it, we can rewrite it trivially. |
| 721 | if (BlockUses.size() == 1) { |
| 722 | // If it is a store, it is a trivial def of the value in the block. |
| 723 | if (isa<StoreInst>(User)) { |
| 724 | SSA.AddAvailableValue(User->getParent(), |
| 725 | cast<StoreInst>(User)->getOperand(0)); |
| 726 | } else { |
| 727 | // Otherwise it is a load, queue it to rewrite as a live-in load. |
| 728 | LiveInLoads.push_back(cast<LoadInst>(User)); |
| 729 | } |
| 730 | BlockUses.clear(); |
| 731 | continue; |
| 732 | } |
| 733 | |
| 734 | // Otherwise, check to see if this block is all loads. If so, we can queue |
| 735 | // them all as live in loads. |
| 736 | bool HasStore = false; |
| 737 | for (unsigned i = 0, e = BlockUses.size(); i != e; ++i) { |
| 738 | if (isa<StoreInst>(BlockUses[i])) { |
| 739 | HasStore = true; |
| 740 | break; |
| 741 | } |
| 742 | } |
| 743 | |
| 744 | if (!HasStore) { |
| 745 | for (unsigned i = 0, e = BlockUses.size(); i != e; ++i) |
| 746 | LiveInLoads.push_back(cast<LoadInst>(BlockUses[i])); |
| 747 | BlockUses.clear(); |
| 748 | continue; |
Chris Lattner | 29d9293 | 2008-05-22 00:53:38 +0000 | [diff] [blame] | 749 | } |
| 750 | |
Chris Lattner | e488064 | 2010-08-29 06:43:52 +0000 | [diff] [blame] | 751 | // Otherwise, we have mixed loads and stores (or just a bunch of stores). |
| 752 | // Since SSAUpdater is purely for cross-block values, we need to determine |
| 753 | // the order of these instructions in the block. If the first use in the |
| 754 | // block is a load, then it uses the live in value. The last store defines |
| 755 | // the live out value. We handle this by doing a linear scan of the block. |
| 756 | BasicBlock *BB = User->getParent(); |
| 757 | Value *StoredValue = 0; |
| 758 | for (BasicBlock::iterator II = BB->begin(), E = BB->end(); II != E; ++II) { |
| 759 | if (LoadInst *L = dyn_cast<LoadInst>(II)) { |
Chris Lattner | 4699964 | 2010-09-04 00:12:30 +0000 | [diff] [blame] | 760 | // If this is a load from an unrelated pointer, ignore it. |
Chris Lattner | e488064 | 2010-08-29 06:43:52 +0000 | [diff] [blame] | 761 | if (!PointerMustAliases.count(L->getOperand(0))) continue; |
| 762 | |
| 763 | // If we haven't seen a store yet, this is a live in use, otherwise |
| 764 | // use the stored value. |
Chris Lattner | 4699964 | 2010-09-04 00:12:30 +0000 | [diff] [blame] | 765 | if (StoredValue) { |
Chris Lattner | e488064 | 2010-08-29 06:43:52 +0000 | [diff] [blame] | 766 | L->replaceAllUsesWith(StoredValue); |
Chris Lattner | 4699964 | 2010-09-04 00:12:30 +0000 | [diff] [blame] | 767 | ReplacedLoads[L] = StoredValue; |
| 768 | } else { |
Chris Lattner | e488064 | 2010-08-29 06:43:52 +0000 | [diff] [blame] | 769 | LiveInLoads.push_back(L); |
Chris Lattner | 4699964 | 2010-09-04 00:12:30 +0000 | [diff] [blame] | 770 | } |
Chris Lattner | e488064 | 2010-08-29 06:43:52 +0000 | [diff] [blame] | 771 | continue; |
| 772 | } |
| 773 | |
| 774 | if (StoreInst *S = dyn_cast<StoreInst>(II)) { |
Chris Lattner | 4455608 | 2010-08-29 19:54:28 +0000 | [diff] [blame] | 775 | // If this is a store to an unrelated pointer, ignore it. |
Chris Lattner | e488064 | 2010-08-29 06:43:52 +0000 | [diff] [blame] | 776 | if (!PointerMustAliases.count(S->getOperand(1))) continue; |
| 777 | |
| 778 | // Remember that this is the active value in the block. |
| 779 | StoredValue = S->getOperand(0); |
| 780 | } |
| 781 | } |
Chris Lattner | 29d9293 | 2008-05-22 00:53:38 +0000 | [diff] [blame] | 782 | |
Chris Lattner | e488064 | 2010-08-29 06:43:52 +0000 | [diff] [blame] | 783 | // The last stored value that happened is the live-out for the block. |
| 784 | assert(StoredValue && "Already checked that there is a store in block"); |
| 785 | SSA.AddAvailableValue(BB, StoredValue); |
| 786 | BlockUses.clear(); |
Chris Lattner | 2e6e741 | 2003-02-24 03:52:32 +0000 | [diff] [blame] | 787 | } |
Chris Lattner | e488064 | 2010-08-29 06:43:52 +0000 | [diff] [blame] | 788 | |
| 789 | // Now that all the intra-loop values are classified, set up the preheader. |
| 790 | // It gets a load of the pointer we're promoting, and it is the live-out value |
| 791 | // from the preheader. |
| 792 | LoadInst *PreheaderLoad = new LoadInst(SomePtr,SomePtr->getName()+".promoted", |
| 793 | Preheader->getTerminator()); |
| 794 | SSA.AddAvailableValue(Preheader, PreheaderLoad); |
| 795 | |
| 796 | // Now that the preheader is good to go, set up the exit blocks. Each exit |
| 797 | // block gets a store of the live-out values that feed them. Since we've |
| 798 | // already told the SSA updater about the defs in the loop and the preheader |
| 799 | // definition, it is all set and we can start using it. |
| 800 | SmallVector<BasicBlock*, 8> ExitBlocks; |
| 801 | CurLoop->getUniqueExitBlocks(ExitBlocks); |
| 802 | for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i) { |
| 803 | BasicBlock *ExitBlock = ExitBlocks[i]; |
| 804 | Value *LiveInValue = SSA.GetValueInMiddleOfBlock(ExitBlock); |
| 805 | Instruction *InsertPos = ExitBlock->getFirstNonPHI(); |
| 806 | new StoreInst(LiveInValue, SomePtr, InsertPos); |
| 807 | } |
| 808 | |
| 809 | // Okay, now we rewrite all loads that use live-in values in the loop, |
| 810 | // inserting PHI nodes as necessary. |
| 811 | for (unsigned i = 0, e = LiveInLoads.size(); i != e; ++i) { |
| 812 | LoadInst *ALoad = LiveInLoads[i]; |
Chris Lattner | 9c28201 | 2010-09-02 22:19:10 +0000 | [diff] [blame] | 813 | Value *NewVal = SSA.GetValueInMiddleOfBlock(ALoad->getParent()); |
| 814 | ALoad->replaceAllUsesWith(NewVal); |
| 815 | CurAST->copyValue(ALoad, NewVal); |
Chris Lattner | 4699964 | 2010-09-04 00:12:30 +0000 | [diff] [blame] | 816 | ReplacedLoads[ALoad] = NewVal; |
Chris Lattner | e488064 | 2010-08-29 06:43:52 +0000 | [diff] [blame] | 817 | } |
| 818 | |
Chris Lattner | 7abdb22 | 2010-09-14 00:19:00 +0000 | [diff] [blame] | 819 | // If the preheader load is itself a pointer, we need to tell alias analysis |
| 820 | // about the new pointer we created in the preheader block and about any PHI |
| 821 | // nodes that just got inserted. |
| 822 | if (PreheaderLoad->getType()->isPointerTy()) { |
| 823 | // Copy any value stored to or loaded from a must-alias of the pointer. |
| 824 | CurAST->copyValue(SomeValue, PreheaderLoad); |
| 825 | |
| 826 | for (unsigned i = 0, e = NewPHIs.size(); i != e; ++i) |
| 827 | CurAST->copyValue(SomeValue, NewPHIs[i]); |
| 828 | } |
| 829 | |
Chris Lattner | e488064 | 2010-08-29 06:43:52 +0000 | [diff] [blame] | 830 | // Now that everything is rewritten, delete the old instructions from the body |
| 831 | // of the loop. They should all be dead now. |
| 832 | for (unsigned i = 0, e = LoopUses.size(); i != e; ++i) { |
| 833 | Instruction *User = LoopUses[i]; |
Chris Lattner | 4699964 | 2010-09-04 00:12:30 +0000 | [diff] [blame] | 834 | |
| 835 | // If this is a load that still has uses, then the load must have been added |
| 836 | // as a live value in the SSAUpdate data structure for a block (e.g. because |
| 837 | // the loaded value was stored later). In this case, we need to recursively |
| 838 | // propagate the updates until we get to the real value. |
| 839 | if (!User->use_empty()) { |
| 840 | Value *NewVal = ReplacedLoads[User]; |
| 841 | assert(NewVal && "not a replaced load?"); |
| 842 | |
| 843 | // Propagate down to the ultimate replacee. The intermediately loads |
| 844 | // could theoretically already have been deleted, so we don't want to |
| 845 | // dereference the Value*'s. |
| 846 | DenseMap<Value*, Value*>::iterator RLI = ReplacedLoads.find(NewVal); |
| 847 | while (RLI != ReplacedLoads.end()) { |
| 848 | NewVal = RLI->second; |
| 849 | RLI = ReplacedLoads.find(NewVal); |
| 850 | } |
| 851 | |
| 852 | User->replaceAllUsesWith(NewVal); |
| 853 | CurAST->copyValue(User, NewVal); |
| 854 | } |
| 855 | |
Chris Lattner | e488064 | 2010-08-29 06:43:52 +0000 | [diff] [blame] | 856 | CurAST->deleteValue(User); |
| 857 | User->eraseFromParent(); |
| 858 | } |
| 859 | |
Chris Lattner | e488064 | 2010-08-29 06:43:52 +0000 | [diff] [blame] | 860 | // fwew, we're done! |
Chris Lattner | f5e84aa | 2002-08-22 21:39:55 +0000 | [diff] [blame] | 861 | } |
Devang Patel | 91d22c8 | 2007-07-31 08:01:41 +0000 | [diff] [blame] | 862 | |
Chris Lattner | e488064 | 2010-08-29 06:43:52 +0000 | [diff] [blame] | 863 | |
Devang Patel | 91d22c8 | 2007-07-31 08:01:41 +0000 | [diff] [blame] | 864 | /// cloneBasicBlockAnalysis - Simple Analysis hook. Clone alias set info. |
| 865 | void LICM::cloneBasicBlockAnalysis(BasicBlock *From, BasicBlock *To, Loop *L) { |
Chris Lattner | 4282e32 | 2010-08-29 17:46:00 +0000 | [diff] [blame] | 866 | AliasSetTracker *AST = LoopToAliasSetMap.lookup(L); |
Devang Patel | 91d22c8 | 2007-07-31 08:01:41 +0000 | [diff] [blame] | 867 | if (!AST) |
| 868 | return; |
| 869 | |
| 870 | AST->copyValue(From, To); |
| 871 | } |
| 872 | |
| 873 | /// deleteAnalysisValue - Simple Analysis hook. Delete value V from alias |
| 874 | /// set. |
| 875 | void LICM::deleteAnalysisValue(Value *V, Loop *L) { |
Chris Lattner | 4282e32 | 2010-08-29 17:46:00 +0000 | [diff] [blame] | 876 | AliasSetTracker *AST = LoopToAliasSetMap.lookup(L); |
Devang Patel | 91d22c8 | 2007-07-31 08:01:41 +0000 | [diff] [blame] | 877 | if (!AST) |
| 878 | return; |
| 879 | |
| 880 | AST->deleteValue(V); |
| 881 | } |