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