1 //===- LoopPass.cpp - Loop Pass and Loop Pass Manager ---------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
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"
17 #include "llvm/Analysis/LoopAnalysisManager.h"
18 #include "llvm/IR/Dominators.h"
19 #include "llvm/IR/IRPrintingPasses.h"
20 #include "llvm/IR/LLVMContext.h"
21 #include "llvm/IR/OptBisect.h"
22 #include "llvm/IR/PassManager.h"
23 #include "llvm/IR/PassTimingInfo.h"
24 #include "llvm/Support/Debug.h"
25 #include "llvm/Support/Timer.h"
26 #include "llvm/Support/raw_ostream.h"
27 using namespace llvm;
28 
29 #define DEBUG_TYPE "loop-pass-manager"
30 
31 namespace {
32 
33 /// PrintLoopPass - Print a Function corresponding to a Loop.
34 ///
35 class PrintLoopPassWrapper : public LoopPass {
36   raw_ostream &OS;
37   std::string Banner;
38 
39 public:
40   static char ID;
41   PrintLoopPassWrapper() : LoopPass(ID), OS(dbgs()) {}
42   PrintLoopPassWrapper(raw_ostream &OS, const std::string &Banner)
43       : LoopPass(ID), OS(OS), Banner(Banner) {}
44 
45   void getAnalysisUsage(AnalysisUsage &AU) const override {
46     AU.setPreservesAll();
47   }
48 
49   bool runOnLoop(Loop *L, LPPassManager &) override {
50     auto BBI = llvm::find_if(L->blocks(), [](BasicBlock *BB) { return BB; });
51     if (BBI != L->blocks().end() &&
52         isFunctionInPrintList((*BBI)->getParent()->getName())) {
53       printLoop(*L, OS, Banner);
54     }
55     return false;
56   }
57 
58   StringRef getPassName() const override { return "Print Loop IR"; }
59 };
60 
61 char PrintLoopPassWrapper::ID = 0;
62 }
63 
64 //===----------------------------------------------------------------------===//
65 // LPPassManager
66 //
67 
68 char LPPassManager::ID = 0;
69 
70 LPPassManager::LPPassManager()
71   : FunctionPass(ID), PMDataManager() {
72   LI = nullptr;
73   CurrentLoop = nullptr;
74 }
75 
76 // Insert loop into loop nest (LoopInfo) and loop queue (LQ).
77 void LPPassManager::addLoop(Loop &L) {
78   if (!L.getParentLoop()) {
79     // This is the top level loop.
80     LQ.push_front(&L);
81     return;
82   }
83 
84   // Insert L into the loop queue after the parent loop.
85   for (auto I = LQ.begin(), E = LQ.end(); I != E; ++I) {
86     if (*I == L.getParentLoop()) {
87       // deque does not support insert after.
88       ++I;
89       LQ.insert(I, 1, &L);
90       return;
91     }
92   }
93 }
94 
95 /// cloneBasicBlockSimpleAnalysis - Invoke cloneBasicBlockAnalysis hook for
96 /// all loop passes.
97 void LPPassManager::cloneBasicBlockSimpleAnalysis(BasicBlock *From,
98                                                   BasicBlock *To, Loop *L) {
99   for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
100     LoopPass *LP = getContainedPass(Index);
101     LP->cloneBasicBlockAnalysis(From, To, L);
102   }
103 }
104 
105 /// deleteSimpleAnalysisValue - Invoke deleteAnalysisValue hook for all passes.
106 void LPPassManager::deleteSimpleAnalysisValue(Value *V, Loop *L) {
107   if (BasicBlock *BB = dyn_cast<BasicBlock>(V)) {
108     for (Instruction &I : *BB) {
109       deleteSimpleAnalysisValue(&I, L);
110     }
111   }
112   for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
113     LoopPass *LP = getContainedPass(Index);
114     LP->deleteAnalysisValue(V, L);
115   }
116 }
117 
118 /// Invoke deleteAnalysisLoop hook for all passes.
119 void LPPassManager::deleteSimpleAnalysisLoop(Loop *L) {
120   for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
121     LoopPass *LP = getContainedPass(Index);
122     LP->deleteAnalysisLoop(L);
123   }
124 }
125 
126 
127 // Recurse through all subloops and all loops  into LQ.
128 static void addLoopIntoQueue(Loop *L, std::deque<Loop *> &LQ) {
129   LQ.push_back(L);
130   for (Loop *I : reverse(*L))
131     addLoopIntoQueue(I, LQ);
132 }
133 
134 /// Pass Manager itself does not invalidate any analysis info.
135 void LPPassManager::getAnalysisUsage(AnalysisUsage &Info) const {
136   // LPPassManager needs LoopInfo. In the long term LoopInfo class will
137   // become part of LPPassManager.
138   Info.addRequired<LoopInfoWrapperPass>();
139   Info.addRequired<DominatorTreeWrapperPass>();
140   Info.setPreservesAll();
141 }
142 
143 void LPPassManager::markLoopAsDeleted(Loop &L) {
144   assert((&L == CurrentLoop || CurrentLoop->contains(&L)) &&
145          "Must not delete loop outside the current loop tree!");
146   // If this loop appears elsewhere within the queue, we also need to remove it
147   // there. However, we have to be careful to not remove the back of the queue
148   // as that is assumed to match the current loop.
149   assert(LQ.back() == CurrentLoop && "Loop queue back isn't the current loop!");
150   LQ.erase(std::remove(LQ.begin(), LQ.end(), &L), LQ.end());
151 
152   if (&L == CurrentLoop) {
153     CurrentLoopDeleted = true;
154     // Add this loop back onto the back of the queue to preserve our invariants.
155     LQ.push_back(&L);
156   }
157 }
158 
159 /// run - Execute all of the passes scheduled for execution.  Keep track of
160 /// whether any of the passes modifies the function, and if so, return true.
161 bool LPPassManager::runOnFunction(Function &F) {
162   auto &LIWP = getAnalysis<LoopInfoWrapperPass>();
163   LI = &LIWP.getLoopInfo();
164   Module &M = *F.getParent();
165 #if 0
166   DominatorTree *DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree();
167 #endif
168   bool Changed = false;
169 
170   // Collect inherited analysis from Module level pass manager.
171   populateInheritedAnalysis(TPM->activeStack);
172 
173   // Populate the loop queue in reverse program order. There is no clear need to
174   // process sibling loops in either forward or reverse order. There may be some
175   // advantage in deleting uses in a later loop before optimizing the
176   // definitions in an earlier loop. If we find a clear reason to process in
177   // forward order, then a forward variant of LoopPassManager should be created.
178   //
179   // Note that LoopInfo::iterator visits loops in reverse program
180   // order. Here, reverse_iterator gives us a forward order, and the LoopQueue
181   // reverses the order a third time by popping from the back.
182   for (Loop *L : reverse(*LI))
183     addLoopIntoQueue(L, LQ);
184 
185   if (LQ.empty()) // No loops, skip calling finalizers
186     return false;
187 
188   // Initialization
189   for (Loop *L : LQ) {
190     for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
191       LoopPass *P = getContainedPass(Index);
192       Changed |= P->doInitialization(L, *this);
193     }
194   }
195 
196   // Walk Loops
197   unsigned InstrCount, FunctionSize = 0;
198   bool EmitICRemark = M.shouldEmitInstrCountChangedRemark();
199   // Collect the initial size of the module and the function we're looking at.
200   if (EmitICRemark) {
201     InstrCount = initSizeRemarkInfo(M);
202     FunctionSize = F.getInstructionCount();
203   }
204   while (!LQ.empty()) {
205     CurrentLoopDeleted = false;
206     CurrentLoop = LQ.back();
207 
208     // Run all passes on the current Loop.
209     for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
210       LoopPass *P = getContainedPass(Index);
211 
212       dumpPassInfo(P, EXECUTION_MSG, ON_LOOP_MSG,
213                    CurrentLoop->getHeader()->getName());
214       dumpRequiredSet(P);
215 
216       initializeAnalysisImpl(P);
217 
218       {
219         PassManagerPrettyStackEntry X(P, *CurrentLoop->getHeader());
220         TimeRegion PassTimer(getPassTimer(P));
221         Changed |= P->runOnLoop(CurrentLoop, *this);
222         if (EmitICRemark) {
223           unsigned NewSize = F.getInstructionCount();
224           // Update the size of the function, emit a remark, and update the
225           // size of the module.
226           if (NewSize != FunctionSize) {
227             int64_t Delta = static_cast<int64_t>(NewSize) -
228                             static_cast<int64_t>(FunctionSize);
229             emitInstrCountChangedRemark(P, M, Delta, InstrCount, &F);
230             InstrCount = static_cast<int64_t>(InstrCount) + Delta;
231             FunctionSize = NewSize;
232           }
233         }
234       }
235 
236       if (Changed)
237         dumpPassInfo(P, MODIFICATION_MSG, ON_LOOP_MSG,
238                      CurrentLoopDeleted ? "<deleted loop>"
239                                         : CurrentLoop->getName());
240       dumpPreservedSet(P);
241 
242       if (CurrentLoopDeleted) {
243         // Notify passes that the loop is being deleted.
244         deleteSimpleAnalysisLoop(CurrentLoop);
245       } else {
246         // Manually check that this loop is still healthy. This is done
247         // instead of relying on LoopInfo::verifyLoop since LoopInfo
248         // is a function pass and it's really expensive to verify every
249         // loop in the function every time. That level of checking can be
250         // enabled with the -verify-loop-info option.
251         {
252           TimeRegion PassTimer(getPassTimer(&LIWP));
253           CurrentLoop->verifyLoop();
254         }
255         // Here we apply same reasoning as in the above case. Only difference
256         // is that LPPassManager might run passes which do not require LCSSA
257         // form (LoopPassPrinter for example). We should skip verification for
258         // such passes.
259         // FIXME: Loop-sink currently break LCSSA. Fix it and reenable the
260         // verification!
261 #if 0
262         if (mustPreserveAnalysisID(LCSSAVerificationPass::ID))
263           assert(CurrentLoop->isRecursivelyLCSSAForm(*DT, *LI));
264 #endif
265 
266         // Then call the regular verifyAnalysis functions.
267         verifyPreservedAnalysis(P);
268 
269         F.getContext().yield();
270       }
271 
272       removeNotPreservedAnalysis(P);
273       recordAvailableAnalysis(P);
274       removeDeadPasses(P,
275                        CurrentLoopDeleted ? "<deleted>"
276                                           : CurrentLoop->getHeader()->getName(),
277                        ON_LOOP_MSG);
278 
279       if (CurrentLoopDeleted)
280         // Do not run other passes on this loop.
281         break;
282     }
283 
284     // If the loop was deleted, release all the loop passes. This frees up
285     // some memory, and avoids trouble with the pass manager trying to call
286     // verifyAnalysis on them.
287     if (CurrentLoopDeleted) {
288       for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
289         Pass *P = getContainedPass(Index);
290         freePass(P, "<deleted>", ON_LOOP_MSG);
291       }
292     }
293 
294     // Pop the loop from queue after running all passes.
295     LQ.pop_back();
296   }
297 
298   // Finalization
299   for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
300     LoopPass *P = getContainedPass(Index);
301     Changed |= P->doFinalization();
302   }
303 
304   return Changed;
305 }
306 
307 /// Print passes managed by this manager
308 void LPPassManager::dumpPassStructure(unsigned Offset) {
309   errs().indent(Offset*2) << "Loop Pass Manager\n";
310   for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
311     Pass *P = getContainedPass(Index);
312     P->dumpPassStructure(Offset + 1);
313     dumpLastUses(P, Offset+1);
314   }
315 }
316 
317 
318 //===----------------------------------------------------------------------===//
319 // LoopPass
320 
321 Pass *LoopPass::createPrinterPass(raw_ostream &O,
322                                   const std::string &Banner) const {
323   return new PrintLoopPassWrapper(O, Banner);
324 }
325 
326 // Check if this pass is suitable for the current LPPassManager, if
327 // available. This pass P is not suitable for a LPPassManager if P
328 // is not preserving higher level analysis info used by other
329 // LPPassManager passes. In such case, pop LPPassManager from the
330 // stack. This will force assignPassManager() to create new
331 // LPPassManger as expected.
332 void LoopPass::preparePassManager(PMStack &PMS) {
333 
334   // Find LPPassManager
335   while (!PMS.empty() &&
336          PMS.top()->getPassManagerType() > PMT_LoopPassManager)
337     PMS.pop();
338 
339   // If this pass is destroying high level information that is used
340   // by other passes that are managed by LPM then do not insert
341   // this pass in current LPM. Use new LPPassManager.
342   if (PMS.top()->getPassManagerType() == PMT_LoopPassManager &&
343       !PMS.top()->preserveHigherLevelAnalysis(this))
344     PMS.pop();
345 }
346 
347 /// Assign pass manager to manage this pass.
348 void LoopPass::assignPassManager(PMStack &PMS,
349                                  PassManagerType PreferredType) {
350   // Find LPPassManager
351   while (!PMS.empty() &&
352          PMS.top()->getPassManagerType() > PMT_LoopPassManager)
353     PMS.pop();
354 
355   LPPassManager *LPPM;
356   if (PMS.top()->getPassManagerType() == PMT_LoopPassManager)
357     LPPM = (LPPassManager*)PMS.top();
358   else {
359     // Create new Loop Pass Manager if it does not exist.
360     assert (!PMS.empty() && "Unable to create Loop Pass Manager");
361     PMDataManager *PMD = PMS.top();
362 
363     // [1] Create new Loop Pass Manager
364     LPPM = new LPPassManager();
365     LPPM->populateInheritedAnalysis(PMS);
366 
367     // [2] Set up new manager's top level manager
368     PMTopLevelManager *TPM = PMD->getTopLevelManager();
369     TPM->addIndirectPassManager(LPPM);
370 
371     // [3] Assign manager to manage this new manager. This may create
372     // and push new managers into PMS
373     Pass *P = LPPM->getAsPass();
374     TPM->schedulePass(P);
375 
376     // [4] Push new manager into PMS
377     PMS.push(LPPM);
378   }
379 
380   LPPM->add(this);
381 }
382 
383 bool LoopPass::skipLoop(const Loop *L) const {
384   const Function *F = L->getHeader()->getParent();
385   if (!F)
386     return false;
387   // Check the opt bisect limit.
388   LLVMContext &Context = F->getContext();
389   if (!Context.getOptPassGate().shouldRunPass(this, *L))
390     return true;
391   // Check for the OptimizeNone attribute.
392   if (F->hasFnAttribute(Attribute::OptimizeNone)) {
393     // FIXME: Report this to dbgs() only once per function.
394     LLVM_DEBUG(dbgs() << "Skipping pass '" << getPassName() << "' in function "
395                       << F->getName() << "\n");
396     // FIXME: Delete loop from pass manager's queue?
397     return true;
398   }
399   return false;
400 }
401 
402 char LCSSAVerificationPass::ID = 0;
403 INITIALIZE_PASS(LCSSAVerificationPass, "lcssa-verification", "LCSSA Verifier",
404                 false, false)
405