blob: 84a5611e34d8cb30dbaedf1d002b60047e0db61c [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"
Eli Friedmanf3b71582016-06-20 02:48:11 +000017#include "llvm/Analysis/LoopPassManager.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"
David Greene9b063df2010-04-02 23:17:14 +000022#include "llvm/Support/Debug.h"
Chris Lattner707431c2010-03-30 04:03:22 +000023#include "llvm/Support/Timer.h"
Benjamin Kramer16132e62015-03-23 18:07:13 +000024#include "llvm/Support/raw_ostream.h"
Devang Patel20525d22007-02-22 08:56:17 +000025using namespace llvm;
26
Chandler Carruthe96dd892014-04-21 22:55:11 +000027#define DEBUG_TYPE "loop-pass-manager"
28
David Greene9b063df2010-04-02 23:17:14 +000029namespace {
30
31/// PrintLoopPass - Print a Function corresponding to a Loop.
32///
Justin Bognerc2b98f02015-11-04 22:24:08 +000033class PrintLoopPassWrapper : public LoopPass {
34 PrintLoopPass P;
David Greene9b063df2010-04-02 23:17:14 +000035
36public:
37 static char ID;
Justin Bognerc2b98f02015-11-04 22:24:08 +000038 PrintLoopPassWrapper() : LoopPass(ID) {}
39 PrintLoopPassWrapper(raw_ostream &OS, const std::string &Banner)
40 : LoopPass(ID), P(OS, Banner) {}
David Greene9b063df2010-04-02 23:17:14 +000041
Craig Toppere9ba7592014-03-05 07:30:04 +000042 void getAnalysisUsage(AnalysisUsage &AU) const override {
David Greene9b063df2010-04-02 23:17:14 +000043 AU.setPreservesAll();
44 }
45
Craig Toppere9ba7592014-03-05 07:30:04 +000046 bool runOnLoop(Loop *L, LPPassManager &) override {
Weiming Zhao0f1762c2016-01-06 22:55:03 +000047 auto BBI = find_if(L->blocks().begin(), L->blocks().end(),
48 [](BasicBlock *BB) { return BB; });
49 if (BBI != L->blocks().end() &&
Chandler Carruth164a2aa62016-06-17 00:11:01 +000050 isFunctionInPrintList((*BBI)->getParent()->getName())) {
51 AnalysisManager<Loop> DummyLAM;
52 P.run(*L, DummyLAM);
53 }
David Greene9b063df2010-04-02 23:17:14 +000054 return false;
55 }
56};
57
Justin Bognerc2b98f02015-11-04 22:24:08 +000058char PrintLoopPassWrapper::ID = 0;
Alexander Kornienkof00654e2015-06-23 09:49:53 +000059}
David Greene9b063df2010-04-02 23:17:14 +000060
Devang Patel20525d22007-02-22 08:56:17 +000061//===----------------------------------------------------------------------===//
62// LPPassManager
63//
Devang Patel09f162c2007-05-01 21:15:47 +000064
Devang Patel8c78a0b2007-05-03 01:11:54 +000065char LPPassManager::ID = 0;
Devang Patel20525d22007-02-22 08:56:17 +000066
Andrew Trick08966212011-08-29 17:07:00 +000067LPPassManager::LPPassManager()
68 : FunctionPass(ID), PMDataManager() {
Craig Topper9f008862014-04-15 04:59:12 +000069 LI = nullptr;
70 CurrentLoop = nullptr;
Devang Patelde7d4902007-02-22 23:30:07 +000071}
72
Devang Patelef7ac132007-03-06 19:00:02 +000073// Inset loop into loop nest (LoopInfo) and loop queue (LQ).
Justin Bogner35e46cd2015-10-22 21:21:32 +000074Loop &LPPassManager::addLoop(Loop *ParentLoop) {
75 // Create a new loop. LI will take ownership.
76 Loop *L = new Loop();
Devang Patelef7ac132007-03-06 19:00:02 +000077
Justin Bogner35e46cd2015-10-22 21:21:32 +000078 // Insert into the loop nest and the loop queue.
79 if (!ParentLoop) {
80 // This is the top level loop.
Devang Patelef7ac132007-03-06 19:00:02 +000081 LI->addTopLevelLoop(L);
Devang Patelef7ac132007-03-06 19:00:02 +000082 LQ.push_front(L);
Justin Bogner35e46cd2015-10-22 21:21:32 +000083 return *L;
84 }
85
86 ParentLoop->addChildLoop(L);
87 // Insert L into the loop queue after the parent loop.
88 for (auto I = LQ.begin(), E = LQ.end(); I != E; ++I) {
89 if (*I == L->getParentLoop()) {
90 // deque does not support insert after.
91 ++I;
92 LQ.insert(I, 1, L);
93 break;
Devang Patelef7ac132007-03-06 19:00:02 +000094 }
95 }
Justin Bogner35e46cd2015-10-22 21:21:32 +000096 return *L;
Devang Patelef7ac132007-03-06 19:00:02 +000097}
98
Devang Patelcc2b2332007-07-31 08:00:57 +000099/// cloneBasicBlockSimpleAnalysis - Invoke cloneBasicBlockAnalysis hook for
100/// all loop passes.
Andrew Trickf898cbd2011-08-03 23:45:50 +0000101void LPPassManager::cloneBasicBlockSimpleAnalysis(BasicBlock *From,
Devang Patelcc2b2332007-07-31 08:00:57 +0000102 BasicBlock *To, Loop *L) {
Andrew Trickf898cbd2011-08-03 23:45:50 +0000103 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
Dan Gohmana97e78b2010-08-11 20:34:43 +0000104 LoopPass *LP = getContainedPass(Index);
Devang Patelcc2b2332007-07-31 08:00:57 +0000105 LP->cloneBasicBlockAnalysis(From, To, L);
106 }
107}
108
109/// deleteSimpleAnalysisValue - Invoke deleteAnalysisValue hook for all passes.
110void LPPassManager::deleteSimpleAnalysisValue(Value *V, Loop *L) {
Devang Patel45556182009-03-25 23:57:48 +0000111 if (BasicBlock *BB = dyn_cast<BasicBlock>(V)) {
Andrew Trickf898cbd2011-08-03 23:45:50 +0000112 for (BasicBlock::iterator BI = BB->begin(), BE = BB->end(); BI != BE;
Devang Patel45556182009-03-25 23:57:48 +0000113 ++BI) {
114 Instruction &I = *BI;
115 deleteSimpleAnalysisValue(&I, L);
116 }
117 }
Andrew Trickf898cbd2011-08-03 23:45:50 +0000118 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
Dan Gohmana97e78b2010-08-11 20:34:43 +0000119 LoopPass *LP = getContainedPass(Index);
Devang Patelcc2b2332007-07-31 08:00:57 +0000120 LP->deleteAnalysisValue(V, L);
121 }
122}
123
David Peixotto0d4d5e62014-09-24 16:48:31 +0000124/// Invoke deleteAnalysisLoop hook for all passes.
125void LPPassManager::deleteSimpleAnalysisLoop(Loop *L) {
126 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
127 LoopPass *LP = getContainedPass(Index);
128 LP->deleteAnalysisLoop(L);
129 }
130}
131
Devang Patelcc2b2332007-07-31 08:00:57 +0000132
Devang Patel51705712007-02-22 23:45:15 +0000133// Recurse through all subloops and all loops into LQ.
Devang Patela8c81c522007-03-06 02:30:46 +0000134static void addLoopIntoQueue(Loop *L, std::deque<Loop *> &LQ) {
Devang Pateldb0db972007-03-06 19:50:49 +0000135 LQ.push_back(L);
Andrew Trickfb2ba3e2012-06-26 04:11:38 +0000136 for (Loop::reverse_iterator I = L->rbegin(), E = L->rend(); I != E; ++I)
Devang Patel51705712007-02-22 23:45:15 +0000137 addLoopIntoQueue(*I, LQ);
Devang Patel51705712007-02-22 23:45:15 +0000138}
139
Devang Patel4a8725c2007-03-06 19:11:25 +0000140/// Pass Manager itself does not invalidate any analysis info.
141void LPPassManager::getAnalysisUsage(AnalysisUsage &Info) const {
Andrew Trickf898cbd2011-08-03 23:45:50 +0000142 // LPPassManager needs LoopInfo. In the long term LoopInfo class will
Devang Patel4a8725c2007-03-06 19:11:25 +0000143 // become part of LPPassManager.
Chandler Carruth4f8f3072015-01-17 14:16:18 +0000144 Info.addRequired<LoopInfoWrapperPass>();
Devang Patel4a8725c2007-03-06 19:11:25 +0000145 Info.setPreservesAll();
146}
147
Devang Patel20525d22007-02-22 08:56:17 +0000148/// run - Execute all of the passes scheduled for execution. Keep track of
149/// whether any of the passes modifies the function, and if so, return true.
150bool LPPassManager::runOnFunction(Function &F) {
Chandler Carruth4f8f3072015-01-17 14:16:18 +0000151 auto &LIWP = getAnalysis<LoopInfoWrapperPass>();
152 LI = &LIWP.getLoopInfo();
Devang Patel20525d22007-02-22 08:56:17 +0000153 bool Changed = false;
154
Devang Patel874a3a02008-07-03 07:02:30 +0000155 // Collect inherited analysis from Module level pass manager.
156 populateInheritedAnalysis(TPM->activeStack);
157
Andrew Trickfb2ba3e2012-06-26 04:11:38 +0000158 // Populate the loop queue in reverse program order. There is no clear need to
159 // process sibling loops in either forward or reverse order. There may be some
160 // advantage in deleting uses in a later loop before optimizing the
161 // definitions in an earlier loop. If we find a clear reason to process in
162 // forward order, then a forward variant of LoopPassManager should be created.
Andrew Trickb5f3c442013-07-20 23:10:31 +0000163 //
164 // Note that LoopInfo::iterator visits loops in reverse program
165 // order. Here, reverse_iterator gives us a forward order, and the LoopQueue
166 // reverses the order a third time by popping from the back.
Andrew Trickfb2ba3e2012-06-26 04:11:38 +0000167 for (LoopInfo::reverse_iterator I = LI->rbegin(), E = LI->rend(); I != E; ++I)
Devang Patel51705712007-02-22 23:45:15 +0000168 addLoopIntoQueue(*I, LQ);
169
Torok Edwin24c78352009-06-29 18:49:09 +0000170 if (LQ.empty()) // No loops, skip calling finalizers
171 return false;
172
Devang Patel84ffc222007-03-06 16:59:03 +0000173 // Initialization
174 for (std::deque<Loop *>::const_iterator I = LQ.begin(), E = LQ.end();
175 I != E; ++I) {
176 Loop *L = *I;
Andrew Trickf898cbd2011-08-03 23:45:50 +0000177 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
Dan Gohmana97e78b2010-08-11 20:34:43 +0000178 LoopPass *P = getContainedPass(Index);
Chris Lattner9efd4fc2010-01-22 05:37:10 +0000179 Changed |= P->doInitialization(L, *this);
Devang Patel84ffc222007-03-06 16:59:03 +0000180 }
181 }
182
Devang Patel20525d22007-02-22 08:56:17 +0000183 // Walk Loops
Devang Patela8c81c522007-03-06 02:30:46 +0000184 while (!LQ.empty()) {
Justin Bognere9fb228d2016-01-08 19:08:53 +0000185 bool LoopWasDeleted = false;
Justin Bogner6e9810c2015-12-16 00:01:02 +0000186 CurrentLoop = LQ.back();
Justin Bognere9fb228d2016-01-08 19:08:53 +0000187
Dan Gohmanb0934cd2009-09-27 23:52:07 +0000188 // Run all passes on the current Loop.
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);
Eric Christopher3c0d5162012-03-23 03:54:05 +0000191
Dan Gohman0bd312a2009-09-28 15:07:18 +0000192 dumpPassInfo(P, EXECUTION_MSG, ON_LOOP_MSG,
Benjamin Kramerf4512a32010-03-31 16:06:22 +0000193 CurrentLoop->getHeader()->getName());
Chris Lattner4c493d92008-08-08 15:14:09 +0000194 dumpRequiredSet(P);
Devang Patel20525d22007-02-22 08:56:17 +0000195
196 initializeAnalysisImpl(P);
Eric Christopher3c0d5162012-03-23 03:54:05 +0000197
Chris Lattner4c1e9542009-03-06 06:45:05 +0000198 {
Chris Lattner9efd4fc2010-01-22 05:37:10 +0000199 PassManagerPrettyStackEntry X(P, *CurrentLoop->getHeader());
Chris Lattner707431c2010-03-30 04:03:22 +0000200 TimeRegion PassTimer(getPassTimer(P));
201
Chris Lattner9efd4fc2010-01-22 05:37:10 +0000202 Changed |= P->runOnLoop(CurrentLoop, *this);
Chris Lattner4c1e9542009-03-06 06:45:05 +0000203 }
Justin Bognere9fb228d2016-01-08 19:08:53 +0000204 LoopWasDeleted = CurrentLoop->isInvalid();
Devang Patel20525d22007-02-22 08:56:17 +0000205
206 if (Changed)
Dan Gohman0bd312a2009-09-28 15:07:18 +0000207 dumpPassInfo(P, MODIFICATION_MSG, ON_LOOP_MSG,
Justin Bognere9fb228d2016-01-08 19:08:53 +0000208 LoopWasDeleted ? "<deleted>"
209 : CurrentLoop->getHeader()->getName());
Chris Lattner4c493d92008-08-08 15:14:09 +0000210 dumpPreservedSet(P);
Devang Patela273d1c2007-07-19 18:02:32 +0000211
Justin Bognere9fb228d2016-01-08 19:08:53 +0000212 if (LoopWasDeleted) {
Justin Bogner6e9810c2015-12-16 00:01:02 +0000213 // Notify passes that the loop is being deleted.
214 deleteSimpleAnalysisLoop(CurrentLoop);
215 } else {
Dan Gohman4dbb3012009-09-28 00:27:48 +0000216 // Manually check that this loop is still healthy. This is done
217 // instead of relying on LoopInfo::verifyLoop since LoopInfo
218 // is a function pass and it's really expensive to verify every
219 // loop in the function every time. That level of checking can be
220 // enabled with the -verify-loop-info option.
Chris Lattner707431c2010-03-30 04:03:22 +0000221 {
Chandler Carruth4f8f3072015-01-17 14:16:18 +0000222 TimeRegion PassTimer(getPassTimer(&LIWP));
Chris Lattner707431c2010-03-30 04:03:22 +0000223 CurrentLoop->verifyLoop();
224 }
Dan Gohman4dbb3012009-09-28 00:27:48 +0000225
226 // Then call the regular verifyAnalysis functions.
Chris Lattner9efd4fc2010-01-22 05:37:10 +0000227 verifyPreservedAnalysis(P);
Juergen Ributzka34390c72014-05-16 02:33:15 +0000228
229 F.getContext().yield();
Dan Gohman4dbb3012009-09-28 00:27:48 +0000230 }
Dan Gohman96a26bd2009-09-03 15:09:24 +0000231
Devang Patel20525d22007-02-22 08:56:17 +0000232 removeNotPreservedAnalysis(P);
233 recordAvailableAnalysis(P);
Justin Bognere9fb228d2016-01-08 19:08:53 +0000234 removeDeadPasses(P, LoopWasDeleted ? "<deleted>"
235 : CurrentLoop->getHeader()->getName(),
Dan Gohman0bd312a2009-09-28 15:07:18 +0000236 ON_LOOP_MSG);
Devang Patel4e335c62007-02-23 00:10:16 +0000237
Justin Bognere9fb228d2016-01-08 19:08:53 +0000238 if (LoopWasDeleted)
Devang Patel4e335c62007-02-23 00:10:16 +0000239 // Do not run other passes on this loop.
240 break;
Devang Patel20525d22007-02-22 08:56:17 +0000241 }
Andrew Trickf898cbd2011-08-03 23:45:50 +0000242
Dan Gohman37a996642009-09-27 23:43:07 +0000243 // If the loop was deleted, release all the loop passes. This frees up
244 // some memory, and avoids trouble with the pass manager trying to call
245 // verifyAnalysis on them.
Justin Bognere9fb228d2016-01-08 19:08:53 +0000246 if (LoopWasDeleted) {
Andrew Trickf898cbd2011-08-03 23:45:50 +0000247 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
Dan Gohman37a996642009-09-27 23:43:07 +0000248 Pass *P = getContainedPass(Index);
Dan Gohman0bd312a2009-09-28 15:07:18 +0000249 freePass(P, "<deleted>", ON_LOOP_MSG);
Dan Gohman37a996642009-09-27 23:43:07 +0000250 }
Justin Bogner6e9810c2015-12-16 00:01:02 +0000251 }
Dan Gohman37a996642009-09-27 23:43:07 +0000252
Devang Patel51705712007-02-22 23:45:15 +0000253 // Pop the loop from queue after running all passes.
Devang Patela8c81c522007-03-06 02:30:46 +0000254 LQ.pop_back();
Devang Patel20525d22007-02-22 08:56:17 +0000255 }
Andrew Trickf898cbd2011-08-03 23:45:50 +0000256
Devang Patel84ffc222007-03-06 16:59:03 +0000257 // Finalization
258 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
Dan Gohmana97e78b2010-08-11 20:34:43 +0000259 LoopPass *P = getContainedPass(Index);
Chris Lattner9efd4fc2010-01-22 05:37:10 +0000260 Changed |= P->doFinalization();
Devang Patel84ffc222007-03-06 16:59:03 +0000261 }
Devang Patel20525d22007-02-22 08:56:17 +0000262
263 return Changed;
264}
265
Dan Gohman143206d2009-02-17 19:41:26 +0000266/// Print passes managed by this manager
267void LPPassManager::dumpPassStructure(unsigned Offset) {
Chris Lattner4883d902009-08-23 07:19:13 +0000268 errs().indent(Offset*2) << "Loop Pass Manager\n";
Dan Gohman143206d2009-02-17 19:41:26 +0000269 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
270 Pass *P = getContainedPass(Index);
Dan Gohmanf71c5212010-08-19 01:29:07 +0000271 P->dumpPassStructure(Offset + 1);
Dan Gohman143206d2009-02-17 19:41:26 +0000272 dumpLastUses(P, Offset+1);
273 }
274}
275
Devang Patel20525d22007-02-22 08:56:17 +0000276
Devang Patel55c38272007-02-23 00:36:57 +0000277//===----------------------------------------------------------------------===//
278// LoopPass
279
David Greene9b063df2010-04-02 23:17:14 +0000280Pass *LoopPass::createPrinterPass(raw_ostream &O,
281 const std::string &Banner) const {
Justin Bognerc2b98f02015-11-04 22:24:08 +0000282 return new PrintLoopPassWrapper(O, Banner);
David Greene9b063df2010-04-02 23:17:14 +0000283}
284
Devang Patel16993842007-03-06 17:59:37 +0000285// Check if this pass is suitable for the current LPPassManager, if
286// available. This pass P is not suitable for a LPPassManager if P
287// is not preserving higher level analysis info used by other
288// LPPassManager passes. In such case, pop LPPassManager from the
289// stack. This will force assignPassManager() to create new
290// LPPassManger as expected.
291void LoopPass::preparePassManager(PMStack &PMS) {
292
Andrew Trickf898cbd2011-08-03 23:45:50 +0000293 // Find LPPassManager
Duncan Sands60f28bf2007-07-19 09:42:01 +0000294 while (!PMS.empty() &&
295 PMS.top()->getPassManagerType() > PMT_LoopPassManager)
296 PMS.pop();
Devang Patel16993842007-03-06 17:59:37 +0000297
Devang Patel16993842007-03-06 17:59:37 +0000298 // If this pass is destroying high level information that is used
299 // by other passes that are managed by LPM then do not insert
300 // this pass in current LPM. Use new LPPassManager.
Chris Lattner9efd4fc2010-01-22 05:37:10 +0000301 if (PMS.top()->getPassManagerType() == PMT_LoopPassManager &&
Andrew Trickf898cbd2011-08-03 23:45:50 +0000302 !PMS.top()->preserveHigherLevelAnalysis(this))
Devang Patel16993842007-03-06 17:59:37 +0000303 PMS.pop();
304}
305
Devang Patel55c38272007-02-23 00:36:57 +0000306/// Assign pass manager to manage this pass.
307void LoopPass::assignPassManager(PMStack &PMS,
308 PassManagerType PreferredType) {
Andrew Trickf898cbd2011-08-03 23:45:50 +0000309 // Find LPPassManager
Duncan Sands60f28bf2007-07-19 09:42:01 +0000310 while (!PMS.empty() &&
311 PMS.top()->getPassManagerType() > PMT_LoopPassManager)
312 PMS.pop();
Devang Patel55c38272007-02-23 00:36:57 +0000313
Chris Lattner9efd4fc2010-01-22 05:37:10 +0000314 LPPassManager *LPPM;
315 if (PMS.top()->getPassManagerType() == PMT_LoopPassManager)
316 LPPM = (LPPassManager*)PMS.top();
317 else {
Andrew Trickf898cbd2011-08-03 23:45:50 +0000318 // Create new Loop Pass Manager if it does not exist.
Devang Patel55c38272007-02-23 00:36:57 +0000319 assert (!PMS.empty() && "Unable to create Loop Pass Manager");
320 PMDataManager *PMD = PMS.top();
321
Andrew Trick08966212011-08-29 17:07:00 +0000322 // [1] Create new Loop Pass Manager
323 LPPM = new LPPassManager();
Devang Patel901a27d2007-03-07 00:26:10 +0000324 LPPM->populateInheritedAnalysis(PMS);
Devang Patel55c38272007-02-23 00:36:57 +0000325
326 // [2] Set up new manager's top level manager
327 PMTopLevelManager *TPM = PMD->getTopLevelManager();
328 TPM->addIndirectPassManager(LPPM);
329
330 // [3] Assign manager to manage this new manager. This may create
331 // and push new managers into PMS
Chris Lattner9efd4fc2010-01-22 05:37:10 +0000332 Pass *P = LPPM->getAsPass();
Devang Patel4a8725c2007-03-06 19:11:25 +0000333 TPM->schedulePass(P);
Devang Patel55c38272007-02-23 00:36:57 +0000334
335 // [4] Push new manager into PMS
336 PMS.push(LPPM);
337 }
338
339 LPPM->add(this);
340}
Paul Robinsonaf4e64d2014-02-06 00:07:05 +0000341
Andrew Kayloraa641a52016-04-22 22:06:11 +0000342bool LoopPass::skipLoop(const Loop *L) const {
Paul Robinson0c12b1d22014-02-26 01:23:26 +0000343 const Function *F = L->getHeader()->getParent();
Andrew Kayloraa641a52016-04-22 22:06:11 +0000344 if (!F)
345 return false;
346 // Check the opt bisect limit.
347 LLVMContext &Context = F->getContext();
348 if (!Context.getOptBisect().shouldRunPass(this, *L))
349 return true;
350 // Check for the OptimizeNone attribute.
351 if (F->hasFnAttribute(Attribute::OptimizeNone)) {
Paul Robinsonaf4e64d2014-02-06 00:07:05 +0000352 // FIXME: Report this to dbgs() only once per function.
353 DEBUG(dbgs() << "Skipping pass '" << getPassName()
354 << "' in function " << F->getName() << "\n");
355 // FIXME: Delete loop from pass manager's queue?
356 return true;
357 }
358 return false;
359}