Chris Lattner | 55c1058 | 2002-10-03 20:38:41 +0000 | [diff] [blame] | 1 | //===- BottomUpClosure.cpp - Compute bottom-up interprocedural closure ----===// |
Chris Lattner | 0d9bab8 | 2002-07-18 00:12:30 +0000 | [diff] [blame] | 2 | // |
| 3 | // This file implements the BUDataStructures class, which represents the |
| 4 | // Bottom-Up Interprocedural closure of the data structure graph over the |
| 5 | // program. This is useful for applications like pool allocation, but **not** |
Chris Lattner | 55c1058 | 2002-10-03 20:38:41 +0000 | [diff] [blame] | 6 | // applications like alias analysis. |
Chris Lattner | 0d9bab8 | 2002-07-18 00:12:30 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | |
| 10 | #include "llvm/Analysis/DataStructure.h" |
| 11 | #include "llvm/Module.h" |
Chris Lattner | fccd06f | 2002-10-01 22:33:50 +0000 | [diff] [blame] | 12 | #include "Support/Statistic.h" |
Chris Lattner | 5d5b6d6 | 2003-07-01 16:04:18 +0000 | [diff] [blame] | 13 | #include "DSCallSiteIterator.h" |
Chris Lattner | 0d9bab8 | 2002-07-18 00:12:30 +0000 | [diff] [blame] | 14 | |
Chris Lattner | ae5f603 | 2002-11-17 22:16:28 +0000 | [diff] [blame] | 15 | namespace { |
| 16 | Statistic<> MaxSCC("budatastructure", "Maximum SCC Size in Call Graph"); |
Chris Lattner | d391d70 | 2003-07-02 20:24:42 +0000 | [diff] [blame^] | 17 | Statistic<> NumBUInlines("budatastructures", "Number of graphs inlined"); |
Chris Lattner | ae5f603 | 2002-11-17 22:16:28 +0000 | [diff] [blame] | 18 | |
| 19 | RegisterAnalysis<BUDataStructures> |
Chris Lattner | 312edd3 | 2003-06-28 22:14:55 +0000 | [diff] [blame] | 20 | X("budatastructure", "Bottom-up Data Structure Analysis"); |
Chris Lattner | ae5f603 | 2002-11-17 22:16:28 +0000 | [diff] [blame] | 21 | } |
Chris Lattner | 0d9bab8 | 2002-07-18 00:12:30 +0000 | [diff] [blame] | 22 | |
Chris Lattner | b106043 | 2002-11-07 05:20:53 +0000 | [diff] [blame] | 23 | using namespace DS; |
Chris Lattner | 55c1058 | 2002-10-03 20:38:41 +0000 | [diff] [blame] | 24 | |
Chris Lattner | aa0b468 | 2002-11-09 21:12:07 +0000 | [diff] [blame] | 25 | // run - Calculate the bottom up data structure graphs for each function in the |
| 26 | // program. |
| 27 | // |
| 28 | bool BUDataStructures::run(Module &M) { |
Chris Lattner | 312edd3 | 2003-06-28 22:14:55 +0000 | [diff] [blame] | 29 | LocalDataStructures &LocalDSA = getAnalysis<LocalDataStructures>(); |
| 30 | GlobalsGraph = new DSGraph(LocalDSA.getGlobalsGraph()); |
Chris Lattner | 20167e3 | 2003-02-03 19:11:38 +0000 | [diff] [blame] | 31 | GlobalsGraph->setPrintAuxCalls(); |
Chris Lattner | aa0b468 | 2002-11-09 21:12:07 +0000 | [diff] [blame] | 32 | |
Chris Lattner | a9c9c02 | 2002-11-11 21:35:13 +0000 | [diff] [blame] | 33 | Function *MainFunc = M.getMainFunction(); |
| 34 | if (MainFunc) |
| 35 | calculateReachableGraphs(MainFunc); |
| 36 | |
| 37 | // Calculate the graphs for any functions that are unreachable from main... |
Chris Lattner | aa0b468 | 2002-11-09 21:12:07 +0000 | [diff] [blame] | 38 | for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I) |
Chris Lattner | 5d5b6d6 | 2003-07-01 16:04:18 +0000 | [diff] [blame] | 39 | if (!I->isExternal() && !DSInfo.count(I)) { |
Chris Lattner | ae5f603 | 2002-11-17 22:16:28 +0000 | [diff] [blame] | 40 | #ifndef NDEBUG |
Chris Lattner | a9c9c02 | 2002-11-11 21:35:13 +0000 | [diff] [blame] | 41 | if (MainFunc) |
| 42 | std::cerr << "*** Function unreachable from main: " |
| 43 | << I->getName() << "\n"; |
Chris Lattner | ae5f603 | 2002-11-17 22:16:28 +0000 | [diff] [blame] | 44 | #endif |
Chris Lattner | a9c9c02 | 2002-11-11 21:35:13 +0000 | [diff] [blame] | 45 | calculateReachableGraphs(I); // Calculate all graphs... |
| 46 | } |
Chris Lattner | aa0b468 | 2002-11-09 21:12:07 +0000 | [diff] [blame] | 47 | return false; |
| 48 | } |
Chris Lattner | 55c1058 | 2002-10-03 20:38:41 +0000 | [diff] [blame] | 49 | |
Chris Lattner | a9c9c02 | 2002-11-11 21:35:13 +0000 | [diff] [blame] | 50 | void BUDataStructures::calculateReachableGraphs(Function *F) { |
| 51 | std::vector<Function*> Stack; |
Chris Lattner | 41c04f7 | 2003-02-01 04:52:08 +0000 | [diff] [blame] | 52 | hash_map<Function*, unsigned> ValMap; |
Chris Lattner | a9c9c02 | 2002-11-11 21:35:13 +0000 | [diff] [blame] | 53 | unsigned NextID = 1; |
| 54 | calculateGraphs(F, Stack, NextID, ValMap); |
| 55 | } |
| 56 | |
| 57 | DSGraph &BUDataStructures::getOrCreateGraph(Function *F) { |
| 58 | // Has the graph already been created? |
| 59 | DSGraph *&Graph = DSInfo[F]; |
| 60 | if (Graph) return *Graph; |
| 61 | |
| 62 | // Copy the local version into DSInfo... |
| 63 | Graph = new DSGraph(getAnalysis<LocalDataStructures>().getDSGraph(*F)); |
| 64 | |
| 65 | Graph->setGlobalsGraph(GlobalsGraph); |
| 66 | Graph->setPrintAuxCalls(); |
| 67 | |
| 68 | // Start with a copy of the original call sites... |
| 69 | Graph->getAuxFunctionCalls() = Graph->getFunctionCalls(); |
| 70 | return *Graph; |
| 71 | } |
| 72 | |
| 73 | unsigned BUDataStructures::calculateGraphs(Function *F, |
| 74 | std::vector<Function*> &Stack, |
| 75 | unsigned &NextID, |
Chris Lattner | 41c04f7 | 2003-02-01 04:52:08 +0000 | [diff] [blame] | 76 | hash_map<Function*, unsigned> &ValMap) { |
Chris Lattner | a9c9c02 | 2002-11-11 21:35:13 +0000 | [diff] [blame] | 77 | assert(ValMap.find(F) == ValMap.end() && "Shouldn't revisit functions!"); |
| 78 | unsigned Min = NextID++, MyID = Min; |
| 79 | ValMap[F] = Min; |
| 80 | Stack.push_back(F); |
| 81 | |
| 82 | if (F->isExternal()) { // sprintf, fprintf, sscanf, etc... |
| 83 | // No callees! |
| 84 | Stack.pop_back(); |
| 85 | ValMap[F] = ~0; |
| 86 | return Min; |
| 87 | } |
| 88 | |
| 89 | DSGraph &Graph = getOrCreateGraph(F); |
| 90 | |
| 91 | // The edges out of the current node are the call site targets... |
Chris Lattner | 2b4c8df | 2003-06-30 05:27:53 +0000 | [diff] [blame] | 92 | for (DSCallSiteIterator I = DSCallSiteIterator::begin_aux(Graph), |
| 93 | E = DSCallSiteIterator::end_aux(Graph); I != E; ++I) { |
Chris Lattner | a9c9c02 | 2002-11-11 21:35:13 +0000 | [diff] [blame] | 94 | Function *Callee = *I; |
| 95 | unsigned M; |
| 96 | // Have we visited the destination function yet? |
Chris Lattner | 41c04f7 | 2003-02-01 04:52:08 +0000 | [diff] [blame] | 97 | hash_map<Function*, unsigned>::iterator It = ValMap.find(Callee); |
Chris Lattner | a9c9c02 | 2002-11-11 21:35:13 +0000 | [diff] [blame] | 98 | if (It == ValMap.end()) // No, visit it now. |
| 99 | M = calculateGraphs(Callee, Stack, NextID, ValMap); |
| 100 | else // Yes, get it's number. |
| 101 | M = It->second; |
| 102 | if (M < Min) Min = M; |
| 103 | } |
| 104 | |
| 105 | assert(ValMap[F] == MyID && "SCC construction assumption wrong!"); |
| 106 | if (Min != MyID) |
| 107 | return Min; // This is part of a larger SCC! |
| 108 | |
| 109 | // If this is a new SCC, process it now. |
| 110 | if (Stack.back() == F) { // Special case the single "SCC" case here. |
| 111 | DEBUG(std::cerr << "Visiting single node SCC #: " << MyID << " fn: " |
| 112 | << F->getName() << "\n"); |
| 113 | Stack.pop_back(); |
Chris Lattner | 0eea618 | 2003-06-30 05:09:58 +0000 | [diff] [blame] | 114 | DSGraph &G = getDSGraph(*F); |
| 115 | DEBUG(std::cerr << " [BU] Calculating graph for: " << F->getName()<< "\n"); |
| 116 | calculateGraph(G); |
| 117 | DEBUG(std::cerr << " [BU] Done inlining: " << F->getName() << " [" |
| 118 | << G.getGraphSize() << "+" << G.getAuxFunctionCalls().size() |
| 119 | << "]\n"); |
Chris Lattner | a9c9c02 | 2002-11-11 21:35:13 +0000 | [diff] [blame] | 120 | |
Chris Lattner | ae5f603 | 2002-11-17 22:16:28 +0000 | [diff] [blame] | 121 | if (MaxSCC < 1) MaxSCC = 1; |
| 122 | |
Chris Lattner | a9c9c02 | 2002-11-11 21:35:13 +0000 | [diff] [blame] | 123 | // Should we revisit the graph? |
Chris Lattner | 2b4c8df | 2003-06-30 05:27:53 +0000 | [diff] [blame] | 124 | if (DSCallSiteIterator::begin_aux(G) != DSCallSiteIterator::end_aux(G)) { |
Chris Lattner | a9c9c02 | 2002-11-11 21:35:13 +0000 | [diff] [blame] | 125 | ValMap.erase(F); |
| 126 | return calculateGraphs(F, Stack, NextID, ValMap); |
| 127 | } else { |
| 128 | ValMap[F] = ~0U; |
| 129 | } |
| 130 | return MyID; |
| 131 | |
| 132 | } else { |
| 133 | // SCCFunctions - Keep track of the functions in the current SCC |
| 134 | // |
Chris Lattner | 41c04f7 | 2003-02-01 04:52:08 +0000 | [diff] [blame] | 135 | hash_set<Function*> SCCFunctions; |
Chris Lattner | a9c9c02 | 2002-11-11 21:35:13 +0000 | [diff] [blame] | 136 | |
| 137 | Function *NF; |
| 138 | std::vector<Function*>::iterator FirstInSCC = Stack.end(); |
Chris Lattner | 0eea618 | 2003-06-30 05:09:58 +0000 | [diff] [blame] | 139 | DSGraph *SCCGraph = 0; |
Chris Lattner | a9c9c02 | 2002-11-11 21:35:13 +0000 | [diff] [blame] | 140 | do { |
| 141 | NF = *--FirstInSCC; |
| 142 | ValMap[NF] = ~0U; |
| 143 | SCCFunctions.insert(NF); |
Chris Lattner | 0eea618 | 2003-06-30 05:09:58 +0000 | [diff] [blame] | 144 | |
| 145 | // Figure out which graph is the largest one, in order to speed things up |
| 146 | // a bit in situations where functions in the SCC have widely different |
| 147 | // graph sizes. |
| 148 | DSGraph &NFGraph = getDSGraph(*NF); |
| 149 | if (!SCCGraph || SCCGraph->getGraphSize() < NFGraph.getGraphSize()) |
| 150 | SCCGraph = &NFGraph; |
Chris Lattner | a9c9c02 | 2002-11-11 21:35:13 +0000 | [diff] [blame] | 151 | } while (NF != F); |
| 152 | |
Chris Lattner | 0eea618 | 2003-06-30 05:09:58 +0000 | [diff] [blame] | 153 | std::cerr << "Calculating graph for SCC #: " << MyID << " of size: " |
| 154 | << SCCFunctions.size() << "\n"; |
Chris Lattner | a9c9c02 | 2002-11-11 21:35:13 +0000 | [diff] [blame] | 155 | |
Chris Lattner | ae5f603 | 2002-11-17 22:16:28 +0000 | [diff] [blame] | 156 | // Compute the Max SCC Size... |
Chris Lattner | 0eea618 | 2003-06-30 05:09:58 +0000 | [diff] [blame] | 157 | if (MaxSCC < SCCFunctions.size()) |
| 158 | MaxSCC = SCCFunctions.size(); |
Chris Lattner | ae5f603 | 2002-11-17 22:16:28 +0000 | [diff] [blame] | 159 | |
Chris Lattner | 0eea618 | 2003-06-30 05:09:58 +0000 | [diff] [blame] | 160 | // First thing first, collapse all of the DSGraphs into a single graph for |
| 161 | // the entire SCC. We computed the largest graph, so clone all of the other |
| 162 | // (smaller) graphs into it. Discard all of the old graphs. |
| 163 | // |
| 164 | for (hash_set<Function*>::iterator I = SCCFunctions.begin(), |
| 165 | E = SCCFunctions.end(); I != E; ++I) { |
Chris Lattner | a9c9c02 | 2002-11-11 21:35:13 +0000 | [diff] [blame] | 166 | DSGraph &G = getDSGraph(**I); |
Chris Lattner | 0eea618 | 2003-06-30 05:09:58 +0000 | [diff] [blame] | 167 | if (&G != SCCGraph) { |
| 168 | DSGraph::NodeMapTy NodeMap; |
| 169 | SCCGraph->cloneInto(G, SCCGraph->getScalarMap(), |
| 170 | SCCGraph->getReturnNodes(), NodeMap, 0); |
| 171 | // Update the DSInfo map and delete the old graph... |
| 172 | DSInfo[*I] = SCCGraph; |
| 173 | delete &G; |
| 174 | } |
| 175 | } |
Chris Lattner | a9c9c02 | 2002-11-11 21:35:13 +0000 | [diff] [blame] | 176 | |
Chris Lattner | 744f939 | 2003-07-02 04:37:48 +0000 | [diff] [blame] | 177 | // Clean up the graph before we start inlining a bunch again... |
| 178 | SCCGraph->removeTriviallyDeadNodes(); |
| 179 | |
Chris Lattner | 0eea618 | 2003-06-30 05:09:58 +0000 | [diff] [blame] | 180 | // Now that we have one big happy family, resolve all of the call sites in |
| 181 | // the graph... |
| 182 | calculateGraph(*SCCGraph); |
| 183 | DEBUG(std::cerr << " [BU] Done inlining SCC [" << SCCGraph->getGraphSize() |
| 184 | << "+" << SCCGraph->getAuxFunctionCalls().size() << "]\n"); |
Chris Lattner | a9c9c02 | 2002-11-11 21:35:13 +0000 | [diff] [blame] | 185 | |
| 186 | std::cerr << "DONE with SCC #: " << MyID << "\n"; |
| 187 | |
| 188 | // We never have to revisit "SCC" processed functions... |
| 189 | |
| 190 | // Drop the stuff we don't need from the end of the stack |
| 191 | Stack.erase(FirstInSCC, Stack.end()); |
| 192 | return MyID; |
| 193 | } |
| 194 | |
| 195 | return MyID; // == Min |
| 196 | } |
| 197 | |
| 198 | |
Chris Lattner | 0d9bab8 | 2002-07-18 00:12:30 +0000 | [diff] [blame] | 199 | // releaseMemory - If the pass pipeline is done with this pass, we can release |
| 200 | // our memory... here... |
| 201 | // |
| 202 | void BUDataStructures::releaseMemory() { |
Chris Lattner | 0eea618 | 2003-06-30 05:09:58 +0000 | [diff] [blame] | 203 | for (hash_map<Function*, DSGraph*>::iterator I = DSInfo.begin(), |
| 204 | E = DSInfo.end(); I != E; ++I) { |
| 205 | I->second->getReturnNodes().erase(I->first); |
| 206 | if (I->second->getReturnNodes().empty()) |
| 207 | delete I->second; |
| 208 | } |
Chris Lattner | 0d9bab8 | 2002-07-18 00:12:30 +0000 | [diff] [blame] | 209 | |
| 210 | // Empty map so next time memory is released, data structures are not |
| 211 | // re-deleted. |
| 212 | DSInfo.clear(); |
Chris Lattner | aa0b468 | 2002-11-09 21:12:07 +0000 | [diff] [blame] | 213 | delete GlobalsGraph; |
| 214 | GlobalsGraph = 0; |
Chris Lattner | 0d9bab8 | 2002-07-18 00:12:30 +0000 | [diff] [blame] | 215 | } |
| 216 | |
Chris Lattner | 0eea618 | 2003-06-30 05:09:58 +0000 | [diff] [blame] | 217 | void BUDataStructures::calculateGraph(DSGraph &Graph) { |
Chris Lattner | a9c9c02 | 2002-11-11 21:35:13 +0000 | [diff] [blame] | 218 | // Move our call site list into TempFCs so that inline call sites go into the |
| 219 | // new call site list and doesn't invalidate our iterators! |
| 220 | std::vector<DSCallSite> TempFCs; |
| 221 | std::vector<DSCallSite> &AuxCallsList = Graph.getAuxFunctionCalls(); |
| 222 | TempFCs.swap(AuxCallsList); |
Chris Lattner | 8a5db46 | 2002-11-11 00:01:34 +0000 | [diff] [blame] | 223 | |
Chris Lattner | 0eea618 | 2003-06-30 05:09:58 +0000 | [diff] [blame] | 224 | DSGraph::ReturnNodesTy &ReturnNodes = Graph.getReturnNodes(); |
| 225 | |
Chris Lattner | a9c9c02 | 2002-11-11 21:35:13 +0000 | [diff] [blame] | 226 | // Loop over all of the resolvable call sites |
| 227 | unsigned LastCallSiteIdx = ~0U; |
Chris Lattner | 2b4c8df | 2003-06-30 05:27:53 +0000 | [diff] [blame] | 228 | for (DSCallSiteIterator I = DSCallSiteIterator::begin(TempFCs), |
| 229 | E = DSCallSiteIterator::end(TempFCs); I != E; ++I) { |
Chris Lattner | a9c9c02 | 2002-11-11 21:35:13 +0000 | [diff] [blame] | 230 | // If we skipped over any call sites, they must be unresolvable, copy them |
| 231 | // to the real call site list. |
| 232 | LastCallSiteIdx++; |
| 233 | for (; LastCallSiteIdx < I.getCallSiteIdx(); ++LastCallSiteIdx) |
| 234 | AuxCallsList.push_back(TempFCs[LastCallSiteIdx]); |
| 235 | LastCallSiteIdx = I.getCallSiteIdx(); |
Chris Lattner | a107905 | 2002-11-10 06:52:47 +0000 | [diff] [blame] | 236 | |
Chris Lattner | a9c9c02 | 2002-11-11 21:35:13 +0000 | [diff] [blame] | 237 | // Resolve the current call... |
| 238 | Function *Callee = *I; |
Chris Lattner | 744f939 | 2003-07-02 04:37:48 +0000 | [diff] [blame] | 239 | DSCallSite CS = I.getCallSite(); |
Chris Lattner | 0d9bab8 | 2002-07-18 00:12:30 +0000 | [diff] [blame] | 240 | |
Chris Lattner | a9c9c02 | 2002-11-11 21:35:13 +0000 | [diff] [blame] | 241 | if (Callee->isExternal()) { |
| 242 | // Ignore this case, simple varargs functions we cannot stub out! |
Chris Lattner | 0eea618 | 2003-06-30 05:09:58 +0000 | [diff] [blame] | 243 | } else if (ReturnNodes.find(Callee) != ReturnNodes.end()) { |
Chris Lattner | a9c9c02 | 2002-11-11 21:35:13 +0000 | [diff] [blame] | 244 | // Self recursion... simply link up the formal arguments with the |
| 245 | // actual arguments... |
Chris Lattner | 0eea618 | 2003-06-30 05:09:58 +0000 | [diff] [blame] | 246 | DEBUG(std::cerr << " Self Inlining: " << Callee->getName() << "\n"); |
Chris Lattner | a9c9c02 | 2002-11-11 21:35:13 +0000 | [diff] [blame] | 247 | |
| 248 | // Handle self recursion by resolving the arguments and return value |
Chris Lattner | 0eea618 | 2003-06-30 05:09:58 +0000 | [diff] [blame] | 249 | Graph.mergeInGraph(CS, *Callee, Graph, 0); |
Chris Lattner | a9c9c02 | 2002-11-11 21:35:13 +0000 | [diff] [blame] | 250 | |
| 251 | } else { |
Chris Lattner | 744f939 | 2003-07-02 04:37:48 +0000 | [diff] [blame] | 252 | ActualCallees.insert(std::make_pair(&CS.getCallInst(), Callee)); |
| 253 | |
Chris Lattner | a9c9c02 | 2002-11-11 21:35:13 +0000 | [diff] [blame] | 254 | // Get the data structure graph for the called function. |
| 255 | // |
| 256 | DSGraph &GI = getDSGraph(*Callee); // Graph to inline |
| 257 | |
| 258 | DEBUG(std::cerr << " Inlining graph for " << Callee->getName() |
Chris Lattner | 20167e3 | 2003-02-03 19:11:38 +0000 | [diff] [blame] | 259 | << "[" << GI.getGraphSize() << "+" |
Chris Lattner | 5d5b6d6 | 2003-07-01 16:04:18 +0000 | [diff] [blame] | 260 | << GI.getAuxFunctionCalls().size() << "] into '" |
| 261 | << Graph.getFunctionNames() << "' [" << Graph.getGraphSize() << "+" |
Chris Lattner | 20167e3 | 2003-02-03 19:11:38 +0000 | [diff] [blame] | 262 | << Graph.getAuxFunctionCalls().size() << "]\n"); |
Chris Lattner | a9c9c02 | 2002-11-11 21:35:13 +0000 | [diff] [blame] | 263 | |
| 264 | // Handle self recursion by resolving the arguments and return value |
Chris Lattner | 5a54063 | 2003-06-30 03:15:25 +0000 | [diff] [blame] | 265 | Graph.mergeInGraph(CS, *Callee, GI, |
Vikram S. Adve | 61ff029 | 2002-11-27 17:41:13 +0000 | [diff] [blame] | 266 | DSGraph::KeepModRefBits | |
| 267 | DSGraph::StripAllocaBit | DSGraph::DontCloneCallNodes); |
Chris Lattner | d391d70 | 2003-07-02 20:24:42 +0000 | [diff] [blame^] | 268 | ++NumBUInlines; |
Chris Lattner | ae5f603 | 2002-11-17 22:16:28 +0000 | [diff] [blame] | 269 | |
| 270 | #if 0 |
| 271 | Graph.writeGraphToFile(std::cerr, "bu_" + F.getName() + "_after_" + |
| 272 | Callee->getName()); |
| 273 | #endif |
Chris Lattner | a9c9c02 | 2002-11-11 21:35:13 +0000 | [diff] [blame] | 274 | } |
| 275 | } |
| 276 | |
| 277 | // Make sure to catch any leftover unresolvable calls... |
| 278 | for (++LastCallSiteIdx; LastCallSiteIdx < TempFCs.size(); ++LastCallSiteIdx) |
| 279 | AuxCallsList.push_back(TempFCs[LastCallSiteIdx]); |
| 280 | |
| 281 | TempFCs.clear(); |
| 282 | |
| 283 | // Recompute the Incomplete markers. If there are any function calls left |
| 284 | // now that are complete, we must loop! |
| 285 | Graph.maskIncompleteMarkers(); |
Chris Lattner | 394471f | 2003-01-23 22:05:33 +0000 | [diff] [blame] | 286 | Graph.markIncompleteNodes(DSGraph::MarkFormalArgs); |
Chris Lattner | 20167e3 | 2003-02-03 19:11:38 +0000 | [diff] [blame] | 287 | // FIXME: materialize nodes from the globals graph as neccesary... |
Chris Lattner | 394471f | 2003-01-23 22:05:33 +0000 | [diff] [blame] | 288 | Graph.removeDeadNodes(DSGraph::KeepUnreachableGlobals); |
Chris Lattner | a9c9c02 | 2002-11-11 21:35:13 +0000 | [diff] [blame] | 289 | |
Chris Lattner | a9c9c02 | 2002-11-11 21:35:13 +0000 | [diff] [blame] | 290 | //Graph.writeGraphToFile(std::cerr, "bu_" + F.getName()); |
Chris Lattner | a9c9c02 | 2002-11-11 21:35:13 +0000 | [diff] [blame] | 291 | } |
| 292 | |