public final class com.lmax.disruptor.MultiProducerSequencer extends com.lmax.disruptor.AbstractSequencer
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: com.lmax.disruptor.MultiProducerSequencer
  super_class: com.lmax.disruptor.AbstractSequencer
{
  private static final sun.misc.Unsafe UNSAFE;
    descriptor: Lsun/misc/Unsafe;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

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

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

  private final com.lmax.disruptor.Sequence gatingSequenceCache;
    descriptor: Lcom/lmax/disruptor/Sequence;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int[] availableBuffer;
    descriptor: [I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int indexMask;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int indexShift;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 35
            invokestatic com.lmax.disruptor.util.Util.getUnsafe:()Lsun/misc/Unsafe;
            putstatic com.lmax.disruptor.MultiProducerSequencer.UNSAFE:Lsun/misc/Unsafe;
         1: .line 36
            getstatic com.lmax.disruptor.MultiProducerSequencer.UNSAFE:Lsun/misc/Unsafe;
            ldc [I
            invokevirtual sun.misc.Unsafe.arrayBaseOffset:(Ljava/lang/Class;)I
            i2l
            putstatic com.lmax.disruptor.MultiProducerSequencer.BASE:J
         2: .line 37
            getstatic com.lmax.disruptor.MultiProducerSequencer.UNSAFE:Lsun/misc/Unsafe;
            ldc [I
            invokevirtual sun.misc.Unsafe.arrayIndexScale:(Ljava/lang/Class;)I
            i2l
            putstatic com.lmax.disruptor.MultiProducerSequencer.SCALE:J
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(int, com.lmax.disruptor.WaitStrategy);
    descriptor: (ILcom/lmax/disruptor/WaitStrategy;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // com.lmax.disruptor.MultiProducerSequencer this
        start local 1 // int bufferSize
        start local 2 // com.lmax.disruptor.WaitStrategy waitStrategy
         0: .line 55
            aload 0 /* this */
            iload 1 /* bufferSize */
            aload 2 /* waitStrategy */
            invokespecial com.lmax.disruptor.AbstractSequencer.<init>:(ILcom/lmax/disruptor/WaitStrategy;)V
         1: .line 39
            aload 0 /* this */
            new com.lmax.disruptor.Sequence
            dup
            ldc -1
            invokespecial com.lmax.disruptor.Sequence.<init>:(J)V
            putfield com.lmax.disruptor.MultiProducerSequencer.gatingSequenceCache:Lcom/lmax/disruptor/Sequence;
         2: .line 56
            aload 0 /* this */
            iload 1 /* bufferSize */
            newarray 10
            putfield com.lmax.disruptor.MultiProducerSequencer.availableBuffer:[I
         3: .line 57
            aload 0 /* this */
            iload 1 /* bufferSize */
            iconst_1
            isub
            putfield com.lmax.disruptor.MultiProducerSequencer.indexMask:I
         4: .line 58
            aload 0 /* this */
            iload 1 /* bufferSize */
            invokestatic com.lmax.disruptor.util.Util.log2:(I)I
            putfield com.lmax.disruptor.MultiProducerSequencer.indexShift:I
         5: .line 59
            aload 0 /* this */
            invokevirtual com.lmax.disruptor.MultiProducerSequencer.initialiseAvailableBuffer:()V
         6: .line 60
            return
        end local 2 // com.lmax.disruptor.WaitStrategy waitStrategy
        end local 1 // int bufferSize
        end local 0 // com.lmax.disruptor.MultiProducerSequencer this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    7     0          this  Lcom/lmax/disruptor/MultiProducerSequencer;
            0    7     1    bufferSize  I
            0    7     2  waitStrategy  Lcom/lmax/disruptor/WaitStrategy;
    MethodParameters:
              Name  Flags
      bufferSize    
      waitStrategy  final

  public boolean hasAvailableCapacity(int);
    descriptor: (I)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // com.lmax.disruptor.MultiProducerSequencer this
        start local 1 // int requiredCapacity
         0: .line 68
            aload 0 /* this */
            aload 0 /* this */
            getfield com.lmax.disruptor.MultiProducerSequencer.gatingSequences:[Lcom/lmax/disruptor/Sequence;
            iload 1 /* requiredCapacity */
            aload 0 /* this */
            getfield com.lmax.disruptor.MultiProducerSequencer.cursor:Lcom/lmax/disruptor/Sequence;
            invokevirtual com.lmax.disruptor.Sequence.get:()J
            invokevirtual com.lmax.disruptor.MultiProducerSequencer.hasAvailableCapacity:([Lcom/lmax/disruptor/Sequence;IJ)Z
            ireturn
        end local 1 // int requiredCapacity
        end local 0 // com.lmax.disruptor.MultiProducerSequencer this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    1     0              this  Lcom/lmax/disruptor/MultiProducerSequencer;
            0    1     1  requiredCapacity  I
    MethodParameters:
                  Name  Flags
      requiredCapacity  final

  private boolean hasAvailableCapacity(com.lmax.disruptor.Sequence[], int, long);
    descriptor: ([Lcom/lmax/disruptor/Sequence;IJ)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=11, args_size=4
        start local 0 // com.lmax.disruptor.MultiProducerSequencer this
        start local 1 // com.lmax.disruptor.Sequence[] gatingSequences
        start local 2 // int requiredCapacity
        start local 3 // long cursorValue
         0: .line 73
            lload 3 /* cursorValue */
            iload 2 /* requiredCapacity */
            i2l
            ladd
            aload 0 /* this */
            getfield com.lmax.disruptor.MultiProducerSequencer.bufferSize:I
            i2l
            lsub
            lstore 5 /* wrapPoint */
        start local 5 // long wrapPoint
         1: .line 74
            aload 0 /* this */
            getfield com.lmax.disruptor.MultiProducerSequencer.gatingSequenceCache:Lcom/lmax/disruptor/Sequence;
            invokevirtual com.lmax.disruptor.Sequence.get:()J
            lstore 7 /* cachedGatingSequence */
        start local 7 // long cachedGatingSequence
         2: .line 76
            lload 5 /* wrapPoint */
            lload 7 /* cachedGatingSequence */
            lcmp
            ifgt 3
            lload 7 /* cachedGatingSequence */
            lload 3 /* cursorValue */
            lcmp
            ifle 7
         3: .line 78
      StackMap locals: long long
      StackMap stack:
            aload 1 /* gatingSequences */
            lload 3 /* cursorValue */
            invokestatic com.lmax.disruptor.util.Util.getMinimumSequence:([Lcom/lmax/disruptor/Sequence;J)J
            lstore 9 /* minSequence */
        start local 9 // long minSequence
         4: .line 79
            aload 0 /* this */
            getfield com.lmax.disruptor.MultiProducerSequencer.gatingSequenceCache:Lcom/lmax/disruptor/Sequence;
            lload 9 /* minSequence */
            invokevirtual com.lmax.disruptor.Sequence.set:(J)V
         5: .line 81
            lload 5 /* wrapPoint */
            lload 9 /* minSequence */
            lcmp
            ifle 7
         6: .line 83
            iconst_0
            ireturn
        end local 9 // long minSequence
         7: .line 87
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 7 // long cachedGatingSequence
        end local 5 // long wrapPoint
        end local 3 // long cursorValue
        end local 2 // int requiredCapacity
        end local 1 // com.lmax.disruptor.Sequence[] gatingSequences
        end local 0 // com.lmax.disruptor.MultiProducerSequencer this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0    8     0                  this  Lcom/lmax/disruptor/MultiProducerSequencer;
            0    8     1       gatingSequences  [Lcom/lmax/disruptor/Sequence;
            0    8     2      requiredCapacity  I
            0    8     3           cursorValue  J
            1    8     5             wrapPoint  J
            2    8     7  cachedGatingSequence  J
            4    7     9           minSequence  J
    MethodParameters:
                  Name  Flags
      gatingSequences   
      requiredCapacity  final
      cursorValue       

  public void claim(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // com.lmax.disruptor.MultiProducerSequencer this
        start local 1 // long sequence
         0: .line 96
            aload 0 /* this */
            getfield com.lmax.disruptor.MultiProducerSequencer.cursor:Lcom/lmax/disruptor/Sequence;
            lload 1 /* sequence */
            invokevirtual com.lmax.disruptor.Sequence.set:(J)V
         1: .line 97
            return
        end local 1 // long sequence
        end local 0 // com.lmax.disruptor.MultiProducerSequencer this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lcom/lmax/disruptor/MultiProducerSequencer;
            0    2     1  sequence  J
    MethodParameters:
          Name  Flags
      sequence  

  public long next();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.lmax.disruptor.MultiProducerSequencer this
         0: .line 105
            aload 0 /* this */
            iconst_1
            invokevirtual com.lmax.disruptor.MultiProducerSequencer.next:(I)J
            lreturn
        end local 0 // com.lmax.disruptor.MultiProducerSequencer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/lmax/disruptor/MultiProducerSequencer;

  public long next(int);
    descriptor: (I)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=12, args_size=2
        start local 0 // com.lmax.disruptor.MultiProducerSequencer this
        start local 1 // int n
         0: .line 114
            iload 1 /* n */
            iconst_1
            if_icmpge 2
         1: .line 116
            new java.lang.IllegalArgumentException
            dup
            ldc "n must be > 0"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 124
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.lmax.disruptor.MultiProducerSequencer.cursor:Lcom/lmax/disruptor/Sequence;
            invokevirtual com.lmax.disruptor.Sequence.get:()J
            lstore 2 /* current */
        start local 2 // long current
         3: .line 125
            lload 2 /* current */
            iload 1 /* n */
            i2l
            ladd
            lstore 4 /* next */
        start local 4 // long next
         4: .line 127
            lload 4 /* next */
            aload 0 /* this */
            getfield com.lmax.disruptor.MultiProducerSequencer.bufferSize:I
            i2l
            lsub
            lstore 6 /* wrapPoint */
        start local 6 // long wrapPoint
         5: .line 128
            aload 0 /* this */
            getfield com.lmax.disruptor.MultiProducerSequencer.gatingSequenceCache:Lcom/lmax/disruptor/Sequence;
            invokevirtual com.lmax.disruptor.Sequence.get:()J
            lstore 8 /* cachedGatingSequence */
        start local 8 // long cachedGatingSequence
         6: .line 130
            lload 6 /* wrapPoint */
            lload 8 /* cachedGatingSequence */
            lcmp
            ifgt 7
            lload 8 /* cachedGatingSequence */
            lload 2 /* current */
            lcmp
            ifle 13
         7: .line 132
      StackMap locals: com.lmax.disruptor.MultiProducerSequencer int long long long long
      StackMap stack:
            aload 0 /* this */
            getfield com.lmax.disruptor.MultiProducerSequencer.gatingSequences:[Lcom/lmax/disruptor/Sequence;
            lload 2 /* current */
            invokestatic com.lmax.disruptor.util.Util.getMinimumSequence:([Lcom/lmax/disruptor/Sequence;J)J
            lstore 10 /* gatingSequence */
        start local 10 // long gatingSequence
         8: .line 134
            lload 6 /* wrapPoint */
            lload 10 /* gatingSequence */
            lcmp
            ifle 11
         9: .line 136
            lconst_1
            invokestatic java.util.concurrent.locks.LockSupport.parkNanos:(J)V
        10: .line 137
            goto 2
        11: .line 140
      StackMap locals: long
      StackMap stack:
            aload 0 /* this */
            getfield com.lmax.disruptor.MultiProducerSequencer.gatingSequenceCache:Lcom/lmax/disruptor/Sequence;
            lload 10 /* gatingSequence */
            invokevirtual com.lmax.disruptor.Sequence.set:(J)V
        end local 10 // long gatingSequence
        12: .line 141
            goto 2
        13: .line 142
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.lmax.disruptor.MultiProducerSequencer.cursor:Lcom/lmax/disruptor/Sequence;
            lload 2 /* current */
            lload 4 /* next */
            invokevirtual com.lmax.disruptor.Sequence.compareAndSet:(JJ)Z
            ifeq 2
        end local 8 // long cachedGatingSequence
        end local 6 // long wrapPoint
        14: .line 149
            lload 4 /* next */
            lreturn
        end local 4 // long next
        end local 2 // long current
        end local 1 // int n
        end local 0 // com.lmax.disruptor.MultiProducerSequencer this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0   15     0                  this  Lcom/lmax/disruptor/MultiProducerSequencer;
            0   15     1                     n  I
            3   15     2               current  J
            4   15     4                  next  J
            5   14     6             wrapPoint  J
            6   14     8  cachedGatingSequence  J
            8   12    10        gatingSequence  J
    MethodParameters:
      Name  Flags
      n     

  public long tryNext();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.lmax.disruptor.MultiProducerSequencer this
         0: .line 158
            aload 0 /* this */
            iconst_1
            invokevirtual com.lmax.disruptor.MultiProducerSequencer.tryNext:(I)J
            lreturn
        end local 0 // com.lmax.disruptor.MultiProducerSequencer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/lmax/disruptor/MultiProducerSequencer;
    Exceptions:
      throws com.lmax.disruptor.InsufficientCapacityException

  public long tryNext(int);
    descriptor: (I)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=2
        start local 0 // com.lmax.disruptor.MultiProducerSequencer this
        start local 1 // int n
         0: .line 167
            iload 1 /* n */
            iconst_1
            if_icmpge 2
         1: .line 169
            new java.lang.IllegalArgumentException
            dup
            ldc "n must be > 0"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 177
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.lmax.disruptor.MultiProducerSequencer.cursor:Lcom/lmax/disruptor/Sequence;
            invokevirtual com.lmax.disruptor.Sequence.get:()J
            lstore 2 /* current */
        start local 2 // long current
         3: .line 178
            lload 2 /* current */
            iload 1 /* n */
            i2l
            ladd
            lstore 4 /* next */
        start local 4 // long next
         4: .line 180
            aload 0 /* this */
            aload 0 /* this */
            getfield com.lmax.disruptor.MultiProducerSequencer.gatingSequences:[Lcom/lmax/disruptor/Sequence;
            iload 1 /* n */
            lload 2 /* current */
            invokevirtual com.lmax.disruptor.MultiProducerSequencer.hasAvailableCapacity:([Lcom/lmax/disruptor/Sequence;IJ)Z
            ifne 6
         5: .line 182
            getstatic com.lmax.disruptor.InsufficientCapacityException.INSTANCE:Lcom/lmax/disruptor/InsufficientCapacityException;
            athrow
         6: .line 185
      StackMap locals: long long
      StackMap stack:
            aload 0 /* this */
            getfield com.lmax.disruptor.MultiProducerSequencer.cursor:Lcom/lmax/disruptor/Sequence;
            lload 2 /* current */
            lload 4 /* next */
            invokevirtual com.lmax.disruptor.Sequence.compareAndSet:(JJ)Z
            ifeq 2
         7: .line 187
            lload 4 /* next */
            lreturn
        end local 4 // long next
        end local 2 // long current
        end local 1 // int n
        end local 0 // com.lmax.disruptor.MultiProducerSequencer this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    8     0     this  Lcom/lmax/disruptor/MultiProducerSequencer;
            0    8     1        n  I
            3    8     2  current  J
            4    8     4     next  J
    Exceptions:
      throws com.lmax.disruptor.InsufficientCapacityException
    MethodParameters:
      Name  Flags
      n     

  public long remainingCapacity();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=1
        start local 0 // com.lmax.disruptor.MultiProducerSequencer this
         0: .line 196
            aload 0 /* this */
            getfield com.lmax.disruptor.MultiProducerSequencer.gatingSequences:[Lcom/lmax/disruptor/Sequence;
            aload 0 /* this */
            getfield com.lmax.disruptor.MultiProducerSequencer.cursor:Lcom/lmax/disruptor/Sequence;
            invokevirtual com.lmax.disruptor.Sequence.get:()J
            invokestatic com.lmax.disruptor.util.Util.getMinimumSequence:([Lcom/lmax/disruptor/Sequence;J)J
            lstore 1 /* consumed */
        start local 1 // long consumed
         1: .line 197
            aload 0 /* this */
            getfield com.lmax.disruptor.MultiProducerSequencer.cursor:Lcom/lmax/disruptor/Sequence;
            invokevirtual com.lmax.disruptor.Sequence.get:()J
            lstore 3 /* produced */
        start local 3 // long produced
         2: .line 198
            aload 0 /* this */
            invokevirtual com.lmax.disruptor.MultiProducerSequencer.getBufferSize:()I
            i2l
            lload 3 /* produced */
            lload 1 /* consumed */
            lsub
            lsub
            lreturn
        end local 3 // long produced
        end local 1 // long consumed
        end local 0 // com.lmax.disruptor.MultiProducerSequencer this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lcom/lmax/disruptor/MultiProducerSequencer;
            1    3     1  consumed  J
            2    3     3  produced  J

  private void initialiseAvailableBuffer();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // com.lmax.disruptor.MultiProducerSequencer this
         0: .line 203
            aload 0 /* this */
            getfield com.lmax.disruptor.MultiProducerSequencer.availableBuffer:[I
            arraylength
            iconst_1
            isub
            istore 1 /* i */
        start local 1 // int i
         1: goto 4
         2: .line 205
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* i */
            iconst_m1
            invokevirtual com.lmax.disruptor.MultiProducerSequencer.setAvailableBufferValue:(II)V
         3: .line 203
            iinc 1 /* i */ -1
      StackMap locals:
      StackMap stack:
         4: iload 1 /* i */
            ifne 2
        end local 1 // int i
         5: .line 208
            aload 0 /* this */
            iconst_0
            iconst_m1
            invokevirtual com.lmax.disruptor.MultiProducerSequencer.setAvailableBufferValue:(II)V
         6: .line 209
            return
        end local 0 // com.lmax.disruptor.MultiProducerSequencer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lcom/lmax/disruptor/MultiProducerSequencer;
            1    5     1     i  I

  public void publish(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // com.lmax.disruptor.MultiProducerSequencer this
        start local 1 // long sequence
         0: .line 217
            aload 0 /* this */
            lload 1 /* sequence */
            invokevirtual com.lmax.disruptor.MultiProducerSequencer.setAvailable:(J)V
         1: .line 218
            aload 0 /* this */
            getfield com.lmax.disruptor.MultiProducerSequencer.waitStrategy:Lcom/lmax/disruptor/WaitStrategy;
            invokeinterface com.lmax.disruptor.WaitStrategy.signalAllWhenBlocking:()V
         2: .line 219
            return
        end local 1 // long sequence
        end local 0 // com.lmax.disruptor.MultiProducerSequencer this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lcom/lmax/disruptor/MultiProducerSequencer;
            0    3     1  sequence  J
    MethodParameters:
          Name  Flags
      sequence  final

  public void publish(long, long);
    descriptor: (JJ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=3
        start local 0 // com.lmax.disruptor.MultiProducerSequencer this
        start local 1 // long lo
        start local 3 // long hi
         0: .line 227
            lload 1 /* lo */
            lstore 5 /* l */
        start local 5 // long l
         1: goto 4
         2: .line 229
      StackMap locals: long
      StackMap stack:
            aload 0 /* this */
            lload 5 /* l */
            invokevirtual com.lmax.disruptor.MultiProducerSequencer.setAvailable:(J)V
         3: .line 227
            lload 5 /* l */
            lconst_1
            ladd
            lstore 5 /* l */
      StackMap locals:
      StackMap stack:
         4: lload 5 /* l */
            lload 3 /* hi */
            lcmp
            ifle 2
        end local 5 // long l
         5: .line 231
            aload 0 /* this */
            getfield com.lmax.disruptor.MultiProducerSequencer.waitStrategy:Lcom/lmax/disruptor/WaitStrategy;
            invokeinterface com.lmax.disruptor.WaitStrategy.signalAllWhenBlocking:()V
         6: .line 232
            return
        end local 3 // long hi
        end local 1 // long lo
        end local 0 // com.lmax.disruptor.MultiProducerSequencer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lcom/lmax/disruptor/MultiProducerSequencer;
            0    7     1    lo  J
            0    7     3    hi  J
            1    5     5     l  J
    MethodParameters:
      Name  Flags
      lo    
      hi    

  private void setAvailable(long);
    descriptor: (J)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // com.lmax.disruptor.MultiProducerSequencer this
        start local 1 // long sequence
         0: .line 255
            aload 0 /* this */
            aload 0 /* this */
            lload 1 /* sequence */
            invokevirtual com.lmax.disruptor.MultiProducerSequencer.calculateIndex:(J)I
            aload 0 /* this */
            lload 1 /* sequence */
            invokevirtual com.lmax.disruptor.MultiProducerSequencer.calculateAvailabilityFlag:(J)I
            invokevirtual com.lmax.disruptor.MultiProducerSequencer.setAvailableBufferValue:(II)V
         1: .line 256
            return
        end local 1 // long sequence
        end local 0 // com.lmax.disruptor.MultiProducerSequencer this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lcom/lmax/disruptor/MultiProducerSequencer;
            0    2     1  sequence  J
    MethodParameters:
          Name  Flags
      sequence  final

  private void setAvailableBufferValue(int, int);
    descriptor: (II)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=5, args_size=3
        start local 0 // com.lmax.disruptor.MultiProducerSequencer this
        start local 1 // int index
        start local 2 // int flag
         0: .line 260
            iload 1 /* index */
            i2l
            getstatic com.lmax.disruptor.MultiProducerSequencer.SCALE:J
            lmul
            getstatic com.lmax.disruptor.MultiProducerSequencer.BASE:J
            ladd
            lstore 3 /* bufferAddress */
        start local 3 // long bufferAddress
         1: .line 261
            getstatic com.lmax.disruptor.MultiProducerSequencer.UNSAFE:Lsun/misc/Unsafe;
            aload 0 /* this */
            getfield com.lmax.disruptor.MultiProducerSequencer.availableBuffer:[I
            lload 3 /* bufferAddress */
            iload 2 /* flag */
            invokevirtual sun.misc.Unsafe.putOrderedInt:(Ljava/lang/Object;JI)V
         2: .line 262
            return
        end local 3 // long bufferAddress
        end local 2 // int flag
        end local 1 // int index
        end local 0 // com.lmax.disruptor.MultiProducerSequencer this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    3     0           this  Lcom/lmax/disruptor/MultiProducerSequencer;
            0    3     1          index  I
            0    3     2           flag  I
            1    3     3  bufferAddress  J
    MethodParameters:
       Name  Flags
      index  
      flag   

  public boolean isAvailable(long);
    descriptor: (J)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=2
        start local 0 // com.lmax.disruptor.MultiProducerSequencer this
        start local 1 // long sequence
         0: .line 270
            aload 0 /* this */
            lload 1 /* sequence */
            invokevirtual com.lmax.disruptor.MultiProducerSequencer.calculateIndex:(J)I
            istore 3 /* index */
        start local 3 // int index
         1: .line 271
            aload 0 /* this */
            lload 1 /* sequence */
            invokevirtual com.lmax.disruptor.MultiProducerSequencer.calculateAvailabilityFlag:(J)I
            istore 4 /* flag */
        start local 4 // int flag
         2: .line 272
            iload 3 /* index */
            i2l
            getstatic com.lmax.disruptor.MultiProducerSequencer.SCALE:J
            lmul
            getstatic com.lmax.disruptor.MultiProducerSequencer.BASE:J
            ladd
            lstore 5 /* bufferAddress */
        start local 5 // long bufferAddress
         3: .line 273
            getstatic com.lmax.disruptor.MultiProducerSequencer.UNSAFE:Lsun/misc/Unsafe;
            aload 0 /* this */
            getfield com.lmax.disruptor.MultiProducerSequencer.availableBuffer:[I
            lload 5 /* bufferAddress */
            invokevirtual sun.misc.Unsafe.getIntVolatile:(Ljava/lang/Object;J)I
            iload 4 /* flag */
            if_icmpne 4
            iconst_1
            ireturn
      StackMap locals: int int long
      StackMap stack:
         4: iconst_0
            ireturn
        end local 5 // long bufferAddress
        end local 4 // int flag
        end local 3 // int index
        end local 1 // long sequence
        end local 0 // com.lmax.disruptor.MultiProducerSequencer this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    5     0           this  Lcom/lmax/disruptor/MultiProducerSequencer;
            0    5     1       sequence  J
            1    5     3          index  I
            2    5     4           flag  I
            3    5     5  bufferAddress  J
    MethodParameters:
          Name  Flags
      sequence  

  public long getHighestPublishedSequence(long, long);
    descriptor: (JJ)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=3
        start local 0 // com.lmax.disruptor.MultiProducerSequencer this
        start local 1 // long lowerBound
        start local 3 // long availableSequence
         0: .line 279
            lload 1 /* lowerBound */
            lstore 5 /* sequence */
        start local 5 // long sequence
         1: goto 5
         2: .line 281
      StackMap locals: long
      StackMap stack:
            aload 0 /* this */
            lload 5 /* sequence */
            invokevirtual com.lmax.disruptor.MultiProducerSequencer.isAvailable:(J)Z
            ifne 4
         3: .line 283
            lload 5 /* sequence */
            lconst_1
            lsub
            lreturn
         4: .line 279
      StackMap locals:
      StackMap stack:
            lload 5 /* sequence */
            lconst_1
            ladd
            lstore 5 /* sequence */
      StackMap locals:
      StackMap stack:
         5: lload 5 /* sequence */
            lload 3 /* availableSequence */
            lcmp
            ifle 2
        end local 5 // long sequence
         6: .line 287
            lload 3 /* availableSequence */
            lreturn
        end local 3 // long availableSequence
        end local 1 // long lowerBound
        end local 0 // com.lmax.disruptor.MultiProducerSequencer this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    7     0               this  Lcom/lmax/disruptor/MultiProducerSequencer;
            0    7     1         lowerBound  J
            0    7     3  availableSequence  J
            1    6     5           sequence  J
    MethodParameters:
                   Name  Flags
      lowerBound         
      availableSequence  

  private int calculateAvailabilityFlag(long);
    descriptor: (J)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // com.lmax.disruptor.MultiProducerSequencer this
        start local 1 // long sequence
         0: .line 292
            lload 1 /* sequence */
            aload 0 /* this */
            getfield com.lmax.disruptor.MultiProducerSequencer.indexShift:I
            lushr
            l2i
            ireturn
        end local 1 // long sequence
        end local 0 // com.lmax.disruptor.MultiProducerSequencer this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lcom/lmax/disruptor/MultiProducerSequencer;
            0    1     1  sequence  J
    MethodParameters:
          Name  Flags
      sequence  final

  private int calculateIndex(long);
    descriptor: (J)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // com.lmax.disruptor.MultiProducerSequencer this
        start local 1 // long sequence
         0: .line 297
            lload 1 /* sequence */
            l2i
            aload 0 /* this */
            getfield com.lmax.disruptor.MultiProducerSequencer.indexMask:I
            iand
            ireturn
        end local 1 // long sequence
        end local 0 // com.lmax.disruptor.MultiProducerSequencer this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lcom/lmax/disruptor/MultiProducerSequencer;
            0    1     1  sequence  J
    MethodParameters:
          Name  Flags
      sequence  final
}
SourceFile: "MultiProducerSequencer.java"