public final class com.oracle.truffle.llvm.runtime.LLVMArgumentBuffer implements com.oracle.truffle.api.interop.TruffleObject
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: com.oracle.truffle.llvm.runtime.LLVMArgumentBuffer
  super_class: java.lang.Object
{
  private final byte[] bytes;
    descriptor: [B
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  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 43
            ldc Lcom/oracle/truffle/llvm/runtime/LLVMArgumentBuffer;
            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 com.oracle.truffle.llvm.runtime.LLVMArgumentBuffer.$assertionsDisabled:Z
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMArgumentBuffer this
        start local 1 // java.lang.String str
         0: .line 47
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 48
            aload 0 /* this */
            aload 1 /* str */
            invokestatic com.oracle.truffle.llvm.runtime.LLVMArgumentBuffer.encodeFromString:(Ljava/lang/String;)[B
            putfield com.oracle.truffle.llvm.runtime.LLVMArgumentBuffer.bytes:[B
         2: .line 49
            return
        end local 1 // java.lang.String str
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMArgumentBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMArgumentBuffer;
            0    3     1   str  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      str   

  public void <init>(byte[]);
    descriptor: ([B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMArgumentBuffer this
        start local 1 // byte[] bytes
         0: .line 51
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 52
            aload 0 /* this */
            aload 1 /* bytes */
            putfield com.oracle.truffle.llvm.runtime.LLVMArgumentBuffer.bytes:[B
         2: .line 53
            return
        end local 1 // byte[] bytes
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMArgumentBuffer this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lcom/oracle/truffle/llvm/runtime/LLVMArgumentBuffer;
            0    3     1  bytes  [B
    MethodParameters:
       Name  Flags
      bytes  

  boolean hasArrayElements();
    descriptor: ()Z
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMArgumentBuffer this
         0: .line 57
            getstatic com.oracle.truffle.llvm.runtime.LLVMArgumentBuffer.$assertionsDisabled:Z
            ifne 1
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMArgumentBuffer.bytes:[B
            ifnonnull 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 58
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMArgumentBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMArgumentBuffer;
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.library.ExportMessage()

  long getArraySize();
    descriptor: ()J
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMArgumentBuffer this
         0: .line 63
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMArgumentBuffer.bytes:[B
            arraylength
            i2l
            lreturn
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMArgumentBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMArgumentBuffer;
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.library.ExportMessage()

  boolean isArrayElementReadable(long);
    descriptor: (J)Z
    flags: (0x0000) 
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMArgumentBuffer this
        start local 1 // long idx
         0: .line 68
            lload 1 /* idx */
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMArgumentBuffer.bytes:[B
            arraylength
            i2l
            invokestatic java.lang.Long.compareUnsigned:(JJ)I
            ifge 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // long idx
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMArgumentBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMArgumentBuffer;
            0    2     1   idx  J
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.library.ExportMessage()
    MethodParameters:
      Name  Flags
      idx   

  byte readArrayElement(long, com.oracle.truffle.api.profiles.BranchProfile);
    descriptor: (JLcom/oracle/truffle/api/profiles/BranchProfile;)B
    flags: (0x0000) 
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMArgumentBuffer this
        start local 1 // long idx
        start local 3 // com.oracle.truffle.api.profiles.BranchProfile oob
         0: .line 74
            aload 0 /* this */
            lload 1 /* idx */
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMArgumentBuffer.isArrayElementReadable:(J)Z
            ifeq 2
         1: .line 75
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMArgumentBuffer.bytes:[B
            lload 1 /* idx */
            l2i
            baload
            ireturn
         2: .line 77
      StackMap locals:
      StackMap stack:
            aload 3 /* oob */
            invokevirtual com.oracle.truffle.api.profiles.BranchProfile.enter:()V
         3: .line 78
            iconst_0
            ireturn
        end local 3 // com.oracle.truffle.api.profiles.BranchProfile oob
        end local 1 // long idx
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMArgumentBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMArgumentBuffer;
            0    4     1   idx  J
            0    4     3   oob  Lcom/oracle/truffle/api/profiles/BranchProfile;
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.library.ExportMessage()
    RuntimeInvisibleParameterAnnotations: 
      0:
      1:
        com.oracle.truffle.api.dsl.Cached()
    MethodParameters:
      Name  Flags
      idx   
      oob   

  boolean isString();
    descriptor: ()Z
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMArgumentBuffer this
         0: .line 85
            iconst_1
            ireturn
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMArgumentBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMArgumentBuffer;
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.library.ExportMessage()

  java.lang.String asString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMArgumentBuffer this
         0: .line 91
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMArgumentBuffer.bytes:[B
            invokestatic com.oracle.truffle.llvm.runtime.LLVMArgumentBuffer.decodeToString:([B)Ljava/lang/String;
            areturn
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMArgumentBuffer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMArgumentBuffer;
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.library.ExportMessage()

  private static java.lang.String decodeToString(byte[]);
    descriptor: ([B)Ljava/lang/String;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // byte[] bytes
         0: .line 96
            new java.lang.String
            dup
            aload 0 /* bytes */
            invokespecial java.lang.String.<init>:([B)V
            areturn
        end local 0 // byte[] bytes
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0  bytes  [B
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.CompilerDirectives$TruffleBoundary()
    MethodParameters:
       Name  Flags
      bytes  

  protected static byte[] encodeFromString(java.lang.String);
    descriptor: (Ljava/lang/String;)[B
    flags: (0x000c) ACC_PROTECTED, ACC_STATIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.lang.String str
         0: .line 101
            aload 0 /* str */
            invokevirtual java.lang.String.getBytes:()[B
            areturn
        end local 0 // java.lang.String str
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0   str  Ljava/lang/String;
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.CompilerDirectives$TruffleBoundary()
    MethodParameters:
      Name  Flags
      str   
}
SourceFile: "LLVMArgumentBuffer.java"
NestMembers:
  com.oracle.truffle.llvm.runtime.LLVMArgumentBuffer$LLVMArgumentArray
InnerClasses:
  public abstract TruffleBoundary = com.oracle.truffle.api.CompilerDirectives$TruffleBoundary of com.oracle.truffle.api.CompilerDirectives
  final LLVMArgumentArray = com.oracle.truffle.llvm.runtime.LLVMArgumentBuffer$LLVMArgumentArray of com.oracle.truffle.llvm.runtime.LLVMArgumentBuffer
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.library.ExportLibrary(value = Lcom/oracle/truffle/api/interop/InteropLibrary;)