blob: a68f114b83a0dbebcc13f048c9c6248c2e1fbdb2 [file] [log] [blame]
Devang Patel16a31c42007-02-22 08:56:17 +00001//===- LoopPass.cpp - Loop Pass and Loop Pass Manager ---------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Devang Patel16a31c42007-02-22 08:56:17 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements LoopPass and LPPassManager. All loop optimization
11// and transformation passes are derived from LoopPass. LPPassManager is
12// responsible for managing LoopPasses.
13//
14//===----------------------------------------------------------------------===//
15
16#include "llvm/Analysis/LoopPass.h"
Chandler Carruthc68d25f2017-01-11 09:43:56 +000017#include "llvm/Analysis/LoopAnalysisManager.h"
Igor Laevsky22eba5a2016-10-28 12:57:20 +000018#include "llvm/IR/Dominators.h"
Chandler Carruth8a5351f2014-01-12 11:10:32 +000019#include "llvm/IR/IRPrintingPasses.h"
Juergen Ributzka9bc1b732014-05-16 02:33:15 +000020#include "llvm/IR/LLVMContext.h"
Andrew Kaylor1e455c52016-04-22 22:06:11 +000021#include "llvm/IR/OptBisect.h"
Justin Bogner32968f12015-11-04 22:24:08 +000022#include "llvm/IR/PassManager.h"
Fedor Sergeev9f6be222018-08-28 21:06:51 +000023#include "llvm/IR/PassTimingInfo.h"
David Greene5c8aa952010-04-02 23:17:14 +000024#include "llvm/Support/Debug.h"
Chris Lattnera782e752010-03-30 04:03:22 +000025#include "llvm/Support/Timer.h"
Benjamin Kramerdf93f4b2015-03-23 18:07:13 +000026#include "llvm/Support/raw_ostream.h"
Devang Patel16a31c42007-02-22 08:56:17 +000027using namespace llvm;
28
Chandler Carruth283b3992014-04-21 22:55:11 +000029#define DEBUG_TYPE "loop-pass-manager"
30
David Greene5c8aa952010-04-02 23:17:14 +000031namespace {
32
33/// PrintLoopPass - Print a Function corresponding to a Loop.
34///
Justin Bogner32968f12015-11-04 22:24:08 +000035class PrintLoopPassWrapper : public LoopPass {
Chandler Carruthd27a39a2017-01-11 06:23:21 +000036 raw_ostream &OS;
37 std::string Banner;
David Greene5c8aa952010-04-02 23:17:14 +000038
39public:
40 static char ID;
Chandler Carruthd27a39a2017-01-11 06:23:21 +000041 PrintLoopPassWrapper() : LoopPass(ID), OS(dbgs()) {}
Justin Bogner32968f12015-11-04 22:24:08 +000042 PrintLoopPassWrapper(raw_ostream &OS, const std::string &Banner)
Chandler Carruthd27a39a2017-01-11 06:23:21 +000043 : LoopPass(ID), OS(OS), Banner(Banner) {}
David Greene5c8aa952010-04-02 23:17:14 +000044
Craig Topperc37e6c02014-03-05 07:30:04 +000045 void getAnalysisUsage(AnalysisUsage &AU) const override {
David Greene5c8aa952010-04-02 23:17:14 +000046 AU.setPreservesAll();
47 }
48
Craig Topperc37e6c02014-03-05 07:30:04 +000049 bool runOnLoop(Loop *L, LPPassManager &) override {
Chandler Carruthf5f61852017-11-17 19:58:36 +000050 auto BBI = llvm::find_if(L->blocks(), [](BasicBlock *BB) { return BB; });
Weiming Zhaob85410e2016-01-06 22:55:03 +000051 if (BBI != L->blocks().end() &&
Chandler Carruth04d0fe92016-06-17 00:11:01 +000052 isFunctionInPrintList((*BBI)->getParent()->getName())) {
Chandler Carruthd27a39a2017-01-11 06:23:21 +000053 printLoop(*L, OS, Banner);
Chandler Carruth04d0fe92016-06-17 00:11:01 +000054 }
David Greene5c8aa952010-04-02 23:17:14 +000055 return false;
56 }
Yaron Kerenea563682017-03-10 07:09:20 +000057
58 StringRef getPassName() const override { return "Print Loop IR"; }
David Greene5c8aa952010-04-02 23:17:14 +000059};
60
Justin Bogner32968f12015-11-04 22:24:08 +000061char PrintLoopPassWrapper::ID = 0;
Alexander Kornienkocd52a7a2015-06-23 09:49:53 +000062}
David Greene5c8aa952010-04-02 23:17:14 +000063
Devang Patel16a31c42007-02-22 08:56:17 +000064//===----------------------------------------------------------------------===//
65// LPPassManager
66//
Devang Patel794fd752007-05-01 21:15:47 +000067
Devang Patel19974732007-05-03 01:11:54 +000068char LPPassManager::ID = 0;
Devang Patel16a31c42007-02-22 08:56:17 +000069
Andrew Trick0e122d12011-08-29 17:07:00 +000070LPPassManager::LPPassManager()
71 : FunctionPass(ID), PMDataManager() {
Craig Topper570e52c2014-04-15 04:59:12 +000072 LI = nullptr;
73 CurrentLoop = nullptr;
Devang Pateld0e6e332007-02-22 23:30:07 +000074}
75
Chandler Carruth9f6280a2017-05-25 03:01:31 +000076// Insert loop into loop nest (LoopInfo) and loop queue (LQ).
77void LPPassManager::addLoop(Loop &L) {
78 if (!L.getParentLoop()) {
Justin Bognerca9d3aa2015-10-22 21:21:32 +000079 // This is the top level loop.
Chandler Carruth9f6280a2017-05-25 03:01:31 +000080 LQ.push_front(&L);
81 return;
Justin Bognerca9d3aa2015-10-22 21:21:32 +000082 }
83
Justin Bognerca9d3aa2015-10-22 21:21:32 +000084 // Insert L into the loop queue after the parent loop.
85 for (auto I = LQ.begin(), E = LQ.end(); I != E; ++I) {
Chandler Carruth9f6280a2017-05-25 03:01:31 +000086 if (*I == L.getParentLoop()) {
Justin Bognerca9d3aa2015-10-22 21:21:32 +000087 // deque does not support insert after.
88 ++I;
Chandler Carruth9f6280a2017-05-25 03:01:31 +000089 LQ.insert(I, 1, &L);
90 return;
Devang Patela885c062007-03-06 19:00:02 +000091 }
92 }
93}
94
Devang Patelc7e49c02007-07-31 08:00:57 +000095/// cloneBasicBlockSimpleAnalysis - Invoke cloneBasicBlockAnalysis hook for
96/// all loop passes.
Andrew Trick882bcc62011-08-03 23:45:50 +000097void LPPassManager::cloneBasicBlockSimpleAnalysis(BasicBlock *From,
Devang Patelc7e49c02007-07-31 08:00:57 +000098 BasicBlock *To, Loop *L) {
Andrew Trick882bcc62011-08-03 23:45:50 +000099 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
Dan Gohmanbd4d66d2010-08-11 20:34:43 +0000100 LoopPass *LP = getContainedPass(Index);
Devang Patelc7e49c02007-07-31 08:00:57 +0000101 LP->cloneBasicBlockAnalysis(From, To, L);
102 }
103}
104
105/// deleteSimpleAnalysisValue - Invoke deleteAnalysisValue hook for all passes.
106void LPPassManager::deleteSimpleAnalysisValue(Value *V, Loop *L) {
Devang Patel575ec802009-03-25 23:57:48 +0000107 if (BasicBlock *BB = dyn_cast<BasicBlock>(V)) {
Benjamin Kramer8d0d2b62016-06-26 17:27:42 +0000108 for (Instruction &I : *BB) {
Devang Patel575ec802009-03-25 23:57:48 +0000109 deleteSimpleAnalysisValue(&I, L);
110 }
111 }
Andrew Trick882bcc62011-08-03 23:45:50 +0000112 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
Dan Gohmanbd4d66d2010-08-11 20:34:43 +0000113 LoopPass *LP = getContainedPass(Index);
Devang Patelc7e49c02007-07-31 08:00:57 +0000114 LP->deleteAnalysisValue(V, L);
115 }
116}
117
David Peixottocfc42962014-09-24 16:48:31 +0000118/// Invoke deleteAnalysisLoop hook for all passes.
119void 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 Patelc7e49c02007-07-31 08:00:57 +0000126
Devang Patel643a79b2007-02-22 23:45:15 +0000127// Recurse through all subloops and all loops into LQ.
Devang Patel30159722007-03-06 02:30:46 +0000128static void addLoopIntoQueue(Loop *L, std::deque<Loop *> &LQ) {
Devang Patel622adea2007-03-06 19:50:49 +0000129 LQ.push_back(L);
David Majnemer55bd48f2016-07-19 17:50:24 +0000130 for (Loop *I : reverse(*L))
131 addLoopIntoQueue(I, LQ);
Devang Patel643a79b2007-02-22 23:45:15 +0000132}
133
Devang Patelc37177e2007-03-06 19:11:25 +0000134/// Pass Manager itself does not invalidate any analysis info.
135void LPPassManager::getAnalysisUsage(AnalysisUsage &Info) const {
Andrew Trick882bcc62011-08-03 23:45:50 +0000136 // LPPassManager needs LoopInfo. In the long term LoopInfo class will
Devang Patelc37177e2007-03-06 19:11:25 +0000137 // become part of LPPassManager.
Chandler Carruthde5df292015-01-17 14:16:18 +0000138 Info.addRequired<LoopInfoWrapperPass>();
Igor Laevsky22eba5a2016-10-28 12:57:20 +0000139 Info.addRequired<DominatorTreeWrapperPass>();
Devang Patelc37177e2007-03-06 19:11:25 +0000140 Info.setPreservesAll();
141}
142
Sanjoy Dase87cf872017-09-28 02:45:42 +0000143void LPPassManager::markLoopAsDeleted(Loop &L) {
144 assert((&L == CurrentLoop || CurrentLoop->contains(&L)) &&
145 "Must not delete loop outside the current loop tree!");
Chandler Carruth762b38d2018-06-22 02:43:41 +0000146 // 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 Dase87cf872017-09-28 02:45:42 +0000153 CurrentLoopDeleted = true;
Chandler Carruth762b38d2018-06-22 02:43:41 +0000154 // Add this loop back onto the back of the queue to preserve our invariants.
155 LQ.push_back(&L);
156 }
Sanjoy Dase87cf872017-09-28 02:45:42 +0000157}
158
Devang Patel16a31c42007-02-22 08:56:17 +0000159/// 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.
161bool LPPassManager::runOnFunction(Function &F) {
Chandler Carruthde5df292015-01-17 14:16:18 +0000162 auto &LIWP = getAnalysis<LoopInfoWrapperPass>();
163 LI = &LIWP.getLoopInfo();
Jessica Paquette849da552018-05-18 17:26:39 +0000164 Module &M = *F.getParent();
Michael Zolotukhin9cac4d02018-02-07 04:24:44 +0000165#if 0
Igor Laevsky22eba5a2016-10-28 12:57:20 +0000166 DominatorTree *DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree();
Michael Zolotukhin811a2d32018-02-07 00:13:08 +0000167#endif
Devang Patel16a31c42007-02-22 08:56:17 +0000168 bool Changed = false;
169
Devang Patel70c09c52008-07-03 07:02:30 +0000170 // Collect inherited analysis from Module level pass manager.
171 populateInheritedAnalysis(TPM->activeStack);
172
Andrew Trickc9b1e252012-06-26 04:11:38 +0000173 // 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 Trick360fef52013-07-20 23:10:31 +0000178 //
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 Majnemer55bd48f2016-07-19 17:50:24 +0000182 for (Loop *L : reverse(*LI))
183 addLoopIntoQueue(L, LQ);
Devang Patel643a79b2007-02-22 23:45:15 +0000184
Torok Edwin1970a892009-06-29 18:49:09 +0000185 if (LQ.empty()) // No loops, skip calling finalizers
186 return false;
187
Devang Patela5057d02007-03-06 16:59:03 +0000188 // Initialization
David Majnemer55bd48f2016-07-19 17:50:24 +0000189 for (Loop *L : LQ) {
Andrew Trick882bcc62011-08-03 23:45:50 +0000190 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
Dan Gohmanbd4d66d2010-08-11 20:34:43 +0000191 LoopPass *P = getContainedPass(Index);
Chris Lattner77c95ed2010-01-22 05:37:10 +0000192 Changed |= P->doInitialization(L, *this);
Devang Patela5057d02007-03-06 16:59:03 +0000193 }
194 }
195
Devang Patel16a31c42007-02-22 08:56:17 +0000196 // Walk Loops
Jessica Paquette6a738602018-08-31 20:20:54 +0000197 unsigned InstrCount, FunctionSize = 0;
Jessica Paquette9e212802018-09-06 21:19:54 +0000198 StringMap<std::pair<unsigned, unsigned>> FunctionToInstrCount;
Xin Tonga747d612018-07-22 05:27:41 +0000199 bool EmitICRemark = M.shouldEmitInstrCountChangedRemark();
Jessica Paquette6a738602018-08-31 20:20:54 +0000200 // Collect the initial size of the module and the function we're looking at.
201 if (EmitICRemark) {
Jessica Paquette9e212802018-09-06 21:19:54 +0000202 InstrCount = initSizeRemarkInfo(M, FunctionToInstrCount);
Jessica Paquette6a738602018-08-31 20:20:54 +0000203 FunctionSize = F.getInstructionCount();
204 }
Devang Patel30159722007-03-06 02:30:46 +0000205 while (!LQ.empty()) {
Sanjoy Dase87cf872017-09-28 02:45:42 +0000206 CurrentLoopDeleted = false;
Justin Bogner6da3c1a2015-12-16 00:01:02 +0000207 CurrentLoop = LQ.back();
Justin Bognerfbbc16f2016-01-08 19:08:53 +0000208
Dan Gohman1edaef62009-09-27 23:52:07 +0000209 // Run all passes on the current Loop.
Andrew Trick882bcc62011-08-03 23:45:50 +0000210 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
Dan Gohmanbd4d66d2010-08-11 20:34:43 +0000211 LoopPass *P = getContainedPass(Index);
Eric Christopher9e7e6092012-03-23 03:54:05 +0000212
Dan Gohman6d594a92009-09-28 15:07:18 +0000213 dumpPassInfo(P, EXECUTION_MSG, ON_LOOP_MSG,
Benjamin Kramer41d43eb2010-03-31 16:06:22 +0000214 CurrentLoop->getHeader()->getName());
Chris Lattner0dabb7e2008-08-08 15:14:09 +0000215 dumpRequiredSet(P);
Devang Patel16a31c42007-02-22 08:56:17 +0000216
217 initializeAnalysisImpl(P);
Eric Christopher9e7e6092012-03-23 03:54:05 +0000218
Fedor Sergeevb7c75ac2018-11-19 15:10:59 +0000219 bool LocalChanged = false;
Chris Lattnerd6f16582009-03-06 06:45:05 +0000220 {
Chris Lattner77c95ed2010-01-22 05:37:10 +0000221 PassManagerPrettyStackEntry X(P, *CurrentLoop->getHeader());
Chris Lattnera782e752010-03-30 04:03:22 +0000222 TimeRegion PassTimer(getPassTimer(P));
Fedor Sergeevb7c75ac2018-11-19 15:10:59 +0000223 LocalChanged = P->runOnLoop(CurrentLoop, *this);
224 Changed |= LocalChanged;
Jessica Paquette6a738602018-08-31 20:20:54 +0000225 if (EmitICRemark) {
226 unsigned NewSize = F.getInstructionCount();
227 // Update the size of the function, emit a remark, and update the
228 // size of the module.
229 if (NewSize != FunctionSize) {
Jessica Paquette6a738602018-08-31 20:20:54 +0000230 int64_t Delta = static_cast<int64_t>(NewSize) -
231 static_cast<int64_t>(FunctionSize);
Jessica Paquette9e212802018-09-06 21:19:54 +0000232 emitInstrCountChangedRemark(P, M, Delta, InstrCount,
233 FunctionToInstrCount, &F);
Jessica Paquette6a738602018-08-31 20:20:54 +0000234 InstrCount = static_cast<int64_t>(InstrCount) + Delta;
235 FunctionSize = NewSize;
236 }
237 }
Chris Lattnerd6f16582009-03-06 06:45:05 +0000238 }
Devang Patel16a31c42007-02-22 08:56:17 +0000239
Fedor Sergeevb7c75ac2018-11-19 15:10:59 +0000240 if (LocalChanged)
Sanjoy Dase87cf872017-09-28 02:45:42 +0000241 dumpPassInfo(P, MODIFICATION_MSG, ON_LOOP_MSG,
242 CurrentLoopDeleted ? "<deleted loop>"
243 : CurrentLoop->getName());
Chris Lattner0dabb7e2008-08-08 15:14:09 +0000244 dumpPreservedSet(P);
Devang Patel58e0ef12007-07-19 18:02:32 +0000245
Sanjoy Dase87cf872017-09-28 02:45:42 +0000246 if (CurrentLoopDeleted) {
Justin Bogner6da3c1a2015-12-16 00:01:02 +0000247 // Notify passes that the loop is being deleted.
248 deleteSimpleAnalysisLoop(CurrentLoop);
249 } else {
Dan Gohman9450b0e2009-09-28 00:27:48 +0000250 // Manually check that this loop is still healthy. This is done
251 // instead of relying on LoopInfo::verifyLoop since LoopInfo
252 // is a function pass and it's really expensive to verify every
253 // loop in the function every time. That level of checking can be
254 // enabled with the -verify-loop-info option.
Chris Lattnera782e752010-03-30 04:03:22 +0000255 {
Chandler Carruthde5df292015-01-17 14:16:18 +0000256 TimeRegion PassTimer(getPassTimer(&LIWP));
Chris Lattnera782e752010-03-30 04:03:22 +0000257 CurrentLoop->verifyLoop();
258 }
Igor Laevsky22eba5a2016-10-28 12:57:20 +0000259 // Here we apply same reasoning as in the above case. Only difference
260 // is that LPPassManager might run passes which do not require LCSSA
261 // form (LoopPassPrinter for example). We should skip verification for
262 // such passes.
Michael Zolotukhin9cac4d02018-02-07 04:24:44 +0000263 // FIXME: Loop-sink currently break LCSSA. Fix it and reenable the
264 // verification!
265#if 0
Igor Laevsky22eba5a2016-10-28 12:57:20 +0000266 if (mustPreserveAnalysisID(LCSSAVerificationPass::ID))
Michael Zolotukhin811a2d32018-02-07 00:13:08 +0000267 assert(CurrentLoop->isRecursivelyLCSSAForm(*DT, *LI));
Michael Zolotukhin9cac4d02018-02-07 04:24:44 +0000268#endif
Dan Gohman9450b0e2009-09-28 00:27:48 +0000269
270 // Then call the regular verifyAnalysis functions.
Chris Lattner77c95ed2010-01-22 05:37:10 +0000271 verifyPreservedAnalysis(P);
Juergen Ributzka9bc1b732014-05-16 02:33:15 +0000272
273 F.getContext().yield();
Dan Gohman9450b0e2009-09-28 00:27:48 +0000274 }
Dan Gohmandd12de62009-09-03 15:09:24 +0000275
Devang Patel16a31c42007-02-22 08:56:17 +0000276 removeNotPreservedAnalysis(P);
277 recordAvailableAnalysis(P);
Sanjoy Dase87cf872017-09-28 02:45:42 +0000278 removeDeadPasses(P,
279 CurrentLoopDeleted ? "<deleted>"
280 : CurrentLoop->getHeader()->getName(),
Dan Gohman6d594a92009-09-28 15:07:18 +0000281 ON_LOOP_MSG);
Devang Patel5afdc7d2007-02-23 00:10:16 +0000282
Sanjoy Dase87cf872017-09-28 02:45:42 +0000283 if (CurrentLoopDeleted)
Devang Patel5afdc7d2007-02-23 00:10:16 +0000284 // Do not run other passes on this loop.
285 break;
Devang Patel16a31c42007-02-22 08:56:17 +0000286 }
Andrew Trick882bcc62011-08-03 23:45:50 +0000287
Dan Gohman97029012009-09-27 23:43:07 +0000288 // If the loop was deleted, release all the loop passes. This frees up
289 // some memory, and avoids trouble with the pass manager trying to call
290 // verifyAnalysis on them.
Sanjoy Dase87cf872017-09-28 02:45:42 +0000291 if (CurrentLoopDeleted) {
Andrew Trick882bcc62011-08-03 23:45:50 +0000292 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
Dan Gohman97029012009-09-27 23:43:07 +0000293 Pass *P = getContainedPass(Index);
Dan Gohman6d594a92009-09-28 15:07:18 +0000294 freePass(P, "<deleted>", ON_LOOP_MSG);
Dan Gohman97029012009-09-27 23:43:07 +0000295 }
Justin Bogner6da3c1a2015-12-16 00:01:02 +0000296 }
Dan Gohman97029012009-09-27 23:43:07 +0000297
Devang Patel643a79b2007-02-22 23:45:15 +0000298 // Pop the loop from queue after running all passes.
Devang Patel30159722007-03-06 02:30:46 +0000299 LQ.pop_back();
Devang Patel16a31c42007-02-22 08:56:17 +0000300 }
Andrew Trick882bcc62011-08-03 23:45:50 +0000301
Devang Patela5057d02007-03-06 16:59:03 +0000302 // Finalization
303 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
Dan Gohmanbd4d66d2010-08-11 20:34:43 +0000304 LoopPass *P = getContainedPass(Index);
Chris Lattner77c95ed2010-01-22 05:37:10 +0000305 Changed |= P->doFinalization();
Devang Patela5057d02007-03-06 16:59:03 +0000306 }
Devang Patel16a31c42007-02-22 08:56:17 +0000307
308 return Changed;
309}
310
Dan Gohman189c6352009-02-17 19:41:26 +0000311/// Print passes managed by this manager
312void LPPassManager::dumpPassStructure(unsigned Offset) {
Chris Lattner103289e2009-08-23 07:19:13 +0000313 errs().indent(Offset*2) << "Loop Pass Manager\n";
Dan Gohman189c6352009-02-17 19:41:26 +0000314 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
315 Pass *P = getContainedPass(Index);
Dan Gohman8a757ae2010-08-19 01:29:07 +0000316 P->dumpPassStructure(Offset + 1);
Dan Gohman189c6352009-02-17 19:41:26 +0000317 dumpLastUses(P, Offset+1);
318 }
319}
320
Devang Patel16a31c42007-02-22 08:56:17 +0000321
Devang Patelbfd59052007-02-23 00:36:57 +0000322//===----------------------------------------------------------------------===//
323// LoopPass
324
David Greene5c8aa952010-04-02 23:17:14 +0000325Pass *LoopPass::createPrinterPass(raw_ostream &O,
326 const std::string &Banner) const {
Justin Bogner32968f12015-11-04 22:24:08 +0000327 return new PrintLoopPassWrapper(O, Banner);
David Greene5c8aa952010-04-02 23:17:14 +0000328}
329
Devang Patel22033be2007-03-06 17:59:37 +0000330// Check if this pass is suitable for the current LPPassManager, if
331// available. This pass P is not suitable for a LPPassManager if P
332// is not preserving higher level analysis info used by other
333// LPPassManager passes. In such case, pop LPPassManager from the
334// stack. This will force assignPassManager() to create new
335// LPPassManger as expected.
336void LoopPass::preparePassManager(PMStack &PMS) {
337
Andrew Trick882bcc62011-08-03 23:45:50 +0000338 // Find LPPassManager
Duncan Sands20d824b2007-07-19 09:42:01 +0000339 while (!PMS.empty() &&
340 PMS.top()->getPassManagerType() > PMT_LoopPassManager)
341 PMS.pop();
Devang Patel22033be2007-03-06 17:59:37 +0000342
Devang Patel22033be2007-03-06 17:59:37 +0000343 // If this pass is destroying high level information that is used
344 // by other passes that are managed by LPM then do not insert
345 // this pass in current LPM. Use new LPPassManager.
Chris Lattner77c95ed2010-01-22 05:37:10 +0000346 if (PMS.top()->getPassManagerType() == PMT_LoopPassManager &&
Andrew Trick882bcc62011-08-03 23:45:50 +0000347 !PMS.top()->preserveHigherLevelAnalysis(this))
Devang Patel22033be2007-03-06 17:59:37 +0000348 PMS.pop();
349}
350
Devang Patelbfd59052007-02-23 00:36:57 +0000351/// Assign pass manager to manage this pass.
352void LoopPass::assignPassManager(PMStack &PMS,
353 PassManagerType PreferredType) {
Andrew Trick882bcc62011-08-03 23:45:50 +0000354 // Find LPPassManager
Duncan Sands20d824b2007-07-19 09:42:01 +0000355 while (!PMS.empty() &&
356 PMS.top()->getPassManagerType() > PMT_LoopPassManager)
357 PMS.pop();
Devang Patelbfd59052007-02-23 00:36:57 +0000358
Chris Lattner77c95ed2010-01-22 05:37:10 +0000359 LPPassManager *LPPM;
360 if (PMS.top()->getPassManagerType() == PMT_LoopPassManager)
361 LPPM = (LPPassManager*)PMS.top();
362 else {
Andrew Trick882bcc62011-08-03 23:45:50 +0000363 // Create new Loop Pass Manager if it does not exist.
Devang Patelbfd59052007-02-23 00:36:57 +0000364 assert (!PMS.empty() && "Unable to create Loop Pass Manager");
365 PMDataManager *PMD = PMS.top();
366
Andrew Trick0e122d12011-08-29 17:07:00 +0000367 // [1] Create new Loop Pass Manager
368 LPPM = new LPPassManager();
Devang Patel1bc89362007-03-07 00:26:10 +0000369 LPPM->populateInheritedAnalysis(PMS);
Devang Patelbfd59052007-02-23 00:36:57 +0000370
371 // [2] Set up new manager's top level manager
372 PMTopLevelManager *TPM = PMD->getTopLevelManager();
373 TPM->addIndirectPassManager(LPPM);
374
375 // [3] Assign manager to manage this new manager. This may create
376 // and push new managers into PMS
Chris Lattner77c95ed2010-01-22 05:37:10 +0000377 Pass *P = LPPM->getAsPass();
Devang Patelc37177e2007-03-06 19:11:25 +0000378 TPM->schedulePass(P);
Devang Patelbfd59052007-02-23 00:36:57 +0000379
380 // [4] Push new manager into PMS
381 PMS.push(LPPM);
382 }
383
384 LPPM->add(this);
385}
Paul Robinson2684ddd2014-02-06 00:07:05 +0000386
Andrew Kaylor1e455c52016-04-22 22:06:11 +0000387bool LoopPass::skipLoop(const Loop *L) const {
Paul Robinsoncf84b5b2014-02-26 01:23:26 +0000388 const Function *F = L->getHeader()->getParent();
Andrew Kaylor1e455c52016-04-22 22:06:11 +0000389 if (!F)
390 return false;
391 // Check the opt bisect limit.
392 LLVMContext &Context = F->getContext();
Fedor Sergeev558f76f2018-03-27 16:57:20 +0000393 if (!Context.getOptPassGate().shouldRunPass(this, *L))
Andrew Kaylor1e455c52016-04-22 22:06:11 +0000394 return true;
395 // Check for the OptimizeNone attribute.
396 if (F->hasFnAttribute(Attribute::OptimizeNone)) {
Paul Robinson2684ddd2014-02-06 00:07:05 +0000397 // FIXME: Report this to dbgs() only once per function.
Nicola Zaghen0818e782018-05-14 12:53:11 +0000398 LLVM_DEBUG(dbgs() << "Skipping pass '" << getPassName() << "' in function "
399 << F->getName() << "\n");
Paul Robinson2684ddd2014-02-06 00:07:05 +0000400 // FIXME: Delete loop from pass manager's queue?
401 return true;
402 }
403 return false;
404}
Igor Laevsky22eba5a2016-10-28 12:57:20 +0000405
406char LCSSAVerificationPass::ID = 0;
407INITIALIZE_PASS(LCSSAVerificationPass, "lcssa-verification", "LCSSA Verifier",
408 false, false)