public class io.undertow.protocols.http2.HpackDecoder
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.undertow.protocols.http2.HpackDecoder
  super_class: java.lang.Object
{
  private static final int DEFAULT_RING_BUFFER_SIZE;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 10

  private io.undertow.protocols.http2.HpackDecoder$HeaderEmitter headerEmitter;
    descriptor: Lio/undertow/protocols/http2/HpackDecoder$HeaderEmitter;
    flags: (0x0002) ACC_PRIVATE

  private io.undertow.protocols.http2.Hpack$HeaderField[] headerTable;
    descriptor: [Lio/undertow/protocols/http2/Hpack$HeaderField;
    flags: (0x0002) ACC_PRIVATE

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

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

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

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

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

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

  private final java.lang.StringBuilder stringBuilder;
    descriptor: Ljava/lang/StringBuilder;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.undertow.protocols.http2.HpackDecoder this
        start local 1 // int maxAllowedMemorySize
         0: .line 78
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 52
            aload 0 /* this */
            iconst_0
            putfield io.undertow.protocols.http2.HpackDecoder.firstSlotPosition:I
         2: .line 57
            aload 0 /* this */
            iconst_0
            putfield io.undertow.protocols.http2.HpackDecoder.filledTableSlots:I
         3: .line 62
            aload 0 /* this */
            iconst_0
            putfield io.undertow.protocols.http2.HpackDecoder.currentMemorySize:I
         4: .line 74
            aload 0 /* this */
            iconst_1
            putfield io.undertow.protocols.http2.HpackDecoder.first:Z
         5: .line 76
            aload 0 /* this */
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            putfield io.undertow.protocols.http2.HpackDecoder.stringBuilder:Ljava/lang/StringBuilder;
         6: .line 79
            aload 0 /* this */
            sipush 4096
            iload 1 /* maxAllowedMemorySize */
            invokestatic java.lang.Math.min:(II)I
            putfield io.undertow.protocols.http2.HpackDecoder.specifiedMemorySize:I
         7: .line 80
            aload 0 /* this */
            iload 1 /* maxAllowedMemorySize */
            putfield io.undertow.protocols.http2.HpackDecoder.maxAllowedMemorySize:I
         8: .line 81
            aload 0 /* this */
            bipush 10
            anewarray io.undertow.protocols.http2.Hpack$HeaderField
            putfield io.undertow.protocols.http2.HpackDecoder.headerTable:[Lio/undertow/protocols/http2/Hpack$HeaderField;
         9: .line 82
            return
        end local 1 // int maxAllowedMemorySize
        end local 0 // io.undertow.protocols.http2.HpackDecoder this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0   10     0                  this  Lio/undertow/protocols/http2/HpackDecoder;
            0   10     1  maxAllowedMemorySize  I
    MethodParameters:
                      Name  Flags
      maxAllowedMemorySize  

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.undertow.protocols.http2.HpackDecoder this
         0: .line 85
            aload 0 /* this */
            sipush 4096
            invokespecial io.undertow.protocols.http2.HpackDecoder.<init>:(I)V
         1: .line 86
            return
        end local 0 // io.undertow.protocols.http2.HpackDecoder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/undertow/protocols/http2/HpackDecoder;

  public void decode(java.nio.ByteBuffer, boolean);
    descriptor: (Ljava/nio/ByteBuffer;Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=7, args_size=3
        start local 0 // io.undertow.protocols.http2.HpackDecoder this
        start local 1 // java.nio.ByteBuffer buffer
        start local 2 // boolean moreData
         0: .line 96
            goto 69
         1: .line 97
      StackMap locals:
      StackMap stack:
            aload 1 /* buffer */
            invokevirtual java.nio.ByteBuffer.position:()I
            istore 3 /* originalPos */
        start local 3 // int originalPos
         2: .line 98
            aload 1 /* buffer */
            invokevirtual java.nio.ByteBuffer.get:()B
            istore 4 /* b */
        start local 4 // byte b
         3: .line 99
            iload 4 /* b */
            sipush 128
            iand
            ifeq 16
         4: .line 100
            aload 0 /* this */
            iconst_0
            putfield io.undertow.protocols.http2.HpackDecoder.first:Z
         5: .line 102
            aload 1 /* buffer */
            aload 1 /* buffer */
            invokevirtual java.nio.ByteBuffer.position:()I
            iconst_1
            isub
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/Buffer;
            pop
         6: .line 103
            aload 1 /* buffer */
            bipush 7
            invokestatic io.undertow.protocols.http2.Hpack.decodeInteger:(Ljava/nio/ByteBuffer;I)I
            istore 5 /* index */
        start local 5 // int index
         7: .line 104
            iload 5 /* index */
            iconst_m1
            if_icmpne 12
         8: .line 105
            iload 2 /* moreData */
            ifne 10
         9: .line 106
            getstatic io.undertow.UndertowMessages.MESSAGES:Lio/undertow/UndertowMessages;
            invokeinterface io.undertow.UndertowMessages.hpackFailed:()Lio/undertow/protocols/http2/HpackException;
            athrow
        10: .line 108
      StackMap locals: int int int
      StackMap stack:
            aload 1 /* buffer */
            iload 3 /* originalPos */
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/Buffer;
            pop
        11: .line 109
            return
        12: .line 110
      StackMap locals:
      StackMap stack:
            iload 5 /* index */
            ifne 14
        13: .line 111
            getstatic io.undertow.UndertowMessages.MESSAGES:Lio/undertow/UndertowMessages;
            invokeinterface io.undertow.UndertowMessages.zeroNotValidHeaderTableIndex:()Lio/undertow/protocols/http2/HpackException;
            athrow
        14: .line 113
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 5 /* index */
            invokevirtual io.undertow.protocols.http2.HpackDecoder.handleIndex:(I)V
        end local 5 // int index
        15: .line 114
            goto 69
      StackMap locals:
      StackMap stack:
        16: iload 4 /* b */
            bipush 64
            iand
            ifeq 33
        17: .line 115
            aload 0 /* this */
            iconst_0
            putfield io.undertow.protocols.http2.HpackDecoder.first:Z
        18: .line 117
            aload 0 /* this */
            aload 1 /* buffer */
            bipush 6
            invokevirtual io.undertow.protocols.http2.HpackDecoder.readHeaderName:(Ljava/nio/ByteBuffer;I)Lio/undertow/util/HttpString;
            astore 5 /* headerName */
        start local 5 // io.undertow.util.HttpString headerName
        19: .line 118
            aload 5 /* headerName */
            ifnonnull 24
        20: .line 119
            iload 2 /* moreData */
            ifne 22
        21: .line 120
            getstatic io.undertow.UndertowMessages.MESSAGES:Lio/undertow/UndertowMessages;
            invokeinterface io.undertow.UndertowMessages.hpackFailed:()Lio/undertow/protocols/http2/HpackException;
            athrow
        22: .line 122
      StackMap locals: io.undertow.util.HttpString
      StackMap stack:
            aload 1 /* buffer */
            iload 3 /* originalPos */
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/Buffer;
            pop
        23: .line 123
            return
        24: .line 125
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* buffer */
            invokevirtual io.undertow.protocols.http2.HpackDecoder.readHpackString:(Ljava/nio/ByteBuffer;)Ljava/lang/String;
            astore 6 /* headerValue */
        start local 6 // java.lang.String headerValue
        25: .line 126
            aload 6 /* headerValue */
            ifnonnull 30
        26: .line 127
            iload 2 /* moreData */
            ifne 28
        27: .line 128
            getstatic io.undertow.UndertowMessages.MESSAGES:Lio/undertow/UndertowMessages;
            invokeinterface io.undertow.UndertowMessages.hpackFailed:()Lio/undertow/protocols/http2/HpackException;
            athrow
        28: .line 130
      StackMap locals: java.lang.String
      StackMap stack:
            aload 1 /* buffer */
            iload 3 /* originalPos */
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/Buffer;
            pop
        29: .line 131
            return
        30: .line 133
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.undertow.protocols.http2.HpackDecoder.headerEmitter:Lio/undertow/protocols/http2/HpackDecoder$HeaderEmitter;
            aload 5 /* headerName */
            aload 6 /* headerValue */
            iconst_0
            invokeinterface io.undertow.protocols.http2.HpackDecoder$HeaderEmitter.emitHeader:(Lio/undertow/util/HttpString;Ljava/lang/String;Z)V
        31: .line 134
            aload 0 /* this */
            new io.undertow.protocols.http2.Hpack$HeaderField
            dup
            aload 5 /* headerName */
            aload 6 /* headerValue */
            invokespecial io.undertow.protocols.http2.Hpack$HeaderField.<init>:(Lio/undertow/util/HttpString;Ljava/lang/String;)V
            invokevirtual io.undertow.protocols.http2.HpackDecoder.addEntryToHeaderTable:(Lio/undertow/protocols/http2/Hpack$HeaderField;)V
        end local 6 // java.lang.String headerValue
        end local 5 // io.undertow.util.HttpString headerName
        32: .line 135
            goto 69
      StackMap locals:
      StackMap stack:
        33: iload 4 /* b */
            sipush 240
            iand
            ifne 49
        34: .line 136
            aload 0 /* this */
            iconst_0
            putfield io.undertow.protocols.http2.HpackDecoder.first:Z
        35: .line 138
            aload 0 /* this */
            aload 1 /* buffer */
            iconst_4
            invokevirtual io.undertow.protocols.http2.HpackDecoder.readHeaderName:(Ljava/nio/ByteBuffer;I)Lio/undertow/util/HttpString;
            astore 5 /* headerName */
        start local 5 // io.undertow.util.HttpString headerName
        36: .line 139
            aload 5 /* headerName */
            ifnonnull 41
        37: .line 140
            iload 2 /* moreData */
            ifne 39
        38: .line 141
            getstatic io.undertow.UndertowMessages.MESSAGES:Lio/undertow/UndertowMessages;
            invokeinterface io.undertow.UndertowMessages.hpackFailed:()Lio/undertow/protocols/http2/HpackException;
            athrow
        39: .line 143
      StackMap locals: io.undertow.util.HttpString
      StackMap stack:
            aload 1 /* buffer */
            iload 3 /* originalPos */
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/Buffer;
            pop
        40: .line 144
            return
        41: .line 146
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* buffer */
            invokevirtual io.undertow.protocols.http2.HpackDecoder.readHpackString:(Ljava/nio/ByteBuffer;)Ljava/lang/String;
            astore 6 /* headerValue */
        start local 6 // java.lang.String headerValue
        42: .line 147
            aload 6 /* headerValue */
            ifnonnull 47
        43: .line 148
            iload 2 /* moreData */
            ifne 45
        44: .line 149
            getstatic io.undertow.UndertowMessages.MESSAGES:Lio/undertow/UndertowMessages;
            invokeinterface io.undertow.UndertowMessages.hpackFailed:()Lio/undertow/protocols/http2/HpackException;
            athrow
        45: .line 151
      StackMap locals: java.lang.String
      StackMap stack:
            aload 1 /* buffer */
            iload 3 /* originalPos */
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/Buffer;
            pop
        46: .line 152
            return
        47: .line 154
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.undertow.protocols.http2.HpackDecoder.headerEmitter:Lio/undertow/protocols/http2/HpackDecoder$HeaderEmitter;
            aload 5 /* headerName */
            aload 6 /* headerValue */
            iconst_0
            invokeinterface io.undertow.protocols.http2.HpackDecoder$HeaderEmitter.emitHeader:(Lio/undertow/util/HttpString;Ljava/lang/String;Z)V
        end local 6 // java.lang.String headerValue
        end local 5 // io.undertow.util.HttpString headerName
        48: .line 155
            goto 69
      StackMap locals:
      StackMap stack:
        49: iload 4 /* b */
            sipush 240
            iand
            bipush 16
            if_icmpne 63
        50: .line 156
            aload 0 /* this */
            iconst_0
            putfield io.undertow.protocols.http2.HpackDecoder.first:Z
        51: .line 158
            aload 0 /* this */
            aload 1 /* buffer */
            iconst_4
            invokevirtual io.undertow.protocols.http2.HpackDecoder.readHeaderName:(Ljava/nio/ByteBuffer;I)Lio/undertow/util/HttpString;
            astore 5 /* headerName */
        start local 5 // io.undertow.util.HttpString headerName
        52: .line 159
            aload 5 /* headerName */
            ifnonnull 55
        53: .line 160
            aload 1 /* buffer */
            iload 3 /* originalPos */
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/Buffer;
            pop
        54: .line 161
            return
        55: .line 163
      StackMap locals: io.undertow.util.HttpString
      StackMap stack:
            aload 0 /* this */
            aload 1 /* buffer */
            invokevirtual io.undertow.protocols.http2.HpackDecoder.readHpackString:(Ljava/nio/ByteBuffer;)Ljava/lang/String;
            astore 6 /* headerValue */
        start local 6 // java.lang.String headerValue
        56: .line 164
            aload 6 /* headerValue */
            ifnonnull 61
        57: .line 165
            iload 2 /* moreData */
            ifne 59
        58: .line 166
            getstatic io.undertow.UndertowMessages.MESSAGES:Lio/undertow/UndertowMessages;
            invokeinterface io.undertow.UndertowMessages.hpackFailed:()Lio/undertow/protocols/http2/HpackException;
            athrow
        59: .line 168
      StackMap locals: java.lang.String
      StackMap stack:
            aload 1 /* buffer */
            iload 3 /* originalPos */
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/Buffer;
            pop
        60: .line 169
            return
        61: .line 171
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.undertow.protocols.http2.HpackDecoder.headerEmitter:Lio/undertow/protocols/http2/HpackDecoder$HeaderEmitter;
            aload 5 /* headerName */
            aload 6 /* headerValue */
            iconst_1
            invokeinterface io.undertow.protocols.http2.HpackDecoder$HeaderEmitter.emitHeader:(Lio/undertow/util/HttpString;Ljava/lang/String;Z)V
        end local 6 // java.lang.String headerValue
        end local 5 // io.undertow.util.HttpString headerName
        62: .line 172
            goto 69
      StackMap locals:
      StackMap stack:
        63: iload 4 /* b */
            sipush 224
            iand
            bipush 32
            if_icmpne 68
        64: .line 173
            aload 0 /* this */
            getfield io.undertow.protocols.http2.HpackDecoder.first:Z
            ifne 66
        65: .line 174
            new io.undertow.protocols.http2.HpackException
            dup
            invokespecial io.undertow.protocols.http2.HpackException.<init>:()V
            athrow
        66: .line 177
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* buffer */
            iload 3 /* originalPos */
            invokevirtual io.undertow.protocols.http2.HpackDecoder.handleMaxMemorySizeChange:(Ljava/nio/ByteBuffer;I)Z
            ifne 69
        67: .line 178
            return
        68: .line 181
      StackMap locals:
      StackMap stack:
            getstatic io.undertow.UndertowMessages.MESSAGES:Lio/undertow/UndertowMessages;
            iload 4 /* b */
            invokeinterface io.undertow.UndertowMessages.invalidHpackEncoding:(B)Lio/undertow/protocols/http2/HpackException;
            athrow
        end local 4 // byte b
        end local 3 // int originalPos
        69: .line 96
      StackMap locals:
      StackMap stack:
            aload 1 /* buffer */
            invokevirtual java.nio.ByteBuffer.hasRemaining:()Z
            ifne 1
        70: .line 184
            iload 2 /* moreData */
            ifne 72
        71: .line 185
            aload 0 /* this */
            iconst_1
            putfield io.undertow.protocols.http2.HpackDecoder.first:Z
        72: .line 187
      StackMap locals:
      StackMap stack:
            return
        end local 2 // boolean moreData
        end local 1 // java.nio.ByteBuffer buffer
        end local 0 // io.undertow.protocols.http2.HpackDecoder this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   73     0         this  Lio/undertow/protocols/http2/HpackDecoder;
            0   73     1       buffer  Ljava/nio/ByteBuffer;
            0   73     2     moreData  Z
            2   69     3  originalPos  I
            3   69     4            b  B
            7   15     5        index  I
           19   32     5   headerName  Lio/undertow/util/HttpString;
           25   32     6  headerValue  Ljava/lang/String;
           36   48     5   headerName  Lio/undertow/util/HttpString;
           42   48     6  headerValue  Ljava/lang/String;
           52   62     5   headerName  Lio/undertow/util/HttpString;
           56   62     6  headerValue  Ljava/lang/String;
    Exceptions:
      throws io.undertow.protocols.http2.HpackException
    MethodParameters:
          Name  Flags
      buffer    
      moreData  

  private boolean handleMaxMemorySizeChange(java.nio.ByteBuffer, int);
    descriptor: (Ljava/nio/ByteBuffer;I)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=9, args_size=3
        start local 0 // io.undertow.protocols.http2.HpackDecoder this
        start local 1 // java.nio.ByteBuffer buffer
        start local 2 // int originalPos
         0: .line 190
            aload 1 /* buffer */
            aload 1 /* buffer */
            invokevirtual java.nio.ByteBuffer.position:()I
            iconst_1
            isub
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/Buffer;
            pop
         1: .line 191
            aload 1 /* buffer */
            iconst_5
            invokestatic io.undertow.protocols.http2.Hpack.decodeInteger:(Ljava/nio/ByteBuffer;I)I
            istore 3 /* size */
        start local 3 // int size
         2: .line 192
            iload 3 /* size */
            iconst_m1
            if_icmpne 5
         3: .line 193
            aload 1 /* buffer */
            iload 2 /* originalPos */
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/Buffer;
            pop
         4: .line 194
            iconst_0
            ireturn
         5: .line 196
      StackMap locals: int
      StackMap stack:
            iload 3 /* size */
            aload 0 /* this */
            getfield io.undertow.protocols.http2.HpackDecoder.maxAllowedMemorySize:I
            if_icmple 7
         6: .line 197
            new io.undertow.protocols.http2.HpackException
            dup
            iconst_1
            invokespecial io.undertow.protocols.http2.HpackException.<init>:(I)V
            athrow
         7: .line 199
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 3 /* size */
            putfield io.undertow.protocols.http2.HpackDecoder.specifiedMemorySize:I
         8: .line 200
            aload 0 /* this */
            getfield io.undertow.protocols.http2.HpackDecoder.currentMemorySize:I
            aload 0 /* this */
            getfield io.undertow.protocols.http2.HpackDecoder.specifiedMemorySize:I
            if_icmple 24
         9: .line 201
            aload 0 /* this */
            getfield io.undertow.protocols.http2.HpackDecoder.filledTableSlots:I
            istore 4 /* newTableSlots */
        start local 4 // int newTableSlots
        10: .line 202
            aload 0 /* this */
            getfield io.undertow.protocols.http2.HpackDecoder.headerTable:[Lio/undertow/protocols/http2/Hpack$HeaderField;
            arraylength
            istore 5 /* tableLength */
        start local 5 // int tableLength
        11: .line 203
            aload 0 /* this */
            getfield io.undertow.protocols.http2.HpackDecoder.currentMemorySize:I
            istore 6 /* newSize */
        start local 6 // int newSize
        12: .line 204
            goto 21
        13: .line 205
      StackMap locals: int int int
      StackMap stack:
            aload 0 /* this */
            getfield io.undertow.protocols.http2.HpackDecoder.firstSlotPosition:I
            istore 7 /* clearIndex */
        start local 7 // int clearIndex
        14: .line 206
            aload 0 /* this */
            dup
            getfield io.undertow.protocols.http2.HpackDecoder.firstSlotPosition:I
            iconst_1
            iadd
            putfield io.undertow.protocols.http2.HpackDecoder.firstSlotPosition:I
        15: .line 207
            aload 0 /* this */
            getfield io.undertow.protocols.http2.HpackDecoder.firstSlotPosition:I
            iload 5 /* tableLength */
            if_icmpne 17
        16: .line 208
            aload 0 /* this */
            iconst_0
            putfield io.undertow.protocols.http2.HpackDecoder.firstSlotPosition:I
        17: .line 210
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield io.undertow.protocols.http2.HpackDecoder.headerTable:[Lio/undertow/protocols/http2/Hpack$HeaderField;
            iload 7 /* clearIndex */
            aaload
            astore 8 /* oldData */
        start local 8 // io.undertow.protocols.http2.Hpack$HeaderField oldData
        18: .line 211
            aload 0 /* this */
            getfield io.undertow.protocols.http2.HpackDecoder.headerTable:[Lio/undertow/protocols/http2/Hpack$HeaderField;
            iload 7 /* clearIndex */
            aconst_null
            aastore
        19: .line 212
            iload 6 /* newSize */
            aload 8 /* oldData */
            getfield io.undertow.protocols.http2.Hpack$HeaderField.size:I
            isub
            istore 6 /* newSize */
        20: .line 213
            iinc 4 /* newTableSlots */ -1
        end local 8 // io.undertow.protocols.http2.Hpack$HeaderField oldData
        end local 7 // int clearIndex
        21: .line 204
      StackMap locals:
      StackMap stack:
            iload 6 /* newSize */
            aload 0 /* this */
            getfield io.undertow.protocols.http2.HpackDecoder.specifiedMemorySize:I
            if_icmpgt 13
        22: .line 215
            aload 0 /* this */
            iload 4 /* newTableSlots */
            putfield io.undertow.protocols.http2.HpackDecoder.filledTableSlots:I
        23: .line 216
            aload 0 /* this */
            iload 6 /* newSize */
            putfield io.undertow.protocols.http2.HpackDecoder.currentMemorySize:I
        end local 6 // int newSize
        end local 5 // int tableLength
        end local 4 // int newTableSlots
        24: .line 218
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 3 // int size
        end local 2 // int originalPos
        end local 1 // java.nio.ByteBuffer buffer
        end local 0 // io.undertow.protocols.http2.HpackDecoder this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   25     0           this  Lio/undertow/protocols/http2/HpackDecoder;
            0   25     1         buffer  Ljava/nio/ByteBuffer;
            0   25     2    originalPos  I
            2   25     3           size  I
           10   24     4  newTableSlots  I
           11   24     5    tableLength  I
           12   24     6        newSize  I
           14   21     7     clearIndex  I
           18   21     8        oldData  Lio/undertow/protocols/http2/Hpack$HeaderField;
    Exceptions:
      throws io.undertow.protocols.http2.HpackException
    MethodParameters:
             Name  Flags
      buffer       
      originalPos  

  private io.undertow.util.HttpString readHeaderName(java.nio.ByteBuffer, int);
    descriptor: (Ljava/nio/ByteBuffer;I)Lio/undertow/util/HttpString;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=5, args_size=3
        start local 0 // io.undertow.protocols.http2.HpackDecoder this
        start local 1 // java.nio.ByteBuffer buffer
        start local 2 // int prefixLength
         0: .line 222
            aload 1 /* buffer */
            aload 1 /* buffer */
            invokevirtual java.nio.ByteBuffer.position:()I
            iconst_1
            isub
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/Buffer;
            pop
         1: .line 223
            aload 1 /* buffer */
            iload 2 /* prefixLength */
            invokestatic io.undertow.protocols.http2.Hpack.decodeInteger:(Ljava/nio/ByteBuffer;I)I
            istore 3 /* index */
        start local 3 // int index
         2: .line 224
            iload 3 /* index */
            iconst_m1
            if_icmpne 4
         3: .line 225
            aconst_null
            areturn
         4: .line 226
      StackMap locals: int
      StackMap stack:
            iload 3 /* index */
            ifeq 6
         5: .line 227
            aload 0 /* this */
            iload 3 /* index */
            invokevirtual io.undertow.protocols.http2.HpackDecoder.handleIndexedHeaderName:(I)Lio/undertow/util/HttpString;
            areturn
         6: .line 229
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* buffer */
            invokevirtual io.undertow.protocols.http2.HpackDecoder.readHpackString:(Ljava/nio/ByteBuffer;)Ljava/lang/String;
            astore 4 /* string */
        start local 4 // java.lang.String string
         7: .line 230
            aload 4 /* string */
            ifnonnull 9
         8: .line 231
            aconst_null
            areturn
         9: .line 233
      StackMap locals: java.lang.String
      StackMap stack:
            new io.undertow.util.HttpString
            dup
            aload 4 /* string */
            invokespecial io.undertow.util.HttpString.<init>:(Ljava/lang/String;)V
            areturn
        end local 4 // java.lang.String string
        end local 3 // int index
        end local 2 // int prefixLength
        end local 1 // java.nio.ByteBuffer buffer
        end local 0 // io.undertow.protocols.http2.HpackDecoder this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   10     0          this  Lio/undertow/protocols/http2/HpackDecoder;
            0   10     1        buffer  Ljava/nio/ByteBuffer;
            0   10     2  prefixLength  I
            2   10     3         index  I
            7   10     4        string  Ljava/lang/String;
    Exceptions:
      throws io.undertow.protocols.http2.HpackException
    MethodParameters:
              Name  Flags
      buffer        
      prefixLength  

  private java.lang.String readHpackString(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=6, args_size=2
        start local 0 // io.undertow.protocols.http2.HpackDecoder this
        start local 1 // java.nio.ByteBuffer buffer
         0: .line 238
            aload 1 /* buffer */
            invokevirtual java.nio.ByteBuffer.hasRemaining:()Z
            ifne 2
         1: .line 239
            aconst_null
            areturn
         2: .line 241
      StackMap locals:
      StackMap stack:
            aload 1 /* buffer */
            aload 1 /* buffer */
            invokevirtual java.nio.ByteBuffer.position:()I
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 2 /* data */
        start local 2 // byte data
         3: .line 243
            aload 1 /* buffer */
            bipush 7
            invokestatic io.undertow.protocols.http2.Hpack.decodeInteger:(Ljava/nio/ByteBuffer;I)I
            istore 3 /* length */
        start local 3 // int length
         4: .line 244
            aload 1 /* buffer */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            iload 3 /* length */
            if_icmplt 5
            iload 3 /* length */
            iconst_m1
            if_icmpne 6
         5: .line 245
      StackMap locals: int int
      StackMap stack:
            aconst_null
            areturn
         6: .line 247
      StackMap locals:
      StackMap stack:
            iload 2 /* data */
            sipush 128
            iand
            ifeq 7
            iconst_1
            goto 8
      StackMap locals:
      StackMap stack:
         7: iconst_0
      StackMap locals:
      StackMap stack: int
         8: istore 4 /* huffman */
        start local 4 // boolean huffman
         9: .line 248
            iload 4 /* huffman */
            ifeq 11
        10: .line 249
            aload 0 /* this */
            iload 3 /* length */
            aload 1 /* buffer */
            invokevirtual io.undertow.protocols.http2.HpackDecoder.readHuffmanString:(ILjava/nio/ByteBuffer;)Ljava/lang/String;
            areturn
        11: .line 251
      StackMap locals: int
      StackMap stack:
            iconst_0
            istore 5 /* i */
        start local 5 // int i
        12: goto 15
        13: .line 252
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield io.undertow.protocols.http2.HpackDecoder.stringBuilder:Ljava/lang/StringBuilder;
            aload 1 /* buffer */
            invokevirtual java.nio.ByteBuffer.get:()B
            i2c
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
        14: .line 251
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        15: iload 5 /* i */
            iload 3 /* length */
            if_icmplt 13
        end local 5 // int i
        16: .line 254
            aload 0 /* this */
            getfield io.undertow.protocols.http2.HpackDecoder.stringBuilder:Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            astore 5 /* ret */
        start local 5 // java.lang.String ret
        17: .line 255
            aload 0 /* this */
            getfield io.undertow.protocols.http2.HpackDecoder.stringBuilder:Ljava/lang/StringBuilder;
            iconst_0
            invokevirtual java.lang.StringBuilder.setLength:(I)V
        18: .line 256
            aload 5 /* ret */
            areturn
        end local 5 // java.lang.String ret
        end local 4 // boolean huffman
        end local 3 // int length
        end local 2 // byte data
        end local 1 // java.nio.ByteBuffer buffer
        end local 0 // io.undertow.protocols.http2.HpackDecoder this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   19     0     this  Lio/undertow/protocols/http2/HpackDecoder;
            0   19     1   buffer  Ljava/nio/ByteBuffer;
            3   19     2     data  B
            4   19     3   length  I
            9   19     4  huffman  Z
           12   16     5        i  I
           17   19     5      ret  Ljava/lang/String;
    Exceptions:
      throws io.undertow.protocols.http2.HpackException
    MethodParameters:
        Name  Flags
      buffer  

  private java.lang.String readHuffmanString(int, java.nio.ByteBuffer);
    descriptor: (ILjava/nio/ByteBuffer;)Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // io.undertow.protocols.http2.HpackDecoder this
        start local 1 // int length
        start local 2 // java.nio.ByteBuffer buffer
         0: .line 260
            aload 2 /* buffer */
            iload 1 /* length */
            aload 0 /* this */
            getfield io.undertow.protocols.http2.HpackDecoder.stringBuilder:Ljava/lang/StringBuilder;
            invokestatic io.undertow.protocols.http2.HPackHuffman.decode:(Ljava/nio/ByteBuffer;ILjava/lang/StringBuilder;)V
         1: .line 261
            aload 0 /* this */
            getfield io.undertow.protocols.http2.HpackDecoder.stringBuilder:Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            astore 3 /* ret */
        start local 3 // java.lang.String ret
         2: .line 262
            aload 0 /* this */
            getfield io.undertow.protocols.http2.HpackDecoder.stringBuilder:Ljava/lang/StringBuilder;
            iconst_0
            invokevirtual java.lang.StringBuilder.setLength:(I)V
         3: .line 263
            aload 3 /* ret */
            areturn
        end local 3 // java.lang.String ret
        end local 2 // java.nio.ByteBuffer buffer
        end local 1 // int length
        end local 0 // io.undertow.protocols.http2.HpackDecoder this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lio/undertow/protocols/http2/HpackDecoder;
            0    4     1  length  I
            0    4     2  buffer  Ljava/nio/ByteBuffer;
            2    4     3     ret  Ljava/lang/String;
    Exceptions:
      throws io.undertow.protocols.http2.HpackException
    MethodParameters:
        Name  Flags
      length  
      buffer  

  private io.undertow.util.HttpString handleIndexedHeaderName(int);
    descriptor: (I)Lio/undertow/util/HttpString;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // io.undertow.protocols.http2.HpackDecoder this
        start local 1 // int index
         0: .line 267
            iload 1 /* index */
            getstatic io.undertow.protocols.http2.Hpack.STATIC_TABLE_LENGTH:I
            if_icmpgt 2
         1: .line 268
            getstatic io.undertow.protocols.http2.Hpack.STATIC_TABLE:[Lio/undertow/protocols/http2/Hpack$HeaderField;
            iload 1 /* index */
            aaload
            getfield io.undertow.protocols.http2.Hpack$HeaderField.name:Lio/undertow/util/HttpString;
            areturn
         2: .line 270
      StackMap locals:
      StackMap stack:
            iload 1 /* index */
            getstatic io.undertow.protocols.http2.Hpack.STATIC_TABLE_LENGTH:I
            aload 0 /* this */
            getfield io.undertow.protocols.http2.HpackDecoder.filledTableSlots:I
            iadd
            if_icmplt 4
         3: .line 271
            new io.undertow.protocols.http2.HpackException
            dup
            invokespecial io.undertow.protocols.http2.HpackException.<init>:()V
            athrow
         4: .line 273
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* index */
            getstatic io.undertow.protocols.http2.Hpack.STATIC_TABLE_LENGTH:I
            isub
            invokevirtual io.undertow.protocols.http2.HpackDecoder.getRealIndex:(I)I
            istore 2 /* adjustedIndex */
        start local 2 // int adjustedIndex
         5: .line 274
            aload 0 /* this */
            getfield io.undertow.protocols.http2.HpackDecoder.headerTable:[Lio/undertow/protocols/http2/Hpack$HeaderField;
            iload 2 /* adjustedIndex */
            aaload
            astore 3 /* res */
        start local 3 // io.undertow.protocols.http2.Hpack$HeaderField res
         6: .line 275
            aload 3 /* res */
            ifnonnull 8
         7: .line 276
            new io.undertow.protocols.http2.HpackException
            dup
            invokespecial io.undertow.protocols.http2.HpackException.<init>:()V
            athrow
         8: .line 278
      StackMap locals: int io.undertow.protocols.http2.Hpack$HeaderField
      StackMap stack:
            aload 3 /* res */
            getfield io.undertow.protocols.http2.Hpack$HeaderField.name:Lio/undertow/util/HttpString;
            areturn
        end local 3 // io.undertow.protocols.http2.Hpack$HeaderField res
        end local 2 // int adjustedIndex
        end local 1 // int index
        end local 0 // io.undertow.protocols.http2.HpackDecoder this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    9     0           this  Lio/undertow/protocols/http2/HpackDecoder;
            0    9     1          index  I
            5    9     2  adjustedIndex  I
            6    9     3            res  Lio/undertow/protocols/http2/Hpack$HeaderField;
    Exceptions:
      throws io.undertow.protocols.http2.HpackException
    MethodParameters:
       Name  Flags
      index  

  private void handleIndex(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // io.undertow.protocols.http2.HpackDecoder this
        start local 1 // int index
         0: .line 289
            iload 1 /* index */
            getstatic io.undertow.protocols.http2.Hpack.STATIC_TABLE_LENGTH:I
            if_icmpgt 3
         1: .line 290
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.undertow.protocols.http2.HpackDecoder.addStaticTableEntry:(I)V
         2: .line 291
            goto 6
         3: .line 292
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* index */
            getstatic io.undertow.protocols.http2.Hpack.STATIC_TABLE_LENGTH:I
            isub
            invokevirtual io.undertow.protocols.http2.HpackDecoder.getRealIndex:(I)I
            istore 2 /* adjustedIndex */
        start local 2 // int adjustedIndex
         4: .line 293
            aload 0 /* this */
            getfield io.undertow.protocols.http2.HpackDecoder.headerTable:[Lio/undertow/protocols/http2/Hpack$HeaderField;
            iload 2 /* adjustedIndex */
            aaload
            astore 3 /* headerField */
        start local 3 // io.undertow.protocols.http2.Hpack$HeaderField headerField
         5: .line 294
            aload 0 /* this */
            getfield io.undertow.protocols.http2.HpackDecoder.headerEmitter:Lio/undertow/protocols/http2/HpackDecoder$HeaderEmitter;
            aload 3 /* headerField */
            getfield io.undertow.protocols.http2.Hpack$HeaderField.name:Lio/undertow/util/HttpString;
            aload 3 /* headerField */
            getfield io.undertow.protocols.http2.Hpack$HeaderField.value:Ljava/lang/String;
            iconst_0
            invokeinterface io.undertow.protocols.http2.HpackDecoder$HeaderEmitter.emitHeader:(Lio/undertow/util/HttpString;Ljava/lang/String;Z)V
        end local 3 // io.undertow.protocols.http2.Hpack$HeaderField headerField
        end local 2 // int adjustedIndex
         6: .line 296
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int index
        end local 0 // io.undertow.protocols.http2.HpackDecoder this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    7     0           this  Lio/undertow/protocols/http2/HpackDecoder;
            0    7     1          index  I
            4    6     2  adjustedIndex  I
            5    6     3    headerField  Lio/undertow/protocols/http2/Hpack$HeaderField;
    Exceptions:
      throws io.undertow.protocols.http2.HpackException
    MethodParameters:
       Name  Flags
      index  

  int getRealIndex(int);
    descriptor: (I)I
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.undertow.protocols.http2.HpackDecoder this
        start local 1 // int index
         0: .line 311
            aload 0 /* this */
            getfield io.undertow.protocols.http2.HpackDecoder.firstSlotPosition:I
            aload 0 /* this */
            getfield io.undertow.protocols.http2.HpackDecoder.filledTableSlots:I
            iload 1 /* index */
            isub
            iadd
            aload 0 /* this */
            getfield io.undertow.protocols.http2.HpackDecoder.headerTable:[Lio/undertow/protocols/http2/Hpack$HeaderField;
            arraylength
            irem
            istore 2 /* newIndex */
        start local 2 // int newIndex
         1: .line 312
            iload 2 /* newIndex */
            ifge 3
         2: .line 313
            getstatic io.undertow.UndertowMessages.MESSAGES:Lio/undertow/UndertowMessages;
            iload 1 /* index */
            invokeinterface io.undertow.UndertowMessages.invalidHpackIndex:(I)Lio/undertow/protocols/http2/HpackException;
            athrow
         3: .line 315
      StackMap locals: int
      StackMap stack:
            iload 2 /* newIndex */
            ireturn
        end local 2 // int newIndex
        end local 1 // int index
        end local 0 // io.undertow.protocols.http2.HpackDecoder this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lio/undertow/protocols/http2/HpackDecoder;
            0    4     1     index  I
            1    4     2  newIndex  I
    Exceptions:
      throws io.undertow.protocols.http2.HpackException
    MethodParameters:
       Name  Flags
      index  

  private void addStaticTableEntry(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // io.undertow.protocols.http2.HpackDecoder this
        start local 1 // int index
         0: .line 320
            getstatic io.undertow.protocols.http2.Hpack.STATIC_TABLE:[Lio/undertow/protocols/http2/Hpack$HeaderField;
            iload 1 /* index */
            aaload
            astore 2 /* entry */
        start local 2 // io.undertow.protocols.http2.Hpack$HeaderField entry
         1: .line 321
            aload 0 /* this */
            getfield io.undertow.protocols.http2.HpackDecoder.headerEmitter:Lio/undertow/protocols/http2/HpackDecoder$HeaderEmitter;
            aload 2 /* entry */
            getfield io.undertow.protocols.http2.Hpack$HeaderField.name:Lio/undertow/util/HttpString;
            aload 2 /* entry */
            getfield io.undertow.protocols.http2.Hpack$HeaderField.value:Ljava/lang/String;
            ifnonnull 2
            ldc ""
            goto 3
      StackMap locals: io.undertow.protocols.http2.HpackDecoder int io.undertow.protocols.http2.Hpack$HeaderField
      StackMap stack: io.undertow.protocols.http2.HpackDecoder$HeaderEmitter io.undertow.util.HttpString
         2: aload 2 /* entry */
            getfield io.undertow.protocols.http2.Hpack$HeaderField.value:Ljava/lang/String;
      StackMap locals: io.undertow.protocols.http2.HpackDecoder int io.undertow.protocols.http2.Hpack$HeaderField
      StackMap stack: io.undertow.protocols.http2.HpackDecoder$HeaderEmitter io.undertow.util.HttpString java.lang.String
         3: iconst_0
            invokeinterface io.undertow.protocols.http2.HpackDecoder$HeaderEmitter.emitHeader:(Lio/undertow/util/HttpString;Ljava/lang/String;Z)V
         4: .line 322
            return
        end local 2 // io.undertow.protocols.http2.Hpack$HeaderField entry
        end local 1 // int index
        end local 0 // io.undertow.protocols.http2.HpackDecoder this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lio/undertow/protocols/http2/HpackDecoder;
            0    5     1  index  I
            1    5     2  entry  Lio/undertow/protocols/http2/Hpack$HeaderField;
    Exceptions:
      throws io.undertow.protocols.http2.HpackException
    MethodParameters:
       Name  Flags
      index  

  private void addEntryToHeaderTable(io.undertow.protocols.http2.Hpack$HeaderField);
    descriptor: (Lio/undertow/protocols/http2/Hpack$HeaderField;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=8, args_size=2
        start local 0 // io.undertow.protocols.http2.HpackDecoder this
        start local 1 // io.undertow.protocols.http2.Hpack$HeaderField entry
         0: .line 325
            aload 1 /* entry */
            getfield io.undertow.protocols.http2.Hpack$HeaderField.size:I
            aload 0 /* this */
            getfield io.undertow.protocols.http2.HpackDecoder.specifiedMemorySize:I
            if_icmple 10
         1: .line 327
            goto 7
         2: .line 328
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.undertow.protocols.http2.HpackDecoder.headerTable:[Lio/undertow/protocols/http2/Hpack$HeaderField;
            aload 0 /* this */
            getfield io.undertow.protocols.http2.HpackDecoder.firstSlotPosition:I
            aconst_null
            aastore
         3: .line 329
            aload 0 /* this */
            dup
            getfield io.undertow.protocols.http2.HpackDecoder.firstSlotPosition:I
            iconst_1
            iadd
            putfield io.undertow.protocols.http2.HpackDecoder.firstSlotPosition:I
         4: .line 330
            aload 0 /* this */
            getfield io.undertow.protocols.http2.HpackDecoder.firstSlotPosition:I
            aload 0 /* this */
            getfield io.undertow.protocols.http2.HpackDecoder.headerTable:[Lio/undertow/protocols/http2/Hpack$HeaderField;
            arraylength
            if_icmpne 6
         5: .line 331
            aload 0 /* this */
            iconst_0
            putfield io.undertow.protocols.http2.HpackDecoder.firstSlotPosition:I
         6: .line 333
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield io.undertow.protocols.http2.HpackDecoder.filledTableSlots:I
            iconst_1
            isub
            putfield io.undertow.protocols.http2.HpackDecoder.filledTableSlots:I
         7: .line 327
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.undertow.protocols.http2.HpackDecoder.filledTableSlots:I
            ifgt 2
         8: .line 335
            aload 0 /* this */
            iconst_0
            putfield io.undertow.protocols.http2.HpackDecoder.currentMemorySize:I
         9: .line 336
            return
        10: .line 338
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.undertow.protocols.http2.HpackDecoder.resizeIfRequired:()V
        11: .line 339
            aload 0 /* this */
            getfield io.undertow.protocols.http2.HpackDecoder.filledTableSlots:I
            iconst_1
            iadd
            istore 2 /* newTableSlots */
        start local 2 // int newTableSlots
        12: .line 340
            aload 0 /* this */
            getfield io.undertow.protocols.http2.HpackDecoder.headerTable:[Lio/undertow/protocols/http2/Hpack$HeaderField;
            arraylength
            istore 3 /* tableLength */
        start local 3 // int tableLength
        13: .line 341
            aload 0 /* this */
            getfield io.undertow.protocols.http2.HpackDecoder.firstSlotPosition:I
            aload 0 /* this */
            getfield io.undertow.protocols.http2.HpackDecoder.filledTableSlots:I
            iadd
            iload 3 /* tableLength */
            irem
            istore 4 /* index */
        start local 4 // int index
        14: .line 342
            aload 0 /* this */
            getfield io.undertow.protocols.http2.HpackDecoder.headerTable:[Lio/undertow/protocols/http2/Hpack$HeaderField;
            iload 4 /* index */
            aload 1 /* entry */
            aastore
        15: .line 343
            aload 0 /* this */
            getfield io.undertow.protocols.http2.HpackDecoder.currentMemorySize:I
            aload 1 /* entry */
            getfield io.undertow.protocols.http2.Hpack$HeaderField.size:I
            iadd
            istore 5 /* newSize */
        start local 5 // int newSize
        16: .line 344
            goto 25
        17: .line 345
      StackMap locals: io.undertow.protocols.http2.HpackDecoder io.undertow.protocols.http2.Hpack$HeaderField int int int int
      StackMap stack:
            aload 0 /* this */
            getfield io.undertow.protocols.http2.HpackDecoder.firstSlotPosition:I
            istore 6 /* clearIndex */
        start local 6 // int clearIndex
        18: .line 346
            aload 0 /* this */
            dup
            getfield io.undertow.protocols.http2.HpackDecoder.firstSlotPosition:I
            iconst_1
            iadd
            putfield io.undertow.protocols.http2.HpackDecoder.firstSlotPosition:I
        19: .line 347
            aload 0 /* this */
            getfield io.undertow.protocols.http2.HpackDecoder.firstSlotPosition:I
            iload 3 /* tableLength */
            if_icmpne 21
        20: .line 348
            aload 0 /* this */
            iconst_0
            putfield io.undertow.protocols.http2.HpackDecoder.firstSlotPosition:I
        21: .line 350
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield io.undertow.protocols.http2.HpackDecoder.headerTable:[Lio/undertow/protocols/http2/Hpack$HeaderField;
            iload 6 /* clearIndex */
            aaload
            astore 7 /* oldData */
        start local 7 // io.undertow.protocols.http2.Hpack$HeaderField oldData
        22: .line 351
            aload 0 /* this */
            getfield io.undertow.protocols.http2.HpackDecoder.headerTable:[Lio/undertow/protocols/http2/Hpack$HeaderField;
            iload 6 /* clearIndex */
            aconst_null
            aastore
        23: .line 352
            iload 5 /* newSize */
            aload 7 /* oldData */
            getfield io.undertow.protocols.http2.Hpack$HeaderField.size:I
            isub
            istore 5 /* newSize */
        24: .line 353
            iinc 2 /* newTableSlots */ -1
        end local 7 // io.undertow.protocols.http2.Hpack$HeaderField oldData
        end local 6 // int clearIndex
        25: .line 344
      StackMap locals:
      StackMap stack:
            iload 5 /* newSize */
            aload 0 /* this */
            getfield io.undertow.protocols.http2.HpackDecoder.specifiedMemorySize:I
            if_icmpgt 17
        26: .line 355
            aload 0 /* this */
            iload 2 /* newTableSlots */
            putfield io.undertow.protocols.http2.HpackDecoder.filledTableSlots:I
        27: .line 356
            aload 0 /* this */
            iload 5 /* newSize */
            putfield io.undertow.protocols.http2.HpackDecoder.currentMemorySize:I
        28: .line 357
            return
        end local 5 // int newSize
        end local 4 // int index
        end local 3 // int tableLength
        end local 2 // int newTableSlots
        end local 1 // io.undertow.protocols.http2.Hpack$HeaderField entry
        end local 0 // io.undertow.protocols.http2.HpackDecoder this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   29     0           this  Lio/undertow/protocols/http2/HpackDecoder;
            0   29     1          entry  Lio/undertow/protocols/http2/Hpack$HeaderField;
           12   29     2  newTableSlots  I
           13   29     3    tableLength  I
           14   29     4          index  I
           16   29     5        newSize  I
           18   25     6     clearIndex  I
           22   25     7        oldData  Lio/undertow/protocols/http2/Hpack$HeaderField;
    MethodParameters:
       Name  Flags
      entry  

  private void resizeIfRequired();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=3, args_size=1
        start local 0 // io.undertow.protocols.http2.HpackDecoder this
         0: .line 360
            aload 0 /* this */
            getfield io.undertow.protocols.http2.HpackDecoder.filledTableSlots:I
            aload 0 /* this */
            getfield io.undertow.protocols.http2.HpackDecoder.headerTable:[Lio/undertow/protocols/http2/Hpack$HeaderField;
            arraylength
            if_icmpne 9
         1: .line 361
            aload 0 /* this */
            getfield io.undertow.protocols.http2.HpackDecoder.headerTable:[Lio/undertow/protocols/http2/Hpack$HeaderField;
            arraylength
            bipush 10
            iadd
            anewarray io.undertow.protocols.http2.Hpack$HeaderField
            astore 1 /* newArray */
        start local 1 // io.undertow.protocols.http2.Hpack$HeaderField[] newArray
         2: .line 362
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         3: goto 6
         4: .line 363
      StackMap locals: io.undertow.protocols.http2.Hpack$HeaderField[] int
      StackMap stack:
            aload 1 /* newArray */
            iload 2 /* i */
            aload 0 /* this */
            getfield io.undertow.protocols.http2.HpackDecoder.headerTable:[Lio/undertow/protocols/http2/Hpack$HeaderField;
            aload 0 /* this */
            getfield io.undertow.protocols.http2.HpackDecoder.firstSlotPosition:I
            iload 2 /* i */
            iadd
            aload 0 /* this */
            getfield io.undertow.protocols.http2.HpackDecoder.headerTable:[Lio/undertow/protocols/http2/Hpack$HeaderField;
            arraylength
            irem
            aaload
            aastore
         5: .line 362
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 2 /* i */
            aload 0 /* this */
            getfield io.undertow.protocols.http2.HpackDecoder.headerTable:[Lio/undertow/protocols/http2/Hpack$HeaderField;
            arraylength
            if_icmplt 4
        end local 2 // int i
         7: .line 365
            aload 0 /* this */
            iconst_0
            putfield io.undertow.protocols.http2.HpackDecoder.firstSlotPosition:I
         8: .line 366
            aload 0 /* this */
            aload 1 /* newArray */
            putfield io.undertow.protocols.http2.HpackDecoder.headerTable:[Lio/undertow/protocols/http2/Hpack$HeaderField;
        end local 1 // io.undertow.protocols.http2.Hpack$HeaderField[] newArray
         9: .line 368
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.undertow.protocols.http2.HpackDecoder this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   10     0      this  Lio/undertow/protocols/http2/HpackDecoder;
            2    9     1  newArray  [Lio/undertow/protocols/http2/Hpack$HeaderField;
            3    7     2         i  I

  public io.undertow.protocols.http2.HpackDecoder$HeaderEmitter getHeaderEmitter();
    descriptor: ()Lio/undertow/protocols/http2/HpackDecoder$HeaderEmitter;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.undertow.protocols.http2.HpackDecoder this
         0: .line 378
            aload 0 /* this */
            getfield io.undertow.protocols.http2.HpackDecoder.headerEmitter:Lio/undertow/protocols/http2/HpackDecoder$HeaderEmitter;
            areturn
        end local 0 // io.undertow.protocols.http2.HpackDecoder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/undertow/protocols/http2/HpackDecoder;

  public void setHeaderEmitter(io.undertow.protocols.http2.HpackDecoder$HeaderEmitter);
    descriptor: (Lio/undertow/protocols/http2/HpackDecoder$HeaderEmitter;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.undertow.protocols.http2.HpackDecoder this
        start local 1 // io.undertow.protocols.http2.HpackDecoder$HeaderEmitter headerEmitter
         0: .line 382
            aload 0 /* this */
            aload 1 /* headerEmitter */
            putfield io.undertow.protocols.http2.HpackDecoder.headerEmitter:Lio/undertow/protocols/http2/HpackDecoder$HeaderEmitter;
         1: .line 383
            return
        end local 1 // io.undertow.protocols.http2.HpackDecoder$HeaderEmitter headerEmitter
        end local 0 // io.undertow.protocols.http2.HpackDecoder this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0           this  Lio/undertow/protocols/http2/HpackDecoder;
            0    2     1  headerEmitter  Lio/undertow/protocols/http2/HpackDecoder$HeaderEmitter;
    MethodParameters:
               Name  Flags
      headerEmitter  

  int getFirstSlotPosition();
    descriptor: ()I
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.undertow.protocols.http2.HpackDecoder this
         0: .line 388
            aload 0 /* this */
            getfield io.undertow.protocols.http2.HpackDecoder.firstSlotPosition:I
            ireturn
        end local 0 // io.undertow.protocols.http2.HpackDecoder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/undertow/protocols/http2/HpackDecoder;

  io.undertow.protocols.http2.Hpack$HeaderField[] getHeaderTable();
    descriptor: ()[Lio/undertow/protocols/http2/Hpack$HeaderField;
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.undertow.protocols.http2.HpackDecoder this
         0: .line 392
            aload 0 /* this */
            getfield io.undertow.protocols.http2.HpackDecoder.headerTable:[Lio/undertow/protocols/http2/Hpack$HeaderField;
            areturn
        end local 0 // io.undertow.protocols.http2.HpackDecoder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/undertow/protocols/http2/HpackDecoder;

  int getFilledTableSlots();
    descriptor: ()I
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.undertow.protocols.http2.HpackDecoder this
         0: .line 396
            aload 0 /* this */
            getfield io.undertow.protocols.http2.HpackDecoder.filledTableSlots:I
            ireturn
        end local 0 // io.undertow.protocols.http2.HpackDecoder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/undertow/protocols/http2/HpackDecoder;

  int getCurrentMemorySize();
    descriptor: ()I
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.undertow.protocols.http2.HpackDecoder this
         0: .line 400
            aload 0 /* this */
            getfield io.undertow.protocols.http2.HpackDecoder.currentMemorySize:I
            ireturn
        end local 0 // io.undertow.protocols.http2.HpackDecoder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/undertow/protocols/http2/HpackDecoder;

  int getSpecifiedMemorySize();
    descriptor: ()I
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.undertow.protocols.http2.HpackDecoder this
         0: .line 404
            aload 0 /* this */
            getfield io.undertow.protocols.http2.HpackDecoder.specifiedMemorySize:I
            ireturn
        end local 0 // io.undertow.protocols.http2.HpackDecoder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/undertow/protocols/http2/HpackDecoder;
}
SourceFile: "HpackDecoder.java"
NestMembers:
  io.undertow.protocols.http2.HpackDecoder$HeaderEmitter
InnerClasses:
  HeaderField = io.undertow.protocols.http2.Hpack$HeaderField of io.undertow.protocols.http2.Hpack
  public abstract HeaderEmitter = io.undertow.protocols.http2.HpackDecoder$HeaderEmitter of io.undertow.protocols.http2.HpackDecoder