changes.
[IRC.git] / Robust / src / Analysis / SSJava / FlowGraph.java
1 package Analysis.SSJava;
2
3 import java.io.BufferedWriter;
4 import java.io.FileWriter;
5 import java.io.IOException;
6 import java.util.HashMap;
7 import java.util.HashSet;
8 import java.util.Iterator;
9 import java.util.Map;
10 import java.util.Set;
11
12 import IR.ClassDescriptor;
13 import IR.Descriptor;
14 import IR.FieldDescriptor;
15 import IR.MethodDescriptor;
16 import IR.VarDescriptor;
17
18 public class FlowGraph {
19
20   MethodDescriptor md;
21
22   Set<FlowNode> nodeSet;
23   Set<FlowNode> returnNodeSet;
24   FlowNode thisVarNode;
25
26   Map<NTuple<Location>, FlowNode> mapLocTupleToFlowNode;
27   Map<FlowNode, NTuple<Location>> mapFlowNodeToLocTuple;
28
29   // maps the composite representation of field/var descriptors to infer nodes
30   Map<NTuple<Descriptor>, FlowNode> mapDescTupleToInferNode;
31
32   // maps an infer node to the set of neighbors which is pointed by the node
33   Map<NTuple<Descriptor>, Set<FlowNode>> mapNodeToNeighborSet;
34
35   // maps a paramter descriptor to its index
36   Map<Descriptor, Integer> mapParamDescToIdx;
37   boolean debug = true;
38
39   public FlowGraph(MethodDescriptor md, Map<Descriptor, Integer> mapParamDescToIdx) {
40     this.md = md;
41     this.mapFlowNodeToLocTuple = new HashMap<FlowNode, NTuple<Location>>();
42     this.mapLocTupleToFlowNode = new HashMap<NTuple<Location>, FlowNode>();
43     this.nodeSet = new HashSet<FlowNode>();
44     this.mapDescTupleToInferNode = new HashMap<NTuple<Descriptor>, FlowNode>();
45     this.mapNodeToNeighborSet = new HashMap<NTuple<Descriptor>, Set<FlowNode>>();
46     this.mapParamDescToIdx = new HashMap<Descriptor, Integer>();
47     this.mapParamDescToIdx.putAll(mapParamDescToIdx);
48     this.returnNodeSet = new HashSet<FlowNode>();
49
50     if (!md.isStatic()) {
51       // create a node for 'this' varialbe
52       NTuple<Descriptor> thisDescTuple = new NTuple<Descriptor>();
53       thisDescTuple.add(md.getThis());
54       FlowNode thisNode = new FlowNode(thisDescTuple, true);
55       NTuple<Descriptor> thisVarTuple = new NTuple<Descriptor>();
56       thisVarTuple.add(md.getThis());
57       createNewFlowNode(thisVarTuple);
58       thisVarNode = thisNode;
59     }
60
61   }
62
63   public Set<FlowNode> getNodeSet() {
64     return nodeSet;
65   }
66
67   public MethodDescriptor getMethodDescriptor() {
68     return md;
69   }
70
71   public Set<FlowNode> getParameterNodeSet() {
72     Set<FlowNode> paramNodeSet = new HashSet<FlowNode>();
73     for (Iterator iterator = nodeSet.iterator(); iterator.hasNext();) {
74       FlowNode fn = (FlowNode) iterator.next();
75       if (fn.isParameter()) {
76         paramNodeSet.add(fn);
77       }
78     }
79     return paramNodeSet;
80   }
81
82   public void addNeighbor(FlowNode node, FlowNode neighbor) {
83     Set<FlowNode> set = mapNodeToNeighborSet.get(node);
84     if (set == null) {
85       set = new HashSet<FlowNode>();
86     }
87     set.add(neighbor);
88
89     // System.out.println("add a new neighbor " + neighbor + " to " + node);
90   }
91
92   public boolean hasEdge(NTuple<Descriptor> fromDescTuple, NTuple<Descriptor> toDescTuple) {
93
94     FlowNode fromNode = mapDescTupleToInferNode.get(fromDescTuple);
95     FlowNode toNode = mapDescTupleToInferNode.get(toDescTuple);
96
97     Set<FlowEdge> fromNodeOutEdgeSet = fromNode.getOutEdgeSet();
98     for (Iterator iterator = fromNodeOutEdgeSet.iterator(); iterator.hasNext();) {
99       FlowEdge flowEdge = (FlowEdge) iterator.next();
100       if (flowEdge.getDst().equals(toNode)) {
101         return true;
102       } else {
103         if (hasEdge(flowEdge.getDst().getDescTuple(), toDescTuple)) {
104           return true;
105         }
106       }
107     }
108
109     return false;
110   }
111
112   public void addValueFlowEdge(NTuple<Descriptor> fromDescTuple, NTuple<Descriptor> toDescTuple) {
113
114     FlowNode fromNode = getFlowNode(fromDescTuple);
115     FlowNode toNode = getFlowNode(toDescTuple);
116
117     // System.out.println("create an edge from " + fromNode + " to " + toNode);
118
119     int fromTupleSize = fromDescTuple.size();
120     NTuple<Descriptor> curTuple = new NTuple<Descriptor>();
121     for (int i = 0; i < fromTupleSize; i++) {
122       Descriptor desc = fromDescTuple.get(i);
123       curTuple.add(desc);
124       addFlowEdge(getFlowNode(curTuple), toNode, fromDescTuple, toDescTuple);
125     }
126
127     int toTupleSize = toDescTuple.size();
128     curTuple = new NTuple<Descriptor>();
129     for (int i = 0; i < toTupleSize; i++) {
130       Descriptor desc = toDescTuple.get(i);
131       curTuple.add(desc);
132       addFlowEdge(fromNode, getFlowNode(curTuple), fromDescTuple, toDescTuple);
133     }
134
135   }
136
137   private void addFlowEdge(FlowNode fromNode, FlowNode toNode, NTuple<Descriptor> initTuple,
138       NTuple<Descriptor> endTuple) {
139
140     FlowEdge edge = new FlowEdge(fromNode, toNode, initTuple, endTuple);
141     fromNode.addOutEdge(edge);
142
143     // System.out.println("add a new edge=" + edge);
144
145   }
146
147   public FlowNode getFlowNode(NTuple<Descriptor> descTuple) {
148     if (mapDescTupleToInferNode.containsKey(descTuple)) {
149       return mapDescTupleToInferNode.get(descTuple);
150     } else {
151       FlowNode node = createNewFlowNode(descTuple);
152       return node;
153     }
154   }
155
156   public FlowNode getThisVarNode() {
157     return thisVarNode;
158   }
159
160   public FlowNode createNewFlowNode(NTuple<Descriptor> tuple) {
161
162     if (!mapDescTupleToInferNode.containsKey(tuple)) {
163
164       FlowNode node = new FlowNode(tuple, isParameter(tuple));
165       mapDescTupleToInferNode.put(tuple, node);
166       nodeSet.add(node);
167
168       mapLocTupleToFlowNode.put(getLocationTuple(node), node);
169
170       if (tuple.size() > 1) {
171         NTuple<Descriptor> baseTuple = tuple.subList(0, tuple.size() - 1);
172         getFlowNode(baseTuple).addFieldNode(node);
173       }
174
175       // System.out.println("Creating new node=" + node);
176       return node;
177     } else {
178       return mapDescTupleToInferNode.get(tuple);
179     }
180
181   }
182
183   public void setReturnFlowNode(NTuple<Descriptor> tuple) {
184
185     if (!mapDescTupleToInferNode.containsKey(tuple)) {
186       createNewFlowNode(tuple);
187     }
188
189     FlowNode node = mapDescTupleToInferNode.get(tuple);
190     node.setReturn(true);
191
192     returnNodeSet.add(node);
193   }
194
195   public Set<FlowNode> getReturnNodeSet() {
196     return returnNodeSet;
197   }
198
199   public Set<FlowNode> getReachableFlowNodeSet(FlowNode fn) {
200     Set<FlowNode> set = new HashSet<FlowNode>();
201     getReachableFlowNodeSet(fn, set);
202     return set;
203   }
204
205   private void getReachableFlowNodeSet(FlowNode fn, Set<FlowNode> visited) {
206
207     for (Iterator iterator = fn.getOutEdgeSet().iterator(); iterator.hasNext();) {
208       FlowEdge edge = (FlowEdge) iterator.next();
209
210       if (fn.equals(getFlowNode(edge.getInitTuple()))) {
211
212         FlowNode dstNode = getFlowNode(edge.getEndTuple());
213
214         if (!visited.contains(dstNode)) {
215           visited.add(dstNode);
216           getReachableFlowNodeSet(dstNode, visited);
217         }
218       }
219     }
220
221   }
222
223   public Set<NTuple<Location>> getReachableFlowTupleSet(Set<NTuple<Location>> visited, FlowNode fn) {
224     for (Iterator iterator = fn.getOutEdgeSet().iterator(); iterator.hasNext();) {
225       FlowEdge edge = (FlowEdge) iterator.next();
226
227       if (fn.getDescTuple().equals(edge.getInitTuple())) {
228         FlowNode dstNode = getFlowNode(edge.getEndTuple());
229         NTuple<Location> dstTuple = getLocationTuple(dstNode);
230
231         if (!visited.contains(dstTuple)) {
232           visited.add(dstTuple);
233           visited.addAll(getReachableFlowTupleSet(visited, dstNode));
234         }
235
236       }
237     }
238     return visited;
239   }
240
241   public NTuple<Location> getLocationTuple(NTuple<Descriptor> descTuple) {
242     return getLocationTuple(getFlowNode(descTuple));
243   }
244
245   public NTuple<Location> getLocationTuple(FlowNode fn) {
246
247     if (!mapFlowNodeToLocTuple.containsKey(fn)) {
248       NTuple<Descriptor> descTuple = fn.getDescTuple();
249       NTuple<Location> locTuple = new NTuple<Location>();
250       ClassDescriptor cd = null;
251
252       Descriptor localDesc = fn.getDescTuple().get(0);
253       if (localDesc.getSymbol().equals(LocationInference.TOPLOC)) {
254         Location topLoc = new Location(md, Location.TOP);
255         topLoc.setLocDescriptor(LocationInference.TOPDESC);
256         locTuple.add(topLoc);
257       } else if (localDesc.getSymbol().equals(LocationInference.GLOBALLOC)) {
258         Location globalLoc = new Location(md, LocationInference.GLOBALLOC);
259         globalLoc.setLocDescriptor(LocationInference.GLOBALDESC);
260         locTuple.add(globalLoc);
261       } else {
262         // normal case
263         for (int i = 0; i < descTuple.size(); i++) {
264           Descriptor curDesc = descTuple.get(i);
265           Location loc;
266           if (i == 0) {
267             loc = new Location(md, curDesc.getSymbol());
268             loc.setLocDescriptor(curDesc);
269             cd = ((VarDescriptor) curDesc).getType().getClassDesc();
270           } else {
271             loc = new Location(cd, curDesc.getSymbol());
272             loc.setLocDescriptor(curDesc);
273             cd = ((FieldDescriptor) curDesc).getType().getClassDesc();
274           }
275           locTuple.add(loc);
276         }
277       }
278
279       mapFlowNodeToLocTuple.put(fn, locTuple);
280     }
281     return mapFlowNodeToLocTuple.get(fn);
282   }
283
284   public Set<FlowNode> getIncomingFlowNodeSet(FlowNode node) {
285     Set<FlowNode> set = new HashSet<FlowNode>();
286     getIncomingFlowNodeSet(node, set);
287     return set;
288   }
289
290   public void getIncomingFlowNodeSet(FlowNode node, Set<FlowNode> visited) {
291
292     for (Iterator iterator = nodeSet.iterator(); iterator.hasNext();) {
293       FlowNode curNode = (FlowNode) iterator.next();
294       Set<FlowEdge> edgeSet = curNode.getOutEdgeSet();
295
296       for (Iterator iterator2 = edgeSet.iterator(); iterator2.hasNext();) {
297         FlowEdge flowEdge = (FlowEdge) iterator2.next();
298
299         if (node.equals(getFlowNode(flowEdge.getEndTuple()))) {
300           FlowNode incomingNode = getFlowNode(flowEdge.getInitTuple());
301
302           if (!visited.contains(incomingNode)) {
303             visited.add(incomingNode);
304             getIncomingFlowNodeSet(incomingNode, visited);
305           }
306         }
307       }
308     }
309
310   }
311
312   public Set<NTuple<Location>> getIncomingFlowTupleSet(FlowNode fn) {
313
314     NTuple<Descriptor> dstTuple = fn.getDescTuple();
315
316     Set<NTuple<Location>> set = new HashSet<NTuple<Location>>();
317
318     ClassDescriptor cd = null;
319
320     for (Iterator iterator = nodeSet.iterator(); iterator.hasNext();) {
321       FlowNode node = (FlowNode) iterator.next();
322       Set<FlowEdge> edgeSet = node.getOutEdgeSet();
323       for (Iterator iterator2 = edgeSet.iterator(); iterator2.hasNext();) {
324         FlowEdge flowEdge = (FlowEdge) iterator2.next();
325         if (dstTuple.equals(flowEdge.getEndTuple())) {
326           NTuple<Descriptor> initTuple = flowEdge.getInitTuple();
327           NTuple<Location> locTuple = new NTuple<Location>();
328           for (int i = 0; i < initTuple.size(); i++) {
329             Descriptor d = initTuple.get(i);
330             Location loc;
331             if (i == 0) {
332               loc = new Location(md, d.getSymbol());
333               cd = ((VarDescriptor) d).getType().getClassDesc();
334             } else {
335               loc = new Location(cd, d.getSymbol());
336               cd = ((FieldDescriptor) d).getType().getClassDesc();
337             }
338             locTuple.add(loc);
339           }
340           set.add(locTuple);
341         }
342       }
343     }
344     return set;
345   }
346
347   public boolean isParameter(NTuple<Descriptor> tuple) {
348     // return true if a descriptor tuple is started with a parameter descriptor
349     Descriptor firstIdxDesc = tuple.get(0);
350     return mapParamDescToIdx.containsKey(firstIdxDesc);
351   }
352
353   public int getParamIdx(NTuple<Descriptor> tuple) {
354     Descriptor firstDesc = tuple.get(0);
355     return mapParamDescToIdx.get(firstDesc).intValue();
356   }
357
358   private void drawEdges(FlowNode node, BufferedWriter bw, Set<FlowNode> addedNodeSet,
359       Set<FlowEdge> addedEdgeSet) throws IOException {
360
361     Set<FlowEdge> edgeSet = node.getOutEdgeSet();
362
363     for (Iterator<FlowEdge> iterator = edgeSet.iterator(); iterator.hasNext();) {
364       FlowEdge flowEdge = iterator.next();
365
366       FlowNode u = flowEdge.getSrc();
367       FlowNode v = flowEdge.getDst();
368
369       if (u.getDescTuple().equals(flowEdge.getInitTuple())
370           && v.getDescTuple().equals(flowEdge.getEndTuple())) {
371         // only draw an edge of the actual value flow
372
373         if (!addedEdgeSet.contains(flowEdge)) {
374
375           if (!addedNodeSet.contains(u)) {
376             drawNode(u, bw);
377             addedNodeSet.add(u);
378           }
379           if (!addedNodeSet.contains(v)) {
380             drawNode(v, bw);
381             addedNodeSet.add(v);
382           }
383
384           bw.write("" + u.getID() + " -> " + v.getID() + ";\n");
385           addedEdgeSet.add(flowEdge);
386         }
387       }
388
389     }
390
391   }
392
393   private void drawNode(FlowNode node, BufferedWriter bw) throws IOException {
394     bw.write(node.getID() + " [label=\"" + node.getPrettyID() + "\"]" + ";\n");
395   }
396
397   public void writeGraph() throws java.io.IOException {
398
399     String graphName = "flowgraph_" + md.toString();
400     graphName = graphName.replaceAll("[\\W]", "");
401
402     BufferedWriter bw = new BufferedWriter(new FileWriter(graphName + ".dot"));
403     bw.write("digraph " + graphName + " {\n");
404     bw.write("compound=true;\n");
405
406     // then visit every flow node
407
408     Iterator<FlowNode> iter = nodeSet.iterator();
409
410     Set<FlowEdge> addedEdgeSet = new HashSet<FlowEdge>();
411     Set<FlowNode> addedNodeSet = new HashSet<FlowNode>();
412
413     while (iter.hasNext()) {
414       FlowNode node = iter.next();
415
416       if (node.getDescTuple().size() == 1) {
417         // here, we just care about the local variable
418         if (node.getFieldNodeSet().size() > 0) {
419           drawSubgraph(node, bw, addedEdgeSet);
420         }
421       }
422       drawEdges(node, bw, addedNodeSet, addedEdgeSet);
423
424     }
425
426     bw.write("}\n");
427     bw.close();
428
429   }
430
431   public boolean constainsNode(FlowNode node) {
432     return nodeSet.contains(node);
433   }
434
435   private void drawSubgraph(FlowNode node, BufferedWriter bw, Set<FlowEdge> addedSet)
436       throws IOException {
437
438     bw.write("subgraph cluster_" + node.getID() + "{\n");
439     bw.write("label=\"" + node.getPrettyID() + "\";\n");
440
441     Set<FlowNode> fieldNodeSet = node.getFieldNodeSet();
442     for (Iterator iterator = fieldNodeSet.iterator(); iterator.hasNext();) {
443       FlowNode fieldNode = (FlowNode) iterator.next();
444       if (fieldNode.getFieldNodeSet().size() > 0) {
445         drawSubgraph(fieldNode, bw, addedSet);
446       } else {
447         Descriptor desc = fieldNode.getDescTuple().getLastElement();
448         if (desc instanceof VarDescriptor) {
449           VarDescriptor varDesc = (VarDescriptor) desc;
450           if (varDesc.getType().isPrimitive()) {
451             bw.write(fieldNode.getID() + " [label=\"" + fieldNode.getPrettyID() + "\"];\n");
452           }
453         } else if (desc instanceof FieldDescriptor) {
454           FieldDescriptor fieldDesc = (FieldDescriptor) desc;
455           if (fieldDesc.getType().isPrimitive()) {
456             bw.write(fieldNode.getID() + " [label=\"" + fieldNode.getPrettyID() + "\"];\n");
457           }
458         }
459       }
460     }
461
462     bw.write("}\n");
463   }
464 }