1 //===- RegionPass.cpp - Region Pass and Region Pass Manager ---------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This file implements RegionPass and RGPassManager. All region optimization
10 // and transformation passes are derived from RegionPass. RGPassManager is
11 // responsible for managing RegionPasses.
12 // Most of this code has been COPIED from LoopPass.cpp
13 //
14 //===----------------------------------------------------------------------===//
15 #include "llvm/Analysis/RegionPass.h"
16 #include "llvm/IR/OptBisect.h"
17 #include "llvm/IR/PassTimingInfo.h"
18 #include "llvm/IR/StructuralHash.h"
19 #include "llvm/Support/Debug.h"
20 #include "llvm/Support/Timer.h"
21 #include "llvm/Support/raw_ostream.h"
22 using namespace llvm;
23 
24 #define DEBUG_TYPE "regionpassmgr"
25 
26 //===----------------------------------------------------------------------===//
27 // RGPassManager
28 //
29 
30 char RGPassManager::ID = 0;
31 
RGPassManager()32 RGPassManager::RGPassManager()
33   : FunctionPass(ID), PMDataManager() {
34   RI = nullptr;
35   CurrentRegion = nullptr;
36 }
37 
38 // Recurse through all subregions and all regions  into RQ.
addRegionIntoQueue(Region & R,std::deque<Region * > & RQ)39 static void addRegionIntoQueue(Region &R, std::deque<Region *> &RQ) {
40   RQ.push_back(&R);
41   for (const auto &E : R)
42     addRegionIntoQueue(*E, RQ);
43 }
44 
45 /// Pass Manager itself does not invalidate any analysis info.
getAnalysisUsage(AnalysisUsage & Info) const46 void RGPassManager::getAnalysisUsage(AnalysisUsage &Info) const {
47   Info.addRequired<RegionInfoPass>();
48   Info.setPreservesAll();
49 }
50 
51 /// run - Execute all of the passes scheduled for execution.  Keep track of
52 /// whether any of the passes modifies the function, and if so, return true.
runOnFunction(Function & F)53 bool RGPassManager::runOnFunction(Function &F) {
54   RI = &getAnalysis<RegionInfoPass>().getRegionInfo();
55   bool Changed = false;
56 
57   // Collect inherited analysis from Module level pass manager.
58   populateInheritedAnalysis(TPM->activeStack);
59 
60   addRegionIntoQueue(*RI->getTopLevelRegion(), RQ);
61 
62   if (RQ.empty()) // No regions, skip calling finalizers
63     return false;
64 
65   // Initialization
66   for (Region *R : RQ) {
67     for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
68       RegionPass *RP = (RegionPass *)getContainedPass(Index);
69       Changed |= RP->doInitialization(R, *this);
70     }
71   }
72 
73   // Walk Regions
74   while (!RQ.empty()) {
75 
76     CurrentRegion  = RQ.back();
77 
78     // Run all passes on the current Region.
79     for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
80       RegionPass *P = (RegionPass*)getContainedPass(Index);
81 
82       if (isPassDebuggingExecutionsOrMore()) {
83         dumpPassInfo(P, EXECUTION_MSG, ON_REGION_MSG,
84                      CurrentRegion->getNameStr());
85         dumpRequiredSet(P);
86       }
87 
88       initializeAnalysisImpl(P);
89 
90       bool LocalChanged = false;
91       {
92         PassManagerPrettyStackEntry X(P, *CurrentRegion->getEntry());
93 
94         TimeRegion PassTimer(getPassTimer(P));
95 #ifdef EXPENSIVE_CHECKS
96         uint64_t RefHash = StructuralHash(F);
97 #endif
98         LocalChanged = P->runOnRegion(CurrentRegion, *this);
99 
100 #ifdef EXPENSIVE_CHECKS
101         if (!LocalChanged && (RefHash != StructuralHash(F))) {
102           llvm::errs() << "Pass modifies its input and doesn't report it: "
103                        << P->getPassName() << "\n";
104           llvm_unreachable("Pass modifies its input and doesn't report it");
105         }
106 #endif
107 
108         Changed |= LocalChanged;
109       }
110 
111       if (isPassDebuggingExecutionsOrMore()) {
112         if (LocalChanged)
113           dumpPassInfo(P, MODIFICATION_MSG, ON_REGION_MSG,
114                                       CurrentRegion->getNameStr());
115         dumpPreservedSet(P);
116       }
117 
118       // Manually check that this region is still healthy. This is done
119       // instead of relying on RegionInfo::verifyRegion since RegionInfo
120       // is a function pass and it's really expensive to verify every
121       // Region in the function every time. That level of checking can be
122       // enabled with the -verify-region-info option.
123       {
124         TimeRegion PassTimer(getPassTimer(P));
125         CurrentRegion->verifyRegion();
126       }
127 
128       // Then call the regular verifyAnalysis functions.
129       verifyPreservedAnalysis(P);
130 
131       if (LocalChanged)
132         removeNotPreservedAnalysis(P);
133       recordAvailableAnalysis(P);
134       removeDeadPasses(P,
135                        (!isPassDebuggingExecutionsOrMore())
136                            ? "<deleted>"
137                            : CurrentRegion->getNameStr(),
138                        ON_REGION_MSG);
139     }
140 
141     // Pop the region from queue after running all passes.
142     RQ.pop_back();
143 
144     // Free all region nodes created in region passes.
145     RI->clearNodeCache();
146   }
147 
148   // Finalization
149   for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
150     RegionPass *P = (RegionPass*)getContainedPass(Index);
151     Changed |= P->doFinalization();
152   }
153 
154   // Print the region tree after all pass.
155   LLVM_DEBUG(dbgs() << "\nRegion tree of function " << F.getName()
156                     << " after all region Pass:\n";
157              RI->dump(); dbgs() << "\n";);
158 
159   return Changed;
160 }
161 
162 /// Print passes managed by this manager
dumpPassStructure(unsigned Offset)163 void RGPassManager::dumpPassStructure(unsigned Offset) {
164   errs().indent(Offset*2) << "Region Pass Manager\n";
165   for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
166     Pass *P = getContainedPass(Index);
167     P->dumpPassStructure(Offset + 1);
168     dumpLastUses(P, Offset+1);
169   }
170 }
171 
172 namespace {
173 //===----------------------------------------------------------------------===//
174 // PrintRegionPass
175 class PrintRegionPass : public RegionPass {
176 private:
177   std::string Banner;
178   raw_ostream &Out;       // raw_ostream to print on.
179 
180 public:
181   static char ID;
PrintRegionPass(const std::string & B,raw_ostream & o)182   PrintRegionPass(const std::string &B, raw_ostream &o)
183       : RegionPass(ID), Banner(B), Out(o) {}
184 
getAnalysisUsage(AnalysisUsage & AU) const185   void getAnalysisUsage(AnalysisUsage &AU) const override {
186     AU.setPreservesAll();
187   }
188 
runOnRegion(Region * R,RGPassManager & RGM)189   bool runOnRegion(Region *R, RGPassManager &RGM) override {
190     Out << Banner;
191     for (const auto *BB : R->blocks()) {
192       if (BB)
193         BB->print(Out);
194       else
195         Out << "Printing <null> Block";
196     }
197 
198     return false;
199   }
200 
getPassName() const201   StringRef getPassName() const override { return "Print Region IR"; }
202 };
203 
204 char PrintRegionPass::ID = 0;
205 }  //end anonymous namespace
206 
207 //===----------------------------------------------------------------------===//
208 // RegionPass
209 
210 // Check if this pass is suitable for the current RGPassManager, if
211 // available. This pass P is not suitable for a RGPassManager if P
212 // is not preserving higher level analysis info used by other
213 // RGPassManager passes. In such case, pop RGPassManager from the
214 // stack. This will force assignPassManager() to create new
215 // LPPassManger as expected.
preparePassManager(PMStack & PMS)216 void RegionPass::preparePassManager(PMStack &PMS) {
217 
218   // Find RGPassManager
219   while (!PMS.empty() &&
220          PMS.top()->getPassManagerType() > PMT_RegionPassManager)
221     PMS.pop();
222 
223 
224   // If this pass is destroying high level information that is used
225   // by other passes that are managed by LPM then do not insert
226   // this pass in current LPM. Use new RGPassManager.
227   if (PMS.top()->getPassManagerType() == PMT_RegionPassManager &&
228     !PMS.top()->preserveHigherLevelAnalysis(this))
229     PMS.pop();
230 }
231 
232 /// Assign pass manager to manage this pass.
assignPassManager(PMStack & PMS,PassManagerType PreferredType)233 void RegionPass::assignPassManager(PMStack &PMS,
234                                  PassManagerType PreferredType) {
235   // Find RGPassManager
236   while (!PMS.empty() &&
237          PMS.top()->getPassManagerType() > PMT_RegionPassManager)
238     PMS.pop();
239 
240   RGPassManager *RGPM;
241 
242   // Create new Region Pass Manager if it does not exist.
243   if (PMS.top()->getPassManagerType() == PMT_RegionPassManager)
244     RGPM = (RGPassManager*)PMS.top();
245   else {
246 
247     assert (!PMS.empty() && "Unable to create Region Pass Manager");
248     PMDataManager *PMD = PMS.top();
249 
250     // [1] Create new Region Pass Manager
251     RGPM = new RGPassManager();
252     RGPM->populateInheritedAnalysis(PMS);
253 
254     // [2] Set up new manager's top level manager
255     PMTopLevelManager *TPM = PMD->getTopLevelManager();
256     TPM->addIndirectPassManager(RGPM);
257 
258     // [3] Assign manager to manage this new manager. This may create
259     // and push new managers into PMS
260     TPM->schedulePass(RGPM);
261 
262     // [4] Push new manager into PMS
263     PMS.push(RGPM);
264   }
265 
266   RGPM->add(this);
267 }
268 
269 /// Get the printer pass
createPrinterPass(raw_ostream & O,const std::string & Banner) const270 Pass *RegionPass::createPrinterPass(raw_ostream &O,
271                                   const std::string &Banner) const {
272   return new PrintRegionPass(Banner, O);
273 }
274 
getDescription(const Region & R)275 static std::string getDescription(const Region &R) {
276   return "region";
277 }
278 
skipRegion(Region & R) const279 bool RegionPass::skipRegion(Region &R) const {
280   Function &F = *R.getEntry()->getParent();
281   OptPassGate &Gate = F.getContext().getOptPassGate();
282   if (Gate.isEnabled() && !Gate.shouldRunPass(this, getDescription(R)))
283     return true;
284 
285   if (F.hasOptNone()) {
286     // Report this only once per function.
287     if (R.getEntry() == &F.getEntryBlock())
288       LLVM_DEBUG(dbgs() << "Skipping pass '" << getPassName()
289                         << "' on function " << F.getName() << "\n");
290     return true;
291   }
292   return false;
293 }
294