public abstract class jdk.internal.org.objectweb.asm.tree.AbstractInsnNode
minor version: 0
major version: 59
flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
this_class: jdk.internal.org.objectweb.asm.tree.AbstractInsnNode
super_class: java.lang.Object
{
public static final int INSN;
descriptor: I
flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: 0
public static final int INT_INSN;
descriptor: I
flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: 1
public static final int VAR_INSN;
descriptor: I
flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: 2
public static final int TYPE_INSN;
descriptor: I
flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: 3
public static final int FIELD_INSN;
descriptor: I
flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: 4
public static final int METHOD_INSN;
descriptor: I
flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: 5
public static final int INVOKE_DYNAMIC_INSN;
descriptor: I
flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: 6
public static final int JUMP_INSN;
descriptor: I
flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: 7
public static final int LABEL;
descriptor: I
flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: 8
public static final int LDC_INSN;
descriptor: I
flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: 9
public static final int IINC_INSN;
descriptor: I
flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: 10
public static final int TABLESWITCH_INSN;
descriptor: I
flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: 11
public static final int LOOKUPSWITCH_INSN;
descriptor: I
flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: 12
public static final int MULTIANEWARRAY_INSN;
descriptor: I
flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: 13
public static final int FRAME;
descriptor: I
flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: 14
public static final int LINE;
descriptor: I
flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: 15
protected int opcode;
descriptor: I
flags: (0x0004) ACC_PROTECTED
public java.util.List<jdk.internal.org.objectweb.asm.tree.TypeAnnotationNode> visibleTypeAnnotations;
descriptor: Ljava/util/List;
flags: (0x0001) ACC_PUBLIC
Signature: Ljava/util/List<Ljdk/internal/org/objectweb/asm/tree/TypeAnnotationNode;>;
public java.util.List<jdk.internal.org.objectweb.asm.tree.TypeAnnotationNode> invisibleTypeAnnotations;
descriptor: Ljava/util/List;
flags: (0x0001) ACC_PUBLIC
Signature: Ljava/util/List<Ljdk/internal/org/objectweb/asm/tree/TypeAnnotationNode;>;
jdk.internal.org.objectweb.asm.tree.AbstractInsnNode previousInsn;
descriptor: Ljdk/internal/org/objectweb/asm/tree/AbstractInsnNode;
flags: (0x0000)
jdk.internal.org.objectweb.asm.tree.AbstractInsnNode nextInsn;
descriptor: Ljdk/internal/org/objectweb/asm/tree/AbstractInsnNode;
flags: (0x0000)
int index;
descriptor: I
flags: (0x0000)
protected void <init>(int);
descriptor: (I)V
flags: (0x0004) ACC_PROTECTED
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
invokespecial java.lang.Object.<init>:()V
1: aload 0
iload 1
putfield jdk.internal.org.objectweb.asm.tree.AbstractInsnNode.opcode:I
2: aload 0
iconst_m1
putfield jdk.internal.org.objectweb.asm.tree.AbstractInsnNode.index:I
3: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 4 0 this Ljdk/internal/org/objectweb/asm/tree/AbstractInsnNode;
0 4 1 opcode I
MethodParameters:
Name Flags
opcode final
public int getOpcode();
descriptor: ()I
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield jdk.internal.org.objectweb.asm.tree.AbstractInsnNode.opcode:I
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Ljdk/internal/org/objectweb/asm/tree/AbstractInsnNode;
public abstract int getType();
descriptor: ()I
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
public jdk.internal.org.objectweb.asm.tree.AbstractInsnNode getPrevious();
descriptor: ()Ljdk/internal/org/objectweb/asm/tree/AbstractInsnNode;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield jdk.internal.org.objectweb.asm.tree.AbstractInsnNode.previousInsn:Ljdk/internal/org/objectweb/asm/tree/AbstractInsnNode;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Ljdk/internal/org/objectweb/asm/tree/AbstractInsnNode;
public jdk.internal.org.objectweb.asm.tree.AbstractInsnNode getNext();
descriptor: ()Ljdk/internal/org/objectweb/asm/tree/AbstractInsnNode;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield jdk.internal.org.objectweb.asm.tree.AbstractInsnNode.nextInsn:Ljdk/internal/org/objectweb/asm/tree/AbstractInsnNode;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Ljdk/internal/org/objectweb/asm/tree/AbstractInsnNode;
public abstract void accept(jdk.internal.org.objectweb.asm.MethodVisitor);
descriptor: (Ljdk/internal/org/objectweb/asm/MethodVisitor;)V
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
MethodParameters:
Name Flags
methodVisitor
protected final void acceptAnnotations(jdk.internal.org.objectweb.asm.MethodVisitor);
descriptor: (Ljdk/internal/org/objectweb/asm/MethodVisitor;)V
flags: (0x0014) ACC_PROTECTED, ACC_FINAL
Code:
stack=6, locals=5, args_size=2
start local 0 start local 1 0: aload 0
getfield jdk.internal.org.objectweb.asm.tree.AbstractInsnNode.visibleTypeAnnotations:Ljava/util/List;
ifnull 12
1: iconst_0
istore 2
start local 2 2: aload 0
getfield jdk.internal.org.objectweb.asm.tree.AbstractInsnNode.visibleTypeAnnotations:Ljava/util/List;
invokeinterface java.util.List.size:()I
istore 3
start local 3 3: goto 11
4: StackMap locals: int int
StackMap stack:
aload 0
getfield jdk.internal.org.objectweb.asm.tree.AbstractInsnNode.visibleTypeAnnotations:Ljava/util/List;
iload 2
invokeinterface java.util.List.get:(I)Ljava/lang/Object;
checkcast jdk.internal.org.objectweb.asm.tree.TypeAnnotationNode
astore 4
start local 4 5: aload 4
6: aload 1
7: aload 4
getfield jdk.internal.org.objectweb.asm.tree.TypeAnnotationNode.typeRef:I
aload 4
getfield jdk.internal.org.objectweb.asm.tree.TypeAnnotationNode.typePath:Ljdk/internal/org/objectweb/asm/TypePath;
aload 4
getfield jdk.internal.org.objectweb.asm.tree.TypeAnnotationNode.desc:Ljava/lang/String;
iconst_1
8: invokevirtual jdk.internal.org.objectweb.asm.MethodVisitor.visitInsnAnnotation:(ILjdk/internal/org/objectweb/asm/TypePath;Ljava/lang/String;Z)Ljdk/internal/org/objectweb/asm/AnnotationVisitor;
9: invokevirtual jdk.internal.org.objectweb.asm.tree.TypeAnnotationNode.accept:(Ljdk/internal/org/objectweb/asm/AnnotationVisitor;)V
end local 4 10: iinc 2 1
StackMap locals:
StackMap stack:
11: iload 2
iload 3
if_icmplt 4
end local 3 end local 2 12: StackMap locals:
StackMap stack:
aload 0
getfield jdk.internal.org.objectweb.asm.tree.AbstractInsnNode.invisibleTypeAnnotations:Ljava/util/List;
ifnull 24
13: iconst_0
istore 2
start local 2 14: aload 0
getfield jdk.internal.org.objectweb.asm.tree.AbstractInsnNode.invisibleTypeAnnotations:Ljava/util/List;
invokeinterface java.util.List.size:()I
istore 3
start local 3 15: goto 23
16: StackMap locals: int int
StackMap stack:
aload 0
getfield jdk.internal.org.objectweb.asm.tree.AbstractInsnNode.invisibleTypeAnnotations:Ljava/util/List;
iload 2
invokeinterface java.util.List.get:(I)Ljava/lang/Object;
checkcast jdk.internal.org.objectweb.asm.tree.TypeAnnotationNode
astore 4
start local 4 17: aload 4
18: aload 1
19: aload 4
getfield jdk.internal.org.objectweb.asm.tree.TypeAnnotationNode.typeRef:I
aload 4
getfield jdk.internal.org.objectweb.asm.tree.TypeAnnotationNode.typePath:Ljdk/internal/org/objectweb/asm/TypePath;
aload 4
getfield jdk.internal.org.objectweb.asm.tree.TypeAnnotationNode.desc:Ljava/lang/String;
iconst_0
20: invokevirtual jdk.internal.org.objectweb.asm.MethodVisitor.visitInsnAnnotation:(ILjdk/internal/org/objectweb/asm/TypePath;Ljava/lang/String;Z)Ljdk/internal/org/objectweb/asm/AnnotationVisitor;
21: invokevirtual jdk.internal.org.objectweb.asm.tree.TypeAnnotationNode.accept:(Ljdk/internal/org/objectweb/asm/AnnotationVisitor;)V
end local 4 22: iinc 2 1
StackMap locals:
StackMap stack:
23: iload 2
iload 3
if_icmplt 16
end local 3 end local 2 24: StackMap locals:
StackMap stack:
return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 25 0 this Ljdk/internal/org/objectweb/asm/tree/AbstractInsnNode;
0 25 1 methodVisitor Ljdk/internal/org/objectweb/asm/MethodVisitor;
2 12 2 i I
3 12 3 n I
5 10 4 typeAnnotation Ljdk/internal/org/objectweb/asm/tree/TypeAnnotationNode;
14 24 2 i I
15 24 3 n I
17 22 4 typeAnnotation Ljdk/internal/org/objectweb/asm/tree/TypeAnnotationNode;
MethodParameters:
Name Flags
methodVisitor final
public abstract jdk.internal.org.objectweb.asm.tree.AbstractInsnNode clone(java.util.Map<jdk.internal.org.objectweb.asm.tree.LabelNode, jdk.internal.org.objectweb.asm.tree.LabelNode>);
descriptor: (Ljava/util/Map;)Ljdk/internal/org/objectweb/asm/tree/AbstractInsnNode;
flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
Signature: (Ljava/util/Map<Ljdk/internal/org/objectweb/asm/tree/LabelNode;Ljdk/internal/org/objectweb/asm/tree/LabelNode;>;)Ljdk/internal/org/objectweb/asm/tree/AbstractInsnNode;
MethodParameters:
Name Flags
clonedLabels
static jdk.internal.org.objectweb.asm.tree.LabelNode clone(jdk.internal.org.objectweb.asm.tree.LabelNode, java.util.Map<jdk.internal.org.objectweb.asm.tree.LabelNode, jdk.internal.org.objectweb.asm.tree.LabelNode>);
descriptor: (Ljdk/internal/org/objectweb/asm/tree/LabelNode;Ljava/util/Map;)Ljdk/internal/org/objectweb/asm/tree/LabelNode;
flags: (0x0008) ACC_STATIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 1
aload 0
invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
checkcast jdk.internal.org.objectweb.asm.tree.LabelNode
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 label Ljdk/internal/org/objectweb/asm/tree/LabelNode;
0 1 1 clonedLabels Ljava/util/Map<Ljdk/internal/org/objectweb/asm/tree/LabelNode;Ljdk/internal/org/objectweb/asm/tree/LabelNode;>;
Signature: (Ljdk/internal/org/objectweb/asm/tree/LabelNode;Ljava/util/Map<Ljdk/internal/org/objectweb/asm/tree/LabelNode;Ljdk/internal/org/objectweb/asm/tree/LabelNode;>;)Ljdk/internal/org/objectweb/asm/tree/LabelNode;
MethodParameters:
Name Flags
label final
clonedLabels final
static jdk.internal.org.objectweb.asm.tree.LabelNode[] clone(java.util.List<jdk.internal.org.objectweb.asm.tree.LabelNode>, java.util.Map<jdk.internal.org.objectweb.asm.tree.LabelNode, jdk.internal.org.objectweb.asm.tree.LabelNode>);
descriptor: (Ljava/util/List;Ljava/util/Map;)[Ljdk/internal/org/objectweb/asm/tree/LabelNode;
flags: (0x0008) ACC_STATIC
Code:
stack=5, locals=5, args_size=2
start local 0 start local 1 0: aload 0
invokeinterface java.util.List.size:()I
anewarray jdk.internal.org.objectweb.asm.tree.LabelNode
astore 2
start local 2 1: iconst_0
istore 3
start local 3 2: aload 2
arraylength
istore 4
start local 4 3: goto 6
4: StackMap locals: jdk.internal.org.objectweb.asm.tree.LabelNode[] int int
StackMap stack:
aload 2
iload 3
aload 1
aload 0
iload 3
invokeinterface java.util.List.get:(I)Ljava/lang/Object;
invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
checkcast jdk.internal.org.objectweb.asm.tree.LabelNode
aastore
5: iinc 3 1
StackMap locals:
StackMap stack:
6: iload 3
iload 4
if_icmplt 4
end local 4 end local 3 7: aload 2
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 8 0 labels Ljava/util/List<Ljdk/internal/org/objectweb/asm/tree/LabelNode;>;
0 8 1 clonedLabels Ljava/util/Map<Ljdk/internal/org/objectweb/asm/tree/LabelNode;Ljdk/internal/org/objectweb/asm/tree/LabelNode;>;
1 8 2 clones [Ljdk/internal/org/objectweb/asm/tree/LabelNode;
2 7 3 i I
3 7 4 n I
Signature: (Ljava/util/List<Ljdk/internal/org/objectweb/asm/tree/LabelNode;>;Ljava/util/Map<Ljdk/internal/org/objectweb/asm/tree/LabelNode;Ljdk/internal/org/objectweb/asm/tree/LabelNode;>;)[Ljdk/internal/org/objectweb/asm/tree/LabelNode;
MethodParameters:
Name Flags
labels final
clonedLabels final
protected final jdk.internal.org.objectweb.asm.tree.AbstractInsnNode cloneAnnotations(jdk.internal.org.objectweb.asm.tree.AbstractInsnNode);
descriptor: (Ljdk/internal/org/objectweb/asm/tree/AbstractInsnNode;)Ljdk/internal/org/objectweb/asm/tree/AbstractInsnNode;
flags: (0x0014) ACC_PROTECTED, ACC_FINAL
Code:
stack=5, locals=6, args_size=2
start local 0 start local 1 0: aload 1
getfield jdk.internal.org.objectweb.asm.tree.AbstractInsnNode.visibleTypeAnnotations:Ljava/util/List;
ifnull 14
1: aload 0
new java.util.ArrayList
dup
invokespecial java.util.ArrayList.<init>:()V
putfield jdk.internal.org.objectweb.asm.tree.AbstractInsnNode.visibleTypeAnnotations:Ljava/util/List;
2: iconst_0
istore 2
start local 2 3: aload 1
getfield jdk.internal.org.objectweb.asm.tree.AbstractInsnNode.visibleTypeAnnotations:Ljava/util/List;
invokeinterface java.util.List.size:()I
istore 3
start local 3 4: goto 13
5: StackMap locals: int int
StackMap stack:
aload 1
getfield jdk.internal.org.objectweb.asm.tree.AbstractInsnNode.visibleTypeAnnotations:Ljava/util/List;
iload 2
invokeinterface java.util.List.get:(I)Ljava/lang/Object;
checkcast jdk.internal.org.objectweb.asm.tree.TypeAnnotationNode
astore 4
start local 4 6: new jdk.internal.org.objectweb.asm.tree.TypeAnnotationNode
dup
7: aload 4
getfield jdk.internal.org.objectweb.asm.tree.TypeAnnotationNode.typeRef:I
aload 4
getfield jdk.internal.org.objectweb.asm.tree.TypeAnnotationNode.typePath:Ljdk/internal/org/objectweb/asm/TypePath;
aload 4
getfield jdk.internal.org.objectweb.asm.tree.TypeAnnotationNode.desc:Ljava/lang/String;
8: invokespecial jdk.internal.org.objectweb.asm.tree.TypeAnnotationNode.<init>:(ILjdk/internal/org/objectweb/asm/TypePath;Ljava/lang/String;)V
9: astore 5
start local 5 10: aload 4
aload 5
invokevirtual jdk.internal.org.objectweb.asm.tree.TypeAnnotationNode.accept:(Ljdk/internal/org/objectweb/asm/AnnotationVisitor;)V
11: aload 0
getfield jdk.internal.org.objectweb.asm.tree.AbstractInsnNode.visibleTypeAnnotations:Ljava/util/List;
aload 5
invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
pop
end local 5 end local 4 12: iinc 2 1
StackMap locals:
StackMap stack:
13: iload 2
iload 3
if_icmplt 5
end local 3 end local 2 14: StackMap locals:
StackMap stack:
aload 1
getfield jdk.internal.org.objectweb.asm.tree.AbstractInsnNode.invisibleTypeAnnotations:Ljava/util/List;
ifnull 28
15: aload 0
new java.util.ArrayList
dup
invokespecial java.util.ArrayList.<init>:()V
putfield jdk.internal.org.objectweb.asm.tree.AbstractInsnNode.invisibleTypeAnnotations:Ljava/util/List;
16: iconst_0
istore 2
start local 2 17: aload 1
getfield jdk.internal.org.objectweb.asm.tree.AbstractInsnNode.invisibleTypeAnnotations:Ljava/util/List;
invokeinterface java.util.List.size:()I
istore 3
start local 3 18: goto 27
19: StackMap locals: int int
StackMap stack:
aload 1
getfield jdk.internal.org.objectweb.asm.tree.AbstractInsnNode.invisibleTypeAnnotations:Ljava/util/List;
iload 2
invokeinterface java.util.List.get:(I)Ljava/lang/Object;
checkcast jdk.internal.org.objectweb.asm.tree.TypeAnnotationNode
astore 4
start local 4 20: new jdk.internal.org.objectweb.asm.tree.TypeAnnotationNode
dup
21: aload 4
getfield jdk.internal.org.objectweb.asm.tree.TypeAnnotationNode.typeRef:I
aload 4
getfield jdk.internal.org.objectweb.asm.tree.TypeAnnotationNode.typePath:Ljdk/internal/org/objectweb/asm/TypePath;
aload 4
getfield jdk.internal.org.objectweb.asm.tree.TypeAnnotationNode.desc:Ljava/lang/String;
22: invokespecial jdk.internal.org.objectweb.asm.tree.TypeAnnotationNode.<init>:(ILjdk/internal/org/objectweb/asm/TypePath;Ljava/lang/String;)V
23: astore 5
start local 5 24: aload 4
aload 5
invokevirtual jdk.internal.org.objectweb.asm.tree.TypeAnnotationNode.accept:(Ljdk/internal/org/objectweb/asm/AnnotationVisitor;)V
25: aload 0
getfield jdk.internal.org.objectweb.asm.tree.AbstractInsnNode.invisibleTypeAnnotations:Ljava/util/List;
aload 5
invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
pop
end local 5 end local 4 26: iinc 2 1
StackMap locals:
StackMap stack:
27: iload 2
iload 3
if_icmplt 19
end local 3 end local 2 28: StackMap locals:
StackMap stack:
aload 0
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 29 0 this Ljdk/internal/org/objectweb/asm/tree/AbstractInsnNode;
0 29 1 insnNode Ljdk/internal/org/objectweb/asm/tree/AbstractInsnNode;
3 14 2 i I
4 14 3 n I
6 12 4 sourceAnnotation Ljdk/internal/org/objectweb/asm/tree/TypeAnnotationNode;
10 12 5 cloneAnnotation Ljdk/internal/org/objectweb/asm/tree/TypeAnnotationNode;
17 28 2 i I
18 28 3 n I
20 26 4 sourceAnnotation Ljdk/internal/org/objectweb/asm/tree/TypeAnnotationNode;
24 26 5 cloneAnnotation Ljdk/internal/org/objectweb/asm/tree/TypeAnnotationNode;
MethodParameters:
Name Flags
insnNode final
}
SourceFile: "AbstractInsnNode.java"