Class JvmAssumeCaseCfaEdge
java.lang.Object
proguard.analysis.cpa.jvm.cfa.edges.JvmCfaEdge
proguard.analysis.cpa.jvm.cfa.edges.JvmInstructionCfaEdge
proguard.analysis.cpa.jvm.cfa.edges.JvmAssumeCaseCfaEdge
- All Implemented Interfaces:
CfaEdge<JvmCfaNode>
An edge representing an assumption that a case of a switch statement is taken.
-
Constructor Summary
ConstructorsConstructorDescriptionJvmAssumeCaseCfaEdge(JvmCfaNode source, JvmCfaNode target, CodeAttribute methodCode, int offset, int assumedCase) Create a JVM CFA assume case edge.JvmAssumeCaseCfaEdge(CodeAttribute methodCode, int offset, int assumedCase) Create a disconnected JVM CFA assume case edge. -
Method Summary
Modifier and TypeMethodDescriptionintReturns the assumed integer value of the switch variable made on this edge.Methods inherited from class proguard.analysis.cpa.jvm.cfa.edges.JvmInstructionCfaEdge
getInstruction, getMethodCodeMethods inherited from class proguard.analysis.cpa.jvm.cfa.edges.JvmCfaEdge
getSource, getTarget, setSource, setTarget, targetSignature
-
Constructor Details
-
JvmAssumeCaseCfaEdge
Create a disconnected JVM CFA assume case edge.- Parameters:
methodCode- the code attribute of the method the edge belongs tooffset- the offset of the instruction represented by the edgeassumedCase- an assumed integer value of the switch variable
-
JvmAssumeCaseCfaEdge
public JvmAssumeCaseCfaEdge(JvmCfaNode source, JvmCfaNode target, CodeAttribute methodCode, int offset, int assumedCase) Create a JVM CFA assume case edge. Also sets it as the entering and leaving edge of the source and target nodes.- Parameters:
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 edgeassumedCase- an assumed integer value of the switch variable
-
-
Method Details
-
getAssumedCase
public int getAssumedCase()Returns the assumed integer value of the switch variable made on this edge.
-