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

  public static double test(double);
    descriptor: (D)D
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // double arg
         0: .line 37
            dload 0 /* arg */
            dconst_0
            dcmpl
            ifne 2
         1: .line 38
            dload 0 /* arg */
            ldc 10.0
            dadd
            invokestatic org.graalvm.compiler.jtt.optimize.VN_Double01.add:(D)D
            dreturn
         2: .line 40
      StackMap locals:
      StackMap stack:
            dload 0 /* arg */
            dconst_1
            dcmpl
            ifne 4
         3: .line 41
            dload 0 /* arg */
            ldc 10.0
            dadd
            invokestatic org.graalvm.compiler.jtt.optimize.VN_Double01.sub:(D)D
            dreturn
         4: .line 43
      StackMap locals:
      StackMap stack:
            dload 0 /* arg */
            ldc 2.0
            dcmpl
            ifne 6
         5: .line 44
            dload 0 /* arg */
            ldc 10.0
            dadd
            invokestatic org.graalvm.compiler.jtt.optimize.VN_Double01.mul:(D)D
            dreturn
         6: .line 46
      StackMap locals:
      StackMap stack:
            dload 0 /* arg */
            ldc 3.0
            dcmpl
            ifne 8
         7: .line 47
            dload 0 /* arg */
            ldc 10.0
            dadd
            invokestatic org.graalvm.compiler.jtt.optimize.VN_Double01.div:(D)D
            dreturn
         8: .line 49
      StackMap locals:
      StackMap stack:
            dconst_0
            dreturn
        end local 0 // double arg
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0   arg  D
    MethodParameters:
      Name  Flags
      arg   

  public static double add(double);
    descriptor: (D)D
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=8, args_size=1
        start local 0 // double x
         0: .line 53
            dconst_1
            dstore 2 /* c */
        start local 2 // double c
         1: .line 54
            dload 0 /* x */
            dload 2 /* c */
            dadd
            dstore 4 /* t */
        start local 4 // double t
         2: .line 55
            dload 0 /* x */
            dload 2 /* c */
            dadd
            dstore 6 /* u */
        start local 6 // double u
         3: .line 56
            dload 4 /* t */
            dload 6 /* u */
            dadd
            dreturn
        end local 6 // double u
        end local 4 // double t
        end local 2 // double c
        end local 0 // double x
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0     x  D
            1    4     2     c  D
            2    4     4     t  D
            3    4     6     u  D
    MethodParameters:
      Name  Flags
      x     

  public static double sub(double);
    descriptor: (D)D
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=8, args_size=1
        start local 0 // double x
         0: .line 60
            dconst_1
            dstore 2 /* c */
        start local 2 // double c
         1: .line 61
            dload 0 /* x */
            dload 2 /* c */
            dsub
            dstore 4 /* t */
        start local 4 // double t
         2: .line 62
            dload 0 /* x */
            dload 2 /* c */
            dsub
            dstore 6 /* u */
        start local 6 // double u
         3: .line 63
            dload 4 /* t */
            dload 6 /* u */
            dsub
            dreturn
        end local 6 // double u
        end local 4 // double t
        end local 2 // double c
        end local 0 // double x
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0     x  D
            1    4     2     c  D
            2    4     4     t  D
            3    4     6     u  D
    MethodParameters:
      Name  Flags
      x     

  public static double mul(double);
    descriptor: (D)D
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=8, args_size=1
        start local 0 // double x
         0: .line 67
            dconst_1
            dstore 2 /* c */
        start local 2 // double c
         1: .line 68
            dload 0 /* x */
            dload 2 /* c */
            dmul
            dstore 4 /* t */
        start local 4 // double t
         2: .line 69
            dload 0 /* x */
            dload 2 /* c */
            dmul
            dstore 6 /* u */
        start local 6 // double u
         3: .line 70
            dload 4 /* t */
            dload 6 /* u */
            dmul
            dreturn
        end local 6 // double u
        end local 4 // double t
        end local 2 // double c
        end local 0 // double x
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0     x  D
            1    4     2     c  D
            2    4     4     t  D
            3    4     6     u  D
    MethodParameters:
      Name  Flags
      x     

  public static double div(double);
    descriptor: (D)D
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=8, args_size=1
        start local 0 // double x
         0: .line 74
            dconst_1
            dstore 2 /* c */
        start local 2 // double c
         1: .line 75
            dload 0 /* x */
            dload 2 /* c */
            ddiv
            dstore 4 /* t */
        start local 4 // double t
         2: .line 76
            dload 0 /* x */
            dload 2 /* c */
            ddiv
            dstore 6 /* u */
        start local 6 // double u
         3: .line 77
            dload 4 /* t */
            dload 6 /* u */
            ddiv
            dreturn
        end local 6 // double u
        end local 4 // double t
        end local 2 // double c
        end local 0 // double x
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0     x  D
            1    4     2     c  D
            2    4     4     t  D
            3    4     6     u  D
    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_Double01 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_Double01 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/jtt/optimize/VN_Double01;
    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_Double01 this
         0: .line 85
            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_Double01 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/jtt/optimize/VN_Double01;
    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_Double01 this
         0: .line 90
            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_Double01 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/jtt/optimize/VN_Double01;
    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_Double01 this
         0: .line 95
            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_Double01 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/jtt/optimize/VN_Double01;
    Exceptions:
      throws java.lang.Throwable
    RuntimeInvisibleAnnotations: 
      Test()
}
SourceFile: "VN_Double01.java"