blob: 0cfc94c1434ca89fa3cb9c91bf7a47f34827b5a9 [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"
Juergen Ributzka34390c72014-05-16 02:33:15 +000018#include "llvm/IR/LLVMContext.h"
Justin Bognerc2b98f02015-11-04 22:24:08 +000019#include "llvm/IR/PassManager.h"
David Greene9b063df2010-04-02 23:17:14 +000020#include "llvm/Support/Debug.h"
Chris Lattner707431c2010-03-30 04:03:22 +000021#include "llvm/Support/Timer.h"
Benjamin Kramer16132e62015-03-23 18:07:13 +000022#include "llvm/Support/raw_ostream.h"
Devang Patel20525d22007-02-22 08:56:17 +000023using namespace llvm;
24
Chandler Carruthe96dd892014-04-21 22:55:11 +000025#define DEBUG_TYPE "loop-pass-manager"
26
David Greene9b063df2010-04-02 23:17:14 +000027namespace {
28
29/// PrintLoopPass - Print a Function corresponding to a Loop.
30///
Justin Bognerc2b98f02015-11-04 22:24:08 +000031class PrintLoopPassWrapper : public LoopPass {
32 PrintLoopPass P;
David Greene9b063df2010-04-02 23:17:14 +000033
34public:
35 static char ID;
Justin Bognerc2b98f02015-11-04 22:24:08 +000036 PrintLoopPassWrapper() : LoopPass(ID) {}
37 PrintLoopPassWrapper(raw_ostream &OS, const std::string &Banner)
38 : LoopPass(ID), P(OS, Banner) {}
David Greene9b063df2010-04-02 23:17:14 +000039
Craig Toppere9ba7592014-03-05 07:30:04 +000040 void getAnalysisUsage(AnalysisUsage &AU) const override {
David Greene9b063df2010-04-02 23:17:14 +000041 AU.setPreservesAll();
42 }
43
Craig Toppere9ba7592014-03-05 07:30:04 +000044 bool runOnLoop(Loop *L, LPPassManager &) override {
Justin Bognerc2b98f02015-11-04 22:24:08 +000045 P.run(*L);
David Greene9b063df2010-04-02 23:17:14 +000046 return false;
47 }
48};
49
Justin Bognerc2b98f02015-11-04 22:24:08 +000050char PrintLoopPassWrapper::ID = 0;
Alexander Kornienkof00654e2015-06-23 09:49:53 +000051}
David Greene9b063df2010-04-02 23:17:14 +000052
Devang Patel20525d22007-02-22 08:56:17 +000053//===----------------------------------------------------------------------===//
54// LPPassManager
55//
Devang Patel09f162c2007-05-01 21:15:47 +000056
Devang Patel8c78a0b2007-05-03 01:11:54 +000057char LPPassManager::ID = 0;
Devang Patel20525d22007-02-22 08:56:17 +000058
Andrew Trick08966212011-08-29 17:07:00 +000059LPPassManager::LPPassManager()
60 : FunctionPass(ID), PMDataManager() {
Devang Patel715add32007-02-23 00:16:44 +000061 skipThisLoop = false;
Craig Topper9f008862014-04-15 04:59:12 +000062 LI = nullptr;
63 CurrentLoop = nullptr;
Devang Patelde7d4902007-02-22 23:30:07 +000064}
65
Andrew Trickf898cbd2011-08-03 23:45:50 +000066/// Delete loop from the loop queue and loop hierarchy (LoopInfo).
Devang Patel4e335c62007-02-23 00:10:16 +000067void LPPassManager::deleteLoopFromQueue(Loop *L) {
Devang Patelfca3aa32007-03-06 18:38:33 +000068
Andrew Trickd3530b92011-08-10 23:22:57 +000069 LI->updateUnloop(L);
Devang Patelfca3aa32007-03-06 18:38:33 +000070
David Peixotto0d4d5e62014-09-24 16:48:31 +000071 // Notify passes that the loop is being deleted.
72 deleteSimpleAnalysisLoop(L);
73
Devang Patelfca3aa32007-03-06 18:38:33 +000074 // If L is current loop then skip rest of the passes and let
75 // runOnFunction remove L from LQ. Otherwise, remove L from LQ now
76 // and continue applying other passes on CurrentLoop.
Andrew Trickd3530b92011-08-10 23:22:57 +000077 if (CurrentLoop == L)
Devang Patelfca3aa32007-03-06 18:38:33 +000078 skipThisLoop = true;
Andrew Trickd3530b92011-08-10 23:22:57 +000079
80 delete L;
81
82 if (skipThisLoop)
Devang Patelfca3aa32007-03-06 18:38:33 +000083 return;
Devang Patelfca3aa32007-03-06 18:38:33 +000084
85 for (std::deque<Loop *>::iterator I = LQ.begin(),
86 E = LQ.end(); I != E; ++I) {
87 if (*I == L) {
88 LQ.erase(I);
89 break;
90 }
91 }
Devang Patel4e335c62007-02-23 00:10:16 +000092}
93
Devang Patelef7ac132007-03-06 19:00:02 +000094// Inset loop into loop nest (LoopInfo) and loop queue (LQ).
Justin Bogner35e46cd2015-10-22 21:21:32 +000095Loop &LPPassManager::addLoop(Loop *ParentLoop) {
96 // Create a new loop. LI will take ownership.
97 Loop *L = new Loop();
Devang Patelef7ac132007-03-06 19:00:02 +000098
Justin Bogner35e46cd2015-10-22 21:21:32 +000099 // Insert into the loop nest and the loop queue.
100 if (!ParentLoop) {
101 // This is the top level loop.
Devang Patelef7ac132007-03-06 19:00:02 +0000102 LI->addTopLevelLoop(L);
Devang Patelef7ac132007-03-06 19:00:02 +0000103 LQ.push_front(L);
Justin Bogner35e46cd2015-10-22 21:21:32 +0000104 return *L;
105 }
106
107 ParentLoop->addChildLoop(L);
108 // Insert L into the loop queue after the parent loop.
109 for (auto I = LQ.begin(), E = LQ.end(); I != E; ++I) {
110 if (*I == L->getParentLoop()) {
111 // deque does not support insert after.
112 ++I;
113 LQ.insert(I, 1, L);
114 break;
Devang Patelef7ac132007-03-06 19:00:02 +0000115 }
116 }
Justin Bogner35e46cd2015-10-22 21:21:32 +0000117 return *L;
Devang Patelef7ac132007-03-06 19:00:02 +0000118}
119
Devang Patelcc2b2332007-07-31 08:00:57 +0000120/// cloneBasicBlockSimpleAnalysis - Invoke cloneBasicBlockAnalysis hook for
121/// all loop passes.
Andrew Trickf898cbd2011-08-03 23:45:50 +0000122void LPPassManager::cloneBasicBlockSimpleAnalysis(BasicBlock *From,
Devang Patelcc2b2332007-07-31 08:00:57 +0000123 BasicBlock *To, Loop *L) {
Andrew Trickf898cbd2011-08-03 23:45:50 +0000124 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
Dan Gohmana97e78b2010-08-11 20:34:43 +0000125 LoopPass *LP = getContainedPass(Index);
Devang Patelcc2b2332007-07-31 08:00:57 +0000126 LP->cloneBasicBlockAnalysis(From, To, L);
127 }
128}
129
130/// deleteSimpleAnalysisValue - Invoke deleteAnalysisValue hook for all passes.
131void LPPassManager::deleteSimpleAnalysisValue(Value *V, Loop *L) {
Devang Patel45556182009-03-25 23:57:48 +0000132 if (BasicBlock *BB = dyn_cast<BasicBlock>(V)) {
Andrew Trickf898cbd2011-08-03 23:45:50 +0000133 for (BasicBlock::iterator BI = BB->begin(), BE = BB->end(); BI != BE;
Devang Patel45556182009-03-25 23:57:48 +0000134 ++BI) {
135 Instruction &I = *BI;
136 deleteSimpleAnalysisValue(&I, L);
137 }
138 }
Andrew Trickf898cbd2011-08-03 23:45:50 +0000139 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
Dan Gohmana97e78b2010-08-11 20:34:43 +0000140 LoopPass *LP = getContainedPass(Index);
Devang Patelcc2b2332007-07-31 08:00:57 +0000141 LP->deleteAnalysisValue(V, L);
142 }
143}
144
David Peixotto0d4d5e62014-09-24 16:48:31 +0000145/// Invoke deleteAnalysisLoop hook for all passes.
146void LPPassManager::deleteSimpleAnalysisLoop(Loop *L) {
147 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
148 LoopPass *LP = getContainedPass(Index);
149 LP->deleteAnalysisLoop(L);
150 }
151}
152
Devang Patelcc2b2332007-07-31 08:00:57 +0000153
Devang Patel51705712007-02-22 23:45:15 +0000154// Recurse through all subloops and all loops into LQ.
Devang Patela8c81c522007-03-06 02:30:46 +0000155static void addLoopIntoQueue(Loop *L, std::deque<Loop *> &LQ) {
Devang Pateldb0db972007-03-06 19:50:49 +0000156 LQ.push_back(L);
Andrew Trickfb2ba3e2012-06-26 04:11:38 +0000157 for (Loop::reverse_iterator I = L->rbegin(), E = L->rend(); I != E; ++I)
Devang Patel51705712007-02-22 23:45:15 +0000158 addLoopIntoQueue(*I, LQ);
Devang Patel51705712007-02-22 23:45:15 +0000159}
160
Devang Patel4a8725c2007-03-06 19:11:25 +0000161/// Pass Manager itself does not invalidate any analysis info.
162void LPPassManager::getAnalysisUsage(AnalysisUsage &Info) const {
Andrew Trickf898cbd2011-08-03 23:45:50 +0000163 // LPPassManager needs LoopInfo. In the long term LoopInfo class will
Devang Patel4a8725c2007-03-06 19:11:25 +0000164 // become part of LPPassManager.
Chandler Carruth4f8f3072015-01-17 14:16:18 +0000165 Info.addRequired<LoopInfoWrapperPass>();
Devang Patel4a8725c2007-03-06 19:11:25 +0000166 Info.setPreservesAll();
167}
168
Devang Patel20525d22007-02-22 08:56:17 +0000169/// run - Execute all of the passes scheduled for execution. Keep track of
170/// whether any of the passes modifies the function, and if so, return true.
171bool LPPassManager::runOnFunction(Function &F) {
Chandler Carruth4f8f3072015-01-17 14:16:18 +0000172 auto &LIWP = getAnalysis<LoopInfoWrapperPass>();
173 LI = &LIWP.getLoopInfo();
Devang Patel20525d22007-02-22 08:56:17 +0000174 bool Changed = false;
175
Devang Patel874a3a02008-07-03 07:02:30 +0000176 // Collect inherited analysis from Module level pass manager.
177 populateInheritedAnalysis(TPM->activeStack);
178
Andrew Trickfb2ba3e2012-06-26 04:11:38 +0000179 // Populate the loop queue in reverse program order. There is no clear need to
180 // process sibling loops in either forward or reverse order. There may be some
181 // advantage in deleting uses in a later loop before optimizing the
182 // definitions in an earlier loop. If we find a clear reason to process in
183 // forward order, then a forward variant of LoopPassManager should be created.
Andrew Trickb5f3c442013-07-20 23:10:31 +0000184 //
185 // Note that LoopInfo::iterator visits loops in reverse program
186 // order. Here, reverse_iterator gives us a forward order, and the LoopQueue
187 // reverses the order a third time by popping from the back.
Andrew Trickfb2ba3e2012-06-26 04:11:38 +0000188 for (LoopInfo::reverse_iterator I = LI->rbegin(), E = LI->rend(); I != E; ++I)
Devang Patel51705712007-02-22 23:45:15 +0000189 addLoopIntoQueue(*I, LQ);
190
Torok Edwin24c78352009-06-29 18:49:09 +0000191 if (LQ.empty()) // No loops, skip calling finalizers
192 return false;
193
Devang Patel84ffc222007-03-06 16:59:03 +0000194 // Initialization
195 for (std::deque<Loop *>::const_iterator I = LQ.begin(), E = LQ.end();
196 I != E; ++I) {
197 Loop *L = *I;
Andrew Trickf898cbd2011-08-03 23:45:50 +0000198 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
Dan Gohmana97e78b2010-08-11 20:34:43 +0000199 LoopPass *P = getContainedPass(Index);
Chris Lattner9efd4fc2010-01-22 05:37:10 +0000200 Changed |= P->doInitialization(L, *this);
Devang Patel84ffc222007-03-06 16:59:03 +0000201 }
202 }
203
Devang Patel20525d22007-02-22 08:56:17 +0000204 // Walk Loops
Devang Patela8c81c522007-03-06 02:30:46 +0000205 while (!LQ.empty()) {
Andrew Trickf898cbd2011-08-03 23:45:50 +0000206
Devang Patelfca3aa32007-03-06 18:38:33 +0000207 CurrentLoop = LQ.back();
Devang Patel4e335c62007-02-23 00:10:16 +0000208 skipThisLoop = false;
209
Dan Gohmanb0934cd2009-09-27 23:52:07 +0000210 // Run all passes on the current Loop.
Andrew Trickf898cbd2011-08-03 23:45:50 +0000211 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
Dan Gohmana97e78b2010-08-11 20:34:43 +0000212 LoopPass *P = getContainedPass(Index);
Eric Christopher3c0d5162012-03-23 03:54:05 +0000213
Dan Gohman0bd312a2009-09-28 15:07:18 +0000214 dumpPassInfo(P, EXECUTION_MSG, ON_LOOP_MSG,
Benjamin Kramerf4512a32010-03-31 16:06:22 +0000215 CurrentLoop->getHeader()->getName());
Chris Lattner4c493d92008-08-08 15:14:09 +0000216 dumpRequiredSet(P);
Devang Patel20525d22007-02-22 08:56:17 +0000217
218 initializeAnalysisImpl(P);
Eric Christopher3c0d5162012-03-23 03:54:05 +0000219
Chris Lattner4c1e9542009-03-06 06:45:05 +0000220 {
Chris Lattner9efd4fc2010-01-22 05:37:10 +0000221 PassManagerPrettyStackEntry X(P, *CurrentLoop->getHeader());
Chris Lattner707431c2010-03-30 04:03:22 +0000222 TimeRegion PassTimer(getPassTimer(P));
223
Chris Lattner9efd4fc2010-01-22 05:37:10 +0000224 Changed |= P->runOnLoop(CurrentLoop, *this);
Chris Lattner4c1e9542009-03-06 06:45:05 +0000225 }
Devang Patel20525d22007-02-22 08:56:17 +0000226
227 if (Changed)
Dan Gohman0bd312a2009-09-28 15:07:18 +0000228 dumpPassInfo(P, MODIFICATION_MSG, ON_LOOP_MSG,
Dan Gohman86dc8862009-09-28 15:40:01 +0000229 skipThisLoop ? "<deleted>" :
Benjamin Kramerf4512a32010-03-31 16:06:22 +0000230 CurrentLoop->getHeader()->getName());
Chris Lattner4c493d92008-08-08 15:14:09 +0000231 dumpPreservedSet(P);
Devang Patela273d1c2007-07-19 18:02:32 +0000232
Dan Gohman4dbb3012009-09-28 00:27:48 +0000233 if (!skipThisLoop) {
234 // Manually check that this loop is still healthy. This is done
235 // instead of relying on LoopInfo::verifyLoop since LoopInfo
236 // is a function pass and it's really expensive to verify every
237 // loop in the function every time. That level of checking can be
238 // enabled with the -verify-loop-info option.
Chris Lattner707431c2010-03-30 04:03:22 +0000239 {
Chandler Carruth4f8f3072015-01-17 14:16:18 +0000240 TimeRegion PassTimer(getPassTimer(&LIWP));
Chris Lattner707431c2010-03-30 04:03:22 +0000241 CurrentLoop->verifyLoop();
242 }
Dan Gohman4dbb3012009-09-28 00:27:48 +0000243
244 // Then call the regular verifyAnalysis functions.
Chris Lattner9efd4fc2010-01-22 05:37:10 +0000245 verifyPreservedAnalysis(P);
Juergen Ributzka34390c72014-05-16 02:33:15 +0000246
247 F.getContext().yield();
Dan Gohman4dbb3012009-09-28 00:27:48 +0000248 }
Dan Gohman96a26bd2009-09-03 15:09:24 +0000249
Devang Patel20525d22007-02-22 08:56:17 +0000250 removeNotPreservedAnalysis(P);
251 recordAvailableAnalysis(P);
Dan Gohman0bd312a2009-09-28 15:07:18 +0000252 removeDeadPasses(P,
253 skipThisLoop ? "<deleted>" :
Benjamin Kramerf4512a32010-03-31 16:06:22 +0000254 CurrentLoop->getHeader()->getName(),
Dan Gohman0bd312a2009-09-28 15:07:18 +0000255 ON_LOOP_MSG);
Devang Patel4e335c62007-02-23 00:10:16 +0000256
257 if (skipThisLoop)
258 // Do not run other passes on this loop.
259 break;
Devang Patel20525d22007-02-22 08:56:17 +0000260 }
Andrew Trickf898cbd2011-08-03 23:45:50 +0000261
Dan Gohman37a996642009-09-27 23:43:07 +0000262 // If the loop was deleted, release all the loop passes. This frees up
263 // some memory, and avoids trouble with the pass manager trying to call
264 // verifyAnalysis on them.
265 if (skipThisLoop)
Andrew Trickf898cbd2011-08-03 23:45:50 +0000266 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
Dan Gohman37a996642009-09-27 23:43:07 +0000267 Pass *P = getContainedPass(Index);
Dan Gohman0bd312a2009-09-28 15:07:18 +0000268 freePass(P, "<deleted>", ON_LOOP_MSG);
Dan Gohman37a996642009-09-27 23:43:07 +0000269 }
270
Devang Patel51705712007-02-22 23:45:15 +0000271 // Pop the loop from queue after running all passes.
Devang Patela8c81c522007-03-06 02:30:46 +0000272 LQ.pop_back();
Devang Patel20525d22007-02-22 08:56:17 +0000273 }
Andrew Trickf898cbd2011-08-03 23:45:50 +0000274
Devang Patel84ffc222007-03-06 16:59:03 +0000275 // Finalization
276 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
Dan Gohmana97e78b2010-08-11 20:34:43 +0000277 LoopPass *P = getContainedPass(Index);
Chris Lattner9efd4fc2010-01-22 05:37:10 +0000278 Changed |= P->doFinalization();
Devang Patel84ffc222007-03-06 16:59:03 +0000279 }
Devang Patel20525d22007-02-22 08:56:17 +0000280
281 return Changed;
282}
283
Dan Gohman143206d2009-02-17 19:41:26 +0000284/// Print passes managed by this manager
285void LPPassManager::dumpPassStructure(unsigned Offset) {
Chris Lattner4883d902009-08-23 07:19:13 +0000286 errs().indent(Offset*2) << "Loop Pass Manager\n";
Dan Gohman143206d2009-02-17 19:41:26 +0000287 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
288 Pass *P = getContainedPass(Index);
Dan Gohmanf71c5212010-08-19 01:29:07 +0000289 P->dumpPassStructure(Offset + 1);
Dan Gohman143206d2009-02-17 19:41:26 +0000290 dumpLastUses(P, Offset+1);
291 }
292}
293
Devang Patel20525d22007-02-22 08:56:17 +0000294
Devang Patel55c38272007-02-23 00:36:57 +0000295//===----------------------------------------------------------------------===//
296// LoopPass
297
David Greene9b063df2010-04-02 23:17:14 +0000298Pass *LoopPass::createPrinterPass(raw_ostream &O,
299 const std::string &Banner) const {
Justin Bognerc2b98f02015-11-04 22:24:08 +0000300 return new PrintLoopPassWrapper(O, Banner);
David Greene9b063df2010-04-02 23:17:14 +0000301}
302
Devang Patel16993842007-03-06 17:59:37 +0000303// Check if this pass is suitable for the current LPPassManager, if
304// available. This pass P is not suitable for a LPPassManager if P
305// is not preserving higher level analysis info used by other
306// LPPassManager passes. In such case, pop LPPassManager from the
307// stack. This will force assignPassManager() to create new
308// LPPassManger as expected.
309void LoopPass::preparePassManager(PMStack &PMS) {
310
Andrew Trickf898cbd2011-08-03 23:45:50 +0000311 // Find LPPassManager
Duncan Sands60f28bf2007-07-19 09:42:01 +0000312 while (!PMS.empty() &&
313 PMS.top()->getPassManagerType() > PMT_LoopPassManager)
314 PMS.pop();
Devang Patel16993842007-03-06 17:59:37 +0000315
Devang Patel16993842007-03-06 17:59:37 +0000316 // If this pass is destroying high level information that is used
317 // by other passes that are managed by LPM then do not insert
318 // this pass in current LPM. Use new LPPassManager.
Chris Lattner9efd4fc2010-01-22 05:37:10 +0000319 if (PMS.top()->getPassManagerType() == PMT_LoopPassManager &&
Andrew Trickf898cbd2011-08-03 23:45:50 +0000320 !PMS.top()->preserveHigherLevelAnalysis(this))
Devang Patel16993842007-03-06 17:59:37 +0000321 PMS.pop();
322}
323
Devang Patel55c38272007-02-23 00:36:57 +0000324/// Assign pass manager to manage this pass.
325void LoopPass::assignPassManager(PMStack &PMS,
326 PassManagerType PreferredType) {
Andrew Trickf898cbd2011-08-03 23:45:50 +0000327 // Find LPPassManager
Duncan Sands60f28bf2007-07-19 09:42:01 +0000328 while (!PMS.empty() &&
329 PMS.top()->getPassManagerType() > PMT_LoopPassManager)
330 PMS.pop();
Devang Patel55c38272007-02-23 00:36:57 +0000331
Chris Lattner9efd4fc2010-01-22 05:37:10 +0000332 LPPassManager *LPPM;
333 if (PMS.top()->getPassManagerType() == PMT_LoopPassManager)
334 LPPM = (LPPassManager*)PMS.top();
335 else {
Andrew Trickf898cbd2011-08-03 23:45:50 +0000336 // Create new Loop Pass Manager if it does not exist.
Devang Patel55c38272007-02-23 00:36:57 +0000337 assert (!PMS.empty() && "Unable to create Loop Pass Manager");
338 PMDataManager *PMD = PMS.top();
339
Andrew Trick08966212011-08-29 17:07:00 +0000340 // [1] Create new Loop Pass Manager
341 LPPM = new LPPassManager();
Devang Patel901a27d2007-03-07 00:26:10 +0000342 LPPM->populateInheritedAnalysis(PMS);
Devang Patel55c38272007-02-23 00:36:57 +0000343
344 // [2] Set up new manager's top level manager
345 PMTopLevelManager *TPM = PMD->getTopLevelManager();
346 TPM->addIndirectPassManager(LPPM);
347
348 // [3] Assign manager to manage this new manager. This may create
349 // and push new managers into PMS
Chris Lattner9efd4fc2010-01-22 05:37:10 +0000350 Pass *P = LPPM->getAsPass();
Devang Patel4a8725c2007-03-06 19:11:25 +0000351 TPM->schedulePass(P);
Devang Patel55c38272007-02-23 00:36:57 +0000352
353 // [4] Push new manager into PMS
354 PMS.push(LPPM);
355 }
356
357 LPPM->add(this);
358}
Paul Robinsonaf4e64d2014-02-06 00:07:05 +0000359
360// Containing function has Attribute::OptimizeNone and transformation
361// passes should skip it.
Paul Robinson0c12b1d22014-02-26 01:23:26 +0000362bool LoopPass::skipOptnoneFunction(const Loop *L) const {
363 const Function *F = L->getHeader()->getParent();
Paul Robinsonaf4e64d2014-02-06 00:07:05 +0000364 if (F && F->hasFnAttribute(Attribute::OptimizeNone)) {
365 // FIXME: Report this to dbgs() only once per function.
366 DEBUG(dbgs() << "Skipping pass '" << getPassName()
367 << "' in function " << F->getName() << "\n");
368 // FIXME: Delete loop from pass manager's queue?
369 return true;
370 }
371 return false;
372}