public class sun.misc.Cache extends java.util.Dictionary
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: sun.misc.Cache
  super_class: java.util.Dictionary
{
  private sun.misc.CacheEntry[] table;
    descriptor: [Lsun/misc/CacheEntry;
    flags: (0x0002) ACC_PRIVATE

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

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

  private float loadFactor;
    descriptor: F
    flags: (0x0002) ACC_PRIVATE

  private void init(int, float);
    descriptor: (IF)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // sun.misc.Cache this
        start local 1 // int initialCapacity
        start local 2 // float loadFactor
         0: .line 100
            iload 1 /* initialCapacity */
            ifle 1
            fload 2 /* loadFactor */
            f2d
            dconst_0
            dcmpg
            ifgt 2
         1: .line 101
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
         2: .line 103
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            fload 2 /* loadFactor */
            putfield sun.misc.Cache.loadFactor:F
         3: .line 104
            aload 0 /* this */
            iload 1 /* initialCapacity */
            anewarray sun.misc.CacheEntry
            putfield sun.misc.Cache.table:[Lsun/misc/CacheEntry;
         4: .line 105
            aload 0 /* this */
            iload 1 /* initialCapacity */
            i2f
            fload 2 /* loadFactor */
            fmul
            f2i
            putfield sun.misc.Cache.threshold:I
         5: .line 106
            return
        end local 2 // float loadFactor
        end local 1 // int initialCapacity
        end local 0 // sun.misc.Cache this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    6     0             this  Lsun/misc/Cache;
            0    6     1  initialCapacity  I
            0    6     2       loadFactor  F
    MethodParameters:
                 Name  Flags
      initialCapacity  
      loadFactor       

  public void <init>(int, float);
    descriptor: (IF)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // sun.misc.Cache this
        start local 1 // int initialCapacity
        start local 2 // float loadFactor
         0: .line 120
            aload 0 /* this */
            invokespecial java.util.Dictionary.<init>:()V
         1: .line 121
            aload 0 /* this */
            iload 1 /* initialCapacity */
            fload 2 /* loadFactor */
            invokevirtual sun.misc.Cache.init:(IF)V
         2: .line 122
            return
        end local 2 // float loadFactor
        end local 1 // int initialCapacity
        end local 0 // sun.misc.Cache this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    3     0             this  Lsun/misc/Cache;
            0    3     1  initialCapacity  I
            0    3     2       loadFactor  F
    MethodParameters:
                 Name  Flags
      initialCapacity  
      loadFactor       

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // sun.misc.Cache this
        start local 1 // int initialCapacity
         0: .line 129
            aload 0 /* this */
            invokespecial java.util.Dictionary.<init>:()V
         1: .line 130
            aload 0 /* this */
            iload 1 /* initialCapacity */
            ldc 0.75
            invokevirtual sun.misc.Cache.init:(IF)V
         2: .line 131
            return
        end local 1 // int initialCapacity
        end local 0 // sun.misc.Cache this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    3     0             this  Lsun/misc/Cache;
            0    3     1  initialCapacity  I
    MethodParameters:
                 Name  Flags
      initialCapacity  

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // sun.misc.Cache this
         0: .line 138
            aload 0 /* this */
            invokespecial java.util.Dictionary.<init>:()V
         1: .line 140
            aload 0 /* this */
            bipush 101
            ldc 0.75
            invokevirtual sun.misc.Cache.init:(IF)V
         2: .line 141
            goto 5
      StackMap locals: sun.misc.Cache
      StackMap stack: java.lang.IllegalArgumentException
         3: pop
         4: .line 143
            new java.lang.Error
            dup
            ldc "panic"
            invokespecial java.lang.Error.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 145
      StackMap locals:
      StackMap stack:
            return
        end local 0 // sun.misc.Cache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lsun/misc/Cache;
      Exception table:
        from    to  target  type
           1     2       3  Class java.lang.IllegalArgumentException

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.misc.Cache this
         0: .line 151
            aload 0 /* this */
            getfield sun.misc.Cache.count:I
            ireturn
        end local 0 // sun.misc.Cache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/misc/Cache;

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.misc.Cache this
         0: .line 158
            aload 0 /* this */
            getfield sun.misc.Cache.count:I
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // sun.misc.Cache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/misc/Cache;

  public synchronized java.util.Enumeration keys();
    descriptor: ()Ljava/util/Enumeration;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // sun.misc.Cache this
         0: .line 167
            new sun.misc.CacheEnumerator
            dup
            aload 0 /* this */
            getfield sun.misc.Cache.table:[Lsun/misc/CacheEntry;
            iconst_1
            invokespecial sun.misc.CacheEnumerator.<init>:([Lsun/misc/CacheEntry;Z)V
            areturn
        end local 0 // sun.misc.Cache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/misc/Cache;

  public synchronized java.util.Enumeration elements();
    descriptor: ()Ljava/util/Enumeration;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // sun.misc.Cache this
         0: .line 177
            new sun.misc.CacheEnumerator
            dup
            aload 0 /* this */
            getfield sun.misc.Cache.table:[Lsun/misc/CacheEntry;
            iconst_0
            invokespecial sun.misc.CacheEnumerator.<init>:([Lsun/misc/CacheEntry;Z)V
            areturn
        end local 0 // sun.misc.Cache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/misc/Cache;

  public synchronized java.lang.Object get(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // sun.misc.Cache this
        start local 1 // java.lang.Object key
         0: .line 188
            aload 0 /* this */
            getfield sun.misc.Cache.table:[Lsun/misc/CacheEntry;
            astore 2 /* tab */
        start local 2 // sun.misc.CacheEntry[] tab
         1: .line 189
            aload 1 /* key */
            invokevirtual java.lang.Object.hashCode:()I
            istore 3 /* hash */
        start local 3 // int hash
         2: .line 190
            iload 3 /* hash */
            ldc 2147483647
            iand
            aload 2 /* tab */
            arraylength
            irem
            istore 4 /* index */
        start local 4 // int index
         3: .line 191
            aload 2 /* tab */
            iload 4 /* index */
            aaload
            astore 5 /* e */
        start local 5 // sun.misc.CacheEntry e
         4: goto 8
         5: .line 192
      StackMap locals: sun.misc.Cache java.lang.Object sun.misc.CacheEntry[] int int sun.misc.CacheEntry
      StackMap stack:
            aload 5 /* e */
            getfield sun.misc.CacheEntry.hash:I
            iload 3 /* hash */
            if_icmpne 7
            aload 5 /* e */
            getfield sun.misc.CacheEntry.key:Ljava/lang/Object;
            aload 1 /* key */
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 7
         6: .line 193
            aload 5 /* e */
            invokevirtual sun.misc.CacheEntry.check:()Ljava/lang/Object;
            areturn
         7: .line 191
      StackMap locals:
      StackMap stack:
            aload 5 /* e */
            getfield sun.misc.CacheEntry.next:Lsun/misc/CacheEntry;
            astore 5 /* e */
      StackMap locals:
      StackMap stack:
         8: aload 5 /* e */
            ifnonnull 5
        end local 5 // sun.misc.CacheEntry e
         9: .line 196
            aconst_null
            areturn
        end local 4 // int index
        end local 3 // int hash
        end local 2 // sun.misc.CacheEntry[] tab
        end local 1 // java.lang.Object key
        end local 0 // sun.misc.Cache this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Lsun/misc/Cache;
            0   10     1    key  Ljava/lang/Object;
            1   10     2    tab  [Lsun/misc/CacheEntry;
            2   10     3   hash  I
            3   10     4  index  I
            4    9     5      e  Lsun/misc/CacheEntry;
    MethodParameters:
      Name  Flags
      key   

  protected void rehash();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=9, args_size=1
        start local 0 // sun.misc.Cache this
         0: .line 205
            aload 0 /* this */
            getfield sun.misc.Cache.table:[Lsun/misc/CacheEntry;
            arraylength
            istore 1 /* oldCapacity */
        start local 1 // int oldCapacity
         1: .line 206
            aload 0 /* this */
            getfield sun.misc.Cache.table:[Lsun/misc/CacheEntry;
            astore 2 /* oldTable */
        start local 2 // sun.misc.CacheEntry[] oldTable
         2: .line 208
            iload 1 /* oldCapacity */
            iconst_2
            imul
            iconst_1
            iadd
            istore 3 /* newCapacity */
        start local 3 // int newCapacity
         3: .line 209
            iload 3 /* newCapacity */
            anewarray sun.misc.CacheEntry
            astore 4 /* newTable */
        start local 4 // sun.misc.CacheEntry[] newTable
         4: .line 211
            aload 0 /* this */
            iload 3 /* newCapacity */
            i2f
            aload 0 /* this */
            getfield sun.misc.Cache.loadFactor:F
            fmul
            f2i
            putfield sun.misc.Cache.threshold:I
         5: .line 212
            aload 0 /* this */
            aload 4 /* newTable */
            putfield sun.misc.Cache.table:[Lsun/misc/CacheEntry;
         6: .line 217
            iload 1 /* oldCapacity */
            istore 5 /* i */
        start local 5 // int i
         7: goto 19
         8: .line 218
      StackMap locals: sun.misc.Cache int sun.misc.CacheEntry[] int sun.misc.CacheEntry[] int
      StackMap stack:
            aload 2 /* oldTable */
            iload 5 /* i */
            aaload
            astore 6 /* old */
        start local 6 // sun.misc.CacheEntry old
         9: goto 18
        10: .line 219
      StackMap locals: sun.misc.CacheEntry
      StackMap stack:
            aload 6 /* old */
            astore 7 /* e */
        start local 7 // sun.misc.CacheEntry e
        11: .line 220
            aload 6 /* old */
            getfield sun.misc.CacheEntry.next:Lsun/misc/CacheEntry;
            astore 6 /* old */
        12: .line 221
            aload 7 /* e */
            invokevirtual sun.misc.CacheEntry.check:()Ljava/lang/Object;
            ifnull 17
        13: .line 222
            aload 7 /* e */
            getfield sun.misc.CacheEntry.hash:I
            ldc 2147483647
            iand
            iload 3 /* newCapacity */
            irem
            istore 8 /* index */
        start local 8 // int index
        14: .line 223
            aload 7 /* e */
            aload 4 /* newTable */
            iload 8 /* index */
            aaload
            putfield sun.misc.CacheEntry.next:Lsun/misc/CacheEntry;
        15: .line 224
            aload 4 /* newTable */
            iload 8 /* index */
            aload 7 /* e */
            aastore
        end local 8 // int index
        16: .line 225
            goto 18
        17: .line 226
      StackMap locals: sun.misc.CacheEntry
      StackMap stack:
            aload 0 /* this */
            dup
            getfield sun.misc.Cache.count:I
            iconst_1
            isub
            putfield sun.misc.Cache.count:I
        end local 7 // sun.misc.CacheEntry e
        18: .line 218
      StackMap locals:
      StackMap stack:
            aload 6 /* old */
            ifnonnull 10
        end local 6 // sun.misc.CacheEntry old
        19: .line 217
      StackMap locals:
      StackMap stack:
            iload 5 /* i */
            iinc 5 /* i */ -1
            ifgt 8
        end local 5 // int i
        20: .line 229
            return
        end local 4 // sun.misc.CacheEntry[] newTable
        end local 3 // int newCapacity
        end local 2 // sun.misc.CacheEntry[] oldTable
        end local 1 // int oldCapacity
        end local 0 // sun.misc.Cache this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   21     0         this  Lsun/misc/Cache;
            1   21     1  oldCapacity  I
            2   21     2     oldTable  [Lsun/misc/CacheEntry;
            3   21     3  newCapacity  I
            4   21     4     newTable  [Lsun/misc/CacheEntry;
            7   20     5            i  I
            9   19     6          old  Lsun/misc/CacheEntry;
           11   18     7            e  Lsun/misc/CacheEntry;
           14   16     8        index  I

  public synchronized java.lang.Object put(java.lang.Object, java.lang.Object);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=9, args_size=3
        start local 0 // sun.misc.Cache this
        start local 1 // java.lang.Object key
        start local 2 // java.lang.Object value
         0: .line 244
            aload 2 /* value */
            ifnonnull 2
         1: .line 245
            new java.lang.NullPointerException
            dup
            invokespecial java.lang.NullPointerException.<init>:()V
            athrow
         2: .line 248
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.misc.Cache.table:[Lsun/misc/CacheEntry;
            astore 3 /* tab */
        start local 3 // sun.misc.CacheEntry[] tab
         3: .line 249
            aload 1 /* key */
            invokevirtual java.lang.Object.hashCode:()I
            istore 4 /* hash */
        start local 4 // int hash
         4: .line 250
            iload 4 /* hash */
            ldc 2147483647
            iand
            aload 3 /* tab */
            arraylength
            irem
            istore 5 /* index */
        start local 5 // int index
         5: .line 251
            aconst_null
            astore 6 /* ne */
        start local 6 // sun.misc.CacheEntry ne
         6: .line 252
            aload 3 /* tab */
            iload 5 /* index */
            aaload
            astore 7 /* e */
        start local 7 // sun.misc.CacheEntry e
         7: goto 15
         8: .line 253
      StackMap locals: sun.misc.Cache java.lang.Object java.lang.Object sun.misc.CacheEntry[] int int sun.misc.CacheEntry sun.misc.CacheEntry
      StackMap stack:
            aload 7 /* e */
            getfield sun.misc.CacheEntry.hash:I
            iload 4 /* hash */
            if_icmpne 12
            aload 7 /* e */
            getfield sun.misc.CacheEntry.key:Ljava/lang/Object;
            aload 1 /* key */
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 12
         9: .line 254
            aload 7 /* e */
            invokevirtual sun.misc.CacheEntry.check:()Ljava/lang/Object;
            astore 8 /* old */
        start local 8 // java.lang.Object old
        10: .line 255
            aload 7 /* e */
            aload 2 /* value */
            invokevirtual sun.misc.CacheEntry.setThing:(Ljava/lang/Object;)V
        11: .line 256
            aload 8 /* old */
            areturn
        end local 8 // java.lang.Object old
        12: .line 257
      StackMap locals:
      StackMap stack:
            aload 7 /* e */
            invokevirtual sun.misc.CacheEntry.check:()Ljava/lang/Object;
            ifnonnull 14
        13: .line 258
            aload 7 /* e */
            astore 6 /* ne */
        14: .line 252
      StackMap locals:
      StackMap stack:
            aload 7 /* e */
            getfield sun.misc.CacheEntry.next:Lsun/misc/CacheEntry;
            astore 7 /* e */
      StackMap locals:
      StackMap stack:
        15: aload 7 /* e */
            ifnonnull 8
        end local 7 // sun.misc.CacheEntry e
        16: .line 261
            aload 0 /* this */
            getfield sun.misc.Cache.count:I
            aload 0 /* this */
            getfield sun.misc.Cache.threshold:I
            if_icmplt 19
        17: .line 263
            aload 0 /* this */
            invokevirtual sun.misc.Cache.rehash:()V
        18: .line 264
            aload 0 /* this */
            aload 1 /* key */
            aload 2 /* value */
            invokevirtual sun.misc.Cache.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            areturn
        19: .line 267
      StackMap locals:
      StackMap stack:
            aload 6 /* ne */
            ifnonnull 24
        20: .line 268
            new sun.misc.CacheEntry
            dup
            invokespecial sun.misc.CacheEntry.<init>:()V
            astore 6 /* ne */
        21: .line 269
            aload 6 /* ne */
            aload 3 /* tab */
            iload 5 /* index */
            aaload
            putfield sun.misc.CacheEntry.next:Lsun/misc/CacheEntry;
        22: .line 270
            aload 3 /* tab */
            iload 5 /* index */
            aload 6 /* ne */
            aastore
        23: .line 271
            aload 0 /* this */
            dup
            getfield sun.misc.Cache.count:I
            iconst_1
            iadd
            putfield sun.misc.Cache.count:I
        24: .line 273
      StackMap locals:
      StackMap stack:
            aload 6 /* ne */
            iload 4 /* hash */
            putfield sun.misc.CacheEntry.hash:I
        25: .line 274
            aload 6 /* ne */
            aload 1 /* key */
            putfield sun.misc.CacheEntry.key:Ljava/lang/Object;
        26: .line 275
            aload 6 /* ne */
            aload 2 /* value */
            invokevirtual sun.misc.CacheEntry.setThing:(Ljava/lang/Object;)V
        27: .line 276
            aconst_null
            areturn
        end local 6 // sun.misc.CacheEntry ne
        end local 5 // int index
        end local 4 // int hash
        end local 3 // sun.misc.CacheEntry[] tab
        end local 2 // java.lang.Object value
        end local 1 // java.lang.Object key
        end local 0 // sun.misc.Cache this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   28     0   this  Lsun/misc/Cache;
            0   28     1    key  Ljava/lang/Object;
            0   28     2  value  Ljava/lang/Object;
            3   28     3    tab  [Lsun/misc/CacheEntry;
            4   28     4   hash  I
            5   28     5  index  I
            6   28     6     ne  Lsun/misc/CacheEntry;
            7   16     7      e  Lsun/misc/CacheEntry;
           10   12     8    old  Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      key    
      value  

  public synchronized java.lang.Object remove(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=7, args_size=2
        start local 0 // sun.misc.Cache this
        start local 1 // java.lang.Object key
         0: .line 286
            aload 0 /* this */
            getfield sun.misc.Cache.table:[Lsun/misc/CacheEntry;
            astore 2 /* tab */
        start local 2 // sun.misc.CacheEntry[] tab
         1: .line 287
            aload 1 /* key */
            invokevirtual java.lang.Object.hashCode:()I
            istore 3 /* hash */
        start local 3 // int hash
         2: .line 288
            iload 3 /* hash */
            ldc 2147483647
            iand
            aload 2 /* tab */
            arraylength
            irem
            istore 4 /* index */
        start local 4 // int index
         3: .line 289
            aload 2 /* tab */
            iload 4 /* index */
            aaload
            astore 5 /* e */
        start local 5 // sun.misc.CacheEntry e
         4: aconst_null
            astore 6 /* prev */
        start local 6 // sun.misc.CacheEntry prev
         5: goto 14
         6: .line 290
      StackMap locals: sun.misc.Cache java.lang.Object sun.misc.CacheEntry[] int int sun.misc.CacheEntry sun.misc.CacheEntry
      StackMap stack:
            aload 5 /* e */
            getfield sun.misc.CacheEntry.hash:I
            iload 3 /* hash */
            if_icmpne 13
            aload 5 /* e */
            getfield sun.misc.CacheEntry.key:Ljava/lang/Object;
            aload 1 /* key */
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 13
         7: .line 291
            aload 6 /* prev */
            ifnull 10
         8: .line 292
            aload 6 /* prev */
            aload 5 /* e */
            getfield sun.misc.CacheEntry.next:Lsun/misc/CacheEntry;
            putfield sun.misc.CacheEntry.next:Lsun/misc/CacheEntry;
         9: .line 293
            goto 11
        10: .line 294
      StackMap locals:
      StackMap stack:
            aload 2 /* tab */
            iload 4 /* index */
            aload 5 /* e */
            getfield sun.misc.CacheEntry.next:Lsun/misc/CacheEntry;
            aastore
        11: .line 296
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield sun.misc.Cache.count:I
            iconst_1
            isub
            putfield sun.misc.Cache.count:I
        12: .line 297
            aload 5 /* e */
            invokevirtual sun.misc.CacheEntry.check:()Ljava/lang/Object;
            areturn
        13: .line 289
      StackMap locals:
      StackMap stack:
            aload 5 /* e */
            astore 6 /* prev */
            aload 5 /* e */
            getfield sun.misc.CacheEntry.next:Lsun/misc/CacheEntry;
            astore 5 /* e */
      StackMap locals:
      StackMap stack:
        14: aload 5 /* e */
            ifnonnull 6
        end local 6 // sun.misc.CacheEntry prev
        end local 5 // sun.misc.CacheEntry e
        15: .line 300
            aconst_null
            areturn
        end local 4 // int index
        end local 3 // int hash
        end local 2 // sun.misc.CacheEntry[] tab
        end local 1 // java.lang.Object key
        end local 0 // sun.misc.Cache this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   16     0   this  Lsun/misc/Cache;
            0   16     1    key  Ljava/lang/Object;
            1   16     2    tab  [Lsun/misc/CacheEntry;
            2   16     3   hash  I
            3   16     4  index  I
            4   15     5      e  Lsun/misc/CacheEntry;
            5   15     6   prev  Lsun/misc/CacheEntry;
    MethodParameters:
      Name  Flags
      key   
}
SourceFile: "Cache.java"