public class com.sun.tools.classfile.StackMapTable_attribute extends com.sun.tools.classfile.Attribute
minor version: 0
major version: 59
flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
this_class: com.sun.tools.classfile.StackMapTable_attribute
super_class: com.sun.tools.classfile.Attribute
{
public final int number_of_entries;
descriptor: I
flags: (0x0011) ACC_PUBLIC, ACC_FINAL
public final com.sun.tools.classfile.StackMapTable_attribute$stack_map_frame[] entries;
descriptor: [Lcom/sun/tools/classfile/StackMapTable_attribute$stack_map_frame;
flags: (0x0011) ACC_PUBLIC, ACC_FINAL
void <init>(com.sun.tools.classfile.ClassReader, int, int);
descriptor: (Lcom/sun/tools/classfile/ClassReader;II)V
flags: (0x0000)
Code:
stack=3, locals=5, args_size=4
start local 0 start local 1 start local 2 start local 3 0: aload 0
iload 2
iload 3
invokespecial com.sun.tools.classfile.Attribute.<init>:(II)V
1: aload 0
aload 1
invokevirtual com.sun.tools.classfile.ClassReader.readUnsignedShort:()I
putfield com.sun.tools.classfile.StackMapTable_attribute.number_of_entries:I
2: aload 0
aload 0
getfield com.sun.tools.classfile.StackMapTable_attribute.number_of_entries:I
anewarray com.sun.tools.classfile.StackMapTable_attribute$stack_map_frame
putfield com.sun.tools.classfile.StackMapTable_attribute.entries:[Lcom/sun/tools/classfile/StackMapTable_attribute$stack_map_frame;
3: iconst_0
istore 4
start local 4 4: goto 7
5: StackMap locals: com.sun.tools.classfile.StackMapTable_attribute com.sun.tools.classfile.ClassReader int int int
StackMap stack:
aload 0
getfield com.sun.tools.classfile.StackMapTable_attribute.entries:[Lcom/sun/tools/classfile/StackMapTable_attribute$stack_map_frame;
iload 4
aload 1
invokestatic com.sun.tools.classfile.StackMapTable_attribute$stack_map_frame.read:(Lcom/sun/tools/classfile/ClassReader;)Lcom/sun/tools/classfile/StackMapTable_attribute$stack_map_frame;
aastore
6: iinc 4 1
StackMap locals:
StackMap stack:
7: iload 4
aload 0
getfield com.sun.tools.classfile.StackMapTable_attribute.number_of_entries:I
if_icmplt 5
end local 4 8: return
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 9 0 this Lcom/sun/tools/classfile/StackMapTable_attribute;
0 9 1 cr Lcom/sun/tools/classfile/ClassReader;
0 9 2 name_index I
0 9 3 length I
4 8 4 i I
Exceptions:
throws java.io.IOException, com.sun.tools.classfile.StackMapTable_attribute$InvalidStackMap
MethodParameters:
Name Flags
cr
name_index
length
public void <init>(com.sun.tools.classfile.ConstantPool, com.sun.tools.classfile.StackMapTable_attribute$stack_map_frame[]);
descriptor: (Lcom/sun/tools/classfile/ConstantPool;[Lcom/sun/tools/classfile/StackMapTable_attribute$stack_map_frame;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 0
aload 1
ldc "StackMapTable"
invokevirtual com.sun.tools.classfile.ConstantPool.getUTF8Index:(Ljava/lang/String;)I
aload 2
invokespecial com.sun.tools.classfile.StackMapTable_attribute.<init>:(I[Lcom/sun/tools/classfile/StackMapTable_attribute$stack_map_frame;)V
1: return
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lcom/sun/tools/classfile/StackMapTable_attribute;
0 2 1 constant_pool Lcom/sun/tools/classfile/ConstantPool;
0 2 2 entries [Lcom/sun/tools/classfile/StackMapTable_attribute$stack_map_frame;
Exceptions:
throws com.sun.tools.classfile.ConstantPoolException
MethodParameters:
Name Flags
constant_pool
entries
public void <init>(int, com.sun.tools.classfile.StackMapTable_attribute$stack_map_frame[]);
descriptor: (I[Lcom/sun/tools/classfile/StackMapTable_attribute$stack_map_frame;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 0
iload 1
aload 2
invokestatic com.sun.tools.classfile.StackMapTable_attribute.length:([Lcom/sun/tools/classfile/StackMapTable_attribute$stack_map_frame;)I
invokespecial com.sun.tools.classfile.Attribute.<init>:(II)V
1: aload 0
aload 2
arraylength
putfield com.sun.tools.classfile.StackMapTable_attribute.number_of_entries:I
2: aload 0
aload 2
putfield com.sun.tools.classfile.StackMapTable_attribute.entries:[Lcom/sun/tools/classfile/StackMapTable_attribute$stack_map_frame;
3: return
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 4 0 this Lcom/sun/tools/classfile/StackMapTable_attribute;
0 4 1 name_index I
0 4 2 entries [Lcom/sun/tools/classfile/StackMapTable_attribute$stack_map_frame;
MethodParameters:
Name Flags
name_index
entries
public <R, D> R accept(com.sun.tools.classfile.Attribute$Visitor<R, D>, );
descriptor: (Lcom/sun/tools/classfile/Attribute$Visitor;Ljava/lang/Object;)Ljava/lang/Object;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 1
aload 0
aload 2
invokeinterface com.sun.tools.classfile.Attribute$Visitor.visitStackMapTable:(Lcom/sun/tools/classfile/StackMapTable_attribute;Ljava/lang/Object;)Ljava/lang/Object;
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lcom/sun/tools/classfile/StackMapTable_attribute;
0 1 1 visitor Lcom/sun/tools/classfile/Attribute$Visitor<TR;TD;>;
0 1 2 data TD;
Signature: <R:Ljava/lang/Object;D:Ljava/lang/Object;>(Lcom/sun/tools/classfile/Attribute$Visitor<TR;TD;>;TD;)TR;
MethodParameters:
Name Flags
visitor
data
static int length(com.sun.tools.classfile.StackMapTable_attribute$stack_map_frame[]);
descriptor: ([Lcom/sun/tools/classfile/StackMapTable_attribute$stack_map_frame;)I
flags: (0x0008) ACC_STATIC
Code:
stack=2, locals=6, args_size=1
start local 0 0: iconst_2
istore 1
start local 1 1: aload 0
dup
astore 5
arraylength
istore 4
iconst_0
istore 3
goto 5
StackMap locals: com.sun.tools.classfile.StackMapTable_attribute$stack_map_frame[] int top int int com.sun.tools.classfile.StackMapTable_attribute$stack_map_frame[]
StackMap stack:
2: aload 5
iload 3
aaload
astore 2
start local 2 3: iload 1
aload 2
invokevirtual com.sun.tools.classfile.StackMapTable_attribute$stack_map_frame.length:()I
iadd
istore 1
end local 2 4: iinc 3 1
StackMap locals:
StackMap stack:
5: iload 3
iload 4
if_icmplt 2
6: iload 1
ireturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 7 0 entries [Lcom/sun/tools/classfile/StackMapTable_attribute$stack_map_frame;
1 7 1 n I
3 4 2 entry Lcom/sun/tools/classfile/StackMapTable_attribute$stack_map_frame;
MethodParameters:
Name Flags
entries
}
SourceFile: "StackMapTable_attribute.java"
NestMembers:
com.sun.tools.classfile.StackMapTable_attribute$InvalidStackMap com.sun.tools.classfile.StackMapTable_attribute$Object_variable_info com.sun.tools.classfile.StackMapTable_attribute$Uninitialized_variable_info com.sun.tools.classfile.StackMapTable_attribute$append_frame com.sun.tools.classfile.StackMapTable_attribute$chop_frame com.sun.tools.classfile.StackMapTable_attribute$full_frame com.sun.tools.classfile.StackMapTable_attribute$same_frame com.sun.tools.classfile.StackMapTable_attribute$same_frame_extended com.sun.tools.classfile.StackMapTable_attribute$same_locals_1_stack_item_frame com.sun.tools.classfile.StackMapTable_attribute$same_locals_1_stack_item_frame_extended com.sun.tools.classfile.StackMapTable_attribute$stack_map_frame com.sun.tools.classfile.StackMapTable_attribute$stack_map_frame$Visitor com.sun.tools.classfile.StackMapTable_attribute$verification_type_info
InnerClasses:
public abstract Visitor = com.sun.tools.classfile.Attribute$Visitor of com.sun.tools.classfile.Attribute
InvalidStackMap = com.sun.tools.classfile.StackMapTable_attribute$InvalidStackMap of com.sun.tools.classfile.StackMapTable_attribute
public Object_variable_info = com.sun.tools.classfile.StackMapTable_attribute$Object_variable_info of com.sun.tools.classfile.StackMapTable_attribute
public Uninitialized_variable_info = com.sun.tools.classfile.StackMapTable_attribute$Uninitialized_variable_info of com.sun.tools.classfile.StackMapTable_attribute
public append_frame = com.sun.tools.classfile.StackMapTable_attribute$append_frame of com.sun.tools.classfile.StackMapTable_attribute
public chop_frame = com.sun.tools.classfile.StackMapTable_attribute$chop_frame of com.sun.tools.classfile.StackMapTable_attribute
public full_frame = com.sun.tools.classfile.StackMapTable_attribute$full_frame of com.sun.tools.classfile.StackMapTable_attribute
public same_frame = com.sun.tools.classfile.StackMapTable_attribute$same_frame of com.sun.tools.classfile.StackMapTable_attribute
public same_frame_extended = com.sun.tools.classfile.StackMapTable_attribute$same_frame_extended of com.sun.tools.classfile.StackMapTable_attribute
public same_locals_1_stack_item_frame = com.sun.tools.classfile.StackMapTable_attribute$same_locals_1_stack_item_frame of com.sun.tools.classfile.StackMapTable_attribute
public same_locals_1_stack_item_frame_extended = com.sun.tools.classfile.StackMapTable_attribute$same_locals_1_stack_item_frame_extended of com.sun.tools.classfile.StackMapTable_attribute
public abstract stack_map_frame = com.sun.tools.classfile.StackMapTable_attribute$stack_map_frame of com.sun.tools.classfile.StackMapTable_attribute
public verification_type_info = com.sun.tools.classfile.StackMapTable_attribute$verification_type_info of com.sun.tools.classfile.StackMapTable_attribute