abstract class com.oracle.truffle.polyglot.PolyglotExecuteNode extends com.oracle.truffle.api.nodes.Node
  minor version: 0
  major version: 59
  flags: flags: (0x0420) ACC_SUPER, ACC_ABSTRACT
  this_class: com.oracle.truffle.polyglot.PolyglotExecuteNode
  super_class: com.oracle.truffle.api.nodes.Node
{
  private static final java.lang.Object[] EMPTY;
    descriptor: [Ljava/lang/Object;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private final com.oracle.truffle.polyglot.PolyglotLanguageContext$ToGuestValuesNode toGuests;
    descriptor: Lcom/oracle/truffle/polyglot/PolyglotLanguageContext$ToGuestValuesNode;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 59
            iconst_0
            anewarray java.lang.Object
            putstatic com.oracle.truffle.polyglot.PolyglotExecuteNode.EMPTY:[Ljava/lang/Object;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void <init>();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.oracle.truffle.polyglot.PolyglotExecuteNode this
         0: .line 57
            aload 0 /* this */
            invokespecial com.oracle.truffle.api.nodes.Node.<init>:()V
         1: .line 61
            aload 0 /* this */
            invokestatic com.oracle.truffle.polyglot.PolyglotLanguageContext$ToGuestValuesNode.create:()Lcom/oracle/truffle/polyglot/PolyglotLanguageContext$ToGuestValuesNode;
            putfield com.oracle.truffle.polyglot.PolyglotExecuteNode.toGuests:Lcom/oracle/truffle/polyglot/PolyglotLanguageContext$ToGuestValuesNode;
         2: .line 57
            return
        end local 0 // com.oracle.truffle.polyglot.PolyglotExecuteNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/oracle/truffle/polyglot/PolyglotExecuteNode;

  public final  execute(com.oracle.truffle.polyglot.PolyglotLanguageContext, , , java.lang.Class<?>, java.lang.reflect.Type);
    descriptor: (Lcom/oracle/truffle/polyglot/PolyglotLanguageContext;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Class;Ljava/lang/reflect/Type;)Ljava/lang/Object;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=6, locals=8, args_size=6
        start local 0 // com.oracle.truffle.polyglot.PolyglotExecuteNode this
        start local 1 // com.oracle.truffle.polyglot.PolyglotLanguageContext languageContext
        start local 2 // java.lang.Object function
        start local 3 // java.lang.Object functionArgsObject
        start local 4 // java.lang.Class resultClass
        start local 5 // java.lang.reflect.Type resultType
         0: .line 66
            aload 3 /* functionArgsObject */
            instanceof java.lang.Object[]
            ifeq 3
         1: .line 67
            aload 3 /* functionArgsObject */
            checkcast java.lang.Object[]
            astore 6 /* argsArray */
        start local 6 // java.lang.Object[] argsArray
         2: .line 68
            goto 7
        end local 6 // java.lang.Object[] argsArray
         3: .line 69
      StackMap locals:
      StackMap stack:
            aload 3 /* functionArgsObject */
            ifnonnull 6
         4: .line 70
            getstatic com.oracle.truffle.polyglot.PolyglotExecuteNode.EMPTY:[Ljava/lang/Object;
            astore 6 /* argsArray */
        start local 6 // java.lang.Object[] argsArray
         5: .line 71
            goto 7
        end local 6 // java.lang.Object[] argsArray
         6: .line 72
      StackMap locals:
      StackMap stack:
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 3 /* functionArgsObject */
            aastore
            astore 6 /* argsArray */
        start local 6 // java.lang.Object[] argsArray
         7: .line 75
      StackMap locals: java.lang.Object[]
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.truffle.polyglot.PolyglotExecuteNode.toGuests:Lcom/oracle/truffle/polyglot/PolyglotLanguageContext$ToGuestValuesNode;
            aload 1 /* languageContext */
            aload 6 /* argsArray */
            invokevirtual com.oracle.truffle.polyglot.PolyglotLanguageContext$ToGuestValuesNode.apply:(Lcom/oracle/truffle/polyglot/PolyglotLanguageContext;[Ljava/lang/Object;)[Ljava/lang/Object;
            astore 7 /* functionArgs */
        start local 7 // java.lang.Object[] functionArgs
         8: .line 76
            aload 0 /* this */
            aload 1 /* languageContext */
            aload 2 /* function */
            aload 7 /* functionArgs */
            aload 4 /* resultClass */
            aload 5 /* resultType */
            invokevirtual com.oracle.truffle.polyglot.PolyglotExecuteNode.executeImpl:(Lcom/oracle/truffle/polyglot/PolyglotLanguageContext;Ljava/lang/Object;[Ljava/lang/Object;Ljava/lang/Class;Ljava/lang/reflect/Type;)Ljava/lang/Object;
            areturn
        end local 7 // java.lang.Object[] functionArgs
        end local 6 // java.lang.Object[] argsArray
        end local 5 // java.lang.reflect.Type resultType
        end local 4 // java.lang.Class resultClass
        end local 3 // java.lang.Object functionArgsObject
        end local 2 // java.lang.Object function
        end local 1 // com.oracle.truffle.polyglot.PolyglotLanguageContext languageContext
        end local 0 // com.oracle.truffle.polyglot.PolyglotExecuteNode this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    9     0                this  Lcom/oracle/truffle/polyglot/PolyglotExecuteNode;
            0    9     1     languageContext  Lcom/oracle/truffle/polyglot/PolyglotLanguageContext;
            0    9     2            function  Ljava/lang/Object;
            0    9     3  functionArgsObject  Ljava/lang/Object;
            0    9     4         resultClass  Ljava/lang/Class<*>;
            0    9     5          resultType  Ljava/lang/reflect/Type;
            2    3     6           argsArray  [Ljava/lang/Object;
            5    6     6           argsArray  [Ljava/lang/Object;
            7    9     6           argsArray  [Ljava/lang/Object;
            8    9     7        functionArgs  [Ljava/lang/Object;
    Signature: (Lcom/oracle/truffle/polyglot/PolyglotLanguageContext;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Class<*>;Ljava/lang/reflect/Type;)Ljava/lang/Object;
    MethodParameters:
                    Name  Flags
      languageContext     
      function            
      functionArgsObject  
      resultClass         
      resultType          

  protected abstract  executeImpl(com.oracle.truffle.polyglot.PolyglotLanguageContext, , [], java.lang.Class<?>, java.lang.reflect.Type);
    descriptor: (Lcom/oracle/truffle/polyglot/PolyglotLanguageContext;Ljava/lang/Object;[Ljava/lang/Object;Ljava/lang/Class;Ljava/lang/reflect/Type;)Ljava/lang/Object;
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    Signature: (Lcom/oracle/truffle/polyglot/PolyglotLanguageContext;Ljava/lang/Object;[Ljava/lang/Object;Ljava/lang/Class<*>;Ljava/lang/reflect/Type;)Ljava/lang/Object;
    MethodParameters:
                    Name  Flags
      languageContext     
      function            
      functionArgsObject  
      resultClass         
      resultType          

   doCached(com.oracle.truffle.polyglot.PolyglotLanguageContext, , [], java.lang.Class<?>, java.lang.reflect.Type, com.oracle.truffle.api.interop.InteropLibrary, com.oracle.truffle.polyglot.ToHostNode, com.oracle.truffle.api.profiles.ConditionProfile, com.oracle.truffle.api.profiles.ConditionProfile, com.oracle.truffle.api.profiles.BranchProfile, com.oracle.truffle.api.profiles.BranchProfile, com.oracle.truffle.api.profiles.BranchProfile);
    descriptor: (Lcom/oracle/truffle/polyglot/PolyglotLanguageContext;Ljava/lang/Object;[Ljava/lang/Object;Ljava/lang/Class;Ljava/lang/reflect/Type;Lcom/oracle/truffle/api/interop/InteropLibrary;Lcom/oracle/truffle/polyglot/ToHostNode;Lcom/oracle/truffle/api/profiles/ConditionProfile;Lcom/oracle/truffle/api/profiles/ConditionProfile;Lcom/oracle/truffle/api/profiles/BranchProfile;Lcom/oracle/truffle/api/profiles/BranchProfile;Lcom/oracle/truffle/api/profiles/BranchProfile;)Ljava/lang/Object;
    flags: (0x0000) 
    Code:
      stack=6, locals=16, args_size=13
        start local 0 // com.oracle.truffle.polyglot.PolyglotExecuteNode this
        start local 1 // com.oracle.truffle.polyglot.PolyglotLanguageContext languageContext
        start local 2 // java.lang.Object function
        start local 3 // java.lang.Object[] functionArgs
        start local 4 // java.lang.Class resultClass
        start local 5 // java.lang.reflect.Type resultType
        start local 6 // com.oracle.truffle.api.interop.InteropLibrary interop
        start local 7 // com.oracle.truffle.polyglot.ToHostNode toHost
        start local 8 // com.oracle.truffle.api.profiles.ConditionProfile executableCondition
        start local 9 // com.oracle.truffle.api.profiles.ConditionProfile instantiableCondition
        start local 10 // com.oracle.truffle.api.profiles.BranchProfile unsupportedError
        start local 11 // com.oracle.truffle.api.profiles.BranchProfile arityError
        start local 12 // com.oracle.truffle.api.profiles.BranchProfile unsupportedArgumentError
         0: .line 94
            aload 8 /* executableCondition */
            aload 6 /* interop */
            aload 2 /* function */
            invokevirtual com.oracle.truffle.api.interop.InteropLibrary.isExecutable:(Ljava/lang/Object;)Z
            invokevirtual com.oracle.truffle.api.profiles.ConditionProfile.profile:(Z)Z
            istore 14 /* executable */
        start local 14 // boolean executable
         1: .line 96
            iload 14 /* executable */
            ifeq 4
         2: .line 97
            aload 6 /* interop */
            aload 2 /* function */
            aload 3 /* functionArgs */
            invokevirtual com.oracle.truffle.api.interop.InteropLibrary.execute:(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;
            astore 13 /* result */
        start local 13 // java.lang.Object result
         3: .line 98
            goto 21
        end local 13 // java.lang.Object result
      StackMap locals: com.oracle.truffle.polyglot.PolyglotExecuteNode com.oracle.truffle.polyglot.PolyglotLanguageContext java.lang.Object java.lang.Object[] java.lang.Class java.lang.reflect.Type com.oracle.truffle.api.interop.InteropLibrary com.oracle.truffle.polyglot.ToHostNode com.oracle.truffle.api.profiles.ConditionProfile com.oracle.truffle.api.profiles.ConditionProfile com.oracle.truffle.api.profiles.BranchProfile com.oracle.truffle.api.profiles.BranchProfile com.oracle.truffle.api.profiles.BranchProfile top int
      StackMap stack:
         4: aload 9 /* instantiableCondition */
            aload 6 /* interop */
            aload 2 /* function */
            invokevirtual com.oracle.truffle.api.interop.InteropLibrary.isInstantiable:(Ljava/lang/Object;)Z
            invokevirtual com.oracle.truffle.api.profiles.ConditionProfile.profile:(Z)Z
            ifeq 7
         5: .line 99
            aload 6 /* interop */
            aload 2 /* function */
            aload 3 /* functionArgs */
            invokevirtual com.oracle.truffle.api.interop.InteropLibrary.instantiate:(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;
            astore 13 /* result */
        start local 13 // java.lang.Object result
         6: .line 100
            goto 21
        end local 13 // java.lang.Object result
         7: .line 101
      StackMap locals:
      StackMap stack:
            aload 1 /* languageContext */
            aload 2 /* function */
            invokestatic com.oracle.truffle.polyglot.HostInteropErrors.executeUnsupported:(Lcom/oracle/truffle/polyglot/PolyglotLanguageContext;Ljava/lang/Object;)Ljava/lang/RuntimeException;
            athrow
         8: .line 103
      StackMap locals:
      StackMap stack: com.oracle.truffle.api.interop.UnsupportedTypeException
            pop
         9: .line 104
            aload 12 /* unsupportedArgumentError */
            invokevirtual com.oracle.truffle.api.profiles.BranchProfile.enter:()V
        10: .line 105
            iload 14 /* executable */
            ifeq 12
        11: .line 106
            aload 1 /* languageContext */
            aload 2 /* function */
            aload 3 /* functionArgs */
            invokestatic com.oracle.truffle.polyglot.HostInteropErrors.invalidExecuteArgumentType:(Lcom/oracle/truffle/polyglot/PolyglotLanguageContext;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/RuntimeException;
            athrow
        12: .line 108
      StackMap locals:
      StackMap stack:
            aload 1 /* languageContext */
            aload 2 /* function */
            aload 3 /* functionArgs */
            invokestatic com.oracle.truffle.polyglot.HostInteropErrors.invalidInstantiateArgumentType:(Lcom/oracle/truffle/polyglot/PolyglotLanguageContext;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/RuntimeException;
            athrow
        13: .line 110
      StackMap locals:
      StackMap stack: com.oracle.truffle.api.interop.ArityException
            astore 15 /* e */
        start local 15 // com.oracle.truffle.api.interop.ArityException e
        14: .line 111
            aload 11 /* arityError */
            invokevirtual com.oracle.truffle.api.profiles.BranchProfile.enter:()V
        15: .line 112
            iload 14 /* executable */
            ifeq 17
        16: .line 113
            aload 1 /* languageContext */
            aload 2 /* function */
            aload 3 /* functionArgs */
            aload 15 /* e */
            invokevirtual com.oracle.truffle.api.interop.ArityException.getExpectedArity:()I
            aload 15 /* e */
            invokevirtual com.oracle.truffle.api.interop.ArityException.getActualArity:()I
            invokestatic com.oracle.truffle.polyglot.HostInteropErrors.invalidExecuteArity:(Lcom/oracle/truffle/polyglot/PolyglotLanguageContext;Ljava/lang/Object;[Ljava/lang/Object;II)Ljava/lang/RuntimeException;
            athrow
        17: .line 115
      StackMap locals: com.oracle.truffle.api.interop.ArityException
      StackMap stack:
            aload 1 /* languageContext */
            aload 2 /* function */
            aload 3 /* functionArgs */
            aload 15 /* e */
            invokevirtual com.oracle.truffle.api.interop.ArityException.getExpectedArity:()I
            aload 15 /* e */
            invokevirtual com.oracle.truffle.api.interop.ArityException.getActualArity:()I
            invokestatic com.oracle.truffle.polyglot.HostInteropErrors.invalidInstantiateArity:(Lcom/oracle/truffle/polyglot/PolyglotLanguageContext;Ljava/lang/Object;[Ljava/lang/Object;II)Ljava/lang/RuntimeException;
            athrow
        end local 15 // com.oracle.truffle.api.interop.ArityException e
        18: .line 117
      StackMap locals: com.oracle.truffle.polyglot.PolyglotExecuteNode com.oracle.truffle.polyglot.PolyglotLanguageContext java.lang.Object java.lang.Object[] java.lang.Class java.lang.reflect.Type com.oracle.truffle.api.interop.InteropLibrary com.oracle.truffle.polyglot.ToHostNode com.oracle.truffle.api.profiles.ConditionProfile com.oracle.truffle.api.profiles.ConditionProfile com.oracle.truffle.api.profiles.BranchProfile com.oracle.truffle.api.profiles.BranchProfile com.oracle.truffle.api.profiles.BranchProfile top int
      StackMap stack: com.oracle.truffle.api.interop.UnsupportedMessageException
            pop
        19: .line 118
            aload 10 /* unsupportedError */
            invokevirtual com.oracle.truffle.api.profiles.BranchProfile.enter:()V
        20: .line 119
            aload 1 /* languageContext */
            aload 2 /* function */
            invokestatic com.oracle.truffle.polyglot.HostInteropErrors.executeUnsupported:(Lcom/oracle/truffle/polyglot/PolyglotLanguageContext;Ljava/lang/Object;)Ljava/lang/RuntimeException;
            athrow
        start local 13 // java.lang.Object result
        21: .line 121
      StackMap locals: com.oracle.truffle.polyglot.PolyglotExecuteNode com.oracle.truffle.polyglot.PolyglotLanguageContext java.lang.Object java.lang.Object[] java.lang.Class java.lang.reflect.Type com.oracle.truffle.api.interop.InteropLibrary com.oracle.truffle.polyglot.ToHostNode com.oracle.truffle.api.profiles.ConditionProfile com.oracle.truffle.api.profiles.ConditionProfile com.oracle.truffle.api.profiles.BranchProfile com.oracle.truffle.api.profiles.BranchProfile com.oracle.truffle.api.profiles.BranchProfile java.lang.Object int
      StackMap stack:
            aload 7 /* toHost */
            aload 13 /* result */
            aload 4 /* resultClass */
            aload 5 /* resultType */
            aload 1 /* languageContext */
            iconst_1
            invokevirtual com.oracle.truffle.polyglot.ToHostNode.execute:(Ljava/lang/Object;Ljava/lang/Class;Ljava/lang/reflect/Type;Lcom/oracle/truffle/polyglot/PolyglotLanguageContext;Z)Ljava/lang/Object;
            areturn
        end local 14 // boolean executable
        end local 13 // java.lang.Object result
        end local 12 // com.oracle.truffle.api.profiles.BranchProfile unsupportedArgumentError
        end local 11 // com.oracle.truffle.api.profiles.BranchProfile arityError
        end local 10 // com.oracle.truffle.api.profiles.BranchProfile unsupportedError
        end local 9 // com.oracle.truffle.api.profiles.ConditionProfile instantiableCondition
        end local 8 // com.oracle.truffle.api.profiles.ConditionProfile executableCondition
        end local 7 // com.oracle.truffle.polyglot.ToHostNode toHost
        end local 6 // com.oracle.truffle.api.interop.InteropLibrary interop
        end local 5 // java.lang.reflect.Type resultType
        end local 4 // java.lang.Class resultClass
        end local 3 // java.lang.Object[] functionArgs
        end local 2 // java.lang.Object function
        end local 1 // com.oracle.truffle.polyglot.PolyglotLanguageContext languageContext
        end local 0 // com.oracle.truffle.polyglot.PolyglotExecuteNode this
      LocalVariableTable:
        Start  End  Slot                      Name  Signature
            0   22     0                      this  Lcom/oracle/truffle/polyglot/PolyglotExecuteNode;
            0   22     1           languageContext  Lcom/oracle/truffle/polyglot/PolyglotLanguageContext;
            0   22     2                  function  Ljava/lang/Object;
            0   22     3              functionArgs  [Ljava/lang/Object;
            0   22     4               resultClass  Ljava/lang/Class<*>;
            0   22     5                resultType  Ljava/lang/reflect/Type;
            0   22     6                   interop  Lcom/oracle/truffle/api/interop/InteropLibrary;
            0   22     7                    toHost  Lcom/oracle/truffle/polyglot/ToHostNode;
            0   22     8       executableCondition  Lcom/oracle/truffle/api/profiles/ConditionProfile;
            0   22     9     instantiableCondition  Lcom/oracle/truffle/api/profiles/ConditionProfile;
            0   22    10          unsupportedError  Lcom/oracle/truffle/api/profiles/BranchProfile;
            0   22    11                arityError  Lcom/oracle/truffle/api/profiles/BranchProfile;
            0   22    12  unsupportedArgumentError  Lcom/oracle/truffle/api/profiles/BranchProfile;
            3    4    13                    result  Ljava/lang/Object;
            6    7    13                    result  Ljava/lang/Object;
           21   22    13                    result  Ljava/lang/Object;
            1   22    14                executable  Z
           14   18    15                         e  Lcom/oracle/truffle/api/interop/ArityException;
      Exception table:
        from    to  target  type
           1     8       8  Class com.oracle.truffle.api.interop.UnsupportedTypeException
           1     8      13  Class com.oracle.truffle.api.interop.ArityException
           1     8      18  Class com.oracle.truffle.api.interop.UnsupportedMessageException
    Signature: (Lcom/oracle/truffle/polyglot/PolyglotLanguageContext;Ljava/lang/Object;[Ljava/lang/Object;Ljava/lang/Class<*>;Ljava/lang/reflect/Type;Lcom/oracle/truffle/api/interop/InteropLibrary;Lcom/oracle/truffle/polyglot/ToHostNode;Lcom/oracle/truffle/api/profiles/ConditionProfile;Lcom/oracle/truffle/api/profiles/ConditionProfile;Lcom/oracle/truffle/api/profiles/BranchProfile;Lcom/oracle/truffle/api/profiles/BranchProfile;Lcom/oracle/truffle/api/profiles/BranchProfile;)Ljava/lang/Object;
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.dsl.Specialization(limit = "5")
    RuntimeInvisibleParameterAnnotations: 
      0:
      1:
      2:
      3:
      4:
      5:
        com.oracle.truffle.api.library.CachedLibrary(value = "function")
      6:
        com.oracle.truffle.api.dsl.Cached()
      7:
        com.oracle.truffle.api.dsl.Cached()
      8:
        com.oracle.truffle.api.dsl.Cached()
      9:
        com.oracle.truffle.api.dsl.Cached()
      10:
        com.oracle.truffle.api.dsl.Cached()
      11:
        com.oracle.truffle.api.dsl.Cached()
    MethodParameters:
                          Name  Flags
      languageContext           
      function                  
      functionArgs              
      resultClass               
      resultType                
      interop                   
      toHost                    
      executableCondition       
      instantiableCondition     
      unsupportedError          
      arityError                
      unsupportedArgumentError  
}
SourceFile: "PolyglotExecuteNode.java"
InnerClasses:
  final ToGuestValuesNode = com.oracle.truffle.polyglot.PolyglotLanguageContext$ToGuestValuesNode of com.oracle.truffle.polyglot.PolyglotLanguageContext