public class org.graalvm.compiler.jtt.optimize.VN_Int02 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_Int02
  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.VN_Int02 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_Int02 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/jtt/optimize/VN_Int02;

  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 37
            iload 0 /* arg */
            ifne 2
         1: .line 38
            iload 0 /* arg */
            bipush 10
            iadd
            invokestatic org.graalvm.compiler.jtt.optimize.VN_Int02.shift0:(I)I
            ireturn
         2: .line 40
      StackMap locals:
      StackMap stack:
            iload 0 /* arg */
            iconst_1
            if_icmpne 4
         3: .line 41
            iload 0 /* arg */
            bipush 10
            iadd
            invokestatic org.graalvm.compiler.jtt.optimize.VN_Int02.shift1:(I)I
            ireturn
         4: .line 43
      StackMap locals:
      StackMap stack:
            iload 0 /* arg */
            iconst_2
            if_icmpne 6
         5: .line 44
            iload 0 /* arg */
            bipush 10
            iadd
            invokestatic org.graalvm.compiler.jtt.optimize.VN_Int02.shift2:(I)I
            ireturn
         6: .line 46
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 0 // int arg
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0   arg  I
    MethodParameters:
      Name  Flags
      arg   

  public static int shift0(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 50
            iconst_1
            istore 1 /* c */
        start local 1 // int c
         1: .line 51
            iload 0 /* x */
            iload 1 /* c */
            ishr
            istore 2 /* t */
        start local 2 // int t
         2: .line 52
            iload 0 /* x */
            iload 1 /* c */
            ishr
            istore 3 /* u */
        start local 3 // int u
         3: .line 53
            iload 2 /* t */
            iload 3 /* u */
            iadd
            ireturn
        end local 3 // int u
        end local 2 // int t
        end local 1 // int c
        end local 0 // int x
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0     x  I
            1    4     1     c  I
            2    4     2     t  I
            3    4     3     u  I
    MethodParameters:
      Name  Flags
      x     

  public static int shift1(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 57
            iconst_1
            istore 1 /* c */
        start local 1 // int c
         1: .line 58
            iload 0 /* x */
            iload 1 /* c */
            iushr
            istore 2 /* t */
        start local 2 // int t
         2: .line 59
            iload 0 /* x */
            iload 1 /* c */
            iushr
            istore 3 /* u */
        start local 3 // int u
         3: .line 60
            iload 2 /* t */
            iload 3 /* u */
            iadd
            ireturn
        end local 3 // int u
        end local 2 // int t
        end local 1 // int c
        end local 0 // int x
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0     x  I
            1    4     1     c  I
            2    4     2     t  I
            3    4     3     u  I
    MethodParameters:
      Name  Flags
      x     

  public static int shift2(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 64
            iconst_1
            istore 1 /* c */
        start local 1 // int c
         1: .line 65
            iload 0 /* x */
            iload 1 /* c */
            ishl
            istore 2 /* t */
        start local 2 // int t
         2: .line 66
            iload 0 /* x */
            iload 1 /* c */
            ishl
            istore 3 /* u */
        start local 3 // int u
         3: .line 67
            iload 2 /* t */
            iload 3 /* u */
            iadd
            ireturn
        end local 3 // int u
        end local 2 // int t
        end local 1 // int c
        end local 0 // int x
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0     x  I
            1    4     1     c  I
            2    4     2     t  I
            3    4     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_Int02 this
         0: .line 70
            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_Int02 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/jtt/optimize/VN_Int02;
    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_Int02 this
         0: .line 75
            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_Int02 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/jtt/optimize/VN_Int02;
    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_Int02 this
         0: .line 80
            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_Int02 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/jtt/optimize/VN_Int02;
    Exceptions:
      throws java.lang.Throwable
    RuntimeInvisibleAnnotations: 
      Test()
}
SourceFile: "VN_Int02.java"