final class org.xnio.ByteBufferPool$MultiCache implements org.xnio.ByteBufferPool$Cache
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: org.xnio.ByteBufferPool$MultiCache
  super_class: java.lang.Object
{
  private final org.xnio.ByteBufferPool$Cache parent;
    descriptor: Lorg/xnio/ByteBufferPool$Cache;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.nio.ByteBuffer[] cache;
    descriptor: [Ljava/nio/ByteBuffer;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

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

  static final boolean $assertionsDisabled;
    descriptor: Z
    flags: (0x1018) ACC_STATIC, ACC_FINAL, ACC_SYNTHETIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 690
            ldc Lorg/xnio/ByteBufferPool;
            invokevirtual java.lang.Class.desiredAssertionStatus:()Z
            ifne 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: putstatic org.xnio.ByteBufferPool$MultiCache.$assertionsDisabled:Z
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void <init>(org.xnio.ByteBufferPool$Cache, int);
    descriptor: (Lorg/xnio/ByteBufferPool$Cache;I)V
    flags: (0x0000) 
    Code:
      stack=6, locals=3, args_size=3
        start local 0 // org.xnio.ByteBufferPool$MultiCache this
        start local 1 // org.xnio.ByteBufferPool$Cache parent
        start local 2 // int size
         0: .line 696
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 697
            aload 0 /* this */
            aload 1 /* parent */
            putfield org.xnio.ByteBufferPool$MultiCache.parent:Lorg/xnio/ByteBufferPool$Cache;
         2: .line 698
            getstatic org.xnio.ByteBufferPool$MultiCache.$assertionsDisabled:Z
            ifne 4
            iload 2 /* size */
            ifle 3
            iload 2 /* size */
            bipush 64
            if_icmple 4
      StackMap locals: org.xnio.ByteBufferPool$MultiCache org.xnio.ByteBufferPool$Cache int
      StackMap stack:
         3: new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         4: .line 699
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* size */
            anewarray java.nio.ByteBuffer
            putfield org.xnio.ByteBufferPool$MultiCache.cache:[Ljava/nio/ByteBuffer;
         5: .line 700
            aload 0 /* this */
            aload 0 /* this */
            iload 2 /* size */
            bipush 64
            if_icmpne 6
            ldc -1
            goto 7
      StackMap locals: org.xnio.ByteBufferPool$MultiCache org.xnio.ByteBufferPool$Cache int
      StackMap stack: org.xnio.ByteBufferPool$MultiCache org.xnio.ByteBufferPool$MultiCache
         6: lconst_1
            iload 2 /* size */
            lshl
            lconst_1
            lsub
      StackMap locals: org.xnio.ByteBufferPool$MultiCache org.xnio.ByteBufferPool$Cache int
      StackMap stack: org.xnio.ByteBufferPool$MultiCache org.xnio.ByteBufferPool$MultiCache long
         7: dup2_x1
            putfield org.xnio.ByteBufferPool$MultiCache.availableBits:J
            putfield org.xnio.ByteBufferPool$MultiCache.mask:J
         8: .line 701
            return
        end local 2 // int size
        end local 1 // org.xnio.ByteBufferPool$Cache parent
        end local 0 // org.xnio.ByteBufferPool$MultiCache this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0    this  Lorg/xnio/ByteBufferPool$MultiCache;
            0    9     1  parent  Lorg/xnio/ByteBufferPool$Cache;
            0    9     2    size  I
    MethodParameters:
        Name  Flags
      parent  final
      size    final

  public void free(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=2
        start local 0 // org.xnio.ByteBufferPool$MultiCache this
        start local 1 // java.nio.ByteBuffer bb
         0: .line 704
            aload 0 /* this */
            getfield org.xnio.ByteBufferPool$MultiCache.availableBits:J
            ldc -1
            lxor
            aload 0 /* this */
            getfield org.xnio.ByteBufferPool$MultiCache.mask:J
            land
            invokestatic java.lang.Long.lowestOneBit:(J)J
            lstore 2 /* posn */
        start local 2 // long posn
         1: .line 705
            lload 2 /* posn */
            lconst_0
            lcmp
            ifeq 6
         2: .line 706
            lload 2 /* posn */
            invokestatic java.lang.Long.numberOfTrailingZeros:(J)I
            istore 4 /* bit */
        start local 4 // int bit
         3: .line 708
            aload 0 /* this */
            dup
            getfield org.xnio.ByteBufferPool$MultiCache.availableBits:J
            lload 2 /* posn */
            lor
            putfield org.xnio.ByteBufferPool$MultiCache.availableBits:J
         4: .line 709
            aload 0 /* this */
            getfield org.xnio.ByteBufferPool$MultiCache.cache:[Ljava/nio/ByteBuffer;
            iload 4 /* bit */
            aload 1 /* bb */
            aastore
        end local 4 // int bit
         5: .line 710
            goto 7
         6: .line 712
      StackMap locals: long
      StackMap stack:
            aload 0 /* this */
            getfield org.xnio.ByteBufferPool$MultiCache.parent:Lorg/xnio/ByteBufferPool$Cache;
            aload 1 /* bb */
            invokeinterface org.xnio.ByteBufferPool$Cache.free:(Ljava/nio/ByteBuffer;)V
         7: .line 714
      StackMap locals:
      StackMap stack:
            return
        end local 2 // long posn
        end local 1 // java.nio.ByteBuffer bb
        end local 0 // org.xnio.ByteBufferPool$MultiCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lorg/xnio/ByteBufferPool$MultiCache;
            0    8     1    bb  Ljava/nio/ByteBuffer;
            1    8     2  posn  J
            3    5     4   bit  I
    MethodParameters:
      Name  Flags
      bb    final

  public void flushBuffer(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.xnio.ByteBufferPool$MultiCache this
        start local 1 // java.nio.ByteBuffer bb
         0: .line 717
            aload 0 /* this */
            getfield org.xnio.ByteBufferPool$MultiCache.parent:Lorg/xnio/ByteBufferPool$Cache;
            aload 1 /* bb */
            invokeinterface org.xnio.ByteBufferPool$Cache.flushBuffer:(Ljava/nio/ByteBuffer;)V
         1: .line 718
            return
        end local 1 // java.nio.ByteBuffer bb
        end local 0 // org.xnio.ByteBufferPool$MultiCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/xnio/ByteBufferPool$MultiCache;
            0    2     1    bb  Ljava/nio/ByteBuffer;
    MethodParameters:
      Name  Flags
      bb    final

  public java.nio.ByteBuffer allocate();
    descriptor: ()Ljava/nio/ByteBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=6, args_size=1
        start local 0 // org.xnio.ByteBufferPool$MultiCache this
         0: .line 721
            aload 0 /* this */
            getfield org.xnio.ByteBufferPool$MultiCache.availableBits:J
            invokestatic java.lang.Long.lowestOneBit:(J)J
            lstore 1 /* posn */
        start local 1 // long posn
         1: .line 722
            lload 1 /* posn */
            lconst_0
            lcmp
            ifeq 10
         2: .line 723
            lload 1 /* posn */
            invokestatic java.lang.Long.numberOfTrailingZeros:(J)I
            istore 3 /* bit */
        start local 3 // int bit
         3: .line 724
            aload 0 /* this */
            dup
            getfield org.xnio.ByteBufferPool$MultiCache.availableBits:J
            lload 1 /* posn */
            ldc -1
            lxor
            land
            putfield org.xnio.ByteBufferPool$MultiCache.availableBits:J
         4: .line 726
            aload 0 /* this */
            getfield org.xnio.ByteBufferPool$MultiCache.cache:[Ljava/nio/ByteBuffer;
            iload 3 /* bit */
            aaload
            astore 5
         5: .line 728
            aload 0 /* this */
            getfield org.xnio.ByteBufferPool$MultiCache.cache:[Ljava/nio/ByteBuffer;
            iload 3 /* bit */
            aconst_null
            aastore
         6: .line 726
            aload 5
            areturn
         7: .line 727
      StackMap locals: org.xnio.ByteBufferPool$MultiCache long int
      StackMap stack: java.lang.Throwable
            astore 4
         8: .line 728
            aload 0 /* this */
            getfield org.xnio.ByteBufferPool$MultiCache.cache:[Ljava/nio/ByteBuffer;
            iload 3 /* bit */
            aconst_null
            aastore
         9: .line 729
            aload 4
            athrow
        end local 3 // int bit
        10: .line 732
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.xnio.ByteBufferPool$MultiCache.parent:Lorg/xnio/ByteBufferPool$Cache;
            invokeinterface org.xnio.ByteBufferPool$Cache.allocate:()Ljava/nio/ByteBuffer;
            areturn
        end local 1 // long posn
        end local 0 // org.xnio.ByteBufferPool$MultiCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lorg/xnio/ByteBufferPool$MultiCache;
            1   11     1  posn  J
            3   10     3   bit  I
      Exception table:
        from    to  target  type
           4     5       7  any

  public void destroy();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=9, args_size=1
        start local 0 // org.xnio.ByteBufferPool$MultiCache this
         0: .line 737
            aload 0 /* this */
            getfield org.xnio.ByteBufferPool$MultiCache.cache:[Ljava/nio/ByteBuffer;
            astore 1 /* cache */
        start local 1 // java.nio.ByteBuffer[] cache
         1: .line 738
            aload 0 /* this */
            getfield org.xnio.ByteBufferPool$MultiCache.parent:Lorg/xnio/ByteBufferPool$Cache;
            astore 2 /* parent */
        start local 2 // org.xnio.ByteBufferPool$Cache parent
         2: .line 739
            aload 0 /* this */
            getfield org.xnio.ByteBufferPool$MultiCache.availableBits:J
            ldc -1
            lxor
            aload 0 /* this */
            getfield org.xnio.ByteBufferPool$MultiCache.mask:J
            land
            lstore 3 /* bits */
        start local 3 // long bits
         3: .line 741
            goto 9
         4: .line 742
      StackMap locals: java.nio.ByteBuffer[] org.xnio.ByteBufferPool$Cache long
      StackMap stack:
            lload 3 /* bits */
            invokestatic java.lang.Long.lowestOneBit:(J)J
            lstore 5 /* posn */
        start local 5 // long posn
         5: .line 743
            lload 5 /* posn */
            invokestatic java.lang.Long.numberOfTrailingZeros:(J)I
            istore 7 /* bit */
        start local 7 // int bit
         6: .line 744
            aload 2 /* parent */
            aload 1 /* cache */
            iload 7 /* bit */
            aaload
            invokeinterface org.xnio.ByteBufferPool$Cache.free:(Ljava/nio/ByteBuffer;)V
         7: .line 745
            lload 3 /* bits */
            lload 5 /* posn */
            ldc -1
            lxor
            land
            lstore 3 /* bits */
         8: .line 746
            aload 1 /* cache */
            iload 7 /* bit */
            aconst_null
            aastore
        end local 7 // int bit
        end local 5 // long posn
         9: .line 741
      StackMap locals:
      StackMap stack:
            lload 3 /* bits */
            lconst_0
            lcmp
            ifne 4
        10: .line 748
            goto 14
      StackMap locals:
      StackMap stack: java.lang.Throwable
        11: astore 8
        12: .line 750
            aload 0 /* this */
            lload 3 /* bits */
            putfield org.xnio.ByteBufferPool$MultiCache.availableBits:J
        13: .line 751
            aload 8
            athrow
        14: .line 750
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            lload 3 /* bits */
            putfield org.xnio.ByteBufferPool$MultiCache.availableBits:J
        15: .line 752
            return
        end local 3 // long bits
        end local 2 // org.xnio.ByteBufferPool$Cache parent
        end local 1 // java.nio.ByteBuffer[] cache
        end local 0 // org.xnio.ByteBufferPool$MultiCache this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   16     0    this  Lorg/xnio/ByteBufferPool$MultiCache;
            1   16     1   cache  [Ljava/nio/ByteBuffer;
            2   16     2  parent  Lorg/xnio/ByteBufferPool$Cache;
            3   16     3    bits  J
            5    9     5    posn  J
            6    9     7     bit  I
      Exception table:
        from    to  target  type
           3    11      11  any

  public void flush();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=9, args_size=1
        start local 0 // org.xnio.ByteBufferPool$MultiCache this
         0: .line 755
            aload 0 /* this */
            getfield org.xnio.ByteBufferPool$MultiCache.cache:[Ljava/nio/ByteBuffer;
            astore 1 /* cache */
        start local 1 // java.nio.ByteBuffer[] cache
         1: .line 756
            aload 0 /* this */
            getfield org.xnio.ByteBufferPool$MultiCache.parent:Lorg/xnio/ByteBufferPool$Cache;
            astore 2 /* parent */
        start local 2 // org.xnio.ByteBufferPool$Cache parent
         2: .line 757
            aload 0 /* this */
            getfield org.xnio.ByteBufferPool$MultiCache.availableBits:J
            ldc -1
            lxor
            aload 0 /* this */
            getfield org.xnio.ByteBufferPool$MultiCache.mask:J
            land
            lstore 3 /* bits */
        start local 3 // long bits
         3: .line 759
            goto 9
         4: .line 760
      StackMap locals: java.nio.ByteBuffer[] org.xnio.ByteBufferPool$Cache long
      StackMap stack:
            lload 3 /* bits */
            invokestatic java.lang.Long.lowestOneBit:(J)J
            lstore 5 /* posn */
        start local 5 // long posn
         5: .line 761
            lload 5 /* posn */
            invokestatic java.lang.Long.numberOfTrailingZeros:(J)I
            istore 7 /* bit */
        start local 7 // int bit
         6: .line 762
            aload 0 /* this */
            aload 1 /* cache */
            iload 7 /* bit */
            aaload
            invokevirtual org.xnio.ByteBufferPool$MultiCache.flushBuffer:(Ljava/nio/ByteBuffer;)V
         7: .line 763
            lload 3 /* bits */
            lload 5 /* posn */
            ldc -1
            lxor
            land
            lstore 3 /* bits */
         8: .line 764
            aload 1 /* cache */
            iload 7 /* bit */
            aconst_null
            aastore
        end local 7 // int bit
        end local 5 // long posn
         9: .line 759
      StackMap locals:
      StackMap stack:
            lload 3 /* bits */
            lconst_0
            lcmp
            ifne 4
        10: .line 766
            goto 14
      StackMap locals:
      StackMap stack: java.lang.Throwable
        11: astore 8
        12: .line 768
            aload 0 /* this */
            lload 3 /* bits */
            putfield org.xnio.ByteBufferPool$MultiCache.availableBits:J
        13: .line 769
            aload 8
            athrow
        14: .line 768
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            lload 3 /* bits */
            putfield org.xnio.ByteBufferPool$MultiCache.availableBits:J
        15: .line 770
            aload 2 /* parent */
            invokeinterface org.xnio.ByteBufferPool$Cache.flush:()V
        16: .line 771
            return
        end local 3 // long bits
        end local 2 // org.xnio.ByteBufferPool$Cache parent
        end local 1 // java.nio.ByteBuffer[] cache
        end local 0 // org.xnio.ByteBufferPool$MultiCache this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   17     0    this  Lorg/xnio/ByteBufferPool$MultiCache;
            1   17     1   cache  [Ljava/nio/ByteBuffer;
            2   17     2  parent  Lorg/xnio/ByteBufferPool$Cache;
            3   17     3    bits  J
            5    9     5    posn  J
            6    9     7     bit  I
      Exception table:
        from    to  target  type
           3    11      11  any
}
SourceFile: "ByteBufferPool.java"
NestHost: org.xnio.ByteBufferPool
InnerClasses:
  abstract Cache = org.xnio.ByteBufferPool$Cache of org.xnio.ByteBufferPool
  final MultiCache = org.xnio.ByteBufferPool$MultiCache of org.xnio.ByteBufferPool