public class org.apache.lucene.search.LRUQueryCache implements org.apache.lucene.search.QueryCache, org.apache.lucene.util.Accountable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.lucene.search.LRUQueryCache
  super_class: java.lang.Object
{
  private final int maxSize;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final long maxRamBytesUsed;
    descriptor: J
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.util.function.Predicate<org.apache.lucene.index.LeafReaderContext> leavesToCache;
    descriptor: Ljava/util/function/Predicate;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/function/Predicate<Lorg/apache/lucene/index/LeafReaderContext;>;

  private final java.util.Map<org.apache.lucene.search.Query, org.apache.lucene.search.Query> uniqueQueries;
    descriptor: Ljava/util/Map;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/Map<Lorg/apache/lucene/search/Query;Lorg/apache/lucene/search/Query;>;

  private final java.util.Set<org.apache.lucene.search.Query> mostRecentlyUsedQueries;
    descriptor: Ljava/util/Set;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/Set<Lorg/apache/lucene/search/Query;>;

  private final java.util.Map<org.apache.lucene.index.IndexReader$CacheKey, org.apache.lucene.search.LRUQueryCache$LeafCache> cache;
    descriptor: Ljava/util/Map;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/Map<Lorg/apache/lucene/index/IndexReader$CacheKey;Lorg/apache/lucene/search/LRUQueryCache$LeafCache;>;

  private final java.util.concurrent.locks.ReentrantLock lock;
    descriptor: Ljava/util/concurrent/locks/ReentrantLock;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private volatile long ramBytesUsed;
    descriptor: J
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE

  private volatile long hitCount;
    descriptor: J
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE

  private volatile long missCount;
    descriptor: J
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE

  private volatile long cacheCount;
    descriptor: J
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE

  private volatile long cacheSize;
    descriptor: J
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE

  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 91
            ldc Lorg/apache/lucene/search/LRUQueryCache;
            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.apache.lucene.search.LRUQueryCache.$assertionsDisabled:Z
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(int, long, java.util.function.Predicate<org.apache.lucene.index.LeafReaderContext>);
    descriptor: (IJLjava/util/function/Predicate;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=4
        start local 0 // org.apache.lucene.search.LRUQueryCache this
        start local 1 // int maxSize
        start local 2 // long maxRamBytesUsed
        start local 4 // java.util.function.Predicate leavesToCache
         0: .line 119
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 121
            aload 0 /* this */
            iload 1 /* maxSize */
            putfield org.apache.lucene.search.LRUQueryCache.maxSize:I
         2: .line 122
            aload 0 /* this */
            lload 2 /* maxRamBytesUsed */
            putfield org.apache.lucene.search.LRUQueryCache.maxRamBytesUsed:J
         3: .line 123
            aload 0 /* this */
            aload 4 /* leavesToCache */
            putfield org.apache.lucene.search.LRUQueryCache.leavesToCache:Ljava/util/function/Predicate;
         4: .line 124
            aload 0 /* this */
            new java.util.LinkedHashMap
            dup
            bipush 16
            ldc 0.75
            iconst_1
            invokespecial java.util.LinkedHashMap.<init>:(IFZ)V
            putfield org.apache.lucene.search.LRUQueryCache.uniqueQueries:Ljava/util/Map;
         5: .line 125
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.uniqueQueries:Ljava/util/Map;
            invokeinterface java.util.Map.keySet:()Ljava/util/Set;
            putfield org.apache.lucene.search.LRUQueryCache.mostRecentlyUsedQueries:Ljava/util/Set;
         6: .line 126
            aload 0 /* this */
            new java.util.IdentityHashMap
            dup
            invokespecial java.util.IdentityHashMap.<init>:()V
            putfield org.apache.lucene.search.LRUQueryCache.cache:Ljava/util/Map;
         7: .line 127
            aload 0 /* this */
            new java.util.concurrent.locks.ReentrantLock
            dup
            invokespecial java.util.concurrent.locks.ReentrantLock.<init>:()V
            putfield org.apache.lucene.search.LRUQueryCache.lock:Ljava/util/concurrent/locks/ReentrantLock;
         8: .line 128
            aload 0 /* this */
            lconst_0
            putfield org.apache.lucene.search.LRUQueryCache.ramBytesUsed:J
         9: .line 129
            return
        end local 4 // java.util.function.Predicate leavesToCache
        end local 2 // long maxRamBytesUsed
        end local 1 // int maxSize
        end local 0 // org.apache.lucene.search.LRUQueryCache this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   10     0             this  Lorg/apache/lucene/search/LRUQueryCache;
            0   10     1          maxSize  I
            0   10     2  maxRamBytesUsed  J
            0   10     4    leavesToCache  Ljava/util/function/Predicate<Lorg/apache/lucene/index/LeafReaderContext;>;
    Signature: (IJLjava/util/function/Predicate<Lorg/apache/lucene/index/LeafReaderContext;>;)V
    MethodParameters:
                 Name  Flags
      maxSize          
      maxRamBytesUsed  
      leavesToCache    

  public void <init>(int, long);
    descriptor: (IJ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=8, locals=4, args_size=3
        start local 0 // org.apache.lucene.search.LRUQueryCache this
        start local 1 // int maxSize
        start local 2 // long maxRamBytesUsed
         0: .line 145
            aload 0 /* this */
            iload 1 /* maxSize */
            lload 2 /* maxRamBytesUsed */
            new org.apache.lucene.search.LRUQueryCache$MinSegmentSizePredicate
            dup
            sipush 10000
            ldc 0.03
            invokespecial org.apache.lucene.search.LRUQueryCache$MinSegmentSizePredicate.<init>:(IF)V
            invokespecial org.apache.lucene.search.LRUQueryCache.<init>:(IJLjava/util/function/Predicate;)V
         1: .line 146
            return
        end local 2 // long maxRamBytesUsed
        end local 1 // int maxSize
        end local 0 // org.apache.lucene.search.LRUQueryCache this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    2     0             this  Lorg/apache/lucene/search/LRUQueryCache;
            0    2     1          maxSize  I
            0    2     2  maxRamBytesUsed  J
    MethodParameters:
                 Name  Flags
      maxSize          
      maxRamBytesUsed  

  protected void onHit(java.lang.Object, org.apache.lucene.search.Query);
    descriptor: (Ljava/lang/Object;Lorg/apache/lucene/search/Query;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.apache.lucene.search.LRUQueryCache this
        start local 1 // java.lang.Object readerCoreKey
        start local 2 // org.apache.lucene.search.Query query
         0: .line 178
            getstatic org.apache.lucene.search.LRUQueryCache.$assertionsDisabled:Z
            ifne 1
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.lock:Ljava/util/concurrent/locks/ReentrantLock;
            invokevirtual java.util.concurrent.locks.ReentrantLock.isHeldByCurrentThread:()Z
            ifne 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 179
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.apache.lucene.search.LRUQueryCache.hitCount:J
            lconst_1
            ladd
            putfield org.apache.lucene.search.LRUQueryCache.hitCount:J
         2: .line 180
            return
        end local 2 // org.apache.lucene.search.Query query
        end local 1 // java.lang.Object readerCoreKey
        end local 0 // org.apache.lucene.search.LRUQueryCache this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    3     0           this  Lorg/apache/lucene/search/LRUQueryCache;
            0    3     1  readerCoreKey  Ljava/lang/Object;
            0    3     2          query  Lorg/apache/lucene/search/Query;
    MethodParameters:
               Name  Flags
      readerCoreKey  
      query          

  protected void onMiss(java.lang.Object, org.apache.lucene.search.Query);
    descriptor: (Ljava/lang/Object;Lorg/apache/lucene/search/Query;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.apache.lucene.search.LRUQueryCache this
        start local 1 // java.lang.Object readerCoreKey
        start local 2 // org.apache.lucene.search.Query query
         0: .line 188
            getstatic org.apache.lucene.search.LRUQueryCache.$assertionsDisabled:Z
            ifne 1
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.lock:Ljava/util/concurrent/locks/ReentrantLock;
            invokevirtual java.util.concurrent.locks.ReentrantLock.isHeldByCurrentThread:()Z
            ifne 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 189
      StackMap locals:
      StackMap stack:
            getstatic org.apache.lucene.search.LRUQueryCache.$assertionsDisabled:Z
            ifne 2
            aload 2 /* query */
            ifnonnull 2
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         2: .line 190
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.apache.lucene.search.LRUQueryCache.missCount:J
            lconst_1
            ladd
            putfield org.apache.lucene.search.LRUQueryCache.missCount:J
         3: .line 191
            return
        end local 2 // org.apache.lucene.search.Query query
        end local 1 // java.lang.Object readerCoreKey
        end local 0 // org.apache.lucene.search.LRUQueryCache this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    4     0           this  Lorg/apache/lucene/search/LRUQueryCache;
            0    4     1  readerCoreKey  Ljava/lang/Object;
            0    4     2          query  Lorg/apache/lucene/search/Query;
    MethodParameters:
               Name  Flags
      readerCoreKey  
      query          

  protected void onQueryCache(org.apache.lucene.search.Query, long);
    descriptor: (Lorg/apache/lucene/search/Query;J)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // org.apache.lucene.search.LRUQueryCache this
        start local 1 // org.apache.lucene.search.Query query
        start local 2 // long ramBytesUsed
         0: .line 201
            getstatic org.apache.lucene.search.LRUQueryCache.$assertionsDisabled:Z
            ifne 1
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.lock:Ljava/util/concurrent/locks/ReentrantLock;
            invokevirtual java.util.concurrent.locks.ReentrantLock.isHeldByCurrentThread:()Z
            ifne 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 202
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.apache.lucene.search.LRUQueryCache.ramBytesUsed:J
            lload 2 /* ramBytesUsed */
            ladd
            putfield org.apache.lucene.search.LRUQueryCache.ramBytesUsed:J
         2: .line 203
            return
        end local 2 // long ramBytesUsed
        end local 1 // org.apache.lucene.search.Query query
        end local 0 // org.apache.lucene.search.LRUQueryCache this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    3     0          this  Lorg/apache/lucene/search/LRUQueryCache;
            0    3     1         query  Lorg/apache/lucene/search/Query;
            0    3     2  ramBytesUsed  J
    MethodParameters:
              Name  Flags
      query         
      ramBytesUsed  

  protected void onQueryEviction(org.apache.lucene.search.Query, long);
    descriptor: (Lorg/apache/lucene/search/Query;J)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // org.apache.lucene.search.LRUQueryCache this
        start local 1 // org.apache.lucene.search.Query query
        start local 2 // long ramBytesUsed
         0: .line 211
            getstatic org.apache.lucene.search.LRUQueryCache.$assertionsDisabled:Z
            ifne 1
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.lock:Ljava/util/concurrent/locks/ReentrantLock;
            invokevirtual java.util.concurrent.locks.ReentrantLock.isHeldByCurrentThread:()Z
            ifne 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 212
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.apache.lucene.search.LRUQueryCache.ramBytesUsed:J
            lload 2 /* ramBytesUsed */
            lsub
            putfield org.apache.lucene.search.LRUQueryCache.ramBytesUsed:J
         2: .line 213
            return
        end local 2 // long ramBytesUsed
        end local 1 // org.apache.lucene.search.Query query
        end local 0 // org.apache.lucene.search.LRUQueryCache this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    3     0          this  Lorg/apache/lucene/search/LRUQueryCache;
            0    3     1         query  Lorg/apache/lucene/search/Query;
            0    3     2  ramBytesUsed  J
    MethodParameters:
              Name  Flags
      query         
      ramBytesUsed  

  protected void onDocIdSetCache(java.lang.Object, long);
    descriptor: (Ljava/lang/Object;J)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // org.apache.lucene.search.LRUQueryCache this
        start local 1 // java.lang.Object readerCoreKey
        start local 2 // long ramBytesUsed
         0: .line 223
            getstatic org.apache.lucene.search.LRUQueryCache.$assertionsDisabled:Z
            ifne 1
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.lock:Ljava/util/concurrent/locks/ReentrantLock;
            invokevirtual java.util.concurrent.locks.ReentrantLock.isHeldByCurrentThread:()Z
            ifne 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 224
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.apache.lucene.search.LRUQueryCache.cacheSize:J
            lconst_1
            ladd
            putfield org.apache.lucene.search.LRUQueryCache.cacheSize:J
         2: .line 225
            aload 0 /* this */
            dup
            getfield org.apache.lucene.search.LRUQueryCache.cacheCount:J
            lconst_1
            ladd
            putfield org.apache.lucene.search.LRUQueryCache.cacheCount:J
         3: .line 226
            aload 0 /* this */
            dup
            getfield org.apache.lucene.search.LRUQueryCache.ramBytesUsed:J
            lload 2 /* ramBytesUsed */
            ladd
            putfield org.apache.lucene.search.LRUQueryCache.ramBytesUsed:J
         4: .line 227
            return
        end local 2 // long ramBytesUsed
        end local 1 // java.lang.Object readerCoreKey
        end local 0 // org.apache.lucene.search.LRUQueryCache this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    5     0           this  Lorg/apache/lucene/search/LRUQueryCache;
            0    5     1  readerCoreKey  Ljava/lang/Object;
            0    5     2   ramBytesUsed  J
    MethodParameters:
               Name  Flags
      readerCoreKey  
      ramBytesUsed   

  protected void onDocIdSetEviction(java.lang.Object, int, long);
    descriptor: (Ljava/lang/Object;IJ)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=5, args_size=4
        start local 0 // org.apache.lucene.search.LRUQueryCache this
        start local 1 // java.lang.Object readerCoreKey
        start local 2 // int numEntries
        start local 3 // long sumRamBytesUsed
         0: .line 236
            getstatic org.apache.lucene.search.LRUQueryCache.$assertionsDisabled:Z
            ifne 1
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.lock:Ljava/util/concurrent/locks/ReentrantLock;
            invokevirtual java.util.concurrent.locks.ReentrantLock.isHeldByCurrentThread:()Z
            ifne 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 237
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.apache.lucene.search.LRUQueryCache.ramBytesUsed:J
            lload 3 /* sumRamBytesUsed */
            lsub
            putfield org.apache.lucene.search.LRUQueryCache.ramBytesUsed:J
         2: .line 238
            aload 0 /* this */
            dup
            getfield org.apache.lucene.search.LRUQueryCache.cacheSize:J
            iload 2 /* numEntries */
            i2l
            lsub
            putfield org.apache.lucene.search.LRUQueryCache.cacheSize:J
         3: .line 239
            return
        end local 3 // long sumRamBytesUsed
        end local 2 // int numEntries
        end local 1 // java.lang.Object readerCoreKey
        end local 0 // org.apache.lucene.search.LRUQueryCache this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    4     0             this  Lorg/apache/lucene/search/LRUQueryCache;
            0    4     1    readerCoreKey  Ljava/lang/Object;
            0    4     2       numEntries  I
            0    4     3  sumRamBytesUsed  J
    MethodParameters:
                 Name  Flags
      readerCoreKey    
      numEntries       
      sumRamBytesUsed  

  protected void onClear();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.lucene.search.LRUQueryCache this
         0: .line 246
            getstatic org.apache.lucene.search.LRUQueryCache.$assertionsDisabled:Z
            ifne 1
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.lock:Ljava/util/concurrent/locks/ReentrantLock;
            invokevirtual java.util.concurrent.locks.ReentrantLock.isHeldByCurrentThread:()Z
            ifne 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 247
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            lconst_0
            putfield org.apache.lucene.search.LRUQueryCache.ramBytesUsed:J
         2: .line 248
            aload 0 /* this */
            lconst_0
            putfield org.apache.lucene.search.LRUQueryCache.cacheSize:J
         3: .line 249
            return
        end local 0 // org.apache.lucene.search.LRUQueryCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/lucene/search/LRUQueryCache;

  boolean requiresEviction();
    descriptor: ()Z
    flags: (0x0000) 
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // org.apache.lucene.search.LRUQueryCache this
         0: .line 253
            getstatic org.apache.lucene.search.LRUQueryCache.$assertionsDisabled:Z
            ifne 1
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.lock:Ljava/util/concurrent/locks/ReentrantLock;
            invokevirtual java.util.concurrent.locks.ReentrantLock.isHeldByCurrentThread:()Z
            ifne 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 254
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.mostRecentlyUsedQueries:Ljava/util/Set;
            invokeinterface java.util.Set.size:()I
            istore 1 /* size */
        start local 1 // int size
         2: .line 255
            iload 1 /* size */
            ifne 4
         3: .line 256
            iconst_0
            ireturn
         4: .line 258
      StackMap locals: int
      StackMap stack:
            iload 1 /* size */
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.maxSize:I
            if_icmpgt 5
            aload 0 /* this */
            invokevirtual org.apache.lucene.search.LRUQueryCache.ramBytesUsed:()J
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.maxRamBytesUsed:J
            lcmp
            ifgt 5
            iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         5: iconst_1
            ireturn
        end local 1 // int size
        end local 0 // org.apache.lucene.search.LRUQueryCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/lucene/search/LRUQueryCache;
            2    6     1  size  I

  org.apache.lucene.search.DocIdSet get(org.apache.lucene.search.Query, org.apache.lucene.index.LeafReaderContext, org.apache.lucene.index.IndexReader$CacheHelper);
    descriptor: (Lorg/apache/lucene/search/Query;Lorg/apache/lucene/index/LeafReaderContext;Lorg/apache/lucene/index/IndexReader$CacheHelper;)Lorg/apache/lucene/search/DocIdSet;
    flags: (0x0000) 
    Code:
      stack=3, locals=8, args_size=4
        start local 0 // org.apache.lucene.search.LRUQueryCache this
        start local 1 // org.apache.lucene.search.Query key
        start local 2 // org.apache.lucene.index.LeafReaderContext context
        start local 3 // org.apache.lucene.index.IndexReader$CacheHelper cacheHelper
         0: .line 263
            getstatic org.apache.lucene.search.LRUQueryCache.$assertionsDisabled:Z
            ifne 1
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.lock:Ljava/util/concurrent/locks/ReentrantLock;
            invokevirtual java.util.concurrent.locks.ReentrantLock.isHeldByCurrentThread:()Z
            ifne 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 264
      StackMap locals:
      StackMap stack:
            getstatic org.apache.lucene.search.LRUQueryCache.$assertionsDisabled:Z
            ifne 2
            aload 1 /* key */
            instanceof org.apache.lucene.search.BoostQuery
            ifeq 2
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         2: .line 265
      StackMap locals:
      StackMap stack:
            getstatic org.apache.lucene.search.LRUQueryCache.$assertionsDisabled:Z
            ifne 3
            aload 1 /* key */
            instanceof org.apache.lucene.search.ConstantScoreQuery
            ifeq 3
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         3: .line 266
      StackMap locals:
      StackMap stack:
            aload 3 /* cacheHelper */
            invokeinterface org.apache.lucene.index.IndexReader$CacheHelper.getKey:()Lorg/apache/lucene/index/IndexReader$CacheKey;
            astore 4 /* readerKey */
        start local 4 // org.apache.lucene.index.IndexReader$CacheKey readerKey
         4: .line 267
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.cache:Ljava/util/Map;
            aload 4 /* readerKey */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast org.apache.lucene.search.LRUQueryCache$LeafCache
            astore 5 /* leafCache */
        start local 5 // org.apache.lucene.search.LRUQueryCache$LeafCache leafCache
         5: .line 268
            aload 5 /* leafCache */
            ifnonnull 8
         6: .line 269
            aload 0 /* this */
            aload 4 /* readerKey */
            aload 1 /* key */
            invokevirtual org.apache.lucene.search.LRUQueryCache.onMiss:(Ljava/lang/Object;Lorg/apache/lucene/search/Query;)V
         7: .line 270
            aconst_null
            areturn
         8: .line 273
      StackMap locals: org.apache.lucene.index.IndexReader$CacheKey org.apache.lucene.search.LRUQueryCache$LeafCache
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.uniqueQueries:Ljava/util/Map;
            aload 1 /* key */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast org.apache.lucene.search.Query
            astore 6 /* singleton */
        start local 6 // org.apache.lucene.search.Query singleton
         9: .line 274
            aload 6 /* singleton */
            ifnonnull 12
        10: .line 275
            aload 0 /* this */
            aload 4 /* readerKey */
            aload 1 /* key */
            invokevirtual org.apache.lucene.search.LRUQueryCache.onMiss:(Ljava/lang/Object;Lorg/apache/lucene/search/Query;)V
        11: .line 276
            aconst_null
            areturn
        12: .line 278
      StackMap locals: org.apache.lucene.search.Query
      StackMap stack:
            aload 5 /* leafCache */
            aload 6 /* singleton */
            invokevirtual org.apache.lucene.search.LRUQueryCache$LeafCache.get:(Lorg/apache/lucene/search/Query;)Lorg/apache/lucene/search/DocIdSet;
            astore 7 /* cached */
        start local 7 // org.apache.lucene.search.DocIdSet cached
        13: .line 279
            aload 7 /* cached */
            ifnonnull 16
        14: .line 280
            aload 0 /* this */
            aload 4 /* readerKey */
            aload 6 /* singleton */
            invokevirtual org.apache.lucene.search.LRUQueryCache.onMiss:(Ljava/lang/Object;Lorg/apache/lucene/search/Query;)V
        15: .line 281
            goto 17
        16: .line 282
      StackMap locals: org.apache.lucene.search.DocIdSet
      StackMap stack:
            aload 0 /* this */
            aload 4 /* readerKey */
            aload 6 /* singleton */
            invokevirtual org.apache.lucene.search.LRUQueryCache.onHit:(Ljava/lang/Object;Lorg/apache/lucene/search/Query;)V
        17: .line 284
      StackMap locals:
      StackMap stack:
            aload 7 /* cached */
            areturn
        end local 7 // org.apache.lucene.search.DocIdSet cached
        end local 6 // org.apache.lucene.search.Query singleton
        end local 5 // org.apache.lucene.search.LRUQueryCache$LeafCache leafCache
        end local 4 // org.apache.lucene.index.IndexReader$CacheKey readerKey
        end local 3 // org.apache.lucene.index.IndexReader$CacheHelper cacheHelper
        end local 2 // org.apache.lucene.index.LeafReaderContext context
        end local 1 // org.apache.lucene.search.Query key
        end local 0 // org.apache.lucene.search.LRUQueryCache this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   18     0         this  Lorg/apache/lucene/search/LRUQueryCache;
            0   18     1          key  Lorg/apache/lucene/search/Query;
            0   18     2      context  Lorg/apache/lucene/index/LeafReaderContext;
            0   18     3  cacheHelper  Lorg/apache/lucene/index/IndexReader$CacheHelper;
            4   18     4    readerKey  Lorg/apache/lucene/index/IndexReader$CacheKey;
            5   18     5    leafCache  Lorg/apache/lucene/search/LRUQueryCache$LeafCache;
            9   18     6    singleton  Lorg/apache/lucene/search/Query;
           13   18     7       cached  Lorg/apache/lucene/search/DocIdSet;
    MethodParameters:
             Name  Flags
      key          
      context      
      cacheHelper  

  void putIfAbsent(org.apache.lucene.search.Query, org.apache.lucene.index.LeafReaderContext, org.apache.lucene.search.DocIdSet, org.apache.lucene.index.IndexReader$CacheHelper);
    descriptor: (Lorg/apache/lucene/search/Query;Lorg/apache/lucene/index/LeafReaderContext;Lorg/apache/lucene/search/DocIdSet;Lorg/apache/lucene/index/IndexReader$CacheHelper;)V
    flags: (0x0000) 
    Code:
      stack=6, locals=11, args_size=5
        start local 0 // org.apache.lucene.search.LRUQueryCache this
        start local 1 // org.apache.lucene.search.Query query
        start local 2 // org.apache.lucene.index.LeafReaderContext context
        start local 3 // org.apache.lucene.search.DocIdSet set
        start local 4 // org.apache.lucene.index.IndexReader$CacheHelper cacheHelper
         0: .line 288
            getstatic org.apache.lucene.search.LRUQueryCache.$assertionsDisabled:Z
            ifne 1
            aload 1 /* query */
            instanceof org.apache.lucene.search.BoostQuery
            ifeq 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 289
      StackMap locals:
      StackMap stack:
            getstatic org.apache.lucene.search.LRUQueryCache.$assertionsDisabled:Z
            ifne 2
            aload 1 /* query */
            instanceof org.apache.lucene.search.ConstantScoreQuery
            ifeq 2
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         2: .line 291
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.lock:Ljava/util/concurrent/locks/ReentrantLock;
            invokevirtual java.util.concurrent.locks.ReentrantLock.lock:()V
         3: .line 293
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.uniqueQueries:Ljava/util/Map;
            aload 1 /* query */
            aload 1 /* query */
            invokeinterface java.util.Map.putIfAbsent:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            checkcast org.apache.lucene.search.Query
            astore 5 /* singleton */
        start local 5 // org.apache.lucene.search.Query singleton
         4: .line 294
            aload 5 /* singleton */
            ifnonnull 7
         5: .line 295
            aload 0 /* this */
            aload 1 /* query */
            getstatic org.apache.lucene.util.RamUsageEstimator.LINKED_HASHTABLE_RAM_BYTES_PER_ENTRY:J
            ldc 1024
            ladd
            invokevirtual org.apache.lucene.search.LRUQueryCache.onQueryCache:(Lorg/apache/lucene/search/Query;J)V
         6: .line 296
            goto 8
         7: .line 297
      StackMap locals: org.apache.lucene.search.Query
      StackMap stack:
            aload 5 /* singleton */
            astore 1 /* query */
         8: .line 299
      StackMap locals:
      StackMap stack:
            aload 4 /* cacheHelper */
            invokeinterface org.apache.lucene.index.IndexReader$CacheHelper.getKey:()Lorg/apache/lucene/index/IndexReader$CacheKey;
            astore 6 /* key */
        start local 6 // org.apache.lucene.index.IndexReader$CacheKey key
         9: .line 300
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.cache:Ljava/util/Map;
            aload 6 /* key */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast org.apache.lucene.search.LRUQueryCache$LeafCache
            astore 7 /* leafCache */
        start local 7 // org.apache.lucene.search.LRUQueryCache$LeafCache leafCache
        10: .line 301
            aload 7 /* leafCache */
            ifnonnull 16
        11: .line 302
            new org.apache.lucene.search.LRUQueryCache$LeafCache
            dup
            aload 0 /* this */
            aload 6 /* key */
            invokespecial org.apache.lucene.search.LRUQueryCache$LeafCache.<init>:(Lorg/apache/lucene/search/LRUQueryCache;Ljava/lang/Object;)V
            astore 7 /* leafCache */
        12: .line 303
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.cache:Ljava/util/Map;
            aload 6 /* key */
            aload 7 /* leafCache */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            checkcast org.apache.lucene.search.LRUQueryCache$LeafCache
            astore 8 /* previous */
        start local 8 // org.apache.lucene.search.LRUQueryCache$LeafCache previous
        13: .line 304
            aload 0 /* this */
            dup
            getfield org.apache.lucene.search.LRUQueryCache.ramBytesUsed:J
            getstatic org.apache.lucene.util.RamUsageEstimator.HASHTABLE_RAM_BYTES_PER_ENTRY:J
            ladd
            putfield org.apache.lucene.search.LRUQueryCache.ramBytesUsed:J
        14: .line 305
            getstatic org.apache.lucene.search.LRUQueryCache.$assertionsDisabled:Z
            ifne 15
            aload 8 /* previous */
            ifnull 15
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        15: .line 307
      StackMap locals: org.apache.lucene.index.IndexReader$CacheKey org.apache.lucene.search.LRUQueryCache$LeafCache org.apache.lucene.search.LRUQueryCache$LeafCache
      StackMap stack:
            aload 4 /* cacheHelper */
            aload 0 /* this */
            invokedynamic onClose(Lorg/apache/lucene/search/LRUQueryCache;)Lorg/apache/lucene/index/IndexReader$ClosedListener;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Lorg/apache/lucene/index/IndexReader$CacheKey;)V
                  org/apache/lucene/search/LRUQueryCache.clearCoreCacheKey(Ljava/lang/Object;)V (5)
                  (Lorg/apache/lucene/index/IndexReader$CacheKey;)V
            invokeinterface org.apache.lucene.index.IndexReader$CacheHelper.addClosedListener:(Lorg/apache/lucene/index/IndexReader$ClosedListener;)V
        end local 8 // org.apache.lucene.search.LRUQueryCache$LeafCache previous
        16: .line 309
      StackMap locals:
      StackMap stack:
            aload 7 /* leafCache */
            aload 1 /* query */
            aload 3 /* set */
            invokevirtual org.apache.lucene.search.LRUQueryCache$LeafCache.putIfAbsent:(Lorg/apache/lucene/search/Query;Lorg/apache/lucene/search/DocIdSet;)V
        17: .line 310
            aload 0 /* this */
            invokevirtual org.apache.lucene.search.LRUQueryCache.evictIfNecessary:()V
        end local 7 // org.apache.lucene.search.LRUQueryCache$LeafCache leafCache
        end local 6 // org.apache.lucene.index.IndexReader$CacheKey key
        end local 5 // org.apache.lucene.search.Query singleton
        18: .line 311
            goto 22
      StackMap locals: org.apache.lucene.search.LRUQueryCache org.apache.lucene.search.Query org.apache.lucene.index.LeafReaderContext org.apache.lucene.search.DocIdSet org.apache.lucene.index.IndexReader$CacheHelper
      StackMap stack: java.lang.Throwable
        19: astore 10
        20: .line 312
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.lock:Ljava/util/concurrent/locks/ReentrantLock;
            invokevirtual java.util.concurrent.locks.ReentrantLock.unlock:()V
        21: .line 313
            aload 10
            athrow
        22: .line 312
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.lock:Ljava/util/concurrent/locks/ReentrantLock;
            invokevirtual java.util.concurrent.locks.ReentrantLock.unlock:()V
        23: .line 314
            return
        end local 4 // org.apache.lucene.index.IndexReader$CacheHelper cacheHelper
        end local 3 // org.apache.lucene.search.DocIdSet set
        end local 2 // org.apache.lucene.index.LeafReaderContext context
        end local 1 // org.apache.lucene.search.Query query
        end local 0 // org.apache.lucene.search.LRUQueryCache this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   24     0         this  Lorg/apache/lucene/search/LRUQueryCache;
            0   24     1        query  Lorg/apache/lucene/search/Query;
            0   24     2      context  Lorg/apache/lucene/index/LeafReaderContext;
            0   24     3          set  Lorg/apache/lucene/search/DocIdSet;
            0   24     4  cacheHelper  Lorg/apache/lucene/index/IndexReader$CacheHelper;
            4   18     5    singleton  Lorg/apache/lucene/search/Query;
            9   18     6          key  Lorg/apache/lucene/index/IndexReader$CacheKey;
           10   18     7    leafCache  Lorg/apache/lucene/search/LRUQueryCache$LeafCache;
           13   16     8     previous  Lorg/apache/lucene/search/LRUQueryCache$LeafCache;
      Exception table:
        from    to  target  type
           3    19      19  any
    MethodParameters:
             Name  Flags
      query        
      context      
      set          
      cacheHelper  

  void evictIfNecessary();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=5, locals=4, args_size=1
        start local 0 // org.apache.lucene.search.LRUQueryCache this
         0: .line 317
            getstatic org.apache.lucene.search.LRUQueryCache.$assertionsDisabled:Z
            ifne 1
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.lock:Ljava/util/concurrent/locks/ReentrantLock;
            invokevirtual java.util.concurrent.locks.ReentrantLock.isHeldByCurrentThread:()Z
            ifne 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 319
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.apache.lucene.search.LRUQueryCache.requiresEviction:()Z
            ifeq 13
         2: .line 321
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.mostRecentlyUsedQueries:Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 1 /* iterator */
        start local 1 // java.util.Iterator iterator
         3: .line 323
      StackMap locals: java.util.Iterator
      StackMap stack:
            aload 1 /* iterator */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.lucene.search.Query
            astore 2 /* query */
        start local 2 // org.apache.lucene.search.Query query
         4: .line 324
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.mostRecentlyUsedQueries:Ljava/util/Set;
            invokeinterface java.util.Set.size:()I
            istore 3 /* size */
        start local 3 // int size
         5: .line 325
            aload 1 /* iterator */
            invokeinterface java.util.Iterator.remove:()V
         6: .line 326
            iload 3 /* size */
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.mostRecentlyUsedQueries:Ljava/util/Set;
            invokeinterface java.util.Set.size:()I
            if_icmpne 11
         7: .line 329
            new java.util.ConcurrentModificationException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Removal from the cache failed! This is probably due to a query which has been modified after having been put into  the cache or a badly implemented clone(). Query class: ["
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
         8: .line 331
            aload 2 /* query */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
         9: .line 332
            ldc "], query: ["
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 2 /* query */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc "]"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        10: .line 329
            invokespecial java.util.ConcurrentModificationException.<init>:(Ljava/lang/String;)V
            athrow
        11: .line 334
      StackMap locals: org.apache.lucene.search.Query int
      StackMap stack:
            aload 0 /* this */
            aload 2 /* query */
            invokevirtual org.apache.lucene.search.LRUQueryCache.onEviction:(Lorg/apache/lucene/search/Query;)V
        end local 3 // int size
        end local 2 // org.apache.lucene.search.Query query
        12: .line 335
            aload 1 /* iterator */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifeq 13
            aload 0 /* this */
            invokevirtual org.apache.lucene.search.LRUQueryCache.requiresEviction:()Z
            ifne 3
        end local 1 // java.util.Iterator iterator
        13: .line 337
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.apache.lucene.search.LRUQueryCache this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   14     0      this  Lorg/apache/lucene/search/LRUQueryCache;
            3   13     1  iterator  Ljava/util/Iterator<Lorg/apache/lucene/search/Query;>;
            4   12     2     query  Lorg/apache/lucene/search/Query;
            5   12     3      size  I

  public void clearCoreCacheKey(java.lang.Object);
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=2
        start local 0 // org.apache.lucene.search.LRUQueryCache this
        start local 1 // java.lang.Object coreKey
         0: .line 343
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.lock:Ljava/util/concurrent/locks/ReentrantLock;
            invokevirtual java.util.concurrent.locks.ReentrantLock.lock:()V
         1: .line 345
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.cache:Ljava/util/Map;
            aload 1 /* coreKey */
            invokeinterface java.util.Map.remove:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast org.apache.lucene.search.LRUQueryCache$LeafCache
            astore 2 /* leafCache */
        start local 2 // org.apache.lucene.search.LRUQueryCache$LeafCache leafCache
         2: .line 346
            aload 2 /* leafCache */
            ifnull 13
         3: .line 347
            aload 0 /* this */
            dup
            getfield org.apache.lucene.search.LRUQueryCache.ramBytesUsed:J
            getstatic org.apache.lucene.util.RamUsageEstimator.HASHTABLE_RAM_BYTES_PER_ENTRY:J
            lsub
            putfield org.apache.lucene.search.LRUQueryCache.ramBytesUsed:J
         4: .line 348
            aload 2 /* leafCache */
            getfield org.apache.lucene.search.LRUQueryCache$LeafCache.cache:Ljava/util/Map;
            invokeinterface java.util.Map.size:()I
            istore 3 /* numEntries */
        start local 3 // int numEntries
         5: .line 349
            iload 3 /* numEntries */
            ifle 8
         6: .line 350
            aload 0 /* this */
            aload 1 /* coreKey */
            iload 3 /* numEntries */
            aload 2 /* leafCache */
            getfield org.apache.lucene.search.LRUQueryCache$LeafCache.ramBytesUsed:J
            invokevirtual org.apache.lucene.search.LRUQueryCache.onDocIdSetEviction:(Ljava/lang/Object;IJ)V
         7: .line 351
            goto 13
         8: .line 352
      StackMap locals: org.apache.lucene.search.LRUQueryCache$LeafCache int
      StackMap stack:
            getstatic org.apache.lucene.search.LRUQueryCache.$assertionsDisabled:Z
            ifne 9
            iload 3 /* numEntries */
            ifeq 9
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         9: .line 353
      StackMap locals:
      StackMap stack:
            getstatic org.apache.lucene.search.LRUQueryCache.$assertionsDisabled:Z
            ifne 13
            aload 2 /* leafCache */
            getfield org.apache.lucene.search.LRUQueryCache$LeafCache.ramBytesUsed:J
            lconst_0
            lcmp
            ifeq 13
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        end local 3 // int numEntries
        end local 2 // org.apache.lucene.search.LRUQueryCache$LeafCache leafCache
        10: .line 356
      StackMap locals: org.apache.lucene.search.LRUQueryCache java.lang.Object
      StackMap stack: java.lang.Throwable
            astore 4
        11: .line 357
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.lock:Ljava/util/concurrent/locks/ReentrantLock;
            invokevirtual java.util.concurrent.locks.ReentrantLock.unlock:()V
        12: .line 358
            aload 4
            athrow
        13: .line 357
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.lock:Ljava/util/concurrent/locks/ReentrantLock;
            invokevirtual java.util.concurrent.locks.ReentrantLock.unlock:()V
        14: .line 359
            return
        end local 1 // java.lang.Object coreKey
        end local 0 // org.apache.lucene.search.LRUQueryCache this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   15     0        this  Lorg/apache/lucene/search/LRUQueryCache;
            0   15     1     coreKey  Ljava/lang/Object;
            2   10     2   leafCache  Lorg/apache/lucene/search/LRUQueryCache$LeafCache;
            5   10     3  numEntries  I
      Exception table:
        from    to  target  type
           1    10      10  any
    MethodParameters:
         Name  Flags
      coreKey  

  public void clearQuery(org.apache.lucene.search.Query);
    descriptor: (Lorg/apache/lucene/search/Query;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // org.apache.lucene.search.LRUQueryCache this
        start local 1 // org.apache.lucene.search.Query query
         0: .line 365
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.lock:Ljava/util/concurrent/locks/ReentrantLock;
            invokevirtual java.util.concurrent.locks.ReentrantLock.lock:()V
         1: .line 367
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.uniqueQueries:Ljava/util/Map;
            aload 1 /* query */
            invokeinterface java.util.Map.remove:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast org.apache.lucene.search.Query
            astore 2 /* singleton */
        start local 2 // org.apache.lucene.search.Query singleton
         2: .line 368
            aload 2 /* singleton */
            ifnull 8
         3: .line 369
            aload 0 /* this */
            aload 2 /* singleton */
            invokevirtual org.apache.lucene.search.LRUQueryCache.onEviction:(Lorg/apache/lucene/search/Query;)V
        end local 2 // org.apache.lucene.search.Query singleton
         4: .line 371
            goto 8
      StackMap locals:
      StackMap stack: java.lang.Throwable
         5: astore 3
         6: .line 372
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.lock:Ljava/util/concurrent/locks/ReentrantLock;
            invokevirtual java.util.concurrent.locks.ReentrantLock.unlock:()V
         7: .line 373
            aload 3
            athrow
         8: .line 372
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.lock:Ljava/util/concurrent/locks/ReentrantLock;
            invokevirtual java.util.concurrent.locks.ReentrantLock.unlock:()V
         9: .line 374
            return
        end local 1 // org.apache.lucene.search.Query query
        end local 0 // org.apache.lucene.search.LRUQueryCache this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   10     0       this  Lorg/apache/lucene/search/LRUQueryCache;
            0   10     1      query  Lorg/apache/lucene/search/Query;
            2    4     2  singleton  Lorg/apache/lucene/search/Query;
      Exception table:
        from    to  target  type
           1     5       5  any
    MethodParameters:
       Name  Flags
      query  

  private void onEviction(org.apache.lucene.search.Query);
    descriptor: (Lorg/apache/lucene/search/Query;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=4, args_size=2
        start local 0 // org.apache.lucene.search.LRUQueryCache this
        start local 1 // org.apache.lucene.search.Query singleton
         0: .line 377
            getstatic org.apache.lucene.search.LRUQueryCache.$assertionsDisabled:Z
            ifne 1
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.lock:Ljava/util/concurrent/locks/ReentrantLock;
            invokevirtual java.util.concurrent.locks.ReentrantLock.isHeldByCurrentThread:()Z
            ifne 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 378
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* singleton */
            getstatic org.apache.lucene.util.RamUsageEstimator.LINKED_HASHTABLE_RAM_BYTES_PER_ENTRY:J
            ldc 1024
            ladd
            invokevirtual org.apache.lucene.search.LRUQueryCache.onQueryEviction:(Lorg/apache/lucene/search/Query;J)V
         2: .line 379
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.cache:Ljava/util/Map;
            invokeinterface java.util.Map.values:()Ljava/util/Collection;
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 3
            goto 5
      StackMap locals: org.apache.lucene.search.LRUQueryCache org.apache.lucene.search.Query top java.util.Iterator
      StackMap stack:
         3: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.lucene.search.LRUQueryCache$LeafCache
            astore 2 /* leafCache */
        start local 2 // org.apache.lucene.search.LRUQueryCache$LeafCache leafCache
         4: .line 380
            aload 2 /* leafCache */
            aload 1 /* singleton */
            invokevirtual org.apache.lucene.search.LRUQueryCache$LeafCache.remove:(Lorg/apache/lucene/search/Query;)V
        end local 2 // org.apache.lucene.search.LRUQueryCache$LeafCache leafCache
         5: .line 379
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
         6: .line 382
            return
        end local 1 // org.apache.lucene.search.Query singleton
        end local 0 // org.apache.lucene.search.LRUQueryCache this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    7     0       this  Lorg/apache/lucene/search/LRUQueryCache;
            0    7     1  singleton  Lorg/apache/lucene/search/Query;
            4    5     2  leafCache  Lorg/apache/lucene/search/LRUQueryCache$LeafCache;
    MethodParameters:
           Name  Flags
      singleton  

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // org.apache.lucene.search.LRUQueryCache this
         0: .line 388
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.lock:Ljava/util/concurrent/locks/ReentrantLock;
            invokevirtual java.util.concurrent.locks.ReentrantLock.lock:()V
         1: .line 390
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.cache:Ljava/util/Map;
            invokeinterface java.util.Map.clear:()V
         2: .line 392
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.mostRecentlyUsedQueries:Ljava/util/Set;
            invokeinterface java.util.Set.clear:()V
         3: .line 393
            aload 0 /* this */
            invokevirtual org.apache.lucene.search.LRUQueryCache.onClear:()V
         4: .line 394
            goto 8
      StackMap locals:
      StackMap stack: java.lang.Throwable
         5: astore 1
         6: .line 395
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.lock:Ljava/util/concurrent/locks/ReentrantLock;
            invokevirtual java.util.concurrent.locks.ReentrantLock.unlock:()V
         7: .line 396
            aload 1
            athrow
         8: .line 395
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.lock:Ljava/util/concurrent/locks/ReentrantLock;
            invokevirtual java.util.concurrent.locks.ReentrantLock.unlock:()V
         9: .line 397
            return
        end local 0 // org.apache.lucene.search.LRUQueryCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lorg/apache/lucene/search/LRUQueryCache;
      Exception table:
        from    to  target  type
           1     5       5  any

  void assertConsistent();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=6, locals=8, args_size=1
        start local 0 // org.apache.lucene.search.LRUQueryCache this
         0: .line 401
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.lock:Ljava/util/concurrent/locks/ReentrantLock;
            invokevirtual java.util.concurrent.locks.ReentrantLock.lock:()V
         1: .line 403
            aload 0 /* this */
            invokevirtual org.apache.lucene.search.LRUQueryCache.requiresEviction:()Z
            ifeq 5
         2: .line 404
            new java.lang.AssertionError
            dup
            new java.lang.StringBuilder
            dup
            ldc "requires evictions: size="
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.mostRecentlyUsedQueries:Ljava/util/Set;
            invokeinterface java.util.Set.size:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
         3: .line 405
            ldc ", maxSize="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.maxSize:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ", ramBytesUsed="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            invokevirtual org.apache.lucene.search.LRUQueryCache.ramBytesUsed:()J
            invokevirtual java.lang.StringBuilder.append:(J)Ljava/lang/StringBuilder;
            ldc ", maxRamBytesUsed="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.maxRamBytesUsed:J
            invokevirtual java.lang.StringBuilder.append:(J)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         4: .line 404
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         5: .line 407
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.cache:Ljava/util/Map;
            invokeinterface java.util.Map.values:()Ljava/util/Collection;
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 2
            goto 12
      StackMap locals: org.apache.lucene.search.LRUQueryCache top java.util.Iterator
      StackMap stack:
         6: aload 2
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.lucene.search.LRUQueryCache$LeafCache
            astore 1 /* leafCache */
        start local 1 // org.apache.lucene.search.LRUQueryCache$LeafCache leafCache
         7: .line 408
            new java.util.IdentityHashMap
            dup
            invokespecial java.util.IdentityHashMap.<init>:()V
            invokestatic java.util.Collections.newSetFromMap:(Ljava/util/Map;)Ljava/util/Set;
            astore 3 /* keys */
        start local 3 // java.util.Set keys
         8: .line 409
            aload 3 /* keys */
            aload 1 /* leafCache */
            getfield org.apache.lucene.search.LRUQueryCache$LeafCache.cache:Ljava/util/Map;
            invokeinterface java.util.Map.keySet:()Ljava/util/Set;
            invokeinterface java.util.Set.addAll:(Ljava/util/Collection;)Z
            pop
         9: .line 410
            aload 3 /* keys */
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.mostRecentlyUsedQueries:Ljava/util/Set;
            invokeinterface java.util.Set.removeAll:(Ljava/util/Collection;)Z
            pop
        10: .line 411
            aload 3 /* keys */
            invokeinterface java.util.Set.isEmpty:()Z
            ifne 12
        11: .line 412
            new java.lang.AssertionError
            dup
            new java.lang.StringBuilder
            dup
            ldc "One leaf cache contains more keys than the top-level cache: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 3 /* keys */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
        end local 3 // java.util.Set keys
        end local 1 // org.apache.lucene.search.LRUQueryCache$LeafCache leafCache
        12: .line 407
      StackMap locals:
      StackMap stack:
            aload 2
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 6
        13: .line 416
            getstatic org.apache.lucene.util.RamUsageEstimator.HASHTABLE_RAM_BYTES_PER_ENTRY:J
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.cache:Ljava/util/Map;
            invokeinterface java.util.Map.size:()I
            i2l
            lmul
        14: .line 417
            getstatic org.apache.lucene.util.RamUsageEstimator.LINKED_HASHTABLE_RAM_BYTES_PER_ENTRY:J
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.uniqueQueries:Ljava/util/Map;
            invokeinterface java.util.Map.size:()I
            i2l
            lmul
        15: .line 416
            ladd
        16: .line 415
            lstore 1 /* recomputedRamBytesUsed */
        start local 1 // long recomputedRamBytesUsed
        17: .line 418
            lload 1 /* recomputedRamBytesUsed */
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.mostRecentlyUsedQueries:Ljava/util/Set;
            invokeinterface java.util.Set.size:()I
            sipush 1024
            imul
            i2l
            ladd
            lstore 1 /* recomputedRamBytesUsed */
        18: .line 419
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.cache:Ljava/util/Map;
            invokeinterface java.util.Map.values:()Ljava/util/Collection;
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 4
            goto 25
      StackMap locals: org.apache.lucene.search.LRUQueryCache long top java.util.Iterator
      StackMap stack:
        19: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.lucene.search.LRUQueryCache$LeafCache
            astore 3 /* leafCache */
        start local 3 // org.apache.lucene.search.LRUQueryCache$LeafCache leafCache
        20: .line 420
            lload 1 /* recomputedRamBytesUsed */
            getstatic org.apache.lucene.util.RamUsageEstimator.HASHTABLE_RAM_BYTES_PER_ENTRY:J
            aload 3 /* leafCache */
            getfield org.apache.lucene.search.LRUQueryCache$LeafCache.cache:Ljava/util/Map;
            invokeinterface java.util.Map.size:()I
            i2l
            lmul
            ladd
            lstore 1 /* recomputedRamBytesUsed */
        21: .line 421
            aload 3 /* leafCache */
            getfield org.apache.lucene.search.LRUQueryCache$LeafCache.cache:Ljava/util/Map;
            invokeinterface java.util.Map.values:()Ljava/util/Collection;
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 6
            goto 24
      StackMap locals: org.apache.lucene.search.LRUQueryCache long org.apache.lucene.search.LRUQueryCache$LeafCache java.util.Iterator top java.util.Iterator
      StackMap stack:
        22: aload 6
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.lucene.search.DocIdSet
            astore 5 /* set */
        start local 5 // org.apache.lucene.search.DocIdSet set
        23: .line 422
            lload 1 /* recomputedRamBytesUsed */
            aload 5 /* set */
            invokevirtual org.apache.lucene.search.DocIdSet.ramBytesUsed:()J
            ladd
            lstore 1 /* recomputedRamBytesUsed */
        end local 5 // org.apache.lucene.search.DocIdSet set
        24: .line 421
      StackMap locals:
      StackMap stack:
            aload 6
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 22
        end local 3 // org.apache.lucene.search.LRUQueryCache$LeafCache leafCache
        25: .line 419
      StackMap locals: org.apache.lucene.search.LRUQueryCache long top java.util.Iterator
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 19
        26: .line 425
            lload 1 /* recomputedRamBytesUsed */
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.ramBytesUsed:J
            lcmp
            ifeq 28
        27: .line 426
            new java.lang.AssertionError
            dup
            new java.lang.StringBuilder
            dup
            ldc "ramBytesUsed mismatch : "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.ramBytesUsed:J
            invokevirtual java.lang.StringBuilder.append:(J)Ljava/lang/StringBuilder;
            ldc " != "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            lload 1 /* recomputedRamBytesUsed */
            invokevirtual java.lang.StringBuilder.append:(J)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
        28: .line 429
      StackMap locals: org.apache.lucene.search.LRUQueryCache long
      StackMap stack:
            lconst_0
            lstore 3 /* recomputedCacheSize */
        start local 3 // long recomputedCacheSize
        29: .line 430
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.cache:Ljava/util/Map;
            invokeinterface java.util.Map.values:()Ljava/util/Collection;
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 6
            goto 32
      StackMap locals: org.apache.lucene.search.LRUQueryCache long long top java.util.Iterator
      StackMap stack:
        30: aload 6
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.lucene.search.LRUQueryCache$LeafCache
            astore 5 /* leafCache */
        start local 5 // org.apache.lucene.search.LRUQueryCache$LeafCache leafCache
        31: .line 431
            lload 3 /* recomputedCacheSize */
            aload 5 /* leafCache */
            getfield org.apache.lucene.search.LRUQueryCache$LeafCache.cache:Ljava/util/Map;
            invokeinterface java.util.Map.size:()I
            i2l
            ladd
            lstore 3 /* recomputedCacheSize */
        end local 5 // org.apache.lucene.search.LRUQueryCache$LeafCache leafCache
        32: .line 430
      StackMap locals:
      StackMap stack:
            aload 6
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 30
        33: .line 433
            lload 3 /* recomputedCacheSize */
            aload 0 /* this */
            invokevirtual org.apache.lucene.search.LRUQueryCache.getCacheSize:()J
            lcmp
            ifeq 38
        34: .line 434
            new java.lang.AssertionError
            dup
            new java.lang.StringBuilder
            dup
            ldc "cacheSize mismatch : "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            invokevirtual org.apache.lucene.search.LRUQueryCache.getCacheSize:()J
            invokevirtual java.lang.StringBuilder.append:(J)Ljava/lang/StringBuilder;
            ldc " != "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            lload 3 /* recomputedCacheSize */
            invokevirtual java.lang.StringBuilder.append:(J)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
        end local 3 // long recomputedCacheSize
        end local 1 // long recomputedRamBytesUsed
        35: .line 436
      StackMap locals: org.apache.lucene.search.LRUQueryCache
      StackMap stack: java.lang.Throwable
            astore 7
        36: .line 437
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.lock:Ljava/util/concurrent/locks/ReentrantLock;
            invokevirtual java.util.concurrent.locks.ReentrantLock.unlock:()V
        37: .line 438
            aload 7
            athrow
        38: .line 437
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.lock:Ljava/util/concurrent/locks/ReentrantLock;
            invokevirtual java.util.concurrent.locks.ReentrantLock.unlock:()V
        39: .line 439
            return
        end local 0 // org.apache.lucene.search.LRUQueryCache this
      LocalVariableTable:
        Start  End  Slot                    Name  Signature
            0   40     0                    this  Lorg/apache/lucene/search/LRUQueryCache;
            7   12     1               leafCache  Lorg/apache/lucene/search/LRUQueryCache$LeafCache;
            8   12     3                    keys  Ljava/util/Set<Lorg/apache/lucene/search/Query;>;
           17   35     1  recomputedRamBytesUsed  J
           20   25     3               leafCache  Lorg/apache/lucene/search/LRUQueryCache$LeafCache;
           23   24     5                     set  Lorg/apache/lucene/search/DocIdSet;
           29   35     3     recomputedCacheSize  J
           31   32     5               leafCache  Lorg/apache/lucene/search/LRUQueryCache$LeafCache;
      Exception table:
        from    to  target  type
           1    35      35  any

  java.util.List<org.apache.lucene.search.Query> cachedQueries();
    descriptor: ()Ljava/util/List;
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // org.apache.lucene.search.LRUQueryCache this
         0: .line 444
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.lock:Ljava/util/concurrent/locks/ReentrantLock;
            invokevirtual java.util.concurrent.locks.ReentrantLock.lock:()V
         1: .line 446
            new java.util.ArrayList
            dup
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.mostRecentlyUsedQueries:Ljava/util/Set;
            invokespecial java.util.ArrayList.<init>:(Ljava/util/Collection;)V
            astore 2
         2: .line 448
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.lock:Ljava/util/concurrent/locks/ReentrantLock;
            invokevirtual java.util.concurrent.locks.ReentrantLock.unlock:()V
         3: .line 446
            aload 2
            areturn
         4: .line 447
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 1
         5: .line 448
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.lock:Ljava/util/concurrent/locks/ReentrantLock;
            invokevirtual java.util.concurrent.locks.ReentrantLock.unlock:()V
         6: .line 449
            aload 1
            athrow
        end local 0 // org.apache.lucene.search.LRUQueryCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/apache/lucene/search/LRUQueryCache;
      Exception table:
        from    to  target  type
           1     2       4  any
    Signature: ()Ljava/util/List<Lorg/apache/lucene/search/Query;>;

  public org.apache.lucene.search.Weight doCache(org.apache.lucene.search.Weight, org.apache.lucene.search.QueryCachingPolicy);
    descriptor: (Lorg/apache/lucene/search/Weight;Lorg/apache/lucene/search/QueryCachingPolicy;)Lorg/apache/lucene/search/Weight;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.apache.lucene.search.LRUQueryCache this
        start local 1 // org.apache.lucene.search.Weight weight
        start local 2 // org.apache.lucene.search.QueryCachingPolicy policy
         0: .line 454
            goto 2
         1: .line 455
      StackMap locals:
      StackMap stack:
            aload 1 /* weight */
            checkcast org.apache.lucene.search.LRUQueryCache$CachingWrapperWeight
            getfield org.apache.lucene.search.LRUQueryCache$CachingWrapperWeight.in:Lorg/apache/lucene/search/Weight;
            astore 1 /* weight */
         2: .line 454
      StackMap locals:
      StackMap stack:
            aload 1 /* weight */
            instanceof org.apache.lucene.search.LRUQueryCache$CachingWrapperWeight
            ifne 1
         3: .line 458
            new org.apache.lucene.search.LRUQueryCache$CachingWrapperWeight
            dup
            aload 0 /* this */
            aload 1 /* weight */
            aload 2 /* policy */
            invokespecial org.apache.lucene.search.LRUQueryCache$CachingWrapperWeight.<init>:(Lorg/apache/lucene/search/LRUQueryCache;Lorg/apache/lucene/search/Weight;Lorg/apache/lucene/search/QueryCachingPolicy;)V
            areturn
        end local 2 // org.apache.lucene.search.QueryCachingPolicy policy
        end local 1 // org.apache.lucene.search.Weight weight
        end local 0 // org.apache.lucene.search.LRUQueryCache this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lorg/apache/lucene/search/LRUQueryCache;
            0    4     1  weight  Lorg/apache/lucene/search/Weight;
            0    4     2  policy  Lorg/apache/lucene/search/QueryCachingPolicy;
    MethodParameters:
        Name  Flags
      weight  
      policy  

  public long ramBytesUsed();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.lucene.search.LRUQueryCache this
         0: .line 463
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.ramBytesUsed:J
            lreturn
        end local 0 // org.apache.lucene.search.LRUQueryCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/search/LRUQueryCache;

  public java.util.Collection<org.apache.lucene.util.Accountable> getChildResources();
    descriptor: ()Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // org.apache.lucene.search.LRUQueryCache this
         0: .line 468
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.lock:Ljava/util/concurrent/locks/ReentrantLock;
            invokevirtual java.util.concurrent.locks.ReentrantLock.lock:()V
         1: .line 470
            ldc "segment"
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.cache:Ljava/util/Map;
            invokestatic org.apache.lucene.util.Accountables.namedAccountables:(Ljava/lang/String;Ljava/util/Map;)Ljava/util/Collection;
            astore 2
         2: .line 472
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.lock:Ljava/util/concurrent/locks/ReentrantLock;
            invokevirtual java.util.concurrent.locks.ReentrantLock.unlock:()V
         3: .line 470
            aload 2
            areturn
         4: .line 471
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 1
         5: .line 472
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.lock:Ljava/util/concurrent/locks/ReentrantLock;
            invokevirtual java.util.concurrent.locks.ReentrantLock.unlock:()V
         6: .line 473
            aload 1
            athrow
        end local 0 // org.apache.lucene.search.LRUQueryCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/apache/lucene/search/LRUQueryCache;
      Exception table:
        from    to  target  type
           1     2       4  any
    Signature: ()Ljava/util/Collection<Lorg/apache/lucene/util/Accountable;>;

  protected org.apache.lucene.search.DocIdSet cacheImpl(org.apache.lucene.search.BulkScorer, int);
    descriptor: (Lorg/apache/lucene/search/BulkScorer;I)Lorg/apache/lucene/search/DocIdSet;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.apache.lucene.search.LRUQueryCache this
        start local 1 // org.apache.lucene.search.BulkScorer scorer
        start local 2 // int maxDoc
         0: .line 482
            aload 1 /* scorer */
            invokevirtual org.apache.lucene.search.BulkScorer.cost:()J
            ldc 100
            lmul
            iload 2 /* maxDoc */
            i2l
            lcmp
            iflt 2
         1: .line 485
            aload 1 /* scorer */
            iload 2 /* maxDoc */
            invokestatic org.apache.lucene.search.LRUQueryCache.cacheIntoBitSet:(Lorg/apache/lucene/search/BulkScorer;I)Lorg/apache/lucene/search/DocIdSet;
            areturn
         2: .line 487
      StackMap locals:
      StackMap stack:
            aload 1 /* scorer */
            iload 2 /* maxDoc */
            invokestatic org.apache.lucene.search.LRUQueryCache.cacheIntoRoaringDocIdSet:(Lorg/apache/lucene/search/BulkScorer;I)Lorg/apache/lucene/search/DocIdSet;
            areturn
        end local 2 // int maxDoc
        end local 1 // org.apache.lucene.search.BulkScorer scorer
        end local 0 // org.apache.lucene.search.LRUQueryCache this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/apache/lucene/search/LRUQueryCache;
            0    3     1  scorer  Lorg/apache/lucene/search/BulkScorer;
            0    3     2  maxDoc  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      scorer  
      maxDoc  

  private static org.apache.lucene.search.DocIdSet cacheIntoBitSet(org.apache.lucene.search.BulkScorer, int);
    descriptor: (Lorg/apache/lucene/search/BulkScorer;I)Lorg/apache/lucene/search/DocIdSet;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // org.apache.lucene.search.BulkScorer scorer
        start local 1 // int maxDoc
         0: .line 492
            new org.apache.lucene.util.FixedBitSet
            dup
            iload 1 /* maxDoc */
            invokespecial org.apache.lucene.util.FixedBitSet.<init>:(I)V
            astore 2 /* bitSet */
        start local 2 // org.apache.lucene.util.FixedBitSet bitSet
         1: .line 493
            iconst_1
            newarray 11
            astore 3 /* cost */
        start local 3 // long[] cost
         2: .line 494
            aload 0 /* scorer */
            new org.apache.lucene.search.LRUQueryCache$1
            dup
            aload 3 /* cost */
            aload 2 /* bitSet */
            invokespecial org.apache.lucene.search.LRUQueryCache$1.<init>:([JLorg/apache/lucene/util/FixedBitSet;)V
         3: .line 505
            aconst_null
         4: .line 494
            invokevirtual org.apache.lucene.search.BulkScorer.score:(Lorg/apache/lucene/search/LeafCollector;Lorg/apache/lucene/util/Bits;)V
         5: .line 506
            new org.apache.lucene.util.BitDocIdSet
            dup
            aload 2 /* bitSet */
            aload 3 /* cost */
            iconst_0
            laload
            invokespecial org.apache.lucene.util.BitDocIdSet.<init>:(Lorg/apache/lucene/util/BitSet;J)V
            areturn
        end local 3 // long[] cost
        end local 2 // org.apache.lucene.util.FixedBitSet bitSet
        end local 1 // int maxDoc
        end local 0 // org.apache.lucene.search.BulkScorer scorer
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0  scorer  Lorg/apache/lucene/search/BulkScorer;
            0    6     1  maxDoc  I
            1    6     2  bitSet  Lorg/apache/lucene/util/FixedBitSet;
            2    6     3    cost  [J
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      scorer  
      maxDoc  

  private static org.apache.lucene.search.DocIdSet cacheIntoRoaringDocIdSet(org.apache.lucene.search.BulkScorer, int);
    descriptor: (Lorg/apache/lucene/search/BulkScorer;I)Lorg/apache/lucene/search/DocIdSet;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.apache.lucene.search.BulkScorer scorer
        start local 1 // int maxDoc
         0: .line 510
            new org.apache.lucene.util.RoaringDocIdSet$Builder
            dup
            iload 1 /* maxDoc */
            invokespecial org.apache.lucene.util.RoaringDocIdSet$Builder.<init>:(I)V
            astore 2 /* builder */
        start local 2 // org.apache.lucene.util.RoaringDocIdSet$Builder builder
         1: .line 511
            aload 0 /* scorer */
            new org.apache.lucene.search.LRUQueryCache$2
            dup
            aload 2 /* builder */
            invokespecial org.apache.lucene.search.LRUQueryCache$2.<init>:(Lorg/apache/lucene/util/RoaringDocIdSet$Builder;)V
         2: .line 521
            aconst_null
         3: .line 511
            invokevirtual org.apache.lucene.search.BulkScorer.score:(Lorg/apache/lucene/search/LeafCollector;Lorg/apache/lucene/util/Bits;)V
         4: .line 522
            aload 2 /* builder */
            invokevirtual org.apache.lucene.util.RoaringDocIdSet$Builder.build:()Lorg/apache/lucene/util/RoaringDocIdSet;
            areturn
        end local 2 // org.apache.lucene.util.RoaringDocIdSet$Builder builder
        end local 1 // int maxDoc
        end local 0 // org.apache.lucene.search.BulkScorer scorer
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0   scorer  Lorg/apache/lucene/search/BulkScorer;
            0    5     1   maxDoc  I
            1    5     2  builder  Lorg/apache/lucene/util/RoaringDocIdSet$Builder;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      scorer  
      maxDoc  

  public final long getTotalCount();
    descriptor: ()J
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.apache.lucene.search.LRUQueryCache this
         0: .line 536
            aload 0 /* this */
            invokevirtual org.apache.lucene.search.LRUQueryCache.getHitCount:()J
            aload 0 /* this */
            invokevirtual org.apache.lucene.search.LRUQueryCache.getMissCount:()J
            ladd
            lreturn
        end local 0 // org.apache.lucene.search.LRUQueryCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/search/LRUQueryCache;

  public final long getHitCount();
    descriptor: ()J
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.lucene.search.LRUQueryCache this
         0: .line 547
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.hitCount:J
            lreturn
        end local 0 // org.apache.lucene.search.LRUQueryCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/search/LRUQueryCache;

  public final long getMissCount();
    descriptor: ()J
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.lucene.search.LRUQueryCache this
         0: .line 558
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.missCount:J
            lreturn
        end local 0 // org.apache.lucene.search.LRUQueryCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/search/LRUQueryCache;

  public final long getCacheSize();
    descriptor: ()J
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.lucene.search.LRUQueryCache this
         0: .line 568
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.cacheSize:J
            lreturn
        end local 0 // org.apache.lucene.search.LRUQueryCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/search/LRUQueryCache;

  public final long getCacheCount();
    descriptor: ()J
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.lucene.search.LRUQueryCache this
         0: .line 581
            aload 0 /* this */
            getfield org.apache.lucene.search.LRUQueryCache.cacheCount:J
            lreturn
        end local 0 // org.apache.lucene.search.LRUQueryCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/search/LRUQueryCache;

  public final long getEvictionCount();
    descriptor: ()J
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.apache.lucene.search.LRUQueryCache this
         0: .line 595
            aload 0 /* this */
            invokevirtual org.apache.lucene.search.LRUQueryCache.getCacheCount:()J
            aload 0 /* this */
            invokevirtual org.apache.lucene.search.LRUQueryCache.getCacheSize:()J
            lsub
            lreturn
        end local 0 // org.apache.lucene.search.LRUQueryCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/search/LRUQueryCache;
}
SourceFile: "LRUQueryCache.java"
NestMembers:
  org.apache.lucene.search.LRUQueryCache$1  org.apache.lucene.search.LRUQueryCache$2  org.apache.lucene.search.LRUQueryCache$CachingWrapperWeight  org.apache.lucene.search.LRUQueryCache$CachingWrapperWeight$1  org.apache.lucene.search.LRUQueryCache$LeafCache  org.apache.lucene.search.LRUQueryCache$MinSegmentSizePredicate
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles
  public abstract CacheHelper = org.apache.lucene.index.IndexReader$CacheHelper of org.apache.lucene.index.IndexReader
  public final CacheKey = org.apache.lucene.index.IndexReader$CacheKey of org.apache.lucene.index.IndexReader
  public abstract ClosedListener = org.apache.lucene.index.IndexReader$ClosedListener of org.apache.lucene.index.IndexReader
  org.apache.lucene.search.LRUQueryCache$1
  org.apache.lucene.search.LRUQueryCache$2
  private CachingWrapperWeight = org.apache.lucene.search.LRUQueryCache$CachingWrapperWeight of org.apache.lucene.search.LRUQueryCache
  private LeafCache = org.apache.lucene.search.LRUQueryCache$LeafCache of org.apache.lucene.search.LRUQueryCache
  MinSegmentSizePredicate = org.apache.lucene.search.LRUQueryCache$MinSegmentSizePredicate of org.apache.lucene.search.LRUQueryCache
  public Builder = org.apache.lucene.util.RoaringDocIdSet$Builder of org.apache.lucene.util.RoaringDocIdSet