blob: 683d6d74ab42949b14ef5bc7c45cf11b408c855a [file] [log] [blame]
Devang Patel20525d22007-02-22 08:56:17 +00001//===- LoopPass.cpp - Loop Pass and Loop Pass Manager ---------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-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 Patel20525d22007-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 Carruthb8ddc702014-01-12 11:10:32 +000017#include "llvm/IR/IRPrintingPasses.h"
David Greene9b063df2010-04-02 23:17:14 +000018#include "llvm/Support/Debug.h"
Chris Lattner707431c2010-03-30 04:03:22 +000019#include "llvm/Support/Timer.h"
Devang Patel20525d22007-02-22 08:56:17 +000020using namespace llvm;
21
Chandler Carruthe96dd892014-04-21 22:55:11 +000022#define DEBUG_TYPE "loop-pass-manager"
23
David Greene9b063df2010-04-02 23:17:14 +000024namespace {
25
26/// PrintLoopPass - Print a Function corresponding to a Loop.
27///
28class PrintLoopPass : public LoopPass {
29private:
30 std::string Banner;
31 raw_ostream &Out; // raw_ostream to print on.
32
33public:
34 static char ID;
David Greene9b063df2010-04-02 23:17:14 +000035 PrintLoopPass(const std::string &B, raw_ostream &o)
Owen Andersona7aed182010-08-06 18:33:48 +000036 : LoopPass(ID), Banner(B), Out(o) {}
David Greene9b063df2010-04-02 23:17:14 +000037
Craig Toppere9ba7592014-03-05 07:30:04 +000038 void getAnalysisUsage(AnalysisUsage &AU) const override {
David Greene9b063df2010-04-02 23:17:14 +000039 AU.setPreservesAll();
40 }
41
Craig Toppere9ba7592014-03-05 07:30:04 +000042 bool runOnLoop(Loop *L, LPPassManager &) override {
David Greene9b063df2010-04-02 23:17:14 +000043 Out << Banner;
44 for (Loop::block_iterator b = L->block_begin(), be = L->block_end();
45 b != be;
46 ++b) {
47 (*b)->print(Out);
48 }
49 return false;
50 }
51};
52
53char PrintLoopPass::ID = 0;
54}
55
Devang Patel20525d22007-02-22 08:56:17 +000056//===----------------------------------------------------------------------===//
57// LPPassManager
58//
Devang Patel09f162c2007-05-01 21:15:47 +000059
Devang Patel8c78a0b2007-05-03 01:11:54 +000060char LPPassManager::ID = 0;
Devang Patel20525d22007-02-22 08:56:17 +000061
Andrew Trick08966212011-08-29 17:07:00 +000062LPPassManager::LPPassManager()
63 : FunctionPass(ID), PMDataManager() {
Devang Patel715add32007-02-23 00:16:44 +000064 skipThisLoop = false;
65 redoThisLoop = false;
Craig Topper9f008862014-04-15 04:59:12 +000066 LI = nullptr;
67 CurrentLoop = nullptr;
Devang Patelde7d4902007-02-22 23:30:07 +000068}
69
Andrew Trickf898cbd2011-08-03 23:45:50 +000070/// Delete loop from the loop queue and loop hierarchy (LoopInfo).
Devang Patel4e335c62007-02-23 00:10:16 +000071void LPPassManager::deleteLoopFromQueue(Loop *L) {
Devang Patelfca3aa32007-03-06 18:38:33 +000072
Andrew Trickd3530b92011-08-10 23:22:57 +000073 LI->updateUnloop(L);
Devang Patelfca3aa32007-03-06 18:38:33 +000074
75 // If L is current loop then skip rest of the passes and let
76 // runOnFunction remove L from LQ. Otherwise, remove L from LQ now
77 // and continue applying other passes on CurrentLoop.
Andrew Trickd3530b92011-08-10 23:22:57 +000078 if (CurrentLoop == L)
Devang Patelfca3aa32007-03-06 18:38:33 +000079 skipThisLoop = true;
Andrew Trickd3530b92011-08-10 23:22:57 +000080
81 delete L;
82
83 if (skipThisLoop)
Devang Patelfca3aa32007-03-06 18:38:33 +000084 return;
Devang Patelfca3aa32007-03-06 18:38:33 +000085
86 for (std::deque<Loop *>::iterator I = LQ.begin(),
87 E = LQ.end(); I != E; ++I) {
88 if (*I == L) {
89 LQ.erase(I);
90 break;
91 }
92 }
Devang Patel4e335c62007-02-23 00:10:16 +000093}
94
Devang Patelef7ac132007-03-06 19:00:02 +000095// Inset loop into loop nest (LoopInfo) and loop queue (LQ).
96void LPPassManager::insertLoop(Loop *L, Loop *ParentLoop) {
97
98 assert (CurrentLoop != L && "Cannot insert CurrentLoop");
99
100 // Insert into loop nest
101 if (ParentLoop)
102 ParentLoop->addChildLoop(L);
103 else
104 LI->addTopLevelLoop(L);
105
Dan Gohmanadde5df2009-09-27 23:49:43 +0000106 insertLoopIntoQueue(L);
107}
108
109void LPPassManager::insertLoopIntoQueue(Loop *L) {
Devang Patelef7ac132007-03-06 19:00:02 +0000110 // Insert L into loop queue
Andrew Trickf898cbd2011-08-03 23:45:50 +0000111 if (L == CurrentLoop)
Devang Patelef7ac132007-03-06 19:00:02 +0000112 redoLoop(L);
Dan Gohmanadde5df2009-09-27 23:49:43 +0000113 else if (!L->getParentLoop())
Andrew Trickf898cbd2011-08-03 23:45:50 +0000114 // This is top level loop.
Devang Patelef7ac132007-03-06 19:00:02 +0000115 LQ.push_front(L);
116 else {
Dan Gohmanadde5df2009-09-27 23:49:43 +0000117 // Insert L after the parent loop.
Devang Patelef7ac132007-03-06 19:00:02 +0000118 for (std::deque<Loop *>::iterator I = LQ.begin(),
119 E = LQ.end(); I != E; ++I) {
Dan Gohmanadde5df2009-09-27 23:49:43 +0000120 if (*I == L->getParentLoop()) {
Devang Patelef7ac132007-03-06 19:00:02 +0000121 // deque does not support insert after.
122 ++I;
123 LQ.insert(I, 1, L);
124 break;
125 }
126 }
127 }
128}
129
Devang Patel715add32007-02-23 00:16:44 +0000130// Reoptimize this loop. LPPassManager will re-insert this loop into the
131// queue. This allows LoopPass to change loop nest for the loop. This
132// utility may send LPPassManager into infinite loops so use caution.
133void LPPassManager::redoLoop(Loop *L) {
Devang Patel901a27d2007-03-07 00:26:10 +0000134 assert (CurrentLoop == L && "Can redo only CurrentLoop");
Devang Patel715add32007-02-23 00:16:44 +0000135 redoThisLoop = true;
136}
137
Devang Patelcc2b2332007-07-31 08:00:57 +0000138/// cloneBasicBlockSimpleAnalysis - Invoke cloneBasicBlockAnalysis hook for
139/// all loop passes.
Andrew Trickf898cbd2011-08-03 23:45:50 +0000140void LPPassManager::cloneBasicBlockSimpleAnalysis(BasicBlock *From,
Devang Patelcc2b2332007-07-31 08:00:57 +0000141 BasicBlock *To, Loop *L) {
Andrew Trickf898cbd2011-08-03 23:45:50 +0000142 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
Dan Gohmana97e78b2010-08-11 20:34:43 +0000143 LoopPass *LP = getContainedPass(Index);
Devang Patelcc2b2332007-07-31 08:00:57 +0000144 LP->cloneBasicBlockAnalysis(From, To, L);
145 }
146}
147
148/// deleteSimpleAnalysisValue - Invoke deleteAnalysisValue hook for all passes.
149void LPPassManager::deleteSimpleAnalysisValue(Value *V, Loop *L) {
Devang Patel45556182009-03-25 23:57:48 +0000150 if (BasicBlock *BB = dyn_cast<BasicBlock>(V)) {
Andrew Trickf898cbd2011-08-03 23:45:50 +0000151 for (BasicBlock::iterator BI = BB->begin(), BE = BB->end(); BI != BE;
Devang Patel45556182009-03-25 23:57:48 +0000152 ++BI) {
153 Instruction &I = *BI;
154 deleteSimpleAnalysisValue(&I, L);
155 }
156 }
Andrew Trickf898cbd2011-08-03 23:45:50 +0000157 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
Dan Gohmana97e78b2010-08-11 20:34:43 +0000158 LoopPass *LP = getContainedPass(Index);
Devang Patelcc2b2332007-07-31 08:00:57 +0000159 LP->deleteAnalysisValue(V, L);
160 }
161}
162
163
Devang Patel51705712007-02-22 23:45:15 +0000164// Recurse through all subloops and all loops into LQ.
Devang Patela8c81c522007-03-06 02:30:46 +0000165static void addLoopIntoQueue(Loop *L, std::deque<Loop *> &LQ) {
Devang Pateldb0db972007-03-06 19:50:49 +0000166 LQ.push_back(L);
Andrew Trickfb2ba3e2012-06-26 04:11:38 +0000167 for (Loop::reverse_iterator I = L->rbegin(), E = L->rend(); I != E; ++I)
Devang Patel51705712007-02-22 23:45:15 +0000168 addLoopIntoQueue(*I, LQ);
Devang Patel51705712007-02-22 23:45:15 +0000169}
170
Devang Patel4a8725c2007-03-06 19:11:25 +0000171/// Pass Manager itself does not invalidate any analysis info.
172void LPPassManager::getAnalysisUsage(AnalysisUsage &Info) const {
Andrew Trickf898cbd2011-08-03 23:45:50 +0000173 // LPPassManager needs LoopInfo. In the long term LoopInfo class will
Devang Patel4a8725c2007-03-06 19:11:25 +0000174 // become part of LPPassManager.
175 Info.addRequired<LoopInfo>();
176 Info.setPreservesAll();
177}
178
Devang Patel20525d22007-02-22 08:56:17 +0000179/// run - Execute all of the passes scheduled for execution. Keep track of
180/// whether any of the passes modifies the function, and if so, return true.
181bool LPPassManager::runOnFunction(Function &F) {
Devang Patel4a8725c2007-03-06 19:11:25 +0000182 LI = &getAnalysis<LoopInfo>();
Devang Patel20525d22007-02-22 08:56:17 +0000183 bool Changed = false;
184
Devang Patel874a3a02008-07-03 07:02:30 +0000185 // Collect inherited analysis from Module level pass manager.
186 populateInheritedAnalysis(TPM->activeStack);
187
Andrew Trickfb2ba3e2012-06-26 04:11:38 +0000188 // Populate the loop queue in reverse program order. There is no clear need to
189 // process sibling loops in either forward or reverse order. There may be some
190 // advantage in deleting uses in a later loop before optimizing the
191 // definitions in an earlier loop. If we find a clear reason to process in
192 // forward order, then a forward variant of LoopPassManager should be created.
Andrew Trickb5f3c442013-07-20 23:10:31 +0000193 //
194 // Note that LoopInfo::iterator visits loops in reverse program
195 // order. Here, reverse_iterator gives us a forward order, and the LoopQueue
196 // reverses the order a third time by popping from the back.
Andrew Trickfb2ba3e2012-06-26 04:11:38 +0000197 for (LoopInfo::reverse_iterator I = LI->rbegin(), E = LI->rend(); I != E; ++I)
Devang Patel51705712007-02-22 23:45:15 +0000198 addLoopIntoQueue(*I, LQ);
199
Torok Edwin24c78352009-06-29 18:49:09 +0000200 if (LQ.empty()) // No loops, skip calling finalizers
201 return false;
202
Devang Patel84ffc222007-03-06 16:59:03 +0000203 // Initialization
204 for (std::deque<Loop *>::const_iterator I = LQ.begin(), E = LQ.end();
205 I != E; ++I) {
206 Loop *L = *I;
Andrew Trickf898cbd2011-08-03 23:45:50 +0000207 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
Dan Gohmana97e78b2010-08-11 20:34:43 +0000208 LoopPass *P = getContainedPass(Index);
Chris Lattner9efd4fc2010-01-22 05:37:10 +0000209 Changed |= P->doInitialization(L, *this);
Devang Patel84ffc222007-03-06 16:59:03 +0000210 }
211 }
212
Devang Patel20525d22007-02-22 08:56:17 +0000213 // Walk Loops
Devang Patela8c81c522007-03-06 02:30:46 +0000214 while (!LQ.empty()) {
Andrew Trickf898cbd2011-08-03 23:45:50 +0000215
Devang Patelfca3aa32007-03-06 18:38:33 +0000216 CurrentLoop = LQ.back();
Devang Patel4e335c62007-02-23 00:10:16 +0000217 skipThisLoop = false;
Devang Patel715add32007-02-23 00:16:44 +0000218 redoThisLoop = false;
Devang Patel4e335c62007-02-23 00:10:16 +0000219
Dan Gohmanb0934cd2009-09-27 23:52:07 +0000220 // Run all passes on the current Loop.
Andrew Trickf898cbd2011-08-03 23:45:50 +0000221 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
Dan Gohmana97e78b2010-08-11 20:34:43 +0000222 LoopPass *P = getContainedPass(Index);
Eric Christopher3c0d5162012-03-23 03:54:05 +0000223
Dan Gohman0bd312a2009-09-28 15:07:18 +0000224 dumpPassInfo(P, EXECUTION_MSG, ON_LOOP_MSG,
Benjamin Kramerf4512a32010-03-31 16:06:22 +0000225 CurrentLoop->getHeader()->getName());
Chris Lattner4c493d92008-08-08 15:14:09 +0000226 dumpRequiredSet(P);
Devang Patel20525d22007-02-22 08:56:17 +0000227
228 initializeAnalysisImpl(P);
Eric Christopher3c0d5162012-03-23 03:54:05 +0000229
Chris Lattner4c1e9542009-03-06 06:45:05 +0000230 {
Chris Lattner9efd4fc2010-01-22 05:37:10 +0000231 PassManagerPrettyStackEntry X(P, *CurrentLoop->getHeader());
Chris Lattner707431c2010-03-30 04:03:22 +0000232 TimeRegion PassTimer(getPassTimer(P));
233
Chris Lattner9efd4fc2010-01-22 05:37:10 +0000234 Changed |= P->runOnLoop(CurrentLoop, *this);
Chris Lattner4c1e9542009-03-06 06:45:05 +0000235 }
Devang Patel20525d22007-02-22 08:56:17 +0000236
237 if (Changed)
Dan Gohman0bd312a2009-09-28 15:07:18 +0000238 dumpPassInfo(P, MODIFICATION_MSG, ON_LOOP_MSG,
Dan Gohman86dc8862009-09-28 15:40:01 +0000239 skipThisLoop ? "<deleted>" :
Benjamin Kramerf4512a32010-03-31 16:06:22 +0000240 CurrentLoop->getHeader()->getName());
Chris Lattner4c493d92008-08-08 15:14:09 +0000241 dumpPreservedSet(P);
Devang Patela273d1c2007-07-19 18:02:32 +0000242
Dan Gohman4dbb3012009-09-28 00:27:48 +0000243 if (!skipThisLoop) {
244 // Manually check that this loop is still healthy. This is done
245 // instead of relying on LoopInfo::verifyLoop since LoopInfo
246 // is a function pass and it's really expensive to verify every
247 // loop in the function every time. That level of checking can be
248 // enabled with the -verify-loop-info option.
Chris Lattner707431c2010-03-30 04:03:22 +0000249 {
250 TimeRegion PassTimer(getPassTimer(LI));
251 CurrentLoop->verifyLoop();
252 }
Dan Gohman4dbb3012009-09-28 00:27:48 +0000253
254 // Then call the regular verifyAnalysis functions.
Chris Lattner9efd4fc2010-01-22 05:37:10 +0000255 verifyPreservedAnalysis(P);
Dan Gohman4dbb3012009-09-28 00:27:48 +0000256 }
Dan Gohman96a26bd2009-09-03 15:09:24 +0000257
Devang Patel20525d22007-02-22 08:56:17 +0000258 removeNotPreservedAnalysis(P);
259 recordAvailableAnalysis(P);
Dan Gohman0bd312a2009-09-28 15:07:18 +0000260 removeDeadPasses(P,
261 skipThisLoop ? "<deleted>" :
Benjamin Kramerf4512a32010-03-31 16:06:22 +0000262 CurrentLoop->getHeader()->getName(),
Dan Gohman0bd312a2009-09-28 15:07:18 +0000263 ON_LOOP_MSG);
Devang Patel4e335c62007-02-23 00:10:16 +0000264
265 if (skipThisLoop)
266 // Do not run other passes on this loop.
267 break;
Devang Patel20525d22007-02-22 08:56:17 +0000268 }
Andrew Trickf898cbd2011-08-03 23:45:50 +0000269
Dan Gohman37a996642009-09-27 23:43:07 +0000270 // If the loop was deleted, release all the loop passes. This frees up
271 // some memory, and avoids trouble with the pass manager trying to call
272 // verifyAnalysis on them.
273 if (skipThisLoop)
Andrew Trickf898cbd2011-08-03 23:45:50 +0000274 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
Dan Gohman37a996642009-09-27 23:43:07 +0000275 Pass *P = getContainedPass(Index);
Dan Gohman0bd312a2009-09-28 15:07:18 +0000276 freePass(P, "<deleted>", ON_LOOP_MSG);
Dan Gohman37a996642009-09-27 23:43:07 +0000277 }
278
Devang Patel51705712007-02-22 23:45:15 +0000279 // Pop the loop from queue after running all passes.
Devang Patela8c81c522007-03-06 02:30:46 +0000280 LQ.pop_back();
Andrew Trickf898cbd2011-08-03 23:45:50 +0000281
Devang Patel715add32007-02-23 00:16:44 +0000282 if (redoThisLoop)
Devang Patelfca3aa32007-03-06 18:38:33 +0000283 LQ.push_back(CurrentLoop);
Devang Patel20525d22007-02-22 08:56:17 +0000284 }
Andrew Trickf898cbd2011-08-03 23:45:50 +0000285
Devang Patel84ffc222007-03-06 16:59:03 +0000286 // Finalization
287 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
Dan Gohmana97e78b2010-08-11 20:34:43 +0000288 LoopPass *P = getContainedPass(Index);
Chris Lattner9efd4fc2010-01-22 05:37:10 +0000289 Changed |= P->doFinalization();
Devang Patel84ffc222007-03-06 16:59:03 +0000290 }
Devang Patel20525d22007-02-22 08:56:17 +0000291
292 return Changed;
293}
294
Dan Gohman143206d2009-02-17 19:41:26 +0000295/// Print passes managed by this manager
296void LPPassManager::dumpPassStructure(unsigned Offset) {
Chris Lattner4883d902009-08-23 07:19:13 +0000297 errs().indent(Offset*2) << "Loop Pass Manager\n";
Dan Gohman143206d2009-02-17 19:41:26 +0000298 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
299 Pass *P = getContainedPass(Index);
Dan Gohmanf71c5212010-08-19 01:29:07 +0000300 P->dumpPassStructure(Offset + 1);
Dan Gohman143206d2009-02-17 19:41:26 +0000301 dumpLastUses(P, Offset+1);
302 }
303}
304
Devang Patel20525d22007-02-22 08:56:17 +0000305
Devang Patel55c38272007-02-23 00:36:57 +0000306//===----------------------------------------------------------------------===//
307// LoopPass
308
David Greene9b063df2010-04-02 23:17:14 +0000309Pass *LoopPass::createPrinterPass(raw_ostream &O,
310 const std::string &Banner) const {
311 return new PrintLoopPass(Banner, O);
312}
313
Devang Patel16993842007-03-06 17:59:37 +0000314// Check if this pass is suitable for the current LPPassManager, if
315// available. This pass P is not suitable for a LPPassManager if P
316// is not preserving higher level analysis info used by other
317// LPPassManager passes. In such case, pop LPPassManager from the
318// stack. This will force assignPassManager() to create new
319// LPPassManger as expected.
320void LoopPass::preparePassManager(PMStack &PMS) {
321
Andrew Trickf898cbd2011-08-03 23:45:50 +0000322 // Find LPPassManager
Duncan Sands60f28bf2007-07-19 09:42:01 +0000323 while (!PMS.empty() &&
324 PMS.top()->getPassManagerType() > PMT_LoopPassManager)
325 PMS.pop();
Devang Patel16993842007-03-06 17:59:37 +0000326
Devang Patel16993842007-03-06 17:59:37 +0000327 // If this pass is destroying high level information that is used
328 // by other passes that are managed by LPM then do not insert
329 // this pass in current LPM. Use new LPPassManager.
Chris Lattner9efd4fc2010-01-22 05:37:10 +0000330 if (PMS.top()->getPassManagerType() == PMT_LoopPassManager &&
Andrew Trickf898cbd2011-08-03 23:45:50 +0000331 !PMS.top()->preserveHigherLevelAnalysis(this))
Devang Patel16993842007-03-06 17:59:37 +0000332 PMS.pop();
333}
334
Devang Patel55c38272007-02-23 00:36:57 +0000335/// Assign pass manager to manage this pass.
336void LoopPass::assignPassManager(PMStack &PMS,
337 PassManagerType PreferredType) {
Andrew Trickf898cbd2011-08-03 23:45:50 +0000338 // Find LPPassManager
Duncan Sands60f28bf2007-07-19 09:42:01 +0000339 while (!PMS.empty() &&
340 PMS.top()->getPassManagerType() > PMT_LoopPassManager)
341 PMS.pop();
Devang Patel55c38272007-02-23 00:36:57 +0000342
Chris Lattner9efd4fc2010-01-22 05:37:10 +0000343 LPPassManager *LPPM;
344 if (PMS.top()->getPassManagerType() == PMT_LoopPassManager)
345 LPPM = (LPPassManager*)PMS.top();
346 else {
Andrew Trickf898cbd2011-08-03 23:45:50 +0000347 // Create new Loop Pass Manager if it does not exist.
Devang Patel55c38272007-02-23 00:36:57 +0000348 assert (!PMS.empty() && "Unable to create Loop Pass Manager");
349 PMDataManager *PMD = PMS.top();
350
Andrew Trick08966212011-08-29 17:07:00 +0000351 // [1] Create new Loop Pass Manager
352 LPPM = new LPPassManager();
Devang Patel901a27d2007-03-07 00:26:10 +0000353 LPPM->populateInheritedAnalysis(PMS);
Devang Patel55c38272007-02-23 00:36:57 +0000354
355 // [2] Set up new manager's top level manager
356 PMTopLevelManager *TPM = PMD->getTopLevelManager();
357 TPM->addIndirectPassManager(LPPM);
358
359 // [3] Assign manager to manage this new manager. This may create
360 // and push new managers into PMS
Chris Lattner9efd4fc2010-01-22 05:37:10 +0000361 Pass *P = LPPM->getAsPass();
Devang Patel4a8725c2007-03-06 19:11:25 +0000362 TPM->schedulePass(P);
Devang Patel55c38272007-02-23 00:36:57 +0000363
364 // [4] Push new manager into PMS
365 PMS.push(LPPM);
366 }
367
368 LPPM->add(this);
369}
Paul Robinsonaf4e64d2014-02-06 00:07:05 +0000370
371// Containing function has Attribute::OptimizeNone and transformation
372// passes should skip it.
Paul Robinson0c12b1d22014-02-26 01:23:26 +0000373bool LoopPass::skipOptnoneFunction(const Loop *L) const {
374 const Function *F = L->getHeader()->getParent();
Paul Robinsonaf4e64d2014-02-06 00:07:05 +0000375 if (F && F->hasFnAttribute(Attribute::OptimizeNone)) {
376 // FIXME: Report this to dbgs() only once per function.
377 DEBUG(dbgs() << "Skipping pass '" << getPassName()
378 << "' in function " << F->getName() << "\n");
379 // FIXME: Delete loop from pass manager's queue?
380 return true;
381 }
382 return false;
383}