Class JvmMemoryLocationAbstractState.StackEntry
- java.lang.Object
-
- proguard.analysis.cpa.jvm.domain.memory.JvmMemoryLocationAbstractState.StackEntry
-
- Enclosing class:
- JvmMemoryLocationAbstractState<AbstractStateT extends AbstractState & ProgramLocationDependent<JvmCfaNode,JvmCfaEdge,MethodSignature>>
public static class JvmMemoryLocationAbstractState.StackEntry extends java.lang.Object
An entry of the call stack of the state.
-
-
Field Summary
Fields Modifier and Type Field Description AbstractState
callerState
ProgramLocationDependentReachedSet
reachedSet
MethodSignature
signature
-
Constructor Summary
Constructors Constructor Description StackEntry(MethodSignature signature, ProgramLocationDependentReachedSet reachedSet, AbstractState callerState)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
int
hashCode()
-
-
-
Field Detail
-
signature
public final MethodSignature signature
-
reachedSet
public final ProgramLocationDependentReachedSet reachedSet
-
callerState
public final AbstractState callerState
-
-
Constructor Detail
-
StackEntry
public StackEntry(MethodSignature signature, ProgramLocationDependentReachedSet reachedSet, AbstractState callerState)
-
-