class sun.reflect.ClassFileAssembler implements sun.reflect.ClassFileConstants
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: sun.reflect.ClassFileAssembler
  super_class: java.lang.Object
{
  private sun.reflect.ByteVector vec;
    descriptor: Lsun/reflect/ByteVector;
    flags: (0x0002) ACC_PRIVATE

  private short cpIdx;
    descriptor: S
    flags: (0x0002) ACC_PRIVATE

  private int stack;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int maxStack;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int maxLocals;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.reflect.ClassFileAssembler this
         0: .line 33
            aload 0 /* this */
            invokestatic sun.reflect.ByteVectorFactory.create:()Lsun/reflect/ByteVector;
            invokespecial sun.reflect.ClassFileAssembler.<init>:(Lsun/reflect/ByteVector;)V
         1: .line 34
            return
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/reflect/ClassFileAssembler;

  public void <init>(sun.reflect.ByteVector);
    descriptor: (Lsun/reflect/ByteVector;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.reflect.ClassFileAssembler this
        start local 1 // sun.reflect.ByteVector vec
         0: .line 36
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 30
            aload 0 /* this */
            iconst_0
            putfield sun.reflect.ClassFileAssembler.cpIdx:S
         2: .line 164
            aload 0 /* this */
            iconst_0
            putfield sun.reflect.ClassFileAssembler.stack:I
         3: .line 165
            aload 0 /* this */
            iconst_0
            putfield sun.reflect.ClassFileAssembler.maxStack:I
         4: .line 166
            aload 0 /* this */
            iconst_0
            putfield sun.reflect.ClassFileAssembler.maxLocals:I
         5: .line 37
            aload 0 /* this */
            aload 1 /* vec */
            putfield sun.reflect.ClassFileAssembler.vec:Lsun/reflect/ByteVector;
         6: .line 38
            return
        end local 1 // sun.reflect.ByteVector vec
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lsun/reflect/ClassFileAssembler;
            0    7     1   vec  Lsun/reflect/ByteVector;
    MethodParameters:
      Name  Flags
      vec   

  public sun.reflect.ByteVector getData();
    descriptor: ()Lsun/reflect/ByteVector;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.reflect.ClassFileAssembler this
         0: .line 41
            aload 0 /* this */
            getfield sun.reflect.ClassFileAssembler.vec:Lsun/reflect/ByteVector;
            areturn
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/reflect/ClassFileAssembler;

  public short getLength();
    descriptor: ()S
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.reflect.ClassFileAssembler this
         0: .line 46
            aload 0 /* this */
            getfield sun.reflect.ClassFileAssembler.vec:Lsun/reflect/ByteVector;
            invokeinterface sun.reflect.ByteVector.getLength:()I
            i2s
            ireturn
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/reflect/ClassFileAssembler;

  public void emitMagicAndVersion();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.reflect.ClassFileAssembler this
         0: .line 50
            aload 0 /* this */
            ldc -889275714
            invokevirtual sun.reflect.ClassFileAssembler.emitInt:(I)V
         1: .line 51
            aload 0 /* this */
            iconst_0
            invokevirtual sun.reflect.ClassFileAssembler.emitShort:(S)V
         2: .line 52
            aload 0 /* this */
            bipush 49
            invokevirtual sun.reflect.ClassFileAssembler.emitShort:(S)V
         3: .line 53
            return
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lsun/reflect/ClassFileAssembler;

  public void emitInt(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // sun.reflect.ClassFileAssembler this
        start local 1 // int val
         0: .line 56
            aload 0 /* this */
            iload 1 /* val */
            bipush 24
            ishr
            i2b
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 57
            aload 0 /* this */
            iload 1 /* val */
            bipush 16
            ishr
            sipush 255
            iand
            i2b
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         2: .line 58
            aload 0 /* this */
            iload 1 /* val */
            bipush 8
            ishr
            sipush 255
            iand
            i2b
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         3: .line 59
            aload 0 /* this */
            iload 1 /* val */
            sipush 255
            iand
            i2b
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         4: .line 60
            return
        end local 1 // int val
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lsun/reflect/ClassFileAssembler;
            0    5     1   val  I
    MethodParameters:
      Name  Flags
      val   

  public void emitShort(short);
    descriptor: (S)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // sun.reflect.ClassFileAssembler this
        start local 1 // short val
         0: .line 63
            aload 0 /* this */
            iload 1 /* val */
            bipush 8
            ishr
            sipush 255
            iand
            i2b
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 64
            aload 0 /* this */
            iload 1 /* val */
            sipush 255
            iand
            i2b
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         2: .line 65
            return
        end local 1 // short val
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/reflect/ClassFileAssembler;
            0    3     1   val  S
    MethodParameters:
      Name  Flags
      val   

  void emitShort(short, short);
    descriptor: (SS)V
    flags: (0x0000) 
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // sun.reflect.ClassFileAssembler this
        start local 1 // short bci
        start local 2 // short val
         0: .line 69
            aload 0 /* this */
            getfield sun.reflect.ClassFileAssembler.vec:Lsun/reflect/ByteVector;
            iload 1 /* bci */
            iload 2 /* val */
            bipush 8
            ishr
            sipush 255
            iand
            i2b
            invokeinterface sun.reflect.ByteVector.put:(IB)V
         1: .line 70
            aload 0 /* this */
            getfield sun.reflect.ClassFileAssembler.vec:Lsun/reflect/ByteVector;
            iload 1 /* bci */
            iconst_1
            iadd
            iload 2 /* val */
            sipush 255
            iand
            i2b
            invokeinterface sun.reflect.ByteVector.put:(IB)V
         2: .line 71
            return
        end local 2 // short val
        end local 1 // short bci
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/reflect/ClassFileAssembler;
            0    3     1   bci  S
            0    3     2   val  S
    MethodParameters:
      Name  Flags
      bci   
      val   

  public void emitByte(byte);
    descriptor: (B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.reflect.ClassFileAssembler this
        start local 1 // byte val
         0: .line 74
            aload 0 /* this */
            getfield sun.reflect.ClassFileAssembler.vec:Lsun/reflect/ByteVector;
            iload 1 /* val */
            invokeinterface sun.reflect.ByteVector.add:(B)V
         1: .line 75
            return
        end local 1 // byte val
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/reflect/ClassFileAssembler;
            0    2     1   val  B
    MethodParameters:
      Name  Flags
      val   

  public void append(sun.reflect.ClassFileAssembler);
    descriptor: (Lsun/reflect/ClassFileAssembler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.reflect.ClassFileAssembler this
        start local 1 // sun.reflect.ClassFileAssembler asm
         0: .line 78
            aload 0 /* this */
            aload 1 /* asm */
            getfield sun.reflect.ClassFileAssembler.vec:Lsun/reflect/ByteVector;
            invokevirtual sun.reflect.ClassFileAssembler.append:(Lsun/reflect/ByteVector;)V
         1: .line 79
            return
        end local 1 // sun.reflect.ClassFileAssembler asm
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/reflect/ClassFileAssembler;
            0    2     1   asm  Lsun/reflect/ClassFileAssembler;
    MethodParameters:
      Name  Flags
      asm   

  public void append(sun.reflect.ByteVector);
    descriptor: (Lsun/reflect/ByteVector;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // sun.reflect.ClassFileAssembler this
        start local 1 // sun.reflect.ByteVector vec
         0: .line 82
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         1: goto 4
         2: .line 83
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* vec */
            iload 2 /* i */
            invokeinterface sun.reflect.ByteVector.get:(I)B
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         3: .line 82
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         4: iload 2 /* i */
            aload 1 /* vec */
            invokeinterface sun.reflect.ByteVector.getLength:()I
            if_icmplt 2
        end local 2 // int i
         5: .line 85
            return
        end local 1 // sun.reflect.ByteVector vec
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lsun/reflect/ClassFileAssembler;
            0    6     1   vec  Lsun/reflect/ByteVector;
            1    5     2     i  I
    MethodParameters:
      Name  Flags
      vec   

  public short cpi();
    descriptor: ()S
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // sun.reflect.ClassFileAssembler this
         0: .line 94
            aload 0 /* this */
            getfield sun.reflect.ClassFileAssembler.cpIdx:S
            ifne 2
         1: .line 95
            new java.lang.RuntimeException
            dup
            ldc "Illegal use of ClassFileAssembler"
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 97
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.reflect.ClassFileAssembler.cpIdx:S
            ireturn
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/reflect/ClassFileAssembler;

  public void emitConstantPoolUTF8(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // sun.reflect.ClassFileAssembler this
        start local 1 // java.lang.String str
         0: .line 103
            aload 1 /* str */
            invokestatic sun.reflect.UTF8.encode:(Ljava/lang/String;)[B
            astore 2 /* bytes */
        start local 2 // byte[] bytes
         1: .line 104
            aload 0 /* this */
            iconst_1
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         2: .line 105
            aload 0 /* this */
            aload 2 /* bytes */
            arraylength
            i2s
            invokevirtual sun.reflect.ClassFileAssembler.emitShort:(S)V
         3: .line 106
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         4: goto 7
         5: .line 107
      StackMap locals: byte[] int
      StackMap stack:
            aload 0 /* this */
            aload 2 /* bytes */
            iload 3 /* i */
            baload
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         6: .line 106
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 3 /* i */
            aload 2 /* bytes */
            arraylength
            if_icmplt 5
        end local 3 // int i
         8: .line 109
            aload 0 /* this */
            dup
            getfield sun.reflect.ClassFileAssembler.cpIdx:S
            iconst_1
            iadd
            i2s
            putfield sun.reflect.ClassFileAssembler.cpIdx:S
         9: .line 110
            return
        end local 2 // byte[] bytes
        end local 1 // java.lang.String str
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Lsun/reflect/ClassFileAssembler;
            0   10     1    str  Ljava/lang/String;
            1   10     2  bytes  [B
            4    8     3      i  I
    MethodParameters:
      Name  Flags
      str   

  public void emitConstantPoolClass(short);
    descriptor: (S)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // sun.reflect.ClassFileAssembler this
        start local 1 // short index
         0: .line 113
            aload 0 /* this */
            bipush 7
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 114
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual sun.reflect.ClassFileAssembler.emitShort:(S)V
         2: .line 115
            aload 0 /* this */
            dup
            getfield sun.reflect.ClassFileAssembler.cpIdx:S
            iconst_1
            iadd
            i2s
            putfield sun.reflect.ClassFileAssembler.cpIdx:S
         3: .line 116
            return
        end local 1 // short index
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lsun/reflect/ClassFileAssembler;
            0    4     1  index  S
    MethodParameters:
       Name  Flags
      index  

  public void emitConstantPoolNameAndType(short, short);
    descriptor: (SS)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // sun.reflect.ClassFileAssembler this
        start local 1 // short nameIndex
        start local 2 // short typeIndex
         0: .line 119
            aload 0 /* this */
            bipush 12
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 120
            aload 0 /* this */
            iload 1 /* nameIndex */
            invokevirtual sun.reflect.ClassFileAssembler.emitShort:(S)V
         2: .line 121
            aload 0 /* this */
            iload 2 /* typeIndex */
            invokevirtual sun.reflect.ClassFileAssembler.emitShort:(S)V
         3: .line 122
            aload 0 /* this */
            dup
            getfield sun.reflect.ClassFileAssembler.cpIdx:S
            iconst_1
            iadd
            i2s
            putfield sun.reflect.ClassFileAssembler.cpIdx:S
         4: .line 123
            return
        end local 2 // short typeIndex
        end local 1 // short nameIndex
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lsun/reflect/ClassFileAssembler;
            0    5     1  nameIndex  S
            0    5     2  typeIndex  S
    MethodParameters:
           Name  Flags
      nameIndex  
      typeIndex  

  public void emitConstantPoolFieldref(short, short);
    descriptor: (SS)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // sun.reflect.ClassFileAssembler this
        start local 1 // short classIndex
        start local 2 // short nameAndTypeIndex
         0: .line 128
            aload 0 /* this */
            bipush 9
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 129
            aload 0 /* this */
            iload 1 /* classIndex */
            invokevirtual sun.reflect.ClassFileAssembler.emitShort:(S)V
         2: .line 130
            aload 0 /* this */
            iload 2 /* nameAndTypeIndex */
            invokevirtual sun.reflect.ClassFileAssembler.emitShort:(S)V
         3: .line 131
            aload 0 /* this */
            dup
            getfield sun.reflect.ClassFileAssembler.cpIdx:S
            iconst_1
            iadd
            i2s
            putfield sun.reflect.ClassFileAssembler.cpIdx:S
         4: .line 132
            return
        end local 2 // short nameAndTypeIndex
        end local 1 // short classIndex
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    5     0              this  Lsun/reflect/ClassFileAssembler;
            0    5     1        classIndex  S
            0    5     2  nameAndTypeIndex  S
    MethodParameters:
                  Name  Flags
      classIndex        
      nameAndTypeIndex  

  public void emitConstantPoolMethodref(short, short);
    descriptor: (SS)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // sun.reflect.ClassFileAssembler this
        start local 1 // short classIndex
        start local 2 // short nameAndTypeIndex
         0: .line 137
            aload 0 /* this */
            bipush 10
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 138
            aload 0 /* this */
            iload 1 /* classIndex */
            invokevirtual sun.reflect.ClassFileAssembler.emitShort:(S)V
         2: .line 139
            aload 0 /* this */
            iload 2 /* nameAndTypeIndex */
            invokevirtual sun.reflect.ClassFileAssembler.emitShort:(S)V
         3: .line 140
            aload 0 /* this */
            dup
            getfield sun.reflect.ClassFileAssembler.cpIdx:S
            iconst_1
            iadd
            i2s
            putfield sun.reflect.ClassFileAssembler.cpIdx:S
         4: .line 141
            return
        end local 2 // short nameAndTypeIndex
        end local 1 // short classIndex
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    5     0              this  Lsun/reflect/ClassFileAssembler;
            0    5     1        classIndex  S
            0    5     2  nameAndTypeIndex  S
    MethodParameters:
                  Name  Flags
      classIndex        
      nameAndTypeIndex  

  public void emitConstantPoolInterfaceMethodref(short, short);
    descriptor: (SS)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // sun.reflect.ClassFileAssembler this
        start local 1 // short classIndex
        start local 2 // short nameAndTypeIndex
         0: .line 146
            aload 0 /* this */
            bipush 11
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 147
            aload 0 /* this */
            iload 1 /* classIndex */
            invokevirtual sun.reflect.ClassFileAssembler.emitShort:(S)V
         2: .line 148
            aload 0 /* this */
            iload 2 /* nameAndTypeIndex */
            invokevirtual sun.reflect.ClassFileAssembler.emitShort:(S)V
         3: .line 149
            aload 0 /* this */
            dup
            getfield sun.reflect.ClassFileAssembler.cpIdx:S
            iconst_1
            iadd
            i2s
            putfield sun.reflect.ClassFileAssembler.cpIdx:S
         4: .line 150
            return
        end local 2 // short nameAndTypeIndex
        end local 1 // short classIndex
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    5     0              this  Lsun/reflect/ClassFileAssembler;
            0    5     1        classIndex  S
            0    5     2  nameAndTypeIndex  S
    MethodParameters:
                  Name  Flags
      classIndex        
      nameAndTypeIndex  

  public void emitConstantPoolString(short);
    descriptor: (S)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // sun.reflect.ClassFileAssembler this
        start local 1 // short utf8Index
         0: .line 153
            aload 0 /* this */
            bipush 8
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 154
            aload 0 /* this */
            iload 1 /* utf8Index */
            invokevirtual sun.reflect.ClassFileAssembler.emitShort:(S)V
         2: .line 155
            aload 0 /* this */
            dup
            getfield sun.reflect.ClassFileAssembler.cpIdx:S
            iconst_1
            iadd
            i2s
            putfield sun.reflect.ClassFileAssembler.cpIdx:S
         3: .line 156
            return
        end local 1 // short utf8Index
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lsun/reflect/ClassFileAssembler;
            0    4     1  utf8Index  S
    MethodParameters:
           Name  Flags
      utf8Index  

  private void incStack();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // sun.reflect.ClassFileAssembler this
         0: .line 169
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.reflect.ClassFileAssembler.stack:I
            iconst_1
            iadd
            invokevirtual sun.reflect.ClassFileAssembler.setStack:(I)V
         1: .line 170
            return
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/reflect/ClassFileAssembler;

  private void decStack();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // sun.reflect.ClassFileAssembler this
         0: .line 173
            aload 0 /* this */
            dup
            getfield sun.reflect.ClassFileAssembler.stack:I
            iconst_1
            isub
            putfield sun.reflect.ClassFileAssembler.stack:I
         1: .line 174
            return
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/reflect/ClassFileAssembler;

  public short getMaxStack();
    descriptor: ()S
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.reflect.ClassFileAssembler this
         0: .line 177
            aload 0 /* this */
            getfield sun.reflect.ClassFileAssembler.maxStack:I
            i2s
            ireturn
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/reflect/ClassFileAssembler;

  public short getMaxLocals();
    descriptor: ()S
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.reflect.ClassFileAssembler this
         0: .line 181
            aload 0 /* this */
            getfield sun.reflect.ClassFileAssembler.maxLocals:I
            i2s
            ireturn
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/reflect/ClassFileAssembler;

  public void setMaxLocals(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.reflect.ClassFileAssembler this
        start local 1 // int maxLocals
         0: .line 188
            aload 0 /* this */
            iload 1 /* maxLocals */
            putfield sun.reflect.ClassFileAssembler.maxLocals:I
         1: .line 189
            return
        end local 1 // int maxLocals
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lsun/reflect/ClassFileAssembler;
            0    2     1  maxLocals  I
    MethodParameters:
           Name  Flags
      maxLocals  

  public int getStack();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.reflect.ClassFileAssembler this
         0: .line 193
            aload 0 /* this */
            getfield sun.reflect.ClassFileAssembler.stack:I
            ireturn
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/reflect/ClassFileAssembler;

  public void setStack(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.reflect.ClassFileAssembler this
        start local 1 // int value
         0: .line 198
            aload 0 /* this */
            iload 1 /* value */
            putfield sun.reflect.ClassFileAssembler.stack:I
         1: .line 199
            aload 0 /* this */
            getfield sun.reflect.ClassFileAssembler.stack:I
            aload 0 /* this */
            getfield sun.reflect.ClassFileAssembler.maxStack:I
            if_icmple 3
         2: .line 200
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.reflect.ClassFileAssembler.stack:I
            putfield sun.reflect.ClassFileAssembler.maxStack:I
         3: .line 202
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int value
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lsun/reflect/ClassFileAssembler;
            0    4     1  value  I
    MethodParameters:
       Name  Flags
      value  

  public void opc_aconst_null();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.reflect.ClassFileAssembler this
         0: .line 209
            aload 0 /* this */
            iconst_1
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 210
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.incStack:()V
         2: .line 211
            return
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/reflect/ClassFileAssembler;

  public void opc_sipush(short);
    descriptor: (S)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.reflect.ClassFileAssembler this
        start local 1 // short constant
         0: .line 214
            aload 0 /* this */
            bipush 17
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 215
            aload 0 /* this */
            iload 1 /* constant */
            invokevirtual sun.reflect.ClassFileAssembler.emitShort:(S)V
         2: .line 216
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.incStack:()V
         3: .line 217
            return
        end local 1 // short constant
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lsun/reflect/ClassFileAssembler;
            0    4     1  constant  S
    MethodParameters:
          Name  Flags
      constant  

  public void opc_ldc(byte);
    descriptor: (B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.reflect.ClassFileAssembler this
        start local 1 // byte cpIdx
         0: .line 220
            aload 0 /* this */
            bipush 18
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 221
            aload 0 /* this */
            iload 1 /* cpIdx */
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         2: .line 222
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.incStack:()V
         3: .line 223
            return
        end local 1 // byte cpIdx
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lsun/reflect/ClassFileAssembler;
            0    4     1  cpIdx  B
    MethodParameters:
       Name  Flags
      cpIdx  

  public void opc_iload_0();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.reflect.ClassFileAssembler this
         0: .line 230
            aload 0 /* this */
            bipush 26
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 231
            aload 0 /* this */
            getfield sun.reflect.ClassFileAssembler.maxLocals:I
            iconst_1
            if_icmpge 2
            aload 0 /* this */
            iconst_1
            putfield sun.reflect.ClassFileAssembler.maxLocals:I
         2: .line 232
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.incStack:()V
         3: .line 233
            return
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lsun/reflect/ClassFileAssembler;

  public void opc_iload_1();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.reflect.ClassFileAssembler this
         0: .line 236
            aload 0 /* this */
            bipush 27
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 237
            aload 0 /* this */
            getfield sun.reflect.ClassFileAssembler.maxLocals:I
            iconst_2
            if_icmpge 2
            aload 0 /* this */
            iconst_2
            putfield sun.reflect.ClassFileAssembler.maxLocals:I
         2: .line 238
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.incStack:()V
         3: .line 239
            return
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lsun/reflect/ClassFileAssembler;

  public void opc_iload_2();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.reflect.ClassFileAssembler this
         0: .line 242
            aload 0 /* this */
            bipush 28
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 243
            aload 0 /* this */
            getfield sun.reflect.ClassFileAssembler.maxLocals:I
            iconst_3
            if_icmpge 2
            aload 0 /* this */
            iconst_3
            putfield sun.reflect.ClassFileAssembler.maxLocals:I
         2: .line 244
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.incStack:()V
         3: .line 245
            return
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lsun/reflect/ClassFileAssembler;

  public void opc_iload_3();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.reflect.ClassFileAssembler this
         0: .line 248
            aload 0 /* this */
            bipush 29
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 249
            aload 0 /* this */
            getfield sun.reflect.ClassFileAssembler.maxLocals:I
            iconst_4
            if_icmpge 2
            aload 0 /* this */
            iconst_4
            putfield sun.reflect.ClassFileAssembler.maxLocals:I
         2: .line 250
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.incStack:()V
         3: .line 251
            return
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lsun/reflect/ClassFileAssembler;

  public void opc_lload_0();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.reflect.ClassFileAssembler this
         0: .line 254
            aload 0 /* this */
            bipush 30
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 255
            aload 0 /* this */
            getfield sun.reflect.ClassFileAssembler.maxLocals:I
            iconst_2
            if_icmpge 2
            aload 0 /* this */
            iconst_2
            putfield sun.reflect.ClassFileAssembler.maxLocals:I
         2: .line 256
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.incStack:()V
         3: .line 257
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.incStack:()V
         4: .line 258
            return
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lsun/reflect/ClassFileAssembler;

  public void opc_lload_1();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.reflect.ClassFileAssembler this
         0: .line 261
            aload 0 /* this */
            bipush 31
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 262
            aload 0 /* this */
            getfield sun.reflect.ClassFileAssembler.maxLocals:I
            iconst_3
            if_icmpge 2
            aload 0 /* this */
            iconst_3
            putfield sun.reflect.ClassFileAssembler.maxLocals:I
         2: .line 263
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.incStack:()V
         3: .line 264
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.incStack:()V
         4: .line 265
            return
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lsun/reflect/ClassFileAssembler;

  public void opc_lload_2();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.reflect.ClassFileAssembler this
         0: .line 268
            aload 0 /* this */
            bipush 32
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 269
            aload 0 /* this */
            getfield sun.reflect.ClassFileAssembler.maxLocals:I
            iconst_4
            if_icmpge 2
            aload 0 /* this */
            iconst_4
            putfield sun.reflect.ClassFileAssembler.maxLocals:I
         2: .line 270
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.incStack:()V
         3: .line 271
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.incStack:()V
         4: .line 272
            return
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lsun/reflect/ClassFileAssembler;

  public void opc_lload_3();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.reflect.ClassFileAssembler this
         0: .line 275
            aload 0 /* this */
            bipush 33
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 276
            aload 0 /* this */
            getfield sun.reflect.ClassFileAssembler.maxLocals:I
            iconst_5
            if_icmpge 2
            aload 0 /* this */
            iconst_5
            putfield sun.reflect.ClassFileAssembler.maxLocals:I
         2: .line 277
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.incStack:()V
         3: .line 278
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.incStack:()V
         4: .line 279
            return
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lsun/reflect/ClassFileAssembler;

  public void opc_fload_0();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.reflect.ClassFileAssembler this
         0: .line 282
            aload 0 /* this */
            bipush 34
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 283
            aload 0 /* this */
            getfield sun.reflect.ClassFileAssembler.maxLocals:I
            iconst_1
            if_icmpge 2
            aload 0 /* this */
            iconst_1
            putfield sun.reflect.ClassFileAssembler.maxLocals:I
         2: .line 284
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.incStack:()V
         3: .line 285
            return
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lsun/reflect/ClassFileAssembler;

  public void opc_fload_1();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.reflect.ClassFileAssembler this
         0: .line 288
            aload 0 /* this */
            bipush 35
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 289
            aload 0 /* this */
            getfield sun.reflect.ClassFileAssembler.maxLocals:I
            iconst_2
            if_icmpge 2
            aload 0 /* this */
            iconst_2
            putfield sun.reflect.ClassFileAssembler.maxLocals:I
         2: .line 290
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.incStack:()V
         3: .line 291
            return
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lsun/reflect/ClassFileAssembler;

  public void opc_fload_2();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.reflect.ClassFileAssembler this
         0: .line 294
            aload 0 /* this */
            bipush 36
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 295
            aload 0 /* this */
            getfield sun.reflect.ClassFileAssembler.maxLocals:I
            iconst_3
            if_icmpge 2
            aload 0 /* this */
            iconst_3
            putfield sun.reflect.ClassFileAssembler.maxLocals:I
         2: .line 296
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.incStack:()V
         3: .line 297
            return
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lsun/reflect/ClassFileAssembler;

  public void opc_fload_3();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.reflect.ClassFileAssembler this
         0: .line 300
            aload 0 /* this */
            bipush 37
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 301
            aload 0 /* this */
            getfield sun.reflect.ClassFileAssembler.maxLocals:I
            iconst_4
            if_icmpge 2
            aload 0 /* this */
            iconst_4
            putfield sun.reflect.ClassFileAssembler.maxLocals:I
         2: .line 302
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.incStack:()V
         3: .line 303
            return
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lsun/reflect/ClassFileAssembler;

  public void opc_dload_0();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.reflect.ClassFileAssembler this
         0: .line 306
            aload 0 /* this */
            bipush 38
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 307
            aload 0 /* this */
            getfield sun.reflect.ClassFileAssembler.maxLocals:I
            iconst_2
            if_icmpge 2
            aload 0 /* this */
            iconst_2
            putfield sun.reflect.ClassFileAssembler.maxLocals:I
         2: .line 308
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.incStack:()V
         3: .line 309
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.incStack:()V
         4: .line 310
            return
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lsun/reflect/ClassFileAssembler;

  public void opc_dload_1();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.reflect.ClassFileAssembler this
         0: .line 313
            aload 0 /* this */
            bipush 39
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 314
            aload 0 /* this */
            getfield sun.reflect.ClassFileAssembler.maxLocals:I
            iconst_3
            if_icmpge 2
            aload 0 /* this */
            iconst_3
            putfield sun.reflect.ClassFileAssembler.maxLocals:I
         2: .line 315
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.incStack:()V
         3: .line 316
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.incStack:()V
         4: .line 317
            return
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lsun/reflect/ClassFileAssembler;

  public void opc_dload_2();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.reflect.ClassFileAssembler this
         0: .line 320
            aload 0 /* this */
            bipush 40
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 321
            aload 0 /* this */
            getfield sun.reflect.ClassFileAssembler.maxLocals:I
            iconst_4
            if_icmpge 2
            aload 0 /* this */
            iconst_4
            putfield sun.reflect.ClassFileAssembler.maxLocals:I
         2: .line 322
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.incStack:()V
         3: .line 323
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.incStack:()V
         4: .line 324
            return
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lsun/reflect/ClassFileAssembler;

  public void opc_dload_3();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.reflect.ClassFileAssembler this
         0: .line 327
            aload 0 /* this */
            bipush 41
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 328
            aload 0 /* this */
            getfield sun.reflect.ClassFileAssembler.maxLocals:I
            iconst_5
            if_icmpge 2
            aload 0 /* this */
            iconst_5
            putfield sun.reflect.ClassFileAssembler.maxLocals:I
         2: .line 329
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.incStack:()V
         3: .line 330
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.incStack:()V
         4: .line 331
            return
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lsun/reflect/ClassFileAssembler;

  public void opc_aload_0();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.reflect.ClassFileAssembler this
         0: .line 334
            aload 0 /* this */
            bipush 42
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 335
            aload 0 /* this */
            getfield sun.reflect.ClassFileAssembler.maxLocals:I
            iconst_1
            if_icmpge 2
            aload 0 /* this */
            iconst_1
            putfield sun.reflect.ClassFileAssembler.maxLocals:I
         2: .line 336
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.incStack:()V
         3: .line 337
            return
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lsun/reflect/ClassFileAssembler;

  public void opc_aload_1();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.reflect.ClassFileAssembler this
         0: .line 340
            aload 0 /* this */
            bipush 43
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 341
            aload 0 /* this */
            getfield sun.reflect.ClassFileAssembler.maxLocals:I
            iconst_2
            if_icmpge 2
            aload 0 /* this */
            iconst_2
            putfield sun.reflect.ClassFileAssembler.maxLocals:I
         2: .line 342
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.incStack:()V
         3: .line 343
            return
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lsun/reflect/ClassFileAssembler;

  public void opc_aload_2();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.reflect.ClassFileAssembler this
         0: .line 346
            aload 0 /* this */
            bipush 44
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 347
            aload 0 /* this */
            getfield sun.reflect.ClassFileAssembler.maxLocals:I
            iconst_3
            if_icmpge 2
            aload 0 /* this */
            iconst_3
            putfield sun.reflect.ClassFileAssembler.maxLocals:I
         2: .line 348
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.incStack:()V
         3: .line 349
            return
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lsun/reflect/ClassFileAssembler;

  public void opc_aload_3();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.reflect.ClassFileAssembler this
         0: .line 352
            aload 0 /* this */
            bipush 45
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 353
            aload 0 /* this */
            getfield sun.reflect.ClassFileAssembler.maxLocals:I
            iconst_4
            if_icmpge 2
            aload 0 /* this */
            iconst_4
            putfield sun.reflect.ClassFileAssembler.maxLocals:I
         2: .line 354
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.incStack:()V
         3: .line 355
            return
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lsun/reflect/ClassFileAssembler;

  public void opc_aaload();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.reflect.ClassFileAssembler this
         0: .line 358
            aload 0 /* this */
            bipush 50
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 359
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.decStack:()V
         2: .line 360
            return
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/reflect/ClassFileAssembler;

  public void opc_astore_0();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.reflect.ClassFileAssembler this
         0: .line 363
            aload 0 /* this */
            bipush 75
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 364
            aload 0 /* this */
            getfield sun.reflect.ClassFileAssembler.maxLocals:I
            iconst_1
            if_icmpge 2
            aload 0 /* this */
            iconst_1
            putfield sun.reflect.ClassFileAssembler.maxLocals:I
         2: .line 365
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.decStack:()V
         3: .line 366
            return
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lsun/reflect/ClassFileAssembler;

  public void opc_astore_1();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.reflect.ClassFileAssembler this
         0: .line 369
            aload 0 /* this */
            bipush 76
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 370
            aload 0 /* this */
            getfield sun.reflect.ClassFileAssembler.maxLocals:I
            iconst_2
            if_icmpge 2
            aload 0 /* this */
            iconst_2
            putfield sun.reflect.ClassFileAssembler.maxLocals:I
         2: .line 371
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.decStack:()V
         3: .line 372
            return
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lsun/reflect/ClassFileAssembler;

  public void opc_astore_2();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.reflect.ClassFileAssembler this
         0: .line 375
            aload 0 /* this */
            bipush 77
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 376
            aload 0 /* this */
            getfield sun.reflect.ClassFileAssembler.maxLocals:I
            iconst_3
            if_icmpge 2
            aload 0 /* this */
            iconst_3
            putfield sun.reflect.ClassFileAssembler.maxLocals:I
         2: .line 377
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.decStack:()V
         3: .line 378
            return
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lsun/reflect/ClassFileAssembler;

  public void opc_astore_3();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.reflect.ClassFileAssembler this
         0: .line 381
            aload 0 /* this */
            bipush 78
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 382
            aload 0 /* this */
            getfield sun.reflect.ClassFileAssembler.maxLocals:I
            iconst_4
            if_icmpge 2
            aload 0 /* this */
            iconst_4
            putfield sun.reflect.ClassFileAssembler.maxLocals:I
         2: .line 383
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.decStack:()V
         3: .line 384
            return
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lsun/reflect/ClassFileAssembler;

  public void opc_pop();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.reflect.ClassFileAssembler this
         0: .line 391
            aload 0 /* this */
            bipush 87
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 392
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.decStack:()V
         2: .line 393
            return
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/reflect/ClassFileAssembler;

  public void opc_dup();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.reflect.ClassFileAssembler this
         0: .line 396
            aload 0 /* this */
            bipush 89
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 397
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.incStack:()V
         2: .line 398
            return
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/reflect/ClassFileAssembler;

  public void opc_dup_x1();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.reflect.ClassFileAssembler this
         0: .line 401
            aload 0 /* this */
            bipush 90
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 402
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.incStack:()V
         2: .line 403
            return
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/reflect/ClassFileAssembler;

  public void opc_swap();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.reflect.ClassFileAssembler this
         0: .line 406
            aload 0 /* this */
            bipush 95
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 407
            return
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/reflect/ClassFileAssembler;

  public void opc_i2l();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.reflect.ClassFileAssembler this
         0: .line 414
            aload 0 /* this */
            bipush -123
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 415
            return
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/reflect/ClassFileAssembler;

  public void opc_i2f();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.reflect.ClassFileAssembler this
         0: .line 418
            aload 0 /* this */
            bipush -122
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 419
            return
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/reflect/ClassFileAssembler;

  public void opc_i2d();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.reflect.ClassFileAssembler this
         0: .line 422
            aload 0 /* this */
            bipush -121
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 423
            return
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/reflect/ClassFileAssembler;

  public void opc_l2f();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.reflect.ClassFileAssembler this
         0: .line 426
            aload 0 /* this */
            bipush -119
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 427
            return
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/reflect/ClassFileAssembler;

  public void opc_l2d();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.reflect.ClassFileAssembler this
         0: .line 430
            aload 0 /* this */
            bipush -118
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 431
            return
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/reflect/ClassFileAssembler;

  public void opc_f2d();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.reflect.ClassFileAssembler this
         0: .line 434
            aload 0 /* this */
            bipush -115
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 435
            return
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/reflect/ClassFileAssembler;

  public void opc_ifeq(short);
    descriptor: (S)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.reflect.ClassFileAssembler this
        start local 1 // short bciOffset
         0: .line 442
            aload 0 /* this */
            bipush -103
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 443
            aload 0 /* this */
            iload 1 /* bciOffset */
            invokevirtual sun.reflect.ClassFileAssembler.emitShort:(S)V
         2: .line 444
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.decStack:()V
         3: .line 445
            return
        end local 1 // short bciOffset
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lsun/reflect/ClassFileAssembler;
            0    4     1  bciOffset  S
    MethodParameters:
           Name  Flags
      bciOffset  

  public void opc_ifeq(sun.reflect.Label);
    descriptor: (Lsun/reflect/Label;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=2
        start local 0 // sun.reflect.ClassFileAssembler this
        start local 1 // sun.reflect.Label l
         0: .line 450
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.getLength:()S
            istore 2 /* instrBCI */
        start local 2 // short instrBCI
         1: .line 451
            aload 0 /* this */
            bipush -103
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         2: .line 452
            aload 1 /* l */
            aload 0 /* this */
            iload 2 /* instrBCI */
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.getLength:()S
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.getStack:()I
            iconst_1
            isub
            invokevirtual sun.reflect.Label.add:(Lsun/reflect/ClassFileAssembler;SSI)V
         3: .line 453
            aload 0 /* this */
            iconst_m1
            invokevirtual sun.reflect.ClassFileAssembler.emitShort:(S)V
         4: .line 454
            return
        end local 2 // short instrBCI
        end local 1 // sun.reflect.Label l
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lsun/reflect/ClassFileAssembler;
            0    5     1         l  Lsun/reflect/Label;
            1    5     2  instrBCI  S
    MethodParameters:
      Name  Flags
      l     

  public void opc_if_icmpeq(short);
    descriptor: (S)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // sun.reflect.ClassFileAssembler this
        start local 1 // short bciOffset
         0: .line 457
            aload 0 /* this */
            bipush -97
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 458
            aload 0 /* this */
            iload 1 /* bciOffset */
            invokevirtual sun.reflect.ClassFileAssembler.emitShort:(S)V
         2: .line 459
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.getStack:()I
            iconst_2
            isub
            invokevirtual sun.reflect.ClassFileAssembler.setStack:(I)V
         3: .line 460
            return
        end local 1 // short bciOffset
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lsun/reflect/ClassFileAssembler;
            0    4     1  bciOffset  S
    MethodParameters:
           Name  Flags
      bciOffset  

  public void opc_if_icmpeq(sun.reflect.Label);
    descriptor: (Lsun/reflect/Label;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=2
        start local 0 // sun.reflect.ClassFileAssembler this
        start local 1 // sun.reflect.Label l
         0: .line 465
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.getLength:()S
            istore 2 /* instrBCI */
        start local 2 // short instrBCI
         1: .line 466
            aload 0 /* this */
            bipush -97
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         2: .line 467
            aload 1 /* l */
            aload 0 /* this */
            iload 2 /* instrBCI */
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.getLength:()S
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.getStack:()I
            iconst_2
            isub
            invokevirtual sun.reflect.Label.add:(Lsun/reflect/ClassFileAssembler;SSI)V
         3: .line 468
            aload 0 /* this */
            iconst_m1
            invokevirtual sun.reflect.ClassFileAssembler.emitShort:(S)V
         4: .line 469
            return
        end local 2 // short instrBCI
        end local 1 // sun.reflect.Label l
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lsun/reflect/ClassFileAssembler;
            0    5     1         l  Lsun/reflect/Label;
            1    5     2  instrBCI  S
    MethodParameters:
      Name  Flags
      l     

  public void opc_goto(short);
    descriptor: (S)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.reflect.ClassFileAssembler this
        start local 1 // short bciOffset
         0: .line 472
            aload 0 /* this */
            bipush -89
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 473
            aload 0 /* this */
            iload 1 /* bciOffset */
            invokevirtual sun.reflect.ClassFileAssembler.emitShort:(S)V
         2: .line 474
            return
        end local 1 // short bciOffset
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lsun/reflect/ClassFileAssembler;
            0    3     1  bciOffset  S
    MethodParameters:
           Name  Flags
      bciOffset  

  public void opc_goto(sun.reflect.Label);
    descriptor: (Lsun/reflect/Label;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // sun.reflect.ClassFileAssembler this
        start local 1 // sun.reflect.Label l
         0: .line 479
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.getLength:()S
            istore 2 /* instrBCI */
        start local 2 // short instrBCI
         1: .line 480
            aload 0 /* this */
            bipush -89
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         2: .line 481
            aload 1 /* l */
            aload 0 /* this */
            iload 2 /* instrBCI */
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.getLength:()S
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.getStack:()I
            invokevirtual sun.reflect.Label.add:(Lsun/reflect/ClassFileAssembler;SSI)V
         3: .line 482
            aload 0 /* this */
            iconst_m1
            invokevirtual sun.reflect.ClassFileAssembler.emitShort:(S)V
         4: .line 483
            return
        end local 2 // short instrBCI
        end local 1 // sun.reflect.Label l
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lsun/reflect/ClassFileAssembler;
            0    5     1         l  Lsun/reflect/Label;
            1    5     2  instrBCI  S
    MethodParameters:
      Name  Flags
      l     

  public void opc_ifnull(short);
    descriptor: (S)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.reflect.ClassFileAssembler this
        start local 1 // short bciOffset
         0: .line 486
            aload 0 /* this */
            bipush -58
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 487
            aload 0 /* this */
            iload 1 /* bciOffset */
            invokevirtual sun.reflect.ClassFileAssembler.emitShort:(S)V
         2: .line 488
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.decStack:()V
         3: .line 489
            return
        end local 1 // short bciOffset
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lsun/reflect/ClassFileAssembler;
            0    4     1  bciOffset  S
    MethodParameters:
           Name  Flags
      bciOffset  

  public void opc_ifnull(sun.reflect.Label);
    descriptor: (Lsun/reflect/Label;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=2
        start local 0 // sun.reflect.ClassFileAssembler this
        start local 1 // sun.reflect.Label l
         0: .line 494
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.getLength:()S
            istore 2 /* instrBCI */
        start local 2 // short instrBCI
         1: .line 495
            aload 0 /* this */
            bipush -58
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         2: .line 496
            aload 1 /* l */
            aload 0 /* this */
            iload 2 /* instrBCI */
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.getLength:()S
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.getStack:()I
            iconst_1
            isub
            invokevirtual sun.reflect.Label.add:(Lsun/reflect/ClassFileAssembler;SSI)V
         3: .line 497
            aload 0 /* this */
            iconst_m1
            invokevirtual sun.reflect.ClassFileAssembler.emitShort:(S)V
         4: .line 498
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.decStack:()V
         5: .line 499
            return
        end local 2 // short instrBCI
        end local 1 // sun.reflect.Label l
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lsun/reflect/ClassFileAssembler;
            0    6     1         l  Lsun/reflect/Label;
            1    6     2  instrBCI  S
    MethodParameters:
      Name  Flags
      l     

  public void opc_ifnonnull(short);
    descriptor: (S)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.reflect.ClassFileAssembler this
        start local 1 // short bciOffset
         0: .line 502
            aload 0 /* this */
            bipush -57
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 503
            aload 0 /* this */
            iload 1 /* bciOffset */
            invokevirtual sun.reflect.ClassFileAssembler.emitShort:(S)V
         2: .line 504
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.decStack:()V
         3: .line 505
            return
        end local 1 // short bciOffset
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lsun/reflect/ClassFileAssembler;
            0    4     1  bciOffset  S
    MethodParameters:
           Name  Flags
      bciOffset  

  public void opc_ifnonnull(sun.reflect.Label);
    descriptor: (Lsun/reflect/Label;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=2
        start local 0 // sun.reflect.ClassFileAssembler this
        start local 1 // sun.reflect.Label l
         0: .line 510
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.getLength:()S
            istore 2 /* instrBCI */
        start local 2 // short instrBCI
         1: .line 511
            aload 0 /* this */
            bipush -57
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         2: .line 512
            aload 1 /* l */
            aload 0 /* this */
            iload 2 /* instrBCI */
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.getLength:()S
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.getStack:()I
            iconst_1
            isub
            invokevirtual sun.reflect.Label.add:(Lsun/reflect/ClassFileAssembler;SSI)V
         3: .line 513
            aload 0 /* this */
            iconst_m1
            invokevirtual sun.reflect.ClassFileAssembler.emitShort:(S)V
         4: .line 514
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.decStack:()V
         5: .line 515
            return
        end local 2 // short instrBCI
        end local 1 // sun.reflect.Label l
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lsun/reflect/ClassFileAssembler;
            0    6     1         l  Lsun/reflect/Label;
            1    6     2  instrBCI  S
    MethodParameters:
      Name  Flags
      l     

  public void opc_ireturn();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.reflect.ClassFileAssembler this
         0: .line 522
            aload 0 /* this */
            bipush -84
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 523
            aload 0 /* this */
            iconst_0
            invokevirtual sun.reflect.ClassFileAssembler.setStack:(I)V
         2: .line 524
            return
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/reflect/ClassFileAssembler;

  public void opc_lreturn();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.reflect.ClassFileAssembler this
         0: .line 527
            aload 0 /* this */
            bipush -83
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 528
            aload 0 /* this */
            iconst_0
            invokevirtual sun.reflect.ClassFileAssembler.setStack:(I)V
         2: .line 529
            return
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/reflect/ClassFileAssembler;

  public void opc_freturn();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.reflect.ClassFileAssembler this
         0: .line 532
            aload 0 /* this */
            bipush -82
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 533
            aload 0 /* this */
            iconst_0
            invokevirtual sun.reflect.ClassFileAssembler.setStack:(I)V
         2: .line 534
            return
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/reflect/ClassFileAssembler;

  public void opc_dreturn();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.reflect.ClassFileAssembler this
         0: .line 537
            aload 0 /* this */
            bipush -81
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 538
            aload 0 /* this */
            iconst_0
            invokevirtual sun.reflect.ClassFileAssembler.setStack:(I)V
         2: .line 539
            return
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/reflect/ClassFileAssembler;

  public void opc_areturn();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.reflect.ClassFileAssembler this
         0: .line 542
            aload 0 /* this */
            bipush -80
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 543
            aload 0 /* this */
            iconst_0
            invokevirtual sun.reflect.ClassFileAssembler.setStack:(I)V
         2: .line 544
            return
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/reflect/ClassFileAssembler;

  public void opc_return();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.reflect.ClassFileAssembler this
         0: .line 547
            aload 0 /* this */
            bipush -79
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 548
            aload 0 /* this */
            iconst_0
            invokevirtual sun.reflect.ClassFileAssembler.setStack:(I)V
         2: .line 549
            return
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/reflect/ClassFileAssembler;

  public void opc_getstatic(short, int);
    descriptor: (SI)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // sun.reflect.ClassFileAssembler this
        start local 1 // short fieldIndex
        start local 2 // int fieldSizeInStackSlots
         0: .line 556
            aload 0 /* this */
            bipush -78
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 557
            aload 0 /* this */
            iload 1 /* fieldIndex */
            invokevirtual sun.reflect.ClassFileAssembler.emitShort:(S)V
         2: .line 558
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.getStack:()I
            iload 2 /* fieldSizeInStackSlots */
            iadd
            invokevirtual sun.reflect.ClassFileAssembler.setStack:(I)V
         3: .line 559
            return
        end local 2 // int fieldSizeInStackSlots
        end local 1 // short fieldIndex
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot                   Name  Signature
            0    4     0                   this  Lsun/reflect/ClassFileAssembler;
            0    4     1             fieldIndex  S
            0    4     2  fieldSizeInStackSlots  I
    MethodParameters:
                       Name  Flags
      fieldIndex             
      fieldSizeInStackSlots  

  public void opc_putstatic(short, int);
    descriptor: (SI)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // sun.reflect.ClassFileAssembler this
        start local 1 // short fieldIndex
        start local 2 // int fieldSizeInStackSlots
         0: .line 562
            aload 0 /* this */
            bipush -77
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 563
            aload 0 /* this */
            iload 1 /* fieldIndex */
            invokevirtual sun.reflect.ClassFileAssembler.emitShort:(S)V
         2: .line 564
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.getStack:()I
            iload 2 /* fieldSizeInStackSlots */
            isub
            invokevirtual sun.reflect.ClassFileAssembler.setStack:(I)V
         3: .line 565
            return
        end local 2 // int fieldSizeInStackSlots
        end local 1 // short fieldIndex
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot                   Name  Signature
            0    4     0                   this  Lsun/reflect/ClassFileAssembler;
            0    4     1             fieldIndex  S
            0    4     2  fieldSizeInStackSlots  I
    MethodParameters:
                       Name  Flags
      fieldIndex             
      fieldSizeInStackSlots  

  public void opc_getfield(short, int);
    descriptor: (SI)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // sun.reflect.ClassFileAssembler this
        start local 1 // short fieldIndex
        start local 2 // int fieldSizeInStackSlots
         0: .line 568
            aload 0 /* this */
            bipush -76
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 569
            aload 0 /* this */
            iload 1 /* fieldIndex */
            invokevirtual sun.reflect.ClassFileAssembler.emitShort:(S)V
         2: .line 570
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.getStack:()I
            iload 2 /* fieldSizeInStackSlots */
            iadd
            iconst_1
            isub
            invokevirtual sun.reflect.ClassFileAssembler.setStack:(I)V
         3: .line 571
            return
        end local 2 // int fieldSizeInStackSlots
        end local 1 // short fieldIndex
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot                   Name  Signature
            0    4     0                   this  Lsun/reflect/ClassFileAssembler;
            0    4     1             fieldIndex  S
            0    4     2  fieldSizeInStackSlots  I
    MethodParameters:
                       Name  Flags
      fieldIndex             
      fieldSizeInStackSlots  

  public void opc_putfield(short, int);
    descriptor: (SI)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // sun.reflect.ClassFileAssembler this
        start local 1 // short fieldIndex
        start local 2 // int fieldSizeInStackSlots
         0: .line 574
            aload 0 /* this */
            bipush -75
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 575
            aload 0 /* this */
            iload 1 /* fieldIndex */
            invokevirtual sun.reflect.ClassFileAssembler.emitShort:(S)V
         2: .line 576
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.getStack:()I
            iload 2 /* fieldSizeInStackSlots */
            isub
            iconst_1
            isub
            invokevirtual sun.reflect.ClassFileAssembler.setStack:(I)V
         3: .line 577
            return
        end local 2 // int fieldSizeInStackSlots
        end local 1 // short fieldIndex
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot                   Name  Signature
            0    4     0                   this  Lsun/reflect/ClassFileAssembler;
            0    4     1             fieldIndex  S
            0    4     2  fieldSizeInStackSlots  I
    MethodParameters:
                       Name  Flags
      fieldIndex             
      fieldSizeInStackSlots  

  public void opc_invokevirtual(short, int, int);
    descriptor: (SII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // sun.reflect.ClassFileAssembler this
        start local 1 // short methodIndex
        start local 2 // int numArgs
        start local 3 // int numReturnValues
         0: .line 589
            aload 0 /* this */
            bipush -74
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 590
            aload 0 /* this */
            iload 1 /* methodIndex */
            invokevirtual sun.reflect.ClassFileAssembler.emitShort:(S)V
         2: .line 591
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.getStack:()I
            iload 2 /* numArgs */
            isub
            iconst_1
            isub
            iload 3 /* numReturnValues */
            iadd
            invokevirtual sun.reflect.ClassFileAssembler.setStack:(I)V
         3: .line 592
            return
        end local 3 // int numReturnValues
        end local 2 // int numArgs
        end local 1 // short methodIndex
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    4     0             this  Lsun/reflect/ClassFileAssembler;
            0    4     1      methodIndex  S
            0    4     2          numArgs  I
            0    4     3  numReturnValues  I
    MethodParameters:
                 Name  Flags
      methodIndex      
      numArgs          
      numReturnValues  

  public void opc_invokespecial(short, int, int);
    descriptor: (SII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // sun.reflect.ClassFileAssembler this
        start local 1 // short methodIndex
        start local 2 // int numArgs
        start local 3 // int numReturnValues
         0: .line 600
            aload 0 /* this */
            bipush -73
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 601
            aload 0 /* this */
            iload 1 /* methodIndex */
            invokevirtual sun.reflect.ClassFileAssembler.emitShort:(S)V
         2: .line 602
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.getStack:()I
            iload 2 /* numArgs */
            isub
            iconst_1
            isub
            iload 3 /* numReturnValues */
            iadd
            invokevirtual sun.reflect.ClassFileAssembler.setStack:(I)V
         3: .line 603
            return
        end local 3 // int numReturnValues
        end local 2 // int numArgs
        end local 1 // short methodIndex
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    4     0             this  Lsun/reflect/ClassFileAssembler;
            0    4     1      methodIndex  S
            0    4     2          numArgs  I
            0    4     3  numReturnValues  I
    MethodParameters:
                 Name  Flags
      methodIndex      
      numArgs          
      numReturnValues  

  public void opc_invokestatic(short, int, int);
    descriptor: (SII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // sun.reflect.ClassFileAssembler this
        start local 1 // short methodIndex
        start local 2 // int numArgs
        start local 3 // int numReturnValues
         0: .line 611
            aload 0 /* this */
            bipush -72
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 612
            aload 0 /* this */
            iload 1 /* methodIndex */
            invokevirtual sun.reflect.ClassFileAssembler.emitShort:(S)V
         2: .line 613
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.getStack:()I
            iload 2 /* numArgs */
            isub
            iload 3 /* numReturnValues */
            iadd
            invokevirtual sun.reflect.ClassFileAssembler.setStack:(I)V
         3: .line 614
            return
        end local 3 // int numReturnValues
        end local 2 // int numArgs
        end local 1 // short methodIndex
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    4     0             this  Lsun/reflect/ClassFileAssembler;
            0    4     1      methodIndex  S
            0    4     2          numArgs  I
            0    4     3  numReturnValues  I
    MethodParameters:
                 Name  Flags
      methodIndex      
      numArgs          
      numReturnValues  

  public void opc_invokeinterface(short, int, byte, int);
    descriptor: (SIBI)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=5
        start local 0 // sun.reflect.ClassFileAssembler this
        start local 1 // short methodIndex
        start local 2 // int numArgs
        start local 3 // byte count
        start local 4 // int numReturnValues
         0: .line 623
            aload 0 /* this */
            bipush -71
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 624
            aload 0 /* this */
            iload 1 /* methodIndex */
            invokevirtual sun.reflect.ClassFileAssembler.emitShort:(S)V
         2: .line 625
            aload 0 /* this */
            iload 3 /* count */
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         3: .line 626
            aload 0 /* this */
            iconst_0
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         4: .line 627
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.getStack:()I
            iload 2 /* numArgs */
            isub
            iconst_1
            isub
            iload 4 /* numReturnValues */
            iadd
            invokevirtual sun.reflect.ClassFileAssembler.setStack:(I)V
         5: .line 628
            return
        end local 4 // int numReturnValues
        end local 3 // byte count
        end local 2 // int numArgs
        end local 1 // short methodIndex
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    6     0             this  Lsun/reflect/ClassFileAssembler;
            0    6     1      methodIndex  S
            0    6     2          numArgs  I
            0    6     3            count  B
            0    6     4  numReturnValues  I
    MethodParameters:
                 Name  Flags
      methodIndex      
      numArgs          
      count            
      numReturnValues  

  public void opc_arraylength();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.reflect.ClassFileAssembler this
         0: .line 635
            aload 0 /* this */
            bipush -66
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 636
            return
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/reflect/ClassFileAssembler;

  public void opc_new(short);
    descriptor: (S)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.reflect.ClassFileAssembler this
        start local 1 // short classIndex
         0: .line 643
            aload 0 /* this */
            bipush -69
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 644
            aload 0 /* this */
            iload 1 /* classIndex */
            invokevirtual sun.reflect.ClassFileAssembler.emitShort:(S)V
         2: .line 645
            aload 0 /* this */
            invokevirtual sun.reflect.ClassFileAssembler.incStack:()V
         3: .line 646
            return
        end local 1 // short classIndex
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    4     0        this  Lsun/reflect/ClassFileAssembler;
            0    4     1  classIndex  S
    MethodParameters:
            Name  Flags
      classIndex  

  public void opc_athrow();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.reflect.ClassFileAssembler this
         0: .line 653
            aload 0 /* this */
            bipush -65
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 654
            aload 0 /* this */
            iconst_1
            invokevirtual sun.reflect.ClassFileAssembler.setStack:(I)V
         2: .line 655
            return
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/reflect/ClassFileAssembler;

  public void opc_checkcast(short);
    descriptor: (S)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.reflect.ClassFileAssembler this
        start local 1 // short classIndex
         0: .line 663
            aload 0 /* this */
            bipush -64
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 664
            aload 0 /* this */
            iload 1 /* classIndex */
            invokevirtual sun.reflect.ClassFileAssembler.emitShort:(S)V
         2: .line 665
            return
        end local 1 // short classIndex
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0        this  Lsun/reflect/ClassFileAssembler;
            0    3     1  classIndex  S
    MethodParameters:
            Name  Flags
      classIndex  

  public void opc_instanceof(short);
    descriptor: (S)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.reflect.ClassFileAssembler this
        start local 1 // short classIndex
         0: .line 668
            aload 0 /* this */
            bipush -63
            invokevirtual sun.reflect.ClassFileAssembler.emitByte:(B)V
         1: .line 669
            aload 0 /* this */
            iload 1 /* classIndex */
            invokevirtual sun.reflect.ClassFileAssembler.emitShort:(S)V
         2: .line 670
            return
        end local 1 // short classIndex
        end local 0 // sun.reflect.ClassFileAssembler this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0        this  Lsun/reflect/ClassFileAssembler;
            0    3     1  classIndex  S
    MethodParameters:
            Name  Flags
      classIndex  
}
SourceFile: "ClassFileAssembler.java"