final class io.netty.channel.epoll.EpollEventArray
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: io.netty.channel.epoll.EpollEventArray
  super_class: java.lang.Object
{
  private static final int EPOLL_EVENT_SIZE;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final int EPOLL_DATA_OFFSET;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

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

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

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 40
            invokestatic io.netty.channel.epoll.Native.sizeofEpollEvent:()I
            putstatic io.netty.channel.epoll.EpollEventArray.EPOLL_EVENT_SIZE:I
         1: .line 42
            invokestatic io.netty.channel.epoll.Native.offsetofEpollData:()I
            putstatic io.netty.channel.epoll.EpollEventArray.EPOLL_DATA_OFFSET:I
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void <init>(int);
    descriptor: (I)V
    flags: (0x0000) 
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // io.netty.channel.epoll.EpollEventArray this
        start local 1 // int length
         0: .line 47
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 48
            iload 1 /* length */
            iconst_1
            if_icmpge 3
         2: .line 49
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            ldc "length must be >= 1 but was "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* length */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 51
      StackMap locals: io.netty.channel.epoll.EpollEventArray int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* length */
            putfield io.netty.channel.epoll.EpollEventArray.length:I
         4: .line 52
            aload 0 /* this */
            iload 1 /* length */
            invokestatic io.netty.channel.epoll.EpollEventArray.allocate:(I)J
            putfield io.netty.channel.epoll.EpollEventArray.memoryAddress:J
         5: .line 53
            return
        end local 1 // int length
        end local 0 // io.netty.channel.epoll.EpollEventArray this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lio/netty/channel/epoll/EpollEventArray;
            0    6     1  length  I
    MethodParameters:
        Name  Flags
      length  

  private static long allocate(int);
    descriptor: (I)J
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // int length
         0: .line 56
            iload 0 /* length */
            getstatic io.netty.channel.epoll.EpollEventArray.EPOLL_EVENT_SIZE:I
            imul
            i2l
            invokestatic io.netty.util.internal.PlatformDependent.allocateMemory:(J)J
            lreturn
        end local 0 // int length
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0  length  I
    MethodParameters:
        Name  Flags
      length  

  long memoryAddress();
    descriptor: ()J
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.netty.channel.epoll.EpollEventArray this
         0: .line 63
            aload 0 /* this */
            getfield io.netty.channel.epoll.EpollEventArray.memoryAddress:J
            lreturn
        end local 0 // io.netty.channel.epoll.EpollEventArray this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/channel/epoll/EpollEventArray;

  int length();
    descriptor: ()I
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.channel.epoll.EpollEventArray this
         0: .line 71
            aload 0 /* this */
            getfield io.netty.channel.epoll.EpollEventArray.length:I
            ireturn
        end local 0 // io.netty.channel.epoll.EpollEventArray this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/channel/epoll/EpollEventArray;

  void increase();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.netty.channel.epoll.EpollEventArray this
         0: .line 79
            aload 0 /* this */
            dup
            getfield io.netty.channel.epoll.EpollEventArray.length:I
            iconst_1
            ishl
            putfield io.netty.channel.epoll.EpollEventArray.length:I
         1: .line 80
            aload 0 /* this */
            invokevirtual io.netty.channel.epoll.EpollEventArray.free:()V
         2: .line 81
            aload 0 /* this */
            aload 0 /* this */
            getfield io.netty.channel.epoll.EpollEventArray.length:I
            invokestatic io.netty.channel.epoll.EpollEventArray.allocate:(I)J
            putfield io.netty.channel.epoll.EpollEventArray.memoryAddress:J
         3: .line 82
            return
        end local 0 // io.netty.channel.epoll.EpollEventArray this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/netty/channel/epoll/EpollEventArray;

  void free();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.netty.channel.epoll.EpollEventArray this
         0: .line 88
            aload 0 /* this */
            getfield io.netty.channel.epoll.EpollEventArray.memoryAddress:J
            invokestatic io.netty.util.internal.PlatformDependent.freeMemory:(J)V
         1: .line 89
            return
        end local 0 // io.netty.channel.epoll.EpollEventArray this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/netty/channel/epoll/EpollEventArray;

  int events(int);
    descriptor: (I)I
    flags: (0x0000) 
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // io.netty.channel.epoll.EpollEventArray this
        start local 1 // int index
         0: .line 95
            aload 0 /* this */
            getfield io.netty.channel.epoll.EpollEventArray.memoryAddress:J
            iload 1 /* index */
            getstatic io.netty.channel.epoll.EpollEventArray.EPOLL_EVENT_SIZE:I
            imul
            i2l
            ladd
            invokestatic io.netty.util.internal.PlatformDependent.getInt:(J)I
            ireturn
        end local 1 // int index
        end local 0 // io.netty.channel.epoll.EpollEventArray this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/channel/epoll/EpollEventArray;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  int fd(int);
    descriptor: (I)I
    flags: (0x0000) 
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // io.netty.channel.epoll.EpollEventArray this
        start local 1 // int index
         0: .line 102
            aload 0 /* this */
            getfield io.netty.channel.epoll.EpollEventArray.memoryAddress:J
            iload 1 /* index */
            getstatic io.netty.channel.epoll.EpollEventArray.EPOLL_EVENT_SIZE:I
            imul
            i2l
            ladd
            getstatic io.netty.channel.epoll.EpollEventArray.EPOLL_DATA_OFFSET:I
            i2l
            ladd
            invokestatic io.netty.util.internal.PlatformDependent.getInt:(J)I
            ireturn
        end local 1 // int index
        end local 0 // io.netty.channel.epoll.EpollEventArray this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/channel/epoll/EpollEventArray;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  
}
SourceFile: "EpollEventArray.java"