public class org.h2.store.PageOutputStream
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.h2.store.PageOutputStream
  super_class: java.lang.Object
{
  private org.h2.store.PageStore store;
    descriptor: Lorg/h2/store/PageStore;
    flags: (0x0002) ACC_PRIVATE

  private final org.h2.message.Trace trace;
    descriptor: Lorg/h2/message/Trace;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.util.BitSet exclude;
    descriptor: Ljava/util/BitSet;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final boolean atEnd;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int minPageId;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

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

  private org.h2.util.IntArray reservedPages;
    descriptor: Lorg/h2/util/IntArray;
    flags: (0x0002) ACC_PRIVATE

  private org.h2.store.PageStreamTrunk trunk;
    descriptor: Lorg/h2/store/PageStreamTrunk;
    flags: (0x0002) ACC_PRIVATE

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

  private org.h2.store.PageStreamData data;
    descriptor: Lorg/h2/store/PageStreamData;
    flags: (0x0002) ACC_PRIVATE

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

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

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

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

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

  public void <init>(org.h2.store.PageStore, int, java.util.BitSet, int, boolean);
    descriptor: (Lorg/h2/store/PageStore;ILjava/util/BitSet;IZ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=6
        start local 0 // org.h2.store.PageOutputStream this
        start local 1 // org.h2.store.PageStore store
        start local 2 // int trunkPage
        start local 3 // java.util.BitSet exclude
        start local 4 // int logKey
        start local 5 // boolean atEnd
         0: .line 46
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 27
            aload 0 /* this */
            new org.h2.util.IntArray
            dup
            invokespecial org.h2.util.IntArray.<init>:()V
            putfield org.h2.store.PageOutputStream.reservedPages:Lorg/h2/util/IntArray;
         2: .line 48
            aload 0 /* this */
            aload 1 /* store */
            invokevirtual org.h2.store.PageStore.getTrace:()Lorg/h2/message/Trace;
            putfield org.h2.store.PageOutputStream.trace:Lorg/h2/message/Trace;
         3: .line 49
            aload 0 /* this */
            aload 1 /* store */
            putfield org.h2.store.PageOutputStream.store:Lorg/h2/store/PageStore;
         4: .line 50
            aload 0 /* this */
            iload 2 /* trunkPage */
            putfield org.h2.store.PageOutputStream.trunkPageId:I
         5: .line 51
            aload 0 /* this */
            aload 3 /* exclude */
            putfield org.h2.store.PageOutputStream.exclude:Ljava/util/BitSet;
         6: .line 53
            aload 0 /* this */
            iload 4 /* logKey */
            iconst_1
            isub
            putfield org.h2.store.PageOutputStream.logKey:I
         7: .line 54
            aload 0 /* this */
            iload 5 /* atEnd */
            putfield org.h2.store.PageOutputStream.atEnd:Z
         8: .line 55
            aload 0 /* this */
            iload 5 /* atEnd */
            ifeq 9
            iload 2 /* trunkPage */
            goto 10
      StackMap locals: org.h2.store.PageOutputStream org.h2.store.PageStore int java.util.BitSet int int
      StackMap stack: org.h2.store.PageOutputStream
         9: iconst_0
      StackMap locals: org.h2.store.PageOutputStream org.h2.store.PageStore int java.util.BitSet int int
      StackMap stack: org.h2.store.PageOutputStream int
        10: putfield org.h2.store.PageOutputStream.minPageId:I
        11: .line 56
            return
        end local 5 // boolean atEnd
        end local 4 // int logKey
        end local 3 // java.util.BitSet exclude
        end local 2 // int trunkPage
        end local 1 // org.h2.store.PageStore store
        end local 0 // org.h2.store.PageOutputStream this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   12     0       this  Lorg/h2/store/PageOutputStream;
            0   12     1      store  Lorg/h2/store/PageStore;
            0   12     2  trunkPage  I
            0   12     3    exclude  Ljava/util/BitSet;
            0   12     4     logKey  I
            0   12     5      atEnd  Z
    MethodParameters:
           Name  Flags
      store      
      trunkPage  
      exclude    
      logKey     
      atEnd      

  void reserve(int);
    descriptor: (I)V
    flags: (0x0000) 
    Code:
      stack=5, locals=8, args_size=2
        start local 0 // org.h2.store.PageOutputStream this
        start local 1 // int minBuffer
         0: .line 65
            aload 0 /* this */
            getfield org.h2.store.PageOutputStream.reserved:I
            iload 1 /* minBuffer */
            if_icmpge 17
         1: .line 66
            aload 0 /* this */
            getfield org.h2.store.PageOutputStream.store:Lorg/h2/store/PageStore;
            invokevirtual org.h2.store.PageStore.getPageSize:()I
            istore 2 /* pageSize */
        start local 2 // int pageSize
         2: .line 67
            iload 2 /* pageSize */
            invokestatic org.h2.store.PageStreamData.getCapacity:(I)I
            istore 3 /* capacityPerPage */
        start local 3 // int capacityPerPage
         3: .line 68
            iload 2 /* pageSize */
            invokestatic org.h2.store.PageStreamTrunk.getPagesAddressed:(I)I
            istore 4 /* pages */
        start local 4 // int pages
         4: .line 69
            iconst_0
            istore 5 /* pagesToAllocate */
        start local 5 // int pagesToAllocate
         5: iconst_0
            istore 6 /* totalCapacity */
        start local 6 // int totalCapacity
         6: .line 72
      StackMap locals: org.h2.store.PageOutputStream int int int int int int
      StackMap stack:
            iload 5 /* pagesToAllocate */
            iload 4 /* pages */
            iconst_1
            iadd
            iadd
            istore 5 /* pagesToAllocate */
         7: .line 73
            iload 6 /* totalCapacity */
            iload 4 /* pages */
            iload 3 /* capacityPerPage */
            imul
            iadd
            istore 6 /* totalCapacity */
         8: .line 74
            iload 6 /* totalCapacity */
            iload 1 /* minBuffer */
         9: .line 70
            if_icmplt 6
        10: .line 75
            aload 0 /* this */
            getfield org.h2.store.PageOutputStream.atEnd:Z
            ifeq 11
            aload 0 /* this */
            getfield org.h2.store.PageOutputStream.trunkPageId:I
            goto 12
      StackMap locals:
      StackMap stack:
        11: iconst_0
      StackMap locals:
      StackMap stack: int
        12: istore 7 /* firstPageToUse */
        start local 7 // int firstPageToUse
        13: .line 76
            aload 0 /* this */
            getfield org.h2.store.PageOutputStream.store:Lorg/h2/store/PageStore;
            aload 0 /* this */
            getfield org.h2.store.PageOutputStream.reservedPages:Lorg/h2/util/IntArray;
            iload 5 /* pagesToAllocate */
            aload 0 /* this */
            getfield org.h2.store.PageOutputStream.exclude:Ljava/util/BitSet;
            iload 7 /* firstPageToUse */
            invokevirtual org.h2.store.PageStore.allocatePages:(Lorg/h2/util/IntArray;ILjava/util/BitSet;I)V
        14: .line 77
            aload 0 /* this */
            dup
            getfield org.h2.store.PageOutputStream.reserved:I
            iload 6 /* totalCapacity */
            iadd
            putfield org.h2.store.PageOutputStream.reserved:I
        15: .line 78
            aload 0 /* this */
            getfield org.h2.store.PageOutputStream.data:Lorg/h2/store/PageStreamData;
            ifnonnull 17
        16: .line 79
            aload 0 /* this */
            invokevirtual org.h2.store.PageOutputStream.initNextData:()V
        end local 7 // int firstPageToUse
        end local 6 // int totalCapacity
        end local 5 // int pagesToAllocate
        end local 4 // int pages
        end local 3 // int capacityPerPage
        end local 2 // int pageSize
        17: .line 82
      StackMap locals: org.h2.store.PageOutputStream int
      StackMap stack:
            return
        end local 1 // int minBuffer
        end local 0 // org.h2.store.PageOutputStream this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   18     0             this  Lorg/h2/store/PageOutputStream;
            0   18     1        minBuffer  I
            2   17     2         pageSize  I
            3   17     3  capacityPerPage  I
            4   17     4            pages  I
            5   17     5  pagesToAllocate  I
            6   17     6    totalCapacity  I
           13   17     7   firstPageToUse  I
    MethodParameters:
           Name  Flags
      minBuffer  

  private void initNextData();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=7, locals=6, args_size=1
        start local 0 // org.h2.store.PageOutputStream this
         0: .line 85
            aload 0 /* this */
            getfield org.h2.store.PageOutputStream.trunk:Lorg/h2/store/PageStreamTrunk;
            ifnonnull 1
            iconst_m1
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield org.h2.store.PageOutputStream.trunk:Lorg/h2/store/PageStreamTrunk;
            aload 0 /* this */
            dup
            getfield org.h2.store.PageOutputStream.trunkIndex:I
            dup_x1
            iconst_1
            iadd
            putfield org.h2.store.PageOutputStream.trunkIndex:I
            invokevirtual org.h2.store.PageStreamTrunk.getPageData:(I)I
      StackMap locals:
      StackMap stack: int
         2: istore 1 /* nextData */
        start local 1 // int nextData
         3: .line 86
            iload 1 /* nextData */
            iconst_m1
            if_icmpne 24
         4: .line 87
            aload 0 /* this */
            getfield org.h2.store.PageOutputStream.trunkPageId:I
            istore 2 /* parent */
        start local 2 // int parent
         5: .line 88
            aload 0 /* this */
            getfield org.h2.store.PageOutputStream.trunkNext:I
            ifeq 7
         6: .line 89
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.store.PageOutputStream.trunkNext:I
            putfield org.h2.store.PageOutputStream.trunkPageId:I
         7: .line 91
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.store.PageOutputStream.store:Lorg/h2/store/PageStore;
            invokevirtual org.h2.store.PageStore.getPageSize:()I
            invokestatic org.h2.store.PageStreamTrunk.getPagesAddressed:(I)I
            istore 3 /* len */
        start local 3 // int len
         8: .line 92
            iload 3 /* len */
            newarray 10
            astore 4 /* pageIds */
        start local 4 // int[] pageIds
         9: .line 93
            iconst_0
            istore 5 /* i */
        start local 5 // int i
        10: goto 13
        11: .line 94
      StackMap locals: int int[] int
      StackMap stack:
            aload 4 /* pageIds */
            iload 5 /* i */
            aload 0 /* this */
            getfield org.h2.store.PageOutputStream.reservedPages:Lorg/h2/util/IntArray;
            iload 5 /* i */
            invokevirtual org.h2.util.IntArray.get:(I)I
            iastore
        12: .line 93
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        13: iload 5 /* i */
            iload 3 /* len */
            if_icmplt 11
        end local 5 // int i
        14: .line 96
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.store.PageOutputStream.reservedPages:Lorg/h2/util/IntArray;
            iload 3 /* len */
            invokevirtual org.h2.util.IntArray.get:(I)I
            putfield org.h2.store.PageOutputStream.trunkNext:I
        15: .line 97
            aload 0 /* this */
            dup
            getfield org.h2.store.PageOutputStream.logKey:I
            iconst_1
            iadd
            putfield org.h2.store.PageOutputStream.logKey:I
        16: .line 98
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.store.PageOutputStream.store:Lorg/h2/store/PageStore;
            iload 2 /* parent */
            aload 0 /* this */
            getfield org.h2.store.PageOutputStream.trunkPageId:I
        17: .line 99
            aload 0 /* this */
            getfield org.h2.store.PageOutputStream.trunkNext:I
            aload 0 /* this */
            getfield org.h2.store.PageOutputStream.logKey:I
            aload 4 /* pageIds */
        18: .line 98
            invokestatic org.h2.store.PageStreamTrunk.create:(Lorg/h2/store/PageStore;IIII[I)Lorg/h2/store/PageStreamTrunk;
            putfield org.h2.store.PageOutputStream.trunk:Lorg/h2/store/PageStreamTrunk;
        19: .line 100
            aload 0 /* this */
            iconst_0
            putfield org.h2.store.PageOutputStream.trunkIndex:I
        20: .line 101
            aload 0 /* this */
            dup
            getfield org.h2.store.PageOutputStream.pageCount:I
            iconst_1
            iadd
            putfield org.h2.store.PageOutputStream.pageCount:I
        21: .line 102
            aload 0 /* this */
            getfield org.h2.store.PageOutputStream.trunk:Lorg/h2/store/PageStreamTrunk;
            invokevirtual org.h2.store.PageStreamTrunk.write:()V
        22: .line 103
            aload 0 /* this */
            getfield org.h2.store.PageOutputStream.reservedPages:Lorg/h2/util/IntArray;
            iconst_0
            iload 3 /* len */
            iconst_1
            iadd
            invokevirtual org.h2.util.IntArray.removeRange:(II)V
        23: .line 104
            aload 0 /* this */
            getfield org.h2.store.PageOutputStream.trunk:Lorg/h2/store/PageStreamTrunk;
            aload 0 /* this */
            dup
            getfield org.h2.store.PageOutputStream.trunkIndex:I
            dup_x1
            iconst_1
            iadd
            putfield org.h2.store.PageOutputStream.trunkIndex:I
            invokevirtual org.h2.store.PageStreamTrunk.getPageData:(I)I
            istore 1 /* nextData */
        end local 4 // int[] pageIds
        end local 3 // int len
        end local 2 // int parent
        24: .line 106
      StackMap locals: org.h2.store.PageOutputStream int
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.store.PageOutputStream.store:Lorg/h2/store/PageStore;
            iload 1 /* nextData */
            aload 0 /* this */
            getfield org.h2.store.PageOutputStream.trunk:Lorg/h2/store/PageStreamTrunk;
            invokevirtual org.h2.store.PageStreamTrunk.getPos:()I
            aload 0 /* this */
            getfield org.h2.store.PageOutputStream.logKey:I
            invokestatic org.h2.store.PageStreamData.create:(Lorg/h2/store/PageStore;III)Lorg/h2/store/PageStreamData;
            putfield org.h2.store.PageOutputStream.data:Lorg/h2/store/PageStreamData;
        25: .line 107
            aload 0 /* this */
            dup
            getfield org.h2.store.PageOutputStream.pageCount:I
            iconst_1
            iadd
            putfield org.h2.store.PageOutputStream.pageCount:I
        26: .line 108
            aload 0 /* this */
            getfield org.h2.store.PageOutputStream.data:Lorg/h2/store/PageStreamData;
            invokevirtual org.h2.store.PageStreamData.initWrite:()V
        27: .line 109
            return
        end local 1 // int nextData
        end local 0 // org.h2.store.PageOutputStream this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   28     0      this  Lorg/h2/store/PageOutputStream;
            3   28     1  nextData  I
            5   24     2    parent  I
            8   24     3       len  I
            9   24     4   pageIds  [I
           10   14     5         i  I

  public void write(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=4
        start local 0 // org.h2.store.PageOutputStream this
        start local 1 // byte[] b
        start local 2 // int off
        start local 3 // int len
         0: .line 119
            iload 3 /* len */
            ifgt 2
         1: .line 120
            return
         2: .line 122
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.store.PageOutputStream.writing:Z
            ifeq 4
         3: .line 123
            ldc "writing while still writing"
            invokestatic org.h2.message.DbException.throwInternalError:(Ljava/lang/String;)Ljava/lang/RuntimeException;
            pop
         4: .line 126
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 3 /* len */
            invokevirtual org.h2.store.PageOutputStream.reserve:(I)V
         5: .line 127
            aload 0 /* this */
            iconst_1
            putfield org.h2.store.PageOutputStream.writing:Z
         6: .line 128
            goto 14
         7: .line 129
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.store.PageOutputStream.data:Lorg/h2/store/PageStreamData;
            aload 1 /* b */
            iload 2 /* off */
            iload 3 /* len */
            invokevirtual org.h2.store.PageStreamData.write:([BII)I
            istore 4 /* l */
        start local 4 // int l
         8: .line 130
            iload 4 /* l */
            iload 3 /* len */
            if_icmpge 11
         9: .line 131
            aload 0 /* this */
            invokevirtual org.h2.store.PageOutputStream.storePage:()V
        10: .line 132
            aload 0 /* this */
            invokevirtual org.h2.store.PageOutputStream.initNextData:()V
        11: .line 134
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.h2.store.PageOutputStream.reserved:I
            iload 4 /* l */
            isub
            putfield org.h2.store.PageOutputStream.reserved:I
        12: .line 135
            iload 2 /* off */
            iload 4 /* l */
            iadd
            istore 2 /* off */
        13: .line 136
            iload 3 /* len */
            iload 4 /* l */
            isub
            istore 3 /* len */
        end local 4 // int l
        14: .line 128
      StackMap locals:
      StackMap stack:
            iload 3 /* len */
            ifgt 7
        15: .line 138
            aload 0 /* this */
            iconst_1
            putfield org.h2.store.PageOutputStream.needFlush:Z
        16: .line 139
            goto 20
      StackMap locals:
      StackMap stack: java.lang.Throwable
        17: astore 5
        18: .line 140
            aload 0 /* this */
            iconst_0
            putfield org.h2.store.PageOutputStream.writing:Z
        19: .line 141
            aload 5
            athrow
        20: .line 140
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield org.h2.store.PageOutputStream.writing:Z
        21: .line 142
            return
        end local 3 // int len
        end local 2 // int off
        end local 1 // byte[] b
        end local 0 // org.h2.store.PageOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   22     0  this  Lorg/h2/store/PageOutputStream;
            0   22     1     b  [B
            0   22     2   off  I
            0   22     3   len  I
            8   14     4     l  I
      Exception table:
        from    to  target  type
           4    17      17  any
    MethodParameters:
      Name  Flags
      b     
      off   
      len   

  private void storePage();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.h2.store.PageOutputStream this
         0: .line 145
            aload 0 /* this */
            getfield org.h2.store.PageOutputStream.trace:Lorg/h2/message/Trace;
            invokevirtual org.h2.message.Trace.isDebugEnabled:()Z
            ifeq 2
         1: .line 146
            aload 0 /* this */
            getfield org.h2.store.PageOutputStream.trace:Lorg/h2/message/Trace;
            new java.lang.StringBuilder
            dup
            ldc "pageOut.storePage "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield org.h2.store.PageOutputStream.data:Lorg/h2/store/PageStreamData;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual org.h2.message.Trace.debug:(Ljava/lang/String;)V
         2: .line 148
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.store.PageOutputStream.data:Lorg/h2/store/PageStreamData;
            invokevirtual org.h2.store.PageStreamData.write:()V
         3: .line 149
            return
        end local 0 // org.h2.store.PageOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/h2/store/PageOutputStream;

  public void flush();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.h2.store.PageOutputStream this
         0: .line 155
            aload 0 /* this */
            getfield org.h2.store.PageOutputStream.needFlush:Z
            ifeq 3
         1: .line 156
            aload 0 /* this */
            invokevirtual org.h2.store.PageOutputStream.storePage:()V
         2: .line 157
            aload 0 /* this */
            iconst_0
            putfield org.h2.store.PageOutputStream.needFlush:Z
         3: .line 159
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.h2.store.PageOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/h2/store/PageOutputStream;

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.h2.store.PageOutputStream this
         0: .line 165
            aload 0 /* this */
            aconst_null
            putfield org.h2.store.PageOutputStream.store:Lorg/h2/store/PageStore;
         1: .line 166
            return
        end local 0 // org.h2.store.PageOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/h2/store/PageOutputStream;

  int getCurrentDataPageId();
    descriptor: ()I
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.store.PageOutputStream this
         0: .line 169
            aload 0 /* this */
            getfield org.h2.store.PageOutputStream.data:Lorg/h2/store/PageStreamData;
            invokevirtual org.h2.store.PageStreamData.getPos:()I
            ireturn
        end local 0 // org.h2.store.PageOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/store/PageOutputStream;

  void fillPage();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.h2.store.PageOutputStream this
         0: .line 177
            aload 0 /* this */
            getfield org.h2.store.PageOutputStream.trace:Lorg/h2/message/Trace;
            invokevirtual org.h2.message.Trace.isDebugEnabled:()Z
            ifeq 2
         1: .line 178
            aload 0 /* this */
            getfield org.h2.store.PageOutputStream.trace:Lorg/h2/message/Trace;
            new java.lang.StringBuilder
            dup
            ldc "pageOut.storePage fill "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield org.h2.store.PageOutputStream.data:Lorg/h2/store/PageStreamData;
            invokevirtual org.h2.store.PageStreamData.getPos:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual org.h2.message.Trace.debug:(Ljava/lang/String;)V
         2: .line 180
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.store.PageOutputStream.data:Lorg/h2/store/PageStreamData;
            invokevirtual org.h2.store.PageStreamData.getRemaining:()I
            iconst_1
            iadd
            invokevirtual org.h2.store.PageOutputStream.reserve:(I)V
         3: .line 181
            aload 0 /* this */
            dup
            getfield org.h2.store.PageOutputStream.reserved:I
            aload 0 /* this */
            getfield org.h2.store.PageOutputStream.data:Lorg/h2/store/PageStreamData;
            invokevirtual org.h2.store.PageStreamData.getRemaining:()I
            isub
            putfield org.h2.store.PageOutputStream.reserved:I
         4: .line 182
            aload 0 /* this */
            getfield org.h2.store.PageOutputStream.data:Lorg/h2/store/PageStreamData;
            invokevirtual org.h2.store.PageStreamData.write:()V
         5: .line 183
            aload 0 /* this */
            invokevirtual org.h2.store.PageOutputStream.initNextData:()V
         6: .line 184
            return
        end local 0 // org.h2.store.PageOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/h2/store/PageOutputStream;

  long getSize();
    descriptor: ()J
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.h2.store.PageOutputStream this
         0: .line 187
            aload 0 /* this */
            getfield org.h2.store.PageOutputStream.pageCount:I
            aload 0 /* this */
            getfield org.h2.store.PageOutputStream.store:Lorg/h2/store/PageStore;
            invokevirtual org.h2.store.PageStore.getPageSize:()I
            imul
            i2l
            lreturn
        end local 0 // org.h2.store.PageOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/store/PageOutputStream;

  void free(org.h2.store.PageStreamTrunk);
    descriptor: (Lorg/h2/store/PageStreamTrunk;)V
    flags: (0x0000) 
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.h2.store.PageOutputStream this
        start local 1 // org.h2.store.PageStreamTrunk t
         0: .line 196
            aload 0 /* this */
            dup
            getfield org.h2.store.PageOutputStream.pageCount:I
            aload 1 /* t */
            iconst_0
            invokevirtual org.h2.store.PageStreamTrunk.free:(I)I
            isub
            putfield org.h2.store.PageOutputStream.pageCount:I
         1: .line 197
            return
        end local 1 // org.h2.store.PageStreamTrunk t
        end local 0 // org.h2.store.PageOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/h2/store/PageOutputStream;
            0    2     1     t  Lorg/h2/store/PageStreamTrunk;
    MethodParameters:
      Name  Flags
      t     

  void freeReserved();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=3, locals=6, args_size=1
        start local 0 // org.h2.store.PageOutputStream this
         0: .line 203
            aload 0 /* this */
            getfield org.h2.store.PageOutputStream.reservedPages:Lorg/h2/util/IntArray;
            invokevirtual org.h2.util.IntArray.size:()I
            ifle 10
         1: .line 204
            aload 0 /* this */
            getfield org.h2.store.PageOutputStream.reservedPages:Lorg/h2/util/IntArray;
            invokevirtual org.h2.util.IntArray.size:()I
            newarray 10
            astore 1 /* array */
        start local 1 // int[] array
         2: .line 205
            aload 0 /* this */
            getfield org.h2.store.PageOutputStream.reservedPages:Lorg/h2/util/IntArray;
            aload 1 /* array */
            invokevirtual org.h2.util.IntArray.toArray:([I)V
         3: .line 206
            aload 0 /* this */
            new org.h2.util.IntArray
            dup
            invokespecial org.h2.util.IntArray.<init>:()V
            putfield org.h2.store.PageOutputStream.reservedPages:Lorg/h2/util/IntArray;
         4: .line 207
            aload 0 /* this */
            iconst_0
            putfield org.h2.store.PageOutputStream.reserved:I
         5: .line 208
            aload 1 /* array */
            dup
            astore 5
            arraylength
            istore 4
            iconst_0
            istore 3
            goto 9
      StackMap locals: org.h2.store.PageOutputStream int[] top int int int[]
      StackMap stack:
         6: aload 5
            iload 3
            iaload
            istore 2 /* p */
        start local 2 // int p
         7: .line 209
            aload 0 /* this */
            getfield org.h2.store.PageOutputStream.store:Lorg/h2/store/PageStore;
            iload 2 /* p */
            iconst_0
            invokevirtual org.h2.store.PageStore.free:(IZ)V
        end local 2 // int p
         8: .line 208
            iinc 3 1
      StackMap locals:
      StackMap stack:
         9: iload 3
            iload 4
            if_icmplt 6
        end local 1 // int[] array
        10: .line 212
      StackMap locals: org.h2.store.PageOutputStream
      StackMap stack:
            return
        end local 0 // org.h2.store.PageOutputStream this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   11     0   this  Lorg/h2/store/PageOutputStream;
            2   10     1  array  [I
            7    8     2      p  I

  int getMinPageId();
    descriptor: ()I
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.store.PageOutputStream this
         0: .line 221
            aload 0 /* this */
            getfield org.h2.store.PageOutputStream.minPageId:I
            ireturn
        end local 0 // org.h2.store.PageOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/store/PageOutputStream;
}
SourceFile: "PageOutputStream.java"