LoopPass.cpp revision 226633
122315Sjulian//===- LoopPass.cpp - Loop Pass and Loop Pass Manager ---------------------===//
222315Sjulian//
322315Sjulian//                     The LLVM Compiler Infrastructure
422315Sjulian//
522315Sjulian// This file is distributed under the University of Illinois Open Source
622315Sjulian// License. See LICENSE.TXT for details.
722315Sjulian//
822315Sjulian//===----------------------------------------------------------------------===//
922315Sjulian//
1022315Sjulian// This file implements LoopPass and LPPassManager. All loop optimization
1122315Sjulian// and transformation passes are derived from LoopPass. LPPassManager is
1222315Sjulian// responsible for managing LoopPasses.
13165967Simp//
1422315Sjulian//===----------------------------------------------------------------------===//
1522315Sjulian
1622315Sjulian#include "llvm/Analysis/LoopPass.h"
1722315Sjulian#include "llvm/DebugInfoProbe.h"
1822315Sjulian#include "llvm/Assembly/PrintModulePass.h"
1922315Sjulian#include "llvm/Support/Debug.h"
2049439Sdeischen#include "llvm/Support/ManagedStatic.h"
2122315Sjulian#include "llvm/Support/Timer.h"
2222315Sjulianusing namespace llvm;
2322315Sjulian
2422315Sjuliannamespace {
2522315Sjulian
2622315Sjulian/// PrintLoopPass - Print a Function corresponding to a Loop.
2722315Sjulian///
2822315Sjulianclass PrintLoopPass : public LoopPass {
2950476Speterprivate:
3022315Sjulian  std::string Banner;
31174112Sdeischen  raw_ostream &Out;       // raw_ostream to print on.
32174112Sdeischen
3322315Sjulianpublic:
3422315Sjulian  static char ID;
3522315Sjulian  PrintLoopPass(const std::string &B, raw_ostream &o)
36174112Sdeischen      : LoopPass(ID), Banner(B), Out(o) {}
37103388Smini
3822315Sjulian  virtual void getAnalysisUsage(AnalysisUsage &AU) const {
3975369Sdeischen    AU.setPreservesAll();
4071581Sdeischen  }
4122315Sjulian
4271581Sdeischen  bool runOnLoop(Loop *L, LPPassManager &) {
4322315Sjulian    Out << Banner;
44113658Sdeischen    for (Loop::block_iterator b = L->block_begin(), be = L->block_end();
45113658Sdeischen         b != be;
46113658Sdeischen         ++b) {
47113658Sdeischen      (*b)->print(Out);
48116977Sdavidxu    }
49113658Sdeischen    return false;
50113658Sdeischen  }
5148046Sjb};
52113658Sdeischen
53113658Sdeischenchar PrintLoopPass::ID = 0;
54113658Sdeischen}
5548046Sjb
56113658Sdeischen//===----------------------------------------------------------------------===//
57113658Sdeischen// DebugInfoProbe
58113658Sdeischen
59113658Sdeischenstatic DebugInfoProbeInfo *TheDebugProbe;
60113658Sdeischenstatic void createDebugInfoProbe() {
61113658Sdeischen  if (TheDebugProbe) return;
62113658Sdeischen
63113658Sdeischen  // Constructed the first time this is called. This guarantees that the
64113658Sdeischen  // object will be constructed, if -enable-debug-info-probe is set,
65113658Sdeischen  // before static globals, thus it will be destroyed before them.
6622315Sjulian  static ManagedStatic<DebugInfoProbeInfo> DIP;
67  TheDebugProbe = &*DIP;
68}
69
70//===----------------------------------------------------------------------===//
71// LPPassManager
72//
73
74char LPPassManager::ID = 0;
75
76LPPassManager::LPPassManager()
77  : FunctionPass(ID), PMDataManager() {
78  skipThisLoop = false;
79  redoThisLoop = false;
80  LI = NULL;
81  CurrentLoop = NULL;
82}
83
84/// Delete loop from the loop queue and loop hierarchy (LoopInfo).
85void LPPassManager::deleteLoopFromQueue(Loop *L) {
86
87  LI->updateUnloop(L);
88
89  // If L is current loop then skip rest of the passes and let
90  // runOnFunction remove L from LQ. Otherwise, remove L from LQ now
91  // and continue applying other passes on CurrentLoop.
92  if (CurrentLoop == L)
93    skipThisLoop = true;
94
95  delete L;
96
97  if (skipThisLoop)
98    return;
99
100  for (std::deque<Loop *>::iterator I = LQ.begin(),
101         E = LQ.end(); I != E; ++I) {
102    if (*I == L) {
103      LQ.erase(I);
104      break;
105    }
106  }
107}
108
109// Inset loop into loop nest (LoopInfo) and loop queue (LQ).
110void LPPassManager::insertLoop(Loop *L, Loop *ParentLoop) {
111
112  assert (CurrentLoop != L && "Cannot insert CurrentLoop");
113
114  // Insert into loop nest
115  if (ParentLoop)
116    ParentLoop->addChildLoop(L);
117  else
118    LI->addTopLevelLoop(L);
119
120  insertLoopIntoQueue(L);
121}
122
123void LPPassManager::insertLoopIntoQueue(Loop *L) {
124  // Insert L into loop queue
125  if (L == CurrentLoop)
126    redoLoop(L);
127  else if (!L->getParentLoop())
128    // This is top level loop.
129    LQ.push_front(L);
130  else {
131    // Insert L after the parent loop.
132    for (std::deque<Loop *>::iterator I = LQ.begin(),
133           E = LQ.end(); I != E; ++I) {
134      if (*I == L->getParentLoop()) {
135        // deque does not support insert after.
136        ++I;
137        LQ.insert(I, 1, L);
138        break;
139      }
140    }
141  }
142}
143
144// Reoptimize this loop. LPPassManager will re-insert this loop into the
145// queue. This allows LoopPass to change loop nest for the loop. This
146// utility may send LPPassManager into infinite loops so use caution.
147void LPPassManager::redoLoop(Loop *L) {
148  assert (CurrentLoop == L && "Can redo only CurrentLoop");
149  redoThisLoop = true;
150}
151
152/// cloneBasicBlockSimpleAnalysis - Invoke cloneBasicBlockAnalysis hook for
153/// all loop passes.
154void LPPassManager::cloneBasicBlockSimpleAnalysis(BasicBlock *From,
155                                                  BasicBlock *To, Loop *L) {
156  for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
157    LoopPass *LP = getContainedPass(Index);
158    LP->cloneBasicBlockAnalysis(From, To, L);
159  }
160}
161
162/// deleteSimpleAnalysisValue - Invoke deleteAnalysisValue hook for all passes.
163void LPPassManager::deleteSimpleAnalysisValue(Value *V, Loop *L) {
164  if (BasicBlock *BB = dyn_cast<BasicBlock>(V)) {
165    for (BasicBlock::iterator BI = BB->begin(), BE = BB->end(); BI != BE;
166         ++BI) {
167      Instruction &I = *BI;
168      deleteSimpleAnalysisValue(&I, L);
169    }
170  }
171  for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
172    LoopPass *LP = getContainedPass(Index);
173    LP->deleteAnalysisValue(V, L);
174  }
175}
176
177
178// Recurse through all subloops and all loops  into LQ.
179static void addLoopIntoQueue(Loop *L, std::deque<Loop *> &LQ) {
180  LQ.push_back(L);
181  for (Loop::iterator I = L->begin(), E = L->end(); I != E; ++I)
182    addLoopIntoQueue(*I, LQ);
183}
184
185/// Pass Manager itself does not invalidate any analysis info.
186void LPPassManager::getAnalysisUsage(AnalysisUsage &Info) const {
187  // LPPassManager needs LoopInfo. In the long term LoopInfo class will
188  // become part of LPPassManager.
189  Info.addRequired<LoopInfo>();
190  Info.setPreservesAll();
191}
192
193/// run - Execute all of the passes scheduled for execution.  Keep track of
194/// whether any of the passes modifies the function, and if so, return true.
195bool LPPassManager::runOnFunction(Function &F) {
196  LI = &getAnalysis<LoopInfo>();
197  bool Changed = false;
198  createDebugInfoProbe();
199
200  // Collect inherited analysis from Module level pass manager.
201  populateInheritedAnalysis(TPM->activeStack);
202
203  // Populate Loop Queue
204  for (LoopInfo::iterator I = LI->begin(), E = LI->end(); I != E; ++I)
205    addLoopIntoQueue(*I, LQ);
206
207  if (LQ.empty()) // No loops, skip calling finalizers
208    return false;
209
210  // Initialization
211  for (std::deque<Loop *>::const_iterator I = LQ.begin(), E = LQ.end();
212       I != E; ++I) {
213    Loop *L = *I;
214    for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
215      LoopPass *P = getContainedPass(Index);
216      Changed |= P->doInitialization(L, *this);
217    }
218  }
219
220  // Walk Loops
221  while (!LQ.empty()) {
222
223    CurrentLoop  = LQ.back();
224    skipThisLoop = false;
225    redoThisLoop = false;
226
227    // Run all passes on the current Loop.
228    for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
229      LoopPass *P = getContainedPass(Index);
230      dumpPassInfo(P, EXECUTION_MSG, ON_LOOP_MSG,
231                   CurrentLoop->getHeader()->getName());
232      dumpRequiredSet(P);
233
234      initializeAnalysisImpl(P);
235      if (TheDebugProbe)
236        TheDebugProbe->initialize(P, F);
237      {
238        PassManagerPrettyStackEntry X(P, *CurrentLoop->getHeader());
239        TimeRegion PassTimer(getPassTimer(P));
240
241        Changed |= P->runOnLoop(CurrentLoop, *this);
242      }
243      if (TheDebugProbe)
244        TheDebugProbe->finalize(P, F);
245
246      if (Changed)
247        dumpPassInfo(P, MODIFICATION_MSG, ON_LOOP_MSG,
248                     skipThisLoop ? "<deleted>" :
249                                    CurrentLoop->getHeader()->getName());
250      dumpPreservedSet(P);
251
252      if (!skipThisLoop) {
253        // Manually check that this loop is still healthy. This is done
254        // instead of relying on LoopInfo::verifyLoop since LoopInfo
255        // is a function pass and it's really expensive to verify every
256        // loop in the function every time. That level of checking can be
257        // enabled with the -verify-loop-info option.
258        {
259          TimeRegion PassTimer(getPassTimer(LI));
260          CurrentLoop->verifyLoop();
261        }
262
263        // Then call the regular verifyAnalysis functions.
264        verifyPreservedAnalysis(P);
265      }
266
267      removeNotPreservedAnalysis(P);
268      recordAvailableAnalysis(P);
269      removeDeadPasses(P,
270                       skipThisLoop ? "<deleted>" :
271                                      CurrentLoop->getHeader()->getName(),
272                       ON_LOOP_MSG);
273
274      if (skipThisLoop)
275        // Do not run other passes on this loop.
276        break;
277    }
278
279    // If the loop was deleted, release all the loop passes. This frees up
280    // some memory, and avoids trouble with the pass manager trying to call
281    // verifyAnalysis on them.
282    if (skipThisLoop)
283      for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
284        Pass *P = getContainedPass(Index);
285        freePass(P, "<deleted>", ON_LOOP_MSG);
286      }
287
288    // Pop the loop from queue after running all passes.
289    LQ.pop_back();
290
291    if (redoThisLoop)
292      LQ.push_back(CurrentLoop);
293  }
294
295  // Finalization
296  for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
297    LoopPass *P = getContainedPass(Index);
298    Changed |= P->doFinalization();
299  }
300
301  return Changed;
302}
303
304/// Print passes managed by this manager
305void LPPassManager::dumpPassStructure(unsigned Offset) {
306  errs().indent(Offset*2) << "Loop Pass Manager\n";
307  for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
308    Pass *P = getContainedPass(Index);
309    P->dumpPassStructure(Offset + 1);
310    dumpLastUses(P, Offset+1);
311  }
312}
313
314
315//===----------------------------------------------------------------------===//
316// LoopPass
317
318Pass *LoopPass::createPrinterPass(raw_ostream &O,
319                                  const std::string &Banner) const {
320  return new PrintLoopPass(Banner, O);
321}
322
323// Check if this pass is suitable for the current LPPassManager, if
324// available. This pass P is not suitable for a LPPassManager if P
325// is not preserving higher level analysis info used by other
326// LPPassManager passes. In such case, pop LPPassManager from the
327// stack. This will force assignPassManager() to create new
328// LPPassManger as expected.
329void LoopPass::preparePassManager(PMStack &PMS) {
330
331  // Find LPPassManager
332  while (!PMS.empty() &&
333         PMS.top()->getPassManagerType() > PMT_LoopPassManager)
334    PMS.pop();
335
336  // If this pass is destroying high level information that is used
337  // by other passes that are managed by LPM then do not insert
338  // this pass in current LPM. Use new LPPassManager.
339  if (PMS.top()->getPassManagerType() == PMT_LoopPassManager &&
340      !PMS.top()->preserveHigherLevelAnalysis(this))
341    PMS.pop();
342}
343
344/// Assign pass manager to manage this pass.
345void LoopPass::assignPassManager(PMStack &PMS,
346                                 PassManagerType PreferredType) {
347  // Find LPPassManager
348  while (!PMS.empty() &&
349         PMS.top()->getPassManagerType() > PMT_LoopPassManager)
350    PMS.pop();
351
352  LPPassManager *LPPM;
353  if (PMS.top()->getPassManagerType() == PMT_LoopPassManager)
354    LPPM = (LPPassManager*)PMS.top();
355  else {
356    // Create new Loop Pass Manager if it does not exist.
357    assert (!PMS.empty() && "Unable to create Loop Pass Manager");
358    PMDataManager *PMD = PMS.top();
359
360    // [1] Create new Loop Pass Manager
361    LPPM = new LPPassManager();
362    LPPM->populateInheritedAnalysis(PMS);
363
364    // [2] Set up new manager's top level manager
365    PMTopLevelManager *TPM = PMD->getTopLevelManager();
366    TPM->addIndirectPassManager(LPPM);
367
368    // [3] Assign manager to manage this new manager. This may create
369    // and push new managers into PMS
370    Pass *P = LPPM->getAsPass();
371    TPM->schedulePass(P);
372
373    // [4] Push new manager into PMS
374    PMS.push(LPPM);
375  }
376
377  LPPM->add(this);
378}
379