public final class org.eclipse.jdt.internal.core.nd.db.ChunkCache
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: org.eclipse.jdt.internal.core.nd.db.ChunkCache
  super_class: java.lang.Object
{
  private static org.eclipse.jdt.internal.core.nd.db.ChunkCache sSharedInstance;
    descriptor: Lorg/eclipse/jdt/internal/core/nd/db/ChunkCache;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC

  private org.eclipse.jdt.internal.core.nd.db.Chunk[] fPageTable;
    descriptor: [Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
    flags: (0x0002) ACC_PRIVATE

  private boolean fTableIsFull;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

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

  public static final java.lang.String CHUNK_CACHE_SIZE_MB;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: "chunkCacheSizeMb"

  public static final java.lang.String CHUNK_CACHE_SIZE_PERCENT;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: "chunkCacheSizePercent"

  public static final double CHUNK_CACHE_SIZE_MB_DEFAULT;
    descriptor: D
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 128.0

  public static final double CHUNK_CACHE_SIZE_PERCENT_DEFAULT;
    descriptor: D
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 5.0

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=3, args_size=0
         0: .line 34
            getstatic org.eclipse.core.runtime.preferences.InstanceScope.INSTANCE:Lorg/eclipse/core/runtime/preferences/IScopeContext;
            ldc "org.eclipse.jdt.core"
            invokeinterface org.eclipse.core.runtime.preferences.IScopeContext.getNode:(Ljava/lang/String;)Lorg/eclipse/core/runtime/preferences/IEclipsePreferences;
            astore 0 /* node */
        start local 0 // org.eclipse.core.runtime.preferences.IEclipsePreferences node
         1: .line 35
            aload 0 /* node */
            invokestatic org.eclipse.jdt.internal.core.nd.db.ChunkCache.getChunkCacheSize:(Lorg/eclipse/core/runtime/preferences/IEclipsePreferences;)J
            lstore 1 /* chunkSize */
        start local 1 // long chunkSize
         2: .line 36
            new org.eclipse.jdt.internal.core.nd.db.ChunkCache
            dup
            lload 1 /* chunkSize */
            invokespecial org.eclipse.jdt.internal.core.nd.db.ChunkCache.<init>:(J)V
            putstatic org.eclipse.jdt.internal.core.nd.db.ChunkCache.sSharedInstance:Lorg/eclipse/jdt/internal/core/nd/db/ChunkCache;
         3: .line 37
            aload 0 /* node */
            aload 0 /* node */
            invokedynamic preferenceChange(Lorg/eclipse/core/runtime/preferences/IEclipsePreferences;)Lorg/eclipse/core/runtime/preferences/IEclipsePreferences$IPreferenceChangeListener;
              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/eclipse/core/runtime/preferences/IEclipsePreferences$PreferenceChangeEvent;)V
                  org/eclipse/jdt/internal/core/nd/db/ChunkCache.lambda$0(Lorg/eclipse/core/runtime/preferences/IEclipsePreferences;Lorg/eclipse/core/runtime/preferences/IEclipsePreferences$PreferenceChangeEvent;)V (6)
                  (Lorg/eclipse/core/runtime/preferences/IEclipsePreferences$PreferenceChangeEvent;)V
            invokeinterface org.eclipse.core.runtime.preferences.IEclipsePreferences.addPreferenceChangeListener:(Lorg/eclipse/core/runtime/preferences/IEclipsePreferences$IPreferenceChangeListener;)V
        end local 1 // long chunkSize
        end local 0 // org.eclipse.core.runtime.preferences.IEclipsePreferences node
         4: .line 43
            return
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            1    4     0       node  Lorg/eclipse/core/runtime/preferences/IEclipsePreferences;
            2    4     1  chunkSize  J

  private static long getChunkCacheSize(org.eclipse.core.runtime.preferences.IEclipsePreferences);
    descriptor: (Lorg/eclipse/core/runtime/preferences/IEclipsePreferences;)J
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=6, locals=7, args_size=1
        start local 0 // org.eclipse.core.runtime.preferences.IEclipsePreferences node
         0: .line 46
            aload 0 /* node */
            ldc "chunkCacheSizeMb"
            ldc 128.0
            invokeinterface org.eclipse.core.runtime.preferences.IEclipsePreferences.getDouble:(Ljava/lang/String;D)D
            dstore 1 /* maxSizeMb */
        start local 1 // double maxSizeMb
         1: .line 47
            aload 0 /* node */
            ldc "chunkCacheSizePercent"
            ldc 5.0
            invokeinterface org.eclipse.core.runtime.preferences.IEclipsePreferences.getDouble:(Ljava/lang/String;D)D
            dstore 3 /* maxSizePercent */
        start local 3 // double maxSizePercent
         2: .line 49
            dconst_1
            ldc 50.0
            dload 3 /* maxSizePercent */
            invokestatic java.lang.Math.min:(DD)D
            invokestatic java.lang.Math.max:(DD)D
            dstore 3 /* maxSizePercent */
         3: .line 50
            dload 1 /* maxSizeMb */
            dconst_1
            invokestatic java.lang.Math.max:(DD)D
            dstore 1 /* maxSizeMb */
         4: .line 52
            invokestatic java.lang.Runtime.getRuntime:()Ljava/lang/Runtime;
            invokevirtual java.lang.Runtime.maxMemory:()J
            l2d
            ldc 100.0
            ddiv
            dload 3 /* maxSizePercent */
            dmul
            d2l
            lstore 5 /* m1 */
        start local 5 // long m1
         5: .line 53
            lload 5 /* m1 */
            dload 1 /* maxSizeMb */
            ldc 1024.0
            dmul
            ldc 1024.0
            dmul
            d2l
            invokestatic java.lang.Math.min:(JJ)J
            lreturn
        end local 5 // long m1
        end local 3 // double maxSizePercent
        end local 1 // double maxSizeMb
        end local 0 // org.eclipse.core.runtime.preferences.IEclipsePreferences node
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    6     0            node  Lorg/eclipse/core/runtime/preferences/IEclipsePreferences;
            1    6     1       maxSizeMb  D
            2    6     3  maxSizePercent  D
            5    6     5              m1  J
    MethodParameters:
      Name  Flags
      node  

  public static org.eclipse.jdt.internal.core.nd.db.ChunkCache getSharedInstance();
    descriptor: ()Lorg/eclipse/jdt/internal/core/nd/db/ChunkCache;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 57
            getstatic org.eclipse.jdt.internal.core.nd.db.ChunkCache.sSharedInstance:Lorg/eclipse/jdt/internal/core/nd/db/ChunkCache;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.jdt.internal.core.nd.db.ChunkCache this
         0: .line 61
            aload 0 /* this */
            ldc 5242880
            invokespecial org.eclipse.jdt.internal.core.nd.db.ChunkCache.<init>:(J)V
         1: .line 62
            return
        end local 0 // org.eclipse.jdt.internal.core.nd.db.ChunkCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jdt/internal/core/nd/db/ChunkCache;

  public void <init>(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.eclipse.jdt.internal.core.nd.db.ChunkCache this
        start local 1 // long maxSize
         0: .line 64
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 65
            aload 0 /* this */
            aload 0 /* this */
            lload 1 /* maxSize */
            invokevirtual org.eclipse.jdt.internal.core.nd.db.ChunkCache.computeLength:(J)I
            anewarray org.eclipse.jdt.internal.core.nd.db.Chunk
            putfield org.eclipse.jdt.internal.core.nd.db.ChunkCache.fPageTable:[Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
         2: .line 66
            return
        end local 1 // long maxSize
        end local 0 // org.eclipse.jdt.internal.core.nd.db.ChunkCache this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lorg/eclipse/jdt/internal/core/nd/db/ChunkCache;
            0    3     1  maxSize  J
    MethodParameters:
         Name  Flags
      maxSize  

  public synchronized void add(org.eclipse.jdt.internal.core.nd.db.Chunk);
    descriptor: (Lorg/eclipse/jdt/internal/core/nd/db/Chunk;)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.jdt.internal.core.nd.db.ChunkCache this
        start local 1 // org.eclipse.jdt.internal.core.nd.db.Chunk chunk
         0: .line 69
            aload 1 /* chunk */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fCacheIndex:I
            iflt 3
         1: .line 70
            aload 1 /* chunk */
            iconst_1
            putfield org.eclipse.jdt.internal.core.nd.db.Chunk.fCacheHitFlag:Z
         2: .line 71
            return
         3: .line 73
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.ChunkCache.fTableIsFull:Z
            ifeq 8
         4: .line 74
            aload 0 /* this */
            invokevirtual org.eclipse.jdt.internal.core.nd.db.ChunkCache.evictChunk:()V
         5: .line 75
            aload 1 /* chunk */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.ChunkCache.fPointer:I
            putfield org.eclipse.jdt.internal.core.nd.db.Chunk.fCacheIndex:I
         6: .line 76
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.ChunkCache.fPageTable:[Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.ChunkCache.fPointer:I
            aload 1 /* chunk */
            aastore
         7: .line 77
            goto 14
         8: .line 78
      StackMap locals:
      StackMap stack:
            aload 1 /* chunk */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.ChunkCache.fPointer:I
            putfield org.eclipse.jdt.internal.core.nd.db.Chunk.fCacheIndex:I
         9: .line 79
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.ChunkCache.fPageTable:[Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.ChunkCache.fPointer:I
            aload 1 /* chunk */
            aastore
        10: .line 81
            aload 0 /* this */
            dup
            getfield org.eclipse.jdt.internal.core.nd.db.ChunkCache.fPointer:I
            iconst_1
            iadd
            putfield org.eclipse.jdt.internal.core.nd.db.ChunkCache.fPointer:I
        11: .line 82
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.ChunkCache.fPointer:I
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.ChunkCache.fPageTable:[Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            arraylength
            if_icmpne 14
        12: .line 83
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.jdt.internal.core.nd.db.ChunkCache.fPointer:I
        13: .line 84
            aload 0 /* this */
            iconst_1
            putfield org.eclipse.jdt.internal.core.nd.db.ChunkCache.fTableIsFull:Z
        14: .line 87
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.eclipse.jdt.internal.core.nd.db.Chunk chunk
        end local 0 // org.eclipse.jdt.internal.core.nd.db.ChunkCache this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   15     0   this  Lorg/eclipse/jdt/internal/core/nd/db/ChunkCache;
            0   15     1  chunk  Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
    MethodParameters:
       Name  Flags
      chunk  

  private void evictChunk();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.eclipse.jdt.internal.core.nd.db.ChunkCache this
         0: .line 103
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.ChunkCache.fPageTable:[Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.ChunkCache.fPointer:I
            aaload
            astore 1 /* chunk */
        start local 1 // org.eclipse.jdt.internal.core.nd.db.Chunk chunk
         1: .line 104
            aload 1 /* chunk */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fCacheHitFlag:Z
            ifeq 5
         2: .line 105
            aload 1 /* chunk */
            iconst_0
            putfield org.eclipse.jdt.internal.core.nd.db.Chunk.fCacheHitFlag:Z
         3: .line 106
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.ChunkCache.fPointer:I
            iconst_1
            iadd
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.ChunkCache.fPageTable:[Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            arraylength
            irem
            putfield org.eclipse.jdt.internal.core.nd.db.ChunkCache.fPointer:I
         4: .line 107
            goto 0
         5: .line 108
      StackMap locals: org.eclipse.jdt.internal.core.nd.db.Chunk
      StackMap stack:
            aload 1 /* chunk */
            iconst_m1
            putfield org.eclipse.jdt.internal.core.nd.db.Chunk.fCacheIndex:I
         6: .line 109
            aload 1 /* chunk */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fDatabase:Lorg/eclipse/jdt/internal/core/nd/db/Database;
            aload 1 /* chunk */
            invokevirtual org.eclipse.jdt.internal.core.nd.db.Database.checkIfChunkReleased:(Lorg/eclipse/jdt/internal/core/nd/db/Chunk;)V
         7: .line 110
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.ChunkCache.fPageTable:[Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.ChunkCache.fPointer:I
            aconst_null
            aastore
         8: .line 111
            return
        end local 1 // org.eclipse.jdt.internal.core.nd.db.Chunk chunk
        end local 0 // org.eclipse.jdt.internal.core.nd.db.ChunkCache this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    9     0   this  Lorg/eclipse/jdt/internal/core/nd/db/ChunkCache;
            1    9     1  chunk  Lorg/eclipse/jdt/internal/core/nd/db/Chunk;

  public synchronized void remove(org.eclipse.jdt.internal.core.nd.db.Chunk);
    descriptor: (Lorg/eclipse/jdt/internal/core/nd/db/Chunk;)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.eclipse.jdt.internal.core.nd.db.ChunkCache this
        start local 1 // org.eclipse.jdt.internal.core.nd.db.Chunk chunk
         0: .line 117
            aload 1 /* chunk */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fCacheIndex:I
            istore 2 /* idx */
        start local 2 // int idx
         1: .line 118
            iload 2 /* idx */
            iflt 12
         2: .line 119
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.ChunkCache.fTableIsFull:Z
            ifeq 6
         3: .line 120
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.ChunkCache.fPageTable:[Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            arraylength
            iconst_1
            isub
            putfield org.eclipse.jdt.internal.core.nd.db.ChunkCache.fPointer:I
         4: .line 121
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.jdt.internal.core.nd.db.ChunkCache.fTableIsFull:Z
         5: .line 122
            goto 7
         6: .line 123
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.eclipse.jdt.internal.core.nd.db.ChunkCache.fPointer:I
            iconst_1
            isub
            putfield org.eclipse.jdt.internal.core.nd.db.ChunkCache.fPointer:I
         7: .line 125
      StackMap locals:
      StackMap stack:
            aload 1 /* chunk */
            iconst_m1
            putfield org.eclipse.jdt.internal.core.nd.db.Chunk.fCacheIndex:I
         8: .line 126
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.ChunkCache.fPageTable:[Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.ChunkCache.fPointer:I
            aaload
            astore 3 /* move */
        start local 3 // org.eclipse.jdt.internal.core.nd.db.Chunk move
         9: .line 127
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.ChunkCache.fPageTable:[Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            iload 2 /* idx */
            aload 3 /* move */
            aastore
        10: .line 128
            aload 3 /* move */
            iload 2 /* idx */
            putfield org.eclipse.jdt.internal.core.nd.db.Chunk.fCacheIndex:I
        11: .line 129
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.ChunkCache.fPageTable:[Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.ChunkCache.fPointer:I
            aconst_null
            aastore
        end local 3 // org.eclipse.jdt.internal.core.nd.db.Chunk move
        12: .line 131
      StackMap locals:
      StackMap stack:
            return
        end local 2 // int idx
        end local 1 // org.eclipse.jdt.internal.core.nd.db.Chunk chunk
        end local 0 // org.eclipse.jdt.internal.core.nd.db.ChunkCache this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   13     0   this  Lorg/eclipse/jdt/internal/core/nd/db/ChunkCache;
            0   13     1  chunk  Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            1   13     2    idx  I
            9   12     3   move  Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
    MethodParameters:
       Name  Flags
      chunk  

  public synchronized long getMaxSize();
    descriptor: ()J
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.eclipse.jdt.internal.core.nd.db.ChunkCache this
         0: .line 137
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.ChunkCache.fPageTable:[Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            arraylength
            i2l
            ldc 4096
            lmul
            lreturn
        end local 0 // org.eclipse.jdt.internal.core.nd.db.ChunkCache this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jdt/internal/core/nd/db/ChunkCache;

  public synchronized void setMaxSize(long);
    descriptor: (J)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=5, locals=7, args_size=2
        start local 0 // org.eclipse.jdt.internal.core.nd.db.ChunkCache this
        start local 1 // long maxSize
         0: .line 146
            aload 0 /* this */
            lload 1 /* maxSize */
            invokevirtual org.eclipse.jdt.internal.core.nd.db.ChunkCache.computeLength:(J)I
            istore 3 /* newLength */
        start local 3 // int newLength
         1: .line 147
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.ChunkCache.fTableIsFull:Z
            ifeq 2
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.ChunkCache.fPageTable:[Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            arraylength
            goto 3
      StackMap locals: int
      StackMap stack:
         2: aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.ChunkCache.fPointer:I
      StackMap locals:
      StackMap stack: int
         3: istore 4 /* oldLength */
        start local 4 // int oldLength
         4: .line 148
            iload 3 /* newLength */
            iload 4 /* oldLength */
            if_icmple 11
         5: .line 149
            iload 3 /* newLength */
            anewarray org.eclipse.jdt.internal.core.nd.db.Chunk
            astore 5 /* newTable */
        start local 5 // org.eclipse.jdt.internal.core.nd.db.Chunk[] newTable
         6: .line 150
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.ChunkCache.fPageTable:[Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            iconst_0
            aload 5 /* newTable */
            iconst_0
            iload 4 /* oldLength */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         7: .line 151
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.jdt.internal.core.nd.db.ChunkCache.fTableIsFull:Z
         8: .line 152
            aload 0 /* this */
            iload 4 /* oldLength */
            putfield org.eclipse.jdt.internal.core.nd.db.ChunkCache.fPointer:I
         9: .line 153
            aload 0 /* this */
            aload 5 /* newTable */
            putfield org.eclipse.jdt.internal.core.nd.db.ChunkCache.fPageTable:[Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
        end local 5 // org.eclipse.jdt.internal.core.nd.db.Chunk[] newTable
        10: .line 154
            goto 23
        11: .line 155
      StackMap locals: int
      StackMap stack:
            iload 3 /* newLength */
            istore 5 /* i */
        start local 5 // int i
        12: goto 17
        13: .line 156
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.ChunkCache.fPageTable:[Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            iload 5 /* i */
            aaload
            astore 6 /* chunk */
        start local 6 // org.eclipse.jdt.internal.core.nd.db.Chunk chunk
        14: .line 157
            aload 6 /* chunk */
            iconst_m1
            putfield org.eclipse.jdt.internal.core.nd.db.Chunk.fCacheIndex:I
        15: .line 158
            aload 6 /* chunk */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fDatabase:Lorg/eclipse/jdt/internal/core/nd/db/Database;
            aload 6 /* chunk */
            invokevirtual org.eclipse.jdt.internal.core.nd.db.Database.checkIfChunkReleased:(Lorg/eclipse/jdt/internal/core/nd/db/Chunk;)V
        end local 6 // org.eclipse.jdt.internal.core.nd.db.Chunk chunk
        16: .line 155
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        17: iload 5 /* i */
            iload 4 /* oldLength */
            if_icmplt 13
        end local 5 // int i
        18: .line 160
            iload 3 /* newLength */
            anewarray org.eclipse.jdt.internal.core.nd.db.Chunk
            astore 5 /* newTable */
        start local 5 // org.eclipse.jdt.internal.core.nd.db.Chunk[] newTable
        19: .line 161
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.ChunkCache.fPageTable:[Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            iconst_0
            aload 5 /* newTable */
            iconst_0
            iload 3 /* newLength */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        20: .line 162
            aload 0 /* this */
            iconst_1
            putfield org.eclipse.jdt.internal.core.nd.db.ChunkCache.fTableIsFull:Z
        21: .line 163
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.jdt.internal.core.nd.db.ChunkCache.fPointer:I
        22: .line 164
            aload 0 /* this */
            aload 5 /* newTable */
            putfield org.eclipse.jdt.internal.core.nd.db.ChunkCache.fPageTable:[Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
        end local 5 // org.eclipse.jdt.internal.core.nd.db.Chunk[] newTable
        23: .line 166
      StackMap locals:
      StackMap stack:
            return
        end local 4 // int oldLength
        end local 3 // int newLength
        end local 1 // long maxSize
        end local 0 // org.eclipse.jdt.internal.core.nd.db.ChunkCache this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   24     0       this  Lorg/eclipse/jdt/internal/core/nd/db/ChunkCache;
            0   24     1    maxSize  J
            1   24     3  newLength  I
            4   24     4  oldLength  I
            6   10     5   newTable  [Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
           12   18     5          i  I
           14   16     6      chunk  Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
           19   23     5   newTable  [Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
    MethodParameters:
         Name  Flags
      maxSize  

  private int computeLength(long);
    descriptor: (J)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // org.eclipse.jdt.internal.core.nd.db.ChunkCache this
        start local 1 // long maxSize
         0: .line 169
            lload 1 /* maxSize */
            ldc 4096
            ldiv
            ldc 2147483647
            invokestatic java.lang.Math.min:(JJ)J
            lstore 3 /* maxLength */
        start local 3 // long maxLength
         1: .line 170
            iconst_1
            lload 3 /* maxLength */
            l2i
            invokestatic java.lang.Math.max:(II)I
            ireturn
        end local 3 // long maxLength
        end local 1 // long maxSize
        end local 0 // org.eclipse.jdt.internal.core.nd.db.ChunkCache this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/eclipse/jdt/internal/core/nd/db/ChunkCache;
            0    2     1    maxSize  J
            1    2     3  maxLength  J
    MethodParameters:
         Name  Flags
      maxSize  

  public synchronized void clear();
    descriptor: ()V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // org.eclipse.jdt.internal.core.nd.db.ChunkCache this
         0: .line 174
            iconst_0
            istore 1 /* i */
        start local 1 // int i
         1: goto 9
         2: .line 175
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.ChunkCache.fPageTable:[Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            iload 1 /* i */
            aaload
            astore 2 /* chunk */
        start local 2 // org.eclipse.jdt.internal.core.nd.db.Chunk chunk
         3: .line 176
            aload 2 /* chunk */
            ifnonnull 5
         4: .line 177
            goto 8
         5: .line 179
      StackMap locals: org.eclipse.jdt.internal.core.nd.db.Chunk
      StackMap stack:
            aload 2 /* chunk */
            iconst_m1
            putfield org.eclipse.jdt.internal.core.nd.db.Chunk.fCacheIndex:I
         6: .line 180
            aload 2 /* chunk */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fDatabase:Lorg/eclipse/jdt/internal/core/nd/db/Database;
            aload 2 /* chunk */
            invokevirtual org.eclipse.jdt.internal.core.nd.db.Database.checkIfChunkReleased:(Lorg/eclipse/jdt/internal/core/nd/db/Chunk;)V
         7: .line 181
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.ChunkCache.fPageTable:[Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            iload 1 /* i */
            aconst_null
            aastore
        end local 2 // org.eclipse.jdt.internal.core.nd.db.Chunk chunk
         8: .line 174
      StackMap locals:
      StackMap stack:
            iinc 1 /* i */ 1
      StackMap locals:
      StackMap stack:
         9: iload 1 /* i */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.ChunkCache.fPageTable:[Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            arraylength
            if_icmplt 2
        end local 1 // int i
        10: .line 183
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.jdt.internal.core.nd.db.ChunkCache.fTableIsFull:Z
        11: .line 184
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.jdt.internal.core.nd.db.ChunkCache.fPointer:I
        12: .line 185
            return
        end local 0 // org.eclipse.jdt.internal.core.nd.db.ChunkCache this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   13     0   this  Lorg/eclipse/jdt/internal/core/nd/db/ChunkCache;
            1   10     1      i  I
            3    8     2  chunk  Lorg/eclipse/jdt/internal/core/nd/db/Chunk;

  private static void lambda$0(org.eclipse.core.runtime.preferences.IEclipsePreferences, org.eclipse.core.runtime.preferences.IEclipsePreferences$PreferenceChangeEvent);
    descriptor: (Lorg/eclipse/core/runtime/preferences/IEclipsePreferences;Lorg/eclipse/core/runtime/preferences/IEclipsePreferences$PreferenceChangeEvent;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=2
        start local 1 // org.eclipse.core.runtime.preferences.IEclipsePreferences$PreferenceChangeEvent event
         0: .line 38
            aload 1 /* event */
            invokevirtual org.eclipse.core.runtime.preferences.IEclipsePreferences$PreferenceChangeEvent.getKey:()Ljava/lang/String;
            astore 2 /* key */
        start local 2 // java.lang.String key
         1: .line 39
            aload 2 /* key */
            ldc "chunkCacheSizeMb"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            aload 2 /* key */
            ldc "chunkCacheSizePercent"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ior
            ifeq 3
         2: .line 40
            getstatic org.eclipse.jdt.internal.core.nd.db.ChunkCache.sSharedInstance:Lorg/eclipse/jdt/internal/core/nd/db/ChunkCache;
            aload 0
            invokestatic org.eclipse.jdt.internal.core.nd.db.ChunkCache.getChunkCacheSize:(Lorg/eclipse/core/runtime/preferences/IEclipsePreferences;)J
            invokevirtual org.eclipse.jdt.internal.core.nd.db.ChunkCache.setMaxSize:(J)V
        end local 2 // java.lang.String key
         3: .line 42
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.eclipse.core.runtime.preferences.IEclipsePreferences$PreferenceChangeEvent event
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     1  event  Lorg/eclipse/core/runtime/preferences/IEclipsePreferences$PreferenceChangeEvent;
            1    3     2    key  Ljava/lang/String;
}
SourceFile: "ChunkCache.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles
  public abstract IPreferenceChangeListener = org.eclipse.core.runtime.preferences.IEclipsePreferences$IPreferenceChangeListener of org.eclipse.core.runtime.preferences.IEclipsePreferences
  public final PreferenceChangeEvent = org.eclipse.core.runtime.preferences.IEclipsePreferences$PreferenceChangeEvent of org.eclipse.core.runtime.preferences.IEclipsePreferences