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
00082
00083
00084 import ca.mcgill.sable.soot.*;
00085 import ca.mcgill.sable.util.*;
00086
00087 class SimpleLiveLocalsAnalysis extends BackwardFlowAnalysis
00088 {
00089 FlowSet emptySet;
00090 Map stmtToGenerateSet;
00091 Map stmtToPreserveSet;
00092
00093 SimpleLiveLocalsAnalysis(StmtGraph g)
00094 {
00095 super(g);
00096
00097 if(Main.isProfilingOptimization)
00098 Main.liveSetupTimer.start();
00099
00100
00101 {
00102 List locals = g.getBody().getLocals();
00103 FlowUniverse localUniverse = new FlowUniverse(locals.toArray());
00104
00105 emptySet = new ArrayPackedSet(localUniverse);
00106
00107 }
00108
00109
00110 {
00111 stmtToPreserveSet = new HashMap(g.size() * 2 + 1, 0.7f);
00112
00113 Iterator stmtIt = g.iterator();
00114
00115 while(stmtIt.hasNext())
00116 {
00117 Stmt s = (Stmt) stmtIt.next();
00118
00119 BoundedFlowSet killSet = (BoundedFlowSet) emptySet.clone();
00120
00121 Iterator boxIt = s.getDefBoxes().iterator();
00122
00123 while(boxIt.hasNext())
00124 {
00125 ValueBox box = (ValueBox) boxIt.next();
00126
00127 if(box.getValue() instanceof Local)
00128 killSet.add(box.getValue(), killSet);
00129 }
00130
00131
00132 killSet.complement(killSet);
00133 stmtToPreserveSet.put(s, killSet);
00134 }
00135 }
00136
00137
00138 {
00139 stmtToGenerateSet = new HashMap(g.size() * 2 + 1, 0.7f);
00140
00141 Iterator stmtIt = g.iterator();
00142
00143 while(stmtIt.hasNext())
00144 {
00145 Stmt s = (Stmt) stmtIt.next();
00146
00147 FlowSet genSet = (FlowSet) emptySet.clone();
00148
00149 Iterator boxIt = s.getUseBoxes().iterator();
00150
00151 while(boxIt.hasNext())
00152 {
00153 ValueBox box = (ValueBox) boxIt.next();
00154
00155 if(box.getValue() instanceof Local)
00156 genSet.add(box.getValue(), genSet);
00157 }
00158
00159 stmtToGenerateSet.put(s, genSet);
00160 }
00161 }
00162
00163 if(Main.isProfilingOptimization)
00164 Main.liveSetupTimer.end();
00165
00166 if(Main.isProfilingOptimization)
00167 Main.liveAnalysisTimer.start();
00168
00169 doAnalysis();
00170
00171 if(Main.isProfilingOptimization)
00172 Main.liveAnalysisTimer.end();
00173
00174 }
00175 protected void copy(Object source, Object dest)
00176 {
00177 FlowSet sourceSet = (FlowSet) source,
00178 destSet = (FlowSet) dest;
00179
00180 sourceSet.copy(destSet);
00181 }
00182 protected void flowThrough(Object inValue, Stmt stmt, Object outValue)
00183 {
00184 FlowSet in = (FlowSet) inValue, out = (FlowSet) outValue;
00185
00186
00187 in.intersection((FlowSet) stmtToPreserveSet.get(stmt), out);
00188
00189
00190 out.union((FlowSet) stmtToGenerateSet.get(stmt), out);
00191 }
00192 protected void merge(Object in1, Object in2, Object out)
00193 {
00194 FlowSet inSet1 = (FlowSet) in1,
00195 inSet2 = (FlowSet) in2;
00196
00197 FlowSet outSet = (FlowSet) out;
00198
00199 inSet1.union(inSet2, outSet);
00200 }
00201 protected Object newInitialFlow()
00202 {
00203 return emptySet.clone();
00204 }
00205 }