Chris Lattner | 55c1058 | 2002-10-03 20:38:41 +0000 | [diff] [blame] | 1 | //===- BottomUpClosure.cpp - Compute bottom-up interprocedural closure ----===// |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file was developed by the LLVM research group and is distributed under |
| 6 | // the University of Illinois Open Source License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
Chris Lattner | 0d9bab8 | 2002-07-18 00:12:30 +0000 | [diff] [blame] | 9 | // |
| 10 | // This file implements the BUDataStructures class, which represents the |
| 11 | // Bottom-Up Interprocedural closure of the data structure graph over the |
| 12 | // program. This is useful for applications like pool allocation, but **not** |
Chris Lattner | 55c1058 | 2002-10-03 20:38:41 +0000 | [diff] [blame] | 13 | // applications like alias analysis. |
Chris Lattner | 0d9bab8 | 2002-07-18 00:12:30 +0000 | [diff] [blame] | 14 | // |
| 15 | //===----------------------------------------------------------------------===// |
| 16 | |
Chris Lattner | 8adbec8 | 2004-07-07 06:35:22 +0000 | [diff] [blame] | 17 | #include "llvm/Analysis/DataStructure/DataStructure.h" |
Chris Lattner | 0d9bab8 | 2002-07-18 00:12:30 +0000 | [diff] [blame] | 18 | #include "llvm/Module.h" |
Reid Spencer | 551ccae | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 19 | #include "llvm/ADT/Statistic.h" |
| 20 | #include "llvm/Support/Debug.h" |
Chris Lattner | 5d5b6d6 | 2003-07-01 16:04:18 +0000 | [diff] [blame] | 21 | #include "DSCallSiteIterator.h" |
Chris Lattner | 9a92729 | 2003-11-12 23:11:14 +0000 | [diff] [blame] | 22 | using namespace llvm; |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 23 | |
Chris Lattner | ae5f603 | 2002-11-17 22:16:28 +0000 | [diff] [blame] | 24 | namespace { |
| 25 | Statistic<> MaxSCC("budatastructure", "Maximum SCC Size in Call Graph"); |
Chris Lattner | d391d70 | 2003-07-02 20:24:42 +0000 | [diff] [blame] | 26 | Statistic<> NumBUInlines("budatastructures", "Number of graphs inlined"); |
Chris Lattner | 6c87461 | 2003-07-02 23:42:48 +0000 | [diff] [blame] | 27 | Statistic<> NumCallEdges("budatastructures", "Number of 'actual' call edges"); |
Chris Lattner | ae5f603 | 2002-11-17 22:16:28 +0000 | [diff] [blame] | 28 | |
| 29 | RegisterAnalysis<BUDataStructures> |
Chris Lattner | 312edd3 | 2003-06-28 22:14:55 +0000 | [diff] [blame] | 30 | X("budatastructure", "Bottom-up Data Structure Analysis"); |
Chris Lattner | ae5f603 | 2002-11-17 22:16:28 +0000 | [diff] [blame] | 31 | } |
Chris Lattner | 0d9bab8 | 2002-07-18 00:12:30 +0000 | [diff] [blame] | 32 | |
Chris Lattner | b106043 | 2002-11-07 05:20:53 +0000 | [diff] [blame] | 33 | using namespace DS; |
Chris Lattner | 55c1058 | 2002-10-03 20:38:41 +0000 | [diff] [blame] | 34 | |
Chris Lattner | aa0b468 | 2002-11-09 21:12:07 +0000 | [diff] [blame] | 35 | // run - Calculate the bottom up data structure graphs for each function in the |
| 36 | // program. |
| 37 | // |
Chris Lattner | b12914b | 2004-09-20 04:48:05 +0000 | [diff] [blame] | 38 | bool BUDataStructures::runOnModule(Module &M) { |
Chris Lattner | 312edd3 | 2003-06-28 22:14:55 +0000 | [diff] [blame] | 39 | LocalDataStructures &LocalDSA = getAnalysis<LocalDataStructures>(); |
| 40 | GlobalsGraph = new DSGraph(LocalDSA.getGlobalsGraph()); |
Chris Lattner | 20167e3 | 2003-02-03 19:11:38 +0000 | [diff] [blame] | 41 | GlobalsGraph->setPrintAuxCalls(); |
Chris Lattner | aa0b468 | 2002-11-09 21:12:07 +0000 | [diff] [blame] | 42 | |
Chris Lattner | f189bce | 2005-02-01 17:35:52 +0000 | [diff] [blame] | 43 | std::vector<Function*> Stack; |
| 44 | hash_map<Function*, unsigned> ValMap; |
| 45 | unsigned NextID = 1; |
| 46 | |
Chris Lattner | a9c9c02 | 2002-11-11 21:35:13 +0000 | [diff] [blame] | 47 | Function *MainFunc = M.getMainFunction(); |
| 48 | if (MainFunc) |
Chris Lattner | f189bce | 2005-02-01 17:35:52 +0000 | [diff] [blame] | 49 | calculateGraphs(MainFunc, Stack, NextID, ValMap); |
Chris Lattner | a9c9c02 | 2002-11-11 21:35:13 +0000 | [diff] [blame] | 50 | |
| 51 | // Calculate the graphs for any functions that are unreachable from main... |
Chris Lattner | aa0b468 | 2002-11-09 21:12:07 +0000 | [diff] [blame] | 52 | for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I) |
Chris Lattner | 5d5b6d6 | 2003-07-01 16:04:18 +0000 | [diff] [blame] | 53 | if (!I->isExternal() && !DSInfo.count(I)) { |
Chris Lattner | ae5f603 | 2002-11-17 22:16:28 +0000 | [diff] [blame] | 54 | #ifndef NDEBUG |
Chris Lattner | a9c9c02 | 2002-11-11 21:35:13 +0000 | [diff] [blame] | 55 | if (MainFunc) |
| 56 | std::cerr << "*** Function unreachable from main: " |
| 57 | << I->getName() << "\n"; |
Chris Lattner | ae5f603 | 2002-11-17 22:16:28 +0000 | [diff] [blame] | 58 | #endif |
Chris Lattner | f189bce | 2005-02-01 17:35:52 +0000 | [diff] [blame] | 59 | calculateGraphs(I, Stack, NextID, ValMap); // Calculate all graphs. |
Chris Lattner | a9c9c02 | 2002-11-11 21:35:13 +0000 | [diff] [blame] | 60 | } |
Chris Lattner | 6c87461 | 2003-07-02 23:42:48 +0000 | [diff] [blame] | 61 | |
| 62 | NumCallEdges += ActualCallees.size(); |
Chris Lattner | ec157b7 | 2003-09-20 23:27:05 +0000 | [diff] [blame] | 63 | |
| 64 | // At the end of the bottom-up pass, the globals graph becomes complete. |
| 65 | // FIXME: This is not the right way to do this, but it is sorta better than |
Chris Lattner | 11fc930 | 2003-09-20 23:58:33 +0000 | [diff] [blame] | 66 | // nothing! In particular, externally visible globals and unresolvable call |
| 67 | // nodes at the end of the BU phase should make things that they point to |
| 68 | // incomplete in the globals graph. |
| 69 | // |
Chris Lattner | c3f5f77 | 2004-02-08 01:51:48 +0000 | [diff] [blame] | 70 | GlobalsGraph->removeTriviallyDeadNodes(); |
Chris Lattner | ec157b7 | 2003-09-20 23:27:05 +0000 | [diff] [blame] | 71 | GlobalsGraph->maskIncompleteMarkers(); |
Chris Lattner | aa0b468 | 2002-11-09 21:12:07 +0000 | [diff] [blame] | 72 | return false; |
| 73 | } |
Chris Lattner | 55c1058 | 2002-10-03 20:38:41 +0000 | [diff] [blame] | 74 | |
Chris Lattner | a9c9c02 | 2002-11-11 21:35:13 +0000 | [diff] [blame] | 75 | DSGraph &BUDataStructures::getOrCreateGraph(Function *F) { |
| 76 | // Has the graph already been created? |
| 77 | DSGraph *&Graph = DSInfo[F]; |
| 78 | if (Graph) return *Graph; |
| 79 | |
| 80 | // Copy the local version into DSInfo... |
| 81 | Graph = new DSGraph(getAnalysis<LocalDataStructures>().getDSGraph(*F)); |
| 82 | |
| 83 | Graph->setGlobalsGraph(GlobalsGraph); |
| 84 | Graph->setPrintAuxCalls(); |
| 85 | |
| 86 | // Start with a copy of the original call sites... |
| 87 | Graph->getAuxFunctionCalls() = Graph->getFunctionCalls(); |
| 88 | return *Graph; |
| 89 | } |
| 90 | |
| 91 | unsigned BUDataStructures::calculateGraphs(Function *F, |
| 92 | std::vector<Function*> &Stack, |
| 93 | unsigned &NextID, |
Chris Lattner | 41c04f7 | 2003-02-01 04:52:08 +0000 | [diff] [blame] | 94 | hash_map<Function*, unsigned> &ValMap) { |
Chris Lattner | 6acfe92 | 2003-11-13 05:04:19 +0000 | [diff] [blame] | 95 | assert(!ValMap.count(F) && "Shouldn't revisit functions!"); |
Chris Lattner | a9c9c02 | 2002-11-11 21:35:13 +0000 | [diff] [blame] | 96 | unsigned Min = NextID++, MyID = Min; |
| 97 | ValMap[F] = Min; |
| 98 | Stack.push_back(F); |
| 99 | |
Chris Lattner | 16437ff | 2004-03-04 17:05:28 +0000 | [diff] [blame] | 100 | // FIXME! This test should be generalized to be any function that we have |
| 101 | // already processed, in the case when there isn't a main or there are |
| 102 | // unreachable functions! |
Chris Lattner | a9c9c02 | 2002-11-11 21:35:13 +0000 | [diff] [blame] | 103 | if (F->isExternal()) { // sprintf, fprintf, sscanf, etc... |
| 104 | // No callees! |
| 105 | Stack.pop_back(); |
| 106 | ValMap[F] = ~0; |
| 107 | return Min; |
| 108 | } |
| 109 | |
| 110 | DSGraph &Graph = getOrCreateGraph(F); |
| 111 | |
| 112 | // The edges out of the current node are the call site targets... |
Chris Lattner | 2b4c8df | 2003-06-30 05:27:53 +0000 | [diff] [blame] | 113 | for (DSCallSiteIterator I = DSCallSiteIterator::begin_aux(Graph), |
| 114 | E = DSCallSiteIterator::end_aux(Graph); I != E; ++I) { |
Chris Lattner | a9c9c02 | 2002-11-11 21:35:13 +0000 | [diff] [blame] | 115 | Function *Callee = *I; |
| 116 | unsigned M; |
| 117 | // Have we visited the destination function yet? |
Chris Lattner | 41c04f7 | 2003-02-01 04:52:08 +0000 | [diff] [blame] | 118 | hash_map<Function*, unsigned>::iterator It = ValMap.find(Callee); |
Chris Lattner | a9c9c02 | 2002-11-11 21:35:13 +0000 | [diff] [blame] | 119 | if (It == ValMap.end()) // No, visit it now. |
| 120 | M = calculateGraphs(Callee, Stack, NextID, ValMap); |
| 121 | else // Yes, get it's number. |
| 122 | M = It->second; |
| 123 | if (M < Min) Min = M; |
| 124 | } |
| 125 | |
| 126 | assert(ValMap[F] == MyID && "SCC construction assumption wrong!"); |
| 127 | if (Min != MyID) |
| 128 | return Min; // This is part of a larger SCC! |
| 129 | |
| 130 | // If this is a new SCC, process it now. |
| 131 | if (Stack.back() == F) { // Special case the single "SCC" case here. |
| 132 | DEBUG(std::cerr << "Visiting single node SCC #: " << MyID << " fn: " |
| 133 | << F->getName() << "\n"); |
| 134 | Stack.pop_back(); |
Chris Lattner | 0eea618 | 2003-06-30 05:09:58 +0000 | [diff] [blame] | 135 | DSGraph &G = getDSGraph(*F); |
| 136 | DEBUG(std::cerr << " [BU] Calculating graph for: " << F->getName()<< "\n"); |
| 137 | calculateGraph(G); |
| 138 | DEBUG(std::cerr << " [BU] Done inlining: " << F->getName() << " [" |
| 139 | << G.getGraphSize() << "+" << G.getAuxFunctionCalls().size() |
| 140 | << "]\n"); |
Chris Lattner | a9c9c02 | 2002-11-11 21:35:13 +0000 | [diff] [blame] | 141 | |
Chris Lattner | ae5f603 | 2002-11-17 22:16:28 +0000 | [diff] [blame] | 142 | if (MaxSCC < 1) MaxSCC = 1; |
| 143 | |
Chris Lattner | a9c9c02 | 2002-11-11 21:35:13 +0000 | [diff] [blame] | 144 | // Should we revisit the graph? |
Chris Lattner | 2b4c8df | 2003-06-30 05:27:53 +0000 | [diff] [blame] | 145 | if (DSCallSiteIterator::begin_aux(G) != DSCallSiteIterator::end_aux(G)) { |
Chris Lattner | a9c9c02 | 2002-11-11 21:35:13 +0000 | [diff] [blame] | 146 | ValMap.erase(F); |
| 147 | return calculateGraphs(F, Stack, NextID, ValMap); |
| 148 | } else { |
| 149 | ValMap[F] = ~0U; |
| 150 | } |
| 151 | return MyID; |
| 152 | |
| 153 | } else { |
| 154 | // SCCFunctions - Keep track of the functions in the current SCC |
| 155 | // |
Chris Lattner | a67138d | 2004-01-31 21:02:18 +0000 | [diff] [blame] | 156 | hash_set<DSGraph*> SCCGraphs; |
Chris Lattner | a9c9c02 | 2002-11-11 21:35:13 +0000 | [diff] [blame] | 157 | |
| 158 | Function *NF; |
| 159 | std::vector<Function*>::iterator FirstInSCC = Stack.end(); |
Chris Lattner | 0eea618 | 2003-06-30 05:09:58 +0000 | [diff] [blame] | 160 | DSGraph *SCCGraph = 0; |
Chris Lattner | a9c9c02 | 2002-11-11 21:35:13 +0000 | [diff] [blame] | 161 | do { |
| 162 | NF = *--FirstInSCC; |
| 163 | ValMap[NF] = ~0U; |
Chris Lattner | 0eea618 | 2003-06-30 05:09:58 +0000 | [diff] [blame] | 164 | |
| 165 | // Figure out which graph is the largest one, in order to speed things up |
| 166 | // a bit in situations where functions in the SCC have widely different |
| 167 | // graph sizes. |
| 168 | DSGraph &NFGraph = getDSGraph(*NF); |
Chris Lattner | a67138d | 2004-01-31 21:02:18 +0000 | [diff] [blame] | 169 | SCCGraphs.insert(&NFGraph); |
Chris Lattner | 16437ff | 2004-03-04 17:05:28 +0000 | [diff] [blame] | 170 | // FIXME: If we used a better way of cloning graphs (ie, just splice all |
| 171 | // of the nodes into the new graph), this would be completely unneeded! |
Chris Lattner | 0eea618 | 2003-06-30 05:09:58 +0000 | [diff] [blame] | 172 | if (!SCCGraph || SCCGraph->getGraphSize() < NFGraph.getGraphSize()) |
| 173 | SCCGraph = &NFGraph; |
Chris Lattner | a9c9c02 | 2002-11-11 21:35:13 +0000 | [diff] [blame] | 174 | } while (NF != F); |
| 175 | |
Chris Lattner | 0eea618 | 2003-06-30 05:09:58 +0000 | [diff] [blame] | 176 | std::cerr << "Calculating graph for SCC #: " << MyID << " of size: " |
Chris Lattner | a67138d | 2004-01-31 21:02:18 +0000 | [diff] [blame] | 177 | << SCCGraphs.size() << "\n"; |
Chris Lattner | a9c9c02 | 2002-11-11 21:35:13 +0000 | [diff] [blame] | 178 | |
Chris Lattner | ae5f603 | 2002-11-17 22:16:28 +0000 | [diff] [blame] | 179 | // Compute the Max SCC Size... |
Chris Lattner | a67138d | 2004-01-31 21:02:18 +0000 | [diff] [blame] | 180 | if (MaxSCC < SCCGraphs.size()) |
| 181 | MaxSCC = SCCGraphs.size(); |
Chris Lattner | ae5f603 | 2002-11-17 22:16:28 +0000 | [diff] [blame] | 182 | |
Chris Lattner | 0eea618 | 2003-06-30 05:09:58 +0000 | [diff] [blame] | 183 | // First thing first, collapse all of the DSGraphs into a single graph for |
| 184 | // the entire SCC. We computed the largest graph, so clone all of the other |
| 185 | // (smaller) graphs into it. Discard all of the old graphs. |
| 186 | // |
Chris Lattner | a67138d | 2004-01-31 21:02:18 +0000 | [diff] [blame] | 187 | for (hash_set<DSGraph*>::iterator I = SCCGraphs.begin(), |
| 188 | E = SCCGraphs.end(); I != E; ++I) { |
| 189 | DSGraph &G = **I; |
Chris Lattner | 0eea618 | 2003-06-30 05:09:58 +0000 | [diff] [blame] | 190 | if (&G != SCCGraph) { |
Chris Lattner | 16437ff | 2004-03-04 17:05:28 +0000 | [diff] [blame] | 191 | { |
| 192 | DSGraph::NodeMapTy NodeMap; |
| 193 | SCCGraph->cloneInto(G, SCCGraph->getScalarMap(), |
| 194 | SCCGraph->getReturnNodes(), NodeMap); |
| 195 | } |
Chris Lattner | 0eea618 | 2003-06-30 05:09:58 +0000 | [diff] [blame] | 196 | // Update the DSInfo map and delete the old graph... |
Chris Lattner | a67138d | 2004-01-31 21:02:18 +0000 | [diff] [blame] | 197 | for (DSGraph::ReturnNodesTy::iterator I = G.getReturnNodes().begin(), |
| 198 | E = G.getReturnNodes().end(); I != E; ++I) |
| 199 | DSInfo[I->first] = SCCGraph; |
Chris Lattner | 0eea618 | 2003-06-30 05:09:58 +0000 | [diff] [blame] | 200 | delete &G; |
| 201 | } |
| 202 | } |
Chris Lattner | a9c9c02 | 2002-11-11 21:35:13 +0000 | [diff] [blame] | 203 | |
Chris Lattner | 744f939 | 2003-07-02 04:37:48 +0000 | [diff] [blame] | 204 | // Clean up the graph before we start inlining a bunch again... |
Chris Lattner | ac6d485 | 2004-11-08 21:08:46 +0000 | [diff] [blame] | 205 | SCCGraph->removeDeadNodes(DSGraph::KeepUnreachableGlobals); |
Chris Lattner | 744f939 | 2003-07-02 04:37:48 +0000 | [diff] [blame] | 206 | |
Chris Lattner | 0eea618 | 2003-06-30 05:09:58 +0000 | [diff] [blame] | 207 | // Now that we have one big happy family, resolve all of the call sites in |
| 208 | // the graph... |
| 209 | calculateGraph(*SCCGraph); |
| 210 | DEBUG(std::cerr << " [BU] Done inlining SCC [" << SCCGraph->getGraphSize() |
| 211 | << "+" << SCCGraph->getAuxFunctionCalls().size() << "]\n"); |
Chris Lattner | a9c9c02 | 2002-11-11 21:35:13 +0000 | [diff] [blame] | 212 | |
| 213 | std::cerr << "DONE with SCC #: " << MyID << "\n"; |
| 214 | |
| 215 | // We never have to revisit "SCC" processed functions... |
| 216 | |
| 217 | // Drop the stuff we don't need from the end of the stack |
| 218 | Stack.erase(FirstInSCC, Stack.end()); |
| 219 | return MyID; |
| 220 | } |
| 221 | |
| 222 | return MyID; // == Min |
| 223 | } |
| 224 | |
| 225 | |
Chris Lattner | 0d9bab8 | 2002-07-18 00:12:30 +0000 | [diff] [blame] | 226 | // releaseMemory - If the pass pipeline is done with this pass, we can release |
| 227 | // our memory... here... |
| 228 | // |
| 229 | void BUDataStructures::releaseMemory() { |
Chris Lattner | 0eea618 | 2003-06-30 05:09:58 +0000 | [diff] [blame] | 230 | for (hash_map<Function*, DSGraph*>::iterator I = DSInfo.begin(), |
| 231 | E = DSInfo.end(); I != E; ++I) { |
| 232 | I->second->getReturnNodes().erase(I->first); |
| 233 | if (I->second->getReturnNodes().empty()) |
| 234 | delete I->second; |
| 235 | } |
Chris Lattner | 0d9bab8 | 2002-07-18 00:12:30 +0000 | [diff] [blame] | 236 | |
| 237 | // Empty map so next time memory is released, data structures are not |
| 238 | // re-deleted. |
| 239 | DSInfo.clear(); |
Chris Lattner | aa0b468 | 2002-11-09 21:12:07 +0000 | [diff] [blame] | 240 | delete GlobalsGraph; |
| 241 | GlobalsGraph = 0; |
Chris Lattner | 0d9bab8 | 2002-07-18 00:12:30 +0000 | [diff] [blame] | 242 | } |
| 243 | |
Chris Lattner | af8650e | 2005-02-01 21:37:27 +0000 | [diff] [blame] | 244 | static bool isVAHackFn(const Function *F) { |
| 245 | return F->getName() == "printf" || F->getName() == "sscanf" || |
| 246 | F->getName() == "fprintf" || F->getName() == "open" || |
| 247 | F->getName() == "sprintf" || F->getName() == "fputs" || |
| 248 | F->getName() == "fscanf"; |
| 249 | } |
| 250 | |
| 251 | // isUnresolvableFunction - Return true if this is an unresolvable |
| 252 | // external function. A direct or indirect call to this cannot be resolved. |
| 253 | // |
| 254 | static bool isResolvableFunc(const Function* callee) { |
| 255 | return !callee->isExternal() || isVAHackFn(callee); |
| 256 | } |
| 257 | |
Chris Lattner | 0eea618 | 2003-06-30 05:09:58 +0000 | [diff] [blame] | 258 | void BUDataStructures::calculateGraph(DSGraph &Graph) { |
Chris Lattner | a9c9c02 | 2002-11-11 21:35:13 +0000 | [diff] [blame] | 259 | // Move our call site list into TempFCs so that inline call sites go into the |
| 260 | // new call site list and doesn't invalidate our iterators! |
Chris Lattner | a9548d9 | 2005-01-30 23:51:02 +0000 | [diff] [blame] | 261 | std::list<DSCallSite> TempFCs; |
| 262 | std::list<DSCallSite> &AuxCallsList = Graph.getAuxFunctionCalls(); |
Chris Lattner | a9c9c02 | 2002-11-11 21:35:13 +0000 | [diff] [blame] | 263 | TempFCs.swap(AuxCallsList); |
Chris Lattner | 8a5db46 | 2002-11-11 00:01:34 +0000 | [diff] [blame] | 264 | |
Chris Lattner | 0eea618 | 2003-06-30 05:09:58 +0000 | [diff] [blame] | 265 | DSGraph::ReturnNodesTy &ReturnNodes = Graph.getReturnNodes(); |
| 266 | |
Chris Lattner | f189bce | 2005-02-01 17:35:52 +0000 | [diff] [blame] | 267 | // Print out multi-call sites. |
| 268 | bool Printed = false; |
| 269 | for (std::list<DSCallSite>::iterator I = TempFCs.begin(), E = TempFCs.end(); |
| 270 | I != E; ++I) { |
| 271 | if (!I->isDirectCall()) { |
| 272 | DSNode *Node = I->getCalleeNode(); |
| 273 | if (Node->getGlobals().size() > 1) { |
| 274 | if (!Printed) |
| 275 | std::cerr << "In Fns: " << Graph.getFunctionNames() << "\n"; |
| 276 | std::cerr << " calls " << Node->getGlobals().size() |
Chris Lattner | af8650e | 2005-02-01 21:37:27 +0000 | [diff] [blame] | 277 | << " fns from site: " << I->getCallSite().getInstruction() |
| 278 | << " " << *I->getCallSite().getInstruction(); |
Chris Lattner | f189bce | 2005-02-01 17:35:52 +0000 | [diff] [blame] | 279 | unsigned NumToPrint = Node->getGlobals().size(); |
| 280 | if (NumToPrint > 5) NumToPrint = 5; |
| 281 | std::cerr << " Fns ="; |
| 282 | for (unsigned i = 0; i != NumToPrint; ++i) |
| 283 | std::cerr << " " << Node->getGlobals()[i]->getName(); |
| 284 | std::cerr << "\n"; |
| 285 | } |
| 286 | } |
| 287 | } |
| 288 | |
Chris Lattner | af8650e | 2005-02-01 21:37:27 +0000 | [diff] [blame] | 289 | while (!TempFCs.empty()) { |
| 290 | DSCallSite &CS = *TempFCs.begin(); |
Chris Lattner | f189bce | 2005-02-01 17:35:52 +0000 | [diff] [blame] | 291 | |
Chris Lattner | af8650e | 2005-02-01 21:37:27 +0000 | [diff] [blame] | 292 | std::set<Function*> CalledFuncs; |
Chris Lattner | a9548d9 | 2005-01-30 23:51:02 +0000 | [diff] [blame] | 293 | |
Chris Lattner | af8650e | 2005-02-01 21:37:27 +0000 | [diff] [blame] | 294 | if (CS.isDirectCall()) { |
| 295 | Function *F = CS.getCalleeFunc(); |
| 296 | if (isResolvableFunc(F)) |
| 297 | if (F->isExternal()) { // Call to fprintf, etc. |
| 298 | TempFCs.erase(TempFCs.begin()); |
| 299 | continue; |
| 300 | } else { |
| 301 | CalledFuncs.insert(F); |
| 302 | } |
Chris Lattner | a9c9c02 | 2002-11-11 21:35:13 +0000 | [diff] [blame] | 303 | } else { |
Chris Lattner | af8650e | 2005-02-01 21:37:27 +0000 | [diff] [blame] | 304 | DSNode *Node = CS.getCalleeNode(); |
Chris Lattner | 744f939 | 2003-07-02 04:37:48 +0000 | [diff] [blame] | 305 | |
Chris Lattner | af8650e | 2005-02-01 21:37:27 +0000 | [diff] [blame] | 306 | if (!Node->isIncomplete()) |
| 307 | for (unsigned i = 0, e = Node->getGlobals().size(); i != e; ++i) |
| 308 | if (Function *CF = dyn_cast<Function>(Node->getGlobals()[i])) |
| 309 | if (isResolvableFunc(CF) && !CF->isExternal()) |
| 310 | CalledFuncs.insert(CF); |
| 311 | } |
Chris Lattner | 0321b68 | 2004-02-27 20:05:15 +0000 | [diff] [blame] | 312 | |
Chris Lattner | af8650e | 2005-02-01 21:37:27 +0000 | [diff] [blame] | 313 | if (CalledFuncs.empty()) { |
| 314 | // Remember that we could not resolve this yet! |
| 315 | AuxCallsList.splice(AuxCallsList.end(), TempFCs, TempFCs.begin()); |
Chris Lattner | 20cd136 | 2005-02-01 21:49:43 +0000 | [diff] [blame^] | 316 | continue; |
Chris Lattner | af8650e | 2005-02-01 21:37:27 +0000 | [diff] [blame] | 317 | } else if (CalledFuncs.size() == 1) { |
| 318 | Function *Callee = *CalledFuncs.begin(); |
| 319 | |
Chris Lattner | 20cd136 | 2005-02-01 21:49:43 +0000 | [diff] [blame^] | 320 | ActualCallees.insert(std::make_pair(CS.getCallSite().getInstruction(), |
| 321 | Callee)); |
Chris Lattner | af8650e | 2005-02-01 21:37:27 +0000 | [diff] [blame] | 322 | |
Chris Lattner | 20cd136 | 2005-02-01 21:49:43 +0000 | [diff] [blame^] | 323 | // Get the data structure graph for the called function. |
| 324 | // |
| 325 | DSGraph &GI = getDSGraph(*Callee); // Graph to inline |
| 326 | |
| 327 | DEBUG(std::cerr << " Inlining graph for " << Callee->getName() |
| 328 | << "[" << GI.getGraphSize() << "+" |
| 329 | << GI.getAuxFunctionCalls().size() << "] into '" |
| 330 | << Graph.getFunctionNames() << "' [" << Graph.getGraphSize() <<"+" |
| 331 | << Graph.getAuxFunctionCalls().size() << "]\n"); |
| 332 | Graph.mergeInGraph(CS, *Callee, GI, |
| 333 | DSGraph::KeepModRefBits | |
| 334 | DSGraph::StripAllocaBit|DSGraph::DontCloneCallNodes); |
| 335 | ++NumBUInlines; |
| 336 | |
Chris Lattner | ae5f603 | 2002-11-17 22:16:28 +0000 | [diff] [blame] | 337 | #if 0 |
Chris Lattner | 20cd136 | 2005-02-01 21:49:43 +0000 | [diff] [blame^] | 338 | Graph.writeGraphToFile(std::cerr, "bu_" + F.getName() + "_after_" + |
| 339 | Callee->getName()); |
Chris Lattner | ae5f603 | 2002-11-17 22:16:28 +0000 | [diff] [blame] | 340 | #endif |
Chris Lattner | af8650e | 2005-02-01 21:37:27 +0000 | [diff] [blame] | 341 | } else { |
| 342 | if (!Printed) |
| 343 | std::cerr << "In Fns: " << Graph.getFunctionNames() << "\n"; |
| 344 | std::cerr << " calls " << CalledFuncs.size() |
| 345 | << " fns from site: " << CS.getCallSite().getInstruction() |
| 346 | << " " << *CS.getCallSite().getInstruction(); |
| 347 | unsigned NumToPrint = CalledFuncs.size(); |
| 348 | if (NumToPrint > 8) NumToPrint = 8; |
| 349 | std::cerr << " Fns ="; |
| 350 | for (std::set<Function*>::iterator I = CalledFuncs.begin(), |
| 351 | E = CalledFuncs.end(); I != E && NumToPrint; ++I, --NumToPrint) |
| 352 | std::cerr << " " << (*I)->getName(); |
| 353 | std::cerr << "\n"; |
Chris Lattner | a9548d9 | 2005-01-30 23:51:02 +0000 | [diff] [blame] | 354 | |
Chris Lattner | af8650e | 2005-02-01 21:37:27 +0000 | [diff] [blame] | 355 | // Inline all of the called functions. |
| 356 | for (std::set<Function*>::iterator I = CalledFuncs.begin(), |
| 357 | E = CalledFuncs.end(); I != E; ++I) { |
| 358 | Function *Callee = *I; |
Chris Lattner | 20cd136 | 2005-02-01 21:49:43 +0000 | [diff] [blame^] | 359 | ActualCallees.insert(std::make_pair(CS.getCallSite().getInstruction(), |
| 360 | Callee)); |
Chris Lattner | af8650e | 2005-02-01 21:37:27 +0000 | [diff] [blame] | 361 | |
Chris Lattner | 20cd136 | 2005-02-01 21:49:43 +0000 | [diff] [blame^] | 362 | // Get the data structure graph for the called function. |
| 363 | // |
| 364 | DSGraph &GI = getDSGraph(*Callee); // Graph to inline |
| 365 | |
| 366 | DEBUG(std::cerr << " Inlining graph for " << Callee->getName() |
| 367 | << "[" << GI.getGraphSize() << "+" |
| 368 | << GI.getAuxFunctionCalls().size() << "] into '" |
| 369 | << Graph.getFunctionNames() << "' [" << Graph.getGraphSize() <<"+" |
| 370 | << Graph.getAuxFunctionCalls().size() << "]\n"); |
| 371 | Graph.mergeInGraph(CS, *Callee, GI, |
| 372 | DSGraph::KeepModRefBits | |
| 373 | DSGraph::StripAllocaBit|DSGraph::DontCloneCallNodes); |
| 374 | ++NumBUInlines; |
| 375 | |
Chris Lattner | af8650e | 2005-02-01 21:37:27 +0000 | [diff] [blame] | 376 | #if 0 |
Chris Lattner | 20cd136 | 2005-02-01 21:49:43 +0000 | [diff] [blame^] | 377 | Graph.writeGraphToFile(std::cerr, "bu_" + F.getName() + "_after_" + |
| 378 | Callee->getName()); |
Chris Lattner | af8650e | 2005-02-01 21:37:27 +0000 | [diff] [blame] | 379 | #endif |
Chris Lattner | af8650e | 2005-02-01 21:37:27 +0000 | [diff] [blame] | 380 | } |
Chris Lattner | a9548d9 | 2005-01-30 23:51:02 +0000 | [diff] [blame] | 381 | } |
Chris Lattner | 20cd136 | 2005-02-01 21:49:43 +0000 | [diff] [blame^] | 382 | TempFCs.erase(TempFCs.begin()); |
Chris Lattner | a9548d9 | 2005-01-30 23:51:02 +0000 | [diff] [blame] | 383 | } |
Chris Lattner | a9c9c02 | 2002-11-11 21:35:13 +0000 | [diff] [blame] | 384 | |
Vikram S. Adve | 1da1d32 | 2003-07-16 21:42:03 +0000 | [diff] [blame] | 385 | // Recompute the Incomplete markers |
Chris Lattner | d10b5fd | 2004-02-20 23:52:15 +0000 | [diff] [blame] | 386 | assert(Graph.getInlinedGlobals().empty()); |
Chris Lattner | a9c9c02 | 2002-11-11 21:35:13 +0000 | [diff] [blame] | 387 | Graph.maskIncompleteMarkers(); |
Chris Lattner | 394471f | 2003-01-23 22:05:33 +0000 | [diff] [blame] | 388 | Graph.markIncompleteNodes(DSGraph::MarkFormalArgs); |
Vikram S. Adve | 1da1d32 | 2003-07-16 21:42:03 +0000 | [diff] [blame] | 389 | |
| 390 | // Delete dead nodes. Treat globals that are unreachable but that can |
| 391 | // reach live nodes as live. |
Chris Lattner | 394471f | 2003-01-23 22:05:33 +0000 | [diff] [blame] | 392 | Graph.removeDeadNodes(DSGraph::KeepUnreachableGlobals); |
Chris Lattner | a9c9c02 | 2002-11-11 21:35:13 +0000 | [diff] [blame] | 393 | |
Chris Lattner | 3567937 | 2004-02-21 00:30:28 +0000 | [diff] [blame] | 394 | // When this graph is finalized, clone the globals in the graph into the |
| 395 | // globals graph to make sure it has everything, from all graphs. |
| 396 | DSScalarMap &MainSM = Graph.getScalarMap(); |
| 397 | ReachabilityCloner RC(*GlobalsGraph, Graph, DSGraph::StripAllocaBit); |
| 398 | |
Chris Lattner | 3b7b81b | 2004-10-31 21:54:51 +0000 | [diff] [blame] | 399 | // Clone everything reachable from globals in the function graph into the |
Chris Lattner | 3567937 | 2004-02-21 00:30:28 +0000 | [diff] [blame] | 400 | // globals graph. |
| 401 | for (DSScalarMap::global_iterator I = MainSM.global_begin(), |
| 402 | E = MainSM.global_end(); I != E; ++I) |
| 403 | RC.getClonedNH(MainSM[*I]); |
| 404 | |
Chris Lattner | a9c9c02 | 2002-11-11 21:35:13 +0000 | [diff] [blame] | 405 | //Graph.writeGraphToFile(std::cerr, "bu_" + F.getName()); |
Chris Lattner | a9c9c02 | 2002-11-11 21:35:13 +0000 | [diff] [blame] | 406 | } |
Chris Lattner | 851b534 | 2005-01-24 20:00:14 +0000 | [diff] [blame] | 407 | |
| 408 | static const Function *getFnForValue(const Value *V) { |
| 409 | if (const Instruction *I = dyn_cast<Instruction>(V)) |
| 410 | return I->getParent()->getParent(); |
| 411 | else if (const Argument *A = dyn_cast<Argument>(V)) |
| 412 | return A->getParent(); |
| 413 | else if (const BasicBlock *BB = dyn_cast<BasicBlock>(V)) |
| 414 | return BB->getParent(); |
| 415 | return 0; |
| 416 | } |
| 417 | |
| 418 | /// deleteValue/copyValue - Interfaces to update the DSGraphs in the program. |
| 419 | /// These correspond to the interfaces defined in the AliasAnalysis class. |
| 420 | void BUDataStructures::deleteValue(Value *V) { |
| 421 | if (const Function *F = getFnForValue(V)) { // Function local value? |
| 422 | // If this is a function local value, just delete it from the scalar map! |
| 423 | getDSGraph(*F).getScalarMap().eraseIfExists(V); |
| 424 | return; |
| 425 | } |
| 426 | |
Chris Lattner | cff8ac2 | 2005-01-31 00:10:45 +0000 | [diff] [blame] | 427 | if (Function *F = dyn_cast<Function>(V)) { |
Chris Lattner | 851b534 | 2005-01-24 20:00:14 +0000 | [diff] [blame] | 428 | assert(getDSGraph(*F).getReturnNodes().size() == 1 && |
| 429 | "cannot handle scc's"); |
| 430 | delete DSInfo[F]; |
| 431 | DSInfo.erase(F); |
| 432 | return; |
| 433 | } |
| 434 | |
| 435 | assert(!isa<GlobalVariable>(V) && "Do not know how to delete GV's yet!"); |
| 436 | } |
| 437 | |
| 438 | void BUDataStructures::copyValue(Value *From, Value *To) { |
| 439 | if (From == To) return; |
| 440 | if (const Function *F = getFnForValue(From)) { // Function local value? |
| 441 | // If this is a function local value, just delete it from the scalar map! |
| 442 | getDSGraph(*F).getScalarMap().copyScalarIfExists(From, To); |
| 443 | return; |
| 444 | } |
| 445 | |
| 446 | if (Function *FromF = dyn_cast<Function>(From)) { |
| 447 | Function *ToF = cast<Function>(To); |
| 448 | assert(!DSInfo.count(ToF) && "New Function already exists!"); |
| 449 | DSGraph *NG = new DSGraph(getDSGraph(*FromF)); |
| 450 | DSInfo[ToF] = NG; |
| 451 | assert(NG->getReturnNodes().size() == 1 && "Cannot copy SCC's yet!"); |
| 452 | |
| 453 | // Change the Function* is the returnnodes map to the ToF. |
| 454 | DSNodeHandle Ret = NG->getReturnNodes().begin()->second; |
| 455 | NG->getReturnNodes().clear(); |
| 456 | NG->getReturnNodes()[ToF] = Ret; |
| 457 | return; |
| 458 | } |
| 459 | |
| 460 | assert(!isa<GlobalVariable>(From) && "Do not know how to copy GV's yet!"); |
| 461 | } |