|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectsoot.toolkits.scalar.AbstractFlowAnalysis
soot.toolkits.scalar.FlowAnalysis
soot.toolkits.scalar.BackwardFlowAnalysis
soot.toolkits.scalar.CombinedDUAnalysis
Analysis that computes live locals, local defs, and local uses all at once.
Field Summary |
Fields inherited from class soot.toolkits.scalar.FlowAnalysis |
filterUnitToAfterFlow, unitToAfterFlow |
Fields inherited from class soot.toolkits.scalar.AbstractFlowAnalysis |
filterUnitToBeforeFlow, unitToBeforeFlow |
Method Summary | |
protected void |
copy(Object source,
Object dest)
Creates a copy of the source flow object in dest . |
protected Object |
entryInitialFlow()
Returns the initial flow value for entry/exit graph nodes. |
protected void |
flowThrough(Object outValue,
Object unit,
Object inValue)
Given the merge of the out sets, compute the in set for s (or in to out, depending on direction). |
List |
getDefsOfAt(Local l,
Unit s)
Returns the definition sites for a Local at a certain point (Unit) in a method. |
List |
getLiveLocalsAfter(Unit u)
Returns the list of Locals that are live after the specified Unit. |
List |
getLiveLocalsBefore(Unit u)
Returns the list of Locals that are live before the specified Unit. |
List |
getUsesOf(Unit u)
Returns a list of the Units that use the Local that is defined by a given Unit. |
protected void |
merge(Object inoutO,
Object inO)
|
protected void |
merge(Object in1O,
Object in2O,
Object outO)
Compute the merge of the in1 and in2 sets, putting the result into out . |
protected Object |
newInitialFlow()
Returns the flow object corresponding to the initial values for each graph node. |
static CombinedAnalysis |
v(UnitGraph graph)
|
Methods inherited from class soot.toolkits.scalar.BackwardFlowAnalysis |
doAnalysis, isForward |
Methods inherited from class soot.toolkits.scalar.FlowAnalysis |
getFlowAfter |
Methods inherited from class soot.toolkits.scalar.AbstractFlowAnalysis |
customizeInitialFlowGraph, getFlowBefore, treatTrapHandlersAsEntries |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
public List getDefsOfAt(Local l, Unit s)
LocalDefs
getDefsOfAt
in interface LocalDefs
l
- the Local in question.s
- a unit that specifies the method context (location)
to query for the definitions of the Local.
public List getUsesOf(Unit u)
LocalUses
getUsesOf
in interface LocalUses
u
- the unit we wish to query for the use of the Local
it defines.
public List getLiveLocalsBefore(Unit u)
LiveLocals
getLiveLocalsBefore
in interface LiveLocals
u
- the Unit that defines this query.
public List getLiveLocalsAfter(Unit u)
LiveLocals
getLiveLocalsAfter
in interface LiveLocals
u
- the Unit that defines this query.
public static CombinedAnalysis v(UnitGraph graph)
protected void merge(Object inoutO, Object inO)
merge
in class AbstractFlowAnalysis
protected void merge(Object in1O, Object in2O, Object outO)
AbstractFlowAnalysis
in1
and in2
sets, putting the result into out
.
The behavior of this function depends on the implementation ( it may be necessary to check whether
in1
and in2
are equal or aliased ).
Used by the doAnalysis method.
merge
in class AbstractFlowAnalysis
protected void flowThrough(Object outValue, Object unit, Object inValue)
FlowAnalysis
out
sets, compute the in
set for s
(or in to out, depending on direction).
flowThrough
in class FlowAnalysis
protected Object entryInitialFlow()
AbstractFlowAnalysis
entryInitialFlow
in class AbstractFlowAnalysis
protected Object newInitialFlow()
AbstractFlowAnalysis
newInitialFlow
in class AbstractFlowAnalysis
protected void copy(Object source, Object dest)
AbstractFlowAnalysis
source
flow object in dest
.
copy
in class AbstractFlowAnalysis
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |