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