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

  public static long test(int);
    descriptor: (I)J
    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 */
            i2l
            invokestatic org.graalvm.compiler.jtt.optimize.VN_Long03.add:(J)J
            lreturn
         2: .line 42
      StackMap locals:
      StackMap stack:
            iload 0 /* arg */
            iconst_1
            if_icmpne 4
         3: .line 43
            iload 0 /* arg */
            i2l
            invokestatic org.graalvm.compiler.jtt.optimize.VN_Long03.sub:(J)J
            lreturn
         4: .line 45
      StackMap locals:
      StackMap stack:
            iload 0 /* arg */
            iconst_2
            if_icmpne 6
         5: .line 46
            iload 0 /* arg */
            i2l
            invokestatic org.graalvm.compiler.jtt.optimize.VN_Long03.mul:(J)J
            lreturn
         6: .line 48
      StackMap locals:
      StackMap stack:
            iload 0 /* arg */
            iconst_3
            if_icmpne 8
         7: .line 49
            iload 0 /* arg */
            i2l
            invokestatic org.graalvm.compiler.jtt.optimize.VN_Long03.div:(J)J
            lreturn
         8: .line 51
      StackMap locals:
      StackMap stack:
            iload 0 /* arg */
            iconst_4
            if_icmpne 10
         9: .line 52
            iload 0 /* arg */
            i2l
            invokestatic org.graalvm.compiler.jtt.optimize.VN_Long03.mod:(J)J
            lreturn
        10: .line 54
      StackMap locals:
      StackMap stack:
            iload 0 /* arg */
            iconst_5
            if_icmpne 12
        11: .line 55
            iload 0 /* arg */
            i2l
            invokestatic org.graalvm.compiler.jtt.optimize.VN_Long03.and:(J)J
            lreturn
        12: .line 57
      StackMap locals:
      StackMap stack:
            iload 0 /* arg */
            bipush 6
            if_icmpne 14
        13: .line 58
            iload 0 /* arg */
            i2l
            invokestatic org.graalvm.compiler.jtt.optimize.VN_Long03.or:(J)J
            lreturn
        14: .line 60
      StackMap locals:
      StackMap stack:
            iload 0 /* arg */
            bipush 7
            if_icmpne 16
        15: .line 61
            iload 0 /* arg */
            i2l
            invokestatic org.graalvm.compiler.jtt.optimize.VN_Long03.xor:(J)J
            lreturn
        16: .line 63
      StackMap locals:
      StackMap stack:
            lconst_0
            lreturn
        end local 0 // int arg
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   17     0   arg  I
    MethodParameters:
      Name  Flags
      arg   

  public static long add(long);
    descriptor: (J)J
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=6, args_size=1
        start local 0 // long x
         0: .line 67
            lload 0 /* x */
            ldc 3
            ladd
            lstore 2 /* t */
        start local 2 // long t
         1: .line 68
            getstatic org.graalvm.compiler.jtt.optimize.VN_Long03.cond:Z
            ifeq 4
         2: .line 69
            lload 0 /* x */
            ldc 3
            ladd
            lstore 4 /* u */
        start local 4 // long u
         3: .line 70
            lload 2 /* t */
            lload 4 /* u */
            ladd
            lreturn
        end local 4 // long u
         4: .line 72
      StackMap locals: long
      StackMap stack:
            ldc 3
            lreturn
        end local 2 // long t
        end local 0 // long x
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0     x  J
            1    5     2     t  J
            3    4     4     u  J
    MethodParameters:
      Name  Flags
      x     

  public static long sub(long);
    descriptor: (J)J
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=6, args_size=1
        start local 0 // long x
         0: .line 76
            lload 0 /* x */
            ldc 3
            lsub
            lstore 2 /* t */
        start local 2 // long t
         1: .line 77
            getstatic org.graalvm.compiler.jtt.optimize.VN_Long03.cond:Z
            ifeq 4
         2: .line 78
            lload 0 /* x */
            ldc 3
            lsub
            lstore 4 /* u */
        start local 4 // long u
         3: .line 79
            lload 2 /* t */
            lload 4 /* u */
            lsub
            lreturn
        end local 4 // long u
         4: .line 81
      StackMap locals: long
      StackMap stack:
            ldc 3
            lreturn
        end local 2 // long t
        end local 0 // long x
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0     x  J
            1    5     2     t  J
            3    4     4     u  J
    MethodParameters:
      Name  Flags
      x     

  public static long mul(long);
    descriptor: (J)J
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=6, args_size=1
        start local 0 // long x
         0: .line 85
            lload 0 /* x */
            ldc 3
            lmul
            lstore 2 /* t */
        start local 2 // long t
         1: .line 86
            getstatic org.graalvm.compiler.jtt.optimize.VN_Long03.cond:Z
            ifeq 4
         2: .line 87
            lload 0 /* x */
            ldc 3
            lmul
            lstore 4 /* u */
        start local 4 // long u
         3: .line 88
            lload 2 /* t */
            lload 4 /* u */
            lmul
            lreturn
        end local 4 // long u
         4: .line 90
      StackMap locals: long
      StackMap stack:
            ldc 3
            lreturn
        end local 2 // long t
        end local 0 // long x
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0     x  J
            1    5     2     t  J
            3    4     4     u  J
    MethodParameters:
      Name  Flags
      x     

  public static long div(long);
    descriptor: (J)J
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=6, args_size=1
        start local 0 // long x
         0: .line 94
            ldc 9
            lload 0 /* x */
            ldiv
            lstore 2 /* t */
        start local 2 // long t
         1: .line 95
            getstatic org.graalvm.compiler.jtt.optimize.VN_Long03.cond:Z
            ifeq 4
         2: .line 96
            ldc 9
            lload 0 /* x */
            ldiv
            lstore 4 /* u */
        start local 4 // long u
         3: .line 97
            lload 2 /* t */
            lload 4 /* u */
            ldiv
            lreturn
        end local 4 // long u
         4: .line 99
      StackMap locals: long
      StackMap stack:
            ldc 9
            lreturn
        end local 2 // long t
        end local 0 // long x
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0     x  J
            1    5     2     t  J
            3    4     4     u  J
    MethodParameters:
      Name  Flags
      x     

  public static long mod(long);
    descriptor: (J)J
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=6, args_size=1
        start local 0 // long x
         0: .line 103
            ldc 7
            lload 0 /* x */
            lrem
            lstore 2 /* t */
        start local 2 // long t
         1: .line 104
            getstatic org.graalvm.compiler.jtt.optimize.VN_Long03.cond:Z
            ifeq 4
         2: .line 105
            ldc 7
            lload 0 /* x */
            lrem
            lstore 4 /* u */
        start local 4 // long u
         3: .line 106
            lload 2 /* t */
            lload 4 /* u */
            lrem
            lreturn
        end local 4 // long u
         4: .line 108
      StackMap locals: long
      StackMap stack:
            ldc 7
            lreturn
        end local 2 // long t
        end local 0 // long x
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0     x  J
            1    5     2     t  J
            3    4     4     u  J
    MethodParameters:
      Name  Flags
      x     

  public static long and(long);
    descriptor: (J)J
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=6, args_size=1
        start local 0 // long x
         0: .line 112
            ldc 7
            lload 0 /* x */
            land
            lstore 2 /* t */
        start local 2 // long t
         1: .line 113
            getstatic org.graalvm.compiler.jtt.optimize.VN_Long03.cond:Z
            ifeq 4
         2: .line 114
            ldc 7
            lload 0 /* x */
            land
            lstore 4 /* u */
        start local 4 // long u
         3: .line 115
            lload 2 /* t */
            lload 4 /* u */
            land
            lreturn
        end local 4 // long u
         4: .line 117
      StackMap locals: long
      StackMap stack:
            ldc 7
            lreturn
        end local 2 // long t
        end local 0 // long x
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0     x  J
            1    5     2     t  J
            3    4     4     u  J
    MethodParameters:
      Name  Flags
      x     

  public static long or(long);
    descriptor: (J)J
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=6, args_size=1
        start local 0 // long x
         0: .line 121
            ldc 7
            lload 0 /* x */
            lor
            lstore 2 /* t */
        start local 2 // long t
         1: .line 122
            getstatic org.graalvm.compiler.jtt.optimize.VN_Long03.cond:Z
            ifeq 4
         2: .line 123
            ldc 7
            lload 0 /* x */
            lor
            lstore 4 /* u */
        start local 4 // long u
         3: .line 124
            lload 2 /* t */
            lload 4 /* u */
            lor
            lreturn
        end local 4 // long u
         4: .line 126
      StackMap locals: long
      StackMap stack:
            ldc 7
            lreturn
        end local 2 // long t
        end local 0 // long x
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0     x  J
            1    5     2     t  J
            3    4     4     u  J
    MethodParameters:
      Name  Flags
      x     

  public static long xor(long);
    descriptor: (J)J
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=6, args_size=1
        start local 0 // long x
         0: .line 130
            ldc 7
            lload 0 /* x */
            lxor
            lstore 2 /* t */
        start local 2 // long t
         1: .line 131
            getstatic org.graalvm.compiler.jtt.optimize.VN_Long03.cond:Z
            ifeq 4
         2: .line 132
            ldc 7
            lload 0 /* x */
            lxor
            lstore 4 /* u */
        start local 4 // long u
         3: .line 133
            lload 2 /* t */
            lload 4 /* u */
            lxor
            lreturn
        end local 4 // long u
         4: .line 135
      StackMap locals: long
      StackMap stack:
            ldc 7
            lreturn
        end local 2 // long t
        end local 0 // long x
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0     x  J
            1    5     2     t  J
            3    4     4     u  J
    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_Long03 this
         0: .line 138
            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_Long03 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/jtt/optimize/VN_Long03;
    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_Long03 this
         0: .line 143
            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_Long03 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/jtt/optimize/VN_Long03;
    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_Long03 this
         0: .line 148
            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_Long03 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/jtt/optimize/VN_Long03;
    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_Long03 this
         0: .line 153
            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_Long03 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/jtt/optimize/VN_Long03;
    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_Long03 this
         0: .line 158
            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_Long03 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/jtt/optimize/VN_Long03;
    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_Long03 this
         0: .line 163
            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_Long03 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/jtt/optimize/VN_Long03;
    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_Long03 this
         0: .line 168
            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_Long03 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/jtt/optimize/VN_Long03;
    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_Long03 this
         0: .line 173
            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_Long03 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/jtt/optimize/VN_Long03;
    Exceptions:
      throws java.lang.Throwable
    RuntimeInvisibleAnnotations: 
      Test()
}
SourceFile: "VN_Long03.java"