Package de.mirkosertic.bytecoder.core.ir
Class MethodInvocation
- java.lang.Object
-
- de.mirkosertic.bytecoder.core.ir.Node
-
- de.mirkosertic.bytecoder.core.ir.ControlTokenConsumer
-
- de.mirkosertic.bytecoder.core.ir.MethodInvocation
-
- All Implemented Interfaces:
AbstractInvocation
,PotentialSideeffect
public class MethodInvocation extends ControlTokenConsumer implements PotentialSideeffect, AbstractInvocation
-
-
Field Summary
Fields Modifier and Type Field Description org.objectweb.asm.tree.MethodInsnNode
insnNode
InvocationType
invocationType
ResolvedMethod
method
-
Fields inherited from class de.mirkosertic.bytecoder.core.ir.ControlTokenConsumer
controlComingFrom, controlFlowsTo
-
Fields inherited from class de.mirkosertic.bytecoder.core.ir.Node
error, incomingDataFlows, outgoingFlows, tobepruned
-
-
Constructor Summary
Constructors Constructor Description MethodInvocation(org.objectweb.asm.tree.MethodInsnNode insnNode, ResolvedMethod method, InvocationType invocationType)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
additionalDebugInfo()
void
changeInvocationTypeTo(InvocationType newInvocationType)
InvocationType
invocationType()
ResolvedMethod
method()
-
Methods inherited from class de.mirkosertic.bytecoder.core.ir.ControlTokenConsumer
addControlFlowTo, hasIncomingBackEdges, remapControlFlowTo
-
Methods inherited from class de.mirkosertic.bytecoder.core.ir.Node
addIncomingData, addOutgoingData, clearIncomingData, isMarkedToBePruned, markAsDoBePruned, remapDataFlow, removeFromIncomingData, removeFromOutgoingData
-
-
-
-
Field Detail
-
insnNode
public final org.objectweb.asm.tree.MethodInsnNode insnNode
-
method
public final ResolvedMethod method
-
invocationType
public InvocationType invocationType
-
-
Constructor Detail
-
MethodInvocation
public MethodInvocation(org.objectweb.asm.tree.MethodInsnNode insnNode, ResolvedMethod method, InvocationType invocationType)
-
-
Method Detail
-
additionalDebugInfo
public java.lang.String additionalDebugInfo()
- Overrides:
additionalDebugInfo
in classNode
-
method
public ResolvedMethod method()
- Specified by:
method
in interfaceAbstractInvocation
-
invocationType
public InvocationType invocationType()
- Specified by:
invocationType
in interfaceAbstractInvocation
-
changeInvocationTypeTo
public void changeInvocationTypeTo(InvocationType newInvocationType)
- Specified by:
changeInvocationTypeTo
in interfaceAbstractInvocation
-
-