public final class com.oracle.truffle.llvm.runtime.LLVMVarArgCompoundValue
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: com.oracle.truffle.llvm.runtime.LLVMVarArgCompoundValue
  super_class: java.lang.Object
{
  private final java.lang.Object addr;
    descriptor: Ljava/lang/Object;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final long size;
    descriptor: J
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

  private void <init>(java.lang.Object, long, int);
    descriptor: (Ljava/lang/Object;JI)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=5, args_size=4
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMVarArgCompoundValue this
        start local 1 // java.lang.Object val
        start local 2 // long size
        start local 4 // int alignment
         0: .line 40
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 41
            aload 0 /* this */
            aload 1 /* val */
            putfield com.oracle.truffle.llvm.runtime.LLVMVarArgCompoundValue.addr:Ljava/lang/Object;
         2: .line 42
            aload 0 /* this */
            lload 2 /* size */
            putfield com.oracle.truffle.llvm.runtime.LLVMVarArgCompoundValue.size:J
         3: .line 43
            aload 0 /* this */
            iload 4 /* alignment */
            putfield com.oracle.truffle.llvm.runtime.LLVMVarArgCompoundValue.alignment:I
         4: .line 44
            return
        end local 4 // int alignment
        end local 2 // long size
        end local 1 // java.lang.Object val
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMVarArgCompoundValue this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lcom/oracle/truffle/llvm/runtime/LLVMVarArgCompoundValue;
            0    5     1        val  Ljava/lang/Object;
            0    5     2       size  J
            0    5     4  alignment  I
    MethodParameters:
           Name  Flags
      val        
      size       
      alignment  

  public static com.oracle.truffle.llvm.runtime.LLVMVarArgCompoundValue create(java.lang.Object, long, int);
    descriptor: (Ljava/lang/Object;JI)Lcom/oracle/truffle/llvm/runtime/LLVMVarArgCompoundValue;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=6, locals=4, args_size=3
        start local 0 // java.lang.Object val
        start local 1 // long size
        start local 3 // int alignment
         0: .line 47
            new com.oracle.truffle.llvm.runtime.LLVMVarArgCompoundValue
            dup
            aload 0 /* val */
            lload 1 /* size */
            iload 3 /* alignment */
            invokespecial com.oracle.truffle.llvm.runtime.LLVMVarArgCompoundValue.<init>:(Ljava/lang/Object;JI)V
            areturn
        end local 3 // int alignment
        end local 1 // long size
        end local 0 // java.lang.Object val
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0        val  Ljava/lang/Object;
            0    1     1       size  J
            0    1     3  alignment  I
    MethodParameters:
           Name  Flags
      val        
      size       
      alignment  

  public java.lang.Object getAddr();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMVarArgCompoundValue this
         0: .line 51
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMVarArgCompoundValue.addr:Ljava/lang/Object;
            areturn
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMVarArgCompoundValue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMVarArgCompoundValue;

  public long getSize();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMVarArgCompoundValue this
         0: .line 55
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMVarArgCompoundValue.size:J
            lreturn
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMVarArgCompoundValue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMVarArgCompoundValue;

  public int getAlignment();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMVarArgCompoundValue this
         0: .line 59
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMVarArgCompoundValue.alignment:I
            ireturn
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMVarArgCompoundValue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMVarArgCompoundValue;

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMVarArgCompoundValue this
        start local 1 // java.lang.Object obj
         0: .line 64
            aload 1 /* obj */
            instanceof com.oracle.truffle.llvm.runtime.LLVMVarArgCompoundValue
            ifeq 4
         1: .line 65
            aload 1 /* obj */
            checkcast com.oracle.truffle.llvm.runtime.LLVMVarArgCompoundValue
            astore 2 /* curObj */
        start local 2 // com.oracle.truffle.llvm.runtime.LLVMVarArgCompoundValue curObj
         2: .line 66
            aload 2 /* curObj */
            getfield com.oracle.truffle.llvm.runtime.LLVMVarArgCompoundValue.addr:Ljava/lang/Object;
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMVarArgCompoundValue.addr:Ljava/lang/Object;
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 3
            aload 2 /* curObj */
            getfield com.oracle.truffle.llvm.runtime.LLVMVarArgCompoundValue.size:J
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMVarArgCompoundValue.size:J
            lcmp
            ifne 3
            aload 2 /* curObj */
            getfield com.oracle.truffle.llvm.runtime.LLVMVarArgCompoundValue.alignment:I
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMVarArgCompoundValue.alignment:I
            if_icmpne 3
            iconst_1
            ireturn
      StackMap locals: com.oracle.truffle.llvm.runtime.LLVMVarArgCompoundValue
      StackMap stack:
         3: iconst_0
            ireturn
        end local 2 // com.oracle.truffle.llvm.runtime.LLVMVarArgCompoundValue curObj
         4: .line 68
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // java.lang.Object obj
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMVarArgCompoundValue this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lcom/oracle/truffle/llvm/runtime/LLVMVarArgCompoundValue;
            0    5     1     obj  Ljava/lang/Object;
            2    4     2  curObj  Lcom/oracle/truffle/llvm/runtime/LLVMVarArgCompoundValue;
    MethodParameters:
      Name  Flags
      obj   

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMVarArgCompoundValue this
         0: .line 74
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMVarArgCompoundValue.addr:Ljava/lang/Object;
            invokevirtual java.lang.Object.hashCode:()I
            bipush 11
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMVarArgCompoundValue.size:J
            invokestatic java.lang.Long.hashCode:(J)I
            imul
            iadd
            bipush 23
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMVarArgCompoundValue.alignment:I
            invokestatic java.lang.Integer.hashCode:(I)I
            imul
            iadd
            ireturn
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMVarArgCompoundValue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMVarArgCompoundValue;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMVarArgCompoundValue this
         0: .line 79
            ldc "%s (%d align %d)"
            iconst_3
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* this */
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMVarArgCompoundValue.getAddr:()Ljava/lang/Object;
            aastore
            dup
            iconst_1
            aload 0 /* this */
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMVarArgCompoundValue.getSize:()J
            invokestatic java.lang.Long.valueOf:(J)Ljava/lang/Long;
            aastore
            dup
            iconst_2
            aload 0 /* this */
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMVarArgCompoundValue.getAlignment:()I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            areturn
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMVarArgCompoundValue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMVarArgCompoundValue;
}
SourceFile: "LLVMVarArgCompoundValue.java"
InnerClasses:
  public abstract ValueType = com.oracle.truffle.api.CompilerDirectives$ValueType of com.oracle.truffle.api.CompilerDirectives
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.CompilerDirectives$ValueType()