class sun.nio.ch.EPollSelectorImpl extends sun.nio.ch.SelectorImpl
minor version: 0
major version: 59
flags: flags: (0x0020) ACC_SUPER
this_class: sun.nio.ch.EPollSelectorImpl
super_class: sun.nio.ch.SelectorImpl
{
private static final int NUM_EPOLLEVENTS;
descriptor: I
flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
private final int epfd;
descriptor: I
flags: (0x0012) ACC_PRIVATE, ACC_FINAL
private final long pollArrayAddress;
descriptor: J
flags: (0x0012) ACC_PRIVATE, ACC_FINAL
private final int fd0;
descriptor: I
flags: (0x0012) ACC_PRIVATE, ACC_FINAL
private final int fd1;
descriptor: I
flags: (0x0012) ACC_PRIVATE, ACC_FINAL
private final java.util.Map<java.lang.Integer, sun.nio.ch.SelectionKeyImpl> fdToKey;
descriptor: Ljava/util/Map;
flags: (0x0012) ACC_PRIVATE, ACC_FINAL
Signature: Ljava/util/Map<Ljava/lang/Integer;Lsun/nio/ch/SelectionKeyImpl;>;
private final java.lang.Object updateLock;
descriptor: Ljava/lang/Object;
flags: (0x0012) ACC_PRIVATE, ACC_FINAL
private final java.util.Deque<sun.nio.ch.SelectionKeyImpl> updateKeys;
descriptor: Ljava/util/Deque;
flags: (0x0012) ACC_PRIVATE, ACC_FINAL
Signature: Ljava/util/Deque<Lsun/nio/ch/SelectionKeyImpl;>;
private final java.lang.Object interruptLock;
descriptor: Ljava/lang/Object;
flags: (0x0012) ACC_PRIVATE, ACC_FINAL
private boolean interruptTriggered;
descriptor: Z
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=2, locals=0, args_size=0
0: ldc Lsun/nio/ch/EPollSelectorImpl;
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 sun.nio.ch.EPollSelectorImpl.$assertionsDisabled:Z
3: invokestatic sun.nio.ch.IOUtil.fdLimit:()I
sipush 1024
invokestatic java.lang.Math.min:(II)I
putstatic sun.nio.ch.EPollSelectorImpl.NUM_EPOLLEVENTS:I
return
LocalVariableTable:
Start End Slot Name Signature
void <init>(java.nio.channels.spi.SelectorProvider);
descriptor: (Ljava/nio/channels/spi/SelectorProvider;)V
flags: (0x0000)
Code:
stack=4, locals=4, args_size=2
start local 0 start local 1 0: aload 0
aload 1
invokespecial sun.nio.ch.SelectorImpl.<init>:(Ljava/nio/channels/spi/SelectorProvider;)V
1: aload 0
new java.util.HashMap
dup
invokespecial java.util.HashMap.<init>:()V
putfield sun.nio.ch.EPollSelectorImpl.fdToKey:Ljava/util/Map;
2: aload 0
new java.lang.Object
dup
invokespecial java.lang.Object.<init>:()V
putfield sun.nio.ch.EPollSelectorImpl.updateLock:Ljava/lang/Object;
3: aload 0
new java.util.ArrayDeque
dup
invokespecial java.util.ArrayDeque.<init>:()V
putfield sun.nio.ch.EPollSelectorImpl.updateKeys:Ljava/util/Deque;
4: aload 0
new java.lang.Object
dup
invokespecial java.lang.Object.<init>:()V
putfield sun.nio.ch.EPollSelectorImpl.interruptLock:Ljava/lang/Object;
5: aload 0
invokestatic sun.nio.ch.EPoll.create:()I
putfield sun.nio.ch.EPollSelectorImpl.epfd:I
6: aload 0
getstatic sun.nio.ch.EPollSelectorImpl.NUM_EPOLLEVENTS:I
invokestatic sun.nio.ch.EPoll.allocatePollArray:(I)J
putfield sun.nio.ch.EPollSelectorImpl.pollArrayAddress:J
7: iconst_0
invokestatic sun.nio.ch.IOUtil.makePipe:(Z)J
lstore 2
start local 2 8: aload 0
lload 2
bipush 32
lushr
l2i
putfield sun.nio.ch.EPollSelectorImpl.fd0:I
9: aload 0
lload 2
l2i
putfield sun.nio.ch.EPollSelectorImpl.fd1:I
end local 2 10: goto 15
StackMap locals: sun.nio.ch.EPollSelectorImpl java.nio.channels.spi.SelectorProvider
StackMap stack: java.io.IOException
11: astore 2
start local 2 12: aload 0
getfield sun.nio.ch.EPollSelectorImpl.pollArrayAddress:J
invokestatic sun.nio.ch.EPoll.freePollArray:(J)V
13: aload 0
getfield sun.nio.ch.EPollSelectorImpl.epfd:I
invokestatic sun.nio.ch.FileDispatcherImpl.closeIntFD:(I)V
14: aload 2
athrow
end local 2 15: StackMap locals:
StackMap stack:
aload 0
getfield sun.nio.ch.EPollSelectorImpl.epfd:I
iconst_1
aload 0
getfield sun.nio.ch.EPollSelectorImpl.fd0:I
iconst_1
invokestatic sun.nio.ch.EPoll.ctl:(IIII)I
pop
16: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 17 0 this Lsun/nio/ch/EPollSelectorImpl;
0 17 1 sp Ljava/nio/channels/spi/SelectorProvider;
8 10 2 fds J
12 15 2 ioe Ljava/io/IOException;
Exception table:
from to target type
7 10 11 Class java.io.IOException
Exceptions:
throws java.io.IOException
MethodParameters:
Name Flags
sp
private void ensureOpen();
descriptor: ()V
flags: (0x0002) ACC_PRIVATE
Code:
stack=2, locals=1, args_size=1
start local 0 0: aload 0
invokevirtual sun.nio.ch.EPollSelectorImpl.isOpen:()Z
ifne 2
1: new java.nio.channels.ClosedSelectorException
dup
invokespecial java.nio.channels.ClosedSelectorException.<init>:()V
athrow
2: StackMap locals:
StackMap stack:
return
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lsun/nio/ch/EPollSelectorImpl;
protected int doSelect(java.util.function.Consumer<java.nio.channels.SelectionKey>, );
descriptor: (Ljava/util/function/Consumer;J)I
flags: (0x0004) ACC_PROTECTED
Code:
stack=6, locals=13, args_size=3
start local 0 start local 1 start local 2 0: getstatic sun.nio.ch.EPollSelectorImpl.$assertionsDisabled:Z
ifne 1
aload 0
invokestatic java.lang.Thread.holdsLock:(Ljava/lang/Object;)Z
ifne 1
new java.lang.AssertionError
dup
invokespecial java.lang.AssertionError.<init>:()V
athrow
1: StackMap locals:
StackMap stack:
lload 2
ldc 2147483647
invokestatic java.lang.Math.min:(JJ)J
l2i
istore 4
start local 4 2: iload 4
ifeq 3
iconst_1
goto 4
StackMap locals: int
StackMap stack:
3: iconst_0
StackMap locals:
StackMap stack: int
4: istore 5
start local 5 5: iload 4
ifle 6
iconst_1
goto 7
StackMap locals: int
StackMap stack:
6: iconst_0
StackMap locals:
StackMap stack: int
7: istore 6
start local 6 8: aload 0
invokevirtual sun.nio.ch.EPollSelectorImpl.processUpdateQueue:()V
9: aload 0
invokevirtual sun.nio.ch.EPollSelectorImpl.processDeregisterQueue:()V
10: aload 0
iload 5
invokevirtual sun.nio.ch.EPollSelectorImpl.begin:(Z)V
11: StackMap locals: int
StackMap stack:
iload 6
ifeq 12
invokestatic java.lang.System.nanoTime:()J
goto 13
StackMap locals:
StackMap stack:
12: lconst_0
StackMap locals:
StackMap stack: long
13: lstore 8
start local 8 14: aload 0
getfield sun.nio.ch.EPollSelectorImpl.epfd:I
aload 0
getfield sun.nio.ch.EPollSelectorImpl.pollArrayAddress:J
getstatic sun.nio.ch.EPollSelectorImpl.NUM_EPOLLEVENTS:I
iload 4
invokestatic sun.nio.ch.EPoll.wait:(IJII)I
istore 7
start local 7 15: iload 7
bipush -3
if_icmpne 20
iload 6
ifeq 20
16: invokestatic java.lang.System.nanoTime:()J
lload 8
lsub
lstore 10
start local 10 17: iload 4
i2l
getstatic java.util.concurrent.TimeUnit.MILLISECONDS:Ljava/util/concurrent/TimeUnit;
lload 10
getstatic java.util.concurrent.TimeUnit.NANOSECONDS:Ljava/util/concurrent/TimeUnit;
invokevirtual java.util.concurrent.TimeUnit.convert:(JLjava/util/concurrent/TimeUnit;)J
lsub
l2i
istore 4
18: iload 4
ifgt 20
19: iconst_0
istore 7
end local 10 end local 8 20: StackMap locals: int
StackMap stack:
iload 7
bipush -3
if_icmpeq 11
21: getstatic sun.nio.ch.EPollSelectorImpl.$assertionsDisabled:Z
ifne 25
iload 7
invokestatic sun.nio.ch.IOStatus.check:(I)Z
ifne 25
new java.lang.AssertionError
dup
invokespecial java.lang.AssertionError.<init>:()V
athrow
end local 7 22: StackMap locals: sun.nio.ch.EPollSelectorImpl java.util.function.Consumer long int int int
StackMap stack: java.lang.Throwable
astore 12
23: aload 0
iload 5
invokevirtual sun.nio.ch.EPollSelectorImpl.end:(Z)V
24: aload 12
athrow
start local 7 25: StackMap locals: int
StackMap stack:
aload 0
iload 5
invokevirtual sun.nio.ch.EPollSelectorImpl.end:(Z)V
26: aload 0
invokevirtual sun.nio.ch.EPollSelectorImpl.processDeregisterQueue:()V
27: aload 0
iload 7
aload 1
invokevirtual sun.nio.ch.EPollSelectorImpl.processEvents:(ILjava/util/function/Consumer;)I
ireturn
end local 7 end local 6 end local 5 end local 4 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 28 0 this Lsun/nio/ch/EPollSelectorImpl;
0 28 1 action Ljava/util/function/Consumer<Ljava/nio/channels/SelectionKey;>;
0 28 2 timeout J
2 28 4 to I
5 28 5 blocking Z
8 28 6 timedPoll Z
15 22 7 numEntries I
25 28 7 numEntries I
14 20 8 startTime J
17 20 10 adjust J
Exception table:
from to target type
10 22 22 any
Exceptions:
throws java.io.IOException
Signature: (Ljava/util/function/Consumer<Ljava/nio/channels/SelectionKey;>;J)I
MethodParameters:
Name Flags
action
timeout
private void processUpdateQueue();
descriptor: ()V
flags: (0x0002) ACC_PRIVATE
Code:
stack=4, locals=7, args_size=1
start local 0 0: getstatic sun.nio.ch.EPollSelectorImpl.$assertionsDisabled:Z
ifne 1
aload 0
invokestatic java.lang.Thread.holdsLock:(Ljava/lang/Object;)Z
ifne 1
new java.lang.AssertionError
dup
invokespecial java.lang.AssertionError.<init>:()V
athrow
1: StackMap locals:
StackMap stack:
aload 0
getfield sun.nio.ch.EPollSelectorImpl.updateLock:Ljava/lang/Object;
dup
astore 1
monitorenter
2: goto 18
start local 2 3: StackMap locals: java.lang.Object sun.nio.ch.SelectionKeyImpl
StackMap stack:
aload 2
invokevirtual sun.nio.ch.SelectionKeyImpl.isValid:()Z
ifeq 18
4: aload 2
invokevirtual sun.nio.ch.SelectionKeyImpl.getFDVal:()I
istore 3
start local 3 5: aload 0
getfield sun.nio.ch.EPollSelectorImpl.fdToKey:Ljava/util/Map;
iload 3
invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
aload 2
invokeinterface java.util.Map.putIfAbsent:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
checkcast sun.nio.ch.SelectionKeyImpl
astore 4
start local 4 6: getstatic sun.nio.ch.EPollSelectorImpl.$assertionsDisabled:Z
ifne 7
aload 4
ifnull 7
aload 4
aload 2
if_acmpeq 7
new java.lang.AssertionError
dup
invokespecial java.lang.AssertionError.<init>:()V
athrow
7: StackMap locals: int sun.nio.ch.SelectionKeyImpl
StackMap stack:
aload 2
invokevirtual sun.nio.ch.SelectionKeyImpl.translateInterestOps:()I
istore 5
start local 5 8: aload 2
invokevirtual sun.nio.ch.SelectionKeyImpl.registeredEvents:()I
istore 6
start local 6 9: iload 5
iload 6
if_icmpeq 18
10: iload 5
ifne 13
11: aload 0
getfield sun.nio.ch.EPollSelectorImpl.epfd:I
iconst_2
iload 3
iconst_0
invokestatic sun.nio.ch.EPoll.ctl:(IIII)I
pop
12: goto 17
13: StackMap locals: int int
StackMap stack:
iload 6
ifne 16
14: aload 0
getfield sun.nio.ch.EPollSelectorImpl.epfd:I
iconst_1
iload 3
iload 5
invokestatic sun.nio.ch.EPoll.ctl:(IIII)I
pop
15: goto 17
16: StackMap locals:
StackMap stack:
aload 0
getfield sun.nio.ch.EPollSelectorImpl.epfd:I
iconst_3
iload 3
iload 5
invokestatic sun.nio.ch.EPoll.ctl:(IIII)I
pop
17: StackMap locals:
StackMap stack:
aload 2
iload 5
invokevirtual sun.nio.ch.SelectionKeyImpl.registeredEvents:(I)V
end local 6 end local 5 end local 4 end local 3 end local 2 18: StackMap locals: sun.nio.ch.EPollSelectorImpl java.lang.Object
StackMap stack:
aload 0
getfield sun.nio.ch.EPollSelectorImpl.updateKeys:Ljava/util/Deque;
invokeinterface java.util.Deque.pollFirst:()Ljava/lang/Object;
checkcast sun.nio.ch.SelectionKeyImpl
dup
astore 2
start local 2 19: ifnonnull 3
end local 2 20: aload 1
monitorexit
21: goto 24
StackMap locals:
StackMap stack: java.lang.Throwable
22: aload 1
monitorexit
23: athrow
24: StackMap locals:
StackMap stack:
return
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 25 0 this Lsun/nio/ch/EPollSelectorImpl;
3 18 2 ski Lsun/nio/ch/SelectionKeyImpl;
19 20 2 ski Lsun/nio/ch/SelectionKeyImpl;
5 18 3 fd I
6 18 4 previous Lsun/nio/ch/SelectionKeyImpl;
8 18 5 newEvents I
9 18 6 registeredEvents I
Exception table:
from to target type
2 21 22 any
22 23 22 any
private int processEvents(int, java.util.function.Consumer<java.nio.channels.SelectionKey>);
descriptor: (ILjava/util/function/Consumer;)I
flags: (0x0002) ACC_PRIVATE
Code:
stack=5, locals=11, args_size=3
start local 0 start local 1 start local 2 0: getstatic sun.nio.ch.EPollSelectorImpl.$assertionsDisabled:Z
ifne 1
aload 0
invokestatic java.lang.Thread.holdsLock:(Ljava/lang/Object;)Z
ifne 1
new java.lang.AssertionError
dup
invokespecial java.lang.AssertionError.<init>:()V
athrow
1: StackMap locals:
StackMap stack:
iconst_0
istore 3
start local 3 2: iconst_0
istore 4
start local 4 3: iconst_0
istore 5
start local 5 4: goto 15
5: StackMap locals: int int int
StackMap stack:
aload 0
getfield sun.nio.ch.EPollSelectorImpl.pollArrayAddress:J
iload 5
invokestatic sun.nio.ch.EPoll.getEvent:(JI)J
lstore 6
start local 6 6: lload 6
invokestatic sun.nio.ch.EPoll.getDescriptor:(J)I
istore 8
start local 8 7: iload 8
aload 0
getfield sun.nio.ch.EPollSelectorImpl.fd0:I
if_icmpne 10
8: iconst_1
istore 3
9: goto 14
10: StackMap locals: long int
StackMap stack:
aload 0
getfield sun.nio.ch.EPollSelectorImpl.fdToKey:Ljava/util/Map;
iload 8
invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
checkcast sun.nio.ch.SelectionKeyImpl
astore 9
start local 9 11: aload 9
ifnull 14
12: lload 6
invokestatic sun.nio.ch.EPoll.getEvents:(J)I
istore 10
start local 10 13: iload 4
aload 0
iload 10
aload 9
aload 2
invokevirtual sun.nio.ch.EPollSelectorImpl.processReadyEvents:(ILsun/nio/ch/SelectionKeyImpl;Ljava/util/function/Consumer;)I
iadd
istore 4
end local 10 end local 9 end local 8 end local 6 14: StackMap locals:
StackMap stack:
iinc 5 1
StackMap locals:
StackMap stack:
15: iload 5
iload 1
if_icmplt 5
end local 5 16: iload 3
ifeq 18
17: aload 0
invokevirtual sun.nio.ch.EPollSelectorImpl.clearInterrupt:()V
18: StackMap locals:
StackMap stack:
iload 4
ireturn
end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 19 0 this Lsun/nio/ch/EPollSelectorImpl;
0 19 1 numEntries I
0 19 2 action Ljava/util/function/Consumer<Ljava/nio/channels/SelectionKey;>;
2 19 3 interrupted Z
3 19 4 numKeysUpdated I
4 16 5 i I
6 14 6 event J
7 14 8 fd I
11 14 9 ski Lsun/nio/ch/SelectionKeyImpl;
13 14 10 rOps I
Exceptions:
throws java.io.IOException
Signature: (ILjava/util/function/Consumer<Ljava/nio/channels/SelectionKey;>;)I
MethodParameters:
Name Flags
numEntries
action
protected void implClose();
descriptor: ()V
flags: (0x0004) ACC_PROTECTED
Code:
stack=2, locals=2, args_size=1
start local 0 0: getstatic sun.nio.ch.EPollSelectorImpl.$assertionsDisabled:Z
ifne 1
aload 0
invokestatic java.lang.Thread.holdsLock:(Ljava/lang/Object;)Z
ifne 1
new java.lang.AssertionError
dup
invokespecial java.lang.AssertionError.<init>:()V
athrow
1: StackMap locals:
StackMap stack:
aload 0
getfield sun.nio.ch.EPollSelectorImpl.interruptLock:Ljava/lang/Object;
dup
astore 1
monitorenter
2: aload 0
iconst_1
putfield sun.nio.ch.EPollSelectorImpl.interruptTriggered:Z
3: aload 1
monitorexit
4: goto 7
StackMap locals: sun.nio.ch.EPollSelectorImpl java.lang.Object
StackMap stack: java.lang.Throwable
5: aload 1
monitorexit
6: athrow
7: StackMap locals:
StackMap stack:
aload 0
getfield sun.nio.ch.EPollSelectorImpl.epfd:I
invokestatic sun.nio.ch.FileDispatcherImpl.closeIntFD:(I)V
8: aload 0
getfield sun.nio.ch.EPollSelectorImpl.pollArrayAddress:J
invokestatic sun.nio.ch.EPoll.freePollArray:(J)V
9: aload 0
getfield sun.nio.ch.EPollSelectorImpl.fd0:I
invokestatic sun.nio.ch.FileDispatcherImpl.closeIntFD:(I)V
10: aload 0
getfield sun.nio.ch.EPollSelectorImpl.fd1:I
invokestatic sun.nio.ch.FileDispatcherImpl.closeIntFD:(I)V
11: return
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 12 0 this Lsun/nio/ch/EPollSelectorImpl;
Exception table:
from to target type
2 4 5 any
5 6 5 any
Exceptions:
throws java.io.IOException
protected void implDereg(sun.nio.ch.SelectionKeyImpl);
descriptor: (Lsun/nio/ch/SelectionKeyImpl;)V
flags: (0x0004) ACC_PROTECTED
Code:
stack=4, locals=3, args_size=2
start local 0 start local 1 0: getstatic sun.nio.ch.EPollSelectorImpl.$assertionsDisabled:Z
ifne 1
aload 1
invokevirtual sun.nio.ch.SelectionKeyImpl.isValid:()Z
ifeq 1
new java.lang.AssertionError
dup
invokespecial java.lang.AssertionError.<init>:()V
athrow
1: StackMap locals:
StackMap stack:
getstatic sun.nio.ch.EPollSelectorImpl.$assertionsDisabled:Z
ifne 2
aload 0
invokestatic java.lang.Thread.holdsLock:(Ljava/lang/Object;)Z
ifne 2
new java.lang.AssertionError
dup
invokespecial java.lang.AssertionError.<init>:()V
athrow
2: StackMap locals:
StackMap stack:
aload 1
invokevirtual sun.nio.ch.SelectionKeyImpl.getFDVal:()I
istore 2
start local 2 3: aload 0
getfield sun.nio.ch.EPollSelectorImpl.fdToKey:Ljava/util/Map;
iload 2
invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
invokeinterface java.util.Map.remove:(Ljava/lang/Object;)Ljava/lang/Object;
ifnull 8
4: aload 1
invokevirtual sun.nio.ch.SelectionKeyImpl.registeredEvents:()I
ifeq 9
5: aload 0
getfield sun.nio.ch.EPollSelectorImpl.epfd:I
iconst_2
iload 2
iconst_0
invokestatic sun.nio.ch.EPoll.ctl:(IIII)I
pop
6: aload 1
iconst_0
invokevirtual sun.nio.ch.SelectionKeyImpl.registeredEvents:(I)V
7: goto 9
8: StackMap locals: int
StackMap stack:
getstatic sun.nio.ch.EPollSelectorImpl.$assertionsDisabled:Z
ifne 9
aload 1
invokevirtual sun.nio.ch.SelectionKeyImpl.registeredEvents:()I
ifeq 9
new java.lang.AssertionError
dup
invokespecial java.lang.AssertionError.<init>:()V
athrow
9: StackMap locals:
StackMap stack:
return
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 10 0 this Lsun/nio/ch/EPollSelectorImpl;
0 10 1 ski Lsun/nio/ch/SelectionKeyImpl;
3 10 2 fd I
Exceptions:
throws java.io.IOException
MethodParameters:
Name Flags
ski
public void setEventOps(sun.nio.ch.SelectionKeyImpl);
descriptor: (Lsun/nio/ch/SelectionKeyImpl;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=3, args_size=2
start local 0 start local 1 0: aload 0
invokevirtual sun.nio.ch.EPollSelectorImpl.ensureOpen:()V
1: aload 0
getfield sun.nio.ch.EPollSelectorImpl.updateLock:Ljava/lang/Object;
dup
astore 2
monitorenter
2: aload 0
getfield sun.nio.ch.EPollSelectorImpl.updateKeys:Ljava/util/Deque;
aload 1
invokeinterface java.util.Deque.addLast:(Ljava/lang/Object;)V
3: aload 2
monitorexit
4: goto 7
StackMap locals: sun.nio.ch.EPollSelectorImpl sun.nio.ch.SelectionKeyImpl java.lang.Object
StackMap stack: java.lang.Throwable
5: aload 2
monitorexit
6: athrow
7: StackMap locals:
StackMap stack:
return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 8 0 this Lsun/nio/ch/EPollSelectorImpl;
0 8 1 ski Lsun/nio/ch/SelectionKeyImpl;
Exception table:
from to target type
2 4 5 any
5 6 5 any
MethodParameters:
Name Flags
ski
public java.nio.channels.Selector wakeup();
descriptor: ()Ljava/nio/channels/Selector;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=3, args_size=1
start local 0 0: aload 0
getfield sun.nio.ch.EPollSelectorImpl.interruptLock:Ljava/lang/Object;
dup
astore 1
monitorenter
1: aload 0
getfield sun.nio.ch.EPollSelectorImpl.interruptTriggered:Z
ifne 7
2: aload 0
getfield sun.nio.ch.EPollSelectorImpl.fd1:I
iconst_0
invokestatic sun.nio.ch.IOUtil.write1:(IB)I
pop
3: goto 6
StackMap locals: sun.nio.ch.EPollSelectorImpl java.lang.Object
StackMap stack: java.io.IOException
4: astore 2
start local 2 5: new java.lang.InternalError
dup
aload 2
invokespecial java.lang.InternalError.<init>:(Ljava/lang/Throwable;)V
athrow
end local 2 6: StackMap locals:
StackMap stack:
aload 0
iconst_1
putfield sun.nio.ch.EPollSelectorImpl.interruptTriggered:Z
7: StackMap locals:
StackMap stack:
aload 1
monitorexit
8: goto 11
StackMap locals:
StackMap stack: java.lang.Throwable
9: aload 1
monitorexit
10: athrow
11: StackMap locals:
StackMap stack:
aload 0
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 12 0 this Lsun/nio/ch/EPollSelectorImpl;
5 6 2 ioe Ljava/io/IOException;
Exception table:
from to target type
2 3 4 Class java.io.IOException
1 8 9 any
9 10 9 any
private void clearInterrupt();
descriptor: ()V
flags: (0x0002) ACC_PRIVATE
Code:
stack=2, locals=2, args_size=1
start local 0 0: aload 0
getfield sun.nio.ch.EPollSelectorImpl.interruptLock:Ljava/lang/Object;
dup
astore 1
monitorenter
1: aload 0
getfield sun.nio.ch.EPollSelectorImpl.fd0:I
invokestatic sun.nio.ch.IOUtil.drain:(I)Z
pop
2: aload 0
iconst_0
putfield sun.nio.ch.EPollSelectorImpl.interruptTriggered:Z
3: aload 1
monitorexit
4: goto 7
StackMap locals: sun.nio.ch.EPollSelectorImpl java.lang.Object
StackMap stack: java.lang.Throwable
5: aload 1
monitorexit
6: athrow
7: StackMap locals:
StackMap stack:
return
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 8 0 this Lsun/nio/ch/EPollSelectorImpl;
Exception table:
from to target type
1 4 5 any
5 6 5 any
Exceptions:
throws java.io.IOException
}
SourceFile: "EPollSelectorImpl.java"