final class jdk.internal.vm.compiler.collections.EconomicMapImpl<K, V> implements jdk.internal.vm.compiler.collections.EconomicMap<K, V>, jdk.internal.vm.compiler.collections.EconomicSet<K>
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: jdk.internal.vm.compiler.collections.EconomicMapImpl
  super_class: java.lang.Object
{
  private static final int INITIAL_CAPACITY;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 4

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

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

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

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

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

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

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

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

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

  private java.lang.Object[] entries;
    descriptor: [Ljava/lang/Object;
    flags: (0x0002) ACC_PRIVATE

  private byte[] hashArray;
    descriptor: [B
    flags: (0x0002) ACC_PRIVATE

  private final jdk.internal.vm.compiler.collections.Equivalence strategy;
    descriptor: Ljdk/internal/vm/compiler/collections/Equivalence;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final boolean isSet;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  static final boolean $assertionsDisabled;
    descriptor: Z
    flags: (0x1018) ACC_STATIC, ACC_FINAL, ACC_SYNTHETIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 56
            ldc Ljdk/internal/vm/compiler/collections/EconomicMapImpl;
            invokevirtual java.lang.Class.desiredAssertionStatus:()Z
            ifne 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: putstatic jdk.internal.vm.compiler.collections.EconomicMapImpl.$assertionsDisabled:Z
         3: .line 97
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private static <K, V> jdk.internal.vm.compiler.collections.EconomicMapImpl<K, V> intercept(jdk.internal.vm.compiler.collections.EconomicMapImpl<K, V>);
    descriptor: (Ljdk/internal/vm/compiler/collections/EconomicMapImpl;)Ljdk/internal/vm/compiler/collections/EconomicMapImpl;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl map
         0: .line 130
            aload 0 /* map */
            areturn
        end local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl map
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0   map  Ljdk/internal/vm/compiler/collections/EconomicMapImpl<TK;TV;>;
    Signature: <K:Ljava/lang/Object;V:Ljava/lang/Object;>(Ljdk/internal/vm/compiler/collections/EconomicMapImpl<TK;TV;>;)Ljdk/internal/vm/compiler/collections/EconomicMapImpl<TK;TV;>;
    MethodParameters:
      Name  Flags
      map   

  public static <K, V> jdk.internal.vm.compiler.collections.EconomicMapImpl<K, V> create(jdk.internal.vm.compiler.collections.Equivalence, boolean);
    descriptor: (Ljdk/internal/vm/compiler/collections/Equivalence;Z)Ljdk/internal/vm/compiler/collections/EconomicMapImpl;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // jdk.internal.vm.compiler.collections.Equivalence strategy
        start local 1 // boolean isSet
         0: .line 134
            new jdk.internal.vm.compiler.collections.EconomicMapImpl
            dup
            aload 0 /* strategy */
            iload 1 /* isSet */
            invokespecial jdk.internal.vm.compiler.collections.EconomicMapImpl.<init>:(Ljdk/internal/vm/compiler/collections/Equivalence;Z)V
            invokestatic jdk.internal.vm.compiler.collections.EconomicMapImpl.intercept:(Ljdk/internal/vm/compiler/collections/EconomicMapImpl;)Ljdk/internal/vm/compiler/collections/EconomicMapImpl;
            areturn
        end local 1 // boolean isSet
        end local 0 // jdk.internal.vm.compiler.collections.Equivalence strategy
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0  strategy  Ljdk/internal/vm/compiler/collections/Equivalence;
            0    1     1     isSet  Z
    Signature: <K:Ljava/lang/Object;V:Ljava/lang/Object;>(Ljdk/internal/vm/compiler/collections/Equivalence;Z)Ljdk/internal/vm/compiler/collections/EconomicMapImpl<TK;TV;>;
    MethodParameters:
          Name  Flags
      strategy  
      isSet     

  public static <K, V> jdk.internal.vm.compiler.collections.EconomicMapImpl<K, V> create(jdk.internal.vm.compiler.collections.Equivalence, int, boolean);
    descriptor: (Ljdk/internal/vm/compiler/collections/Equivalence;IZ)Ljdk/internal/vm/compiler/collections/EconomicMapImpl;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // jdk.internal.vm.compiler.collections.Equivalence strategy
        start local 1 // int initialCapacity
        start local 2 // boolean isSet
         0: .line 138
            new jdk.internal.vm.compiler.collections.EconomicMapImpl
            dup
            aload 0 /* strategy */
            iload 1 /* initialCapacity */
            iload 2 /* isSet */
            invokespecial jdk.internal.vm.compiler.collections.EconomicMapImpl.<init>:(Ljdk/internal/vm/compiler/collections/Equivalence;IZ)V
            invokestatic jdk.internal.vm.compiler.collections.EconomicMapImpl.intercept:(Ljdk/internal/vm/compiler/collections/EconomicMapImpl;)Ljdk/internal/vm/compiler/collections/EconomicMapImpl;
            areturn
        end local 2 // boolean isSet
        end local 1 // int initialCapacity
        end local 0 // jdk.internal.vm.compiler.collections.Equivalence strategy
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0         strategy  Ljdk/internal/vm/compiler/collections/Equivalence;
            0    1     1  initialCapacity  I
            0    1     2            isSet  Z
    Signature: <K:Ljava/lang/Object;V:Ljava/lang/Object;>(Ljdk/internal/vm/compiler/collections/Equivalence;IZ)Ljdk/internal/vm/compiler/collections/EconomicMapImpl<TK;TV;>;
    MethodParameters:
                 Name  Flags
      strategy         
      initialCapacity  
      isSet            

  public static <K, V> jdk.internal.vm.compiler.collections.EconomicMapImpl<K, V> create(jdk.internal.vm.compiler.collections.Equivalence, jdk.internal.vm.compiler.collections.UnmodifiableEconomicMap<K, V>, boolean);
    descriptor: (Ljdk/internal/vm/compiler/collections/Equivalence;Ljdk/internal/vm/compiler/collections/UnmodifiableEconomicMap;Z)Ljdk/internal/vm/compiler/collections/EconomicMapImpl;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // jdk.internal.vm.compiler.collections.Equivalence strategy
        start local 1 // jdk.internal.vm.compiler.collections.UnmodifiableEconomicMap other
        start local 2 // boolean isSet
         0: .line 142
            new jdk.internal.vm.compiler.collections.EconomicMapImpl
            dup
            aload 0 /* strategy */
            aload 1 /* other */
            iload 2 /* isSet */
            invokespecial jdk.internal.vm.compiler.collections.EconomicMapImpl.<init>:(Ljdk/internal/vm/compiler/collections/Equivalence;Ljdk/internal/vm/compiler/collections/UnmodifiableEconomicMap;Z)V
            invokestatic jdk.internal.vm.compiler.collections.EconomicMapImpl.intercept:(Ljdk/internal/vm/compiler/collections/EconomicMapImpl;)Ljdk/internal/vm/compiler/collections/EconomicMapImpl;
            areturn
        end local 2 // boolean isSet
        end local 1 // jdk.internal.vm.compiler.collections.UnmodifiableEconomicMap other
        end local 0 // jdk.internal.vm.compiler.collections.Equivalence strategy
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0  strategy  Ljdk/internal/vm/compiler/collections/Equivalence;
            0    1     1     other  Ljdk/internal/vm/compiler/collections/UnmodifiableEconomicMap<TK;TV;>;
            0    1     2     isSet  Z
    Signature: <K:Ljava/lang/Object;V:Ljava/lang/Object;>(Ljdk/internal/vm/compiler/collections/Equivalence;Ljdk/internal/vm/compiler/collections/UnmodifiableEconomicMap<TK;TV;>;Z)Ljdk/internal/vm/compiler/collections/EconomicMapImpl<TK;TV;>;
    MethodParameters:
          Name  Flags
      strategy  
      other     
      isSet     

  public static <K, V> jdk.internal.vm.compiler.collections.EconomicMapImpl<K, V> create(jdk.internal.vm.compiler.collections.Equivalence, jdk.internal.vm.compiler.collections.UnmodifiableEconomicSet<K>, boolean);
    descriptor: (Ljdk/internal/vm/compiler/collections/Equivalence;Ljdk/internal/vm/compiler/collections/UnmodifiableEconomicSet;Z)Ljdk/internal/vm/compiler/collections/EconomicMapImpl;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // jdk.internal.vm.compiler.collections.Equivalence strategy
        start local 1 // jdk.internal.vm.compiler.collections.UnmodifiableEconomicSet other
        start local 2 // boolean isSet
         0: .line 146
            new jdk.internal.vm.compiler.collections.EconomicMapImpl
            dup
            aload 0 /* strategy */
            aload 1 /* other */
            iload 2 /* isSet */
            invokespecial jdk.internal.vm.compiler.collections.EconomicMapImpl.<init>:(Ljdk/internal/vm/compiler/collections/Equivalence;Ljdk/internal/vm/compiler/collections/UnmodifiableEconomicSet;Z)V
            invokestatic jdk.internal.vm.compiler.collections.EconomicMapImpl.intercept:(Ljdk/internal/vm/compiler/collections/EconomicMapImpl;)Ljdk/internal/vm/compiler/collections/EconomicMapImpl;
            areturn
        end local 2 // boolean isSet
        end local 1 // jdk.internal.vm.compiler.collections.UnmodifiableEconomicSet other
        end local 0 // jdk.internal.vm.compiler.collections.Equivalence strategy
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0  strategy  Ljdk/internal/vm/compiler/collections/Equivalence;
            0    1     1     other  Ljdk/internal/vm/compiler/collections/UnmodifiableEconomicSet<TK;>;
            0    1     2     isSet  Z
    Signature: <K:Ljava/lang/Object;V:Ljava/lang/Object;>(Ljdk/internal/vm/compiler/collections/Equivalence;Ljdk/internal/vm/compiler/collections/UnmodifiableEconomicSet<TK;>;Z)Ljdk/internal/vm/compiler/collections/EconomicMapImpl<TK;TV;>;
    MethodParameters:
          Name  Flags
      strategy  
      other     
      isSet     

  private void <init>(jdk.internal.vm.compiler.collections.Equivalence, boolean);
    descriptor: (Ljdk/internal/vm/compiler/collections/Equivalence;Z)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
        start local 1 // jdk.internal.vm.compiler.collections.Equivalence strategy
        start local 2 // boolean isSet
         0: .line 149
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 150
            aload 1 /* strategy */
            getstatic jdk.internal.vm.compiler.collections.Equivalence.IDENTITY:Ljdk/internal/vm/compiler/collections/Equivalence;
            if_acmpne 4
         2: .line 151
            aload 0 /* this */
            aconst_null
            putfield jdk.internal.vm.compiler.collections.EconomicMapImpl.strategy:Ljdk/internal/vm/compiler/collections/Equivalence;
         3: .line 152
            goto 5
         4: .line 153
      StackMap locals: jdk.internal.vm.compiler.collections.EconomicMapImpl jdk.internal.vm.compiler.collections.Equivalence int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* strategy */
            putfield jdk.internal.vm.compiler.collections.EconomicMapImpl.strategy:Ljdk/internal/vm/compiler/collections/Equivalence;
         5: .line 155
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* isSet */
            putfield jdk.internal.vm.compiler.collections.EconomicMapImpl.isSet:Z
         6: .line 156
            return
        end local 2 // boolean isSet
        end local 1 // jdk.internal.vm.compiler.collections.Equivalence strategy
        end local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Ljdk/internal/vm/compiler/collections/EconomicMapImpl<TK;TV;>;
            0    7     1  strategy  Ljdk/internal/vm/compiler/collections/Equivalence;
            0    7     2     isSet  Z
    MethodParameters:
          Name  Flags
      strategy  
      isSet     

  private void <init>(jdk.internal.vm.compiler.collections.Equivalence, int, boolean);
    descriptor: (Ljdk/internal/vm/compiler/collections/Equivalence;IZ)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
        start local 1 // jdk.internal.vm.compiler.collections.Equivalence strategy
        start local 2 // int initialCapacity
        start local 3 // boolean isSet
         0: .line 159
            aload 0 /* this */
            aload 1 /* strategy */
            iload 3 /* isSet */
            invokespecial jdk.internal.vm.compiler.collections.EconomicMapImpl.<init>:(Ljdk/internal/vm/compiler/collections/Equivalence;Z)V
         1: .line 160
            aload 0 /* this */
            iload 2 /* initialCapacity */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.init:(I)V
         2: .line 161
            return
        end local 3 // boolean isSet
        end local 2 // int initialCapacity
        end local 1 // jdk.internal.vm.compiler.collections.Equivalence strategy
        end local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    3     0             this  Ljdk/internal/vm/compiler/collections/EconomicMapImpl<TK;TV;>;
            0    3     1         strategy  Ljdk/internal/vm/compiler/collections/Equivalence;
            0    3     2  initialCapacity  I
            0    3     3            isSet  Z
    MethodParameters:
                 Name  Flags
      strategy         
      initialCapacity  
      isSet            

  private void <init>(jdk.internal.vm.compiler.collections.Equivalence, jdk.internal.vm.compiler.collections.UnmodifiableEconomicMap<K, V>, );
    descriptor: (Ljdk/internal/vm/compiler/collections/Equivalence;Ljdk/internal/vm/compiler/collections/UnmodifiableEconomicMap;Z)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
        start local 1 // jdk.internal.vm.compiler.collections.Equivalence strategy
        start local 2 // jdk.internal.vm.compiler.collections.UnmodifiableEconomicMap other
        start local 3 // boolean isSet
         0: .line 164
            aload 0 /* this */
            aload 1 /* strategy */
            iload 3 /* isSet */
            invokespecial jdk.internal.vm.compiler.collections.EconomicMapImpl.<init>:(Ljdk/internal/vm/compiler/collections/Equivalence;Z)V
         1: .line 165
            aload 0 /* this */
            aload 2 /* other */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.initFrom:(Ljava/lang/Object;)Z
            ifne 4
         2: .line 166
            aload 0 /* this */
            aload 2 /* other */
            invokeinterface jdk.internal.vm.compiler.collections.UnmodifiableEconomicMap.size:()I
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.init:(I)V
         3: .line 167
            aload 0 /* this */
            aload 2 /* other */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.putAll:(Ljdk/internal/vm/compiler/collections/UnmodifiableEconomicMap;)V
         4: .line 169
      StackMap locals: jdk.internal.vm.compiler.collections.EconomicMapImpl jdk.internal.vm.compiler.collections.Equivalence jdk.internal.vm.compiler.collections.UnmodifiableEconomicMap int
      StackMap stack:
            return
        end local 3 // boolean isSet
        end local 2 // jdk.internal.vm.compiler.collections.UnmodifiableEconomicMap other
        end local 1 // jdk.internal.vm.compiler.collections.Equivalence strategy
        end local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Ljdk/internal/vm/compiler/collections/EconomicMapImpl<TK;TV;>;
            0    5     1  strategy  Ljdk/internal/vm/compiler/collections/Equivalence;
            0    5     2     other  Ljdk/internal/vm/compiler/collections/UnmodifiableEconomicMap<TK;TV;>;
            0    5     3     isSet  Z
    Signature: (Ljdk/internal/vm/compiler/collections/Equivalence;Ljdk/internal/vm/compiler/collections/UnmodifiableEconomicMap<TK;TV;>;Z)V
    MethodParameters:
          Name  Flags
      strategy  
      other     
      isSet     

  private void <init>(jdk.internal.vm.compiler.collections.Equivalence, jdk.internal.vm.compiler.collections.UnmodifiableEconomicSet<K>, );
    descriptor: (Ljdk/internal/vm/compiler/collections/Equivalence;Ljdk/internal/vm/compiler/collections/UnmodifiableEconomicSet;Z)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
        start local 1 // jdk.internal.vm.compiler.collections.Equivalence strategy
        start local 2 // jdk.internal.vm.compiler.collections.UnmodifiableEconomicSet other
        start local 3 // boolean isSet
         0: .line 172
            aload 0 /* this */
            aload 1 /* strategy */
            iload 3 /* isSet */
            invokespecial jdk.internal.vm.compiler.collections.EconomicMapImpl.<init>:(Ljdk/internal/vm/compiler/collections/Equivalence;Z)V
         1: .line 173
            aload 0 /* this */
            aload 2 /* other */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.initFrom:(Ljava/lang/Object;)Z
            ifne 4
         2: .line 174
            aload 0 /* this */
            aload 2 /* other */
            invokeinterface jdk.internal.vm.compiler.collections.UnmodifiableEconomicSet.size:()I
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.init:(I)V
         3: .line 175
            aload 0 /* this */
            aload 2 /* other */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.addAll:(Ljava/lang/Iterable;)V
         4: .line 177
      StackMap locals: jdk.internal.vm.compiler.collections.EconomicMapImpl jdk.internal.vm.compiler.collections.Equivalence jdk.internal.vm.compiler.collections.UnmodifiableEconomicSet int
      StackMap stack:
            return
        end local 3 // boolean isSet
        end local 2 // jdk.internal.vm.compiler.collections.UnmodifiableEconomicSet other
        end local 1 // jdk.internal.vm.compiler.collections.Equivalence strategy
        end local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Ljdk/internal/vm/compiler/collections/EconomicMapImpl<TK;TV;>;
            0    5     1  strategy  Ljdk/internal/vm/compiler/collections/Equivalence;
            0    5     2     other  Ljdk/internal/vm/compiler/collections/UnmodifiableEconomicSet<TK;>;
            0    5     3     isSet  Z
    Signature: (Ljdk/internal/vm/compiler/collections/Equivalence;Ljdk/internal/vm/compiler/collections/UnmodifiableEconomicSet<TK;>;Z)V
    MethodParameters:
          Name  Flags
      strategy  
      other     
      isSet     

  private boolean initFrom(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
        start local 1 // java.lang.Object o
         0: .line 181
            aload 1 /* o */
            instanceof jdk.internal.vm.compiler.collections.EconomicMapImpl
            ifeq 10
         1: .line 182
            aload 1 /* o */
            checkcast jdk.internal.vm.compiler.collections.EconomicMapImpl
            astore 2 /* otherMap */
        start local 2 // jdk.internal.vm.compiler.collections.EconomicMapImpl otherMap
         2: .line 184
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.strategy:Ljdk/internal/vm/compiler/collections/Equivalence;
            aload 2 /* otherMap */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.strategy:Ljdk/internal/vm/compiler/collections/Equivalence;
            if_acmpne 10
         3: .line 185
            aload 0 /* this */
            aload 2 /* otherMap */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.totalEntries:I
            putfield jdk.internal.vm.compiler.collections.EconomicMapImpl.totalEntries:I
         4: .line 186
            aload 0 /* this */
            aload 2 /* otherMap */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.deletedEntries:I
            putfield jdk.internal.vm.compiler.collections.EconomicMapImpl.deletedEntries:I
         5: .line 187
            aload 2 /* otherMap */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.entries:[Ljava/lang/Object;
            ifnull 7
         6: .line 188
            aload 0 /* this */
            aload 2 /* otherMap */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.entries:[Ljava/lang/Object;
            invokevirtual java.lang.Object[].clone:()Ljava/lang/Object;
            checkcast java.lang.Object[]
            putfield jdk.internal.vm.compiler.collections.EconomicMapImpl.entries:[Ljava/lang/Object;
         7: .line 190
      StackMap locals: jdk.internal.vm.compiler.collections.EconomicMapImpl
      StackMap stack:
            aload 2 /* otherMap */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.hashArray:[B
            ifnull 9
         8: .line 191
            aload 0 /* this */
            aload 2 /* otherMap */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.hashArray:[B
            invokevirtual byte[].clone:()Ljava/lang/Object;
            checkcast byte[]
            putfield jdk.internal.vm.compiler.collections.EconomicMapImpl.hashArray:[B
         9: .line 193
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 2 // jdk.internal.vm.compiler.collections.EconomicMapImpl otherMap
        10: .line 196
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // java.lang.Object o
        end local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   11     0      this  Ljdk/internal/vm/compiler/collections/EconomicMapImpl<TK;TV;>;
            0   11     1         o  Ljava/lang/Object;
            2   10     2  otherMap  Ljdk/internal/vm/compiler/collections/EconomicMapImpl<TK;TV;>;
    MethodParameters:
      Name  Flags
      o     

  private void init(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
        start local 1 // int size
         0: .line 200
            iload 1 /* size */
            iconst_4
            if_icmple 2
         1: .line 201
            aload 0 /* this */
            iload 1 /* size */
            iconst_1
            ishl
            anewarray java.lang.Object
            putfield jdk.internal.vm.compiler.collections.EconomicMapImpl.entries:[Ljava/lang/Object;
         2: .line 203
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int size
        end local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljdk/internal/vm/compiler/collections/EconomicMapImpl<TK;TV;>;
            0    3     1  size  I
    MethodParameters:
      Name  Flags
      size  

  public V get();
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
        start local 1 // java.lang.Object key
         0: .line 227
            aload 1 /* key */
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 229
            aload 0 /* this */
            aload 1 /* key */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.find:(Ljava/lang/Object;)I
            istore 2 /* index */
        start local 2 // int index
         2: .line 230
            iload 2 /* index */
            iconst_m1
            if_icmpeq 4
         3: .line 231
            aload 0 /* this */
            iload 2 /* index */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.getValue:(I)Ljava/lang/Object;
            areturn
         4: .line 233
      StackMap locals: int
      StackMap stack:
            aconst_null
            areturn
        end local 2 // int index
        end local 1 // java.lang.Object key
        end local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Ljdk/internal/vm/compiler/collections/EconomicMapImpl<TK;TV;>;
            0    5     1    key  TK;
            2    5     2  index  I
    Signature: (TK;)TV;
    MethodParameters:
      Name  Flags
      key   

  private int find();
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
        start local 1 // java.lang.Object key
         0: .line 237
            aload 0 /* this */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.hasHashArray:()Z
            ifeq 2
         1: .line 238
            aload 0 /* this */
            aload 1 /* key */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.findHash:(Ljava/lang/Object;)I
            ireturn
         2: .line 240
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* key */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.findLinear:(Ljava/lang/Object;)I
            ireturn
        end local 1 // java.lang.Object key
        end local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljdk/internal/vm/compiler/collections/EconomicMapImpl<TK;TV;>;
            0    3     1   key  TK;
    Signature: (TK;)I
    MethodParameters:
      Name  Flags
      key   

  private int findLinear();
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
        start local 1 // java.lang.Object key
         0: .line 245
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         1: goto 6
         2: .line 246
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.entries:[Ljava/lang/Object;
            iload 2 /* i */
            iconst_1
            ishl
            aaload
            astore 3 /* entryKey */
        start local 3 // java.lang.Object entryKey
         3: .line 247
            aload 3 /* entryKey */
            ifnull 5
            aload 0 /* this */
            aload 1 /* key */
            aload 3 /* entryKey */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.compareKeys:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 5
         4: .line 248
            iload 2 /* i */
            ireturn
        end local 3 // java.lang.Object entryKey
         5: .line 245
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 2 /* i */
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.totalEntries:I
            if_icmplt 2
        end local 2 // int i
         7: .line 251
            iconst_m1
            ireturn
        end local 1 // java.lang.Object key
        end local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    8     0      this  Ljdk/internal/vm/compiler/collections/EconomicMapImpl<TK;TV;>;
            0    8     1       key  TK;
            1    7     2         i  I
            3    5     3  entryKey  Ljava/lang/Object;
    Signature: (TK;)I
    MethodParameters:
      Name  Flags
      key   

  private boolean compareKeys(java.lang.Object, java.lang.Object);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
        start local 1 // java.lang.Object key
        start local 2 // java.lang.Object entryKey
         0: .line 255
            aload 1 /* key */
            aload 2 /* entryKey */
            if_acmpne 2
         1: .line 256
            iconst_1
            ireturn
         2: .line 258
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.strategy:Ljdk/internal/vm/compiler/collections/Equivalence;
            ifnull 6
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.strategy:Ljdk/internal/vm/compiler/collections/Equivalence;
            getstatic jdk.internal.vm.compiler.collections.Equivalence.IDENTITY_WITH_SYSTEM_HASHCODE:Ljdk/internal/vm/compiler/collections/Equivalence;
            if_acmpeq 6
         3: .line 259
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.strategy:Ljdk/internal/vm/compiler/collections/Equivalence;
            getstatic jdk.internal.vm.compiler.collections.Equivalence.DEFAULT:Ljdk/internal/vm/compiler/collections/Equivalence;
            if_acmpne 5
         4: .line 260
            aload 1 /* key */
            aload 2 /* entryKey */
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ireturn
         5: .line 262
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.strategy:Ljdk/internal/vm/compiler/collections/Equivalence;
            aload 1 /* key */
            aload 2 /* entryKey */
            invokevirtual jdk.internal.vm.compiler.collections.Equivalence.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ireturn
         6: .line 265
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 2 // java.lang.Object entryKey
        end local 1 // java.lang.Object key
        end local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Ljdk/internal/vm/compiler/collections/EconomicMapImpl<TK;TV;>;
            0    7     1       key  Ljava/lang/Object;
            0    7     2  entryKey  Ljava/lang/Object;
    MethodParameters:
          Name  Flags
      key       
      entryKey  

  private int findHash();
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
        start local 1 // java.lang.Object key
         0: .line 269
            aload 0 /* this */
            aload 0 /* this */
            aload 1 /* key */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.getHashIndex:(Ljava/lang/Object;)I
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.getHashArray:(I)I
            iconst_1
            isub
            istore 2 /* index */
        start local 2 // int index
         1: .line 270
            iload 2 /* index */
            iconst_m1
            if_icmpeq 8
         2: .line 271
            aload 0 /* this */
            iload 2 /* index */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.getKey:(I)Ljava/lang/Object;
            astore 3 /* entryKey */
        start local 3 // java.lang.Object entryKey
         3: .line 272
            aload 0 /* this */
            aload 1 /* key */
            aload 3 /* entryKey */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.compareKeys:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 5
         4: .line 273
            iload 2 /* index */
            ireturn
         5: .line 275
      StackMap locals: int java.lang.Object
      StackMap stack:
            aload 0 /* this */
            iload 2 /* index */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.getRawValue:(I)Ljava/lang/Object;
            astore 4 /* entryValue */
        start local 4 // java.lang.Object entryValue
         6: .line 276
            aload 4 /* entryValue */
            instanceof jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink
            ifeq 8
         7: .line 277
            aload 0 /* this */
            aload 1 /* key */
            aload 4 /* entryValue */
            checkcast jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.findWithCollision:(Ljava/lang/Object;Ljdk/internal/vm/compiler/collections/EconomicMapImpl$CollisionLink;)I
            ireturn
        end local 4 // java.lang.Object entryValue
        end local 3 // java.lang.Object entryKey
         8: .line 282
      StackMap locals:
      StackMap stack:
            iconst_m1
            ireturn
        end local 2 // int index
        end local 1 // java.lang.Object key
        end local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    9     0        this  Ljdk/internal/vm/compiler/collections/EconomicMapImpl<TK;TV;>;
            0    9     1         key  TK;
            1    9     2       index  I
            3    8     3    entryKey  Ljava/lang/Object;
            6    8     4  entryValue  Ljava/lang/Object;
    Signature: (TK;)I
    MethodParameters:
      Name  Flags
      key   

  private int findWithCollision(K, jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink);
    descriptor: (Ljava/lang/Object;Ljdk/internal/vm/compiler/collections/EconomicMapImpl$CollisionLink;)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=8, args_size=3
        start local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
        start local 1 // java.lang.Object key
        start local 2 // jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink initialEntryValue
         0: .line 288
            aload 2 /* initialEntryValue */
            astore 5 /* entryValue */
        start local 5 // jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink entryValue
         1: .line 290
      StackMap locals: jdk.internal.vm.compiler.collections.EconomicMapImpl java.lang.Object jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink top top jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink
      StackMap stack:
            aload 5 /* entryValue */
            astore 6 /* collisionLink */
        start local 6 // jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink collisionLink
         2: .line 291
            aload 6 /* collisionLink */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink.next:I
            istore 3 /* index */
        start local 3 // int index
         3: .line 292
            aload 0 /* this */
            iload 3 /* index */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.getKey:(I)Ljava/lang/Object;
            astore 4 /* entryKey */
        start local 4 // java.lang.Object entryKey
         4: .line 293
            aload 0 /* this */
            aload 1 /* key */
            aload 4 /* entryKey */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.compareKeys:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 6
         5: .line 294
            iload 3 /* index */
            ireturn
         6: .line 296
      StackMap locals: jdk.internal.vm.compiler.collections.EconomicMapImpl java.lang.Object jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink int java.lang.Object jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink
      StackMap stack:
            aload 0 /* this */
            iload 3 /* index */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.getRawValue:(I)Ljava/lang/Object;
            astore 7 /* value */
        start local 7 // java.lang.Object value
         7: .line 297
            aload 7 /* value */
            instanceof jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink
            ifeq 10
         8: .line 298
            aload 0 /* this */
            iload 3 /* index */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.getRawValue:(I)Ljava/lang/Object;
            checkcast jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink
            astore 5 /* entryValue */
         9: .line 299
            goto 1
        10: .line 300
      StackMap locals: java.lang.Object
      StackMap stack:
            iconst_m1
            ireturn
        end local 7 // java.lang.Object value
        end local 6 // jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink collisionLink
        end local 5 // jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink entryValue
        end local 4 // java.lang.Object entryKey
        end local 3 // int index
        end local 2 // jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink initialEntryValue
        end local 1 // java.lang.Object key
        end local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   11     0               this  Ljdk/internal/vm/compiler/collections/EconomicMapImpl<TK;TV;>;
            0   11     1                key  TK;
            0   11     2  initialEntryValue  Ljdk/internal/vm/compiler/collections/EconomicMapImpl$CollisionLink;
            3   11     3              index  I
            4   11     4           entryKey  Ljava/lang/Object;
            1   11     5         entryValue  Ljdk/internal/vm/compiler/collections/EconomicMapImpl$CollisionLink;
            2   11     6      collisionLink  Ljdk/internal/vm/compiler/collections/EconomicMapImpl$CollisionLink;
            7   11     7              value  Ljava/lang/Object;
    Signature: (TK;Ljdk/internal/vm/compiler/collections/EconomicMapImpl$CollisionLink;)I
    MethodParameters:
                   Name  Flags
      key                
      initialEntryValue  

  private int getHashArray(int);
    descriptor: (I)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
        start local 1 // int index
         0: .line 307
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.entries:[Ljava/lang/Object;
            arraylength
            sipush 512
            if_icmpge 2
         1: .line 308
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.hashArray:[B
            iload 1 /* index */
            baload
            sipush 255
            iand
            ireturn
         2: .line 309
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.entries:[Ljava/lang/Object;
            arraylength
            ldc 131072
            if_icmpge 5
         3: .line 310
            iload 1 /* index */
            iconst_1
            ishl
            istore 2 /* adjustedIndex */
        start local 2 // int adjustedIndex
         4: .line 311
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.hashArray:[B
            iload 2 /* adjustedIndex */
            baload
            sipush 255
            iand
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.hashArray:[B
            iload 2 /* adjustedIndex */
            iconst_1
            iadd
            baload
            sipush 255
            iand
            bipush 8
            ishl
            ior
            ireturn
        end local 2 // int adjustedIndex
         5: .line 313
      StackMap locals:
      StackMap stack:
            iload 1 /* index */
            iconst_2
            ishl
            istore 2 /* adjustedIndex */
        start local 2 // int adjustedIndex
         6: .line 314
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.hashArray:[B
            iload 2 /* adjustedIndex */
            baload
            sipush 255
            iand
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.hashArray:[B
            iload 2 /* adjustedIndex */
            iconst_1
            iadd
            baload
            sipush 255
            iand
            bipush 8
            ishl
            ior
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.hashArray:[B
            iload 2 /* adjustedIndex */
            iconst_2
            iadd
            baload
            sipush 255
            iand
            bipush 16
            ishl
            ior
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.hashArray:[B
            iload 2 /* adjustedIndex */
            iconst_3
            iadd
            baload
            sipush 255
            iand
            bipush 24
            ishl
            ior
            ireturn
        end local 2 // int adjustedIndex
        end local 1 // int index
        end local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    7     0           this  Ljdk/internal/vm/compiler/collections/EconomicMapImpl<TK;TV;>;
            0    7     1          index  I
            4    5     2  adjustedIndex  I
            6    7     2  adjustedIndex  I
    MethodParameters:
       Name  Flags
      index  

  private void setHashArray(int, int);
    descriptor: (II)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
        start local 1 // int index
        start local 2 // int value
         0: .line 319
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.entries:[Ljava/lang/Object;
            arraylength
            sipush 512
            if_icmpge 3
         1: .line 320
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.hashArray:[B
            iload 1 /* index */
            iload 2 /* value */
            i2b
            bastore
         2: .line 321
            goto 13
      StackMap locals:
      StackMap stack:
         3: aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.entries:[Ljava/lang/Object;
            arraylength
            ldc 131072
            if_icmpge 8
         4: .line 322
            iload 1 /* index */
            iconst_1
            ishl
            istore 3 /* adjustedIndex */
        start local 3 // int adjustedIndex
         5: .line 323
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.hashArray:[B
            iload 3 /* adjustedIndex */
            iload 2 /* value */
            i2b
            bastore
         6: .line 324
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.hashArray:[B
            iload 3 /* adjustedIndex */
            iconst_1
            iadd
            iload 2 /* value */
            bipush 8
            ishr
            i2b
            bastore
        end local 3 // int adjustedIndex
         7: .line 325
            goto 13
         8: .line 326
      StackMap locals:
      StackMap stack:
            iload 1 /* index */
            iconst_2
            ishl
            istore 3 /* adjustedIndex */
        start local 3 // int adjustedIndex
         9: .line 327
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.hashArray:[B
            iload 3 /* adjustedIndex */
            iload 2 /* value */
            i2b
            bastore
        10: .line 328
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.hashArray:[B
            iload 3 /* adjustedIndex */
            iconst_1
            iadd
            iload 2 /* value */
            bipush 8
            ishr
            i2b
            bastore
        11: .line 329
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.hashArray:[B
            iload 3 /* adjustedIndex */
            iconst_2
            iadd
            iload 2 /* value */
            bipush 16
            ishr
            i2b
            bastore
        12: .line 330
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.hashArray:[B
            iload 3 /* adjustedIndex */
            iconst_3
            iadd
            iload 2 /* value */
            bipush 24
            ishr
            i2b
            bastore
        end local 3 // int adjustedIndex
        13: .line 332
      StackMap locals:
      StackMap stack:
            return
        end local 2 // int value
        end local 1 // int index
        end local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   14     0           this  Ljdk/internal/vm/compiler/collections/EconomicMapImpl<TK;TV;>;
            0   14     1          index  I
            0   14     2          value  I
            5    7     3  adjustedIndex  I
            9   13     3  adjustedIndex  I
    MethodParameters:
       Name  Flags
      index  
      value  

  private int findAndRemoveHash(java.lang.Object);
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=8, args_size=2
        start local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
        start local 1 // java.lang.Object key
         0: .line 335
            aload 0 /* this */
            aload 1 /* key */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.getHashIndex:(Ljava/lang/Object;)I
            istore 2 /* hashIndex */
        start local 2 // int hashIndex
         1: .line 336
            aload 0 /* this */
            iload 2 /* hashIndex */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.getHashArray:(I)I
            iconst_1
            isub
            istore 3 /* index */
        start local 3 // int index
         2: .line 337
            iload 3 /* index */
            iconst_m1
            if_icmpeq 15
         3: .line 338
            aload 0 /* this */
            iload 3 /* index */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.getKey:(I)Ljava/lang/Object;
            astore 4 /* entryKey */
        start local 4 // java.lang.Object entryKey
         4: .line 339
            aload 0 /* this */
            aload 1 /* key */
            aload 4 /* entryKey */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.compareKeys:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 12
         5: .line 340
            aload 0 /* this */
            iload 3 /* index */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.getRawValue:(I)Ljava/lang/Object;
            astore 5 /* value */
        start local 5 // java.lang.Object value
         6: .line 341
            iconst_m1
            istore 6 /* nextIndex */
        start local 6 // int nextIndex
         7: .line 342
            aload 5 /* value */
            instanceof jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink
            ifeq 10
         8: .line 343
            aload 5 /* value */
            checkcast jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink
            astore 7 /* collisionLink */
        start local 7 // jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink collisionLink
         9: .line 344
            aload 7 /* collisionLink */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink.next:I
            istore 6 /* nextIndex */
        end local 7 // jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink collisionLink
        10: .line 346
      StackMap locals: jdk.internal.vm.compiler.collections.EconomicMapImpl java.lang.Object int int java.lang.Object java.lang.Object int
      StackMap stack:
            aload 0 /* this */
            iload 2 /* hashIndex */
            iload 6 /* nextIndex */
            iconst_1
            iadd
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.setHashArray:(II)V
        11: .line 347
            iload 3 /* index */
            ireturn
        end local 6 // int nextIndex
        end local 5 // java.lang.Object value
        12: .line 349
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 3 /* index */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.getRawValue:(I)Ljava/lang/Object;
            astore 5 /* entryValue */
        start local 5 // java.lang.Object entryValue
        13: .line 350
            aload 5 /* entryValue */
            instanceof jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink
            ifeq 15
        14: .line 351
            aload 0 /* this */
            aload 1 /* key */
            aload 5 /* entryValue */
            checkcast jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink
            iload 3 /* index */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.findAndRemoveWithCollision:(Ljava/lang/Object;Ljdk/internal/vm/compiler/collections/EconomicMapImpl$CollisionLink;I)I
            ireturn
        end local 5 // java.lang.Object entryValue
        end local 4 // java.lang.Object entryKey
        15: .line 356
      StackMap locals:
      StackMap stack:
            iconst_m1
            ireturn
        end local 3 // int index
        end local 2 // int hashIndex
        end local 1 // java.lang.Object key
        end local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   16     0           this  Ljdk/internal/vm/compiler/collections/EconomicMapImpl<TK;TV;>;
            0   16     1            key  Ljava/lang/Object;
            1   16     2      hashIndex  I
            2   16     3          index  I
            4   15     4       entryKey  Ljava/lang/Object;
            6   12     5          value  Ljava/lang/Object;
            7   12     6      nextIndex  I
            9   10     7  collisionLink  Ljdk/internal/vm/compiler/collections/EconomicMapImpl$CollisionLink;
           13   15     5     entryValue  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      key   

  private int findAndRemoveWithCollision(java.lang.Object, jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink, int);
    descriptor: (Ljava/lang/Object;Ljdk/internal/vm/compiler/collections/EconomicMapImpl$CollisionLink;I)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=11, args_size=4
        start local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
        start local 1 // java.lang.Object key
        start local 2 // jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink initialEntryValue
        start local 3 // int initialIndexValue
         0: .line 362
            aload 2 /* initialEntryValue */
            astore 6 /* entryValue */
        start local 6 // jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink entryValue
         1: .line 363
            iload 3 /* initialIndexValue */
            istore 7 /* lastIndex */
        start local 7 // int lastIndex
         2: .line 365
      StackMap locals: jdk.internal.vm.compiler.collections.EconomicMapImpl java.lang.Object jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink int top top jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink int
      StackMap stack:
            aload 6 /* entryValue */
            astore 8 /* collisionLink */
        start local 8 // jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink collisionLink
         3: .line 366
            aload 8 /* collisionLink */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink.next:I
            istore 4 /* index */
        start local 4 // int index
         4: .line 367
            aload 0 /* this */
            iload 4 /* index */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.getKey:(I)Ljava/lang/Object;
            astore 5 /* entryKey */
        start local 5 // java.lang.Object entryKey
         5: .line 368
            aload 0 /* this */
            aload 1 /* key */
            aload 5 /* entryKey */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.compareKeys:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 13
         6: .line 369
            aload 0 /* this */
            iload 4 /* index */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.getRawValue:(I)Ljava/lang/Object;
            astore 9 /* value */
        start local 9 // java.lang.Object value
         7: .line 370
            aload 9 /* value */
            instanceof jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink
            ifeq 11
         8: .line 371
            aload 9 /* value */
            checkcast jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink
            astore 10 /* thisCollisionLink */
        start local 10 // jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink thisCollisionLink
         9: .line 372
            aload 0 /* this */
            iload 7 /* lastIndex */
            new jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink
            dup
            aload 8 /* collisionLink */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink.value:Ljava/lang/Object;
            aload 10 /* thisCollisionLink */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink.next:I
            invokespecial jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink.<init>:(Ljava/lang/Object;I)V
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.setRawValue:(ILjava/lang/Object;)V
        end local 10 // jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink thisCollisionLink
        10: .line 373
            goto 12
        11: .line 374
      StackMap locals: jdk.internal.vm.compiler.collections.EconomicMapImpl java.lang.Object jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink int int java.lang.Object jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink int jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink java.lang.Object
      StackMap stack:
            aload 0 /* this */
            iload 7 /* lastIndex */
            aload 8 /* collisionLink */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink.value:Ljava/lang/Object;
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.setRawValue:(ILjava/lang/Object;)V
        12: .line 376
      StackMap locals:
      StackMap stack:
            iload 4 /* index */
            ireturn
        end local 9 // java.lang.Object value
        13: .line 378
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 4 /* index */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.getRawValue:(I)Ljava/lang/Object;
            astore 9 /* value */
        start local 9 // java.lang.Object value
        14: .line 379
            aload 9 /* value */
            instanceof jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink
            ifeq 18
        15: .line 380
            aload 0 /* this */
            iload 4 /* index */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.getRawValue:(I)Ljava/lang/Object;
            checkcast jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink
            astore 6 /* entryValue */
        16: .line 381
            iload 4 /* index */
            istore 7 /* lastIndex */
        17: .line 382
            goto 2
        18: .line 383
      StackMap locals: java.lang.Object
      StackMap stack:
            iconst_m1
            ireturn
        end local 9 // java.lang.Object value
        end local 8 // jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink collisionLink
        end local 7 // int lastIndex
        end local 6 // jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink entryValue
        end local 5 // java.lang.Object entryKey
        end local 4 // int index
        end local 3 // int initialIndexValue
        end local 2 // jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink initialEntryValue
        end local 1 // java.lang.Object key
        end local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   19     0               this  Ljdk/internal/vm/compiler/collections/EconomicMapImpl<TK;TV;>;
            0   19     1                key  Ljava/lang/Object;
            0   19     2  initialEntryValue  Ljdk/internal/vm/compiler/collections/EconomicMapImpl$CollisionLink;
            0   19     3  initialIndexValue  I
            4   19     4              index  I
            5   19     5           entryKey  Ljava/lang/Object;
            1   19     6         entryValue  Ljdk/internal/vm/compiler/collections/EconomicMapImpl$CollisionLink;
            2   19     7          lastIndex  I
            3   19     8      collisionLink  Ljdk/internal/vm/compiler/collections/EconomicMapImpl$CollisionLink;
            7   13     9              value  Ljava/lang/Object;
            9   10    10  thisCollisionLink  Ljdk/internal/vm/compiler/collections/EconomicMapImpl$CollisionLink;
           14   19     9              value  Ljava/lang/Object;
    MethodParameters:
                   Name  Flags
      key                
      initialEntryValue  
      initialIndexValue  

  private int getHashIndex(java.lang.Object);
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
        start local 1 // java.lang.Object key
         0: .line 391
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.strategy:Ljdk/internal/vm/compiler/collections/Equivalence;
            ifnull 6
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.strategy:Ljdk/internal/vm/compiler/collections/Equivalence;
            getstatic jdk.internal.vm.compiler.collections.Equivalence.DEFAULT:Ljdk/internal/vm/compiler/collections/Equivalence;
            if_acmpeq 6
         1: .line 392
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.strategy:Ljdk/internal/vm/compiler/collections/Equivalence;
            getstatic jdk.internal.vm.compiler.collections.Equivalence.IDENTITY_WITH_SYSTEM_HASHCODE:Ljdk/internal/vm/compiler/collections/Equivalence;
            if_acmpne 4
         2: .line 393
            aload 1 /* key */
            invokestatic java.lang.System.identityHashCode:(Ljava/lang/Object;)I
            istore 2 /* hash */
        start local 2 // int hash
         3: .line 394
            goto 7
        end local 2 // int hash
         4: .line 395
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.strategy:Ljdk/internal/vm/compiler/collections/Equivalence;
            aload 1 /* key */
            invokevirtual jdk.internal.vm.compiler.collections.Equivalence.hashCode:(Ljava/lang/Object;)I
            istore 2 /* hash */
        start local 2 // int hash
         5: .line 397
            goto 7
        end local 2 // int hash
         6: .line 398
      StackMap locals:
      StackMap stack:
            aload 1 /* key */
            invokevirtual java.lang.Object.hashCode:()I
            istore 2 /* hash */
        start local 2 // int hash
         7: .line 400
      StackMap locals: int
      StackMap stack:
            iload 2 /* hash */
            iload 2 /* hash */
            bipush 16
            iushr
            ixor
            istore 2 /* hash */
         8: .line 401
            iload 2 /* hash */
            aload 0 /* this */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.getHashTableSize:()I
            iconst_1
            isub
            iand
            ireturn
        end local 2 // int hash
        end local 1 // java.lang.Object key
        end local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Ljdk/internal/vm/compiler/collections/EconomicMapImpl<TK;TV;>;
            0    9     1   key  Ljava/lang/Object;
            3    4     2  hash  I
            5    6     2  hash  I
            7    9     2  hash  I
    MethodParameters:
      Name  Flags
      key   

  public V put(K, );
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=3
        start local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
        start local 1 // java.lang.Object key
        start local 2 // java.lang.Object value
         0: .line 407
            aload 1 /* key */
            ifnonnull 2
         1: .line 408
            new java.lang.UnsupportedOperationException
            dup
            ldc "null not supported as key!"
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 410
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* key */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.find:(Ljava/lang/Object;)I
            istore 3 /* index */
        start local 3 // int index
         3: .line 411
            iload 3 /* index */
            iconst_m1
            if_icmpeq 7
         4: .line 412
            aload 0 /* this */
            iload 3 /* index */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.getValue:(I)Ljava/lang/Object;
            astore 4 /* oldValue */
        start local 4 // java.lang.Object oldValue
         5: .line 413
            aload 0 /* this */
            iload 3 /* index */
            aload 2 /* value */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.setValue:(ILjava/lang/Object;)V
         6: .line 414
            aload 4 /* oldValue */
            areturn
        end local 4 // java.lang.Object oldValue
         7: .line 417
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.totalEntries:I
            istore 4 /* nextEntryIndex */
        start local 4 // int nextEntryIndex
         8: .line 418
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.entries:[Ljava/lang/Object;
            ifnonnull 11
         9: .line 419
            aload 0 /* this */
            bipush 8
            anewarray java.lang.Object
            putfield jdk.internal.vm.compiler.collections.EconomicMapImpl.entries:[Ljava/lang/Object;
        10: .line 420
            goto 15
      StackMap locals: int
      StackMap stack:
        11: aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.entries:[Ljava/lang/Object;
            arraylength
            iload 4 /* nextEntryIndex */
            iconst_1
            ishl
            if_icmpne 15
        12: .line 421
            aload 0 /* this */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.grow:()V
        13: .line 423
            getstatic jdk.internal.vm.compiler.collections.EconomicMapImpl.$assertionsDisabled:Z
            ifne 14
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.entries:[Ljava/lang/Object;
            arraylength
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.totalEntries:I
            iconst_1
            ishl
            if_icmpgt 14
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        14: .line 425
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.totalEntries:I
            istore 4 /* nextEntryIndex */
        15: .line 428
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 4 /* nextEntryIndex */
            aload 1 /* key */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.setKey:(ILjava/lang/Object;)V
        16: .line 429
            aload 0 /* this */
            iload 4 /* nextEntryIndex */
            aload 2 /* value */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.setValue:(ILjava/lang/Object;)V
        17: .line 430
            aload 0 /* this */
            dup
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.totalEntries:I
            iconst_1
            iadd
            putfield jdk.internal.vm.compiler.collections.EconomicMapImpl.totalEntries:I
        18: .line 432
            aload 0 /* this */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.hasHashArray:()Z
            ifeq 24
        19: .line 434
            aload 0 /* this */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.getHashTableSize:()I
            aload 0 /* this */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.size:()I
            aload 0 /* this */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.size:()I
            iconst_1
            ishr
            iadd
            if_icmpge 20
            iconst_1
            goto 21
      StackMap locals:
      StackMap stack:
        20: iconst_0
      StackMap locals:
      StackMap stack: int
        21: istore 5 /* rehashOnCollision */
        start local 5 // boolean rehashOnCollision
        22: .line 435
            aload 0 /* this */
            aload 1 /* key */
            iload 4 /* nextEntryIndex */
            iload 5 /* rehashOnCollision */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.putHashEntry:(Ljava/lang/Object;IZ)V
        end local 5 // boolean rehashOnCollision
        23: .line 436
            goto 26
      StackMap locals:
      StackMap stack:
        24: aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.totalEntries:I
            aload 0 /* this */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.getHashThreshold:()I
            if_icmple 26
        25: .line 437
            aload 0 /* this */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.createHash:()V
        26: .line 440
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 4 // int nextEntryIndex
        end local 3 // int index
        end local 2 // java.lang.Object value
        end local 1 // java.lang.Object key
        end local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   27     0               this  Ljdk/internal/vm/compiler/collections/EconomicMapImpl<TK;TV;>;
            0   27     1                key  TK;
            0   27     2              value  TV;
            3   27     3              index  I
            5    7     4           oldValue  Ljava/lang/Object;
            8   27     4     nextEntryIndex  I
           22   23     5  rehashOnCollision  Z
    Signature: (TK;TV;)TV;
    MethodParameters:
       Name  Flags
      key    
      value  

  private int getHashThreshold();
    descriptor: ()I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
         0: .line 447
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.strategy:Ljdk/internal/vm/compiler/collections/Equivalence;
            ifnull 1
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.strategy:Ljdk/internal/vm/compiler/collections/Equivalence;
            getstatic jdk.internal.vm.compiler.collections.Equivalence.IDENTITY_WITH_SYSTEM_HASHCODE:Ljdk/internal/vm/compiler/collections/Equivalence;
            if_acmpne 2
         1: .line 448
      StackMap locals:
      StackMap stack:
            bipush 8
            ireturn
         2: .line 450
      StackMap locals:
      StackMap stack:
            iconst_4
            ireturn
        end local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljdk/internal/vm/compiler/collections/EconomicMapImpl<TK;TV;>;

  private void grow();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=4, args_size=1
        start local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
         0: .line 455
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.entries:[Ljava/lang/Object;
            arraylength
            istore 1 /* entriesLength */
        start local 1 // int entriesLength
         1: .line 456
            iload 1 /* entriesLength */
            iconst_1
            ishr
            bipush 8
            iload 1 /* entriesLength */
            iconst_2
            ishr
            invokestatic java.lang.Math.max:(II)I
            iadd
            istore 2 /* newSize */
        start local 2 // int newSize
         2: .line 457
            iload 2 /* newSize */
            ldc 1073741823
            if_icmple 4
         3: .line 458
            new java.lang.UnsupportedOperationException
            dup
            ldc "map grown too large!"
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 460
      StackMap locals: int int
      StackMap stack:
            iload 2 /* newSize */
            iconst_1
            ishl
            anewarray java.lang.Object
            astore 3 /* newEntries */
        start local 3 // java.lang.Object[] newEntries
         5: .line 461
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.entries:[Ljava/lang/Object;
            iconst_0
            aload 3 /* newEntries */
            iconst_0
            iload 1 /* entriesLength */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         6: .line 462
            aload 0 /* this */
            aload 3 /* newEntries */
            putfield jdk.internal.vm.compiler.collections.EconomicMapImpl.entries:[Ljava/lang/Object;
         7: .line 463
            iload 1 /* entriesLength */
            sipush 512
            if_icmpge 8
            aload 3 /* newEntries */
            arraylength
            sipush 512
            if_icmpge 9
         8: .line 464
      StackMap locals: java.lang.Object[]
      StackMap stack:
            iload 1 /* entriesLength */
            ldc 131072
            if_icmpge 10
            aload 3 /* newEntries */
            arraylength
            ldc 131072
            if_icmple 10
         9: .line 466
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.createHash:()V
        10: .line 468
      StackMap locals:
      StackMap stack:
            return
        end local 3 // java.lang.Object[] newEntries
        end local 2 // int newSize
        end local 1 // int entriesLength
        end local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   11     0           this  Ljdk/internal/vm/compiler/collections/EconomicMapImpl<TK;TV;>;
            1   11     1  entriesLength  I
            2   11     2        newSize  I
            5   11     3     newEntries  [Ljava/lang/Object;

  private int maybeCompress(int);
    descriptor: (I)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
        start local 1 // int nextIndex
         0: .line 475
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.entries:[Ljava/lang/Object;
            arraylength
            bipush 8
            if_icmpeq 2
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.deletedEntries:I
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.totalEntries:I
            iconst_1
            ishr
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.totalEntries:I
            iconst_2
            ishr
            iadd
            if_icmplt 2
         1: .line 476
            aload 0 /* this */
            iload 1 /* nextIndex */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.compressLarge:(I)I
            ireturn
         2: .line 478
      StackMap locals:
      StackMap stack:
            iload 1 /* nextIndex */
            ireturn
        end local 1 // int nextIndex
        end local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Ljdk/internal/vm/compiler/collections/EconomicMapImpl<TK;TV;>;
            0    3     1  nextIndex  I
    MethodParameters:
           Name  Flags
      nextIndex  

  private int compressLarge(int);
    descriptor: (I)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=9, args_size=2
        start local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
        start local 1 // int nextIndex
         0: .line 485
            iconst_4
            istore 2 /* size */
        start local 2 // int size
         1: .line 486
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.totalEntries:I
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.deletedEntries:I
            isub
            istore 3 /* remaining */
        start local 3 // int remaining
         2: .line 488
            goto 4
         3: .line 489
      StackMap locals: int int
      StackMap stack:
            iload 2 /* size */
            bipush 8
            iload 2 /* size */
            iconst_1
            ishr
            invokestatic java.lang.Math.max:(II)I
            iadd
            istore 2 /* size */
         4: .line 488
      StackMap locals:
      StackMap stack:
            iload 2 /* size */
            iload 3 /* remaining */
            if_icmple 3
         5: .line 492
            iload 2 /* size */
            iconst_1
            ishl
            anewarray java.lang.Object
            astore 4 /* newEntries */
        start local 4 // java.lang.Object[] newEntries
         6: .line 493
            iconst_0
            istore 5 /* z */
        start local 5 // int z
         7: .line 494
            iload 3 /* remaining */
            istore 6 /* newNextIndex */
        start local 6 // int newNextIndex
         8: .line 495
            iconst_0
            istore 7 /* i */
        start local 7 // int i
         9: goto 18
        10: .line 496
      StackMap locals: jdk.internal.vm.compiler.collections.EconomicMapImpl int int int java.lang.Object[] int int int
      StackMap stack:
            aload 0 /* this */
            iload 7 /* i */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.getKey:(I)Ljava/lang/Object;
            astore 8 /* key */
        start local 8 // java.lang.Object key
        11: .line 497
            iload 7 /* i */
            iload 1 /* nextIndex */
            if_icmpne 13
        12: .line 498
            iload 5 /* z */
            istore 6 /* newNextIndex */
        13: .line 500
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 8 /* key */
            ifnull 17
        14: .line 501
            aload 4 /* newEntries */
            iload 5 /* z */
            iconst_1
            ishl
            aload 8 /* key */
            aastore
        15: .line 502
            aload 4 /* newEntries */
            iload 5 /* z */
            iconst_1
            ishl
            iconst_1
            iadd
            aload 0 /* this */
            iload 7 /* i */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.getValue:(I)Ljava/lang/Object;
            aastore
        16: .line 503
            iinc 5 /* z */ 1
        end local 8 // java.lang.Object key
        17: .line 495
      StackMap locals:
      StackMap stack:
            iinc 7 /* i */ 1
      StackMap locals:
      StackMap stack:
        18: iload 7 /* i */
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.totalEntries:I
            if_icmplt 10
        end local 7 // int i
        19: .line 507
            aload 0 /* this */
            aload 4 /* newEntries */
            putfield jdk.internal.vm.compiler.collections.EconomicMapImpl.entries:[Ljava/lang/Object;
        20: .line 508
            aload 0 /* this */
            iload 5 /* z */
            putfield jdk.internal.vm.compiler.collections.EconomicMapImpl.totalEntries:I
        21: .line 509
            aload 0 /* this */
            iconst_0
            putfield jdk.internal.vm.compiler.collections.EconomicMapImpl.deletedEntries:I
        22: .line 510
            iload 5 /* z */
            aload 0 /* this */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.getHashThreshold:()I
            if_icmpgt 25
        23: .line 511
            aload 0 /* this */
            aconst_null
            putfield jdk.internal.vm.compiler.collections.EconomicMapImpl.hashArray:[B
        24: .line 512
            goto 26
        25: .line 513
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.createHash:()V
        26: .line 515
      StackMap locals:
      StackMap stack:
            iload 6 /* newNextIndex */
            ireturn
        end local 6 // int newNextIndex
        end local 5 // int z
        end local 4 // java.lang.Object[] newEntries
        end local 3 // int remaining
        end local 2 // int size
        end local 1 // int nextIndex
        end local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   27     0          this  Ljdk/internal/vm/compiler/collections/EconomicMapImpl<TK;TV;>;
            0   27     1     nextIndex  I
            1   27     2          size  I
            2   27     3     remaining  I
            6   27     4    newEntries  [Ljava/lang/Object;
            7   27     5             z  I
            8   27     6  newNextIndex  I
            9   19     7             i  I
           11   17     8           key  Ljava/lang/Object;
    MethodParameters:
           Name  Flags
      nextIndex  

  private int getHashTableSize();
    descriptor: ()I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
         0: .line 519
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.entries:[Ljava/lang/Object;
            arraylength
            sipush 512
            if_icmpge 2
         1: .line 520
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.hashArray:[B
            arraylength
            ireturn
         2: .line 521
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.entries:[Ljava/lang/Object;
            arraylength
            ldc 131072
            if_icmpge 4
         3: .line 522
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.hashArray:[B
            arraylength
            iconst_1
            ishr
            ireturn
         4: .line 524
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.hashArray:[B
            arraylength
            iconst_2
            ishr
            ireturn
        end local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Ljdk/internal/vm/compiler/collections/EconomicMapImpl<TK;TV;>;

  private void createHash();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=5, args_size=1
        start local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
         0: .line 529
            aload 0 /* this */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.size:()I
            istore 1 /* entryCount */
        start local 1 // int entryCount
         1: .line 532
            aload 0 /* this */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.getHashThreshold:()I
            istore 2 /* size */
        start local 2 // int size
         2: .line 533
            goto 4
         3: .line 534
      StackMap locals: int int
      StackMap stack:
            iload 2 /* size */
            iconst_1
            ishl
            istore 2 /* size */
         4: .line 533
      StackMap locals:
      StackMap stack:
            iload 2 /* size */
            iload 1 /* entryCount */
            if_icmple 3
         5: .line 538
            iload 2 /* size */
            iconst_1
            ishl
            istore 2 /* size */
         6: .line 540
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.entries:[Ljava/lang/Object;
            arraylength
            ldc 131072
            if_icmplt 9
         7: .line 542
            iload 2 /* size */
            iconst_2
            ishl
            istore 2 /* size */
         8: .line 543
            goto 13
      StackMap locals:
      StackMap stack:
         9: aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.entries:[Ljava/lang/Object;
            arraylength
            sipush 512
            if_icmplt 12
        10: .line 545
            iload 2 /* size */
            iconst_1
            ishl
            istore 2 /* size */
        11: .line 546
            goto 13
        12: .line 548
      StackMap locals:
      StackMap stack:
            iload 2 /* size */
            iconst_1
            ishl
            istore 2 /* size */
        13: .line 551
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* size */
            newarray 8
            putfield jdk.internal.vm.compiler.collections.EconomicMapImpl.hashArray:[B
        14: .line 552
            iconst_0
            istore 3 /* i */
        start local 3 // int i
        15: goto 20
        16: .line 553
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 3 /* i */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.getKey:(I)Ljava/lang/Object;
            astore 4 /* entryKey */
        start local 4 // java.lang.Object entryKey
        17: .line 554
            aload 4 /* entryKey */
            ifnull 19
        18: .line 555
            aload 0 /* this */
            aload 4 /* entryKey */
            iload 3 /* i */
            iconst_0
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.putHashEntry:(Ljava/lang/Object;IZ)V
        end local 4 // java.lang.Object entryKey
        19: .line 552
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        20: iload 3 /* i */
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.totalEntries:I
            if_icmplt 16
        end local 3 // int i
        21: .line 558
            return
        end local 2 // int size
        end local 1 // int entryCount
        end local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   22     0        this  Ljdk/internal/vm/compiler/collections/EconomicMapImpl<TK;TV;>;
            1   22     1  entryCount  I
            2   22     2        size  I
           15   21     3           i  I
           17   19     4    entryKey  Ljava/lang/Object;

  private void putHashEntry(java.lang.Object, int, boolean);
    descriptor: (Ljava/lang/Object;IZ)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=8, args_size=4
        start local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
        start local 1 // java.lang.Object key
        start local 2 // int entryIndex
        start local 3 // boolean rehashOnCollision
         0: .line 561
            aload 0 /* this */
            aload 1 /* key */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.getHashIndex:(Ljava/lang/Object;)I
            istore 4 /* hashIndex */
        start local 4 // int hashIndex
         1: .line 562
            aload 0 /* this */
            iload 4 /* hashIndex */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.getHashArray:(I)I
            iconst_1
            isub
            istore 5 /* oldIndex */
        start local 5 // int oldIndex
         2: .line 563
            iload 5 /* oldIndex */
            iconst_m1
            if_icmpeq 5
            iload 3 /* rehashOnCollision */
            ifeq 5
         3: .line 564
            aload 0 /* this */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.createHash:()V
         4: .line 565
            return
         5: .line 567
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            iload 4 /* hashIndex */
            iload 2 /* entryIndex */
            iconst_1
            iadd
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.setHashArray:(II)V
         6: .line 568
            aload 0 /* this */
            iload 2 /* entryIndex */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.getRawValue:(I)Ljava/lang/Object;
            astore 6 /* value */
        start local 6 // java.lang.Object value
         7: .line 569
            iload 5 /* oldIndex */
            iconst_m1
            if_icmpeq 15
         8: .line 570
            getstatic jdk.internal.vm.compiler.collections.EconomicMapImpl.$assertionsDisabled:Z
            ifne 9
            iload 2 /* entryIndex */
            iload 5 /* oldIndex */
            if_icmpne 9
            new java.lang.AssertionError
            dup
            ldc "this cannot happend and would create an endless collision link cycle"
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         9: .line 571
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 6 /* value */
            instanceof jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink
            ifeq 13
        10: .line 572
            aload 6 /* value */
            checkcast jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink
            astore 7 /* collisionLink */
        start local 7 // jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink collisionLink
        11: .line 573
            aload 0 /* this */
            iload 2 /* entryIndex */
            new jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink
            dup
            aload 7 /* collisionLink */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink.value:Ljava/lang/Object;
            iload 5 /* oldIndex */
            invokespecial jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink.<init>:(Ljava/lang/Object;I)V
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.setRawValue:(ILjava/lang/Object;)V
        end local 7 // jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink collisionLink
        12: .line 574
            goto 18
        13: .line 575
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* entryIndex */
            new jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink
            dup
            aload 0 /* this */
            iload 2 /* entryIndex */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.getRawValue:(I)Ljava/lang/Object;
            iload 5 /* oldIndex */
            invokespecial jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink.<init>:(Ljava/lang/Object;I)V
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.setRawValue:(ILjava/lang/Object;)V
        14: .line 577
            goto 18
        15: .line 578
      StackMap locals:
      StackMap stack:
            aload 6 /* value */
            instanceof jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink
            ifeq 18
        16: .line 579
            aload 6 /* value */
            checkcast jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink
            astore 7 /* collisionLink */
        start local 7 // jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink collisionLink
        17: .line 580
            aload 0 /* this */
            iload 2 /* entryIndex */
            aload 7 /* collisionLink */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink.value:Ljava/lang/Object;
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.setRawValue:(ILjava/lang/Object;)V
        end local 7 // jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink collisionLink
        18: .line 583
      StackMap locals:
      StackMap stack:
            return
        end local 6 // java.lang.Object value
        end local 5 // int oldIndex
        end local 4 // int hashIndex
        end local 3 // boolean rehashOnCollision
        end local 2 // int entryIndex
        end local 1 // java.lang.Object key
        end local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   19     0               this  Ljdk/internal/vm/compiler/collections/EconomicMapImpl<TK;TV;>;
            0   19     1                key  Ljava/lang/Object;
            0   19     2         entryIndex  I
            0   19     3  rehashOnCollision  Z
            1   19     4          hashIndex  I
            2   19     5           oldIndex  I
            7   19     6              value  Ljava/lang/Object;
           11   12     7      collisionLink  Ljdk/internal/vm/compiler/collections/EconomicMapImpl$CollisionLink;
           17   18     7      collisionLink  Ljdk/internal/vm/compiler/collections/EconomicMapImpl$CollisionLink;
    MethodParameters:
                   Name  Flags
      key                
      entryIndex         
      rehashOnCollision  

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
         0: .line 587
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.totalEntries:I
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.deletedEntries:I
            isub
            ireturn
        end local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/internal/vm/compiler/collections/EconomicMapImpl<TK;TV;>;

  public boolean containsKey();
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
        start local 1 // java.lang.Object key
         0: .line 592
            aload 0 /* this */
            aload 1 /* key */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.find:(Ljava/lang/Object;)I
            iconst_m1
            if_icmpeq 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // java.lang.Object key
        end local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljdk/internal/vm/compiler/collections/EconomicMapImpl<TK;TV;>;
            0    2     1   key  TK;
    Signature: (TK;)Z
    MethodParameters:
      Name  Flags
      key   

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
         0: .line 597
            aload 0 /* this */
            aconst_null
            putfield jdk.internal.vm.compiler.collections.EconomicMapImpl.entries:[Ljava/lang/Object;
         1: .line 598
            aload 0 /* this */
            aconst_null
            putfield jdk.internal.vm.compiler.collections.EconomicMapImpl.hashArray:[B
         2: .line 599
            aload 0 /* this */
            aload 0 /* this */
            iconst_0
            dup_x1
            putfield jdk.internal.vm.compiler.collections.EconomicMapImpl.deletedEntries:I
            putfield jdk.internal.vm.compiler.collections.EconomicMapImpl.totalEntries:I
         3: .line 600
            return
        end local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljdk/internal/vm/compiler/collections/EconomicMapImpl<TK;TV;>;

  private boolean hasHashArray();
    descriptor: ()Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
         0: .line 603
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.hashArray:[B
            ifnull 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljdk/internal/vm/compiler/collections/EconomicMapImpl<TK;TV;>;

  public V removeKey();
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
        start local 1 // java.lang.Object key
         0: .line 609
            aload 1 /* key */
            ifnonnull 2
         1: .line 610
            new java.lang.UnsupportedOperationException
            dup
            ldc "null not supported as key!"
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 613
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.hasHashArray:()Z
            ifeq 5
         3: .line 614
            aload 0 /* this */
            aload 1 /* key */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.findAndRemoveHash:(Ljava/lang/Object;)I
            istore 2 /* index */
        start local 2 // int index
         4: .line 615
            goto 6
        end local 2 // int index
         5: .line 616
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* key */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.findLinear:(Ljava/lang/Object;)I
            istore 2 /* index */
        start local 2 // int index
         6: .line 619
      StackMap locals: int
      StackMap stack:
            iload 2 /* index */
            iconst_m1
            if_icmpeq 10
         7: .line 620
            aload 0 /* this */
            iload 2 /* index */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.getValue:(I)Ljava/lang/Object;
            astore 3 /* value */
        start local 3 // java.lang.Object value
         8: .line 621
            aload 0 /* this */
            iload 2 /* index */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.remove:(I)I
            pop
         9: .line 622
            aload 3 /* value */
            areturn
        end local 3 // java.lang.Object value
        10: .line 624
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 2 // int index
        end local 1 // java.lang.Object key
        end local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   11     0   this  Ljdk/internal/vm/compiler/collections/EconomicMapImpl<TK;TV;>;
            0   11     1    key  TK;
            4    5     2  index  I
            6   11     2  index  I
            8   10     3  value  Ljava/lang/Object;
    Signature: (TK;)TV;
    MethodParameters:
      Name  Flags
      key   

  private int remove(int);
    descriptor: (I)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=5, args_size=2
        start local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
        start local 1 // int indexToRemove
         0: .line 632
            iload 1 /* indexToRemove */
            istore 2 /* index */
        start local 2 // int index
         1: .line 633
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.totalEntries:I
            iload 2 /* index */
            isub
            iconst_1
            isub
            istore 3 /* entriesAfterIndex */
        start local 3 // int entriesAfterIndex
         2: .line 634
            iload 2 /* index */
            iconst_1
            iadd
            istore 4 /* result */
        start local 4 // int result
         3: .line 637
            iload 3 /* entriesAfterIndex */
            bipush 8
            if_icmpgt 10
            aload 0 /* this */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.hasHashArray:()Z
            ifne 10
         4: .line 638
            goto 8
         5: .line 639
      StackMap locals: int int int
      StackMap stack:
            aload 0 /* this */
            iload 2 /* index */
            aload 0 /* this */
            iload 2 /* index */
            iconst_1
            iadd
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.getKey:(I)Ljava/lang/Object;
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.setKey:(ILjava/lang/Object;)V
         6: .line 640
            aload 0 /* this */
            iload 2 /* index */
            aload 0 /* this */
            iload 2 /* index */
            iconst_1
            iadd
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.getRawValue:(I)Ljava/lang/Object;
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.setRawValue:(ILjava/lang/Object;)V
         7: .line 641
            iinc 2 /* index */ 1
         8: .line 638
      StackMap locals:
      StackMap stack:
            iload 2 /* index */
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.totalEntries:I
            iconst_1
            isub
            if_icmplt 5
         9: .line 643
            iinc 4 /* result */ -1
        10: .line 646
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* index */
            aconst_null
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.setKey:(ILjava/lang/Object;)V
        11: .line 647
            aload 0 /* this */
            iload 2 /* index */
            aconst_null
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.setRawValue:(ILjava/lang/Object;)V
        12: .line 648
            iload 2 /* index */
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.totalEntries:I
            iconst_1
            isub
            if_icmpne 20
        13: .line 650
            aload 0 /* this */
            dup
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.totalEntries:I
            iconst_1
            isub
            putfield jdk.internal.vm.compiler.collections.EconomicMapImpl.totalEntries:I
        14: .line 651
            goto 18
        15: .line 652
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.totalEntries:I
            iconst_1
            isub
            putfield jdk.internal.vm.compiler.collections.EconomicMapImpl.totalEntries:I
        16: .line 653
            aload 0 /* this */
            dup
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.deletedEntries:I
            iconst_1
            isub
            putfield jdk.internal.vm.compiler.collections.EconomicMapImpl.deletedEntries:I
        17: .line 654
            iinc 2 /* index */ -1
        18: .line 651
      StackMap locals:
      StackMap stack:
            iload 2 /* index */
            ifle 22
            aload 0 /* this */
            iload 2 /* index */
            iconst_1
            isub
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.getKey:(I)Ljava/lang/Object;
            ifnull 15
        19: .line 656
            goto 22
        20: .line 657
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.deletedEntries:I
            iconst_1
            iadd
            putfield jdk.internal.vm.compiler.collections.EconomicMapImpl.deletedEntries:I
        21: .line 658
            aload 0 /* this */
            iload 4 /* result */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.maybeCompress:(I)I
            istore 4 /* result */
        22: .line 661
      StackMap locals:
      StackMap stack:
            iload 4 /* result */
            ireturn
        end local 4 // int result
        end local 3 // int entriesAfterIndex
        end local 2 // int index
        end local 1 // int indexToRemove
        end local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   23     0               this  Ljdk/internal/vm/compiler/collections/EconomicMapImpl<TK;TV;>;
            0   23     1      indexToRemove  I
            1   23     2              index  I
            2   23     3  entriesAfterIndex  I
            3   23     4             result  I
    MethodParameters:
               Name  Flags
      indexToRemove  

  public java.lang.Iterable<V> getValues();
    descriptor: ()Ljava/lang/Iterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
         0: .line 684
            new jdk.internal.vm.compiler.collections.EconomicMapImpl$1
            dup
            aload 0 /* this */
            invokespecial jdk.internal.vm.compiler.collections.EconomicMapImpl$1.<init>:(Ljdk/internal/vm/compiler/collections/EconomicMapImpl;)V
            areturn
        end local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/internal/vm/compiler/collections/EconomicMapImpl<TK;TV;>;
    Signature: ()Ljava/lang/Iterable<TV;>;

  public java.lang.Iterable<K> getKeys();
    descriptor: ()Ljava/lang/Iterable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
         0: .line 711
            aload 0 /* this */
            areturn
        end local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/internal/vm/compiler/collections/EconomicMapImpl<TK;TV;>;
    Signature: ()Ljava/lang/Iterable<TK;>;

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
         0: .line 716
            aload 0 /* this */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.size:()I
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljdk/internal/vm/compiler/collections/EconomicMapImpl<TK;TV;>;

  public jdk.internal.vm.compiler.collections.MapCursor<K, V> getEntries();
    descriptor: ()Ljdk/internal/vm/compiler/collections/MapCursor;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
         0: .line 721
            new jdk.internal.vm.compiler.collections.EconomicMapImpl$2
            dup
            aload 0 /* this */
            invokespecial jdk.internal.vm.compiler.collections.EconomicMapImpl$2.<init>:(Ljdk/internal/vm/compiler/collections/EconomicMapImpl;)V
            areturn
        end local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/internal/vm/compiler/collections/EconomicMapImpl<TK;TV;>;
    Signature: ()Ljdk/internal/vm/compiler/collections/MapCursor<TK;TV;>;

  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=5, args_size=2
        start local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
        start local 1 // java.util.function.BiFunction function
         0: .line 763
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         1: goto 7
         2: .line 764
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 2 /* i */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.getKey:(I)Ljava/lang/Object;
            astore 3 /* entryKey */
        start local 3 // java.lang.Object entryKey
         3: .line 765
            aload 3 /* entryKey */
            ifnull 6
         4: .line 766
            aload 1 /* function */
            aload 3 /* entryKey */
            aload 0 /* this */
            iload 2 /* i */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.getValue:(I)Ljava/lang/Object;
            invokeinterface java.util.function.BiFunction.apply:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            astore 4 /* newValue */
        start local 4 // java.lang.Object newValue
         5: .line 767
            aload 0 /* this */
            iload 2 /* i */
            aload 4 /* newValue */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.setValue:(ILjava/lang/Object;)V
        end local 4 // java.lang.Object newValue
        end local 3 // java.lang.Object entryKey
         6: .line 763
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 2 /* i */
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.totalEntries:I
            if_icmplt 2
        end local 2 // int i
         8: .line 770
            return
        end local 1 // java.util.function.BiFunction function
        end local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    9     0      this  Ljdk/internal/vm/compiler/collections/EconomicMapImpl<TK;TV;>;
            0    9     1  function  Ljava/util/function/BiFunction<-TK;-TV;+TV;>;
            1    8     2         i  I
            3    6     3  entryKey  Ljava/lang/Object;
            5    6     4  newValue  Ljava/lang/Object;
    Signature: (Ljava/util/function/BiFunction<-TK;-TV;+TV;>;)V
    MethodParameters:
          Name  Flags
      function  

  private java.lang.Object getKey(int);
    descriptor: (I)Ljava/lang/Object;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
        start local 1 // int index
         0: .line 773
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.entries:[Ljava/lang/Object;
            iload 1 /* index */
            iconst_1
            ishl
            aaload
            areturn
        end local 1 // int index
        end local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Ljdk/internal/vm/compiler/collections/EconomicMapImpl<TK;TV;>;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  private void setKey(int, java.lang.Object);
    descriptor: (ILjava/lang/Object;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
        start local 1 // int index
        start local 2 // java.lang.Object newValue
         0: .line 777
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.entries:[Ljava/lang/Object;
            iload 1 /* index */
            iconst_1
            ishl
            aload 2 /* newValue */
            aastore
         1: .line 778
            return
        end local 2 // java.lang.Object newValue
        end local 1 // int index
        end local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Ljdk/internal/vm/compiler/collections/EconomicMapImpl<TK;TV;>;
            0    2     1     index  I
            0    2     2  newValue  Ljava/lang/Object;
    MethodParameters:
          Name  Flags
      index     
      newValue  

  private void setValue(int, java.lang.Object);
    descriptor: (ILjava/lang/Object;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=5, args_size=3
        start local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
        start local 1 // int index
        start local 2 // java.lang.Object newValue
         0: .line 781
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.getRawValue:(I)Ljava/lang/Object;
            astore 3 /* oldValue */
        start local 3 // java.lang.Object oldValue
         1: .line 782
            aload 3 /* oldValue */
            instanceof jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink
            ifeq 5
         2: .line 783
            aload 3 /* oldValue */
            checkcast jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink
            astore 4 /* collisionLink */
        start local 4 // jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink collisionLink
         3: .line 784
            aload 0 /* this */
            iload 1 /* index */
            new jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink
            dup
            aload 2 /* newValue */
            aload 4 /* collisionLink */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink.next:I
            invokespecial jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink.<init>:(Ljava/lang/Object;I)V
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.setRawValue:(ILjava/lang/Object;)V
        end local 4 // jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink collisionLink
         4: .line 785
            goto 6
         5: .line 786
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 0 /* this */
            iload 1 /* index */
            aload 2 /* newValue */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.setRawValue:(ILjava/lang/Object;)V
         6: .line 788
      StackMap locals:
      StackMap stack:
            return
        end local 3 // java.lang.Object oldValue
        end local 2 // java.lang.Object newValue
        end local 1 // int index
        end local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    7     0           this  Ljdk/internal/vm/compiler/collections/EconomicMapImpl<TK;TV;>;
            0    7     1          index  I
            0    7     2       newValue  Ljava/lang/Object;
            1    7     3       oldValue  Ljava/lang/Object;
            3    4     4  collisionLink  Ljdk/internal/vm/compiler/collections/EconomicMapImpl$CollisionLink;
    MethodParameters:
          Name  Flags
      index     
      newValue  

  private void setRawValue(int, java.lang.Object);
    descriptor: (ILjava/lang/Object;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
        start local 1 // int index
        start local 2 // java.lang.Object newValue
         0: .line 791
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.entries:[Ljava/lang/Object;
            iload 1 /* index */
            iconst_1
            ishl
            iconst_1
            iadd
            aload 2 /* newValue */
            aastore
         1: .line 792
            return
        end local 2 // java.lang.Object newValue
        end local 1 // int index
        end local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Ljdk/internal/vm/compiler/collections/EconomicMapImpl<TK;TV;>;
            0    2     1     index  I
            0    2     2  newValue  Ljava/lang/Object;
    MethodParameters:
          Name  Flags
      index     
      newValue  

  private java.lang.Object getRawValue(int);
    descriptor: (I)Ljava/lang/Object;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
        start local 1 // int index
         0: .line 795
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.entries:[Ljava/lang/Object;
            iload 1 /* index */
            iconst_1
            ishl
            iconst_1
            iadd
            aaload
            areturn
        end local 1 // int index
        end local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Ljdk/internal/vm/compiler/collections/EconomicMapImpl<TK;TV;>;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  private java.lang.Object getValue(int);
    descriptor: (I)Ljava/lang/Object;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
        start local 1 // int index
         0: .line 799
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.getRawValue:(I)Ljava/lang/Object;
            astore 2 /* object */
        start local 2 // java.lang.Object object
         1: .line 800
            aload 2 /* object */
            instanceof jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink
            ifeq 3
         2: .line 801
            aload 2 /* object */
            checkcast jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink.value:Ljava/lang/Object;
            areturn
         3: .line 803
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 2 /* object */
            areturn
        end local 2 // java.lang.Object object
        end local 1 // int index
        end local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Ljdk/internal/vm/compiler/collections/EconomicMapImpl<TK;TV;>;
            0    4     1   index  I
            1    4     2  object  Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      index  

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
         0: .line 810
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 1 /* builder */
        start local 1 // java.lang.StringBuilder builder
         1: .line 811
            aload 1 /* builder */
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.isSet:Z
            ifeq 2
            ldc "set(size="
            goto 3
      StackMap locals: jdk.internal.vm.compiler.collections.EconomicMapImpl java.lang.StringBuilder
      StackMap stack: java.lang.StringBuilder
         2: ldc "map(size="
      StackMap locals: jdk.internal.vm.compiler.collections.EconomicMapImpl java.lang.StringBuilder
      StackMap stack: java.lang.StringBuilder java.lang.String
         3: invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.size:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ", {"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         4: .line 812
            ldc ""
            astore 2 /* sep */
        start local 2 // java.lang.String sep
         5: .line 813
            aload 0 /* this */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.getEntries:()Ljdk/internal/vm/compiler/collections/MapCursor;
            astore 3 /* cursor */
        start local 3 // jdk.internal.vm.compiler.collections.MapCursor cursor
         6: .line 814
            goto 13
         7: .line 815
      StackMap locals: java.lang.String jdk.internal.vm.compiler.collections.MapCursor
      StackMap stack:
            aload 1 /* builder */
            aload 2 /* sep */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         8: .line 816
            aload 0 /* this */
            getfield jdk.internal.vm.compiler.collections.EconomicMapImpl.isSet:Z
            ifeq 11
         9: .line 817
            aload 1 /* builder */
            aload 3 /* cursor */
            invokeinterface jdk.internal.vm.compiler.collections.MapCursor.getKey:()Ljava/lang/Object;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            pop
        10: .line 818
            goto 12
        11: .line 819
      StackMap locals:
      StackMap stack:
            aload 1 /* builder */
            ldc "("
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 3 /* cursor */
            invokeinterface jdk.internal.vm.compiler.collections.MapCursor.getKey:()Ljava/lang/Object;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc ","
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 3 /* cursor */
            invokeinterface jdk.internal.vm.compiler.collections.MapCursor.getValue:()Ljava/lang/Object;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc ")"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        12: .line 821
      StackMap locals:
      StackMap stack:
            ldc ","
            astore 2 /* sep */
        13: .line 814
      StackMap locals:
      StackMap stack:
            aload 3 /* cursor */
            invokeinterface jdk.internal.vm.compiler.collections.MapCursor.advance:()Z
            ifne 7
        14: .line 823
            aload 1 /* builder */
            ldc "})"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        15: .line 824
            aload 1 /* builder */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 3 // jdk.internal.vm.compiler.collections.MapCursor cursor
        end local 2 // java.lang.String sep
        end local 1 // java.lang.StringBuilder builder
        end local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   16     0     this  Ljdk/internal/vm/compiler/collections/EconomicMapImpl<TK;TV;>;
            1   16     1  builder  Ljava/lang/StringBuilder;
            5   16     2      sep  Ljava/lang/String;
            6   16     3   cursor  Ljdk/internal/vm/compiler/collections/MapCursor<TK;TV;>;

  public java.util.Iterator<K> iterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
         0: .line 829
            new jdk.internal.vm.compiler.collections.EconomicMapImpl$3
            dup
            aload 0 /* this */
            aload 0 /* this */
            invokespecial jdk.internal.vm.compiler.collections.EconomicMapImpl$3.<init>:(Ljdk/internal/vm/compiler/collections/EconomicMapImpl;Ljdk/internal/vm/compiler/collections/EconomicMapImpl;)V
            areturn
        end local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/internal/vm/compiler/collections/EconomicMapImpl<TK;TV;>;
    Signature: ()Ljava/util/Iterator<TK;>;

  public boolean contains();
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
        start local 1 // java.lang.Object element
         0: .line 844
            aload 0 /* this */
            aload 1 /* element */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.containsKey:(Ljava/lang/Object;)Z
            ireturn
        end local 1 // java.lang.Object element
        end local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Ljdk/internal/vm/compiler/collections/EconomicMapImpl<TK;TV;>;
            0    1     1  element  TK;
    Signature: (TK;)Z
    MethodParameters:
         Name  Flags
      element  

  public boolean add();
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
        start local 1 // java.lang.Object element
         0: .line 850
            aload 0 /* this */
            aload 1 /* element */
            aload 1 /* element */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            ifnonnull 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // java.lang.Object element
        end local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Ljdk/internal/vm/compiler/collections/EconomicMapImpl<TK;TV;>;
            0    2     1  element  TK;
    Signature: (TK;)Z
    MethodParameters:
         Name  Flags
      element  

  public void remove();
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
        start local 1 // java.lang.Object element
         0: .line 855
            aload 0 /* this */
            aload 1 /* element */
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.removeKey:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 856
            return
        end local 1 // java.lang.Object element
        end local 0 // jdk.internal.vm.compiler.collections.EconomicMapImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Ljdk/internal/vm/compiler/collections/EconomicMapImpl<TK;TV;>;
            0    2     1  element  TK;
    Signature: (TK;)V
    MethodParameters:
         Name  Flags
      element  

  public jdk.internal.vm.compiler.collections.UnmodifiableMapCursor getEntries();
    descriptor: ()Ljdk/internal/vm/compiler/collections/UnmodifiableMapCursor;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual jdk.internal.vm.compiler.collections.EconomicMapImpl.getEntries:()Ljdk/internal/vm/compiler/collections/MapCursor;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: <K:Ljava/lang/Object;V:Ljava/lang/Object;>Ljava/lang/Object;Ljdk/internal/vm/compiler/collections/EconomicMap<TK;TV;>;Ljdk/internal/vm/compiler/collections/EconomicSet<TK;>;
SourceFile: "EconomicMapImpl.java"
NestMembers:
  jdk.internal.vm.compiler.collections.EconomicMapImpl$1  jdk.internal.vm.compiler.collections.EconomicMapImpl$1$1  jdk.internal.vm.compiler.collections.EconomicMapImpl$2  jdk.internal.vm.compiler.collections.EconomicMapImpl$3  jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink  jdk.internal.vm.compiler.collections.EconomicMapImpl$SparseMapIterator
InnerClasses:
  jdk.internal.vm.compiler.collections.EconomicMapImpl$1
  jdk.internal.vm.compiler.collections.EconomicMapImpl$2
  jdk.internal.vm.compiler.collections.EconomicMapImpl$3
  private final CollisionLink = jdk.internal.vm.compiler.collections.EconomicMapImpl$CollisionLink of jdk.internal.vm.compiler.collections.EconomicMapImpl
  private abstract SparseMapIterator = jdk.internal.vm.compiler.collections.EconomicMapImpl$SparseMapIterator of jdk.internal.vm.compiler.collections.EconomicMapImpl