public class com.carrotsearch.hppc.XorShift128P
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.carrotsearch.hppc.XorShift128P
  super_class: java.lang.Object
{
  private long state0;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

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

  public void <init>(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // com.carrotsearch.hppc.XorShift128P this
        start local 1 // long seed
         0: .line 17
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 18
            aload 0 /* this */
            lload 1 /* seed */
            invokestatic com.carrotsearch.hppc.BitMixer.mix64:(J)J
            invokestatic com.carrotsearch.hppc.XorShift128P.notZero:(J)J
            putfield com.carrotsearch.hppc.XorShift128P.state0:J
         2: .line 19
            aload 0 /* this */
            lload 1 /* seed */
            lconst_1
            ladd
            invokestatic com.carrotsearch.hppc.BitMixer.mix64:(J)J
            invokestatic com.carrotsearch.hppc.XorShift128P.notZero:(J)J
            putfield com.carrotsearch.hppc.XorShift128P.state1:J
         3: .line 20
            return
        end local 1 // long seed
        end local 0 // com.carrotsearch.hppc.XorShift128P this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/carrotsearch/hppc/XorShift128P;
            0    4     1  seed  J
    MethodParameters:
      Name  Flags
      seed  

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.carrotsearch.hppc.XorShift128P this
         0: .line 23
            aload 0 /* this */
            invokestatic com.carrotsearch.hppc.Containers.randomSeed64:()J
            invokespecial com.carrotsearch.hppc.XorShift128P.<init>:(J)V
         1: .line 24
            return
        end local 0 // com.carrotsearch.hppc.XorShift128P this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/carrotsearch/hppc/XorShift128P;

  public long nextLong();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=1
        start local 0 // com.carrotsearch.hppc.XorShift128P this
         0: .line 27
            aload 0 /* this */
            getfield com.carrotsearch.hppc.XorShift128P.state0:J
            lstore 1 /* s1 */
        start local 1 // long s1
         1: .line 28
            aload 0 /* this */
            getfield com.carrotsearch.hppc.XorShift128P.state1:J
            lstore 3 /* s0 */
        start local 3 // long s0
         2: .line 29
            aload 0 /* this */
            lload 3 /* s0 */
            putfield com.carrotsearch.hppc.XorShift128P.state0:J
         3: .line 30
            lload 1 /* s1 */
            lload 1 /* s1 */
            bipush 23
            lshl
            lxor
            lstore 1 /* s1 */
         4: .line 31
            aload 0 /* this */
            lload 1 /* s1 */
            lload 3 /* s0 */
            lxor
            lload 1 /* s1 */
            bipush 17
            lushr
            lxor
            lload 3 /* s0 */
            bipush 26
            lushr
            lxor
            dup2_x1
            putfield com.carrotsearch.hppc.XorShift128P.state1:J
            lload 3 /* s0 */
            ladd
            lreturn
        end local 3 // long s0
        end local 1 // long s1
        end local 0 // com.carrotsearch.hppc.XorShift128P this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/carrotsearch/hppc/XorShift128P;
            1    5     1    s1  J
            2    5     3    s0  J

  public int nextInt();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.carrotsearch.hppc.XorShift128P this
         0: .line 35
            aload 0 /* this */
            invokevirtual com.carrotsearch.hppc.XorShift128P.nextLong:()J
            l2i
            ireturn
        end local 0 // com.carrotsearch.hppc.XorShift128P this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/carrotsearch/hppc/XorShift128P;

  private static long notZero(long);
    descriptor: (J)J
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // long value
         0: .line 39
            lload 0 /* value */
            lconst_0
            lcmp
            ifne 1
            ldc 244837814090430
            goto 2
      StackMap locals:
      StackMap stack:
         1: lload 0 /* value */
      StackMap locals:
      StackMap stack: long
         2: lreturn
        end local 0 // long value
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0  value  J
    MethodParameters:
       Name  Flags
      value  

  public int nextInt(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // com.carrotsearch.hppc.XorShift128P this
        start local 1 // int bound
         0: .line 43
            iload 1 /* bound */
            ifgt 2
         1: .line 44
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
         2: .line 47
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.carrotsearch.hppc.XorShift128P.nextInt:()I
            iconst_1
            iushr
            istore 2 /* r */
        start local 2 // int r
         3: .line 48
            iload 1 /* bound */
            iconst_1
            isub
            istore 3 /* m */
        start local 3 // int m
         4: .line 49
            iload 1 /* bound */
            iload 3 /* m */
            iand
            ifne 7
         5: .line 50
            iload 1 /* bound */
            i2l
            iload 2 /* r */
            i2l
            lmul
            bipush 31
            lshr
            l2i
            istore 2 /* r */
         6: .line 51
            goto 12
         7: .line 52
      StackMap locals: int int
      StackMap stack:
            iload 2 /* r */
            istore 4 /* u */
        start local 4 // int u
         8: .line 53
            goto 10
         9: .line 54
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.carrotsearch.hppc.XorShift128P.nextInt:()I
            iconst_1
            iushr
            istore 4 /* u */
        10: .line 53
      StackMap locals:
      StackMap stack:
            iload 4 /* u */
            iload 4 /* u */
            iload 1 /* bound */
            irem
            dup
            istore 2 /* r */
            isub
            iload 3 /* m */
            iadd
        11: .line 52
            iflt 9
        end local 4 // int u
        12: .line 58
      StackMap locals:
      StackMap stack:
            iload 2 /* r */
            ireturn
        end local 3 // int m
        end local 2 // int r
        end local 1 // int bound
        end local 0 // com.carrotsearch.hppc.XorShift128P this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   13     0   this  Lcom/carrotsearch/hppc/XorShift128P;
            0   13     1  bound  I
            3   13     2      r  I
            4   13     3      m  I
            8   12     4      u  I
    MethodParameters:
       Name  Flags
      bound  
}
SourceFile: "XorShift128P.java"