abstract class com.lmax.disruptor.RingBufferFields<E> extends com.lmax.disruptor.RingBufferPad
  minor version: 0
  major version: 59
  flags: flags: (0x0420) ACC_SUPER, ACC_ABSTRACT
  this_class: com.lmax.disruptor.RingBufferFields
  super_class: com.lmax.disruptor.RingBufferPad
{
  private static final int BUFFER_PAD;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final long REF_ARRAY_BASE;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

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

  private static final sun.misc.Unsafe UNSAFE;
    descriptor: Lsun/misc/Unsafe;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

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

  private final java.lang.Object[] entries;
    descriptor: [Ljava/lang/Object;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  protected final int bufferSize;
    descriptor: I
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  protected final com.lmax.disruptor.Sequencer sequencer;
    descriptor: Lcom/lmax/disruptor/Sequencer;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=1, args_size=0
         0: .line 34
            invokestatic com.lmax.disruptor.util.Util.getUnsafe:()Lsun/misc/Unsafe;
            putstatic com.lmax.disruptor.RingBufferFields.UNSAFE:Lsun/misc/Unsafe;
         1: .line 38
            getstatic com.lmax.disruptor.RingBufferFields.UNSAFE:Lsun/misc/Unsafe;
            ldc [Ljava/lang/Object;
            invokevirtual sun.misc.Unsafe.arrayIndexScale:(Ljava/lang/Class;)I
            istore 0 /* scale */
        start local 0 // int scale
         2: .line 39
            iconst_4
            iload 0 /* scale */
            if_icmpne 5
         3: .line 41
            iconst_2
            putstatic com.lmax.disruptor.RingBufferFields.REF_ELEMENT_SHIFT:I
         4: .line 42
            goto 9
         5: .line 43
      StackMap locals: int
      StackMap stack:
            bipush 8
            iload 0 /* scale */
            if_icmpne 8
         6: .line 45
            iconst_3
            putstatic com.lmax.disruptor.RingBufferFields.REF_ELEMENT_SHIFT:I
         7: .line 46
            goto 9
         8: .line 49
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalStateException
            dup
            ldc "Unknown pointer size"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         9: .line 51
      StackMap locals:
      StackMap stack:
            sipush 128
            iload 0 /* scale */
            idiv
            putstatic com.lmax.disruptor.RingBufferFields.BUFFER_PAD:I
        10: .line 53
            getstatic com.lmax.disruptor.RingBufferFields.UNSAFE:Lsun/misc/Unsafe;
            ldc [Ljava/lang/Object;
            invokevirtual sun.misc.Unsafe.arrayBaseOffset:(Ljava/lang/Class;)I
            getstatic com.lmax.disruptor.RingBufferFields.BUFFER_PAD:I
            getstatic com.lmax.disruptor.RingBufferFields.REF_ELEMENT_SHIFT:I
            ishl
            iadd
            i2l
            putstatic com.lmax.disruptor.RingBufferFields.REF_ARRAY_BASE:J
        end local 0 // int scale
        11: .line 54
            return
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            2   11     0  scale  I

  void <init>(com.lmax.disruptor.EventFactory<E>, com.lmax.disruptor.Sequencer);
    descriptor: (Lcom/lmax/disruptor/EventFactory;Lcom/lmax/disruptor/Sequencer;)V
    flags: (0x0000) 
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // com.lmax.disruptor.RingBufferFields this
        start local 1 // com.lmax.disruptor.EventFactory eventFactory
        start local 2 // com.lmax.disruptor.Sequencer sequencer
         0: .line 61
            aload 0 /* this */
            invokespecial com.lmax.disruptor.RingBufferPad.<init>:()V
         1: .line 65
            aload 0 /* this */
            aload 2 /* sequencer */
            putfield com.lmax.disruptor.RingBufferFields.sequencer:Lcom/lmax/disruptor/Sequencer;
         2: .line 66
            aload 0 /* this */
            aload 2 /* sequencer */
            invokeinterface com.lmax.disruptor.Sequencer.getBufferSize:()I
            putfield com.lmax.disruptor.RingBufferFields.bufferSize:I
         3: .line 68
            aload 0 /* this */
            getfield com.lmax.disruptor.RingBufferFields.bufferSize:I
            iconst_1
            if_icmpge 5
         4: .line 70
            new java.lang.IllegalArgumentException
            dup
            ldc "bufferSize must not be less than 1"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 72
      StackMap locals: com.lmax.disruptor.RingBufferFields com.lmax.disruptor.EventFactory com.lmax.disruptor.Sequencer
      StackMap stack:
            aload 0 /* this */
            getfield com.lmax.disruptor.RingBufferFields.bufferSize:I
            invokestatic java.lang.Integer.bitCount:(I)I
            iconst_1
            if_icmpeq 7
         6: .line 74
            new java.lang.IllegalArgumentException
            dup
            ldc "bufferSize must be a power of 2"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         7: .line 77
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.lmax.disruptor.RingBufferFields.bufferSize:I
            iconst_1
            isub
            i2l
            putfield com.lmax.disruptor.RingBufferFields.indexMask:J
         8: .line 78
            aload 0 /* this */
            aload 2 /* sequencer */
            invokeinterface com.lmax.disruptor.Sequencer.getBufferSize:()I
            iconst_2
            getstatic com.lmax.disruptor.RingBufferFields.BUFFER_PAD:I
            imul
            iadd
            anewarray java.lang.Object
            putfield com.lmax.disruptor.RingBufferFields.entries:[Ljava/lang/Object;
         9: .line 79
            aload 0 /* this */
            aload 1 /* eventFactory */
            invokevirtual com.lmax.disruptor.RingBufferFields.fill:(Lcom/lmax/disruptor/EventFactory;)V
        10: .line 80
            return
        end local 2 // com.lmax.disruptor.Sequencer sequencer
        end local 1 // com.lmax.disruptor.EventFactory eventFactory
        end local 0 // com.lmax.disruptor.RingBufferFields this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   11     0          this  Lcom/lmax/disruptor/RingBufferFields<TE;>;
            0   11     1  eventFactory  Lcom/lmax/disruptor/EventFactory<TE;>;
            0   11     2     sequencer  Lcom/lmax/disruptor/Sequencer;
    Signature: (Lcom/lmax/disruptor/EventFactory<TE;>;Lcom/lmax/disruptor/Sequencer;)V
    MethodParameters:
              Name  Flags
      eventFactory  
      sequencer     

  private void fill(com.lmax.disruptor.EventFactory<E>);
    descriptor: (Lcom/lmax/disruptor/EventFactory;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // com.lmax.disruptor.RingBufferFields this
        start local 1 // com.lmax.disruptor.EventFactory eventFactory
         0: .line 84
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         1: goto 4
         2: .line 86
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.lmax.disruptor.RingBufferFields.entries:[Ljava/lang/Object;
            getstatic com.lmax.disruptor.RingBufferFields.BUFFER_PAD:I
            iload 2 /* i */
            iadd
            aload 1 /* eventFactory */
            invokeinterface com.lmax.disruptor.EventFactory.newInstance:()Ljava/lang/Object;
            aastore
         3: .line 84
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         4: iload 2 /* i */
            aload 0 /* this */
            getfield com.lmax.disruptor.RingBufferFields.bufferSize:I
            if_icmplt 2
        end local 2 // int i
         5: .line 88
            return
        end local 1 // com.lmax.disruptor.EventFactory eventFactory
        end local 0 // com.lmax.disruptor.RingBufferFields this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    6     0          this  Lcom/lmax/disruptor/RingBufferFields<TE;>;
            0    6     1  eventFactory  Lcom/lmax/disruptor/EventFactory<TE;>;
            1    5     2             i  I
    Signature: (Lcom/lmax/disruptor/EventFactory<TE;>;)V
    MethodParameters:
              Name  Flags
      eventFactory  

  protected final E elementAt();
    descriptor: (J)Ljava/lang/Object;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=8, locals=3, args_size=2
        start local 0 // com.lmax.disruptor.RingBufferFields this
        start local 1 // long sequence
         0: .line 93
            getstatic com.lmax.disruptor.RingBufferFields.UNSAFE:Lsun/misc/Unsafe;
            aload 0 /* this */
            getfield com.lmax.disruptor.RingBufferFields.entries:[Ljava/lang/Object;
            getstatic com.lmax.disruptor.RingBufferFields.REF_ARRAY_BASE:J
            lload 1 /* sequence */
            aload 0 /* this */
            getfield com.lmax.disruptor.RingBufferFields.indexMask:J
            land
            getstatic com.lmax.disruptor.RingBufferFields.REF_ELEMENT_SHIFT:I
            lshl
            ladd
            invokevirtual sun.misc.Unsafe.getObject:(Ljava/lang/Object;J)Ljava/lang/Object;
            areturn
        end local 1 // long sequence
        end local 0 // com.lmax.disruptor.RingBufferFields this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lcom/lmax/disruptor/RingBufferFields<TE;>;
            0    1     1  sequence  J
    Signature: (J)TE;
    MethodParameters:
          Name  Flags
      sequence  
}
Signature: <E:Ljava/lang/Object;>Lcom/lmax/disruptor/RingBufferPad;
SourceFile: "RingBuffer.java"