类 JvmAssumeCfaEdge
- java.lang.Object
-
- proguard.analysis.cpa.jvm.cfa.edges.JvmCfaEdge
-
- proguard.analysis.cpa.jvm.cfa.edges.JvmInstructionCfaEdge
-
- proguard.analysis.cpa.jvm.cfa.edges.JvmAssumeCfaEdge
-
- 所有已实现的接口:
CfaEdge<JvmCfaNode>
public class JvmAssumeCfaEdge extends JvmInstructionCfaEdge
An edge representing an assumption on a JVM branch instruction that can be either taken or not taken.
-
-
构造器概要
构造器 构造器 说明 JvmAssumeCfaEdge(JvmCfaNode source, JvmCfaNode target, CodeAttribute methodCode, int offset, boolean isSatisfied)Create a JVM CFA assume branch edge.JvmAssumeCfaEdge(CodeAttribute methodCode, int offset, boolean isSatisfied)Create a disconnected JVM CFA assume branch edge.
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 booleanisSatisfied()Returns the assumption on the branch statement result made on this edge.-
从类继承的方法 proguard.analysis.cpa.jvm.cfa.edges.JvmInstructionCfaEdge
getInstruction, getMethodCode
-
从类继承的方法 proguard.analysis.cpa.jvm.cfa.edges.JvmCfaEdge
getSource, getTarget, setSource, setTarget, targetSignature
-
-
-
-
构造器详细资料
-
JvmAssumeCfaEdge
public JvmAssumeCfaEdge(CodeAttribute methodCode, int offset, boolean isSatisfied)
Create a disconnected JVM CFA assume branch edge.- 参数:
methodCode- the code attribute of the method the edge belongs tooffset- the offset of the instruction represented by the edgeisSatisfied- an assumption on the branch result
-
JvmAssumeCfaEdge
public JvmAssumeCfaEdge(JvmCfaNode source, JvmCfaNode target, CodeAttribute methodCode, int offset, boolean isSatisfied)
Create a JVM CFA assume branch edge. Also sets it as the entering and leaving edge of the source and target nodes.- 参数:
source- the source node of the edgetarget- the target node of the edgemethodCode- the code attribute of the method the edge belongs tooffset- the offset of the instruction represented by the edgeisSatisfied- an assumption on hte branch result
-
-