class sun.reflect.ByteVectorImpl implements sun.reflect.ByteVector
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: sun.reflect.ByteVectorImpl
  super_class: java.lang.Object
{
  private byte[] data;
    descriptor: [B
    flags: (0x0002) ACC_PRIVATE

  private int pos;
    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.ByteVectorImpl this
         0: .line 33
            aload 0 /* this */
            bipush 100
            invokespecial sun.reflect.ByteVectorImpl.<init>:(I)V
         1: .line 34
            return
        end local 0 // sun.reflect.ByteVectorImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/reflect/ByteVectorImpl;

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.reflect.ByteVectorImpl this
        start local 1 // int sz
         0: .line 36
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 37
            aload 0 /* this */
            iload 1 /* sz */
            newarray 8
            putfield sun.reflect.ByteVectorImpl.data:[B
         2: .line 38
            aload 0 /* this */
            iconst_m1
            putfield sun.reflect.ByteVectorImpl.pos:I
         3: .line 39
            return
        end local 1 // int sz
        end local 0 // sun.reflect.ByteVectorImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lsun/reflect/ByteVectorImpl;
            0    4     1    sz  I
    MethodParameters:
      Name  Flags
      sz    

  public int getLength();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.reflect.ByteVectorImpl this
         0: .line 42
            aload 0 /* this */
            getfield sun.reflect.ByteVectorImpl.pos:I
            iconst_1
            iadd
            ireturn
        end local 0 // sun.reflect.ByteVectorImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/reflect/ByteVectorImpl;

  public byte get(int);
    descriptor: (I)B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.reflect.ByteVectorImpl this
        start local 1 // int index
         0: .line 46
            iload 1 /* index */
            aload 0 /* this */
            getfield sun.reflect.ByteVectorImpl.data:[B
            arraylength
            if_icmplt 3
         1: .line 47
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual sun.reflect.ByteVectorImpl.resize:(I)V
         2: .line 48
            aload 0 /* this */
            iload 1 /* index */
            putfield sun.reflect.ByteVectorImpl.pos:I
         3: .line 50
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.reflect.ByteVectorImpl.data:[B
            iload 1 /* index */
            baload
            ireturn
        end local 1 // int index
        end local 0 // sun.reflect.ByteVectorImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lsun/reflect/ByteVectorImpl;
            0    4     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public void put(int, byte);
    descriptor: (IB)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // sun.reflect.ByteVectorImpl this
        start local 1 // int index
        start local 2 // byte value
         0: .line 54
            iload 1 /* index */
            aload 0 /* this */
            getfield sun.reflect.ByteVectorImpl.data:[B
            arraylength
            if_icmplt 3
         1: .line 55
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual sun.reflect.ByteVectorImpl.resize:(I)V
         2: .line 56
            aload 0 /* this */
            iload 1 /* index */
            putfield sun.reflect.ByteVectorImpl.pos:I
         3: .line 58
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.reflect.ByteVectorImpl.data:[B
            iload 1 /* index */
            iload 2 /* value */
            bastore
         4: .line 59
            return
        end local 2 // byte value
        end local 1 // int index
        end local 0 // sun.reflect.ByteVectorImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lsun/reflect/ByteVectorImpl;
            0    5     1  index  I
            0    5     2  value  B
    MethodParameters:
       Name  Flags
      index  
      value  

  public void add(byte);
    descriptor: (B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // sun.reflect.ByteVectorImpl this
        start local 1 // byte value
         0: .line 62
            aload 0 /* this */
            dup
            getfield sun.reflect.ByteVectorImpl.pos:I
            iconst_1
            iadd
            dup_x1
            putfield sun.reflect.ByteVectorImpl.pos:I
            aload 0 /* this */
            getfield sun.reflect.ByteVectorImpl.data:[B
            arraylength
            if_icmplt 2
         1: .line 63
            aload 0 /* this */
            aload 0 /* this */
            getfield sun.reflect.ByteVectorImpl.pos:I
            invokevirtual sun.reflect.ByteVectorImpl.resize:(I)V
         2: .line 65
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.reflect.ByteVectorImpl.data:[B
            aload 0 /* this */
            getfield sun.reflect.ByteVectorImpl.pos:I
            iload 1 /* value */
            bastore
         3: .line 66
            return
        end local 1 // byte value
        end local 0 // sun.reflect.ByteVectorImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lsun/reflect/ByteVectorImpl;
            0    4     1  value  B
    MethodParameters:
       Name  Flags
      value  

  public void trim();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=2, args_size=1
        start local 0 // sun.reflect.ByteVectorImpl this
         0: .line 69
            aload 0 /* this */
            getfield sun.reflect.ByteVectorImpl.pos:I
            aload 0 /* this */
            getfield sun.reflect.ByteVectorImpl.data:[B
            arraylength
            iconst_1
            isub
            if_icmpeq 4
         1: .line 70
            aload 0 /* this */
            getfield sun.reflect.ByteVectorImpl.pos:I
            iconst_1
            iadd
            newarray 8
            astore 1 /* newData */
        start local 1 // byte[] newData
         2: .line 71
            aload 0 /* this */
            getfield sun.reflect.ByteVectorImpl.data:[B
            iconst_0
            aload 1 /* newData */
            iconst_0
            aload 0 /* this */
            getfield sun.reflect.ByteVectorImpl.pos:I
            iconst_1
            iadd
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         3: .line 72
            aload 0 /* this */
            aload 1 /* newData */
            putfield sun.reflect.ByteVectorImpl.data:[B
        end local 1 // byte[] newData
         4: .line 74
      StackMap locals:
      StackMap stack:
            return
        end local 0 // sun.reflect.ByteVectorImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lsun/reflect/ByteVectorImpl;
            2    4     1  newData  [B

  public byte[] getData();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.reflect.ByteVectorImpl this
         0: .line 77
            aload 0 /* this */
            getfield sun.reflect.ByteVectorImpl.data:[B
            areturn
        end local 0 // sun.reflect.ByteVectorImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/reflect/ByteVectorImpl;

  private void resize(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // sun.reflect.ByteVectorImpl this
        start local 1 // int minSize
         0: .line 81
            iload 1 /* minSize */
            iconst_2
            aload 0 /* this */
            getfield sun.reflect.ByteVectorImpl.data:[B
            arraylength
            imul
            if_icmpgt 2
         1: .line 82
            iconst_2
            aload 0 /* this */
            getfield sun.reflect.ByteVectorImpl.data:[B
            arraylength
            imul
            istore 1 /* minSize */
         2: .line 84
      StackMap locals:
      StackMap stack:
            iload 1 /* minSize */
            newarray 8
            astore 2 /* newData */
        start local 2 // byte[] newData
         3: .line 85
            aload 0 /* this */
            getfield sun.reflect.ByteVectorImpl.data:[B
            iconst_0
            aload 2 /* newData */
            iconst_0
            aload 0 /* this */
            getfield sun.reflect.ByteVectorImpl.data:[B
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         4: .line 86
            aload 0 /* this */
            aload 2 /* newData */
            putfield sun.reflect.ByteVectorImpl.data:[B
         5: .line 87
            return
        end local 2 // byte[] newData
        end local 1 // int minSize
        end local 0 // sun.reflect.ByteVectorImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Lsun/reflect/ByteVectorImpl;
            0    6     1  minSize  I
            3    6     2  newData  [B
    MethodParameters:
         Name  Flags
      minSize  
}
SourceFile: "ByteVectorImpl.java"