final class org.eclipse.jdt.internal.core.nd.db.Chunk
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: org.eclipse.jdt.internal.core.nd.db.Chunk
  super_class: java.lang.Object
{
  private final byte[] fBuffer;
    descriptor: [B
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  final org.eclipse.jdt.internal.core.nd.db.Database fDatabase;
    descriptor: Lorg/eclipse/jdt/internal/core/nd/db/Database;
    flags: (0x0010) ACC_FINAL

  final int fSequenceNumber;
    descriptor: I
    flags: (0x0010) ACC_FINAL

  boolean fDirty;
    descriptor: Z
    flags: (0x0000) 

  boolean fCacheHitFlag;
    descriptor: Z
    flags: (0x0000) 

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

  static final boolean $assertionsDisabled;
    descriptor: Z
    flags: (0x1018) ACC_STATIC, ACC_FINAL, ACC_SYNTHETIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 25
            ldc Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            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.eclipse.jdt.internal.core.nd.db.Chunk.$assertionsDisabled:Z
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void <init>(org.eclipse.jdt.internal.core.nd.db.Database, int);
    descriptor: (Lorg/eclipse/jdt/internal/core/nd/db/Database;I)V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
        start local 1 // org.eclipse.jdt.internal.core.nd.db.Database db
        start local 2 // int sequenceNumber
         0: .line 50
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 26
            aload 0 /* this */
            sipush 4096
            newarray 8
            putfield org.eclipse.jdt.internal.core.nd.db.Chunk.fBuffer:[B
         2: .line 48
            aload 0 /* this */
            iconst_m1
            putfield org.eclipse.jdt.internal.core.nd.db.Chunk.fCacheIndex:I
         3: .line 51
            aload 0 /* this */
            aload 1 /* db */
            putfield org.eclipse.jdt.internal.core.nd.db.Chunk.fDatabase:Lorg/eclipse/jdt/internal/core/nd/db/Database;
         4: .line 52
            aload 0 /* this */
            iload 2 /* sequenceNumber */
            putfield org.eclipse.jdt.internal.core.nd.db.Chunk.fSequenceNumber:I
         5: .line 53
            return
        end local 2 // int sequenceNumber
        end local 1 // org.eclipse.jdt.internal.core.nd.db.Database db
        end local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    6     0            this  Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            0    6     1              db  Lorg/eclipse/jdt/internal/core/nd/db/Database;
            0    6     2  sequenceNumber  I
    MethodParameters:
                Name  Flags
      db              
      sequenceNumber  

  public void makeDirty();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
         0: .line 56
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fSequenceNumber:I
            iconst_1
            if_icmplt 6
         1: .line 57
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fDatabase:Lorg/eclipse/jdt/internal/core/nd/db/Database;
            getfield org.eclipse.jdt.internal.core.nd.db.Database.fChunks:[Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fSequenceNumber:I
            aaload
            astore 1 /* chunk */
        start local 1 // org.eclipse.jdt.internal.core.nd.db.Chunk chunk
         2: .line 58
            aload 1 /* chunk */
            aload 0 /* this */
            if_acmpeq 6
         3: .line 59
            new java.lang.IllegalStateException
            dup
            new java.lang.StringBuilder
            dup
            ldc "CHUNK "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fSequenceNumber:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ": found two copies. Copy 1: "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         4: .line 60
            aload 0 /* this */
            invokestatic java.lang.System.identityHashCode:(Ljava/lang/Object;)I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ", Copy 2: "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 1 /* chunk */
            invokestatic java.lang.System.identityHashCode:(Ljava/lang/Object;)I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         5: .line 59
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // org.eclipse.jdt.internal.core.nd.db.Chunk chunk
         6: .line 63
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fDirty:Z
            ifne 18
         7: .line 64
            getstatic org.eclipse.jdt.internal.core.nd.db.Database.DEBUG_PAGE_CACHE:Z
            ifeq 11
         8: .line 65
            getstatic java.lang.System.out:Ljava/io/PrintStream;
         9: .line 66
            new java.lang.StringBuilder
            dup
            ldc "CHUNK "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fSequenceNumber:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ": dirtied - instance "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            invokestatic java.lang.System.identityHashCode:(Ljava/lang/Object;)I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        10: .line 65
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
        11: .line 68
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fSequenceNumber:I
            iconst_1
            if_icmplt 16
        12: .line 69
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fDatabase:Lorg/eclipse/jdt/internal/core/nd/db/Database;
            getfield org.eclipse.jdt.internal.core.nd.db.Database.fMostRecentlyFetchedChunk:Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            aload 0 /* this */
            if_acmpeq 16
        13: .line 70
            new java.lang.IllegalStateException
            dup
            new java.lang.StringBuilder
            dup
            ldc "CHUNK "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fSequenceNumber:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
        14: .line 71
            ldc " dirtied out of order: Only the most-recently-fetched chunk is allowed to be dirtied"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        15: .line 70
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
        16: .line 73
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield org.eclipse.jdt.internal.core.nd.db.Chunk.fDirty:Z
        17: .line 74
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fDatabase:Lorg/eclipse/jdt/internal/core/nd/db/Database;
            aload 0 /* this */
            invokevirtual org.eclipse.jdt.internal.core.nd.db.Database.chunkDirtied:(Lorg/eclipse/jdt/internal/core/nd/db/Chunk;)V
        18: .line 76
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   19     0   this  Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            2    6     1  chunk  Lorg/eclipse/jdt/internal/core/nd/db/Chunk;

  void read();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=6, locals=2, args_size=1
        start local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
         0: .line 80
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fBuffer:[B
            invokestatic java.nio.ByteBuffer.wrap:([B)Ljava/nio/ByteBuffer;
            astore 1 /* buf */
        start local 1 // java.nio.ByteBuffer buf
         1: .line 81
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fDatabase:Lorg/eclipse/jdt/internal/core/nd/db/Database;
            aload 1 /* buf */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fSequenceNumber:I
            i2l
            ldc 4096
            lmul
            invokevirtual org.eclipse.jdt.internal.core.nd.db.Database.read:(Ljava/nio/ByteBuffer;J)V
        end local 1 // java.nio.ByteBuffer buf
         2: .line 82
            goto 5
      StackMap locals:
      StackMap stack: java.io.IOException
         3: astore 1 /* e */
        start local 1 // java.io.IOException e
         4: .line 83
            new org.eclipse.jdt.internal.core.nd.db.IndexException
            dup
            new org.eclipse.jdt.internal.core.nd.db.DBStatus
            dup
            aload 1 /* e */
            invokespecial org.eclipse.jdt.internal.core.nd.db.DBStatus.<init>:(Ljava/io/IOException;)V
            invokespecial org.eclipse.jdt.internal.core.nd.db.IndexException.<init>:(Lorg/eclipse/core/runtime/IStatus;)V
            athrow
        end local 1 // java.io.IOException e
         5: .line 85
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            1    2     1   buf  Ljava/nio/ByteBuffer;
            4    5     1     e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0     2       3  Class java.io.IOException
    Exceptions:
      throws org.eclipse.jdt.internal.core.nd.db.IndexException

  boolean flush();
    descriptor: ()Z
    flags: (0x0000) 
    Code:
      stack=6, locals=3, args_size=1
        start local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
         0: .line 92
            getstatic org.eclipse.jdt.internal.core.nd.db.Database.DEBUG_PAGE_CACHE:Z
            ifeq 4
         1: .line 93
            getstatic java.lang.System.out:Ljava/io/PrintStream;
         2: .line 94
            new java.lang.StringBuilder
            dup
            ldc "CHUNK "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fSequenceNumber:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ": flushing - instance "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            invokestatic java.lang.System.identityHashCode:(Ljava/lang/Object;)I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         3: .line 93
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         4: .line 96
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 1 /* wasCanceled */
        start local 1 // boolean wasCanceled
         5: .line 98
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fBuffer:[B
            invokestatic java.nio.ByteBuffer.wrap:([B)Ljava/nio/ByteBuffer;
            astore 2 /* buf */
        start local 2 // java.nio.ByteBuffer buf
         6: .line 99
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fDatabase:Lorg/eclipse/jdt/internal/core/nd/db/Database;
            aload 2 /* buf */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fSequenceNumber:I
            i2l
            ldc 4096
            lmul
            invokevirtual org.eclipse.jdt.internal.core.nd.db.Database.write:(Ljava/nio/ByteBuffer;J)Z
            istore 1 /* wasCanceled */
        end local 2 // java.nio.ByteBuffer buf
         7: .line 100
            goto 10
      StackMap locals: org.eclipse.jdt.internal.core.nd.db.Chunk int
      StackMap stack: java.io.IOException
         8: astore 2 /* e */
        start local 2 // java.io.IOException e
         9: .line 101
            new org.eclipse.jdt.internal.core.nd.db.IndexException
            dup
            new org.eclipse.jdt.internal.core.nd.db.DBStatus
            dup
            aload 2 /* e */
            invokespecial org.eclipse.jdt.internal.core.nd.db.DBStatus.<init>:(Ljava/io/IOException;)V
            invokespecial org.eclipse.jdt.internal.core.nd.db.IndexException.<init>:(Lorg/eclipse/core/runtime/IStatus;)V
            athrow
        end local 2 // java.io.IOException e
        10: .line 103
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.jdt.internal.core.nd.db.Chunk.fDirty:Z
        11: .line 104
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fDatabase:Lorg/eclipse/jdt/internal/core/nd/db/Database;
            aload 0 /* this */
            invokevirtual org.eclipse.jdt.internal.core.nd.db.Database.chunkCleaned:(Lorg/eclipse/jdt/internal/core/nd/db/Chunk;)V
        12: .line 105
            iload 1 /* wasCanceled */
            ireturn
        end local 1 // boolean wasCanceled
        end local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   13     0         this  Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            5   13     1  wasCanceled  Z
            6    7     2          buf  Ljava/nio/ByteBuffer;
            9   10     2            e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           5     7       8  Class java.io.IOException
    Exceptions:
      throws org.eclipse.jdt.internal.core.nd.db.IndexException

  static int recPtrToIndex(long);
    descriptor: (J)I
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // long offset
         0: .line 109
            lload 0 /* offset */
            ldc 4095
            land
            l2i
            ireturn
        end local 0 // long offset
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0  offset  J
    MethodParameters:
        Name  Flags
      offset  final

  public void putByte(long, byte);
    descriptor: (JB)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
        start local 1 // long offset
        start local 3 // byte value
         0: .line 113
            aload 0 /* this */
            invokevirtual org.eclipse.jdt.internal.core.nd.db.Chunk.makeDirty:()V
         1: .line 114
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fBuffer:[B
            lload 1 /* offset */
            invokestatic org.eclipse.jdt.internal.core.nd.db.Chunk.recPtrToIndex:(J)I
            iload 3 /* value */
            bastore
         2: .line 115
            aload 0 /* this */
            lload 1 /* offset */
            iconst_1
            invokevirtual org.eclipse.jdt.internal.core.nd.db.Chunk.recordWrite:(JI)V
         3: .line 116
            return
        end local 3 // byte value
        end local 1 // long offset
        end local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            0    4     1  offset  J
            0    4     3   value  B
    MethodParameters:
        Name  Flags
      offset  final
      value   final

  public byte getByte(long);
    descriptor: (J)B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
        start local 1 // long offset
         0: .line 119
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fBuffer:[B
            lload 1 /* offset */
            invokestatic org.eclipse.jdt.internal.core.nd.db.Chunk.recPtrToIndex:(J)I
            baload
            ireturn
        end local 1 // long offset
        end local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            0    1     1  offset  J
    MethodParameters:
        Name  Flags
      offset  final

  public byte[] getBytes();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
         0: .line 126
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fBuffer:[B
            arraylength
            newarray 8
            astore 1 /* bytes */
        start local 1 // byte[] bytes
         1: .line 127
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fBuffer:[B
            iconst_0
            aload 1 /* bytes */
            iconst_0
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fBuffer:[B
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         2: .line 128
            aload 1 /* bytes */
            areturn
        end local 1 // byte[] bytes
        end local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            1    3     1  bytes  [B

  public byte[] getBytes(long, int);
    descriptor: (JI)[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=3
        start local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
        start local 1 // long offset
        start local 3 // int length
         0: .line 132
            iload 3 /* length */
            newarray 8
            astore 4 /* bytes */
        start local 4 // byte[] bytes
         1: .line 133
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fBuffer:[B
            lload 1 /* offset */
            invokestatic org.eclipse.jdt.internal.core.nd.db.Chunk.recPtrToIndex:(J)I
            aload 4 /* bytes */
            iconst_0
            iload 3 /* length */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         2: .line 134
            aload 4 /* bytes */
            areturn
        end local 4 // byte[] bytes
        end local 3 // int length
        end local 1 // long offset
        end local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            0    3     1  offset  J
            0    3     3  length  I
            1    3     4   bytes  [B
    MethodParameters:
        Name  Flags
      offset  final
      length  final

  public void putBytes(long, byte[]);
    descriptor: (J[B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
        start local 1 // long offset
        start local 3 // byte[] bytes
         0: .line 138
            aload 0 /* this */
            invokevirtual org.eclipse.jdt.internal.core.nd.db.Chunk.makeDirty:()V
         1: .line 139
            aload 3 /* bytes */
            iconst_0
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fBuffer:[B
            lload 1 /* offset */
            invokestatic org.eclipse.jdt.internal.core.nd.db.Chunk.recPtrToIndex:(J)I
            aload 3 /* bytes */
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         2: .line 140
            aload 0 /* this */
            lload 1 /* offset */
            aload 3 /* bytes */
            arraylength
            invokevirtual org.eclipse.jdt.internal.core.nd.db.Chunk.recordWrite:(JI)V
         3: .line 141
            return
        end local 3 // byte[] bytes
        end local 1 // long offset
        end local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            0    4     1  offset  J
            0    4     3   bytes  [B
    MethodParameters:
        Name  Flags
      offset  final
      bytes   final

  public void putInt(long, int);
    descriptor: (JI)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
        start local 1 // long offset
        start local 3 // int value
         0: .line 144
            aload 0 /* this */
            invokevirtual org.eclipse.jdt.internal.core.nd.db.Chunk.makeDirty:()V
         1: .line 145
            lload 1 /* offset */
            invokestatic org.eclipse.jdt.internal.core.nd.db.Chunk.recPtrToIndex:(J)I
            istore 4 /* idx */
        start local 4 // int idx
         2: .line 146
            iload 3 /* value */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fBuffer:[B
            iload 4 /* idx */
            invokestatic org.eclipse.jdt.internal.core.nd.db.Chunk.putInt:(I[BI)V
         3: .line 147
            aload 0 /* this */
            lload 1 /* offset */
            iconst_4
            invokevirtual org.eclipse.jdt.internal.core.nd.db.Chunk.recordWrite:(JI)V
         4: .line 148
            return
        end local 4 // int idx
        end local 3 // int value
        end local 1 // long offset
        end local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            0    5     1  offset  J
            0    5     3   value  I
            2    5     4     idx  I
    MethodParameters:
        Name  Flags
      offset  final
      value   final

  static final void putInt(int, byte[], int);
    descriptor: (I[BI)V
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // int value
        start local 1 // byte[] buffer
        start local 2 // int idx
         0: .line 151
            aload 1 /* buffer */
            iload 2 /* idx */
            iload 0 /* value */
            bipush 24
            ishr
            i2b
            bastore
         1: .line 152
            aload 1 /* buffer */
            iinc 2 /* idx */ 1
            iload 2 /* idx */
            iload 0 /* value */
            bipush 16
            ishr
            i2b
            bastore
         2: .line 153
            aload 1 /* buffer */
            iinc 2 /* idx */ 1
            iload 2 /* idx */
            iload 0 /* value */
            bipush 8
            ishr
            i2b
            bastore
         3: .line 154
            aload 1 /* buffer */
            iinc 2 /* idx */ 1
            iload 2 /* idx */
            iload 0 /* value */
            i2b
            bastore
         4: .line 155
            return
        end local 2 // int idx
        end local 1 // byte[] buffer
        end local 0 // int value
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0   value  I
            0    5     1  buffer  [B
            0    5     2     idx  I
    MethodParameters:
        Name  Flags
      value   final
      buffer  final
      idx     

  public int getInt(long);
    descriptor: (J)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
        start local 1 // long offset
         0: .line 158
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fBuffer:[B
            lload 1 /* offset */
            invokestatic org.eclipse.jdt.internal.core.nd.db.Chunk.recPtrToIndex:(J)I
            invokestatic org.eclipse.jdt.internal.core.nd.db.Chunk.getInt:([BI)I
            ireturn
        end local 1 // long offset
        end local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            0    1     1  offset  J
    MethodParameters:
        Name  Flags
      offset  final

  static final int getInt(byte[], int);
    descriptor: ([BI)I
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // byte[] buffer
        start local 1 // int idx
         0: .line 162
            aload 0 /* buffer */
            iload 1 /* idx */
            baload
            sipush 255
            iand
            bipush 24
            ishl
         1: .line 163
            aload 0 /* buffer */
            iinc 1 /* idx */ 1
            iload 1 /* idx */
            baload
            sipush 255
            iand
            bipush 16
            ishl
         2: .line 162
            ior
         3: .line 164
            aload 0 /* buffer */
            iinc 1 /* idx */ 1
            iload 1 /* idx */
            baload
            sipush 255
            iand
            bipush 8
            ishl
         4: .line 162
            ior
         5: .line 165
            aload 0 /* buffer */
            iinc 1 /* idx */ 1
            iload 1 /* idx */
            baload
            sipush 255
            iand
            iconst_0
            ishl
         6: .line 162
            ior
            ireturn
        end local 1 // int idx
        end local 0 // byte[] buffer
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0  buffer  [B
            0    7     1     idx  I
    MethodParameters:
        Name  Flags
      buffer  final
      idx     

  static int compressFreeRecPtr(long);
    descriptor: (J)I
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // long value
         0: .line 174
            getstatic org.eclipse.jdt.internal.core.nd.db.Chunk.$assertionsDisabled:Z
            ifne 1
            lload 0 /* value */
            ldc 7
            land
            lconst_0
            lcmp
            ifeq 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 175
      StackMap locals:
      StackMap stack:
            lload 0 /* value */
            iconst_3
            lshr
            l2i
            istore 2 /* dense */
        start local 2 // int dense
         2: .line 176
            iload 2 /* dense */
            ireturn
        end local 2 // int dense
        end local 0 // long value
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0  value  J
            2    3     2  dense  I
    MethodParameters:
       Name  Flags
      value  final

  static long expandToFreeRecPtr(int);
    descriptor: (I)J
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // int value
         0: .line 191
            iload 0 /* value */
            i2l
            ldc 4294967295
            land
            lstore 1 /* address */
        start local 1 // long address
         1: .line 192
            lload 1 /* address */
            iconst_3
            lshl
            lreturn
        end local 1 // long address
        end local 0 // int value
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0    value  I
            1    2     1  address  J
    MethodParameters:
       Name  Flags
      value  

  public void putRecPtr(long, long);
    descriptor: (JJ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=3
        start local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
        start local 1 // long offset
        start local 3 // long value
         0: .line 200
            aload 0 /* this */
            invokevirtual org.eclipse.jdt.internal.core.nd.db.Chunk.makeDirty:()V
         1: .line 201
            lload 1 /* offset */
            invokestatic org.eclipse.jdt.internal.core.nd.db.Chunk.recPtrToIndex:(J)I
            istore 5 /* idx */
        start local 5 // int idx
         2: .line 202
            lload 3 /* value */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fBuffer:[B
            iload 5 /* idx */
            invokestatic org.eclipse.jdt.internal.core.nd.db.Database.putRecPtr:(J[BI)V
         3: .line 203
            aload 0 /* this */
            lload 1 /* offset */
            iconst_4
            invokevirtual org.eclipse.jdt.internal.core.nd.db.Chunk.recordWrite:(JI)V
         4: .line 204
            return
        end local 5 // int idx
        end local 3 // long value
        end local 1 // long offset
        end local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            0    5     1  offset  J
            0    5     3   value  J
            2    5     5     idx  I
    MethodParameters:
        Name  Flags
      offset  final
      value   final

  public void putFreeRecPtr(long, long);
    descriptor: (JJ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=3
        start local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
        start local 1 // long offset
        start local 3 // long value
         0: .line 211
            aload 0 /* this */
            invokevirtual org.eclipse.jdt.internal.core.nd.db.Chunk.makeDirty:()V
         1: .line 212
            lload 1 /* offset */
            invokestatic org.eclipse.jdt.internal.core.nd.db.Chunk.recPtrToIndex:(J)I
            istore 5 /* idx */
        start local 5 // int idx
         2: .line 213
            lload 3 /* value */
            invokestatic org.eclipse.jdt.internal.core.nd.db.Chunk.compressFreeRecPtr:(J)I
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fBuffer:[B
            iload 5 /* idx */
            invokestatic org.eclipse.jdt.internal.core.nd.db.Chunk.putInt:(I[BI)V
         3: .line 214
            aload 0 /* this */
            lload 1 /* offset */
            iconst_4
            invokevirtual org.eclipse.jdt.internal.core.nd.db.Chunk.recordWrite:(JI)V
         4: .line 215
            return
        end local 5 // int idx
        end local 3 // long value
        end local 1 // long offset
        end local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            0    5     1  offset  J
            0    5     3   value  J
            2    5     5     idx  I
    MethodParameters:
        Name  Flags
      offset  final
      value   final

  public long getRecPtr(long);
    descriptor: (J)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
        start local 1 // long offset
         0: .line 218
            lload 1 /* offset */
            invokestatic org.eclipse.jdt.internal.core.nd.db.Chunk.recPtrToIndex:(J)I
            istore 3 /* idx */
        start local 3 // int idx
         1: .line 219
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fBuffer:[B
            iload 3 /* idx */
            invokestatic org.eclipse.jdt.internal.core.nd.db.Database.getRecPtr:([BI)J
            lreturn
        end local 3 // int idx
        end local 1 // long offset
        end local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            0    2     1  offset  J
            1    2     3     idx  I
    MethodParameters:
        Name  Flags
      offset  final

  public long getFreeRecPtr(long);
    descriptor: (J)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
        start local 1 // long offset
         0: .line 223
            lload 1 /* offset */
            invokestatic org.eclipse.jdt.internal.core.nd.db.Chunk.recPtrToIndex:(J)I
            istore 3 /* idx */
        start local 3 // int idx
         1: .line 224
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fBuffer:[B
            iload 3 /* idx */
            invokestatic org.eclipse.jdt.internal.core.nd.db.Chunk.getInt:([BI)I
            istore 4 /* value */
        start local 4 // int value
         2: .line 225
            iload 4 /* value */
            invokestatic org.eclipse.jdt.internal.core.nd.db.Chunk.expandToFreeRecPtr:(I)J
            lreturn
        end local 4 // int value
        end local 3 // int idx
        end local 1 // long offset
        end local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            0    3     1  offset  J
            1    3     3     idx  I
            2    3     4   value  I
    MethodParameters:
        Name  Flags
      offset  final

  public void put3ByteUnsignedInt(long, int);
    descriptor: (JI)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
        start local 1 // long offset
        start local 3 // int value
         0: .line 229
            aload 0 /* this */
            invokevirtual org.eclipse.jdt.internal.core.nd.db.Chunk.makeDirty:()V
         1: .line 230
            lload 1 /* offset */
            invokestatic org.eclipse.jdt.internal.core.nd.db.Chunk.recPtrToIndex:(J)I
            istore 4 /* idx */
        start local 4 // int idx
         2: .line 231
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fBuffer:[B
            iload 4 /* idx */
            iload 3 /* value */
            bipush 16
            ishr
            i2b
            bastore
         3: .line 232
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fBuffer:[B
            iinc 4 /* idx */ 1
            iload 4 /* idx */
            iload 3 /* value */
            bipush 8
            ishr
            i2b
            bastore
         4: .line 233
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fBuffer:[B
            iinc 4 /* idx */ 1
            iload 4 /* idx */
            iload 3 /* value */
            i2b
            bastore
         5: .line 234
            aload 0 /* this */
            lload 1 /* offset */
            iconst_3
            invokevirtual org.eclipse.jdt.internal.core.nd.db.Chunk.recordWrite:(JI)V
         6: .line 235
            return
        end local 4 // int idx
        end local 3 // int value
        end local 1 // long offset
        end local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            0    7     1  offset  J
            0    7     3   value  I
            2    7     4     idx  I
    MethodParameters:
        Name  Flags
      offset  final
      value   final

  public int get3ByteUnsignedInt(long);
    descriptor: (J)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
        start local 1 // long offset
         0: .line 238
            lload 1 /* offset */
            invokestatic org.eclipse.jdt.internal.core.nd.db.Chunk.recPtrToIndex:(J)I
            istore 3 /* idx */
        start local 3 // int idx
         1: .line 239
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fBuffer:[B
            iload 3 /* idx */
            baload
            sipush 255
            iand
            bipush 16
            ishl
         2: .line 240
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fBuffer:[B
            iinc 3 /* idx */ 1
            iload 3 /* idx */
            baload
            sipush 255
            iand
            bipush 8
            ishl
         3: .line 239
            ior
         4: .line 241
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fBuffer:[B
            iinc 3 /* idx */ 1
            iload 3 /* idx */
            baload
            sipush 255
            iand
            iconst_0
            ishl
         5: .line 239
            ior
            ireturn
        end local 3 // int idx
        end local 1 // long offset
        end local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            0    6     1  offset  J
            1    6     3     idx  I
    MethodParameters:
        Name  Flags
      offset  final

  public void putShort(long, short);
    descriptor: (JS)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
        start local 1 // long offset
        start local 3 // short value
         0: .line 245
            aload 0 /* this */
            invokevirtual org.eclipse.jdt.internal.core.nd.db.Chunk.makeDirty:()V
         1: .line 246
            lload 1 /* offset */
            invokestatic org.eclipse.jdt.internal.core.nd.db.Chunk.recPtrToIndex:(J)I
            istore 4 /* idx */
        start local 4 // int idx
         2: .line 247
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fBuffer:[B
            iload 4 /* idx */
            iload 3 /* value */
            bipush 8
            ishr
            i2b
            bastore
         3: .line 248
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fBuffer:[B
            iinc 4 /* idx */ 1
            iload 4 /* idx */
            iload 3 /* value */
            i2b
            bastore
         4: .line 249
            aload 0 /* this */
            lload 1 /* offset */
            iconst_2
            invokevirtual org.eclipse.jdt.internal.core.nd.db.Chunk.recordWrite:(JI)V
         5: .line 250
            return
        end local 4 // int idx
        end local 3 // short value
        end local 1 // long offset
        end local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            0    6     1  offset  J
            0    6     3   value  S
            2    6     4     idx  I
    MethodParameters:
        Name  Flags
      offset  final
      value   final

  private void recordWrite(long, int);
    descriptor: (JI)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
        start local 1 // long offset
        start local 3 // int size
         0: .line 253
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fDatabase:Lorg/eclipse/jdt/internal/core/nd/db/Database;
            invokevirtual org.eclipse.jdt.internal.core.nd.db.Database.getLog:()Lorg/eclipse/jdt/internal/core/nd/db/ModificationLog;
            lload 1 /* offset */
            iload 3 /* size */
            invokevirtual org.eclipse.jdt.internal.core.nd.db.ModificationLog.recordWrite:(JI)V
         1: .line 254
            return
        end local 3 // int size
        end local 1 // long offset
        end local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            0    2     1  offset  J
            0    2     3    size  I
    MethodParameters:
        Name  Flags
      offset  
      size    

  public short getShort(long);
    descriptor: (J)S
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
        start local 1 // long offset
         0: .line 257
            lload 1 /* offset */
            invokestatic org.eclipse.jdt.internal.core.nd.db.Chunk.recPtrToIndex:(J)I
            istore 3 /* idx */
        start local 3 // int idx
         1: .line 258
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fBuffer:[B
            iload 3 /* idx */
            baload
            bipush 8
            ishl
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fBuffer:[B
            iinc 3 /* idx */ 1
            iload 3 /* idx */
            baload
            sipush 255
            iand
            ior
            i2s
            ireturn
        end local 3 // int idx
        end local 1 // long offset
        end local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            0    2     1  offset  J
            1    2     3     idx  I
    MethodParameters:
        Name  Flags
      offset  final

  public long getLong(long);
    descriptor: (J)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=2
        start local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
        start local 1 // long offset
         0: .line 262
            lload 1 /* offset */
            invokestatic org.eclipse.jdt.internal.core.nd.db.Chunk.recPtrToIndex:(J)I
            istore 3 /* idx */
        start local 3 // int idx
         1: .line 263
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fBuffer:[B
            iload 3 /* idx */
            baload
            i2l
            ldc 255
            land
            bipush 56
            lshl
         2: .line 264
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fBuffer:[B
            iinc 3 /* idx */ 1
            iload 3 /* idx */
            baload
            i2l
            ldc 255
            land
            bipush 48
            lshl
         3: .line 263
            lor
         4: .line 265
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fBuffer:[B
            iinc 3 /* idx */ 1
            iload 3 /* idx */
            baload
            i2l
            ldc 255
            land
            bipush 40
            lshl
         5: .line 263
            lor
         6: .line 266
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fBuffer:[B
            iinc 3 /* idx */ 1
            iload 3 /* idx */
            baload
            i2l
            ldc 255
            land
            bipush 32
            lshl
         7: .line 263
            lor
         8: .line 267
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fBuffer:[B
            iinc 3 /* idx */ 1
            iload 3 /* idx */
            baload
            i2l
            ldc 255
            land
            bipush 24
            lshl
         9: .line 263
            lor
        10: .line 268
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fBuffer:[B
            iinc 3 /* idx */ 1
            iload 3 /* idx */
            baload
            i2l
            ldc 255
            land
            bipush 16
            lshl
        11: .line 263
            lor
        12: .line 269
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fBuffer:[B
            iinc 3 /* idx */ 1
            iload 3 /* idx */
            baload
            i2l
            ldc 255
            land
            bipush 8
            lshl
        13: .line 263
            lor
        14: .line 270
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fBuffer:[B
            iinc 3 /* idx */ 1
            iload 3 /* idx */
            baload
            i2l
            ldc 255
            land
            iconst_0
            lshl
        15: .line 263
            lor
            lreturn
        end local 3 // int idx
        end local 1 // long offset
        end local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   16     0    this  Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            0   16     1  offset  J
            1   16     3     idx  I
    MethodParameters:
        Name  Flags
      offset  final

  public double getDouble(long);
    descriptor: (J)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
        start local 1 // long offset
         0: .line 274
            aload 0 /* this */
            lload 1 /* offset */
            invokevirtual org.eclipse.jdt.internal.core.nd.db.Chunk.getLong:(J)J
            invokestatic java.lang.Double.longBitsToDouble:(J)D
            dreturn
        end local 1 // long offset
        end local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            0    1     1  offset  J
    MethodParameters:
        Name  Flags
      offset  

  public float getFloat(long);
    descriptor: (J)F
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
        start local 1 // long offset
         0: .line 278
            aload 0 /* this */
            lload 1 /* offset */
            invokevirtual org.eclipse.jdt.internal.core.nd.db.Chunk.getInt:(J)I
            invokestatic java.lang.Float.intBitsToFloat:(I)F
            freturn
        end local 1 // long offset
        end local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            0    1     1  offset  J
    MethodParameters:
        Name  Flags
      offset  

  public void putLong(long, long);
    descriptor: (JJ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=3
        start local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
        start local 1 // long offset
        start local 3 // long value
         0: .line 282
            aload 0 /* this */
            invokevirtual org.eclipse.jdt.internal.core.nd.db.Chunk.makeDirty:()V
         1: .line 283
            lload 1 /* offset */
            invokestatic org.eclipse.jdt.internal.core.nd.db.Chunk.recPtrToIndex:(J)I
            istore 5 /* idx */
        start local 5 // int idx
         2: .line 285
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fBuffer:[B
            iload 5 /* idx */
            lload 3 /* value */
            bipush 56
            lshr
            l2i
            i2b
            bastore
         3: .line 286
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fBuffer:[B
            iinc 5 /* idx */ 1
            iload 5 /* idx */
            lload 3 /* value */
            bipush 48
            lshr
            l2i
            i2b
            bastore
         4: .line 287
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fBuffer:[B
            iinc 5 /* idx */ 1
            iload 5 /* idx */
            lload 3 /* value */
            bipush 40
            lshr
            l2i
            i2b
            bastore
         5: .line 288
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fBuffer:[B
            iinc 5 /* idx */ 1
            iload 5 /* idx */
            lload 3 /* value */
            bipush 32
            lshr
            l2i
            i2b
            bastore
         6: .line 289
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fBuffer:[B
            iinc 5 /* idx */ 1
            iload 5 /* idx */
            lload 3 /* value */
            bipush 24
            lshr
            l2i
            i2b
            bastore
         7: .line 290
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fBuffer:[B
            iinc 5 /* idx */ 1
            iload 5 /* idx */
            lload 3 /* value */
            bipush 16
            lshr
            l2i
            i2b
            bastore
         8: .line 291
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fBuffer:[B
            iinc 5 /* idx */ 1
            iload 5 /* idx */
            lload 3 /* value */
            bipush 8
            lshr
            l2i
            i2b
            bastore
         9: .line 292
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fBuffer:[B
            iinc 5 /* idx */ 1
            iload 5 /* idx */
            lload 3 /* value */
            l2i
            i2b
            bastore
        10: .line 293
            aload 0 /* this */
            lload 1 /* offset */
            bipush 8
            invokevirtual org.eclipse.jdt.internal.core.nd.db.Chunk.recordWrite:(JI)V
        11: .line 294
            return
        end local 5 // int idx
        end local 3 // long value
        end local 1 // long offset
        end local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   12     0    this  Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            0   12     1  offset  J
            0   12     3   value  J
            2   12     5     idx  I
    MethodParameters:
        Name  Flags
      offset  final
      value   final

  public void putChar(long, char);
    descriptor: (JC)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
        start local 1 // long offset
        start local 3 // char value
         0: .line 297
            aload 0 /* this */
            invokevirtual org.eclipse.jdt.internal.core.nd.db.Chunk.makeDirty:()V
         1: .line 298
            lload 1 /* offset */
            invokestatic org.eclipse.jdt.internal.core.nd.db.Chunk.recPtrToIndex:(J)I
            istore 4 /* idx */
        start local 4 // int idx
         2: .line 299
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fBuffer:[B
            iload 4 /* idx */
            iload 3 /* value */
            bipush 8
            ishr
            i2b
            bastore
         3: .line 300
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fBuffer:[B
            iinc 4 /* idx */ 1
            iload 4 /* idx */
            iload 3 /* value */
            i2b
            bastore
         4: .line 301
            aload 0 /* this */
            lload 1 /* offset */
            iconst_2
            invokevirtual org.eclipse.jdt.internal.core.nd.db.Chunk.recordWrite:(JI)V
         5: .line 302
            return
        end local 4 // int idx
        end local 3 // char value
        end local 1 // long offset
        end local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            0    6     1  offset  J
            0    6     3   value  C
            2    6     4     idx  I
    MethodParameters:
        Name  Flags
      offset  final
      value   final

  public void putChars(long, char[], int, int);
    descriptor: (J[CII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=10, args_size=5
        start local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
        start local 1 // long offset
        start local 3 // char[] chars
        start local 4 // int start
        start local 5 // int len
         0: .line 305
            aload 0 /* this */
            invokevirtual org.eclipse.jdt.internal.core.nd.db.Chunk.makeDirty:()V
         1: .line 306
            lload 1 /* offset */
            invokestatic org.eclipse.jdt.internal.core.nd.db.Chunk.recPtrToIndex:(J)I
            iconst_1
            isub
            istore 6 /* idx */
        start local 6 // int idx
         2: .line 307
            iload 4 /* start */
            iload 5 /* len */
            iadd
            istore 7 /* end */
        start local 7 // int end
         3: .line 308
            iload 4 /* start */
            istore 8 /* i */
        start local 8 // int i
         4: goto 9
         5: .line 309
      StackMap locals: int int int
      StackMap stack:
            aload 3 /* chars */
            iload 8 /* i */
            caload
            istore 9 /* value */
        start local 9 // char value
         6: .line 310
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fBuffer:[B
            iinc 6 /* idx */ 1
            iload 6 /* idx */
            iload 9 /* value */
            bipush 8
            ishr
            i2b
            bastore
         7: .line 311
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fBuffer:[B
            iinc 6 /* idx */ 1
            iload 6 /* idx */
            iload 9 /* value */
            i2b
            bastore
        end local 9 // char value
         8: .line 308
            iinc 8 /* i */ 1
      StackMap locals:
      StackMap stack:
         9: iload 8 /* i */
            iload 7 /* end */
            if_icmplt 5
        end local 8 // int i
        10: .line 313
            aload 0 /* this */
            lload 1 /* offset */
            iload 5 /* len */
            iconst_2
            imul
            invokevirtual org.eclipse.jdt.internal.core.nd.db.Chunk.recordWrite:(JI)V
        11: .line 314
            return
        end local 7 // int end
        end local 6 // int idx
        end local 5 // int len
        end local 4 // int start
        end local 3 // char[] chars
        end local 1 // long offset
        end local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   12     0    this  Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            0   12     1  offset  J
            0   12     3   chars  [C
            0   12     4   start  I
            0   12     5     len  I
            2   12     6     idx  I
            3   12     7     end  I
            4   10     8       i  I
            6    8     9   value  C
    MethodParameters:
        Name  Flags
      offset  final
      chars   
      start   
      len     

  public void putCharsAsBytes(long, char[], int, int);
    descriptor: (J[CII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=10, args_size=5
        start local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
        start local 1 // long offset
        start local 3 // char[] chars
        start local 4 // int start
        start local 5 // int len
         0: .line 317
            aload 0 /* this */
            invokevirtual org.eclipse.jdt.internal.core.nd.db.Chunk.makeDirty:()V
         1: .line 318
            lload 1 /* offset */
            invokestatic org.eclipse.jdt.internal.core.nd.db.Chunk.recPtrToIndex:(J)I
            iconst_1
            isub
            istore 6 /* idx */
        start local 6 // int idx
         2: .line 319
            iload 4 /* start */
            iload 5 /* len */
            iadd
            istore 7 /* end */
        start local 7 // int end
         3: .line 320
            iload 4 /* start */
            istore 8 /* i */
        start local 8 // int i
         4: goto 8
         5: .line 321
      StackMap locals: int int int
      StackMap stack:
            aload 3 /* chars */
            iload 8 /* i */
            caload
            istore 9 /* value */
        start local 9 // char value
         6: .line 322
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fBuffer:[B
            iinc 6 /* idx */ 1
            iload 6 /* idx */
            iload 9 /* value */
            i2b
            bastore
        end local 9 // char value
         7: .line 320
            iinc 8 /* i */ 1
      StackMap locals:
      StackMap stack:
         8: iload 8 /* i */
            iload 7 /* end */
            if_icmplt 5
        end local 8 // int i
         9: .line 324
            aload 0 /* this */
            lload 1 /* offset */
            iload 5 /* len */
            invokevirtual org.eclipse.jdt.internal.core.nd.db.Chunk.recordWrite:(JI)V
        10: .line 325
            return
        end local 7 // int end
        end local 6 // int idx
        end local 5 // int len
        end local 4 // int start
        end local 3 // char[] chars
        end local 1 // long offset
        end local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   11     0    this  Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            0   11     1  offset  J
            0   11     3   chars  [C
            0   11     4   start  I
            0   11     5     len  I
            2   11     6     idx  I
            3   11     7     end  I
            4    9     8       i  I
            6    7     9   value  C
    MethodParameters:
        Name  Flags
      offset  final
      chars   
      start   
      len     

  public void putDouble(long, double);
    descriptor: (JD)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=3
        start local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
        start local 1 // long offset
        start local 3 // double value
         0: .line 328
            aload 0 /* this */
            lload 1 /* offset */
            dload 3 /* value */
            invokestatic java.lang.Double.doubleToLongBits:(D)J
            invokevirtual org.eclipse.jdt.internal.core.nd.db.Chunk.putLong:(JJ)V
         1: .line 329
            return
        end local 3 // double value
        end local 1 // long offset
        end local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            0    2     1  offset  J
            0    2     3   value  D
    MethodParameters:
        Name  Flags
      offset  final
      value   

  public void putFloat(long, float);
    descriptor: (JF)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
        start local 1 // long offset
        start local 3 // float value
         0: .line 332
            aload 0 /* this */
            lload 1 /* offset */
            fload 3 /* value */
            invokestatic java.lang.Float.floatToIntBits:(F)I
            invokevirtual org.eclipse.jdt.internal.core.nd.db.Chunk.putInt:(JI)V
         1: .line 333
            return
        end local 3 // float value
        end local 1 // long offset
        end local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            0    2     1  offset  J
            0    2     3   value  F
    MethodParameters:
        Name  Flags
      offset  final
      value   

  public char getChar(long);
    descriptor: (J)C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
        start local 1 // long offset
         0: .line 336
            lload 1 /* offset */
            invokestatic org.eclipse.jdt.internal.core.nd.db.Chunk.recPtrToIndex:(J)I
            istore 3 /* idx */
        start local 3 // int idx
         1: .line 337
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fBuffer:[B
            iload 3 /* idx */
            baload
            bipush 8
            ishl
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fBuffer:[B
            iinc 3 /* idx */ 1
            iload 3 /* idx */
            baload
            sipush 255
            iand
            ior
            i2c
            ireturn
        end local 3 // int idx
        end local 1 // long offset
        end local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            0    2     1  offset  J
            1    2     3     idx  I
    MethodParameters:
        Name  Flags
      offset  final

  public void getChars(long, char[], int, int);
    descriptor: (J[CII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=5
        start local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
        start local 1 // long offset
        start local 3 // char[] result
        start local 4 // int start
        start local 5 // int len
         0: .line 341
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fBuffer:[B
            invokestatic java.nio.ByteBuffer.wrap:([B)Ljava/nio/ByteBuffer;
            astore 6 /* buf */
        start local 6 // java.nio.ByteBuffer buf
         1: .line 342
            aload 6 /* buf */
            lload 1 /* offset */
            invokestatic org.eclipse.jdt.internal.core.nd.db.Chunk.recPtrToIndex:(J)I
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/Buffer;
            pop
         2: .line 343
            aload 6 /* buf */
            invokevirtual java.nio.ByteBuffer.asCharBuffer:()Ljava/nio/CharBuffer;
            aload 3 /* result */
            iload 4 /* start */
            iload 5 /* len */
            invokevirtual java.nio.CharBuffer.get:([CII)Ljava/nio/CharBuffer;
            pop
         3: .line 344
            return
        end local 6 // java.nio.ByteBuffer buf
        end local 5 // int len
        end local 4 // int start
        end local 3 // char[] result
        end local 1 // long offset
        end local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            0    4     1  offset  J
            0    4     3  result  [C
            0    4     4   start  I
            0    4     5     len  I
            1    4     6     buf  Ljava/nio/ByteBuffer;
    MethodParameters:
        Name  Flags
      offset  final
      result  final
      start   
      len     

  public void getCharsFromBytes(long, char[], int, int);
    descriptor: (J[CII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=8, args_size=5
        start local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
        start local 1 // long offset
        start local 3 // char[] result
        start local 4 // int start
        start local 5 // int len
         0: .line 347
            lload 1 /* offset */
            invokestatic org.eclipse.jdt.internal.core.nd.db.Chunk.recPtrToIndex:(J)I
            istore 6 /* pos */
        start local 6 // int pos
         1: .line 348
            iconst_0
            istore 7 /* i */
        start local 7 // int i
         2: goto 5
         3: .line 349
      StackMap locals: int int
      StackMap stack:
            aload 3 /* result */
            iload 4 /* start */
            iload 7 /* i */
            iadd
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fBuffer:[B
            iload 6 /* pos */
            iload 7 /* i */
            iadd
            baload
            sipush 255
            iand
            i2c
            castore
         4: .line 348
            iinc 7 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 7 /* i */
            iload 5 /* len */
            if_icmplt 3
        end local 7 // int i
         6: .line 351
            return
        end local 6 // int pos
        end local 5 // int len
        end local 4 // int start
        end local 3 // char[] result
        end local 1 // long offset
        end local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            0    7     1  offset  J
            0    7     3  result  [C
            0    7     4   start  I
            0    7     5     len  I
            1    7     6     pos  I
            2    6     7       i  I
    MethodParameters:
        Name  Flags
      offset  final
      result  final
      start   
      len     

  void clear(long, int);
    descriptor: (JI)V
    flags: (0x0000) 
    Code:
      stack=5, locals=6, args_size=3
        start local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
        start local 1 // long offset
        start local 3 // int length
         0: .line 354
            aload 0 /* this */
            invokevirtual org.eclipse.jdt.internal.core.nd.db.Chunk.makeDirty:()V
         1: .line 355
            lload 1 /* offset */
            invokestatic org.eclipse.jdt.internal.core.nd.db.Chunk.recPtrToIndex:(J)I
            istore 4 /* idx */
        start local 4 // int idx
         2: .line 356
            iload 4 /* idx */
            iload 3 /* length */
            iadd
            istore 5 /* end */
        start local 5 // int end
         3: .line 357
            iload 5 /* end */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fBuffer:[B
            arraylength
            if_icmple 9
         4: .line 358
            new org.eclipse.jdt.internal.core.nd.db.IndexException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Attempting to clear beyond end of chunk. Chunk = "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fSequenceNumber:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
         5: .line 359
            ldc ", offset = "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            lload 1 /* offset */
            invokevirtual java.lang.StringBuilder.append:(J)Ljava/lang/StringBuilder;
            ldc ", length = "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 3 /* length */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         6: .line 358
            invokespecial org.eclipse.jdt.internal.core.nd.db.IndexException.<init>:(Ljava/lang/String;)V
            athrow
         7: .line 362
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fBuffer:[B
            iload 4 /* idx */
            iconst_0
            bastore
         8: .line 361
            iinc 4 /* idx */ 1
      StackMap locals:
      StackMap stack:
         9: iload 4 /* idx */
            iload 5 /* end */
            if_icmplt 7
        10: .line 364
            aload 0 /* this */
            lload 1 /* offset */
            iload 3 /* length */
            invokevirtual org.eclipse.jdt.internal.core.nd.db.Chunk.recordWrite:(JI)V
        11: .line 365
            return
        end local 5 // int end
        end local 4 // int idx
        end local 3 // int length
        end local 1 // long offset
        end local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   12     0    this  Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            0   12     1  offset  J
            0   12     3  length  I
            2   12     4     idx  I
            3   12     5     end  I
    MethodParameters:
        Name  Flags
      offset  final
      length  final

  void put(long, byte[], int);
    descriptor: (J[BI)V
    flags: (0x0000) 
    Code:
      stack=6, locals=5, args_size=4
        start local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
        start local 1 // long offset
        start local 3 // byte[] data
        start local 4 // int len
         0: .line 368
            aload 0 /* this */
            lload 1 /* offset */
            aload 3 /* data */
            iconst_0
            iload 4 /* len */
            invokevirtual org.eclipse.jdt.internal.core.nd.db.Chunk.put:(J[BII)V
         1: .line 369
            return
        end local 4 // int len
        end local 3 // byte[] data
        end local 1 // long offset
        end local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            0    2     1  offset  J
            0    2     3    data  [B
            0    2     4     len  I
    MethodParameters:
        Name  Flags
      offset  final
      data    final
      len     final

  void put(long, byte[], int, int);
    descriptor: (J[BII)V
    flags: (0x0000) 
    Code:
      stack=5, locals=7, args_size=5
        start local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
        start local 1 // long offset
        start local 3 // byte[] data
        start local 4 // int dataPos
        start local 5 // int len
         0: .line 372
            aload 0 /* this */
            invokevirtual org.eclipse.jdt.internal.core.nd.db.Chunk.makeDirty:()V
         1: .line 373
            lload 1 /* offset */
            invokestatic org.eclipse.jdt.internal.core.nd.db.Chunk.recPtrToIndex:(J)I
            istore 6 /* idx */
        start local 6 // int idx
         2: .line 374
            aload 3 /* data */
            iload 4 /* dataPos */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fBuffer:[B
            iload 6 /* idx */
            iload 5 /* len */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         3: .line 375
            aload 0 /* this */
            lload 1 /* offset */
            iload 5 /* len */
            invokevirtual org.eclipse.jdt.internal.core.nd.db.Chunk.recordWrite:(JI)V
         4: .line 376
            return
        end local 6 // int idx
        end local 5 // int len
        end local 4 // int dataPos
        end local 3 // byte[] data
        end local 1 // long offset
        end local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            0    5     1   offset  J
            0    5     3     data  [B
            0    5     4  dataPos  I
            0    5     5      len  I
            2    5     6      idx  I
    MethodParameters:
         Name  Flags
      offset   final
      data     final
      dataPos  
      len      final

  public void get(long, byte[]);
    descriptor: (J[B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=3
        start local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
        start local 1 // long offset
        start local 3 // byte[] data
         0: .line 379
            aload 0 /* this */
            lload 1 /* offset */
            aload 3 /* data */
            iconst_0
            aload 3 /* data */
            arraylength
            invokevirtual org.eclipse.jdt.internal.core.nd.db.Chunk.get:(J[BII)V
         1: .line 380
            return
        end local 3 // byte[] data
        end local 1 // long offset
        end local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            0    2     1  offset  J
            0    2     3    data  [B
    MethodParameters:
        Name  Flags
      offset  final
      data    

  public void get(long, byte[], int, int);
    descriptor: (J[BII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=7, args_size=5
        start local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
        start local 1 // long offset
        start local 3 // byte[] data
        start local 4 // int dataPos
        start local 5 // int len
         0: .line 383
            lload 1 /* offset */
            invokestatic org.eclipse.jdt.internal.core.nd.db.Chunk.recPtrToIndex:(J)I
            istore 6 /* idx */
        start local 6 // int idx
         1: .line 384
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fBuffer:[B
            iload 6 /* idx */
            aload 3 /* data */
            iload 4 /* dataPos */
            iload 5 /* len */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         2: .line 385
            return
        end local 6 // int idx
        end local 5 // int len
        end local 4 // int dataPos
        end local 3 // byte[] data
        end local 1 // long offset
        end local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            0    3     1   offset  J
            0    3     3     data  [B
            0    3     4  dataPos  I
            0    3     5      len  I
            1    3     6      idx  I
    MethodParameters:
         Name  Flags
      offset   final
      data     
      dataPos  
      len      

  public org.eclipse.jdt.internal.core.nd.db.Chunk getWritableChunk();
    descriptor: ()Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
         0: .line 391
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fDatabase:Lorg/eclipse/jdt/internal/core/nd/db/Database;
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.nd.db.Chunk.fSequenceNumber:I
            i2l
            ldc 4096
            lmul
            invokevirtual org.eclipse.jdt.internal.core.nd.db.Database.getChunk:(J)Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            astore 1 /* result */
        start local 1 // org.eclipse.jdt.internal.core.nd.db.Chunk result
         1: .line 392
            aload 1 /* result */
            invokevirtual org.eclipse.jdt.internal.core.nd.db.Chunk.makeDirty:()V
         2: .line 393
            aload 1 /* result */
            areturn
        end local 1 // org.eclipse.jdt.internal.core.nd.db.Chunk result
        end local 0 // org.eclipse.jdt.internal.core.nd.db.Chunk this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
            1    3     1  result  Lorg/eclipse/jdt/internal/core/nd/db/Chunk;
}
SourceFile: "Chunk.java"