public class at.yawk.numaec.LinearHashTable$Cursor implements at.yawk.numaec.MapStoreCursor
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: at.yawk.numaec.LinearHashTable$Cursor
  super_class: java.lang.Object
{
  private long bucket;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

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

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

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

  final at.yawk.numaec.LinearHashTable this$0;
    descriptor: Lat/yawk/numaec/LinearHashTable;
    flags: (0x1010) ACC_FINAL, ACC_SYNTHETIC

  public void <init>(at.yawk.numaec.LinearHashTable);
    descriptor: (Lat/yawk/numaec/LinearHashTable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // at.yawk.numaec.LinearHashTable$Cursor this
         0: .line 234
            aload 0 /* this */
            aload 1
            putfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // at.yawk.numaec.LinearHashTable$Cursor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lat/yawk/numaec/LinearHashTable$Cursor;
    MethodParameters:
        Name  Flags
      this$0  final

  void init();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // at.yawk.numaec.LinearHashTable$Cursor this
         0: .line 241
            aload 0 /* this */
            ldc -1
            putfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
         1: .line 242
            aload 0 /* this */
            ldc -1
            putfield at.yawk.numaec.LinearHashTable$Cursor.prevBucket:J
         2: .line 243
            aload 0 /* this */
            iconst_m1
            putfield at.yawk.numaec.LinearHashTable$Cursor.bucketIndex:I
         3: .line 244
            aload 0 /* this */
            ldc -1
            putfield at.yawk.numaec.LinearHashTable$Cursor.indexInBucket:J
         4: .line 245
            return
        end local 0 // at.yawk.numaec.LinearHashTable$Cursor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lat/yawk/numaec/LinearHashTable$Cursor;

  public void seek(long, long);
    descriptor: (JJ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=3
        start local 0 // at.yawk.numaec.LinearHashTable$Cursor this
        start local 1 // long hash
        start local 3 // long key
         0: .line 248
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            getfield at.yawk.numaec.LinearHashTable.lowDepth:I
            lload 1 /* hash */
            invokestatic at.yawk.numaec.LinearHashTable.bucketIndex:(IJ)I
            istore 5 /* bucketIndex */
        start local 5 // int bucketIndex
         1: .line 249
            iload 5 /* bucketIndex */
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            getfield at.yawk.numaec.LinearHashTable.splitIndex:I
            if_icmpge 3
         2: .line 250
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            getfield at.yawk.numaec.LinearHashTable.lowDepth:I
            iconst_1
            iadd
            lload 1 /* hash */
            invokestatic at.yawk.numaec.LinearHashTable.bucketIndex:(IJ)I
            istore 5 /* bucketIndex */
         3: .line 252
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 5 /* bucketIndex */
            invokevirtual at.yawk.numaec.LinearHashTable$Cursor.seekMainBucketByBucketIndex:(I)V
         4: .line 253
            aload 0 /* this */
            lload 1 /* hash */
            lload 3 /* key */
            invokevirtual at.yawk.numaec.LinearHashTable$Cursor.seekInChain:(JJ)V
         5: .line 254
            return
        end local 5 // int bucketIndex
        end local 3 // long key
        end local 1 // long hash
        end local 0 // at.yawk.numaec.LinearHashTable$Cursor this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    6     0         this  Lat/yawk/numaec/LinearHashTable$Cursor;
            0    6     1         hash  J
            0    6     3          key  J
            1    6     5  bucketIndex  I
    MethodParameters:
      Name  Flags
      hash  
      key   

  public boolean elementFound();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // at.yawk.numaec.LinearHashTable$Cursor this
         0: .line 258
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.indexInBucket:J
            lconst_0
            lcmp
            iflt 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // at.yawk.numaec.LinearHashTable$Cursor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lat/yawk/numaec/LinearHashTable$Cursor;

  private void seekMainBucketByBucketIndex(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // at.yawk.numaec.LinearHashTable$Cursor this
        start local 1 // int bucketIndex
         0: .line 262
            aload 0 /* this */
            iload 1 /* bucketIndex */
            putfield at.yawk.numaec.LinearHashTable$Cursor.bucketIndex:I
         1: .line 263
            aload 0 /* this */
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            getfield at.yawk.numaec.LinearHashTable.mainBuckets:Lorg/eclipse/collections/api/list/primitive/MutableLongList;
            iload 1 /* bucketIndex */
            invokeinterface org.eclipse.collections.api.list.primitive.MutableLongList.get:(I)J
            putfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
         2: .line 264
            aload 0 /* this */
            ldc -1
            putfield at.yawk.numaec.LinearHashTable$Cursor.prevBucket:J
         3: .line 265
            return
        end local 1 // int bucketIndex
        end local 0 // at.yawk.numaec.LinearHashTable$Cursor this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    4     0         this  Lat/yawk/numaec/LinearHashTable$Cursor;
            0    4     1  bucketIndex  I
    MethodParameters:
             Name  Flags
      bucketIndex  

  private void jumpToNextBucket();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // at.yawk.numaec.LinearHashTable$Cursor this
         0: .line 268
            aload 0 /* this */
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            putfield at.yawk.numaec.LinearHashTable$Cursor.prevBucket:J
         1: .line 269
            aload 0 /* this */
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            invokevirtual at.yawk.numaec.LinearHashTable.getNextPointer:(J)J
            putfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
         2: .line 270
            return
        end local 0 // at.yawk.numaec.LinearHashTable$Cursor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lat/yawk/numaec/LinearHashTable$Cursor;

  private void seekInChain(long, long);
    descriptor: (JJ)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=7, args_size=3
        start local 0 // at.yawk.numaec.LinearHashTable$Cursor this
        start local 1 // long hash
        start local 3 // long key
         0: .line 274
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            ldc -1
            lcmp
            ifne 3
         1: .line 275
            aload 0 /* this */
            ldc -1
            putfield at.yawk.numaec.LinearHashTable$Cursor.indexInBucket:J
         2: .line 276
            goto 8
         3: .line 279
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            lload 1 /* hash */
            lload 3 /* key */
            invokevirtual at.yawk.numaec.LinearHashTable$Cursor.binarySearch:(JJ)V
         4: .line 280
            aload 0 /* this */
            invokevirtual at.yawk.numaec.LinearHashTable$Cursor.getEntryCount:()J
            lstore 5 /* entryCount */
        start local 5 // long entryCount
         5: .line 281
            lload 5 /* entryCount */
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            getfield at.yawk.numaec.LinearHashTable.maxBucketEntryCount:I
            i2l
            lcmp
            iflt 8
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.indexInBucket:J
            lload 5 /* entryCount */
            ldc -1
            lxor
            lcmp
            ifne 8
         6: .line 282
            aload 0 /* this */
            invokevirtual at.yawk.numaec.LinearHashTable$Cursor.jumpToNextBucket:()V
        end local 5 // long entryCount
         7: .line 273
            goto 0
         8: .line 288
      StackMap locals:
      StackMap stack:
            return
        end local 3 // long key
        end local 1 // long hash
        end local 0 // at.yawk.numaec.LinearHashTable$Cursor this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    9     0        this  Lat/yawk/numaec/LinearHashTable$Cursor;
            0    9     1        hash  J
            0    9     3         key  J
            5    7     5  entryCount  J
    MethodParameters:
      Name  Flags
      hash  
      key   

  private void checkElementFound();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // at.yawk.numaec.LinearHashTable$Cursor this
         0: .line 291
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            ldc -1
            lcmp
            ifne 1
            new java.lang.IllegalStateException
            dup
            invokespecial java.lang.IllegalStateException.<init>:()V
            athrow
         1: .line 292
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.indexInBucket:J
            lconst_0
            lcmp
            ifge 2
            new java.lang.IllegalStateException
            dup
            invokespecial java.lang.IllegalStateException.<init>:()V
            athrow
         2: .line 293
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.indexInBucket:J
            aload 0 /* this */
            invokevirtual at.yawk.numaec.LinearHashTable$Cursor.getEntryCount:()J
            lcmp
            iflt 3
            new java.lang.IllegalStateException
            dup
            invokespecial java.lang.IllegalStateException.<init>:()V
            athrow
         3: .line 294
      StackMap locals:
      StackMap stack:
            return
        end local 0 // at.yawk.numaec.LinearHashTable$Cursor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lat/yawk/numaec/LinearHashTable$Cursor;

  public long getKey();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // at.yawk.numaec.LinearHashTable$Cursor this
         0: .line 298
            aload 0 /* this */
            invokevirtual at.yawk.numaec.LinearHashTable$Cursor.checkElementFound:()V
         1: .line 299
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.indexInBucket:J
            invokevirtual at.yawk.numaec.LinearHashTable.getKey0:(JJ)J
            lreturn
        end local 0 // at.yawk.numaec.LinearHashTable$Cursor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lat/yawk/numaec/LinearHashTable$Cursor;

  public long getValue();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // at.yawk.numaec.LinearHashTable$Cursor this
         0: .line 304
            aload 0 /* this */
            invokevirtual at.yawk.numaec.LinearHashTable$Cursor.checkElementFound:()V
         1: .line 305
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.indexInBucket:J
            invokevirtual at.yawk.numaec.LinearHashTable.getValue0:(JJ)J
            lreturn
        end local 0 // at.yawk.numaec.LinearHashTable$Cursor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lat/yawk/numaec/LinearHashTable$Cursor;

  public void setValue(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=8, locals=3, args_size=2
        start local 0 // at.yawk.numaec.LinearHashTable$Cursor this
        start local 1 // long value
         0: .line 309
            aload 0 /* this */
            invokevirtual at.yawk.numaec.LinearHashTable$Cursor.checkElementFound:()V
         1: .line 310
            aload 0 /* this */
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.indexInBucket:J
            invokevirtual at.yawk.numaec.LinearHashTable.getHash0:(JJ)J
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.indexInBucket:J
            invokevirtual at.yawk.numaec.LinearHashTable.getKey0:(JJ)J
            lload 1 /* value */
            invokevirtual at.yawk.numaec.LinearHashTable$Cursor.replace0:(JJJ)V
         2: .line 311
            return
        end local 1 // long value
        end local 0 // at.yawk.numaec.LinearHashTable$Cursor this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lat/yawk/numaec/LinearHashTable$Cursor;
            0    3     1  value  J
    MethodParameters:
       Name  Flags
      value  

  public boolean next();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // at.yawk.numaec.LinearHashTable$Cursor this
         0: .line 316
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield at.yawk.numaec.LinearHashTable$Cursor.indexInBucket:J
            lconst_1
            ladd
            putfield at.yawk.numaec.LinearHashTable$Cursor.indexInBucket:J
         1: .line 317
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            ldc -1
            lcmp
            ifne 7
         2: .line 320
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucketIndex:I
            iconst_1
            iadd
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            getfield at.yawk.numaec.LinearHashTable.mainBuckets:Lorg/eclipse/collections/api/list/primitive/MutableLongList;
            invokeinterface org.eclipse.collections.api.list.primitive.MutableLongList.size:()I
            if_icmplt 4
         3: .line 321
            iconst_0
            ireturn
         4: .line 323
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucketIndex:I
            iconst_1
            iadd
            invokevirtual at.yawk.numaec.LinearHashTable$Cursor.seekMainBucketByBucketIndex:(I)V
         5: .line 324
            aload 0 /* this */
            ldc -1
            putfield at.yawk.numaec.LinearHashTable$Cursor.indexInBucket:J
         6: .line 326
            goto 0
      StackMap locals:
      StackMap stack:
         7: aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.indexInBucket:J
            aload 0 /* this */
            invokevirtual at.yawk.numaec.LinearHashTable$Cursor.getEntryCount:()J
            lcmp
            iflt 11
         8: .line 327
            aload 0 /* this */
            invokevirtual at.yawk.numaec.LinearHashTable$Cursor.jumpToNextBucket:()V
         9: .line 328
            aload 0 /* this */
            ldc -1
            putfield at.yawk.numaec.LinearHashTable$Cursor.indexInBucket:J
        10: .line 329
            goto 0
        11: .line 331
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 0 // at.yawk.numaec.LinearHashTable$Cursor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   12     0  this  Lat/yawk/numaec/LinearHashTable$Cursor;

  private void allocateBucket();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // at.yawk.numaec.LinearHashTable$Cursor this
         0: .line 337
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            ldc -1
            lcmp
            ifeq 1
            new java.lang.IllegalStateException
            dup
            invokespecial java.lang.IllegalStateException.<init>:()V
            athrow
         1: .line 338
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            getfield at.yawk.numaec.LinearHashTable.allocator:Lat/yawk/numaec/PageAllocator;
            invokevirtual at.yawk.numaec.PageAllocator.allocatePage:()I
            i2l
            putfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
         2: .line 339
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.prevBucket:J
            ldc -1
            lcmp
            ifne 5
         3: .line 340
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            getfield at.yawk.numaec.LinearHashTable.mainBuckets:Lorg/eclipse/collections/api/list/primitive/MutableLongList;
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucketIndex:I
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            invokeinterface org.eclipse.collections.api.list.primitive.MutableLongList.set:(IJ)J
            pop2
         4: .line 341
            goto 6
         5: .line 342
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.prevBucket:J
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            invokevirtual at.yawk.numaec.LinearHashTable.setNextPointer:(JJ)V
         6: .line 344
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            ldc -1
            invokevirtual at.yawk.numaec.LinearHashTable.setNextPointer:(JJ)V
         7: .line 345
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            lconst_0
            invokevirtual at.yawk.numaec.LinearHashTable.setBucketEntryCount:(JJ)V
         8: .line 346
            return
        end local 0 // at.yawk.numaec.LinearHashTable$Cursor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lat/yawk/numaec/LinearHashTable$Cursor;

  public void insert(long, long, long);
    descriptor: (JJJ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=13, locals=17, args_size=4
        start local 0 // at.yawk.numaec.LinearHashTable$Cursor this
        start local 1 // long hash
        start local 3 // long key
        start local 5 // long value
         0: .line 350
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.indexInBucket:J
            lconst_0
            lcmp
            iflt 1
            new java.lang.IllegalStateException
            dup
            invokespecial java.lang.IllegalStateException.<init>:()V
            athrow
         1: .line 351
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.indexInBucket:J
            ldc -1
            lxor
            lstore 7 /* insertionIndex */
        start local 7 // long insertionIndex
         2: .line 352
            aload 0 /* this */
            invokevirtual at.yawk.numaec.LinearHashTable$Cursor.getEntryCount:()J
            lstore 9 /* oldEntryCount */
        start local 9 // long oldEntryCount
         3: .line 353
            lload 9 /* oldEntryCount */
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            getfield at.yawk.numaec.LinearHashTable.maxBucketEntryCount:I
            i2l
            lcmp
            ifge 16
         4: .line 354
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            ldc -1
            lcmp
            ifne 6
         5: .line 355
            aload 0 /* this */
            invokevirtual at.yawk.numaec.LinearHashTable$Cursor.allocateBucket:()V
         6: .line 359
      StackMap locals: long long
      StackMap stack:
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            getfield at.yawk.numaec.LinearHashTable.buf:Lat/yawk/numaec/LargeByteBuffer;
         7: .line 360
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            getfield at.yawk.numaec.LinearHashTable.buf:Lat/yawk/numaec/LargeByteBuffer;
         8: .line 361
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            lload 7 /* insertionIndex */
            invokevirtual at.yawk.numaec.LinearHashTable.getEntryAddress:(JJ)J
         9: .line 362
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            lload 7 /* insertionIndex */
            lconst_1
            ladd
            invokevirtual at.yawk.numaec.LinearHashTable.getEntryAddress:(JJ)J
        10: .line 363
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            lload 9 /* oldEntryCount */
            invokevirtual at.yawk.numaec.LinearHashTable.getEntryAddress:(JJ)J
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            lload 7 /* insertionIndex */
            invokevirtual at.yawk.numaec.LinearHashTable.getEntryAddress:(JJ)J
            lsub
        11: .line 359
            invokeinterface at.yawk.numaec.LargeByteBuffer.copyFrom:(Lat/yawk/numaec/LargeByteBuffer;JJJ)V
        12: .line 365
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            lload 9 /* oldEntryCount */
            lconst_1
            ladd
            invokevirtual at.yawk.numaec.LinearHashTable.setBucketEntryCount:(JJ)V
        13: .line 366
            aload 0 /* this */
            lload 7 /* insertionIndex */
            putfield at.yawk.numaec.LinearHashTable$Cursor.indexInBucket:J
        14: .line 367
            aload 0 /* this */
            lload 1 /* hash */
            lload 3 /* key */
            lload 5 /* value */
            invokevirtual at.yawk.numaec.LinearHashTable$Cursor.replace0:(JJJ)V
        15: .line 368
            goto 34
        16: .line 370
      StackMap locals:
      StackMap stack:
            lload 7 /* insertionIndex */
            lload 9 /* oldEntryCount */
            lcmp
            ifne 17
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        17: .line 371
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            lload 9 /* oldEntryCount */
            lconst_1
            lsub
            invokevirtual at.yawk.numaec.LinearHashTable.getHash0:(JJ)J
            lstore 11 /* trailingHash */
        start local 11 // long trailingHash
        18: .line 372
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            lload 9 /* oldEntryCount */
            lconst_1
            lsub
            invokevirtual at.yawk.numaec.LinearHashTable.getKey0:(JJ)J
            lstore 13 /* trailingKey */
        start local 13 // long trailingKey
        19: .line 373
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            lload 9 /* oldEntryCount */
            lconst_1
            lsub
            invokevirtual at.yawk.numaec.LinearHashTable.getValue0:(JJ)J
            lstore 15 /* trailingValue */
        start local 15 // long trailingValue
        20: .line 375
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            getfield at.yawk.numaec.LinearHashTable.buf:Lat/yawk/numaec/LargeByteBuffer;
        21: .line 376
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            getfield at.yawk.numaec.LinearHashTable.buf:Lat/yawk/numaec/LargeByteBuffer;
        22: .line 377
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            lload 7 /* insertionIndex */
            invokevirtual at.yawk.numaec.LinearHashTable.getEntryAddress:(JJ)J
        23: .line 378
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            lload 7 /* insertionIndex */
            lconst_1
            ladd
            invokevirtual at.yawk.numaec.LinearHashTable.getEntryAddress:(JJ)J
        24: .line 379
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            lload 9 /* oldEntryCount */
            lconst_1
            lsub
            invokevirtual at.yawk.numaec.LinearHashTable.getEntryAddress:(JJ)J
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            lload 7 /* insertionIndex */
            invokevirtual at.yawk.numaec.LinearHashTable.getEntryAddress:(JJ)J
            lsub
        25: .line 375
            invokeinterface at.yawk.numaec.LargeByteBuffer.copyFrom:(Lat/yawk/numaec/LargeByteBuffer;JJJ)V
        26: .line 382
            aload 0 /* this */
            lload 7 /* insertionIndex */
            putfield at.yawk.numaec.LinearHashTable$Cursor.indexInBucket:J
        27: .line 383
            aload 0 /* this */
            lload 1 /* hash */
            lload 3 /* key */
            lload 5 /* value */
            invokevirtual at.yawk.numaec.LinearHashTable$Cursor.replace0:(JJJ)V
        28: .line 385
            aload 0 /* this */
            invokevirtual at.yawk.numaec.LinearHashTable$Cursor.jumpToNextBucket:()V
        29: .line 386
            lload 11 /* trailingHash */
            lstore 1 /* hash */
        30: .line 387
            lload 13 /* trailingKey */
            lstore 3 /* key */
        31: .line 388
            lload 15 /* trailingValue */
            lstore 5 /* value */
        32: .line 389
            aload 0 /* this */
            ldc -1
            putfield at.yawk.numaec.LinearHashTable$Cursor.indexInBucket:J
        end local 15 // long trailingValue
        end local 13 // long trailingKey
        end local 11 // long trailingHash
        end local 9 // long oldEntryCount
        end local 7 // long insertionIndex
        33: .line 349
            goto 0
        34: .line 392
      StackMap locals:
      StackMap stack:
            return
        end local 5 // long value
        end local 3 // long key
        end local 1 // long hash
        end local 0 // at.yawk.numaec.LinearHashTable$Cursor this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   35     0            this  Lat/yawk/numaec/LinearHashTable$Cursor;
            0   35     1            hash  J
            0   35     3             key  J
            0   35     5           value  J
            2   33     7  insertionIndex  J
            3   33     9   oldEntryCount  J
           18   33    11    trailingHash  J
           19   33    13     trailingKey  J
           20   33    15   trailingValue  J
    MethodParameters:
       Name  Flags
      hash   
      key    
      value  

  private void replaceBucketWith(long);
    descriptor: (J)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // at.yawk.numaec.LinearHashTable$Cursor this
        start local 1 // long bucket
         0: .line 398
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.prevBucket:J
            ldc -1
            lcmp
            ifne 3
         1: .line 399
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            getfield at.yawk.numaec.LinearHashTable.mainBuckets:Lorg/eclipse/collections/api/list/primitive/MutableLongList;
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucketIndex:I
            lload 1 /* bucket */
            invokeinterface org.eclipse.collections.api.list.primitive.MutableLongList.set:(IJ)J
            pop2
         2: .line 400
            goto 4
         3: .line 401
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.prevBucket:J
            lload 1 /* bucket */
            invokevirtual at.yawk.numaec.LinearHashTable.setNextPointer:(JJ)V
         4: .line 403
      StackMap locals:
      StackMap stack:
            return
        end local 1 // long bucket
        end local 0 // at.yawk.numaec.LinearHashTable$Cursor this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lat/yawk/numaec/LinearHashTable$Cursor;
            0    5     1  bucket  J
    MethodParameters:
        Name  Flags
      bucket  

  private void freeBucket();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // at.yawk.numaec.LinearHashTable$Cursor this
         0: .line 406
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            invokevirtual at.yawk.numaec.LinearHashTable.getNextPointer:(J)J
            lstore 1 /* next */
        start local 1 // long next
         1: .line 407
            aload 0 /* this */
            lload 1 /* next */
            invokevirtual at.yawk.numaec.LinearHashTable$Cursor.replaceBucketWith:(J)V
         2: .line 408
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            getfield at.yawk.numaec.LinearHashTable.allocator:Lat/yawk/numaec/PageAllocator;
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            invokestatic java.lang.Math.toIntExact:(J)I
            invokevirtual at.yawk.numaec.PageAllocator.freePage:(I)V
         3: .line 409
            aload 0 /* this */
            lload 1 /* next */
            putfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
         4: .line 410
            return
        end local 1 // long next
        end local 0 // at.yawk.numaec.LinearHashTable$Cursor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lat/yawk/numaec/LinearHashTable$Cursor;
            1    5     1  next  J

  private void backfill();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=13, locals=7, args_size=1
        start local 0 // at.yawk.numaec.LinearHashTable$Cursor this
         0: .line 417
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.prevBucket:J
            ldc -1
            lcmp
            ifne 1
            new java.lang.IllegalStateException
            dup
            invokespecial java.lang.IllegalStateException.<init>:()V
            athrow
         1: .line 418
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            ldc -1
            lcmp
            ifne 2
            goto 28
         2: .line 419
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.prevBucket:J
            invokevirtual at.yawk.numaec.LinearHashTable.getBucketEntryCount:(J)J
            lstore 1 /* oldPrevEntryCount */
        start local 1 // long oldPrevEntryCount
         3: .line 420
            aload 0 /* this */
            invokevirtual at.yawk.numaec.LinearHashTable$Cursor.getEntryCount:()J
            lstore 3 /* oldEntryCount */
        start local 3 // long oldEntryCount
         4: .line 422
            lload 3 /* oldEntryCount */
         5: .line 423
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            getfield at.yawk.numaec.LinearHashTable.maxBucketEntryCount:I
            i2l
            lload 1 /* oldPrevEntryCount */
            lsub
         6: .line 421
            invokestatic java.lang.Math.min:(JJ)J
            lstore 5 /* toShift */
        start local 5 // long toShift
         7: .line 425
            lload 5 /* toShift */
            lconst_0
            lcmp
            ifne 8
            return
         8: .line 427
      StackMap locals: long long long
      StackMap stack:
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            getfield at.yawk.numaec.LinearHashTable.buf:Lat/yawk/numaec/LargeByteBuffer;
         9: .line 428
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            getfield at.yawk.numaec.LinearHashTable.buf:Lat/yawk/numaec/LargeByteBuffer;
        10: .line 429
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            lconst_0
            invokevirtual at.yawk.numaec.LinearHashTable.getEntryAddress:(JJ)J
        11: .line 430
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.prevBucket:J
            lload 1 /* oldPrevEntryCount */
            invokevirtual at.yawk.numaec.LinearHashTable.getEntryAddress:(JJ)J
        12: .line 431
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            lload 5 /* toShift */
            invokevirtual at.yawk.numaec.LinearHashTable.getEntryAddress:(JJ)J
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            lconst_0
            invokevirtual at.yawk.numaec.LinearHashTable.getEntryAddress:(JJ)J
            lsub
        13: .line 427
            invokeinterface at.yawk.numaec.LargeByteBuffer.copyFrom:(Lat/yawk/numaec/LargeByteBuffer;JJJ)V
        14: .line 433
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.prevBucket:J
            lload 1 /* oldPrevEntryCount */
            lload 5 /* toShift */
            ladd
            invokevirtual at.yawk.numaec.LinearHashTable.setBucketEntryCount:(JJ)V
        15: .line 435
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            getfield at.yawk.numaec.LinearHashTable.buf:Lat/yawk/numaec/LargeByteBuffer;
        16: .line 436
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            getfield at.yawk.numaec.LinearHashTable.buf:Lat/yawk/numaec/LargeByteBuffer;
        17: .line 437
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            lload 5 /* toShift */
            invokevirtual at.yawk.numaec.LinearHashTable.getEntryAddress:(JJ)J
        18: .line 438
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            lconst_0
            invokevirtual at.yawk.numaec.LinearHashTable.getEntryAddress:(JJ)J
        19: .line 439
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            lload 3 /* oldEntryCount */
            invokevirtual at.yawk.numaec.LinearHashTable.getEntryAddress:(JJ)J
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            lload 5 /* toShift */
            invokevirtual at.yawk.numaec.LinearHashTable.getEntryAddress:(JJ)J
            lsub
        20: .line 435
            invokeinterface at.yawk.numaec.LargeByteBuffer.copyFrom:(Lat/yawk/numaec/LargeByteBuffer;JJJ)V
        21: .line 441
            lload 3 /* oldEntryCount */
            lload 5 /* toShift */
            lcmp
            ifne 24
        22: .line 442
            aload 0 /* this */
            invokevirtual at.yawk.numaec.LinearHashTable$Cursor.freeBucket:()V
        23: .line 443
            goto 0
        24: .line 444
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            lload 3 /* oldEntryCount */
            lload 5 /* toShift */
            lsub
            invokevirtual at.yawk.numaec.LinearHashTable.setBucketEntryCount:(JJ)V
        25: .line 445
            aload 0 /* this */
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            putfield at.yawk.numaec.LinearHashTable$Cursor.prevBucket:J
        26: .line 446
            aload 0 /* this */
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            invokevirtual at.yawk.numaec.LinearHashTable.getNextPointer:(J)J
            putfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
        end local 5 // long toShift
        end local 3 // long oldEntryCount
        end local 1 // long oldPrevEntryCount
        27: .line 416
            goto 0
        28: .line 449
      StackMap locals:
      StackMap stack:
            return
        end local 0 // at.yawk.numaec.LinearHashTable$Cursor this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   29     0               this  Lat/yawk/numaec/LinearHashTable$Cursor;
            3   27     1  oldPrevEntryCount  J
            4   27     3      oldEntryCount  J
            7   27     5            toShift  J

  public void remove();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=15, locals=3, args_size=1
        start local 0 // at.yawk.numaec.LinearHashTable$Cursor this
         0: .line 452
            aload 0 /* this */
            invokevirtual at.yawk.numaec.LinearHashTable$Cursor.checkElementFound:()V
         1: .line 453
            aload 0 /* this */
            invokevirtual at.yawk.numaec.LinearHashTable$Cursor.getEntryCount:()J
            lstore 1 /* oldCount */
        start local 1 // long oldCount
         2: .line 454
            lload 1 /* oldCount */
            lconst_1
            lcmp
            ifne 5
         3: .line 455
            aload 0 /* this */
            invokevirtual at.yawk.numaec.LinearHashTable$Cursor.freeBucket:()V
         4: .line 456
            goto 14
         5: .line 458
      StackMap locals: long
      StackMap stack:
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            getfield at.yawk.numaec.LinearHashTable.buf:Lat/yawk/numaec/LargeByteBuffer;
         6: .line 459
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            getfield at.yawk.numaec.LinearHashTable.buf:Lat/yawk/numaec/LargeByteBuffer;
         7: .line 460
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.indexInBucket:J
            lconst_1
            ladd
            invokevirtual at.yawk.numaec.LinearHashTable.getEntryAddress:(JJ)J
         8: .line 461
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.indexInBucket:J
            invokevirtual at.yawk.numaec.LinearHashTable.getEntryAddress:(JJ)J
         9: .line 462
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            lload 1 /* oldCount */
            invokevirtual at.yawk.numaec.LinearHashTable.getEntryAddress:(JJ)J
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.indexInBucket:J
            lconst_1
            ladd
            invokevirtual at.yawk.numaec.LinearHashTable.getEntryAddress:(JJ)J
            lsub
        10: .line 458
            invokeinterface at.yawk.numaec.LargeByteBuffer.copyFrom:(Lat/yawk/numaec/LargeByteBuffer;JJJ)V
        11: .line 464
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            lload 1 /* oldCount */
            lconst_1
            lsub
            invokevirtual at.yawk.numaec.LinearHashTable.setBucketEntryCount:(JJ)V
        12: .line 465
            aload 0 /* this */
            invokevirtual at.yawk.numaec.LinearHashTable$Cursor.jumpToNextBucket:()V
        13: .line 466
            aload 0 /* this */
            invokevirtual at.yawk.numaec.LinearHashTable$Cursor.backfill:()V
        14: .line 468
      StackMap locals:
      StackMap stack:
            return
        end local 1 // long oldCount
        end local 0 // at.yawk.numaec.LinearHashTable$Cursor this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   15     0      this  Lat/yawk/numaec/LinearHashTable$Cursor;
            2   15     1  oldCount  J

  private void replace0(long, long, long);
    descriptor: (JJJ)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=10, locals=7, args_size=4
        start local 0 // at.yawk.numaec.LinearHashTable$Cursor this
        start local 1 // long hash
        start local 3 // long key
        start local 5 // long value
         0: .line 471
            aload 0 /* this */
            invokevirtual at.yawk.numaec.LinearHashTable$Cursor.checkElementFound:()V
         1: .line 472
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            getfield at.yawk.numaec.LinearHashTable.buf:Lat/yawk/numaec/LargeByteBuffer;
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.indexInBucket:J
            invokevirtual at.yawk.numaec.LinearHashTable.getEntryAddress:(JJ)J
            lload 1 /* hash */
            lload 3 /* key */
            lload 5 /* value */
            invokevirtual at.yawk.numaec.LinearHashTable.write:(Lat/yawk/numaec/LargeByteBuffer;JJJJ)V
         2: .line 473
            return
        end local 5 // long value
        end local 3 // long key
        end local 1 // long hash
        end local 0 // at.yawk.numaec.LinearHashTable$Cursor this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lat/yawk/numaec/LinearHashTable$Cursor;
            0    3     1   hash  J
            0    3     3    key  J
            0    3     5  value  J
    MethodParameters:
       Name  Flags
      hash   
      key    
      value  

  private long getEntryCount();
    descriptor: ()J
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // at.yawk.numaec.LinearHashTable$Cursor this
         0: .line 476
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            ldc -1
            lcmp
            ifne 1
            lconst_0
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            invokevirtual at.yawk.numaec.LinearHashTable.getBucketEntryCount:(J)J
      StackMap locals:
      StackMap stack: long
         2: lreturn
        end local 0 // at.yawk.numaec.LinearHashTable$Cursor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lat/yawk/numaec/LinearHashTable$Cursor;

  private void binarySearch(long, long);
    descriptor: (JJ)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=12, args_size=3
        start local 0 // at.yawk.numaec.LinearHashTable$Cursor this
        start local 1 // long hash
        start local 3 // long key
         0: .line 480
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            ldc -1
            lcmp
            ifne 1
            new java.lang.IllegalStateException
            dup
            invokespecial java.lang.IllegalStateException.<init>:()V
            athrow
         1: .line 481
      StackMap locals:
      StackMap stack:
            lconst_0
            lstore 5 /* low */
        start local 5 // long low
         2: .line 482
            aload 0 /* this */
            invokevirtual at.yawk.numaec.LinearHashTable$Cursor.getEntryCount:()J
            lconst_1
            lsub
            lstore 7 /* high */
        start local 7 // long high
         3: .line 483
            goto 16
         4: .line 484
      StackMap locals: long long
      StackMap stack:
            lload 5 /* low */
            lload 7 /* high */
            ladd
            ldc 2
            ldiv
            lstore 9 /* mid */
        start local 9 // long mid
         5: .line 486
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            lload 9 /* mid */
            invokevirtual at.yawk.numaec.LinearHashTable.getHash0:(JJ)J
            lload 1 /* hash */
            invokestatic java.lang.Long.compareUnsigned:(JJ)I
            istore 11 /* cmp */
        start local 11 // int cmp
         6: .line 487
            iload 11 /* cmp */
            ifne 8
         7: .line 488
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            lload 9 /* mid */
            invokevirtual at.yawk.numaec.LinearHashTable.getKey0:(JJ)J
            lload 3 /* key */
            invokestatic java.lang.Long.compareUnsigned:(JJ)I
            istore 11 /* cmp */
         8: .line 490
      StackMap locals: long int
      StackMap stack:
            iload 11 /* cmp */
            ifge 11
         9: .line 491
            lload 9 /* mid */
            lconst_1
            ladd
            lstore 5 /* low */
        10: .line 492
            goto 16
      StackMap locals:
      StackMap stack:
        11: iload 11 /* cmp */
            ifle 14
        12: .line 493
            lload 9 /* mid */
            lconst_1
            lsub
            lstore 7 /* high */
        13: .line 494
            goto 16
        14: .line 495
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            lload 9 /* mid */
            putfield at.yawk.numaec.LinearHashTable$Cursor.indexInBucket:J
        15: .line 496
            return
        end local 11 // int cmp
        end local 9 // long mid
        16: .line 483
      StackMap locals:
      StackMap stack:
            lload 5 /* low */
            lload 7 /* high */
            lcmp
            ifle 4
        17: .line 499
            aload 0 /* this */
            lload 5 /* low */
            ldc -1
            lxor
            putfield at.yawk.numaec.LinearHashTable$Cursor.indexInBucket:J
        18: .line 500
            return
        end local 7 // long high
        end local 5 // long low
        end local 3 // long key
        end local 1 // long hash
        end local 0 // at.yawk.numaec.LinearHashTable$Cursor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   19     0  this  Lat/yawk/numaec/LinearHashTable$Cursor;
            0   19     1  hash  J
            0   19     3   key  J
            2   19     5   low  J
            3   19     7  high  J
            5   16     9   mid  J
            6   16    11   cmp  I
    MethodParameters:
      Name  Flags
      hash  
      key   

  private void appendItemsFromBucket(long, long);
    descriptor: (JJ)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=13, locals=13, args_size=3
        start local 0 // at.yawk.numaec.LinearHashTable$Cursor this
        start local 1 // long sourceBucket
        start local 3 // long startIndex
         0: .line 503
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            lload 1 /* sourceBucket */
            invokevirtual at.yawk.numaec.LinearHashTable.getBucketEntryCount:(J)J
            lload 3 /* startIndex */
            lsub
            lstore 5 /* toCopy */
        start local 5 // long toCopy
         1: .line 504
            goto 19
         2: .line 505
      StackMap locals: long
      StackMap stack:
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            ldc -1
            lcmp
            ifne 4
         3: .line 506
            aload 0 /* this */
            invokevirtual at.yawk.numaec.LinearHashTable$Cursor.allocateBucket:()V
         4: .line 509
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual at.yawk.numaec.LinearHashTable$Cursor.getEntryCount:()J
            lstore 7 /* oldEntryCount */
        start local 7 // long oldEntryCount
         5: .line 510
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            getfield at.yawk.numaec.LinearHashTable.maxBucketEntryCount:I
            i2l
            lload 7 /* oldEntryCount */
            lsub
            lload 5 /* toCopy */
            invokestatic java.lang.Math.min:(JJ)J
            lstore 9 /* copyHere */
        start local 9 // long copyHere
         6: .line 511
            lload 7 /* oldEntryCount */
            lload 9 /* copyHere */
            ladd
            lstore 11 /* newEntryCount */
        start local 11 // long newEntryCount
         7: .line 512
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            getfield at.yawk.numaec.LinearHashTable.buf:Lat/yawk/numaec/LargeByteBuffer;
         8: .line 513
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            getfield at.yawk.numaec.LinearHashTable.buf:Lat/yawk/numaec/LargeByteBuffer;
         9: .line 514
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            lload 1 /* sourceBucket */
            lload 3 /* startIndex */
            invokevirtual at.yawk.numaec.LinearHashTable.getEntryAddress:(JJ)J
        10: .line 515
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            lload 7 /* oldEntryCount */
            invokevirtual at.yawk.numaec.LinearHashTable.getEntryAddress:(JJ)J
        11: .line 516
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            lload 11 /* newEntryCount */
            invokevirtual at.yawk.numaec.LinearHashTable.getEntryAddress:(JJ)J
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            lload 7 /* oldEntryCount */
            invokevirtual at.yawk.numaec.LinearHashTable.getEntryAddress:(JJ)J
            lsub
        12: .line 512
            invokeinterface at.yawk.numaec.LargeByteBuffer.copyFrom:(Lat/yawk/numaec/LargeByteBuffer;JJJ)V
        13: .line 518
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            lload 11 /* newEntryCount */
            invokevirtual at.yawk.numaec.LinearHashTable.setBucketEntryCount:(JJ)V
        14: .line 519
            lload 5 /* toCopy */
            lload 9 /* copyHere */
            lsub
            lstore 5 /* toCopy */
        15: .line 520
            lload 3 /* startIndex */
            lload 9 /* copyHere */
            ladd
            lstore 3 /* startIndex */
        16: .line 521
            lload 11 /* newEntryCount */
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            getfield at.yawk.numaec.LinearHashTable.maxBucketEntryCount:I
            i2l
            lcmp
            iflt 19
        17: .line 522
            aload 0 /* this */
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            putfield at.yawk.numaec.LinearHashTable$Cursor.prevBucket:J
        18: .line 523
            aload 0 /* this */
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            invokevirtual at.yawk.numaec.LinearHashTable.getNextPointer:(J)J
            putfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
        end local 11 // long newEntryCount
        end local 9 // long copyHere
        end local 7 // long oldEntryCount
        19: .line 504
      StackMap locals:
      StackMap stack:
            lload 5 /* toCopy */
            lconst_0
            lcmp
            ifgt 2
        20: .line 526
            return
        end local 5 // long toCopy
        end local 3 // long startIndex
        end local 1 // long sourceBucket
        end local 0 // at.yawk.numaec.LinearHashTable$Cursor this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   21     0           this  Lat/yawk/numaec/LinearHashTable$Cursor;
            0   21     1   sourceBucket  J
            0   21     3     startIndex  J
            1   21     5         toCopy  J
            5   19     7  oldEntryCount  J
            6   19     9       copyHere  J
            7   19    11  newEntryCount  J
    MethodParameters:
              Name  Flags
      sourceBucket  
      startIndex    

  private void splitBucket();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=8, args_size=1
        start local 0 // at.yawk.numaec.LinearHashTable$Cursor this
         0: .line 529
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            getfield at.yawk.numaec.LinearHashTable.splitIndex:I
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucketIndex:I
            if_icmpeq 1
            new java.lang.IllegalStateException
            dup
            invokespecial java.lang.IllegalStateException.<init>:()V
            athrow
         1: .line 530
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucketIndex:I
            iconst_1
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            getfield at.yawk.numaec.LinearHashTable.lowDepth:I
            ishl
            ior
            istore 1 /* daughterBucketIndex */
        start local 1 // int daughterBucketIndex
         2: .line 531
            iload 1 /* daughterBucketIndex */
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            getfield at.yawk.numaec.LinearHashTable.mainBuckets:Lorg/eclipse/collections/api/list/primitive/MutableLongList;
            invokeinterface org.eclipse.collections.api.list.primitive.MutableLongList.size:()I
            if_icmpeq 3
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         3: .line 532
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            getfield at.yawk.numaec.LinearHashTable.mainBuckets:Lorg/eclipse/collections/api/list/primitive/MutableLongList;
            ldc -1
            invokeinterface org.eclipse.collections.api.list.primitive.MutableLongList.add:(J)Z
            pop
         4: .line 533
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            dup
            getfield at.yawk.numaec.LinearHashTable.splitIndex:I
            iconst_1
            iadd
            putfield at.yawk.numaec.LinearHashTable.splitIndex:I
         5: .line 534
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            getfield at.yawk.numaec.LinearHashTable.lowDepth:I
            iconst_m1
            if_icmpeq 6
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            getfield at.yawk.numaec.LinearHashTable.splitIndex:I
            iconst_1
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            getfield at.yawk.numaec.LinearHashTable.lowDepth:I
            ishl
            if_icmpne 8
         6: .line 535
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            iconst_0
            putfield at.yawk.numaec.LinearHashTable.splitIndex:I
         7: .line 536
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            dup
            getfield at.yawk.numaec.LinearHashTable.lowDepth:I
            iconst_1
            iadd
            putfield at.yawk.numaec.LinearHashTable.lowDepth:I
         8: .line 539
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            ldc -1
            lcmp
            ifeq 30
         9: .line 540
            iload 1 /* daughterBucketIndex */
            invokestatic java.lang.Integer.toUnsignedLong:(I)J
            invokestatic java.lang.Long.reverse:(J)J
            lstore 2 /* firstToDaughter */
        start local 2 // long firstToDaughter
        10: .line 541
            aload 0 /* this */
            lload 2 /* firstToDaughter */
            lconst_0
            invokevirtual at.yawk.numaec.LinearHashTable$Cursor.seekInChain:(JJ)V
        11: .line 542
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.indexInBucket:J
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            getfield at.yawk.numaec.LinearHashTable.maxBucketEntryCount:I
            iconst_m1
            ixor
            i2l
            lcmp
            ifne 12
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        12: .line 544
      StackMap locals: long
      StackMap stack:
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            lstore 4 /* pivotBucket */
        start local 4 // long pivotBucket
        13: .line 545
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.indexInBucket:J
            lconst_0
            lcmp
            ifge 14
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.indexInBucket:J
            ldc -1
            lxor
            goto 15
      StackMap locals: long
      StackMap stack:
        14: aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.indexInBucket:J
      StackMap locals:
      StackMap stack: long
        15: lstore 6 /* startIndex */
        start local 6 // long startIndex
        16: .line 546
            lload 6 /* startIndex */
            lconst_0
            lcmp
            ifne 20
        17: .line 548
            aload 0 /* this */
            ldc -1
            invokevirtual at.yawk.numaec.LinearHashTable$Cursor.replaceBucketWith:(J)V
        18: .line 549
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            getfield at.yawk.numaec.LinearHashTable.mainBuckets:Lorg/eclipse/collections/api/list/primitive/MutableLongList;
            iload 1 /* daughterBucketIndex */
            lload 4 /* pivotBucket */
            invokeinterface org.eclipse.collections.api.list.primitive.MutableLongList.set:(IJ)J
            pop2
        19: .line 550
            goto 30
      StackMap locals: long
      StackMap stack:
        20: lload 6 /* startIndex */
            aload 0 /* this */
            invokevirtual at.yawk.numaec.LinearHashTable$Cursor.getEntryCount:()J
            lcmp
            ifge 29
        21: .line 552
            aload 0 /* this */
            iload 1 /* daughterBucketIndex */
            invokevirtual at.yawk.numaec.LinearHashTable$Cursor.seekMainBucketByBucketIndex:(I)V
        22: .line 553
            aload 0 /* this */
            lload 4 /* pivotBucket */
            lload 6 /* startIndex */
            invokevirtual at.yawk.numaec.LinearHashTable$Cursor.appendItemsFromBucket:(JJ)V
        23: .line 554
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            lload 4 /* pivotBucket */
            lload 6 /* startIndex */
            invokevirtual at.yawk.numaec.LinearHashTable.setBucketEntryCount:(JJ)V
        24: .line 556
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.bucket:J
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            lload 4 /* pivotBucket */
            invokevirtual at.yawk.numaec.LinearHashTable.getNextPointer:(J)J
            invokevirtual at.yawk.numaec.LinearHashTable.setNextPointer:(JJ)V
        25: .line 557
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            lload 4 /* pivotBucket */
            ldc -1
            invokevirtual at.yawk.numaec.LinearHashTable.setNextPointer:(JJ)V
        26: .line 558
            aload 0 /* this */
            invokevirtual at.yawk.numaec.LinearHashTable$Cursor.jumpToNextBucket:()V
        27: .line 559
            aload 0 /* this */
            invokevirtual at.yawk.numaec.LinearHashTable$Cursor.backfill:()V
        28: .line 560
            goto 30
        29: .line 562
      StackMap locals:
      StackMap stack:
            lload 6 /* startIndex */
            aload 0 /* this */
            invokevirtual at.yawk.numaec.LinearHashTable$Cursor.getEntryCount:()J
            lcmp
            ifle 30
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        end local 6 // long startIndex
        end local 4 // long pivotBucket
        end local 2 // long firstToDaughter
        30: .line 565
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int daughterBucketIndex
        end local 0 // at.yawk.numaec.LinearHashTable$Cursor this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0   31     0                 this  Lat/yawk/numaec/LinearHashTable$Cursor;
            2   31     1  daughterBucketIndex  I
           10   30     2      firstToDaughter  J
           13   30     4          pivotBucket  J
           16   30     6           startIndex  J

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // at.yawk.numaec.LinearHashTable$Cursor this
         0: .line 569
            aload 0 /* this */
            invokevirtual at.yawk.numaec.LinearHashTable$Cursor.init:()V
         1: .line 570
            aload 0 /* this */
            getfield at.yawk.numaec.LinearHashTable$Cursor.this$0:Lat/yawk/numaec/LinearHashTable;
            getfield at.yawk.numaec.LinearHashTable.reuseCursor:Ljava/util/concurrent/atomic/AtomicReference;
            aload 0 /* this */
            invokevirtual java.util.concurrent.atomic.AtomicReference.set:(Ljava/lang/Object;)V
         2: .line 571
            return
        end local 0 // at.yawk.numaec.LinearHashTable$Cursor this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lat/yawk/numaec/LinearHashTable$Cursor;
}
SourceFile: "LinearHashTable.java"
NestHost: at.yawk.numaec.LinearHashTable
InnerClasses:
  public Cursor = at.yawk.numaec.LinearHashTable$Cursor of at.yawk.numaec.LinearHashTable