Package de.mirkosertic.bytecoder.core.ir
Class MethodInvocationExpression
- java.lang.Object
-
- de.mirkosertic.bytecoder.core.ir.Node
-
- de.mirkosertic.bytecoder.core.ir.Value
-
- de.mirkosertic.bytecoder.core.ir.MethodInvocationExpression
-
- All Implemented Interfaces:
AbstractInvocation
public class MethodInvocationExpression extends Value implements AbstractInvocation
-
-
Field Summary
Fields Modifier and Type Field Description org.objectweb.asm.tree.MethodInsnNodeinsnNodeInvocationTypeinvocationTypeResolvedMethodmethod-
Fields inherited from class de.mirkosertic.bytecoder.core.ir.Node
error, incomingDataFlows, nodeType, owner
-
-
Constructor Summary
Constructors Constructor Description MethodInvocationExpression(Graph owner, 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.StringadditionalDebugInfo()voidchangeInvocationTypeTo(InvocationType newInvocationType)booleanhasSideSideEffect()InvocationTypeinvocationType()ResolvedMethodmethod()MethodInvocationExpressionstampInto(Graph target)-
Methods inherited from class de.mirkosertic.bytecoder.core.ir.Node
addIncomingData, hasSideSideEffectRecursive, isConstant, outgoingDataFlows, remapDataFlow, removeFromIncomingData, sanityCheck
-
-
-
-
Field Detail
-
insnNode
public final org.objectweb.asm.tree.MethodInsnNode insnNode
-
method
public final ResolvedMethod method
-
invocationType
public InvocationType invocationType
-
-
Constructor Detail
-
MethodInvocationExpression
MethodInvocationExpression(Graph owner, org.objectweb.asm.tree.MethodInsnNode insnNode, ResolvedMethod method, InvocationType invocationType)
-
-
Method Detail
-
additionalDebugInfo
public java.lang.String additionalDebugInfo()
- Overrides:
additionalDebugInfoin classNode
-
method
public ResolvedMethod method()
- Specified by:
methodin interfaceAbstractInvocation
-
invocationType
public InvocationType invocationType()
- Specified by:
invocationTypein interfaceAbstractInvocation
-
changeInvocationTypeTo
public void changeInvocationTypeTo(InvocationType newInvocationType)
- Specified by:
changeInvocationTypeToin interfaceAbstractInvocation
-
hasSideSideEffect
public boolean hasSideSideEffect()
- Overrides:
hasSideSideEffectin classNode
-
stampInto
public MethodInvocationExpression stampInto(Graph target)
-
-