public class org.graalvm.compiler.replacements.test.IntegerExactExceptionTest extends org.graalvm.compiler.core.test.GraalCompilerTest
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.graalvm.compiler.replacements.test.IntegerExactExceptionTest
  super_class: org.graalvm.compiler.core.test.GraalCompilerTest
{
  static int intCounter;
    descriptor: I
    flags: (0x0008) ACC_STATIC

  static long longCounter;
    descriptor: J
    flags: (0x0008) ACC_STATIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 36
            bipush 32
            putstatic org.graalvm.compiler.replacements.test.IntegerExactExceptionTest.intCounter:I
         1: .line 147
            ldc 10
            putstatic org.graalvm.compiler.replacements.test.IntegerExactExceptionTest.longCounter:J
            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.replacements.test.IntegerExactExceptionTest this
         0: .line 34
            aload 0 /* this */
            invokespecial org.graalvm.compiler.core.test.GraalCompilerTest.<init>:()V
            return
        end local 0 // org.graalvm.compiler.replacements.test.IntegerExactExceptionTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/replacements/test/IntegerExactExceptionTest;

  public void testIntegerExactOverflowSnippet(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.graalvm.compiler.replacements.test.IntegerExactExceptionTest this
        start local 1 // int input
         0: .line 40
            getstatic org.graalvm.compiler.replacements.test.IntegerExactExceptionTest.intCounter:I
            iload 1 /* input */
            invokestatic java.lang.Math.addExact:(II)I
            putstatic org.graalvm.compiler.replacements.test.IntegerExactExceptionTest.intCounter:I
         1: .line 41
            goto 4
      StackMap locals:
      StackMap stack: java.lang.ArithmeticException
         2: pop
         3: .line 42
            getstatic org.graalvm.compiler.replacements.test.IntegerExactExceptionTest.intCounter:I
            iconst_2
            idiv
            putstatic org.graalvm.compiler.replacements.test.IntegerExactExceptionTest.intCounter:I
         4: .line 44
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int input
        end local 0 // org.graalvm.compiler.replacements.test.IntegerExactExceptionTest this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lorg/graalvm/compiler/replacements/test/IntegerExactExceptionTest;
            0    5     1  input  I
      Exception table:
        from    to  target  type
           0     1       2  Class java.lang.ArithmeticException
    MethodParameters:
       Name  Flags
      input  

  public void testIntegerExact();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.replacements.test.IntegerExactExceptionTest this
         0: .line 46
            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.replacements.test.IntegerExactExceptionTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/replacements/test/IntegerExactExceptionTest;
    Exceptions:
      throws jdk.vm.ci.code.InvalidInstalledCodeException
    RuntimeInvisibleAnnotations: 
      Test()

  public void testIntegerExactOverflowWithoutHandlerSnippetW(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.graalvm.compiler.replacements.test.IntegerExactExceptionTest this
        start local 1 // int input
         0: .line 61
            getstatic org.graalvm.compiler.replacements.test.IntegerExactExceptionTest.intCounter:I
            iload 1 /* input */
            invokestatic java.lang.Math.addExact:(II)I
            putstatic org.graalvm.compiler.replacements.test.IntegerExactExceptionTest.intCounter:I
         1: .line 62
            goto 5
      StackMap locals:
      StackMap stack: java.lang.Throwable
         2: astore 2
         3: .line 63
            getstatic org.graalvm.compiler.replacements.test.IntegerExactExceptionTest.intCounter:I
            iconst_2
            idiv
            putstatic org.graalvm.compiler.replacements.test.IntegerExactExceptionTest.intCounter:I
         4: .line 64
            aload 2
            athrow
         5: .line 63
      StackMap locals:
      StackMap stack:
            getstatic org.graalvm.compiler.replacements.test.IntegerExactExceptionTest.intCounter:I
            iconst_2
            idiv
            putstatic org.graalvm.compiler.replacements.test.IntegerExactExceptionTest.intCounter:I
         6: .line 65
            return
        end local 1 // int input
        end local 0 // org.graalvm.compiler.replacements.test.IntegerExactExceptionTest this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lorg/graalvm/compiler/replacements/test/IntegerExactExceptionTest;
            0    7     1  input  I
      Exception table:
        from    to  target  type
           0     2       2  any
    MethodParameters:
       Name  Flags
      input  

  public void testIntegerExactWithoutHandler();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.replacements.test.IntegerExactExceptionTest this
         0: .line 67
            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.replacements.test.IntegerExactExceptionTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/replacements/test/IntegerExactExceptionTest;
    Exceptions:
      throws jdk.vm.ci.code.InvalidInstalledCodeException
    RuntimeInvisibleAnnotations: 
      Test()

  public void testIntegerExactOverflowWithoutUse1(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.graalvm.compiler.replacements.test.IntegerExactExceptionTest this
        start local 1 // int input
         0: .line 90
            getstatic org.graalvm.compiler.replacements.test.IntegerExactExceptionTest.intCounter:I
            iload 1 /* input */
            invokestatic java.lang.Math.addExact:(II)I
            pop
         1: .line 91
            return
        end local 1 // int input
        end local 0 // org.graalvm.compiler.replacements.test.IntegerExactExceptionTest this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/graalvm/compiler/replacements/test/IntegerExactExceptionTest;
            0    2     1  input  I
    MethodParameters:
       Name  Flags
      input  

  public void testIntegerExactOverflowWithoutUse2(int, boolean);
    descriptor: (IZ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.graalvm.compiler.replacements.test.IntegerExactExceptionTest this
        start local 1 // int input
        start local 2 // boolean cond
         0: .line 94
            iload 2 /* cond */
            ifeq 3
         1: .line 95
            getstatic org.graalvm.compiler.replacements.test.IntegerExactExceptionTest.intCounter:I
            iload 1 /* input */
            invokestatic java.lang.Math.addExact:(II)I
            pop
         2: .line 96
            goto 4
         3: .line 97
      StackMap locals:
      StackMap stack:
            getstatic org.graalvm.compiler.replacements.test.IntegerExactExceptionTest.intCounter:I
            iload 1 /* input */
            invokestatic java.lang.Math.addExact:(II)I
            putstatic org.graalvm.compiler.replacements.test.IntegerExactExceptionTest.intCounter:I
         4: .line 99
      StackMap locals:
      StackMap stack:
            return
        end local 2 // boolean cond
        end local 1 // int input
        end local 0 // org.graalvm.compiler.replacements.test.IntegerExactExceptionTest this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lorg/graalvm/compiler/replacements/test/IntegerExactExceptionTest;
            0    5     1  input  I
            0    5     2   cond  Z
    MethodParameters:
       Name  Flags
      input  
      cond   

  public void testIntegerExactOverflowWithoutUse3();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.replacements.test.IntegerExactExceptionTest this
         0: .line 102
            ldc 2147483647
            iconst_1
            invokestatic java.lang.Math.addExact:(II)I
            pop
         1: .line 103
            return
        end local 0 // org.graalvm.compiler.replacements.test.IntegerExactExceptionTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/graalvm/compiler/replacements/test/IntegerExactExceptionTest;

  public void testIntegerExactWithoutUse1();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.replacements.test.IntegerExactExceptionTest this
         0: .line 105
            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.replacements.test.IntegerExactExceptionTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/replacements/test/IntegerExactExceptionTest;
    Exceptions:
      throws jdk.vm.ci.code.InvalidInstalledCodeException
    RuntimeInvisibleAnnotations: 
      Test()

  public void testIntegerExactWithoutUse2();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.replacements.test.IntegerExactExceptionTest 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.replacements.test.IntegerExactExceptionTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/replacements/test/IntegerExactExceptionTest;
    Exceptions:
      throws jdk.vm.ci.code.InvalidInstalledCodeException
    RuntimeInvisibleAnnotations: 
      Test()

  public void testIntegerExactWithoutUse3();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.replacements.test.IntegerExactExceptionTest this
         0: .line 133
            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.replacements.test.IntegerExactExceptionTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/replacements/test/IntegerExactExceptionTest;
    Exceptions:
      throws jdk.vm.ci.code.InvalidInstalledCodeException
    RuntimeInvisibleAnnotations: 
      Test()

  public void testLongExactOverflowSnippet(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.graalvm.compiler.replacements.test.IntegerExactExceptionTest this
        start local 1 // long input
         0: .line 151
            getstatic org.graalvm.compiler.replacements.test.IntegerExactExceptionTest.longCounter:J
            lload 1 /* input */
            invokestatic java.lang.Math.addExact:(JJ)J
            putstatic org.graalvm.compiler.replacements.test.IntegerExactExceptionTest.longCounter:J
         1: .line 152
            goto 4
      StackMap locals:
      StackMap stack: java.lang.ArithmeticException
         2: pop
         3: .line 153
            getstatic org.graalvm.compiler.replacements.test.IntegerExactExceptionTest.longCounter:J
            ldc 2
            ldiv
            putstatic org.graalvm.compiler.replacements.test.IntegerExactExceptionTest.longCounter:J
         4: .line 155
      StackMap locals:
      StackMap stack:
            return
        end local 1 // long input
        end local 0 // org.graalvm.compiler.replacements.test.IntegerExactExceptionTest this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lorg/graalvm/compiler/replacements/test/IntegerExactExceptionTest;
            0    5     1  input  J
      Exception table:
        from    to  target  type
           0     1       2  Class java.lang.ArithmeticException
    MethodParameters:
       Name  Flags
      input  

  public void testLongExact();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.replacements.test.IntegerExactExceptionTest this
         0: .line 157
            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.replacements.test.IntegerExactExceptionTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/replacements/test/IntegerExactExceptionTest;
    Exceptions:
      throws jdk.vm.ci.code.InvalidInstalledCodeException
    RuntimeInvisibleAnnotations: 
      Test()

  public void testLongExactWithoutHandlerSnippet(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // org.graalvm.compiler.replacements.test.IntegerExactExceptionTest this
        start local 1 // long input
         0: .line 172
            getstatic org.graalvm.compiler.replacements.test.IntegerExactExceptionTest.longCounter:J
            lload 1 /* input */
            invokestatic java.lang.Math.addExact:(JJ)J
            putstatic org.graalvm.compiler.replacements.test.IntegerExactExceptionTest.longCounter:J
         1: .line 173
            goto 5
      StackMap locals:
      StackMap stack: java.lang.Throwable
         2: astore 3
         3: .line 174
            getstatic org.graalvm.compiler.replacements.test.IntegerExactExceptionTest.longCounter:J
            ldc 2
            ldiv
            putstatic org.graalvm.compiler.replacements.test.IntegerExactExceptionTest.longCounter:J
         4: .line 175
            aload 3
            athrow
         5: .line 174
      StackMap locals:
      StackMap stack:
            getstatic org.graalvm.compiler.replacements.test.IntegerExactExceptionTest.longCounter:J
            ldc 2
            ldiv
            putstatic org.graalvm.compiler.replacements.test.IntegerExactExceptionTest.longCounter:J
         6: .line 176
            return
        end local 1 // long input
        end local 0 // org.graalvm.compiler.replacements.test.IntegerExactExceptionTest this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lorg/graalvm/compiler/replacements/test/IntegerExactExceptionTest;
            0    7     1  input  J
      Exception table:
        from    to  target  type
           0     2       2  any
    MethodParameters:
       Name  Flags
      input  

  public void testLongExactWithoutHandler();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.replacements.test.IntegerExactExceptionTest this
         0: .line 178
            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.replacements.test.IntegerExactExceptionTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/replacements/test/IntegerExactExceptionTest;
    Exceptions:
      throws jdk.vm.ci.code.InvalidInstalledCodeException
    RuntimeInvisibleAnnotations: 
      Test()

  public void testLongExactOverflowWithoutUse1(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.graalvm.compiler.replacements.test.IntegerExactExceptionTest this
        start local 1 // long input
         0: .line 201
            getstatic org.graalvm.compiler.replacements.test.IntegerExactExceptionTest.longCounter:J
            lload 1 /* input */
            invokestatic java.lang.Math.addExact:(JJ)J
            pop2
         1: .line 202
            return
        end local 1 // long input
        end local 0 // org.graalvm.compiler.replacements.test.IntegerExactExceptionTest this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/graalvm/compiler/replacements/test/IntegerExactExceptionTest;
            0    2     1  input  J
    MethodParameters:
       Name  Flags
      input  

  public void testLongExactOverflowWithoutUse2(long, boolean);
    descriptor: (JZ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.graalvm.compiler.replacements.test.IntegerExactExceptionTest this
        start local 1 // long input
        start local 3 // boolean cond
         0: .line 205
            iload 3 /* cond */
            ifeq 3
         1: .line 206
            getstatic org.graalvm.compiler.replacements.test.IntegerExactExceptionTest.longCounter:J
            lload 1 /* input */
            invokestatic java.lang.Math.addExact:(JJ)J
            pop2
         2: .line 207
            goto 4
         3: .line 208
      StackMap locals:
      StackMap stack:
            getstatic org.graalvm.compiler.replacements.test.IntegerExactExceptionTest.longCounter:J
            lload 1 /* input */
            invokestatic java.lang.Math.addExact:(JJ)J
            putstatic org.graalvm.compiler.replacements.test.IntegerExactExceptionTest.longCounter:J
         4: .line 210
      StackMap locals:
      StackMap stack:
            return
        end local 3 // boolean cond
        end local 1 // long input
        end local 0 // org.graalvm.compiler.replacements.test.IntegerExactExceptionTest this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lorg/graalvm/compiler/replacements/test/IntegerExactExceptionTest;
            0    5     1  input  J
            0    5     3   cond  Z
    MethodParameters:
       Name  Flags
      input  
      cond   

  public void testLongExactWithoutUse1();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.replacements.test.IntegerExactExceptionTest this
         0: .line 212
            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.replacements.test.IntegerExactExceptionTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/replacements/test/IntegerExactExceptionTest;
    Exceptions:
      throws jdk.vm.ci.code.InvalidInstalledCodeException
    RuntimeInvisibleAnnotations: 
      Test()

  public void testLongExactWithoutUse2();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.replacements.test.IntegerExactExceptionTest this
         0: .line 226
            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.replacements.test.IntegerExactExceptionTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/replacements/test/IntegerExactExceptionTest;
    Exceptions:
      throws jdk.vm.ci.code.InvalidInstalledCodeException
    RuntimeInvisibleAnnotations: 
      Test()
}
SourceFile: "IntegerExactExceptionTest.java"