public class org.graalvm.compiler.jtt.optimize.VN_Int03 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.VN_Int03
  super_class: org.graalvm.compiler.jtt.JTTTest
{
  private static boolean cond;
    descriptor: Z
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 36
            iconst_1
            putstatic org.graalvm.compiler.jtt.optimize.VN_Int03.cond:Z
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  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.VN_Int03 this
         0: .line 34
            aload 0 /* this */
            invokespecial org.graalvm.compiler.jtt.JTTTest.<init>:()V
            return
        end local 0 // org.graalvm.compiler.jtt.optimize.VN_Int03 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/jtt/optimize/VN_Int03;

  public static int test(int);
    descriptor: (I)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // int arg
         0: .line 39
            iload 0 /* arg */
            ifne 2
         1: .line 40
            iload 0 /* arg */
            invokestatic org.graalvm.compiler.jtt.optimize.VN_Int03.add:(I)I
            ireturn
         2: .line 42
      StackMap locals:
      StackMap stack:
            iload 0 /* arg */
            iconst_1
            if_icmpne 4
         3: .line 43
            iload 0 /* arg */
            invokestatic org.graalvm.compiler.jtt.optimize.VN_Int03.sub:(I)I
            ireturn
         4: .line 45
      StackMap locals:
      StackMap stack:
            iload 0 /* arg */
            iconst_2
            if_icmpne 6
         5: .line 46
            iload 0 /* arg */
            invokestatic org.graalvm.compiler.jtt.optimize.VN_Int03.mul:(I)I
            ireturn
         6: .line 48
      StackMap locals:
      StackMap stack:
            iload 0 /* arg */
            iconst_3
            if_icmpne 8
         7: .line 49
            iload 0 /* arg */
            invokestatic org.graalvm.compiler.jtt.optimize.VN_Int03.div:(I)I
            ireturn
         8: .line 51
      StackMap locals:
      StackMap stack:
            iload 0 /* arg */
            iconst_4
            if_icmpne 10
         9: .line 52
            iload 0 /* arg */
            invokestatic org.graalvm.compiler.jtt.optimize.VN_Int03.mod:(I)I
            ireturn
        10: .line 54
      StackMap locals:
      StackMap stack:
            iload 0 /* arg */
            iconst_5
            if_icmpne 12
        11: .line 55
            iload 0 /* arg */
            invokestatic org.graalvm.compiler.jtt.optimize.VN_Int03.and:(I)I
            ireturn
        12: .line 57
      StackMap locals:
      StackMap stack:
            iload 0 /* arg */
            bipush 6
            if_icmpne 14
        13: .line 58
            iload 0 /* arg */
            invokestatic org.graalvm.compiler.jtt.optimize.VN_Int03.or:(I)I
            ireturn
        14: .line 60
      StackMap locals:
      StackMap stack:
            iload 0 /* arg */
            bipush 7
            if_icmpne 16
        15: .line 61
            iload 0 /* arg */
            invokestatic org.graalvm.compiler.jtt.optimize.VN_Int03.xor:(I)I
            ireturn
        16: .line 63
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 0 // int arg
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   17     0   arg  I
    MethodParameters:
      Name  Flags
      arg   

  public static int add(int);
    descriptor: (I)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // int x
         0: .line 67
            iconst_3
            istore 1 /* c */
        start local 1 // int c
         1: .line 68
            iload 0 /* x */
            iload 1 /* c */
            iadd
            istore 2 /* t */
        start local 2 // int t
         2: .line 69
            getstatic org.graalvm.compiler.jtt.optimize.VN_Int03.cond:Z
            ifeq 5
         3: .line 70
            iload 0 /* x */
            iload 1 /* c */
            iadd
            istore 3 /* u */
        start local 3 // int u
         4: .line 71
            iload 2 /* t */
            iload 3 /* u */
            iadd
            ireturn
        end local 3 // int u
         5: .line 73
      StackMap locals: int int
      StackMap stack:
            iconst_0
            ireturn
        end local 2 // int t
        end local 1 // int c
        end local 0 // int x
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0     x  I
            1    6     1     c  I
            2    6     2     t  I
            4    5     3     u  I
    MethodParameters:
      Name  Flags
      x     

  public static int sub(int);
    descriptor: (I)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // int x
         0: .line 77
            iconst_3
            istore 1 /* c */
        start local 1 // int c
         1: .line 78
            iload 0 /* x */
            iload 1 /* c */
            isub
            istore 2 /* t */
        start local 2 // int t
         2: .line 79
            getstatic org.graalvm.compiler.jtt.optimize.VN_Int03.cond:Z
            ifeq 5
         3: .line 80
            iload 0 /* x */
            iload 1 /* c */
            isub
            istore 3 /* u */
        start local 3 // int u
         4: .line 81
            iload 2 /* t */
            iload 3 /* u */
            isub
            ireturn
        end local 3 // int u
         5: .line 83
      StackMap locals: int int
      StackMap stack:
            iconst_3
            ireturn
        end local 2 // int t
        end local 1 // int c
        end local 0 // int x
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0     x  I
            1    6     1     c  I
            2    6     2     t  I
            4    5     3     u  I
    MethodParameters:
      Name  Flags
      x     

  public static int mul(int);
    descriptor: (I)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // int x
         0: .line 87
            iconst_3
            istore 1 /* i */
        start local 1 // int i
         1: .line 88
            iload 0 /* x */
            iload 1 /* i */
            imul
            istore 2 /* t */
        start local 2 // int t
         2: .line 89
            getstatic org.graalvm.compiler.jtt.optimize.VN_Int03.cond:Z
            ifeq 5
         3: .line 90
            iload 0 /* x */
            iload 1 /* i */
            imul
            istore 3 /* u */
        start local 3 // int u
         4: .line 91
            iload 2 /* t */
            iload 3 /* u */
            imul
            ireturn
        end local 3 // int u
         5: .line 93
      StackMap locals: int int
      StackMap stack:
            iconst_3
            ireturn
        end local 2 // int t
        end local 1 // int i
        end local 0 // int x
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0     x  I
            1    6     1     i  I
            2    6     2     t  I
            4    5     3     u  I
    MethodParameters:
      Name  Flags
      x     

  public static int div(int);
    descriptor: (I)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // int x
         0: .line 97
            bipush 9
            istore 1 /* i */
        start local 1 // int i
         1: .line 98
            iload 1 /* i */
            iload 0 /* x */
            idiv
            istore 2 /* t */
        start local 2 // int t
         2: .line 99
            getstatic org.graalvm.compiler.jtt.optimize.VN_Int03.cond:Z
            ifeq 5
         3: .line 100
            iload 1 /* i */
            iload 0 /* x */
            idiv
            istore 3 /* u */
        start local 3 // int u
         4: .line 101
            iload 2 /* t */
            iload 3 /* u */
            idiv
            ireturn
        end local 3 // int u
         5: .line 103
      StackMap locals: int int
      StackMap stack:
            bipush 9
            ireturn
        end local 2 // int t
        end local 1 // int i
        end local 0 // int x
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0     x  I
            1    6     1     i  I
            2    6     2     t  I
            4    5     3     u  I
    MethodParameters:
      Name  Flags
      x     

  public static int mod(int);
    descriptor: (I)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // int x
         0: .line 107
            bipush 7
            istore 1 /* i */
        start local 1 // int i
         1: .line 108
            iload 1 /* i */
            iload 0 /* x */
            irem
            istore 2 /* t */
        start local 2 // int t
         2: .line 109
            getstatic org.graalvm.compiler.jtt.optimize.VN_Int03.cond:Z
            ifeq 5
         3: .line 110
            iload 1 /* i */
            iload 0 /* x */
            irem
            istore 3 /* u */
        start local 3 // int u
         4: .line 111
            iload 2 /* t */
            iload 3 /* u */
            irem
            ireturn
        end local 3 // int u
         5: .line 113
      StackMap locals: int int
      StackMap stack:
            bipush 7
            ireturn
        end local 2 // int t
        end local 1 // int i
        end local 0 // int x
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0     x  I
            1    6     1     i  I
            2    6     2     t  I
            4    5     3     u  I
    MethodParameters:
      Name  Flags
      x     

  public static int and(int);
    descriptor: (I)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // int x
         0: .line 117
            bipush 7
            istore 1 /* i */
        start local 1 // int i
         1: .line 118
            iload 1 /* i */
            iload 0 /* x */
            iand
            istore 2 /* t */
        start local 2 // int t
         2: .line 119
            getstatic org.graalvm.compiler.jtt.optimize.VN_Int03.cond:Z
            ifeq 5
         3: .line 120
            iload 1 /* i */
            iload 0 /* x */
            iand
            istore 3 /* u */
        start local 3 // int u
         4: .line 121
            iload 2 /* t */
            iload 3 /* u */
            iand
            ireturn
        end local 3 // int u
         5: .line 123
      StackMap locals: int int
      StackMap stack:
            bipush 7
            ireturn
        end local 2 // int t
        end local 1 // int i
        end local 0 // int x
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0     x  I
            1    6     1     i  I
            2    6     2     t  I
            4    5     3     u  I
    MethodParameters:
      Name  Flags
      x     

  public static int or(int);
    descriptor: (I)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // int x
         0: .line 127
            bipush 7
            istore 1 /* i */
        start local 1 // int i
         1: .line 128
            iload 1 /* i */
            iload 0 /* x */
            ior
            istore 2 /* t */
        start local 2 // int t
         2: .line 129
            getstatic org.graalvm.compiler.jtt.optimize.VN_Int03.cond:Z
            ifeq 5
         3: .line 130
            iload 1 /* i */
            iload 0 /* x */
            ior
            istore 3 /* u */
        start local 3 // int u
         4: .line 131
            iload 2 /* t */
            iload 3 /* u */
            ior
            ireturn
        end local 3 // int u
         5: .line 133
      StackMap locals: int int
      StackMap stack:
            bipush 7
            ireturn
        end local 2 // int t
        end local 1 // int i
        end local 0 // int x
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0     x  I
            1    6     1     i  I
            2    6     2     t  I
            4    5     3     u  I
    MethodParameters:
      Name  Flags
      x     

  public static int xor(int);
    descriptor: (I)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // int x
         0: .line 137
            bipush 7
            istore 1 /* i */
        start local 1 // int i
         1: .line 138
            iload 1 /* i */
            iload 0 /* x */
            ixor
            istore 2 /* t */
        start local 2 // int t
         2: .line 139
            getstatic org.graalvm.compiler.jtt.optimize.VN_Int03.cond:Z
            ifeq 5
         3: .line 140
            iload 1 /* i */
            iload 0 /* x */
            ixor
            istore 3 /* u */
        start local 3 // int u
         4: .line 141
            iload 2 /* t */
            iload 3 /* u */
            ixor
            ireturn
        end local 3 // int u
         5: .line 143
      StackMap locals: int int
      StackMap stack:
            bipush 7
            ireturn
        end local 2 // int t
        end local 1 // int i
        end local 0 // int x
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0     x  I
            1    6     1     i  I
            2    6     2     t  I
            4    5     3     u  I
    MethodParameters:
      Name  Flags
      x     

  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.VN_Int03 this
         0: .line 146
            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.VN_Int03 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/jtt/optimize/VN_Int03;
    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.VN_Int03 this
         0: .line 151
            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.VN_Int03 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/jtt/optimize/VN_Int03;
    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.VN_Int03 this
         0: .line 156
            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.VN_Int03 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/jtt/optimize/VN_Int03;
    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.VN_Int03 this
         0: .line 161
            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.VN_Int03 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/jtt/optimize/VN_Int03;
    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.VN_Int03 this
         0: .line 166
            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.VN_Int03 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/jtt/optimize/VN_Int03;
    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.VN_Int03 this
         0: .line 171
            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.VN_Int03 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/jtt/optimize/VN_Int03;
    Exceptions:
      throws java.lang.Throwable
    RuntimeInvisibleAnnotations: 
      Test()

  public void run6();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.jtt.optimize.VN_Int03 this
         0: .line 176
            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.VN_Int03 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/jtt/optimize/VN_Int03;
    Exceptions:
      throws java.lang.Throwable
    RuntimeInvisibleAnnotations: 
      Test()

  public void run7();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.jtt.optimize.VN_Int03 this
         0: .line 181
            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.VN_Int03 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/jtt/optimize/VN_Int03;
    Exceptions:
      throws java.lang.Throwable
    RuntimeInvisibleAnnotations: 
      Test()
}
SourceFile: "VN_Int03.java"