public class org.eclipse.jdt.internal.compiler.codegen.LongCache
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.jdt.internal.compiler.codegen.LongCache
  super_class: java.lang.Object
{
  public long[] keyTable;
    descriptor: [J
    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.LongCache this
         0: .line 27
            aload 0 /* this */
            bipush 13
            invokespecial org.eclipse.jdt.internal.compiler.codegen.LongCache.<init>:(I)V
         1: .line 28
            return
        end local 0 // org.eclipse.jdt.internal.compiler.codegen.LongCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jdt/internal/compiler/codegen/LongCache;

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

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

  public boolean containsKey(long);
    descriptor: (J)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // org.eclipse.jdt.internal.compiler.codegen.LongCache this
        start local 1 // long key
         0: .line 57
            aload 0 /* this */
            lload 1 /* key */
            invokevirtual org.eclipse.jdt.internal.compiler.codegen.LongCache.hash:(J)I
            istore 3 /* index */
        start local 3 // int index
         1: aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.LongCache.keyTable:[J
            arraylength
            istore 4 /* length */
        start local 4 // int length
         2: .line 58
            goto 7
         3: .line 59
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.LongCache.keyTable:[J
            iload 3 /* index */
            laload
            lload 1 /* key */
            lcmp
            ifne 5
         4: .line 60
            iconst_1
            ireturn
         5: .line 61
      StackMap locals:
      StackMap stack:
            iinc 3 /* index */ 1
            iload 3 /* index */
            iload 4 /* length */
            if_icmpne 7
         6: .line 62
            iconst_0
            istore 3 /* index */
         7: .line 58
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.LongCache.keyTable:[J
            iload 3 /* index */
            laload
            lconst_0
            lcmp
            ifne 3
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.LongCache.keyTable:[J
            iload 3 /* index */
            laload
            lconst_0
            lcmp
            ifne 8
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.LongCache.valueTable:[I
            iload 3 /* index */
            iaload
            ifne 3
         8: .line 65
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 4 // int length
        end local 3 // int index
        end local 1 // long key
        end local 0 // org.eclipse.jdt.internal.compiler.codegen.LongCache this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0    this  Lorg/eclipse/jdt/internal/compiler/codegen/LongCache;
            0    9     1     key  J
            1    9     3   index  I
            2    9     4  length  I
    MethodParameters:
      Name  Flags
      key   

  public int hash(long);
    descriptor: (J)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.jdt.internal.compiler.codegen.LongCache this
        start local 1 // long key
         0: .line 73
            lload 1 /* key */
            l2i
            ldc 2147483647
            iand
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.LongCache.keyTable:[J
            arraylength
            irem
            ireturn
        end local 1 // long key
        end local 0 // org.eclipse.jdt.internal.compiler.codegen.LongCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jdt/internal/compiler/codegen/LongCache;
            0    1     1   key  J
    MethodParameters:
      Name  Flags
      key   

  public int put(long, int);
    descriptor: (JI)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=3
        start local 0 // org.eclipse.jdt.internal.compiler.codegen.LongCache this
        start local 1 // long key
        start local 3 // int value
         0: .line 84
            aload 0 /* this */
            lload 1 /* key */
            invokevirtual org.eclipse.jdt.internal.compiler.codegen.LongCache.hash:(J)I
            istore 4 /* index */
        start local 4 // int index
         1: aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.LongCache.keyTable:[J
            arraylength
            istore 5 /* length */
        start local 5 // int length
         2: .line 85
            goto 7
         3: .line 86
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.LongCache.keyTable:[J
            iload 4 /* index */
            laload
            lload 1 /* key */
            lcmp
            ifne 5
         4: .line 87
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.LongCache.valueTable:[I
            iload 4 /* index */
            iload 3 /* value */
            dup_x2
            iastore
            ireturn
         5: .line 88
      StackMap locals:
      StackMap stack:
            iinc 4 /* index */ 1
            iload 4 /* index */
            iload 5 /* length */
            if_icmpne 7
         6: .line 89
            iconst_0
            istore 4 /* index */
         7: .line 85
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.LongCache.keyTable:[J
            iload 4 /* index */
            laload
            lconst_0
            lcmp
            ifne 3
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.LongCache.keyTable:[J
            iload 4 /* index */
            laload
            lconst_0
            lcmp
            ifne 8
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.LongCache.valueTable:[I
            iload 4 /* index */
            iaload
            ifne 3
         8: .line 92
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.LongCache.keyTable:[J
            iload 4 /* index */
            lload 1 /* key */
            lastore
         9: .line 93
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.LongCache.valueTable:[I
            iload 4 /* index */
            iload 3 /* value */
            iastore
        10: .line 96
            aload 0 /* this */
            dup
            getfield org.eclipse.jdt.internal.compiler.codegen.LongCache.elementSize:I
            iconst_1
            iadd
            dup_x1
            putfield org.eclipse.jdt.internal.compiler.codegen.LongCache.elementSize:I
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.LongCache.threshold:I
            if_icmple 12
        11: .line 97
            aload 0 /* this */
            invokevirtual org.eclipse.jdt.internal.compiler.codegen.LongCache.rehash:()V
        12: .line 99
      StackMap locals:
      StackMap stack:
            iload 3 /* value */
            ireturn
        end local 5 // int length
        end local 4 // int index
        end local 3 // int value
        end local 1 // long key
        end local 0 // org.eclipse.jdt.internal.compiler.codegen.LongCache this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   13     0    this  Lorg/eclipse/jdt/internal/compiler/codegen/LongCache;
            0   13     1     key  J
            0   13     3   value  I
            1   13     4   index  I
            2   13     5  length  I
    MethodParameters:
       Name  Flags
      key    
      value  

  public int putIfAbsent(long, int);
    descriptor: (JI)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=3
        start local 0 // org.eclipse.jdt.internal.compiler.codegen.LongCache this
        start local 1 // long key
        start local 3 // int value
         0: .line 110
            aload 0 /* this */
            lload 1 /* key */
            invokevirtual org.eclipse.jdt.internal.compiler.codegen.LongCache.hash:(J)I
            istore 4 /* index */
        start local 4 // int index
         1: aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.LongCache.keyTable:[J
            arraylength
            istore 5 /* length */
        start local 5 // int length
         2: .line 111
            goto 7
         3: .line 112
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.LongCache.keyTable:[J
            iload 4 /* index */
            laload
            lload 1 /* key */
            lcmp
            ifne 5
         4: .line 113
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.LongCache.valueTable:[I
            iload 4 /* index */
            iaload
            ireturn
         5: .line 114
      StackMap locals:
      StackMap stack:
            iinc 4 /* index */ 1
            iload 4 /* index */
            iload 5 /* length */
            if_icmpne 7
         6: .line 115
            iconst_0
            istore 4 /* index */
         7: .line 111
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.LongCache.keyTable:[J
            iload 4 /* index */
            laload
            lconst_0
            lcmp
            ifne 3
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.LongCache.keyTable:[J
            iload 4 /* index */
            laload
            lconst_0
            lcmp
            ifne 8
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.LongCache.valueTable:[I
            iload 4 /* index */
            iaload
            ifne 3
         8: .line 118
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.LongCache.keyTable:[J
            iload 4 /* index */
            lload 1 /* key */
            lastore
         9: .line 119
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.LongCache.valueTable:[I
            iload 4 /* index */
            iload 3 /* value */
            iastore
        10: .line 122
            aload 0 /* this */
            dup
            getfield org.eclipse.jdt.internal.compiler.codegen.LongCache.elementSize:I
            iconst_1
            iadd
            dup_x1
            putfield org.eclipse.jdt.internal.compiler.codegen.LongCache.elementSize:I
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.LongCache.threshold:I
            if_icmple 12
        11: .line 123
            aload 0 /* this */
            invokevirtual org.eclipse.jdt.internal.compiler.codegen.LongCache.rehash:()V
        12: .line 125
      StackMap locals:
      StackMap stack:
            iload 3 /* value */
            ineg
            ireturn
        end local 5 // int length
        end local 4 // int index
        end local 3 // int value
        end local 1 // long key
        end local 0 // org.eclipse.jdt.internal.compiler.codegen.LongCache this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   13     0    this  Lorg/eclipse/jdt/internal/compiler/codegen/LongCache;
            0   13     1     key  J
            0   13     3   value  I
            1   13     4   index  I
            2   13     5  length  I
    MethodParameters:
       Name  Flags
      key    
      value  

  private void rehash();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=6, args_size=1
        start local 0 // org.eclipse.jdt.internal.compiler.codegen.LongCache this
         0: .line 133
            new org.eclipse.jdt.internal.compiler.codegen.LongCache
            dup
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.LongCache.keyTable:[J
            arraylength
            iconst_2
            imul
            invokespecial org.eclipse.jdt.internal.compiler.codegen.LongCache.<init>:(I)V
            astore 1 /* newHashtable */
        start local 1 // org.eclipse.jdt.internal.compiler.codegen.LongCache newHashtable
         1: .line 134
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.LongCache.keyTable:[J
            arraylength
            istore 2 /* i */
        start local 2 // int i
         2: goto 7
         3: .line 135
      StackMap locals: org.eclipse.jdt.internal.compiler.codegen.LongCache int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.LongCache.keyTable:[J
            iload 2 /* i */
            laload
            lstore 3 /* key */
        start local 3 // long key
         4: .line 136
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.LongCache.valueTable:[I
            iload 2 /* i */
            iaload
            istore 5 /* value */
        start local 5 // int value
         5: .line 137
            lload 3 /* key */
            lconst_0
            lcmp
            ifne 6
            lload 3 /* key */
            lconst_0
            lcmp
            ifne 7
            iload 5 /* value */
            ifeq 7
         6: .line 138
      StackMap locals: long int
      StackMap stack:
            aload 1 /* newHashtable */
            lload 3 /* key */
            iload 5 /* value */
            invokevirtual org.eclipse.jdt.internal.compiler.codegen.LongCache.put:(JI)I
            pop
        end local 5 // int value
        end local 3 // long key
         7: .line 134
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ -1
            iload 2 /* i */
            ifge 3
        end local 2 // int i
         8: .line 141
            aload 0 /* this */
            aload 1 /* newHashtable */
            getfield org.eclipse.jdt.internal.compiler.codegen.LongCache.keyTable:[J
            putfield org.eclipse.jdt.internal.compiler.codegen.LongCache.keyTable:[J
         9: .line 142
            aload 0 /* this */
            aload 1 /* newHashtable */
            getfield org.eclipse.jdt.internal.compiler.codegen.LongCache.valueTable:[I
            putfield org.eclipse.jdt.internal.compiler.codegen.LongCache.valueTable:[I
        10: .line 143
            aload 0 /* this */
            aload 1 /* newHashtable */
            getfield org.eclipse.jdt.internal.compiler.codegen.LongCache.threshold:I
            putfield org.eclipse.jdt.internal.compiler.codegen.LongCache.threshold:I
        11: .line 144
            return
        end local 1 // org.eclipse.jdt.internal.compiler.codegen.LongCache newHashtable
        end local 0 // org.eclipse.jdt.internal.compiler.codegen.LongCache this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   12     0          this  Lorg/eclipse/jdt/internal/compiler/codegen/LongCache;
            1   12     1  newHashtable  Lorg/eclipse/jdt/internal/compiler/codegen/LongCache;
            2    8     2             i  I
            4    7     3           key  J
            5    7     5         value  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.LongCache this
         0: .line 151
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.LongCache.elementSize:I
            ireturn
        end local 0 // org.eclipse.jdt.internal.compiler.codegen.LongCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jdt/internal/compiler/codegen/LongCache;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=1
        start local 0 // org.eclipse.jdt.internal.compiler.codegen.LongCache this
         0: .line 160
            aload 0 /* this */
            invokevirtual org.eclipse.jdt.internal.compiler.codegen.LongCache.size:()I
            istore 1 /* max */
        start local 1 // int max
         1: .line 161
            new java.lang.StringBuffer
            dup
            invokespecial java.lang.StringBuffer.<init>:()V
            astore 2 /* buf */
        start local 2 // java.lang.StringBuffer buf
         2: .line 162
            aload 2 /* buf */
            ldc "{"
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            pop
         3: .line 163
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         4: goto 10
         5: .line 164
      StackMap locals: int java.lang.StringBuffer int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.LongCache.keyTable:[J
            iload 3 /* i */
            laload
            lconst_0
            lcmp
            ifne 6
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.LongCache.keyTable:[J
            iload 3 /* i */
            laload
            lconst_0
            lcmp
            ifne 7
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.LongCache.valueTable:[I
            iload 3 /* i */
            iaload
            ifeq 7
         6: .line 165
      StackMap locals:
      StackMap stack:
            aload 2 /* buf */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.codegen.LongCache.keyTable:[J
            iload 3 /* i */
            laload
            invokevirtual java.lang.StringBuffer.append:(J)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.LongCache.valueTable:[I
            iload 3 /* i */
            iaload
            invokevirtual java.lang.StringBuffer.append:(I)Ljava/lang/StringBuffer;
            pop
         7: .line 167
      StackMap locals:
      StackMap stack:
            iload 3 /* i */
            iload 1 /* max */
            if_icmpge 9
         8: .line 168
            aload 2 /* buf */
            ldc ", "
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            pop
         9: .line 163
      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 171
            aload 2 /* buf */
            ldc "}"
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            pop
        12: .line 172
            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.LongCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   13     0  this  Lorg/eclipse/jdt/internal/compiler/codegen/LongCache;
            1   13     1   max  I
            2   13     2   buf  Ljava/lang/StringBuffer;
            4   11     3     i  I
}
SourceFile: "LongCache.java"