class at.yawk.numaec.BufferSlice implements at.yawk.numaec.LargeByteBuffer
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: at.yawk.numaec.BufferSlice
  super_class: java.lang.Object
{
  private final at.yawk.numaec.LargeByteBuffer delegate;
    descriptor: Lat/yawk/numaec/LargeByteBuffer;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final long start;
    descriptor: J
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final long size;
    descriptor: J
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  void <init>(at.yawk.numaec.LargeByteBuffer, long, long);
    descriptor: (Lat/yawk/numaec/LargeByteBuffer;JJ)V
    flags: (0x0000) 
    Code:
      stack=4, locals=6, args_size=4
        start local 0 // at.yawk.numaec.BufferSlice this
        start local 1 // at.yawk.numaec.LargeByteBuffer delegate
        start local 2 // long start
        start local 4 // long size
         0: .line 10
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 11
            aload 0 /* this */
            aload 1 /* delegate */
            putfield at.yawk.numaec.BufferSlice.delegate:Lat/yawk/numaec/LargeByteBuffer;
         2: .line 12
            aload 0 /* this */
            lload 2 /* start */
            putfield at.yawk.numaec.BufferSlice.start:J
         3: .line 13
            aload 0 /* this */
            lload 4 /* size */
            putfield at.yawk.numaec.BufferSlice.size:J
         4: .line 16
            lload 4 /* size */
            lconst_0
            lcmp
            iflt 5
            lload 2 /* start */
            lload 4 /* size */
            ladd
            lload 2 /* start */
            lcmp
            ifge 6
      StackMap locals: at.yawk.numaec.BufferSlice at.yawk.numaec.LargeByteBuffer long long
      StackMap stack:
         5: new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
         6: .line 17
      StackMap locals:
      StackMap stack:
            return
        end local 4 // long size
        end local 2 // long start
        end local 1 // at.yawk.numaec.LargeByteBuffer delegate
        end local 0 // at.yawk.numaec.BufferSlice this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lat/yawk/numaec/BufferSlice;
            0    7     1  delegate  Lat/yawk/numaec/LargeByteBuffer;
            0    7     2     start  J
            0    7     4      size  J
    MethodParameters:
          Name  Flags
      delegate  
      start     
      size      

  public byte getByte(long);
    descriptor: (J)B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=2
        start local 0 // at.yawk.numaec.BufferSlice this
        start local 1 // long position
         0: .line 21
            lload 1 /* position */
            lconst_0
            lcmp
            iflt 1
            lload 1 /* position */
            aload 0 /* this */
            getfield at.yawk.numaec.BufferSlice.size:J
            lconst_1
            lsub
            lcmp
            ifle 2
      StackMap locals:
      StackMap stack:
         1: new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         2: .line 22
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield at.yawk.numaec.BufferSlice.delegate:Lat/yawk/numaec/LargeByteBuffer;
            lload 1 /* position */
            aload 0 /* this */
            getfield at.yawk.numaec.BufferSlice.start:J
            ladd
            invokeinterface at.yawk.numaec.LargeByteBuffer.getByte:(J)B
            ireturn
        end local 1 // long position
        end local 0 // at.yawk.numaec.BufferSlice this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lat/yawk/numaec/BufferSlice;
            0    3     1  position  J
    Exceptions:
      throws java.lang.IndexOutOfBoundsException
    MethodParameters:
          Name  Flags
      position  

  public short getShort(long);
    descriptor: (J)S
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=2
        start local 0 // at.yawk.numaec.BufferSlice this
        start local 1 // long position
         0: .line 27
            lload 1 /* position */
            lconst_0
            lcmp
            iflt 1
            lload 1 /* position */
            aload 0 /* this */
            getfield at.yawk.numaec.BufferSlice.size:J
            ldc 2
            lsub
            lcmp
            ifle 2
      StackMap locals:
      StackMap stack:
         1: new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         2: .line 28
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield at.yawk.numaec.BufferSlice.delegate:Lat/yawk/numaec/LargeByteBuffer;
            lload 1 /* position */
            aload 0 /* this */
            getfield at.yawk.numaec.BufferSlice.start:J
            ladd
            invokeinterface at.yawk.numaec.LargeByteBuffer.getShort:(J)S
            ireturn
        end local 1 // long position
        end local 0 // at.yawk.numaec.BufferSlice this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lat/yawk/numaec/BufferSlice;
            0    3     1  position  J
    Exceptions:
      throws java.lang.IndexOutOfBoundsException
    MethodParameters:
          Name  Flags
      position  

  public int getInt(long);
    descriptor: (J)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=2
        start local 0 // at.yawk.numaec.BufferSlice this
        start local 1 // long position
         0: .line 33
            lload 1 /* position */
            lconst_0
            lcmp
            iflt 1
            lload 1 /* position */
            aload 0 /* this */
            getfield at.yawk.numaec.BufferSlice.size:J
            ldc 4
            lsub
            lcmp
            ifle 2
      StackMap locals:
      StackMap stack:
         1: new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         2: .line 34
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield at.yawk.numaec.BufferSlice.delegate:Lat/yawk/numaec/LargeByteBuffer;
            lload 1 /* position */
            aload 0 /* this */
            getfield at.yawk.numaec.BufferSlice.start:J
            ladd
            invokeinterface at.yawk.numaec.LargeByteBuffer.getInt:(J)I
            ireturn
        end local 1 // long position
        end local 0 // at.yawk.numaec.BufferSlice this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lat/yawk/numaec/BufferSlice;
            0    3     1  position  J
    Exceptions:
      throws java.lang.IndexOutOfBoundsException
    MethodParameters:
          Name  Flags
      position  

  public long getLong(long);
    descriptor: (J)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=2
        start local 0 // at.yawk.numaec.BufferSlice this
        start local 1 // long position
         0: .line 39
            lload 1 /* position */
            lconst_0
            lcmp
            iflt 1
            lload 1 /* position */
            aload 0 /* this */
            getfield at.yawk.numaec.BufferSlice.size:J
            ldc 8
            lsub
            lcmp
            ifle 2
      StackMap locals:
      StackMap stack:
         1: new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         2: .line 40
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield at.yawk.numaec.BufferSlice.delegate:Lat/yawk/numaec/LargeByteBuffer;
            lload 1 /* position */
            aload 0 /* this */
            getfield at.yawk.numaec.BufferSlice.start:J
            ladd
            invokeinterface at.yawk.numaec.LargeByteBuffer.getLong:(J)J
            lreturn
        end local 1 // long position
        end local 0 // at.yawk.numaec.BufferSlice this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lat/yawk/numaec/BufferSlice;
            0    3     1  position  J
    Exceptions:
      throws java.lang.IndexOutOfBoundsException
    MethodParameters:
          Name  Flags
      position  

  public void setByte(long, byte);
    descriptor: (JB)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=3
        start local 0 // at.yawk.numaec.BufferSlice this
        start local 1 // long position
        start local 3 // byte value
         0: .line 45
            lload 1 /* position */
            lconst_0
            lcmp
            iflt 1
            lload 1 /* position */
            aload 0 /* this */
            getfield at.yawk.numaec.BufferSlice.size:J
            lconst_1
            lsub
            lcmp
            ifle 2
      StackMap locals:
      StackMap stack:
         1: new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         2: .line 46
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield at.yawk.numaec.BufferSlice.delegate:Lat/yawk/numaec/LargeByteBuffer;
            lload 1 /* position */
            aload 0 /* this */
            getfield at.yawk.numaec.BufferSlice.start:J
            ladd
            iload 3 /* value */
            invokeinterface at.yawk.numaec.LargeByteBuffer.setByte:(JB)V
         3: .line 47
            return
        end local 3 // byte value
        end local 1 // long position
        end local 0 // at.yawk.numaec.BufferSlice this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lat/yawk/numaec/BufferSlice;
            0    4     1  position  J
            0    4     3     value  B
    Exceptions:
      throws java.lang.IndexOutOfBoundsException, java.nio.ReadOnlyBufferException
    MethodParameters:
          Name  Flags
      position  
      value     

  public void setShort(long, short);
    descriptor: (JS)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=3
        start local 0 // at.yawk.numaec.BufferSlice this
        start local 1 // long position
        start local 3 // short value
         0: .line 51
            lload 1 /* position */
            lconst_0
            lcmp
            iflt 1
            lload 1 /* position */
            aload 0 /* this */
            getfield at.yawk.numaec.BufferSlice.size:J
            ldc 2
            lsub
            lcmp
            ifle 2
      StackMap locals:
      StackMap stack:
         1: new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         2: .line 52
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield at.yawk.numaec.BufferSlice.delegate:Lat/yawk/numaec/LargeByteBuffer;
            lload 1 /* position */
            aload 0 /* this */
            getfield at.yawk.numaec.BufferSlice.start:J
            ladd
            iload 3 /* value */
            invokeinterface at.yawk.numaec.LargeByteBuffer.setShort:(JS)V
         3: .line 53
            return
        end local 3 // short value
        end local 1 // long position
        end local 0 // at.yawk.numaec.BufferSlice this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lat/yawk/numaec/BufferSlice;
            0    4     1  position  J
            0    4     3     value  S
    Exceptions:
      throws java.lang.IndexOutOfBoundsException, java.nio.ReadOnlyBufferException
    MethodParameters:
          Name  Flags
      position  
      value     

  public void setInt(long, int);
    descriptor: (JI)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=3
        start local 0 // at.yawk.numaec.BufferSlice this
        start local 1 // long position
        start local 3 // int value
         0: .line 57
            lload 1 /* position */
            lconst_0
            lcmp
            iflt 1
            lload 1 /* position */
            aload 0 /* this */
            getfield at.yawk.numaec.BufferSlice.size:J
            ldc 4
            lsub
            lcmp
            ifle 2
      StackMap locals:
      StackMap stack:
         1: new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         2: .line 58
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield at.yawk.numaec.BufferSlice.delegate:Lat/yawk/numaec/LargeByteBuffer;
            lload 1 /* position */
            aload 0 /* this */
            getfield at.yawk.numaec.BufferSlice.start:J
            ladd
            iload 3 /* value */
            invokeinterface at.yawk.numaec.LargeByteBuffer.setInt:(JI)V
         3: .line 59
            return
        end local 3 // int value
        end local 1 // long position
        end local 0 // at.yawk.numaec.BufferSlice this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lat/yawk/numaec/BufferSlice;
            0    4     1  position  J
            0    4     3     value  I
    Exceptions:
      throws java.lang.IndexOutOfBoundsException, java.nio.ReadOnlyBufferException
    MethodParameters:
          Name  Flags
      position  
      value     

  public void setLong(long, long);
    descriptor: (JJ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=3
        start local 0 // at.yawk.numaec.BufferSlice this
        start local 1 // long position
        start local 3 // long value
         0: .line 63
            lload 1 /* position */
            lconst_0
            lcmp
            iflt 1
            lload 1 /* position */
            aload 0 /* this */
            getfield at.yawk.numaec.BufferSlice.size:J
            ldc 8
            lsub
            lcmp
            ifle 2
      StackMap locals:
      StackMap stack:
         1: new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         2: .line 64
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield at.yawk.numaec.BufferSlice.delegate:Lat/yawk/numaec/LargeByteBuffer;
            lload 1 /* position */
            aload 0 /* this */
            getfield at.yawk.numaec.BufferSlice.start:J
            ladd
            lload 3 /* value */
            invokeinterface at.yawk.numaec.LargeByteBuffer.setLong:(JJ)V
         3: .line 65
            return
        end local 3 // long value
        end local 1 // long position
        end local 0 // at.yawk.numaec.BufferSlice this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lat/yawk/numaec/BufferSlice;
            0    4     1  position  J
            0    4     3     value  J
    Exceptions:
      throws java.lang.IndexOutOfBoundsException, java.nio.ReadOnlyBufferException
    MethodParameters:
          Name  Flags
      position  
      value     

  public long size();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // at.yawk.numaec.BufferSlice this
         0: .line 69
            aload 0 /* this */
            getfield at.yawk.numaec.BufferSlice.size:J
            lreturn
        end local 0 // at.yawk.numaec.BufferSlice this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lat/yawk/numaec/BufferSlice;

  public void copyFrom(at.yawk.numaec.LargeByteBuffer, long, long, long);
    descriptor: (Lat/yawk/numaec/LargeByteBuffer;JJJ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=8, locals=9, args_size=5
        start local 0 // at.yawk.numaec.BufferSlice this
        start local 1 // at.yawk.numaec.LargeByteBuffer from
        start local 2 // long fromIndex
        start local 4 // long toIndex
        start local 6 // long length
         0: .line 75
            lload 4 /* toIndex */
            lconst_0
            lcmp
            iflt 1
            lload 4 /* toIndex */
            lload 6 /* length */
            ladd
            aload 0 /* this */
            getfield at.yawk.numaec.BufferSlice.size:J
            lcmp
            ifle 2
      StackMap locals:
      StackMap stack:
         1: new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         2: .line 76
      StackMap locals:
      StackMap stack:
            lload 6 /* length */
            lconst_0
            lcmp
            ifne 3
            return
         3: .line 78
      StackMap locals:
      StackMap stack:
            aload 1 /* from */
            instanceof at.yawk.numaec.BufferSlice
            ifeq 9
         4: .line 79
            aload 1 /* from */
            checkcast at.yawk.numaec.BufferSlice
            astore 8 /* other */
        start local 8 // at.yawk.numaec.BufferSlice other
         5: .line 80
            lload 2 /* fromIndex */
            lconst_0
            lcmp
            iflt 6
            lload 2 /* fromIndex */
            lload 6 /* length */
            ladd
            aload 8 /* other */
            getfield at.yawk.numaec.BufferSlice.size:J
            lcmp
            ifle 7
      StackMap locals: at.yawk.numaec.BufferSlice
      StackMap stack:
         6: new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         7: .line 81
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield at.yawk.numaec.BufferSlice.delegate:Lat/yawk/numaec/LargeByteBuffer;
            aload 8 /* other */
            getfield at.yawk.numaec.BufferSlice.delegate:Lat/yawk/numaec/LargeByteBuffer;
            lload 2 /* fromIndex */
            aload 8 /* other */
            getfield at.yawk.numaec.BufferSlice.start:J
            ladd
            lload 4 /* toIndex */
            aload 0 /* this */
            getfield at.yawk.numaec.BufferSlice.start:J
            ladd
            lload 6 /* length */
            invokeinterface at.yawk.numaec.LargeByteBuffer.copyFrom:(Lat/yawk/numaec/LargeByteBuffer;JJJ)V
        end local 8 // at.yawk.numaec.BufferSlice other
         8: .line 82
            goto 10
         9: .line 83
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield at.yawk.numaec.BufferSlice.delegate:Lat/yawk/numaec/LargeByteBuffer;
            aload 1 /* from */
            lload 2 /* fromIndex */
            lload 4 /* toIndex */
            aload 0 /* this */
            getfield at.yawk.numaec.BufferSlice.start:J
            ladd
            lload 6 /* length */
            invokeinterface at.yawk.numaec.LargeByteBuffer.copyFrom:(Lat/yawk/numaec/LargeByteBuffer;JJJ)V
        10: .line 85
      StackMap locals:
      StackMap stack:
            return
        end local 6 // long length
        end local 4 // long toIndex
        end local 2 // long fromIndex
        end local 1 // at.yawk.numaec.LargeByteBuffer from
        end local 0 // at.yawk.numaec.BufferSlice this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   11     0       this  Lat/yawk/numaec/BufferSlice;
            0   11     1       from  Lat/yawk/numaec/LargeByteBuffer;
            0   11     2  fromIndex  J
            0   11     4    toIndex  J
            0   11     6     length  J
            5    8     8      other  Lat/yawk/numaec/BufferSlice;
    Exceptions:
      throws java.nio.ReadOnlyBufferException, java.lang.UnsupportedOperationException, java.lang.IndexOutOfBoundsException
    MethodParameters:
           Name  Flags
      from       
      fromIndex  
      toIndex    
      length     
}
SourceFile: "BufferSlice.java"