Chris Lattner | 55d4788 | 2003-10-12 21:44:18 +0000 | [diff] [blame] | 1 | //===- LoopSimplify.cpp - Loop Canonicalization Pass ----------------------===// |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 6 | // |
John Criswell | 482202a | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 7 | //===----------------------------------------------------------------------===// |
Chris Lattner | 61992f6 | 2002-09-26 16:17:31 +0000 | [diff] [blame] | 8 | // |
Chris Lattner | 154e4d5 | 2003-10-12 21:43:28 +0000 | [diff] [blame] | 9 | // This pass performs several transformations to transform natural loops into a |
| 10 | // simpler form, which makes subsequent analyses and transformations simpler and |
| 11 | // more effective. |
Chris Lattner | 650096a | 2003-02-27 20:27:08 +0000 | [diff] [blame] | 12 | // |
| 13 | // Loop pre-header insertion guarantees that there is a single, non-critical |
| 14 | // entry edge from outside of the loop to the loop header. This simplifies a |
| 15 | // number of analyses and transformations, such as LICM. |
| 16 | // |
| 17 | // Loop exit-block insertion guarantees that all exit blocks from the loop |
| 18 | // (blocks which are outside of the loop that have predecessors inside of the |
Chris Lattner | 7710f2f | 2003-12-10 17:20:35 +0000 | [diff] [blame] | 19 | // loop) only have predecessors from inside of the loop (and are thus dominated |
| 20 | // by the loop header). This simplifies transformations such as store-sinking |
| 21 | // that are built into LICM. |
Chris Lattner | 650096a | 2003-02-27 20:27:08 +0000 | [diff] [blame] | 22 | // |
Chris Lattner | c4622a6 | 2003-10-13 00:37:13 +0000 | [diff] [blame] | 23 | // This pass also guarantees that loops will have exactly one backedge. |
| 24 | // |
Dan Gohman | 1ef784d | 2009-11-05 21:14:46 +0000 | [diff] [blame] | 25 | // Indirectbr instructions introduce several complications. If the loop |
| 26 | // contains or is entered by an indirectbr instruction, it may not be possible |
| 27 | // to transform the loop and make these guarantees. Client code should check |
| 28 | // that these conditions are true before relying on them. |
| 29 | // |
Craig Topper | 784929d | 2019-02-08 20:48:56 +0000 | [diff] [blame] | 30 | // Similar complications arise from callbr instructions, particularly in |
| 31 | // asm-goto where blockaddress expressions are used. |
| 32 | // |
Chris Lattner | 650096a | 2003-02-27 20:27:08 +0000 | [diff] [blame] | 33 | // Note that the simplifycfg pass will clean up blocks which are split out but |
Chris Lattner | 154e4d5 | 2003-10-12 21:43:28 +0000 | [diff] [blame] | 34 | // end up being unnecessary, so usage of this pass should not pessimize |
| 35 | // generated code. |
| 36 | // |
| 37 | // This pass obviously modifies the CFG, but updates loop information and |
| 38 | // dominator information. |
Chris Lattner | 61992f6 | 2002-09-26 16:17:31 +0000 | [diff] [blame] | 39 | // |
| 40 | //===----------------------------------------------------------------------===// |
| 41 | |
Davide Italiano | cd96cfd | 2016-07-09 03:03:01 +0000 | [diff] [blame] | 42 | #include "llvm/Transforms/Utils/LoopSimplify.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 43 | #include "llvm/ADT/DepthFirstIterator.h" |
| 44 | #include "llvm/ADT/SetOperations.h" |
| 45 | #include "llvm/ADT/SetVector.h" |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 46 | #include "llvm/ADT/SmallVector.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 47 | #include "llvm/ADT/Statistic.h" |
Chris Lattner | 514e843 | 2005-03-25 06:37:22 +0000 | [diff] [blame] | 48 | #include "llvm/Analysis/AliasAnalysis.h" |
Daniel Jasper | aec2fa3 | 2016-12-19 08:22:17 +0000 | [diff] [blame] | 49 | #include "llvm/Analysis/AssumptionCache.h" |
Chandler Carruth | 6bda14b | 2017-06-06 11:49:48 +0000 | [diff] [blame] | 50 | #include "llvm/Analysis/BasicAliasAnalysis.h" |
Philip Reames | 37104d7 | 2019-04-22 17:13:43 +0000 | [diff] [blame^] | 51 | #include "llvm/Analysis/BranchProbabilityInfo.h" |
Benjamin Kramer | 7736085 | 2012-10-26 17:40:50 +0000 | [diff] [blame] | 52 | #include "llvm/Analysis/DependenceAnalysis.h" |
Chandler Carruth | 7b560d4 | 2015-09-09 17:55:00 +0000 | [diff] [blame] | 53 | #include "llvm/Analysis/GlobalsModRef.h" |
Duncan Sands | 6370495 | 2010-11-16 17:41:24 +0000 | [diff] [blame] | 54 | #include "llvm/Analysis/InstructionSimplify.h" |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 55 | #include "llvm/Analysis/LoopInfo.h" |
Duncan Sands | 6370495 | 2010-11-16 17:41:24 +0000 | [diff] [blame] | 56 | #include "llvm/Analysis/ScalarEvolution.h" |
Chandler Carruth | 7b560d4 | 2015-09-09 17:55:00 +0000 | [diff] [blame] | 57 | #include "llvm/Analysis/ScalarEvolutionAliasAnalysis.h" |
David Blaikie | 31b98d2 | 2018-06-04 21:23:21 +0000 | [diff] [blame] | 58 | #include "llvm/Transforms/Utils/Local.h" |
Chandler Carruth | 1305dc3 | 2014-03-04 11:45:46 +0000 | [diff] [blame] | 59 | #include "llvm/IR/CFG.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 60 | #include "llvm/IR/Constants.h" |
Hal Finkel | a995f92 | 2014-07-10 14:41:31 +0000 | [diff] [blame] | 61 | #include "llvm/IR/DataLayout.h" |
Chandler Carruth | 5ad5f15 | 2014-01-13 09:26:24 +0000 | [diff] [blame] | 62 | #include "llvm/IR/Dominators.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 63 | #include "llvm/IR/Function.h" |
| 64 | #include "llvm/IR/Instructions.h" |
| 65 | #include "llvm/IR/IntrinsicInst.h" |
| 66 | #include "llvm/IR/LLVMContext.h" |
Mehdi Amini | 46a4355 | 2015-03-04 18:43:29 +0000 | [diff] [blame] | 67 | #include "llvm/IR/Module.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 68 | #include "llvm/IR/Type.h" |
Dan Gohman | 39917c7 | 2010-03-01 17:55:27 +0000 | [diff] [blame] | 69 | #include "llvm/Support/Debug.h" |
Benjamin Kramer | 799003b | 2015-03-23 19:32:43 +0000 | [diff] [blame] | 70 | #include "llvm/Support/raw_ostream.h" |
David Blaikie | a373d18 | 2018-03-28 17:44:36 +0000 | [diff] [blame] | 71 | #include "llvm/Transforms/Utils.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 72 | #include "llvm/Transforms/Utils/BasicBlockUtils.h" |
Hal Finkel | a969df8 | 2013-05-20 20:46:30 +0000 | [diff] [blame] | 73 | #include "llvm/Transforms/Utils/LoopUtils.h" |
Chris Lattner | 7710f2f | 2003-12-10 17:20:35 +0000 | [diff] [blame] | 74 | using namespace llvm; |
Brian Gaeke | 960707c | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 75 | |
Chandler Carruth | 964daaa | 2014-04-22 02:55:47 +0000 | [diff] [blame] | 76 | #define DEBUG_TYPE "loop-simplify" |
| 77 | |
Chris Lattner | 45f966d | 2006-12-19 22:17:40 +0000 | [diff] [blame] | 78 | STATISTIC(NumNested , "Number of nested loops split out"); |
Chris Lattner | 61992f6 | 2002-09-26 16:17:31 +0000 | [diff] [blame] | 79 | |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 80 | // If the block isn't already, move the new block to right after some 'outside |
| 81 | // block' block. This prevents the preheader from being placed inside the loop |
| 82 | // body, e.g. when the loop hasn't been rotated. |
| 83 | static void placeSplitBlockCarefully(BasicBlock *NewBB, |
| 84 | SmallVectorImpl<BasicBlock *> &SplitPreds, |
| 85 | Loop *L) { |
| 86 | // Check to see if NewBB is already well placed. |
Duncan P. N. Exon Smith | 5b4c837 | 2015-10-13 02:39:05 +0000 | [diff] [blame] | 87 | Function::iterator BBI = --NewBB->getIterator(); |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 88 | for (unsigned i = 0, e = SplitPreds.size(); i != e; ++i) { |
| 89 | if (&*BBI == SplitPreds[i]) |
| 90 | return; |
| 91 | } |
Devang Patel | 09f162c | 2007-05-01 21:15:47 +0000 | [diff] [blame] | 92 | |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 93 | // If it isn't already after an outside block, move it after one. This is |
| 94 | // always good as it makes the uncond branch from the outside block into a |
| 95 | // fall-through. |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 96 | |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 97 | // Figure out *which* outside block to put this after. Prefer an outside |
| 98 | // block that neighbors a BB actually in the loop. |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 99 | BasicBlock *FoundBB = nullptr; |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 100 | for (unsigned i = 0, e = SplitPreds.size(); i != e; ++i) { |
Duncan P. N. Exon Smith | 5b4c837 | 2015-10-13 02:39:05 +0000 | [diff] [blame] | 101 | Function::iterator BBI = SplitPreds[i]->getIterator(); |
| 102 | if (++BBI != NewBB->getParent()->end() && L->contains(&*BBI)) { |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 103 | FoundBB = SplitPreds[i]; |
| 104 | break; |
Dan Gohman | 9a7320c | 2009-09-28 14:37:51 +0000 | [diff] [blame] | 105 | } |
| 106 | } |
Chris Lattner | d078812 | 2004-03-14 03:59:22 +0000 | [diff] [blame] | 107 | |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 108 | // If our heuristic for a *good* bb to place this after doesn't find |
| 109 | // anything, just pick something. It's likely better than leaving it within |
| 110 | // the loop. |
| 111 | if (!FoundBB) |
| 112 | FoundBB = SplitPreds[0]; |
| 113 | NewBB->moveAfter(FoundBB); |
Chris Lattner | 61992f6 | 2002-09-26 16:17:31 +0000 | [diff] [blame] | 114 | } |
| 115 | |
Chris Lattner | 61992f6 | 2002-09-26 16:17:31 +0000 | [diff] [blame] | 116 | /// InsertPreheaderForLoop - Once we discover that a loop doesn't have a |
| 117 | /// preheader, this method is called to insert one. This method has two phases: |
| 118 | /// preheader insertion and analysis updating. |
| 119 | /// |
Justin Bogner | 843fb20 | 2015-12-15 19:40:57 +0000 | [diff] [blame] | 120 | BasicBlock *llvm::InsertPreheaderForLoop(Loop *L, DominatorTree *DT, |
| 121 | LoopInfo *LI, bool PreserveLCSSA) { |
Chris Lattner | 61992f6 | 2002-09-26 16:17:31 +0000 | [diff] [blame] | 122 | BasicBlock *Header = L->getHeader(); |
| 123 | |
| 124 | // Compute the set of predecessors of the loop that are not in the loop. |
Chris Lattner | a5b1170 | 2008-04-21 01:28:02 +0000 | [diff] [blame] | 125 | SmallVector<BasicBlock*, 8> OutsideBlocks; |
Duncan P. N. Exon Smith | 6c99015 | 2014-07-21 17:06:51 +0000 | [diff] [blame] | 126 | for (pred_iterator PI = pred_begin(Header), PE = pred_end(Header); |
| 127 | PI != PE; ++PI) { |
| 128 | BasicBlock *P = *PI; |
Gabor Greif | f0821f3 | 2010-07-09 14:02:13 +0000 | [diff] [blame] | 129 | if (!L->contains(P)) { // Coming in from outside the loop? |
Craig Topper | 784929d | 2019-02-08 20:48:56 +0000 | [diff] [blame] | 130 | // If the loop is branched to from an indirect terminator, we won't |
Dan Gohman | 1ef784d | 2009-11-05 21:14:46 +0000 | [diff] [blame] | 131 | // be able to fully transform the loop, because it prohibits |
| 132 | // edge splitting. |
Craig Topper | 784929d | 2019-02-08 20:48:56 +0000 | [diff] [blame] | 133 | if (P->getTerminator()->isIndirectTerminator()) |
| 134 | return nullptr; |
Dan Gohman | 1ef784d | 2009-11-05 21:14:46 +0000 | [diff] [blame] | 135 | |
| 136 | // Keep track of it. |
Gabor Greif | f0821f3 | 2010-07-09 14:02:13 +0000 | [diff] [blame] | 137 | OutsideBlocks.push_back(P); |
Dan Gohman | 1ef784d | 2009-11-05 21:14:46 +0000 | [diff] [blame] | 138 | } |
Gabor Greif | f0821f3 | 2010-07-09 14:02:13 +0000 | [diff] [blame] | 139 | } |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 140 | |
Chris Lattner | 608cd05 | 2006-09-23 07:40:52 +0000 | [diff] [blame] | 141 | // Split out the loop pre-header. |
Eli Friedman | 16ad290 | 2011-12-15 00:50:34 +0000 | [diff] [blame] | 142 | BasicBlock *PreheaderBB; |
Chandler Carruth | 96ada25 | 2015-07-22 09:52:54 +0000 | [diff] [blame] | 143 | PreheaderBB = SplitBlockPredecessors(Header, OutsideBlocks, ".preheader", DT, |
Alina Sbirlea | ab6f84f7 | 2018-08-21 23:32:03 +0000 | [diff] [blame] | 144 | LI, nullptr, PreserveLCSSA); |
David Majnemer | 654e130 | 2015-07-31 17:58:14 +0000 | [diff] [blame] | 145 | if (!PreheaderBB) |
| 146 | return nullptr; |
Chris Lattner | f2d9f94 | 2003-02-27 22:48:57 +0000 | [diff] [blame] | 147 | |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 148 | LLVM_DEBUG(dbgs() << "LoopSimplify: Creating pre-header " |
| 149 | << PreheaderBB->getName() << "\n"); |
Dan Gohman | 39917c7 | 2010-03-01 17:55:27 +0000 | [diff] [blame] | 150 | |
Chris Lattner | 6bd6da4 | 2006-09-23 08:19:21 +0000 | [diff] [blame] | 151 | // Make sure that NewBB is put someplace intelligent, which doesn't mess up |
| 152 | // code layout too horribly. |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 153 | placeSplitBlockCarefully(PreheaderBB, OutsideBlocks, L); |
Dan Gohman | 4d6149f | 2009-07-14 01:37:59 +0000 | [diff] [blame] | 154 | |
Eli Friedman | 16ad290 | 2011-12-15 00:50:34 +0000 | [diff] [blame] | 155 | return PreheaderBB; |
Chris Lattner | 650096a | 2003-02-27 20:27:08 +0000 | [diff] [blame] | 156 | } |
| 157 | |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 158 | /// Add the specified block, and all of its predecessors, to the specified set, |
| 159 | /// if it's not already in there. Stop predecessor traversal when we reach |
| 160 | /// StopBlock. |
| 161 | static void addBlockAndPredsToSet(BasicBlock *InputBB, BasicBlock *StopBlock, |
Chris Lattner | 8417052 | 2004-04-13 05:05:33 +0000 | [diff] [blame] | 162 | std::set<BasicBlock*> &Blocks) { |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 163 | SmallVector<BasicBlock *, 8> Worklist; |
| 164 | Worklist.push_back(InputBB); |
Devang Patel | 83a3adc | 2007-04-20 20:04:37 +0000 | [diff] [blame] | 165 | do { |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 166 | BasicBlock *BB = Worklist.pop_back_val(); |
Devang Patel | 83a3adc | 2007-04-20 20:04:37 +0000 | [diff] [blame] | 167 | if (Blocks.insert(BB).second && BB != StopBlock) |
| 168 | // If BB is not already processed and it is not a stop block then |
| 169 | // insert its predecessor in the work list |
Duncan P. N. Exon Smith | 6c99015 | 2014-07-21 17:06:51 +0000 | [diff] [blame] | 170 | for (pred_iterator I = pred_begin(BB), E = pred_end(BB); I != E; ++I) { |
| 171 | BasicBlock *WBB = *I; |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 172 | Worklist.push_back(WBB); |
Duncan P. N. Exon Smith | 6c99015 | 2014-07-21 17:06:51 +0000 | [diff] [blame] | 173 | } |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 174 | } while (!Worklist.empty()); |
Chris Lattner | 8417052 | 2004-04-13 05:05:33 +0000 | [diff] [blame] | 175 | } |
| 176 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 177 | /// The first part of loop-nestification is to find a PHI node that tells |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 178 | /// us how to partition the loops. |
Daniel Jasper | aec2fa3 | 2016-12-19 08:22:17 +0000 | [diff] [blame] | 179 | static PHINode *findPHIToPartitionLoops(Loop *L, DominatorTree *DT, |
| 180 | AssumptionCache *AC) { |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 181 | const DataLayout &DL = L->getHeader()->getModule()->getDataLayout(); |
Alkis Evlogimenos | 3ce42ec | 2004-09-28 02:40:37 +0000 | [diff] [blame] | 182 | for (BasicBlock::iterator I = L->getHeader()->begin(); isa<PHINode>(I); ) { |
| 183 | PHINode *PN = cast<PHINode>(I); |
Chris Lattner | a6e2281 | 2004-04-13 15:21:18 +0000 | [diff] [blame] | 184 | ++I; |
Daniel Berlin | 4d0fe64 | 2017-04-28 19:55:38 +0000 | [diff] [blame] | 185 | if (Value *V = SimplifyInstruction(PN, {DL, nullptr, DT, AC})) { |
Duncan Sands | 64f1c0d | 2011-01-02 13:38:21 +0000 | [diff] [blame] | 186 | // This is a degenerate PHI already, don't modify it! |
| 187 | PN->replaceAllUsesWith(V); |
Duncan Sands | 64f1c0d | 2011-01-02 13:38:21 +0000 | [diff] [blame] | 188 | PN->eraseFromParent(); |
| 189 | continue; |
| 190 | } |
Chris Lattner | e29d634 | 2004-10-17 21:22:38 +0000 | [diff] [blame] | 191 | |
| 192 | // Scan this PHI node looking for a use of the PHI node by itself. |
| 193 | for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) |
| 194 | if (PN->getIncomingValue(i) == PN && |
| 195 | L->contains(PN->getIncomingBlock(i))) |
| 196 | // We found something tasty to remove. |
| 197 | return PN; |
Chris Lattner | a6e2281 | 2004-04-13 15:21:18 +0000 | [diff] [blame] | 198 | } |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 199 | return nullptr; |
Chris Lattner | a6e2281 | 2004-04-13 15:21:18 +0000 | [diff] [blame] | 200 | } |
| 201 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 202 | /// If this loop has multiple backedges, try to pull one of them out into |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 203 | /// a nested loop. |
| 204 | /// |
| 205 | /// This is important for code that looks like |
Chris Lattner | 8417052 | 2004-04-13 05:05:33 +0000 | [diff] [blame] | 206 | /// this: |
| 207 | /// |
| 208 | /// Loop: |
| 209 | /// ... |
| 210 | /// br cond, Loop, Next |
| 211 | /// ... |
| 212 | /// br cond2, Loop, Out |
| 213 | /// |
| 214 | /// To identify this common case, we look at the PHI nodes in the header of the |
| 215 | /// loop. PHI nodes with unchanging values on one backedge correspond to values |
| 216 | /// that change in the "outer" loop, but not in the "inner" loop. |
| 217 | /// |
| 218 | /// If we are able to separate out a loop, return the new outer loop that was |
| 219 | /// created. |
| 220 | /// |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 221 | static Loop *separateNestedLoop(Loop *L, BasicBlock *Preheader, |
Chandler Carruth | 96ada25 | 2015-07-22 09:52:54 +0000 | [diff] [blame] | 222 | DominatorTree *DT, LoopInfo *LI, |
Daniel Jasper | aec2fa3 | 2016-12-19 08:22:17 +0000 | [diff] [blame] | 223 | ScalarEvolution *SE, bool PreserveLCSSA, |
| 224 | AssumptionCache *AC) { |
Andrew Trick | f771101 | 2012-03-20 21:24:52 +0000 | [diff] [blame] | 225 | // Don't try to separate loops without a preheader. |
Eli Friedman | 16ad290 | 2011-12-15 00:50:34 +0000 | [diff] [blame] | 226 | if (!Preheader) |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 227 | return nullptr; |
Eli Friedman | 16ad290 | 2011-12-15 00:50:34 +0000 | [diff] [blame] | 228 | |
| 229 | // The header is not a landing pad; preheader insertion should ensure this. |
David Majnemer | 654e130 | 2015-07-31 17:58:14 +0000 | [diff] [blame] | 230 | BasicBlock *Header = L->getHeader(); |
David Majnemer | eb518bd | 2015-08-04 08:21:40 +0000 | [diff] [blame] | 231 | assert(!Header->isEHPad() && "Can't insert backedge to EH pad"); |
Eli Friedman | 16ad290 | 2011-12-15 00:50:34 +0000 | [diff] [blame] | 232 | |
Daniel Jasper | aec2fa3 | 2016-12-19 08:22:17 +0000 | [diff] [blame] | 233 | PHINode *PN = findPHIToPartitionLoops(L, DT, AC); |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 234 | if (!PN) return nullptr; // No known way to partition. |
Chris Lattner | 8417052 | 2004-04-13 05:05:33 +0000 | [diff] [blame] | 235 | |
Chris Lattner | a6e2281 | 2004-04-13 15:21:18 +0000 | [diff] [blame] | 236 | // Pull out all predecessors that have varying values in the loop. This |
| 237 | // handles the case when a PHI node has multiple instances of itself as |
| 238 | // arguments. |
Chris Lattner | a5b1170 | 2008-04-21 01:28:02 +0000 | [diff] [blame] | 239 | SmallVector<BasicBlock*, 8> OuterLoopPreds; |
Andrew Trick | f771101 | 2012-03-20 21:24:52 +0000 | [diff] [blame] | 240 | for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) { |
Chris Lattner | a6e2281 | 2004-04-13 15:21:18 +0000 | [diff] [blame] | 241 | if (PN->getIncomingValue(i) != PN || |
Andrew Trick | f771101 | 2012-03-20 21:24:52 +0000 | [diff] [blame] | 242 | !L->contains(PN->getIncomingBlock(i))) { |
Craig Topper | 784929d | 2019-02-08 20:48:56 +0000 | [diff] [blame] | 243 | // We can't split indirect control flow edges. |
| 244 | if (PN->getIncomingBlock(i)->getTerminator()->isIndirectTerminator()) |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 245 | return nullptr; |
Chris Lattner | a6e2281 | 2004-04-13 15:21:18 +0000 | [diff] [blame] | 246 | OuterLoopPreds.push_back(PN->getIncomingBlock(i)); |
Andrew Trick | f771101 | 2012-03-20 21:24:52 +0000 | [diff] [blame] | 247 | } |
| 248 | } |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 249 | LLVM_DEBUG(dbgs() << "LoopSimplify: Splitting out a new outer loop\n"); |
Dan Gohman | 39917c7 | 2010-03-01 17:55:27 +0000 | [diff] [blame] | 250 | |
Dan Gohman | 487e250 | 2010-09-04 02:42:48 +0000 | [diff] [blame] | 251 | // If ScalarEvolution is around and knows anything about values in |
| 252 | // this loop, tell it to forget them, because we're about to |
| 253 | // substantially change it. |
| 254 | if (SE) |
| 255 | SE->forgetLoop(L); |
| 256 | |
Chandler Carruth | b5797b6 | 2015-01-18 09:21:15 +0000 | [diff] [blame] | 257 | BasicBlock *NewBB = SplitBlockPredecessors(Header, OuterLoopPreds, ".outer", |
Alina Sbirlea | ab6f84f7 | 2018-08-21 23:32:03 +0000 | [diff] [blame] | 258 | DT, LI, nullptr, PreserveLCSSA); |
Chris Lattner | 8417052 | 2004-04-13 05:05:33 +0000 | [diff] [blame] | 259 | |
Chris Lattner | 6bd6da4 | 2006-09-23 08:19:21 +0000 | [diff] [blame] | 260 | // Make sure that NewBB is put someplace intelligent, which doesn't mess up |
| 261 | // code layout too horribly. |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 262 | placeSplitBlockCarefully(NewBB, OuterLoopPreds, L); |
Andrew Trick | 9d8c2af | 2011-08-03 18:28:21 +0000 | [diff] [blame] | 263 | |
Chris Lattner | 8417052 | 2004-04-13 05:05:33 +0000 | [diff] [blame] | 264 | // Create the new outer loop. |
Sanjoy Das | def1729 | 2017-09-28 02:45:42 +0000 | [diff] [blame] | 265 | Loop *NewOuter = LI->AllocateLoop(); |
Chris Lattner | 8417052 | 2004-04-13 05:05:33 +0000 | [diff] [blame] | 266 | |
Chris Lattner | 8417052 | 2004-04-13 05:05:33 +0000 | [diff] [blame] | 267 | // Change the parent loop to use the outer loop as its child now. |
| 268 | if (Loop *Parent = L->getParentLoop()) |
| 269 | Parent->replaceChildLoopWith(L, NewOuter); |
| 270 | else |
Chris Lattner | cffbbee | 2006-02-14 22:34:08 +0000 | [diff] [blame] | 271 | LI->changeTopLevelLoop(L, NewOuter); |
Chris Lattner | 8417052 | 2004-04-13 05:05:33 +0000 | [diff] [blame] | 272 | |
Chris Lattner | 8417052 | 2004-04-13 05:05:33 +0000 | [diff] [blame] | 273 | // L is now a subloop of our outer loop. |
| 274 | NewOuter->addChildLoop(L); |
| 275 | |
Dan Gohman | 9007107 | 2008-06-22 20:18:58 +0000 | [diff] [blame] | 276 | for (Loop::block_iterator I = L->block_begin(), E = L->block_end(); |
| 277 | I != E; ++I) |
| 278 | NewOuter->addBlockEntry(*I); |
Chris Lattner | 8417052 | 2004-04-13 05:05:33 +0000 | [diff] [blame] | 279 | |
Dan Gohman | 3ddbc24 | 2009-09-08 15:45:00 +0000 | [diff] [blame] | 280 | // Now reset the header in L, which had been moved by |
| 281 | // SplitBlockPredecessors for the outer loop. |
| 282 | L->moveToHeader(Header); |
| 283 | |
Chris Lattner | 8417052 | 2004-04-13 05:05:33 +0000 | [diff] [blame] | 284 | // Determine which blocks should stay in L and which should be moved out to |
| 285 | // the Outer loop now. |
Chris Lattner | 8417052 | 2004-04-13 05:05:33 +0000 | [diff] [blame] | 286 | std::set<BasicBlock*> BlocksInL; |
Duncan P. N. Exon Smith | 6c99015 | 2014-07-21 17:06:51 +0000 | [diff] [blame] | 287 | for (pred_iterator PI=pred_begin(Header), E = pred_end(Header); PI!=E; ++PI) { |
| 288 | BasicBlock *P = *PI; |
Gabor Greif | f0821f3 | 2010-07-09 14:02:13 +0000 | [diff] [blame] | 289 | if (DT->dominates(Header, P)) |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 290 | addBlockAndPredsToSet(P, Header, BlocksInL); |
Gabor Greif | f0821f3 | 2010-07-09 14:02:13 +0000 | [diff] [blame] | 291 | } |
Chris Lattner | 8417052 | 2004-04-13 05:05:33 +0000 | [diff] [blame] | 292 | |
| 293 | // Scan all of the loop children of L, moving them to OuterLoop if they are |
| 294 | // not part of the inner loop. |
David Greene | 1e2a120 | 2007-06-29 02:53:16 +0000 | [diff] [blame] | 295 | const std::vector<Loop*> &SubLoops = L->getSubLoops(); |
| 296 | for (size_t I = 0; I != SubLoops.size(); ) |
| 297 | if (BlocksInL.count(SubLoops[I]->getHeader())) |
Chris Lattner | 8417052 | 2004-04-13 05:05:33 +0000 | [diff] [blame] | 298 | ++I; // Loop remains in L |
| 299 | else |
David Greene | 1e2a120 | 2007-06-29 02:53:16 +0000 | [diff] [blame] | 300 | NewOuter->addChildLoop(L->removeChildLoop(SubLoops.begin() + I)); |
Chris Lattner | 8417052 | 2004-04-13 05:05:33 +0000 | [diff] [blame] | 301 | |
Michael Zolotukhin | 6bc56d5 | 2016-07-20 01:55:27 +0000 | [diff] [blame] | 302 | SmallVector<BasicBlock *, 8> OuterLoopBlocks; |
| 303 | OuterLoopBlocks.push_back(NewBB); |
Chris Lattner | 8417052 | 2004-04-13 05:05:33 +0000 | [diff] [blame] | 304 | // Now that we know which blocks are in L and which need to be moved to |
| 305 | // OuterLoop, move any blocks that need it. |
| 306 | for (unsigned i = 0; i != L->getBlocks().size(); ++i) { |
| 307 | BasicBlock *BB = L->getBlocks()[i]; |
| 308 | if (!BlocksInL.count(BB)) { |
| 309 | // Move this block to the parent, updating the exit blocks sets |
| 310 | L->removeBlockFromLoop(BB); |
Michael Zolotukhin | 6bc56d5 | 2016-07-20 01:55:27 +0000 | [diff] [blame] | 311 | if ((*LI)[BB] == L) { |
Chris Lattner | cffbbee | 2006-02-14 22:34:08 +0000 | [diff] [blame] | 312 | LI->changeLoopFor(BB, NewOuter); |
Michael Zolotukhin | 6bc56d5 | 2016-07-20 01:55:27 +0000 | [diff] [blame] | 313 | OuterLoopBlocks.push_back(BB); |
| 314 | } |
Chris Lattner | 8417052 | 2004-04-13 05:05:33 +0000 | [diff] [blame] | 315 | --i; |
| 316 | } |
| 317 | } |
| 318 | |
Michael Zolotukhin | 6bc56d5 | 2016-07-20 01:55:27 +0000 | [diff] [blame] | 319 | // Split edges to exit blocks from the inner loop, if they emerged in the |
| 320 | // process of separating the outer one. |
Alina Sbirlea | 97468e9 | 2019-02-21 21:13:34 +0000 | [diff] [blame] | 321 | formDedicatedExitBlocks(L, DT, LI, nullptr, PreserveLCSSA); |
Michael Zolotukhin | 6bc56d5 | 2016-07-20 01:55:27 +0000 | [diff] [blame] | 322 | |
| 323 | if (PreserveLCSSA) { |
| 324 | // Fix LCSSA form for L. Some values, which previously were only used inside |
| 325 | // L, can now be used in NewOuter loop. We need to insert phi-nodes for them |
| 326 | // in corresponding exit blocks. |
Michael Zolotukhin | aae168f | 2016-08-09 22:44:56 +0000 | [diff] [blame] | 327 | // We don't need to form LCSSA recursively, because there cannot be uses |
| 328 | // inside a newly created loop of defs from inner loops as those would |
| 329 | // already be a use of an LCSSA phi node. |
| 330 | formLCSSA(*L, *DT, LI, SE); |
Michael Zolotukhin | 6bc56d5 | 2016-07-20 01:55:27 +0000 | [diff] [blame] | 331 | |
Igor Laevsky | 04423cf | 2016-10-11 13:37:22 +0000 | [diff] [blame] | 332 | assert(NewOuter->isRecursivelyLCSSAForm(*DT, *LI) && |
Michael Zolotukhin | 6bc56d5 | 2016-07-20 01:55:27 +0000 | [diff] [blame] | 333 | "LCSSA is broken after separating nested loops!"); |
| 334 | } |
| 335 | |
Chris Lattner | 8417052 | 2004-04-13 05:05:33 +0000 | [diff] [blame] | 336 | return NewOuter; |
| 337 | } |
| 338 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 339 | /// This method is called when the specified loop has more than one |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 340 | /// backedge in it. |
Chris Lattner | c4622a6 | 2003-10-13 00:37:13 +0000 | [diff] [blame] | 341 | /// |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 342 | /// If this occurs, revector all of these backedges to target a new basic block |
| 343 | /// and have that block branch to the loop header. This ensures that loops |
| 344 | /// have exactly one backedge. |
| 345 | static BasicBlock *insertUniqueBackedgeBlock(Loop *L, BasicBlock *Preheader, |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 346 | DominatorTree *DT, LoopInfo *LI) { |
Chris Lattner | c4622a6 | 2003-10-13 00:37:13 +0000 | [diff] [blame] | 347 | assert(L->getNumBackEdges() > 1 && "Must have > 1 backedge!"); |
| 348 | |
| 349 | // Get information about the loop |
Chris Lattner | c4622a6 | 2003-10-13 00:37:13 +0000 | [diff] [blame] | 350 | BasicBlock *Header = L->getHeader(); |
| 351 | Function *F = Header->getParent(); |
| 352 | |
Dan Gohman | 1ef784d | 2009-11-05 21:14:46 +0000 | [diff] [blame] | 353 | // Unique backedge insertion currently depends on having a preheader. |
| 354 | if (!Preheader) |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 355 | return nullptr; |
Dan Gohman | 1ef784d | 2009-11-05 21:14:46 +0000 | [diff] [blame] | 356 | |
David Majnemer | eb518bd | 2015-08-04 08:21:40 +0000 | [diff] [blame] | 357 | // The header is not an EH pad; preheader insertion should ensure this. |
| 358 | assert(!Header->isEHPad() && "Can't insert backedge to EH pad"); |
Eli Friedman | 16ad290 | 2011-12-15 00:50:34 +0000 | [diff] [blame] | 359 | |
Chris Lattner | c4622a6 | 2003-10-13 00:37:13 +0000 | [diff] [blame] | 360 | // Figure out which basic blocks contain back-edges to the loop header. |
| 361 | std::vector<BasicBlock*> BackedgeBlocks; |
Duncan P. N. Exon Smith | 6c99015 | 2014-07-21 17:06:51 +0000 | [diff] [blame] | 362 | for (pred_iterator I = pred_begin(Header), E = pred_end(Header); I != E; ++I){ |
| 363 | BasicBlock *P = *I; |
| 364 | |
Craig Topper | 784929d | 2019-02-08 20:48:56 +0000 | [diff] [blame] | 365 | // Indirect edges cannot be split, so we must fail if we find one. |
| 366 | if (P->getTerminator()->isIndirectTerminator()) |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 367 | return nullptr; |
Dan Gohman | aa445c0 | 2010-08-14 00:43:09 +0000 | [diff] [blame] | 368 | |
Gabor Greif | e7650c7 | 2010-07-09 16:26:41 +0000 | [diff] [blame] | 369 | if (P != Preheader) BackedgeBlocks.push_back(P); |
| 370 | } |
Chris Lattner | c4622a6 | 2003-10-13 00:37:13 +0000 | [diff] [blame] | 371 | |
| 372 | // Create and insert the new backedge block... |
Owen Anderson | 55f1c09 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 373 | BasicBlock *BEBlock = BasicBlock::Create(Header->getContext(), |
Alexey Samsonov | b7724b9 | 2015-06-29 21:30:14 +0000 | [diff] [blame] | 374 | Header->getName() + ".backedge", F); |
Gabor Greif | e9ecc68 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 375 | BranchInst *BETerminator = BranchInst::Create(Header, BEBlock); |
Alexey Samsonov | b7724b9 | 2015-06-29 21:30:14 +0000 | [diff] [blame] | 376 | BETerminator->setDebugLoc(Header->getFirstNonPHI()->getDebugLoc()); |
Chris Lattner | c4622a6 | 2003-10-13 00:37:13 +0000 | [diff] [blame] | 377 | |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 378 | LLVM_DEBUG(dbgs() << "LoopSimplify: Inserting unique backedge block " |
| 379 | << BEBlock->getName() << "\n"); |
Dan Gohman | 39917c7 | 2010-03-01 17:55:27 +0000 | [diff] [blame] | 380 | |
Chris Lattner | c4622a6 | 2003-10-13 00:37:13 +0000 | [diff] [blame] | 381 | // Move the new backedge block to right after the last backedge block. |
Duncan P. N. Exon Smith | 5b4c837 | 2015-10-13 02:39:05 +0000 | [diff] [blame] | 382 | Function::iterator InsertPos = ++BackedgeBlocks.back()->getIterator(); |
Chris Lattner | c4622a6 | 2003-10-13 00:37:13 +0000 | [diff] [blame] | 383 | F->getBasicBlockList().splice(InsertPos, F->getBasicBlockList(), BEBlock); |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 384 | |
Chris Lattner | c4622a6 | 2003-10-13 00:37:13 +0000 | [diff] [blame] | 385 | // Now that the block has been inserted into the function, create PHI nodes in |
| 386 | // the backedge block which correspond to any PHI nodes in the header block. |
Alkis Evlogimenos | 3ce42ec | 2004-09-28 02:40:37 +0000 | [diff] [blame] | 387 | for (BasicBlock::iterator I = Header->begin(); isa<PHINode>(I); ++I) { |
| 388 | PHINode *PN = cast<PHINode>(I); |
Jay Foad | 5213134 | 2011-03-30 11:28:46 +0000 | [diff] [blame] | 389 | PHINode *NewPN = PHINode::Create(PN->getType(), BackedgeBlocks.size(), |
| 390 | PN->getName()+".be", BETerminator); |
Chris Lattner | c4622a6 | 2003-10-13 00:37:13 +0000 | [diff] [blame] | 391 | |
| 392 | // Loop over the PHI node, moving all entries except the one for the |
| 393 | // preheader over to the new PHI node. |
| 394 | unsigned PreheaderIdx = ~0U; |
| 395 | bool HasUniqueIncomingValue = true; |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 396 | Value *UniqueValue = nullptr; |
Chris Lattner | c4622a6 | 2003-10-13 00:37:13 +0000 | [diff] [blame] | 397 | for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) { |
| 398 | BasicBlock *IBB = PN->getIncomingBlock(i); |
| 399 | Value *IV = PN->getIncomingValue(i); |
| 400 | if (IBB == Preheader) { |
| 401 | PreheaderIdx = i; |
| 402 | } else { |
| 403 | NewPN->addIncoming(IV, IBB); |
| 404 | if (HasUniqueIncomingValue) { |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 405 | if (!UniqueValue) |
Chris Lattner | c4622a6 | 2003-10-13 00:37:13 +0000 | [diff] [blame] | 406 | UniqueValue = IV; |
| 407 | else if (UniqueValue != IV) |
| 408 | HasUniqueIncomingValue = false; |
| 409 | } |
| 410 | } |
| 411 | } |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 412 | |
Chris Lattner | c4622a6 | 2003-10-13 00:37:13 +0000 | [diff] [blame] | 413 | // Delete all of the incoming values from the old PN except the preheader's |
| 414 | assert(PreheaderIdx != ~0U && "PHI has no preheader entry??"); |
| 415 | if (PreheaderIdx != 0) { |
| 416 | PN->setIncomingValue(0, PN->getIncomingValue(PreheaderIdx)); |
| 417 | PN->setIncomingBlock(0, PN->getIncomingBlock(PreheaderIdx)); |
| 418 | } |
Chris Lattner | d8e2018 | 2005-01-29 00:39:08 +0000 | [diff] [blame] | 419 | // Nuke all entries except the zero'th. |
| 420 | for (unsigned i = 0, e = PN->getNumIncomingValues()-1; i != e; ++i) |
| 421 | PN->removeIncomingValue(e-i, false); |
Chris Lattner | c4622a6 | 2003-10-13 00:37:13 +0000 | [diff] [blame] | 422 | |
| 423 | // Finally, add the newly constructed PHI node as the entry for the BEBlock. |
| 424 | PN->addIncoming(NewPN, BEBlock); |
| 425 | |
| 426 | // As an optimization, if all incoming values in the new PhiNode (which is a |
| 427 | // subset of the incoming values of the old PHI node) have the same value, |
| 428 | // eliminate the PHI Node. |
| 429 | if (HasUniqueIncomingValue) { |
| 430 | NewPN->replaceAllUsesWith(UniqueValue); |
| 431 | BEBlock->getInstList().erase(NewPN); |
| 432 | } |
| 433 | } |
| 434 | |
| 435 | // Now that all of the PHI nodes have been inserted and adjusted, modify the |
Florian Hahn | 77382be | 2016-11-18 13:12:07 +0000 | [diff] [blame] | 436 | // backedge blocks to jump to the BEBlock instead of the header. |
| 437 | // If one of the backedges has llvm.loop metadata attached, we remove |
| 438 | // it from the backedge and add it to BEBlock. |
| 439 | unsigned LoopMDKind = BEBlock->getContext().getMDKindID("llvm.loop"); |
| 440 | MDNode *LoopMD = nullptr; |
Chris Lattner | c4622a6 | 2003-10-13 00:37:13 +0000 | [diff] [blame] | 441 | for (unsigned i = 0, e = BackedgeBlocks.size(); i != e; ++i) { |
Chandler Carruth | edb12a8 | 2018-10-15 10:04:59 +0000 | [diff] [blame] | 442 | Instruction *TI = BackedgeBlocks[i]->getTerminator(); |
Florian Hahn | 77382be | 2016-11-18 13:12:07 +0000 | [diff] [blame] | 443 | if (!LoopMD) |
| 444 | LoopMD = TI->getMetadata(LoopMDKind); |
| 445 | TI->setMetadata(LoopMDKind, nullptr); |
Chris Lattner | c4622a6 | 2003-10-13 00:37:13 +0000 | [diff] [blame] | 446 | for (unsigned Op = 0, e = TI->getNumSuccessors(); Op != e; ++Op) |
| 447 | if (TI->getSuccessor(Op) == Header) |
| 448 | TI->setSuccessor(Op, BEBlock); |
| 449 | } |
Florian Hahn | 77382be | 2016-11-18 13:12:07 +0000 | [diff] [blame] | 450 | BEBlock->getTerminator()->setMetadata(LoopMDKind, LoopMD); |
Chris Lattner | c4622a6 | 2003-10-13 00:37:13 +0000 | [diff] [blame] | 451 | |
| 452 | //===--- Update all analyses which we must preserve now -----------------===// |
| 453 | |
| 454 | // Update Loop Information - we know that this block is now in the current |
| 455 | // loop and all parent loops. |
Chandler Carruth | 691addc | 2015-01-18 01:25:51 +0000 | [diff] [blame] | 456 | L->addBasicBlockToLoop(BEBlock, *LI); |
Chris Lattner | c4622a6 | 2003-10-13 00:37:13 +0000 | [diff] [blame] | 457 | |
Devang Patel | d5258a23 | 2007-06-21 17:23:45 +0000 | [diff] [blame] | 458 | // Update dominator information |
| 459 | DT->splitBlock(BEBlock); |
Dan Gohman | 1ef784d | 2009-11-05 21:14:46 +0000 | [diff] [blame] | 460 | |
| 461 | return BEBlock; |
| 462 | } |
| 463 | |
Adrian Prantl | 5f8f34e4 | 2018-05-01 15:54:18 +0000 | [diff] [blame] | 464 | /// Simplify one loop and queue further loops for simplification. |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 465 | static bool simplifyOneLoop(Loop *L, SmallVectorImpl<Loop *> &Worklist, |
Chandler Carruth | 96ada25 | 2015-07-22 09:52:54 +0000 | [diff] [blame] | 466 | DominatorTree *DT, LoopInfo *LI, |
Daniel Jasper | aec2fa3 | 2016-12-19 08:22:17 +0000 | [diff] [blame] | 467 | ScalarEvolution *SE, AssumptionCache *AC, |
| 468 | bool PreserveLCSSA) { |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 469 | bool Changed = false; |
| 470 | ReprocessLoop: |
| 471 | |
| 472 | // Check to see that no blocks (other than the header) in this loop have |
| 473 | // predecessors that are not in the loop. This is not valid for natural |
| 474 | // loops, but can occur if the blocks are unreachable. Since they are |
| 475 | // unreachable we can just shamelessly delete those CFG edges! |
| 476 | for (Loop::block_iterator BB = L->block_begin(), E = L->block_end(); |
| 477 | BB != E; ++BB) { |
| 478 | if (*BB == L->getHeader()) continue; |
| 479 | |
| 480 | SmallPtrSet<BasicBlock*, 4> BadPreds; |
Duncan P. N. Exon Smith | 6c99015 | 2014-07-21 17:06:51 +0000 | [diff] [blame] | 481 | for (pred_iterator PI = pred_begin(*BB), |
| 482 | PE = pred_end(*BB); PI != PE; ++PI) { |
| 483 | BasicBlock *P = *PI; |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 484 | if (!L->contains(P)) |
| 485 | BadPreds.insert(P); |
| 486 | } |
| 487 | |
| 488 | // Delete each unique out-of-loop (and thus dead) predecessor. |
Craig Topper | 4627679 | 2014-08-24 23:23:06 +0000 | [diff] [blame] | 489 | for (BasicBlock *P : BadPreds) { |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 490 | |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 491 | LLVM_DEBUG(dbgs() << "LoopSimplify: Deleting edge from dead predecessor " |
| 492 | << P->getName() << "\n"); |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 493 | |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 494 | // Zap the dead pred's terminator and replace it with unreachable. |
Chandler Carruth | edb12a8 | 2018-10-15 10:04:59 +0000 | [diff] [blame] | 495 | Instruction *TI = P->getTerminator(); |
Michael Zolotukhin | 5020c99 | 2016-11-18 21:01:12 +0000 | [diff] [blame] | 496 | changeToUnreachable(TI, /*UseLLVMTrap=*/false, PreserveLCSSA); |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 497 | Changed = true; |
| 498 | } |
| 499 | } |
| 500 | |
| 501 | // If there are exiting blocks with branches on undef, resolve the undef in |
| 502 | // the direction which will exit the loop. This will help simplify loop |
| 503 | // trip count computations. |
| 504 | SmallVector<BasicBlock*, 8> ExitingBlocks; |
| 505 | L->getExitingBlocks(ExitingBlocks); |
Benjamin Kramer | 135f735 | 2016-06-26 12:28:59 +0000 | [diff] [blame] | 506 | for (BasicBlock *ExitingBlock : ExitingBlocks) |
| 507 | if (BranchInst *BI = dyn_cast<BranchInst>(ExitingBlock->getTerminator())) |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 508 | if (BI->isConditional()) { |
| 509 | if (UndefValue *Cond = dyn_cast<UndefValue>(BI->getCondition())) { |
| 510 | |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 511 | LLVM_DEBUG(dbgs() |
| 512 | << "LoopSimplify: Resolving \"br i1 undef\" to exit in " |
| 513 | << ExitingBlock->getName() << "\n"); |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 514 | |
| 515 | BI->setCondition(ConstantInt::get(Cond->getType(), |
| 516 | !L->contains(BI->getSuccessor(0)))); |
| 517 | |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 518 | Changed = true; |
| 519 | } |
| 520 | } |
| 521 | |
| 522 | // Does the loop already have a preheader? If so, don't insert one. |
| 523 | BasicBlock *Preheader = L->getLoopPreheader(); |
| 524 | if (!Preheader) { |
Justin Bogner | 843fb20 | 2015-12-15 19:40:57 +0000 | [diff] [blame] | 525 | Preheader = InsertPreheaderForLoop(L, DT, LI, PreserveLCSSA); |
Chandler Carruth | 4a00088 | 2017-06-25 22:45:31 +0000 | [diff] [blame] | 526 | if (Preheader) |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 527 | Changed = true; |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 528 | } |
| 529 | |
| 530 | // Next, check to make sure that all exit nodes of the loop only have |
| 531 | // predecessors that are inside of the loop. This check guarantees that the |
| 532 | // loop preheader/header will dominate the exit blocks. If the exit block has |
| 533 | // predecessors from outside of the loop, split the edge now. |
Alina Sbirlea | 97468e9 | 2019-02-21 21:13:34 +0000 | [diff] [blame] | 534 | if (formDedicatedExitBlocks(L, DT, LI, nullptr, PreserveLCSSA)) |
Chandler Carruth | 4a00088 | 2017-06-25 22:45:31 +0000 | [diff] [blame] | 535 | Changed = true; |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 536 | |
| 537 | // If the header has more than two predecessors at this point (from the |
| 538 | // preheader and from multiple backedges), we must adjust the loop. |
| 539 | BasicBlock *LoopLatch = L->getLoopLatch(); |
| 540 | if (!LoopLatch) { |
| 541 | // If this is really a nested loop, rip it out into a child loop. Don't do |
| 542 | // this for loops with a giant number of backedges, just factor them into a |
| 543 | // common backedge instead. |
| 544 | if (L->getNumBackEdges() < 8) { |
Justin Bogner | 843fb20 | 2015-12-15 19:40:57 +0000 | [diff] [blame] | 545 | if (Loop *OuterL = |
Daniel Jasper | aec2fa3 | 2016-12-19 08:22:17 +0000 | [diff] [blame] | 546 | separateNestedLoop(L, Preheader, DT, LI, SE, PreserveLCSSA, AC)) { |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 547 | ++NumNested; |
| 548 | // Enqueue the outer loop as it should be processed next in our |
| 549 | // depth-first nest walk. |
| 550 | Worklist.push_back(OuterL); |
| 551 | |
| 552 | // This is a big restructuring change, reprocess the whole loop. |
| 553 | Changed = true; |
| 554 | // GCC doesn't tail recursion eliminate this. |
| 555 | // FIXME: It isn't clear we can't rely on LLVM to TRE this. |
| 556 | goto ReprocessLoop; |
| 557 | } |
| 558 | } |
| 559 | |
| 560 | // If we either couldn't, or didn't want to, identify nesting of the loops, |
| 561 | // insert a new block that all backedges target, then make it jump to the |
| 562 | // loop header. |
Chandler Carruth | 96ada25 | 2015-07-22 09:52:54 +0000 | [diff] [blame] | 563 | LoopLatch = insertUniqueBackedgeBlock(L, Preheader, DT, LI); |
Chandler Carruth | 4a00088 | 2017-06-25 22:45:31 +0000 | [diff] [blame] | 564 | if (LoopLatch) |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 565 | Changed = true; |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 566 | } |
| 567 | |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 568 | const DataLayout &DL = L->getHeader()->getModule()->getDataLayout(); |
| 569 | |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 570 | // Scan over the PHI nodes in the loop header. Since they now have only two |
| 571 | // incoming values (the loop is canonicalized), we may have simplified the PHI |
| 572 | // down to 'X = phi [X, Y]', which should be replaced with 'Y'. |
| 573 | PHINode *PN; |
| 574 | for (BasicBlock::iterator I = L->getHeader()->begin(); |
| 575 | (PN = dyn_cast<PHINode>(I++)); ) |
Daniel Berlin | 4d0fe64 | 2017-04-28 19:55:38 +0000 | [diff] [blame] | 576 | if (Value *V = SimplifyInstruction(PN, {DL, nullptr, DT, AC})) { |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 577 | if (SE) SE->forgetValue(PN); |
Michael Zolotukhin | 1a554be | 2016-09-27 21:03:45 +0000 | [diff] [blame] | 578 | if (!PreserveLCSSA || LI->replacementPreservesLCSSAForm(PN, V)) { |
| 579 | PN->replaceAllUsesWith(V); |
| 580 | PN->eraseFromParent(); |
| 581 | } |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 582 | } |
| 583 | |
| 584 | // If this loop has multiple exits and the exits all go to the same |
| 585 | // block, attempt to merge the exits. This helps several passes, such |
| 586 | // as LoopRotation, which do not support loops with multiple exits. |
| 587 | // SimplifyCFG also does this (and this code uses the same utility |
| 588 | // function), however this code is loop-aware, where SimplifyCFG is |
| 589 | // not. That gives it the advantage of being able to hoist |
| 590 | // loop-invariant instructions out of the way to open up more |
| 591 | // opportunities, and the disadvantage of having the responsibility |
| 592 | // to preserve dominator information. |
Chandler Carruth | 4a00088 | 2017-06-25 22:45:31 +0000 | [diff] [blame] | 593 | auto HasUniqueExitBlock = [&]() { |
| 594 | BasicBlock *UniqueExit = nullptr; |
| 595 | for (auto *ExitingBB : ExitingBlocks) |
| 596 | for (auto *SuccBB : successors(ExitingBB)) { |
| 597 | if (L->contains(SuccBB)) |
| 598 | continue; |
| 599 | |
| 600 | if (!UniqueExit) |
| 601 | UniqueExit = SuccBB; |
| 602 | else if (UniqueExit != SuccBB) |
| 603 | return false; |
| 604 | } |
| 605 | |
| 606 | return true; |
| 607 | }; |
| 608 | if (HasUniqueExitBlock()) { |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 609 | for (unsigned i = 0, e = ExitingBlocks.size(); i != e; ++i) { |
| 610 | BasicBlock *ExitingBlock = ExitingBlocks[i]; |
| 611 | if (!ExitingBlock->getSinglePredecessor()) continue; |
| 612 | BranchInst *BI = dyn_cast<BranchInst>(ExitingBlock->getTerminator()); |
| 613 | if (!BI || !BI->isConditional()) continue; |
| 614 | CmpInst *CI = dyn_cast<CmpInst>(BI->getCondition()); |
| 615 | if (!CI || CI->getParent() != ExitingBlock) continue; |
| 616 | |
| 617 | // Attempt to hoist out all instructions except for the |
| 618 | // comparison and the branch. |
| 619 | bool AllInvariant = true; |
| 620 | bool AnyInvariant = false; |
Florian Hahn | 8fe04ad | 2018-04-30 19:19:36 +0000 | [diff] [blame] | 621 | for (auto I = ExitingBlock->instructionsWithoutDebug().begin(); &*I != BI; ) { |
Duncan P. N. Exon Smith | 5b4c837 | 2015-10-13 02:39:05 +0000 | [diff] [blame] | 622 | Instruction *Inst = &*I++; |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 623 | if (Inst == CI) |
| 624 | continue; |
| 625 | if (!L->makeLoopInvariant(Inst, AnyInvariant, |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 626 | Preheader ? Preheader->getTerminator() |
| 627 | : nullptr)) { |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 628 | AllInvariant = false; |
| 629 | break; |
| 630 | } |
| 631 | } |
| 632 | if (AnyInvariant) { |
| 633 | Changed = true; |
| 634 | // The loop disposition of all SCEV expressions that depend on any |
| 635 | // hoisted values have also changed. |
| 636 | if (SE) |
| 637 | SE->forgetLoopDispositions(L); |
| 638 | } |
| 639 | if (!AllInvariant) continue; |
| 640 | |
| 641 | // The block has now been cleared of all instructions except for |
| 642 | // a comparison and a conditional branch. SimplifyCFG may be able |
| 643 | // to fold it now. |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 644 | if (!FoldBranchToCommonDest(BI)) |
| 645 | continue; |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 646 | |
| 647 | // Success. The block is now dead, so remove it from the loop, |
| 648 | // update the dominator tree and delete it. |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 649 | LLVM_DEBUG(dbgs() << "LoopSimplify: Eliminating exiting block " |
| 650 | << ExitingBlock->getName() << "\n"); |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 651 | |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 652 | assert(pred_begin(ExitingBlock) == pred_end(ExitingBlock)); |
| 653 | Changed = true; |
| 654 | LI->removeBlock(ExitingBlock); |
| 655 | |
| 656 | DomTreeNode *Node = DT->getNode(ExitingBlock); |
| 657 | const std::vector<DomTreeNodeBase<BasicBlock> *> &Children = |
| 658 | Node->getChildren(); |
| 659 | while (!Children.empty()) { |
| 660 | DomTreeNode *Child = Children.front(); |
| 661 | DT->changeImmediateDominator(Child, Node->getIDom()); |
| 662 | } |
| 663 | DT->eraseNode(ExitingBlock); |
| 664 | |
Michael Zolotukhin | 8e7e767 | 2016-06-08 23:13:21 +0000 | [diff] [blame] | 665 | BI->getSuccessor(0)->removePredecessor( |
Max Kazantsev | 20b9189 | 2019-02-12 07:09:29 +0000 | [diff] [blame] | 666 | ExitingBlock, /* KeepOneInputPHIs */ PreserveLCSSA); |
Michael Zolotukhin | 8e7e767 | 2016-06-08 23:13:21 +0000 | [diff] [blame] | 667 | BI->getSuccessor(1)->removePredecessor( |
Max Kazantsev | 20b9189 | 2019-02-12 07:09:29 +0000 | [diff] [blame] | 668 | ExitingBlock, /* KeepOneInputPHIs */ PreserveLCSSA); |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 669 | ExitingBlock->eraseFromParent(); |
| 670 | } |
| 671 | } |
| 672 | |
Max Kazantsev | b1137c4 | 2018-04-23 10:32:37 +0000 | [diff] [blame] | 673 | // Changing exit conditions for blocks may affect exit counts of this loop and |
| 674 | // any of its paretns, so we must invalidate the entire subtree if we've made |
| 675 | // any changes. |
| 676 | if (Changed && SE) |
| 677 | SE->forgetTopmostLoop(L); |
| 678 | |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 679 | return Changed; |
| 680 | } |
| 681 | |
Justin Bogner | 843fb20 | 2015-12-15 19:40:57 +0000 | [diff] [blame] | 682 | bool llvm::simplifyLoop(Loop *L, DominatorTree *DT, LoopInfo *LI, |
Daniel Jasper | aec2fa3 | 2016-12-19 08:22:17 +0000 | [diff] [blame] | 683 | ScalarEvolution *SE, AssumptionCache *AC, |
| 684 | bool PreserveLCSSA) { |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 685 | bool Changed = false; |
| 686 | |
Chandler Carruth | 7fd29ce | 2017-01-21 04:16:53 +0000 | [diff] [blame] | 687 | #ifndef NDEBUG |
| 688 | // If we're asked to preserve LCSSA, the loop nest needs to start in LCSSA |
| 689 | // form. |
| 690 | if (PreserveLCSSA) { |
| 691 | assert(DT && "DT not available."); |
| 692 | assert(LI && "LI not available."); |
| 693 | assert(L->isRecursivelyLCSSAForm(*DT, *LI) && |
| 694 | "Requested to preserve LCSSA, but it's already broken."); |
| 695 | } |
| 696 | #endif |
| 697 | |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 698 | // Worklist maintains our depth-first queue of loops in this nest to process. |
| 699 | SmallVector<Loop *, 4> Worklist; |
| 700 | Worklist.push_back(L); |
| 701 | |
| 702 | // Walk the worklist from front to back, pushing newly found sub loops onto |
| 703 | // the back. This will let us process loops from back to front in depth-first |
| 704 | // order. We can use this simple process because loops form a tree. |
| 705 | for (unsigned Idx = 0; Idx != Worklist.size(); ++Idx) { |
| 706 | Loop *L2 = Worklist[Idx]; |
Benjamin Kramer | 6cd780f | 2015-02-17 15:29:18 +0000 | [diff] [blame] | 707 | Worklist.append(L2->begin(), L2->end()); |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 708 | } |
| 709 | |
| 710 | while (!Worklist.empty()) |
Justin Bogner | 843fb20 | 2015-12-15 19:40:57 +0000 | [diff] [blame] | 711 | Changed |= simplifyOneLoop(Worklist.pop_back_val(), Worklist, DT, LI, SE, |
Daniel Jasper | aec2fa3 | 2016-12-19 08:22:17 +0000 | [diff] [blame] | 712 | AC, PreserveLCSSA); |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 713 | |
| 714 | return Changed; |
| 715 | } |
| 716 | |
| 717 | namespace { |
| 718 | struct LoopSimplify : public FunctionPass { |
| 719 | static char ID; // Pass identification, replacement for typeid |
| 720 | LoopSimplify() : FunctionPass(ID) { |
| 721 | initializeLoopSimplifyPass(*PassRegistry::getPassRegistry()); |
| 722 | } |
| 723 | |
Craig Topper | 3e4c697 | 2014-03-05 09:10:37 +0000 | [diff] [blame] | 724 | bool runOnFunction(Function &F) override; |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 725 | |
Craig Topper | 3e4c697 | 2014-03-05 09:10:37 +0000 | [diff] [blame] | 726 | void getAnalysisUsage(AnalysisUsage &AU) const override { |
Daniel Jasper | aec2fa3 | 2016-12-19 08:22:17 +0000 | [diff] [blame] | 727 | AU.addRequired<AssumptionCacheTracker>(); |
| 728 | |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 729 | // We need loop information to identify the loops... |
| 730 | AU.addRequired<DominatorTreeWrapperPass>(); |
| 731 | AU.addPreserved<DominatorTreeWrapperPass>(); |
| 732 | |
Chandler Carruth | 4f8f307 | 2015-01-17 14:16:18 +0000 | [diff] [blame] | 733 | AU.addRequired<LoopInfoWrapperPass>(); |
| 734 | AU.addPreserved<LoopInfoWrapperPass>(); |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 735 | |
Chandler Carruth | 7b560d4 | 2015-09-09 17:55:00 +0000 | [diff] [blame] | 736 | AU.addPreserved<BasicAAWrapperPass>(); |
| 737 | AU.addPreserved<AAResultsWrapperPass>(); |
| 738 | AU.addPreserved<GlobalsAAWrapperPass>(); |
Chandler Carruth | 2f1fd16 | 2015-08-17 02:08:17 +0000 | [diff] [blame] | 739 | AU.addPreserved<ScalarEvolutionWrapperPass>(); |
Chandler Carruth | 7b560d4 | 2015-09-09 17:55:00 +0000 | [diff] [blame] | 740 | AU.addPreserved<SCEVAAWrapperPass>(); |
Michael Zolotukhin | 8e7e767 | 2016-06-08 23:13:21 +0000 | [diff] [blame] | 741 | AU.addPreservedID(LCSSAID); |
Chandler Carruth | 49c2219 | 2016-05-12 22:19:39 +0000 | [diff] [blame] | 742 | AU.addPreserved<DependenceAnalysisWrapperPass>(); |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 743 | AU.addPreservedID(BreakCriticalEdgesID); // No critical edges added. |
Philip Reames | 37104d7 | 2019-04-22 17:13:43 +0000 | [diff] [blame^] | 744 | AU.addPreserved<BranchProbabilityInfoWrapperPass>(); |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 745 | } |
| 746 | |
| 747 | /// verifyAnalysis() - Verify LoopSimplifyForm's guarantees. |
Craig Topper | 3e4c697 | 2014-03-05 09:10:37 +0000 | [diff] [blame] | 748 | void verifyAnalysis() const override; |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 749 | }; |
Alexander Kornienko | f00654e | 2015-06-23 09:49:53 +0000 | [diff] [blame] | 750 | } |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 751 | |
| 752 | char LoopSimplify::ID = 0; |
| 753 | INITIALIZE_PASS_BEGIN(LoopSimplify, "loop-simplify", |
Mark Heffernan | 2d393ea | 2014-11-04 23:02:09 +0000 | [diff] [blame] | 754 | "Canonicalize natural loops", false, false) |
Daniel Jasper | aec2fa3 | 2016-12-19 08:22:17 +0000 | [diff] [blame] | 755 | INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker) |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 756 | INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass) |
Chandler Carruth | 4f8f307 | 2015-01-17 14:16:18 +0000 | [diff] [blame] | 757 | INITIALIZE_PASS_DEPENDENCY(LoopInfoWrapperPass) |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 758 | INITIALIZE_PASS_END(LoopSimplify, "loop-simplify", |
Mark Heffernan | 2d393ea | 2014-11-04 23:02:09 +0000 | [diff] [blame] | 759 | "Canonicalize natural loops", false, false) |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 760 | |
| 761 | // Publicly exposed interface to pass... |
| 762 | char &llvm::LoopSimplifyID = LoopSimplify::ID; |
| 763 | Pass *llvm::createLoopSimplifyPass() { return new LoopSimplify(); } |
| 764 | |
Michael Zolotukhin | a93fec0 | 2014-04-29 07:35:33 +0000 | [diff] [blame] | 765 | /// runOnFunction - Run down all loops in the CFG (recursively, but we could do |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 766 | /// it in any convenient order) inserting preheaders... |
| 767 | /// |
| 768 | bool LoopSimplify::runOnFunction(Function &F) { |
| 769 | bool Changed = false; |
Davide Italiano | 9d305d7 | 2016-06-15 18:51:25 +0000 | [diff] [blame] | 770 | LoopInfo *LI = &getAnalysis<LoopInfoWrapperPass>().getLoopInfo(); |
| 771 | DominatorTree *DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree(); |
Chandler Carruth | 2f1fd16 | 2015-08-17 02:08:17 +0000 | [diff] [blame] | 772 | auto *SEWP = getAnalysisIfAvailable<ScalarEvolutionWrapperPass>(); |
Davide Italiano | 9d305d7 | 2016-06-15 18:51:25 +0000 | [diff] [blame] | 773 | ScalarEvolution *SE = SEWP ? &SEWP->getSE() : nullptr; |
Daniel Jasper | aec2fa3 | 2016-12-19 08:22:17 +0000 | [diff] [blame] | 774 | AssumptionCache *AC = |
| 775 | &getAnalysis<AssumptionCacheTracker>().getAssumptionCache(F); |
Davide Italiano | 9d305d7 | 2016-06-15 18:51:25 +0000 | [diff] [blame] | 776 | |
Justin Bogner | 843fb20 | 2015-12-15 19:40:57 +0000 | [diff] [blame] | 777 | bool PreserveLCSSA = mustPreserveAnalysisID(LCSSAID); |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 778 | |
| 779 | // Simplify each loop nest in the function. |
| 780 | for (LoopInfo::iterator I = LI->begin(), E = LI->end(); I != E; ++I) |
Daniel Jasper | aec2fa3 | 2016-12-19 08:22:17 +0000 | [diff] [blame] | 781 | Changed |= simplifyLoop(*I, DT, LI, SE, AC, PreserveLCSSA); |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 782 | |
Michael Zolotukhin | 8e7e767 | 2016-06-08 23:13:21 +0000 | [diff] [blame] | 783 | #ifndef NDEBUG |
| 784 | if (PreserveLCSSA) { |
Igor Laevsky | 04423cf | 2016-10-11 13:37:22 +0000 | [diff] [blame] | 785 | bool InLCSSA = all_of( |
| 786 | *LI, [&](Loop *L) { return L->isRecursivelyLCSSAForm(*DT, *LI); }); |
Michael Zolotukhin | 8e7e767 | 2016-06-08 23:13:21 +0000 | [diff] [blame] | 787 | assert(InLCSSA && "LCSSA is broken after loop-simplify."); |
| 788 | } |
| 789 | #endif |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 790 | return Changed; |
| 791 | } |
| 792 | |
Davide Italiano | cd96cfd | 2016-07-09 03:03:01 +0000 | [diff] [blame] | 793 | PreservedAnalyses LoopSimplifyPass::run(Function &F, |
Sean Silva | 36e0d01 | 2016-08-09 00:28:15 +0000 | [diff] [blame] | 794 | FunctionAnalysisManager &AM) { |
Davide Italiano | cd96cfd | 2016-07-09 03:03:01 +0000 | [diff] [blame] | 795 | bool Changed = false; |
| 796 | LoopInfo *LI = &AM.getResult<LoopAnalysis>(F); |
| 797 | DominatorTree *DT = &AM.getResult<DominatorTreeAnalysis>(F); |
| 798 | ScalarEvolution *SE = AM.getCachedResult<ScalarEvolutionAnalysis>(F); |
Daniel Jasper | aec2fa3 | 2016-12-19 08:22:17 +0000 | [diff] [blame] | 799 | AssumptionCache *AC = &AM.getResult<AssumptionAnalysis>(F); |
Davide Italiano | cd96cfd | 2016-07-09 03:03:01 +0000 | [diff] [blame] | 800 | |
Chandler Carruth | 7fd29ce | 2017-01-21 04:16:53 +0000 | [diff] [blame] | 801 | // Note that we don't preserve LCSSA in the new PM, if you need it run LCSSA |
| 802 | // after simplifying the loops. |
Davide Italiano | cd96cfd | 2016-07-09 03:03:01 +0000 | [diff] [blame] | 803 | for (LoopInfo::iterator I = LI->begin(), E = LI->end(); I != E; ++I) |
Chandler Carruth | 7fd29ce | 2017-01-21 04:16:53 +0000 | [diff] [blame] | 804 | Changed |= simplifyLoop(*I, DT, LI, SE, AC, /*PreserveLCSSA*/ false); |
Davide Italiano | cd96cfd | 2016-07-09 03:03:01 +0000 | [diff] [blame] | 805 | |
| 806 | if (!Changed) |
| 807 | return PreservedAnalyses::all(); |
Chandler Carruth | 6acdca7 | 2017-01-24 12:55:57 +0000 | [diff] [blame] | 808 | |
Davide Italiano | cd96cfd | 2016-07-09 03:03:01 +0000 | [diff] [blame] | 809 | PreservedAnalyses PA; |
Davide Italiano | cd96cfd | 2016-07-09 03:03:01 +0000 | [diff] [blame] | 810 | PA.preserve<DominatorTreeAnalysis>(); |
| 811 | PA.preserve<LoopAnalysis>(); |
| 812 | PA.preserve<BasicAA>(); |
| 813 | PA.preserve<GlobalsAA>(); |
| 814 | PA.preserve<SCEVAA>(); |
| 815 | PA.preserve<ScalarEvolutionAnalysis>(); |
| 816 | PA.preserve<DependenceAnalysis>(); |
Philip Reames | 37104d7 | 2019-04-22 17:13:43 +0000 | [diff] [blame^] | 817 | // BPI maps conditional terminators to probabilities, LoopSimplify can insert |
| 818 | // blocks, but it does so only by splitting existing blocks and edges. This |
| 819 | // results in the interesting property that all new terminators inserted are |
| 820 | // unconditional branches which do not appear in BPI. All deletions are |
| 821 | // handled via ValueHandle callbacks w/in BPI. |
| 822 | PA.preserve<BranchProbabilityAnalysis>(); |
Davide Italiano | cd96cfd | 2016-07-09 03:03:01 +0000 | [diff] [blame] | 823 | return PA; |
| 824 | } |
| 825 | |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 826 | // FIXME: Restore this code when we re-enable verification in verifyAnalysis |
| 827 | // below. |
| 828 | #if 0 |
| 829 | static void verifyLoop(Loop *L) { |
| 830 | // Verify subloops. |
| 831 | for (Loop::iterator I = L->begin(), E = L->end(); I != E; ++I) |
| 832 | verifyLoop(*I); |
| 833 | |
Dan Gohman | 1ef784d | 2009-11-05 21:14:46 +0000 | [diff] [blame] | 834 | // It used to be possible to just assert L->isLoopSimplifyForm(), however |
| 835 | // with the introduction of indirectbr, there are now cases where it's |
| 836 | // not possible to transform a loop as necessary. We can at least check |
| 837 | // that there is an indirectbr near any time there's trouble. |
| 838 | |
| 839 | // Indirectbr can interfere with preheader and unique backedge insertion. |
| 840 | if (!L->getLoopPreheader() || !L->getLoopLatch()) { |
| 841 | bool HasIndBrPred = false; |
| 842 | for (pred_iterator PI = pred_begin(L->getHeader()), |
| 843 | PE = pred_end(L->getHeader()); PI != PE; ++PI) |
| 844 | if (isa<IndirectBrInst>((*PI)->getTerminator())) { |
| 845 | HasIndBrPred = true; |
| 846 | break; |
| 847 | } |
| 848 | assert(HasIndBrPred && |
| 849 | "LoopSimplify has no excuse for missing loop header info!"); |
Duncan Sands | a41634e | 2011-08-12 14:54:45 +0000 | [diff] [blame] | 850 | (void)HasIndBrPred; |
Dan Gohman | 1ef784d | 2009-11-05 21:14:46 +0000 | [diff] [blame] | 851 | } |
| 852 | |
Bill Wendling | b15d6eb | 2011-08-18 21:10:01 +0000 | [diff] [blame] | 853 | // Indirectbr can interfere with exit block canonicalization. |
Dan Gohman | 1ef784d | 2009-11-05 21:14:46 +0000 | [diff] [blame] | 854 | if (!L->hasDedicatedExits()) { |
| 855 | bool HasIndBrExiting = false; |
| 856 | SmallVector<BasicBlock*, 8> ExitingBlocks; |
| 857 | L->getExitingBlocks(ExitingBlocks); |
Bill Wendling | 39257d6 | 2011-08-17 21:20:43 +0000 | [diff] [blame] | 858 | for (unsigned i = 0, e = ExitingBlocks.size(); i != e; ++i) { |
Dan Gohman | 1ef784d | 2009-11-05 21:14:46 +0000 | [diff] [blame] | 859 | if (isa<IndirectBrInst>((ExitingBlocks[i])->getTerminator())) { |
| 860 | HasIndBrExiting = true; |
| 861 | break; |
| 862 | } |
Bill Wendling | 39257d6 | 2011-08-17 21:20:43 +0000 | [diff] [blame] | 863 | } |
| 864 | |
Bill Wendling | b15d6eb | 2011-08-18 21:10:01 +0000 | [diff] [blame] | 865 | assert(HasIndBrExiting && |
Dan Gohman | 1ef784d | 2009-11-05 21:14:46 +0000 | [diff] [blame] | 866 | "LoopSimplify has no excuse for missing exit block info!"); |
Bill Wendling | b15d6eb | 2011-08-18 21:10:01 +0000 | [diff] [blame] | 867 | (void)HasIndBrExiting; |
Dan Gohman | 1ef784d | 2009-11-05 21:14:46 +0000 | [diff] [blame] | 868 | } |
Chris Lattner | 61992f6 | 2002-09-26 16:17:31 +0000 | [diff] [blame] | 869 | } |
Chandler Carruth | aa7fa5e | 2014-01-23 11:23:19 +0000 | [diff] [blame] | 870 | #endif |
| 871 | |
| 872 | void LoopSimplify::verifyAnalysis() const { |
| 873 | // FIXME: This routine is being called mid-way through the loop pass manager |
| 874 | // as loop passes destroy this analysis. That's actually fine, but we have no |
| 875 | // way of expressing that here. Once all of the passes that destroy this are |
| 876 | // hoisted out of the loop pass manager we can add back verification here. |
| 877 | #if 0 |
| 878 | for (LoopInfo::iterator I = LI->begin(), E = LI->end(); I != E; ++I) |
| 879 | verifyLoop(*I); |
| 880 | #endif |
| 881 | } |