public abstract class com.oracle.truffle.llvm.parser.model.functions.FunctionSymbol extends com.oracle.truffle.llvm.parser.model.GlobalSymbol implements com.oracle.truffle.llvm.parser.model.ValueSymbol
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: com.oracle.truffle.llvm.parser.model.functions.FunctionSymbol
  super_class: com.oracle.truffle.llvm.parser.model.GlobalSymbol
{
  private final com.oracle.truffle.llvm.runtime.types.FunctionType type;
    descriptor: Lcom/oracle/truffle/llvm/runtime/types/FunctionType;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final com.oracle.truffle.llvm.parser.model.attributes.AttributesCodeEntry paramAttr;
    descriptor: Lcom/oracle/truffle/llvm/parser/model/attributes/AttributesCodeEntry;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(com.oracle.truffle.llvm.runtime.types.FunctionType, java.lang.String, com.oracle.truffle.llvm.parser.model.enums.Linkage, com.oracle.truffle.llvm.parser.model.attributes.AttributesCodeEntry, int);
    descriptor: (Lcom/oracle/truffle/llvm/runtime/types/FunctionType;Ljava/lang/String;Lcom/oracle/truffle/llvm/parser/model/enums/Linkage;Lcom/oracle/truffle/llvm/parser/model/attributes/AttributesCodeEntry;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=6
        start local 0 // com.oracle.truffle.llvm.parser.model.functions.FunctionSymbol this
        start local 1 // com.oracle.truffle.llvm.runtime.types.FunctionType type
        start local 2 // java.lang.String name
        start local 3 // com.oracle.truffle.llvm.parser.model.enums.Linkage linkage
        start local 4 // com.oracle.truffle.llvm.parser.model.attributes.AttributesCodeEntry paramAttr
        start local 5 // int index
         0: .line 46
            aload 0 /* this */
            aload 2 /* name */
            aload 3 /* linkage */
            iload 5 /* index */
            invokespecial com.oracle.truffle.llvm.parser.model.GlobalSymbol.<init>:(Ljava/lang/String;Lcom/oracle/truffle/llvm/parser/model/enums/Linkage;I)V
         1: .line 47
            aload 0 /* this */
            aload 1 /* type */
            putfield com.oracle.truffle.llvm.parser.model.functions.FunctionSymbol.type:Lcom/oracle/truffle/llvm/runtime/types/FunctionType;
         2: .line 48
            aload 0 /* this */
            aload 4 /* paramAttr */
            putfield com.oracle.truffle.llvm.parser.model.functions.FunctionSymbol.paramAttr:Lcom/oracle/truffle/llvm/parser/model/attributes/AttributesCodeEntry;
         3: .line 49
            return
        end local 5 // int index
        end local 4 // com.oracle.truffle.llvm.parser.model.attributes.AttributesCodeEntry paramAttr
        end local 3 // com.oracle.truffle.llvm.parser.model.enums.Linkage linkage
        end local 2 // java.lang.String name
        end local 1 // com.oracle.truffle.llvm.runtime.types.FunctionType type
        end local 0 // com.oracle.truffle.llvm.parser.model.functions.FunctionSymbol this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lcom/oracle/truffle/llvm/parser/model/functions/FunctionSymbol;
            0    4     1       type  Lcom/oracle/truffle/llvm/runtime/types/FunctionType;
            0    4     2       name  Ljava/lang/String;
            0    4     3    linkage  Lcom/oracle/truffle/llvm/parser/model/enums/Linkage;
            0    4     4  paramAttr  Lcom/oracle/truffle/llvm/parser/model/attributes/AttributesCodeEntry;
            0    4     5      index  I
    MethodParameters:
           Name  Flags
      type       
      name       
      linkage    
      paramAttr  
      index      

  public final com.oracle.truffle.llvm.runtime.types.FunctionType getType();
    descriptor: ()Lcom/oracle/truffle/llvm/runtime/types/FunctionType;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.parser.model.functions.FunctionSymbol this
         0: .line 53
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.parser.model.functions.FunctionSymbol.type:Lcom/oracle/truffle/llvm/runtime/types/FunctionType;
            areturn
        end local 0 // com.oracle.truffle.llvm.parser.model.functions.FunctionSymbol this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/parser/model/functions/FunctionSymbol;

  public final com.oracle.truffle.llvm.parser.model.attributes.AttributesGroup getFunctionAttributesGroup();
    descriptor: ()Lcom/oracle/truffle/llvm/parser/model/attributes/AttributesGroup;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.parser.model.functions.FunctionSymbol this
         0: .line 57
            invokestatic com.oracle.truffle.api.CompilerAsserts.neverPartOfCompilation:()V
         1: .line 58
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.parser.model.functions.FunctionSymbol.paramAttr:Lcom/oracle/truffle/llvm/parser/model/attributes/AttributesCodeEntry;
            invokevirtual com.oracle.truffle.llvm.parser.model.attributes.AttributesCodeEntry.getFunctionAttributesGroup:()Lcom/oracle/truffle/llvm/parser/model/attributes/AttributesGroup;
            areturn
        end local 0 // com.oracle.truffle.llvm.parser.model.functions.FunctionSymbol this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/truffle/llvm/parser/model/functions/FunctionSymbol;

  public final com.oracle.truffle.llvm.parser.model.attributes.AttributesGroup getReturnAttributesGroup();
    descriptor: ()Lcom/oracle/truffle/llvm/parser/model/attributes/AttributesGroup;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.parser.model.functions.FunctionSymbol this
         0: .line 62
            invokestatic com.oracle.truffle.api.CompilerAsserts.neverPartOfCompilation:()V
         1: .line 63
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.parser.model.functions.FunctionSymbol.paramAttr:Lcom/oracle/truffle/llvm/parser/model/attributes/AttributesCodeEntry;
            invokevirtual com.oracle.truffle.llvm.parser.model.attributes.AttributesCodeEntry.getReturnAttributesGroup:()Lcom/oracle/truffle/llvm/parser/model/attributes/AttributesGroup;
            areturn
        end local 0 // com.oracle.truffle.llvm.parser.model.functions.FunctionSymbol this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/truffle/llvm/parser/model/functions/FunctionSymbol;

  public final com.oracle.truffle.llvm.parser.model.attributes.AttributesGroup getParameterAttributesGroup(int);
    descriptor: (I)Lcom/oracle/truffle/llvm/parser/model/attributes/AttributesGroup;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.truffle.llvm.parser.model.functions.FunctionSymbol this
        start local 1 // int idx
         0: .line 67
            invokestatic com.oracle.truffle.api.CompilerAsserts.neverPartOfCompilation:()V
         1: .line 68
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.parser.model.functions.FunctionSymbol.paramAttr:Lcom/oracle/truffle/llvm/parser/model/attributes/AttributesCodeEntry;
            iload 1 /* idx */
            invokevirtual com.oracle.truffle.llvm.parser.model.attributes.AttributesCodeEntry.getParameterAttributesGroup:(I)Lcom/oracle/truffle/llvm/parser/model/attributes/AttributesGroup;
            areturn
        end local 1 // int idx
        end local 0 // com.oracle.truffle.llvm.parser.model.functions.FunctionSymbol this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/truffle/llvm/parser/model/functions/FunctionSymbol;
            0    2     1   idx  I
    MethodParameters:
      Name  Flags
      idx   

  public com.oracle.truffle.llvm.runtime.types.Type getType();
    descriptor: ()Lcom/oracle/truffle/llvm/runtime/types/Type;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual com.oracle.truffle.llvm.parser.model.functions.FunctionSymbol.getType:()Lcom/oracle/truffle/llvm/runtime/types/FunctionType;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "FunctionSymbol.java"