Devang Patel | 20525d2 | 2007-02-22 08:56:17 +0000 | [diff] [blame] | 1 | //===- LoopPass.cpp - Loop Pass and Loop Pass Manager ---------------------===// |
| 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 |
Devang Patel | 20525d2 | 2007-02-22 08:56:17 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | // |
| 9 | // This file implements LoopPass and LPPassManager. All loop optimization |
| 10 | // and transformation passes are derived from LoopPass. LPPassManager is |
| 11 | // responsible for managing LoopPasses. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | #include "llvm/Analysis/LoopPass.h" |
Chandler Carruth | 3bab7e1 | 2017-01-11 09:43:56 +0000 | [diff] [blame] | 16 | #include "llvm/Analysis/LoopAnalysisManager.h" |
Igor Laevsky | c3ccf5d | 2016-10-28 12:57:20 +0000 | [diff] [blame] | 17 | #include "llvm/IR/Dominators.h" |
Chandler Carruth | b8ddc70 | 2014-01-12 11:10:32 +0000 | [diff] [blame] | 18 | #include "llvm/IR/IRPrintingPasses.h" |
Juergen Ributzka | 34390c7 | 2014-05-16 02:33:15 +0000 | [diff] [blame] | 19 | #include "llvm/IR/LLVMContext.h" |
Andrew Kaylor | aa641a5 | 2016-04-22 22:06:11 +0000 | [diff] [blame] | 20 | #include "llvm/IR/OptBisect.h" |
Justin Bogner | c2b98f0 | 2015-11-04 22:24:08 +0000 | [diff] [blame] | 21 | #include "llvm/IR/PassManager.h" |
Fedor Sergeev | 4308311 | 2018-08-28 21:06:51 +0000 | [diff] [blame] | 22 | #include "llvm/IR/PassTimingInfo.h" |
David Greene | 9b063df | 2010-04-02 23:17:14 +0000 | [diff] [blame] | 23 | #include "llvm/Support/Debug.h" |
Chris Lattner | 707431c | 2010-03-30 04:03:22 +0000 | [diff] [blame] | 24 | #include "llvm/Support/Timer.h" |
Russell Gallop | 802c9b5 | 2019-05-31 10:14:04 +0000 | [diff] [blame] | 25 | #include "llvm/Support/TimeProfiler.h" |
Benjamin Kramer | 16132e6 | 2015-03-23 18:07:13 +0000 | [diff] [blame] | 26 | #include "llvm/Support/raw_ostream.h" |
Devang Patel | 20525d2 | 2007-02-22 08:56:17 +0000 | [diff] [blame] | 27 | using namespace llvm; |
| 28 | |
Chandler Carruth | e96dd89 | 2014-04-21 22:55:11 +0000 | [diff] [blame] | 29 | #define DEBUG_TYPE "loop-pass-manager" |
| 30 | |
David Greene | 9b063df | 2010-04-02 23:17:14 +0000 | [diff] [blame] | 31 | namespace { |
| 32 | |
| 33 | /// PrintLoopPass - Print a Function corresponding to a Loop. |
| 34 | /// |
Justin Bogner | c2b98f0 | 2015-11-04 22:24:08 +0000 | [diff] [blame] | 35 | class PrintLoopPassWrapper : public LoopPass { |
Chandler Carruth | 410eaeb | 2017-01-11 06:23:21 +0000 | [diff] [blame] | 36 | raw_ostream &OS; |
| 37 | std::string Banner; |
David Greene | 9b063df | 2010-04-02 23:17:14 +0000 | [diff] [blame] | 38 | |
| 39 | public: |
| 40 | static char ID; |
Chandler Carruth | 410eaeb | 2017-01-11 06:23:21 +0000 | [diff] [blame] | 41 | PrintLoopPassWrapper() : LoopPass(ID), OS(dbgs()) {} |
Justin Bogner | c2b98f0 | 2015-11-04 22:24:08 +0000 | [diff] [blame] | 42 | PrintLoopPassWrapper(raw_ostream &OS, const std::string &Banner) |
Chandler Carruth | 410eaeb | 2017-01-11 06:23:21 +0000 | [diff] [blame] | 43 | : LoopPass(ID), OS(OS), Banner(Banner) {} |
David Greene | 9b063df | 2010-04-02 23:17:14 +0000 | [diff] [blame] | 44 | |
Craig Topper | e9ba759 | 2014-03-05 07:30:04 +0000 | [diff] [blame] | 45 | void getAnalysisUsage(AnalysisUsage &AU) const override { |
David Greene | 9b063df | 2010-04-02 23:17:14 +0000 | [diff] [blame] | 46 | AU.setPreservesAll(); |
| 47 | } |
| 48 | |
Craig Topper | e9ba759 | 2014-03-05 07:30:04 +0000 | [diff] [blame] | 49 | bool runOnLoop(Loop *L, LPPassManager &) override { |
Chandler Carruth | 693eedb | 2017-11-17 19:58:36 +0000 | [diff] [blame] | 50 | auto BBI = llvm::find_if(L->blocks(), [](BasicBlock *BB) { return BB; }); |
Weiming Zhao | 0f1762c | 2016-01-06 22:55:03 +0000 | [diff] [blame] | 51 | if (BBI != L->blocks().end() && |
Chandler Carruth | 164a2aa6 | 2016-06-17 00:11:01 +0000 | [diff] [blame] | 52 | isFunctionInPrintList((*BBI)->getParent()->getName())) { |
Chandler Carruth | 410eaeb | 2017-01-11 06:23:21 +0000 | [diff] [blame] | 53 | printLoop(*L, OS, Banner); |
Chandler Carruth | 164a2aa6 | 2016-06-17 00:11:01 +0000 | [diff] [blame] | 54 | } |
David Greene | 9b063df | 2010-04-02 23:17:14 +0000 | [diff] [blame] | 55 | return false; |
| 56 | } |
Yaron Keren | 1de4792 | 2017-03-10 07:09:20 +0000 | [diff] [blame] | 57 | |
| 58 | StringRef getPassName() const override { return "Print Loop IR"; } |
David Greene | 9b063df | 2010-04-02 23:17:14 +0000 | [diff] [blame] | 59 | }; |
| 60 | |
Justin Bogner | c2b98f0 | 2015-11-04 22:24:08 +0000 | [diff] [blame] | 61 | char PrintLoopPassWrapper::ID = 0; |
Alexander Kornienko | f00654e | 2015-06-23 09:49:53 +0000 | [diff] [blame] | 62 | } |
David Greene | 9b063df | 2010-04-02 23:17:14 +0000 | [diff] [blame] | 63 | |
Devang Patel | 20525d2 | 2007-02-22 08:56:17 +0000 | [diff] [blame] | 64 | //===----------------------------------------------------------------------===// |
| 65 | // LPPassManager |
| 66 | // |
Devang Patel | 09f162c | 2007-05-01 21:15:47 +0000 | [diff] [blame] | 67 | |
Devang Patel | 8c78a0b | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 68 | char LPPassManager::ID = 0; |
Devang Patel | 20525d2 | 2007-02-22 08:56:17 +0000 | [diff] [blame] | 69 | |
Andrew Trick | 0896621 | 2011-08-29 17:07:00 +0000 | [diff] [blame] | 70 | LPPassManager::LPPassManager() |
| 71 | : FunctionPass(ID), PMDataManager() { |
Craig Topper | 9f00886 | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 72 | LI = nullptr; |
| 73 | CurrentLoop = nullptr; |
Devang Patel | de7d490 | 2007-02-22 23:30:07 +0000 | [diff] [blame] | 74 | } |
| 75 | |
Chandler Carruth | 29c22d2 | 2017-05-25 03:01:31 +0000 | [diff] [blame] | 76 | // Insert loop into loop nest (LoopInfo) and loop queue (LQ). |
| 77 | void LPPassManager::addLoop(Loop &L) { |
| 78 | if (!L.getParentLoop()) { |
Justin Bogner | 35e46cd | 2015-10-22 21:21:32 +0000 | [diff] [blame] | 79 | // This is the top level loop. |
Chandler Carruth | 29c22d2 | 2017-05-25 03:01:31 +0000 | [diff] [blame] | 80 | LQ.push_front(&L); |
| 81 | return; |
Justin Bogner | 35e46cd | 2015-10-22 21:21:32 +0000 | [diff] [blame] | 82 | } |
| 83 | |
Justin Bogner | 35e46cd | 2015-10-22 21:21:32 +0000 | [diff] [blame] | 84 | // Insert L into the loop queue after the parent loop. |
| 85 | for (auto I = LQ.begin(), E = LQ.end(); I != E; ++I) { |
Chandler Carruth | 29c22d2 | 2017-05-25 03:01:31 +0000 | [diff] [blame] | 86 | if (*I == L.getParentLoop()) { |
Justin Bogner | 35e46cd | 2015-10-22 21:21:32 +0000 | [diff] [blame] | 87 | // deque does not support insert after. |
| 88 | ++I; |
Chandler Carruth | 29c22d2 | 2017-05-25 03:01:31 +0000 | [diff] [blame] | 89 | LQ.insert(I, 1, &L); |
| 90 | return; |
Devang Patel | ef7ac13 | 2007-03-06 19:00:02 +0000 | [diff] [blame] | 91 | } |
| 92 | } |
| 93 | } |
| 94 | |
Devang Patel | cc2b233 | 2007-07-31 08:00:57 +0000 | [diff] [blame] | 95 | /// cloneBasicBlockSimpleAnalysis - Invoke cloneBasicBlockAnalysis hook for |
| 96 | /// all loop passes. |
Andrew Trick | f898cbd | 2011-08-03 23:45:50 +0000 | [diff] [blame] | 97 | void LPPassManager::cloneBasicBlockSimpleAnalysis(BasicBlock *From, |
Devang Patel | cc2b233 | 2007-07-31 08:00:57 +0000 | [diff] [blame] | 98 | BasicBlock *To, Loop *L) { |
Andrew Trick | f898cbd | 2011-08-03 23:45:50 +0000 | [diff] [blame] | 99 | for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) { |
Dan Gohman | a97e78b | 2010-08-11 20:34:43 +0000 | [diff] [blame] | 100 | LoopPass *LP = getContainedPass(Index); |
Devang Patel | cc2b233 | 2007-07-31 08:00:57 +0000 | [diff] [blame] | 101 | LP->cloneBasicBlockAnalysis(From, To, L); |
| 102 | } |
| 103 | } |
| 104 | |
| 105 | /// deleteSimpleAnalysisValue - Invoke deleteAnalysisValue hook for all passes. |
| 106 | void LPPassManager::deleteSimpleAnalysisValue(Value *V, Loop *L) { |
Devang Patel | 4555618 | 2009-03-25 23:57:48 +0000 | [diff] [blame] | 107 | if (BasicBlock *BB = dyn_cast<BasicBlock>(V)) { |
Benjamin Kramer | aa20915 | 2016-06-26 17:27:42 +0000 | [diff] [blame] | 108 | for (Instruction &I : *BB) { |
Devang Patel | 4555618 | 2009-03-25 23:57:48 +0000 | [diff] [blame] | 109 | deleteSimpleAnalysisValue(&I, L); |
| 110 | } |
| 111 | } |
Andrew Trick | f898cbd | 2011-08-03 23:45:50 +0000 | [diff] [blame] | 112 | for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) { |
Dan Gohman | a97e78b | 2010-08-11 20:34:43 +0000 | [diff] [blame] | 113 | LoopPass *LP = getContainedPass(Index); |
Devang Patel | cc2b233 | 2007-07-31 08:00:57 +0000 | [diff] [blame] | 114 | LP->deleteAnalysisValue(V, L); |
| 115 | } |
| 116 | } |
| 117 | |
David Peixotto | 0d4d5e6 | 2014-09-24 16:48:31 +0000 | [diff] [blame] | 118 | /// Invoke deleteAnalysisLoop hook for all passes. |
| 119 | void LPPassManager::deleteSimpleAnalysisLoop(Loop *L) { |
| 120 | for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) { |
| 121 | LoopPass *LP = getContainedPass(Index); |
| 122 | LP->deleteAnalysisLoop(L); |
| 123 | } |
| 124 | } |
| 125 | |
Devang Patel | cc2b233 | 2007-07-31 08:00:57 +0000 | [diff] [blame] | 126 | |
Devang Patel | 5170571 | 2007-02-22 23:45:15 +0000 | [diff] [blame] | 127 | // Recurse through all subloops and all loops into LQ. |
Devang Patel | a8c81c52 | 2007-03-06 02:30:46 +0000 | [diff] [blame] | 128 | static void addLoopIntoQueue(Loop *L, std::deque<Loop *> &LQ) { |
Devang Patel | db0db97 | 2007-03-06 19:50:49 +0000 | [diff] [blame] | 129 | LQ.push_back(L); |
David Majnemer | 1a4576e | 2016-07-19 17:50:24 +0000 | [diff] [blame] | 130 | for (Loop *I : reverse(*L)) |
| 131 | addLoopIntoQueue(I, LQ); |
Devang Patel | 5170571 | 2007-02-22 23:45:15 +0000 | [diff] [blame] | 132 | } |
| 133 | |
Devang Patel | 4a8725c | 2007-03-06 19:11:25 +0000 | [diff] [blame] | 134 | /// Pass Manager itself does not invalidate any analysis info. |
| 135 | void LPPassManager::getAnalysisUsage(AnalysisUsage &Info) const { |
Andrew Trick | f898cbd | 2011-08-03 23:45:50 +0000 | [diff] [blame] | 136 | // LPPassManager needs LoopInfo. In the long term LoopInfo class will |
Devang Patel | 4a8725c | 2007-03-06 19:11:25 +0000 | [diff] [blame] | 137 | // become part of LPPassManager. |
Chandler Carruth | 4f8f307 | 2015-01-17 14:16:18 +0000 | [diff] [blame] | 138 | Info.addRequired<LoopInfoWrapperPass>(); |
Igor Laevsky | c3ccf5d | 2016-10-28 12:57:20 +0000 | [diff] [blame] | 139 | Info.addRequired<DominatorTreeWrapperPass>(); |
Devang Patel | 4a8725c | 2007-03-06 19:11:25 +0000 | [diff] [blame] | 140 | Info.setPreservesAll(); |
| 141 | } |
| 142 | |
Sanjoy Das | def1729 | 2017-09-28 02:45:42 +0000 | [diff] [blame] | 143 | void LPPassManager::markLoopAsDeleted(Loop &L) { |
| 144 | assert((&L == CurrentLoop || CurrentLoop->contains(&L)) && |
| 145 | "Must not delete loop outside the current loop tree!"); |
Chandler Carruth | fe70b29 | 2018-06-22 02:43:41 +0000 | [diff] [blame] | 146 | // If this loop appears elsewhere within the queue, we also need to remove it |
| 147 | // there. However, we have to be careful to not remove the back of the queue |
| 148 | // as that is assumed to match the current loop. |
| 149 | assert(LQ.back() == CurrentLoop && "Loop queue back isn't the current loop!"); |
| 150 | LQ.erase(std::remove(LQ.begin(), LQ.end(), &L), LQ.end()); |
| 151 | |
| 152 | if (&L == CurrentLoop) { |
Sanjoy Das | def1729 | 2017-09-28 02:45:42 +0000 | [diff] [blame] | 153 | CurrentLoopDeleted = true; |
Chandler Carruth | fe70b29 | 2018-06-22 02:43:41 +0000 | [diff] [blame] | 154 | // Add this loop back onto the back of the queue to preserve our invariants. |
| 155 | LQ.push_back(&L); |
| 156 | } |
Sanjoy Das | def1729 | 2017-09-28 02:45:42 +0000 | [diff] [blame] | 157 | } |
| 158 | |
Devang Patel | 20525d2 | 2007-02-22 08:56:17 +0000 | [diff] [blame] | 159 | /// run - Execute all of the passes scheduled for execution. Keep track of |
| 160 | /// whether any of the passes modifies the function, and if so, return true. |
| 161 | bool LPPassManager::runOnFunction(Function &F) { |
Chandler Carruth | 4f8f307 | 2015-01-17 14:16:18 +0000 | [diff] [blame] | 162 | auto &LIWP = getAnalysis<LoopInfoWrapperPass>(); |
| 163 | LI = &LIWP.getLoopInfo(); |
Jessica Paquette | e49374d | 2018-05-18 17:26:39 +0000 | [diff] [blame] | 164 | Module &M = *F.getParent(); |
Michael Zolotukhin | e82e83f | 2018-02-07 04:24:44 +0000 | [diff] [blame] | 165 | #if 0 |
Igor Laevsky | c3ccf5d | 2016-10-28 12:57:20 +0000 | [diff] [blame] | 166 | DominatorTree *DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree(); |
Michael Zolotukhin | ec8b0ec | 2018-02-07 00:13:08 +0000 | [diff] [blame] | 167 | #endif |
Devang Patel | 20525d2 | 2007-02-22 08:56:17 +0000 | [diff] [blame] | 168 | bool Changed = false; |
| 169 | |
Devang Patel | 874a3a0 | 2008-07-03 07:02:30 +0000 | [diff] [blame] | 170 | // Collect inherited analysis from Module level pass manager. |
| 171 | populateInheritedAnalysis(TPM->activeStack); |
| 172 | |
Andrew Trick | fb2ba3e | 2012-06-26 04:11:38 +0000 | [diff] [blame] | 173 | // Populate the loop queue in reverse program order. There is no clear need to |
| 174 | // process sibling loops in either forward or reverse order. There may be some |
| 175 | // advantage in deleting uses in a later loop before optimizing the |
| 176 | // definitions in an earlier loop. If we find a clear reason to process in |
| 177 | // forward order, then a forward variant of LoopPassManager should be created. |
Andrew Trick | b5f3c44 | 2013-07-20 23:10:31 +0000 | [diff] [blame] | 178 | // |
| 179 | // Note that LoopInfo::iterator visits loops in reverse program |
| 180 | // order. Here, reverse_iterator gives us a forward order, and the LoopQueue |
| 181 | // reverses the order a third time by popping from the back. |
David Majnemer | 1a4576e | 2016-07-19 17:50:24 +0000 | [diff] [blame] | 182 | for (Loop *L : reverse(*LI)) |
| 183 | addLoopIntoQueue(L, LQ); |
Devang Patel | 5170571 | 2007-02-22 23:45:15 +0000 | [diff] [blame] | 184 | |
Torok Edwin | 24c7835 | 2009-06-29 18:49:09 +0000 | [diff] [blame] | 185 | if (LQ.empty()) // No loops, skip calling finalizers |
| 186 | return false; |
| 187 | |
Devang Patel | 84ffc22 | 2007-03-06 16:59:03 +0000 | [diff] [blame] | 188 | // Initialization |
David Majnemer | 1a4576e | 2016-07-19 17:50:24 +0000 | [diff] [blame] | 189 | for (Loop *L : LQ) { |
Andrew Trick | f898cbd | 2011-08-03 23:45:50 +0000 | [diff] [blame] | 190 | for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) { |
Dan Gohman | a97e78b | 2010-08-11 20:34:43 +0000 | [diff] [blame] | 191 | LoopPass *P = getContainedPass(Index); |
Chris Lattner | 9efd4fc | 2010-01-22 05:37:10 +0000 | [diff] [blame] | 192 | Changed |= P->doInitialization(L, *this); |
Devang Patel | 84ffc22 | 2007-03-06 16:59:03 +0000 | [diff] [blame] | 193 | } |
| 194 | } |
| 195 | |
Devang Patel | 20525d2 | 2007-02-22 08:56:17 +0000 | [diff] [blame] | 196 | // Walk Loops |
Jessica Paquette | 872a4c9 | 2018-08-31 20:20:54 +0000 | [diff] [blame] | 197 | unsigned InstrCount, FunctionSize = 0; |
Jessica Paquette | a0aa5b3 | 2018-09-06 21:19:54 +0000 | [diff] [blame] | 198 | StringMap<std::pair<unsigned, unsigned>> FunctionToInstrCount; |
Xin Tong | 023e25a | 2018-07-22 05:27:41 +0000 | [diff] [blame] | 199 | bool EmitICRemark = M.shouldEmitInstrCountChangedRemark(); |
Jessica Paquette | 872a4c9 | 2018-08-31 20:20:54 +0000 | [diff] [blame] | 200 | // Collect the initial size of the module and the function we're looking at. |
| 201 | if (EmitICRemark) { |
Jessica Paquette | a0aa5b3 | 2018-09-06 21:19:54 +0000 | [diff] [blame] | 202 | InstrCount = initSizeRemarkInfo(M, FunctionToInstrCount); |
Jessica Paquette | 872a4c9 | 2018-08-31 20:20:54 +0000 | [diff] [blame] | 203 | FunctionSize = F.getInstructionCount(); |
| 204 | } |
Devang Patel | a8c81c52 | 2007-03-06 02:30:46 +0000 | [diff] [blame] | 205 | while (!LQ.empty()) { |
Sanjoy Das | def1729 | 2017-09-28 02:45:42 +0000 | [diff] [blame] | 206 | CurrentLoopDeleted = false; |
Justin Bogner | 6e9810c | 2015-12-16 00:01:02 +0000 | [diff] [blame] | 207 | CurrentLoop = LQ.back(); |
Justin Bogner | e9fb228d | 2016-01-08 19:08:53 +0000 | [diff] [blame] | 208 | |
Dan Gohman | b0934cd | 2009-09-27 23:52:07 +0000 | [diff] [blame] | 209 | // Run all passes on the current Loop. |
Andrew Trick | f898cbd | 2011-08-03 23:45:50 +0000 | [diff] [blame] | 210 | for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) { |
Dan Gohman | a97e78b | 2010-08-11 20:34:43 +0000 | [diff] [blame] | 211 | LoopPass *P = getContainedPass(Index); |
Eric Christopher | 3c0d516 | 2012-03-23 03:54:05 +0000 | [diff] [blame] | 212 | |
Russell Gallop | 802c9b5 | 2019-05-31 10:14:04 +0000 | [diff] [blame] | 213 | llvm::TimeTraceScope LoopPassScope("RunLoopPass", P->getPassName()); |
| 214 | |
Dan Gohman | 0bd312a | 2009-09-28 15:07:18 +0000 | [diff] [blame] | 215 | dumpPassInfo(P, EXECUTION_MSG, ON_LOOP_MSG, |
Benjamin Kramer | f4512a3 | 2010-03-31 16:06:22 +0000 | [diff] [blame] | 216 | CurrentLoop->getHeader()->getName()); |
Chris Lattner | 4c493d9 | 2008-08-08 15:14:09 +0000 | [diff] [blame] | 217 | dumpRequiredSet(P); |
Devang Patel | 20525d2 | 2007-02-22 08:56:17 +0000 | [diff] [blame] | 218 | |
| 219 | initializeAnalysisImpl(P); |
Eric Christopher | 3c0d516 | 2012-03-23 03:54:05 +0000 | [diff] [blame] | 220 | |
Fedor Sergeev | 3a3d688 | 2018-11-19 15:10:59 +0000 | [diff] [blame] | 221 | bool LocalChanged = false; |
Chris Lattner | 4c1e954 | 2009-03-06 06:45:05 +0000 | [diff] [blame] | 222 | { |
Chris Lattner | 9efd4fc | 2010-01-22 05:37:10 +0000 | [diff] [blame] | 223 | PassManagerPrettyStackEntry X(P, *CurrentLoop->getHeader()); |
Chris Lattner | 707431c | 2010-03-30 04:03:22 +0000 | [diff] [blame] | 224 | TimeRegion PassTimer(getPassTimer(P)); |
Fedor Sergeev | 3a3d688 | 2018-11-19 15:10:59 +0000 | [diff] [blame] | 225 | LocalChanged = P->runOnLoop(CurrentLoop, *this); |
| 226 | Changed |= LocalChanged; |
Jessica Paquette | 872a4c9 | 2018-08-31 20:20:54 +0000 | [diff] [blame] | 227 | if (EmitICRemark) { |
| 228 | unsigned NewSize = F.getInstructionCount(); |
| 229 | // Update the size of the function, emit a remark, and update the |
| 230 | // size of the module. |
| 231 | if (NewSize != FunctionSize) { |
Jessica Paquette | 872a4c9 | 2018-08-31 20:20:54 +0000 | [diff] [blame] | 232 | int64_t Delta = static_cast<int64_t>(NewSize) - |
| 233 | static_cast<int64_t>(FunctionSize); |
Jessica Paquette | a0aa5b3 | 2018-09-06 21:19:54 +0000 | [diff] [blame] | 234 | emitInstrCountChangedRemark(P, M, Delta, InstrCount, |
| 235 | FunctionToInstrCount, &F); |
Jessica Paquette | 872a4c9 | 2018-08-31 20:20:54 +0000 | [diff] [blame] | 236 | InstrCount = static_cast<int64_t>(InstrCount) + Delta; |
| 237 | FunctionSize = NewSize; |
| 238 | } |
| 239 | } |
Chris Lattner | 4c1e954 | 2009-03-06 06:45:05 +0000 | [diff] [blame] | 240 | } |
Devang Patel | 20525d2 | 2007-02-22 08:56:17 +0000 | [diff] [blame] | 241 | |
Fedor Sergeev | 3a3d688 | 2018-11-19 15:10:59 +0000 | [diff] [blame] | 242 | if (LocalChanged) |
Sanjoy Das | def1729 | 2017-09-28 02:45:42 +0000 | [diff] [blame] | 243 | dumpPassInfo(P, MODIFICATION_MSG, ON_LOOP_MSG, |
| 244 | CurrentLoopDeleted ? "<deleted loop>" |
| 245 | : CurrentLoop->getName()); |
Chris Lattner | 4c493d9 | 2008-08-08 15:14:09 +0000 | [diff] [blame] | 246 | dumpPreservedSet(P); |
Devang Patel | a273d1c | 2007-07-19 18:02:32 +0000 | [diff] [blame] | 247 | |
Sanjoy Das | def1729 | 2017-09-28 02:45:42 +0000 | [diff] [blame] | 248 | if (CurrentLoopDeleted) { |
Justin Bogner | 6e9810c | 2015-12-16 00:01:02 +0000 | [diff] [blame] | 249 | // Notify passes that the loop is being deleted. |
| 250 | deleteSimpleAnalysisLoop(CurrentLoop); |
| 251 | } else { |
Dan Gohman | 4dbb301 | 2009-09-28 00:27:48 +0000 | [diff] [blame] | 252 | // Manually check that this loop is still healthy. This is done |
| 253 | // instead of relying on LoopInfo::verifyLoop since LoopInfo |
| 254 | // is a function pass and it's really expensive to verify every |
| 255 | // loop in the function every time. That level of checking can be |
| 256 | // enabled with the -verify-loop-info option. |
Chris Lattner | 707431c | 2010-03-30 04:03:22 +0000 | [diff] [blame] | 257 | { |
Chandler Carruth | 4f8f307 | 2015-01-17 14:16:18 +0000 | [diff] [blame] | 258 | TimeRegion PassTimer(getPassTimer(&LIWP)); |
Chris Lattner | 707431c | 2010-03-30 04:03:22 +0000 | [diff] [blame] | 259 | CurrentLoop->verifyLoop(); |
| 260 | } |
Igor Laevsky | c3ccf5d | 2016-10-28 12:57:20 +0000 | [diff] [blame] | 261 | // Here we apply same reasoning as in the above case. Only difference |
| 262 | // is that LPPassManager might run passes which do not require LCSSA |
| 263 | // form (LoopPassPrinter for example). We should skip verification for |
| 264 | // such passes. |
Michael Zolotukhin | e82e83f | 2018-02-07 04:24:44 +0000 | [diff] [blame] | 265 | // FIXME: Loop-sink currently break LCSSA. Fix it and reenable the |
| 266 | // verification! |
| 267 | #if 0 |
Igor Laevsky | c3ccf5d | 2016-10-28 12:57:20 +0000 | [diff] [blame] | 268 | if (mustPreserveAnalysisID(LCSSAVerificationPass::ID)) |
Michael Zolotukhin | ec8b0ec | 2018-02-07 00:13:08 +0000 | [diff] [blame] | 269 | assert(CurrentLoop->isRecursivelyLCSSAForm(*DT, *LI)); |
Michael Zolotukhin | e82e83f | 2018-02-07 04:24:44 +0000 | [diff] [blame] | 270 | #endif |
Dan Gohman | 4dbb301 | 2009-09-28 00:27:48 +0000 | [diff] [blame] | 271 | |
| 272 | // Then call the regular verifyAnalysis functions. |
Chris Lattner | 9efd4fc | 2010-01-22 05:37:10 +0000 | [diff] [blame] | 273 | verifyPreservedAnalysis(P); |
Juergen Ributzka | 34390c7 | 2014-05-16 02:33:15 +0000 | [diff] [blame] | 274 | |
| 275 | F.getContext().yield(); |
Dan Gohman | 4dbb301 | 2009-09-28 00:27:48 +0000 | [diff] [blame] | 276 | } |
Dan Gohman | 96a26bd | 2009-09-03 15:09:24 +0000 | [diff] [blame] | 277 | |
Devang Patel | 20525d2 | 2007-02-22 08:56:17 +0000 | [diff] [blame] | 278 | removeNotPreservedAnalysis(P); |
| 279 | recordAvailableAnalysis(P); |
Sanjoy Das | def1729 | 2017-09-28 02:45:42 +0000 | [diff] [blame] | 280 | removeDeadPasses(P, |
| 281 | CurrentLoopDeleted ? "<deleted>" |
| 282 | : CurrentLoop->getHeader()->getName(), |
Dan Gohman | 0bd312a | 2009-09-28 15:07:18 +0000 | [diff] [blame] | 283 | ON_LOOP_MSG); |
Devang Patel | 4e335c6 | 2007-02-23 00:10:16 +0000 | [diff] [blame] | 284 | |
Sanjoy Das | def1729 | 2017-09-28 02:45:42 +0000 | [diff] [blame] | 285 | if (CurrentLoopDeleted) |
Devang Patel | 4e335c6 | 2007-02-23 00:10:16 +0000 | [diff] [blame] | 286 | // Do not run other passes on this loop. |
| 287 | break; |
Devang Patel | 20525d2 | 2007-02-22 08:56:17 +0000 | [diff] [blame] | 288 | } |
Andrew Trick | f898cbd | 2011-08-03 23:45:50 +0000 | [diff] [blame] | 289 | |
Dan Gohman | 37a99664 | 2009-09-27 23:43:07 +0000 | [diff] [blame] | 290 | // If the loop was deleted, release all the loop passes. This frees up |
| 291 | // some memory, and avoids trouble with the pass manager trying to call |
| 292 | // verifyAnalysis on them. |
Sanjoy Das | def1729 | 2017-09-28 02:45:42 +0000 | [diff] [blame] | 293 | if (CurrentLoopDeleted) { |
Andrew Trick | f898cbd | 2011-08-03 23:45:50 +0000 | [diff] [blame] | 294 | for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) { |
Dan Gohman | 37a99664 | 2009-09-27 23:43:07 +0000 | [diff] [blame] | 295 | Pass *P = getContainedPass(Index); |
Dan Gohman | 0bd312a | 2009-09-28 15:07:18 +0000 | [diff] [blame] | 296 | freePass(P, "<deleted>", ON_LOOP_MSG); |
Dan Gohman | 37a99664 | 2009-09-27 23:43:07 +0000 | [diff] [blame] | 297 | } |
Justin Bogner | 6e9810c | 2015-12-16 00:01:02 +0000 | [diff] [blame] | 298 | } |
Dan Gohman | 37a99664 | 2009-09-27 23:43:07 +0000 | [diff] [blame] | 299 | |
Devang Patel | 5170571 | 2007-02-22 23:45:15 +0000 | [diff] [blame] | 300 | // Pop the loop from queue after running all passes. |
Devang Patel | a8c81c52 | 2007-03-06 02:30:46 +0000 | [diff] [blame] | 301 | LQ.pop_back(); |
Devang Patel | 20525d2 | 2007-02-22 08:56:17 +0000 | [diff] [blame] | 302 | } |
Andrew Trick | f898cbd | 2011-08-03 23:45:50 +0000 | [diff] [blame] | 303 | |
Devang Patel | 84ffc22 | 2007-03-06 16:59:03 +0000 | [diff] [blame] | 304 | // Finalization |
| 305 | for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) { |
Dan Gohman | a97e78b | 2010-08-11 20:34:43 +0000 | [diff] [blame] | 306 | LoopPass *P = getContainedPass(Index); |
Chris Lattner | 9efd4fc | 2010-01-22 05:37:10 +0000 | [diff] [blame] | 307 | Changed |= P->doFinalization(); |
Devang Patel | 84ffc22 | 2007-03-06 16:59:03 +0000 | [diff] [blame] | 308 | } |
Devang Patel | 20525d2 | 2007-02-22 08:56:17 +0000 | [diff] [blame] | 309 | |
| 310 | return Changed; |
| 311 | } |
| 312 | |
Dan Gohman | 143206d | 2009-02-17 19:41:26 +0000 | [diff] [blame] | 313 | /// Print passes managed by this manager |
| 314 | void LPPassManager::dumpPassStructure(unsigned Offset) { |
Chris Lattner | 4883d90 | 2009-08-23 07:19:13 +0000 | [diff] [blame] | 315 | errs().indent(Offset*2) << "Loop Pass Manager\n"; |
Dan Gohman | 143206d | 2009-02-17 19:41:26 +0000 | [diff] [blame] | 316 | for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) { |
| 317 | Pass *P = getContainedPass(Index); |
Dan Gohman | f71c521 | 2010-08-19 01:29:07 +0000 | [diff] [blame] | 318 | P->dumpPassStructure(Offset + 1); |
Dan Gohman | 143206d | 2009-02-17 19:41:26 +0000 | [diff] [blame] | 319 | dumpLastUses(P, Offset+1); |
| 320 | } |
| 321 | } |
| 322 | |
Devang Patel | 20525d2 | 2007-02-22 08:56:17 +0000 | [diff] [blame] | 323 | |
Devang Patel | 55c3827 | 2007-02-23 00:36:57 +0000 | [diff] [blame] | 324 | //===----------------------------------------------------------------------===// |
| 325 | // LoopPass |
| 326 | |
David Greene | 9b063df | 2010-04-02 23:17:14 +0000 | [diff] [blame] | 327 | Pass *LoopPass::createPrinterPass(raw_ostream &O, |
| 328 | const std::string &Banner) const { |
Justin Bogner | c2b98f0 | 2015-11-04 22:24:08 +0000 | [diff] [blame] | 329 | return new PrintLoopPassWrapper(O, Banner); |
David Greene | 9b063df | 2010-04-02 23:17:14 +0000 | [diff] [blame] | 330 | } |
| 331 | |
Devang Patel | 1699384 | 2007-03-06 17:59:37 +0000 | [diff] [blame] | 332 | // Check if this pass is suitable for the current LPPassManager, if |
| 333 | // available. This pass P is not suitable for a LPPassManager if P |
| 334 | // is not preserving higher level analysis info used by other |
| 335 | // LPPassManager passes. In such case, pop LPPassManager from the |
| 336 | // stack. This will force assignPassManager() to create new |
| 337 | // LPPassManger as expected. |
| 338 | void LoopPass::preparePassManager(PMStack &PMS) { |
| 339 | |
Andrew Trick | f898cbd | 2011-08-03 23:45:50 +0000 | [diff] [blame] | 340 | // Find LPPassManager |
Duncan Sands | 60f28bf | 2007-07-19 09:42:01 +0000 | [diff] [blame] | 341 | while (!PMS.empty() && |
| 342 | PMS.top()->getPassManagerType() > PMT_LoopPassManager) |
| 343 | PMS.pop(); |
Devang Patel | 1699384 | 2007-03-06 17:59:37 +0000 | [diff] [blame] | 344 | |
Devang Patel | 1699384 | 2007-03-06 17:59:37 +0000 | [diff] [blame] | 345 | // If this pass is destroying high level information that is used |
| 346 | // by other passes that are managed by LPM then do not insert |
| 347 | // this pass in current LPM. Use new LPPassManager. |
Chris Lattner | 9efd4fc | 2010-01-22 05:37:10 +0000 | [diff] [blame] | 348 | if (PMS.top()->getPassManagerType() == PMT_LoopPassManager && |
Andrew Trick | f898cbd | 2011-08-03 23:45:50 +0000 | [diff] [blame] | 349 | !PMS.top()->preserveHigherLevelAnalysis(this)) |
Devang Patel | 1699384 | 2007-03-06 17:59:37 +0000 | [diff] [blame] | 350 | PMS.pop(); |
| 351 | } |
| 352 | |
Devang Patel | 55c3827 | 2007-02-23 00:36:57 +0000 | [diff] [blame] | 353 | /// Assign pass manager to manage this pass. |
| 354 | void LoopPass::assignPassManager(PMStack &PMS, |
| 355 | PassManagerType PreferredType) { |
Andrew Trick | f898cbd | 2011-08-03 23:45:50 +0000 | [diff] [blame] | 356 | // Find LPPassManager |
Duncan Sands | 60f28bf | 2007-07-19 09:42:01 +0000 | [diff] [blame] | 357 | while (!PMS.empty() && |
| 358 | PMS.top()->getPassManagerType() > PMT_LoopPassManager) |
| 359 | PMS.pop(); |
Devang Patel | 55c3827 | 2007-02-23 00:36:57 +0000 | [diff] [blame] | 360 | |
Chris Lattner | 9efd4fc | 2010-01-22 05:37:10 +0000 | [diff] [blame] | 361 | LPPassManager *LPPM; |
| 362 | if (PMS.top()->getPassManagerType() == PMT_LoopPassManager) |
| 363 | LPPM = (LPPassManager*)PMS.top(); |
| 364 | else { |
Andrew Trick | f898cbd | 2011-08-03 23:45:50 +0000 | [diff] [blame] | 365 | // Create new Loop Pass Manager if it does not exist. |
Devang Patel | 55c3827 | 2007-02-23 00:36:57 +0000 | [diff] [blame] | 366 | assert (!PMS.empty() && "Unable to create Loop Pass Manager"); |
| 367 | PMDataManager *PMD = PMS.top(); |
| 368 | |
Andrew Trick | 0896621 | 2011-08-29 17:07:00 +0000 | [diff] [blame] | 369 | // [1] Create new Loop Pass Manager |
| 370 | LPPM = new LPPassManager(); |
Devang Patel | 901a27d | 2007-03-07 00:26:10 +0000 | [diff] [blame] | 371 | LPPM->populateInheritedAnalysis(PMS); |
Devang Patel | 55c3827 | 2007-02-23 00:36:57 +0000 | [diff] [blame] | 372 | |
| 373 | // [2] Set up new manager's top level manager |
| 374 | PMTopLevelManager *TPM = PMD->getTopLevelManager(); |
| 375 | TPM->addIndirectPassManager(LPPM); |
| 376 | |
| 377 | // [3] Assign manager to manage this new manager. This may create |
| 378 | // and push new managers into PMS |
Chris Lattner | 9efd4fc | 2010-01-22 05:37:10 +0000 | [diff] [blame] | 379 | Pass *P = LPPM->getAsPass(); |
Devang Patel | 4a8725c | 2007-03-06 19:11:25 +0000 | [diff] [blame] | 380 | TPM->schedulePass(P); |
Devang Patel | 55c3827 | 2007-02-23 00:36:57 +0000 | [diff] [blame] | 381 | |
| 382 | // [4] Push new manager into PMS |
| 383 | PMS.push(LPPM); |
| 384 | } |
| 385 | |
| 386 | LPPM->add(this); |
| 387 | } |
Paul Robinson | af4e64d | 2014-02-06 00:07:05 +0000 | [diff] [blame] | 388 | |
Richard Trieu | b37a70f | 2019-02-28 04:00:55 +0000 | [diff] [blame] | 389 | static std::string getDescription(const Loop &L) { |
| 390 | return "loop"; |
| 391 | } |
| 392 | |
Andrew Kaylor | aa641a5 | 2016-04-22 22:06:11 +0000 | [diff] [blame] | 393 | bool LoopPass::skipLoop(const Loop *L) const { |
Paul Robinson | 0c12b1d2 | 2014-02-26 01:23:26 +0000 | [diff] [blame] | 394 | const Function *F = L->getHeader()->getParent(); |
Andrew Kaylor | aa641a5 | 2016-04-22 22:06:11 +0000 | [diff] [blame] | 395 | if (!F) |
| 396 | return false; |
| 397 | // Check the opt bisect limit. |
Richard Trieu | b37a70f | 2019-02-28 04:00:55 +0000 | [diff] [blame] | 398 | OptPassGate &Gate = F->getContext().getOptPassGate(); |
| 399 | if (Gate.isEnabled() && !Gate.shouldRunPass(this, getDescription(*L))) |
Andrew Kaylor | aa641a5 | 2016-04-22 22:06:11 +0000 | [diff] [blame] | 400 | return true; |
| 401 | // Check for the OptimizeNone attribute. |
Evandro Menezes | 85bd397 | 2019-04-04 22:40:06 +0000 | [diff] [blame] | 402 | if (F->hasOptNone()) { |
Paul Robinson | af4e64d | 2014-02-06 00:07:05 +0000 | [diff] [blame] | 403 | // FIXME: Report this to dbgs() only once per function. |
Nicola Zaghen | d34e60c | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 404 | LLVM_DEBUG(dbgs() << "Skipping pass '" << getPassName() << "' in function " |
| 405 | << F->getName() << "\n"); |
Paul Robinson | af4e64d | 2014-02-06 00:07:05 +0000 | [diff] [blame] | 406 | // FIXME: Delete loop from pass manager's queue? |
| 407 | return true; |
| 408 | } |
| 409 | return false; |
| 410 | } |
Igor Laevsky | c3ccf5d | 2016-10-28 12:57:20 +0000 | [diff] [blame] | 411 | |
| 412 | char LCSSAVerificationPass::ID = 0; |
| 413 | INITIALIZE_PASS(LCSSAVerificationPass, "lcssa-verification", "LCSSA Verifier", |
| 414 | false, false) |