Owen Anderson | f3dd3e2 | 2006-05-26 21:11:53 +0000 | [diff] [blame] | 1 | //===-- LCSSA.cpp - Convert loops into loop-closed SSA form ---------------===// |
Owen Anderson | 8eca891 | 2006-05-26 13:58:26 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | f3ebc3f | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Owen Anderson | 8eca891 | 2006-05-26 13:58:26 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This pass transforms loops by placing phi nodes at the end of the loops for |
| 11 | // all values that are live across the loop boundary. For example, it turns |
| 12 | // the left into the right code: |
| 13 | // |
| 14 | // for (...) for (...) |
Dan Gohman | b5650eb | 2007-05-11 21:10:54 +0000 | [diff] [blame] | 15 | // if (c) if (c) |
Owen Anderson | 8eca891 | 2006-05-26 13:58:26 +0000 | [diff] [blame] | 16 | // X1 = ... X1 = ... |
| 17 | // else else |
| 18 | // X2 = ... X2 = ... |
| 19 | // X3 = phi(X1, X2) X3 = phi(X1, X2) |
Dan Gohman | 2ad7e73 | 2008-06-03 00:57:21 +0000 | [diff] [blame] | 20 | // ... = X3 + 4 X4 = phi(X3) |
| 21 | // ... = X4 + 4 |
Owen Anderson | 8eca891 | 2006-05-26 13:58:26 +0000 | [diff] [blame] | 22 | // |
| 23 | // This is still valid LLVM; the extra phi nodes are purely redundant, and will |
| 24 | // be trivially eliminated by InstCombine. The major benefit of this |
| 25 | // transformation is that it makes many other loop optimizations, such as |
| 26 | // LoopUnswitching, simpler. |
| 27 | // |
| 28 | //===----------------------------------------------------------------------===// |
| 29 | |
Owen Anderson | f3dd3e2 | 2006-05-26 21:11:53 +0000 | [diff] [blame] | 30 | #include "llvm/Transforms/Scalar.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 31 | #include "llvm/ADT/STLExtras.h" |
| 32 | #include "llvm/ADT/Statistic.h" |
Chandler Carruth | 756c22c | 2014-02-10 19:39:35 +0000 | [diff] [blame] | 33 | #include "llvm/Analysis/AliasAnalysis.h" |
Chandler Carruth | ac07270 | 2016-02-19 03:12:14 +0000 | [diff] [blame] | 34 | #include "llvm/Analysis/BasicAliasAnalysis.h" |
Chandler Carruth | 7b560d4 | 2015-09-09 17:55:00 +0000 | [diff] [blame] | 35 | #include "llvm/Analysis/GlobalsModRef.h" |
Devang Patel | 4cd1413 | 2007-07-13 23:57:11 +0000 | [diff] [blame] | 36 | #include "llvm/Analysis/LoopPass.h" |
| 37 | #include "llvm/Analysis/ScalarEvolution.h" |
Chandler Carruth | 7b560d4 | 2015-09-09 17:55:00 +0000 | [diff] [blame] | 38 | #include "llvm/Analysis/ScalarEvolutionAliasAnalysis.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 39 | #include "llvm/IR/Constants.h" |
Chandler Carruth | 5ad5f15 | 2014-01-13 09:26:24 +0000 | [diff] [blame] | 40 | #include "llvm/IR/Dominators.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 41 | #include "llvm/IR/Function.h" |
| 42 | #include "llvm/IR/Instructions.h" |
Chandler Carruth | aa0ab63 | 2014-03-04 12:09:19 +0000 | [diff] [blame] | 43 | #include "llvm/IR/PredIteratorCache.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 44 | #include "llvm/Pass.h" |
Chandler Carruth | 8765cf7 | 2014-01-25 04:07:24 +0000 | [diff] [blame] | 45 | #include "llvm/Transforms/Utils/LoopUtils.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 46 | #include "llvm/Transforms/Utils/SSAUpdater.h" |
Owen Anderson | 8eca891 | 2006-05-26 13:58:26 +0000 | [diff] [blame] | 47 | using namespace llvm; |
| 48 | |
Chandler Carruth | 964daaa | 2014-04-22 02:55:47 +0000 | [diff] [blame] | 49 | #define DEBUG_TYPE "lcssa" |
| 50 | |
Chris Lattner | 45f966d | 2006-12-19 22:17:40 +0000 | [diff] [blame] | 51 | STATISTIC(NumLCSSA, "Number of live out of a loop variables"); |
| 52 | |
Chandler Carruth | 8765cf7 | 2014-01-25 04:07:24 +0000 | [diff] [blame] | 53 | /// Return true if the specified block is in the list. |
Chris Lattner | 71d353d | 2009-10-11 02:53:37 +0000 | [diff] [blame] | 54 | static bool isExitBlock(BasicBlock *BB, |
Chandler Carruth | 8765cf7 | 2014-01-25 04:07:24 +0000 | [diff] [blame] | 55 | const SmallVectorImpl<BasicBlock *> &ExitBlocks) { |
Davide Italiano | 88a7892 | 2016-05-27 20:25:31 +0000 | [diff] [blame^] | 56 | return find(ExitBlocks, BB) != ExitBlocks.end(); |
Chris Lattner | 71d353d | 2009-10-11 02:53:37 +0000 | [diff] [blame] | 57 | } |
| 58 | |
Chandler Carruth | 8765cf7 | 2014-01-25 04:07:24 +0000 | [diff] [blame] | 59 | /// Given an instruction in the loop, check to see if it has any uses that are |
| 60 | /// outside the current loop. If so, insert LCSSA PHI nodes and rewrite the |
| 61 | /// uses. |
| 62 | static bool processInstruction(Loop &L, Instruction &Inst, DominatorTree &DT, |
| 63 | const SmallVectorImpl<BasicBlock *> &ExitBlocks, |
Bruno Cardoso Lopes | bad65c3 | 2014-12-22 22:35:46 +0000 | [diff] [blame] | 64 | PredIteratorCache &PredCache, LoopInfo *LI) { |
Chandler Carruth | 8765cf7 | 2014-01-25 04:07:24 +0000 | [diff] [blame] | 65 | SmallVector<Use *, 16> UsesToRewrite; |
| 66 | |
Andrew Kaylor | 123048d | 2015-12-18 18:12:35 +0000 | [diff] [blame] | 67 | // Tokens cannot be used in PHI nodes, so we skip over them. |
| 68 | // We can run into tokens which are live out of a loop with catchswitch |
| 69 | // instructions in Windows EH if the catchswitch has one catchpad which |
| 70 | // is inside the loop and another which is not. |
| 71 | if (Inst.getType()->isTokenTy()) |
| 72 | return false; |
| 73 | |
Chandler Carruth | 8765cf7 | 2014-01-25 04:07:24 +0000 | [diff] [blame] | 74 | BasicBlock *InstBB = Inst.getParent(); |
| 75 | |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 76 | for (Use &U : Inst.uses()) { |
| 77 | Instruction *User = cast<Instruction>(U.getUser()); |
| 78 | BasicBlock *UserBB = User->getParent(); |
| 79 | if (PHINode *PN = dyn_cast<PHINode>(User)) |
| 80 | UserBB = PN->getIncomingBlock(U); |
Chandler Carruth | 8765cf7 | 2014-01-25 04:07:24 +0000 | [diff] [blame] | 81 | |
| 82 | if (InstBB != UserBB && !L.contains(UserBB)) |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 83 | UsesToRewrite.push_back(&U); |
Chris Lattner | 71d353d | 2009-10-11 02:53:37 +0000 | [diff] [blame] | 84 | } |
Gabor Greif | 4247949 | 2010-07-09 14:29:14 +0000 | [diff] [blame] | 85 | |
Chris Lattner | 71d353d | 2009-10-11 02:53:37 +0000 | [diff] [blame] | 86 | // If there are no uses outside the loop, exit with no change. |
Chandler Carruth | 8765cf7 | 2014-01-25 04:07:24 +0000 | [diff] [blame] | 87 | if (UsesToRewrite.empty()) |
| 88 | return false; |
| 89 | |
Owen Anderson | dad8c57 | 2006-05-31 20:55:06 +0000 | [diff] [blame] | 90 | ++NumLCSSA; // We are applying the transformation |
Chris Lattner | 5a2bc78 | 2006-08-02 00:06:09 +0000 | [diff] [blame] | 91 | |
David Majnemer | 8a1c45d | 2015-12-12 05:38:55 +0000 | [diff] [blame] | 92 | // Invoke instructions are special in that their result value is not available |
| 93 | // along their unwind edge. The code below tests to see whether DomBB |
| 94 | // dominates the value, so adjust DomBB to the normal destination block, |
David Majnemer | 0bc0eef | 2015-08-15 02:46:08 +0000 | [diff] [blame] | 95 | // which is effectively where the value is first usable. |
Chandler Carruth | 8765cf7 | 2014-01-25 04:07:24 +0000 | [diff] [blame] | 96 | BasicBlock *DomBB = Inst.getParent(); |
| 97 | if (InvokeInst *Inv = dyn_cast<InvokeInst>(&Inst)) |
Dan Gohman | 7eaf50e | 2009-06-26 00:31:13 +0000 | [diff] [blame] | 98 | DomBB = Inv->getNormalDest(); |
| 99 | |
Chandler Carruth | 8765cf7 | 2014-01-25 04:07:24 +0000 | [diff] [blame] | 100 | DomTreeNode *DomNode = DT.getNode(DomBB); |
Chris Lattner | 5a2bc78 | 2006-08-02 00:06:09 +0000 | [diff] [blame] | 101 | |
Chandler Carruth | 8765cf7 | 2014-01-25 04:07:24 +0000 | [diff] [blame] | 102 | SmallVector<PHINode *, 16> AddedPHIs; |
Bruno Cardoso Lopes | bad65c3 | 2014-12-22 22:35:46 +0000 | [diff] [blame] | 103 | SmallVector<PHINode *, 8> PostProcessPHIs; |
Cameron Zwarich | 0b8cdfb | 2011-03-15 07:41:25 +0000 | [diff] [blame] | 104 | |
Chris Lattner | 71d353d | 2009-10-11 02:53:37 +0000 | [diff] [blame] | 105 | SSAUpdater SSAUpdate; |
Chandler Carruth | 8765cf7 | 2014-01-25 04:07:24 +0000 | [diff] [blame] | 106 | SSAUpdate.Initialize(Inst.getType(), Inst.getName()); |
| 107 | |
Chris Lattner | 71d353d | 2009-10-11 02:53:37 +0000 | [diff] [blame] | 108 | // Insert the LCSSA phi's into all of the exit blocks dominated by the |
Dan Gohman | c146c780 | 2009-11-09 18:28:24 +0000 | [diff] [blame] | 109 | // value, and add them to the Phi's map. |
Sanjoy Das | 331521c | 2015-10-25 19:08:32 +0000 | [diff] [blame] | 110 | for (BasicBlock *ExitBB : ExitBlocks) { |
Chandler Carruth | 8765cf7 | 2014-01-25 04:07:24 +0000 | [diff] [blame] | 111 | if (!DT.dominates(DomNode, DT.getNode(ExitBB))) |
| 112 | continue; |
| 113 | |
Chris Lattner | 71d353d | 2009-10-11 02:53:37 +0000 | [diff] [blame] | 114 | // If we already inserted something for this BB, don't reprocess it. |
Chandler Carruth | 8765cf7 | 2014-01-25 04:07:24 +0000 | [diff] [blame] | 115 | if (SSAUpdate.HasValueForBlock(ExitBB)) |
| 116 | continue; |
| 117 | |
Daniel Berlin | b4e7a4a | 2015-04-21 21:11:50 +0000 | [diff] [blame] | 118 | PHINode *PN = PHINode::Create(Inst.getType(), PredCache.size(ExitBB), |
Duncan P. N. Exon Smith | 5b4c837 | 2015-10-13 02:39:05 +0000 | [diff] [blame] | 119 | Inst.getName() + ".lcssa", &ExitBB->front()); |
Chris Lattner | 984d6e1 | 2006-10-31 18:56:48 +0000 | [diff] [blame] | 120 | |
Chris Lattner | 71d353d | 2009-10-11 02:53:37 +0000 | [diff] [blame] | 121 | // Add inputs from inside the loop for this PHI. |
Daniel Berlin | b4e7a4a | 2015-04-21 21:11:50 +0000 | [diff] [blame] | 122 | for (BasicBlock *Pred : PredCache.get(ExitBB)) { |
| 123 | PN->addIncoming(&Inst, Pred); |
Dan Gohman | c146c780 | 2009-11-09 18:28:24 +0000 | [diff] [blame] | 124 | |
| 125 | // If the exit block has a predecessor not within the loop, arrange for |
Dan Gohman | f324dd6 | 2009-11-09 18:59:22 +0000 | [diff] [blame] | 126 | // the incoming value use corresponding to that predecessor to be |
Dan Gohman | c146c780 | 2009-11-09 18:28:24 +0000 | [diff] [blame] | 127 | // rewritten in terms of a different LCSSA PHI. |
Daniel Berlin | b4e7a4a | 2015-04-21 21:11:50 +0000 | [diff] [blame] | 128 | if (!L.contains(Pred)) |
Dan Gohman | c146c780 | 2009-11-09 18:28:24 +0000 | [diff] [blame] | 129 | UsesToRewrite.push_back( |
Chandler Carruth | 8765cf7 | 2014-01-25 04:07:24 +0000 | [diff] [blame] | 130 | &PN->getOperandUse(PN->getOperandNumForIncomingValue( |
| 131 | PN->getNumIncomingValues() - 1))); |
Dan Gohman | c146c780 | 2009-11-09 18:28:24 +0000 | [diff] [blame] | 132 | } |
Cameron Zwarich | 0b8cdfb | 2011-03-15 07:41:25 +0000 | [diff] [blame] | 133 | |
| 134 | AddedPHIs.push_back(PN); |
Chandler Carruth | 8765cf7 | 2014-01-25 04:07:24 +0000 | [diff] [blame] | 135 | |
Chris Lattner | 71d353d | 2009-10-11 02:53:37 +0000 | [diff] [blame] | 136 | // Remember that this phi makes the value alive in this block. |
| 137 | SSAUpdate.AddAvailableValue(ExitBB, PN); |
Bruno Cardoso Lopes | bad65c3 | 2014-12-22 22:35:46 +0000 | [diff] [blame] | 138 | |
| 139 | // LoopSimplify might fail to simplify some loops (e.g. when indirect |
| 140 | // branches are involved). In such situations, it might happen that an exit |
| 141 | // for Loop L1 is the header of a disjoint Loop L2. Thus, when we create |
| 142 | // PHIs in such an exit block, we are also inserting PHIs into L2's header. |
| 143 | // This could break LCSSA form for L2 because these inserted PHIs can also |
| 144 | // have uses outside of L2. Remember all PHIs in such situation as to |
| 145 | // revisit than later on. FIXME: Remove this if indirectbr support into |
| 146 | // LoopSimplify gets improved. |
| 147 | if (auto *OtherLoop = LI->getLoopFor(ExitBB)) |
| 148 | if (!L.contains(OtherLoop)) |
| 149 | PostProcessPHIs.push_back(PN); |
Owen Anderson | 0ac3369 | 2006-06-12 07:10:16 +0000 | [diff] [blame] | 150 | } |
Benjamin Kramer | 8682ac1 | 2012-10-31 10:01:29 +0000 | [diff] [blame] | 151 | |
Chris Lattner | 71d353d | 2009-10-11 02:53:37 +0000 | [diff] [blame] | 152 | // Rewrite all uses outside the loop in terms of the new PHIs we just |
| 153 | // inserted. |
Sanjoy Das | 331521c | 2015-10-25 19:08:32 +0000 | [diff] [blame] | 154 | for (Use *UseToRewrite : UsesToRewrite) { |
Chris Lattner | 71d353d | 2009-10-11 02:53:37 +0000 | [diff] [blame] | 155 | // If this use is in an exit block, rewrite to use the newly inserted PHI. |
| 156 | // This is required for correctness because SSAUpdate doesn't handle uses in |
| 157 | // the same block. It assumes the PHI we inserted is at the end of the |
| 158 | // block. |
Sanjoy Das | 331521c | 2015-10-25 19:08:32 +0000 | [diff] [blame] | 159 | Instruction *User = cast<Instruction>(UseToRewrite->getUser()); |
Chris Lattner | 71d353d | 2009-10-11 02:53:37 +0000 | [diff] [blame] | 160 | BasicBlock *UserBB = User->getParent(); |
| 161 | if (PHINode *PN = dyn_cast<PHINode>(User)) |
Sanjoy Das | 331521c | 2015-10-25 19:08:32 +0000 | [diff] [blame] | 162 | UserBB = PN->getIncomingBlock(*UseToRewrite); |
Chris Lattner | 71d353d | 2009-10-11 02:53:37 +0000 | [diff] [blame] | 163 | |
Chandler Carruth | 8765cf7 | 2014-01-25 04:07:24 +0000 | [diff] [blame] | 164 | if (isa<PHINode>(UserBB->begin()) && isExitBlock(UserBB, ExitBlocks)) { |
Benjamin Kramer | ede2fe3bfd | 2012-10-31 16:30:03 +0000 | [diff] [blame] | 165 | // Tell the VHs that the uses changed. This updates SCEV's caches. |
Sanjoy Das | 331521c | 2015-10-25 19:08:32 +0000 | [diff] [blame] | 166 | if (UseToRewrite->get()->hasValueHandle()) |
| 167 | ValueHandleBase::ValueIsRAUWd(*UseToRewrite, &UserBB->front()); |
| 168 | UseToRewrite->set(&UserBB->front()); |
Chris Lattner | 5a2bc78 | 2006-08-02 00:06:09 +0000 | [diff] [blame] | 169 | continue; |
Owen Anderson | cd76fa0 | 2006-06-01 06:05:47 +0000 | [diff] [blame] | 170 | } |
Chandler Carruth | 8765cf7 | 2014-01-25 04:07:24 +0000 | [diff] [blame] | 171 | |
Chris Lattner | 71d353d | 2009-10-11 02:53:37 +0000 | [diff] [blame] | 172 | // Otherwise, do full PHI insertion. |
Sanjoy Das | 331521c | 2015-10-25 19:08:32 +0000 | [diff] [blame] | 173 | SSAUpdate.RewriteUse(*UseToRewrite); |
Chris Lattner | 5a2bc78 | 2006-08-02 00:06:09 +0000 | [diff] [blame] | 174 | } |
Cameron Zwarich | 0b8cdfb | 2011-03-15 07:41:25 +0000 | [diff] [blame] | 175 | |
Bruno Cardoso Lopes | bad65c3 | 2014-12-22 22:35:46 +0000 | [diff] [blame] | 176 | // Post process PHI instructions that were inserted into another disjoint loop |
| 177 | // and update their exits properly. |
| 178 | for (auto *I : PostProcessPHIs) { |
| 179 | if (I->use_empty()) |
| 180 | continue; |
| 181 | |
| 182 | BasicBlock *PHIBB = I->getParent(); |
| 183 | Loop *OtherLoop = LI->getLoopFor(PHIBB); |
| 184 | SmallVector<BasicBlock *, 8> EBs; |
| 185 | OtherLoop->getExitBlocks(EBs); |
| 186 | if (EBs.empty()) |
| 187 | continue; |
| 188 | |
| 189 | // Recurse and re-process each PHI instruction. FIXME: we should really |
| 190 | // convert this entire thing to a worklist approach where we process a |
| 191 | // vector of instructions... |
| 192 | processInstruction(*OtherLoop, *I, DT, EBs, PredCache, LI); |
| 193 | } |
| 194 | |
Cameron Zwarich | 0b8cdfb | 2011-03-15 07:41:25 +0000 | [diff] [blame] | 195 | // Remove PHI nodes that did not have any uses rewritten. |
Sanjoy Das | 331521c | 2015-10-25 19:08:32 +0000 | [diff] [blame] | 196 | for (PHINode *PN : AddedPHIs) |
| 197 | if (PN->use_empty()) |
| 198 | PN->eraseFromParent(); |
Chandler Carruth | 8765cf7 | 2014-01-25 04:07:24 +0000 | [diff] [blame] | 199 | |
Chris Lattner | 71d353d | 2009-10-11 02:53:37 +0000 | [diff] [blame] | 200 | return true; |
Owen Anderson | dad8c57 | 2006-05-31 20:55:06 +0000 | [diff] [blame] | 201 | } |
Chris Lattner | 5a2bc78 | 2006-08-02 00:06:09 +0000 | [diff] [blame] | 202 | |
Chandler Carruth | 8765cf7 | 2014-01-25 04:07:24 +0000 | [diff] [blame] | 203 | /// Return true if the specified block dominates at least |
| 204 | /// one of the blocks in the specified list. |
| 205 | static bool |
| 206 | blockDominatesAnExit(BasicBlock *BB, |
| 207 | DominatorTree &DT, |
| 208 | const SmallVectorImpl<BasicBlock *> &ExitBlocks) { |
| 209 | DomTreeNode *DomNode = DT.getNode(BB); |
Davide Italiano | bfe3801 | 2016-05-17 19:01:02 +0000 | [diff] [blame] | 210 | return llvm::any_of(ExitBlocks, [&](BasicBlock * EB) { |
Davide Italiano | b75b16e2 | 2016-05-17 14:24:41 +0000 | [diff] [blame] | 211 | return DT.dominates(DomNode, DT.getNode(EB)); |
| 212 | }); |
Chandler Carruth | 8765cf7 | 2014-01-25 04:07:24 +0000 | [diff] [blame] | 213 | } |
| 214 | |
Bruno Cardoso Lopes | bad65c3 | 2014-12-22 22:35:46 +0000 | [diff] [blame] | 215 | bool llvm::formLCSSA(Loop &L, DominatorTree &DT, LoopInfo *LI, |
| 216 | ScalarEvolution *SE) { |
Chandler Carruth | 8765cf7 | 2014-01-25 04:07:24 +0000 | [diff] [blame] | 217 | bool Changed = false; |
| 218 | |
| 219 | // Get the set of exiting blocks. |
| 220 | SmallVector<BasicBlock *, 8> ExitBlocks; |
| 221 | L.getExitBlocks(ExitBlocks); |
| 222 | |
| 223 | if (ExitBlocks.empty()) |
| 224 | return false; |
| 225 | |
| 226 | PredIteratorCache PredCache; |
| 227 | |
| 228 | // Look at all the instructions in the loop, checking to see if they have uses |
| 229 | // outside the loop. If so, rewrite those uses. |
Sanjoy Das | 331521c | 2015-10-25 19:08:32 +0000 | [diff] [blame] | 230 | for (BasicBlock *BB : L.blocks()) { |
Chandler Carruth | 8765cf7 | 2014-01-25 04:07:24 +0000 | [diff] [blame] | 231 | // For large loops, avoid use-scanning by using dominance information: In |
| 232 | // particular, if a block does not dominate any of the loop exits, then none |
| 233 | // of the values defined in the block could be used outside the loop. |
| 234 | if (!blockDominatesAnExit(BB, DT, ExitBlocks)) |
| 235 | continue; |
| 236 | |
Sanjoy Das | 331521c | 2015-10-25 19:08:32 +0000 | [diff] [blame] | 237 | for (Instruction &I : *BB) { |
Chandler Carruth | 8765cf7 | 2014-01-25 04:07:24 +0000 | [diff] [blame] | 238 | // Reject two common cases fast: instructions with no uses (like stores) |
| 239 | // and instructions with one use that is in the same block as this. |
Sanjoy Das | 331521c | 2015-10-25 19:08:32 +0000 | [diff] [blame] | 240 | if (I.use_empty() || |
| 241 | (I.hasOneUse() && I.user_back()->getParent() == BB && |
| 242 | !isa<PHINode>(I.user_back()))) |
Chandler Carruth | 8765cf7 | 2014-01-25 04:07:24 +0000 | [diff] [blame] | 243 | continue; |
| 244 | |
Sanjoy Das | 331521c | 2015-10-25 19:08:32 +0000 | [diff] [blame] | 245 | Changed |= processInstruction(L, I, DT, ExitBlocks, PredCache, LI); |
Chandler Carruth | 8765cf7 | 2014-01-25 04:07:24 +0000 | [diff] [blame] | 246 | } |
| 247 | } |
| 248 | |
| 249 | // If we modified the code, remove any caches about the loop from SCEV to |
| 250 | // avoid dangling entries. |
| 251 | // FIXME: This is a big hammer, can we clear the cache more selectively? |
| 252 | if (SE && Changed) |
| 253 | SE->forgetLoop(&L); |
| 254 | |
| 255 | assert(L.isLCSSAForm(DT)); |
| 256 | |
| 257 | return Changed; |
| 258 | } |
| 259 | |
Chandler Carruth | d84f776 | 2014-01-28 01:25:38 +0000 | [diff] [blame] | 260 | /// Process a loop nest depth first. |
Bruno Cardoso Lopes | bad65c3 | 2014-12-22 22:35:46 +0000 | [diff] [blame] | 261 | bool llvm::formLCSSARecursively(Loop &L, DominatorTree &DT, LoopInfo *LI, |
Chandler Carruth | d84f776 | 2014-01-28 01:25:38 +0000 | [diff] [blame] | 262 | ScalarEvolution *SE) { |
| 263 | bool Changed = false; |
| 264 | |
| 265 | // Recurse depth-first through inner loops. |
Sanjoy Das | 15c4c46 | 2015-10-25 19:27:17 +0000 | [diff] [blame] | 266 | for (Loop *SubLoop : L.getSubLoops()) |
| 267 | Changed |= formLCSSARecursively(*SubLoop, DT, LI, SE); |
Chandler Carruth | d84f776 | 2014-01-28 01:25:38 +0000 | [diff] [blame] | 268 | |
Bruno Cardoso Lopes | bad65c3 | 2014-12-22 22:35:46 +0000 | [diff] [blame] | 269 | Changed |= formLCSSA(L, DT, LI, SE); |
Chandler Carruth | d84f776 | 2014-01-28 01:25:38 +0000 | [diff] [blame] | 270 | return Changed; |
| 271 | } |
| 272 | |
Chandler Carruth | 8765cf7 | 2014-01-25 04:07:24 +0000 | [diff] [blame] | 273 | namespace { |
| 274 | struct LCSSA : public FunctionPass { |
| 275 | static char ID; // Pass identification, replacement for typeid |
| 276 | LCSSA() : FunctionPass(ID) { |
| 277 | initializeLCSSAPass(*PassRegistry::getPassRegistry()); |
| 278 | } |
| 279 | |
| 280 | // Cached analysis information for the current function. |
| 281 | DominatorTree *DT; |
| 282 | LoopInfo *LI; |
| 283 | ScalarEvolution *SE; |
| 284 | |
Craig Topper | 3e4c697 | 2014-03-05 09:10:37 +0000 | [diff] [blame] | 285 | bool runOnFunction(Function &F) override; |
Chandler Carruth | 8765cf7 | 2014-01-25 04:07:24 +0000 | [diff] [blame] | 286 | |
| 287 | /// This transformation requires natural loop information & requires that |
| 288 | /// loop preheaders be inserted into the CFG. It maintains both of these, |
| 289 | /// as well as the CFG. It also requires dominator information. |
Craig Topper | 3e4c697 | 2014-03-05 09:10:37 +0000 | [diff] [blame] | 290 | void getAnalysisUsage(AnalysisUsage &AU) const override { |
Chandler Carruth | 8765cf7 | 2014-01-25 04:07:24 +0000 | [diff] [blame] | 291 | AU.setPreservesCFG(); |
| 292 | |
| 293 | AU.addRequired<DominatorTreeWrapperPass>(); |
Chandler Carruth | 4f8f307 | 2015-01-17 14:16:18 +0000 | [diff] [blame] | 294 | AU.addRequired<LoopInfoWrapperPass>(); |
Chandler Carruth | 8765cf7 | 2014-01-25 04:07:24 +0000 | [diff] [blame] | 295 | AU.addPreservedID(LoopSimplifyID); |
Chandler Carruth | 7b560d4 | 2015-09-09 17:55:00 +0000 | [diff] [blame] | 296 | AU.addPreserved<AAResultsWrapperPass>(); |
Chandler Carruth | ac07270 | 2016-02-19 03:12:14 +0000 | [diff] [blame] | 297 | AU.addPreserved<BasicAAWrapperPass>(); |
Chandler Carruth | 7b560d4 | 2015-09-09 17:55:00 +0000 | [diff] [blame] | 298 | AU.addPreserved<GlobalsAAWrapperPass>(); |
Chandler Carruth | 2f1fd16 | 2015-08-17 02:08:17 +0000 | [diff] [blame] | 299 | AU.addPreserved<ScalarEvolutionWrapperPass>(); |
Chandler Carruth | 7b560d4 | 2015-09-09 17:55:00 +0000 | [diff] [blame] | 300 | AU.addPreserved<SCEVAAWrapperPass>(); |
Chandler Carruth | 8765cf7 | 2014-01-25 04:07:24 +0000 | [diff] [blame] | 301 | } |
Chandler Carruth | 8765cf7 | 2014-01-25 04:07:24 +0000 | [diff] [blame] | 302 | }; |
Alexander Kornienko | f00654e | 2015-06-23 09:49:53 +0000 | [diff] [blame] | 303 | } |
Chandler Carruth | 8765cf7 | 2014-01-25 04:07:24 +0000 | [diff] [blame] | 304 | |
| 305 | char LCSSA::ID = 0; |
| 306 | INITIALIZE_PASS_BEGIN(LCSSA, "lcssa", "Loop-Closed SSA Form Pass", false, false) |
| 307 | INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass) |
Chandler Carruth | 4f8f307 | 2015-01-17 14:16:18 +0000 | [diff] [blame] | 308 | INITIALIZE_PASS_DEPENDENCY(LoopInfoWrapperPass) |
Chandler Carruth | 8765cf7 | 2014-01-25 04:07:24 +0000 | [diff] [blame] | 309 | INITIALIZE_PASS_END(LCSSA, "lcssa", "Loop-Closed SSA Form Pass", false, false) |
| 310 | |
| 311 | Pass *llvm::createLCSSAPass() { return new LCSSA(); } |
| 312 | char &llvm::LCSSAID = LCSSA::ID; |
| 313 | |
| 314 | |
| 315 | /// Process all loops in the function, inner-most out. |
| 316 | bool LCSSA::runOnFunction(Function &F) { |
| 317 | bool Changed = false; |
Chandler Carruth | 4f8f307 | 2015-01-17 14:16:18 +0000 | [diff] [blame] | 318 | LI = &getAnalysis<LoopInfoWrapperPass>().getLoopInfo(); |
Chandler Carruth | 8765cf7 | 2014-01-25 04:07:24 +0000 | [diff] [blame] | 319 | DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree(); |
Chandler Carruth | 2f1fd16 | 2015-08-17 02:08:17 +0000 | [diff] [blame] | 320 | auto *SEWP = getAnalysisIfAvailable<ScalarEvolutionWrapperPass>(); |
| 321 | SE = SEWP ? &SEWP->getSE() : nullptr; |
Chandler Carruth | 8765cf7 | 2014-01-25 04:07:24 +0000 | [diff] [blame] | 322 | |
| 323 | // Simplify each loop nest in the function. |
| 324 | for (LoopInfo::iterator I = LI->begin(), E = LI->end(); I != E; ++I) |
Bruno Cardoso Lopes | bad65c3 | 2014-12-22 22:35:46 +0000 | [diff] [blame] | 325 | Changed |= formLCSSARecursively(**I, *DT, LI, SE); |
Chandler Carruth | 8765cf7 | 2014-01-25 04:07:24 +0000 | [diff] [blame] | 326 | |
| 327 | return Changed; |
| 328 | } |
| 329 | |