类 JvmLocalVariableLocation
- java.lang.Object
-
- proguard.analysis.cpa.jvm.witness.JvmMemoryLocation
-
- proguard.analysis.cpa.jvm.witness.JvmLocalVariableLocation
-
public class JvmLocalVariableLocation extends JvmMemoryLocation
TheJvmLocalVariableLocationis a memory location at the local variable array.
-
-
字段概要
字段 修饰符和类型 字段 说明 intindex
-
构造器概要
构造器 构造器 说明 JvmLocalVariableLocation(int index)Create a local variable location.
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 booleanequals(java.lang.Object obj)<T extends AbstractState<T>>
TextractValueOrDefault(JvmAbstractState<T> jvmState, T defaultValue)Given a JVM state, extract its content in the position represented by thisJvmMemoryLocation.inthashCode()java.lang.StringtoString()
-
-
-
方法详细资料
-
extractValueOrDefault
public <T extends AbstractState<T>> T extractValueOrDefault(JvmAbstractState<T> jvmState, T defaultValue)
从类复制的说明:JvmMemoryLocationGiven a JVM state, extract its content in the position represented by thisJvmMemoryLocation.- 指定者:
extractValueOrDefault在类中JvmMemoryLocation- 类型参数:
T- The type of the states contained in the JVM state. e.g., for taint analysis this would be aSetAbstractStatecontaining the taints and for value analysis aValueAbstractState.- 参数:
jvmState- The state from which the value is extracted.defaultValue- The value returned if it's not possible to extract the value.- 返回:
- The value from the JVM abstract state for the memory location represented by this object. Or default value if not possible.
-
equals
public boolean equals(java.lang.Object obj)
- 指定者:
equals在类中JvmMemoryLocation
-
hashCode
public int hashCode()
- 指定者:
hashCode在类中JvmMemoryLocation
-
toString
public java.lang.String toString()
- 指定者:
toString在类中JvmMemoryLocation
-
-