class State extends AnyRef
The state of the analysis. For each method and source fact, there is a separate state.
- Alphabetic
- By Inheritance
- State
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new State(declaringClass: ObjectType, context: Context, source: (Context, IFDSFact), code: Array[Stmt[V]], cfg: CFG[Stmt[V], TACStmts[V]], pendingIfdsCallSites: Map[(Context, IFDSFact), Set[(BasicBlock, Int)]], pendingIfdsDependees: Map[(Context, IFDSFact), EOptionP[(Context, IFDSFact), IFDSProperty[IFDSFact]]] = Map.empty, pendingCgCallSites: Set[BasicBlock] = Set.empty, cgDependency: Option[SomeEOptionP] = None, incomingFacts: Map[BasicBlock, Set[IFDSFact]] = Map.empty, outgoingFacts: Map[BasicBlock, Map[CFGNode, Set[IFDSFact]]] = Map.empty)
- declaringClass
The class defining the analyzed
method
.- source
A fact, that holds at the beginning of
method
.- code
The code of
method
.- cfg
The control glow graph of
method
.- pendingIfdsCallSites
Maps callees of the analyzed
method
together with their input facts to the basic block and statement index of the call site(s).- pendingIfdsDependees
Maps callees of the analyzed
method
together with their input facts to the intermediate result of their IFDS analysis. Only contains method-fact-pairs, for which this analysis is waiting for a result.- pendingCgCallSites
The basic blocks containing call sites, for which the analysis is still waiting for the call graph result.
- cgDependency
If present, the analysis is waiting for the
method
's call graph.- incomingFacts
Maps each basic block to the data flow facts valid at its first statement.
- outgoingFacts
Maps each basic block and successor node to the data flow facts valid at the beginning of the node.
Value Members
- val cfg: CFG[Stmt[V], TACStmts[V]]
- var cgDependency: Option[SomeEOptionP]
- val code: Array[Stmt[V]]
- val context: Context
- val declaringClass: ObjectType
- var incomingFacts: Map[BasicBlock, Set[IFDSFact]]
- var outgoingFacts: Map[BasicBlock, Map[CFGNode, Set[IFDSFact]]]
- var pendingCgCallSites: Set[BasicBlock]
- var pendingIfdsCallSites: Map[(Context, IFDSFact), Set[(BasicBlock, Int)]]
- var pendingIfdsDependees: Map[(Context, IFDSFact), EOptionP[(Context, IFDSFact), IFDSProperty[IFDSFact]]]
- val source: (Context, IFDSFact)