public class at.yawk.numaec.ByteBufferBackedLargeByteBuffer extends at.yawk.numaec.GenericJoinedBuffer<java.nio.ByteBuffer> implements at.yawk.numaec.LargeByteBuffer
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: at.yawk.numaec.ByteBufferBackedLargeByteBuffer
  super_class: at.yawk.numaec.GenericJoinedBuffer
{
  private final java.nio.ByteBuffer[] buffers;
    descriptor: [Ljava/nio/ByteBuffer;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int componentSize;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(java.nio.ByteBuffer[], int);
    descriptor: ([Ljava/nio/ByteBuffer;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // at.yawk.numaec.ByteBufferBackedLargeByteBuffer this
        start local 1 // java.nio.ByteBuffer[] buffers
        start local 2 // int componentSize
         0: .line 11
            aload 0 /* this */
            invokespecial at.yawk.numaec.GenericJoinedBuffer.<init>:()V
         1: .line 12
            iload 2 /* componentSize */
            invokestatic java.lang.Integer.bitCount:(I)I
            iconst_1
            if_icmpeq 3
         2: .line 13
            new java.lang.IllegalArgumentException
            dup
            ldc "componentSize must be power of 2"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 15
      StackMap locals: at.yawk.numaec.ByteBufferBackedLargeByteBuffer java.nio.ByteBuffer[] int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* buffers */
            putfield at.yawk.numaec.ByteBufferBackedLargeByteBuffer.buffers:[Ljava/nio/ByteBuffer;
         4: .line 16
            aload 0 /* this */
            iload 2 /* componentSize */
            putfield at.yawk.numaec.ByteBufferBackedLargeByteBuffer.componentSize:I
         5: .line 17
            return
        end local 2 // int componentSize
        end local 1 // java.nio.ByteBuffer[] buffers
        end local 0 // at.yawk.numaec.ByteBufferBackedLargeByteBuffer this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    6     0           this  Lat/yawk/numaec/ByteBufferBackedLargeByteBuffer;
            0    6     1        buffers  [Ljava/nio/ByteBuffer;
            0    6     2  componentSize  I
    MethodParameters:
               Name  Flags
      buffers        
      componentSize  

  long offset(long);
    descriptor: (J)J
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // at.yawk.numaec.ByteBufferBackedLargeByteBuffer this
        start local 1 // long position
         0: .line 21
            aload 0 /* this */
            lload 1 /* position */
            invokevirtual at.yawk.numaec.ByteBufferBackedLargeByteBuffer.offsetInt:(J)I
            i2l
            lreturn
        end local 1 // long position
        end local 0 // at.yawk.numaec.ByteBufferBackedLargeByteBuffer this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lat/yawk/numaec/ByteBufferBackedLargeByteBuffer;
            0    1     1  position  J
    MethodParameters:
          Name  Flags
      position  

  private int offsetInt(long);
    descriptor: (J)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // at.yawk.numaec.ByteBufferBackedLargeByteBuffer this
        start local 1 // long position
         0: .line 25
            lload 1 /* position */
            aload 0 /* this */
            getfield at.yawk.numaec.ByteBufferBackedLargeByteBuffer.componentSize:I
            i2l
            lrem
            l2i
            ireturn
        end local 1 // long position
        end local 0 // at.yawk.numaec.ByteBufferBackedLargeByteBuffer this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lat/yawk/numaec/ByteBufferBackedLargeByteBuffer;
            0    1     1  position  J
    MethodParameters:
          Name  Flags
      position  

  java.nio.ByteBuffer component(long);
    descriptor: (J)Ljava/nio/ByteBuffer;
    flags: (0x0000) 
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // at.yawk.numaec.ByteBufferBackedLargeByteBuffer this
        start local 1 // long position
         0: .line 30
            lload 1 /* position */
            aload 0 /* this */
            getfield at.yawk.numaec.ByteBufferBackedLargeByteBuffer.componentSize:I
            i2l
            ldiv
            lstore 3 /* bufferI */
        start local 3 // long bufferI
         1: .line 31
            aload 0 /* this */
            getfield at.yawk.numaec.ByteBufferBackedLargeByteBuffer.buffers:[Ljava/nio/ByteBuffer;
            lload 3 /* bufferI */
            l2i
            aaload
            areturn
        end local 3 // long bufferI
        end local 1 // long position
        end local 0 // at.yawk.numaec.ByteBufferBackedLargeByteBuffer this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lat/yawk/numaec/ByteBufferBackedLargeByteBuffer;
            0    2     1  position  J
            1    2     3   bufferI  J
    Exceptions:
      throws java.lang.IndexOutOfBoundsException
    MethodParameters:
          Name  Flags
      position  

  public byte getByte(long);
    descriptor: (J)B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // at.yawk.numaec.ByteBufferBackedLargeByteBuffer this
        start local 1 // long position
         0: .line 36
            aload 0 /* this */
            lload 1 /* position */
            invokevirtual at.yawk.numaec.ByteBufferBackedLargeByteBuffer.component:(J)Ljava/nio/ByteBuffer;
            aload 0 /* this */
            lload 1 /* position */
            invokevirtual at.yawk.numaec.ByteBufferBackedLargeByteBuffer.offsetInt:(J)I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            ireturn
        end local 1 // long position
        end local 0 // at.yawk.numaec.ByteBufferBackedLargeByteBuffer this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lat/yawk/numaec/ByteBufferBackedLargeByteBuffer;
            0    1     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=4, locals=3, args_size=2
        start local 0 // at.yawk.numaec.ByteBufferBackedLargeByteBuffer this
        start local 1 // long position
         0: .line 41
            aload 0 /* this */
            lload 1 /* position */
            invokevirtual at.yawk.numaec.ByteBufferBackedLargeByteBuffer.component:(J)Ljava/nio/ByteBuffer;
            aload 0 /* this */
            lload 1 /* position */
            invokevirtual at.yawk.numaec.ByteBufferBackedLargeByteBuffer.offsetInt:(J)I
            invokevirtual java.nio.ByteBuffer.getShort:(I)S
            ireturn
        end local 1 // long position
        end local 0 // at.yawk.numaec.ByteBufferBackedLargeByteBuffer this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lat/yawk/numaec/ByteBufferBackedLargeByteBuffer;
            0    1     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=4, locals=3, args_size=2
        start local 0 // at.yawk.numaec.ByteBufferBackedLargeByteBuffer this
        start local 1 // long position
         0: .line 46
            aload 0 /* this */
            lload 1 /* position */
            invokevirtual at.yawk.numaec.ByteBufferBackedLargeByteBuffer.component:(J)Ljava/nio/ByteBuffer;
            aload 0 /* this */
            lload 1 /* position */
            invokevirtual at.yawk.numaec.ByteBufferBackedLargeByteBuffer.offsetInt:(J)I
            invokevirtual java.nio.ByteBuffer.getInt:(I)I
            ireturn
        end local 1 // long position
        end local 0 // at.yawk.numaec.ByteBufferBackedLargeByteBuffer this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lat/yawk/numaec/ByteBufferBackedLargeByteBuffer;
            0    1     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=4, locals=3, args_size=2
        start local 0 // at.yawk.numaec.ByteBufferBackedLargeByteBuffer this
        start local 1 // long position
         0: .line 51
            aload 0 /* this */
            lload 1 /* position */
            invokevirtual at.yawk.numaec.ByteBufferBackedLargeByteBuffer.component:(J)Ljava/nio/ByteBuffer;
            aload 0 /* this */
            lload 1 /* position */
            invokevirtual at.yawk.numaec.ByteBufferBackedLargeByteBuffer.offsetInt:(J)I
            invokevirtual java.nio.ByteBuffer.getLong:(I)J
            lreturn
        end local 1 // long position
        end local 0 // at.yawk.numaec.ByteBufferBackedLargeByteBuffer this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lat/yawk/numaec/ByteBufferBackedLargeByteBuffer;
            0    1     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=4, locals=4, args_size=3
        start local 0 // at.yawk.numaec.ByteBufferBackedLargeByteBuffer this
        start local 1 // long position
        start local 3 // byte value
         0: .line 56
            aload 0 /* this */
            lload 1 /* position */
            invokevirtual at.yawk.numaec.ByteBufferBackedLargeByteBuffer.component:(J)Ljava/nio/ByteBuffer;
            aload 0 /* this */
            lload 1 /* position */
            invokevirtual at.yawk.numaec.ByteBufferBackedLargeByteBuffer.offsetInt:(J)I
            iload 3 /* value */
            invokevirtual java.nio.ByteBuffer.put:(IB)Ljava/nio/ByteBuffer;
            pop
         1: .line 57
            return
        end local 3 // byte value
        end local 1 // long position
        end local 0 // at.yawk.numaec.ByteBufferBackedLargeByteBuffer this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lat/yawk/numaec/ByteBufferBackedLargeByteBuffer;
            0    2     1  position  J
            0    2     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=4, locals=4, args_size=3
        start local 0 // at.yawk.numaec.ByteBufferBackedLargeByteBuffer this
        start local 1 // long position
        start local 3 // short value
         0: .line 61
            aload 0 /* this */
            lload 1 /* position */
            invokevirtual at.yawk.numaec.ByteBufferBackedLargeByteBuffer.component:(J)Ljava/nio/ByteBuffer;
            aload 0 /* this */
            lload 1 /* position */
            invokevirtual at.yawk.numaec.ByteBufferBackedLargeByteBuffer.offsetInt:(J)I
            iload 3 /* value */
            invokevirtual java.nio.ByteBuffer.putShort:(IS)Ljava/nio/ByteBuffer;
            pop
         1: .line 62
            return
        end local 3 // short value
        end local 1 // long position
        end local 0 // at.yawk.numaec.ByteBufferBackedLargeByteBuffer this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lat/yawk/numaec/ByteBufferBackedLargeByteBuffer;
            0    2     1  position  J
            0    2     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=4, locals=4, args_size=3
        start local 0 // at.yawk.numaec.ByteBufferBackedLargeByteBuffer this
        start local 1 // long position
        start local 3 // int value
         0: .line 66
            aload 0 /* this */
            lload 1 /* position */
            invokevirtual at.yawk.numaec.ByteBufferBackedLargeByteBuffer.component:(J)Ljava/nio/ByteBuffer;
            aload 0 /* this */
            lload 1 /* position */
            invokevirtual at.yawk.numaec.ByteBufferBackedLargeByteBuffer.offsetInt:(J)I
            iload 3 /* value */
            invokevirtual java.nio.ByteBuffer.putInt:(II)Ljava/nio/ByteBuffer;
            pop
         1: .line 67
            return
        end local 3 // int value
        end local 1 // long position
        end local 0 // at.yawk.numaec.ByteBufferBackedLargeByteBuffer this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lat/yawk/numaec/ByteBufferBackedLargeByteBuffer;
            0    2     1  position  J
            0    2     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=4, locals=5, args_size=3
        start local 0 // at.yawk.numaec.ByteBufferBackedLargeByteBuffer this
        start local 1 // long position
        start local 3 // long value
         0: .line 71
            aload 0 /* this */
            lload 1 /* position */
            invokevirtual at.yawk.numaec.ByteBufferBackedLargeByteBuffer.component:(J)Ljava/nio/ByteBuffer;
            aload 0 /* this */
            lload 1 /* position */
            invokevirtual at.yawk.numaec.ByteBufferBackedLargeByteBuffer.offsetInt:(J)I
            lload 3 /* value */
            invokevirtual java.nio.ByteBuffer.putLong:(IJ)Ljava/nio/ByteBuffer;
            pop
         1: .line 72
            return
        end local 3 // long value
        end local 1 // long position
        end local 0 // at.yawk.numaec.ByteBufferBackedLargeByteBuffer this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lat/yawk/numaec/ByteBufferBackedLargeByteBuffer;
            0    2     1  position  J
            0    2     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=5, locals=1, args_size=1
        start local 0 // at.yawk.numaec.ByteBufferBackedLargeByteBuffer this
         0: .line 76
            aload 0 /* this */
            getfield at.yawk.numaec.ByteBufferBackedLargeByteBuffer.buffers:[Ljava/nio/ByteBuffer;
            arraylength
            iconst_1
            isub
            i2l
            aload 0 /* this */
            getfield at.yawk.numaec.ByteBufferBackedLargeByteBuffer.componentSize:I
            i2l
            lmul
            aload 0 /* this */
            getfield at.yawk.numaec.ByteBufferBackedLargeByteBuffer.buffers:[Ljava/nio/ByteBuffer;
            aload 0 /* this */
            getfield at.yawk.numaec.ByteBufferBackedLargeByteBuffer.buffers:[Ljava/nio/ByteBuffer;
            arraylength
            iconst_1
            isub
            aaload
            invokevirtual java.nio.ByteBuffer.limit:()I
            i2l
            ladd
            lreturn
        end local 0 // at.yawk.numaec.ByteBufferBackedLargeByteBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lat/yawk/numaec/ByteBufferBackedLargeByteBuffer;

  long nextRegionStart(long);
    descriptor: (J)J
    flags: (0x0000) 
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // at.yawk.numaec.ByteBufferBackedLargeByteBuffer this
        start local 1 // long position
         0: .line 81
            aload 0 /* this */
            lload 1 /* position */
            invokevirtual at.yawk.numaec.ByteBufferBackedLargeByteBuffer.currentRegionStart:(J)J
            aload 0 /* this */
            getfield at.yawk.numaec.ByteBufferBackedLargeByteBuffer.componentSize:I
            i2l
            ladd
            lreturn
        end local 1 // long position
        end local 0 // at.yawk.numaec.ByteBufferBackedLargeByteBuffer this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lat/yawk/numaec/ByteBufferBackedLargeByteBuffer;
            0    1     1  position  J
    MethodParameters:
          Name  Flags
      position  

  void copyLargeToComponent(java.nio.ByteBuffer, long, at.yawk.numaec.LargeByteBuffer, long, long);
    descriptor: (Ljava/nio/ByteBuffer;JLat/yawk/numaec/LargeByteBuffer;JJ)V
    flags: (0x0000) 
    Code:
      stack=3, locals=9, args_size=6
        start local 0 // at.yawk.numaec.ByteBufferBackedLargeByteBuffer this
        start local 1 // java.nio.ByteBuffer dest
        start local 2 // long toIndex
        start local 4 // at.yawk.numaec.LargeByteBuffer src
        start local 5 // long fromIndex
        start local 7 // long length
         0: .line 92
            new java.lang.UnsupportedOperationException
            dup
            ldc "Incompatible buffers"
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 7 // long length
        end local 5 // long fromIndex
        end local 4 // at.yawk.numaec.LargeByteBuffer src
        end local 2 // long toIndex
        end local 1 // java.nio.ByteBuffer dest
        end local 0 // at.yawk.numaec.ByteBufferBackedLargeByteBuffer this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lat/yawk/numaec/ByteBufferBackedLargeByteBuffer;
            0    1     1       dest  Ljava/nio/ByteBuffer;
            0    1     2    toIndex  J
            0    1     4        src  Lat/yawk/numaec/LargeByteBuffer;
            0    1     5  fromIndex  J
            0    1     7     length  J
    MethodParameters:
           Name  Flags
      dest       
      toIndex    
      src        
      fromIndex  
      length     

  void copyBetweenComponents(java.nio.ByteBuffer, long, java.nio.ByteBuffer, long, long);
    descriptor: (Ljava/nio/ByteBuffer;JLjava/nio/ByteBuffer;JJ)V
    flags: (0x0000) 
    Code:
      stack=6, locals=11, args_size=6
        start local 0 // at.yawk.numaec.ByteBufferBackedLargeByteBuffer this
        start local 1 // java.nio.ByteBuffer dest
        start local 2 // long toIndex
        start local 4 // java.nio.ByteBuffer src
        start local 5 // long fromIndex
        start local 7 // long length
         0: .line 97
            lload 7 /* length */
            lconst_0
            lcmp
            iflt 1
            lload 7 /* length */
            ldc 2147483647
            lcmp
            ifle 2
         1: .line 98
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            ldc "length"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 100
      StackMap locals:
      StackMap stack:
            aload 4 /* src */
            invokevirtual java.nio.ByteBuffer.limit:()I
            i2l
            lload 5 /* fromIndex */
            lload 7 /* length */
            ladd
            lcmp
            iflt 3
            aload 1 /* dest */
            invokevirtual java.nio.ByteBuffer.limit:()I
            i2l
            lload 2 /* toIndex */
            lload 7 /* length */
            ladd
            lcmp
            ifge 4
         3: .line 101
      StackMap locals:
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            invokespecial java.lang.IndexOutOfBoundsException.<init>:()V
            athrow
         4: .line 103
      StackMap locals:
      StackMap stack:
            aload 1 /* dest */
            aload 4 /* src */
            if_acmpne 6
         5: .line 104
            aload 1 /* dest */
            invokevirtual java.nio.ByteBuffer.duplicate:()Ljava/nio/ByteBuffer;
            astore 1 /* dest */
         6: .line 107
      StackMap locals:
      StackMap stack:
            aload 1 /* dest */
            invokevirtual java.nio.ByteBuffer.limit:()I
            istore 9 /* oldDestLimit */
        start local 9 // int oldDestLimit
         7: .line 108
            aload 4 /* src */
            invokevirtual java.nio.ByteBuffer.limit:()I
            istore 10 /* oldSrcLimit */
        start local 10 // int oldSrcLimit
         8: .line 111
            aload 4 /* src */
            lload 5 /* fromIndex */
            invokestatic java.lang.Math.toIntExact:(J)I
            invokevirtual java.nio.Buffer.position:(I)Ljava/nio/Buffer;
            pop
         9: .line 112
            aload 1 /* dest */
            lload 2 /* toIndex */
            invokestatic java.lang.Math.toIntExact:(J)I
            invokevirtual java.nio.Buffer.position:(I)Ljava/nio/Buffer;
            pop
        10: .line 113
            aload 4 /* src */
            aload 4 /* src */
            invokevirtual java.nio.ByteBuffer.position:()I
            i2l
            lload 7 /* length */
            ladd
            invokestatic java.lang.Math.toIntExact:(J)I
            invokevirtual java.nio.Buffer.limit:(I)Ljava/nio/Buffer;
            pop
        11: .line 114
            aload 1 /* dest */
            aload 1 /* dest */
            invokevirtual java.nio.ByteBuffer.position:()I
            i2l
            lload 7 /* length */
            ladd
            invokestatic java.lang.Math.toIntExact:(J)I
            invokevirtual java.nio.Buffer.limit:(I)Ljava/nio/Buffer;
            pop
        12: .line 116
            aload 1 /* dest */
            aload 4 /* src */
            invokevirtual java.nio.ByteBuffer.put:(Ljava/nio/ByteBuffer;)Ljava/nio/ByteBuffer;
            pop
        13: .line 118
            aload 1 /* dest */
            iconst_0
            invokevirtual java.nio.Buffer.position:(I)Ljava/nio/Buffer;
            pop
        14: .line 119
            aload 4 /* src */
            iconst_0
            invokevirtual java.nio.Buffer.position:(I)Ljava/nio/Buffer;
            pop
        15: .line 120
            aload 1 /* dest */
            iload 9 /* oldDestLimit */
            invokevirtual java.nio.Buffer.limit:(I)Ljava/nio/Buffer;
            pop
        16: .line 121
            aload 4 /* src */
            iload 10 /* oldSrcLimit */
            invokevirtual java.nio.Buffer.limit:(I)Ljava/nio/Buffer;
            pop
        17: .line 122
            return
        end local 10 // int oldSrcLimit
        end local 9 // int oldDestLimit
        end local 7 // long length
        end local 5 // long fromIndex
        end local 4 // java.nio.ByteBuffer src
        end local 2 // long toIndex
        end local 1 // java.nio.ByteBuffer dest
        end local 0 // at.yawk.numaec.ByteBufferBackedLargeByteBuffer this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   18     0          this  Lat/yawk/numaec/ByteBufferBackedLargeByteBuffer;
            0   18     1          dest  Ljava/nio/ByteBuffer;
            0   18     2       toIndex  J
            0   18     4           src  Ljava/nio/ByteBuffer;
            0   18     5     fromIndex  J
            0   18     7        length  J
            7   18     9  oldDestLimit  I
            8   18    10   oldSrcLimit  I
    MethodParameters:
           Name  Flags
      dest       
      toIndex    
      src        
      fromIndex  
      length     

  at.yawk.numaec.GenericJoinedBuffer<java.nio.ByteBuffer> convertToCompatible(at.yawk.numaec.LargeByteBuffer);
    descriptor: (Lat/yawk/numaec/LargeByteBuffer;)Lat/yawk/numaec/GenericJoinedBuffer;
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // at.yawk.numaec.ByteBufferBackedLargeByteBuffer this
        start local 1 // at.yawk.numaec.LargeByteBuffer other
         0: .line 126
            aload 1 /* other */
            instanceof at.yawk.numaec.ByteBufferBackedLargeByteBuffer
            ifeq 4
         1: .line 127
            aload 1 /* other */
            checkcast at.yawk.numaec.ByteBufferBackedLargeByteBuffer
            astore 2 /* compatible */
        start local 2 // at.yawk.numaec.ByteBufferBackedLargeByteBuffer compatible
         2: .line 129
            aload 2 /* compatible */
            getfield at.yawk.numaec.ByteBufferBackedLargeByteBuffer.componentSize:I
            aload 0 /* this */
            getfield at.yawk.numaec.ByteBufferBackedLargeByteBuffer.componentSize:I
            if_icmpne 4
         3: .line 130
            aload 2 /* compatible */
            areturn
        end local 2 // at.yawk.numaec.ByteBufferBackedLargeByteBuffer compatible
         4: .line 133
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 1 // at.yawk.numaec.LargeByteBuffer other
        end local 0 // at.yawk.numaec.ByteBufferBackedLargeByteBuffer this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lat/yawk/numaec/ByteBufferBackedLargeByteBuffer;
            0    5     1       other  Lat/yawk/numaec/LargeByteBuffer;
            2    4     2  compatible  Lat/yawk/numaec/ByteBufferBackedLargeByteBuffer;
    Signature: (Lat/yawk/numaec/LargeByteBuffer;)Lat/yawk/numaec/GenericJoinedBuffer<Ljava/nio/ByteBuffer;>;
    MethodParameters:
       Name  Flags
      other  

  java.lang.Object component(long);
    descriptor: (J)Ljava/lang/Object;
    flags: (0x1040) ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=2
         0: .line 1
            aload 0
            lload 1
            invokevirtual at.yawk.numaec.ByteBufferBackedLargeByteBuffer.component:(J)Ljava/nio/ByteBuffer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void copyFrom(at.yawk.numaec.LargeByteBuffer, long, long, long);
    descriptor: (Lat/yawk/numaec/LargeByteBuffer;JJJ)V
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=8, locals=8, args_size=5
         0: .line 1
            aload 0
            aload 1
            lload 2
            lload 4
            lload 6
            invokespecial at.yawk.numaec.GenericJoinedBuffer.copyFrom:(Lat/yawk/numaec/LargeByteBuffer;JJJ)V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.nio.ReadOnlyBufferException, java.lang.UnsupportedOperationException, java.lang.IndexOutOfBoundsException

  void copyLargeToComponent(java.lang.Object, long, at.yawk.numaec.LargeByteBuffer, long, long);
    descriptor: (Ljava/lang/Object;JLat/yawk/numaec/LargeByteBuffer;JJ)V
    flags: (0x1040) ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=9, locals=9, args_size=6
         0: .line 1
            aload 0
            aload 1
            checkcast java.nio.ByteBuffer
            lload 2
            aload 4
            lload 5
            lload 7
            invokevirtual at.yawk.numaec.ByteBufferBackedLargeByteBuffer.copyLargeToComponent:(Ljava/nio/ByteBuffer;JLat/yawk/numaec/LargeByteBuffer;JJ)V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.lang.IndexOutOfBoundsException, java.lang.UnsupportedOperationException

  void copyBetweenComponents(java.lang.Object, long, java.lang.Object, long, long);
    descriptor: (Ljava/lang/Object;JLjava/lang/Object;JJ)V
    flags: (0x1040) ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=9, locals=9, args_size=6
         0: .line 1
            aload 0
            aload 1
            checkcast java.nio.ByteBuffer
            lload 2
            aload 4
            checkcast java.nio.ByteBuffer
            lload 5
            lload 7
            invokevirtual at.yawk.numaec.ByteBufferBackedLargeByteBuffer.copyBetweenComponents:(Ljava/nio/ByteBuffer;JLjava/nio/ByteBuffer;JJ)V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.lang.IndexOutOfBoundsException
}
Signature: Lat/yawk/numaec/GenericJoinedBuffer<Ljava/nio/ByteBuffer;>;Lat/yawk/numaec/LargeByteBuffer;
SourceFile: "ByteBufferBackedLargeByteBuffer.java"