abstract class com.oracle.truffle.js.runtime.array.AbstractByteBufferAccess extends com.oracle.truffle.js.runtime.array.ByteBufferAccess
  minor version: 0
  major version: 59
  flags: flags: (0x0420) ACC_SUPER, ACC_ABSTRACT
  this_class: com.oracle.truffle.js.runtime.array.AbstractByteBufferAccess
  super_class: com.oracle.truffle.js.runtime.array.ByteBufferAccess
{
  void <init>();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.js.runtime.array.AbstractByteBufferAccess this
         0: .line 109
            aload 0 /* this */
            invokespecial com.oracle.truffle.js.runtime.array.ByteBufferAccess.<init>:()V
            return
        end local 0 // com.oracle.truffle.js.runtime.array.AbstractByteBufferAccess this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/js/runtime/array/AbstractByteBufferAccess;

  public final int getInt16(java.nio.ByteBuffer, int);
    descriptor: (Ljava/nio/ByteBuffer;I)I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // com.oracle.truffle.js.runtime.array.AbstractByteBufferAccess this
        start local 1 // java.nio.ByteBuffer buffer
        start local 2 // int index
         0: .line 113
            aload 0 /* this */
            aload 1 /* buffer */
            invokevirtual com.oracle.truffle.js.runtime.array.AbstractByteBufferAccess.wrap:(Ljava/nio/ByteBuffer;)Ljava/nio/ByteBuffer;
            iload 2 /* index */
            invokevirtual java.nio.ByteBuffer.getShort:(I)S
            ireturn
        end local 2 // int index
        end local 1 // java.nio.ByteBuffer buffer
        end local 0 // com.oracle.truffle.js.runtime.array.AbstractByteBufferAccess this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lcom/oracle/truffle/js/runtime/array/AbstractByteBufferAccess;
            0    1     1  buffer  Ljava/nio/ByteBuffer;
            0    1     2   index  I
    MethodParameters:
        Name  Flags
      buffer  
      index   

  public final int getInt32(java.nio.ByteBuffer, int);
    descriptor: (Ljava/nio/ByteBuffer;I)I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // com.oracle.truffle.js.runtime.array.AbstractByteBufferAccess this
        start local 1 // java.nio.ByteBuffer buffer
        start local 2 // int index
         0: .line 118
            aload 0 /* this */
            aload 1 /* buffer */
            invokevirtual com.oracle.truffle.js.runtime.array.AbstractByteBufferAccess.wrap:(Ljava/nio/ByteBuffer;)Ljava/nio/ByteBuffer;
            iload 2 /* index */
            invokevirtual java.nio.ByteBuffer.getInt:(I)I
            ireturn
        end local 2 // int index
        end local 1 // java.nio.ByteBuffer buffer
        end local 0 // com.oracle.truffle.js.runtime.array.AbstractByteBufferAccess this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lcom/oracle/truffle/js/runtime/array/AbstractByteBufferAccess;
            0    1     1  buffer  Ljava/nio/ByteBuffer;
            0    1     2   index  I
    MethodParameters:
        Name  Flags
      buffer  
      index   

  public final float getFloat(java.nio.ByteBuffer, int);
    descriptor: (Ljava/nio/ByteBuffer;I)F
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // com.oracle.truffle.js.runtime.array.AbstractByteBufferAccess this
        start local 1 // java.nio.ByteBuffer buffer
        start local 2 // int index
         0: .line 123
            aload 0 /* this */
            aload 1 /* buffer */
            invokevirtual com.oracle.truffle.js.runtime.array.AbstractByteBufferAccess.wrap:(Ljava/nio/ByteBuffer;)Ljava/nio/ByteBuffer;
            iload 2 /* index */
            invokevirtual java.nio.ByteBuffer.getFloat:(I)F
            freturn
        end local 2 // int index
        end local 1 // java.nio.ByteBuffer buffer
        end local 0 // com.oracle.truffle.js.runtime.array.AbstractByteBufferAccess this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lcom/oracle/truffle/js/runtime/array/AbstractByteBufferAccess;
            0    1     1  buffer  Ljava/nio/ByteBuffer;
            0    1     2   index  I
    MethodParameters:
        Name  Flags
      buffer  
      index   

  public final double getDouble(java.nio.ByteBuffer, int);
    descriptor: (Ljava/nio/ByteBuffer;I)D
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // com.oracle.truffle.js.runtime.array.AbstractByteBufferAccess this
        start local 1 // java.nio.ByteBuffer buffer
        start local 2 // int index
         0: .line 128
            aload 0 /* this */
            aload 1 /* buffer */
            invokevirtual com.oracle.truffle.js.runtime.array.AbstractByteBufferAccess.wrap:(Ljava/nio/ByteBuffer;)Ljava/nio/ByteBuffer;
            iload 2 /* index */
            invokevirtual java.nio.ByteBuffer.getDouble:(I)D
            dreturn
        end local 2 // int index
        end local 1 // java.nio.ByteBuffer buffer
        end local 0 // com.oracle.truffle.js.runtime.array.AbstractByteBufferAccess this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lcom/oracle/truffle/js/runtime/array/AbstractByteBufferAccess;
            0    1     1  buffer  Ljava/nio/ByteBuffer;
            0    1     2   index  I
    MethodParameters:
        Name  Flags
      buffer  
      index   

  public long getInt64(java.nio.ByteBuffer, int);
    descriptor: (Ljava/nio/ByteBuffer;I)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // com.oracle.truffle.js.runtime.array.AbstractByteBufferAccess this
        start local 1 // java.nio.ByteBuffer buffer
        start local 2 // int index
         0: .line 133
            aload 0 /* this */
            aload 1 /* buffer */
            invokevirtual com.oracle.truffle.js.runtime.array.AbstractByteBufferAccess.wrap:(Ljava/nio/ByteBuffer;)Ljava/nio/ByteBuffer;
            iload 2 /* index */
            invokevirtual java.nio.ByteBuffer.getLong:(I)J
            lreturn
        end local 2 // int index
        end local 1 // java.nio.ByteBuffer buffer
        end local 0 // com.oracle.truffle.js.runtime.array.AbstractByteBufferAccess this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lcom/oracle/truffle/js/runtime/array/AbstractByteBufferAccess;
            0    1     1  buffer  Ljava/nio/ByteBuffer;
            0    1     2   index  I
    MethodParameters:
        Name  Flags
      buffer  
      index   

  public final void putInt16(java.nio.ByteBuffer, int, int);
    descriptor: (Ljava/nio/ByteBuffer;II)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // com.oracle.truffle.js.runtime.array.AbstractByteBufferAccess this
        start local 1 // java.nio.ByteBuffer buffer
        start local 2 // int index
        start local 3 // int value
         0: .line 138
            aload 0 /* this */
            aload 1 /* buffer */
            invokevirtual com.oracle.truffle.js.runtime.array.AbstractByteBufferAccess.wrap:(Ljava/nio/ByteBuffer;)Ljava/nio/ByteBuffer;
            iload 2 /* index */
            iload 3 /* value */
            i2s
            invokevirtual java.nio.ByteBuffer.putShort:(IS)Ljava/nio/ByteBuffer;
            pop
         1: .line 139
            return
        end local 3 // int value
        end local 2 // int index
        end local 1 // java.nio.ByteBuffer buffer
        end local 0 // com.oracle.truffle.js.runtime.array.AbstractByteBufferAccess this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lcom/oracle/truffle/js/runtime/array/AbstractByteBufferAccess;
            0    2     1  buffer  Ljava/nio/ByteBuffer;
            0    2     2   index  I
            0    2     3   value  I
    MethodParameters:
        Name  Flags
      buffer  
      index   
      value   

  public final void putInt32(java.nio.ByteBuffer, int, int);
    descriptor: (Ljava/nio/ByteBuffer;II)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // com.oracle.truffle.js.runtime.array.AbstractByteBufferAccess this
        start local 1 // java.nio.ByteBuffer buffer
        start local 2 // int index
        start local 3 // int value
         0: .line 143
            aload 0 /* this */
            aload 1 /* buffer */
            invokevirtual com.oracle.truffle.js.runtime.array.AbstractByteBufferAccess.wrap:(Ljava/nio/ByteBuffer;)Ljava/nio/ByteBuffer;
            iload 2 /* index */
            iload 3 /* value */
            invokevirtual java.nio.ByteBuffer.putInt:(II)Ljava/nio/ByteBuffer;
            pop
         1: .line 144
            return
        end local 3 // int value
        end local 2 // int index
        end local 1 // java.nio.ByteBuffer buffer
        end local 0 // com.oracle.truffle.js.runtime.array.AbstractByteBufferAccess this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lcom/oracle/truffle/js/runtime/array/AbstractByteBufferAccess;
            0    2     1  buffer  Ljava/nio/ByteBuffer;
            0    2     2   index  I
            0    2     3   value  I
    MethodParameters:
        Name  Flags
      buffer  
      index   
      value   

  public final void putInt64(java.nio.ByteBuffer, int, long);
    descriptor: (Ljava/nio/ByteBuffer;IJ)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // com.oracle.truffle.js.runtime.array.AbstractByteBufferAccess this
        start local 1 // java.nio.ByteBuffer buffer
        start local 2 // int index
        start local 3 // long value
         0: .line 148
            aload 0 /* this */
            aload 1 /* buffer */
            invokevirtual com.oracle.truffle.js.runtime.array.AbstractByteBufferAccess.wrap:(Ljava/nio/ByteBuffer;)Ljava/nio/ByteBuffer;
            iload 2 /* index */
            lload 3 /* value */
            invokevirtual java.nio.ByteBuffer.putLong:(IJ)Ljava/nio/ByteBuffer;
            pop
         1: .line 149
            return
        end local 3 // long value
        end local 2 // int index
        end local 1 // java.nio.ByteBuffer buffer
        end local 0 // com.oracle.truffle.js.runtime.array.AbstractByteBufferAccess this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lcom/oracle/truffle/js/runtime/array/AbstractByteBufferAccess;
            0    2     1  buffer  Ljava/nio/ByteBuffer;
            0    2     2   index  I
            0    2     3   value  J
    MethodParameters:
        Name  Flags
      buffer  
      index   
      value   

  public final void putFloat(java.nio.ByteBuffer, int, float);
    descriptor: (Ljava/nio/ByteBuffer;IF)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // com.oracle.truffle.js.runtime.array.AbstractByteBufferAccess this
        start local 1 // java.nio.ByteBuffer buffer
        start local 2 // int index
        start local 3 // float value
         0: .line 153
            aload 0 /* this */
            aload 1 /* buffer */
            invokevirtual com.oracle.truffle.js.runtime.array.AbstractByteBufferAccess.wrap:(Ljava/nio/ByteBuffer;)Ljava/nio/ByteBuffer;
            iload 2 /* index */
            fload 3 /* value */
            invokevirtual java.nio.ByteBuffer.putFloat:(IF)Ljava/nio/ByteBuffer;
            pop
         1: .line 154
            return
        end local 3 // float value
        end local 2 // int index
        end local 1 // java.nio.ByteBuffer buffer
        end local 0 // com.oracle.truffle.js.runtime.array.AbstractByteBufferAccess this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lcom/oracle/truffle/js/runtime/array/AbstractByteBufferAccess;
            0    2     1  buffer  Ljava/nio/ByteBuffer;
            0    2     2   index  I
            0    2     3   value  F
    MethodParameters:
        Name  Flags
      buffer  
      index   
      value   

  public final void putDouble(java.nio.ByteBuffer, int, double);
    descriptor: (Ljava/nio/ByteBuffer;ID)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // com.oracle.truffle.js.runtime.array.AbstractByteBufferAccess this
        start local 1 // java.nio.ByteBuffer buffer
        start local 2 // int index
        start local 3 // double value
         0: .line 158
            aload 0 /* this */
            aload 1 /* buffer */
            invokevirtual com.oracle.truffle.js.runtime.array.AbstractByteBufferAccess.wrap:(Ljava/nio/ByteBuffer;)Ljava/nio/ByteBuffer;
            iload 2 /* index */
            dload 3 /* value */
            invokevirtual java.nio.ByteBuffer.putDouble:(ID)Ljava/nio/ByteBuffer;
            pop
         1: .line 159
            return
        end local 3 // double value
        end local 2 // int index
        end local 1 // java.nio.ByteBuffer buffer
        end local 0 // com.oracle.truffle.js.runtime.array.AbstractByteBufferAccess this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lcom/oracle/truffle/js/runtime/array/AbstractByteBufferAccess;
            0    2     1  buffer  Ljava/nio/ByteBuffer;
            0    2     2   index  I
            0    2     3   value  D
    MethodParameters:
        Name  Flags
      buffer  
      index   
      value   

  protected java.nio.ByteBuffer wrap(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)Ljava/nio/ByteBuffer;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // com.oracle.truffle.js.runtime.array.AbstractByteBufferAccess this
        start local 1 // java.nio.ByteBuffer buffer
         0: .line 162
            aload 1 /* buffer */
            areturn
        end local 1 // java.nio.ByteBuffer buffer
        end local 0 // com.oracle.truffle.js.runtime.array.AbstractByteBufferAccess this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lcom/oracle/truffle/js/runtime/array/AbstractByteBufferAccess;
            0    1     1  buffer  Ljava/nio/ByteBuffer;
    MethodParameters:
        Name  Flags
      buffer  
}
SourceFile: "ByteBufferAccess.java"