Chris Lattner | bb2a28f | 2002-03-26 22:39:06 +0000 | [diff] [blame] | 1 | //===- ComputeClosure.cpp - Implement interprocedural closing of graphs ---===// |
| 2 | // |
| 3 | // Compute the interprocedural closure of a data structure graph |
| 4 | // |
| 5 | //===----------------------------------------------------------------------===// |
| 6 | |
| 7 | // DEBUG_IP_CLOSURE - Define this to debug the act of linking up graphs |
| 8 | //#define DEBUG_IP_CLOSURE 1 |
| 9 | |
| 10 | #include "llvm/Analysis/DataStructure.h" |
Chris Lattner | 0ac5429 | 2002-04-09 19:08:28 +0000 | [diff] [blame^] | 11 | #include "llvm/Function.h" |
Chris Lattner | bb2a28f | 2002-03-26 22:39:06 +0000 | [diff] [blame] | 12 | #include "llvm/iOther.h" |
| 13 | #include "Support/STLExtras.h" |
| 14 | #include <algorithm> |
Chris Lattner | bb2a28f | 2002-03-26 22:39:06 +0000 | [diff] [blame] | 15 | |
Chris Lattner | 1120c8b | 2002-03-28 17:56:03 +0000 | [diff] [blame] | 16 | // Make all of the pointers that point to Val also point to N. |
Chris Lattner | bb2a28f | 2002-03-26 22:39:06 +0000 | [diff] [blame] | 17 | // |
Chris Lattner | 1120c8b | 2002-03-28 17:56:03 +0000 | [diff] [blame] | 18 | static void copyEdgesFromTo(PointerVal Val, DSNode *N) { |
Chris Lattner | a13d6ce | 2002-04-01 22:20:48 +0000 | [diff] [blame] | 19 | unsigned ValIdx = Val.Index; |
| 20 | unsigned NLinks = N->getNumLinks(); |
Chris Lattner | 1120c8b | 2002-03-28 17:56:03 +0000 | [diff] [blame] | 21 | |
Chris Lattner | a13d6ce | 2002-04-01 22:20:48 +0000 | [diff] [blame] | 22 | const vector<PointerValSet*> &PVSsToUpdate(Val.Node->getReferrers()); |
| 23 | for (unsigned i = 0, e = PVSsToUpdate.size(); i != e; ++i) { |
| 24 | // Loop over all of the pointers pointing to Val... |
| 25 | PointerValSet &PVS = *PVSsToUpdate[i]; |
| 26 | for (unsigned j = 0, je = PVS.size(); j != je; ++j) { |
| 27 | if (PVS[j].Node == Val.Node && PVS[j].Index >= ValIdx && |
| 28 | PVS[j].Index < ValIdx+NLinks) |
| 29 | PVS.add(PointerVal(N, PVS[j].Index-ValIdx)); |
Chris Lattner | a13d6ce | 2002-04-01 22:20:48 +0000 | [diff] [blame] | 30 | } |
| 31 | } |
Chris Lattner | bb2a28f | 2002-03-26 22:39:06 +0000 | [diff] [blame] | 32 | } |
| 33 | |
Chris Lattner | bb2a28f | 2002-03-26 22:39:06 +0000 | [diff] [blame] | 34 | static void ResolveNodesTo(const PointerVal &FromPtr, |
| 35 | const PointerValSet &ToVals) { |
| 36 | assert(FromPtr.Index == 0 && |
| 37 | "Resolved node return pointer should be index 0!"); |
Chris Lattner | cc0c1b2 | 2002-04-04 19:21:06 +0000 | [diff] [blame] | 38 | DSNode *N = FromPtr.Node; |
Chris Lattner | bb2a28f | 2002-03-26 22:39:06 +0000 | [diff] [blame] | 39 | |
Chris Lattner | 1120c8b | 2002-03-28 17:56:03 +0000 | [diff] [blame] | 40 | // Make everything that pointed to the shadow node also point to the values in |
| 41 | // ToVals... |
Chris Lattner | bb2a28f | 2002-03-26 22:39:06 +0000 | [diff] [blame] | 42 | // |
Chris Lattner | 1120c8b | 2002-03-28 17:56:03 +0000 | [diff] [blame] | 43 | for (unsigned i = 0, e = ToVals.size(); i != e; ++i) |
Chris Lattner | cc0c1b2 | 2002-04-04 19:21:06 +0000 | [diff] [blame] | 44 | copyEdgesFromTo(ToVals[i], N); |
Chris Lattner | bb2a28f | 2002-03-26 22:39:06 +0000 | [diff] [blame] | 45 | |
Chris Lattner | 1120c8b | 2002-03-28 17:56:03 +0000 | [diff] [blame] | 46 | // Make everything that pointed to the shadow node now also point to the |
| 47 | // values it is equivalent to... |
Chris Lattner | cc0c1b2 | 2002-04-04 19:21:06 +0000 | [diff] [blame] | 48 | const vector<PointerValSet*> &PVSToUpdate(N->getReferrers()); |
Chris Lattner | 1120c8b | 2002-03-28 17:56:03 +0000 | [diff] [blame] | 49 | for (unsigned i = 0, e = PVSToUpdate.size(); i != e; ++i) |
| 50 | PVSToUpdate[i]->add(ToVals); |
Chris Lattner | bb2a28f | 2002-03-26 22:39:06 +0000 | [diff] [blame] | 51 | } |
| 52 | |
| 53 | |
| 54 | // ResolveNodeTo - The specified node is now known to point to the set of values |
| 55 | // in ToVals, instead of the old shadow node subgraph that it was pointing to. |
| 56 | // |
| 57 | static void ResolveNodeTo(DSNode *Node, const PointerValSet &ToVals) { |
| 58 | assert(Node->getNumLinks() == 1 && "Resolved node can only be a scalar!!"); |
| 59 | |
Chris Lattner | 1120c8b | 2002-03-28 17:56:03 +0000 | [diff] [blame] | 60 | const PointerValSet &PVS = Node->getLink(0); |
Chris Lattner | bb2a28f | 2002-03-26 22:39:06 +0000 | [diff] [blame] | 61 | |
Chris Lattner | 1120c8b | 2002-03-28 17:56:03 +0000 | [diff] [blame] | 62 | // Only resolve the first pointer, although there many be many pointers here. |
| 63 | // The problem is that the inlined function might return one of the arguments |
| 64 | // to the function, and if so, extra values can be added to the arg or call |
| 65 | // node that point to what the other one got resolved to. Since these will |
| 66 | // be added to the end of the PVS pointed in, we just ignore them. |
| 67 | // |
| 68 | ResolveNodesTo(PVS[0], ToVals); |
Chris Lattner | bb2a28f | 2002-03-26 22:39:06 +0000 | [diff] [blame] | 69 | } |
| 70 | |
| 71 | // isResolvableCallNode - Return true if node is a call node and it is a call |
| 72 | // node that we can inline... |
| 73 | // |
Chris Lattner | 1120c8b | 2002-03-28 17:56:03 +0000 | [diff] [blame] | 74 | static bool isResolvableCallNode(CallDSNode *CN) { |
Chris Lattner | bb2a28f | 2002-03-26 22:39:06 +0000 | [diff] [blame] | 75 | // Only operate on call nodes with direct method calls |
| 76 | Function *F = CN->getCall()->getCalledFunction(); |
| 77 | if (F == 0) return false; |
| 78 | |
| 79 | // Only work on call nodes with direct calls to methods with bodies. |
| 80 | return !F->isExternal(); |
| 81 | } |
| 82 | |
| 83 | |
| 84 | // computeClosure - Replace all of the resolvable call nodes with the contents |
| 85 | // of their corresponding method data structure graph... |
| 86 | // |
| 87 | void FunctionDSGraph::computeClosure(const DataStructure &DS) { |
Chris Lattner | 26cfa66 | 2002-03-31 07:13:27 +0000 | [diff] [blame] | 88 | // Note that this cannot be a real vector because the keys will be changing |
| 89 | // as nodes are eliminated! |
| 90 | // |
Chris Lattner | 1120c8b | 2002-03-28 17:56:03 +0000 | [diff] [blame] | 91 | typedef pair<vector<PointerValSet>, CallInst *> CallDescriptor; |
Chris Lattner | 26cfa66 | 2002-03-31 07:13:27 +0000 | [diff] [blame] | 92 | vector<pair<CallDescriptor, PointerValSet> > CallMap; |
Chris Lattner | bb2a28f | 2002-03-26 22:39:06 +0000 | [diff] [blame] | 93 | |
Chris Lattner | 1120c8b | 2002-03-28 17:56:03 +0000 | [diff] [blame] | 94 | unsigned NumInlines = 0; |
Chris Lattner | bb2a28f | 2002-03-26 22:39:06 +0000 | [diff] [blame] | 95 | |
| 96 | // Loop over the resolvable call nodes... |
Chris Lattner | 1120c8b | 2002-03-28 17:56:03 +0000 | [diff] [blame] | 97 | vector<CallDSNode*>::iterator NI; |
| 98 | NI = std::find_if(CallNodes.begin(), CallNodes.end(), isResolvableCallNode); |
| 99 | while (NI != CallNodes.end()) { |
| 100 | CallDSNode *CN = *NI; |
Chris Lattner | bb2a28f | 2002-03-26 22:39:06 +0000 | [diff] [blame] | 101 | Function *F = CN->getCall()->getCalledFunction(); |
Chris Lattner | bb2a28f | 2002-03-26 22:39:06 +0000 | [diff] [blame] | 102 | |
Chris Lattner | cc0c1b2 | 2002-04-04 19:21:06 +0000 | [diff] [blame] | 103 | if (NumInlines++ == 100) { // CUTE hack huh? |
Chris Lattner | 1120c8b | 2002-03-28 17:56:03 +0000 | [diff] [blame] | 104 | cerr << "Infinite (?) recursion halted\n"; |
| 105 | return; |
| 106 | } |
Chris Lattner | bb2a28f | 2002-03-26 22:39:06 +0000 | [diff] [blame] | 107 | |
Chris Lattner | 1120c8b | 2002-03-28 17:56:03 +0000 | [diff] [blame] | 108 | CallNodes.erase(NI); // Remove the call node from the graph |
Chris Lattner | bb2a28f | 2002-03-26 22:39:06 +0000 | [diff] [blame] | 109 | |
Chris Lattner | 1120c8b | 2002-03-28 17:56:03 +0000 | [diff] [blame] | 110 | unsigned CallNodeOffset = NI-CallNodes.begin(); |
Chris Lattner | bb2a28f | 2002-03-26 22:39:06 +0000 | [diff] [blame] | 111 | |
Chris Lattner | 1120c8b | 2002-03-28 17:56:03 +0000 | [diff] [blame] | 112 | // Find out if we have already incorporated this node... if so, it will be |
| 113 | // in the CallMap... |
Chris Lattner | bb2a28f | 2002-03-26 22:39:06 +0000 | [diff] [blame] | 114 | // |
Chris Lattner | 26cfa66 | 2002-03-31 07:13:27 +0000 | [diff] [blame] | 115 | |
| 116 | #if 0 |
| 117 | cerr << "\nSearching for: " << (void*)CN->getCall() << ": "; |
| 118 | for (unsigned X = 0; X != CN->getArgs().size(); ++X) { |
| 119 | cerr << " " << X << " is\n"; |
| 120 | CN->getArgs().first[X].print(cerr); |
| 121 | } |
| 122 | #endif |
| 123 | |
| 124 | const vector<PointerValSet> &Args = CN->getArgs(); |
| 125 | PointerValSet *CMI = 0; |
| 126 | for (unsigned i = 0, e = CallMap.size(); i != e; ++i) { |
| 127 | #if 0 |
| 128 | cerr << "Found: " << (void*)CallMap[i].first.second << ": "; |
| 129 | for (unsigned X = 0; X != CallMap[i].first.first.size(); ++X) { |
| 130 | cerr << " " << X << " is\n"; CallMap[i].first.first[X].print(cerr); |
| 131 | } |
| 132 | #endif |
| 133 | |
| 134 | // Look to see if the function call takes a superset of the values we are |
| 135 | // providing as input |
| 136 | // |
| 137 | CallDescriptor &CD = CallMap[i].first; |
| 138 | if (CD.second == CN->getCall() && CD.first.size() == Args.size()) { |
| 139 | bool FoundMismatch = false; |
| 140 | for (unsigned j = 0, je = Args.size(); j != je; ++j) { |
| 141 | PointerValSet ArgSet = CD.first[j]; |
| 142 | if (ArgSet.add(Args[j])) { |
| 143 | FoundMismatch = true; break; |
| 144 | } |
| 145 | } |
| 146 | |
| 147 | if (!FoundMismatch) { CMI = &CallMap[i].second; break; } |
| 148 | } |
| 149 | } |
Chris Lattner | bb2a28f | 2002-03-26 22:39:06 +0000 | [diff] [blame] | 150 | |
| 151 | // Hold the set of values that correspond to the incorporated methods |
| 152 | // return set. |
| 153 | // |
| 154 | PointerValSet RetVals; |
| 155 | |
Chris Lattner | 26cfa66 | 2002-03-31 07:13:27 +0000 | [diff] [blame] | 156 | if (CMI) { |
Chris Lattner | 1120c8b | 2002-03-28 17:56:03 +0000 | [diff] [blame] | 157 | // We have already inlined an identical function call! |
Chris Lattner | 26cfa66 | 2002-03-31 07:13:27 +0000 | [diff] [blame] | 158 | RetVals = *CMI; |
Chris Lattner | 1120c8b | 2002-03-28 17:56:03 +0000 | [diff] [blame] | 159 | } else { |
Chris Lattner | bb2a28f | 2002-03-26 22:39:06 +0000 | [diff] [blame] | 160 | // Get the datastructure graph for the new method. Note that we are not |
| 161 | // allowed to modify this graph because it will be the cached graph that |
| 162 | // is returned by other users that want the local datastructure graph for |
| 163 | // a method. |
| 164 | // |
| 165 | const FunctionDSGraph &NewFunction = DS.getDSGraph(F); |
| 166 | |
Chris Lattner | 1120c8b | 2002-03-28 17:56:03 +0000 | [diff] [blame] | 167 | // StartNode - The first node of the incorporated graph, last node of the |
| 168 | // preexisting data structure graph... |
| 169 | // |
| 170 | unsigned StartArgNode = ArgNodes.size(); |
| 171 | unsigned StartAllocNode = AllocNodes.size(); |
Chris Lattner | ea4af65 | 2002-03-27 19:44:33 +0000 | [diff] [blame] | 172 | |
Chris Lattner | bb2a28f | 2002-03-26 22:39:06 +0000 | [diff] [blame] | 173 | // Incorporate a copy of the called function graph into the current graph, |
| 174 | // allowing us to do local transformations to local graph to link |
| 175 | // arguments to call values, and call node to return value... |
| 176 | // |
Chris Lattner | 26cfa66 | 2002-03-31 07:13:27 +0000 | [diff] [blame] | 177 | RetVals = cloneFunctionIntoSelf(NewFunction, false); |
| 178 | CallMap.push_back(make_pair(CallDescriptor(CN->getArgs(), CN->getCall()), |
| 179 | RetVals)); |
Chris Lattner | bb2a28f | 2002-03-26 22:39:06 +0000 | [diff] [blame] | 180 | |
Chris Lattner | 1120c8b | 2002-03-28 17:56:03 +0000 | [diff] [blame] | 181 | // If the call node has arguments, process them now! |
| 182 | if (CN->getNumArgs()) { |
| 183 | // The ArgNodes of the incorporated graph should be the nodes starting |
| 184 | // at StartNode, ordered the same way as the call arguments. The arg |
| 185 | // nodes are seperated by a single shadow node, but that shadow node |
| 186 | // might get eliminated in the process of optimization. |
| 187 | // |
| 188 | for (unsigned i = 0, e = CN->getNumArgs(); i != e; ++i) { |
| 189 | // Get the arg node of the incorporated method... |
| 190 | ArgDSNode *ArgNode = ArgNodes[StartArgNode]; |
| 191 | |
| 192 | // Now we make all of the nodes inside of the incorporated method |
| 193 | // point to the real arguments values, not to the shadow nodes for the |
| 194 | // argument. |
| 195 | // |
| 196 | ResolveNodeTo(ArgNode, CN->getArgValues(i)); |
| 197 | |
| 198 | // Remove the argnode from the set of nodes in this method... |
| 199 | ArgNodes.erase(ArgNodes.begin()+StartArgNode); |
| 200 | |
| 201 | // ArgNode is no longer useful, delete now! |
| 202 | delete ArgNode; |
| 203 | } |
| 204 | } |
| 205 | |
| 206 | // Loop through the nodes, deleting alloca nodes in the inlined function. |
| 207 | // Since the memory has been released, we cannot access their pointer |
| 208 | // fields (with defined results at least), so it is not possible to use |
| 209 | // any pointers to the alloca. Drop them now, and remove the alloca's |
| 210 | // since they are dead (we just removed all links to them). |
Chris Lattner | ea4af65 | 2002-03-27 19:44:33 +0000 | [diff] [blame] | 211 | // |
Chris Lattner | 1120c8b | 2002-03-28 17:56:03 +0000 | [diff] [blame] | 212 | for (unsigned i = StartAllocNode; i != AllocNodes.size(); ++i) |
| 213 | if (AllocNodes[i]->isAllocaNode()) { |
| 214 | AllocDSNode *NDS = AllocNodes[i]; |
| 215 | NDS->removeAllIncomingEdges(); // These edges are invalid now |
| 216 | delete NDS; // Node is dead |
| 217 | AllocNodes.erase(AllocNodes.begin()+i); // Remove slot in Nodes array |
| 218 | --i; // Don't skip the next node |
| 219 | } |
Chris Lattner | bb2a28f | 2002-03-26 22:39:06 +0000 | [diff] [blame] | 220 | } |
| 221 | |
| 222 | // If the function returns a pointer value... Resolve values pointing to |
| 223 | // the shadow nodes pointed to by CN to now point the values in RetVals... |
| 224 | // |
| 225 | if (CN->getNumLinks()) ResolveNodeTo(CN, RetVals); |
| 226 | |
Chris Lattner | bb2a28f | 2002-03-26 22:39:06 +0000 | [diff] [blame] | 227 | // Now the call node is completely destructable. Eliminate it now. |
| 228 | delete CN; |
| 229 | |
Chris Lattner | df8af1c | 2002-03-27 00:53:57 +0000 | [diff] [blame] | 230 | bool Changed = true; |
| 231 | while (Changed) { |
| 232 | // Eliminate shadow nodes that are not distinguishable from some other |
| 233 | // node in the graph... |
| 234 | // |
Chris Lattner | 7d093d4 | 2002-03-28 19:16:48 +0000 | [diff] [blame] | 235 | Changed = UnlinkUndistinguishableNodes(); |
Chris Lattner | bb2a28f | 2002-03-26 22:39:06 +0000 | [diff] [blame] | 236 | |
Chris Lattner | df8af1c | 2002-03-27 00:53:57 +0000 | [diff] [blame] | 237 | // Eliminate shadow nodes that are now extraneous due to linking... |
Chris Lattner | 7d093d4 | 2002-03-28 19:16:48 +0000 | [diff] [blame] | 238 | Changed |= RemoveUnreachableNodes(); |
Chris Lattner | df8af1c | 2002-03-27 00:53:57 +0000 | [diff] [blame] | 239 | } |
Chris Lattner | bb2a28f | 2002-03-26 22:39:06 +0000 | [diff] [blame] | 240 | |
| 241 | //if (F == Func) return; // Only do one self inlining |
| 242 | |
| 243 | // Move on to the next call node... |
Chris Lattner | 1120c8b | 2002-03-28 17:56:03 +0000 | [diff] [blame] | 244 | NI = std::find_if(CallNodes.begin(), CallNodes.end(), isResolvableCallNode); |
Chris Lattner | bb2a28f | 2002-03-26 22:39:06 +0000 | [diff] [blame] | 245 | } |
| 246 | } |