Package org.objectweb.asm.tree
Class MethodNode
- java.lang.Object
-
- org.objectweb.asm.MethodVisitor
-
- org.objectweb.asm.tree.MethodNode
-
public class MethodNode extends org.objectweb.asm.MethodVisitorA node that represents a method.
-
-
Field Summary
Fields Modifier and Type Field Description intaccessThe method's access flags (seeOpcodes).java.lang.ObjectannotationDefaultThe default value of this annotation interface method.java.util.List<org.objectweb.asm.Attribute>attrsThe non standard attributes of this method.java.lang.StringdescThe method's descriptor (seeType).java.util.List<java.lang.String>exceptionsThe internal names of the method's exception classes (seeType.getInternalName()).InsnListinstructionsThe instructions of this method.intinvisibleAnnotableParameterCountThe number of method parameters than can have runtime invisible annotations.java.util.List<AnnotationNode>invisibleAnnotationsThe runtime invisible annotations of this method.java.util.List<LocalVariableAnnotationNode>invisibleLocalVariableAnnotationsThe invisible local variable annotations of this method.java.util.List<AnnotationNode>[]invisibleParameterAnnotationsThe runtime invisible parameter annotations of this method.java.util.List<TypeAnnotationNode>invisibleTypeAnnotationsThe runtime invisible type annotations of this method.java.util.List<LocalVariableNode>localVariablesThe local variables of this method.intmaxLocalsThe maximum number of local variables of this method.intmaxStackThe maximum stack size of this method.java.lang.StringnameThe method's name.java.util.List<ParameterNode>parametersThe method parameter info (access flags and name).java.lang.StringsignatureThe method's signature.java.util.List<TryCatchBlockNode>tryCatchBlocksThe try catch blocks of this method.intvisibleAnnotableParameterCountThe number of method parameters than can have runtime visible annotations.java.util.List<AnnotationNode>visibleAnnotationsThe runtime visible annotations of this method.java.util.List<LocalVariableAnnotationNode>visibleLocalVariableAnnotationsThe visible local variable annotations of this method.java.util.List<AnnotationNode>[]visibleParameterAnnotationsThe runtime visible parameter annotations of this method.java.util.List<TypeAnnotationNode>visibleTypeAnnotationsThe runtime visible type annotations of this method.
-
Constructor Summary
Constructors Constructor Description MethodNode()Constructs an uninitializedMethodNode.MethodNode(int api)Constructs an uninitializedMethodNode.MethodNode(int api, int access, java.lang.String name, java.lang.String descriptor, java.lang.String signature, java.lang.String[] exceptions)Constructs a newMethodNode.MethodNode(int access, java.lang.String name, java.lang.String descriptor, java.lang.String signature, java.lang.String[] exceptions)Constructs a newMethodNode.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaccept(org.objectweb.asm.ClassVisitor classVisitor)Makes the given class visitor visit this method.voidaccept(org.objectweb.asm.MethodVisitor methodVisitor)Makes the given method visitor visit this method.voidcheck(int api)Checks that this method node is compatible with the given ASM API version.protected LabelNodegetLabelNode(org.objectweb.asm.Label label)Returns the LabelNode corresponding to the given Label.voidvisitAnnotableParameterCount(int parameterCount, boolean visible)org.objectweb.asm.AnnotationVisitorvisitAnnotation(java.lang.String descriptor, boolean visible)org.objectweb.asm.AnnotationVisitorvisitAnnotationDefault()voidvisitAttribute(org.objectweb.asm.Attribute attribute)voidvisitCode()voidvisitEnd()voidvisitFieldInsn(int opcode, java.lang.String owner, java.lang.String name, java.lang.String descriptor)voidvisitFrame(int type, int numLocal, java.lang.Object[] local, int numStack, java.lang.Object[] stack)voidvisitIincInsn(int var, int increment)voidvisitInsn(int opcode)org.objectweb.asm.AnnotationVisitorvisitInsnAnnotation(int typeRef, org.objectweb.asm.TypePath typePath, java.lang.String descriptor, boolean visible)voidvisitIntInsn(int opcode, int operand)voidvisitInvokeDynamicInsn(java.lang.String name, java.lang.String descriptor, org.objectweb.asm.Handle bootstrapMethodHandle, java.lang.Object... bootstrapMethodArguments)voidvisitJumpInsn(int opcode, org.objectweb.asm.Label label)voidvisitLabel(org.objectweb.asm.Label label)voidvisitLdcInsn(java.lang.Object value)voidvisitLineNumber(int line, org.objectweb.asm.Label start)voidvisitLocalVariable(java.lang.String name, java.lang.String descriptor, java.lang.String signature, org.objectweb.asm.Label start, org.objectweb.asm.Label end, int index)org.objectweb.asm.AnnotationVisitorvisitLocalVariableAnnotation(int typeRef, org.objectweb.asm.TypePath typePath, org.objectweb.asm.Label[] start, org.objectweb.asm.Label[] end, int[] index, java.lang.String descriptor, boolean visible)voidvisitLookupSwitchInsn(org.objectweb.asm.Label dflt, int[] keys, org.objectweb.asm.Label[] labels)voidvisitMaxs(int maxStack, int maxLocals)voidvisitMethodInsn(int opcodeAndSource, java.lang.String owner, java.lang.String name, java.lang.String descriptor, boolean isInterface)voidvisitMultiANewArrayInsn(java.lang.String descriptor, int numDimensions)voidvisitParameter(java.lang.String name, int access)org.objectweb.asm.AnnotationVisitorvisitParameterAnnotation(int parameter, java.lang.String descriptor, boolean visible)voidvisitTableSwitchInsn(int min, int max, org.objectweb.asm.Label dflt, org.objectweb.asm.Label... labels)org.objectweb.asm.AnnotationVisitorvisitTryCatchAnnotation(int typeRef, org.objectweb.asm.TypePath typePath, java.lang.String descriptor, boolean visible)voidvisitTryCatchBlock(org.objectweb.asm.Label start, org.objectweb.asm.Label end, org.objectweb.asm.Label handler, java.lang.String type)org.objectweb.asm.AnnotationVisitorvisitTypeAnnotation(int typeRef, org.objectweb.asm.TypePath typePath, java.lang.String descriptor, boolean visible)voidvisitTypeInsn(int opcode, java.lang.String type)voidvisitVarInsn(int opcode, int var)
-
-
-
Field Detail
-
access
public int access
The method's access flags (seeOpcodes). This field also indicates if the method is synthetic and/or deprecated.
-
name
public java.lang.String name
The method's name.
-
desc
public java.lang.String desc
The method's descriptor (seeType).
-
signature
public java.lang.String signature
The method's signature. May be null.
-
exceptions
public java.util.List<java.lang.String> exceptions
The internal names of the method's exception classes (seeType.getInternalName()).
-
parameters
public java.util.List<ParameterNode> parameters
The method parameter info (access flags and name).
-
visibleAnnotations
public java.util.List<AnnotationNode> visibleAnnotations
The runtime visible annotations of this method. May be null.
-
invisibleAnnotations
public java.util.List<AnnotationNode> invisibleAnnotations
The runtime invisible annotations of this method. May be null.
-
visibleTypeAnnotations
public java.util.List<TypeAnnotationNode> visibleTypeAnnotations
The runtime visible type annotations of this method. May be null.
-
invisibleTypeAnnotations
public java.util.List<TypeAnnotationNode> invisibleTypeAnnotations
The runtime invisible type annotations of this method. May be null.
-
attrs
public java.util.List<org.objectweb.asm.Attribute> attrs
The non standard attributes of this method. May be null.
-
annotationDefault
public java.lang.Object annotationDefault
The default value of this annotation interface method. This field must be aByte,Boolean,Character,Short,Integer,Long,Float,Double,StringorType, or an two elements String array (for enumeration values), aAnnotationNode, or aListof values of one of the preceding types. May be null.
-
visibleAnnotableParameterCount
public int visibleAnnotableParameterCount
The number of method parameters than can have runtime visible annotations. This number must be less or equal than the number of parameter types in the method descriptor (the default value 0 indicates that all the parameters described in the method descriptor can have annotations). It can be strictly less when a method has synthetic parameters and when these parameters are ignored when computing parameter indices for the purpose of parameter annotations (see https://docs.oracle.com/javase/specs/jvms/se9/html/jvms-4.html#jvms-4.7.18).
-
visibleParameterAnnotations
public java.util.List<AnnotationNode>[] visibleParameterAnnotations
The runtime visible parameter annotations of this method. These lists are lists ofAnnotationNodeobjects. May be null.
-
invisibleAnnotableParameterCount
public int invisibleAnnotableParameterCount
The number of method parameters than can have runtime invisible annotations. This number must be less or equal than the number of parameter types in the method descriptor (the default value 0 indicates that all the parameters described in the method descriptor can have annotations). It can be strictly less when a method has synthetic parameters and when these parameters are ignored when computing parameter indices for the purpose of parameter annotations (see https://docs.oracle.com/javase/specs/jvms/se9/html/jvms-4.html#jvms-4.7.18).
-
invisibleParameterAnnotations
public java.util.List<AnnotationNode>[] invisibleParameterAnnotations
The runtime invisible parameter annotations of this method. These lists are lists ofAnnotationNodeobjects. May be null.
-
instructions
public InsnList instructions
The instructions of this method.
-
tryCatchBlocks
public java.util.List<TryCatchBlockNode> tryCatchBlocks
The try catch blocks of this method.
-
maxStack
public int maxStack
The maximum stack size of this method.
-
maxLocals
public int maxLocals
The maximum number of local variables of this method.
-
localVariables
public java.util.List<LocalVariableNode> localVariables
The local variables of this method. May be null
-
visibleLocalVariableAnnotations
public java.util.List<LocalVariableAnnotationNode> visibleLocalVariableAnnotations
The visible local variable annotations of this method. May be null
-
invisibleLocalVariableAnnotations
public java.util.List<LocalVariableAnnotationNode> invisibleLocalVariableAnnotations
The invisible local variable annotations of this method. May be null
-
-
Constructor Detail
-
MethodNode
public MethodNode()
Constructs an uninitializedMethodNode. Subclasses must not use this constructor. Instead, they must use theMethodNode(int)version.- Throws:
java.lang.IllegalStateException- If a subclass calls this constructor.
-
MethodNode
public MethodNode(int api)
Constructs an uninitializedMethodNode.- Parameters:
api- the ASM API version implemented by this visitor. Must be one ofOpcodes.ASM4,Opcodes.ASM5,Opcodes.ASM6,Opcodes.ASM7,Opcodes.ASM8orOpcodes.ASM9.
-
MethodNode
public MethodNode(int access, java.lang.String name, java.lang.String descriptor, java.lang.String signature, java.lang.String[] exceptions)Constructs a newMethodNode. Subclasses must not use this constructor. Instead, they must use theMethodNode(int, int, String, String, String, String[])version.- Parameters:
access- the method's access flags (seeOpcodes). This parameter also indicates if the method is synthetic and/or deprecated.name- the method's name.descriptor- the method's descriptor (seeType).signature- the method's signature. May be null.exceptions- the internal names of the method's exception classes (seeType.getInternalName()). May be null.- Throws:
java.lang.IllegalStateException- If a subclass calls this constructor.
-
MethodNode
public MethodNode(int api, int access, java.lang.String name, java.lang.String descriptor, java.lang.String signature, java.lang.String[] exceptions)Constructs a newMethodNode.- Parameters:
api- the ASM API version implemented by this visitor. Must be one ofOpcodes.ASM4,Opcodes.ASM5,Opcodes.ASM6,Opcodes.ASM7,Opcodes.ASM8orOpcodes.ASM9.access- the method's access flags (seeOpcodes). This parameter also indicates if the method is synthetic and/or deprecated.name- the method's name.descriptor- the method's descriptor (seeType).signature- the method's signature. May be null.exceptions- the internal names of the method's exception classes (seeType.getInternalName()). May be null.
-
-
Method Detail
-
visitParameter
public void visitParameter(java.lang.String name, int access)- Overrides:
visitParameterin classorg.objectweb.asm.MethodVisitor
-
visitAnnotationDefault
public org.objectweb.asm.AnnotationVisitor visitAnnotationDefault()
- Overrides:
visitAnnotationDefaultin classorg.objectweb.asm.MethodVisitor
-
visitAnnotation
public org.objectweb.asm.AnnotationVisitor visitAnnotation(java.lang.String descriptor, boolean visible)- Overrides:
visitAnnotationin classorg.objectweb.asm.MethodVisitor
-
visitTypeAnnotation
public org.objectweb.asm.AnnotationVisitor visitTypeAnnotation(int typeRef, org.objectweb.asm.TypePath typePath, java.lang.String descriptor, boolean visible)- Overrides:
visitTypeAnnotationin classorg.objectweb.asm.MethodVisitor
-
visitAnnotableParameterCount
public void visitAnnotableParameterCount(int parameterCount, boolean visible)- Overrides:
visitAnnotableParameterCountin classorg.objectweb.asm.MethodVisitor
-
visitParameterAnnotation
public org.objectweb.asm.AnnotationVisitor visitParameterAnnotation(int parameter, java.lang.String descriptor, boolean visible)- Overrides:
visitParameterAnnotationin classorg.objectweb.asm.MethodVisitor
-
visitAttribute
public void visitAttribute(org.objectweb.asm.Attribute attribute)
- Overrides:
visitAttributein classorg.objectweb.asm.MethodVisitor
-
visitCode
public void visitCode()
- Overrides:
visitCodein classorg.objectweb.asm.MethodVisitor
-
visitFrame
public void visitFrame(int type, int numLocal, java.lang.Object[] local, int numStack, java.lang.Object[] stack)- Overrides:
visitFramein classorg.objectweb.asm.MethodVisitor
-
visitInsn
public void visitInsn(int opcode)
- Overrides:
visitInsnin classorg.objectweb.asm.MethodVisitor
-
visitIntInsn
public void visitIntInsn(int opcode, int operand)- Overrides:
visitIntInsnin classorg.objectweb.asm.MethodVisitor
-
visitVarInsn
public void visitVarInsn(int opcode, int var)- Overrides:
visitVarInsnin classorg.objectweb.asm.MethodVisitor
-
visitTypeInsn
public void visitTypeInsn(int opcode, java.lang.String type)- Overrides:
visitTypeInsnin classorg.objectweb.asm.MethodVisitor
-
visitFieldInsn
public void visitFieldInsn(int opcode, java.lang.String owner, java.lang.String name, java.lang.String descriptor)- Overrides:
visitFieldInsnin classorg.objectweb.asm.MethodVisitor
-
visitMethodInsn
public void visitMethodInsn(int opcodeAndSource, java.lang.String owner, java.lang.String name, java.lang.String descriptor, boolean isInterface)- Overrides:
visitMethodInsnin classorg.objectweb.asm.MethodVisitor
-
visitInvokeDynamicInsn
public void visitInvokeDynamicInsn(java.lang.String name, java.lang.String descriptor, org.objectweb.asm.Handle bootstrapMethodHandle, java.lang.Object... bootstrapMethodArguments)- Overrides:
visitInvokeDynamicInsnin classorg.objectweb.asm.MethodVisitor
-
visitJumpInsn
public void visitJumpInsn(int opcode, org.objectweb.asm.Label label)- Overrides:
visitJumpInsnin classorg.objectweb.asm.MethodVisitor
-
visitLabel
public void visitLabel(org.objectweb.asm.Label label)
- Overrides:
visitLabelin classorg.objectweb.asm.MethodVisitor
-
visitLdcInsn
public void visitLdcInsn(java.lang.Object value)
- Overrides:
visitLdcInsnin classorg.objectweb.asm.MethodVisitor
-
visitIincInsn
public void visitIincInsn(int var, int increment)- Overrides:
visitIincInsnin classorg.objectweb.asm.MethodVisitor
-
visitTableSwitchInsn
public void visitTableSwitchInsn(int min, int max, org.objectweb.asm.Label dflt, org.objectweb.asm.Label... labels)- Overrides:
visitTableSwitchInsnin classorg.objectweb.asm.MethodVisitor
-
visitLookupSwitchInsn
public void visitLookupSwitchInsn(org.objectweb.asm.Label dflt, int[] keys, org.objectweb.asm.Label[] labels)- Overrides:
visitLookupSwitchInsnin classorg.objectweb.asm.MethodVisitor
-
visitMultiANewArrayInsn
public void visitMultiANewArrayInsn(java.lang.String descriptor, int numDimensions)- Overrides:
visitMultiANewArrayInsnin classorg.objectweb.asm.MethodVisitor
-
visitInsnAnnotation
public org.objectweb.asm.AnnotationVisitor visitInsnAnnotation(int typeRef, org.objectweb.asm.TypePath typePath, java.lang.String descriptor, boolean visible)- Overrides:
visitInsnAnnotationin classorg.objectweb.asm.MethodVisitor
-
visitTryCatchBlock
public void visitTryCatchBlock(org.objectweb.asm.Label start, org.objectweb.asm.Label end, org.objectweb.asm.Label handler, java.lang.String type)- Overrides:
visitTryCatchBlockin classorg.objectweb.asm.MethodVisitor
-
visitTryCatchAnnotation
public org.objectweb.asm.AnnotationVisitor visitTryCatchAnnotation(int typeRef, org.objectweb.asm.TypePath typePath, java.lang.String descriptor, boolean visible)- Overrides:
visitTryCatchAnnotationin classorg.objectweb.asm.MethodVisitor
-
visitLocalVariable
public void visitLocalVariable(java.lang.String name, java.lang.String descriptor, java.lang.String signature, org.objectweb.asm.Label start, org.objectweb.asm.Label end, int index)- Overrides:
visitLocalVariablein classorg.objectweb.asm.MethodVisitor
-
visitLocalVariableAnnotation
public org.objectweb.asm.AnnotationVisitor visitLocalVariableAnnotation(int typeRef, org.objectweb.asm.TypePath typePath, org.objectweb.asm.Label[] start, org.objectweb.asm.Label[] end, int[] index, java.lang.String descriptor, boolean visible)- Overrides:
visitLocalVariableAnnotationin classorg.objectweb.asm.MethodVisitor
-
visitLineNumber
public void visitLineNumber(int line, org.objectweb.asm.Label start)- Overrides:
visitLineNumberin classorg.objectweb.asm.MethodVisitor
-
visitMaxs
public void visitMaxs(int maxStack, int maxLocals)- Overrides:
visitMaxsin classorg.objectweb.asm.MethodVisitor
-
visitEnd
public void visitEnd()
- Overrides:
visitEndin classorg.objectweb.asm.MethodVisitor
-
getLabelNode
protected LabelNode getLabelNode(org.objectweb.asm.Label label)
Returns the LabelNode corresponding to the given Label. Creates a new LabelNode if necessary. The default implementation of this method uses theLabel.infofield to store associations between labels and label nodes.- Parameters:
label- a Label.- Returns:
- the LabelNode corresponding to label.
-
check
public void check(int api)
Checks that this method node is compatible with the given ASM API version. This method checks that this node, and all its children recursively, do not contain elements that were introduced in more recent versions of the ASM API than the given version.- Parameters:
api- an ASM API version. Must be one ofOpcodes.ASM4,Opcodes.ASM5,Opcodes.ASM6,Opcodes.ASM7,Opcodes.ASM8orOpcodes.ASM9.
-
accept
public void accept(org.objectweb.asm.ClassVisitor classVisitor)
Makes the given class visitor visit this method.- Parameters:
classVisitor- a class visitor.
-
accept
public void accept(org.objectweb.asm.MethodVisitor methodVisitor)
Makes the given method visitor visit this method.- Parameters:
methodVisitor- a method visitor.
-
-