blob: c57ec2a3e24c70286e278d91942db94411fdd6f7 [file] [log] [blame]
Devang Patel20525d22007-02-22 08:56:17 +00001//===- LoopPass.cpp - Loop Pass and Loop Pass Manager ---------------------===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// 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 Patel20525d22007-02-22 08:56:17 +00006//
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 Carruth3bab7e12017-01-11 09:43:56 +000016#include "llvm/Analysis/LoopAnalysisManager.h"
Igor Laevskyc3ccf5d2016-10-28 12:57:20 +000017#include "llvm/IR/Dominators.h"
Chandler Carruthb8ddc702014-01-12 11:10:32 +000018#include "llvm/IR/IRPrintingPasses.h"
Juergen Ributzka34390c72014-05-16 02:33:15 +000019#include "llvm/IR/LLVMContext.h"
Andrew Kayloraa641a52016-04-22 22:06:11 +000020#include "llvm/IR/OptBisect.h"
Justin Bognerc2b98f02015-11-04 22:24:08 +000021#include "llvm/IR/PassManager.h"
Fedor Sergeev43083112018-08-28 21:06:51 +000022#include "llvm/IR/PassTimingInfo.h"
David Greene9b063df2010-04-02 23:17:14 +000023#include "llvm/Support/Debug.h"
Chris Lattner707431c2010-03-30 04:03:22 +000024#include "llvm/Support/Timer.h"
Benjamin Kramer16132e62015-03-23 18:07:13 +000025#include "llvm/Support/raw_ostream.h"
Devang Patel20525d22007-02-22 08:56:17 +000026using namespace llvm;
27
Chandler Carruthe96dd892014-04-21 22:55:11 +000028#define DEBUG_TYPE "loop-pass-manager"
29
David Greene9b063df2010-04-02 23:17:14 +000030namespace {
31
32/// PrintLoopPass - Print a Function corresponding to a Loop.
33///
Justin Bognerc2b98f02015-11-04 22:24:08 +000034class PrintLoopPassWrapper : public LoopPass {
Chandler Carruth410eaeb2017-01-11 06:23:21 +000035 raw_ostream &OS;
36 std::string Banner;
David Greene9b063df2010-04-02 23:17:14 +000037
38public:
39 static char ID;
Chandler Carruth410eaeb2017-01-11 06:23:21 +000040 PrintLoopPassWrapper() : LoopPass(ID), OS(dbgs()) {}
Justin Bognerc2b98f02015-11-04 22:24:08 +000041 PrintLoopPassWrapper(raw_ostream &OS, const std::string &Banner)
Chandler Carruth410eaeb2017-01-11 06:23:21 +000042 : LoopPass(ID), OS(OS), Banner(Banner) {}
David Greene9b063df2010-04-02 23:17:14 +000043
Craig Toppere9ba7592014-03-05 07:30:04 +000044 void getAnalysisUsage(AnalysisUsage &AU) const override {
David Greene9b063df2010-04-02 23:17:14 +000045 AU.setPreservesAll();
46 }
47
Craig Toppere9ba7592014-03-05 07:30:04 +000048 bool runOnLoop(Loop *L, LPPassManager &) override {
Chandler Carruth693eedb2017-11-17 19:58:36 +000049 auto BBI = llvm::find_if(L->blocks(), [](BasicBlock *BB) { return BB; });
Weiming Zhao0f1762c2016-01-06 22:55:03 +000050 if (BBI != L->blocks().end() &&
Chandler Carruth164a2aa62016-06-17 00:11:01 +000051 isFunctionInPrintList((*BBI)->getParent()->getName())) {
Chandler Carruth410eaeb2017-01-11 06:23:21 +000052 printLoop(*L, OS, Banner);
Chandler Carruth164a2aa62016-06-17 00:11:01 +000053 }
David Greene9b063df2010-04-02 23:17:14 +000054 return false;
55 }
Yaron Keren1de47922017-03-10 07:09:20 +000056
57 StringRef getPassName() const override { return "Print Loop IR"; }
David Greene9b063df2010-04-02 23:17:14 +000058};
59
Justin Bognerc2b98f02015-11-04 22:24:08 +000060char PrintLoopPassWrapper::ID = 0;
Alexander Kornienkof00654e2015-06-23 09:49:53 +000061}
David Greene9b063df2010-04-02 23:17:14 +000062
Devang Patel20525d22007-02-22 08:56:17 +000063//===----------------------------------------------------------------------===//
64// LPPassManager
65//
Devang Patel09f162c2007-05-01 21:15:47 +000066
Devang Patel8c78a0b2007-05-03 01:11:54 +000067char LPPassManager::ID = 0;
Devang Patel20525d22007-02-22 08:56:17 +000068
Andrew Trick08966212011-08-29 17:07:00 +000069LPPassManager::LPPassManager()
70 : FunctionPass(ID), PMDataManager() {
Craig Topper9f008862014-04-15 04:59:12 +000071 LI = nullptr;
72 CurrentLoop = nullptr;
Devang Patelde7d4902007-02-22 23:30:07 +000073}
74
Chandler Carruth29c22d22017-05-25 03:01:31 +000075// Insert loop into loop nest (LoopInfo) and loop queue (LQ).
76void LPPassManager::addLoop(Loop &L) {
77 if (!L.getParentLoop()) {
Justin Bogner35e46cd2015-10-22 21:21:32 +000078 // This is the top level loop.
Chandler Carruth29c22d22017-05-25 03:01:31 +000079 LQ.push_front(&L);
80 return;
Justin Bogner35e46cd2015-10-22 21:21:32 +000081 }
82
Justin Bogner35e46cd2015-10-22 21:21:32 +000083 // Insert L into the loop queue after the parent loop.
84 for (auto I = LQ.begin(), E = LQ.end(); I != E; ++I) {
Chandler Carruth29c22d22017-05-25 03:01:31 +000085 if (*I == L.getParentLoop()) {
Justin Bogner35e46cd2015-10-22 21:21:32 +000086 // deque does not support insert after.
87 ++I;
Chandler Carruth29c22d22017-05-25 03:01:31 +000088 LQ.insert(I, 1, &L);
89 return;
Devang Patelef7ac132007-03-06 19:00:02 +000090 }
91 }
92}
93
Devang Patelcc2b2332007-07-31 08:00:57 +000094/// cloneBasicBlockSimpleAnalysis - Invoke cloneBasicBlockAnalysis hook for
95/// all loop passes.
Andrew Trickf898cbd2011-08-03 23:45:50 +000096void LPPassManager::cloneBasicBlockSimpleAnalysis(BasicBlock *From,
Devang Patelcc2b2332007-07-31 08:00:57 +000097 BasicBlock *To, Loop *L) {
Andrew Trickf898cbd2011-08-03 23:45:50 +000098 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
Dan Gohmana97e78b2010-08-11 20:34:43 +000099 LoopPass *LP = getContainedPass(Index);
Devang Patelcc2b2332007-07-31 08:00:57 +0000100 LP->cloneBasicBlockAnalysis(From, To, L);
101 }
102}
103
104/// deleteSimpleAnalysisValue - Invoke deleteAnalysisValue hook for all passes.
105void LPPassManager::deleteSimpleAnalysisValue(Value *V, Loop *L) {
Devang Patel45556182009-03-25 23:57:48 +0000106 if (BasicBlock *BB = dyn_cast<BasicBlock>(V)) {
Benjamin Krameraa209152016-06-26 17:27:42 +0000107 for (Instruction &I : *BB) {
Devang Patel45556182009-03-25 23:57:48 +0000108 deleteSimpleAnalysisValue(&I, L);
109 }
110 }
Andrew Trickf898cbd2011-08-03 23:45:50 +0000111 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
Dan Gohmana97e78b2010-08-11 20:34:43 +0000112 LoopPass *LP = getContainedPass(Index);
Devang Patelcc2b2332007-07-31 08:00:57 +0000113 LP->deleteAnalysisValue(V, L);
114 }
115}
116
David Peixotto0d4d5e62014-09-24 16:48:31 +0000117/// Invoke deleteAnalysisLoop hook for all passes.
118void LPPassManager::deleteSimpleAnalysisLoop(Loop *L) {
119 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
120 LoopPass *LP = getContainedPass(Index);
121 LP->deleteAnalysisLoop(L);
122 }
123}
124
Devang Patelcc2b2332007-07-31 08:00:57 +0000125
Devang Patel51705712007-02-22 23:45:15 +0000126// Recurse through all subloops and all loops into LQ.
Devang Patela8c81c522007-03-06 02:30:46 +0000127static void addLoopIntoQueue(Loop *L, std::deque<Loop *> &LQ) {
Devang Pateldb0db972007-03-06 19:50:49 +0000128 LQ.push_back(L);
David Majnemer1a4576e2016-07-19 17:50:24 +0000129 for (Loop *I : reverse(*L))
130 addLoopIntoQueue(I, LQ);
Devang Patel51705712007-02-22 23:45:15 +0000131}
132
Devang Patel4a8725c2007-03-06 19:11:25 +0000133/// Pass Manager itself does not invalidate any analysis info.
134void LPPassManager::getAnalysisUsage(AnalysisUsage &Info) const {
Andrew Trickf898cbd2011-08-03 23:45:50 +0000135 // LPPassManager needs LoopInfo. In the long term LoopInfo class will
Devang Patel4a8725c2007-03-06 19:11:25 +0000136 // become part of LPPassManager.
Chandler Carruth4f8f3072015-01-17 14:16:18 +0000137 Info.addRequired<LoopInfoWrapperPass>();
Igor Laevskyc3ccf5d2016-10-28 12:57:20 +0000138 Info.addRequired<DominatorTreeWrapperPass>();
Devang Patel4a8725c2007-03-06 19:11:25 +0000139 Info.setPreservesAll();
140}
141
Sanjoy Dasdef17292017-09-28 02:45:42 +0000142void LPPassManager::markLoopAsDeleted(Loop &L) {
143 assert((&L == CurrentLoop || CurrentLoop->contains(&L)) &&
144 "Must not delete loop outside the current loop tree!");
Chandler Carruthfe70b292018-06-22 02:43:41 +0000145 // If this loop appears elsewhere within the queue, we also need to remove it
146 // there. However, we have to be careful to not remove the back of the queue
147 // as that is assumed to match the current loop.
148 assert(LQ.back() == CurrentLoop && "Loop queue back isn't the current loop!");
149 LQ.erase(std::remove(LQ.begin(), LQ.end(), &L), LQ.end());
150
151 if (&L == CurrentLoop) {
Sanjoy Dasdef17292017-09-28 02:45:42 +0000152 CurrentLoopDeleted = true;
Chandler Carruthfe70b292018-06-22 02:43:41 +0000153 // Add this loop back onto the back of the queue to preserve our invariants.
154 LQ.push_back(&L);
155 }
Sanjoy Dasdef17292017-09-28 02:45:42 +0000156}
157
Devang Patel20525d22007-02-22 08:56:17 +0000158/// run - Execute all of the passes scheduled for execution. Keep track of
159/// whether any of the passes modifies the function, and if so, return true.
160bool LPPassManager::runOnFunction(Function &F) {
Chandler Carruth4f8f3072015-01-17 14:16:18 +0000161 auto &LIWP = getAnalysis<LoopInfoWrapperPass>();
162 LI = &LIWP.getLoopInfo();
Jessica Paquettee49374d2018-05-18 17:26:39 +0000163 Module &M = *F.getParent();
Michael Zolotukhine82e83f2018-02-07 04:24:44 +0000164#if 0
Igor Laevskyc3ccf5d2016-10-28 12:57:20 +0000165 DominatorTree *DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree();
Michael Zolotukhinec8b0ec2018-02-07 00:13:08 +0000166#endif
Devang Patel20525d22007-02-22 08:56:17 +0000167 bool Changed = false;
168
Devang Patel874a3a02008-07-03 07:02:30 +0000169 // Collect inherited analysis from Module level pass manager.
170 populateInheritedAnalysis(TPM->activeStack);
171
Andrew Trickfb2ba3e2012-06-26 04:11:38 +0000172 // Populate the loop queue in reverse program order. There is no clear need to
173 // process sibling loops in either forward or reverse order. There may be some
174 // advantage in deleting uses in a later loop before optimizing the
175 // definitions in an earlier loop. If we find a clear reason to process in
176 // forward order, then a forward variant of LoopPassManager should be created.
Andrew Trickb5f3c442013-07-20 23:10:31 +0000177 //
178 // Note that LoopInfo::iterator visits loops in reverse program
179 // order. Here, reverse_iterator gives us a forward order, and the LoopQueue
180 // reverses the order a third time by popping from the back.
David Majnemer1a4576e2016-07-19 17:50:24 +0000181 for (Loop *L : reverse(*LI))
182 addLoopIntoQueue(L, LQ);
Devang Patel51705712007-02-22 23:45:15 +0000183
Torok Edwin24c78352009-06-29 18:49:09 +0000184 if (LQ.empty()) // No loops, skip calling finalizers
185 return false;
186
Devang Patel84ffc222007-03-06 16:59:03 +0000187 // Initialization
David Majnemer1a4576e2016-07-19 17:50:24 +0000188 for (Loop *L : LQ) {
Andrew Trickf898cbd2011-08-03 23:45:50 +0000189 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
Dan Gohmana97e78b2010-08-11 20:34:43 +0000190 LoopPass *P = getContainedPass(Index);
Chris Lattner9efd4fc2010-01-22 05:37:10 +0000191 Changed |= P->doInitialization(L, *this);
Devang Patel84ffc222007-03-06 16:59:03 +0000192 }
193 }
194
Devang Patel20525d22007-02-22 08:56:17 +0000195 // Walk Loops
Jessica Paquette872a4c92018-08-31 20:20:54 +0000196 unsigned InstrCount, FunctionSize = 0;
Jessica Paquettea0aa5b32018-09-06 21:19:54 +0000197 StringMap<std::pair<unsigned, unsigned>> FunctionToInstrCount;
Xin Tong023e25a2018-07-22 05:27:41 +0000198 bool EmitICRemark = M.shouldEmitInstrCountChangedRemark();
Jessica Paquette872a4c92018-08-31 20:20:54 +0000199 // Collect the initial size of the module and the function we're looking at.
200 if (EmitICRemark) {
Jessica Paquettea0aa5b32018-09-06 21:19:54 +0000201 InstrCount = initSizeRemarkInfo(M, FunctionToInstrCount);
Jessica Paquette872a4c92018-08-31 20:20:54 +0000202 FunctionSize = F.getInstructionCount();
203 }
Devang Patela8c81c522007-03-06 02:30:46 +0000204 while (!LQ.empty()) {
Sanjoy Dasdef17292017-09-28 02:45:42 +0000205 CurrentLoopDeleted = false;
Justin Bogner6e9810c2015-12-16 00:01:02 +0000206 CurrentLoop = LQ.back();
Justin Bognere9fb228d2016-01-08 19:08:53 +0000207
Dan Gohmanb0934cd2009-09-27 23:52:07 +0000208 // Run all passes on the current Loop.
Andrew Trickf898cbd2011-08-03 23:45:50 +0000209 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
Dan Gohmana97e78b2010-08-11 20:34:43 +0000210 LoopPass *P = getContainedPass(Index);
Eric Christopher3c0d5162012-03-23 03:54:05 +0000211
Dan Gohman0bd312a2009-09-28 15:07:18 +0000212 dumpPassInfo(P, EXECUTION_MSG, ON_LOOP_MSG,
Benjamin Kramerf4512a32010-03-31 16:06:22 +0000213 CurrentLoop->getHeader()->getName());
Chris Lattner4c493d92008-08-08 15:14:09 +0000214 dumpRequiredSet(P);
Devang Patel20525d22007-02-22 08:56:17 +0000215
216 initializeAnalysisImpl(P);
Eric Christopher3c0d5162012-03-23 03:54:05 +0000217
Fedor Sergeev3a3d6882018-11-19 15:10:59 +0000218 bool LocalChanged = false;
Chris Lattner4c1e9542009-03-06 06:45:05 +0000219 {
Chris Lattner9efd4fc2010-01-22 05:37:10 +0000220 PassManagerPrettyStackEntry X(P, *CurrentLoop->getHeader());
Chris Lattner707431c2010-03-30 04:03:22 +0000221 TimeRegion PassTimer(getPassTimer(P));
Fedor Sergeev3a3d6882018-11-19 15:10:59 +0000222 LocalChanged = P->runOnLoop(CurrentLoop, *this);
223 Changed |= LocalChanged;
Jessica Paquette872a4c92018-08-31 20:20:54 +0000224 if (EmitICRemark) {
225 unsigned NewSize = F.getInstructionCount();
226 // Update the size of the function, emit a remark, and update the
227 // size of the module.
228 if (NewSize != FunctionSize) {
Jessica Paquette872a4c92018-08-31 20:20:54 +0000229 int64_t Delta = static_cast<int64_t>(NewSize) -
230 static_cast<int64_t>(FunctionSize);
Jessica Paquettea0aa5b32018-09-06 21:19:54 +0000231 emitInstrCountChangedRemark(P, M, Delta, InstrCount,
232 FunctionToInstrCount, &F);
Jessica Paquette872a4c92018-08-31 20:20:54 +0000233 InstrCount = static_cast<int64_t>(InstrCount) + Delta;
234 FunctionSize = NewSize;
235 }
236 }
Chris Lattner4c1e9542009-03-06 06:45:05 +0000237 }
Devang Patel20525d22007-02-22 08:56:17 +0000238
Fedor Sergeev3a3d6882018-11-19 15:10:59 +0000239 if (LocalChanged)
Sanjoy Dasdef17292017-09-28 02:45:42 +0000240 dumpPassInfo(P, MODIFICATION_MSG, ON_LOOP_MSG,
241 CurrentLoopDeleted ? "<deleted loop>"
242 : CurrentLoop->getName());
Chris Lattner4c493d92008-08-08 15:14:09 +0000243 dumpPreservedSet(P);
Devang Patela273d1c2007-07-19 18:02:32 +0000244
Sanjoy Dasdef17292017-09-28 02:45:42 +0000245 if (CurrentLoopDeleted) {
Justin Bogner6e9810c2015-12-16 00:01:02 +0000246 // Notify passes that the loop is being deleted.
247 deleteSimpleAnalysisLoop(CurrentLoop);
248 } else {
Dan Gohman4dbb3012009-09-28 00:27:48 +0000249 // Manually check that this loop is still healthy. This is done
250 // instead of relying on LoopInfo::verifyLoop since LoopInfo
251 // is a function pass and it's really expensive to verify every
252 // loop in the function every time. That level of checking can be
253 // enabled with the -verify-loop-info option.
Chris Lattner707431c2010-03-30 04:03:22 +0000254 {
Chandler Carruth4f8f3072015-01-17 14:16:18 +0000255 TimeRegion PassTimer(getPassTimer(&LIWP));
Chris Lattner707431c2010-03-30 04:03:22 +0000256 CurrentLoop->verifyLoop();
257 }
Igor Laevskyc3ccf5d2016-10-28 12:57:20 +0000258 // Here we apply same reasoning as in the above case. Only difference
259 // is that LPPassManager might run passes which do not require LCSSA
260 // form (LoopPassPrinter for example). We should skip verification for
261 // such passes.
Michael Zolotukhine82e83f2018-02-07 04:24:44 +0000262 // FIXME: Loop-sink currently break LCSSA. Fix it and reenable the
263 // verification!
264#if 0
Igor Laevskyc3ccf5d2016-10-28 12:57:20 +0000265 if (mustPreserveAnalysisID(LCSSAVerificationPass::ID))
Michael Zolotukhinec8b0ec2018-02-07 00:13:08 +0000266 assert(CurrentLoop->isRecursivelyLCSSAForm(*DT, *LI));
Michael Zolotukhine82e83f2018-02-07 04:24:44 +0000267#endif
Dan Gohman4dbb3012009-09-28 00:27:48 +0000268
269 // Then call the regular verifyAnalysis functions.
Chris Lattner9efd4fc2010-01-22 05:37:10 +0000270 verifyPreservedAnalysis(P);
Juergen Ributzka34390c72014-05-16 02:33:15 +0000271
272 F.getContext().yield();
Dan Gohman4dbb3012009-09-28 00:27:48 +0000273 }
Dan Gohman96a26bd2009-09-03 15:09:24 +0000274
Devang Patel20525d22007-02-22 08:56:17 +0000275 removeNotPreservedAnalysis(P);
276 recordAvailableAnalysis(P);
Sanjoy Dasdef17292017-09-28 02:45:42 +0000277 removeDeadPasses(P,
278 CurrentLoopDeleted ? "<deleted>"
279 : CurrentLoop->getHeader()->getName(),
Dan Gohman0bd312a2009-09-28 15:07:18 +0000280 ON_LOOP_MSG);
Devang Patel4e335c62007-02-23 00:10:16 +0000281
Sanjoy Dasdef17292017-09-28 02:45:42 +0000282 if (CurrentLoopDeleted)
Devang Patel4e335c62007-02-23 00:10:16 +0000283 // Do not run other passes on this loop.
284 break;
Devang Patel20525d22007-02-22 08:56:17 +0000285 }
Andrew Trickf898cbd2011-08-03 23:45:50 +0000286
Dan Gohman37a996642009-09-27 23:43:07 +0000287 // If the loop was deleted, release all the loop passes. This frees up
288 // some memory, and avoids trouble with the pass manager trying to call
289 // verifyAnalysis on them.
Sanjoy Dasdef17292017-09-28 02:45:42 +0000290 if (CurrentLoopDeleted) {
Andrew Trickf898cbd2011-08-03 23:45:50 +0000291 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
Dan Gohman37a996642009-09-27 23:43:07 +0000292 Pass *P = getContainedPass(Index);
Dan Gohman0bd312a2009-09-28 15:07:18 +0000293 freePass(P, "<deleted>", ON_LOOP_MSG);
Dan Gohman37a996642009-09-27 23:43:07 +0000294 }
Justin Bogner6e9810c2015-12-16 00:01:02 +0000295 }
Dan Gohman37a996642009-09-27 23:43:07 +0000296
Devang Patel51705712007-02-22 23:45:15 +0000297 // Pop the loop from queue after running all passes.
Devang Patela8c81c522007-03-06 02:30:46 +0000298 LQ.pop_back();
Devang Patel20525d22007-02-22 08:56:17 +0000299 }
Andrew Trickf898cbd2011-08-03 23:45:50 +0000300
Devang Patel84ffc222007-03-06 16:59:03 +0000301 // Finalization
302 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
Dan Gohmana97e78b2010-08-11 20:34:43 +0000303 LoopPass *P = getContainedPass(Index);
Chris Lattner9efd4fc2010-01-22 05:37:10 +0000304 Changed |= P->doFinalization();
Devang Patel84ffc222007-03-06 16:59:03 +0000305 }
Devang Patel20525d22007-02-22 08:56:17 +0000306
307 return Changed;
308}
309
Dan Gohman143206d2009-02-17 19:41:26 +0000310/// Print passes managed by this manager
311void LPPassManager::dumpPassStructure(unsigned Offset) {
Chris Lattner4883d902009-08-23 07:19:13 +0000312 errs().indent(Offset*2) << "Loop Pass Manager\n";
Dan Gohman143206d2009-02-17 19:41:26 +0000313 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
314 Pass *P = getContainedPass(Index);
Dan Gohmanf71c5212010-08-19 01:29:07 +0000315 P->dumpPassStructure(Offset + 1);
Dan Gohman143206d2009-02-17 19:41:26 +0000316 dumpLastUses(P, Offset+1);
317 }
318}
319
Devang Patel20525d22007-02-22 08:56:17 +0000320
Devang Patel55c38272007-02-23 00:36:57 +0000321//===----------------------------------------------------------------------===//
322// LoopPass
323
David Greene9b063df2010-04-02 23:17:14 +0000324Pass *LoopPass::createPrinterPass(raw_ostream &O,
325 const std::string &Banner) const {
Justin Bognerc2b98f02015-11-04 22:24:08 +0000326 return new PrintLoopPassWrapper(O, Banner);
David Greene9b063df2010-04-02 23:17:14 +0000327}
328
Devang Patel16993842007-03-06 17:59:37 +0000329// Check if this pass is suitable for the current LPPassManager, if
330// available. This pass P is not suitable for a LPPassManager if P
331// is not preserving higher level analysis info used by other
332// LPPassManager passes. In such case, pop LPPassManager from the
333// stack. This will force assignPassManager() to create new
334// LPPassManger as expected.
335void LoopPass::preparePassManager(PMStack &PMS) {
336
Andrew Trickf898cbd2011-08-03 23:45:50 +0000337 // Find LPPassManager
Duncan Sands60f28bf2007-07-19 09:42:01 +0000338 while (!PMS.empty() &&
339 PMS.top()->getPassManagerType() > PMT_LoopPassManager)
340 PMS.pop();
Devang Patel16993842007-03-06 17:59:37 +0000341
Devang Patel16993842007-03-06 17:59:37 +0000342 // If this pass is destroying high level information that is used
343 // by other passes that are managed by LPM then do not insert
344 // this pass in current LPM. Use new LPPassManager.
Chris Lattner9efd4fc2010-01-22 05:37:10 +0000345 if (PMS.top()->getPassManagerType() == PMT_LoopPassManager &&
Andrew Trickf898cbd2011-08-03 23:45:50 +0000346 !PMS.top()->preserveHigherLevelAnalysis(this))
Devang Patel16993842007-03-06 17:59:37 +0000347 PMS.pop();
348}
349
Devang Patel55c38272007-02-23 00:36:57 +0000350/// Assign pass manager to manage this pass.
351void LoopPass::assignPassManager(PMStack &PMS,
352 PassManagerType PreferredType) {
Andrew Trickf898cbd2011-08-03 23:45:50 +0000353 // Find LPPassManager
Duncan Sands60f28bf2007-07-19 09:42:01 +0000354 while (!PMS.empty() &&
355 PMS.top()->getPassManagerType() > PMT_LoopPassManager)
356 PMS.pop();
Devang Patel55c38272007-02-23 00:36:57 +0000357
Chris Lattner9efd4fc2010-01-22 05:37:10 +0000358 LPPassManager *LPPM;
359 if (PMS.top()->getPassManagerType() == PMT_LoopPassManager)
360 LPPM = (LPPassManager*)PMS.top();
361 else {
Andrew Trickf898cbd2011-08-03 23:45:50 +0000362 // Create new Loop Pass Manager if it does not exist.
Devang Patel55c38272007-02-23 00:36:57 +0000363 assert (!PMS.empty() && "Unable to create Loop Pass Manager");
364 PMDataManager *PMD = PMS.top();
365
Andrew Trick08966212011-08-29 17:07:00 +0000366 // [1] Create new Loop Pass Manager
367 LPPM = new LPPassManager();
Devang Patel901a27d2007-03-07 00:26:10 +0000368 LPPM->populateInheritedAnalysis(PMS);
Devang Patel55c38272007-02-23 00:36:57 +0000369
370 // [2] Set up new manager's top level manager
371 PMTopLevelManager *TPM = PMD->getTopLevelManager();
372 TPM->addIndirectPassManager(LPPM);
373
374 // [3] Assign manager to manage this new manager. This may create
375 // and push new managers into PMS
Chris Lattner9efd4fc2010-01-22 05:37:10 +0000376 Pass *P = LPPM->getAsPass();
Devang Patel4a8725c2007-03-06 19:11:25 +0000377 TPM->schedulePass(P);
Devang Patel55c38272007-02-23 00:36:57 +0000378
379 // [4] Push new manager into PMS
380 PMS.push(LPPM);
381 }
382
383 LPPM->add(this);
384}
Paul Robinsonaf4e64d2014-02-06 00:07:05 +0000385
Richard Trieub37a70f2019-02-28 04:00:55 +0000386static std::string getDescription(const Loop &L) {
387 return "loop";
388}
389
Andrew Kayloraa641a52016-04-22 22:06:11 +0000390bool LoopPass::skipLoop(const Loop *L) const {
Paul Robinson0c12b1d22014-02-26 01:23:26 +0000391 const Function *F = L->getHeader()->getParent();
Andrew Kayloraa641a52016-04-22 22:06:11 +0000392 if (!F)
393 return false;
394 // Check the opt bisect limit.
Richard Trieub37a70f2019-02-28 04:00:55 +0000395 OptPassGate &Gate = F->getContext().getOptPassGate();
396 if (Gate.isEnabled() && !Gate.shouldRunPass(this, getDescription(*L)))
Andrew Kayloraa641a52016-04-22 22:06:11 +0000397 return true;
398 // Check for the OptimizeNone attribute.
Evandro Menezes85bd3972019-04-04 22:40:06 +0000399 if (F->hasOptNone()) {
Paul Robinsonaf4e64d2014-02-06 00:07:05 +0000400 // FIXME: Report this to dbgs() only once per function.
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000401 LLVM_DEBUG(dbgs() << "Skipping pass '" << getPassName() << "' in function "
402 << F->getName() << "\n");
Paul Robinsonaf4e64d2014-02-06 00:07:05 +0000403 // FIXME: Delete loop from pass manager's queue?
404 return true;
405 }
406 return false;
407}
Igor Laevskyc3ccf5d2016-10-28 12:57:20 +0000408
409char LCSSAVerificationPass::ID = 0;
410INITIALIZE_PASS(LCSSAVerificationPass, "lcssa-verification", "LCSSA Verifier",
411 false, false)