class sun.jvm.hotspot.debugger.posix.AddressDataSource implements sun.jvm.hotspot.debugger.DataSource
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: sun.jvm.hotspot.debugger.posix.AddressDataSource
  super_class: java.lang.Object
{
  private sun.jvm.hotspot.debugger.Address addr;
    descriptor: Lsun/jvm/hotspot/debugger/Address;
    flags: (0x0002) ACC_PRIVATE

  private long offset;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

  void <init>(sun.jvm.hotspot.debugger.Address);
    descriptor: (Lsun/jvm/hotspot/debugger/Address;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // sun.jvm.hotspot.debugger.posix.AddressDataSource this
        start local 1 // sun.jvm.hotspot.debugger.Address addr
         0: .line 31
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 32
            aload 0 /* this */
            aload 1 /* addr */
            putfield sun.jvm.hotspot.debugger.posix.AddressDataSource.addr:Lsun/jvm/hotspot/debugger/Address;
         2: .line 33
            aload 0 /* this */
            lconst_0
            putfield sun.jvm.hotspot.debugger.posix.AddressDataSource.offset:J
         3: .line 34
            return
        end local 1 // sun.jvm.hotspot.debugger.Address addr
        end local 0 // sun.jvm.hotspot.debugger.posix.AddressDataSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lsun/jvm/hotspot/debugger/posix/AddressDataSource;
            0    4     1  addr  Lsun/jvm/hotspot/debugger/Address;
    MethodParameters:
      Name  Flags
      addr  

  public byte readByte();
    descriptor: ()B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=2, args_size=1
        start local 0 // sun.jvm.hotspot.debugger.posix.AddressDataSource this
         0: .line 38
            aload 0 /* this */
            getfield sun.jvm.hotspot.debugger.posix.AddressDataSource.addr:Lsun/jvm/hotspot/debugger/Address;
            aload 0 /* this */
            getfield sun.jvm.hotspot.debugger.posix.AddressDataSource.offset:J
            lconst_1
            iconst_0
            invokeinterface sun.jvm.hotspot.debugger.Address.getCIntegerAt:(JJZ)J
            l2i
            i2b
            istore 1 /* res */
        start local 1 // byte res
         1: .line 39
            aload 0 /* this */
            dup
            getfield sun.jvm.hotspot.debugger.posix.AddressDataSource.offset:J
            lconst_1
            ladd
            putfield sun.jvm.hotspot.debugger.posix.AddressDataSource.offset:J
         2: .line 40
            iload 1 /* res */
         3: ireturn
        end local 1 // byte res
         4: .line 41
      StackMap locals:
      StackMap stack: sun.jvm.hotspot.debugger.UnmappedAddressException
            astore 1 /* e */
        start local 1 // sun.jvm.hotspot.debugger.UnmappedAddressException e
         5: .line 42
            new java.io.IOException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Unmapped address at 0x"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
         6: .line 43
            aload 1 /* e */
            invokevirtual sun.jvm.hotspot.debugger.UnmappedAddressException.getAddress:()J
            invokestatic java.lang.Long.toHexString:(J)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         7: .line 42
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
         8: .line 43
            aload 1 /* e */
            invokevirtual java.io.IOException.initCause:(Ljava/lang/Throwable;)Ljava/lang/Throwable;
         9: .line 42
            checkcast java.io.IOException
            athrow
        end local 1 // sun.jvm.hotspot.debugger.UnmappedAddressException e
        10: .line 44
      StackMap locals:
      StackMap stack: sun.jvm.hotspot.debugger.DebuggerException
            astore 1 /* e */
        start local 1 // sun.jvm.hotspot.debugger.DebuggerException e
        11: .line 45
            new java.io.IOException
            dup
            invokespecial java.io.IOException.<init>:()V
            aload 1 /* e */
            invokevirtual java.io.IOException.initCause:(Ljava/lang/Throwable;)Ljava/lang/Throwable;
            checkcast java.io.IOException
            athrow
        end local 1 // sun.jvm.hotspot.debugger.DebuggerException e
        end local 0 // sun.jvm.hotspot.debugger.posix.AddressDataSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   12     0  this  Lsun/jvm/hotspot/debugger/posix/AddressDataSource;
            1    4     1   res  B
            5   10     1     e  Lsun/jvm/hotspot/debugger/UnmappedAddressException;
           11   12     1     e  Lsun/jvm/hotspot/debugger/DebuggerException;
      Exception table:
        from    to  target  type
           0     3       4  Class sun.jvm.hotspot.debugger.UnmappedAddressException
           0     3      10  Class sun.jvm.hotspot.debugger.DebuggerException
    Exceptions:
      throws java.io.IOException

  public short readShort();
    descriptor: ()S
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // sun.jvm.hotspot.debugger.posix.AddressDataSource this
         0: .line 51
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.debugger.posix.AddressDataSource.readByte:()B
            sipush 255
            iand
            istore 1 /* b1 */
        start local 1 // int b1
         1: .line 52
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.debugger.posix.AddressDataSource.readByte:()B
            sipush 255
            iand
            istore 2 /* b2 */
        start local 2 // int b2
         2: .line 53
            iload 1 /* b1 */
            bipush 8
            ishl
            iload 2 /* b2 */
            ior
            i2s
            ireturn
        end local 2 // int b2
        end local 1 // int b1
        end local 0 // sun.jvm.hotspot.debugger.posix.AddressDataSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/jvm/hotspot/debugger/posix/AddressDataSource;
            1    3     1    b1  I
            2    3     2    b2  I
    Exceptions:
      throws java.io.IOException

  public int readInt();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=1
        start local 0 // sun.jvm.hotspot.debugger.posix.AddressDataSource this
         0: .line 58
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.debugger.posix.AddressDataSource.readByte:()B
            sipush 255
            iand
            istore 1 /* b1 */
        start local 1 // int b1
         1: .line 59
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.debugger.posix.AddressDataSource.readByte:()B
            sipush 255
            iand
            istore 2 /* b2 */
        start local 2 // int b2
         2: .line 60
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.debugger.posix.AddressDataSource.readByte:()B
            sipush 255
            iand
            istore 3 /* b3 */
        start local 3 // int b3
         3: .line 61
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.debugger.posix.AddressDataSource.readByte:()B
            sipush 255
            iand
            istore 4 /* b4 */
        start local 4 // int b4
         4: .line 62
            iload 1 /* b1 */
            bipush 24
            ishl
            iload 2 /* b2 */
            bipush 16
            ishl
            ior
            iload 3 /* b3 */
            bipush 8
            ishl
            ior
            iload 4 /* b4 */
            ior
            ireturn
        end local 4 // int b4
        end local 3 // int b3
        end local 2 // int b2
        end local 1 // int b1
        end local 0 // sun.jvm.hotspot.debugger.posix.AddressDataSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lsun/jvm/hotspot/debugger/posix/AddressDataSource;
            1    5     1    b1  I
            2    5     2    b2  I
            3    5     3    b3  I
            4    5     4    b4  I
    Exceptions:
      throws java.io.IOException

  public long readLong();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=17, args_size=1
        start local 0 // sun.jvm.hotspot.debugger.posix.AddressDataSource this
         0: .line 67
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.debugger.posix.AddressDataSource.readByte:()B
            i2l
            ldc 255
            land
            lstore 1 /* b1 */
        start local 1 // long b1
         1: .line 68
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.debugger.posix.AddressDataSource.readByte:()B
            i2l
            ldc 255
            land
            lstore 3 /* b2 */
        start local 3 // long b2
         2: .line 69
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.debugger.posix.AddressDataSource.readByte:()B
            i2l
            ldc 255
            land
            lstore 5 /* b3 */
        start local 5 // long b3
         3: .line 70
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.debugger.posix.AddressDataSource.readByte:()B
            i2l
            ldc 255
            land
            lstore 7 /* b4 */
        start local 7 // long b4
         4: .line 71
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.debugger.posix.AddressDataSource.readByte:()B
            i2l
            ldc 255
            land
            lstore 9 /* b5 */
        start local 9 // long b5
         5: .line 72
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.debugger.posix.AddressDataSource.readByte:()B
            i2l
            ldc 255
            land
            lstore 11 /* b6 */
        start local 11 // long b6
         6: .line 73
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.debugger.posix.AddressDataSource.readByte:()B
            i2l
            ldc 255
            land
            lstore 13 /* b7 */
        start local 13 // long b7
         7: .line 74
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.debugger.posix.AddressDataSource.readByte:()B
            i2l
            ldc 255
            land
            lstore 15 /* b8 */
        start local 15 // long b8
         8: .line 75
            lload 1 /* b1 */
            bipush 24
            lshl
            lload 3 /* b2 */
            bipush 16
            lshl
            lor
            lload 5 /* b3 */
            bipush 8
            lshl
            lor
            lload 7 /* b4 */
            lor
            bipush 32
            lshl
         9: .line 76
            lload 9 /* b5 */
            bipush 24
            lshl
            lload 11 /* b6 */
            bipush 16
            lshl
            lor
            lload 13 /* b7 */
            bipush 8
            lshl
            lor
            lload 15 /* b8 */
            lor
        10: .line 75
            lor
            lreturn
        end local 15 // long b8
        end local 13 // long b7
        end local 11 // long b6
        end local 9 // long b5
        end local 7 // long b4
        end local 5 // long b3
        end local 3 // long b2
        end local 1 // long b1
        end local 0 // sun.jvm.hotspot.debugger.posix.AddressDataSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lsun/jvm/hotspot/debugger/posix/AddressDataSource;
            1   11     1    b1  J
            2   11     3    b2  J
            3   11     5    b3  J
            4   11     7    b4  J
            5   11     9    b5  J
            6   11    11    b6  J
            7   11    13    b7  J
            8   11    15    b8  J
    Exceptions:
      throws java.io.IOException

  public int read(byte[]);
    descriptor: ([B)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // sun.jvm.hotspot.debugger.posix.AddressDataSource this
        start local 1 // byte[] b
         0: .line 80
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         1: goto 4
         2: .line 81
      StackMap locals: int
      StackMap stack:
            aload 1 /* b */
            iload 2 /* i */
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.debugger.posix.AddressDataSource.readByte:()B
            bastore
         3: .line 80
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         4: iload 2 /* i */
            aload 1 /* b */
            arraylength
            if_icmplt 2
        end local 2 // int i
         5: .line 83
            aload 1 /* b */
            arraylength
            ireturn
        end local 1 // byte[] b
        end local 0 // sun.jvm.hotspot.debugger.posix.AddressDataSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lsun/jvm/hotspot/debugger/posix/AddressDataSource;
            0    6     1     b  [B
            1    5     2     i  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     

  public void seek(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // sun.jvm.hotspot.debugger.posix.AddressDataSource this
        start local 1 // long pos
         0: .line 87
            aload 0 /* this */
            lload 1 /* pos */
            putfield sun.jvm.hotspot.debugger.posix.AddressDataSource.offset:J
         1: .line 88
            return
        end local 1 // long pos
        end local 0 // sun.jvm.hotspot.debugger.posix.AddressDataSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/jvm/hotspot/debugger/posix/AddressDataSource;
            0    2     1   pos  J
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      pos   

  public long getFilePointer();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.jvm.hotspot.debugger.posix.AddressDataSource this
         0: .line 91
            aload 0 /* this */
            getfield sun.jvm.hotspot.debugger.posix.AddressDataSource.offset:J
            lreturn
        end local 0 // sun.jvm.hotspot.debugger.posix.AddressDataSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/jvm/hotspot/debugger/posix/AddressDataSource;
    Exceptions:
      throws java.io.IOException

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // sun.jvm.hotspot.debugger.posix.AddressDataSource this
         0: .line 95
            return
        end local 0 // sun.jvm.hotspot.debugger.posix.AddressDataSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/jvm/hotspot/debugger/posix/AddressDataSource;
    Exceptions:
      throws java.io.IOException
}
SourceFile: "AddressDataSource.java"