1 //===- CallGraphSCCPass.cpp - Pass that operates BU on call graph ---------===// 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 the CallGraphSCCPass class, which is used for passes 10 // which are implemented as bottom-up traversals on the call graph. Because 11 // there may be cycles in the call graph, passes of this type operate on the 12 // call-graph in SCC order: that is, they process function bottom-up, except for 13 // recursive functions, which they process all at once. 14 // 15 //===----------------------------------------------------------------------===// 16 17 #include "llvm/Analysis/CallGraphSCCPass.h" 18 #include "llvm/ADT/DenseMap.h" 19 #include "llvm/ADT/SCCIterator.h" 20 #include "llvm/ADT/Statistic.h" 21 #include "llvm/Analysis/CallGraph.h" 22 #include "llvm/IR/Function.h" 23 #include "llvm/IR/IRPrintingPasses.h" 24 #include "llvm/IR/Intrinsics.h" 25 #include "llvm/IR/LLVMContext.h" 26 #include "llvm/IR/LegacyPassManagers.h" 27 #include "llvm/IR/Module.h" 28 #include "llvm/IR/OptBisect.h" 29 #include "llvm/IR/PassTimingInfo.h" 30 #include "llvm/Pass.h" 31 #include "llvm/Support/CommandLine.h" 32 #include "llvm/Support/Debug.h" 33 #include "llvm/Support/Timer.h" 34 #include "llvm/Support/raw_ostream.h" 35 #include <cassert> 36 #include <string> 37 #include <utility> 38 #include <vector> 39 40 using namespace llvm; 41 42 #define DEBUG_TYPE "cgscc-passmgr" 43 44 static cl::opt<unsigned> 45 MaxIterations("max-cg-scc-iterations", cl::ReallyHidden, cl::init(4)); 46 47 STATISTIC(MaxSCCIterations, "Maximum CGSCCPassMgr iterations on one SCC"); 48 49 //===----------------------------------------------------------------------===// 50 // CGPassManager 51 // 52 /// CGPassManager manages FPPassManagers and CallGraphSCCPasses. 53 54 namespace { 55 56 class CGPassManager : public ModulePass, public PMDataManager { 57 public: 58 static char ID; 59 60 explicit CGPassManager() : ModulePass(ID), PMDataManager() {} 61 62 /// Execute all of the passes scheduled for execution. Keep track of 63 /// whether any of the passes modifies the module, and if so, return true. 64 bool runOnModule(Module &M) override; 65 66 using ModulePass::doInitialization; 67 using ModulePass::doFinalization; 68 69 bool doInitialization(CallGraph &CG); 70 bool doFinalization(CallGraph &CG); 71 72 /// Pass Manager itself does not invalidate any analysis info. 73 void getAnalysisUsage(AnalysisUsage &Info) const override { 74 // CGPassManager walks SCC and it needs CallGraph. 75 Info.addRequired<CallGraphWrapperPass>(); 76 Info.setPreservesAll(); 77 } 78 79 StringRef getPassName() const override { return "CallGraph Pass Manager"; } 80 81 PMDataManager *getAsPMDataManager() override { return this; } 82 Pass *getAsPass() override { return this; } 83 84 // Print passes managed by this manager 85 void dumpPassStructure(unsigned Offset) override { 86 errs().indent(Offset*2) << "Call Graph SCC Pass Manager\n"; 87 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) { 88 Pass *P = getContainedPass(Index); 89 P->dumpPassStructure(Offset + 1); 90 dumpLastUses(P, Offset+1); 91 } 92 } 93 94 Pass *getContainedPass(unsigned N) { 95 assert(N < PassVector.size() && "Pass number out of range!"); 96 return static_cast<Pass *>(PassVector[N]); 97 } 98 99 PassManagerType getPassManagerType() const override { 100 return PMT_CallGraphPassManager; 101 } 102 103 private: 104 bool RunAllPassesOnSCC(CallGraphSCC &CurSCC, CallGraph &CG, 105 bool &DevirtualizedCall); 106 107 bool RunPassOnSCC(Pass *P, CallGraphSCC &CurSCC, 108 CallGraph &CG, bool &CallGraphUpToDate, 109 bool &DevirtualizedCall); 110 bool RefreshCallGraph(const CallGraphSCC &CurSCC, CallGraph &CG, 111 bool IsCheckingMode); 112 }; 113 114 } // end anonymous namespace. 115 116 char CGPassManager::ID = 0; 117 118 bool CGPassManager::RunPassOnSCC(Pass *P, CallGraphSCC &CurSCC, 119 CallGraph &CG, bool &CallGraphUpToDate, 120 bool &DevirtualizedCall) { 121 bool Changed = false; 122 PMDataManager *PM = P->getAsPMDataManager(); 123 Module &M = CG.getModule(); 124 125 if (!PM) { 126 CallGraphSCCPass *CGSP = (CallGraphSCCPass *)P; 127 if (!CallGraphUpToDate) { 128 DevirtualizedCall |= RefreshCallGraph(CurSCC, CG, false); 129 CallGraphUpToDate = true; 130 } 131 132 { 133 unsigned InstrCount, SCCCount = 0; 134 StringMap<std::pair<unsigned, unsigned>> FunctionToInstrCount; 135 bool EmitICRemark = M.shouldEmitInstrCountChangedRemark(); 136 TimeRegion PassTimer(getPassTimer(CGSP)); 137 if (EmitICRemark) 138 InstrCount = initSizeRemarkInfo(M, FunctionToInstrCount); 139 Changed = CGSP->runOnSCC(CurSCC); 140 141 if (EmitICRemark) { 142 // FIXME: Add getInstructionCount to CallGraphSCC. 143 SCCCount = M.getInstructionCount(); 144 // Is there a difference in the number of instructions in the module? 145 if (SCCCount != InstrCount) { 146 // Yep. Emit a remark and update InstrCount. 147 int64_t Delta = 148 static_cast<int64_t>(SCCCount) - static_cast<int64_t>(InstrCount); 149 emitInstrCountChangedRemark(P, M, Delta, InstrCount, 150 FunctionToInstrCount); 151 InstrCount = SCCCount; 152 } 153 } 154 } 155 156 // After the CGSCCPass is done, when assertions are enabled, use 157 // RefreshCallGraph to verify that the callgraph was correctly updated. 158 #ifndef NDEBUG 159 if (Changed) 160 RefreshCallGraph(CurSCC, CG, true); 161 #endif 162 163 return Changed; 164 } 165 166 assert(PM->getPassManagerType() == PMT_FunctionPassManager && 167 "Invalid CGPassManager member"); 168 FPPassManager *FPP = (FPPassManager*)P; 169 170 // Run pass P on all functions in the current SCC. 171 for (CallGraphNode *CGN : CurSCC) { 172 if (Function *F = CGN->getFunction()) { 173 dumpPassInfo(P, EXECUTION_MSG, ON_FUNCTION_MSG, F->getName()); 174 { 175 TimeRegion PassTimer(getPassTimer(FPP)); 176 Changed |= FPP->runOnFunction(*F); 177 } 178 F->getContext().yield(); 179 } 180 } 181 182 // The function pass(es) modified the IR, they may have clobbered the 183 // callgraph. 184 if (Changed && CallGraphUpToDate) { 185 LLVM_DEBUG(dbgs() << "CGSCCPASSMGR: Pass Dirtied SCC: " << P->getPassName() 186 << '\n'); 187 CallGraphUpToDate = false; 188 } 189 return Changed; 190 } 191 192 /// Scan the functions in the specified CFG and resync the 193 /// callgraph with the call sites found in it. This is used after 194 /// FunctionPasses have potentially munged the callgraph, and can be used after 195 /// CallGraphSCC passes to verify that they correctly updated the callgraph. 196 /// 197 /// This function returns true if it devirtualized an existing function call, 198 /// meaning it turned an indirect call into a direct call. This happens when 199 /// a function pass like GVN optimizes away stuff feeding the indirect call. 200 /// This never happens in checking mode. 201 bool CGPassManager::RefreshCallGraph(const CallGraphSCC &CurSCC, CallGraph &CG, 202 bool CheckingMode) { 203 DenseMap<Value *, CallGraphNode *> Calls; 204 205 LLVM_DEBUG(dbgs() << "CGSCCPASSMGR: Refreshing SCC with " << CurSCC.size() 206 << " nodes:\n"; 207 for (CallGraphNode *CGN 208 : CurSCC) CGN->dump();); 209 210 bool MadeChange = false; 211 bool DevirtualizedCall = false; 212 213 // Scan all functions in the SCC. 214 unsigned FunctionNo = 0; 215 for (CallGraphSCC::iterator SCCIdx = CurSCC.begin(), E = CurSCC.end(); 216 SCCIdx != E; ++SCCIdx, ++FunctionNo) { 217 CallGraphNode *CGN = *SCCIdx; 218 Function *F = CGN->getFunction(); 219 if (!F || F->isDeclaration()) continue; 220 221 // Walk the function body looking for call sites. Sync up the call sites in 222 // CGN with those actually in the function. 223 224 // Keep track of the number of direct and indirect calls that were 225 // invalidated and removed. 226 unsigned NumDirectRemoved = 0, NumIndirectRemoved = 0; 227 228 // Get the set of call sites currently in the function. 229 for (CallGraphNode::iterator I = CGN->begin(), E = CGN->end(); I != E; ) { 230 // If this call site is null, then the function pass deleted the call 231 // entirely and the WeakTrackingVH nulled it out. 232 auto *Call = dyn_cast_or_null<CallBase>(I->first); 233 if (!Call || 234 // If we've already seen this call site, then the FunctionPass RAUW'd 235 // one call with another, which resulted in two "uses" in the edge 236 // list of the same call. 237 Calls.count(Call) || 238 239 // If the call edge is not from a call or invoke, or it is a 240 // instrinsic call, then the function pass RAUW'd a call with 241 // another value. This can happen when constant folding happens 242 // of well known functions etc. 243 (Call->getCalledFunction() && 244 Call->getCalledFunction()->isIntrinsic() && 245 Intrinsic::isLeaf(Call->getCalledFunction()->getIntrinsicID()))) { 246 assert(!CheckingMode && 247 "CallGraphSCCPass did not update the CallGraph correctly!"); 248 249 // If this was an indirect call site, count it. 250 if (!I->second->getFunction()) 251 ++NumIndirectRemoved; 252 else 253 ++NumDirectRemoved; 254 255 // Just remove the edge from the set of callees, keep track of whether 256 // I points to the last element of the vector. 257 bool WasLast = I + 1 == E; 258 CGN->removeCallEdge(I); 259 260 // If I pointed to the last element of the vector, we have to bail out: 261 // iterator checking rejects comparisons of the resultant pointer with 262 // end. 263 if (WasLast) 264 break; 265 E = CGN->end(); 266 continue; 267 } 268 269 assert(!Calls.count(Call) && "Call site occurs in node multiple times"); 270 271 if (Call) { 272 Function *Callee = Call->getCalledFunction(); 273 // Ignore intrinsics because they're not really function calls. 274 if (!Callee || !(Callee->isIntrinsic())) 275 Calls.insert(std::make_pair(Call, I->second)); 276 } 277 ++I; 278 } 279 280 // Loop over all of the instructions in the function, getting the callsites. 281 // Keep track of the number of direct/indirect calls added. 282 unsigned NumDirectAdded = 0, NumIndirectAdded = 0; 283 284 for (BasicBlock &BB : *F) 285 for (Instruction &I : BB) { 286 auto *Call = dyn_cast<CallBase>(&I); 287 if (!Call) 288 continue; 289 Function *Callee = Call->getCalledFunction(); 290 if (Callee && Callee->isIntrinsic()) 291 continue; 292 293 // If this call site already existed in the callgraph, just verify it 294 // matches up to expectations and remove it from Calls. 295 DenseMap<Value *, CallGraphNode *>::iterator ExistingIt = 296 Calls.find(Call); 297 if (ExistingIt != Calls.end()) { 298 CallGraphNode *ExistingNode = ExistingIt->second; 299 300 // Remove from Calls since we have now seen it. 301 Calls.erase(ExistingIt); 302 303 // Verify that the callee is right. 304 if (ExistingNode->getFunction() == Call->getCalledFunction()) 305 continue; 306 307 // If we are in checking mode, we are not allowed to actually mutate 308 // the callgraph. If this is a case where we can infer that the 309 // callgraph is less precise than it could be (e.g. an indirect call 310 // site could be turned direct), don't reject it in checking mode, and 311 // don't tweak it to be more precise. 312 if (CheckingMode && Call->getCalledFunction() && 313 ExistingNode->getFunction() == nullptr) 314 continue; 315 316 assert(!CheckingMode && 317 "CallGraphSCCPass did not update the CallGraph correctly!"); 318 319 // If not, we either went from a direct call to indirect, indirect to 320 // direct, or direct to different direct. 321 CallGraphNode *CalleeNode; 322 if (Function *Callee = Call->getCalledFunction()) { 323 CalleeNode = CG.getOrInsertFunction(Callee); 324 // Keep track of whether we turned an indirect call into a direct 325 // one. 326 if (!ExistingNode->getFunction()) { 327 DevirtualizedCall = true; 328 LLVM_DEBUG(dbgs() << " CGSCCPASSMGR: Devirtualized call to '" 329 << Callee->getName() << "'\n"); 330 } 331 } else { 332 CalleeNode = CG.getCallsExternalNode(); 333 } 334 335 // Update the edge target in CGN. 336 CGN->replaceCallEdge(*Call, *Call, CalleeNode); 337 MadeChange = true; 338 continue; 339 } 340 341 assert(!CheckingMode && 342 "CallGraphSCCPass did not update the CallGraph correctly!"); 343 344 // If the call site didn't exist in the CGN yet, add it. 345 CallGraphNode *CalleeNode; 346 if (Function *Callee = Call->getCalledFunction()) { 347 CalleeNode = CG.getOrInsertFunction(Callee); 348 ++NumDirectAdded; 349 } else { 350 CalleeNode = CG.getCallsExternalNode(); 351 ++NumIndirectAdded; 352 } 353 354 CGN->addCalledFunction(Call, CalleeNode); 355 MadeChange = true; 356 } 357 358 // We scanned the old callgraph node, removing invalidated call sites and 359 // then added back newly found call sites. One thing that can happen is 360 // that an old indirect call site was deleted and replaced with a new direct 361 // call. In this case, we have devirtualized a call, and CGSCCPM would like 362 // to iteratively optimize the new code. Unfortunately, we don't really 363 // have a great way to detect when this happens. As an approximation, we 364 // just look at whether the number of indirect calls is reduced and the 365 // number of direct calls is increased. There are tons of ways to fool this 366 // (e.g. DCE'ing an indirect call and duplicating an unrelated block with a 367 // direct call) but this is close enough. 368 if (NumIndirectRemoved > NumIndirectAdded && 369 NumDirectRemoved < NumDirectAdded) 370 DevirtualizedCall = true; 371 372 // After scanning this function, if we still have entries in callsites, then 373 // they are dangling pointers. WeakTrackingVH should save us for this, so 374 // abort if 375 // this happens. 376 assert(Calls.empty() && "Dangling pointers found in call sites map"); 377 378 // Periodically do an explicit clear to remove tombstones when processing 379 // large scc's. 380 if ((FunctionNo & 15) == 15) 381 Calls.clear(); 382 } 383 384 LLVM_DEBUG(if (MadeChange) { 385 dbgs() << "CGSCCPASSMGR: Refreshed SCC is now:\n"; 386 for (CallGraphNode *CGN : CurSCC) 387 CGN->dump(); 388 if (DevirtualizedCall) 389 dbgs() << "CGSCCPASSMGR: Refresh devirtualized a call!\n"; 390 } else { 391 dbgs() << "CGSCCPASSMGR: SCC Refresh didn't change call graph.\n"; 392 }); 393 (void)MadeChange; 394 395 return DevirtualizedCall; 396 } 397 398 /// Execute the body of the entire pass manager on the specified SCC. 399 /// This keeps track of whether a function pass devirtualizes 400 /// any calls and returns it in DevirtualizedCall. 401 bool CGPassManager::RunAllPassesOnSCC(CallGraphSCC &CurSCC, CallGraph &CG, 402 bool &DevirtualizedCall) { 403 bool Changed = false; 404 405 // Keep track of whether the callgraph is known to be up-to-date or not. 406 // The CGSSC pass manager runs two types of passes: 407 // CallGraphSCC Passes and other random function passes. Because other 408 // random function passes are not CallGraph aware, they may clobber the 409 // call graph by introducing new calls or deleting other ones. This flag 410 // is set to false when we run a function pass so that we know to clean up 411 // the callgraph when we need to run a CGSCCPass again. 412 bool CallGraphUpToDate = true; 413 414 // Run all passes on current SCC. 415 for (unsigned PassNo = 0, e = getNumContainedPasses(); 416 PassNo != e; ++PassNo) { 417 Pass *P = getContainedPass(PassNo); 418 419 // If we're in -debug-pass=Executions mode, construct the SCC node list, 420 // otherwise avoid constructing this string as it is expensive. 421 if (isPassDebuggingExecutionsOrMore()) { 422 std::string Functions; 423 #ifndef NDEBUG 424 raw_string_ostream OS(Functions); 425 for (CallGraphSCC::iterator I = CurSCC.begin(), E = CurSCC.end(); 426 I != E; ++I) { 427 if (I != CurSCC.begin()) OS << ", "; 428 (*I)->print(OS); 429 } 430 OS.flush(); 431 #endif 432 dumpPassInfo(P, EXECUTION_MSG, ON_CG_MSG, Functions); 433 } 434 dumpRequiredSet(P); 435 436 initializeAnalysisImpl(P); 437 438 // Actually run this pass on the current SCC. 439 Changed |= RunPassOnSCC(P, CurSCC, CG, 440 CallGraphUpToDate, DevirtualizedCall); 441 442 if (Changed) 443 dumpPassInfo(P, MODIFICATION_MSG, ON_CG_MSG, ""); 444 dumpPreservedSet(P); 445 446 verifyPreservedAnalysis(P); 447 removeNotPreservedAnalysis(P); 448 recordAvailableAnalysis(P); 449 removeDeadPasses(P, "", ON_CG_MSG); 450 } 451 452 // If the callgraph was left out of date (because the last pass run was a 453 // functionpass), refresh it before we move on to the next SCC. 454 if (!CallGraphUpToDate) 455 DevirtualizedCall |= RefreshCallGraph(CurSCC, CG, false); 456 return Changed; 457 } 458 459 /// Execute all of the passes scheduled for execution. Keep track of 460 /// whether any of the passes modifies the module, and if so, return true. 461 bool CGPassManager::runOnModule(Module &M) { 462 CallGraph &CG = getAnalysis<CallGraphWrapperPass>().getCallGraph(); 463 bool Changed = doInitialization(CG); 464 465 // Walk the callgraph in bottom-up SCC order. 466 scc_iterator<CallGraph*> CGI = scc_begin(&CG); 467 468 CallGraphSCC CurSCC(CG, &CGI); 469 while (!CGI.isAtEnd()) { 470 // Copy the current SCC and increment past it so that the pass can hack 471 // on the SCC if it wants to without invalidating our iterator. 472 const std::vector<CallGraphNode *> &NodeVec = *CGI; 473 CurSCC.initialize(NodeVec); 474 ++CGI; 475 476 // At the top level, we run all the passes in this pass manager on the 477 // functions in this SCC. However, we support iterative compilation in the 478 // case where a function pass devirtualizes a call to a function. For 479 // example, it is very common for a function pass (often GVN or instcombine) 480 // to eliminate the addressing that feeds into a call. With that improved 481 // information, we would like the call to be an inline candidate, infer 482 // mod-ref information etc. 483 // 484 // Because of this, we allow iteration up to a specified iteration count. 485 // This only happens in the case of a devirtualized call, so we only burn 486 // compile time in the case that we're making progress. We also have a hard 487 // iteration count limit in case there is crazy code. 488 unsigned Iteration = 0; 489 bool DevirtualizedCall = false; 490 do { 491 LLVM_DEBUG(if (Iteration) dbgs() 492 << " SCCPASSMGR: Re-visiting SCC, iteration #" << Iteration 493 << '\n'); 494 DevirtualizedCall = false; 495 Changed |= RunAllPassesOnSCC(CurSCC, CG, DevirtualizedCall); 496 } while (Iteration++ < MaxIterations && DevirtualizedCall); 497 498 if (DevirtualizedCall) 499 LLVM_DEBUG(dbgs() << " CGSCCPASSMGR: Stopped iteration after " 500 << Iteration 501 << " times, due to -max-cg-scc-iterations\n"); 502 503 MaxSCCIterations.updateMax(Iteration); 504 } 505 Changed |= doFinalization(CG); 506 return Changed; 507 } 508 509 /// Initialize CG 510 bool CGPassManager::doInitialization(CallGraph &CG) { 511 bool Changed = false; 512 for (unsigned i = 0, e = getNumContainedPasses(); i != e; ++i) { 513 if (PMDataManager *PM = getContainedPass(i)->getAsPMDataManager()) { 514 assert(PM->getPassManagerType() == PMT_FunctionPassManager && 515 "Invalid CGPassManager member"); 516 Changed |= ((FPPassManager*)PM)->doInitialization(CG.getModule()); 517 } else { 518 Changed |= ((CallGraphSCCPass*)getContainedPass(i))->doInitialization(CG); 519 } 520 } 521 return Changed; 522 } 523 524 /// Finalize CG 525 bool CGPassManager::doFinalization(CallGraph &CG) { 526 bool Changed = false; 527 for (unsigned i = 0, e = getNumContainedPasses(); i != e; ++i) { 528 if (PMDataManager *PM = getContainedPass(i)->getAsPMDataManager()) { 529 assert(PM->getPassManagerType() == PMT_FunctionPassManager && 530 "Invalid CGPassManager member"); 531 Changed |= ((FPPassManager*)PM)->doFinalization(CG.getModule()); 532 } else { 533 Changed |= ((CallGraphSCCPass*)getContainedPass(i))->doFinalization(CG); 534 } 535 } 536 return Changed; 537 } 538 539 //===----------------------------------------------------------------------===// 540 // CallGraphSCC Implementation 541 //===----------------------------------------------------------------------===// 542 543 /// This informs the SCC and the pass manager that the specified 544 /// Old node has been deleted, and New is to be used in its place. 545 void CallGraphSCC::ReplaceNode(CallGraphNode *Old, CallGraphNode *New) { 546 assert(Old != New && "Should not replace node with self"); 547 for (unsigned i = 0; ; ++i) { 548 assert(i != Nodes.size() && "Node not in SCC"); 549 if (Nodes[i] != Old) continue; 550 if (New) 551 Nodes[i] = New; 552 else 553 Nodes.erase(Nodes.begin() + i); 554 break; 555 } 556 557 // Update the active scc_iterator so that it doesn't contain dangling 558 // pointers to the old CallGraphNode. 559 scc_iterator<CallGraph*> *CGI = (scc_iterator<CallGraph*>*)Context; 560 CGI->ReplaceNode(Old, New); 561 } 562 563 void CallGraphSCC::DeleteNode(CallGraphNode *Old) { 564 ReplaceNode(Old, /*New=*/nullptr); 565 } 566 567 //===----------------------------------------------------------------------===// 568 // CallGraphSCCPass Implementation 569 //===----------------------------------------------------------------------===// 570 571 /// Assign pass manager to manage this pass. 572 void CallGraphSCCPass::assignPassManager(PMStack &PMS, 573 PassManagerType PreferredType) { 574 // Find CGPassManager 575 while (!PMS.empty() && 576 PMS.top()->getPassManagerType() > PMT_CallGraphPassManager) 577 PMS.pop(); 578 579 assert(!PMS.empty() && "Unable to handle Call Graph Pass"); 580 CGPassManager *CGP; 581 582 if (PMS.top()->getPassManagerType() == PMT_CallGraphPassManager) 583 CGP = (CGPassManager*)PMS.top(); 584 else { 585 // Create new Call Graph SCC Pass Manager if it does not exist. 586 assert(!PMS.empty() && "Unable to create Call Graph Pass Manager"); 587 PMDataManager *PMD = PMS.top(); 588 589 // [1] Create new Call Graph Pass Manager 590 CGP = new CGPassManager(); 591 592 // [2] Set up new manager's top level manager 593 PMTopLevelManager *TPM = PMD->getTopLevelManager(); 594 TPM->addIndirectPassManager(CGP); 595 596 // [3] Assign manager to manage this new manager. This may create 597 // and push new managers into PMS 598 Pass *P = CGP; 599 TPM->schedulePass(P); 600 601 // [4] Push new manager into PMS 602 PMS.push(CGP); 603 } 604 605 CGP->add(this); 606 } 607 608 /// For this class, we declare that we require and preserve the call graph. 609 /// If the derived class implements this method, it should 610 /// always explicitly call the implementation here. 611 void CallGraphSCCPass::getAnalysisUsage(AnalysisUsage &AU) const { 612 AU.addRequired<CallGraphWrapperPass>(); 613 AU.addPreserved<CallGraphWrapperPass>(); 614 } 615 616 //===----------------------------------------------------------------------===// 617 // PrintCallGraphPass Implementation 618 //===----------------------------------------------------------------------===// 619 620 namespace { 621 622 /// PrintCallGraphPass - Print a Module corresponding to a call graph. 623 /// 624 class PrintCallGraphPass : public CallGraphSCCPass { 625 std::string Banner; 626 raw_ostream &OS; // raw_ostream to print on. 627 628 public: 629 static char ID; 630 631 PrintCallGraphPass(const std::string &B, raw_ostream &OS) 632 : CallGraphSCCPass(ID), Banner(B), OS(OS) {} 633 634 void getAnalysisUsage(AnalysisUsage &AU) const override { 635 AU.setPreservesAll(); 636 } 637 638 bool runOnSCC(CallGraphSCC &SCC) override { 639 bool BannerPrinted = false; 640 auto PrintBannerOnce = [&]() { 641 if (BannerPrinted) 642 return; 643 OS << Banner; 644 BannerPrinted = true; 645 }; 646 647 bool NeedModule = llvm::forcePrintModuleIR(); 648 if (isFunctionInPrintList("*") && NeedModule) { 649 PrintBannerOnce(); 650 OS << "\n"; 651 SCC.getCallGraph().getModule().print(OS, nullptr); 652 return false; 653 } 654 bool FoundFunction = false; 655 for (CallGraphNode *CGN : SCC) { 656 if (Function *F = CGN->getFunction()) { 657 if (!F->isDeclaration() && isFunctionInPrintList(F->getName())) { 658 FoundFunction = true; 659 if (!NeedModule) { 660 PrintBannerOnce(); 661 F->print(OS); 662 } 663 } 664 } else if (isFunctionInPrintList("*")) { 665 PrintBannerOnce(); 666 OS << "\nPrinting <null> Function\n"; 667 } 668 } 669 if (NeedModule && FoundFunction) { 670 PrintBannerOnce(); 671 OS << "\n"; 672 SCC.getCallGraph().getModule().print(OS, nullptr); 673 } 674 return false; 675 } 676 677 StringRef getPassName() const override { return "Print CallGraph IR"; } 678 }; 679 680 } // end anonymous namespace. 681 682 char PrintCallGraphPass::ID = 0; 683 684 Pass *CallGraphSCCPass::createPrinterPass(raw_ostream &OS, 685 const std::string &Banner) const { 686 return new PrintCallGraphPass(Banner, OS); 687 } 688 689 static std::string getDescription(const CallGraphSCC &SCC) { 690 std::string Desc = "SCC ("; 691 bool First = true; 692 for (CallGraphNode *CGN : SCC) { 693 if (First) 694 First = false; 695 else 696 Desc += ", "; 697 Function *F = CGN->getFunction(); 698 if (F) 699 Desc += F->getName(); 700 else 701 Desc += "<<null function>>"; 702 } 703 Desc += ")"; 704 return Desc; 705 } 706 707 bool CallGraphSCCPass::skipSCC(CallGraphSCC &SCC) const { 708 OptPassGate &Gate = 709 SCC.getCallGraph().getModule().getContext().getOptPassGate(); 710 return Gate.isEnabled() && !Gate.shouldRunPass(this, getDescription(SCC)); 711 } 712 713 char DummyCGSCCPass::ID = 0; 714 715 INITIALIZE_PASS(DummyCGSCCPass, "DummyCGSCCPass", "DummyCGSCCPass", false, 716 false) 717