public class com.oracle.svm.core.WeakIdentityHashMap<K, V> extends java.util.AbstractMap<K, V> implements java.util.Map<K, V>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.oracle.svm.core.WeakIdentityHashMap
  super_class: java.util.AbstractMap
{
  private static final int DEFAULT_INITIAL_CAPACITY;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 16

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

  private static final float DEFAULT_LOAD_FACTOR;
    descriptor: F
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 0.75

  com.oracle.svm.core.WeakIdentityHashMap$Entry<K, V>[] table;
    descriptor: [Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;
    flags: (0x0000) 
    Signature: [Lcom/oracle/svm/core/WeakIdentityHashMap$Entry<TK;TV;>;

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

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

  private final float loadFactor;
    descriptor: F
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.lang.ref.ReferenceQueue<java.lang.Object> queue;
    descriptor: Ljava/lang/ref/ReferenceQueue;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/lang/ref/ReferenceQueue<Ljava/lang/Object;>;

  int modCount;
    descriptor: I
    flags: (0x0000) 

  transient java.util.Set<K> keySet;
    descriptor: Ljava/util/Set;
    flags: (0x0080) ACC_TRANSIENT
    Signature: Ljava/util/Set<TK;>;

  transient java.util.Collection<V> values;
    descriptor: Ljava/util/Collection;
    flags: (0x0080) ACC_TRANSIENT
    Signature: Ljava/util/Collection<TV;>;

  private static final java.lang.Object NULL_KEY;
    descriptor: Ljava/lang/Object;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private transient java.util.Set<java.util.Map$Entry<K, V>> entrySet;
    descriptor: Ljava/util/Set;
    flags: (0x0082) ACC_PRIVATE, ACC_TRANSIENT
    Signature: Ljava/util/Set<Ljava/util/Map$Entry<TK;TV;>;>;

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 310
            new java.lang.Object
            dup
            invokespecial java.lang.Object.<init>:()V
            putstatic com.oracle.svm.core.WeakIdentityHashMap.NULL_KEY:Ljava/lang/Object;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private com.oracle.svm.core.WeakIdentityHashMap$Entry<K, V>[] newTable(int);
    descriptor: (I)[Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // com.oracle.svm.core.WeakIdentityHashMap this
        start local 1 // int n
         0: .line 239
            iload 1 /* n */
            anewarray com.oracle.svm.core.WeakIdentityHashMap$Entry
            areturn
        end local 1 // int n
        end local 0 // com.oracle.svm.core.WeakIdentityHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/svm/core/WeakIdentityHashMap<TK;TV;>;
            0    1     1     n  I
    Signature: (I)[Lcom/oracle/svm/core/WeakIdentityHashMap$Entry<TK;TV;>;
    MethodParameters:
      Name  Flags
      n     

  public void <init>(int, float);
    descriptor: (IF)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // com.oracle.svm.core.WeakIdentityHashMap this
        start local 1 // int initialCapacity
        start local 2 // float loadFactor
         0: .line 251
            aload 0 /* this */
            invokespecial java.util.AbstractMap.<init>:()V
         1: .line 219
            aload 0 /* this */
            new java.lang.ref.ReferenceQueue
            dup
            invokespecial java.lang.ref.ReferenceQueue.<init>:()V
            putfield com.oracle.svm.core.WeakIdentityHashMap.queue:Ljava/lang/ref/ReferenceQueue;
         2: .line 252
            iload 1 /* initialCapacity */
            ifge 6
         3: .line 253
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Illegal Initial Capacity: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
         4: .line 254
            iload 1 /* initialCapacity */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         5: .line 253
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 255
      StackMap locals: com.oracle.svm.core.WeakIdentityHashMap int float
      StackMap stack:
            iload 1 /* initialCapacity */
            ldc 1073741824
            if_icmple 8
         7: .line 256
            ldc 1073741824
            istore 1 /* initialCapacity */
         8: .line 258
      StackMap locals:
      StackMap stack:
            fload 2 /* loadFactor */
            fconst_0
            fcmpg
            ifle 9
            fload 2 /* loadFactor */
            invokestatic java.lang.Float.isNaN:(F)Z
            ifeq 12
         9: .line 259
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Illegal Load factor: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
        10: .line 260
            fload 2 /* loadFactor */
            invokevirtual java.lang.StringBuilder.append:(F)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        11: .line 259
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        12: .line 261
      StackMap locals:
      StackMap stack:
            iconst_1
            istore 3 /* capacity */
        start local 3 // int capacity
        13: .line 262
            goto 15
        14: .line 263
      StackMap locals: int
      StackMap stack:
            iload 3 /* capacity */
            iconst_1
            ishl
            istore 3 /* capacity */
        15: .line 262
      StackMap locals:
      StackMap stack:
            iload 3 /* capacity */
            iload 1 /* initialCapacity */
            if_icmplt 14
        16: .line 264
            aload 0 /* this */
            aload 0 /* this */
            iload 3 /* capacity */
            invokevirtual com.oracle.svm.core.WeakIdentityHashMap.newTable:(I)[Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;
            putfield com.oracle.svm.core.WeakIdentityHashMap.table:[Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;
        17: .line 265
            aload 0 /* this */
            fload 2 /* loadFactor */
            putfield com.oracle.svm.core.WeakIdentityHashMap.loadFactor:F
        18: .line 266
            aload 0 /* this */
            iload 3 /* capacity */
            i2f
            fload 2 /* loadFactor */
            fmul
            f2i
            putfield com.oracle.svm.core.WeakIdentityHashMap.threshold:I
        19: .line 267
            return
        end local 3 // int capacity
        end local 2 // float loadFactor
        end local 1 // int initialCapacity
        end local 0 // com.oracle.svm.core.WeakIdentityHashMap this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   20     0             this  Lcom/oracle/svm/core/WeakIdentityHashMap<TK;TV;>;
            0   20     1  initialCapacity  I
            0   20     2       loadFactor  F
           13   20     3         capacity  I
    MethodParameters:
                 Name  Flags
      initialCapacity  
      loadFactor       

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.oracle.svm.core.WeakIdentityHashMap this
        start local 1 // int initialCapacity
         0: .line 277
            aload 0 /* this */
            iload 1 /* initialCapacity */
            ldc 0.75
            invokespecial com.oracle.svm.core.WeakIdentityHashMap.<init>:(IF)V
         1: .line 278
            return
        end local 1 // int initialCapacity
        end local 0 // com.oracle.svm.core.WeakIdentityHashMap this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    2     0             this  Lcom/oracle/svm/core/WeakIdentityHashMap<TK;TV;>;
            0    2     1  initialCapacity  I
    MethodParameters:
                 Name  Flags
      initialCapacity  

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.oracle.svm.core.WeakIdentityHashMap this
         0: .line 285
            aload 0 /* this */
            bipush 16
            ldc 0.75
            invokespecial com.oracle.svm.core.WeakIdentityHashMap.<init>:(IF)V
         1: .line 286
            return
        end local 0 // com.oracle.svm.core.WeakIdentityHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/svm/core/WeakIdentityHashMap<TK;TV;>;

  public void <init>(java.util.Map<? extends K, ? extends V>);
    descriptor: (Ljava/util/Map;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.oracle.svm.core.WeakIdentityHashMap this
        start local 1 // java.util.Map m
         0: .line 299
            aload 0 /* this */
            aload 1 /* m */
            invokeinterface java.util.Map.size:()I
            i2f
            ldc 0.75
            fdiv
            f2i
            iconst_1
            iadd
         1: .line 300
            bipush 16
         2: .line 299
            invokestatic java.lang.Math.max:(II)I
         3: .line 301
            ldc 0.75
            invokespecial com.oracle.svm.core.WeakIdentityHashMap.<init>:(IF)V
         4: .line 302
            aload 0 /* this */
            aload 1 /* m */
            invokevirtual com.oracle.svm.core.WeakIdentityHashMap.putAll:(Ljava/util/Map;)V
         5: .line 303
            return
        end local 1 // java.util.Map m
        end local 0 // com.oracle.svm.core.WeakIdentityHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lcom/oracle/svm/core/WeakIdentityHashMap<TK;TV;>;
            0    6     1     m  Ljava/util/Map<+TK;+TV;>;
    Signature: (Ljava/util/Map<+TK;+TV;>;)V
    MethodParameters:
      Name  Flags
      m     

  private static java.lang.Object maskNull(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.lang.Object key
         0: .line 316
            aload 0 /* key */
            ifnonnull 1
            getstatic com.oracle.svm.core.WeakIdentityHashMap.NULL_KEY:Ljava/lang/Object;
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* key */
      StackMap locals:
      StackMap stack: java.lang.Object
         2: areturn
        end local 0 // java.lang.Object key
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0   key  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      key   

  static java.lang.Object unmaskNull(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.lang.Object key
         0: .line 323
            aload 0 /* key */
            getstatic com.oracle.svm.core.WeakIdentityHashMap.NULL_KEY:Ljava/lang/Object;
            if_acmpne 1
            aconst_null
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* key */
      StackMap locals:
      StackMap stack: java.lang.Object
         2: areturn
        end local 0 // java.lang.Object key
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0   key  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      key   

  private static boolean eq(java.lang.Object, java.lang.Object);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Z
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.lang.Object x
        start local 1 // java.lang.Object y
         0: .line 331
            aload 0 /* x */
            aload 1 /* y */
            if_acmpne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // java.lang.Object y
        end local 0 // java.lang.Object x
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0     x  Ljava/lang/Object;
            0    2     1     y  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      x     
      y     

  final int hash(java.lang.Object);
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0010) ACC_FINAL
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // com.oracle.svm.core.WeakIdentityHashMap this
        start local 1 // java.lang.Object k
         0: .line 342
            aload 1 /* k */
            invokestatic java.lang.System.identityHashCode:(Ljava/lang/Object;)I
            istore 2 /* h */
        start local 2 // int h
         1: .line 347
            iload 2 /* h */
            iload 2 /* h */
            bipush 20
            iushr
            iload 2 /* h */
            bipush 12
            iushr
            ixor
            ixor
            istore 2 /* h */
         2: .line 348
            iload 2 /* h */
            iload 2 /* h */
            bipush 7
            iushr
            ixor
            iload 2 /* h */
            iconst_4
            iushr
            ixor
            ireturn
        end local 2 // int h
        end local 1 // java.lang.Object k
        end local 0 // com.oracle.svm.core.WeakIdentityHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/oracle/svm/core/WeakIdentityHashMap<TK;TV;>;
            0    3     1     k  Ljava/lang/Object;
            1    3     2     h  I
    MethodParameters:
      Name  Flags
      k     

  private static int indexFor(int, int);
    descriptor: (II)I
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // int h
        start local 1 // int length
         0: .line 355
            iload 0 /* h */
            iload 1 /* length */
            iconst_1
            isub
            iand
            ireturn
        end local 1 // int length
        end local 0 // int h
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0       h  I
            0    1     1  length  I
    MethodParameters:
        Name  Flags
      h       
      length  

  private void expungeStaleEntries();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=8, args_size=1
        start local 0 // com.oracle.svm.core.WeakIdentityHashMap this
         0: .line 362
            goto 22
        start local 1 // java.lang.Object x
         1: .line 363
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.svm.core.WeakIdentityHashMap.queue:Ljava/lang/ref/ReferenceQueue;
            dup
            astore 2
            monitorenter
         2: .line 365
            aload 1 /* x */
            checkcast com.oracle.svm.core.WeakIdentityHashMap$Entry
            astore 3 /* e */
        start local 3 // com.oracle.svm.core.WeakIdentityHashMap$Entry e
         3: .line 366
            aload 3 /* e */
            getfield com.oracle.svm.core.WeakIdentityHashMap$Entry.hash:I
            aload 0 /* this */
            getfield com.oracle.svm.core.WeakIdentityHashMap.table:[Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;
            arraylength
            invokestatic com.oracle.svm.core.WeakIdentityHashMap.indexFor:(II)I
            istore 4 /* i */
        start local 4 // int i
         4: .line 368
            aload 0 /* this */
            getfield com.oracle.svm.core.WeakIdentityHashMap.table:[Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;
            iload 4 /* i */
            aaload
            astore 5 /* prev */
        start local 5 // com.oracle.svm.core.WeakIdentityHashMap$Entry prev
         5: .line 369
            aload 5 /* prev */
            astore 6 /* p */
        start local 6 // com.oracle.svm.core.WeakIdentityHashMap$Entry p
         6: .line 370
            goto 17
         7: .line 371
      StackMap locals: com.oracle.svm.core.WeakIdentityHashMap java.lang.Object java.lang.ref.ReferenceQueue com.oracle.svm.core.WeakIdentityHashMap$Entry int com.oracle.svm.core.WeakIdentityHashMap$Entry com.oracle.svm.core.WeakIdentityHashMap$Entry
      StackMap stack:
            aload 6 /* p */
            getfield com.oracle.svm.core.WeakIdentityHashMap$Entry.next:Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;
            astore 7 /* next */
        start local 7 // com.oracle.svm.core.WeakIdentityHashMap$Entry next
         8: .line 372
            aload 6 /* p */
            aload 3 /* e */
            if_acmpne 15
         9: .line 373
            aload 5 /* prev */
            aload 3 /* e */
            if_acmpne 11
        10: .line 374
            aload 0 /* this */
            getfield com.oracle.svm.core.WeakIdentityHashMap.table:[Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;
            iload 4 /* i */
            aload 7 /* next */
            aastore
            goto 12
        11: .line 376
      StackMap locals: com.oracle.svm.core.WeakIdentityHashMap$Entry
      StackMap stack:
            aload 5 /* prev */
            aload 7 /* next */
            putfield com.oracle.svm.core.WeakIdentityHashMap$Entry.next:Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;
        12: .line 379
      StackMap locals:
      StackMap stack:
            aload 3 /* e */
            aconst_null
            putfield com.oracle.svm.core.WeakIdentityHashMap$Entry.value:Ljava/lang/Object;
        13: .line 380
            aload 0 /* this */
            dup
            getfield com.oracle.svm.core.WeakIdentityHashMap.size:I
            iconst_1
            isub
            putfield com.oracle.svm.core.WeakIdentityHashMap.size:I
        14: .line 381
            goto 18
        15: .line 383
      StackMap locals:
      StackMap stack:
            aload 6 /* p */
            astore 5 /* prev */
        16: .line 384
            aload 7 /* next */
            astore 6 /* p */
        end local 7 // com.oracle.svm.core.WeakIdentityHashMap$Entry next
        17: .line 370
      StackMap locals:
      StackMap stack:
            aload 6 /* p */
            ifnonnull 7
        end local 6 // com.oracle.svm.core.WeakIdentityHashMap$Entry p
        end local 5 // com.oracle.svm.core.WeakIdentityHashMap$Entry prev
        end local 4 // int i
        end local 3 // com.oracle.svm.core.WeakIdentityHashMap$Entry e
        18: .line 363
      StackMap locals: com.oracle.svm.core.WeakIdentityHashMap java.lang.Object java.lang.ref.ReferenceQueue
      StackMap stack:
            aload 2
            monitorexit
        19: goto 22
      StackMap locals:
      StackMap stack: java.lang.Throwable
        20: aload 2
            monitorexit
        21: athrow
        end local 1 // java.lang.Object x
        22: .line 362
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.svm.core.WeakIdentityHashMap.queue:Ljava/lang/ref/ReferenceQueue;
            invokevirtual java.lang.ref.ReferenceQueue.poll:()Ljava/lang/ref/Reference;
            dup
            astore 1 /* x */
        start local 1 // java.lang.Object x
        23: ifnonnull 1
        end local 1 // java.lang.Object x
        24: .line 388
            return
        end local 0 // com.oracle.svm.core.WeakIdentityHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   25     0  this  Lcom/oracle/svm/core/WeakIdentityHashMap<TK;TV;>;
            1   22     1     x  Ljava/lang/Object;
           23   24     1     x  Ljava/lang/Object;
            3   18     3     e  Lcom/oracle/svm/core/WeakIdentityHashMap$Entry<TK;TV;>;
            4   18     4     i  I
            5   18     5  prev  Lcom/oracle/svm/core/WeakIdentityHashMap$Entry<TK;TV;>;
            6   18     6     p  Lcom/oracle/svm/core/WeakIdentityHashMap$Entry<TK;TV;>;
            8   17     7  next  Lcom/oracle/svm/core/WeakIdentityHashMap$Entry<TK;TV;>;
      Exception table:
        from    to  target  type
           2    19      20  any
          20    21      20  any

  private com.oracle.svm.core.WeakIdentityHashMap$Entry<K, V>[] getTable();
    descriptor: ()[Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.svm.core.WeakIdentityHashMap this
         0: .line 394
            aload 0 /* this */
            invokevirtual com.oracle.svm.core.WeakIdentityHashMap.expungeStaleEntries:()V
         1: .line 395
            aload 0 /* this */
            getfield com.oracle.svm.core.WeakIdentityHashMap.table:[Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;
            areturn
        end local 0 // com.oracle.svm.core.WeakIdentityHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/svm/core/WeakIdentityHashMap<TK;TV;>;
    Signature: ()[Lcom/oracle/svm/core/WeakIdentityHashMap$Entry<TK;TV;>;

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.svm.core.WeakIdentityHashMap this
         0: .line 405
            aload 0 /* this */
            getfield com.oracle.svm.core.WeakIdentityHashMap.size:I
            ifne 2
         1: .line 406
            iconst_0
            ireturn
         2: .line 407
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.oracle.svm.core.WeakIdentityHashMap.expungeStaleEntries:()V
         3: .line 408
            aload 0 /* this */
            getfield com.oracle.svm.core.WeakIdentityHashMap.size:I
            ireturn
        end local 0 // com.oracle.svm.core.WeakIdentityHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/oracle/svm/core/WeakIdentityHashMap<TK;TV;>;

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.svm.core.WeakIdentityHashMap this
         0: .line 418
            aload 0 /* this */
            invokevirtual com.oracle.svm.core.WeakIdentityHashMap.size:()I
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // com.oracle.svm.core.WeakIdentityHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/svm/core/WeakIdentityHashMap<TK;TV;>;

  public V get();
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=7, args_size=2
        start local 0 // com.oracle.svm.core.WeakIdentityHashMap this
        start local 1 // java.lang.Object key
         0: .line 439
            aload 1 /* key */
            invokestatic com.oracle.svm.core.WeakIdentityHashMap.maskNull:(Ljava/lang/Object;)Ljava/lang/Object;
            astore 2 /* k */
        start local 2 // java.lang.Object k
         1: .line 440
            aload 0 /* this */
            aload 2 /* k */
            invokevirtual com.oracle.svm.core.WeakIdentityHashMap.hash:(Ljava/lang/Object;)I
            istore 3 /* h */
        start local 3 // int h
         2: .line 441
            aload 0 /* this */
            invokevirtual com.oracle.svm.core.WeakIdentityHashMap.getTable:()[Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;
            astore 4 /* tab */
        start local 4 // com.oracle.svm.core.WeakIdentityHashMap$Entry[] tab
         3: .line 442
            iload 3 /* h */
            aload 4 /* tab */
            arraylength
            invokestatic com.oracle.svm.core.WeakIdentityHashMap.indexFor:(II)I
            istore 5 /* index */
        start local 5 // int index
         4: .line 443
            aload 4 /* tab */
            iload 5 /* index */
            aaload
            astore 6 /* e */
        start local 6 // com.oracle.svm.core.WeakIdentityHashMap$Entry e
         5: .line 444
            goto 9
         6: .line 445
      StackMap locals: com.oracle.svm.core.WeakIdentityHashMap java.lang.Object java.lang.Object int com.oracle.svm.core.WeakIdentityHashMap$Entry[] int com.oracle.svm.core.WeakIdentityHashMap$Entry
      StackMap stack:
            aload 6 /* e */
            getfield com.oracle.svm.core.WeakIdentityHashMap$Entry.hash:I
            iload 3 /* h */
            if_icmpne 8
            aload 2 /* k */
            aload 6 /* e */
            invokevirtual com.oracle.svm.core.WeakIdentityHashMap$Entry.get:()Ljava/lang/Object;
            invokestatic com.oracle.svm.core.WeakIdentityHashMap.eq:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 8
         7: .line 446
            aload 6 /* e */
            getfield com.oracle.svm.core.WeakIdentityHashMap$Entry.value:Ljava/lang/Object;
            areturn
         8: .line 447
      StackMap locals:
      StackMap stack:
            aload 6 /* e */
            getfield com.oracle.svm.core.WeakIdentityHashMap$Entry.next:Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;
            astore 6 /* e */
         9: .line 444
      StackMap locals:
      StackMap stack:
            aload 6 /* e */
            ifnonnull 6
        10: .line 449
            aconst_null
            areturn
        end local 6 // com.oracle.svm.core.WeakIdentityHashMap$Entry e
        end local 5 // int index
        end local 4 // com.oracle.svm.core.WeakIdentityHashMap$Entry[] tab
        end local 3 // int h
        end local 2 // java.lang.Object k
        end local 1 // java.lang.Object key
        end local 0 // com.oracle.svm.core.WeakIdentityHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   11     0   this  Lcom/oracle/svm/core/WeakIdentityHashMap<TK;TV;>;
            0   11     1    key  Ljava/lang/Object;
            1   11     2      k  Ljava/lang/Object;
            2   11     3      h  I
            3   11     4    tab  [Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;
            4   11     5  index  I
            5   11     6      e  Lcom/oracle/svm/core/WeakIdentityHashMap$Entry<TK;TV;>;
    Signature: (Ljava/lang/Object;)TV;
    MethodParameters:
      Name  Flags
      key   

  public boolean containsKey(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.svm.core.WeakIdentityHashMap this
        start local 1 // java.lang.Object key
         0: .line 461
            aload 0 /* this */
            aload 1 /* key */
            invokevirtual com.oracle.svm.core.WeakIdentityHashMap.getEntry:(Ljava/lang/Object;)Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;
            ifnull 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // java.lang.Object key
        end local 0 // com.oracle.svm.core.WeakIdentityHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/svm/core/WeakIdentityHashMap<TK;TV;>;
            0    2     1   key  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      key   

  com.oracle.svm.core.WeakIdentityHashMap$Entry<K, V> getEntry();
    descriptor: (Ljava/lang/Object;)Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;
    flags: (0x0000) 
    Code:
      stack=2, locals=7, args_size=2
        start local 0 // com.oracle.svm.core.WeakIdentityHashMap this
        start local 1 // java.lang.Object key
         0: .line 469
            aload 1 /* key */
            invokestatic com.oracle.svm.core.WeakIdentityHashMap.maskNull:(Ljava/lang/Object;)Ljava/lang/Object;
            astore 2 /* k */
        start local 2 // java.lang.Object k
         1: .line 470
            aload 0 /* this */
            aload 2 /* k */
            invokevirtual com.oracle.svm.core.WeakIdentityHashMap.hash:(Ljava/lang/Object;)I
            istore 3 /* h */
        start local 3 // int h
         2: .line 471
            aload 0 /* this */
            invokevirtual com.oracle.svm.core.WeakIdentityHashMap.getTable:()[Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;
            astore 4 /* tab */
        start local 4 // com.oracle.svm.core.WeakIdentityHashMap$Entry[] tab
         3: .line 472
            iload 3 /* h */
            aload 4 /* tab */
            arraylength
            invokestatic com.oracle.svm.core.WeakIdentityHashMap.indexFor:(II)I
            istore 5 /* index */
        start local 5 // int index
         4: .line 473
            aload 4 /* tab */
            iload 5 /* index */
            aaload
            astore 6 /* e */
        start local 6 // com.oracle.svm.core.WeakIdentityHashMap$Entry e
         5: .line 474
            goto 7
         6: .line 475
      StackMap locals: com.oracle.svm.core.WeakIdentityHashMap java.lang.Object java.lang.Object int com.oracle.svm.core.WeakIdentityHashMap$Entry[] int com.oracle.svm.core.WeakIdentityHashMap$Entry
      StackMap stack:
            aload 6 /* e */
            getfield com.oracle.svm.core.WeakIdentityHashMap$Entry.next:Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;
            astore 6 /* e */
         7: .line 474
      StackMap locals:
      StackMap stack:
            aload 6 /* e */
            ifnull 8
            aload 6 /* e */
            getfield com.oracle.svm.core.WeakIdentityHashMap$Entry.hash:I
            iload 3 /* h */
            if_icmpne 6
            aload 2 /* k */
            aload 6 /* e */
            invokevirtual com.oracle.svm.core.WeakIdentityHashMap$Entry.get:()Ljava/lang/Object;
            invokestatic com.oracle.svm.core.WeakIdentityHashMap.eq:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 6
         8: .line 476
      StackMap locals:
      StackMap stack:
            aload 6 /* e */
            areturn
        end local 6 // com.oracle.svm.core.WeakIdentityHashMap$Entry e
        end local 5 // int index
        end local 4 // com.oracle.svm.core.WeakIdentityHashMap$Entry[] tab
        end local 3 // int h
        end local 2 // java.lang.Object k
        end local 1 // java.lang.Object key
        end local 0 // com.oracle.svm.core.WeakIdentityHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    9     0   this  Lcom/oracle/svm/core/WeakIdentityHashMap<TK;TV;>;
            0    9     1    key  Ljava/lang/Object;
            1    9     2      k  Ljava/lang/Object;
            2    9     3      h  I
            3    9     4    tab  [Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;
            4    9     5  index  I
            5    9     6      e  Lcom/oracle/svm/core/WeakIdentityHashMap$Entry<TK;TV;>;
    Signature: (Ljava/lang/Object;)Lcom/oracle/svm/core/WeakIdentityHashMap$Entry<TK;TV;>;
    MethodParameters:
      Name  Flags
      key   

  public V put(K, );
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=9, locals=9, args_size=3
        start local 0 // com.oracle.svm.core.WeakIdentityHashMap this
        start local 1 // java.lang.Object key
        start local 2 // java.lang.Object value
         0: .line 492
            aload 1 /* key */
            invokestatic com.oracle.svm.core.WeakIdentityHashMap.maskNull:(Ljava/lang/Object;)Ljava/lang/Object;
            astore 3 /* k */
        start local 3 // java.lang.Object k
         1: .line 493
            aload 0 /* this */
            aload 3 /* k */
            invokevirtual com.oracle.svm.core.WeakIdentityHashMap.hash:(Ljava/lang/Object;)I
            istore 4 /* h */
        start local 4 // int h
         2: .line 494
            aload 0 /* this */
            invokevirtual com.oracle.svm.core.WeakIdentityHashMap.getTable:()[Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;
            astore 5 /* tab */
        start local 5 // com.oracle.svm.core.WeakIdentityHashMap$Entry[] tab
         3: .line 495
            iload 4 /* h */
            aload 5 /* tab */
            arraylength
            invokestatic com.oracle.svm.core.WeakIdentityHashMap.indexFor:(II)I
            istore 6 /* i */
        start local 6 // int i
         4: .line 497
            aload 5 /* tab */
            iload 6 /* i */
            aaload
            astore 7 /* e */
        start local 7 // com.oracle.svm.core.WeakIdentityHashMap$Entry e
         5: goto 12
         6: .line 498
      StackMap locals: com.oracle.svm.core.WeakIdentityHashMap java.lang.Object java.lang.Object java.lang.Object int com.oracle.svm.core.WeakIdentityHashMap$Entry[] int com.oracle.svm.core.WeakIdentityHashMap$Entry
      StackMap stack:
            iload 4 /* h */
            aload 7 /* e */
            getfield com.oracle.svm.core.WeakIdentityHashMap$Entry.hash:I
            if_icmpne 11
            aload 3 /* k */
            aload 7 /* e */
            invokevirtual com.oracle.svm.core.WeakIdentityHashMap$Entry.get:()Ljava/lang/Object;
            invokestatic com.oracle.svm.core.WeakIdentityHashMap.eq:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 11
         7: .line 499
            aload 7 /* e */
            getfield com.oracle.svm.core.WeakIdentityHashMap$Entry.value:Ljava/lang/Object;
            astore 8 /* oldValue */
        start local 8 // java.lang.Object oldValue
         8: .line 500
            aload 2 /* value */
            aload 8 /* oldValue */
            if_acmpeq 10
         9: .line 501
            aload 7 /* e */
            aload 2 /* value */
            putfield com.oracle.svm.core.WeakIdentityHashMap$Entry.value:Ljava/lang/Object;
        10: .line 502
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 8 /* oldValue */
            areturn
        end local 8 // java.lang.Object oldValue
        11: .line 497
      StackMap locals:
      StackMap stack:
            aload 7 /* e */
            getfield com.oracle.svm.core.WeakIdentityHashMap$Entry.next:Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;
            astore 7 /* e */
      StackMap locals:
      StackMap stack:
        12: aload 7 /* e */
            ifnonnull 6
        end local 7 // com.oracle.svm.core.WeakIdentityHashMap$Entry e
        13: .line 506
            aload 0 /* this */
            dup
            getfield com.oracle.svm.core.WeakIdentityHashMap.modCount:I
            iconst_1
            iadd
            putfield com.oracle.svm.core.WeakIdentityHashMap.modCount:I
        14: .line 507
            aload 5 /* tab */
            iload 6 /* i */
            aaload
            astore 7 /* e */
        start local 7 // com.oracle.svm.core.WeakIdentityHashMap$Entry e
        15: .line 508
            aload 5 /* tab */
            iload 6 /* i */
            new com.oracle.svm.core.WeakIdentityHashMap$Entry
            dup
            aload 3 /* k */
            aload 2 /* value */
            aload 0 /* this */
            getfield com.oracle.svm.core.WeakIdentityHashMap.queue:Ljava/lang/ref/ReferenceQueue;
            iload 4 /* h */
            aload 7 /* e */
            invokespecial com.oracle.svm.core.WeakIdentityHashMap$Entry.<init>:(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/ref/ReferenceQueue;ILcom/oracle/svm/core/WeakIdentityHashMap$Entry;)V
            aastore
        16: .line 509
            aload 0 /* this */
            dup
            getfield com.oracle.svm.core.WeakIdentityHashMap.size:I
            iconst_1
            iadd
            dup_x1
            putfield com.oracle.svm.core.WeakIdentityHashMap.size:I
            aload 0 /* this */
            getfield com.oracle.svm.core.WeakIdentityHashMap.threshold:I
            if_icmplt 18
        17: .line 510
            aload 0 /* this */
            aload 5 /* tab */
            arraylength
            iconst_2
            imul
            invokevirtual com.oracle.svm.core.WeakIdentityHashMap.resize:(I)V
        18: .line 511
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 7 // com.oracle.svm.core.WeakIdentityHashMap$Entry e
        end local 6 // int i
        end local 5 // com.oracle.svm.core.WeakIdentityHashMap$Entry[] tab
        end local 4 // int h
        end local 3 // java.lang.Object k
        end local 2 // java.lang.Object value
        end local 1 // java.lang.Object key
        end local 0 // com.oracle.svm.core.WeakIdentityHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   19     0      this  Lcom/oracle/svm/core/WeakIdentityHashMap<TK;TV;>;
            0   19     1       key  TK;
            0   19     2     value  TV;
            1   19     3         k  Ljava/lang/Object;
            2   19     4         h  I
            3   19     5       tab  [Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;
            4   19     6         i  I
            5   13     7         e  Lcom/oracle/svm/core/WeakIdentityHashMap$Entry<TK;TV;>;
            8   11     8  oldValue  TV;
           15   19     7         e  Lcom/oracle/svm/core/WeakIdentityHashMap$Entry<TK;TV;>;
    Signature: (TK;TV;)TV;
    MethodParameters:
       Name  Flags
      key    
      value  

  void resize(int);
    descriptor: (I)V
    flags: (0x0000) 
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // com.oracle.svm.core.WeakIdentityHashMap this
        start local 1 // int newCapacity
         0: .line 529
            aload 0 /* this */
            invokevirtual com.oracle.svm.core.WeakIdentityHashMap.getTable:()[Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;
            astore 2 /* oldTable */
        start local 2 // com.oracle.svm.core.WeakIdentityHashMap$Entry[] oldTable
         1: .line 530
            aload 2 /* oldTable */
            arraylength
            istore 3 /* oldCapacity */
        start local 3 // int oldCapacity
         2: .line 531
            iload 3 /* oldCapacity */
            ldc 1073741824
            if_icmpne 5
         3: .line 532
            aload 0 /* this */
            ldc 2147483647
            putfield com.oracle.svm.core.WeakIdentityHashMap.threshold:I
         4: .line 533
            return
         5: .line 536
      StackMap locals: com.oracle.svm.core.WeakIdentityHashMap$Entry[] int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* newCapacity */
            invokevirtual com.oracle.svm.core.WeakIdentityHashMap.newTable:(I)[Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;
            astore 4 /* newTable */
        start local 4 // com.oracle.svm.core.WeakIdentityHashMap$Entry[] newTable
         6: .line 537
            aload 0 /* this */
            aload 2 /* oldTable */
            aload 4 /* newTable */
            invokevirtual com.oracle.svm.core.WeakIdentityHashMap.transfer:([Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;[Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;)V
         7: .line 538
            aload 0 /* this */
            aload 4 /* newTable */
            putfield com.oracle.svm.core.WeakIdentityHashMap.table:[Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;
         8: .line 545
            aload 0 /* this */
            getfield com.oracle.svm.core.WeakIdentityHashMap.size:I
            aload 0 /* this */
            getfield com.oracle.svm.core.WeakIdentityHashMap.threshold:I
            iconst_2
            idiv
            if_icmplt 11
         9: .line 546
            aload 0 /* this */
            iload 1 /* newCapacity */
            i2f
            aload 0 /* this */
            getfield com.oracle.svm.core.WeakIdentityHashMap.loadFactor:F
            fmul
            f2i
            putfield com.oracle.svm.core.WeakIdentityHashMap.threshold:I
        10: .line 547
            goto 14
        11: .line 548
      StackMap locals: com.oracle.svm.core.WeakIdentityHashMap$Entry[]
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.oracle.svm.core.WeakIdentityHashMap.expungeStaleEntries:()V
        12: .line 549
            aload 0 /* this */
            aload 4 /* newTable */
            aload 2 /* oldTable */
            invokevirtual com.oracle.svm.core.WeakIdentityHashMap.transfer:([Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;[Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;)V
        13: .line 550
            aload 0 /* this */
            aload 2 /* oldTable */
            putfield com.oracle.svm.core.WeakIdentityHashMap.table:[Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;
        14: .line 552
      StackMap locals:
      StackMap stack:
            return
        end local 4 // com.oracle.svm.core.WeakIdentityHashMap$Entry[] newTable
        end local 3 // int oldCapacity
        end local 2 // com.oracle.svm.core.WeakIdentityHashMap$Entry[] oldTable
        end local 1 // int newCapacity
        end local 0 // com.oracle.svm.core.WeakIdentityHashMap this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   15     0         this  Lcom/oracle/svm/core/WeakIdentityHashMap<TK;TV;>;
            0   15     1  newCapacity  I
            1   15     2     oldTable  [Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;
            2   15     3  oldCapacity  I
            6   15     4     newTable  [Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;
    MethodParameters:
             Name  Flags
      newCapacity  

  private void transfer(com.oracle.svm.core.WeakIdentityHashMap$Entry<K, V>[], com.oracle.svm.core.WeakIdentityHashMap$Entry<K, V>[]);
    descriptor: ([Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;[Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=8, args_size=3
        start local 0 // com.oracle.svm.core.WeakIdentityHashMap this
        start local 1 // com.oracle.svm.core.WeakIdentityHashMap$Entry[] src
        start local 2 // com.oracle.svm.core.WeakIdentityHashMap$Entry[] dest
         0: .line 556
            iconst_0
            istore 3 /* j */
        start local 3 // int j
         1: goto 18
         2: .line 557
      StackMap locals: int
      StackMap stack:
            aload 1 /* src */
            iload 3 /* j */
            aaload
            astore 4 /* e */
        start local 4 // com.oracle.svm.core.WeakIdentityHashMap$Entry e
         3: .line 558
            aload 1 /* src */
            iload 3 /* j */
            aconst_null
            aastore
         4: .line 559
            goto 16
         5: .line 560
      StackMap locals: com.oracle.svm.core.WeakIdentityHashMap$Entry
      StackMap stack:
            aload 4 /* e */
            getfield com.oracle.svm.core.WeakIdentityHashMap$Entry.next:Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;
            astore 5 /* next */
        start local 5 // com.oracle.svm.core.WeakIdentityHashMap$Entry next
         6: .line 561
            aload 4 /* e */
            invokevirtual com.oracle.svm.core.WeakIdentityHashMap$Entry.get:()Ljava/lang/Object;
            astore 6 /* key */
        start local 6 // java.lang.Object key
         7: .line 562
            aload 6 /* key */
            ifnonnull 12
         8: .line 563
            aload 4 /* e */
            aconst_null
            putfield com.oracle.svm.core.WeakIdentityHashMap$Entry.next:Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;
         9: .line 564
            aload 4 /* e */
            aconst_null
            putfield com.oracle.svm.core.WeakIdentityHashMap$Entry.value:Ljava/lang/Object;
        10: .line 565
            aload 0 /* this */
            dup
            getfield com.oracle.svm.core.WeakIdentityHashMap.size:I
            iconst_1
            isub
            putfield com.oracle.svm.core.WeakIdentityHashMap.size:I
        11: .line 566
            goto 15
        12: .line 567
      StackMap locals: com.oracle.svm.core.WeakIdentityHashMap$Entry java.lang.Object
      StackMap stack:
            aload 4 /* e */
            getfield com.oracle.svm.core.WeakIdentityHashMap$Entry.hash:I
            aload 2 /* dest */
            arraylength
            invokestatic com.oracle.svm.core.WeakIdentityHashMap.indexFor:(II)I
            istore 7 /* i */
        start local 7 // int i
        13: .line 568
            aload 4 /* e */
            aload 2 /* dest */
            iload 7 /* i */
            aaload
            putfield com.oracle.svm.core.WeakIdentityHashMap$Entry.next:Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;
        14: .line 569
            aload 2 /* dest */
            iload 7 /* i */
            aload 4 /* e */
            aastore
        end local 7 // int i
        15: .line 571
      StackMap locals:
      StackMap stack:
            aload 5 /* next */
            astore 4 /* e */
        end local 6 // java.lang.Object key
        end local 5 // com.oracle.svm.core.WeakIdentityHashMap$Entry next
        16: .line 559
      StackMap locals:
      StackMap stack:
            aload 4 /* e */
            ifnonnull 5
        end local 4 // com.oracle.svm.core.WeakIdentityHashMap$Entry e
        17: .line 556
            iinc 3 /* j */ 1
      StackMap locals:
      StackMap stack:
        18: iload 3 /* j */
            aload 1 /* src */
            arraylength
            if_icmplt 2
        end local 3 // int j
        19: .line 574
            return
        end local 2 // com.oracle.svm.core.WeakIdentityHashMap$Entry[] dest
        end local 1 // com.oracle.svm.core.WeakIdentityHashMap$Entry[] src
        end local 0 // com.oracle.svm.core.WeakIdentityHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   20     0  this  Lcom/oracle/svm/core/WeakIdentityHashMap<TK;TV;>;
            0   20     1   src  [Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;
            0   20     2  dest  [Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;
            1   19     3     j  I
            3   17     4     e  Lcom/oracle/svm/core/WeakIdentityHashMap$Entry<TK;TV;>;
            6   16     5  next  Lcom/oracle/svm/core/WeakIdentityHashMap$Entry<TK;TV;>;
            7   16     6   key  Ljava/lang/Object;
           13   15     7     i  I
    Signature: ([Lcom/oracle/svm/core/WeakIdentityHashMap$Entry<TK;TV;>;[Lcom/oracle/svm/core/WeakIdentityHashMap$Entry<TK;TV;>;)V
    MethodParameters:
      Name  Flags
      src   
      dest  

  public void putAll(java.util.Map<? extends K, ? extends V>);
    descriptor: (Ljava/util/Map;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // com.oracle.svm.core.WeakIdentityHashMap this
        start local 1 // java.util.Map m
         0: .line 585
            aload 1 /* m */
            invokeinterface java.util.Map.size:()I
            istore 2 /* numKeysToBeAdded */
        start local 2 // int numKeysToBeAdded
         1: .line 586
            iload 2 /* numKeysToBeAdded */
            ifne 3
         2: .line 587
            return
         3: .line 598
      StackMap locals: int
      StackMap stack:
            iload 2 /* numKeysToBeAdded */
            aload 0 /* this */
            getfield com.oracle.svm.core.WeakIdentityHashMap.threshold:I
            if_icmple 13
         4: .line 599
            iload 2 /* numKeysToBeAdded */
            i2f
            aload 0 /* this */
            getfield com.oracle.svm.core.WeakIdentityHashMap.loadFactor:F
            fdiv
            fconst_1
            fadd
            f2i
            istore 3 /* targetCapacity */
        start local 3 // int targetCapacity
         5: .line 600
            iload 3 /* targetCapacity */
            ldc 1073741824
            if_icmple 7
         6: .line 601
            ldc 1073741824
            istore 3 /* targetCapacity */
         7: .line 602
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.svm.core.WeakIdentityHashMap.table:[Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;
            arraylength
            istore 4 /* newCapacity */
        start local 4 // int newCapacity
         8: .line 603
            goto 10
         9: .line 604
      StackMap locals: int
      StackMap stack:
            iload 4 /* newCapacity */
            iconst_1
            ishl
            istore 4 /* newCapacity */
        10: .line 603
      StackMap locals:
      StackMap stack:
            iload 4 /* newCapacity */
            iload 3 /* targetCapacity */
            if_icmplt 9
        11: .line 605
            iload 4 /* newCapacity */
            aload 0 /* this */
            getfield com.oracle.svm.core.WeakIdentityHashMap.table:[Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;
            arraylength
            if_icmple 13
        12: .line 606
            aload 0 /* this */
            iload 4 /* newCapacity */
            invokevirtual com.oracle.svm.core.WeakIdentityHashMap.resize:(I)V
        end local 4 // int newCapacity
        end local 3 // int targetCapacity
        13: .line 609
      StackMap locals:
      StackMap stack:
            aload 1 /* m */
            invokeinterface java.util.Map.entrySet:()Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 4
            goto 16
      StackMap locals: com.oracle.svm.core.WeakIdentityHashMap java.util.Map int top java.util.Iterator
      StackMap stack:
        14: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.util.Map$Entry
            astore 3 /* e */
        start local 3 // java.util.Map$Entry e
        15: .line 610
            aload 0 /* this */
            aload 3 /* e */
            invokeinterface java.util.Map$Entry.getKey:()Ljava/lang/Object;
            aload 3 /* e */
            invokeinterface java.util.Map$Entry.getValue:()Ljava/lang/Object;
            invokevirtual com.oracle.svm.core.WeakIdentityHashMap.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
        end local 3 // java.util.Map$Entry e
        16: .line 609
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 14
        17: .line 611
            return
        end local 2 // int numKeysToBeAdded
        end local 1 // java.util.Map m
        end local 0 // com.oracle.svm.core.WeakIdentityHashMap this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   18     0              this  Lcom/oracle/svm/core/WeakIdentityHashMap<TK;TV;>;
            0   18     1                 m  Ljava/util/Map<+TK;+TV;>;
            1   18     2  numKeysToBeAdded  I
            5   13     3    targetCapacity  I
            8   13     4       newCapacity  I
           15   16     3                 e  Ljava/util/Map$Entry<+TK;+TV;>;
    Signature: (Ljava/util/Map<+TK;+TV;>;)V
    MethodParameters:
      Name  Flags
      m     

  public V remove();
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=9, args_size=2
        start local 0 // com.oracle.svm.core.WeakIdentityHashMap this
        start local 1 // java.lang.Object key
         0: .line 634
            aload 1 /* key */
            invokestatic com.oracle.svm.core.WeakIdentityHashMap.maskNull:(Ljava/lang/Object;)Ljava/lang/Object;
            astore 2 /* k */
        start local 2 // java.lang.Object k
         1: .line 635
            aload 0 /* this */
            aload 2 /* k */
            invokevirtual com.oracle.svm.core.WeakIdentityHashMap.hash:(Ljava/lang/Object;)I
            istore 3 /* h */
        start local 3 // int h
         2: .line 636
            aload 0 /* this */
            invokevirtual com.oracle.svm.core.WeakIdentityHashMap.getTable:()[Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;
            astore 4 /* tab */
        start local 4 // com.oracle.svm.core.WeakIdentityHashMap$Entry[] tab
         3: .line 637
            iload 3 /* h */
            aload 4 /* tab */
            arraylength
            invokestatic com.oracle.svm.core.WeakIdentityHashMap.indexFor:(II)I
            istore 5 /* i */
        start local 5 // int i
         4: .line 638
            aload 4 /* tab */
            iload 5 /* i */
            aaload
            astore 6 /* prev */
        start local 6 // com.oracle.svm.core.WeakIdentityHashMap$Entry prev
         5: .line 639
            aload 6 /* prev */
            astore 7 /* e */
        start local 7 // com.oracle.svm.core.WeakIdentityHashMap$Entry e
         6: .line 641
            goto 17
         7: .line 642
      StackMap locals: com.oracle.svm.core.WeakIdentityHashMap java.lang.Object java.lang.Object int com.oracle.svm.core.WeakIdentityHashMap$Entry[] int com.oracle.svm.core.WeakIdentityHashMap$Entry com.oracle.svm.core.WeakIdentityHashMap$Entry
      StackMap stack:
            aload 7 /* e */
            getfield com.oracle.svm.core.WeakIdentityHashMap$Entry.next:Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;
            astore 8 /* next */
        start local 8 // com.oracle.svm.core.WeakIdentityHashMap$Entry next
         8: .line 643
            iload 3 /* h */
            aload 7 /* e */
            getfield com.oracle.svm.core.WeakIdentityHashMap$Entry.hash:I
            if_icmpne 15
            aload 2 /* k */
            aload 7 /* e */
            invokevirtual com.oracle.svm.core.WeakIdentityHashMap$Entry.get:()Ljava/lang/Object;
            invokestatic com.oracle.svm.core.WeakIdentityHashMap.eq:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 15
         9: .line 644
            aload 0 /* this */
            dup
            getfield com.oracle.svm.core.WeakIdentityHashMap.modCount:I
            iconst_1
            iadd
            putfield com.oracle.svm.core.WeakIdentityHashMap.modCount:I
        10: .line 645
            aload 0 /* this */
            dup
            getfield com.oracle.svm.core.WeakIdentityHashMap.size:I
            iconst_1
            isub
            putfield com.oracle.svm.core.WeakIdentityHashMap.size:I
        11: .line 646
            aload 6 /* prev */
            aload 7 /* e */
            if_acmpne 13
        12: .line 647
            aload 4 /* tab */
            iload 5 /* i */
            aload 8 /* next */
            aastore
            goto 14
        13: .line 649
      StackMap locals: com.oracle.svm.core.WeakIdentityHashMap$Entry
      StackMap stack:
            aload 6 /* prev */
            aload 8 /* next */
            putfield com.oracle.svm.core.WeakIdentityHashMap$Entry.next:Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;
        14: .line 650
      StackMap locals:
      StackMap stack:
            aload 7 /* e */
            getfield com.oracle.svm.core.WeakIdentityHashMap$Entry.value:Ljava/lang/Object;
            areturn
        15: .line 652
      StackMap locals:
      StackMap stack:
            aload 7 /* e */
            astore 6 /* prev */
        16: .line 653
            aload 8 /* next */
            astore 7 /* e */
        end local 8 // com.oracle.svm.core.WeakIdentityHashMap$Entry next
        17: .line 641
      StackMap locals:
      StackMap stack:
            aload 7 /* e */
            ifnonnull 7
        18: .line 656
            aconst_null
            areturn
        end local 7 // com.oracle.svm.core.WeakIdentityHashMap$Entry e
        end local 6 // com.oracle.svm.core.WeakIdentityHashMap$Entry prev
        end local 5 // int i
        end local 4 // com.oracle.svm.core.WeakIdentityHashMap$Entry[] tab
        end local 3 // int h
        end local 2 // java.lang.Object k
        end local 1 // java.lang.Object key
        end local 0 // com.oracle.svm.core.WeakIdentityHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   19     0  this  Lcom/oracle/svm/core/WeakIdentityHashMap<TK;TV;>;
            0   19     1   key  Ljava/lang/Object;
            1   19     2     k  Ljava/lang/Object;
            2   19     3     h  I
            3   19     4   tab  [Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;
            4   19     5     i  I
            5   19     6  prev  Lcom/oracle/svm/core/WeakIdentityHashMap$Entry<TK;TV;>;
            6   19     7     e  Lcom/oracle/svm/core/WeakIdentityHashMap$Entry<TK;TV;>;
            8   17     8  next  Lcom/oracle/svm/core/WeakIdentityHashMap$Entry<TK;TV;>;
    Signature: (Ljava/lang/Object;)TV;
    MethodParameters:
      Name  Flags
      key   

  boolean removeMapping(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0000) 
    Code:
      stack=3, locals=10, args_size=2
        start local 0 // com.oracle.svm.core.WeakIdentityHashMap this
        start local 1 // java.lang.Object o
         0: .line 661
            aload 1 /* o */
            instanceof java.util.Map$Entry
            ifne 2
         1: .line 662
            iconst_0
            ireturn
         2: .line 663
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.oracle.svm.core.WeakIdentityHashMap.getTable:()[Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;
            astore 2 /* tab */
        start local 2 // com.oracle.svm.core.WeakIdentityHashMap$Entry[] tab
         3: .line 664
            aload 1 /* o */
            checkcast java.util.Map$Entry
            astore 3 /* entry */
        start local 3 // java.util.Map$Entry entry
         4: .line 665
            aload 3 /* entry */
            invokeinterface java.util.Map$Entry.getKey:()Ljava/lang/Object;
            invokestatic com.oracle.svm.core.WeakIdentityHashMap.maskNull:(Ljava/lang/Object;)Ljava/lang/Object;
            astore 4 /* k */
        start local 4 // java.lang.Object k
         5: .line 666
            aload 0 /* this */
            aload 4 /* k */
            invokevirtual com.oracle.svm.core.WeakIdentityHashMap.hash:(Ljava/lang/Object;)I
            istore 5 /* h */
        start local 5 // int h
         6: .line 667
            iload 5 /* h */
            aload 2 /* tab */
            arraylength
            invokestatic com.oracle.svm.core.WeakIdentityHashMap.indexFor:(II)I
            istore 6 /* i */
        start local 6 // int i
         7: .line 668
            aload 2 /* tab */
            iload 6 /* i */
            aaload
            astore 7 /* prev */
        start local 7 // com.oracle.svm.core.WeakIdentityHashMap$Entry prev
         8: .line 669
            aload 7 /* prev */
            astore 8 /* e */
        start local 8 // com.oracle.svm.core.WeakIdentityHashMap$Entry e
         9: .line 671
            goto 20
        10: .line 672
      StackMap locals: com.oracle.svm.core.WeakIdentityHashMap java.lang.Object com.oracle.svm.core.WeakIdentityHashMap$Entry[] java.util.Map$Entry java.lang.Object int int com.oracle.svm.core.WeakIdentityHashMap$Entry com.oracle.svm.core.WeakIdentityHashMap$Entry
      StackMap stack:
            aload 8 /* e */
            getfield com.oracle.svm.core.WeakIdentityHashMap$Entry.next:Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;
            astore 9 /* next */
        start local 9 // com.oracle.svm.core.WeakIdentityHashMap$Entry next
        11: .line 673
            iload 5 /* h */
            aload 8 /* e */
            getfield com.oracle.svm.core.WeakIdentityHashMap$Entry.hash:I
            if_icmpne 18
            aload 8 /* e */
            aload 3 /* entry */
            invokevirtual com.oracle.svm.core.WeakIdentityHashMap$Entry.equals:(Ljava/lang/Object;)Z
            ifeq 18
        12: .line 674
            aload 0 /* this */
            dup
            getfield com.oracle.svm.core.WeakIdentityHashMap.modCount:I
            iconst_1
            iadd
            putfield com.oracle.svm.core.WeakIdentityHashMap.modCount:I
        13: .line 675
            aload 0 /* this */
            dup
            getfield com.oracle.svm.core.WeakIdentityHashMap.size:I
            iconst_1
            isub
            putfield com.oracle.svm.core.WeakIdentityHashMap.size:I
        14: .line 676
            aload 7 /* prev */
            aload 8 /* e */
            if_acmpne 16
        15: .line 677
            aload 2 /* tab */
            iload 6 /* i */
            aload 9 /* next */
            aastore
            goto 17
        16: .line 679
      StackMap locals: com.oracle.svm.core.WeakIdentityHashMap$Entry
      StackMap stack:
            aload 7 /* prev */
            aload 9 /* next */
            putfield com.oracle.svm.core.WeakIdentityHashMap$Entry.next:Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;
        17: .line 680
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        18: .line 682
      StackMap locals:
      StackMap stack:
            aload 8 /* e */
            astore 7 /* prev */
        19: .line 683
            aload 9 /* next */
            astore 8 /* e */
        end local 9 // com.oracle.svm.core.WeakIdentityHashMap$Entry next
        20: .line 671
      StackMap locals:
      StackMap stack:
            aload 8 /* e */
            ifnonnull 10
        21: .line 686
            iconst_0
            ireturn
        end local 8 // com.oracle.svm.core.WeakIdentityHashMap$Entry e
        end local 7 // com.oracle.svm.core.WeakIdentityHashMap$Entry prev
        end local 6 // int i
        end local 5 // int h
        end local 4 // java.lang.Object k
        end local 3 // java.util.Map$Entry entry
        end local 2 // com.oracle.svm.core.WeakIdentityHashMap$Entry[] tab
        end local 1 // java.lang.Object o
        end local 0 // com.oracle.svm.core.WeakIdentityHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   22     0   this  Lcom/oracle/svm/core/WeakIdentityHashMap<TK;TV;>;
            0   22     1      o  Ljava/lang/Object;
            3   22     2    tab  [Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;
            4   22     3  entry  Ljava/util/Map$Entry<**>;
            5   22     4      k  Ljava/lang/Object;
            6   22     5      h  I
            7   22     6      i  I
            8   22     7   prev  Lcom/oracle/svm/core/WeakIdentityHashMap$Entry<TK;TV;>;
            9   22     8      e  Lcom/oracle/svm/core/WeakIdentityHashMap$Entry<TK;TV;>;
           11   20     9   next  Lcom/oracle/svm/core/WeakIdentityHashMap$Entry<TK;TV;>;
    MethodParameters:
      Name  Flags
      o     

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.oracle.svm.core.WeakIdentityHashMap this
         0: .line 696
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.svm.core.WeakIdentityHashMap.queue:Ljava/lang/ref/ReferenceQueue;
            invokevirtual java.lang.ref.ReferenceQueue.poll:()Ljava/lang/ref/Reference;
            ifnonnull 0
         1: .line 699
            aload 0 /* this */
            dup
            getfield com.oracle.svm.core.WeakIdentityHashMap.modCount:I
            iconst_1
            iadd
            putfield com.oracle.svm.core.WeakIdentityHashMap.modCount:I
         2: .line 700
            aload 0 /* this */
            getfield com.oracle.svm.core.WeakIdentityHashMap.table:[Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;
            aconst_null
            invokestatic java.util.Arrays.fill:([Ljava/lang/Object;Ljava/lang/Object;)V
         3: .line 701
            aload 0 /* this */
            iconst_0
            putfield com.oracle.svm.core.WeakIdentityHashMap.size:I
         4: .line 706
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.svm.core.WeakIdentityHashMap.queue:Ljava/lang/ref/ReferenceQueue;
            invokevirtual java.lang.ref.ReferenceQueue.poll:()Ljava/lang/ref/Reference;
            ifnonnull 4
         5: .line 708
            return
        end local 0 // com.oracle.svm.core.WeakIdentityHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lcom/oracle/svm/core/WeakIdentityHashMap<TK;TV;>;

  public boolean containsValue(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // com.oracle.svm.core.WeakIdentityHashMap this
        start local 1 // java.lang.Object value
         0: .line 719
            aload 1 /* value */
            ifnonnull 2
         1: .line 720
            aload 0 /* this */
            invokevirtual com.oracle.svm.core.WeakIdentityHashMap.containsNullValue:()Z
            ireturn
         2: .line 722
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.oracle.svm.core.WeakIdentityHashMap.getTable:()[Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;
            astore 2 /* tab */
        start local 2 // com.oracle.svm.core.WeakIdentityHashMap$Entry[] tab
         3: .line 723
            aload 2 /* tab */
            arraylength
            istore 3 /* i */
        start local 3 // int i
         4: goto 11
         5: .line 724
      StackMap locals: com.oracle.svm.core.WeakIdentityHashMap$Entry[] int
      StackMap stack:
            aload 2 /* tab */
            iload 3 /* i */
            aaload
            astore 4 /* e */
        start local 4 // com.oracle.svm.core.WeakIdentityHashMap$Entry e
         6: goto 10
         7: .line 725
      StackMap locals: com.oracle.svm.core.WeakIdentityHashMap$Entry
      StackMap stack:
            aload 1 /* value */
            aload 4 /* e */
            getfield com.oracle.svm.core.WeakIdentityHashMap$Entry.value:Ljava/lang/Object;
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 9
         8: .line 726
            iconst_1
            ireturn
         9: .line 724
      StackMap locals:
      StackMap stack:
            aload 4 /* e */
            getfield com.oracle.svm.core.WeakIdentityHashMap$Entry.next:Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;
            astore 4 /* e */
      StackMap locals:
      StackMap stack:
        10: aload 4 /* e */
            ifnonnull 7
        end local 4 // com.oracle.svm.core.WeakIdentityHashMap$Entry e
        11: .line 723
      StackMap locals:
      StackMap stack:
            iload 3 /* i */
            iinc 3 /* i */ -1
            ifgt 5
        end local 3 // int i
        12: .line 727
            iconst_0
            ireturn
        end local 2 // com.oracle.svm.core.WeakIdentityHashMap$Entry[] tab
        end local 1 // java.lang.Object value
        end local 0 // com.oracle.svm.core.WeakIdentityHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   13     0   this  Lcom/oracle/svm/core/WeakIdentityHashMap<TK;TV;>;
            0   13     1  value  Ljava/lang/Object;
            3   13     2    tab  [Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;
            4   12     3      i  I
            6   11     4      e  Lcom/oracle/svm/core/WeakIdentityHashMap$Entry<TK;TV;>;
    MethodParameters:
       Name  Flags
      value  

  private boolean containsNullValue();
    descriptor: ()Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // com.oracle.svm.core.WeakIdentityHashMap this
         0: .line 734
            aload 0 /* this */
            invokevirtual com.oracle.svm.core.WeakIdentityHashMap.getTable:()[Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;
            astore 1 /* tab */
        start local 1 // com.oracle.svm.core.WeakIdentityHashMap$Entry[] tab
         1: .line 735
            aload 1 /* tab */
            arraylength
            istore 2 /* i */
        start local 2 // int i
         2: goto 9
         3: .line 736
      StackMap locals: com.oracle.svm.core.WeakIdentityHashMap$Entry[] int
      StackMap stack:
            aload 1 /* tab */
            iload 2 /* i */
            aaload
            astore 3 /* e */
        start local 3 // com.oracle.svm.core.WeakIdentityHashMap$Entry e
         4: goto 8
         5: .line 737
      StackMap locals: com.oracle.svm.core.WeakIdentityHashMap$Entry
      StackMap stack:
            aload 3 /* e */
            getfield com.oracle.svm.core.WeakIdentityHashMap$Entry.value:Ljava/lang/Object;
            ifnonnull 7
         6: .line 738
            iconst_1
            ireturn
         7: .line 736
      StackMap locals:
      StackMap stack:
            aload 3 /* e */
            getfield com.oracle.svm.core.WeakIdentityHashMap$Entry.next:Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;
            astore 3 /* e */
      StackMap locals:
      StackMap stack:
         8: aload 3 /* e */
            ifnonnull 5
        end local 3 // com.oracle.svm.core.WeakIdentityHashMap$Entry e
         9: .line 735
      StackMap locals:
      StackMap stack:
            iload 2 /* i */
            iinc 2 /* i */ -1
            ifgt 3
        end local 2 // int i
        10: .line 739
            iconst_0
            ireturn
        end local 1 // com.oracle.svm.core.WeakIdentityHashMap$Entry[] tab
        end local 0 // com.oracle.svm.core.WeakIdentityHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lcom/oracle/svm/core/WeakIdentityHashMap<TK;TV;>;
            1   11     1   tab  [Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;
            2   10     2     i  I
            4    9     3     e  Lcom/oracle/svm/core/WeakIdentityHashMap$Entry<TK;TV;>;

  public java.util.Set<K> keySet();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // com.oracle.svm.core.WeakIdentityHashMap this
         0: .line 911
            aload 0 /* this */
            getfield com.oracle.svm.core.WeakIdentityHashMap.keySet:Ljava/util/Set;
            astore 1 /* ks */
        start local 1 // java.util.Set ks
         1: .line 912
            aload 1 /* ks */
            ifnonnull 4
         2: .line 913
            new com.oracle.svm.core.WeakIdentityHashMap$KeySet
            dup
            aload 0 /* this */
            invokespecial com.oracle.svm.core.WeakIdentityHashMap$KeySet.<init>:(Lcom/oracle/svm/core/WeakIdentityHashMap;)V
            astore 1 /* ks */
         3: .line 914
            aload 0 /* this */
            aload 1 /* ks */
            putfield com.oracle.svm.core.WeakIdentityHashMap.keySet:Ljava/util/Set;
         4: .line 916
      StackMap locals: java.util.Set
      StackMap stack:
            aload 1 /* ks */
            areturn
        end local 1 // java.util.Set ks
        end local 0 // com.oracle.svm.core.WeakIdentityHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/oracle/svm/core/WeakIdentityHashMap<TK;TV;>;
            1    5     1    ks  Ljava/util/Set<TK;>;
    Signature: ()Ljava/util/Set<TK;>;

  public java.util.Collection<V> values();
    descriptor: ()Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // com.oracle.svm.core.WeakIdentityHashMap this
         0: .line 964
            aload 0 /* this */
            getfield com.oracle.svm.core.WeakIdentityHashMap.values:Ljava/util/Collection;
            astore 1 /* vs */
        start local 1 // java.util.Collection vs
         1: .line 965
            aload 1 /* vs */
            ifnonnull 4
         2: .line 966
            new com.oracle.svm.core.WeakIdentityHashMap$Values
            dup
            aload 0 /* this */
            invokespecial com.oracle.svm.core.WeakIdentityHashMap$Values.<init>:(Lcom/oracle/svm/core/WeakIdentityHashMap;)V
            astore 1 /* vs */
         3: .line 967
            aload 0 /* this */
            aload 1 /* vs */
            putfield com.oracle.svm.core.WeakIdentityHashMap.values:Ljava/util/Collection;
         4: .line 969
      StackMap locals: java.util.Collection
      StackMap stack:
            aload 1 /* vs */
            areturn
        end local 1 // java.util.Collection vs
        end local 0 // com.oracle.svm.core.WeakIdentityHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/oracle/svm/core/WeakIdentityHashMap<TK;TV;>;
            1    5     1    vs  Ljava/util/Collection<TV;>;
    Signature: ()Ljava/util/Collection<TV;>;

  public java.util.Set<java.util.Map$Entry<K, V>> entrySet();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // com.oracle.svm.core.WeakIdentityHashMap this
         0: .line 1009
            aload 0 /* this */
            getfield com.oracle.svm.core.WeakIdentityHashMap.entrySet:Ljava/util/Set;
            astore 1 /* es */
        start local 1 // java.util.Set es
         1: .line 1010
            aload 1 /* es */
            ifnull 2
            aload 1 /* es */
            goto 3
      StackMap locals: java.util.Set
      StackMap stack:
         2: aload 0 /* this */
            new com.oracle.svm.core.WeakIdentityHashMap$EntrySet
            dup
            aload 0 /* this */
            invokespecial com.oracle.svm.core.WeakIdentityHashMap$EntrySet.<init>:(Lcom/oracle/svm/core/WeakIdentityHashMap;)V
            dup_x1
            putfield com.oracle.svm.core.WeakIdentityHashMap.entrySet:Ljava/util/Set;
      StackMap locals:
      StackMap stack: java.util.Set
         3: areturn
        end local 1 // java.util.Set es
        end local 0 // com.oracle.svm.core.WeakIdentityHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/oracle/svm/core/WeakIdentityHashMap<TK;TV;>;
            1    4     1    es  Ljava/util/Set<Ljava/util/Map$Entry<TK;TV;>;>;
    Signature: ()Ljava/util/Set<Ljava/util/Map$Entry<TK;TV;>;>;

  public void forEach(java.util.function.BiConsumer<? super K, ? super V>);
    descriptor: (Ljava/util/function/BiConsumer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=9, args_size=2
        start local 0 // com.oracle.svm.core.WeakIdentityHashMap this
        start local 1 // java.util.function.BiConsumer action
         0: .line 1061
            aload 1 /* action */
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 1062
            aload 0 /* this */
            getfield com.oracle.svm.core.WeakIdentityHashMap.modCount:I
            istore 2 /* expectedModCount */
        start local 2 // int expectedModCount
         2: .line 1064
            aload 0 /* this */
            invokevirtual com.oracle.svm.core.WeakIdentityHashMap.getTable:()[Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;
            astore 3 /* tab */
        start local 3 // com.oracle.svm.core.WeakIdentityHashMap$Entry[] tab
         3: .line 1065
            aload 3 /* tab */
            dup
            astore 7
            arraylength
            istore 6
            iconst_0
            istore 5
            goto 14
      StackMap locals: com.oracle.svm.core.WeakIdentityHashMap java.util.function.BiConsumer int com.oracle.svm.core.WeakIdentityHashMap$Entry[] top int int com.oracle.svm.core.WeakIdentityHashMap$Entry[]
      StackMap stack:
         4: aload 7
            iload 5
            aaload
            astore 4 /* entry */
        start local 4 // com.oracle.svm.core.WeakIdentityHashMap$Entry entry
         5: .line 1066
            goto 12
         6: .line 1067
      StackMap locals: com.oracle.svm.core.WeakIdentityHashMap java.util.function.BiConsumer int com.oracle.svm.core.WeakIdentityHashMap$Entry[] com.oracle.svm.core.WeakIdentityHashMap$Entry int int com.oracle.svm.core.WeakIdentityHashMap$Entry[]
      StackMap stack:
            aload 4 /* entry */
            invokevirtual com.oracle.svm.core.WeakIdentityHashMap$Entry.get:()Ljava/lang/Object;
            astore 8 /* key */
        start local 8 // java.lang.Object key
         7: .line 1068
            aload 8 /* key */
            ifnull 9
         8: .line 1069
            aload 1 /* action */
            aload 8 /* key */
            invokestatic com.oracle.svm.core.WeakIdentityHashMap.unmaskNull:(Ljava/lang/Object;)Ljava/lang/Object;
            aload 4 /* entry */
            getfield com.oracle.svm.core.WeakIdentityHashMap$Entry.value:Ljava/lang/Object;
            invokeinterface java.util.function.BiConsumer.accept:(Ljava/lang/Object;Ljava/lang/Object;)V
         9: .line 1071
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 4 /* entry */
            getfield com.oracle.svm.core.WeakIdentityHashMap$Entry.next:Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;
            astore 4 /* entry */
        10: .line 1073
            iload 2 /* expectedModCount */
            aload 0 /* this */
            getfield com.oracle.svm.core.WeakIdentityHashMap.modCount:I
            if_icmpeq 12
        11: .line 1074
            new java.util.ConcurrentModificationException
            dup
            invokespecial java.util.ConcurrentModificationException.<init>:()V
            athrow
        end local 8 // java.lang.Object key
        12: .line 1066
      StackMap locals:
      StackMap stack:
            aload 4 /* entry */
            ifnonnull 6
        end local 4 // com.oracle.svm.core.WeakIdentityHashMap$Entry entry
        13: .line 1065
            iinc 5 1
      StackMap locals: com.oracle.svm.core.WeakIdentityHashMap java.util.function.BiConsumer int com.oracle.svm.core.WeakIdentityHashMap$Entry[] top int int com.oracle.svm.core.WeakIdentityHashMap$Entry[]
      StackMap stack:
        14: iload 5
            iload 6
            if_icmplt 4
        15: .line 1078
            return
        end local 3 // com.oracle.svm.core.WeakIdentityHashMap$Entry[] tab
        end local 2 // int expectedModCount
        end local 1 // java.util.function.BiConsumer action
        end local 0 // com.oracle.svm.core.WeakIdentityHashMap this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   16     0              this  Lcom/oracle/svm/core/WeakIdentityHashMap<TK;TV;>;
            0   16     1            action  Ljava/util/function/BiConsumer<-TK;-TV;>;
            2   16     2  expectedModCount  I
            3   16     3               tab  [Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;
            5   13     4             entry  Lcom/oracle/svm/core/WeakIdentityHashMap$Entry<TK;TV;>;
            7   12     8               key  Ljava/lang/Object;
    Signature: (Ljava/util/function/BiConsumer<-TK;-TV;>;)V
    MethodParameters:
        Name  Flags
      action  

  public void replaceAll(java.util.function.BiFunction<? super K, ? super V, ? extends V>);
    descriptor: (Ljava/util/function/BiFunction;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=9, args_size=2
        start local 0 // com.oracle.svm.core.WeakIdentityHashMap this
        start local 1 // java.util.function.BiFunction function
         0: .line 1083
            aload 1 /* function */
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 1084
            aload 0 /* this */
            getfield com.oracle.svm.core.WeakIdentityHashMap.modCount:I
            istore 2 /* expectedModCount */
        start local 2 // int expectedModCount
         2: .line 1086
            aload 0 /* this */
            invokevirtual com.oracle.svm.core.WeakIdentityHashMap.getTable:()[Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;
            astore 3 /* tab */
        start local 3 // com.oracle.svm.core.WeakIdentityHashMap$Entry[] tab
         3: .line 1087
            aload 3 /* tab */
            dup
            astore 7
            arraylength
            istore 6
            iconst_0
            istore 5
            goto 14
      StackMap locals: com.oracle.svm.core.WeakIdentityHashMap java.util.function.BiFunction int com.oracle.svm.core.WeakIdentityHashMap$Entry[] top int int com.oracle.svm.core.WeakIdentityHashMap$Entry[]
      StackMap stack:
         4: aload 7
            iload 5
            aaload
            astore 4 /* entry */
        start local 4 // com.oracle.svm.core.WeakIdentityHashMap$Entry entry
         5: .line 1088
            goto 12
         6: .line 1089
      StackMap locals: com.oracle.svm.core.WeakIdentityHashMap java.util.function.BiFunction int com.oracle.svm.core.WeakIdentityHashMap$Entry[] com.oracle.svm.core.WeakIdentityHashMap$Entry int int com.oracle.svm.core.WeakIdentityHashMap$Entry[]
      StackMap stack:
            aload 4 /* entry */
            invokevirtual com.oracle.svm.core.WeakIdentityHashMap$Entry.get:()Ljava/lang/Object;
            astore 8 /* key */
        start local 8 // java.lang.Object key
         7: .line 1090
            aload 8 /* key */
            ifnull 9
         8: .line 1091
            aload 4 /* entry */
            aload 1 /* function */
            aload 8 /* key */
            invokestatic com.oracle.svm.core.WeakIdentityHashMap.unmaskNull:(Ljava/lang/Object;)Ljava/lang/Object;
            aload 4 /* entry */
            getfield com.oracle.svm.core.WeakIdentityHashMap$Entry.value:Ljava/lang/Object;
            invokeinterface java.util.function.BiFunction.apply:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            putfield com.oracle.svm.core.WeakIdentityHashMap$Entry.value:Ljava/lang/Object;
         9: .line 1093
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 4 /* entry */
            getfield com.oracle.svm.core.WeakIdentityHashMap$Entry.next:Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;
            astore 4 /* entry */
        10: .line 1095
            iload 2 /* expectedModCount */
            aload 0 /* this */
            getfield com.oracle.svm.core.WeakIdentityHashMap.modCount:I
            if_icmpeq 12
        11: .line 1096
            new java.util.ConcurrentModificationException
            dup
            invokespecial java.util.ConcurrentModificationException.<init>:()V
            athrow
        end local 8 // java.lang.Object key
        12: .line 1088
      StackMap locals:
      StackMap stack:
            aload 4 /* entry */
            ifnonnull 6
        end local 4 // com.oracle.svm.core.WeakIdentityHashMap$Entry entry
        13: .line 1087
            iinc 5 1
      StackMap locals: com.oracle.svm.core.WeakIdentityHashMap java.util.function.BiFunction int com.oracle.svm.core.WeakIdentityHashMap$Entry[] top int int com.oracle.svm.core.WeakIdentityHashMap$Entry[]
      StackMap stack:
        14: iload 5
            iload 6
            if_icmplt 4
        15: .line 1100
            return
        end local 3 // com.oracle.svm.core.WeakIdentityHashMap$Entry[] tab
        end local 2 // int expectedModCount
        end local 1 // java.util.function.BiFunction function
        end local 0 // com.oracle.svm.core.WeakIdentityHashMap this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   16     0              this  Lcom/oracle/svm/core/WeakIdentityHashMap<TK;TV;>;
            0   16     1          function  Ljava/util/function/BiFunction<-TK;-TV;+TV;>;
            2   16     2  expectedModCount  I
            3   16     3               tab  [Lcom/oracle/svm/core/WeakIdentityHashMap$Entry;
            5   13     4             entry  Lcom/oracle/svm/core/WeakIdentityHashMap$Entry<TK;TV;>;
            7   12     8               key  Ljava/lang/Object;
    Signature: (Ljava/util/function/BiFunction<-TK;-TV;+TV;>;)V
    MethodParameters:
          Name  Flags
      function  
}
Signature: <K:Ljava/lang/Object;V:Ljava/lang/Object;>Ljava/util/AbstractMap<TK;TV;>;Ljava/util/Map<TK;TV;>;
SourceFile: "WeakIdentityHashMap.java"
NestMembers:
  com.oracle.svm.core.WeakIdentityHashMap$Entry  com.oracle.svm.core.WeakIdentityHashMap$EntryIterator  com.oracle.svm.core.WeakIdentityHashMap$EntrySet  com.oracle.svm.core.WeakIdentityHashMap$EntrySpliterator  com.oracle.svm.core.WeakIdentityHashMap$HashIterator  com.oracle.svm.core.WeakIdentityHashMap$KeyIterator  com.oracle.svm.core.WeakIdentityHashMap$KeySet  com.oracle.svm.core.WeakIdentityHashMap$KeySpliterator  com.oracle.svm.core.WeakIdentityHashMap$ValueIterator  com.oracle.svm.core.WeakIdentityHashMap$ValueSpliterator  com.oracle.svm.core.WeakIdentityHashMap$Values  com.oracle.svm.core.WeakIdentityHashMap$WeakIdentityHashMapSpliterator
InnerClasses:
  private Entry = com.oracle.svm.core.WeakIdentityHashMap$Entry of com.oracle.svm.core.WeakIdentityHashMap
  private EntryIterator = com.oracle.svm.core.WeakIdentityHashMap$EntryIterator of com.oracle.svm.core.WeakIdentityHashMap
  private EntrySet = com.oracle.svm.core.WeakIdentityHashMap$EntrySet of com.oracle.svm.core.WeakIdentityHashMap
  final EntrySpliterator = com.oracle.svm.core.WeakIdentityHashMap$EntrySpliterator of com.oracle.svm.core.WeakIdentityHashMap
  private abstract HashIterator = com.oracle.svm.core.WeakIdentityHashMap$HashIterator of com.oracle.svm.core.WeakIdentityHashMap
  private KeyIterator = com.oracle.svm.core.WeakIdentityHashMap$KeyIterator of com.oracle.svm.core.WeakIdentityHashMap
  private KeySet = com.oracle.svm.core.WeakIdentityHashMap$KeySet of com.oracle.svm.core.WeakIdentityHashMap
  final KeySpliterator = com.oracle.svm.core.WeakIdentityHashMap$KeySpliterator of com.oracle.svm.core.WeakIdentityHashMap
  private ValueIterator = com.oracle.svm.core.WeakIdentityHashMap$ValueIterator of com.oracle.svm.core.WeakIdentityHashMap
  final ValueSpliterator = com.oracle.svm.core.WeakIdentityHashMap$ValueSpliterator of com.oracle.svm.core.WeakIdentityHashMap
  private Values = com.oracle.svm.core.WeakIdentityHashMap$Values of com.oracle.svm.core.WeakIdentityHashMap
  WeakIdentityHashMapSpliterator = com.oracle.svm.core.WeakIdentityHashMap$WeakIdentityHashMapSpliterator of com.oracle.svm.core.WeakIdentityHashMap
  public abstract Entry = java.util.Map$Entry of java.util.Map