public class org.eclipse.jdt.internal.compiler.codegen.ObjectCache
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.jdt.internal.compiler.codegen.ObjectCache
  super_class: java.lang.Object
{
  public java.lang.Object[] keyTable;
    descriptor: [Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC

  public int[] valueTable;
    descriptor: [I
    flags: (0x0001) ACC_PUBLIC

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

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

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.jdt.internal.compiler.codegen.ObjectCache this
         0: .line 26
            aload 0 /* this */
            bipush 13
            invokespecial org.eclipse.jdt.internal.compiler.codegen.ObjectCache.<init>:(I)V
         1: .line 27
            return
        end local 0 // org.eclipse.jdt.internal.compiler.codegen.ObjectCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jdt/internal/compiler/codegen/ObjectCache;

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.jdt.internal.compiler.codegen.ObjectCache this
        start local 1 // int initialCapacity
         0: .line 34
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 35
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.jdt.internal.compiler.codegen.ObjectCache.elementSize:I
         2: .line 36
            aload 0 /* this */
            iload 1 /* initialCapacity */
            i2f
            ldc 0.66
            fmul
            f2i
            putfield org.eclipse.jdt.internal.compiler.codegen.ObjectCache.threshold:I
         3: .line 37
            aload 0 /* this */
            iload 1 /* initialCapacity */
            anewarray java.lang.Object
            putfield org.eclipse.jdt.internal.compiler.codegen.ObjectCache.keyTable:[Ljava/lang/Object;
         4: .line 38
            aload 0 /* this */
            iload 1 /* initialCapacity */
            newarray 10
            putfield org.eclipse.jdt.internal.compiler.codegen.ObjectCache.valueTable:[I
         5: .line 39
            return
        end local 1 // int initialCapacity
        end local 0 // org.eclipse.jdt.internal.compiler.codegen.ObjectCache this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    6     0             this  Lorg/eclipse/jdt/internal/compiler/codegen/ObjectCache;
            0    6     1  initialCapacity  I
    MethodParameters:
                 Name  Flags
      initialCapacity  

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.eclipse.jdt.internal.compiler.codegen.ObjectCache this
         0: .line 44
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.ObjectCache.keyTable:[Ljava/lang/Object;
            arraylength
            istore 1 /* i */
        start local 1 // int i
         1: goto 4
         2: .line 45
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.ObjectCache.keyTable:[Ljava/lang/Object;
            iload 1 /* i */
            aconst_null
            aastore
         3: .line 46
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.ObjectCache.valueTable:[I
            iload 1 /* i */
            iconst_0
            iastore
         4: .line 44
      StackMap locals:
      StackMap stack:
            iinc 1 /* i */ -1
            iload 1 /* i */
            ifge 2
        end local 1 // int i
         5: .line 48
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.jdt.internal.compiler.codegen.ObjectCache.elementSize:I
         6: .line 49
            return
        end local 0 // org.eclipse.jdt.internal.compiler.codegen.ObjectCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/eclipse/jdt/internal/compiler/codegen/ObjectCache;
            1    5     1     i  I

  public boolean containsKey(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // org.eclipse.jdt.internal.compiler.codegen.ObjectCache this
        start local 1 // java.lang.Object key
         0: .line 56
            aload 0 /* this */
            aload 1 /* key */
            invokevirtual org.eclipse.jdt.internal.compiler.codegen.ObjectCache.hashCode:(Ljava/lang/Object;)I
            istore 2 /* index */
        start local 2 // int index
         1: aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.ObjectCache.keyTable:[Ljava/lang/Object;
            arraylength
            istore 3 /* length */
        start local 3 // int length
         2: .line 57
            goto 7
         3: .line 58
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.ObjectCache.keyTable:[Ljava/lang/Object;
            iload 2 /* index */
            aaload
            aload 1 /* key */
            if_acmpne 5
         4: .line 59
            iconst_1
            ireturn
         5: .line 60
      StackMap locals:
      StackMap stack:
            iinc 2 /* index */ 1
            iload 2 /* index */
            iload 3 /* length */
            if_icmpne 7
         6: .line 61
            iconst_0
            istore 2 /* index */
         7: .line 57
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.ObjectCache.keyTable:[Ljava/lang/Object;
            iload 2 /* index */
            aaload
            ifnonnull 3
         8: .line 64
            iconst_0
            ireturn
        end local 3 // int length
        end local 2 // int index
        end local 1 // java.lang.Object key
        end local 0 // org.eclipse.jdt.internal.compiler.codegen.ObjectCache this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0    this  Lorg/eclipse/jdt/internal/compiler/codegen/ObjectCache;
            0    9     1     key  Ljava/lang/Object;
            1    9     2   index  I
            2    9     3  length  I
    MethodParameters:
      Name  Flags
      key   

  public int get(java.lang.Object);
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // org.eclipse.jdt.internal.compiler.codegen.ObjectCache this
        start local 1 // java.lang.Object key
         0: .line 73
            aload 0 /* this */
            aload 1 /* key */
            invokevirtual org.eclipse.jdt.internal.compiler.codegen.ObjectCache.hashCode:(Ljava/lang/Object;)I
            istore 2 /* index */
        start local 2 // int index
         1: aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.ObjectCache.keyTable:[Ljava/lang/Object;
            arraylength
            istore 3 /* length */
        start local 3 // int length
         2: .line 74
            goto 7
         3: .line 75
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.ObjectCache.keyTable:[Ljava/lang/Object;
            iload 2 /* index */
            aaload
            aload 1 /* key */
            if_acmpne 5
         4: .line 76
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.ObjectCache.valueTable:[I
            iload 2 /* index */
            iaload
            ireturn
         5: .line 77
      StackMap locals:
      StackMap stack:
            iinc 2 /* index */ 1
            iload 2 /* index */
            iload 3 /* length */
            if_icmpne 7
         6: .line 78
            iconst_0
            istore 2 /* index */
         7: .line 74
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.ObjectCache.keyTable:[Ljava/lang/Object;
            iload 2 /* index */
            aaload
            ifnonnull 3
         8: .line 81
            iconst_m1
            ireturn
        end local 3 // int length
        end local 2 // int index
        end local 1 // java.lang.Object key
        end local 0 // org.eclipse.jdt.internal.compiler.codegen.ObjectCache this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0    this  Lorg/eclipse/jdt/internal/compiler/codegen/ObjectCache;
            0    9     1     key  Ljava/lang/Object;
            1    9     2   index  I
            2    9     3  length  I
    MethodParameters:
      Name  Flags
      key   

  public int hashCode(java.lang.Object);
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jdt.internal.compiler.codegen.ObjectCache this
        start local 1 // java.lang.Object key
         0: .line 90
            aload 1 /* key */
            invokevirtual java.lang.Object.hashCode:()I
            ldc 2147483647
            iand
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.ObjectCache.keyTable:[Ljava/lang/Object;
            arraylength
            irem
            ireturn
        end local 1 // java.lang.Object key
        end local 0 // org.eclipse.jdt.internal.compiler.codegen.ObjectCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jdt/internal/compiler/codegen/ObjectCache;
            0    1     1   key  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      key   

  public int put(java.lang.Object, int);
    descriptor: (Ljava/lang/Object;I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // org.eclipse.jdt.internal.compiler.codegen.ObjectCache this
        start local 1 // java.lang.Object key
        start local 2 // int value
         0: .line 102
            aload 0 /* this */
            aload 1 /* key */
            invokevirtual org.eclipse.jdt.internal.compiler.codegen.ObjectCache.hashCode:(Ljava/lang/Object;)I
            istore 3 /* index */
        start local 3 // int index
         1: aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.ObjectCache.keyTable:[Ljava/lang/Object;
            arraylength
            istore 4 /* length */
        start local 4 // int length
         2: .line 103
            goto 7
         3: .line 104
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.ObjectCache.keyTable:[Ljava/lang/Object;
            iload 3 /* index */
            aaload
            aload 1 /* key */
            if_acmpne 5
         4: .line 105
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.ObjectCache.valueTable:[I
            iload 3 /* index */
            iload 2 /* value */
            dup_x2
            iastore
            ireturn
         5: .line 106
      StackMap locals:
      StackMap stack:
            iinc 3 /* index */ 1
            iload 3 /* index */
            iload 4 /* length */
            if_icmpne 7
         6: .line 107
            iconst_0
            istore 3 /* index */
         7: .line 103
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.ObjectCache.keyTable:[Ljava/lang/Object;
            iload 3 /* index */
            aaload
            ifnonnull 3
         8: .line 110
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.ObjectCache.keyTable:[Ljava/lang/Object;
            iload 3 /* index */
            aload 1 /* key */
            aastore
         9: .line 111
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.ObjectCache.valueTable:[I
            iload 3 /* index */
            iload 2 /* value */
            iastore
        10: .line 114
            aload 0 /* this */
            dup
            getfield org.eclipse.jdt.internal.compiler.codegen.ObjectCache.elementSize:I
            iconst_1
            iadd
            dup_x1
            putfield org.eclipse.jdt.internal.compiler.codegen.ObjectCache.elementSize:I
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.ObjectCache.threshold:I
            if_icmple 12
        11: .line 115
            aload 0 /* this */
            invokevirtual org.eclipse.jdt.internal.compiler.codegen.ObjectCache.rehash:()V
        12: .line 116
      StackMap locals:
      StackMap stack:
            iload 2 /* value */
            ireturn
        end local 4 // int length
        end local 3 // int index
        end local 2 // int value
        end local 1 // java.lang.Object key
        end local 0 // org.eclipse.jdt.internal.compiler.codegen.ObjectCache this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   13     0    this  Lorg/eclipse/jdt/internal/compiler/codegen/ObjectCache;
            0   13     1     key  Ljava/lang/Object;
            0   13     2   value  I
            1   13     3   index  I
            2   13     4  length  I
    MethodParameters:
       Name  Flags
      key    
      value  

  private void rehash();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // org.eclipse.jdt.internal.compiler.codegen.ObjectCache this
         0: .line 124
            new org.eclipse.jdt.internal.compiler.codegen.ObjectCache
            dup
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.ObjectCache.keyTable:[Ljava/lang/Object;
            arraylength
            iconst_2
            imul
            invokespecial org.eclipse.jdt.internal.compiler.codegen.ObjectCache.<init>:(I)V
            astore 1 /* newHashtable */
        start local 1 // org.eclipse.jdt.internal.compiler.codegen.ObjectCache newHashtable
         1: .line 125
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.ObjectCache.keyTable:[Ljava/lang/Object;
            arraylength
            istore 2 /* i */
        start local 2 // int i
         2: goto 5
         3: .line 126
      StackMap locals: org.eclipse.jdt.internal.compiler.codegen.ObjectCache int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.ObjectCache.keyTable:[Ljava/lang/Object;
            iload 2 /* i */
            aaload
            ifnull 5
         4: .line 127
            aload 1 /* newHashtable */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.ObjectCache.keyTable:[Ljava/lang/Object;
            iload 2 /* i */
            aaload
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.ObjectCache.valueTable:[I
            iload 2 /* i */
            iaload
            invokevirtual org.eclipse.jdt.internal.compiler.codegen.ObjectCache.put:(Ljava/lang/Object;I)I
            pop
         5: .line 125
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ -1
            iload 2 /* i */
            ifge 3
        end local 2 // int i
         6: .line 129
            aload 0 /* this */
            aload 1 /* newHashtable */
            getfield org.eclipse.jdt.internal.compiler.codegen.ObjectCache.keyTable:[Ljava/lang/Object;
            putfield org.eclipse.jdt.internal.compiler.codegen.ObjectCache.keyTable:[Ljava/lang/Object;
         7: .line 130
            aload 0 /* this */
            aload 1 /* newHashtable */
            getfield org.eclipse.jdt.internal.compiler.codegen.ObjectCache.valueTable:[I
            putfield org.eclipse.jdt.internal.compiler.codegen.ObjectCache.valueTable:[I
         8: .line 131
            aload 0 /* this */
            aload 1 /* newHashtable */
            getfield org.eclipse.jdt.internal.compiler.codegen.ObjectCache.threshold:I
            putfield org.eclipse.jdt.internal.compiler.codegen.ObjectCache.threshold:I
         9: .line 132
            return
        end local 1 // org.eclipse.jdt.internal.compiler.codegen.ObjectCache newHashtable
        end local 0 // org.eclipse.jdt.internal.compiler.codegen.ObjectCache this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   10     0          this  Lorg/eclipse/jdt/internal/compiler/codegen/ObjectCache;
            1   10     1  newHashtable  Lorg/eclipse/jdt/internal/compiler/codegen/ObjectCache;
            2    6     2             i  I

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jdt.internal.compiler.codegen.ObjectCache this
         0: .line 139
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.ObjectCache.elementSize:I
            ireturn
        end local 0 // org.eclipse.jdt.internal.compiler.codegen.ObjectCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jdt/internal/compiler/codegen/ObjectCache;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=1
        start local 0 // org.eclipse.jdt.internal.compiler.codegen.ObjectCache this
         0: .line 148
            aload 0 /* this */
            invokevirtual org.eclipse.jdt.internal.compiler.codegen.ObjectCache.size:()I
            istore 1 /* max */
        start local 1 // int max
         1: .line 149
            new java.lang.StringBuffer
            dup
            invokespecial java.lang.StringBuffer.<init>:()V
            astore 2 /* buf */
        start local 2 // java.lang.StringBuffer buf
         2: .line 150
            aload 2 /* buf */
            ldc "{"
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            pop
         3: .line 151
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         4: goto 10
         5: .line 152
      StackMap locals: int java.lang.StringBuffer int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.ObjectCache.keyTable:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            ifnull 7
         6: .line 153
            aload 2 /* buf */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.ObjectCache.keyTable:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/Object;)Ljava/lang/StringBuffer;
            ldc "->"
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.ObjectCache.valueTable:[I
            iload 3 /* i */
            iaload
            invokevirtual java.lang.StringBuffer.append:(I)Ljava/lang/StringBuffer;
            pop
         7: .line 155
      StackMap locals:
      StackMap stack:
            iload 3 /* i */
            iload 1 /* max */
            if_icmpge 9
         8: .line 156
            aload 2 /* buf */
            ldc ", "
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            pop
         9: .line 151
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 3 /* i */
            iload 1 /* max */
            if_icmplt 5
        end local 3 // int i
        11: .line 159
            aload 2 /* buf */
            ldc "}"
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            pop
        12: .line 160
            aload 2 /* buf */
            invokevirtual java.lang.StringBuffer.toString:()Ljava/lang/String;
            areturn
        end local 2 // java.lang.StringBuffer buf
        end local 1 // int max
        end local 0 // org.eclipse.jdt.internal.compiler.codegen.ObjectCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   13     0  this  Lorg/eclipse/jdt/internal/compiler/codegen/ObjectCache;
            1   13     1   max  I
            2   13     2   buf  Ljava/lang/StringBuffer;
            4   11     3     i  I
}
SourceFile: "ObjectCache.java"