Class JvmMemoryLocationAbstractState.StackEntry<ContentT extends AbstractState<ContentT>>
- java.lang.Object
-
- proguard.analysis.cpa.jvm.domain.memory.JvmMemoryLocationAbstractState.StackEntry<ContentT>
-
- Type Parameters:
ContentT- The content of the jvm states. For example, this can be aSetAbstractStateof taints for taint analysis or aValueAbstractStatefor value analysis.
- Enclosing class:
- JvmMemoryLocationAbstractState<ContentT extends AbstractState<ContentT>>
public static class JvmMemoryLocationAbstractState.StackEntry<ContentT extends AbstractState<ContentT>> extends java.lang.ObjectAn entry of the call stack of the state.
-
-
Field Summary
Fields Modifier and Type Field Description JvmAbstractState<ContentT>callerStateProgramLocationDependentReachedSet<JvmAbstractState<ContentT>>reachedSetMethodSignaturesignature
-
Constructor Summary
Constructors Constructor Description StackEntry(MethodSignature signature, ProgramLocationDependentReachedSet<JvmAbstractState<ContentT>> reachedSet, JvmAbstractState<ContentT> callerState)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)inthashCode()
-
-
-
Field Detail
-
signature
public final MethodSignature signature
-
reachedSet
public final ProgramLocationDependentReachedSet<JvmAbstractState<ContentT extends AbstractState<ContentT>>> reachedSet
-
callerState
public final JvmAbstractState<ContentT extends AbstractState<ContentT>> callerState
-
-
Constructor Detail
-
StackEntry
public StackEntry(MethodSignature signature, ProgramLocationDependentReachedSet<JvmAbstractState<ContentT>> reachedSet, JvmAbstractState<ContentT> callerState)
-
-