Uses of Class
soot.jimple.toolkits.pointer.RWSet

Packages that use RWSet
soot.jimple.toolkits.pointer   
 

Uses of RWSet in soot.jimple.toolkits.pointer
 

Subclasses of RWSet in soot.jimple.toolkits.pointer
 class FullRWSet
           
 class MethodRWSet
          Represents the read or write set of a statement.
 class SiteRWSet
          Represents the read or write set of a statement.
 class StmtRWSet
          Represents the read or write set of a statement.
 

Methods in soot.jimple.toolkits.pointer that return RWSet
protected  RWSet PASideEffectTester.readSet(Unit u)
           
protected  RWSet PASideEffectTester.writeSet(Unit u)
           
 RWSet SideEffectAnalysis.nonTransitiveReadSet(SootMethod method)
           
 RWSet SideEffectAnalysis.nonTransitiveWriteSet(SootMethod method)
           
 RWSet SideEffectAnalysis.readSet(SootMethod method, Stmt stmt)
           
 RWSet SideEffectAnalysis.writeSet(SootMethod method, Stmt stmt)
           
protected  RWSet SideEffectAnalysis.addValue(Value v, SootMethod m, Stmt s)
           
 

Methods in soot.jimple.toolkits.pointer with parameters of type RWSet
 boolean FullRWSet.hasNonEmptyIntersection(RWSet other)
           
 boolean FullRWSet.union(RWSet other)
          Adds the RWSet other into this set.
 boolean FullRWSet.isEquivTo(RWSet other)
           
 boolean MethodRWSet.hasNonEmptyIntersection(RWSet oth)
           
 boolean MethodRWSet.union(RWSet other)
          Adds the RWSet other into this set.
 boolean MethodRWSet.isEquivTo(RWSet other)
           
protected  boolean PASideEffectTester.valueTouchesRWSet(RWSet s, Value v, List boxes)
           
abstract  boolean RWSet.hasNonEmptyIntersection(RWSet other)
           
abstract  boolean RWSet.union(RWSet other)
          Adds the RWSet other into this set.
abstract  boolean RWSet.isEquivTo(RWSet other)
           
 boolean SiteRWSet.hasNonEmptyIntersection(RWSet oth)
           
 boolean SiteRWSet.union(RWSet other)
          Adds the RWSet other into this set.
 boolean SiteRWSet.isEquivTo(RWSet other)
           
 boolean StmtRWSet.hasNonEmptyIntersection(RWSet other)
           
 boolean StmtRWSet.union(RWSet other)
          Adds the RWSet other into this set.
 boolean StmtRWSet.isEquivTo(RWSet other)