final class org.graalvm.compiler.asm.Buffer
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: org.graalvm.compiler.asm.Buffer
  super_class: java.lang.Object
{
  protected java.nio.ByteBuffer data;
    descriptor: Ljava/nio/ByteBuffer;
    flags: (0x0004) ACC_PROTECTED

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

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 37
            ldc Lorg/graalvm/compiler/asm/Buffer;
            invokevirtual java.lang.Class.desiredAssertionStatus:()Z
            ifne 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: putstatic org.graalvm.compiler.asm.Buffer.$assertionsDisabled:Z
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void <init>(java.nio.ByteOrder);
    descriptor: (Ljava/nio/ByteOrder;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.graalvm.compiler.asm.Buffer this
        start local 1 // java.nio.ByteOrder order
         0: .line 41
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 42
            aload 0 /* this */
            sipush 232
            invokestatic java.nio.ByteBuffer.allocate:(I)Ljava/nio/ByteBuffer;
            putfield org.graalvm.compiler.asm.Buffer.data:Ljava/nio/ByteBuffer;
         2: .line 43
            aload 0 /* this */
            getfield org.graalvm.compiler.asm.Buffer.data:Ljava/nio/ByteBuffer;
            aload 1 /* order */
            invokevirtual java.nio.ByteBuffer.order:(Ljava/nio/ByteOrder;)Ljava/nio/ByteBuffer;
            pop
         3: .line 44
            return
        end local 1 // java.nio.ByteOrder order
        end local 0 // org.graalvm.compiler.asm.Buffer this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/graalvm/compiler/asm/Buffer;
            0    4     1  order  Ljava/nio/ByteOrder;
    MethodParameters:
       Name  Flags
      order  

  public int position();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.asm.Buffer this
         0: .line 47
            aload 0 /* this */
            getfield org.graalvm.compiler.asm.Buffer.data:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.position:()I
            ireturn
        end local 0 // org.graalvm.compiler.asm.Buffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/asm/Buffer;

  public void setPosition(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.graalvm.compiler.asm.Buffer this
        start local 1 // int position
         0: .line 51
            getstatic org.graalvm.compiler.asm.Buffer.$assertionsDisabled:Z
            ifne 2
            iload 1 /* position */
            iflt 1
            iload 1 /* position */
            aload 0 /* this */
            getfield org.graalvm.compiler.asm.Buffer.data:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.limit:()I
            if_icmple 2
      StackMap locals:
      StackMap stack:
         1: new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         2: .line 52
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.graalvm.compiler.asm.Buffer.data:Ljava/nio/ByteBuffer;
            invokestatic org.graalvm.compiler.serviceprovider.BufferUtil.asBaseBuffer:(Ljava/nio/Buffer;)Ljava/nio/Buffer;
            iload 1 /* position */
            invokevirtual java.nio.Buffer.position:(I)Ljava/nio/Buffer;
            pop
         3: .line 53
            return
        end local 1 // int position
        end local 0 // org.graalvm.compiler.asm.Buffer this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lorg/graalvm/compiler/asm/Buffer;
            0    4     1  position  I
    MethodParameters:
          Name  Flags
      position  

  public byte[] close(boolean);
    descriptor: (Z)[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.graalvm.compiler.asm.Buffer this
        start local 1 // boolean trimmedCopy
         0: .line 64
            aload 0 /* this */
            getfield org.graalvm.compiler.asm.Buffer.data:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.array:()[B
            astore 2 /* result */
        start local 2 // byte[] result
         1: .line 65
            iload 1 /* trimmedCopy */
            ifeq 3
         2: .line 68
            aload 2 /* result */
            aload 0 /* this */
            getfield org.graalvm.compiler.asm.Buffer.data:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.position:()I
            invokestatic java.util.Arrays.copyOf:([BI)[B
            astore 2 /* result */
         3: .line 70
      StackMap locals: byte[]
      StackMap stack:
            aload 0 /* this */
            aconst_null
            putfield org.graalvm.compiler.asm.Buffer.data:Ljava/nio/ByteBuffer;
         4: .line 71
            aload 2 /* result */
            areturn
        end local 2 // byte[] result
        end local 1 // boolean trimmedCopy
        end local 0 // org.graalvm.compiler.asm.Buffer this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    5     0         this  Lorg/graalvm/compiler/asm/Buffer;
            0    5     1  trimmedCopy  Z
            1    5     2       result  [B
    MethodParameters:
             Name  Flags
      trimmedCopy  

  public byte[] copyData(int, int);
    descriptor: (II)[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.graalvm.compiler.asm.Buffer this
        start local 1 // int start
        start local 2 // int end
         0: .line 75
            aload 0 /* this */
            getfield org.graalvm.compiler.asm.Buffer.data:Ljava/nio/ByteBuffer;
            ifnonnull 2
         1: .line 76
            aconst_null
            areturn
         2: .line 78
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.graalvm.compiler.asm.Buffer.data:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.array:()[B
            iload 1 /* start */
            iload 2 /* end */
            invokestatic java.util.Arrays.copyOfRange:([BII)[B
            areturn
        end local 2 // int end
        end local 1 // int start
        end local 0 // org.graalvm.compiler.asm.Buffer this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/graalvm/compiler/asm/Buffer;
            0    3     1  start  I
            0    3     2    end  I
    MethodParameters:
       Name  Flags
      start  
      end    

  public void copyInto(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // org.graalvm.compiler.asm.Buffer this
        start local 1 // byte[] dst
        start local 2 // int off
        start local 3 // int len
         0: .line 89
            aload 0 /* this */
            getfield org.graalvm.compiler.asm.Buffer.data:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.array:()[B
            iconst_0
            aload 1 /* dst */
            iload 2 /* off */
            iload 3 /* len */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         1: .line 90
            return
        end local 3 // int len
        end local 2 // int off
        end local 1 // byte[] dst
        end local 0 // org.graalvm.compiler.asm.Buffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/graalvm/compiler/asm/Buffer;
            0    2     1   dst  [B
            0    2     2   off  I
            0    2     3   len  I
    MethodParameters:
      Name  Flags
      dst   
      off   
      len   

  protected void ensureSize(int);
    descriptor: (I)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.graalvm.compiler.asm.Buffer this
        start local 1 // int length
         0: .line 93
            iload 1 /* length */
            aload 0 /* this */
            getfield org.graalvm.compiler.asm.Buffer.data:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.limit:()I
            if_icmplt 6
         1: .line 94
            aload 0 /* this */
            getfield org.graalvm.compiler.asm.Buffer.data:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.array:()[B
            iload 1 /* length */
            iconst_4
            imul
            invokestatic java.util.Arrays.copyOf:([BI)[B
            astore 2 /* newBuf */
        start local 2 // byte[] newBuf
         2: .line 95
            aload 2 /* newBuf */
            invokestatic java.nio.ByteBuffer.wrap:([B)Ljava/nio/ByteBuffer;
            astore 3 /* newData */
        start local 3 // java.nio.ByteBuffer newData
         3: .line 96
            aload 3 /* newData */
            aload 0 /* this */
            getfield org.graalvm.compiler.asm.Buffer.data:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.order:()Ljava/nio/ByteOrder;
            invokevirtual java.nio.ByteBuffer.order:(Ljava/nio/ByteOrder;)Ljava/nio/ByteBuffer;
            pop
         4: .line 97
            aload 3 /* newData */
            invokestatic org.graalvm.compiler.serviceprovider.BufferUtil.asBaseBuffer:(Ljava/nio/Buffer;)Ljava/nio/Buffer;
            aload 0 /* this */
            getfield org.graalvm.compiler.asm.Buffer.data:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.position:()I
            invokevirtual java.nio.Buffer.position:(I)Ljava/nio/Buffer;
            pop
         5: .line 98
            aload 0 /* this */
            aload 3 /* newData */
            putfield org.graalvm.compiler.asm.Buffer.data:Ljava/nio/ByteBuffer;
        end local 3 // java.nio.ByteBuffer newData
        end local 2 // byte[] newBuf
         6: .line 100
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int length
        end local 0 // org.graalvm.compiler.asm.Buffer this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    7     0     this  Lorg/graalvm/compiler/asm/Buffer;
            0    7     1   length  I
            2    6     2   newBuf  [B
            3    6     3  newData  Ljava/nio/ByteBuffer;
    MethodParameters:
        Name  Flags
      length  

  public void emitBytes(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.graalvm.compiler.asm.Buffer this
        start local 1 // byte[] arr
        start local 2 // int off
        start local 3 // int len
         0: .line 103
            aload 0 /* this */
            aload 0 /* this */
            getfield org.graalvm.compiler.asm.Buffer.data:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.position:()I
            iload 3 /* len */
            iadd
            invokevirtual org.graalvm.compiler.asm.Buffer.ensureSize:(I)V
         1: .line 104
            aload 0 /* this */
            getfield org.graalvm.compiler.asm.Buffer.data:Ljava/nio/ByteBuffer;
            aload 1 /* arr */
            iload 2 /* off */
            iload 3 /* len */
            invokevirtual java.nio.ByteBuffer.put:([BII)Ljava/nio/ByteBuffer;
            pop
         2: .line 105
            return
        end local 3 // int len
        end local 2 // int off
        end local 1 // byte[] arr
        end local 0 // org.graalvm.compiler.asm.Buffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/graalvm/compiler/asm/Buffer;
            0    3     1   arr  [B
            0    3     2   off  I
            0    3     3   len  I
    MethodParameters:
      Name  Flags
      arr   
      off   
      len   

  public void emitByte(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.graalvm.compiler.asm.Buffer this
        start local 1 // int b
         0: .line 108
            getstatic org.graalvm.compiler.asm.Buffer.$assertionsDisabled:Z
            ifne 1
            iload 1 /* b */
            invokestatic org.graalvm.compiler.core.common.NumUtil.isUByte:(I)Z
            ifne 1
            iload 1 /* b */
            invokestatic org.graalvm.compiler.core.common.NumUtil.isByte:(I)Z
            ifne 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 109
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.graalvm.compiler.asm.Buffer.data:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.position:()I
            iconst_1
            iadd
            invokevirtual org.graalvm.compiler.asm.Buffer.ensureSize:(I)V
         2: .line 110
            aload 0 /* this */
            getfield org.graalvm.compiler.asm.Buffer.data:Ljava/nio/ByteBuffer;
            iload 1 /* b */
            sipush 255
            iand
            i2b
            invokevirtual java.nio.ByteBuffer.put:(B)Ljava/nio/ByteBuffer;
            pop
         3: .line 111
            return
        end local 1 // int b
        end local 0 // org.graalvm.compiler.asm.Buffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/graalvm/compiler/asm/Buffer;
            0    4     1     b  I
    MethodParameters:
      Name  Flags
      b     

  public void emitShort(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.graalvm.compiler.asm.Buffer this
        start local 1 // int b
         0: .line 114
            getstatic org.graalvm.compiler.asm.Buffer.$assertionsDisabled:Z
            ifne 1
            iload 1 /* b */
            invokestatic org.graalvm.compiler.core.common.NumUtil.isUShort:(I)Z
            ifne 1
            iload 1 /* b */
            invokestatic org.graalvm.compiler.core.common.NumUtil.isShort:(I)Z
            ifne 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 115
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.graalvm.compiler.asm.Buffer.data:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.position:()I
            iconst_2
            iadd
            invokevirtual org.graalvm.compiler.asm.Buffer.ensureSize:(I)V
         2: .line 116
            aload 0 /* this */
            getfield org.graalvm.compiler.asm.Buffer.data:Ljava/nio/ByteBuffer;
            iload 1 /* b */
            i2s
            invokevirtual java.nio.ByteBuffer.putShort:(S)Ljava/nio/ByteBuffer;
            pop
         3: .line 117
            return
        end local 1 // int b
        end local 0 // org.graalvm.compiler.asm.Buffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/graalvm/compiler/asm/Buffer;
            0    4     1     b  I
    MethodParameters:
      Name  Flags
      b     

  public void emitInt(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.graalvm.compiler.asm.Buffer this
        start local 1 // int b
         0: .line 120
            aload 0 /* this */
            aload 0 /* this */
            getfield org.graalvm.compiler.asm.Buffer.data:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.position:()I
            iconst_4
            iadd
            invokevirtual org.graalvm.compiler.asm.Buffer.ensureSize:(I)V
         1: .line 121
            aload 0 /* this */
            getfield org.graalvm.compiler.asm.Buffer.data:Ljava/nio/ByteBuffer;
            iload 1 /* b */
            invokevirtual java.nio.ByteBuffer.putInt:(I)Ljava/nio/ByteBuffer;
            pop
         2: .line 122
            return
        end local 1 // int b
        end local 0 // org.graalvm.compiler.asm.Buffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/graalvm/compiler/asm/Buffer;
            0    3     1     b  I
    MethodParameters:
      Name  Flags
      b     

  public void emitLong(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.graalvm.compiler.asm.Buffer this
        start local 1 // long b
         0: .line 125
            aload 0 /* this */
            aload 0 /* this */
            getfield org.graalvm.compiler.asm.Buffer.data:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.position:()I
            bipush 8
            iadd
            invokevirtual org.graalvm.compiler.asm.Buffer.ensureSize:(I)V
         1: .line 126
            aload 0 /* this */
            getfield org.graalvm.compiler.asm.Buffer.data:Ljava/nio/ByteBuffer;
            lload 1 /* b */
            invokevirtual java.nio.ByteBuffer.putLong:(J)Ljava/nio/ByteBuffer;
            pop
         2: .line 127
            return
        end local 1 // long b
        end local 0 // org.graalvm.compiler.asm.Buffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/graalvm/compiler/asm/Buffer;
            0    3     1     b  J
    MethodParameters:
      Name  Flags
      b     

  public void emitBytes(byte[], int);
    descriptor: ([BI)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // org.graalvm.compiler.asm.Buffer this
        start local 1 // byte[] arr
        start local 2 // int pos
         0: .line 130
            aload 1 /* arr */
            arraylength
            istore 3 /* len */
        start local 3 // int len
         1: .line 131
            aload 0 /* this */
            iload 2 /* pos */
            iload 3 /* len */
            iadd
            invokevirtual org.graalvm.compiler.asm.Buffer.ensureSize:(I)V
         2: .line 134
            aload 1 /* arr */
            iconst_0
            aload 0 /* this */
            getfield org.graalvm.compiler.asm.Buffer.data:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.array:()[B
            iload 2 /* pos */
            iload 3 /* len */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         3: .line 135
            return
        end local 3 // int len
        end local 2 // int pos
        end local 1 // byte[] arr
        end local 0 // org.graalvm.compiler.asm.Buffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/graalvm/compiler/asm/Buffer;
            0    4     1   arr  [B
            0    4     2   pos  I
            1    4     3   len  I
    MethodParameters:
      Name  Flags
      arr   
      pos   

  public void emitByte(int, int);
    descriptor: (II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.graalvm.compiler.asm.Buffer this
        start local 1 // int b
        start local 2 // int pos
         0: .line 138
            getstatic org.graalvm.compiler.asm.Buffer.$assertionsDisabled:Z
            ifne 1
            iload 1 /* b */
            invokestatic org.graalvm.compiler.core.common.NumUtil.isUByte:(I)Z
            ifne 1
            iload 1 /* b */
            invokestatic org.graalvm.compiler.core.common.NumUtil.isByte:(I)Z
            ifne 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 139
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* pos */
            iconst_1
            iadd
            invokevirtual org.graalvm.compiler.asm.Buffer.ensureSize:(I)V
         2: .line 140
            aload 0 /* this */
            getfield org.graalvm.compiler.asm.Buffer.data:Ljava/nio/ByteBuffer;
            iload 2 /* pos */
            iload 1 /* b */
            sipush 255
            iand
            i2b
            invokevirtual java.nio.ByteBuffer.put:(IB)Ljava/nio/ByteBuffer;
            pop
         3: .line 141
            return
        end local 2 // int pos
        end local 1 // int b
        end local 0 // org.graalvm.compiler.asm.Buffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/graalvm/compiler/asm/Buffer;
            0    4     1     b  I
            0    4     2   pos  I
    MethodParameters:
      Name  Flags
      b     
      pos   

  public void emitShort(int, int);
    descriptor: (II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.graalvm.compiler.asm.Buffer this
        start local 1 // int b
        start local 2 // int pos
         0: .line 144
            getstatic org.graalvm.compiler.asm.Buffer.$assertionsDisabled:Z
            ifne 1
            iload 1 /* b */
            invokestatic org.graalvm.compiler.core.common.NumUtil.isUShort:(I)Z
            ifne 1
            iload 1 /* b */
            invokestatic org.graalvm.compiler.core.common.NumUtil.isShort:(I)Z
            ifne 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 145
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* pos */
            iconst_2
            iadd
            invokevirtual org.graalvm.compiler.asm.Buffer.ensureSize:(I)V
         2: .line 146
            aload 0 /* this */
            getfield org.graalvm.compiler.asm.Buffer.data:Ljava/nio/ByteBuffer;
            iload 2 /* pos */
            iload 1 /* b */
            i2s
            invokevirtual java.nio.ByteBuffer.putShort:(IS)Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.position:()I
            pop
         3: .line 147
            return
        end local 2 // int pos
        end local 1 // int b
        end local 0 // org.graalvm.compiler.asm.Buffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/graalvm/compiler/asm/Buffer;
            0    4     1     b  I
            0    4     2   pos  I
    MethodParameters:
      Name  Flags
      b     
      pos   

  public void emitInt(int, int);
    descriptor: (II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.graalvm.compiler.asm.Buffer this
        start local 1 // int b
        start local 2 // int pos
         0: .line 150
            aload 0 /* this */
            iload 2 /* pos */
            iconst_4
            iadd
            invokevirtual org.graalvm.compiler.asm.Buffer.ensureSize:(I)V
         1: .line 151
            aload 0 /* this */
            getfield org.graalvm.compiler.asm.Buffer.data:Ljava/nio/ByteBuffer;
            iload 2 /* pos */
            iload 1 /* b */
            invokevirtual java.nio.ByteBuffer.putInt:(II)Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.position:()I
            pop
         2: .line 152
            return
        end local 2 // int pos
        end local 1 // int b
        end local 0 // org.graalvm.compiler.asm.Buffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/graalvm/compiler/asm/Buffer;
            0    3     1     b  I
            0    3     2   pos  I
    MethodParameters:
      Name  Flags
      b     
      pos   

  public void emitLong(long, int);
    descriptor: (JI)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.graalvm.compiler.asm.Buffer this
        start local 1 // long b
        start local 3 // int pos
         0: .line 155
            aload 0 /* this */
            iload 3 /* pos */
            bipush 8
            iadd
            invokevirtual org.graalvm.compiler.asm.Buffer.ensureSize:(I)V
         1: .line 156
            aload 0 /* this */
            getfield org.graalvm.compiler.asm.Buffer.data:Ljava/nio/ByteBuffer;
            iload 3 /* pos */
            lload 1 /* b */
            invokevirtual java.nio.ByteBuffer.putLong:(IJ)Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.position:()I
            pop
         2: .line 157
            return
        end local 3 // int pos
        end local 1 // long b
        end local 0 // org.graalvm.compiler.asm.Buffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/graalvm/compiler/asm/Buffer;
            0    3     1     b  J
            0    3     3   pos  I
    MethodParameters:
      Name  Flags
      b     
      pos   

  public int getByte(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.graalvm.compiler.asm.Buffer this
        start local 1 // int pos
         0: .line 160
            aload 0 /* this */
            getfield org.graalvm.compiler.asm.Buffer.data:Ljava/nio/ByteBuffer;
            iload 1 /* pos */
            invokevirtual java.nio.ByteBuffer.get:(I)B
            istore 2 /* b */
        start local 2 // int b
         1: .line 161
            iload 2 /* b */
            sipush 255
            iand
            ireturn
        end local 2 // int b
        end local 1 // int pos
        end local 0 // org.graalvm.compiler.asm.Buffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/graalvm/compiler/asm/Buffer;
            0    2     1   pos  I
            1    2     2     b  I
    MethodParameters:
      Name  Flags
      pos   

  public int getShort(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.graalvm.compiler.asm.Buffer this
        start local 1 // int pos
         0: .line 165
            aload 0 /* this */
            getfield org.graalvm.compiler.asm.Buffer.data:Ljava/nio/ByteBuffer;
            iload 1 /* pos */
            invokevirtual java.nio.ByteBuffer.getShort:(I)S
            istore 2 /* s */
        start local 2 // short s
         1: .line 166
            iload 2 /* s */
            ldc 65535
            iand
            ireturn
        end local 2 // short s
        end local 1 // int pos
        end local 0 // org.graalvm.compiler.asm.Buffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/graalvm/compiler/asm/Buffer;
            0    2     1   pos  I
            1    2     2     s  S
    MethodParameters:
      Name  Flags
      pos   

  public int getInt(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.graalvm.compiler.asm.Buffer this
        start local 1 // int pos
         0: .line 170
            aload 0 /* this */
            getfield org.graalvm.compiler.asm.Buffer.data:Ljava/nio/ByteBuffer;
            iload 1 /* pos */
            invokevirtual java.nio.ByteBuffer.getInt:(I)I
            ireturn
        end local 1 // int pos
        end local 0 // org.graalvm.compiler.asm.Buffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/asm/Buffer;
            0    1     1   pos  I
    MethodParameters:
      Name  Flags
      pos   

  public void reset();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.asm.Buffer this
         0: .line 174
            aload 0 /* this */
            getfield org.graalvm.compiler.asm.Buffer.data:Ljava/nio/ByteBuffer;
            invokestatic org.graalvm.compiler.serviceprovider.BufferUtil.asBaseBuffer:(Ljava/nio/Buffer;)Ljava/nio/Buffer;
            invokevirtual java.nio.Buffer.clear:()Ljava/nio/Buffer;
            pop
         1: .line 175
            return
        end local 0 // org.graalvm.compiler.asm.Buffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/graalvm/compiler/asm/Buffer;
}
SourceFile: "Buffer.java"