class sun.nio.ch.KQueueSelectorImpl extends sun.nio.ch.SelectorImpl
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: sun.nio.ch.KQueueSelectorImpl
  super_class: sun.nio.ch.SelectorImpl
{
  protected int fd0;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected int fd1;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  sun.nio.ch.KQueueArrayWrapper kqueueWrapper;
    descriptor: Lsun/nio/ch/KQueueArrayWrapper;
    flags: (0x0000) 

  private int totalChannels;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private java.util.HashMap<java.lang.Integer, sun.nio.ch.KQueueSelectorImpl$MapEntry> fdMap;
    descriptor: Ljava/util/HashMap;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/HashMap<Ljava/lang/Integer;Lsun/nio/ch/KQueueSelectorImpl$MapEntry;>;

  private boolean closed;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private java.lang.Object interruptLock;
    descriptor: Ljava/lang/Object;
    flags: (0x0002) ACC_PRIVATE

  private boolean interruptTriggered;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

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

  void <init>(java.nio.channels.spi.SelectorProvider);
    descriptor: (Ljava/nio/channels/spi/SelectorProvider;)V
    flags: (0x0000) 
    Code:
      stack=4, locals=6, args_size=2
        start local 0 // sun.nio.ch.KQueueSelectorImpl this
        start local 1 // java.nio.channels.spi.SelectorProvider sp
         0: .line 82
            aload 0 /* this */
            aload 1 /* sp */
            invokespecial sun.nio.ch.SelectorImpl.<init>:(Ljava/nio/channels/spi/SelectorProvider;)V
         1: .line 57
            aload 0 /* this */
            iconst_0
            putfield sun.nio.ch.KQueueSelectorImpl.closed:Z
         2: .line 60
            aload 0 /* this */
            new java.lang.Object
            dup
            invokespecial java.lang.Object.<init>:()V
            putfield sun.nio.ch.KQueueSelectorImpl.interruptLock:Ljava/lang/Object;
         3: .line 61
            aload 0 /* this */
            iconst_0
            putfield sun.nio.ch.KQueueSelectorImpl.interruptTriggered:Z
         4: .line 83
            iconst_0
            invokestatic sun.nio.ch.IOUtil.makePipe:(Z)J
            lstore 2 /* fds */
        start local 2 // long fds
         5: .line 84
            aload 0 /* this */
            lload 2 /* fds */
            bipush 32
            lushr
            l2i
            putfield sun.nio.ch.KQueueSelectorImpl.fd0:I
         6: .line 85
            aload 0 /* this */
            lload 2 /* fds */
            l2i
            putfield sun.nio.ch.KQueueSelectorImpl.fd1:I
         7: .line 87
            aload 0 /* this */
            new sun.nio.ch.KQueueArrayWrapper
            dup
            invokespecial sun.nio.ch.KQueueArrayWrapper.<init>:()V
            putfield sun.nio.ch.KQueueSelectorImpl.kqueueWrapper:Lsun/nio/ch/KQueueArrayWrapper;
         8: .line 88
            aload 0 /* this */
            getfield sun.nio.ch.KQueueSelectorImpl.kqueueWrapper:Lsun/nio/ch/KQueueArrayWrapper;
            aload 0 /* this */
            getfield sun.nio.ch.KQueueSelectorImpl.fd0:I
            aload 0 /* this */
            getfield sun.nio.ch.KQueueSelectorImpl.fd1:I
            invokevirtual sun.nio.ch.KQueueArrayWrapper.initInterrupt:(II)V
         9: .line 89
            aload 0 /* this */
            new java.util.HashMap
            dup
            invokespecial java.util.HashMap.<init>:()V
            putfield sun.nio.ch.KQueueSelectorImpl.fdMap:Ljava/util/HashMap;
        10: .line 90
            aload 0 /* this */
            iconst_1
            putfield sun.nio.ch.KQueueSelectorImpl.totalChannels:I
        11: .line 91
            goto 22
      StackMap locals: sun.nio.ch.KQueueSelectorImpl java.nio.channels.spi.SelectorProvider long
      StackMap stack: java.lang.Throwable
        12: astore 4 /* t */
        start local 4 // java.lang.Throwable t
        13: .line 93
            aload 0 /* this */
            getfield sun.nio.ch.KQueueSelectorImpl.fd0:I
            invokestatic sun.nio.ch.FileDispatcherImpl.closeIntFD:(I)V
        14: .line 94
            goto 17
      StackMap locals: sun.nio.ch.KQueueSelectorImpl java.nio.channels.spi.SelectorProvider long java.lang.Throwable
      StackMap stack: java.io.IOException
        15: astore 5 /* ioe0 */
        start local 5 // java.io.IOException ioe0
        16: .line 95
            aload 4 /* t */
            aload 5 /* ioe0 */
            invokevirtual java.lang.Throwable.addSuppressed:(Ljava/lang/Throwable;)V
        end local 5 // java.io.IOException ioe0
        17: .line 98
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.nio.ch.KQueueSelectorImpl.fd1:I
            invokestatic sun.nio.ch.FileDispatcherImpl.closeIntFD:(I)V
        18: .line 99
            goto 21
      StackMap locals:
      StackMap stack: java.io.IOException
        19: astore 5 /* ioe1 */
        start local 5 // java.io.IOException ioe1
        20: .line 100
            aload 4 /* t */
            aload 5 /* ioe1 */
            invokevirtual java.lang.Throwable.addSuppressed:(Ljava/lang/Throwable;)V
        end local 5 // java.io.IOException ioe1
        21: .line 102
      StackMap locals:
      StackMap stack:
            aload 4 /* t */
            athrow
        end local 4 // java.lang.Throwable t
        22: .line 104
      StackMap locals:
      StackMap stack:
            return
        end local 2 // long fds
        end local 1 // java.nio.channels.spi.SelectorProvider sp
        end local 0 // sun.nio.ch.KQueueSelectorImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   23     0  this  Lsun/nio/ch/KQueueSelectorImpl;
            0   23     1    sp  Ljava/nio/channels/spi/SelectorProvider;
            5   23     2   fds  J
           13   22     4     t  Ljava/lang/Throwable;
           16   17     5  ioe0  Ljava/io/IOException;
           20   21     5  ioe1  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           7    11      12  Class java.lang.Throwable
          13    14      15  Class java.io.IOException
          17    18      19  Class java.io.IOException
    MethodParameters:
      Name  Flags
      sp    

  protected int doSelect(long);
    descriptor: (J)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // sun.nio.ch.KQueueSelectorImpl this
        start local 1 // long timeout
         0: .line 110
            iconst_0
            istore 3 /* entries */
        start local 3 // int entries
         1: .line 111
            aload 0 /* this */
            getfield sun.nio.ch.KQueueSelectorImpl.closed:Z
            ifeq 3
         2: .line 112
            new java.nio.channels.ClosedSelectorException
            dup
            invokespecial java.nio.channels.ClosedSelectorException.<init>:()V
            athrow
         3: .line 113
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.nio.ch.KQueueSelectorImpl.processDeregisterQueue:()V
         4: .line 115
            aload 0 /* this */
            invokevirtual sun.nio.ch.KQueueSelectorImpl.begin:()V
         5: .line 116
            aload 0 /* this */
            getfield sun.nio.ch.KQueueSelectorImpl.kqueueWrapper:Lsun/nio/ch/KQueueArrayWrapper;
            lload 1 /* timeout */
            invokevirtual sun.nio.ch.KQueueArrayWrapper.poll:(J)I
            istore 3 /* entries */
         6: .line 117
            goto 10
      StackMap locals:
      StackMap stack: java.lang.Throwable
         7: astore 4
         8: .line 118
            aload 0 /* this */
            invokevirtual sun.nio.ch.KQueueSelectorImpl.end:()V
         9: .line 119
            aload 4
            athrow
        10: .line 118
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual sun.nio.ch.KQueueSelectorImpl.end:()V
        11: .line 120
            aload 0 /* this */
            invokevirtual sun.nio.ch.KQueueSelectorImpl.processDeregisterQueue:()V
        12: .line 121
            aload 0 /* this */
            iload 3 /* entries */
            invokevirtual sun.nio.ch.KQueueSelectorImpl.updateSelectedKeys:(I)I
            ireturn
        end local 3 // int entries
        end local 1 // long timeout
        end local 0 // sun.nio.ch.KQueueSelectorImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   13     0     this  Lsun/nio/ch/KQueueSelectorImpl;
            0   13     1  timeout  J
            1   13     3  entries  I
      Exception table:
        from    to  target  type
           4     7       7  any
    Exceptions:
      throws java.io.IOException
    MethodParameters:
         Name  Flags
      timeout  

  private int updateSelectedKeys(int);
    descriptor: (I)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=9, args_size=2
        start local 0 // sun.nio.ch.KQueueSelectorImpl this
        start local 1 // int entries
         0: .line 132
            iconst_0
            istore 2 /* numKeysUpdated */
        start local 2 // int numKeysUpdated
         1: .line 133
            iconst_0
            istore 3 /* interrupted */
        start local 3 // boolean interrupted
         2: .line 140
            aload 0 /* this */
            dup
            getfield sun.nio.ch.KQueueSelectorImpl.updateCount:J
            lconst_1
            ladd
            putfield sun.nio.ch.KQueueSelectorImpl.updateCount:J
         3: .line 142
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         4: goto 27
         5: .line 143
      StackMap locals: int int int
      StackMap stack:
            aload 0 /* this */
            getfield sun.nio.ch.KQueueSelectorImpl.kqueueWrapper:Lsun/nio/ch/KQueueArrayWrapper;
            iload 4 /* i */
            invokevirtual sun.nio.ch.KQueueArrayWrapper.getDescriptor:(I)I
            istore 5 /* nextFD */
        start local 5 // int nextFD
         6: .line 144
            iload 5 /* nextFD */
            aload 0 /* this */
            getfield sun.nio.ch.KQueueSelectorImpl.fd0:I
            if_icmpne 9
         7: .line 145
            iconst_1
            istore 3 /* interrupted */
         8: .line 146
            goto 26
         9: .line 147
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield sun.nio.ch.KQueueSelectorImpl.fdMap:Ljava/util/HashMap;
            iload 5 /* nextFD */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokevirtual java.util.HashMap.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast sun.nio.ch.KQueueSelectorImpl$MapEntry
            astore 6 /* me */
        start local 6 // sun.nio.ch.KQueueSelectorImpl$MapEntry me
        10: .line 150
            aload 6 /* me */
            ifnull 26
        11: .line 151
            aload 0 /* this */
            getfield sun.nio.ch.KQueueSelectorImpl.kqueueWrapper:Lsun/nio/ch/KQueueArrayWrapper;
            iload 4 /* i */
            invokevirtual sun.nio.ch.KQueueArrayWrapper.getReventOps:(I)I
            istore 7 /* rOps */
        start local 7 // int rOps
        12: .line 152
            aload 6 /* me */
            getfield sun.nio.ch.KQueueSelectorImpl$MapEntry.ski:Lsun/nio/ch/SelectionKeyImpl;
            astore 8 /* ski */
        start local 8 // sun.nio.ch.SelectionKeyImpl ski
        13: .line 153
            aload 0 /* this */
            getfield sun.nio.ch.KQueueSelectorImpl.selectedKeys:Ljava/util/Set;
            aload 8 /* ski */
            invokeinterface java.util.Set.contains:(Ljava/lang/Object;)Z
            ifeq 21
        14: .line 156
            aload 6 /* me */
            getfield sun.nio.ch.KQueueSelectorImpl$MapEntry.updateCount:J
            aload 0 /* this */
            getfield sun.nio.ch.KQueueSelectorImpl.updateCount:J
            lcmp
            ifeq 19
        15: .line 157
            aload 8 /* ski */
            getfield sun.nio.ch.SelectionKeyImpl.channel:Lsun/nio/ch/SelChImpl;
            iload 7 /* rOps */
            aload 8 /* ski */
            invokeinterface sun.nio.ch.SelChImpl.translateAndSetReadyOps:(ILsun/nio/ch/SelectionKeyImpl;)Z
            ifeq 26
        16: .line 158
            iinc 2 /* numKeysUpdated */ 1
        17: .line 159
            aload 6 /* me */
            aload 0 /* this */
            getfield sun.nio.ch.KQueueSelectorImpl.updateCount:J
            putfield sun.nio.ch.KQueueSelectorImpl$MapEntry.updateCount:J
        18: .line 161
            goto 26
        19: .line 163
      StackMap locals: sun.nio.ch.KQueueSelectorImpl$MapEntry int sun.nio.ch.SelectionKeyImpl
      StackMap stack:
            aload 8 /* ski */
            getfield sun.nio.ch.SelectionKeyImpl.channel:Lsun/nio/ch/SelChImpl;
            iload 7 /* rOps */
            aload 8 /* ski */
            invokeinterface sun.nio.ch.SelChImpl.translateAndUpdateReadyOps:(ILsun/nio/ch/SelectionKeyImpl;)Z
            pop
        20: .line 165
            goto 26
        21: .line 166
      StackMap locals:
      StackMap stack:
            aload 8 /* ski */
            getfield sun.nio.ch.SelectionKeyImpl.channel:Lsun/nio/ch/SelChImpl;
            iload 7 /* rOps */
            aload 8 /* ski */
            invokeinterface sun.nio.ch.SelChImpl.translateAndSetReadyOps:(ILsun/nio/ch/SelectionKeyImpl;)Z
            pop
        22: .line 167
            aload 8 /* ski */
            invokevirtual sun.nio.ch.SelectionKeyImpl.nioReadyOps:()I
            aload 8 /* ski */
            invokevirtual sun.nio.ch.SelectionKeyImpl.nioInterestOps:()I
            iand
            ifeq 26
        23: .line 168
            aload 0 /* this */
            getfield sun.nio.ch.KQueueSelectorImpl.selectedKeys:Ljava/util/Set;
            aload 8 /* ski */
            invokeinterface java.util.Set.add:(Ljava/lang/Object;)Z
            pop
        24: .line 169
            iinc 2 /* numKeysUpdated */ 1
        25: .line 170
            aload 6 /* me */
            aload 0 /* this */
            getfield sun.nio.ch.KQueueSelectorImpl.updateCount:J
            putfield sun.nio.ch.KQueueSelectorImpl$MapEntry.updateCount:J
        end local 8 // sun.nio.ch.SelectionKeyImpl ski
        end local 7 // int rOps
        end local 6 // sun.nio.ch.KQueueSelectorImpl$MapEntry me
        end local 5 // int nextFD
        26: .line 142
      StackMap locals: sun.nio.ch.KQueueSelectorImpl int int int int
      StackMap stack:
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        27: iload 4 /* i */
            iload 1 /* entries */
            if_icmplt 5
        end local 4 // int i
        28: .line 177
            iload 3 /* interrupted */
            ifeq 36
        29: .line 179
            aload 0 /* this */
            getfield sun.nio.ch.KQueueSelectorImpl.interruptLock:Ljava/lang/Object;
            dup
            astore 4
            monitorenter
        30: .line 180
            aload 0 /* this */
            getfield sun.nio.ch.KQueueSelectorImpl.fd0:I
            invokestatic sun.nio.ch.IOUtil.drain:(I)Z
            pop
        31: .line 181
            aload 0 /* this */
            iconst_0
            putfield sun.nio.ch.KQueueSelectorImpl.interruptTriggered:Z
        32: .line 179
            aload 4
            monitorexit
        33: goto 36
      StackMap locals: sun.nio.ch.KQueueSelectorImpl int int int java.lang.Object
      StackMap stack: java.lang.Throwable
        34: aload 4
            monitorexit
        35: athrow
        36: .line 184
      StackMap locals:
      StackMap stack:
            iload 2 /* numKeysUpdated */
            ireturn
        end local 3 // boolean interrupted
        end local 2 // int numKeysUpdated
        end local 1 // int entries
        end local 0 // sun.nio.ch.KQueueSelectorImpl this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   37     0            this  Lsun/nio/ch/KQueueSelectorImpl;
            0   37     1         entries  I
            1   37     2  numKeysUpdated  I
            2   37     3     interrupted  Z
            4   28     4               i  I
            6   26     5          nextFD  I
           10   26     6              me  Lsun/nio/ch/KQueueSelectorImpl$MapEntry;
           12   26     7            rOps  I
           13   26     8             ski  Lsun/nio/ch/SelectionKeyImpl;
      Exception table:
        from    to  target  type
          30    33      34  any
          34    35      34  any
    Exceptions:
      throws java.io.IOException
    MethodParameters:
         Name  Flags
      entries  

  protected void implClose();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // sun.nio.ch.KQueueSelectorImpl this
         0: .line 189
            aload 0 /* this */
            getfield sun.nio.ch.KQueueSelectorImpl.closed:Z
            ifne 26
         1: .line 190
            aload 0 /* this */
            iconst_1
            putfield sun.nio.ch.KQueueSelectorImpl.closed:Z
         2: .line 193
            aload 0 /* this */
            getfield sun.nio.ch.KQueueSelectorImpl.interruptLock:Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         3: .line 194
            aload 0 /* this */
            iconst_1
            putfield sun.nio.ch.KQueueSelectorImpl.interruptTriggered:Z
         4: .line 193
            aload 1
            monitorexit
         5: goto 8
      StackMap locals: sun.nio.ch.KQueueSelectorImpl java.lang.Object
      StackMap stack: java.lang.Throwable
         6: aload 1
            monitorexit
         7: athrow
         8: .line 197
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.nio.ch.KQueueSelectorImpl.fd0:I
            invokestatic sun.nio.ch.FileDispatcherImpl.closeIntFD:(I)V
         9: .line 198
            aload 0 /* this */
            getfield sun.nio.ch.KQueueSelectorImpl.fd1:I
            invokestatic sun.nio.ch.FileDispatcherImpl.closeIntFD:(I)V
        10: .line 199
            aload 0 /* this */
            getfield sun.nio.ch.KQueueSelectorImpl.kqueueWrapper:Lsun/nio/ch/KQueueArrayWrapper;
            ifnull 24
        11: .line 200
            aload 0 /* this */
            getfield sun.nio.ch.KQueueSelectorImpl.kqueueWrapper:Lsun/nio/ch/KQueueArrayWrapper;
            invokevirtual sun.nio.ch.KQueueArrayWrapper.close:()V
        12: .line 201
            aload 0 /* this */
            aconst_null
            putfield sun.nio.ch.KQueueSelectorImpl.kqueueWrapper:Lsun/nio/ch/KQueueArrayWrapper;
        13: .line 202
            aload 0 /* this */
            aconst_null
            putfield sun.nio.ch.KQueueSelectorImpl.selectedKeys:Ljava/util/Set;
        14: .line 205
            aload 0 /* this */
            getfield sun.nio.ch.KQueueSelectorImpl.keys:Ljava/util/HashSet;
            invokevirtual java.util.HashSet.iterator:()Ljava/util/Iterator;
            astore 1 /* i */
        start local 1 // java.util.Iterator i
        15: .line 206
            goto 22
        16: .line 207
      StackMap locals: java.util.Iterator
      StackMap stack:
            aload 1 /* i */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast sun.nio.ch.SelectionKeyImpl
            astore 2 /* ski */
        start local 2 // sun.nio.ch.SelectionKeyImpl ski
        17: .line 208
            aload 0 /* this */
            aload 2 /* ski */
            invokevirtual sun.nio.ch.KQueueSelectorImpl.deregister:(Ljava/nio/channels/spi/AbstractSelectionKey;)V
        18: .line 209
            aload 2 /* ski */
            invokevirtual sun.nio.ch.SelectionKeyImpl.channel:()Ljava/nio/channels/SelectableChannel;
            astore 3 /* selch */
        start local 3 // java.nio.channels.SelectableChannel selch
        19: .line 210
            aload 3 /* selch */
            invokevirtual java.nio.channels.SelectableChannel.isOpen:()Z
            ifne 21
            aload 3 /* selch */
            invokevirtual java.nio.channels.SelectableChannel.isRegistered:()Z
            ifne 21
        20: .line 211
            aload 3 /* selch */
            checkcast sun.nio.ch.SelChImpl
            invokeinterface sun.nio.ch.SelChImpl.kill:()V
        21: .line 212
      StackMap locals: sun.nio.ch.SelectionKeyImpl java.nio.channels.SelectableChannel
      StackMap stack:
            aload 1 /* i */
            invokeinterface java.util.Iterator.remove:()V
        end local 3 // java.nio.channels.SelectableChannel selch
        end local 2 // sun.nio.ch.SelectionKeyImpl ski
        22: .line 206
      StackMap locals:
      StackMap stack:
            aload 1 /* i */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 16
        23: .line 214
            aload 0 /* this */
            iconst_0
            putfield sun.nio.ch.KQueueSelectorImpl.totalChannels:I
        end local 1 // java.util.Iterator i
        24: .line 216
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_m1
            putfield sun.nio.ch.KQueueSelectorImpl.fd0:I
        25: .line 217
            aload 0 /* this */
            iconst_m1
            putfield sun.nio.ch.KQueueSelectorImpl.fd1:I
        26: .line 219
      StackMap locals:
      StackMap stack:
            return
        end local 0 // sun.nio.ch.KQueueSelectorImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   27     0   this  Lsun/nio/ch/KQueueSelectorImpl;
           15   24     1      i  Ljava/util/Iterator<Ljava/nio/channels/SelectionKey;>;
           17   22     2    ski  Lsun/nio/ch/SelectionKeyImpl;
           19   22     3  selch  Ljava/nio/channels/SelectableChannel;
      Exception table:
        from    to  target  type
           3     5       6  any
           6     7       6  any
    Exceptions:
      throws java.io.IOException

  protected void implRegister(sun.nio.ch.SelectionKeyImpl);
    descriptor: (Lsun/nio/ch/SelectionKeyImpl;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // sun.nio.ch.KQueueSelectorImpl this
        start local 1 // sun.nio.ch.SelectionKeyImpl ski
         0: .line 223
            aload 0 /* this */
            getfield sun.nio.ch.KQueueSelectorImpl.closed:Z
            ifeq 2
         1: .line 224
            new java.nio.channels.ClosedSelectorException
            dup
            invokespecial java.nio.channels.ClosedSelectorException.<init>:()V
            athrow
         2: .line 225
      StackMap locals:
      StackMap stack:
            aload 1 /* ski */
            getfield sun.nio.ch.SelectionKeyImpl.channel:Lsun/nio/ch/SelChImpl;
            invokeinterface sun.nio.ch.SelChImpl.getFD:()Ljava/io/FileDescriptor;
            invokestatic sun.nio.ch.IOUtil.fdVal:(Ljava/io/FileDescriptor;)I
            istore 2 /* fd */
        start local 2 // int fd
         3: .line 226
            aload 0 /* this */
            getfield sun.nio.ch.KQueueSelectorImpl.fdMap:Ljava/util/HashMap;
            iload 2 /* fd */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            new sun.nio.ch.KQueueSelectorImpl$MapEntry
            dup
            aload 1 /* ski */
            invokespecial sun.nio.ch.KQueueSelectorImpl$MapEntry.<init>:(Lsun/nio/ch/SelectionKeyImpl;)V
            invokevirtual java.util.HashMap.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         4: .line 227
            aload 0 /* this */
            dup
            getfield sun.nio.ch.KQueueSelectorImpl.totalChannels:I
            iconst_1
            iadd
            putfield sun.nio.ch.KQueueSelectorImpl.totalChannels:I
         5: .line 228
            aload 0 /* this */
            getfield sun.nio.ch.KQueueSelectorImpl.keys:Ljava/util/HashSet;
            aload 1 /* ski */
            invokevirtual java.util.HashSet.add:(Ljava/lang/Object;)Z
            pop
         6: .line 229
            return
        end local 2 // int fd
        end local 1 // sun.nio.ch.SelectionKeyImpl ski
        end local 0 // sun.nio.ch.KQueueSelectorImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lsun/nio/ch/KQueueSelectorImpl;
            0    7     1   ski  Lsun/nio/ch/SelectionKeyImpl;
            3    7     2    fd  I
    MethodParameters:
      Name  Flags
      ski   

  protected void implDereg(sun.nio.ch.SelectionKeyImpl);
    descriptor: (Lsun/nio/ch/SelectionKeyImpl;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // sun.nio.ch.KQueueSelectorImpl this
        start local 1 // sun.nio.ch.SelectionKeyImpl ski
         0: .line 233
            aload 1 /* ski */
            getfield sun.nio.ch.SelectionKeyImpl.channel:Lsun/nio/ch/SelChImpl;
            invokeinterface sun.nio.ch.SelChImpl.getFDVal:()I
            istore 2 /* fd */
        start local 2 // int fd
         1: .line 234
            aload 0 /* this */
            getfield sun.nio.ch.KQueueSelectorImpl.fdMap:Ljava/util/HashMap;
            iload 2 /* fd */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokevirtual java.util.HashMap.remove:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         2: .line 235
            aload 0 /* this */
            getfield sun.nio.ch.KQueueSelectorImpl.kqueueWrapper:Lsun/nio/ch/KQueueArrayWrapper;
            aload 1 /* ski */
            getfield sun.nio.ch.SelectionKeyImpl.channel:Lsun/nio/ch/SelChImpl;
            invokevirtual sun.nio.ch.KQueueArrayWrapper.release:(Lsun/nio/ch/SelChImpl;)V
         3: .line 236
            aload 0 /* this */
            dup
            getfield sun.nio.ch.KQueueSelectorImpl.totalChannels:I
            iconst_1
            isub
            putfield sun.nio.ch.KQueueSelectorImpl.totalChannels:I
         4: .line 237
            aload 0 /* this */
            getfield sun.nio.ch.KQueueSelectorImpl.keys:Ljava/util/HashSet;
            aload 1 /* ski */
            invokevirtual java.util.HashSet.remove:(Ljava/lang/Object;)Z
            pop
         5: .line 238
            aload 0 /* this */
            getfield sun.nio.ch.KQueueSelectorImpl.selectedKeys:Ljava/util/Set;
            aload 1 /* ski */
            invokeinterface java.util.Set.remove:(Ljava/lang/Object;)Z
            pop
         6: .line 239
            aload 0 /* this */
            aload 1 /* ski */
            invokevirtual sun.nio.ch.KQueueSelectorImpl.deregister:(Ljava/nio/channels/spi/AbstractSelectionKey;)V
         7: .line 240
            aload 1 /* ski */
            invokevirtual sun.nio.ch.SelectionKeyImpl.channel:()Ljava/nio/channels/SelectableChannel;
            astore 3 /* selch */
        start local 3 // java.nio.channels.SelectableChannel selch
         8: .line 241
            aload 3 /* selch */
            invokevirtual java.nio.channels.SelectableChannel.isOpen:()Z
            ifne 10
            aload 3 /* selch */
            invokevirtual java.nio.channels.SelectableChannel.isRegistered:()Z
            ifne 10
         9: .line 242
            aload 3 /* selch */
            checkcast sun.nio.ch.SelChImpl
            invokeinterface sun.nio.ch.SelChImpl.kill:()V
        10: .line 243
      StackMap locals: int java.nio.channels.SelectableChannel
      StackMap stack:
            return
        end local 3 // java.nio.channels.SelectableChannel selch
        end local 2 // int fd
        end local 1 // sun.nio.ch.SelectionKeyImpl ski
        end local 0 // sun.nio.ch.KQueueSelectorImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   11     0   this  Lsun/nio/ch/KQueueSelectorImpl;
            0   11     1    ski  Lsun/nio/ch/SelectionKeyImpl;
            1   11     2     fd  I
            8   11     3  selch  Ljava/nio/channels/SelectableChannel;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      ski   

  public void putEventOps(sun.nio.ch.SelectionKeyImpl, int);
    descriptor: (Lsun/nio/ch/SelectionKeyImpl;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // sun.nio.ch.KQueueSelectorImpl this
        start local 1 // sun.nio.ch.SelectionKeyImpl ski
        start local 2 // int ops
         0: .line 247
            aload 0 /* this */
            getfield sun.nio.ch.KQueueSelectorImpl.closed:Z
            ifeq 2
         1: .line 248
            new java.nio.channels.ClosedSelectorException
            dup
            invokespecial java.nio.channels.ClosedSelectorException.<init>:()V
            athrow
         2: .line 249
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.nio.ch.KQueueSelectorImpl.kqueueWrapper:Lsun/nio/ch/KQueueArrayWrapper;
            aload 1 /* ski */
            getfield sun.nio.ch.SelectionKeyImpl.channel:Lsun/nio/ch/SelChImpl;
            iload 2 /* ops */
            invokevirtual sun.nio.ch.KQueueArrayWrapper.setInterest:(Lsun/nio/ch/SelChImpl;I)V
         3: .line 250
            return
        end local 2 // int ops
        end local 1 // sun.nio.ch.SelectionKeyImpl ski
        end local 0 // sun.nio.ch.KQueueSelectorImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lsun/nio/ch/KQueueSelectorImpl;
            0    4     1   ski  Lsun/nio/ch/SelectionKeyImpl;
            0    4     2   ops  I
    MethodParameters:
      Name  Flags
      ski   
      ops   

  public java.nio.channels.Selector wakeup();
    descriptor: ()Ljava/nio/channels/Selector;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // sun.nio.ch.KQueueSelectorImpl this
         0: .line 254
            aload 0 /* this */
            getfield sun.nio.ch.KQueueSelectorImpl.interruptLock:Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         1: .line 255
            aload 0 /* this */
            getfield sun.nio.ch.KQueueSelectorImpl.interruptTriggered:Z
            ifne 4
         2: .line 256
            aload 0 /* this */
            getfield sun.nio.ch.KQueueSelectorImpl.kqueueWrapper:Lsun/nio/ch/KQueueArrayWrapper;
            invokevirtual sun.nio.ch.KQueueArrayWrapper.interrupt:()V
         3: .line 257
            aload 0 /* this */
            iconst_1
            putfield sun.nio.ch.KQueueSelectorImpl.interruptTriggered:Z
         4: .line 254
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 1
            monitorexit
         5: goto 8
      StackMap locals:
      StackMap stack: java.lang.Throwable
         6: aload 1
            monitorexit
         7: athrow
         8: .line 260
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 0 // sun.nio.ch.KQueueSelectorImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lsun/nio/ch/KQueueSelectorImpl;
      Exception table:
        from    to  target  type
           1     5       6  any
           6     7       6  any
}
SourceFile: "KQueueSelectorImpl.java"
NestMembers:
  sun.nio.ch.KQueueSelectorImpl$MapEntry
InnerClasses:
  private MapEntry = sun.nio.ch.KQueueSelectorImpl$MapEntry of sun.nio.ch.KQueueSelectorImpl