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