blob: 08615c4e14e5e107dfa03f13ad5f6e7efa362a6a [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===- LoopPass.cpp - Loop Pass and Loop Pass Manager ---------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +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"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000017using namespace llvm;
18
19//===----------------------------------------------------------------------===//
20// LPPassManager
21//
22
23char LPPassManager::ID = 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000024
25LPPassManager::LPPassManager(int Depth)
Dan Gohman26f8c272008-09-04 17:05:41 +000026 : FunctionPass(&ID), PMDataManager(Depth) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000027 skipThisLoop = false;
28 redoThisLoop = false;
29 LI = NULL;
30 CurrentLoop = NULL;
31}
32
Dan Gohman68fa99f2008-07-11 22:51:32 +000033/// Delete loop from the loop queue and loop hierarchy (LoopInfo).
Dan Gohmanf17a25c2007-07-18 16:29:46 +000034void LPPassManager::deleteLoopFromQueue(Loop *L) {
35
36 if (Loop *ParentLoop = L->getParentLoop()) { // Not a top-level loop.
37 // Reparent all of the blocks in this loop. Since BBLoop had a parent,
38 // they are now all in it.
39 for (Loop::block_iterator I = L->block_begin(), E = L->block_end();
40 I != E; ++I)
41 if (LI->getLoopFor(*I) == L) // Don't change blocks in subloops.
42 LI->changeLoopFor(*I, ParentLoop);
43
44 // Remove the loop from its parent loop.
45 for (Loop::iterator I = ParentLoop->begin(), E = ParentLoop->end();;
46 ++I) {
47 assert(I != E && "Couldn't find loop");
48 if (*I == L) {
49 ParentLoop->removeChildLoop(I);
50 break;
51 }
52 }
53
54 // Move all subloops into the parent loop.
Dan Gohman3f7d94b2007-10-03 19:26:29 +000055 while (!L->empty())
Dan Gohmanf17a25c2007-07-18 16:29:46 +000056 ParentLoop->addChildLoop(L->removeChildLoop(L->end()-1));
57 } else {
58 // Reparent all of the blocks in this loop. Since BBLoop had no parent,
59 // they no longer in a loop at all.
60
61 for (unsigned i = 0; i != L->getBlocks().size(); ++i) {
62 // Don't change blocks in subloops.
63 if (LI->getLoopFor(L->getBlocks()[i]) == L) {
64 LI->removeBlock(L->getBlocks()[i]);
65 --i;
66 }
67 }
68
69 // Remove the loop from the top-level LoopInfo object.
70 for (LoopInfo::iterator I = LI->begin(), E = LI->end();; ++I) {
71 assert(I != E && "Couldn't find loop");
72 if (*I == L) {
73 LI->removeLoop(I);
74 break;
75 }
76 }
77
78 // Move all of the subloops to the top-level.
Dan Gohman3f7d94b2007-10-03 19:26:29 +000079 while (!L->empty())
Dan Gohmanf17a25c2007-07-18 16:29:46 +000080 LI->addTopLevelLoop(L->removeChildLoop(L->end()-1));
81 }
82
83 delete L;
84
85 // If L is current loop then skip rest of the passes and let
86 // runOnFunction remove L from LQ. Otherwise, remove L from LQ now
87 // and continue applying other passes on CurrentLoop.
88 if (CurrentLoop == L) {
89 skipThisLoop = true;
90 return;
91 }
92
93 for (std::deque<Loop *>::iterator I = LQ.begin(),
94 E = LQ.end(); I != E; ++I) {
95 if (*I == L) {
96 LQ.erase(I);
97 break;
98 }
99 }
100}
101
102// Inset loop into loop nest (LoopInfo) and loop queue (LQ).
103void LPPassManager::insertLoop(Loop *L, Loop *ParentLoop) {
104
105 assert (CurrentLoop != L && "Cannot insert CurrentLoop");
106
107 // Insert into loop nest
108 if (ParentLoop)
109 ParentLoop->addChildLoop(L);
110 else
111 LI->addTopLevelLoop(L);
112
113 // Insert L into loop queue
114 if (L == CurrentLoop)
115 redoLoop(L);
116 else if (!ParentLoop)
117 // This is top level loop.
118 LQ.push_front(L);
119 else {
120 // Insert L after ParentLoop
121 for (std::deque<Loop *>::iterator I = LQ.begin(),
122 E = LQ.end(); I != E; ++I) {
123 if (*I == ParentLoop) {
124 // deque does not support insert after.
125 ++I;
126 LQ.insert(I, 1, L);
127 break;
128 }
129 }
130 }
131}
132
133// Reoptimize this loop. LPPassManager will re-insert this loop into the
134// queue. This allows LoopPass to change loop nest for the loop. This
135// utility may send LPPassManager into infinite loops so use caution.
136void LPPassManager::redoLoop(Loop *L) {
137 assert (CurrentLoop == L && "Can redo only CurrentLoop");
138 redoThisLoop = true;
139}
140
Devang Patel28891a02007-07-31 08:00:57 +0000141/// cloneBasicBlockSimpleAnalysis - Invoke cloneBasicBlockAnalysis hook for
142/// all loop passes.
143void LPPassManager::cloneBasicBlockSimpleAnalysis(BasicBlock *From,
144 BasicBlock *To, Loop *L) {
145 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
146 Pass *P = getContainedPass(Index);
147 LoopPass *LP = dynamic_cast<LoopPass *>(P);
148 LP->cloneBasicBlockAnalysis(From, To, L);
149 }
150}
151
152/// deleteSimpleAnalysisValue - Invoke deleteAnalysisValue hook for all passes.
153void LPPassManager::deleteSimpleAnalysisValue(Value *V, Loop *L) {
Devang Patelf29fbf12009-03-25 23:57:48 +0000154 if (BasicBlock *BB = dyn_cast<BasicBlock>(V)) {
155 for (BasicBlock::iterator BI = BB->begin(), BE = BB->end(); BI != BE;
156 ++BI) {
157 Instruction &I = *BI;
158 deleteSimpleAnalysisValue(&I, L);
159 }
160 }
Devang Patel28891a02007-07-31 08:00:57 +0000161 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
162 Pass *P = getContainedPass(Index);
163 LoopPass *LP = dynamic_cast<LoopPass *>(P);
164 LP->deleteAnalysisValue(V, L);
165 }
166}
167
168
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000169// Recurse through all subloops and all loops into LQ.
170static void addLoopIntoQueue(Loop *L, std::deque<Loop *> &LQ) {
171 LQ.push_back(L);
172 for (Loop::iterator I = L->begin(), E = L->end(); I != E; ++I)
173 addLoopIntoQueue(*I, LQ);
174}
175
176/// Pass Manager itself does not invalidate any analysis info.
177void LPPassManager::getAnalysisUsage(AnalysisUsage &Info) const {
178 // LPPassManager needs LoopInfo. In the long term LoopInfo class will
179 // become part of LPPassManager.
180 Info.addRequired<LoopInfo>();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000181 Info.setPreservesAll();
182}
183
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000184/// run - Execute all of the passes scheduled for execution. Keep track of
185/// whether any of the passes modifies the function, and if so, return true.
186bool LPPassManager::runOnFunction(Function &F) {
187 LI = &getAnalysis<LoopInfo>();
188 bool Changed = false;
189
Devang Patel340a3b52008-07-03 07:02:30 +0000190 // Collect inherited analysis from Module level pass manager.
191 populateInheritedAnalysis(TPM->activeStack);
192
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000193 // Populate Loop Queue
194 for (LoopInfo::iterator I = LI->begin(), E = LI->end(); I != E; ++I)
195 addLoopIntoQueue(*I, LQ);
196
Edwin Török0f48d6f2009-06-29 18:49:09 +0000197 if (LQ.empty()) // No loops, skip calling finalizers
198 return false;
199
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000200 // Initialization
201 for (std::deque<Loop *>::const_iterator I = LQ.begin(), E = LQ.end();
202 I != E; ++I) {
203 Loop *L = *I;
204 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
205 Pass *P = getContainedPass(Index);
206 LoopPass *LP = dynamic_cast<LoopPass *>(P);
207 if (LP)
208 Changed |= LP->doInitialization(L, *this);
209 }
210 }
211
212 // Walk Loops
213 while (!LQ.empty()) {
214
215 CurrentLoop = LQ.back();
216 skipThisLoop = false;
217 redoThisLoop = false;
218
219 // Run all passes on current SCC
220 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000221 Pass *P = getContainedPass(Index);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000222
223 dumpPassInfo(P, EXECUTION_MSG, ON_LOOP_MSG, "");
Chris Lattnere1172482008-08-08 15:14:09 +0000224 dumpRequiredSet(P);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000225
226 initializeAnalysisImpl(P);
227
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000228 LoopPass *LP = dynamic_cast<LoopPass *>(P);
Chris Lattnerd0845332009-03-06 06:45:05 +0000229 {
230 PassManagerPrettyStackEntry X(LP, *CurrentLoop->getHeader());
231 StartPassTimer(P);
232 assert(LP && "Invalid LPPassManager member");
233 Changed |= LP->runOnLoop(CurrentLoop, *this);
234 StopPassTimer(P);
235 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000236
237 if (Changed)
238 dumpPassInfo(P, MODIFICATION_MSG, ON_LOOP_MSG, "");
Chris Lattnere1172482008-08-08 15:14:09 +0000239 dumpPreservedSet(P);
Devang Patela5eb9a32007-07-19 18:02:32 +0000240
Dan Gohman242b4732009-09-03 15:09:24 +0000241 if (!skipThisLoop)
242 verifyPreservedAnalysis(LP);
243
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000244 removeNotPreservedAnalysis(P);
245 recordAvailableAnalysis(P);
246 removeDeadPasses(P, "", ON_LOOP_MSG);
247
Devang Patelb34c71b2008-07-01 19:50:56 +0000248 // If dominator information is available then verify the info if requested.
Devang Patel36a9bce2008-07-01 17:44:24 +0000249 verifyDomInfo(*LP, F);
250
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000251 if (skipThisLoop)
252 // Do not run other passes on this loop.
253 break;
254 }
255
256 // Pop the loop from queue after running all passes.
257 LQ.pop_back();
258
259 if (redoThisLoop)
260 LQ.push_back(CurrentLoop);
261 }
262
263 // Finalization
264 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
265 Pass *P = getContainedPass(Index);
266 LoopPass *LP = dynamic_cast <LoopPass *>(P);
267 if (LP)
268 Changed |= LP->doFinalization();
269 }
270
271 return Changed;
272}
273
Dan Gohman26a00a32009-02-17 19:41:26 +0000274/// Print passes managed by this manager
275void LPPassManager::dumpPassStructure(unsigned Offset) {
Chris Lattnerbf9d76d2009-08-23 07:19:13 +0000276 errs().indent(Offset*2) << "Loop Pass Manager\n";
Dan Gohman26a00a32009-02-17 19:41:26 +0000277 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
278 Pass *P = getContainedPass(Index);
279 P->dumpPassStructure(Offset + 1);
280 dumpLastUses(P, Offset+1);
281 }
282}
283
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000284
285//===----------------------------------------------------------------------===//
286// LoopPass
287
288// Check if this pass is suitable for the current LPPassManager, if
289// available. This pass P is not suitable for a LPPassManager if P
290// is not preserving higher level analysis info used by other
291// LPPassManager passes. In such case, pop LPPassManager from the
292// stack. This will force assignPassManager() to create new
293// LPPassManger as expected.
294void LoopPass::preparePassManager(PMStack &PMS) {
295
296 // Find LPPassManager
Duncan Sands5e1f0482007-07-19 09:42:01 +0000297 while (!PMS.empty() &&
298 PMS.top()->getPassManagerType() > PMT_LoopPassManager)
299 PMS.pop();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000300
301 LPPassManager *LPPM = dynamic_cast<LPPassManager *>(PMS.top());
302
303 // If this pass is destroying high level information that is used
304 // by other passes that are managed by LPM then do not insert
305 // this pass in current LPM. Use new LPPassManager.
306 if (LPPM && !LPPM->preserveHigherLevelAnalysis(this))
307 PMS.pop();
308}
309
310/// Assign pass manager to manage this pass.
311void LoopPass::assignPassManager(PMStack &PMS,
312 PassManagerType PreferredType) {
313 // Find LPPassManager
Duncan Sands5e1f0482007-07-19 09:42:01 +0000314 while (!PMS.empty() &&
315 PMS.top()->getPassManagerType() > PMT_LoopPassManager)
316 PMS.pop();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000317
318 LPPassManager *LPPM = dynamic_cast<LPPassManager *>(PMS.top());
319
320 // Create new Loop Pass Manager if it does not exist.
321 if (!LPPM) {
322
323 assert (!PMS.empty() && "Unable to create Loop Pass Manager");
324 PMDataManager *PMD = PMS.top();
325
326 // [1] Create new Call Graph Pass Manager
327 LPPM = new LPPassManager(PMD->getDepth() + 1);
328 LPPM->populateInheritedAnalysis(PMS);
329
330 // [2] Set up new manager's top level manager
331 PMTopLevelManager *TPM = PMD->getTopLevelManager();
332 TPM->addIndirectPassManager(LPPM);
333
334 // [3] Assign manager to manage this new manager. This may create
335 // and push new managers into PMS
336 Pass *P = dynamic_cast<Pass *>(LPPM);
337 TPM->schedulePass(P);
338
339 // [4] Push new manager into PMS
340 PMS.push(LPPM);
341 }
342
343 LPPM->add(this);
344}