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

  public static long test(long);
    descriptor: (J)J
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // long arg
         0: .line 37
            lload 0 /* arg */
            lconst_0
            lcmp
            ifne 2
         1: .line 38
            invokestatic org.graalvm.compiler.jtt.optimize.Fold_Long01.add:()J
            lreturn
         2: .line 40
      StackMap locals:
      StackMap stack:
            lload 0 /* arg */
            lconst_1
            lcmp
            ifne 4
         3: .line 41
            invokestatic org.graalvm.compiler.jtt.optimize.Fold_Long01.sub:()J
            lreturn
         4: .line 43
      StackMap locals:
      StackMap stack:
            lload 0 /* arg */
            ldc 2
            lcmp
            ifne 6
         5: .line 44
            invokestatic org.graalvm.compiler.jtt.optimize.Fold_Long01.mul:()J
            lreturn
         6: .line 46
      StackMap locals:
      StackMap stack:
            lload 0 /* arg */
            ldc 3
            lcmp
            ifne 8
         7: .line 47
            invokestatic org.graalvm.compiler.jtt.optimize.Fold_Long01.div:()J
            lreturn
         8: .line 49
      StackMap locals:
      StackMap stack:
            lload 0 /* arg */
            ldc 4
            lcmp
            ifne 10
         9: .line 50
            invokestatic org.graalvm.compiler.jtt.optimize.Fold_Long01.mod:()J
            lreturn
        10: .line 52
      StackMap locals:
      StackMap stack:
            lload 0 /* arg */
            ldc 5
            lcmp
            ifne 12
        11: .line 53
            invokestatic org.graalvm.compiler.jtt.optimize.Fold_Long01.and:()J
            lreturn
        12: .line 55
      StackMap locals:
      StackMap stack:
            lload 0 /* arg */
            ldc 6
            lcmp
            ifne 14
        13: .line 56
            invokestatic org.graalvm.compiler.jtt.optimize.Fold_Long01.or:()J
            lreturn
        14: .line 58
      StackMap locals:
      StackMap stack:
            lload 0 /* arg */
            ldc 7
            lcmp
            ifne 16
        15: .line 59
            invokestatic org.graalvm.compiler.jtt.optimize.Fold_Long01.xor:()J
            lreturn
        16: .line 61
      StackMap locals:
      StackMap stack:
            lconst_0
            lreturn
        end local 0 // long arg
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   17     0   arg  J
    MethodParameters:
      Name  Flags
      arg   

  public static long add();
    descriptor: ()J
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=0
         0: .line 65
            ldc 3
            lstore 0 /* x */
        start local 0 // long x
         1: .line 66
            lload 0 /* x */
            ldc 7
            ladd
            lreturn
        end local 0 // long x
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            1    2     0     x  J

  public static long sub();
    descriptor: ()J
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=0
         0: .line 70
            ldc 15
            lstore 0 /* x */
        start local 0 // long x
         1: .line 71
            lload 0 /* x */
            ldc 4
            lsub
            lreturn
        end local 0 // long x
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            1    2     0     x  J

  public static long mul();
    descriptor: ()J
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=0
         0: .line 75
            ldc 6
            lstore 0 /* x */
        start local 0 // long x
         1: .line 76
            lload 0 /* x */
            ldc 2
            lmul
            lreturn
        end local 0 // long x
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            1    2     0     x  J

  public static long div();
    descriptor: ()J
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=0
         0: .line 80
            ldc 26
            lstore 0 /* x */
        start local 0 // long x
         1: .line 81
            lload 0 /* x */
            ldc 2
            ldiv
            lreturn
        end local 0 // long x
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            1    2     0     x  J

  public static long mod();
    descriptor: ()J
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=0
         0: .line 85
            ldc 29
            lstore 0 /* x */
        start local 0 // long x
         1: .line 86
            lload 0 /* x */
            ldc 15
            lrem
            lreturn
        end local 0 // long x
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            1    2     0     x  J

  public static long and();
    descriptor: ()J
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=0
         0: .line 90
            ldc 31
            lstore 0 /* x */
        start local 0 // long x
         1: .line 91
            lload 0 /* x */
            ldc 15
            land
            lreturn
        end local 0 // long x
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            1    2     0     x  J

  public static long or();
    descriptor: ()J
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=0
         0: .line 95
            ldc 16
            lstore 0 /* x */
        start local 0 // long x
         1: .line 96
            lload 0 /* x */
            ldc 16
            lor
            lreturn
        end local 0 // long x
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            1    2     0     x  J

  public static long xor();
    descriptor: ()J
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=0
         0: .line 100
            lconst_0
            lstore 0 /* x */
        start local 0 // long x
         1: .line 101
            lload 0 /* x */
            ldc 17
            lxor
            lreturn
        end local 0 // long x
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            1    2     0     x  J

  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.Fold_Long01 this
         0: .line 104
            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.Fold_Long01 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/jtt/optimize/Fold_Long01;
    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.Fold_Long01 this
         0: .line 109
            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.Fold_Long01 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/jtt/optimize/Fold_Long01;
    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.Fold_Long01 this
         0: .line 114
            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.Fold_Long01 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/jtt/optimize/Fold_Long01;
    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.Fold_Long01 this
         0: .line 119
            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.Fold_Long01 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/jtt/optimize/Fold_Long01;
    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.Fold_Long01 this
         0: .line 124
            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.Fold_Long01 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/jtt/optimize/Fold_Long01;
    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.Fold_Long01 this
         0: .line 129
            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.Fold_Long01 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/jtt/optimize/Fold_Long01;
    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.Fold_Long01 this
         0: .line 134
            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.Fold_Long01 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/jtt/optimize/Fold_Long01;
    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.Fold_Long01 this
         0: .line 139
            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.Fold_Long01 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/jtt/optimize/Fold_Long01;
    Exceptions:
      throws java.lang.Throwable
    RuntimeInvisibleAnnotations: 
      Test()
}
SourceFile: "Fold_Long01.java"