class org.jruby.javasupport.util.ObjectProxyCache$Segment<T, A> extends java.util.concurrent.locks.ReentrantLock
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.jruby.javasupport.util.ObjectProxyCache$Segment
  super_class: java.util.concurrent.locks.ReentrantLock
{
  final org.jruby.javasupport.util.ObjectProxyCache<T, A> cache;
    descriptor: Lorg/jruby/javasupport/util/ObjectProxyCache;
    flags: (0x0010) ACC_FINAL
    Signature: Lorg/jruby/javasupport/util/ObjectProxyCache<TT;TA;>;

  final java.lang.ref.ReferenceQueue<java.lang.Object> referenceQueue;
    descriptor: Ljava/lang/ref/ReferenceQueue;
    flags: (0x0010) ACC_FINAL
    Signature: Ljava/lang/ref/ReferenceQueue<Ljava/lang/Object;>;

  volatile org.jruby.javasupport.util.ObjectProxyCache$Entry<T>[] entryTable;
    descriptor: [Lorg/jruby/javasupport/util/ObjectProxyCache$Entry;
    flags: (0x0040) ACC_VOLATILE
    Signature: [Lorg/jruby/javasupport/util/ObjectProxyCache$Entry<TT;>;

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

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

  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 298
            ldc Lorg/jruby/javasupport/util/ObjectProxyCache;
            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 org.jruby.javasupport.util.ObjectProxyCache$Segment.$assertionsDisabled:Z
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void <init>(int, org.jruby.javasupport.util.ObjectProxyCache<T, A>);
    descriptor: (ILorg/jruby/javasupport/util/ObjectProxyCache;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.jruby.javasupport.util.ObjectProxyCache$Segment this
        start local 1 // int capacity
        start local 2 // org.jruby.javasupport.util.ObjectProxyCache cache
         0: .line 306
            aload 0 /* this */
            invokespecial java.util.concurrent.locks.ReentrantLock.<init>:()V
         1: .line 301
            aload 0 /* this */
            new java.lang.ref.ReferenceQueue
            dup
            invokespecial java.lang.ref.ReferenceQueue.<init>:()V
            putfield org.jruby.javasupport.util.ObjectProxyCache$Segment.referenceQueue:Ljava/lang/ref/ReferenceQueue;
         2: .line 307
            aload 0 /* this */
            iload 1 /* capacity */
            i2f
            ldc 0.75
            fmul
            f2i
            putfield org.jruby.javasupport.util.ObjectProxyCache$Segment.threshold:I
         3: .line 308
            aload 0 /* this */
            iload 1 /* capacity */
            invokestatic org.jruby.javasupport.util.ObjectProxyCache$Entry.newArray:(I)[Lorg/jruby/javasupport/util/ObjectProxyCache$Entry;
            putfield org.jruby.javasupport.util.ObjectProxyCache$Segment.entryTable:[Lorg/jruby/javasupport/util/ObjectProxyCache$Entry;
         4: .line 309
            aload 0 /* this */
            aload 2 /* cache */
            putfield org.jruby.javasupport.util.ObjectProxyCache$Segment.cache:Lorg/jruby/javasupport/util/ObjectProxyCache;
         5: .line 310
            return
        end local 2 // org.jruby.javasupport.util.ObjectProxyCache cache
        end local 1 // int capacity
        end local 0 // org.jruby.javasupport.util.ObjectProxyCache$Segment this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lorg/jruby/javasupport/util/ObjectProxyCache$Segment<TT;TA;>;
            0    6     1  capacity  I
            0    6     2     cache  Lorg/jruby/javasupport/util/ObjectProxyCache<TT;TA;>;
    Signature: (ILorg/jruby/javasupport/util/ObjectProxyCache<TT;TA;>;)V
    MethodParameters:
          Name  Flags
      capacity  
      cache     

  private void expunge();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=6, args_size=1
        start local 0 // org.jruby.javasupport.util.ObjectProxyCache$Segment this
         0: .line 314
            aload 0 /* this */
            getfield org.jruby.javasupport.util.ObjectProxyCache$Segment.entryTable:[Lorg/jruby/javasupport/util/ObjectProxyCache$Entry;
            astore 1 /* table */
        start local 1 // org.jruby.javasupport.util.ObjectProxyCache$Entry[] table
         1: .line 315
            aload 0 /* this */
            getfield org.jruby.javasupport.util.ObjectProxyCache$Segment.referenceQueue:Ljava/lang/ref/ReferenceQueue;
            astore 2 /* queue */
        start local 2 // java.lang.ref.ReferenceQueue queue
         2: .line 320
            goto 11
        start local 3 // org.jruby.javasupport.util.ObjectProxyCache$EntryRef ref
         3: .line 322
      StackMap locals: org.jruby.javasupport.util.ObjectProxyCache$Entry[] java.lang.ref.ReferenceQueue org.jruby.javasupport.util.ObjectProxyCache$EntryRef
      StackMap stack:
            aload 1 /* table */
            aload 3 /* ref */
            invokeinterface org.jruby.javasupport.util.ObjectProxyCache$EntryRef.hash:()I
            dup
            istore 4 /* hash */
        start local 4 // int hash
         4: aload 1 /* table */
            arraylength
            iconst_1
            isub
            iand
            aaload
            astore 5 /* e */
        start local 5 // org.jruby.javasupport.util.ObjectProxyCache$Entry e
         5: goto 10
         6: .line 323
      StackMap locals: int org.jruby.javasupport.util.ObjectProxyCache$Entry
      StackMap stack:
            iload 4 /* hash */
            aload 5 /* e */
            getfield org.jruby.javasupport.util.ObjectProxyCache$Entry.hash:I
            if_icmpne 9
            aload 3 /* ref */
            aload 5 /* e */
            getfield org.jruby.javasupport.util.ObjectProxyCache$Entry.objectRef:Lorg/jruby/javasupport/util/ObjectProxyCache$EntryRef;
            if_acmpeq 7
            aload 3 /* ref */
            aload 5 /* e */
            getfield org.jruby.javasupport.util.ObjectProxyCache$Entry.proxyRef:Lorg/jruby/javasupport/util/ObjectProxyCache$EntryRef;
            if_acmpne 9
         7: .line 324
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* table */
            iload 4 /* hash */
            aload 5 /* e */
            invokevirtual org.jruby.javasupport.util.ObjectProxyCache$Segment.remove:([Lorg/jruby/javasupport/util/ObjectProxyCache$Entry;ILorg/jruby/javasupport/util/ObjectProxyCache$Entry;)V
         8: .line 325
            goto 11
         9: .line 322
      StackMap locals:
      StackMap stack:
            aload 5 /* e */
            getfield org.jruby.javasupport.util.ObjectProxyCache$Entry.next:Lorg/jruby/javasupport/util/ObjectProxyCache$Entry;
            astore 5 /* e */
      StackMap locals:
      StackMap stack:
        10: aload 5 /* e */
            ifnonnull 6
        end local 5 // org.jruby.javasupport.util.ObjectProxyCache$Entry e
        end local 4 // int hash
        end local 3 // org.jruby.javasupport.util.ObjectProxyCache$EntryRef ref
        11: .line 320
      StackMap locals:
      StackMap stack:
            aload 2 /* queue */
            invokevirtual java.lang.ref.ReferenceQueue.poll:()Ljava/lang/ref/Reference;
            checkcast org.jruby.javasupport.util.ObjectProxyCache$EntryRef
            dup
            astore 3 /* ref */
        start local 3 // org.jruby.javasupport.util.ObjectProxyCache$EntryRef ref
        12: ifnonnull 3
        13: .line 329
            return
        end local 3 // org.jruby.javasupport.util.ObjectProxyCache$EntryRef ref
        end local 2 // java.lang.ref.ReferenceQueue queue
        end local 1 // org.jruby.javasupport.util.ObjectProxyCache$Entry[] table
        end local 0 // org.jruby.javasupport.util.ObjectProxyCache$Segment this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   14     0   this  Lorg/jruby/javasupport/util/ObjectProxyCache$Segment<TT;TA;>;
            1   14     1  table  [Lorg/jruby/javasupport/util/ObjectProxyCache$Entry;
            2   14     2  queue  Ljava/lang/ref/ReferenceQueue<Ljava/lang/Object;>;
            3   11     3    ref  Lorg/jruby/javasupport/util/ObjectProxyCache$EntryRef;
           12   14     3    ref  Lorg/jruby/javasupport/util/ObjectProxyCache$EntryRef;
            4   11     4   hash  I
            5   11     5      e  Lorg/jruby/javasupport/util/ObjectProxyCache$Entry<TT;>;

  private void remove(org.jruby.javasupport.util.ObjectProxyCache$Entry<T>[], int, org.jruby.javasupport.util.ObjectProxyCache$Entry<T>);
    descriptor: ([Lorg/jruby/javasupport/util/ObjectProxyCache$Entry;ILorg/jruby/javasupport/util/ObjectProxyCache$Entry;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=9, args_size=4
        start local 0 // org.jruby.javasupport.util.ObjectProxyCache$Segment this
        start local 1 // org.jruby.javasupport.util.ObjectProxyCache$Entry[] table
        start local 2 // int hash
        start local 3 // org.jruby.javasupport.util.ObjectProxyCache$Entry e
         0: .line 333
            iload 2 /* hash */
            aload 1 /* table */
            arraylength
            iconst_1
            isub
            iand
            istore 4 /* index */
        start local 4 // int index
         1: .line 334
            aload 1 /* table */
            iload 4 /* index */
            aaload
            astore 5 /* first */
        start local 5 // org.jruby.javasupport.util.ObjectProxyCache$Entry first
         2: .line 335
            aload 5 /* first */
            astore 6 /* n */
        start local 6 // org.jruby.javasupport.util.ObjectProxyCache$Entry n
         3: goto 16
         4: .line 336
      StackMap locals: int org.jruby.javasupport.util.ObjectProxyCache$Entry org.jruby.javasupport.util.ObjectProxyCache$Entry
      StackMap stack:
            aload 6 /* n */
            aload 3 /* e */
            if_acmpne 15
         5: .line 337
            aload 6 /* n */
            getfield org.jruby.javasupport.util.ObjectProxyCache$Entry.next:Lorg/jruby/javasupport/util/ObjectProxyCache$Entry;
            astore 7 /* newFirst */
        start local 7 // org.jruby.javasupport.util.ObjectProxyCache$Entry newFirst
         6: .line 338
            aload 5 /* first */
            astore 8 /* p */
        start local 8 // org.jruby.javasupport.util.ObjectProxyCache$Entry p
         7: goto 10
         8: .line 339
      StackMap locals: org.jruby.javasupport.util.ObjectProxyCache$Entry org.jruby.javasupport.util.ObjectProxyCache$Entry
      StackMap stack:
            new org.jruby.javasupport.util.ObjectProxyCache$Entry
            dup
            aload 8 /* p */
            getfield org.jruby.javasupport.util.ObjectProxyCache$Entry.objectRef:Lorg/jruby/javasupport/util/ObjectProxyCache$EntryRef;
            aload 8 /* p */
            getfield org.jruby.javasupport.util.ObjectProxyCache$Entry.hash:I
            aload 8 /* p */
            getfield org.jruby.javasupport.util.ObjectProxyCache$Entry.proxyRef:Lorg/jruby/javasupport/util/ObjectProxyCache$EntryRef;
            aload 7 /* newFirst */
            invokespecial org.jruby.javasupport.util.ObjectProxyCache$Entry.<init>:(Lorg/jruby/javasupport/util/ObjectProxyCache$EntryRef;ILorg/jruby/javasupport/util/ObjectProxyCache$EntryRef;Lorg/jruby/javasupport/util/ObjectProxyCache$Entry;)V
            astore 7 /* newFirst */
         9: .line 338
            aload 8 /* p */
            getfield org.jruby.javasupport.util.ObjectProxyCache$Entry.next:Lorg/jruby/javasupport/util/ObjectProxyCache$Entry;
            astore 8 /* p */
      StackMap locals:
      StackMap stack:
        10: aload 8 /* p */
            aload 6 /* n */
            if_acmpne 8
        end local 8 // org.jruby.javasupport.util.ObjectProxyCache$Entry p
        11: .line 341
            aload 1 /* table */
            iload 4 /* index */
            aload 7 /* newFirst */
            aastore
        12: .line 342
            aload 0 /* this */
            dup
            getfield org.jruby.javasupport.util.ObjectProxyCache$Segment.tableSize:I
            iconst_1
            isub
            putfield org.jruby.javasupport.util.ObjectProxyCache$Segment.tableSize:I
        13: .line 343
            aload 0 /* this */
            aload 1 /* table */
            putfield org.jruby.javasupport.util.ObjectProxyCache$Segment.entryTable:[Lorg/jruby/javasupport/util/ObjectProxyCache$Entry;
        14: .line 344
            return
        end local 7 // org.jruby.javasupport.util.ObjectProxyCache$Entry newFirst
        15: .line 335
      StackMap locals:
      StackMap stack:
            aload 6 /* n */
            getfield org.jruby.javasupport.util.ObjectProxyCache$Entry.next:Lorg/jruby/javasupport/util/ObjectProxyCache$Entry;
            astore 6 /* n */
      StackMap locals:
      StackMap stack:
        16: aload 6 /* n */
            ifnonnull 4
        end local 6 // org.jruby.javasupport.util.ObjectProxyCache$Entry n
        17: .line 347
            return
        end local 5 // org.jruby.javasupport.util.ObjectProxyCache$Entry first
        end local 4 // int index
        end local 3 // org.jruby.javasupport.util.ObjectProxyCache$Entry e
        end local 2 // int hash
        end local 1 // org.jruby.javasupport.util.ObjectProxyCache$Entry[] table
        end local 0 // org.jruby.javasupport.util.ObjectProxyCache$Segment this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   18     0      this  Lorg/jruby/javasupport/util/ObjectProxyCache$Segment<TT;TA;>;
            0   18     1     table  [Lorg/jruby/javasupport/util/ObjectProxyCache$Entry;
            0   18     2      hash  I
            0   18     3         e  Lorg/jruby/javasupport/util/ObjectProxyCache$Entry<TT;>;
            1   18     4     index  I
            2   18     5     first  Lorg/jruby/javasupport/util/ObjectProxyCache$Entry<TT;>;
            3   17     6         n  Lorg/jruby/javasupport/util/ObjectProxyCache$Entry<TT;>;
            6   15     7  newFirst  Lorg/jruby/javasupport/util/ObjectProxyCache$Entry<TT;>;
            7   11     8         p  Lorg/jruby/javasupport/util/ObjectProxyCache$Entry<TT;>;
    Signature: ([Lorg/jruby/javasupport/util/ObjectProxyCache$Entry<TT;>;ILorg/jruby/javasupport/util/ObjectProxyCache$Entry<TT;>;)V
    MethodParameters:
       Name  Flags
      table  
      hash   
      e      

  private int count();
    descriptor: ()I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=6, args_size=1
        start local 0 // org.jruby.javasupport.util.ObjectProxyCache$Segment this
         0: .line 352
            iconst_0
            istore 1 /* count */
        start local 1 // int count
         1: .line 353
            aload 0 /* this */
            getfield org.jruby.javasupport.util.ObjectProxyCache$Segment.entryTable:[Lorg/jruby/javasupport/util/ObjectProxyCache$Entry;
            dup
            astore 5
            arraylength
            istore 4
            iconst_0
            istore 3
            goto 8
      StackMap locals: org.jruby.javasupport.util.ObjectProxyCache$Segment int top int int org.jruby.javasupport.util.ObjectProxyCache$Entry[]
      StackMap stack:
         2: aload 5
            iload 3
            aaload
            astore 2 /* e */
        start local 2 // org.jruby.javasupport.util.ObjectProxyCache$Entry e
         3: .line 354
            goto 6
         4: .line 355
      StackMap locals: org.jruby.javasupport.util.ObjectProxyCache$Segment int org.jruby.javasupport.util.ObjectProxyCache$Entry int int org.jruby.javasupport.util.ObjectProxyCache$Entry[]
      StackMap stack:
            iinc 1 /* count */ 1
         5: .line 356
            aload 2 /* e */
            getfield org.jruby.javasupport.util.ObjectProxyCache$Entry.next:Lorg/jruby/javasupport/util/ObjectProxyCache$Entry;
            astore 2 /* e */
         6: .line 354
      StackMap locals:
      StackMap stack:
            aload 2 /* e */
            ifnonnull 4
        end local 2 // org.jruby.javasupport.util.ObjectProxyCache$Entry e
         7: .line 353
            iinc 3 1
      StackMap locals: org.jruby.javasupport.util.ObjectProxyCache$Segment int top int int org.jruby.javasupport.util.ObjectProxyCache$Entry[]
      StackMap stack:
         8: iload 3
            iload 4
            if_icmplt 2
         9: .line 359
            iload 1 /* count */
            ireturn
        end local 1 // int count
        end local 0 // org.jruby.javasupport.util.ObjectProxyCache$Segment this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Lorg/jruby/javasupport/util/ObjectProxyCache$Segment<TT;TA;>;
            1   10     1  count  I
            3    7     2      e  Lorg/jruby/javasupport/util/ObjectProxyCache$Entry<TT;>;

  private org.jruby.javasupport.util.ObjectProxyCache$Entry<T>[] rehash();
    descriptor: ()[Lorg/jruby/javasupport/util/ObjectProxyCache$Entry;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=7, locals=15, args_size=1
        start local 0 // org.jruby.javasupport.util.ObjectProxyCache$Segment this
         0: .line 364
            getstatic org.jruby.javasupport.util.ObjectProxyCache$Segment.$assertionsDisabled:Z
            ifne 1
            aload 0 /* this */
            getfield org.jruby.javasupport.util.ObjectProxyCache$Segment.tableSize:I
            aload 0 /* this */
            invokevirtual org.jruby.javasupport.util.ObjectProxyCache$Segment.count:()I
            if_icmpeq 1
            new java.lang.AssertionError
            dup
            new java.lang.StringBuilder
            dup
            ldc "tableSize "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield org.jruby.javasupport.util.ObjectProxyCache$Segment.tableSize:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " != count() "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            invokevirtual org.jruby.javasupport.util.ObjectProxyCache$Segment.count:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         1: .line 365
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.jruby.javasupport.util.ObjectProxyCache$Segment.entryTable:[Lorg/jruby/javasupport/util/ObjectProxyCache$Entry;
            astore 1 /* oldTable */
        start local 1 // org.jruby.javasupport.util.ObjectProxyCache$Entry[] oldTable
         2: .line 367
            aload 1 /* oldTable */
            arraylength
            dup
            istore 2 /* oldCapacity */
        start local 2 // int oldCapacity
         3: ldc 1073741824
            if_icmplt 5
         4: .line 368
            aload 1 /* oldTable */
            areturn
         5: .line 370
      StackMap locals: org.jruby.javasupport.util.ObjectProxyCache$Entry[] int
      StackMap stack:
            iload 2 /* oldCapacity */
            iconst_1
            ishl
            istore 3 /* newCapacity */
        start local 3 // int newCapacity
         6: .line 371
            iload 3 /* newCapacity */
            iconst_1
            isub
            istore 4 /* sizeMask */
        start local 4 // int sizeMask
         7: .line 372
            aload 0 /* this */
            iload 3 /* newCapacity */
            i2f
            ldc 0.75
            fmul
            f2i
            putfield org.jruby.javasupport.util.ObjectProxyCache$Segment.threshold:I
         8: .line 373
            iload 3 /* newCapacity */
            invokestatic org.jruby.javasupport.util.ObjectProxyCache$Entry.newArray:(I)[Lorg/jruby/javasupport/util/ObjectProxyCache$Entry;
            astore 5 /* newTable */
        start local 5 // org.jruby.javasupport.util.ObjectProxyCache$Entry[] newTable
         9: .line 375
            iload 2 /* oldCapacity */
            istore 7 /* i */
        start local 7 // int i
        10: goto 36
        11: .line 376
      StackMap locals: org.jruby.javasupport.util.ObjectProxyCache$Segment org.jruby.javasupport.util.ObjectProxyCache$Entry[] int int int org.jruby.javasupport.util.ObjectProxyCache$Entry[] top int
      StackMap stack:
            aload 1 /* oldTable */
            iload 7 /* i */
            aaload
            dup
            astore 6 /* e */
        start local 6 // org.jruby.javasupport.util.ObjectProxyCache$Entry e
        12: ifnull 36
        13: .line 377
            aload 6 /* e */
            getfield org.jruby.javasupport.util.ObjectProxyCache$Entry.hash:I
            iload 4 /* sizeMask */
            iand
            istore 8 /* idx */
        start local 8 // int idx
        14: .line 379
            aload 6 /* e */
            getfield org.jruby.javasupport.util.ObjectProxyCache$Entry.next:Lorg/jruby/javasupport/util/ObjectProxyCache$Entry;
            dup
            astore 9 /* next */
        start local 9 // org.jruby.javasupport.util.ObjectProxyCache$Entry next
        15: ifnonnull 18
        16: .line 381
            aload 5 /* newTable */
            iload 8 /* idx */
            aload 6 /* e */
            aastore
        17: .line 382
            goto 36
        18: .line 384
      StackMap locals: org.jruby.javasupport.util.ObjectProxyCache$Segment org.jruby.javasupport.util.ObjectProxyCache$Entry[] int int int org.jruby.javasupport.util.ObjectProxyCache$Entry[] org.jruby.javasupport.util.ObjectProxyCache$Entry int int org.jruby.javasupport.util.ObjectProxyCache$Entry
      StackMap stack:
            iload 8 /* idx */
            istore 10 /* lastIdx */
        start local 10 // int lastIdx
        19: .line 385
            aload 6 /* e */
            astore 11 /* lastRun */
        start local 11 // org.jruby.javasupport.util.ObjectProxyCache$Entry lastRun
        20: .line 386
            aload 9 /* next */
            astore 12 /* last */
        start local 12 // org.jruby.javasupport.util.ObjectProxyCache$Entry last
        21: goto 27
        22: .line 388
      StackMap locals: int org.jruby.javasupport.util.ObjectProxyCache$Entry org.jruby.javasupport.util.ObjectProxyCache$Entry
      StackMap stack:
            aload 12 /* last */
            getfield org.jruby.javasupport.util.ObjectProxyCache$Entry.hash:I
            iload 4 /* sizeMask */
            iand
            dup
            istore 13 /* k */
        start local 13 // int k
        23: iload 10 /* lastIdx */
            if_icmpeq 26
        24: .line 389
            iload 13 /* k */
            istore 10 /* lastIdx */
        25: .line 390
            aload 12 /* last */
            astore 11 /* lastRun */
        end local 13 // int k
        26: .line 386
      StackMap locals:
      StackMap stack:
            aload 12 /* last */
            getfield org.jruby.javasupport.util.ObjectProxyCache$Entry.next:Lorg/jruby/javasupport/util/ObjectProxyCache$Entry;
            astore 12 /* last */
      StackMap locals:
      StackMap stack:
        27: aload 12 /* last */
            ifnonnull 22
        end local 12 // org.jruby.javasupport.util.ObjectProxyCache$Entry last
        28: .line 393
            aload 5 /* newTable */
            iload 10 /* lastIdx */
            aload 11 /* lastRun */
            aastore
        29: .line 395
            aload 6 /* e */
            astore 12 /* p */
        start local 12 // org.jruby.javasupport.util.ObjectProxyCache$Entry p
        30: goto 35
        31: .line 396
      StackMap locals:
      StackMap stack:
            aload 12 /* p */
            getfield org.jruby.javasupport.util.ObjectProxyCache$Entry.hash:I
            iload 4 /* sizeMask */
            iand
            istore 13 /* k */
        start local 13 // int k
        32: .line 397
            new org.jruby.javasupport.util.ObjectProxyCache$Entry
            dup
            aload 12 /* p */
            getfield org.jruby.javasupport.util.ObjectProxyCache$Entry.objectRef:Lorg/jruby/javasupport/util/ObjectProxyCache$EntryRef;
            aload 12 /* p */
            getfield org.jruby.javasupport.util.ObjectProxyCache$Entry.hash:I
            aload 12 /* p */
            getfield org.jruby.javasupport.util.ObjectProxyCache$Entry.proxyRef:Lorg/jruby/javasupport/util/ObjectProxyCache$EntryRef;
            aload 5 /* newTable */
            iload 13 /* k */
            aaload
            invokespecial org.jruby.javasupport.util.ObjectProxyCache$Entry.<init>:(Lorg/jruby/javasupport/util/ObjectProxyCache$EntryRef;ILorg/jruby/javasupport/util/ObjectProxyCache$EntryRef;Lorg/jruby/javasupport/util/ObjectProxyCache$Entry;)V
            astore 14 /* m */
        start local 14 // org.jruby.javasupport.util.ObjectProxyCache$Entry m
        33: .line 398
            aload 5 /* newTable */
            iload 13 /* k */
            aload 14 /* m */
            aastore
        end local 14 // org.jruby.javasupport.util.ObjectProxyCache$Entry m
        end local 13 // int k
        34: .line 395
            aload 12 /* p */
            getfield org.jruby.javasupport.util.ObjectProxyCache$Entry.next:Lorg/jruby/javasupport/util/ObjectProxyCache$Entry;
            astore 12 /* p */
      StackMap locals:
      StackMap stack:
        35: aload 12 /* p */
            aload 11 /* lastRun */
            if_acmpne 31
        end local 12 // org.jruby.javasupport.util.ObjectProxyCache$Entry p
        end local 11 // org.jruby.javasupport.util.ObjectProxyCache$Entry lastRun
        end local 10 // int lastIdx
        end local 9 // org.jruby.javasupport.util.ObjectProxyCache$Entry next
        end local 8 // int idx
        end local 6 // org.jruby.javasupport.util.ObjectProxyCache$Entry e
        36: .line 375
      StackMap locals: org.jruby.javasupport.util.ObjectProxyCache$Segment org.jruby.javasupport.util.ObjectProxyCache$Entry[] int int int org.jruby.javasupport.util.ObjectProxyCache$Entry[] top int
      StackMap stack:
            iinc 7 /* i */ -1
            iload 7 /* i */
            ifge 11
        end local 7 // int i
        37: .line 403
            aload 0 /* this */
            aload 5 /* newTable */
            putfield org.jruby.javasupport.util.ObjectProxyCache$Segment.entryTable:[Lorg/jruby/javasupport/util/ObjectProxyCache$Entry;
        38: .line 404
            aload 5 /* newTable */
            areturn
        end local 5 // org.jruby.javasupport.util.ObjectProxyCache$Entry[] newTable
        end local 4 // int sizeMask
        end local 3 // int newCapacity
        end local 2 // int oldCapacity
        end local 1 // org.jruby.javasupport.util.ObjectProxyCache$Entry[] oldTable
        end local 0 // org.jruby.javasupport.util.ObjectProxyCache$Segment this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   39     0         this  Lorg/jruby/javasupport/util/ObjectProxyCache$Segment<TT;TA;>;
            2   39     1     oldTable  [Lorg/jruby/javasupport/util/ObjectProxyCache$Entry;
            3   39     2  oldCapacity  I
            6   39     3  newCapacity  I
            7   39     4     sizeMask  I
            9   39     5     newTable  [Lorg/jruby/javasupport/util/ObjectProxyCache$Entry;
           12   36     6            e  Lorg/jruby/javasupport/util/ObjectProxyCache$Entry<TT;>;
           10   37     7            i  I
           14   36     8          idx  I
           15   36     9         next  Lorg/jruby/javasupport/util/ObjectProxyCache$Entry<TT;>;
           19   36    10      lastIdx  I
           20   36    11      lastRun  Lorg/jruby/javasupport/util/ObjectProxyCache$Entry<TT;>;
           21   28    12         last  Lorg/jruby/javasupport/util/ObjectProxyCache$Entry<TT;>;
           23   26    13            k  I
           30   36    12            p  Lorg/jruby/javasupport/util/ObjectProxyCache$Entry<TT;>;
           32   34    13            k  I
           33   34    14            m  Lorg/jruby/javasupport/util/ObjectProxyCache$Entry<TT;>;
    Signature: ()[Lorg/jruby/javasupport/util/ObjectProxyCache$Entry<TT;>;

  void put(, int, );
    descriptor: (Ljava/lang/Object;ILjava/lang/Object;)V
    flags: (0x0000) 
    Code:
      stack=8, locals=9, args_size=4
        start local 0 // org.jruby.javasupport.util.ObjectProxyCache$Segment this
        start local 1 // java.lang.Object object
        start local 2 // int hash
        start local 3 // java.lang.Object proxy
         0: .line 408
            aload 0 /* this */
            invokevirtual org.jruby.javasupport.util.ObjectProxyCache$Segment.lock:()V
         1: .line 410
            aload 0 /* this */
            invokevirtual org.jruby.javasupport.util.ObjectProxyCache$Segment.expunge:()V
         2: .line 413
            aload 0 /* this */
            getfield org.jruby.javasupport.util.ObjectProxyCache$Segment.tableSize:I
            iconst_1
            iadd
            dup
            istore 5 /* potentialNewSize */
        start local 5 // int potentialNewSize
         3: aload 0 /* this */
            getfield org.jruby.javasupport.util.ObjectProxyCache$Segment.threshold:I
            if_icmple 6
         4: .line 414
            aload 0 /* this */
            invokevirtual org.jruby.javasupport.util.ObjectProxyCache$Segment.rehash:()[Lorg/jruby/javasupport/util/ObjectProxyCache$Entry;
            astore 4 /* table */
        start local 4 // org.jruby.javasupport.util.ObjectProxyCache$Entry[] table
         5: .line 415
            goto 7
        end local 4 // org.jruby.javasupport.util.ObjectProxyCache$Entry[] table
         6: .line 416
      StackMap locals: org.jruby.javasupport.util.ObjectProxyCache$Segment java.lang.Object int java.lang.Object top int
      StackMap stack:
            aload 0 /* this */
            getfield org.jruby.javasupport.util.ObjectProxyCache$Segment.entryTable:[Lorg/jruby/javasupport/util/ObjectProxyCache$Entry;
            astore 4 /* table */
        start local 4 // org.jruby.javasupport.util.ObjectProxyCache$Entry[] table
         7: .line 420
      StackMap locals: org.jruby.javasupport.util.ObjectProxyCache$Segment java.lang.Object int java.lang.Object org.jruby.javasupport.util.ObjectProxyCache$Entry[] int
      StackMap stack:
            aload 4 /* table */
            iload 2 /* hash */
            aload 4 /* table */
            arraylength
            iconst_1
            isub
            iand
            dup
            istore 6 /* index */
        start local 6 // int index
         8: aaload
            astore 7 /* e */
        start local 7 // org.jruby.javasupport.util.ObjectProxyCache$Entry e
         9: goto 18
        10: .line 421
      StackMap locals: int org.jruby.javasupport.util.ObjectProxyCache$Entry
      StackMap stack:
            iload 2 /* hash */
            aload 7 /* e */
            getfield org.jruby.javasupport.util.ObjectProxyCache$Entry.hash:I
            if_icmpne 17
            aload 1 /* object */
            aload 7 /* e */
            getfield org.jruby.javasupport.util.ObjectProxyCache$Entry.objectRef:Lorg/jruby/javasupport/util/ObjectProxyCache$EntryRef;
            invokeinterface org.jruby.javasupport.util.ObjectProxyCache$EntryRef.get:()Ljava/lang/Object;
            if_acmpne 17
        11: .line 422
            aload 3 /* proxy */
            aload 7 /* e */
            getfield org.jruby.javasupport.util.ObjectProxyCache$Entry.proxyRef:Lorg/jruby/javasupport/util/ObjectProxyCache$EntryRef;
            invokeinterface org.jruby.javasupport.util.ObjectProxyCache$EntryRef.get:()Ljava/lang/Object;
            if_acmpne 14
        12: .line 436
            aload 0 /* this */
            invokevirtual org.jruby.javasupport.util.ObjectProxyCache$Segment.unlock:()V
        13: .line 422
            return
        14: .line 426
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 4 /* table */
            iload 2 /* hash */
            aload 7 /* e */
            invokevirtual org.jruby.javasupport.util.ObjectProxyCache$Segment.remove:([Lorg/jruby/javasupport/util/ObjectProxyCache$Entry;ILorg/jruby/javasupport/util/ObjectProxyCache$Entry;)V
        15: .line 427
            iinc 5 /* potentialNewSize */ -1
        16: .line 428
            goto 19
        17: .line 420
      StackMap locals:
      StackMap stack:
            aload 7 /* e */
            getfield org.jruby.javasupport.util.ObjectProxyCache$Entry.next:Lorg/jruby/javasupport/util/ObjectProxyCache$Entry;
            astore 7 /* e */
      StackMap locals:
      StackMap stack:
        18: aload 7 /* e */
            ifnonnull 10
        19: .line 431
      StackMap locals:
      StackMap stack:
            new org.jruby.javasupport.util.ObjectProxyCache$Entry
            dup
            aload 1 /* object */
            iload 2 /* hash */
            aload 3 /* proxy */
            aload 0 /* this */
            getfield org.jruby.javasupport.util.ObjectProxyCache$Segment.cache:Lorg/jruby/javasupport/util/ObjectProxyCache;
            getfield org.jruby.javasupport.util.ObjectProxyCache.referenceType:Lorg/jruby/javasupport/util/ObjectProxyCache$ReferenceType;
            aload 4 /* table */
            iload 6 /* index */
            aaload
            aload 0 /* this */
            getfield org.jruby.javasupport.util.ObjectProxyCache$Segment.referenceQueue:Ljava/lang/ref/ReferenceQueue;
            invokespecial org.jruby.javasupport.util.ObjectProxyCache$Entry.<init>:(Ljava/lang/Object;ILjava/lang/Object;Lorg/jruby/javasupport/util/ObjectProxyCache$ReferenceType;Lorg/jruby/javasupport/util/ObjectProxyCache$Entry;Ljava/lang/ref/ReferenceQueue;)V
            astore 7 /* e */
        20: .line 432
            aload 4 /* table */
            iload 6 /* index */
            aload 7 /* e */
            aastore
        21: .line 433
            aload 0 /* this */
            iload 5 /* potentialNewSize */
            putfield org.jruby.javasupport.util.ObjectProxyCache$Segment.tableSize:I
        22: .line 434
            aload 0 /* this */
            aload 4 /* table */
            putfield org.jruby.javasupport.util.ObjectProxyCache$Segment.entryTable:[Lorg/jruby/javasupport/util/ObjectProxyCache$Entry;
        end local 7 // org.jruby.javasupport.util.ObjectProxyCache$Entry e
        end local 6 // int index
        end local 5 // int potentialNewSize
        end local 4 // org.jruby.javasupport.util.ObjectProxyCache$Entry[] table
        23: .line 435
            goto 27
      StackMap locals: org.jruby.javasupport.util.ObjectProxyCache$Segment java.lang.Object int java.lang.Object
      StackMap stack: java.lang.Throwable
        24: astore 8
        25: .line 436
            aload 0 /* this */
            invokevirtual org.jruby.javasupport.util.ObjectProxyCache$Segment.unlock:()V
        26: .line 437
            aload 8
            athrow
        27: .line 436
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.jruby.javasupport.util.ObjectProxyCache$Segment.unlock:()V
        28: .line 438
            return
        end local 3 // java.lang.Object proxy
        end local 2 // int hash
        end local 1 // java.lang.Object object
        end local 0 // org.jruby.javasupport.util.ObjectProxyCache$Segment this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   29     0              this  Lorg/jruby/javasupport/util/ObjectProxyCache$Segment<TT;TA;>;
            0   29     1            object  Ljava/lang/Object;
            0   29     2              hash  I
            0   29     3             proxy  TT;
            5    6     4             table  [Lorg/jruby/javasupport/util/ObjectProxyCache$Entry;
            7   23     4             table  [Lorg/jruby/javasupport/util/ObjectProxyCache$Entry;
            3   23     5  potentialNewSize  I
            8   23     6             index  I
            9   23     7                 e  Lorg/jruby/javasupport/util/ObjectProxyCache$Entry<TT;>;
      Exception table:
        from    to  target  type
           1    12      24  any
          14    24      24  any
    Signature: (Ljava/lang/Object;ITT;)V
    MethodParameters:
        Name  Flags
      object  
      hash    
      proxy   

  T getOrCreate(, int, );
    descriptor: (Ljava/lang/Object;ILjava/lang/Object;)Ljava/lang/Object;
    flags: (0x0000) 
    Code:
      stack=8, locals=11, args_size=4
        start local 0 // org.jruby.javasupport.util.ObjectProxyCache$Segment this
        start local 1 // java.lang.Object object
        start local 2 // int hash
        start local 3 // java.lang.Object allocator
         0: .line 443
            aload 0 /* this */
            getfield org.jruby.javasupport.util.ObjectProxyCache$Segment.entryTable:[Lorg/jruby/javasupport/util/ObjectProxyCache$Entry;
            dup
            astore 4 /* table */
        start local 4 // org.jruby.javasupport.util.ObjectProxyCache$Entry[] table
         1: iload 2 /* hash */
            aload 4 /* table */
            arraylength
            iconst_1
            isub
            iand
            aaload
            astore 6 /* e */
        start local 6 // org.jruby.javasupport.util.ObjectProxyCache$Entry e
         2: goto 7
         3: .line 444
      StackMap locals: org.jruby.javasupport.util.ObjectProxyCache$Segment java.lang.Object int java.lang.Object org.jruby.javasupport.util.ObjectProxyCache$Entry[] top org.jruby.javasupport.util.ObjectProxyCache$Entry
      StackMap stack:
            iload 2 /* hash */
            aload 6 /* e */
            getfield org.jruby.javasupport.util.ObjectProxyCache$Entry.hash:I
            if_icmpne 6
            aload 1 /* object */
            aload 6 /* e */
            getfield org.jruby.javasupport.util.ObjectProxyCache$Entry.objectRef:Lorg/jruby/javasupport/util/ObjectProxyCache$EntryRef;
            invokeinterface org.jruby.javasupport.util.ObjectProxyCache$EntryRef.get:()Ljava/lang/Object;
            if_acmpne 6
         4: .line 445
            aload 6 /* e */
            getfield org.jruby.javasupport.util.ObjectProxyCache$Entry.proxyRef:Lorg/jruby/javasupport/util/ObjectProxyCache$EntryRef;
            invokeinterface org.jruby.javasupport.util.ObjectProxyCache$EntryRef.get:()Ljava/lang/Object;
            dup
            astore 5 /* proxy */
        start local 5 // java.lang.Object proxy
         5: ifnull 8
            aload 5 /* proxy */
            areturn
        end local 5 // java.lang.Object proxy
         6: .line 443
      StackMap locals:
      StackMap stack:
            aload 6 /* e */
            getfield org.jruby.javasupport.util.ObjectProxyCache$Entry.next:Lorg/jruby/javasupport/util/ObjectProxyCache$Entry;
            astore 6 /* e */
      StackMap locals:
      StackMap stack:
         7: aload 6 /* e */
            ifnonnull 3
        end local 6 // org.jruby.javasupport.util.ObjectProxyCache$Entry e
         8: .line 449
      StackMap locals: org.jruby.javasupport.util.ObjectProxyCache$Segment java.lang.Object int java.lang.Object org.jruby.javasupport.util.ObjectProxyCache$Entry[]
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.jruby.javasupport.util.ObjectProxyCache$Segment.lock:()V
         9: .line 451
            aload 0 /* this */
            invokevirtual org.jruby.javasupport.util.ObjectProxyCache$Segment.expunge:()V
        10: .line 453
            aload 0 /* this */
            getfield org.jruby.javasupport.util.ObjectProxyCache$Segment.tableSize:I
            iconst_1
            iadd
            dup
            istore 6 /* potentialNewSize */
        start local 6 // int potentialNewSize
        11: aload 0 /* this */
            getfield org.jruby.javasupport.util.ObjectProxyCache$Segment.threshold:I
            if_icmple 14
        12: .line 454
            aload 0 /* this */
            invokevirtual org.jruby.javasupport.util.ObjectProxyCache$Segment.rehash:()[Lorg/jruby/javasupport/util/ObjectProxyCache$Entry;
            astore 4 /* table */
        13: .line 455
            goto 15
        14: .line 456
      StackMap locals: org.jruby.javasupport.util.ObjectProxyCache$Segment java.lang.Object int java.lang.Object org.jruby.javasupport.util.ObjectProxyCache$Entry[] top int
      StackMap stack:
            aload 0 /* this */
            getfield org.jruby.javasupport.util.ObjectProxyCache$Segment.entryTable:[Lorg/jruby/javasupport/util/ObjectProxyCache$Entry;
            astore 4 /* table */
        15: .line 460
      StackMap locals:
      StackMap stack:
            aload 4 /* table */
            iload 2 /* hash */
            aload 4 /* table */
            arraylength
            iconst_1
            isub
            iand
            dup
            istore 7 /* index */
        start local 7 // int index
        16: aaload
            astore 8 /* e */
        start local 8 // org.jruby.javasupport.util.ObjectProxyCache$Entry e
        17: goto 26
        18: .line 461
      StackMap locals: int org.jruby.javasupport.util.ObjectProxyCache$Entry
      StackMap stack:
            iload 2 /* hash */
            aload 8 /* e */
            getfield org.jruby.javasupport.util.ObjectProxyCache$Entry.hash:I
            if_icmpne 25
            aload 1 /* object */
            aload 8 /* e */
            getfield org.jruby.javasupport.util.ObjectProxyCache$Entry.objectRef:Lorg/jruby/javasupport/util/ObjectProxyCache$EntryRef;
            invokeinterface org.jruby.javasupport.util.ObjectProxyCache$EntryRef.get:()Ljava/lang/Object;
            if_acmpne 25
        19: .line 462
            aload 8 /* e */
            getfield org.jruby.javasupport.util.ObjectProxyCache$Entry.proxyRef:Lorg/jruby/javasupport/util/ObjectProxyCache$EntryRef;
            invokeinterface org.jruby.javasupport.util.ObjectProxyCache$EntryRef.get:()Ljava/lang/Object;
            dup
            astore 5 /* proxy */
        start local 5 // java.lang.Object proxy
        20: ifnull 22
            aload 5 /* proxy */
            astore 10
        21: .line 476
            aload 0 /* this */
            invokevirtual org.jruby.javasupport.util.ObjectProxyCache$Segment.unlock:()V
            aload 10
            areturn
        22: .line 464
      StackMap locals: org.jruby.javasupport.util.ObjectProxyCache$Segment java.lang.Object int java.lang.Object org.jruby.javasupport.util.ObjectProxyCache$Entry[] java.lang.Object int int org.jruby.javasupport.util.ObjectProxyCache$Entry
      StackMap stack:
            aload 0 /* this */
            aload 4 /* table */
            iload 2 /* hash */
            aload 8 /* e */
            invokevirtual org.jruby.javasupport.util.ObjectProxyCache$Segment.remove:([Lorg/jruby/javasupport/util/ObjectProxyCache$Entry;ILorg/jruby/javasupport/util/ObjectProxyCache$Entry;)V
        23: .line 465
            iinc 6 /* potentialNewSize */ -1
        24: .line 466
            goto 27
        end local 5 // java.lang.Object proxy
        25: .line 460
      StackMap locals: org.jruby.javasupport.util.ObjectProxyCache$Segment java.lang.Object int java.lang.Object org.jruby.javasupport.util.ObjectProxyCache$Entry[] top int int org.jruby.javasupport.util.ObjectProxyCache$Entry
      StackMap stack:
            aload 8 /* e */
            getfield org.jruby.javasupport.util.ObjectProxyCache$Entry.next:Lorg/jruby/javasupport/util/ObjectProxyCache$Entry;
            astore 8 /* e */
      StackMap locals:
      StackMap stack:
        26: aload 8 /* e */
            ifnonnull 18
        27: .line 469
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.jruby.javasupport.util.ObjectProxyCache$Segment.cache:Lorg/jruby/javasupport/util/ObjectProxyCache;
            aload 1 /* object */
            aload 3 /* allocator */
            invokevirtual org.jruby.javasupport.util.ObjectProxyCache.allocateProxy:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            astore 5 /* proxy */
        start local 5 // java.lang.Object proxy
        28: .line 470
            new org.jruby.javasupport.util.ObjectProxyCache$Entry
            dup
            aload 1 /* object */
            iload 2 /* hash */
            aload 5 /* proxy */
            aload 0 /* this */
            getfield org.jruby.javasupport.util.ObjectProxyCache$Segment.cache:Lorg/jruby/javasupport/util/ObjectProxyCache;
            getfield org.jruby.javasupport.util.ObjectProxyCache.referenceType:Lorg/jruby/javasupport/util/ObjectProxyCache$ReferenceType;
            aload 4 /* table */
            iload 7 /* index */
            aaload
            aload 0 /* this */
            getfield org.jruby.javasupport.util.ObjectProxyCache$Segment.referenceQueue:Ljava/lang/ref/ReferenceQueue;
            invokespecial org.jruby.javasupport.util.ObjectProxyCache$Entry.<init>:(Ljava/lang/Object;ILjava/lang/Object;Lorg/jruby/javasupport/util/ObjectProxyCache$ReferenceType;Lorg/jruby/javasupport/util/ObjectProxyCache$Entry;Ljava/lang/ref/ReferenceQueue;)V
            astore 8 /* e */
        29: .line 471
            aload 4 /* table */
            iload 7 /* index */
            aload 8 /* e */
            aastore
        30: .line 472
            aload 0 /* this */
            iload 6 /* potentialNewSize */
            putfield org.jruby.javasupport.util.ObjectProxyCache$Segment.tableSize:I
        31: .line 473
            aload 0 /* this */
            aload 4 /* table */
            putfield org.jruby.javasupport.util.ObjectProxyCache$Segment.entryTable:[Lorg/jruby/javasupport/util/ObjectProxyCache$Entry;
        32: .line 474
            aload 5 /* proxy */
            astore 10
        33: .line 476
            aload 0 /* this */
            invokevirtual org.jruby.javasupport.util.ObjectProxyCache$Segment.unlock:()V
        34: .line 474
            aload 10
            areturn
        end local 8 // org.jruby.javasupport.util.ObjectProxyCache$Entry e
        end local 7 // int index
        end local 6 // int potentialNewSize
        end local 5 // java.lang.Object proxy
        35: .line 475
      StackMap locals: org.jruby.javasupport.util.ObjectProxyCache$Segment java.lang.Object int java.lang.Object org.jruby.javasupport.util.ObjectProxyCache$Entry[]
      StackMap stack: java.lang.Throwable
            astore 9
        36: .line 476
            aload 0 /* this */
            invokevirtual org.jruby.javasupport.util.ObjectProxyCache$Segment.unlock:()V
        37: .line 477
            aload 9
            athrow
        end local 4 // org.jruby.javasupport.util.ObjectProxyCache$Entry[] table
        end local 3 // java.lang.Object allocator
        end local 2 // int hash
        end local 1 // java.lang.Object object
        end local 0 // org.jruby.javasupport.util.ObjectProxyCache$Segment this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   38     0              this  Lorg/jruby/javasupport/util/ObjectProxyCache$Segment<TT;TA;>;
            0   38     1            object  Ljava/lang/Object;
            0   38     2              hash  I
            0   38     3         allocator  TA;
            1   38     4             table  [Lorg/jruby/javasupport/util/ObjectProxyCache$Entry;
            5    6     5             proxy  TT;
           20   25     5             proxy  TT;
           28   35     5             proxy  TT;
            2    8     6                 e  Lorg/jruby/javasupport/util/ObjectProxyCache$Entry<TT;>;
           11   35     6  potentialNewSize  I
           16   35     7             index  I
           17   35     8                 e  Lorg/jruby/javasupport/util/ObjectProxyCache$Entry<TT;>;
      Exception table:
        from    to  target  type
           9    21      35  any
          22    33      35  any
    Signature: (Ljava/lang/Object;ITA;)TT;
    MethodParameters:
           Name  Flags
      object     
      hash       
      allocator  

  T get(, );
    descriptor: (Ljava/lang/Object;I)Ljava/lang/Object;
    flags: (0x0000) 
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // org.jruby.javasupport.util.ObjectProxyCache$Segment this
        start local 1 // java.lang.Object object
        start local 2 // int hash
         0: .line 482
            aload 0 /* this */
            getfield org.jruby.javasupport.util.ObjectProxyCache$Segment.entryTable:[Lorg/jruby/javasupport/util/ObjectProxyCache$Entry;
            dup
            astore 3 /* table */
        start local 3 // org.jruby.javasupport.util.ObjectProxyCache$Entry[] table
         1: iload 2 /* hash */
            aload 3 /* table */
            arraylength
            iconst_1
            isub
            iand
            aaload
            astore 4 /* e */
        start local 4 // org.jruby.javasupport.util.ObjectProxyCache$Entry e
         2: goto 6
         3: .line 483
      StackMap locals: org.jruby.javasupport.util.ObjectProxyCache$Entry[] org.jruby.javasupport.util.ObjectProxyCache$Entry
      StackMap stack:
            iload 2 /* hash */
            aload 4 /* e */
            getfield org.jruby.javasupport.util.ObjectProxyCache$Entry.hash:I
            if_icmpne 5
            aload 1 /* object */
            aload 4 /* e */
            getfield org.jruby.javasupport.util.ObjectProxyCache$Entry.objectRef:Lorg/jruby/javasupport/util/ObjectProxyCache$EntryRef;
            invokeinterface org.jruby.javasupport.util.ObjectProxyCache$EntryRef.get:()Ljava/lang/Object;
            if_acmpne 5
         4: .line 484
            aload 4 /* e */
            getfield org.jruby.javasupport.util.ObjectProxyCache$Entry.proxyRef:Lorg/jruby/javasupport/util/ObjectProxyCache$EntryRef;
            invokeinterface org.jruby.javasupport.util.ObjectProxyCache$EntryRef.get:()Ljava/lang/Object;
            areturn
         5: .line 482
      StackMap locals:
      StackMap stack:
            aload 4 /* e */
            getfield org.jruby.javasupport.util.ObjectProxyCache$Entry.next:Lorg/jruby/javasupport/util/ObjectProxyCache$Entry;
            astore 4 /* e */
      StackMap locals:
      StackMap stack:
         6: aload 4 /* e */
            ifnonnull 3
        end local 4 // org.jruby.javasupport.util.ObjectProxyCache$Entry e
         7: .line 487
            aconst_null
            areturn
        end local 3 // org.jruby.javasupport.util.ObjectProxyCache$Entry[] table
        end local 2 // int hash
        end local 1 // java.lang.Object object
        end local 0 // org.jruby.javasupport.util.ObjectProxyCache$Segment this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lorg/jruby/javasupport/util/ObjectProxyCache$Segment<TT;TA;>;
            0    8     1  object  Ljava/lang/Object;
            0    8     2    hash  I
            1    8     3   table  [Lorg/jruby/javasupport/util/ObjectProxyCache$Entry;
            2    7     4       e  Lorg/jruby/javasupport/util/ObjectProxyCache$Entry<TT;>;
    Signature: (Ljava/lang/Object;I)TT;
    MethodParameters:
        Name  Flags
      object  
      hash    

  static final <T, A> org.jruby.javasupport.util.ObjectProxyCache$Segment<T, A>[] newArray(int);
    descriptor: (I)[Lorg/jruby/javasupport/util/ObjectProxyCache$Segment;
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // int size
         0: .line 492
            iload 0 /* size */
            anewarray org.jruby.javasupport.util.ObjectProxyCache$Segment
            areturn
        end local 0 // int size
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  size  I
    Signature: <T:Ljava/lang/Object;A:Ljava/lang/Object;>(I)[Lorg/jruby/javasupport/util/ObjectProxyCache$Segment<TT;TA;>;
    MethodParameters:
      Name  Flags
      size  
}
Signature: <T:Ljava/lang/Object;A:Ljava/lang/Object;>Ljava/util/concurrent/locks/ReentrantLock;
SourceFile: "ObjectProxyCache.java"
NestHost: org.jruby.javasupport.util.ObjectProxyCache
InnerClasses:
  Entry = org.jruby.javasupport.util.ObjectProxyCache$Entry of org.jruby.javasupport.util.ObjectProxyCache
  private abstract EntryRef = org.jruby.javasupport.util.ObjectProxyCache$EntryRef of org.jruby.javasupport.util.ObjectProxyCache
  public final ReferenceType = org.jruby.javasupport.util.ObjectProxyCache$ReferenceType of org.jruby.javasupport.util.ObjectProxyCache
  Segment = org.jruby.javasupport.util.ObjectProxyCache$Segment of org.jruby.javasupport.util.ObjectProxyCache