X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=Robust%2Fsrc%2FAnalysis%2FSSJava%2FLocationInference.java;h=ec8c60492b129128578221f5240e1b60a80e2a93;hb=8642620b2e4b2c1c0e71d5612007a935abc42eb6;hp=9ebbde3828d577fec209bc7a285dd96944e87e3d;hpb=cecb3c8f43767fd4f7c6134f6163152ec0018fea;p=IRC.git diff --git a/Robust/src/Analysis/SSJava/LocationInference.java b/Robust/src/Analysis/SSJava/LocationInference.java index 9ebbde38..ec8c6049 100644 --- a/Robust/src/Analysis/SSJava/LocationInference.java +++ b/Robust/src/Analysis/SSJava/LocationInference.java @@ -370,6 +370,26 @@ public class LocationInference { System.out.println("\nSSJAVA: Add addtional ordering constriants:"); MethodDescriptor methodEventLoopDesc = ssjava.getMethodContainingSSJavaLoop(); addAddtionalOrderingConstraints(methodEventLoopDesc); + // calculateReturnHolderLocation(); + } + + private void calculateReturnHolderLocation() { + LinkedList methodDescList = + (LinkedList) toanalyze_methodDescList.clone(); + + while (!methodDescList.isEmpty()) { + MethodDescriptor md = methodDescList.removeLast(); + + FlowGraph fg = getFlowGraph(md); + Set nodeSet = fg.getNodeSet(); + for (Iterator iterator = nodeSet.iterator(); iterator.hasNext();) { + FlowNode flowNode = (FlowNode) iterator.next(); + if (flowNode.isFromHolder()) { + calculateCompositeLocationFromFlowGraph(md, flowNode); + } + } + + } } private void updateCompositeLocationAssignments() { @@ -380,7 +400,7 @@ public class LocationInference { while (!methodDescList.isEmpty()) { MethodDescriptor md = methodDescList.removeLast(); - System.out.println("\n#updateCompositeLocationAssignments=" + md); + // System.out.println("\n#updateCompositeLocationAssignments=" + md); FlowGraph flowGraph = getFlowGraph(md); @@ -389,19 +409,19 @@ public class LocationInference { Set nodeSet = flowGraph.getNodeSet(); for (Iterator iterator = nodeSet.iterator(); iterator.hasNext();) { FlowNode node = (FlowNode) iterator.next(); - System.out.println("-node=" + node + " node.getDescTuple=" + node.getDescTuple()); + // System.out.println("-node=" + node + " node.getDescTuple=" + node.getDescTuple()); if (node.getCompositeLocation() != null) { CompositeLocation compLoc = node.getCompositeLocation(); CompositeLocation updatedCompLoc = updateCompositeLocation(compLoc); node.setCompositeLocation(updatedCompLoc); - System.out.println("---updatedCompLoc1=" + updatedCompLoc); + // System.out.println("---updatedCompLoc1=" + updatedCompLoc); } else { NTuple descTuple = node.getDescTuple(); - System.out.println("update desc=" + descTuple); + // System.out.println("update desc=" + descTuple); CompositeLocation compLoc = convertToCompositeLocation(md, descTuple); compLoc = updateCompositeLocation(compLoc); node.setCompositeLocation(compLoc); - System.out.println("---updatedCompLoc2=" + compLoc); + // System.out.println("---updatedCompLoc2=" + compLoc); } if (node.isDeclaratonNode()) { @@ -452,8 +472,8 @@ public class LocationInference { private void translateCompositeLocationAssignmentToFlowGraph(MethodDescriptor mdCaller) { - System.out.println("\n\n###translateCompositeLocationAssignmentToFlowGraph mdCaller=" - + mdCaller); + // System.out.println("\n\n###translateCompositeLocationAssignmentToFlowGraph mdCaller=" + // + mdCaller); // First, assign a composite location to a node in the flow graph GlobalFlowGraph callerGlobalFlowGraph = getSubGlobalFlowGraph(mdCaller); @@ -515,7 +535,7 @@ public class LocationInference { // it matches with the current argument composite location // so what is the corresponding parameter local descriptor? FlowNode paramNode = calleeFlowGraph.getParamFlowNode(idx); - System.out.println("----------found paramNode=" + paramNode); + // System.out.println("----------found paramNode=" + paramNode); NTuple paramDescTuple = paramNode.getCurrentDescTuple(); NTuple newParamTupleFromArgTuple = translateToLocTuple(mdCallee, paramDescTuple); @@ -523,7 +543,7 @@ public class LocationInference { newParamTupleFromArgTuple.add(argLocTuple.get(i)); } - System.out.println("-----------newParamTuple=" + newParamTupleFromArgTuple); + // System.out.println("-----------newParamTuple=" + newParamTupleFromArgTuple); return new CompositeLocation(newParamTupleFromArgTuple); } @@ -560,19 +580,53 @@ public class LocationInference { // // update return flow nodes in the caller CompositeLocation returnLoc = getMethodSummary(mdCallee).getRETURNLoc(); - System.out.println("### min=" + min.printNode(0) + " returnLoc=" + returnLoc); if (returnLoc != null && returnLoc.get(0).getLocDescriptor().equals(mdCallee.getThis()) && returnLoc.getSize() > 1) { System.out.println("###RETURN COMP LOC=" + returnLoc); NTuple returnLocTuple = returnLoc.getTuple(); NTuple baseTuple = mapMethodInvokeNodeToBaseTuple.get(min); + System.out.println("###basetuple=" + baseTuple); NTuple newReturnTuple = baseTuple.clone(); for (int i = 1; i < returnLocTuple.size(); i++) { newReturnTuple.add(returnLocTuple.get(i).getLocDescriptor()); } System.out.println("###NEW RETURN TUPLE FOR CALLER=" + newReturnTuple); + + FlowReturnNode holderNode = callerFlowGraph.getFlowReturnNode(min); + NodeTupleSet holderTupleSet = + getNodeTupleSetFromReturnNode(getFlowGraph(mdCaller), holderNode); + callerFlowGraph.getFlowReturnNode(min).setNewTuple(newReturnTuple); + + // then need to remove old constraints + // TODO SAT + System.out.println("###REMOVE OLD CONSTRAINTS=" + holderNode); + for (Iterator> iter = holderTupleSet.iterator(); iter.hasNext();) { + NTuple tupleFromHolder = iter.next(); + Set holderOutEdge = callerFlowGraph.getOutEdgeSet(holderNode); + for (Iterator iterator2 = holderOutEdge.iterator(); iterator2.hasNext();) { + FlowEdge outEdge = (FlowEdge) iterator2.next(); + NTuple toberemovedTuple = outEdge.getEndTuple(); + // System.out.println("---remove " + tupleFromHolder + " -> " + toberemovedTuple); + callerFlowGraph.removeEdge(tupleFromHolder, toberemovedTuple); + } + } + + } else { + // if the return loc set was empty and later pcloc was connected to the return loc + // need to make sure that return loc reflects to this changes. + FlowReturnNode flowReturnNode = callerFlowGraph.getFlowReturnNode(min); + if (flowReturnNode != null && flowReturnNode.getReturnTupleSet().isEmpty()) { + + if (needToUpdateReturnLocHolder(min.getMethod(), flowReturnNode)) { + NTuple baseTuple = mapMethodInvokeNodeToBaseTuple.get(min); + NTuple newReturnTuple = baseTuple.clone(); + flowReturnNode.addTuple(newReturnTuple); + } + + } + } } @@ -584,6 +638,23 @@ public class LocationInference { } + private boolean needToUpdateReturnLocHolder(MethodDescriptor mdCallee, + FlowReturnNode flowReturnNode) { + FlowGraph fg = getFlowGraph(mdCallee); + MethodSummary summary = getMethodSummary(mdCallee); + CompositeLocation returnCompLoc = summary.getRETURNLoc(); + NTuple returnDescTuple = translateToDescTuple(returnCompLoc.getTuple()); + Set incomingNodeToReturnNode = + fg.getIncomingFlowNodeSet(fg.getFlowNode(returnDescTuple)); + for (Iterator iterator = incomingNodeToReturnNode.iterator(); iterator.hasNext();) { + FlowNode inNode = (FlowNode) iterator.next(); + if (inNode.getDescTuple().get(0).equals(mdCallee.getThis())) { + return true; + } + } + return false; + } + private void addMapMethodDescToMethodInvokeNodeSet(MethodInvokeNode min) { MethodDescriptor md = min.getMethod(); if (!mapMethodDescToMethodInvokeNodeSet.containsKey(md)) { @@ -642,6 +713,7 @@ public class LocationInference { + "-> globalParamLocTu!globalArgLocTuple.get(0).getLocDescriptor().equals(LITERALDESC)ple=" + globalParamLocTuple); hasChanges = true; + globalGraph.addValueFlowEdge(pcLocTuple, globalParamLocTuple); } } @@ -678,6 +750,8 @@ public class LocationInference { System.out.println("generateCompositeLocation=" + nodeDescTuple + " with inferCompLoc=" + inferCompLoc); + MethodDescriptor md = (MethodDescriptor) inferCompLoc.get(0).getDescriptor(); + CompositeLocation newCompLoc = new CompositeLocation(); for (int i = 0; i < inferCompLoc.getSize(); i++) { newCompLoc.addLocation(inferCompLoc.get(i)); @@ -686,7 +760,7 @@ public class LocationInference { Descriptor lastDescOfPrefix = nodeDescTuple.get(0); Descriptor enclosingDescriptor; if (lastDescOfPrefix instanceof InterDescriptor) { - enclosingDescriptor = null; + enclosingDescriptor = getFlowGraph(md).getEnclosingDescriptor(lastDescOfPrefix); } else { enclosingDescriptor = ((VarDescriptor) lastDescOfPrefix).getType().getClassDesc(); } @@ -720,10 +794,8 @@ public class LocationInference { baseLocTuple = translateToLocTuple(mdCaller, mapMethodInvokeNodeToBaseTuple.get(min)); } - System.out.println("\n-#translate caller=" + mdCaller + " infer composite loc to callee=" - + mdCallee + " baseLocTuple=" + baseLocTuple); - // System.out.println("-mapIdxToArgTuple=" + mapIdxToArgTuple); - // System.out.println("-callerMapLocToCompLoc=" + callerMapLocToCompLoc); + // System.out.println("\n-#translate caller=" + mdCaller + " infer composite loc to callee=" + // + mdCallee + " baseLocTuple=" + baseLocTuple); Set keySet = callerMapLocToCompLoc.keySet(); for (Iterator iterator = keySet.iterator(); iterator.hasNext();) { @@ -740,9 +812,9 @@ public class LocationInference { translateCompositeLocationToCallee(callerCompLoc, baseLocTuple, mdCallee); calleeGlobalGraph.addMapLocationToInferCompositeLocation(key, newCalleeCompLoc); - System.out.println("1---key=" + key + " callerCompLoc=" + callerCompLoc - + " newCalleeCompLoc=" + newCalleeCompLoc); - System.out.println("-----caller=" + mdCaller + " callee=" + mdCallee); + // System.out.println("1---key=" + key + " callerCompLoc=" + callerCompLoc + // + " newCalleeCompLoc=" + newCalleeCompLoc); + // System.out.println("-----caller=" + mdCaller + " callee=" + mdCallee); if (!newCalleeCompLoc.get(0).getDescriptor().equals(mdCallee)) { System.exit(0); } @@ -762,9 +834,9 @@ public class LocationInference { newCalleeCompLoc.addLocation(callerCompLoc.get(i)); } calleeGlobalGraph.addMapLocationToInferCompositeLocation(key, newCalleeCompLoc); - System.out.println("2---key=" + key + " callerCompLoc=" + callerCompLoc - + " newCalleeCompLoc=" + newCalleeCompLoc); - System.out.println("-----caller=" + mdCaller + " callee=" + mdCallee); + // System.out.println("2---key=" + key + " callerCompLoc=" + callerCompLoc + // + " newCalleeCompLoc=" + newCalleeCompLoc); + // System.out.println("-----caller=" + mdCaller + " callee=" + mdCallee); } else { int paramIdx = getParamIdx(callerCompLoc, mapIdxToArgTuple); @@ -774,12 +846,12 @@ public class LocationInference { // so transfer the same composite location to the callee if (!calleeGlobalGraph.contrainsInferCompositeLocationMapKey(key)) { if (callerCompLoc.get(0).getDescriptor().equals(mdCallee)) { - System.out.println("3---key=" + key + " callerCompLoc=" + callerCompLoc - + " newCalleeCompLoc=" + callerCompLoc); - System.out.println("-----caller=" + mdCaller + " callee=" + mdCallee); + // System.out.println("3---key=" + key + " callerCompLoc=" + callerCompLoc + // + " newCalleeCompLoc=" + callerCompLoc); + // System.out.println("-----caller=" + mdCaller + " callee=" + mdCallee); calleeGlobalGraph.addMapLocationToInferCompositeLocation(key, callerCompLoc); } else { - System.out.println("3---SKIP key=" + key + " callerCompLoc=" + callerCompLoc); + // System.out.println("3---SKIP key=" + key + " callerCompLoc=" + callerCompLoc); } } continue; @@ -807,14 +879,9 @@ public class LocationInference { newCalleeCompLoc.addLocation(callerCompLoc.get(i)); } calleeGlobalGraph.addMapLocationToInferCompositeLocation(key, newCalleeCompLoc); - System.out.println("4---key=" + key + " callerCompLoc=" + callerCompLoc - + " newCalleeCompLoc=" + newCalleeCompLoc); - System.out.println("-----caller=" + mdCaller + " callee=" + mdCallee); - - // System.out.println("-----argTuple=" + argTuple + " caller=" + mdCaller + - // " callee=" - // + mdCallee); - // System.out.println("-----paramIdx=" + paramIdx + " paramFlowNode=" + paramFlowNode); + // System.out.println("4---key=" + key + " callerCompLoc=" + callerCompLoc + // + " newCalleeCompLoc=" + newCalleeCompLoc); + // System.out.println("-----caller=" + mdCaller + " callee=" + mdCallee); } @@ -823,9 +890,6 @@ public class LocationInference { } } - // System.out.println("-----*AFTER TRANSLATING COMP LOC MAPPING, CALLEE MAPPING=" - // + calleeGlobalGraph.getMapLocationToInferCompositeLocation()); - System.out.println("#ASSIGN COMP LOC TO CALLEE PARAMS: callee=" + mdCallee + " caller=" + mdCaller); // If the location of an argument has a composite location @@ -997,8 +1061,6 @@ public class LocationInference { if (!needToGenerateCompositeLocation(paramGlobalNode, curPrefix)) { System.out.println("NO NEED TO GENERATE COMP LOC to " + paramGlobalNode + " with prefix=" + curPrefix); - // System.out.println("prefixList=" + prefixList); - // System.out.println("reachableNodeSet=" + reachableNodeSet); return null; } @@ -1256,6 +1318,7 @@ public class LocationInference { MethodDescriptor md = (MethodDescriptor) targetLocalLoc.getDescriptor(); FlowGraph flowGraph = getFlowGraph(md); + FlowNode flowNode = flowGraph.getFlowNode(node.getDescTuple()); Set reachableSet = flowGraph.getReachFlowNodeSetFrom(flowNode); @@ -1263,7 +1326,6 @@ public class LocationInference { for (Iterator iterator = paramNodeSet.iterator(); iterator.hasNext();) { FlowNode paramFlowNode = (FlowNode) iterator.next(); if (curPrefix.startsWith(translateToLocTuple(md, paramFlowNode.getDescTuple()))) { - System.out.println("here1?!"); return true; } } @@ -1281,7 +1343,6 @@ public class LocationInference { FlowNode paramNode = getFlowGraph(mdCallee).getParamFlowNode(paramIdx); if (checkNodeReachToReturnNode(mdCallee, paramNode)) { - System.out.println("here2?!"); return true; } @@ -1304,7 +1365,6 @@ public class LocationInference { mapMethodDescriptorToCompositeReturnCase.get(md).booleanValue(); if (hasCompReturnLocWithThis) { if (checkNodeReachToReturnNode(md, flowNode)) { - System.out.println("here3?!"); return true; } } @@ -1314,7 +1374,6 @@ public class LocationInference { GlobalFlowNode subGlobalReachalbeNode = (GlobalFlowNode) iterator3.next(); if (subGlobalReachalbeNode.getLocTuple().get(0).getLocDescriptor().equals(md.getThis())) { System.out.println("PREFIX FOUND=" + subGlobalReachalbeNode); - System.out.println("here4?!"); return true; } } @@ -1322,16 +1381,6 @@ public class LocationInference { } } - // System.out.println("flowGraph.getReturnNodeSet()=" + flowGraph.getReturnNodeSet()); - // System.out.println("flowGraph.contains(node.getDescTuple())=" - // + flowGraph.contains(node.getDescTuple()) + " flowGraph.getFlowNode(node.getDescTuple())=" - // + flowGraph.getFlowNode(node.getDescTuple()));reachableSet - - // if (flowGraph.contains(node.getDescTuple()) - // && flowGraph.getReturnNodeSet().contains(flowGraph.getFlowNode(node.getDescTuple()))) { - // // return checkFlowNodeReturnThisField(flowGraph); - // } - Location lastLocationOfPrefix = curPrefix.get(curPrefix.size() - 1); // check whether prefix appears in the list of parameters Set minSet = mapMethodDescToMethodInvokeNodeSet.get(md); @@ -1344,31 +1393,11 @@ public class LocationInference { for (Iterator iterator2 = keySet.iterator(); iterator2.hasNext();) { Integer argIdx = (Integer) iterator2.next(); NTuple argTuple = map.get(argIdx); - // System.out.println("argTuple=" + argTuple); - // if (argIdx == 0 && !min.getMethod().isStatic()) { - // ClassDescriptor currentMethodThisType = getClassTypeDescriptor(argTuple.get(0)); - // - // for (int i = 0; i < curPrefix.size(); i++) { - // ClassDescriptor prefixType = - // getClassTypeDescriptor(curPrefix.get(i).getLocDescriptor()); - // if (prefixType != null && prefixType.equals(currentMethodThisType)) { - // System.out.println("PREFIX TYPE MATCHES WITH=" + currentMethodThisType); - // for (Iterator iterator3 = subGlobalReachableSet.iterator(); iterator3.hasNext();) { - // GlobalFlowNode subGlobalReachalbeNode = (GlobalFlowNode) iterator3.next(); - // if (subGlobalReachalbeNode.getLocTuple().get(0).getLocDescriptor() - // .equals(md.getThis())) { - // System.out.println("PREFIX FOUND=" + subGlobalReachalbeNode); - // System.out.println("here4?!"); - // - // return true; - // } - // } - // } - // } - // - // } + if (!(!md.isStatic() && argIdx == 0)) { - if (argTuple.get(argTuple.size() - 1).equals(lastLocationOfPrefix.getLocDescriptor())) { + // if the argTuple is empty, we don't need to do with anything(LITERAL CASE). + if (argTuple.size() > 0 + && argTuple.get(argTuple.size() - 1).equals(lastLocationOfPrefix.getLocDescriptor())) { NTuple locTuple = translateToLocTuple(md, flowGraph.getParamFlowNode(argIdx).getDescTuple()); lastLocationOfPrefix = locTuple.get(0); @@ -1381,8 +1410,6 @@ public class LocationInference { if (globalReachlocTuple.get(i).equals(lastLocationOfPrefix)) { System.out.println("ARG " + argTuple + " IS MATCHED WITH=" + lastLocationOfPrefix); - System.out.println("here5?!"); - return true; } } @@ -1392,39 +1419,6 @@ public class LocationInference { } } - // ClassDescriptor cd; - // if (lastLocationOfPrefix.getLocDescriptor() instanceof VarDescriptor) { - // cd = ((VarDescriptor) lastLocationOfPrefix.getLocDescriptor()).getType().getClassDesc(); - // } else { - // // it is a field descriptor - // cd = ((FieldDescriptor) lastLocationOfPrefix.getLocDescriptor()).getType().getClassDesc(); - // } - // - // GlobalFlowGraph subGlobalFlowGraph = getSubGlobalFlowGraph(md); - // Set subGlobalReachableSet = subGlobalFlowGraph.getReachableNodeSetFrom(node); - // - // System.out.println("TRY TO FIND lastLocationOfPrefix=" + lastLocationOfPrefix); - // for (Iterator iterator2 = subGlobalReachableSet.iterator(); iterator2.hasNext();) { - // GlobalFlowNode subGlobalReachalbeNode = (GlobalFlowNode) iterator2.next(); - // // NTuple locTuple = translateToLocTuple(md, reachalbeNode.getDescTuple()); - // NTuple locTuple = subGlobalReachalbeNode.getLocTuple(); - // - // for (int i = 0; i < locTuple.size(); i++) { - // if (locTuple.get(i).equals(lastLocationOfPrefix)) { - // return true; - // } - // } - // - // Location lastLoc = locTuple.get(locTuple.size() - 1); - // Descriptor enclosingDescriptor = lastLoc.getDescriptor(); - // - // if (enclosingDescriptor != null && enclosingDescriptor.equals(cd)) { - // System.out.println("# WHY HERE?"); - // System.out.println("subGlobalReachalbeNode=" + subGlobalReachalbeNode); - // return true; - // } - // } - return false; } @@ -1502,23 +1496,114 @@ public class LocationInference { } }); - // remove a prefix which is not suitable for generating composite location - Location localVarLoc = node.getLocTuple().get(0); - MethodDescriptor md = (MethodDescriptor) localVarLoc.getDescriptor(); - ClassDescriptor cd = md.getClassDesc(); - - int idx = 0; - Set> toberemoved = new HashSet>(); - // for (int i = 0; i < prefixList.size(); i++) { - // NTuple prefixLocTuple = prefixList.get(i); - // if (!containsClassDesc(cd, prefixLocTuple)) { - // toberemoved.add(prefixLocTuple); - // } - // } + return prefixList; + + } + + private CompositeLocation calculateCompositeLocationFromFlowGraph(MethodDescriptor md, + FlowNode node) { + + System.out.println("#############################################################"); + System.out.println("calculateCompositeLocationFromFlowGraph=" + node); + + FlowGraph flowGraph = getFlowGraph(md); + // NTuple paramLocTuple = translateToLocTuple(md, paramNode.getDescTuple()); + // GlobalFlowNode paramGlobalNode = subGlobalFlowGraph.getFlowNode(paramLocTuple); + + List> prefixList = calculatePrefixListFlowGraph(flowGraph, node); + + // Set reachableNodeSet = + // subGlobalFlowGraph.getReachableNodeSetByPrefix(paramGlobalNode.getLocTuple().get(0)); + // + Set reachableNodeSet = + flowGraph.getReachableSetFrom(node.getDescTuple().subList(0, 1)); + + // Set reachNodeSet = globalFlowGraph.getReachableNodeSetFrom(node); + + // System.out.println("node=" + node + " prefixList=" + prefixList); + + for (int i = 0; i < prefixList.size(); i++) { + NTuple curPrefix = prefixList.get(i); + Set> reachableCommonPrefixSet = new HashSet>(); + + for (Iterator iterator2 = reachableNodeSet.iterator(); iterator2.hasNext();) { + FlowNode reachNode = (FlowNode) iterator2.next(); + NTuple reachLocTuple = translateToLocTuple(md, reachNode.getCurrentDescTuple()); + if (reachLocTuple.startsWith(curPrefix)) { + reachableCommonPrefixSet.add(reachLocTuple); + } + } + // System.out.println("reachableCommonPrefixSet=" + reachableCommonPrefixSet); + + if (!reachableCommonPrefixSet.isEmpty()) { + + MethodDescriptor curPrefixFirstElementMethodDesc = + (MethodDescriptor) curPrefix.get(0).getDescriptor(); + + Location curPrefixLocalLoc = curPrefix.get(0); + + Location targetLocalLoc = new Location(md, node.getDescTuple().get(0)); + // Location targetLocalLoc = paramGlobalNode.getLocTuple().get(0); + + CompositeLocation newCompLoc = generateCompositeLocation(curPrefix); + System.out.println("NEED2ASSIGN COMP LOC TO " + node + " with prefix=" + curPrefix); + System.out.println("-targetLocalLoc=" + targetLocalLoc + " - newCompLoc=" + newCompLoc); - // System.out.println("method class=" + cd + " toberemoved=" + toberemoved); + node.setCompositeLocation(newCompLoc); + + return newCompLoc; + + } + + } + return null; + } + + private List> calculatePrefixListFlowGraph(FlowGraph graph, FlowNode node) { + + System.out.println("\n##### calculatePrefixList node=" + node); + + MethodDescriptor md = graph.getMethodDescriptor(); + Set incomingNodeSetPrefix = + graph.getIncomingNodeSetByPrefix(node.getDescTuple().get(0)); + // System.out.println("---incomingNodeSetPrefix=" + incomingNodeSetPrefix); + + Set reachableNodeSetPrefix = + graph.getReachableSetFrom(node.getDescTuple().subList(0, 1)); + // System.out.println("---reachableNodeSetPrefix=" + reachableNodeSetPrefix); - prefixList.removeAll(toberemoved); + List> prefixList = new ArrayList>(); + + for (Iterator iterator = incomingNodeSetPrefix.iterator(); iterator.hasNext();) { + FlowNode inNode = (FlowNode) iterator.next(); + NTuple inNodeTuple = translateToLocTuple(md, inNode.getCurrentDescTuple()); + + // if (inNodeTuple.get(0).getLocDescriptor() instanceof InterDescriptor + // || inNodeTuple.get(0).getLocDescriptor().equals(GLOBALDESC)) { + // continue; + // } + + for (int i = 1; i < inNodeTuple.size(); i++) { + NTuple prefix = inNodeTuple.subList(0, i); + if (!prefixList.contains(prefix)) { + prefixList.add(prefix); + } + } + } + + Collections.sort(prefixList, new Comparator>() { + public int compare(NTuple arg0, NTuple arg1) { + int s0 = arg0.size(); + int s1 = arg1.size(); + if (s0 > s1) { + return -1; + } else if (s0 == s1) { + return 0; + } else { + return 1; + } + } + }); return prefixList; @@ -1561,24 +1646,7 @@ public class LocationInference { // here only keep the first element(method location) of the descriptor // tuple NTuple srcLocTuple = translateToLocTuple(md, srcDescTuple); - // Location srcMethodLoc = srcLocTuple.get(0); - // Descriptor srcVarDesc = srcMethodLoc.getLocDescriptor(); - // // if (flowGraph.isParamDesc(srcVarDesc) && - // (!srcVarDesc.equals(md.getThis()))) { - // if (!srcVarDesc.equals(md.getThis())) { - // srcLocTuple = new NTuple(); - // Location loc = new Location(md, srcVarDesc); - // srcLocTuple.add(loc); - // } - // NTuple dstLocTuple = translateToLocTuple(md, dstDescTuple); - // Location dstMethodLoc = dstLocTuple.get(0); - // Descriptor dstVarDesc = dstMethodLoc.getLocDescriptor(); - // if (!dstVarDesc.equals(md.getThis())) { - // dstLocTuple = new NTuple(); - // Location loc = new Location(md, dstVarDesc); - // dstLocTuple.add(loc); - // } globalGraph.addValueFlowEdge(srcLocTuple, dstLocTuple); @@ -1592,7 +1660,6 @@ public class LocationInference { NTuple locTuple = new NTuple(); Descriptor enclosingDesc = md; - // System.out.println("md=" + md + " descTuple=" + descTuple); for (int i = 0; i < descTuple.size(); i++) { Descriptor desc = descTuple.get(i); @@ -1604,7 +1671,6 @@ public class LocationInference { } else if (desc instanceof FieldDescriptor) { enclosingDesc = ((FieldDescriptor) desc).getType().getClassDesc(); } else { - // TODO: inter descriptor case enclosingDesc = desc; } @@ -1692,6 +1758,7 @@ public class LocationInference { if (callerSrcNodeLocTuple != null && callerSrcNodeLocTuple.size() > 0) { for (Iterator iterator2 = pcLocTupleSet.iterator(); iterator2.hasNext();) { NTuple pcLocTuple = (NTuple) iterator2.next(); + callerSubGlobalGraph.addValueFlowEdge(pcLocTuple, callerSrcNodeLocTuple); } } @@ -1707,11 +1774,11 @@ public class LocationInference { GlobalFlowGraph calleeSubGlobalGraph = getSubGlobalFlowGraph(mdCallee); GlobalFlowGraph callerSubGlobalGraph = getSubGlobalFlowGraph(mdCaller); - // System.out.println("$addValueFlowFromCalleeNode calleeSrcNode=" + calleeSrcNode); + System.out.println("$addValueFlowFromCalleeNode calleeSrcNode=" + calleeSrcNode); NTuple callerSrcNodeLocTuple = translateToCallerLocTuple(min, mdCallee, mdCaller, calleeSrcNode.getLocTuple()); - // System.out.println("---callerSrcNodeLocTuple=" + callerSrcNodeLocTuple); + System.out.println("---callerSrcNodeLocTuple=" + callerSrcNodeLocTuple); if (callerSrcNodeLocTuple != null && callerSrcNodeLocTuple.size() > 0) { @@ -1723,7 +1790,8 @@ public class LocationInference { translateToCallerLocTuple(min, mdCallee, mdCaller, outNode.getLocTuple()); // System.out.println("outNode=" + outNode + " callerDstNodeLocTuple=" // + callerDstNodeLocTuple); - if (callerDstNodeLocTuple != null) { + if (callerSrcNodeLocTuple != null && callerDstNodeLocTuple != null + && callerSrcNodeLocTuple.size() > 0 && callerDstNodeLocTuple.size() > 0) { callerSubGlobalGraph.addValueFlowEdge(callerSrcNodeLocTuple, callerDstNodeLocTuple); } } @@ -1736,8 +1804,9 @@ public class LocationInference { // this method will return the same nodeLocTuple if the corresponding argument is literal // value. - FlowGraph calleeFlowGraph = getFlowGraph(mdCallee); + // System.out.println("translateToCallerLocTuple=" + nodeLocTuple); + FlowGraph calleeFlowGraph = getFlowGraph(mdCallee); NTuple nodeDescTuple = translateToDescTuple(nodeLocTuple); if (calleeFlowGraph.isParameter(nodeDescTuple)) { int paramIdx = calleeFlowGraph.getParamIdx(nodeDescTuple); @@ -1747,7 +1816,8 @@ public class LocationInference { // // the type of argument is primitive. // return nodeLocTuple.clone(); // } - // System.out.println("paramIdx=" + paramIdx + " argDescTuple=" + argDescTuple); + // System.out.println("paramIdx=" + paramIdx + " argDescTuple=" + argDescTuple + " from min=" + // + min.printNode(0)); NTuple argLocTuple = translateToLocTuple(mdCaller, argDescTuple); NTuple callerLocTuple = new NTuple(); @@ -1776,6 +1846,29 @@ public class LocationInference { return false; } + public static boolean isReference(Descriptor desc) { + + if (desc instanceof FieldDescriptor) { + + TypeDescriptor type = ((FieldDescriptor) desc).getType(); + if (type.isArray()) { + return !type.isPrimitive(); + } else { + return type.isPtr(); + } + + } else if (desc instanceof VarDescriptor) { + TypeDescriptor type = ((VarDescriptor) desc).getType(); + if (type.isArray()) { + return !type.isPrimitive(); + } else { + return type.isPtr(); + } + } + + return false; + } + private NTuple translateToDescTuple(NTuple locTuple) { NTuple descTuple = new NTuple(); @@ -1827,18 +1920,6 @@ public class LocationInference { FlowNode flowNode = flowGraph.getParamFlowNode(paramIdx); CompositeLocation inferredCompLoc = updateCompositeLocation(flowNode.getCompositeLocation()); - // NTuple descTuple = flowNode.getDescTuple(); - // - // CompositeLocation assignedCompLoc = flowNode.getCompositeLocation(); - // CompositeLocation inferredCompLoc; - // if (assignedCompLoc != null) { - // inferredCompLoc = translateCompositeLocation(assignedCompLoc); - // } else { - // Descriptor locDesc = descTuple.get(0); - // Location loc = new Location(md, locDesc.getSymbol()); - // loc.setLocDescriptor(locDesc); - // inferredCompLoc = new CompositeLocation(loc); - // } System.out.println("-paramIdx=" + paramIdx + " infer=" + inferredCompLoc + " original=" + flowNode.getCompositeLocation()); @@ -2156,6 +2237,60 @@ public class LocationInference { private void constructHierarchyGraph() { + LinkedList methodDescList = + (LinkedList) toanalyze_methodDescList.clone(); + + while (!methodDescList.isEmpty()) { + MethodDescriptor md = methodDescList.removeLast(); + if (state.SSJAVADEBUG) { + HierarchyGraph hierarchyGraph = new HierarchyGraph(md); + System.out.println(); + System.out.println("SSJAVA: Construcing the hierarchy graph from " + md); + constructHierarchyGraph(md, hierarchyGraph); + mapDescriptorToHierarchyGraph.put(md, hierarchyGraph); + + } + } + + setupToAnalyze(); + while (!toAnalyzeIsEmpty()) { + ClassDescriptor cd = toAnalyzeNext(); + HierarchyGraph graph = getHierarchyGraph(cd); + for (Iterator iter = cd.getFields(); iter.hasNext();) { + FieldDescriptor fieldDesc = (FieldDescriptor) iter.next(); + if (!(fieldDesc.isStatic() && fieldDesc.isFinal())) { + graph.getHNode(fieldDesc); + } + } + } + + Set keySet = mapDescriptorToHierarchyGraph.keySet(); + for (Iterator iterator = keySet.iterator(); iterator.hasNext();) { + Descriptor key = (Descriptor) iterator.next(); + HierarchyGraph graph = getHierarchyGraph(key); + + Set nodeToBeConnected = new HashSet(); + for (Iterator iterator2 = graph.getNodeSet().iterator(); iterator2.hasNext();) { + HNode node = (HNode) iterator2.next(); + if (!node.isSkeleton() && !node.isCombinationNode()) { + if (graph.getIncomingNodeSet(node).size() == 0) { + nodeToBeConnected.add(node); + } + } + } + + for (Iterator iterator2 = nodeToBeConnected.iterator(); iterator2.hasNext();) { + HNode node = (HNode) iterator2.next(); + System.out.println("NEED TO BE CONNECTED TO TOP=" + node); + graph.addEdge(graph.getHNode(TOPDESC), node); + } + + } + + } + + private void constructHierarchyGraph2() { + // do fixed-point analysis LinkedList descriptorListToAnalyze = ssjava.getSortedDescriptors(); @@ -2365,6 +2500,9 @@ public class LocationInference { System.out.println("-srcCurTuple=" + srcCurTuple + " dstCurTuple=" + dstCurTuple + " srcNode=" + srcNode + " dstNode=" + dstNode); + // srcCurTuple = translateBaseTuple(srcNode, srcCurTuple); + // dstCurTuple = translateBaseTuple(dstNode, dstCurTuple); + if ((srcCurTuple.size() > 1 && dstCurTuple.size() > 1) && srcCurTuple.get(0).equals(dstCurTuple.get(0))) { @@ -2429,6 +2567,31 @@ public class LocationInference { } + private NTuple translateBaseTuple(FlowNode flowNode, NTuple inTuple) { + + if (flowNode.getBaseTuple() != null) { + + NTuple translatedTuple = new NTuple(); + + NTuple baseTuple = flowNode.getBaseTuple(); + + for (int i = 0; i < baseTuple.size(); i++) { + translatedTuple.add(baseTuple.get(i)); + } + + for (int i = 1; i < inTuple.size(); i++) { + translatedTuple.add(inTuple.get(i)); + } + + System.out.println("------TRANSLATED " + inTuple + " -> " + translatedTuple); + return translatedTuple; + + } else { + return inTuple; + } + + } + private MethodSummary getMethodSummary(MethodDescriptor md) { if (!mapDescToLocationSummary.containsKey(md)) { mapDescToLocationSummary.put(md, new MethodSummary(md)); @@ -2558,20 +2721,31 @@ public class LocationInference { } } - rtr += "\")"; - if (desc instanceof MethodDescriptor) { System.out.println("#EXTRA LOC DECLARATION GEN=" + desc); MethodDescriptor md = (MethodDescriptor) desc; MethodSummary methodSummary = getMethodSummary(md); + TypeDescriptor returnType = ((MethodDescriptor) desc).getReturnType(); + if (!ssjava.getMethodContainingSSJavaLoop().equals(desc) && returnType != null + && (!returnType.isVoid())) { + CompositeLocation returnLoc = methodSummary.getRETURNLoc(); + if (returnLoc.getSize() == 1) { + String returnLocStr = generateLocationAnnoatation(methodSummary.getRETURNLoc()); + if (rtr.indexOf(returnLocStr) == -1) { + rtr += "," + returnLocStr; + } + } + } + rtr += "\")"; + if (!ssjava.getMethodContainingSSJavaLoop().equals(desc)) { - TypeDescriptor returnType = ((MethodDescriptor) desc).getReturnType(); if (returnType != null && (!returnType.isVoid())) { rtr += "\n@RETURNLOC(\"" + generateLocationAnnoatation(methodSummary.getRETURNLoc()) + "\")"; } + CompositeLocation pcLoc = methodSummary.getPCLoc(); if ((pcLoc != null) && (!pcLoc.get(0).isTop())) { rtr += "\n@PCLOC(\"" + generateLocationAnnoatation(pcLoc) + "\")"; @@ -2583,6 +2757,8 @@ public class LocationInference { } rtr += "\n@GLOBALLOC(\"" + methodSummary.getGlobalLocName() + "\")"; + } else { + rtr += "\")"; } return rtr; @@ -2681,6 +2857,7 @@ public class LocationInference { if (mapDescToDefinitionLine.containsKey(localVarDesc)) { int varLineNum = mapDescToDefinitionLine.get(localVarDesc); String orgSourceLine = sourceVec.get(varLineNum); + System.out.println("varLineNum=" + varLineNum + " org src=" + orgSourceLine); int idx = orgSourceLine.indexOf(generateVarDeclaration((VarDescriptor) localVarDesc)); System.out.println("idx=" + idx @@ -3066,6 +3243,7 @@ public class LocationInference { if (!paramDescNOTHavingInFlowSet.contains(node.getCurrentDescTuple().get(0))) { flowNodeLowerthanPCLocSet.add(node); fg.addValueFlowEdge(pcDescTuple, node.getDescTuple()); + subGlobalFlowGraph.addValueFlowEdge(pcLocTuple, translateToLocTuple(md, node.getDescTuple())); } @@ -3080,7 +3258,7 @@ public class LocationInference { System.out.println("#########################################"); for (Iterator iterator = flowNodeLowerthanPCLocSet.iterator(); iterator.hasNext();) { FlowNode lowerNode = (FlowNode) iterator.next(); - if (lowerNode.getCompositeLocation() == null) { + if (lowerNode.getDescTuple().size() == 1 && lowerNode.getCompositeLocation() == null) { NTuple lowerLocTuple = translateToLocTuple(md, lowerNode.getDescTuple()); CompositeLocation newComp = calculateCompositeLocationFromSubGlobalGraph(md, lowerNode); @@ -3146,9 +3324,11 @@ public class LocationInference { // calculate a return location: // the return location type is lower than all parameters and the location of return values MethodSummary methodSummary = getMethodSummary(md); - if (methodSummary.getRETURNLoc() != null) { - return; - } + // if (methodSummary.getRETURNLoc() != null) { + // System.out.println("$HERE?"); + // return; + // } + FlowGraph fg = getFlowGraph(md); Map mapParamToLoc = methodSummary.getMapParamIdxToInferLoc(); Set paramIdxSet = mapParamToLoc.keySet(); @@ -3196,6 +3376,13 @@ public class LocationInference { } + // makes sure that PCLOC is higher than RETURNLOC + CompositeLocation pcLoc = methodSummary.getPCLoc(); + if (!pcLoc.get(0).isTop()) { + NTuple pcLocDescTuple = translateToDescTuple(pcLoc.getTuple()); + fg.addValueFlowEdge(pcLocDescTuple, returnDescTuple); + } + } } @@ -3255,7 +3442,8 @@ public class LocationInference { } else { // all parameter is started with 'this', so PCLOC will be set relative to the composite // location started with 'this'. - for (int idx = 0; idx < minSize - 1; idx++) { + // for (int idx = 0; idx < minSize - 1; idx++) { + for (int idx = 0; idx < 1; idx++) { Set locDescSet = new HashSet(); Location curLoc = null; NTuple paramLocTuple = null; @@ -3699,6 +3887,8 @@ public class LocationInference { } else if (curDescriptor instanceof NameDescriptor) { // it is "GLOBAL LOC" case! enclosingDescriptor = GLOBALDESC; + } else if (curDescriptor instanceof InterDescriptor) { + enclosingDescriptor = getFlowGraph(md).getEnclosingDescriptor(curDescriptor); } else { enclosingDescriptor = null; } @@ -3887,8 +4077,10 @@ public class LocationInference { + " idx=" + idx); if (!srcFieldDesc.equals(dstFieldDesc)) { // add a new edge + System.out.println("-ADD EDGE"); getHierarchyGraph(cd).addEdge(srcFieldDesc, dstFieldDesc); - } else if (isPrimitive(srcFieldDesc) && isPrimitive(dstFieldDesc)) { + } else if (!isReference(srcFieldDesc) && !isReference(dstFieldDesc)) { + System.out.println("-ADD EDGE"); getHierarchyGraph(cd).addEdge(srcFieldDesc, dstFieldDesc); } @@ -3980,6 +4172,21 @@ public class LocationInference { System.out.println(""); toanalyze_methodDescList = computeMethodList(); + // hack... it seems that there is a problem with topological sorting. + // so String.toString(Object o) is appeared too higher in the call chain. + MethodDescriptor mdToString = null; + for (Iterator iterator = toanalyze_methodDescList.iterator(); iterator.hasNext();) { + MethodDescriptor md = (MethodDescriptor) iterator.next(); + if (md.toString().equals("public static String String.valueOf(Object o)")) { + mdToString = md; + break; + } + } + if (mdToString != null) { + toanalyze_methodDescList.remove(mdToString); + toanalyze_methodDescList.addLast(mdToString); + } + LinkedList methodDescList = (LinkedList) toanalyze_methodDescList.clone(); @@ -4436,7 +4643,7 @@ public class LocationInference { private void analyzeFlowIfStatementNode(MethodDescriptor md, SymbolTable nametable, IfStatementNode isn, NodeTupleSet implicitFlowTupleSet) { - // System.out.println("analyzeFlowIfStatementNode=" + isn.printNode(0)); + System.out.println("analyzeFlowIfStatementNode=" + isn.printNode(0)); NodeTupleSet condTupleNode = new NodeTupleSet(); analyzeFlowExpressionNode(md, nametable, isn.getCondition(), condTupleNode, null, @@ -4496,6 +4703,7 @@ public class LocationInference { fn.setDeclarationNode(); if (dn.getExpression() != null) { + System.out.println("-analyzeFlowDeclarationNode=" + dn.printNode(0)); NodeTupleSet nodeSetRHS = new NodeTupleSet(); analyzeFlowExpressionNode(md, nametable, dn.getExpression(), nodeSetRHS, null, @@ -4524,9 +4732,20 @@ public class LocationInference { GlobalFlowGraph globalFlowGraph = getSubGlobalFlowGraph(md); for (Iterator> iterator = nodeSetRHS.globalIterator(); iterator.hasNext();) { NTuple calleeReturnLocTuple = iterator.next(); + globalFlowGraph.addValueFlowEdge(calleeReturnLocTuple, translateToLocTuple(md, tupleLHS)); } + for (Iterator> iterator = implicitFlowTupleSet.globalIterator(); iterator + .hasNext();) { + NTuple implicitGlobalTuple = iterator.next(); + + globalFlowGraph.addValueFlowEdge(implicitGlobalTuple, translateToLocTuple(md, tupleLHS)); + } + + System.out.println("-nodeSetRHS=" + nodeSetRHS); + System.out.println("-implicitFlowTupleSet=" + implicitFlowTupleSet); + } } @@ -4546,12 +4765,13 @@ public class LocationInference { ExpressionNode en, NodeTupleSet nodeSet, NTuple base, NodeTupleSet implicitFlowTupleSet, boolean isLHS) { + // System.out.println("en=" + en.printNode(0) + " class=" + en.getClass()); + // note that expression node can create more than one flow node // nodeSet contains of flow nodes // base is always assigned to null except the case of a name node! NTuple flowTuple; switch (en.kind()) { - case Kind.AssignmentNode: analyzeFlowAssignmentNode(md, nametable, (AssignmentNode) en, nodeSet, base, implicitFlowTupleSet); @@ -4637,7 +4857,7 @@ public class LocationInference { private void analyzeFlowTertiaryNode(MethodDescriptor md, SymbolTable nametable, TertiaryNode tn, NodeTupleSet nodeSet, NodeTupleSet implicitFlowTupleSet) { - System.out.println("analyzeFlowTertiaryNode=" + tn.printNode(0)); + // System.out.println("analyzeFlowTertiaryNode=" + tn.printNode(0)); NodeTupleSet tertiaryTupleNode = new NodeTupleSet(); analyzeFlowExpressionNode(md, nametable, tn.getCond(), tertiaryTupleNode, null, @@ -4755,7 +4975,7 @@ public class LocationInference { addMapCallerMethodDescToMethodInvokeNodeSet(mdCaller, min); FlowGraph calleeFlowGraph = getFlowGraph(mdCallee); - System.out.println("mdCallee=" + mdCallee); + System.out.println("mdCallee=" + mdCallee + " calleeFlowGraph=" + calleeFlowGraph); Set calleeReturnSet = calleeFlowGraph.getReturnNodeSet(); System.out.println("---calleeReturnSet=" + calleeReturnSet); @@ -4767,9 +4987,17 @@ public class LocationInference { NodeTupleSet baseNodeSet = new NodeTupleSet(); analyzeFlowExpressionNode(mdCaller, nametable, min.getExpression(), baseNodeSet, null, implicitFlowTupleSet, false); + System.out.println("baseNodeSet=" + baseNodeSet); assert (baseNodeSet.size() == 1); NTuple baseTuple = baseNodeSet.iterator().next(); + if (baseTuple.get(0) instanceof InterDescriptor) { + if (baseTuple.size() > 1) { + throw new Error(); + } + FlowNode interNode = getFlowGraph(mdCaller).getFlowNode(baseTuple); + baseTuple = translateBaseTuple(interNode, baseTuple); + } mapMethodInvokeNodeToBaseTuple.put(min, baseTuple); if (!min.getMethod().isStatic()) { @@ -4782,19 +5010,31 @@ public class LocationInference { // the location type of the return value is started with 'this' // reference NTuple inFlowTuple = new NTuple(baseTuple.getList()); + + if (inFlowTuple.get(0) instanceof InterDescriptor) { + // min.getExpression() + } else { + + } + inFlowTuple.addAll(returnDescTuple.subList(1, returnDescTuple.size())); // nodeSet.addTuple(inFlowTuple); - tupleSet.addTuple(inFlowTuple); + System.out.println("1CREATE A NEW TUPLE=" + inFlowTuple + " from=" + + mdCallee.getThis()); + // tupleSet.addTuple(inFlowTuple); + tupleSet.addTuple(baseTuple); } else { // TODO + System.out.println("returnNode=" + returnNode); Set inFlowSet = calleeFlowGraph.getIncomingFlowNodeSet(returnNode); // System.out.println("inFlowSet=" + inFlowSet + " from retrunNode=" + returnNode); for (Iterator iterator2 = inFlowSet.iterator(); iterator2.hasNext();) { FlowNode inFlowNode = (FlowNode) iterator2.next(); if (inFlowNode.getDescTuple().startsWith(mdCallee.getThis())) { // nodeSet.addTupleSet(baseNodeSet); + System.out.println("2CREATE A NEW TUPLE=" + baseNodeSet + " from=" + + mdCallee.getThis()); tupleSet.addTupleSet(baseNodeSet); - } } } @@ -4819,7 +5059,7 @@ public class LocationInference { NodeTupleSet argTupleSet = new NodeTupleSet(); analyzeFlowExpressionNode(mdCaller, nametable, en, argTupleSet, false); // if argument is liternal node, argTuple is set to NULL - System.out.println("argTupleSet=" + argTupleSet); + System.out.println("---arg idx=" + idx + " argTupleSet=" + argTupleSet); NTuple argTuple = generateArgTuple(mdCaller, argTupleSet); // if an argument is literal value, @@ -4827,16 +5067,16 @@ public class LocationInference { // that node if needed if (argTuple.size() > 0 && (argTuple.get(0).equals(GLOBALDESC) || argTuple.get(0).equals(LITERALDESC))) { - System.out.println("***GLOBAL ARG TUPLE CASE=" + argTuple); - System.out.println("8"); - - NTuple interTuple = - getFlowGraph(mdCaller).createIntermediateNode().getDescTuple(); - ((InterDescriptor) interTuple.get(0)).setMethodArgIdxPair(min, idx); - addFlowGraphEdge(mdCaller, argTuple, interTuple); - argTuple = interTuple; - addArgIdxMap(min, idx, argTuple); - System.out.println("new min mapping i=" + idx + " ->" + argTuple); + /* + * System.out.println("***GLOBAL ARG TUPLE CASE=" + argTuple); System.out.println("8"); + * + * NTuple interTuple = + * getFlowGraph(mdCaller).createIntermediateNode().getDescTuple(); ((InterDescriptor) + * interTuple.get(0)).setMethodArgIdxPair(min, idx); addFlowGraphEdge(mdCaller, + * argTuple, interTuple); argTuple = interTuple; addArgIdxMap(min, idx, argTuple); + * System.out.println("new min mapping i=" + idx + " ->" + argTuple); + */ + argTuple = new NTuple(); } addArgIdxMap(min, idx, argTuple); @@ -4860,6 +5100,7 @@ public class LocationInference { || mdCallee.getModifiers().isNative()) { addParamNodeFlowingToReturnValue(mdCallee, paramNode); // nodeSet.addTupleSet(argTupleSet); + System.out.println("3CREATE A NEW TUPLE=" + argTupleSet + " from=" + paramNode); tupleSet.addTupleSet(argTupleSet); } } @@ -4867,10 +5108,52 @@ public class LocationInference { } if (mdCallee.getReturnType() != null && !mdCallee.getReturnType().isVoid()) { - FlowReturnNode setNode = getFlowGraph(mdCaller).createReturnNode(min); - System.out.println("ADD TUPLESET=" + tupleSet + " to returnnode=" + setNode); - setNode.addTupleSet(tupleSet); - nodeSet.addTuple(setNode.getDescTuple()); + FlowReturnNode returnHolderNode = getFlowGraph(mdCaller).createReturnNode(min); + + if (needToGenerateInterLoc(tupleSet)) { + System.out.println("20"); + FlowGraph fg = getFlowGraph(mdCaller); + FlowNode interNode = fg.createIntermediateNode(); + interNode.setFormHolder(true); + + NTuple interTuple = interNode.getDescTuple(); + + for (Iterator iterator = tupleSet.iterator(); iterator.hasNext();) { + NTuple tuple = (NTuple) iterator.next(); + + Set> addSet = new HashSet>(); + FlowNode node = fg.getFlowNode(tuple); + if (node instanceof FlowReturnNode) { + addSet.addAll(fg.getReturnTupleSet(((FlowReturnNode) node).getReturnTupleSet())); + } else { + addSet.add(tuple); + } + for (Iterator iterator2 = addSet.iterator(); iterator2.hasNext();) { + NTuple higher = (NTuple) iterator2.next(); + addFlowGraphEdge(mdCaller, higher, interTuple); + } + } + + returnHolderNode.addTuple(interTuple); + + nodeSet.addTuple(interTuple); + System.out.println("ADD TUPLESET=" + interTuple + " to returnnode=" + returnHolderNode); + + } else { + returnHolderNode.addTupleSet(tupleSet); + System.out.println("ADD TUPLESET=" + tupleSet + " to returnnode=" + returnHolderNode); + } + // setNode.addTupleSet(tupleSet); + // NodeTupleSet setFromReturnNode=new NodeTupleSet(); + // setFromReturnNode.addTuple(tuple); + + NodeTupleSet holderTupleSet = + getNodeTupleSetFromReturnNode(getFlowGraph(mdCaller), returnHolderNode); + + System.out.println("HOLDER TUPLe SET=" + holderTupleSet); + nodeSet.addTupleSet(holderTupleSet); + + nodeSet.addTuple(returnHolderNode.getDescTuple()); } // propagateFlowsFromCallee(min, md, min.getMethod()); @@ -4883,8 +5166,14 @@ public class LocationInference { NTuple calleeReturnLocTuple = translateToLocTuple(mdCallee, calleeReturnNode.getDescTuple()); System.out.println("calleeReturnLocTuple=" + calleeReturnLocTuple); - nodeSet.addGlobalFlowTuple(translateToCallerLocTuple(min, mdCallee, mdCaller, - calleeReturnLocTuple)); + NTuple transaltedToCaller = + translateToCallerLocTuple(min, mdCallee, mdCaller, calleeReturnLocTuple); + // System.out.println("translateToCallerLocTuple=" + // + translateToCallerLocTuple(min, mdCallee, mdCaller, calleeReturnLocTuple)); + if (transaltedToCaller.size() > 0) { + nodeSet.addGlobalFlowTuple(translateToCallerLocTuple(min, mdCallee, mdCaller, + calleeReturnLocTuple)); + } } System.out.println("min nodeSet=" + nodeSet); @@ -4893,6 +5182,47 @@ public class LocationInference { } + private NodeTupleSet getNodeTupleSetFromReturnNode(FlowGraph fg, FlowReturnNode node) { + NodeTupleSet nts = new NodeTupleSet(); + + Set> returnSet = node.getReturnTupleSet(); + + for (Iterator iterator = returnSet.iterator(); iterator.hasNext();) { + NTuple tuple = (NTuple) iterator.next(); + FlowNode flowNode = fg.getFlowNode(tuple); + if (flowNode instanceof FlowReturnNode) { + returnSet.addAll(recurGetNode(fg, (FlowReturnNode) flowNode)); + } else { + returnSet.add(tuple); + } + } + + for (Iterator iterator = returnSet.iterator(); iterator.hasNext();) { + NTuple nTuple = (NTuple) iterator.next(); + nts.addTuple(nTuple); + } + + return nts; + + } + + private Set> recurGetNode(FlowGraph fg, FlowReturnNode rnode) { + + Set> tupleSet = new HashSet>(); + + Set> returnSet = rnode.getReturnTupleSet(); + for (Iterator iterator = returnSet.iterator(); iterator.hasNext();) { + NTuple tuple = (NTuple) iterator.next(); + FlowNode flowNode = fg.getFlowNode(tuple); + if (flowNode instanceof FlowReturnNode) { + tupleSet.addAll(recurGetNode(fg, (FlowReturnNode) flowNode)); + } + tupleSet.add(tuple); + } + + return tupleSet; + } + private NTuple generateArgTuple(MethodDescriptor mdCaller, NodeTupleSet argTupleSet) { int size = 0; @@ -4940,7 +5270,7 @@ public class LocationInference { } // Set reachableSet = fg.getReachFlowNodeSetFrom(inNode); Set reachableSet = fg.getReachableSetFrom(inNode.getDescTuple()); - System.out.println("inNode=" + inNode + " reachalbeSet=" + reachableSet); + // System.out.println("inNode=" + inNode + " reachalbeSet=" + reachableSet); for (Iterator iterator = reachableSet.iterator(); iterator.hasNext();) { FlowNode fn = (FlowNode) iterator.next(); @@ -4977,14 +5307,16 @@ public class LocationInference { private void analyzeFlowArrayAccessNode(MethodDescriptor md, SymbolTable nametable, ArrayAccessNode aan, NodeTupleSet nodeSet, boolean isLHS) { - // System.out.println("analyzeFlowArrayAccessNode aan=" + aan.printNode(0)); + System.out.println("analyzeFlowArrayAccessNode aan=" + aan.printNode(0)); String currentArrayAccessNodeExpStr = aan.printNode(0); arrayAccessNodeStack.push(aan.printNode(0)); NodeTupleSet expNodeTupleSet = new NodeTupleSet(); NTuple base = analyzeFlowExpressionNode(md, nametable, aan.getExpression(), expNodeTupleSet, isLHS); + System.out.println("-base=" + base); + nodeSet.setMethodInvokeBaseDescTuple(base); NodeTupleSet idxNodeTupleSet = new NodeTupleSet(); analyzeFlowExpressionNode(md, nametable, aan.getIndex(), idxNodeTupleSet, isLHS); @@ -5006,6 +5338,7 @@ public class LocationInference { NTuple calleeReturnLocTuple = iterator.next(); for (Iterator> arrIter = expNodeTupleSet.iterator(); arrIter.hasNext();) { NTuple arrTuple = arrIter.next(); + globalFlowGraph.addValueFlowEdge(calleeReturnLocTuple, translateToLocTuple(md, arrTuple)); } } @@ -5023,7 +5356,8 @@ public class LocationInference { if (needToGenerateInterLoc(nodeSetArrayAccessExp)) { System.out.println("1"); - NTuple interTuple = getFlowGraph(md).createIntermediateNode().getDescTuple(); + FlowNode interNode = getFlowGraph(md).createIntermediateNode(); + NTuple interTuple = interNode.getDescTuple(); for (Iterator> iter = nodeSetArrayAccessExp.iterator(); iter.hasNext();) { NTuple higherTuple = iter.next(); @@ -5031,6 +5365,14 @@ public class LocationInference { } nodeSetArrayAccessExp.clear(); nodeSetArrayAccessExp.addTuple(interTuple); + FlowGraph fg = getFlowGraph(md); + + System.out.println("base=" + base); + if (base != null) { + fg.addMapInterLocNodeToEnclosingDescriptor(interTuple.get(0), + getClassTypeDescriptor(base.get(base.size() - 1))); + interNode.setBaseTuple(base); + } } } @@ -5053,15 +5395,19 @@ public class LocationInference { NodeTupleSet leftOpSet = new NodeTupleSet(); NodeTupleSet rightOpSet = new NodeTupleSet(); + System.out.println("analyzeFlowOpNode=" + on.printNode(0)); + // left operand analyzeFlowExpressionNode(md, nametable, on.getLeft(), leftOpSet, null, implicitFlowTupleSet, false); + System.out.println("--leftOpSet=" + leftOpSet); if (on.getRight() != null) { // right operand analyzeFlowExpressionNode(md, nametable, on.getRight(), rightOpSet, null, implicitFlowTupleSet, false); } + System.out.println("--rightOpSet=" + rightOpSet); Operation op = on.getOp(); @@ -5260,6 +5606,7 @@ public class LocationInference { for (Iterator> iterator = idxNodeTupleSet.globalIterator(); iterator .hasNext();) { NTuple calleeReturnLocTuple = iterator.next(); + globalFlowGraph.addValueFlowEdge(calleeReturnLocTuple, translateToLocTuple(md, flowFieldTuple)); } @@ -5293,10 +5640,14 @@ public class LocationInference { NTuple higherTuple = iter.next(); addFlowGraphEdge(md, higherTuple, interTuple); } + + FlowGraph fg = getFlowGraph(md); + fg.addMapInterLocNodeToEnclosingDescriptor(interTuple.get(0), + getClassTypeDescriptor(base.get(base.size() - 1))); + nodeSet.clear(); flowFieldTuple = interTuple; } - nodeSet.addGlobalFlowTupleSet(idxNodeTupleSet.getGlobalLocTupleSet()); } @@ -5337,10 +5688,10 @@ public class LocationInference { analyzeFlowExpressionNode(md, nametable, an.getSrc(), nodeSetRHS, null, implicitFlowTupleSet, false); - // System.out.println("-analyzeFlowAssignmentNode=" + an.printNode(0)); - // System.out.println("-nodeSetLHS=" + nodeSetLHS); - // System.out.println("-nodeSetRHS=" + nodeSetRHS); - // System.out.println("-implicitFlowTupleSet=" + implicitFlowTupleSet); + System.out.println("-analyzeFlowAssignmentNode=" + an.printNode(0)); + System.out.println("-nodeSetLHS=" + nodeSetLHS); + System.out.println("-nodeSetRHS=" + nodeSetRHS); + System.out.println("-implicitFlowTupleSet=" + implicitFlowTupleSet); // System.out.println("-"); if (an.getOperation().getOp() >= 2 && an.getOperation().getOp() <= 12) { @@ -5359,7 +5710,6 @@ public class LocationInference { NTuple interTuple = null; if (needToGenerateInterLoc(nodeSetRHS)) { System.out.println("2"); - interTuple = getFlowGraph(md).createIntermediateNode().getDescTuple(); } @@ -5386,10 +5736,11 @@ public class LocationInference { NTuple calleeReturnLocTuple = iterator.next(); for (Iterator> iter2 = nodeSetLHS.iterator(); iter2.hasNext();) { NTuple callerLHSTuple = iter2.next(); - globalFlowGraph.addValueFlowEdge(calleeReturnLocTuple, - translateToLocTuple(md, callerLHSTuple)); System.out.println("$$$ GLOBAL FLOW ADD=" + calleeReturnLocTuple + " -> " + translateToLocTuple(md, callerLHSTuple)); + + globalFlowGraph.addValueFlowEdge(calleeReturnLocTuple, + translateToLocTuple(md, callerLHSTuple)); } } @@ -5398,6 +5749,7 @@ public class LocationInference { NTuple calleeReturnLocTuple = iterator.next(); for (Iterator> iter2 = nodeSetLHS.iterator(); iter2.hasNext();) { NTuple callerLHSTuple = iter2.next(); + globalFlowGraph.addValueFlowEdge(calleeReturnLocTuple, translateToLocTuple(md, callerLHSTuple)); System.out.println("$$$ GLOBAL FLOW PCLOC ADD=" + calleeReturnLocTuple + " -> " @@ -5504,7 +5856,6 @@ public class LocationInference { String highLocId = pair.getFirst(); String lowLocId = pair.getSecond(); - System.out.println("addedLocSet=" + addedLocSet); if (!addedLocSet.contains(highLocId)) { addedLocSet.add(highLocId); drawNode(bw, locOrder, simpleHierarchyGraph, highLocId);