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

  private final java.util.List<com.oracle.truffle.llvm.parser.model.functions.FunctionSymbol> definedFunctions;
    descriptor: Ljava/util/List;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/List<Lcom/oracle/truffle/llvm/parser/model/functions/FunctionSymbol;>;

  private final java.util.List<com.oracle.truffle.llvm.parser.model.functions.FunctionSymbol> externalFunctions;
    descriptor: Ljava/util/List;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/List<Lcom/oracle/truffle/llvm/parser/model/functions/FunctionSymbol;>;

  private final java.util.List<com.oracle.truffle.llvm.parser.model.symbols.globals.GlobalVariable> definedGlobals;
    descriptor: Ljava/util/List;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/List<Lcom/oracle/truffle/llvm/parser/model/symbols/globals/GlobalVariable;>;

  private final java.util.List<com.oracle.truffle.llvm.parser.model.symbols.globals.GlobalVariable> externalGlobals;
    descriptor: Ljava/util/List;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/List<Lcom/oracle/truffle/llvm/parser/model/symbols/globals/GlobalVariable;>;

  private final com.oracle.truffle.llvm.runtime.datalayout.DataLayout dataLayout;
    descriptor: Lcom/oracle/truffle/llvm/runtime/datalayout/DataLayout;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

  void <init>(com.oracle.truffle.llvm.parser.LLVMParserRuntime, java.util.List<com.oracle.truffle.llvm.parser.model.functions.FunctionSymbol>, java.util.List<com.oracle.truffle.llvm.parser.model.functions.FunctionSymbol>, java.util.List<com.oracle.truffle.llvm.parser.model.symbols.globals.GlobalVariable>, java.util.List<com.oracle.truffle.llvm.parser.model.symbols.globals.GlobalVariable>, com.oracle.truffle.llvm.runtime.datalayout.DataLayout);
    descriptor: (Lcom/oracle/truffle/llvm/parser/LLVMParserRuntime;Ljava/util/List;Ljava/util/List;Ljava/util/List;Ljava/util/List;Lcom/oracle/truffle/llvm/runtime/datalayout/DataLayout;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=7, args_size=7
        start local 0 // com.oracle.truffle.llvm.parser.LLVMParserResult this
        start local 1 // com.oracle.truffle.llvm.parser.LLVMParserRuntime runtime
        start local 2 // java.util.List definedFunctions
        start local 3 // java.util.List externalFunctions
        start local 4 // java.util.List definedGlobals
        start local 5 // java.util.List externalGlobals
        start local 6 // com.oracle.truffle.llvm.runtime.datalayout.DataLayout dataLayout
         0: .line 48
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 54
            aload 0 /* this */
            aload 1 /* runtime */
            putfield com.oracle.truffle.llvm.parser.LLVMParserResult.runtime:Lcom/oracle/truffle/llvm/parser/LLVMParserRuntime;
         2: .line 55
            aload 0 /* this */
            aload 2 /* definedFunctions */
            putfield com.oracle.truffle.llvm.parser.LLVMParserResult.definedFunctions:Ljava/util/List;
         3: .line 56
            aload 0 /* this */
            aload 3 /* externalFunctions */
            putfield com.oracle.truffle.llvm.parser.LLVMParserResult.externalFunctions:Ljava/util/List;
         4: .line 57
            aload 0 /* this */
            aload 4 /* definedGlobals */
            putfield com.oracle.truffle.llvm.parser.LLVMParserResult.definedGlobals:Ljava/util/List;
         5: .line 58
            aload 0 /* this */
            aload 5 /* externalGlobals */
            putfield com.oracle.truffle.llvm.parser.LLVMParserResult.externalGlobals:Ljava/util/List;
         6: .line 59
            aload 0 /* this */
            aload 6 /* dataLayout */
            putfield com.oracle.truffle.llvm.parser.LLVMParserResult.dataLayout:Lcom/oracle/truffle/llvm/runtime/datalayout/DataLayout;
         7: .line 60
            aload 0 /* this */
            aload 2 /* definedFunctions */
            invokeinterface java.util.List.size:()I
            aload 3 /* externalFunctions */
            invokeinterface java.util.List.size:()I
            iadd
            aload 4 /* definedGlobals */
            invokeinterface java.util.List.size:()I
            iadd
            aload 5 /* externalGlobals */
            invokeinterface java.util.List.size:()I
            iadd
            putfield com.oracle.truffle.llvm.parser.LLVMParserResult.symbolTableSize:I
         8: .line 61
            return
        end local 6 // com.oracle.truffle.llvm.runtime.datalayout.DataLayout dataLayout
        end local 5 // java.util.List externalGlobals
        end local 4 // java.util.List definedGlobals
        end local 3 // java.util.List externalFunctions
        end local 2 // java.util.List definedFunctions
        end local 1 // com.oracle.truffle.llvm.parser.LLVMParserRuntime runtime
        end local 0 // com.oracle.truffle.llvm.parser.LLVMParserResult this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    9     0               this  Lcom/oracle/truffle/llvm/parser/LLVMParserResult;
            0    9     1            runtime  Lcom/oracle/truffle/llvm/parser/LLVMParserRuntime;
            0    9     2   definedFunctions  Ljava/util/List<Lcom/oracle/truffle/llvm/parser/model/functions/FunctionSymbol;>;
            0    9     3  externalFunctions  Ljava/util/List<Lcom/oracle/truffle/llvm/parser/model/functions/FunctionSymbol;>;
            0    9     4     definedGlobals  Ljava/util/List<Lcom/oracle/truffle/llvm/parser/model/symbols/globals/GlobalVariable;>;
            0    9     5    externalGlobals  Ljava/util/List<Lcom/oracle/truffle/llvm/parser/model/symbols/globals/GlobalVariable;>;
            0    9     6         dataLayout  Lcom/oracle/truffle/llvm/runtime/datalayout/DataLayout;
    Signature: (Lcom/oracle/truffle/llvm/parser/LLVMParserRuntime;Ljava/util/List<Lcom/oracle/truffle/llvm/parser/model/functions/FunctionSymbol;>;Ljava/util/List<Lcom/oracle/truffle/llvm/parser/model/functions/FunctionSymbol;>;Ljava/util/List<Lcom/oracle/truffle/llvm/parser/model/symbols/globals/GlobalVariable;>;Ljava/util/List<Lcom/oracle/truffle/llvm/parser/model/symbols/globals/GlobalVariable;>;Lcom/oracle/truffle/llvm/runtime/datalayout/DataLayout;)V
    MethodParameters:
                   Name  Flags
      runtime            
      definedFunctions   
      externalFunctions  
      definedGlobals     
      externalGlobals    
      dataLayout         

  public com.oracle.truffle.llvm.parser.LLVMParserRuntime getRuntime();
    descriptor: ()Lcom/oracle/truffle/llvm/parser/LLVMParserRuntime;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.parser.LLVMParserResult this
         0: .line 64
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.parser.LLVMParserResult.runtime:Lcom/oracle/truffle/llvm/parser/LLVMParserRuntime;
            areturn
        end local 0 // com.oracle.truffle.llvm.parser.LLVMParserResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/parser/LLVMParserResult;

  public java.util.List<com.oracle.truffle.llvm.parser.model.functions.FunctionSymbol> getDefinedFunctions();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.parser.LLVMParserResult this
         0: .line 68
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.parser.LLVMParserResult.definedFunctions:Ljava/util/List;
            areturn
        end local 0 // com.oracle.truffle.llvm.parser.LLVMParserResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/parser/LLVMParserResult;
    Signature: ()Ljava/util/List<Lcom/oracle/truffle/llvm/parser/model/functions/FunctionSymbol;>;

  public java.util.List<com.oracle.truffle.llvm.parser.model.functions.FunctionSymbol> getExternalFunctions();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.parser.LLVMParserResult this
         0: .line 72
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.parser.LLVMParserResult.externalFunctions:Ljava/util/List;
            areturn
        end local 0 // com.oracle.truffle.llvm.parser.LLVMParserResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/parser/LLVMParserResult;
    Signature: ()Ljava/util/List<Lcom/oracle/truffle/llvm/parser/model/functions/FunctionSymbol;>;

  public java.util.List<com.oracle.truffle.llvm.parser.model.symbols.globals.GlobalVariable> getDefinedGlobals();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.parser.LLVMParserResult this
         0: .line 76
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.parser.LLVMParserResult.definedGlobals:Ljava/util/List;
            areturn
        end local 0 // com.oracle.truffle.llvm.parser.LLVMParserResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/parser/LLVMParserResult;
    Signature: ()Ljava/util/List<Lcom/oracle/truffle/llvm/parser/model/symbols/globals/GlobalVariable;>;

  public java.util.List<com.oracle.truffle.llvm.parser.model.symbols.globals.GlobalVariable> getExternalGlobals();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.parser.LLVMParserResult this
         0: .line 80
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.parser.LLVMParserResult.externalGlobals:Ljava/util/List;
            areturn
        end local 0 // com.oracle.truffle.llvm.parser.LLVMParserResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/parser/LLVMParserResult;
    Signature: ()Ljava/util/List<Lcom/oracle/truffle/llvm/parser/model/symbols/globals/GlobalVariable;>;

  public com.oracle.truffle.llvm.runtime.datalayout.DataLayout getDataLayout();
    descriptor: ()Lcom/oracle/truffle/llvm/runtime/datalayout/DataLayout;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.parser.LLVMParserResult this
         0: .line 84
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.parser.LLVMParserResult.dataLayout:Lcom/oracle/truffle/llvm/runtime/datalayout/DataLayout;
            areturn
        end local 0 // com.oracle.truffle.llvm.parser.LLVMParserResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/parser/LLVMParserResult;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.parser.LLVMParserResult this
         0: .line 89
            new java.lang.StringBuilder
            dup
            ldc "LLVMParserResult["
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.parser.LLVMParserResult.runtime:Lcom/oracle/truffle/llvm/parser/LLVMParserRuntime;
            invokevirtual com.oracle.truffle.llvm.parser.LLVMParserRuntime.getLibraryName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "]"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // com.oracle.truffle.llvm.parser.LLVMParserResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/parser/LLVMParserResult;

  public int getSymbolTableSize();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.parser.LLVMParserResult this
         0: .line 93
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.parser.LLVMParserResult.symbolTableSize:I
            ireturn
        end local 0 // com.oracle.truffle.llvm.parser.LLVMParserResult this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/parser/LLVMParserResult;
}
SourceFile: "LLVMParserResult.java"