public class com.sun.tools.javac.util.ByteBuffer
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.sun.tools.javac.util.ByteBuffer
  super_class: java.lang.Object
{
  public byte[] elems;
    descriptor: [B
    flags: (0x0001) ACC_PUBLIC

  public int length;
    descriptor: I
    flags: (0x0001) ACC_PUBLIC

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.sun.tools.javac.util.ByteBuffer this
         0: .line 52
            aload 0 /* this */
            bipush 64
            invokespecial com.sun.tools.javac.util.ByteBuffer.<init>:(I)V
         1: .line 53
            return
        end local 0 // com.sun.tools.javac.util.ByteBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/tools/javac/util/ByteBuffer;

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.tools.javac.util.ByteBuffer this
        start local 1 // int initialSize
         0: .line 58
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 59
            aload 0 /* this */
            iload 1 /* initialSize */
            newarray 8
            putfield com.sun.tools.javac.util.ByteBuffer.elems:[B
         2: .line 60
            aload 0 /* this */
            iconst_0
            putfield com.sun.tools.javac.util.ByteBuffer.length:I
         3: .line 61
            return
        end local 1 // int initialSize
        end local 0 // com.sun.tools.javac.util.ByteBuffer this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    4     0         this  Lcom/sun/tools/javac/util/ByteBuffer;
            0    4     1  initialSize  I
    MethodParameters:
             Name  Flags
      initialSize  

  public void appendByte(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // com.sun.tools.javac.util.ByteBuffer this
        start local 1 // int b
         0: .line 66
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.tools.javac.util.ByteBuffer.elems:[B
            aload 0 /* this */
            getfield com.sun.tools.javac.util.ByteBuffer.length:I
            invokestatic com.sun.tools.javac.util.ArrayUtils.ensureCapacity:([BI)[B
            putfield com.sun.tools.javac.util.ByteBuffer.elems:[B
         1: .line 67
            aload 0 /* this */
            getfield com.sun.tools.javac.util.ByteBuffer.elems:[B
            aload 0 /* this */
            dup
            getfield com.sun.tools.javac.util.ByteBuffer.length:I
            dup_x1
            iconst_1
            iadd
            putfield com.sun.tools.javac.util.ByteBuffer.length:I
            iload 1 /* b */
            i2b
            bastore
         2: .line 68
            return
        end local 1 // int b
        end local 0 // com.sun.tools.javac.util.ByteBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/sun/tools/javac/util/ByteBuffer;
            0    3     1     b  I
    MethodParameters:
      Name  Flags
      b     

  public void appendBytes(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // com.sun.tools.javac.util.ByteBuffer this
        start local 1 // byte[] bs
        start local 2 // int start
        start local 3 // int len
         0: .line 74
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.tools.javac.util.ByteBuffer.elems:[B
            aload 0 /* this */
            getfield com.sun.tools.javac.util.ByteBuffer.length:I
            iload 3 /* len */
            iadd
            invokestatic com.sun.tools.javac.util.ArrayUtils.ensureCapacity:([BI)[B
            putfield com.sun.tools.javac.util.ByteBuffer.elems:[B
         1: .line 75
            aload 1 /* bs */
            iload 2 /* start */
            aload 0 /* this */
            getfield com.sun.tools.javac.util.ByteBuffer.elems:[B
            aload 0 /* this */
            getfield com.sun.tools.javac.util.ByteBuffer.length:I
            iload 3 /* len */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         2: .line 76
            aload 0 /* this */
            dup
            getfield com.sun.tools.javac.util.ByteBuffer.length:I
            iload 3 /* len */
            iadd
            putfield com.sun.tools.javac.util.ByteBuffer.length:I
         3: .line 77
            return
        end local 3 // int len
        end local 2 // int start
        end local 1 // byte[] bs
        end local 0 // com.sun.tools.javac.util.ByteBuffer this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lcom/sun/tools/javac/util/ByteBuffer;
            0    4     1     bs  [B
            0    4     2  start  I
            0    4     3    len  I
    MethodParameters:
       Name  Flags
      bs     
      start  
      len    

  public void appendBytes(byte[]);
    descriptor: ([B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.sun.tools.javac.util.ByteBuffer this
        start local 1 // byte[] bs
         0: .line 82
            aload 0 /* this */
            aload 1 /* bs */
            iconst_0
            aload 1 /* bs */
            arraylength
            invokevirtual com.sun.tools.javac.util.ByteBuffer.appendBytes:([BII)V
         1: .line 83
            return
        end local 1 // byte[] bs
        end local 0 // com.sun.tools.javac.util.ByteBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/tools/javac/util/ByteBuffer;
            0    2     1    bs  [B
    MethodParameters:
      Name  Flags
      bs    

  public void appendChar(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.sun.tools.javac.util.ByteBuffer this
        start local 1 // int x
         0: .line 88
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.tools.javac.util.ByteBuffer.elems:[B
            aload 0 /* this */
            getfield com.sun.tools.javac.util.ByteBuffer.length:I
            iconst_1
            iadd
            invokestatic com.sun.tools.javac.util.ArrayUtils.ensureCapacity:([BI)[B
            putfield com.sun.tools.javac.util.ByteBuffer.elems:[B
         1: .line 89
            aload 0 /* this */
            getfield com.sun.tools.javac.util.ByteBuffer.elems:[B
            aload 0 /* this */
            getfield com.sun.tools.javac.util.ByteBuffer.length:I
            iload 1 /* x */
            bipush 8
            ishr
            sipush 255
            iand
            i2b
            bastore
         2: .line 90
            aload 0 /* this */
            getfield com.sun.tools.javac.util.ByteBuffer.elems:[B
            aload 0 /* this */
            getfield com.sun.tools.javac.util.ByteBuffer.length:I
            iconst_1
            iadd
            iload 1 /* x */
            sipush 255
            iand
            i2b
            bastore
         3: .line 91
            aload 0 /* this */
            dup
            getfield com.sun.tools.javac.util.ByteBuffer.length:I
            iconst_2
            iadd
            putfield com.sun.tools.javac.util.ByteBuffer.length:I
         4: .line 92
            return
        end local 1 // int x
        end local 0 // com.sun.tools.javac.util.ByteBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/sun/tools/javac/util/ByteBuffer;
            0    5     1     x  I
    MethodParameters:
      Name  Flags
      x     

  public void appendInt(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.sun.tools.javac.util.ByteBuffer this
        start local 1 // int x
         0: .line 97
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.tools.javac.util.ByteBuffer.elems:[B
            aload 0 /* this */
            getfield com.sun.tools.javac.util.ByteBuffer.length:I
            iconst_3
            iadd
            invokestatic com.sun.tools.javac.util.ArrayUtils.ensureCapacity:([BI)[B
            putfield com.sun.tools.javac.util.ByteBuffer.elems:[B
         1: .line 98
            aload 0 /* this */
            getfield com.sun.tools.javac.util.ByteBuffer.elems:[B
            aload 0 /* this */
            getfield com.sun.tools.javac.util.ByteBuffer.length:I
            iload 1 /* x */
            bipush 24
            ishr
            sipush 255
            iand
            i2b
            bastore
         2: .line 99
            aload 0 /* this */
            getfield com.sun.tools.javac.util.ByteBuffer.elems:[B
            aload 0 /* this */
            getfield com.sun.tools.javac.util.ByteBuffer.length:I
            iconst_1
            iadd
            iload 1 /* x */
            bipush 16
            ishr
            sipush 255
            iand
            i2b
            bastore
         3: .line 100
            aload 0 /* this */
            getfield com.sun.tools.javac.util.ByteBuffer.elems:[B
            aload 0 /* this */
            getfield com.sun.tools.javac.util.ByteBuffer.length:I
            iconst_2
            iadd
            iload 1 /* x */
            bipush 8
            ishr
            sipush 255
            iand
            i2b
            bastore
         4: .line 101
            aload 0 /* this */
            getfield com.sun.tools.javac.util.ByteBuffer.elems:[B
            aload 0 /* this */
            getfield com.sun.tools.javac.util.ByteBuffer.length:I
            iconst_3
            iadd
            iload 1 /* x */
            sipush 255
            iand
            i2b
            bastore
         5: .line 102
            aload 0 /* this */
            dup
            getfield com.sun.tools.javac.util.ByteBuffer.length:I
            iconst_4
            iadd
            putfield com.sun.tools.javac.util.ByteBuffer.length:I
         6: .line 103
            return
        end local 1 // int x
        end local 0 // com.sun.tools.javac.util.ByteBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lcom/sun/tools/javac/util/ByteBuffer;
            0    7     1     x  I
    MethodParameters:
      Name  Flags
      x     

  public void appendLong(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // com.sun.tools.javac.util.ByteBuffer this
        start local 1 // long x
         0: .line 108
            new java.io.ByteArrayOutputStream
            dup
            bipush 8
            invokespecial java.io.ByteArrayOutputStream.<init>:(I)V
            astore 3 /* buffer */
        start local 3 // java.io.ByteArrayOutputStream buffer
         1: .line 109
            new java.io.DataOutputStream
            dup
            aload 3 /* buffer */
            invokespecial java.io.DataOutputStream.<init>:(Ljava/io/OutputStream;)V
            astore 4 /* bufout */
        start local 4 // java.io.DataOutputStream bufout
         2: .line 111
            aload 4 /* bufout */
            lload 1 /* x */
            invokevirtual java.io.DataOutputStream.writeLong:(J)V
         3: .line 112
            aload 0 /* this */
            aload 3 /* buffer */
            invokevirtual java.io.ByteArrayOutputStream.toByteArray:()[B
            iconst_0
            bipush 8
            invokevirtual com.sun.tools.javac.util.ByteBuffer.appendBytes:([BII)V
         4: .line 113
            goto 7
      StackMap locals: com.sun.tools.javac.util.ByteBuffer long java.io.ByteArrayOutputStream java.io.DataOutputStream
      StackMap stack: java.io.IOException
         5: pop
         6: .line 114
            new java.lang.AssertionError
            dup
            ldc "write"
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         7: .line 116
      StackMap locals:
      StackMap stack:
            return
        end local 4 // java.io.DataOutputStream bufout
        end local 3 // java.io.ByteArrayOutputStream buffer
        end local 1 // long x
        end local 0 // com.sun.tools.javac.util.ByteBuffer this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lcom/sun/tools/javac/util/ByteBuffer;
            0    8     1       x  J
            1    8     3  buffer  Ljava/io/ByteArrayOutputStream;
            2    8     4  bufout  Ljava/io/DataOutputStream;
      Exception table:
        from    to  target  type
           2     4       5  Class java.io.IOException
    MethodParameters:
      Name  Flags
      x     

  public void appendFloat(float);
    descriptor: (F)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // com.sun.tools.javac.util.ByteBuffer this
        start local 1 // float x
         0: .line 121
            new java.io.ByteArrayOutputStream
            dup
            iconst_4
            invokespecial java.io.ByteArrayOutputStream.<init>:(I)V
            astore 2 /* buffer */
        start local 2 // java.io.ByteArrayOutputStream buffer
         1: .line 122
            new java.io.DataOutputStream
            dup
            aload 2 /* buffer */
            invokespecial java.io.DataOutputStream.<init>:(Ljava/io/OutputStream;)V
            astore 3 /* bufout */
        start local 3 // java.io.DataOutputStream bufout
         2: .line 124
            aload 3 /* bufout */
            fload 1 /* x */
            invokevirtual java.io.DataOutputStream.writeFloat:(F)V
         3: .line 125
            aload 0 /* this */
            aload 2 /* buffer */
            invokevirtual java.io.ByteArrayOutputStream.toByteArray:()[B
            iconst_0
            iconst_4
            invokevirtual com.sun.tools.javac.util.ByteBuffer.appendBytes:([BII)V
         4: .line 126
            goto 7
      StackMap locals: com.sun.tools.javac.util.ByteBuffer float java.io.ByteArrayOutputStream java.io.DataOutputStream
      StackMap stack: java.io.IOException
         5: pop
         6: .line 127
            new java.lang.AssertionError
            dup
            ldc "write"
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         7: .line 129
      StackMap locals:
      StackMap stack:
            return
        end local 3 // java.io.DataOutputStream bufout
        end local 2 // java.io.ByteArrayOutputStream buffer
        end local 1 // float x
        end local 0 // com.sun.tools.javac.util.ByteBuffer this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lcom/sun/tools/javac/util/ByteBuffer;
            0    8     1       x  F
            1    8     2  buffer  Ljava/io/ByteArrayOutputStream;
            2    8     3  bufout  Ljava/io/DataOutputStream;
      Exception table:
        from    to  target  type
           2     4       5  Class java.io.IOException
    MethodParameters:
      Name  Flags
      x     

  public void appendDouble(double);
    descriptor: (D)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // com.sun.tools.javac.util.ByteBuffer this
        start local 1 // double x
         0: .line 134
            new java.io.ByteArrayOutputStream
            dup
            bipush 8
            invokespecial java.io.ByteArrayOutputStream.<init>:(I)V
            astore 3 /* buffer */
        start local 3 // java.io.ByteArrayOutputStream buffer
         1: .line 135
            new java.io.DataOutputStream
            dup
            aload 3 /* buffer */
            invokespecial java.io.DataOutputStream.<init>:(Ljava/io/OutputStream;)V
            astore 4 /* bufout */
        start local 4 // java.io.DataOutputStream bufout
         2: .line 137
            aload 4 /* bufout */
            dload 1 /* x */
            invokevirtual java.io.DataOutputStream.writeDouble:(D)V
         3: .line 138
            aload 0 /* this */
            aload 3 /* buffer */
            invokevirtual java.io.ByteArrayOutputStream.toByteArray:()[B
            iconst_0
            bipush 8
            invokevirtual com.sun.tools.javac.util.ByteBuffer.appendBytes:([BII)V
         4: .line 139
            goto 7
      StackMap locals: com.sun.tools.javac.util.ByteBuffer double java.io.ByteArrayOutputStream java.io.DataOutputStream
      StackMap stack: java.io.IOException
         5: pop
         6: .line 140
            new java.lang.AssertionError
            dup
            ldc "write"
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         7: .line 142
      StackMap locals:
      StackMap stack:
            return
        end local 4 // java.io.DataOutputStream bufout
        end local 3 // java.io.ByteArrayOutputStream buffer
        end local 1 // double x
        end local 0 // com.sun.tools.javac.util.ByteBuffer this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lcom/sun/tools/javac/util/ByteBuffer;
            0    8     1       x  D
            1    8     3  buffer  Ljava/io/ByteArrayOutputStream;
            2    8     4  bufout  Ljava/io/DataOutputStream;
      Exception table:
        from    to  target  type
           2     4       5  Class java.io.IOException
    MethodParameters:
      Name  Flags
      x     

  public void appendName(com.sun.tools.javac.util.Name);
    descriptor: (Lcom/sun/tools/javac/util/Name;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.sun.tools.javac.util.ByteBuffer this
        start local 1 // com.sun.tools.javac.util.Name name
         0: .line 147
            aload 0 /* this */
            aload 1 /* name */
            invokevirtual com.sun.tools.javac.util.Name.getByteArray:()[B
            aload 1 /* name */
            invokevirtual com.sun.tools.javac.util.Name.getByteOffset:()I
            aload 1 /* name */
            invokevirtual com.sun.tools.javac.util.Name.getByteLength:()I
            invokevirtual com.sun.tools.javac.util.ByteBuffer.appendBytes:([BII)V
         1: .line 148
            return
        end local 1 // com.sun.tools.javac.util.Name name
        end local 0 // com.sun.tools.javac.util.ByteBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/tools/javac/util/ByteBuffer;
            0    2     1  name  Lcom/sun/tools/javac/util/Name;
    MethodParameters:
      Name  Flags
      name  

  public void reset();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.sun.tools.javac.util.ByteBuffer this
         0: .line 153
            aload 0 /* this */
            iconst_0
            putfield com.sun.tools.javac.util.ByteBuffer.length:I
         1: .line 154
            return
        end local 0 // com.sun.tools.javac.util.ByteBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/tools/javac/util/ByteBuffer;

  public com.sun.tools.javac.util.Name toName(com.sun.tools.javac.util.Names);
    descriptor: (Lcom/sun/tools/javac/util/Names;)Lcom/sun/tools/javac/util/Name;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.sun.tools.javac.util.ByteBuffer this
        start local 1 // com.sun.tools.javac.util.Names names
         0: .line 159
            aload 1 /* names */
            aload 0 /* this */
            getfield com.sun.tools.javac.util.ByteBuffer.elems:[B
            iconst_0
            aload 0 /* this */
            getfield com.sun.tools.javac.util.ByteBuffer.length:I
            invokevirtual com.sun.tools.javac.util.Names.fromUtf:([BII)Lcom/sun/tools/javac/util/Name;
            areturn
        end local 1 // com.sun.tools.javac.util.Names names
        end local 0 // com.sun.tools.javac.util.ByteBuffer this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/sun/tools/javac/util/ByteBuffer;
            0    1     1  names  Lcom/sun/tools/javac/util/Names;
    MethodParameters:
       Name  Flags
      names  
}
SourceFile: "ByteBuffer.java"