public final class com.oracle.truffle.llvm.runtime.LLVMFunction extends com.oracle.truffle.llvm.runtime.LLVMSymbol
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: com.oracle.truffle.llvm.runtime.LLVMFunction
  super_class: com.oracle.truffle.llvm.runtime.LLVMSymbol
{
  public static final com.oracle.truffle.llvm.runtime.LLVMFunction[] EMPTY;
    descriptor: [Lcom/oracle/truffle/llvm/runtime/LLVMFunction;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  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.runtime.LLVMFunctionCode$Function function;
    descriptor: Lcom/oracle/truffle/llvm/runtime/LLVMFunctionCode$Function;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.lang.String path;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final com.oracle.truffle.api.Assumption fixedCodeAssumption;
    descriptor: Lcom/oracle/truffle/api/Assumption;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private com.oracle.truffle.llvm.runtime.LLVMFunctionCode fixedCode;
    descriptor: Lcom/oracle/truffle/llvm/runtime/LLVMFunctionCode;
    flags: (0x0002) ACC_PRIVATE
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.CompilerDirectives$CompilationFinal()

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 47
            iconst_0
            anewarray com.oracle.truffle.llvm.runtime.LLVMFunction
            putstatic com.oracle.truffle.llvm.runtime.LLVMFunction.EMPTY:[Lcom/oracle/truffle/llvm/runtime/LLVMFunction;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public static com.oracle.truffle.llvm.runtime.LLVMFunction create(java.lang.String, com.oracle.truffle.llvm.runtime.LLVMFunctionCode$Function, com.oracle.truffle.llvm.runtime.types.FunctionType, int, int, boolean, java.lang.String);
    descriptor: (Ljava/lang/String;Lcom/oracle/truffle/llvm/runtime/LLVMFunctionCode$Function;Lcom/oracle/truffle/llvm/runtime/types/FunctionType;IIZLjava/lang/String;)Lcom/oracle/truffle/llvm/runtime/LLVMFunction;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=9, locals=7, args_size=7
        start local 0 // java.lang.String name
        start local 1 // com.oracle.truffle.llvm.runtime.LLVMFunctionCode$Function function
        start local 2 // com.oracle.truffle.llvm.runtime.types.FunctionType type
        start local 3 // int bitcodeID
        start local 4 // int symbolIndex
        start local 5 // boolean exported
        start local 6 // java.lang.String path
         0: .line 57
            new com.oracle.truffle.llvm.runtime.LLVMFunction
            dup
            aload 0 /* name */
            aload 1 /* function */
            aload 2 /* type */
            iload 3 /* bitcodeID */
            iload 4 /* symbolIndex */
            iload 5 /* exported */
            aload 6 /* path */
            invokespecial com.oracle.truffle.llvm.runtime.LLVMFunction.<init>:(Ljava/lang/String;Lcom/oracle/truffle/llvm/runtime/LLVMFunctionCode$Function;Lcom/oracle/truffle/llvm/runtime/types/FunctionType;IIZLjava/lang/String;)V
            areturn
        end local 6 // java.lang.String path
        end local 5 // boolean exported
        end local 4 // int symbolIndex
        end local 3 // int bitcodeID
        end local 2 // com.oracle.truffle.llvm.runtime.types.FunctionType type
        end local 1 // com.oracle.truffle.llvm.runtime.LLVMFunctionCode$Function function
        end local 0 // java.lang.String name
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0         name  Ljava/lang/String;
            0    1     1     function  Lcom/oracle/truffle/llvm/runtime/LLVMFunctionCode$Function;
            0    1     2         type  Lcom/oracle/truffle/llvm/runtime/types/FunctionType;
            0    1     3    bitcodeID  I
            0    1     4  symbolIndex  I
            0    1     5     exported  Z
            0    1     6         path  Ljava/lang/String;
    MethodParameters:
             Name  Flags
      name         
      function     
      type         
      bitcodeID    
      symbolIndex  
      exported     
      path         

  public void <init>(java.lang.String, com.oracle.truffle.llvm.runtime.LLVMFunctionCode$Function, com.oracle.truffle.llvm.runtime.types.FunctionType, int, int, boolean, java.lang.String);
    descriptor: (Ljava/lang/String;Lcom/oracle/truffle/llvm/runtime/LLVMFunctionCode$Function;Lcom/oracle/truffle/llvm/runtime/types/FunctionType;IIZLjava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=8, args_size=8
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMFunction this
        start local 1 // java.lang.String name
        start local 2 // com.oracle.truffle.llvm.runtime.LLVMFunctionCode$Function function
        start local 3 // com.oracle.truffle.llvm.runtime.types.FunctionType type
        start local 4 // int bitcodeID
        start local 5 // int symbolIndex
        start local 6 // boolean exported
        start local 7 // java.lang.String path
         0: .line 61
            aload 0 /* this */
            aload 1 /* name */
            iload 4 /* bitcodeID */
            iload 5 /* symbolIndex */
            iload 6 /* exported */
            invokespecial com.oracle.truffle.llvm.runtime.LLVMSymbol.<init>:(Ljava/lang/String;IIZ)V
         1: .line 53
            aload 0 /* this */
            invokestatic com.oracle.truffle.api.Truffle.getRuntime:()Lcom/oracle/truffle/api/TruffleRuntime;
            invokeinterface com.oracle.truffle.api.TruffleRuntime.createAssumption:()Lcom/oracle/truffle/api/Assumption;
            putfield com.oracle.truffle.llvm.runtime.LLVMFunction.fixedCodeAssumption:Lcom/oracle/truffle/api/Assumption;
         2: .line 62
            aload 0 /* this */
            aload 3 /* type */
            putfield com.oracle.truffle.llvm.runtime.LLVMFunction.type:Lcom/oracle/truffle/llvm/runtime/types/FunctionType;
         3: .line 63
            aload 0 /* this */
            aload 2 /* function */
            putfield com.oracle.truffle.llvm.runtime.LLVMFunction.function:Lcom/oracle/truffle/llvm/runtime/LLVMFunctionCode$Function;
         4: .line 64
            aload 0 /* this */
            aload 7 /* path */
            putfield com.oracle.truffle.llvm.runtime.LLVMFunction.path:Ljava/lang/String;
         5: .line 65
            return
        end local 7 // java.lang.String path
        end local 6 // boolean exported
        end local 5 // int symbolIndex
        end local 4 // int bitcodeID
        end local 3 // com.oracle.truffle.llvm.runtime.types.FunctionType type
        end local 2 // com.oracle.truffle.llvm.runtime.LLVMFunctionCode$Function function
        end local 1 // java.lang.String name
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMFunction this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    6     0         this  Lcom/oracle/truffle/llvm/runtime/LLVMFunction;
            0    6     1         name  Ljava/lang/String;
            0    6     2     function  Lcom/oracle/truffle/llvm/runtime/LLVMFunctionCode$Function;
            0    6     3         type  Lcom/oracle/truffle/llvm/runtime/types/FunctionType;
            0    6     4    bitcodeID  I
            0    6     5  symbolIndex  I
            0    6     6     exported  Z
            0    6     7         path  Ljava/lang/String;
    MethodParameters:
             Name  Flags
      name         
      function     
      type         
      bitcodeID    
      symbolIndex  
      exported     
      path         

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

  public com.oracle.truffle.llvm.runtime.types.FunctionType getType();
    descriptor: ()Lcom/oracle/truffle/llvm/runtime/types/FunctionType;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMFunction this
         0: .line 72
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMFunction.type:Lcom/oracle/truffle/llvm/runtime/types/FunctionType;
            areturn
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMFunction this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMFunction;

  public com.oracle.truffle.llvm.runtime.LLVMFunctionCode$Function getFunction();
    descriptor: ()Lcom/oracle/truffle/llvm/runtime/LLVMFunctionCode$Function;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMFunction this
         0: .line 76
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMFunction.function:Lcom/oracle/truffle/llvm/runtime/LLVMFunctionCode$Function;
            areturn
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMFunction this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMFunction;

  public boolean isFunction();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMFunction this
         0: .line 81
            iconst_1
            ireturn
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMFunction this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMFunction;

  public boolean isGlobalVariable();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMFunction this
         0: .line 86
            iconst_0
            ireturn
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMFunction this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMFunction;

  public boolean isAlias();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMFunction this
         0: .line 91
            iconst_0
            ireturn
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMFunction this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMFunction;

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

  public com.oracle.truffle.llvm.runtime.global.LLVMGlobal asGlobalVariable();
    descriptor: ()Lcom/oracle/truffle/llvm/runtime/global/LLVMGlobal;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMFunction this
         0: .line 101
            new java.lang.IllegalStateException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Function "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMFunction.getName:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc " is not a global variable."
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMFunction this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMFunction;

  public com.oracle.truffle.api.Assumption getFixedCodeAssumption();
    descriptor: ()Lcom/oracle/truffle/api/Assumption;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMFunction this
         0: .line 105
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMFunction.fixedCodeAssumption:Lcom/oracle/truffle/api/Assumption;
            areturn
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMFunction this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMFunction;

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

  public void setValue(com.oracle.truffle.llvm.runtime.pointer.LLVMPointer);
    descriptor: (Lcom/oracle/truffle/llvm/runtime/pointer/LLVMPointer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMFunction this
        start local 1 // com.oracle.truffle.llvm.runtime.pointer.LLVMPointer pointer
         0: .line 113
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMFunction.fixedCodeAssumption:Lcom/oracle/truffle/api/Assumption;
            invokeinterface com.oracle.truffle.api.Assumption.isValid:()Z
            ifeq 13
         1: .line 114
            aload 1 /* pointer */
            invokestatic com.oracle.truffle.llvm.runtime.pointer.LLVMManagedPointer.isInstance:(Ljava/lang/Object;)Z
            ifeq 11
         2: .line 115
            aload 1 /* pointer */
            invokestatic com.oracle.truffle.llvm.runtime.pointer.LLVMManagedPointer.cast:(Ljava/lang/Object;)Lcom/oracle/truffle/llvm/runtime/pointer/LLVMManagedPointer;
            invokeinterface com.oracle.truffle.llvm.runtime.pointer.LLVMManagedPointer.getObject:()Ljava/lang/Object;
            astore 2 /* value */
        start local 2 // java.lang.Object value
         3: .line 116
            aload 2 /* value */
            instanceof com.oracle.truffle.llvm.runtime.LLVMFunctionDescriptor
            ifeq 11
         4: .line 117
            aload 2 /* value */
            checkcast com.oracle.truffle.llvm.runtime.LLVMFunctionDescriptor
            astore 3 /* descriptor */
        start local 3 // com.oracle.truffle.llvm.runtime.LLVMFunctionDescriptor descriptor
         5: .line 118
            aload 3 /* descriptor */
            invokevirtual com.oracle.truffle.llvm.runtime.LLVMFunctionDescriptor.getFunctionCode:()Lcom/oracle/truffle/llvm/runtime/LLVMFunctionCode;
            astore 4 /* code */
        start local 4 // com.oracle.truffle.llvm.runtime.LLVMFunctionCode code
         6: .line 119
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMFunction.fixedCode:Lcom/oracle/truffle/llvm/runtime/LLVMFunctionCode;
            ifnonnull 9
         7: .line 120
            aload 0 /* this */
            aload 4 /* code */
            putfield com.oracle.truffle.llvm.runtime.LLVMFunction.fixedCode:Lcom/oracle/truffle/llvm/runtime/LLVMFunctionCode;
         8: .line 121
            return
         9: .line 122
      StackMap locals: java.lang.Object com.oracle.truffle.llvm.runtime.LLVMFunctionDescriptor com.oracle.truffle.llvm.runtime.LLVMFunctionCode
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMFunction.fixedCode:Lcom/oracle/truffle/llvm/runtime/LLVMFunctionCode;
            aload 4 /* code */
            if_acmpne 11
        10: .line 123
            return
        end local 4 // com.oracle.truffle.llvm.runtime.LLVMFunctionCode code
        end local 3 // com.oracle.truffle.llvm.runtime.LLVMFunctionDescriptor descriptor
        end local 2 // java.lang.Object value
        11: .line 127
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aconst_null
            putfield com.oracle.truffle.llvm.runtime.LLVMFunction.fixedCode:Lcom/oracle/truffle/llvm/runtime/LLVMFunctionCode;
        12: .line 128
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMFunction.fixedCodeAssumption:Lcom/oracle/truffle/api/Assumption;
            invokeinterface com.oracle.truffle.api.Assumption.invalidate:()V
        13: .line 130
      StackMap locals:
      StackMap stack:
            return
        end local 1 // com.oracle.truffle.llvm.runtime.pointer.LLVMPointer pointer
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMFunction this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   14     0        this  Lcom/oracle/truffle/llvm/runtime/LLVMFunction;
            0   14     1     pointer  Lcom/oracle/truffle/llvm/runtime/pointer/LLVMPointer;
            3   11     2       value  Ljava/lang/Object;
            5   11     3  descriptor  Lcom/oracle/truffle/llvm/runtime/LLVMFunctionDescriptor;
            6   11     4        code  Lcom/oracle/truffle/llvm/runtime/LLVMFunctionCode;
    MethodParameters:
         Name  Flags
      pointer  
}
SourceFile: "LLVMFunction.java"
InnerClasses:
  public abstract CompilationFinal = com.oracle.truffle.api.CompilerDirectives$CompilationFinal of com.oracle.truffle.api.CompilerDirectives
  public abstract Function = com.oracle.truffle.llvm.runtime.LLVMFunctionCode$Function of com.oracle.truffle.llvm.runtime.LLVMFunctionCode