class com.oracle.truffle.api.instrumentation.test.InstrumentationTestLanguage$RecursiveCallNode extends com.oracle.truffle.api.instrumentation.test.InstrumentationTestLanguage$InstrumentedNode
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: com.oracle.truffle.api.instrumentation.test.InstrumentationTestLanguage$RecursiveCallNode
  super_class: com.oracle.truffle.api.instrumentation.test.InstrumentationTestLanguage$InstrumentedNode
{
  private com.oracle.truffle.api.nodes.DirectCallNode callNode;
    descriptor: Lcom/oracle/truffle/api/nodes/DirectCallNode;
    flags: (0x0002) ACC_PRIVATE
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.nodes.Node$Child()

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

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

  private int currentDepth;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  void <init>(java.lang.String, int, com.oracle.truffle.api.instrumentation.test.InstrumentationTestLanguage$BaseNode[]);
    descriptor: (Ljava/lang/String;I[Lcom/oracle/truffle/api/instrumentation/test/InstrumentationTestLanguage$BaseNode;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // com.oracle.truffle.api.instrumentation.test.InstrumentationTestLanguage$RecursiveCallNode this
        start local 1 // java.lang.String identifier
        start local 2 // int depth
        start local 3 // com.oracle.truffle.api.instrumentation.test.InstrumentationTestLanguage$BaseNode[] children
         0: .line 1724
            aload 0 /* this */
            aload 3 /* children */
            invokespecial com.oracle.truffle.api.instrumentation.test.InstrumentationTestLanguage$InstrumentedNode.<init>:([Lcom/oracle/truffle/api/instrumentation/test/InstrumentationTestLanguage$BaseNode;)V
         1: .line 1721
            aload 0 /* this */
            iconst_0
            putfield com.oracle.truffle.api.instrumentation.test.InstrumentationTestLanguage$RecursiveCallNode.currentDepth:I
         2: .line 1725
            aload 0 /* this */
            aload 1 /* identifier */
            putfield com.oracle.truffle.api.instrumentation.test.InstrumentationTestLanguage$RecursiveCallNode.identifier:Ljava/lang/String;
         3: .line 1726
            aload 0 /* this */
            iload 2 /* depth */
            putfield com.oracle.truffle.api.instrumentation.test.InstrumentationTestLanguage$RecursiveCallNode.depth:I
         4: .line 1727
            return
        end local 3 // com.oracle.truffle.api.instrumentation.test.InstrumentationTestLanguage$BaseNode[] children
        end local 2 // int depth
        end local 1 // java.lang.String identifier
        end local 0 // com.oracle.truffle.api.instrumentation.test.InstrumentationTestLanguage$RecursiveCallNode this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lcom/oracle/truffle/api/instrumentation/test/InstrumentationTestLanguage$RecursiveCallNode;
            0    5     1  identifier  Ljava/lang/String;
            0    5     2       depth  I
            0    5     3    children  [Lcom/oracle/truffle/api/instrumentation/test/InstrumentationTestLanguage$BaseNode;
    MethodParameters:
            Name  Flags
      identifier  
      depth       
      children    

  public java.lang.Object execute(com.oracle.truffle.api.frame.VirtualFrame);
    descriptor: (Lcom/oracle/truffle/api/frame/VirtualFrame;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // com.oracle.truffle.api.instrumentation.test.InstrumentationTestLanguage$RecursiveCallNode this
        start local 1 // com.oracle.truffle.api.frame.VirtualFrame frame
         0: .line 1731
            aload 0 /* this */
            getfield com.oracle.truffle.api.instrumentation.test.InstrumentationTestLanguage$RecursiveCallNode.currentDepth:I
            aload 0 /* this */
            getfield com.oracle.truffle.api.instrumentation.test.InstrumentationTestLanguage$RecursiveCallNode.depth:I
            if_icmpge 10
         1: .line 1732
            aload 0 /* this */
            dup
            getfield com.oracle.truffle.api.instrumentation.test.InstrumentationTestLanguage$RecursiveCallNode.currentDepth:I
            iconst_1
            iadd
            putfield com.oracle.truffle.api.instrumentation.test.InstrumentationTestLanguage$RecursiveCallNode.currentDepth:I
         2: .line 1733
            aload 0 /* this */
            getfield com.oracle.truffle.api.instrumentation.test.InstrumentationTestLanguage$RecursiveCallNode.callNode:Lcom/oracle/truffle/api/nodes/DirectCallNode;
            ifnonnull 7
         3: .line 1734
            invokestatic com.oracle.truffle.api.CompilerDirectives.transferToInterpreterAndInvalidate:()V
         4: .line 1735
            aload 0 /* this */
            ldc Lcom/oracle/truffle/api/instrumentation/test/InstrumentationTestLanguage;
            invokevirtual com.oracle.truffle.api.instrumentation.test.InstrumentationTestLanguage$RecursiveCallNode.lookupContextReference:(Ljava/lang/Class;)Lcom/oracle/truffle/api/TruffleLanguage$ContextReference;
            invokevirtual com.oracle.truffle.api.TruffleLanguage$ContextReference.get:()Ljava/lang/Object;
            checkcast com.oracle.truffle.api.instrumentation.test.InstrumentContext
            astore 2 /* context */
        start local 2 // com.oracle.truffle.api.instrumentation.test.InstrumentContext context
         5: .line 1736
            aload 2 /* context */
            getfield com.oracle.truffle.api.instrumentation.test.InstrumentContext.callFunctions:Lcom/oracle/truffle/api/instrumentation/test/InstrumentationTestLanguage$FunctionsObject;
            getfield com.oracle.truffle.api.instrumentation.test.InstrumentationTestLanguage$FunctionsObject.callTargets:Ljava/util/Map;
            aload 0 /* this */
            getfield com.oracle.truffle.api.instrumentation.test.InstrumentationTestLanguage$RecursiveCallNode.identifier:Ljava/lang/String;
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast com.oracle.truffle.api.CallTarget
            astore 3 /* target */
        start local 3 // com.oracle.truffle.api.CallTarget target
         6: .line 1737
            aload 0 /* this */
            aload 0 /* this */
            invokestatic com.oracle.truffle.api.Truffle.getRuntime:()Lcom/oracle/truffle/api/TruffleRuntime;
            aload 3 /* target */
            invokeinterface com.oracle.truffle.api.TruffleRuntime.createDirectCallNode:(Lcom/oracle/truffle/api/CallTarget;)Lcom/oracle/truffle/api/nodes/DirectCallNode;
            invokevirtual com.oracle.truffle.api.instrumentation.test.InstrumentationTestLanguage$RecursiveCallNode.insert:(Lcom/oracle/truffle/api/nodes/Node;)Lcom/oracle/truffle/api/nodes/Node;
            checkcast com.oracle.truffle.api.nodes.DirectCallNode
            putfield com.oracle.truffle.api.instrumentation.test.InstrumentationTestLanguage$RecursiveCallNode.callNode:Lcom/oracle/truffle/api/nodes/DirectCallNode;
        end local 3 // com.oracle.truffle.api.CallTarget target
        end local 2 // com.oracle.truffle.api.instrumentation.test.InstrumentContext context
         7: .line 1739
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.truffle.api.instrumentation.test.InstrumentationTestLanguage$RecursiveCallNode.callNode:Lcom/oracle/truffle/api/nodes/DirectCallNode;
            iconst_0
            anewarray java.lang.Object
            invokevirtual com.oracle.truffle.api.nodes.DirectCallNode.call:([Ljava/lang/Object;)Ljava/lang/Object;
            astore 2 /* retval */
        start local 2 // java.lang.Object retval
         8: .line 1740
            aload 0 /* this */
            dup
            getfield com.oracle.truffle.api.instrumentation.test.InstrumentationTestLanguage$RecursiveCallNode.currentDepth:I
            iconst_1
            isub
            putfield com.oracle.truffle.api.instrumentation.test.InstrumentationTestLanguage$RecursiveCallNode.currentDepth:I
         9: .line 1741
            aload 2 /* retval */
            areturn
        end local 2 // java.lang.Object retval
        10: .line 1743
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 1 // com.oracle.truffle.api.frame.VirtualFrame frame
        end local 0 // com.oracle.truffle.api.instrumentation.test.InstrumentationTestLanguage$RecursiveCallNode this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   11     0     this  Lcom/oracle/truffle/api/instrumentation/test/InstrumentationTestLanguage$RecursiveCallNode;
            0   11     1    frame  Lcom/oracle/truffle/api/frame/VirtualFrame;
            5    7     2  context  Lcom/oracle/truffle/api/instrumentation/test/InstrumentContext;
            6    7     3   target  Lcom/oracle/truffle/api/CallTarget;
            8   10     2   retval  Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      frame  

  protected com.oracle.truffle.api.instrumentation.test.InstrumentationTestLanguage$BaseNode copyUninitialized(java.util.Set<java.lang.Class<? extends com.oracle.truffle.api.instrumentation.Tag>>);
    descriptor: (Ljava/util/Set;)Lcom/oracle/truffle/api/instrumentation/test/InstrumentationTestLanguage$BaseNode;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=6, locals=2, args_size=2
        start local 0 // com.oracle.truffle.api.instrumentation.test.InstrumentationTestLanguage$RecursiveCallNode this
        start local 1 // java.util.Set materializedTags
         0: .line 1749
            new com.oracle.truffle.api.instrumentation.test.InstrumentationTestLanguage$RecursiveCallNode
            dup
            aload 0 /* this */
            getfield com.oracle.truffle.api.instrumentation.test.InstrumentationTestLanguage$RecursiveCallNode.identifier:Ljava/lang/String;
            aload 0 /* this */
            getfield com.oracle.truffle.api.instrumentation.test.InstrumentationTestLanguage$RecursiveCallNode.depth:I
            aload 0 /* this */
            getfield com.oracle.truffle.api.instrumentation.test.InstrumentationTestLanguage$RecursiveCallNode.children:[Lcom/oracle/truffle/api/instrumentation/test/InstrumentationTestLanguage$BaseNode;
            aload 1 /* materializedTags */
            invokestatic com.oracle.truffle.api.instrumentation.test.InstrumentationTestLanguage$RecursiveCallNode.cloneUninitialized:([Lcom/oracle/truffle/api/instrumentation/test/InstrumentationTestLanguage$BaseNode;Ljava/util/Set;)[Lcom/oracle/truffle/api/instrumentation/test/InstrumentationTestLanguage$BaseNode;
            invokespecial com.oracle.truffle.api.instrumentation.test.InstrumentationTestLanguage$RecursiveCallNode.<init>:(Ljava/lang/String;I[Lcom/oracle/truffle/api/instrumentation/test/InstrumentationTestLanguage$BaseNode;)V
            areturn
        end local 1 // java.util.Set materializedTags
        end local 0 // com.oracle.truffle.api.instrumentation.test.InstrumentationTestLanguage$RecursiveCallNode this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    1     0              this  Lcom/oracle/truffle/api/instrumentation/test/InstrumentationTestLanguage$RecursiveCallNode;
            0    1     1  materializedTags  Ljava/util/Set<Ljava/lang/Class<+Lcom/oracle/truffle/api/instrumentation/Tag;>;>;
    Signature: (Ljava/util/Set<Ljava/lang/Class<+Lcom/oracle/truffle/api/instrumentation/Tag;>;>;)Lcom/oracle/truffle/api/instrumentation/test/InstrumentationTestLanguage$BaseNode;
    MethodParameters:
                  Name  Flags
      materializedTags  
}
SourceFile: "InstrumentationTestLanguage.java"
NestHost: com.oracle.truffle.api.instrumentation.test.InstrumentationTestLanguage
InnerClasses:
  public abstract ContextReference = com.oracle.truffle.api.TruffleLanguage$ContextReference of com.oracle.truffle.api.TruffleLanguage
  public abstract BaseNode = com.oracle.truffle.api.instrumentation.test.InstrumentationTestLanguage$BaseNode of com.oracle.truffle.api.instrumentation.test.InstrumentationTestLanguage
  FunctionsObject = com.oracle.truffle.api.instrumentation.test.InstrumentationTestLanguage$FunctionsObject of com.oracle.truffle.api.instrumentation.test.InstrumentationTestLanguage
  public abstract InstrumentedNode = com.oracle.truffle.api.instrumentation.test.InstrumentationTestLanguage$InstrumentedNode of com.oracle.truffle.api.instrumentation.test.InstrumentationTestLanguage
  private RecursiveCallNode = com.oracle.truffle.api.instrumentation.test.InstrumentationTestLanguage$RecursiveCallNode of com.oracle.truffle.api.instrumentation.test.InstrumentationTestLanguage
  public abstract Child = com.oracle.truffle.api.nodes.Node$Child of com.oracle.truffle.api.nodes.Node