Chris Lattner | 4a81067 | 2003-08-31 01:54:59 +0000 | [diff] [blame] | 1 | //===- CallGraphSCCPass.cpp - Pass that operates BU on call graph ---------===// |
Misha Brukman | 2b37d7c | 2005-04-21 21:13:18 +0000 | [diff] [blame] | 2 | // |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Misha Brukman | 2b37d7c | 2005-04-21 21:13:18 +0000 | [diff] [blame] | 7 | // |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Chris Lattner | 4a81067 | 2003-08-31 01:54:59 +0000 | [diff] [blame] | 9 | // |
| 10 | // This file implements the CallGraphSCCPass class, which is used for passes |
| 11 | // which are implemented as bottom-up traversals on the call graph. Because |
| 12 | // there may be cycles in the call graph, passes of this type operate on the |
| 13 | // call-graph in SCC order: that is, they process function bottom-up, except for |
| 14 | // recursive functions, which they process all at once. |
| 15 | // |
| 16 | //===----------------------------------------------------------------------===// |
| 17 | |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 18 | #define DEBUG_TYPE "cgscc-passmgr" |
Chris Lattner | 4a81067 | 2003-08-31 01:54:59 +0000 | [diff] [blame] | 19 | #include "llvm/CallGraphSCCPass.h" |
Chris Lattner | a782e75 | 2010-03-30 04:03:22 +0000 | [diff] [blame] | 20 | #include "llvm/IntrinsicInst.h" |
| 21 | #include "llvm/Function.h" |
| 22 | #include "llvm/PassManagers.h" |
Chris Lattner | 4a81067 | 2003-08-31 01:54:59 +0000 | [diff] [blame] | 23 | #include "llvm/Analysis/CallGraph.h" |
Reid Spencer | 551ccae | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 24 | #include "llvm/ADT/SCCIterator.h" |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 25 | #include "llvm/Support/Debug.h" |
Chris Lattner | a782e75 | 2010-03-30 04:03:22 +0000 | [diff] [blame] | 26 | #include "llvm/Support/Timer.h" |
Chris Lattner | 45cfe54 | 2009-08-23 06:03:38 +0000 | [diff] [blame] | 27 | #include "llvm/Support/raw_ostream.h" |
Chris Lattner | a10df50 | 2004-04-20 21:30:06 +0000 | [diff] [blame] | 28 | using namespace llvm; |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 29 | |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 30 | //===----------------------------------------------------------------------===// |
| 31 | // CGPassManager |
| 32 | // |
Dale Johannesen | db2659b | 2009-09-10 22:01:32 +0000 | [diff] [blame] | 33 | /// CGPassManager manages FPPassManagers and CallGraphSCCPasses. |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 34 | |
Dan Gohman | 844731a | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 35 | namespace { |
| 36 | |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 37 | class CGPassManager : public ModulePass, public PMDataManager { |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 38 | public: |
Devang Patel | 1997473 | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 39 | static char ID; |
Dan Gohman | c2bbfc1 | 2007-08-01 15:32:29 +0000 | [diff] [blame] | 40 | explicit CGPassManager(int Depth) |
Dan Gohman | ae73dc1 | 2008-09-04 17:05:41 +0000 | [diff] [blame] | 41 | : ModulePass(&ID), PMDataManager(Depth) { } |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 42 | |
| 43 | /// run - Execute all of the passes scheduled for execution. Keep track of |
| 44 | /// whether any of the passes modifies the module, and if so, return true. |
| 45 | bool runOnModule(Module &M); |
| 46 | |
Bill Wendling | 905c7e9 | 2009-02-11 18:19:24 +0000 | [diff] [blame] | 47 | bool doInitialization(CallGraph &CG); |
| 48 | bool doFinalization(CallGraph &CG); |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 49 | |
| 50 | /// Pass Manager itself does not invalidate any analysis info. |
| 51 | void getAnalysisUsage(AnalysisUsage &Info) const { |
| 52 | // CGPassManager walks SCC and it needs CallGraph. |
| 53 | Info.addRequired<CallGraph>(); |
| 54 | Info.setPreservesAll(); |
| 55 | } |
| 56 | |
Devang Patel | 505f36a | 2007-02-01 22:09:37 +0000 | [diff] [blame] | 57 | virtual const char *getPassName() const { |
| 58 | return "CallGraph Pass Manager"; |
| 59 | } |
| 60 | |
Chris Lattner | 3660eca | 2010-01-22 05:24:46 +0000 | [diff] [blame] | 61 | virtual PMDataManager *getAsPMDataManager() { return this; } |
| 62 | virtual Pass *getAsPass() { return this; } |
| 63 | |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 64 | // Print passes managed by this manager |
| 65 | void dumpPassStructure(unsigned Offset) { |
David Greene | 2e48e53 | 2009-12-23 23:09:39 +0000 | [diff] [blame] | 66 | errs().indent(Offset*2) << "Call Graph SCC Pass Manager\n"; |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 67 | for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) { |
| 68 | Pass *P = getContainedPass(Index); |
| 69 | P->dumpPassStructure(Offset + 1); |
| 70 | dumpLastUses(P, Offset+1); |
| 71 | } |
| 72 | } |
| 73 | |
| 74 | Pass *getContainedPass(unsigned N) { |
Chris Lattner | 45cfe54 | 2009-08-23 06:03:38 +0000 | [diff] [blame] | 75 | assert(N < PassVector.size() && "Pass number out of range!"); |
| 76 | return static_cast<Pass *>(PassVector[N]); |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 77 | } |
| 78 | |
Devang Patel | 84da80d | 2007-02-27 15:00:39 +0000 | [diff] [blame] | 79 | virtual PassManagerType getPassManagerType() const { |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 80 | return PMT_CallGraphPassManager; |
| 81 | } |
Chris Lattner | f3a1c15 | 2009-08-31 06:01:21 +0000 | [diff] [blame] | 82 | |
| 83 | private: |
Chris Lattner | 2decb22 | 2010-04-16 22:42:17 +0000 | [diff] [blame^] | 84 | bool RunPassOnSCC(Pass *P, CallGraphSCC &CurSCC, |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 85 | CallGraph &CG, bool &CallGraphUpToDate); |
Chris Lattner | 2decb22 | 2010-04-16 22:42:17 +0000 | [diff] [blame^] | 86 | void RefreshCallGraph(CallGraphSCC &CurSCC, CallGraph &CG, |
Chris Lattner | 5a6a363 | 2009-09-01 18:32:03 +0000 | [diff] [blame] | 87 | bool IsCheckingMode); |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 88 | }; |
| 89 | |
Chris Lattner | f3a1c15 | 2009-08-31 06:01:21 +0000 | [diff] [blame] | 90 | } // end anonymous namespace. |
Dan Gohman | 844731a | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 91 | |
Devang Patel | 1997473 | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 92 | char CGPassManager::ID = 0; |
Chris Lattner | f3a1c15 | 2009-08-31 06:01:21 +0000 | [diff] [blame] | 93 | |
David Greene | 5c8aa95 | 2010-04-02 23:17:14 +0000 | [diff] [blame] | 94 | |
Chris Lattner | 2decb22 | 2010-04-16 22:42:17 +0000 | [diff] [blame^] | 95 | bool CGPassManager::RunPassOnSCC(Pass *P, CallGraphSCC &CurSCC, |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 96 | CallGraph &CG, bool &CallGraphUpToDate) { |
Chris Lattner | f3a1c15 | 2009-08-31 06:01:21 +0000 | [diff] [blame] | 97 | bool Changed = false; |
Chris Lattner | 5a66cb9 | 2010-01-22 05:46:59 +0000 | [diff] [blame] | 98 | PMDataManager *PM = P->getAsPMDataManager(); |
| 99 | |
| 100 | if (PM == 0) { |
| 101 | CallGraphSCCPass *CGSP = (CallGraphSCCPass*)P; |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 102 | if (!CallGraphUpToDate) { |
Chris Lattner | 5a6a363 | 2009-09-01 18:32:03 +0000 | [diff] [blame] | 103 | RefreshCallGraph(CurSCC, CG, false); |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 104 | CallGraphUpToDate = true; |
| 105 | } |
Chris Lattner | 44a1837 | 2009-09-01 20:33:43 +0000 | [diff] [blame] | 106 | |
Chris Lattner | a782e75 | 2010-03-30 04:03:22 +0000 | [diff] [blame] | 107 | { |
| 108 | TimeRegion PassTimer(getPassTimer(CGSP)); |
| 109 | Changed = CGSP->runOnSCC(CurSCC); |
| 110 | } |
Chris Lattner | 5a6a363 | 2009-09-01 18:32:03 +0000 | [diff] [blame] | 111 | |
| 112 | // After the CGSCCPass is done, when assertions are enabled, use |
| 113 | // RefreshCallGraph to verify that the callgraph was correctly updated. |
| 114 | #ifndef NDEBUG |
| 115 | if (Changed) |
| 116 | RefreshCallGraph(CurSCC, CG, true); |
| 117 | #endif |
| 118 | |
Chris Lattner | f3a1c15 | 2009-08-31 06:01:21 +0000 | [diff] [blame] | 119 | return Changed; |
| 120 | } |
| 121 | |
Chris Lattner | 5a66cb9 | 2010-01-22 05:46:59 +0000 | [diff] [blame] | 122 | |
| 123 | assert(PM->getPassManagerType() == PMT_FunctionPassManager && |
| 124 | "Invalid CGPassManager member"); |
| 125 | FPPassManager *FPP = (FPPassManager*)P; |
Chris Lattner | f3a1c15 | 2009-08-31 06:01:21 +0000 | [diff] [blame] | 126 | |
| 127 | // Run pass P on all functions in the current SCC. |
Chris Lattner | 2decb22 | 2010-04-16 22:42:17 +0000 | [diff] [blame^] | 128 | for (CallGraphSCC::iterator I = CurSCC.begin(), E = CurSCC.end(); |
| 129 | I != E; ++I) { |
| 130 | if (Function *F = (*I)->getFunction()) { |
Chris Lattner | f3a1c15 | 2009-08-31 06:01:21 +0000 | [diff] [blame] | 131 | dumpPassInfo(P, EXECUTION_MSG, ON_FUNCTION_MSG, F->getName()); |
Chris Lattner | a782e75 | 2010-03-30 04:03:22 +0000 | [diff] [blame] | 132 | TimeRegion PassTimer(getPassTimer(FPP)); |
Chris Lattner | f3a1c15 | 2009-08-31 06:01:21 +0000 | [diff] [blame] | 133 | Changed |= FPP->runOnFunction(*F); |
| 134 | } |
| 135 | } |
Chris Lattner | f3a1c15 | 2009-08-31 06:01:21 +0000 | [diff] [blame] | 136 | |
Chris Lattner | 2038cf3 | 2009-08-31 17:08:30 +0000 | [diff] [blame] | 137 | // The function pass(es) modified the IR, they may have clobbered the |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 138 | // callgraph. |
| 139 | if (Changed && CallGraphUpToDate) { |
David Greene | c81ce58 | 2009-12-23 20:10:59 +0000 | [diff] [blame] | 140 | DEBUG(dbgs() << "CGSCCPASSMGR: Pass Dirtied SCC: " |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 141 | << P->getPassName() << '\n'); |
| 142 | CallGraphUpToDate = false; |
| 143 | } |
Chris Lattner | f3a1c15 | 2009-08-31 06:01:21 +0000 | [diff] [blame] | 144 | return Changed; |
| 145 | } |
| 146 | |
Chris Lattner | 5a6a363 | 2009-09-01 18:32:03 +0000 | [diff] [blame] | 147 | |
| 148 | /// RefreshCallGraph - Scan the functions in the specified CFG and resync the |
| 149 | /// callgraph with the call sites found in it. This is used after |
| 150 | /// FunctionPasses have potentially munged the callgraph, and can be used after |
| 151 | /// CallGraphSCC passes to verify that they correctly updated the callgraph. |
| 152 | /// |
Chris Lattner | 2decb22 | 2010-04-16 22:42:17 +0000 | [diff] [blame^] | 153 | void CGPassManager::RefreshCallGraph(CallGraphSCC &CurSCC, |
Chris Lattner | 5a6a363 | 2009-09-01 18:32:03 +0000 | [diff] [blame] | 154 | CallGraph &CG, bool CheckingMode) { |
Chris Lattner | a541b0f | 2009-09-01 06:31:31 +0000 | [diff] [blame] | 155 | DenseMap<Value*, CallGraphNode*> CallSites; |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 156 | |
David Greene | c81ce58 | 2009-12-23 20:10:59 +0000 | [diff] [blame] | 157 | DEBUG(dbgs() << "CGSCCPASSMGR: Refreshing SCC with " << CurSCC.size() |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 158 | << " nodes:\n"; |
Chris Lattner | 2decb22 | 2010-04-16 22:42:17 +0000 | [diff] [blame^] | 159 | for (CallGraphSCC::iterator I = CurSCC.begin(), E = CurSCC.end(); |
| 160 | I != E; ++I) |
| 161 | (*I)->dump(); |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 162 | ); |
| 163 | |
| 164 | bool MadeChange = false; |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 165 | |
| 166 | // Scan all functions in the SCC. |
Chris Lattner | 2decb22 | 2010-04-16 22:42:17 +0000 | [diff] [blame^] | 167 | unsigned FunctionNo = 0; |
| 168 | for (CallGraphSCC::iterator SCCIdx = CurSCC.begin(), E = CurSCC.end(); |
| 169 | SCCIdx != E; ++SCCIdx, ++FunctionNo) { |
| 170 | CallGraphNode *CGN = *SCCIdx; |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 171 | Function *F = CGN->getFunction(); |
| 172 | if (F == 0 || F->isDeclaration()) continue; |
| 173 | |
| 174 | // Walk the function body looking for call sites. Sync up the call sites in |
| 175 | // CGN with those actually in the function. |
Chris Lattner | 17146b8 | 2009-09-01 18:13:40 +0000 | [diff] [blame] | 176 | |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 177 | // Get the set of call sites currently in the function. |
Duncan Sands | b3020d7 | 2009-09-02 03:48:41 +0000 | [diff] [blame] | 178 | for (CallGraphNode::iterator I = CGN->begin(), E = CGN->end(); I != E; ) { |
Chris Lattner | a541b0f | 2009-09-01 06:31:31 +0000 | [diff] [blame] | 179 | // If this call site is null, then the function pass deleted the call |
Chris Lattner | 17146b8 | 2009-09-01 18:13:40 +0000 | [diff] [blame] | 180 | // entirely and the WeakVH nulled it out. |
Chris Lattner | a541b0f | 2009-09-01 06:31:31 +0000 | [diff] [blame] | 181 | if (I->first == 0 || |
| 182 | // If we've already seen this call site, then the FunctionPass RAUW'd |
| 183 | // one call with another, which resulted in two "uses" in the edge |
| 184 | // list of the same call. |
| 185 | CallSites.count(I->first) || |
| 186 | |
| 187 | // If the call edge is not from a call or invoke, then the function |
| 188 | // pass RAUW'd a call with another value. This can happen when |
| 189 | // constant folding happens of well known functions etc. |
| 190 | CallSite::get(I->first).getInstruction() == 0) { |
Chris Lattner | 5a6a363 | 2009-09-01 18:32:03 +0000 | [diff] [blame] | 191 | assert(!CheckingMode && |
| 192 | "CallGraphSCCPass did not update the CallGraph correctly!"); |
| 193 | |
Chris Lattner | d3bd082 | 2009-09-02 04:39:04 +0000 | [diff] [blame] | 194 | // Just remove the edge from the set of callees, keep track of whether |
| 195 | // I points to the last element of the vector. |
| 196 | bool WasLast = I + 1 == E; |
Chris Lattner | a541b0f | 2009-09-01 06:31:31 +0000 | [diff] [blame] | 197 | CGN->removeCallEdge(I); |
Chris Lattner | b8bcbd6 | 2009-09-02 04:34:06 +0000 | [diff] [blame] | 198 | |
Chris Lattner | d3bd082 | 2009-09-02 04:39:04 +0000 | [diff] [blame] | 199 | // If I pointed to the last element of the vector, we have to bail out: |
| 200 | // iterator checking rejects comparisons of the resultant pointer with |
| 201 | // end. |
| 202 | if (WasLast) |
| 203 | break; |
Chris Lattner | a541b0f | 2009-09-01 06:31:31 +0000 | [diff] [blame] | 204 | E = CGN->end(); |
Chris Lattner | a541b0f | 2009-09-01 06:31:31 +0000 | [diff] [blame] | 205 | continue; |
| 206 | } |
Chris Lattner | 17146b8 | 2009-09-01 18:13:40 +0000 | [diff] [blame] | 207 | |
Chris Lattner | a541b0f | 2009-09-01 06:31:31 +0000 | [diff] [blame] | 208 | assert(!CallSites.count(I->first) && |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 209 | "Call site occurs in node multiple times"); |
Chris Lattner | a541b0f | 2009-09-01 06:31:31 +0000 | [diff] [blame] | 210 | CallSites.insert(std::make_pair(I->first, I->second)); |
Chris Lattner | 17146b8 | 2009-09-01 18:13:40 +0000 | [diff] [blame] | 211 | ++I; |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 212 | } |
Chris Lattner | 17146b8 | 2009-09-01 18:13:40 +0000 | [diff] [blame] | 213 | |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 214 | // Loop over all of the instructions in the function, getting the callsites. |
| 215 | for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) |
| 216 | for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I) { |
| 217 | CallSite CS = CallSite::get(I); |
Chris Lattner | 8bff7c9 | 2009-09-01 21:37:50 +0000 | [diff] [blame] | 218 | if (!CS.getInstruction() || isa<DbgInfoIntrinsic>(I)) continue; |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 219 | |
| 220 | // If this call site already existed in the callgraph, just verify it |
| 221 | // matches up to expectations and remove it from CallSites. |
Chris Lattner | a541b0f | 2009-09-01 06:31:31 +0000 | [diff] [blame] | 222 | DenseMap<Value*, CallGraphNode*>::iterator ExistingIt = |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 223 | CallSites.find(CS.getInstruction()); |
| 224 | if (ExistingIt != CallSites.end()) { |
| 225 | CallGraphNode *ExistingNode = ExistingIt->second; |
| 226 | |
| 227 | // Remove from CallSites since we have now seen it. |
| 228 | CallSites.erase(ExistingIt); |
| 229 | |
| 230 | // Verify that the callee is right. |
| 231 | if (ExistingNode->getFunction() == CS.getCalledFunction()) |
| 232 | continue; |
| 233 | |
Chris Lattner | 5a6a363 | 2009-09-01 18:32:03 +0000 | [diff] [blame] | 234 | // If we are in checking mode, we are not allowed to actually mutate |
| 235 | // the callgraph. If this is a case where we can infer that the |
| 236 | // callgraph is less precise than it could be (e.g. an indirect call |
| 237 | // site could be turned direct), don't reject it in checking mode, and |
| 238 | // don't tweak it to be more precise. |
| 239 | if (CheckingMode && CS.getCalledFunction() && |
| 240 | ExistingNode->getFunction() == 0) |
| 241 | continue; |
| 242 | |
| 243 | assert(!CheckingMode && |
| 244 | "CallGraphSCCPass did not update the CallGraph correctly!"); |
| 245 | |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 246 | // If not, we either went from a direct call to indirect, indirect to |
| 247 | // direct, or direct to different direct. |
| 248 | CallGraphNode *CalleeNode; |
| 249 | if (Function *Callee = CS.getCalledFunction()) |
| 250 | CalleeNode = CG.getOrInsertFunction(Callee); |
| 251 | else |
| 252 | CalleeNode = CG.getCallsExternalNode(); |
Chris Lattner | 44a1837 | 2009-09-01 20:33:43 +0000 | [diff] [blame] | 253 | |
| 254 | // Update the edge target in CGN. |
| 255 | for (CallGraphNode::iterator I = CGN->begin(); ; ++I) { |
| 256 | assert(I != CGN->end() && "Didn't find call entry"); |
| 257 | if (I->first == CS.getInstruction()) { |
| 258 | I->second = CalleeNode; |
| 259 | break; |
| 260 | } |
| 261 | } |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 262 | MadeChange = true; |
| 263 | continue; |
| 264 | } |
| 265 | |
Chris Lattner | 5a6a363 | 2009-09-01 18:32:03 +0000 | [diff] [blame] | 266 | assert(!CheckingMode && |
| 267 | "CallGraphSCCPass did not update the CallGraph correctly!"); |
| 268 | |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 269 | // If the call site didn't exist in the CGN yet, add it. We assume that |
| 270 | // newly introduced call sites won't be indirect. This could be fixed |
| 271 | // in the future. |
| 272 | CallGraphNode *CalleeNode; |
| 273 | if (Function *Callee = CS.getCalledFunction()) |
| 274 | CalleeNode = CG.getOrInsertFunction(Callee); |
| 275 | else |
| 276 | CalleeNode = CG.getCallsExternalNode(); |
| 277 | |
| 278 | CGN->addCalledFunction(CS, CalleeNode); |
| 279 | MadeChange = true; |
| 280 | } |
| 281 | |
| 282 | // After scanning this function, if we still have entries in callsites, then |
Chris Lattner | a541b0f | 2009-09-01 06:31:31 +0000 | [diff] [blame] | 283 | // they are dangling pointers. WeakVH should save us for this, so abort if |
| 284 | // this happens. |
| 285 | assert(CallSites.empty() && "Dangling pointers found in call sites map"); |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 286 | |
Chris Lattner | a541b0f | 2009-09-01 06:31:31 +0000 | [diff] [blame] | 287 | // Periodically do an explicit clear to remove tombstones when processing |
| 288 | // large scc's. |
Chris Lattner | 2decb22 | 2010-04-16 22:42:17 +0000 | [diff] [blame^] | 289 | if ((FunctionNo & 15) == 15) |
Chris Lattner | a541b0f | 2009-09-01 06:31:31 +0000 | [diff] [blame] | 290 | CallSites.clear(); |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 291 | } |
| 292 | |
| 293 | DEBUG(if (MadeChange) { |
David Greene | c81ce58 | 2009-12-23 20:10:59 +0000 | [diff] [blame] | 294 | dbgs() << "CGSCCPASSMGR: Refreshed SCC is now:\n"; |
Chris Lattner | 2decb22 | 2010-04-16 22:42:17 +0000 | [diff] [blame^] | 295 | for (CallGraphSCC::iterator I = CurSCC.begin(), E = CurSCC.end(); |
| 296 | I != E; ++I) |
| 297 | (*I)->dump(); |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 298 | } else { |
David Greene | c81ce58 | 2009-12-23 20:10:59 +0000 | [diff] [blame] | 299 | dbgs() << "CGSCCPASSMGR: SCC Refresh didn't change call graph.\n"; |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 300 | } |
| 301 | ); |
| 302 | } |
Chris Lattner | f3a1c15 | 2009-08-31 06:01:21 +0000 | [diff] [blame] | 303 | |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 304 | /// run - Execute all of the passes scheduled for execution. Keep track of |
| 305 | /// whether any of the passes modifies the module, and if so, return true. |
| 306 | bool CGPassManager::runOnModule(Module &M) { |
| 307 | CallGraph &CG = getAnalysis<CallGraph>(); |
Bill Wendling | 905c7e9 | 2009-02-11 18:19:24 +0000 | [diff] [blame] | 308 | bool Changed = doInitialization(CG); |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 309 | |
Chris Lattner | 2decb22 | 2010-04-16 22:42:17 +0000 | [diff] [blame^] | 310 | CallGraphSCC CurSCC(this); |
Chris Lattner | 5095e3d | 2009-08-31 00:19:58 +0000 | [diff] [blame] | 311 | |
Chris Lattner | f3a1c15 | 2009-08-31 06:01:21 +0000 | [diff] [blame] | 312 | // Walk the callgraph in bottom-up SCC order. |
Chris Lattner | 5095e3d | 2009-08-31 00:19:58 +0000 | [diff] [blame] | 313 | for (scc_iterator<CallGraph*> CGI = scc_begin(&CG), E = scc_end(&CG); |
| 314 | CGI != E;) { |
| 315 | // Copy the current SCC and increment past it so that the pass can hack |
| 316 | // on the SCC if it wants to without invalidating our iterator. |
Chris Lattner | 2decb22 | 2010-04-16 22:42:17 +0000 | [diff] [blame^] | 317 | std::vector<CallGraphNode*> &NodeVec = *CGI; |
| 318 | CurSCC.initialize(&NodeVec[0], &NodeVec[0]+NodeVec.size()); |
Chris Lattner | 5095e3d | 2009-08-31 00:19:58 +0000 | [diff] [blame] | 319 | ++CGI; |
| 320 | |
Chris Lattner | f3a1c15 | 2009-08-31 06:01:21 +0000 | [diff] [blame] | 321 | |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 322 | // CallGraphUpToDate - Keep track of whether the callgraph is known to be |
| 323 | // up-to-date or not. The CGSSC pass manager runs two types of passes: |
| 324 | // CallGraphSCC Passes and other random function passes. Because other |
| 325 | // random function passes are not CallGraph aware, they may clobber the |
| 326 | // call graph by introducing new calls or deleting other ones. This flag |
| 327 | // is set to false when we run a function pass so that we know to clean up |
| 328 | // the callgraph when we need to run a CGSCCPass again. |
| 329 | bool CallGraphUpToDate = true; |
| 330 | |
Chris Lattner | f3a1c15 | 2009-08-31 06:01:21 +0000 | [diff] [blame] | 331 | // Run all passes on current SCC. |
| 332 | for (unsigned PassNo = 0, e = getNumContainedPasses(); |
| 333 | PassNo != e; ++PassNo) { |
| 334 | Pass *P = getContainedPass(PassNo); |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 335 | |
Chris Lattner | 9554c61 | 2009-09-15 05:03:04 +0000 | [diff] [blame] | 336 | // If we're in -debug-pass=Executions mode, construct the SCC node list, |
| 337 | // otherwise avoid constructing this string as it is expensive. |
| 338 | if (isPassDebuggingExecutionsOrMore()) { |
| 339 | std::string Functions; |
| 340 | #ifndef NDEBUG |
| 341 | raw_string_ostream OS(Functions); |
Chris Lattner | 2decb22 | 2010-04-16 22:42:17 +0000 | [diff] [blame^] | 342 | for (CallGraphSCC::iterator I = CurSCC.begin(), E = CurSCC.end(); |
| 343 | I != E; ++I) { |
| 344 | if (I != CurSCC.begin()) OS << ", "; |
| 345 | (*I)->print(OS); |
Chris Lattner | 9554c61 | 2009-09-15 05:03:04 +0000 | [diff] [blame] | 346 | } |
| 347 | OS.flush(); |
| 348 | #endif |
| 349 | dumpPassInfo(P, EXECUTION_MSG, ON_CG_MSG, Functions); |
| 350 | } |
Chris Lattner | 0dabb7e | 2008-08-08 15:14:09 +0000 | [diff] [blame] | 351 | dumpRequiredSet(P); |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 352 | |
| 353 | initializeAnalysisImpl(P); |
| 354 | |
Chris Lattner | f3a1c15 | 2009-08-31 06:01:21 +0000 | [diff] [blame] | 355 | // Actually run this pass on the current SCC. |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 356 | Changed |= RunPassOnSCC(P, CurSCC, CG, CallGraphUpToDate); |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 357 | |
| 358 | if (Changed) |
Devang Patel | 7f99761 | 2007-03-05 20:01:30 +0000 | [diff] [blame] | 359 | dumpPassInfo(P, MODIFICATION_MSG, ON_CG_MSG, ""); |
Chris Lattner | 0dabb7e | 2008-08-08 15:14:09 +0000 | [diff] [blame] | 360 | dumpPreservedSet(P); |
Devang Patel | 58e0ef1 | 2007-07-19 18:02:32 +0000 | [diff] [blame] | 361 | |
| 362 | verifyPreservedAnalysis(P); |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 363 | removeNotPreservedAnalysis(P); |
| 364 | recordAvailableAnalysis(P); |
Devang Patel | 7f99761 | 2007-03-05 20:01:30 +0000 | [diff] [blame] | 365 | removeDeadPasses(P, "", ON_CG_MSG); |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 366 | } |
Chris Lattner | be57765 | 2009-08-31 07:23:46 +0000 | [diff] [blame] | 367 | |
| 368 | // If the callgraph was left out of date (because the last pass run was a |
| 369 | // functionpass), refresh it before we move on to the next SCC. |
| 370 | if (!CallGraphUpToDate) |
Chris Lattner | 5a6a363 | 2009-09-01 18:32:03 +0000 | [diff] [blame] | 371 | RefreshCallGraph(CurSCC, CG, false); |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 372 | } |
Bill Wendling | 905c7e9 | 2009-02-11 18:19:24 +0000 | [diff] [blame] | 373 | Changed |= doFinalization(CG); |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 374 | return Changed; |
| 375 | } |
| 376 | |
| 377 | /// Initialize CG |
Bill Wendling | 905c7e9 | 2009-02-11 18:19:24 +0000 | [diff] [blame] | 378 | bool CGPassManager::doInitialization(CallGraph &CG) { |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 379 | bool Changed = false; |
Chris Lattner | 5a66cb9 | 2010-01-22 05:46:59 +0000 | [diff] [blame] | 380 | for (unsigned i = 0, e = getNumContainedPasses(); i != e; ++i) { |
| 381 | if (PMDataManager *PM = getContainedPass(i)->getAsPMDataManager()) { |
| 382 | assert(PM->getPassManagerType() == PMT_FunctionPassManager && |
| 383 | "Invalid CGPassManager member"); |
| 384 | Changed |= ((FPPassManager*)PM)->doInitialization(CG.getModule()); |
Nick Lewycky | 8968a07 | 2009-02-13 07:15:53 +0000 | [diff] [blame] | 385 | } else { |
Chris Lattner | 5a66cb9 | 2010-01-22 05:46:59 +0000 | [diff] [blame] | 386 | Changed |= ((CallGraphSCCPass*)getContainedPass(i))->doInitialization(CG); |
Nick Lewycky | 8968a07 | 2009-02-13 07:15:53 +0000 | [diff] [blame] | 387 | } |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 388 | } |
| 389 | return Changed; |
| 390 | } |
| 391 | |
| 392 | /// Finalize CG |
Bill Wendling | 905c7e9 | 2009-02-11 18:19:24 +0000 | [diff] [blame] | 393 | bool CGPassManager::doFinalization(CallGraph &CG) { |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 394 | bool Changed = false; |
Chris Lattner | 5a66cb9 | 2010-01-22 05:46:59 +0000 | [diff] [blame] | 395 | for (unsigned i = 0, e = getNumContainedPasses(); i != e; ++i) { |
| 396 | if (PMDataManager *PM = getContainedPass(i)->getAsPMDataManager()) { |
| 397 | assert(PM->getPassManagerType() == PMT_FunctionPassManager && |
| 398 | "Invalid CGPassManager member"); |
| 399 | Changed |= ((FPPassManager*)PM)->doFinalization(CG.getModule()); |
Nick Lewycky | 8968a07 | 2009-02-13 07:15:53 +0000 | [diff] [blame] | 400 | } else { |
Chris Lattner | 5a66cb9 | 2010-01-22 05:46:59 +0000 | [diff] [blame] | 401 | Changed |= ((CallGraphSCCPass*)getContainedPass(i))->doFinalization(CG); |
Nick Lewycky | 8968a07 | 2009-02-13 07:15:53 +0000 | [diff] [blame] | 402 | } |
Devang Patel | 75f9abf | 2007-01-17 21:45:01 +0000 | [diff] [blame] | 403 | } |
| 404 | return Changed; |
| 405 | } |
| 406 | |
Chris Lattner | c93760c | 2010-04-16 21:43:55 +0000 | [diff] [blame] | 407 | //===----------------------------------------------------------------------===// |
Chris Lattner | 2decb22 | 2010-04-16 22:42:17 +0000 | [diff] [blame^] | 408 | // CallGraphSCC Implementation |
| 409 | //===----------------------------------------------------------------------===// |
| 410 | |
| 411 | |
| 412 | |
| 413 | //===----------------------------------------------------------------------===// |
Chris Lattner | c93760c | 2010-04-16 21:43:55 +0000 | [diff] [blame] | 414 | // CallGraphSCCPass Implementation |
| 415 | //===----------------------------------------------------------------------===// |
David Greene | 5c8aa95 | 2010-04-02 23:17:14 +0000 | [diff] [blame] | 416 | |
Devang Patel | d9f10c3 | 2007-01-23 21:55:17 +0000 | [diff] [blame] | 417 | /// Assign pass manager to manage this pass. |
Devang Patel | 97fd243 | 2007-01-23 21:52:35 +0000 | [diff] [blame] | 418 | void CallGraphSCCPass::assignPassManager(PMStack &PMS, |
Anton Korobeynikov | bed2946 | 2007-04-16 18:10:23 +0000 | [diff] [blame] | 419 | PassManagerType PreferredType) { |
Devang Patel | 97fd243 | 2007-01-23 21:52:35 +0000 | [diff] [blame] | 420 | // Find CGPassManager |
Duncan Sands | 20d824b | 2007-07-19 09:42:01 +0000 | [diff] [blame] | 421 | while (!PMS.empty() && |
| 422 | PMS.top()->getPassManagerType() > PMT_CallGraphPassManager) |
| 423 | PMS.pop(); |
Devang Patel | 97fd243 | 2007-01-23 21:52:35 +0000 | [diff] [blame] | 424 | |
Chris Lattner | 77c95ed | 2010-01-22 05:37:10 +0000 | [diff] [blame] | 425 | assert(!PMS.empty() && "Unable to handle Call Graph Pass"); |
| 426 | CGPassManager *CGP; |
| 427 | |
| 428 | if (PMS.top()->getPassManagerType() == PMT_CallGraphPassManager) |
| 429 | CGP = (CGPassManager*)PMS.top(); |
| 430 | else { |
| 431 | // Create new Call Graph SCC Pass Manager if it does not exist. |
| 432 | assert(!PMS.empty() && "Unable to create Call Graph Pass Manager"); |
Devang Patel | 97fd243 | 2007-01-23 21:52:35 +0000 | [diff] [blame] | 433 | PMDataManager *PMD = PMS.top(); |
| 434 | |
| 435 | // [1] Create new Call Graph Pass Manager |
| 436 | CGP = new CGPassManager(PMD->getDepth() + 1); |
| 437 | |
| 438 | // [2] Set up new manager's top level manager |
| 439 | PMTopLevelManager *TPM = PMD->getTopLevelManager(); |
| 440 | TPM->addIndirectPassManager(CGP); |
| 441 | |
| 442 | // [3] Assign manager to manage this new manager. This may create |
| 443 | // and push new managers into PMS |
Chris Lattner | 77c95ed | 2010-01-22 05:37:10 +0000 | [diff] [blame] | 444 | Pass *P = CGP; |
Devang Patel | 25e681a | 2007-06-21 22:29:02 +0000 | [diff] [blame] | 445 | TPM->schedulePass(P); |
Devang Patel | 97fd243 | 2007-01-23 21:52:35 +0000 | [diff] [blame] | 446 | |
| 447 | // [4] Push new manager into PMS |
| 448 | PMS.push(CGP); |
| 449 | } |
| 450 | |
| 451 | CGP->add(this); |
| 452 | } |
| 453 | |
Chris Lattner | 4a81067 | 2003-08-31 01:54:59 +0000 | [diff] [blame] | 454 | /// getAnalysisUsage - For this class, we declare that we require and preserve |
| 455 | /// the call graph. If the derived class implements this method, it should |
| 456 | /// always explicitly call the implementation here. |
| 457 | void CallGraphSCCPass::getAnalysisUsage(AnalysisUsage &AU) const { |
| 458 | AU.addRequired<CallGraph>(); |
| 459 | AU.addPreserved<CallGraph>(); |
| 460 | } |
Chris Lattner | c93760c | 2010-04-16 21:43:55 +0000 | [diff] [blame] | 461 | |
| 462 | |
| 463 | //===----------------------------------------------------------------------===// |
| 464 | // PrintCallGraphPass Implementation |
| 465 | //===----------------------------------------------------------------------===// |
| 466 | |
| 467 | namespace { |
| 468 | /// PrintCallGraphPass - Print a Module corresponding to a call graph. |
| 469 | /// |
| 470 | class PrintCallGraphPass : public CallGraphSCCPass { |
| 471 | std::string Banner; |
| 472 | raw_ostream &Out; // raw_ostream to print on. |
| 473 | |
| 474 | public: |
| 475 | static char ID; |
| 476 | PrintCallGraphPass() : CallGraphSCCPass(&ID), Out(dbgs()) {} |
| 477 | PrintCallGraphPass(const std::string &B, raw_ostream &o) |
| 478 | : CallGraphSCCPass(&ID), Banner(B), Out(o) {} |
| 479 | |
| 480 | virtual void getAnalysisUsage(AnalysisUsage &AU) const { |
| 481 | AU.setPreservesAll(); |
| 482 | } |
| 483 | |
Chris Lattner | 2decb22 | 2010-04-16 22:42:17 +0000 | [diff] [blame^] | 484 | bool runOnSCC(CallGraphSCC &SCC) { |
Chris Lattner | c93760c | 2010-04-16 21:43:55 +0000 | [diff] [blame] | 485 | Out << Banner; |
Chris Lattner | 2decb22 | 2010-04-16 22:42:17 +0000 | [diff] [blame^] | 486 | for (CallGraphSCC::iterator I = SCC.begin(), E = SCC.end(); I != E; ++I) |
| 487 | (*I)->getFunction()->print(Out); |
Chris Lattner | c93760c | 2010-04-16 21:43:55 +0000 | [diff] [blame] | 488 | return false; |
| 489 | } |
| 490 | }; |
| 491 | |
| 492 | } // end anonymous namespace. |
| 493 | |
| 494 | char PrintCallGraphPass::ID = 0; |
| 495 | |
| 496 | Pass *CallGraphSCCPass::createPrinterPass(raw_ostream &O, |
| 497 | const std::string &Banner) const { |
| 498 | return new PrintCallGraphPass(Banner, O); |
| 499 | } |
| 500 | |