blob: ecfed8dd68802ca7a43e78a6988c9b54e898ca19 [file] [log] [blame]
Chris Lattnerc68c31b2002-07-10 22:38:08 +00001//===- DataStructure.cpp - Implement the core data structure analysis -----===//
Chris Lattnerbb2a28f2002-03-26 22:39:06 +00002//
Chris Lattnerc68c31b2002-07-10 22:38:08 +00003// This file implements the core data structure functionality.
Chris Lattnerbb2a28f2002-03-26 22:39:06 +00004//
5//===----------------------------------------------------------------------===//
6
Chris Lattnerfccd06f2002-10-01 22:33:50 +00007#include "llvm/Analysis/DSGraph.h"
8#include "llvm/Function.h"
Chris Lattnerc68c31b2002-07-10 22:38:08 +00009#include "llvm/DerivedTypes.h"
Chris Lattner7b7200c2002-10-02 04:57:39 +000010#include "llvm/Target/TargetData.h"
Chris Lattnerc68c31b2002-07-10 22:38:08 +000011#include "Support/STLExtras.h"
Chris Lattnerfccd06f2002-10-01 22:33:50 +000012#include "Support/Statistic.h"
Chris Lattner0d9bab82002-07-18 00:12:30 +000013#include <algorithm>
Chris Lattnerfccd06f2002-10-01 22:33:50 +000014#include <set>
Chris Lattnerc68c31b2002-07-10 22:38:08 +000015
Chris Lattnere2219762002-07-18 18:22:40 +000016using std::vector;
17
Chris Lattnerfccd06f2002-10-01 22:33:50 +000018// TODO: FIXME
19namespace DataStructureAnalysis {
20 // isPointerType - Return true if this first class type is big enough to hold
21 // a pointer.
22 //
23 bool isPointerType(const Type *Ty);
24 extern TargetData TD;
25}
26using namespace DataStructureAnalysis;
27
Chris Lattnerbb2a28f2002-03-26 22:39:06 +000028//===----------------------------------------------------------------------===//
Chris Lattnerc68c31b2002-07-10 22:38:08 +000029// DSNode Implementation
30//===----------------------------------------------------------------------===//
Chris Lattnerbb2a28f2002-03-26 22:39:06 +000031
Chris Lattnerfccd06f2002-10-01 22:33:50 +000032DSNode::DSNode(enum NodeTy NT, const Type *T) : NodeType(NT) {
33 // If this node is big enough to have pointer fields, add space for them now.
Chris Lattner7b7200c2002-10-02 04:57:39 +000034 if (T != Type::VoidTy && !isa<FunctionType>(T)) { // Avoid TargetData assert's
35 MergeMap.resize(TD.getTypeSize(T));
36
37 // Assign unique values to all of the elements of MergeMap
38 if (MergeMap.size() < 128) {
39 // Handle the common case of reasonable size structures...
40 for (unsigned i = 0, e = MergeMap.size(); i != e; ++i)
41 MergeMap[i] = -1-i; // Assign -1, -2, -3, ...
42 } else {
43 // It's possible that we have something really big here. In this case,
44 // divide the object into chunks until it will fit into 128 elements.
45 unsigned Multiple = MergeMap.size()/128;
46
47 // It's probably an array, and probably some power of two in size.
48 // Because of this, find the biggest power of two that is bigger than
49 // multiple to use as our real Multiple.
50 unsigned RealMultiple = 2;
Chris Lattner62d928e2002-10-03 21:06:38 +000051 while (RealMultiple <= Multiple) RealMultiple <<= 1;
Chris Lattner7b7200c2002-10-02 04:57:39 +000052
53 unsigned RealBound = MergeMap.size()/RealMultiple;
54 assert(RealBound <= 128 && "Math didn't work out right");
55
56 // Now go through and assign indexes that are between -1 and -128
57 // inclusive
58 //
59 for (unsigned i = 0, e = MergeMap.size(); i != e; ++i)
60 MergeMap[i] = -1-(i % RealBound); // Assign -1, -2, -3...
61 }
62 }
Chris Lattnerfccd06f2002-10-01 22:33:50 +000063
Chris Lattnera3f85862002-10-18 18:22:46 +000064 TypeEntries.push_back(TypeRec(T, 0));
Chris Lattnerc68c31b2002-07-10 22:38:08 +000065}
66
Chris Lattner0d9bab82002-07-18 00:12:30 +000067// DSNode copy constructor... do not copy over the referrers list!
68DSNode::DSNode(const DSNode &N)
Chris Lattner7b7200c2002-10-02 04:57:39 +000069 : Links(N.Links), MergeMap(N.MergeMap),
Chris Lattnerfccd06f2002-10-01 22:33:50 +000070 TypeEntries(N.TypeEntries), Globals(N.Globals), NodeType(N.NodeType) {
Chris Lattner0d9bab82002-07-18 00:12:30 +000071}
72
Chris Lattnerc68c31b2002-07-10 22:38:08 +000073void DSNode::removeReferrer(DSNodeHandle *H) {
74 // Search backwards, because we depopulate the list from the back for
75 // efficiency (because it's a vector).
Chris Lattnere2219762002-07-18 18:22:40 +000076 vector<DSNodeHandle*>::reverse_iterator I =
Chris Lattnerc68c31b2002-07-10 22:38:08 +000077 std::find(Referrers.rbegin(), Referrers.rend(), H);
78 assert(I != Referrers.rend() && "Referrer not pointing to node!");
79 Referrers.erase(I.base()-1);
80}
81
Chris Lattnerf9ae4c52002-07-11 20:32:22 +000082// addGlobal - Add an entry for a global value to the Globals list. This also
83// marks the node with the 'G' flag if it does not already have it.
84//
85void DSNode::addGlobal(GlobalValue *GV) {
Chris Lattner0d9bab82002-07-18 00:12:30 +000086 // Keep the list sorted.
Chris Lattnere2219762002-07-18 18:22:40 +000087 vector<GlobalValue*>::iterator I =
Chris Lattner0d9bab82002-07-18 00:12:30 +000088 std::lower_bound(Globals.begin(), Globals.end(), GV);
89
90 if (I == Globals.end() || *I != GV) {
Chris Lattnerfccd06f2002-10-01 22:33:50 +000091 //assert(GV->getType()->getElementType() == Ty);
Chris Lattner0d9bab82002-07-18 00:12:30 +000092 Globals.insert(I, GV);
93 NodeType |= GlobalNode;
94 }
Chris Lattnerf9ae4c52002-07-11 20:32:22 +000095}
96
97
Chris Lattner7b7200c2002-10-02 04:57:39 +000098/// setLink - Set the link at the specified offset to the specified
99/// NodeHandle, replacing what was there. It is uncommon to use this method,
100/// instead one of the higher level methods should be used, below.
101///
102void DSNode::setLink(unsigned i, const DSNodeHandle &NH) {
103 // Create a new entry in the Links vector to hold a new element for offset.
104 if (!hasLink(i)) {
105 signed char NewIdx = Links.size();
106 // Check to see if we allocate more than 128 distinct links for this node.
107 // If so, just merge with the last one. This really shouldn't ever happen,
108 // but it should work regardless of whether it does or not.
109 //
110 if (NewIdx >= 0) {
111 Links.push_back(NH); // Allocate space: common case
112 } else { // Wrap around? Too many links?
113 NewIdx--; // Merge with whatever happened last
114 assert(NewIdx > 0 && "Should wrap back around");
115 std::cerr << "\n*** DSNode found that requires more than 128 "
116 << "active links at once!\n\n";
117 }
118
119 signed char OldIdx = MergeMap[i];
120 assert (OldIdx < 0 && "Shouldn't contain link!");
121
122 // Make sure that anything aliasing this field gets updated to point to the
123 // new link field.
124 rewriteMergeMap(OldIdx, NewIdx);
125 assert(MergeMap[i] == NewIdx && "Field not replaced!");
126 } else {
127 Links[MergeMap[i]] = NH;
128 }
129}
130
Chris Lattnerc68c31b2002-07-10 22:38:08 +0000131// addEdgeTo - Add an edge from the current node to the specified node. This
132// can cause merging of nodes in the graph.
133//
Chris Lattnerfccd06f2002-10-01 22:33:50 +0000134void DSNode::addEdgeTo(unsigned Offset, const DSNodeHandle &NH) {
Chris Lattner7b7200c2002-10-02 04:57:39 +0000135 assert(Offset < getSize() && "Offset out of range!");
Chris Lattnerfccd06f2002-10-01 22:33:50 +0000136 if (NH.getNode() == 0) return; // Nothing to do
137
Chris Lattner7b7200c2002-10-02 04:57:39 +0000138 if (DSNodeHandle *ExistingNH = getLink(Offset)) {
139 // Merge the two nodes...
140 ExistingNH->mergeWith(NH);
141 } else { // No merging to perform...
142 setLink(Offset, NH); // Just force a link in there...
Chris Lattnerfccd06f2002-10-01 22:33:50 +0000143 }
Chris Lattner7b7200c2002-10-02 04:57:39 +0000144}
Chris Lattnerfccd06f2002-10-01 22:33:50 +0000145
Chris Lattner7b7200c2002-10-02 04:57:39 +0000146/// mergeMappedValues - This is the higher level form of rewriteMergeMap. It is
147/// fully capable of merging links together if neccesary as well as simply
148/// rewriting the map entries.
149///
150void DSNode::mergeMappedValues(signed char V1, signed char V2) {
151 assert(V1 != V2 && "Cannot merge two identical mapped values!");
152
153 if (V1 < 0) { // If there is no outgoing link from V1, merge it with V2
154 if (V2 < 0 && V1 > V2)
155 // If both are not linked, merge to the field closer to 0
156 rewriteMergeMap(V2, V1);
157 else
158 rewriteMergeMap(V1, V2);
159 } else if (V2 < 0) { // Is V2 < 0 && V1 >= 0?
160 rewriteMergeMap(V2, V1); // Merge into the one with the link...
161 } else { // Otherwise, links exist at both locations
162 // Merge Links[V1] with Links[V2] so they point to the same place now...
163 Links[V1].mergeWith(Links[V2]);
164
165 // Merge the V2 link into V1 so that we reduce the overall value of the
166 // links are reduced...
167 //
168 if (V2 < V1) std::swap(V1, V2); // Ensure V1 < V2
169 rewriteMergeMap(V2, V1); // After this, V2 is "dead"
170
171 // Change the user of the last link to use V2 instead
172 if ((unsigned)V2 != Links.size()-1) {
173 rewriteMergeMap(Links.size()-1, V2); // Point to V2 instead of last el...
174 // Make sure V2 points the right DSNode
175 Links[V2] = Links.back();
176 }
177
178 // Reduce the number of distinct outgoing links...
179 Links.pop_back();
Chris Lattnerc68c31b2002-07-10 22:38:08 +0000180 }
Chris Lattnerc68c31b2002-07-10 22:38:08 +0000181}
182
183
Chris Lattnerfccd06f2002-10-01 22:33:50 +0000184// MergeSortedVectors - Efficiently merge a vector into another vector where
185// duplicates are not allowed and both are sorted. This assumes that 'T's are
186// efficiently copyable and have sane comparison semantics.
Chris Lattnerc68c31b2002-07-10 22:38:08 +0000187//
Chris Lattnerfccd06f2002-10-01 22:33:50 +0000188template<typename T>
189void MergeSortedVectors(vector<T> &Dest, const vector<T> &Src) {
190 // By far, the most common cases will be the simple ones. In these cases,
191 // avoid having to allocate a temporary vector...
192 //
193 if (Src.empty()) { // Nothing to merge in...
194 return;
195 } else if (Dest.empty()) { // Just copy the result in...
196 Dest = Src;
197 } else if (Src.size() == 1) { // Insert a single element...
198 const T &V = Src[0];
199 typename vector<T>::iterator I =
200 std::lower_bound(Dest.begin(), Dest.end(), V);
201 if (I == Dest.end() || *I != Src[0]) // If not already contained...
202 Dest.insert(I, Src[0]);
203 } else if (Dest.size() == 1) {
204 T Tmp = Dest[0]; // Save value in temporary...
205 Dest = Src; // Copy over list...
206 typename vector<T>::iterator I =
207 std::lower_bound(Dest.begin(), Dest.end(),Tmp);
208 if (I == Dest.end() || *I != Src[0]) // If not already contained...
209 Dest.insert(I, Src[0]);
210
211 } else {
212 // Make a copy to the side of Dest...
213 vector<T> Old(Dest);
214
215 // Make space for all of the type entries now...
216 Dest.resize(Dest.size()+Src.size());
217
218 // Merge the two sorted ranges together... into Dest.
219 std::merge(Old.begin(), Old.end(), Src.begin(), Src.end(), Dest.begin());
220
221 // Now erase any duplicate entries that may have accumulated into the
222 // vectors (because they were in both of the input sets)
223 Dest.erase(std::unique(Dest.begin(), Dest.end()), Dest.end());
224 }
225}
226
227
228// mergeWith - Merge this node and the specified node, moving all links to and
229// from the argument node into the current node, deleting the node argument.
230// Offset indicates what offset the specified node is to be merged into the
231// current node.
232//
233// The specified node may be a null pointer (in which case, nothing happens).
234//
235void DSNode::mergeWith(const DSNodeHandle &NH, unsigned Offset) {
236 DSNode *N = NH.getNode();
237 if (N == 0 || (N == this && NH.getOffset() == Offset))
238 return; // Noop
239
240 assert(NH.getNode() != this &&
241 "Cannot merge two portions of the same node yet!");
242
243 // If both nodes are not at offset 0, make sure that we are merging the node
244 // at an later offset into the node with the zero offset.
245 //
246 if (Offset > NH.getOffset()) {
247 N->mergeWith(DSNodeHandle(this, Offset), NH.getOffset());
248 return;
249 }
250
251#if 0
252 std::cerr << "\n\nMerging:\n";
253 N->print(std::cerr, 0);
254 std::cerr << " and:\n";
255 print(std::cerr, 0);
256#endif
257
258 // Now we know that Offset <= NH.Offset, so convert it so our "Offset" (with
259 // respect to NH.Offset) is now zero.
260 //
261 unsigned NOffset = NH.getOffset()-Offset;
Chris Lattnerc68c31b2002-07-10 22:38:08 +0000262
Chris Lattner7b7200c2002-10-02 04:57:39 +0000263 unsigned NSize = N->getSize();
264 assert(NSize+NOffset <= getSize() &&
265 "Don't know how to merge extend a merged nodes size yet!");
266
Chris Lattnerc68c31b2002-07-10 22:38:08 +0000267 // Remove all edges pointing at N, causing them to point to 'this' instead.
Chris Lattnerfccd06f2002-10-01 22:33:50 +0000268 // Make sure to adjust their offset, not just the node pointer.
269 //
270 while (!N->Referrers.empty()) {
271 DSNodeHandle &Ref = *N->Referrers.back();
272 Ref = DSNodeHandle(this, NOffset+Ref.getOffset());
273 }
Chris Lattnerc68c31b2002-07-10 22:38:08 +0000274
Chris Lattner7b7200c2002-10-02 04:57:39 +0000275 // We must merge fields in this node due to nodes merged in the source node.
276 // In order to handle this we build a map that converts from the source node's
277 // MergeMap values to our MergeMap values. This map is indexed by the
278 // expression: MergeMap[SMM+SourceNodeSize] so we need to allocate at least
279 // 2*SourceNodeSize elements of space for the mapping. We can do this because
280 // we know that there are at most SourceNodeSize outgoing links in the node
281 // (thus that many positive values) and at most SourceNodeSize distinct fields
282 // (thus that many negative values).
283 //
284 std::vector<signed char> MergeMapMap(NSize*2, 127);
285
286 // Loop through the structures, merging them together...
287 for (unsigned i = 0, e = NSize; i != e; ++i) {
288 // Get what this byte of N maps to...
289 signed char NElement = N->MergeMap[i];
290
291 // Get what we map this byte to...
292 signed char Element = MergeMap[i+NOffset];
293 // We use 127 as a sentinal and don't check for it's existence yet...
294 assert(Element != 127 && "MergeMapMap doesn't permit 127 values yet!");
295
296 signed char CurMappedVal = MergeMapMap[NElement+NSize];
297 if (CurMappedVal == 127) { // Haven't seen this NElement yet?
298 MergeMapMap[NElement+NSize] = Element; // Map the two together...
299 } else if (CurMappedVal != Element) {
300 // If we are mapping two different fields together this means that we need
301 // to merge fields in the current node due to merging in the source node.
302 //
303 mergeMappedValues(CurMappedVal, Element);
304 MergeMapMap[NElement+NSize] = MergeMap[i+NOffset];
305 }
306 }
307
Chris Lattnerc68c31b2002-07-10 22:38:08 +0000308 // Make all of the outgoing links of N now be outgoing links of this. This
309 // can cause recursive merging!
310 //
Chris Lattner7b7200c2002-10-02 04:57:39 +0000311 for (unsigned i = 0, e = NSize; i != e; ++i)
312 if (DSNodeHandle *Link = N->getLink(i)) {
313 addEdgeTo(i+NOffset, *Link);
314 N->MergeMap[i] = -1; // Kill outgoing edge
Chris Lattnerfccd06f2002-10-01 22:33:50 +0000315 }
316
317 // Now that there are no outgoing edges, all of the Links are dead.
318 N->Links.clear();
Chris Lattnerc68c31b2002-07-10 22:38:08 +0000319
Chris Lattnerf9ae4c52002-07-11 20:32:22 +0000320 // Merge the node types
Chris Lattnerc68c31b2002-07-10 22:38:08 +0000321 NodeType |= N->NodeType;
322 N->NodeType = 0; // N is now a dead node.
Chris Lattnerf9ae4c52002-07-11 20:32:22 +0000323
Chris Lattnerfccd06f2002-10-01 22:33:50 +0000324 // If this merging into node has more than just void nodes in it, merge!
325 assert(!N->TypeEntries.empty() && "TypeEntries is empty for a node?");
Chris Lattnera3f85862002-10-18 18:22:46 +0000326 if (N->TypeEntries.size() != 1 || N->TypeEntries[0].Ty != Type::VoidTy) {
Chris Lattnerfccd06f2002-10-01 22:33:50 +0000327 // If the current node just has a Void entry in it, remove it.
Chris Lattnera3f85862002-10-18 18:22:46 +0000328 if (TypeEntries.size() == 1 && TypeEntries[0].Ty == Type::VoidTy)
Chris Lattnerfccd06f2002-10-01 22:33:50 +0000329 TypeEntries.clear();
330
331 // Adjust all of the type entries we are merging in by the offset... and add
332 // them to the TypeEntries list.
333 //
334 if (NOffset != 0) { // This case is common enough to optimize for
335 // Offset all of the TypeEntries in N with their new offset
336 for (unsigned i = 0, e = N->TypeEntries.size(); i != e; ++i)
Chris Lattnera3f85862002-10-18 18:22:46 +0000337 N->TypeEntries[i].Offset += NOffset;
Chris Lattnerfccd06f2002-10-01 22:33:50 +0000338 }
339
340 MergeSortedVectors(TypeEntries, N->TypeEntries);
341
342 N->TypeEntries.clear();
343 }
344
Chris Lattnerf9ae4c52002-07-11 20:32:22 +0000345 // Merge the globals list...
Chris Lattner0d9bab82002-07-18 00:12:30 +0000346 if (!N->Globals.empty()) {
Chris Lattnerfccd06f2002-10-01 22:33:50 +0000347 MergeSortedVectors(Globals, N->Globals);
Chris Lattner0d9bab82002-07-18 00:12:30 +0000348
349 // Delete the globals from the old node...
350 N->Globals.clear();
351 }
Chris Lattnerc68c31b2002-07-10 22:38:08 +0000352}
353
Vikram S. Adve42fd1692002-10-20 18:07:37 +0000354
355template<typename _CopierFunction>
356DSCallSite::DSCallSite(const DSCallSite& FromCall,
357 _CopierFunction nodeCopier)
358 : std::vector<DSNodeHandle>(),
359 caller(&FromCall.getCaller()),
360 callInst(&FromCall.getCallInst()) {
361
362 reserve(FromCall.size());
363 for (unsigned j = 0, ej = FromCall.size(); j != ej; ++j)
364 push_back((&nodeCopier == (_CopierFunction*) 0)? DSNodeHandle(FromCall[j])
365 : nodeCopier(&FromCall[j]));
366}
367
368
Chris Lattnerc68c31b2002-07-10 22:38:08 +0000369//===----------------------------------------------------------------------===//
370// DSGraph Implementation
371//===----------------------------------------------------------------------===//
372
Chris Lattnerfccd06f2002-10-01 22:33:50 +0000373DSGraph::DSGraph(const DSGraph &G) : Func(G.Func) {
374 std::map<const DSNode*, DSNode*> NodeMap;
Vikram S. Adve355e2ca2002-07-30 22:05:22 +0000375 RetNode = cloneInto(G, ValueMap, NodeMap);
Chris Lattner0d9bab82002-07-18 00:12:30 +0000376}
377
Chris Lattnerc68c31b2002-07-10 22:38:08 +0000378DSGraph::~DSGraph() {
379 FunctionCalls.clear();
380 ValueMap.clear();
381 RetNode = 0;
382
383#ifndef NDEBUG
384 // Drop all intra-node references, so that assertions don't fail...
385 std::for_each(Nodes.begin(), Nodes.end(),
386 std::mem_fun(&DSNode::dropAllReferences));
387#endif
388
389 // Delete all of the nodes themselves...
390 std::for_each(Nodes.begin(), Nodes.end(), deleter<DSNode>);
391}
392
Chris Lattner0d9bab82002-07-18 00:12:30 +0000393// dump - Allow inspection of graph in a debugger.
394void DSGraph::dump() const { print(std::cerr); }
395
Chris Lattnerfccd06f2002-10-01 22:33:50 +0000396
Vikram S. Adve42fd1692002-10-20 18:07:37 +0000397DSNodeHandle copyHelper(const DSNodeHandle* fromNode,
398 std::map<const DSNode*, DSNode*> *NodeMap) {
399 return DSNodeHandle((*NodeMap)[fromNode->getNode()], fromNode->getOffset());
400}
401
402// Helper function used to clone a function list.
403//
404static void CopyFunctionCallsList(const vector<DSCallSite>& fromCalls,
405 vector<DSCallSite> &toCalls,
406 std::map<const DSNode*, DSNode*> &NodeMap) {
Vikram S. Adve355e2ca2002-07-30 22:05:22 +0000407 unsigned FC = toCalls.size(); // FirstCall
408 toCalls.reserve(FC+fromCalls.size());
Vikram S. Adve42fd1692002-10-20 18:07:37 +0000409 for (unsigned i = 0, ei = fromCalls.size(); i != ei; ++i)
410 toCalls.push_back(DSCallSite(fromCalls[i],
411 std::bind2nd(std::ptr_fun(&copyHelper), &NodeMap)));
Vikram S. Adve355e2ca2002-07-30 22:05:22 +0000412}
413
Chris Lattnerfccd06f2002-10-01 22:33:50 +0000414/// remapLinks - Change all of the Links in the current node according to the
415/// specified mapping.
416void DSNode::remapLinks(std::map<const DSNode*, DSNode*> &OldNodeMap) {
417 for (unsigned i = 0, e = Links.size(); i != e; ++i)
418 Links[i].setNode(OldNodeMap[Links[i].getNode()]);
419}
Vikram S. Adve355e2ca2002-07-30 22:05:22 +0000420
Vikram S. Adve42fd1692002-10-20 18:07:37 +0000421
Chris Lattner0d9bab82002-07-18 00:12:30 +0000422// cloneInto - Clone the specified DSGraph into the current graph, returning the
423// Return node of the graph. The translated ValueMap for the old function is
424// filled into the OldValMap member. If StripLocals is set to true, Scalar and
425// Alloca markers are removed from the graph, as the graph is being cloned into
426// a calling function's graph.
427//
Chris Lattnerfccd06f2002-10-01 22:33:50 +0000428DSNodeHandle DSGraph::cloneInto(const DSGraph &G,
429 std::map<Value*, DSNodeHandle> &OldValMap,
430 std::map<const DSNode*, DSNode*> &OldNodeMap,
431 bool StripScalars, bool StripAllocas,
432 bool CopyCallers, bool CopyOrigCalls) {
433 assert(OldNodeMap.empty() && "Returned OldNodeMap should be empty!");
Chris Lattner0d9bab82002-07-18 00:12:30 +0000434
Vikram S. Adve355e2ca2002-07-30 22:05:22 +0000435 unsigned FN = Nodes.size(); // First new node...
Chris Lattner0d9bab82002-07-18 00:12:30 +0000436
437 // Duplicate all of the nodes, populating the node map...
438 Nodes.reserve(FN+G.Nodes.size());
439 for (unsigned i = 0, e = G.Nodes.size(); i != e; ++i) {
Chris Lattnerfccd06f2002-10-01 22:33:50 +0000440 DSNode *Old = G.Nodes[i];
441 DSNode *New = new DSNode(*Old);
Chris Lattner0d9bab82002-07-18 00:12:30 +0000442 Nodes.push_back(New);
Vikram S. Adve6aa0d622002-07-18 16:12:08 +0000443 OldNodeMap[Old] = New;
Chris Lattner0d9bab82002-07-18 00:12:30 +0000444 }
445
Vikram S. Adve355e2ca2002-07-30 22:05:22 +0000446 // Rewrite the links in the new nodes to point into the current graph now.
Chris Lattner0d9bab82002-07-18 00:12:30 +0000447 for (unsigned i = FN, e = Nodes.size(); i != e; ++i)
Chris Lattnerfccd06f2002-10-01 22:33:50 +0000448 Nodes[i]->remapLinks(OldNodeMap);
Chris Lattner0d9bab82002-07-18 00:12:30 +0000449
Vikram S. Adve355e2ca2002-07-30 22:05:22 +0000450 // Remove local markers as specified
Chris Lattnerfccd06f2002-10-01 22:33:50 +0000451 unsigned char StripBits = (StripScalars ? DSNode::ScalarNode : 0) |
452 (StripAllocas ? DSNode::AllocaNode : 0);
453 if (StripBits)
Chris Lattner0d9bab82002-07-18 00:12:30 +0000454 for (unsigned i = FN, e = Nodes.size(); i != e; ++i)
Chris Lattnerfccd06f2002-10-01 22:33:50 +0000455 Nodes[i]->NodeType &= ~StripBits;
Chris Lattner0d9bab82002-07-18 00:12:30 +0000456
Chris Lattnercf15db32002-10-17 20:09:52 +0000457 // Copy the value map... and merge all of the global nodes...
Chris Lattner0d9bab82002-07-18 00:12:30 +0000458 for (std::map<Value*, DSNodeHandle>::const_iterator I = G.ValueMap.begin(),
Chris Lattnercf15db32002-10-17 20:09:52 +0000459 E = G.ValueMap.end(); I != E; ++I) {
460 DSNodeHandle &H = OldValMap[I->first];
461 H = DSNodeHandle(OldNodeMap[I->second.getNode()], I->second.getOffset());
462
463 if (isa<GlobalValue>(I->first)) { // Is this a global?
464 std::map<Value*, DSNodeHandle>::iterator GVI = ValueMap.find(I->first);
465 if (GVI != ValueMap.end()) { // Is the global value in this fun already?
466 GVI->second.mergeWith(H);
467 } else {
468 ValueMap[I->first] = H; // Add global pointer to this graph
469 }
470 }
471 }
Chris Lattnere2219762002-07-18 18:22:40 +0000472 // Copy the function calls list...
Vikram S. Adve355e2ca2002-07-30 22:05:22 +0000473 CopyFunctionCallsList(G.FunctionCalls, FunctionCalls, OldNodeMap);
Chris Lattnerfccd06f2002-10-01 22:33:50 +0000474
Chris Lattnercf15db32002-10-17 20:09:52 +0000475
Chris Lattner0d9bab82002-07-18 00:12:30 +0000476 // Return the returned node pointer...
Chris Lattnerfccd06f2002-10-01 22:33:50 +0000477 return DSNodeHandle(OldNodeMap[G.RetNode.getNode()], G.RetNode.getOffset());
Chris Lattner0d9bab82002-07-18 00:12:30 +0000478}
479
Chris Lattnerfccd06f2002-10-01 22:33:50 +0000480#if 0
Vikram S. Adve355e2ca2002-07-30 22:05:22 +0000481// cloneGlobalInto - Clone the given global node and all its target links
482// (and all their llinks, recursively).
483//
Chris Lattnerfccd06f2002-10-01 22:33:50 +0000484DSNode *DSGraph::cloneGlobalInto(const DSNode *GNode) {
Vikram S. Adve355e2ca2002-07-30 22:05:22 +0000485 if (GNode == 0 || GNode->getGlobals().size() == 0) return 0;
486
487 // If a clone has already been created for GNode, return it.
488 DSNodeHandle& ValMapEntry = ValueMap[GNode->getGlobals()[0]];
489 if (ValMapEntry != 0)
490 return ValMapEntry;
491
492 // Clone the node and update the ValMap.
493 DSNode* NewNode = new DSNode(*GNode);
494 ValMapEntry = NewNode; // j=0 case of loop below!
495 Nodes.push_back(NewNode);
496 for (unsigned j = 1, N = NewNode->getGlobals().size(); j < N; ++j)
497 ValueMap[NewNode->getGlobals()[j]] = NewNode;
498
499 // Rewrite the links in the new node to point into the current graph.
500 for (unsigned j = 0, e = GNode->getNumLinks(); j != e; ++j)
501 NewNode->setLink(j, cloneGlobalInto(GNode->getLink(j)));
502
503 return NewNode;
504}
Chris Lattnerfccd06f2002-10-01 22:33:50 +0000505#endif
Vikram S. Adve355e2ca2002-07-30 22:05:22 +0000506
507
Chris Lattner0d9bab82002-07-18 00:12:30 +0000508// markIncompleteNodes - Mark the specified node as having contents that are not
509// known with the current analysis we have performed. Because a node makes all
510// of the nodes it can reach imcomplete if the node itself is incomplete, we
511// must recursively traverse the data structure graph, marking all reachable
512// nodes as incomplete.
513//
514static void markIncompleteNode(DSNode *N) {
515 // Stop recursion if no node, or if node already marked...
516 if (N == 0 || (N->NodeType & DSNode::Incomplete)) return;
517
518 // Actually mark the node
519 N->NodeType |= DSNode::Incomplete;
520
521 // Recusively process children...
Chris Lattnerfccd06f2002-10-01 22:33:50 +0000522 for (unsigned i = 0, e = N->getSize(); i != e; ++i)
523 if (DSNodeHandle *DSNH = N->getLink(i))
524 markIncompleteNode(DSNH->getNode());
Chris Lattner0d9bab82002-07-18 00:12:30 +0000525}
526
527
528// markIncompleteNodes - Traverse the graph, identifying nodes that may be
529// modified by other functions that have not been resolved yet. This marks
530// nodes that are reachable through three sources of "unknownness":
531//
532// Global Variables, Function Calls, and Incoming Arguments
533//
534// For any node that may have unknown components (because something outside the
535// scope of current analysis may have modified it), the 'Incomplete' flag is
536// added to the NodeType.
537//
Vikram S. Adve355e2ca2002-07-30 22:05:22 +0000538void DSGraph::markIncompleteNodes(bool markFormalArgs) {
Chris Lattner0d9bab82002-07-18 00:12:30 +0000539 // Mark any incoming arguments as incomplete...
Chris Lattnerfccd06f2002-10-01 22:33:50 +0000540 if (markFormalArgs && Func)
541 for (Function::aiterator I = Func->abegin(), E = Func->aend(); I != E; ++I)
542 if (isPointerType(I->getType()) && ValueMap.find(I) != ValueMap.end()) {
543 DSNodeHandle &INH = ValueMap[I];
544 if (INH.getNode() && INH.hasLink(0))
545 markIncompleteNode(ValueMap[I].getLink(0)->getNode());
546 }
Chris Lattner0d9bab82002-07-18 00:12:30 +0000547
548 // Mark stuff passed into functions calls as being incomplete...
549 for (unsigned i = 0, e = FunctionCalls.size(); i != e; ++i) {
Vikram S. Adve42fd1692002-10-20 18:07:37 +0000550 DSCallSite &Args = FunctionCalls[i];
Chris Lattnere2219762002-07-18 18:22:40 +0000551 // Then the return value is certainly incomplete!
Vikram S. Adve42fd1692002-10-20 18:07:37 +0000552 markIncompleteNode(Args.getReturnValueNode().getNode());
Chris Lattner0d9bab82002-07-18 00:12:30 +0000553
554 // The call does not make the function argument incomplete...
555
556 // All arguments to the function call are incomplete though!
557 for (unsigned i = 2, e = Args.size(); i != e; ++i)
Chris Lattnerfccd06f2002-10-01 22:33:50 +0000558 markIncompleteNode(Args[i].getNode());
Chris Lattner0d9bab82002-07-18 00:12:30 +0000559 }
560
Chris Lattner055dc2c2002-07-18 15:54:42 +0000561 // Mark all of the nodes pointed to by global or cast nodes as incomplete...
Chris Lattner0d9bab82002-07-18 00:12:30 +0000562 for (unsigned i = 0, e = Nodes.size(); i != e; ++i)
Chris Lattnerfccd06f2002-10-01 22:33:50 +0000563 if (Nodes[i]->NodeType & DSNode::GlobalNode) {
Chris Lattner0d9bab82002-07-18 00:12:30 +0000564 DSNode *N = Nodes[i];
Chris Lattnerfccd06f2002-10-01 22:33:50 +0000565 for (unsigned i = 0, e = N->getSize(); i != e; ++i)
566 if (DSNodeHandle *DSNH = N->getLink(i))
567 markIncompleteNode(DSNH->getNode());
Chris Lattner0d9bab82002-07-18 00:12:30 +0000568 }
569}
570
Vikram S. Adve355e2ca2002-07-30 22:05:22 +0000571// removeRefsToGlobal - Helper function that removes globals from the
572// ValueMap so that the referrer count will go down to zero.
Chris Lattnerfccd06f2002-10-01 22:33:50 +0000573static void removeRefsToGlobal(DSNode* N,
574 std::map<Value*, DSNodeHandle> &ValueMap) {
Vikram S. Adve355e2ca2002-07-30 22:05:22 +0000575 while (!N->getGlobals().empty()) {
576 GlobalValue *GV = N->getGlobals().back();
577 N->getGlobals().pop_back();
578 ValueMap.erase(GV);
579 }
580}
581
582
Chris Lattner0d9bab82002-07-18 00:12:30 +0000583// isNodeDead - This method checks to see if a node is dead, and if it isn't, it
584// checks to see if there are simple transformations that it can do to make it
585// dead.
586//
587bool DSGraph::isNodeDead(DSNode *N) {
588 // Is it a trivially dead shadow node...
589 if (N->getReferrers().empty() && N->NodeType == 0)
590 return true;
591
592 // Is it a function node or some other trivially unused global?
Vikram S. Adve355e2ca2002-07-30 22:05:22 +0000593 if (N->NodeType != 0 &&
594 (N->NodeType & ~DSNode::GlobalNode) == 0 &&
Chris Lattnerfccd06f2002-10-01 22:33:50 +0000595 N->getSize() == 0 &&
Chris Lattner0d9bab82002-07-18 00:12:30 +0000596 N->getReferrers().size() == N->getGlobals().size()) {
597
Chris Lattnera00397e2002-10-03 21:55:28 +0000598 // Remove the globals from the ValueMap, so that the referrer count will go
Chris Lattner0d9bab82002-07-18 00:12:30 +0000599 // down to zero.
Vikram S. Adve355e2ca2002-07-30 22:05:22 +0000600 removeRefsToGlobal(N, ValueMap);
Chris Lattner0d9bab82002-07-18 00:12:30 +0000601 assert(N->getReferrers().empty() && "Referrers should all be gone now!");
602 return true;
603 }
604
605 return false;
606}
607
Vikram S. Adve42fd1692002-10-20 18:07:37 +0000608static void removeIdenticalCalls(vector<DSCallSite> &Calls,
Chris Lattner7541b892002-07-31 19:32:12 +0000609 const std::string &where) {
Vikram S. Adve355e2ca2002-07-30 22:05:22 +0000610 // Remove trivially identical function calls
611 unsigned NumFns = Calls.size();
612 std::sort(Calls.begin(), Calls.end());
613 Calls.erase(std::unique(Calls.begin(), Calls.end()),
614 Calls.end());
615
616 DEBUG(if (NumFns != Calls.size())
Chris Lattner7541b892002-07-31 19:32:12 +0000617 std::cerr << "Merged " << (NumFns-Calls.size())
618 << " call nodes in " << where << "\n";);
Vikram S. Adve355e2ca2002-07-30 22:05:22 +0000619}
Chris Lattner0d9bab82002-07-18 00:12:30 +0000620
Chris Lattnere2219762002-07-18 18:22:40 +0000621// removeTriviallyDeadNodes - After the graph has been constructed, this method
622// removes all unreachable nodes that are created because they got merged with
623// other nodes in the graph. These nodes will all be trivially unreachable, so
624// we don't have to perform any non-trivial analysis here.
Chris Lattner0d9bab82002-07-18 00:12:30 +0000625//
Vikram S. Adve355e2ca2002-07-30 22:05:22 +0000626void DSGraph::removeTriviallyDeadNodes(bool KeepAllGlobals) {
Chris Lattner0d9bab82002-07-18 00:12:30 +0000627 for (unsigned i = 0; i != Nodes.size(); ++i)
Chris Lattnera00397e2002-10-03 21:55:28 +0000628 if (!KeepAllGlobals || !(Nodes[i]->NodeType & DSNode::GlobalNode))
Vikram S. Adve355e2ca2002-07-30 22:05:22 +0000629 if (isNodeDead(Nodes[i])) { // This node is dead!
630 delete Nodes[i]; // Free memory...
631 Nodes.erase(Nodes.begin()+i--); // Remove from node list...
632 }
Chris Lattner0d9bab82002-07-18 00:12:30 +0000633
Chris Lattnerfccd06f2002-10-01 22:33:50 +0000634 removeIdenticalCalls(FunctionCalls, Func ? Func->getName() : "");
Chris Lattner0d9bab82002-07-18 00:12:30 +0000635}
636
637
Chris Lattnerfccd06f2002-10-01 22:33:50 +0000638// markAlive - Simple graph walker that recursively traverses the graph, marking
Chris Lattnere2219762002-07-18 18:22:40 +0000639// stuff to be alive.
640//
641static void markAlive(DSNode *N, std::set<DSNode*> &Alive) {
Vikram S. Adve355e2ca2002-07-30 22:05:22 +0000642 if (N == 0) return;
Chris Lattnere2219762002-07-18 18:22:40 +0000643
644 Alive.insert(N);
Chris Lattnerfccd06f2002-10-01 22:33:50 +0000645 for (unsigned i = 0, e = N->getSize(); i != e; ++i)
646 if (DSNodeHandle *DSNH = N->getLink(i))
647 if (!Alive.count(DSNH->getNode()))
648 markAlive(DSNH->getNode(), Alive);
Chris Lattnere2219762002-07-18 18:22:40 +0000649}
650
Vikram S. Adve355e2ca2002-07-30 22:05:22 +0000651static bool checkGlobalAlive(DSNode *N, std::set<DSNode*> &Alive,
652 std::set<DSNode*> &Visiting) {
653 if (N == 0) return false;
654
Chris Lattnerfccd06f2002-10-01 22:33:50 +0000655 if (Visiting.count(N)) return false; // terminate recursion on a cycle
Vikram S. Adve355e2ca2002-07-30 22:05:22 +0000656 Visiting.insert(N);
657
658 // If any immediate successor is alive, N is alive
Chris Lattnerfccd06f2002-10-01 22:33:50 +0000659 for (unsigned i = 0, e = N->getSize(); i != e; ++i)
660 if (DSNodeHandle *DSNH = N->getLink(i))
661 if (Alive.count(DSNH->getNode())) {
662 Visiting.erase(N);
663 return true;
664 }
Vikram S. Adve355e2ca2002-07-30 22:05:22 +0000665
666 // Else if any successor reaches a live node, N is alive
Chris Lattnerfccd06f2002-10-01 22:33:50 +0000667 for (unsigned i = 0, e = N->getSize(); i != e; ++i)
668 if (DSNodeHandle *DSNH = N->getLink(i))
669 if (checkGlobalAlive(DSNH->getNode(), Alive, Visiting)) {
670 Visiting.erase(N); return true;
671 }
Vikram S. Adve355e2ca2002-07-30 22:05:22 +0000672
673 Visiting.erase(N);
674 return false;
675}
676
677
678// markGlobalsIteration - Recursive helper function for markGlobalsAlive().
679// This would be unnecessary if function calls were real nodes! In that case,
680// the simple iterative loop in the first few lines below suffice.
681//
682static void markGlobalsIteration(std::set<DSNode*>& GlobalNodes,
Vikram S. Adve42fd1692002-10-20 18:07:37 +0000683 vector<DSCallSite> &Calls,
Vikram S. Adve355e2ca2002-07-30 22:05:22 +0000684 std::set<DSNode*> &Alive,
685 bool FilterCalls) {
686
687 // Iterate, marking globals or cast nodes alive until no new live nodes
688 // are added to Alive
689 std::set<DSNode*> Visiting; // Used to identify cycles
690 std::set<DSNode*>::iterator I=GlobalNodes.begin(), E=GlobalNodes.end();
691 for (size_t liveCount = 0; liveCount < Alive.size(); ) {
692 liveCount = Alive.size();
693 for ( ; I != E; ++I)
694 if (Alive.count(*I) == 0) {
695 Visiting.clear();
696 if (checkGlobalAlive(*I, Alive, Visiting))
697 markAlive(*I, Alive);
698 }
699 }
700
701 // Find function calls with some dead and some live nodes.
702 // Since all call nodes must be live if any one is live, we have to mark
703 // all nodes of the call as live and continue the iteration (via recursion).
704 if (FilterCalls) {
705 bool recurse = false;
706 for (int i = 0, ei = Calls.size(); i < ei; ++i) {
707 bool CallIsDead = true, CallHasDeadArg = false;
708 for (unsigned j = 0, ej = Calls[i].size(); j != ej; ++j) {
Chris Lattnerfccd06f2002-10-01 22:33:50 +0000709 bool argIsDead = Calls[i][j].getNode() == 0 ||
710 Alive.count(Calls[i][j].getNode()) == 0;
711 CallHasDeadArg |= (Calls[i][j].getNode() != 0 && argIsDead);
712 CallIsDead &= argIsDead;
Vikram S. Adve355e2ca2002-07-30 22:05:22 +0000713 }
714 if (!CallIsDead && CallHasDeadArg) {
715 // Some node in this call is live and another is dead.
716 // Mark all nodes of call as live and iterate once more.
717 recurse = true;
718 for (unsigned j = 0, ej = Calls[i].size(); j != ej; ++j)
Chris Lattnerfccd06f2002-10-01 22:33:50 +0000719 markAlive(Calls[i][j].getNode(), Alive);
Vikram S. Adve355e2ca2002-07-30 22:05:22 +0000720 }
721 }
722 if (recurse)
723 markGlobalsIteration(GlobalNodes, Calls, Alive, FilterCalls);
724 }
725}
726
727
728// markGlobalsAlive - Mark global nodes and cast nodes alive if they
729// can reach any other live node. Since this can produce new live nodes,
730// we use a simple iterative algorithm.
731//
Chris Lattnerfccd06f2002-10-01 22:33:50 +0000732static void markGlobalsAlive(DSGraph &G, std::set<DSNode*> &Alive,
Vikram S. Adve355e2ca2002-07-30 22:05:22 +0000733 bool FilterCalls) {
734 // Add global and cast nodes to a set so we don't walk all nodes every time
735 std::set<DSNode*> GlobalNodes;
736 for (unsigned i = 0, e = G.getNodes().size(); i != e; ++i)
Chris Lattnerfccd06f2002-10-01 22:33:50 +0000737 if (G.getNodes()[i]->NodeType & DSNode::GlobalNode)
Vikram S. Adve355e2ca2002-07-30 22:05:22 +0000738 GlobalNodes.insert(G.getNodes()[i]);
739
740 // Add all call nodes to the same set
Vikram S. Adve42fd1692002-10-20 18:07:37 +0000741 vector<DSCallSite> &Calls = G.getFunctionCalls();
Vikram S. Adve355e2ca2002-07-30 22:05:22 +0000742 if (FilterCalls) {
743 for (unsigned i = 0, e = Calls.size(); i != e; ++i)
744 for (unsigned j = 0, e = Calls[i].size(); j != e; ++j)
Chris Lattnerfccd06f2002-10-01 22:33:50 +0000745 if (Calls[i][j].getNode())
746 GlobalNodes.insert(Calls[i][j].getNode());
Vikram S. Adve355e2ca2002-07-30 22:05:22 +0000747 }
748
749 // Iterate and recurse until no new live node are discovered.
750 // This would be a simple iterative loop if function calls were real nodes!
751 markGlobalsIteration(GlobalNodes, Calls, Alive, FilterCalls);
752
753 // Free up references to dead globals from the ValueMap
754 std::set<DSNode*>::iterator I=GlobalNodes.begin(), E=GlobalNodes.end();
755 for( ; I != E; ++I)
756 if (Alive.count(*I) == 0)
757 removeRefsToGlobal(*I, G.getValueMap());
758
759 // Delete dead function calls
760 if (FilterCalls)
761 for (int ei = Calls.size(), i = ei-1; i >= 0; --i) {
762 bool CallIsDead = true;
Chris Lattnerfccd06f2002-10-01 22:33:50 +0000763 for (unsigned j = 0, ej = Calls[i].size(); CallIsDead && j != ej; ++j)
764 CallIsDead = Alive.count(Calls[i][j].getNode()) == 0;
Vikram S. Adve355e2ca2002-07-30 22:05:22 +0000765 if (CallIsDead)
766 Calls.erase(Calls.begin() + i); // remove the call entirely
767 }
768}
Chris Lattnere2219762002-07-18 18:22:40 +0000769
770// removeDeadNodes - Use a more powerful reachability analysis to eliminate
771// subgraphs that are unreachable. This often occurs because the data
772// structure doesn't "escape" into it's caller, and thus should be eliminated
773// from the caller's graph entirely. This is only appropriate to use when
774// inlining graphs.
775//
Vikram S. Adve355e2ca2002-07-30 22:05:22 +0000776void DSGraph::removeDeadNodes(bool KeepAllGlobals, bool KeepCalls) {
777 assert((!KeepAllGlobals || KeepCalls) &&
778 "KeepAllGlobals without KeepCalls is meaningless");
779
Chris Lattnere2219762002-07-18 18:22:40 +0000780 // Reduce the amount of work we have to do...
Vikram S. Adve355e2ca2002-07-30 22:05:22 +0000781 removeTriviallyDeadNodes(KeepAllGlobals);
782
Chris Lattnere2219762002-07-18 18:22:40 +0000783 // FIXME: Merge nontrivially identical call nodes...
784
785 // Alive - a set that holds all nodes found to be reachable/alive.
786 std::set<DSNode*> Alive;
787
Vikram S. Adve355e2ca2002-07-30 22:05:22 +0000788 // If KeepCalls, mark all nodes reachable by call nodes as alive...
789 if (KeepCalls)
790 for (unsigned i = 0, e = FunctionCalls.size(); i != e; ++i)
791 for (unsigned j = 0, e = FunctionCalls[i].size(); j != e; ++j)
Chris Lattnerfccd06f2002-10-01 22:33:50 +0000792 markAlive(FunctionCalls[i][j].getNode(), Alive);
Chris Lattnere2219762002-07-18 18:22:40 +0000793
Chris Lattnerfccd06f2002-10-01 22:33:50 +0000794#if 0
Chris Lattnere2219762002-07-18 18:22:40 +0000795 for (unsigned i = 0, e = OrigFunctionCalls.size(); i != e; ++i)
796 for (unsigned j = 0, e = OrigFunctionCalls[i].size(); j != e; ++j)
Chris Lattnerfccd06f2002-10-01 22:33:50 +0000797 markAlive(OrigFunctionCalls[i][j].getNode(), Alive);
798#endif
Chris Lattnere2219762002-07-18 18:22:40 +0000799
Vikram S. Adve355e2ca2002-07-30 22:05:22 +0000800 // Mark all nodes reachable by scalar nodes (and global nodes, if
801 // keeping them was specified) as alive...
Chris Lattnerfccd06f2002-10-01 22:33:50 +0000802 unsigned char keepBits = DSNode::ScalarNode |
803 (KeepAllGlobals ? DSNode::GlobalNode : 0);
Chris Lattnere2219762002-07-18 18:22:40 +0000804 for (unsigned i = 0, e = Nodes.size(); i != e; ++i)
Vikram S. Adve355e2ca2002-07-30 22:05:22 +0000805 if (Nodes[i]->NodeType & keepBits)
Chris Lattnere2219762002-07-18 18:22:40 +0000806 markAlive(Nodes[i], Alive);
807
Vikram S. Adve355e2ca2002-07-30 22:05:22 +0000808 // The return value is alive as well...
Chris Lattnerfccd06f2002-10-01 22:33:50 +0000809 markAlive(RetNode.getNode(), Alive);
Vikram S. Adve355e2ca2002-07-30 22:05:22 +0000810
811 // Mark all globals or cast nodes that can reach a live node as alive.
812 // This also marks all nodes reachable from such nodes as alive.
813 // Of course, if KeepAllGlobals is specified, they would be live already.
814 if (! KeepAllGlobals)
815 markGlobalsAlive(*this, Alive, ! KeepCalls);
816
Chris Lattnere2219762002-07-18 18:22:40 +0000817 // Loop over all unreachable nodes, dropping their references...
Chris Lattnerfccd06f2002-10-01 22:33:50 +0000818 vector<DSNode*> DeadNodes;
Chris Lattnere2219762002-07-18 18:22:40 +0000819 DeadNodes.reserve(Nodes.size()); // Only one allocation is allowed.
820 for (unsigned i = 0; i != Nodes.size(); ++i)
821 if (!Alive.count(Nodes[i])) {
822 DSNode *N = Nodes[i];
823 Nodes.erase(Nodes.begin()+i--); // Erase node from alive list.
824 DeadNodes.push_back(N); // Add node to our list of dead nodes
825 N->dropAllReferences(); // Drop all outgoing edges
826 }
827
Chris Lattnere2219762002-07-18 18:22:40 +0000828 // Delete all dead nodes...
829 std::for_each(DeadNodes.begin(), DeadNodes.end(), deleter<DSNode>);
830}
831
832
833
Chris Lattner0d9bab82002-07-18 00:12:30 +0000834// maskNodeTypes - Apply a mask to all of the node types in the graph. This
835// is useful for clearing out markers like Scalar or Incomplete.
836//
837void DSGraph::maskNodeTypes(unsigned char Mask) {
838 for (unsigned i = 0, e = Nodes.size(); i != e; ++i)
839 Nodes[i]->NodeType &= Mask;
840}
841
842
Chris Lattnerfccd06f2002-10-01 22:33:50 +0000843#if 0
Chris Lattnerc68c31b2002-07-10 22:38:08 +0000844//===----------------------------------------------------------------------===//
Vikram S. Adve355e2ca2002-07-30 22:05:22 +0000845// GlobalDSGraph Implementation
846//===----------------------------------------------------------------------===//
847
848GlobalDSGraph::GlobalDSGraph() : DSGraph(*(Function*)0, this) {
849}
850
851GlobalDSGraph::~GlobalDSGraph() {
852 assert(Referrers.size() == 0 &&
853 "Deleting global graph while references from other graphs exist");
854}
855
856void GlobalDSGraph::addReference(const DSGraph* referrer) {
857 if (referrer != this)
858 Referrers.insert(referrer);
859}
860
861void GlobalDSGraph::removeReference(const DSGraph* referrer) {
862 if (referrer != this) {
863 assert(Referrers.find(referrer) != Referrers.end() && "This is very bad!");
864 Referrers.erase(referrer);
865 if (Referrers.size() == 0)
866 delete this;
867 }
868}
869
870// Bits used in the next function
Chris Lattnerfccd06f2002-10-01 22:33:50 +0000871static const char ExternalTypeBits = DSNode::GlobalNode | DSNode::NewNode;
Vikram S. Adve355e2ca2002-07-30 22:05:22 +0000872
Chris Lattnerfccd06f2002-10-01 22:33:50 +0000873#if 0
Vikram S. Adve355e2ca2002-07-30 22:05:22 +0000874// GlobalDSGraph::cloneNodeInto - Clone a global node and all its externally
875// visible target links (and recursively their such links) into this graph.
876// NodeCache maps the node being cloned to its clone in the Globals graph,
877// in order to track cycles.
878// GlobalsAreFinal is a flag that says whether it is safe to assume that
879// an existing global node is complete. This is important to avoid
880// reinserting all globals when inserting Calls to functions.
881// This is a helper function for cloneGlobals and cloneCalls.
882//
883DSNode* GlobalDSGraph::cloneNodeInto(DSNode *OldNode,
884 std::map<const DSNode*, DSNode*> &NodeCache,
885 bool GlobalsAreFinal) {
886 if (OldNode == 0) return 0;
887
888 // The caller should check this is an external node. Just more efficient...
889 assert((OldNode->NodeType & ExternalTypeBits) && "Non-external node");
890
891 // If a clone has already been created for OldNode, return it.
892 DSNode*& CacheEntry = NodeCache[OldNode];
893 if (CacheEntry != 0)
894 return CacheEntry;
895
896 // The result value...
897 DSNode* NewNode = 0;
898
899 // If nodes already exist for any of the globals of OldNode,
900 // merge all such nodes together since they are merged in OldNode.
901 // If ValueCacheIsFinal==true, look for an existing node that has
902 // an identical list of globals and return it if it exists.
903 //
Chris Lattnerfccd06f2002-10-01 22:33:50 +0000904 for (unsigned j = 0, N = OldNode->getGlobals().size(); j != N; ++j)
905 if (DSNode *PrevNode = ValueMap[OldNode->getGlobals()[j]].getNode()) {
Vikram S. Adve355e2ca2002-07-30 22:05:22 +0000906 if (NewNode == 0) {
907 NewNode = PrevNode; // first existing node found
908 if (GlobalsAreFinal && j == 0)
909 if (OldNode->getGlobals() == PrevNode->getGlobals()) {
910 CacheEntry = NewNode;
911 return NewNode;
912 }
913 }
914 else if (NewNode != PrevNode) { // found another, different from prev
915 // update ValMap *before* merging PrevNode into NewNode
916 for (unsigned k = 0, NK = PrevNode->getGlobals().size(); k < NK; ++k)
917 ValueMap[PrevNode->getGlobals()[k]] = NewNode;
918 NewNode->mergeWith(PrevNode);
919 }
920 } else if (NewNode != 0) {
921 ValueMap[OldNode->getGlobals()[j]] = NewNode; // add the merged node
922 }
923
924 // If no existing node was found, clone the node and update the ValMap.
925 if (NewNode == 0) {
926 NewNode = new DSNode(*OldNode);
927 Nodes.push_back(NewNode);
928 for (unsigned j = 0, e = NewNode->getNumLinks(); j != e; ++j)
929 NewNode->setLink(j, 0);
930 for (unsigned j = 0, N = NewNode->getGlobals().size(); j < N; ++j)
931 ValueMap[NewNode->getGlobals()[j]] = NewNode;
932 }
933 else
934 NewNode->NodeType |= OldNode->NodeType; // Markers may be different!
935
936 // Add the entry to NodeCache
937 CacheEntry = NewNode;
938
939 // Rewrite the links in the new node to point into the current graph,
940 // but only for links to external nodes. Set other links to NULL.
941 for (unsigned j = 0, e = OldNode->getNumLinks(); j != e; ++j) {
942 DSNode* OldTarget = OldNode->getLink(j);
943 if (OldTarget && (OldTarget->NodeType & ExternalTypeBits)) {
944 DSNode* NewLink = this->cloneNodeInto(OldTarget, NodeCache);
945 if (NewNode->getLink(j))
946 NewNode->getLink(j)->mergeWith(NewLink);
947 else
948 NewNode->setLink(j, NewLink);
949 }
950 }
951
952 // Remove all local markers
953 NewNode->NodeType &= ~(DSNode::AllocaNode | DSNode::ScalarNode);
954
955 return NewNode;
956}
957
958
959// GlobalDSGraph::cloneGlobals - Clone global nodes and all their externally
960// visible target links (and recursively their such links) into this graph.
961//
962void GlobalDSGraph::cloneGlobals(DSGraph& Graph, bool CloneCalls) {
963 std::map<const DSNode*, DSNode*> NodeCache;
Chris Lattnerfccd06f2002-10-01 22:33:50 +0000964#if 0
Vikram S. Adve355e2ca2002-07-30 22:05:22 +0000965 for (unsigned i = 0, N = Graph.Nodes.size(); i < N; ++i)
966 if (Graph.Nodes[i]->NodeType & DSNode::GlobalNode)
967 GlobalsGraph->cloneNodeInto(Graph.Nodes[i], NodeCache, false);
Vikram S. Adve355e2ca2002-07-30 22:05:22 +0000968 if (CloneCalls)
969 GlobalsGraph->cloneCalls(Graph);
970
971 GlobalsGraph->removeDeadNodes(/*KeepAllGlobals*/ true, /*KeepCalls*/ true);
Chris Lattnerfccd06f2002-10-01 22:33:50 +0000972#endif
Vikram S. Adve355e2ca2002-07-30 22:05:22 +0000973}
974
975
976// GlobalDSGraph::cloneCalls - Clone function calls and their visible target
977// links (and recursively their such links) into this graph.
978//
979void GlobalDSGraph::cloneCalls(DSGraph& Graph) {
980 std::map<const DSNode*, DSNode*> NodeCache;
Vikram S. Adve42fd1692002-10-20 18:07:37 +0000981 vector<DSCallSite >& FromCalls =Graph.FunctionCalls;
Vikram S. Adve355e2ca2002-07-30 22:05:22 +0000982
983 FunctionCalls.reserve(FunctionCalls.size() + FromCalls.size());
984
985 for (int i = 0, ei = FromCalls.size(); i < ei; ++i) {
Vikram S. Adve42fd1692002-10-20 18:07:37 +0000986 DSCallSite& callCopy = FunctionCalls.back();
987 callCopy.reserve(FromCalls[i].size());
Vikram S. Adve355e2ca2002-07-30 22:05:22 +0000988 for (unsigned j = 0, ej = FromCalls[i].size(); j != ej; ++j)
Vikram S. Adve42fd1692002-10-20 18:07:37 +0000989 callCopy.push_back
Vikram S. Adve355e2ca2002-07-30 22:05:22 +0000990 ((FromCalls[i][j] && (FromCalls[i][j]->NodeType & ExternalTypeBits))
991 ? cloneNodeInto(FromCalls[i][j], NodeCache, true)
992 : 0);
993 }
994
995 // remove trivially identical function calls
Chris Lattner7541b892002-07-31 19:32:12 +0000996 removeIdenticalCalls(FunctionCalls, "Globals Graph");
Vikram S. Adve355e2ca2002-07-30 22:05:22 +0000997}
Chris Lattnerfccd06f2002-10-01 22:33:50 +0000998#endif
Vikram S. Adve355e2ca2002-07-30 22:05:22 +0000999
Chris Lattnerfccd06f2002-10-01 22:33:50 +00001000#endif