public class sun.jvm.hotspot.code.CompressedReadStream extends sun.jvm.hotspot.code.CompressedStream
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: sun.jvm.hotspot.code.CompressedReadStream
  super_class: sun.jvm.hotspot.code.CompressedStream
{
  public void <init>(sun.jvm.hotspot.debugger.Address);
    descriptor: (Lsun/jvm/hotspot/debugger/Address;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // sun.jvm.hotspot.code.CompressedReadStream this
        start local 1 // sun.jvm.hotspot.debugger.Address buffer
         0: .line 32
            aload 0 /* this */
            aload 1 /* buffer */
            iconst_0
            invokespecial sun.jvm.hotspot.code.CompressedReadStream.<init>:(Lsun/jvm/hotspot/debugger/Address;I)V
         1: .line 33
            return
        end local 1 // sun.jvm.hotspot.debugger.Address buffer
        end local 0 // sun.jvm.hotspot.code.CompressedReadStream this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lsun/jvm/hotspot/code/CompressedReadStream;
            0    2     1  buffer  Lsun/jvm/hotspot/debugger/Address;
    MethodParameters:
        Name  Flags
      buffer  

  public void <init>(sun.jvm.hotspot.debugger.Address, int);
    descriptor: (Lsun/jvm/hotspot/debugger/Address;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // sun.jvm.hotspot.code.CompressedReadStream this
        start local 1 // sun.jvm.hotspot.debugger.Address buffer
        start local 2 // int position
         0: .line 36
            aload 0 /* this */
            aload 1 /* buffer */
            iload 2 /* position */
            invokespecial sun.jvm.hotspot.code.CompressedStream.<init>:(Lsun/jvm/hotspot/debugger/Address;I)V
         1: .line 37
            return
        end local 2 // int position
        end local 1 // sun.jvm.hotspot.debugger.Address buffer
        end local 0 // sun.jvm.hotspot.code.CompressedReadStream this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lsun/jvm/hotspot/code/CompressedReadStream;
            0    2     1    buffer  Lsun/jvm/hotspot/debugger/Address;
            0    2     2  position  I
    MethodParameters:
          Name  Flags
      buffer    
      position  

  public boolean readBoolean();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.jvm.hotspot.code.CompressedReadStream this
         0: .line 40
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.code.CompressedReadStream.read:()S
            ifeq 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // sun.jvm.hotspot.code.CompressedReadStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/jvm/hotspot/code/CompressedReadStream;

  public byte readByte();
    descriptor: ()B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.jvm.hotspot.code.CompressedReadStream this
         0: .line 44
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.code.CompressedReadStream.read:()S
            i2b
            ireturn
        end local 0 // sun.jvm.hotspot.code.CompressedReadStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/jvm/hotspot/code/CompressedReadStream;

  public char readChar();
    descriptor: ()C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.jvm.hotspot.code.CompressedReadStream this
         0: .line 48
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.code.CompressedReadStream.readInt:()I
            i2c
            ireturn
        end local 0 // sun.jvm.hotspot.code.CompressedReadStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/jvm/hotspot/code/CompressedReadStream;

  public short readShort();
    descriptor: ()S
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.jvm.hotspot.code.CompressedReadStream this
         0: .line 52
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.code.CompressedReadStream.readSignedInt:()I
            i2s
            ireturn
        end local 0 // sun.jvm.hotspot.code.CompressedReadStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/jvm/hotspot/code/CompressedReadStream;

  public int readSignedInt();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.jvm.hotspot.code.CompressedReadStream this
         0: .line 56
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.code.CompressedReadStream.readInt:()I
            invokevirtual sun.jvm.hotspot.code.CompressedReadStream.decodeSign:(I)I
            ireturn
        end local 0 // sun.jvm.hotspot.code.CompressedReadStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/jvm/hotspot/code/CompressedReadStream;

  public int readInt();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // sun.jvm.hotspot.code.CompressedReadStream this
         0: .line 60
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.code.CompressedReadStream.read:()S
            istore 1 /* b0 */
        start local 1 // int b0
         1: .line 61
            iload 1 /* b0 */
            sipush 192
            if_icmpge 3
         2: .line 62
            iload 1 /* b0 */
            ireturn
         3: .line 64
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* b0 */
            invokevirtual sun.jvm.hotspot.code.CompressedReadStream.readIntMb:(I)I
            ireturn
        end local 1 // int b0
        end local 0 // sun.jvm.hotspot.code.CompressedReadStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lsun/jvm/hotspot/code/CompressedReadStream;
            1    4     1    b0  I

  public float readFloat();
    descriptor: ()F
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.jvm.hotspot.code.CompressedReadStream this
         0: .line 70
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.code.CompressedReadStream.readInt:()I
            invokevirtual sun.jvm.hotspot.code.CompressedReadStream.reverseInt:(I)I
            invokestatic java.lang.Float.intBitsToFloat:(I)F
            freturn
        end local 0 // sun.jvm.hotspot.code.CompressedReadStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/jvm/hotspot/code/CompressedReadStream;

  public double readDouble();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=1
        start local 0 // sun.jvm.hotspot.code.CompressedReadStream this
         0: .line 74
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.code.CompressedReadStream.readInt:()I
            istore 1 /* rh */
        start local 1 // int rh
         1: .line 75
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.code.CompressedReadStream.readInt:()I
            istore 2 /* rl */
        start local 2 // int rl
         2: .line 76
            aload 0 /* this */
            iload 1 /* rh */
            invokevirtual sun.jvm.hotspot.code.CompressedReadStream.reverseInt:(I)I
            istore 3 /* h */
        start local 3 // int h
         3: .line 77
            aload 0 /* this */
            iload 2 /* rl */
            invokevirtual sun.jvm.hotspot.code.CompressedReadStream.reverseInt:(I)I
            istore 4 /* l */
        start local 4 // int l
         4: .line 78
            iload 3 /* h */
            bipush 32
            ishl
            i2l
            iload 4 /* l */
            i2l
            ldc 4294967295
            land
            lor
            invokestatic java.lang.Double.longBitsToDouble:(J)D
            dreturn
        end local 4 // int l
        end local 3 // int h
        end local 2 // int rl
        end local 1 // int rh
        end local 0 // sun.jvm.hotspot.code.CompressedReadStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lsun/jvm/hotspot/code/CompressedReadStream;
            1    5     1    rh  I
            2    5     2    rl  I
            3    5     3     h  I
            4    5     4     l  I

  public long readLong();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=1
        start local 0 // sun.jvm.hotspot.code.CompressedReadStream this
         0: .line 82
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.code.CompressedReadStream.readSignedInt:()I
            i2l
            ldc 4294967295
            land
            lstore 1 /* low */
        start local 1 // long low
         1: .line 83
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.code.CompressedReadStream.readSignedInt:()I
            i2l
            lstore 3 /* high */
        start local 3 // long high
         2: .line 84
            lload 3 /* high */
            bipush 32
            lshl
            lload 1 /* low */
            lor
            lreturn
        end local 3 // long high
        end local 1 // long low
        end local 0 // sun.jvm.hotspot.code.CompressedReadStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/jvm/hotspot/code/CompressedReadStream;
            1    3     1   low  J
            2    3     3  high  J

  private int readIntMb(int);
    descriptor: (I)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=7, args_size=2
        start local 0 // sun.jvm.hotspot.code.CompressedReadStream this
        start local 1 // int b0
         0: .line 110
            aload 0 /* this */
            getfield sun.jvm.hotspot.code.CompressedReadStream.position:I
            iconst_1
            isub
            istore 2 /* pos */
        start local 2 // int pos
         1: .line 111
            iload 1 /* b0 */
            istore 3 /* sum */
        start local 3 // int sum
         2: .line 113
            bipush 6
            istore 4 /* lg_H_i */
        start local 4 // int lg_H_i
         3: .line 114
            iconst_0
            istore 5 /* i */
        start local 5 // int i
         4: .line 115
      StackMap locals: sun.jvm.hotspot.code.CompressedReadStream int int int int int
      StackMap stack:
            aload 0 /* this */
            iload 2 /* pos */
            iinc 5 /* i */ 1
            iload 5 /* i */
            iadd
            invokevirtual sun.jvm.hotspot.code.CompressedReadStream.read:(I)S
            istore 6 /* b_i */
        start local 6 // int b_i
         5: .line 116
            iload 3 /* sum */
            iload 6 /* b_i */
            iload 4 /* lg_H_i */
            ishl
            iadd
            istore 3 /* sum */
         6: .line 117
            iload 6 /* b_i */
            sipush 192
            if_icmplt 7
            iload 5 /* i */
            iconst_4
            if_icmpne 9
         7: .line 118
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 2 /* pos */
            iload 5 /* i */
            iadd
            iconst_1
            iadd
            invokevirtual sun.jvm.hotspot.code.CompressedReadStream.setPosition:(I)V
         8: .line 119
            iload 3 /* sum */
            ireturn
         9: .line 121
      StackMap locals:
      StackMap stack:
            iinc 4 /* lg_H_i */ 6
        end local 6 // int b_i
        10: .line 114
            goto 4
        end local 5 // int i
        end local 4 // int lg_H_i
        end local 3 // int sum
        end local 2 // int pos
        end local 1 // int b0
        end local 0 // sun.jvm.hotspot.code.CompressedReadStream this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   11     0    this  Lsun/jvm/hotspot/code/CompressedReadStream;
            0   11     1      b0  I
            1   11     2     pos  I
            2   11     3     sum  I
            3   11     4  lg_H_i  I
            4   11     5       i  I
            5   10     6     b_i  I
    MethodParameters:
      Name  Flags
      b0    

  private short read(int);
    descriptor: (I)S
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=2, args_size=2
        start local 0 // sun.jvm.hotspot.code.CompressedReadStream this
        start local 1 // int index
         0: .line 126
            aload 0 /* this */
            getfield sun.jvm.hotspot.code.CompressedReadStream.buffer:Lsun/jvm/hotspot/debugger/Address;
            iload 1 /* index */
            i2l
            lconst_1
            iconst_1
            invokeinterface sun.jvm.hotspot.debugger.Address.getCIntegerAt:(JJZ)J
            l2i
            i2s
            ireturn
        end local 1 // int index
        end local 0 // sun.jvm.hotspot.code.CompressedReadStream this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lsun/jvm/hotspot/code/CompressedReadStream;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  private short read();
    descriptor: ()S
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=2, args_size=1
        start local 0 // sun.jvm.hotspot.code.CompressedReadStream this
         0: .line 131
            aload 0 /* this */
            getfield sun.jvm.hotspot.code.CompressedReadStream.buffer:Lsun/jvm/hotspot/debugger/Address;
            aload 0 /* this */
            getfield sun.jvm.hotspot.code.CompressedReadStream.position:I
            i2l
            lconst_1
            iconst_1
            invokeinterface sun.jvm.hotspot.debugger.Address.getCIntegerAt:(JJZ)J
            l2i
            i2s
            istore 1 /* retval */
        start local 1 // short retval
         1: .line 132
            aload 0 /* this */
            dup
            getfield sun.jvm.hotspot.code.CompressedReadStream.position:I
            iconst_1
            iadd
            putfield sun.jvm.hotspot.code.CompressedReadStream.position:I
         2: .line 133
            iload 1 /* retval */
            ireturn
        end local 1 // short retval
        end local 0 // sun.jvm.hotspot.code.CompressedReadStream this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lsun/jvm/hotspot/code/CompressedReadStream;
            1    3     1  retval  S
}
SourceFile: "CompressedReadStream.java"