public class jdk.internal.org.objectweb.asm.tree.TableSwitchInsnNode extends jdk.internal.org.objectweb.asm.tree.AbstractInsnNode
minor version: 0
major version: 59
flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
this_class: jdk.internal.org.objectweb.asm.tree.TableSwitchInsnNode
super_class: jdk.internal.org.objectweb.asm.tree.AbstractInsnNode
{
public int min;
descriptor: I
flags: (0x0001) ACC_PUBLIC
public int max;
descriptor: I
flags: (0x0001) ACC_PUBLIC
public jdk.internal.org.objectweb.asm.tree.LabelNode dflt;
descriptor: Ljdk/internal/org/objectweb/asm/tree/LabelNode;
flags: (0x0001) ACC_PUBLIC
public java.util.List<jdk.internal.org.objectweb.asm.tree.LabelNode> labels;
descriptor: Ljava/util/List;
flags: (0x0001) ACC_PUBLIC
Signature: Ljava/util/List<Ljdk/internal/org/objectweb/asm/tree/LabelNode;>;
public void <init>(int, int, jdk.internal.org.objectweb.asm.tree.LabelNode, jdk.internal.org.objectweb.asm.tree.LabelNode[]);
descriptor: (IILjdk/internal/org/objectweb/asm/tree/LabelNode;[Ljdk/internal/org/objectweb/asm/tree/LabelNode;)V
flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
Code:
stack=2, locals=5, args_size=5
start local 0 start local 1 start local 2 start local 3 start local 4 0: aload 0
sipush 170
invokespecial jdk.internal.org.objectweb.asm.tree.AbstractInsnNode.<init>:(I)V
1: aload 0
iload 1
putfield jdk.internal.org.objectweb.asm.tree.TableSwitchInsnNode.min:I
2: aload 0
iload 2
putfield jdk.internal.org.objectweb.asm.tree.TableSwitchInsnNode.max:I
3: aload 0
aload 3
putfield jdk.internal.org.objectweb.asm.tree.TableSwitchInsnNode.dflt:Ljdk/internal/org/objectweb/asm/tree/LabelNode;
4: aload 0
aload 4
invokestatic jdk.internal.org.objectweb.asm.tree.Util.asArrayList:([Ljava/lang/Object;)Ljava/util/List;
putfield jdk.internal.org.objectweb.asm.tree.TableSwitchInsnNode.labels:Ljava/util/List;
5: return
end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 6 0 this Ljdk/internal/org/objectweb/asm/tree/TableSwitchInsnNode;
0 6 1 min I
0 6 2 max I
0 6 3 dflt Ljdk/internal/org/objectweb/asm/tree/LabelNode;
0 6 4 labels [Ljdk/internal/org/objectweb/asm/tree/LabelNode;
MethodParameters:
Name Flags
min final
max final
dflt final
labels final
public int getType();
descriptor: ()I
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: bipush 11
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Ljdk/internal/org/objectweb/asm/tree/TableSwitchInsnNode;
public void accept(jdk.internal.org.objectweb.asm.MethodVisitor);
descriptor: (Ljdk/internal/org/objectweb/asm/MethodVisitor;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=5, locals=5, args_size=2
start local 0 start local 1 0: aload 0
getfield jdk.internal.org.objectweb.asm.tree.TableSwitchInsnNode.labels:Ljava/util/List;
invokeinterface java.util.List.size:()I
anewarray jdk.internal.org.objectweb.asm.Label
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.Label[] int int
StackMap stack:
aload 2
iload 3
aload 0
getfield jdk.internal.org.objectweb.asm.tree.TableSwitchInsnNode.labels:Ljava/util/List;
iload 3
invokeinterface java.util.List.get:(I)Ljava/lang/Object;
checkcast jdk.internal.org.objectweb.asm.tree.LabelNode
invokevirtual jdk.internal.org.objectweb.asm.tree.LabelNode.getLabel:()Ljdk/internal/org/objectweb/asm/Label;
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 1
aload 0
getfield jdk.internal.org.objectweb.asm.tree.TableSwitchInsnNode.min:I
aload 0
getfield jdk.internal.org.objectweb.asm.tree.TableSwitchInsnNode.max:I
aload 0
getfield jdk.internal.org.objectweb.asm.tree.TableSwitchInsnNode.dflt:Ljdk/internal/org/objectweb/asm/tree/LabelNode;
invokevirtual jdk.internal.org.objectweb.asm.tree.LabelNode.getLabel:()Ljdk/internal/org/objectweb/asm/Label;
aload 2
invokevirtual jdk.internal.org.objectweb.asm.MethodVisitor.visitTableSwitchInsn:(IILjdk/internal/org/objectweb/asm/Label;[Ljdk/internal/org/objectweb/asm/Label;)V
8: aload 0
aload 1
invokevirtual jdk.internal.org.objectweb.asm.tree.TableSwitchInsnNode.acceptAnnotations:(Ljdk/internal/org/objectweb/asm/MethodVisitor;)V
9: return
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 10 0 this Ljdk/internal/org/objectweb/asm/tree/TableSwitchInsnNode;
0 10 1 methodVisitor Ljdk/internal/org/objectweb/asm/MethodVisitor;
1 10 2 labelsArray [Ljdk/internal/org/objectweb/asm/Label;
2 7 3 i I
3 7 4 n I
MethodParameters:
Name Flags
methodVisitor final
public 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: (0x0001) ACC_PUBLIC
Code:
stack=7, locals=2, args_size=2
start local 0 start local 1 0: new jdk.internal.org.objectweb.asm.tree.TableSwitchInsnNode
dup
aload 0
getfield jdk.internal.org.objectweb.asm.tree.TableSwitchInsnNode.min:I
aload 0
getfield jdk.internal.org.objectweb.asm.tree.TableSwitchInsnNode.max:I
aload 0
getfield jdk.internal.org.objectweb.asm.tree.TableSwitchInsnNode.dflt:Ljdk/internal/org/objectweb/asm/tree/LabelNode;
aload 1
invokestatic jdk.internal.org.objectweb.asm.tree.TableSwitchInsnNode.clone:(Ljdk/internal/org/objectweb/asm/tree/LabelNode;Ljava/util/Map;)Ljdk/internal/org/objectweb/asm/tree/LabelNode;
aload 0
getfield jdk.internal.org.objectweb.asm.tree.TableSwitchInsnNode.labels:Ljava/util/List;
aload 1
invokestatic jdk.internal.org.objectweb.asm.tree.TableSwitchInsnNode.clone:(Ljava/util/List;Ljava/util/Map;)[Ljdk/internal/org/objectweb/asm/tree/LabelNode;
invokespecial jdk.internal.org.objectweb.asm.tree.TableSwitchInsnNode.<init>:(IILjdk/internal/org/objectweb/asm/tree/LabelNode;[Ljdk/internal/org/objectweb/asm/tree/LabelNode;)V
1: aload 0
invokevirtual jdk.internal.org.objectweb.asm.tree.TableSwitchInsnNode.cloneAnnotations:(Ljdk/internal/org/objectweb/asm/tree/AbstractInsnNode;)Ljdk/internal/org/objectweb/asm/tree/AbstractInsnNode;
2: areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Ljdk/internal/org/objectweb/asm/tree/TableSwitchInsnNode;
0 3 1 clonedLabels Ljava/util/Map<Ljdk/internal/org/objectweb/asm/tree/LabelNode;Ljdk/internal/org/objectweb/asm/tree/LabelNode;>;
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 final
}
SourceFile: "TableSwitchInsnNode.java"