00001 package ca.mcgill.sable.soot.jimple;
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
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073
00074
00075
00076
00077
00078
00079
00080
00081 import ca.mcgill.sable.soot.*;
00082 import ca.mcgill.sable.util.*;
00083
00084 class CopiesFlowAnalysis extends ForwardFlowAnalysis
00085 {
00086 FlowSet emptySet;
00087 Map localToPreserveSet;
00088
00089 CopiesFlowAnalysis(StmtGraph g)
00090 {
00091 super(g);
00092
00093 List copiesList;
00094
00095
00096 {
00097 copiesList = new ArrayList();
00098
00099 Iterator stmtIt = g.iterator();
00100
00101 while(stmtIt.hasNext())
00102 {
00103 Stmt s = (Stmt) stmtIt.next();
00104
00105 if(s instanceof DefinitionStmt)
00106 {
00107 DefinitionStmt def = (DefinitionStmt) s;
00108
00109 if(def.getLeftOp() instanceof Local &&
00110 def.getRightOp() instanceof Local)
00111 {
00112 copiesList.add(new LocalCopy((Local) def.getLeftOp(),
00113 (Local) def.getRightOp()));
00114 }
00115 }
00116 }
00117
00118 FlowUniverse copiesUniverse = new FlowUniverse(copiesList.toArray());
00119
00120 emptySet = new ArrayPackedSet(copiesUniverse);
00121 }
00122
00123
00124 {
00125 localToPreserveSet = new HashMap(g.getBody().getLocalCount() * 2 + 1, 0.7f);
00126
00127
00128 {
00129 Iterator localIt = g.getBody().getLocals().iterator();
00130
00131 while(localIt.hasNext())
00132 localToPreserveSet.put(localIt.next(), emptySet.clone());
00133 }
00134
00135
00136 {
00137 Iterator copyIt = copiesList.iterator();
00138
00139 while(copyIt.hasNext())
00140 {
00141 LocalCopy copy = (LocalCopy) copyIt.next();
00142
00143 FlowSet fset = (FlowSet) localToPreserveSet.get(copy.leftLocal);
00144
00145 fset.add(copy, fset);
00146
00147 fset = (FlowSet) localToPreserveSet.get(copy.rightLocal);
00148 fset.add(copy, fset);
00149 }
00150 }
00151
00152
00153 {
00154 Iterator localIt = g.getBody().getLocals().iterator();
00155
00156 while(localIt.hasNext())
00157 {
00158 BoundedFlowSet preserveSet = (BoundedFlowSet) localToPreserveSet.get(localIt.next());
00159
00160 preserveSet.complement(preserveSet);
00161 }
00162 }
00163 }
00164
00165
00166 doAnalysis();
00167 }
00168 protected void copy(Object source, Object dest)
00169 {
00170 FlowSet sourceSet = (FlowSet) source,
00171 destSet = (FlowSet) dest;
00172
00173 sourceSet.copy(destSet);
00174 }
00175 protected void flowThrough(Object inValue, Stmt stmt, Object outValue)
00176 {
00177 FlowSet in = (FlowSet) inValue, out = (FlowSet) outValue;
00178
00179 if(stmt instanceof DefinitionStmt)
00180 {
00181
00182 {
00183 DefinitionStmt def = (DefinitionStmt) stmt;
00184
00185 if(def.getLeftOp() instanceof Local)
00186 in.intersection((FlowSet) localToPreserveSet.get(def.getLeftOp()), out);
00187 else
00188 in.copy(out);
00189 }
00190
00191
00192 {
00193 DefinitionStmt def = (DefinitionStmt) stmt;
00194
00195 if(def.getLeftOp() instanceof Local && def.getRightOp() instanceof Local)
00196 {
00197 out.add(new LocalCopy((Local) def.getLeftOp(), (Local) def.getRightOp()),
00198 out);
00199
00200 }
00201 }
00202 }
00203 else
00204 in.copy(out);
00205 }
00206 protected void merge(Object in1, Object in2, Object out)
00207 {
00208 FlowSet inSet1 = (FlowSet) in1,
00209 inSet2 = (FlowSet) in2;
00210
00211 FlowSet outSet = (FlowSet) out;
00212
00213 inSet1.intersection(inSet2, outSet);
00214 }
00215 protected Object newInitialFlow()
00216 {
00217 return emptySet.clone();
00218 }
00219 }