00001 package edu.ksu.cis.bandera.pdgslicer;
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037 import ca.mcgill.sable.util.*;
00038 import ca.mcgill.sable.soot.*;
00039 import ca.mcgill.sable.soot.jimple.*;
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051 public class InfoAnalysis {
00052
00053
00054
00055 private List methodsInClass = new ArrayList();
00056
00057
00058
00059 protected static Set nativeMdSig;
00060
00061
00062
00063
00064
00065 public InfoAnalysis(SootClass sootClass) {
00066 List methodsList = sootClass.getMethods();
00067 SootMethod sootMethod;
00068
00069
00070 {
00071
00072 for (Iterator nt = methodsList.iterator(); nt.hasNext();) {
00073 sootMethod = (SootMethod) nt.next();
00074 int modifiers = sootMethod.getModifiers();
00075 if (Modifier.isNative(modifiers)) {
00076 InfoAnalysis.nativeMdSig.add(sootMethod);
00077 }
00078 }
00079 }
00080 for (Iterator mit = methodsList.iterator(); mit.hasNext();) {
00081 sootMethod = (SootMethod) mit.next();
00082 if (InfoAnalysis.nativeMdSig.contains(sootMethod)) {
00083 System.out.println("Method " + sootMethod.getName() + " is a native method");
00084 continue;
00085 }
00086 if (!Slicer.reachableMethods.contains(sootMethod))
00087 continue;
00088 IndexMaps indexMaps = new IndexMaps(sootMethod);
00089 MethodInfo methodInfo = new MethodInfo();
00090 methodInfo.stmtList = indexMaps.getStmtList();
00091 methodInfo.originalStmtList = indexMaps.getOriginalStmtList();
00092 methodInfo.sootClass = sootClass;
00093 methodInfo.sootMethod = sootMethod;
00094 methodInfo.indexMaps = indexMaps;
00095 methodInfo.methodPDG = null;
00096 methodInfo.REF = indexMaps.getREF();
00097 methodInfo.MOD = indexMaps.getMOD();
00098 methodInfo.sCriterion = null;
00099 methodInfo.sliceSet = null;
00100 methodInfo.increCriterion = null;
00101 methodInfo.possibleReadyDependCallSite = new ArraySet();
00102 methodInfo.removedStmt = new ArraySet();
00103 methodsInClass.add(methodInfo);
00104 Slicer.sootMethodInfoMap.put(sootMethod, methodInfo);
00105 }
00106 }
00107
00108
00109
00110 public List getMethodsInfoList()
00111 {
00112 return methodsInClass;
00113 }
00114 }