public class org.graalvm.compiler.jtt.optimize.Phi02 extends org.graalvm.compiler.jtt.JTTTest
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.graalvm.compiler.jtt.optimize.Phi02
  super_class: org.graalvm.compiler.jtt.JTTTest
{
  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.jtt.optimize.Phi02 this
         0: .line 31
            aload 0 /* this */
            invokespecial org.graalvm.compiler.jtt.JTTTest.<init>:()V
            return
        end local 0 // org.graalvm.compiler.jtt.optimize.Phi02 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/jtt/optimize/Phi02;

  public static int test(int);
    descriptor: (I)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // int arg
         0: .line 43
            new org.graalvm.compiler.jtt.optimize.Phi02$Phi
            dup
            iload 0 /* arg */
            invokespecial org.graalvm.compiler.jtt.optimize.Phi02$Phi.<init>:(I)V
            iload 0 /* arg */
            invokestatic org.graalvm.compiler.jtt.optimize.Phi02.test2:(Lorg/graalvm/compiler/jtt/optimize/Phi02$Phi;I)I
            ireturn
        end local 0 // int arg
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0   arg  I
    MethodParameters:
      Name  Flags
      arg   

  private static int test2(org.graalvm.compiler.jtt.optimize.Phi02$Phi, int);
    descriptor: (Lorg/graalvm/compiler/jtt/optimize/Phi02$Phi;I)I
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.graalvm.compiler.jtt.optimize.Phi02$Phi p
        start local 1 // int a
         0: .line 47
            iload 1 /* a */
            istore 2 /* arg */
        start local 2 // int arg
         1: .line 48
            iload 2 /* arg */
            iconst_2
            if_icmple 5
         2: .line 49
            aload 0 /* p */
            iconst_1
            invokestatic org.graalvm.compiler.jtt.optimize.Phi02.inc:(Lorg/graalvm/compiler/jtt/optimize/Phi02$Phi;I)V
         3: .line 50
            iinc 2 /* arg */ 1
         4: .line 51
            goto 19
         5: .line 52
      StackMap locals: int
      StackMap stack:
            aload 0 /* p */
            iconst_2
            invokestatic org.graalvm.compiler.jtt.optimize.Phi02.inc:(Lorg/graalvm/compiler/jtt/optimize/Phi02$Phi;I)V
         6: .line 53
            iinc 2 /* arg */ 2
         7: .line 54
            iload 2 /* arg */
            iconst_3
            if_icmple 17
         8: .line 55
            aload 0 /* p */
            iconst_1
            invokestatic org.graalvm.compiler.jtt.optimize.Phi02.inc:(Lorg/graalvm/compiler/jtt/optimize/Phi02$Phi;I)V
         9: .line 56
            iinc 2 /* arg */ 1
        10: .line 57
            iload 2 /* arg */
            iconst_4
            if_icmple 14
        11: .line 58
            aload 0 /* p */
            iconst_1
            invokestatic org.graalvm.compiler.jtt.optimize.Phi02.inc:(Lorg/graalvm/compiler/jtt/optimize/Phi02$Phi;I)V
        12: .line 59
            iinc 2 /* arg */ 1
        13: .line 60
            goto 19
        14: .line 61
      StackMap locals:
      StackMap stack:
            aload 0 /* p */
            iconst_2
            invokestatic org.graalvm.compiler.jtt.optimize.Phi02.inc:(Lorg/graalvm/compiler/jtt/optimize/Phi02$Phi;I)V
        15: .line 62
            iinc 2 /* arg */ 2
        16: .line 64
            goto 19
        17: .line 65
      StackMap locals:
      StackMap stack:
            aload 0 /* p */
            iconst_2
            invokestatic org.graalvm.compiler.jtt.optimize.Phi02.inc:(Lorg/graalvm/compiler/jtt/optimize/Phi02$Phi;I)V
        18: .line 66
            iinc 2 /* arg */ 2
        19: .line 69
      StackMap locals:
      StackMap stack:
            iload 2 /* arg */
            aload 0 /* p */
            getfield org.graalvm.compiler.jtt.optimize.Phi02$Phi.f:I
            iadd
            ireturn
        end local 2 // int arg
        end local 1 // int a
        end local 0 // org.graalvm.compiler.jtt.optimize.Phi02$Phi p
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   20     0     p  Lorg/graalvm/compiler/jtt/optimize/Phi02$Phi;
            0   20     1     a  I
            1   20     2   arg  I
    MethodParameters:
      Name  Flags
      p     
      a     

  private static void inc(org.graalvm.compiler.jtt.optimize.Phi02$Phi, int);
    descriptor: (Lorg/graalvm/compiler/jtt/optimize/Phi02$Phi;I)V
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.graalvm.compiler.jtt.optimize.Phi02$Phi p
        start local 1 // int inc
         0: .line 73
            aload 0 /* p */
            dup
            getfield org.graalvm.compiler.jtt.optimize.Phi02$Phi.f:I
            iload 1 /* inc */
            iadd
            putfield org.graalvm.compiler.jtt.optimize.Phi02$Phi.f:I
         1: .line 74
            return
        end local 1 // int inc
        end local 0 // org.graalvm.compiler.jtt.optimize.Phi02$Phi p
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0     p  Lorg/graalvm/compiler/jtt/optimize/Phi02$Phi;
            0    2     1   inc  I
    MethodParameters:
      Name  Flags
      p     
      inc   

  public void run0();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.jtt.optimize.Phi02 this
         0: .line 76
            new java.lang.Error
            dup
            ldc "Unresolved compilation problem: \n\tTest cannot be resolved to a type\n"
            invokespecial java.lang.Error.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // org.graalvm.compiler.jtt.optimize.Phi02 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/jtt/optimize/Phi02;
    Exceptions:
      throws java.lang.Throwable
    RuntimeInvisibleAnnotations: 
      Test()

  public void run1();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.jtt.optimize.Phi02 this
         0: .line 81
            new java.lang.Error
            dup
            ldc "Unresolved compilation problem: \n\tTest cannot be resolved to a type\n"
            invokespecial java.lang.Error.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // org.graalvm.compiler.jtt.optimize.Phi02 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/jtt/optimize/Phi02;
    Exceptions:
      throws java.lang.Throwable
    RuntimeInvisibleAnnotations: 
      Test()

  public void run2();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.jtt.optimize.Phi02 this
         0: .line 86
            new java.lang.Error
            dup
            ldc "Unresolved compilation problem: \n\tTest cannot be resolved to a type\n"
            invokespecial java.lang.Error.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // org.graalvm.compiler.jtt.optimize.Phi02 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/jtt/optimize/Phi02;
    Exceptions:
      throws java.lang.Throwable
    RuntimeInvisibleAnnotations: 
      Test()

  public void run3();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.jtt.optimize.Phi02 this
         0: .line 91
            new java.lang.Error
            dup
            ldc "Unresolved compilation problem: \n\tTest cannot be resolved to a type\n"
            invokespecial java.lang.Error.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // org.graalvm.compiler.jtt.optimize.Phi02 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/jtt/optimize/Phi02;
    Exceptions:
      throws java.lang.Throwable
    RuntimeInvisibleAnnotations: 
      Test()

  public void run4();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.jtt.optimize.Phi02 this
         0: .line 96
            new java.lang.Error
            dup
            ldc "Unresolved compilation problem: \n\tTest cannot be resolved to a type\n"
            invokespecial java.lang.Error.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // org.graalvm.compiler.jtt.optimize.Phi02 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/jtt/optimize/Phi02;
    Exceptions:
      throws java.lang.Throwable
    RuntimeInvisibleAnnotations: 
      Test()

  public void run5();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.jtt.optimize.Phi02 this
         0: .line 101
            new java.lang.Error
            dup
            ldc "Unresolved compilation problem: \n\tTest cannot be resolved to a type\n"
            invokespecial java.lang.Error.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // org.graalvm.compiler.jtt.optimize.Phi02 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/jtt/optimize/Phi02;
    Exceptions:
      throws java.lang.Throwable
    RuntimeInvisibleAnnotations: 
      Test()
}
SourceFile: "Phi02.java"
NestMembers:
  org.graalvm.compiler.jtt.optimize.Phi02$Phi
InnerClasses:
  public Phi = org.graalvm.compiler.jtt.optimize.Phi02$Phi of org.graalvm.compiler.jtt.optimize.Phi02