class org.graalvm.compiler.truffle.compiler.TruffleCompilerImpl$GraphInfoImpl implements org.graalvm.compiler.truffle.common.TruffleCompilerListener$GraphInfo
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.graalvm.compiler.truffle.compiler.TruffleCompilerImpl$GraphInfoImpl
  super_class: java.lang.Object
{
  private final org.graalvm.compiler.nodes.StructuredGraph graph;
    descriptor: Lorg/graalvm/compiler/nodes/StructuredGraph;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  void <init>(org.graalvm.compiler.nodes.StructuredGraph);
    descriptor: (Lorg/graalvm/compiler/nodes/StructuredGraph;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.graalvm.compiler.truffle.compiler.TruffleCompilerImpl$GraphInfoImpl this
        start local 1 // org.graalvm.compiler.nodes.StructuredGraph graph
         0: .line 396
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 397
            aload 0 /* this */
            aload 1 /* graph */
            putfield org.graalvm.compiler.truffle.compiler.TruffleCompilerImpl$GraphInfoImpl.graph:Lorg/graalvm/compiler/nodes/StructuredGraph;
         2: .line 398
            return
        end local 1 // org.graalvm.compiler.nodes.StructuredGraph graph
        end local 0 // org.graalvm.compiler.truffle.compiler.TruffleCompilerImpl$GraphInfoImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/graalvm/compiler/truffle/compiler/TruffleCompilerImpl$GraphInfoImpl;
            0    3     1  graph  Lorg/graalvm/compiler/nodes/StructuredGraph;
    MethodParameters:
       Name  Flags
      graph  

  public int getNodeCount();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.truffle.compiler.TruffleCompilerImpl$GraphInfoImpl this
         0: .line 402
            aload 0 /* this */
            getfield org.graalvm.compiler.truffle.compiler.TruffleCompilerImpl$GraphInfoImpl.graph:Lorg/graalvm/compiler/nodes/StructuredGraph;
            invokevirtual org.graalvm.compiler.nodes.StructuredGraph.getNodeCount:()I
            ireturn
        end local 0 // org.graalvm.compiler.truffle.compiler.TruffleCompilerImpl$GraphInfoImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/truffle/compiler/TruffleCompilerImpl$GraphInfoImpl;

  public java.lang.String[] getNodeTypes(boolean);
    descriptor: (Z)[Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=2
        start local 0 // org.graalvm.compiler.truffle.compiler.TruffleCompilerImpl$GraphInfoImpl this
        start local 1 // boolean simpleNames
         0: .line 407
            aload 0 /* this */
            getfield org.graalvm.compiler.truffle.compiler.TruffleCompilerImpl$GraphInfoImpl.graph:Lorg/graalvm/compiler/nodes/StructuredGraph;
            invokevirtual org.graalvm.compiler.nodes.StructuredGraph.getNodeCount:()I
            anewarray java.lang.String
            astore 2 /* res */
        start local 2 // java.lang.String[] res
         1: .line 408
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         2: .line 409
            aload 0 /* this */
            getfield org.graalvm.compiler.truffle.compiler.TruffleCompilerImpl$GraphInfoImpl.graph:Lorg/graalvm/compiler/nodes/StructuredGraph;
            invokevirtual org.graalvm.compiler.nodes.StructuredGraph.getNodes:()Lorg/graalvm/compiler/graph/iterators/NodeIterable;
            invokeinterface org.graalvm.compiler.graph.iterators.NodeIterable.iterator:()Ljava/util/Iterator;
            astore 5
            goto 7
      StackMap locals: org.graalvm.compiler.truffle.compiler.TruffleCompilerImpl$GraphInfoImpl int java.lang.String[] int top java.util.Iterator
      StackMap stack:
         3: aload 5
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.graalvm.compiler.graph.Node
            astore 4 /* node */
        start local 4 // org.graalvm.compiler.graph.Node node
         4: .line 410
            aload 2 /* res */
            iload 3 /* i */
            iinc 3 /* i */ 1
            iload 1 /* simpleNames */
            ifeq 5
            aload 4 /* node */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
            goto 6
      StackMap locals: org.graalvm.compiler.truffle.compiler.TruffleCompilerImpl$GraphInfoImpl int java.lang.String[] int org.graalvm.compiler.graph.Node java.util.Iterator
      StackMap stack: java.lang.String[] int
         5: aload 4 /* node */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
      StackMap locals: org.graalvm.compiler.truffle.compiler.TruffleCompilerImpl$GraphInfoImpl int java.lang.String[] int org.graalvm.compiler.graph.Node java.util.Iterator
      StackMap stack: java.lang.String[] int java.lang.String
         6: aastore
        end local 4 // org.graalvm.compiler.graph.Node node
         7: .line 409
      StackMap locals: org.graalvm.compiler.truffle.compiler.TruffleCompilerImpl$GraphInfoImpl int java.lang.String[] int top java.util.Iterator
      StackMap stack:
            aload 5
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
         8: .line 412
            aload 2 /* res */
            areturn
        end local 3 // int i
        end local 2 // java.lang.String[] res
        end local 1 // boolean simpleNames
        end local 0 // org.graalvm.compiler.truffle.compiler.TruffleCompilerImpl$GraphInfoImpl this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    9     0         this  Lorg/graalvm/compiler/truffle/compiler/TruffleCompilerImpl$GraphInfoImpl;
            0    9     1  simpleNames  Z
            1    9     2          res  [Ljava/lang/String;
            2    9     3            i  I
            4    7     4         node  Lorg/graalvm/compiler/graph/Node;
    MethodParameters:
             Name  Flags
      simpleNames  
}
SourceFile: "TruffleCompilerImpl.java"
NestHost: org.graalvm.compiler.truffle.compiler.TruffleCompilerImpl
InnerClasses:
  public abstract GraphInfo = org.graalvm.compiler.truffle.common.TruffleCompilerListener$GraphInfo of org.graalvm.compiler.truffle.common.TruffleCompilerListener
  GraphInfoImpl = org.graalvm.compiler.truffle.compiler.TruffleCompilerImpl$GraphInfoImpl of org.graalvm.compiler.truffle.compiler.TruffleCompilerImpl