类 JvmInstructionCfaEdge
- java.lang.Object
-
- proguard.analysis.cpa.jvm.cfa.edges.JvmCfaEdge
-
- proguard.analysis.cpa.jvm.cfa.edges.JvmInstructionCfaEdge
-
- 所有已实现的接口:
CfaEdge<JvmCfaNode>
public class JvmInstructionCfaEdge extends JvmCfaEdge
AJvmCfaEdgethe operation of which is defined by an instruction.An instruction is identified by a code attribute and an offset and generated on the fly.
-
-
构造器概要
构造器 构造器 说明 JvmInstructionCfaEdge(JvmCfaNode source, JvmCfaNode target, CodeAttribute methodCode, int offset)Create a JVM CFA instruction edge.JvmInstructionCfaEdge(CodeAttribute methodCode, int offset)Create a disconnected JVM CFA instruction edge.
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 InstructiongetInstruction()Generates and returns the JVM instruction represented by the edge.CodeAttributegetMethodCode()Returns the code attribute of the method the node belongs to.-
从类继承的方法 proguard.analysis.cpa.jvm.cfa.edges.JvmCfaEdge
getSource, getTarget, setSource, setTarget, targetSignature
-
-
-
-
构造器详细资料
-
JvmInstructionCfaEdge
public JvmInstructionCfaEdge(CodeAttribute methodCode, int offset)
Create a disconnected JVM CFA instruction edge.- 参数:
methodCode- the code attribute of the method the edge belongs tooffset- the offset of the instruction represented by the edge
-
JvmInstructionCfaEdge
public JvmInstructionCfaEdge(JvmCfaNode source, JvmCfaNode target, CodeAttribute methodCode, int offset)
Create a JVM CFA instruction 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 edge
-
-
方法详细资料
-
getInstruction
public Instruction getInstruction()
Generates and returns the JVM instruction represented by the edge.
-
getMethodCode
public CodeAttribute getMethodCode()
Returns the code attribute of the method the node belongs to.
-
-