public class org.graalvm.compiler.hotspot.test.ExplicitExceptionTest 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.hotspot.test.ExplicitExceptionTest
  super_class: org.graalvm.compiler.core.test.GraalCompilerTest
{
  private int expectedForeignCallCount;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.hotspot.test.ExplicitExceptionTest this
         0: .line 33
            aload 0 /* this */
            invokespecial org.graalvm.compiler.core.test.GraalCompilerTest.<init>:()V
            return
        end local 0 // org.graalvm.compiler.hotspot.test.ExplicitExceptionTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/hotspot/test/ExplicitExceptionTest;

  protected jdk.vm.ci.code.InstalledCode getCode(jdk.vm.ci.meta.ResolvedJavaMethod);
    descriptor: (Ljdk/vm/ci/meta/ResolvedJavaMethod;)Ljdk/vm/ci/code/InstalledCode;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.graalvm.compiler.hotspot.test.ExplicitExceptionTest this
        start local 1 // jdk.vm.ci.meta.ResolvedJavaMethod method
         0: .line 39
            aload 0 /* this */
            aload 1 /* method */
            invokespecial org.graalvm.compiler.core.test.GraalCompilerTest.getCode:(Ljdk/vm/ci/meta/ResolvedJavaMethod;)Ljdk/vm/ci/code/InstalledCode;
            astore 2 /* installedCode */
        start local 2 // jdk.vm.ci.code.InstalledCode installedCode
         1: .line 40
            aload 0 /* this */
            aload 0 /* this */
            getfield org.graalvm.compiler.hotspot.test.ExplicitExceptionTest.expectedForeignCallCount:I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aload 0 /* this */
            getfield org.graalvm.compiler.hotspot.test.ExplicitExceptionTest.lastCompiledGraph:Lorg/graalvm/compiler/nodes/StructuredGraph;
            invokevirtual org.graalvm.compiler.nodes.StructuredGraph.getNodes:()Lorg/graalvm/compiler/graph/iterators/NodeIterable;
            ldc Lorg/graalvm/compiler/nodes/extended/ForeignCallNode;
            invokeinterface org.graalvm.compiler.graph.iterators.NodeIterable.filter:(Ljava/lang/Class;)Lorg/graalvm/compiler/graph/iterators/NodeIterable;
            invokeinterface org.graalvm.compiler.graph.iterators.NodeIterable.count:()I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokevirtual org.graalvm.compiler.hotspot.test.ExplicitExceptionTest.assertDeepEquals:(Ljava/lang/Object;Ljava/lang/Object;)V
         2: .line 41
            aload 2 /* installedCode */
            areturn
        end local 2 // jdk.vm.ci.code.InstalledCode installedCode
        end local 1 // jdk.vm.ci.meta.ResolvedJavaMethod method
        end local 0 // org.graalvm.compiler.hotspot.test.ExplicitExceptionTest this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    3     0           this  Lorg/graalvm/compiler/hotspot/test/ExplicitExceptionTest;
            0    3     1         method  Ljdk/vm/ci/meta/ResolvedJavaMethod;
            1    3     2  installedCode  Ljdk/vm/ci/code/InstalledCode;
    MethodParameters:
        Name  Flags
      method  

  public static int testAIOOBESnippet(int[]);
    descriptor: ([I)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // int[] array
         0: .line 45
            aload 0 /* array */
            bipush 10
            iaload
            ireturn
        end local 0 // int[] array
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0  array  [I
    MethodParameters:
       Name  Flags
      array  

  public void testAIOOBE();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.hotspot.test.ExplicitExceptionTest this
         0: .line 48
            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.hotspot.test.ExplicitExceptionTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/hotspot/test/ExplicitExceptionTest;
    RuntimeInvisibleAnnotations: 
      Test()

  public static int testNPEArraySnippet(int[]);
    descriptor: ([I)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // int[] array
         0: .line 63
            aload 0 /* array */
            bipush 10
            iaload
            ireturn
        end local 0 // int[] array
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0  array  [I
    MethodParameters:
       Name  Flags
      array  

  public void testNPEArray();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.hotspot.test.ExplicitExceptionTest this
         0: .line 66
            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.hotspot.test.ExplicitExceptionTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/hotspot/test/ExplicitExceptionTest;
    RuntimeInvisibleAnnotations: 
      Test()

  public static int testNPESnippet(org.graalvm.compiler.hotspot.test.ExplicitExceptionTest$TestClass);
    descriptor: (Lorg/graalvm/compiler/hotspot/test/ExplicitExceptionTest$TestClass;)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.hotspot.test.ExplicitExceptionTest$TestClass obj
         0: .line 85
            aload 0 /* obj */
            getfield org.graalvm.compiler.hotspot.test.ExplicitExceptionTest$TestClass.field:I
            ireturn
        end local 0 // org.graalvm.compiler.hotspot.test.ExplicitExceptionTest$TestClass obj
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0   obj  Lorg/graalvm/compiler/hotspot/test/ExplicitExceptionTest$TestClass;
    MethodParameters:
      Name  Flags
      obj   

  public void testNPE();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.hotspot.test.ExplicitExceptionTest this
         0: .line 89
            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.hotspot.test.ExplicitExceptionTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/hotspot/test/ExplicitExceptionTest;
    RuntimeInvisibleAnnotations: 
      Test()
}
SourceFile: "ExplicitExceptionTest.java"
NestMembers:
  org.graalvm.compiler.hotspot.test.ExplicitExceptionTest$TestClass
InnerClasses:
  private TestClass = org.graalvm.compiler.hotspot.test.ExplicitExceptionTest$TestClass of org.graalvm.compiler.hotspot.test.ExplicitExceptionTest