public class org.graalvm.compiler.jtt.jdk.UnsafeAllocateInstance01 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.jdk.UnsafeAllocateInstance01
  super_class: org.graalvm.compiler.jtt.JTTTest
{
  int field01;
    descriptor: I
    flags: (0x0000) 

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.jtt.jdk.UnsafeAllocateInstance01 this
         0: .line 39
            aload 0 /* this */
            invokespecial org.graalvm.compiler.jtt.JTTTest.<init>:()V
         1: .line 41
            aload 0 /* this */
            bipush 42
            putfield org.graalvm.compiler.jtt.jdk.UnsafeAllocateInstance01.field01:I
         2: .line 39
            return
        end local 0 // org.graalvm.compiler.jtt.jdk.UnsafeAllocateInstance01 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/graalvm/compiler/jtt/jdk/UnsafeAllocateInstance01;

  public static int testInstance();
    descriptor: ()I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=0
         0: .line 44
            getstatic org.graalvm.compiler.jtt.jdk.UnsafeAllocateInstance01.UNSAFE:Lsun/misc/Unsafe;
            ldc Lorg/graalvm/compiler/jtt/jdk/UnsafeAllocateInstance01;
            invokevirtual sun.misc.Unsafe.allocateInstance:(Ljava/lang/Class;)Ljava/lang/Object;
            checkcast org.graalvm.compiler.jtt.jdk.UnsafeAllocateInstance01
            astore 0 /* newObject */
        start local 0 // org.graalvm.compiler.jtt.jdk.UnsafeAllocateInstance01 newObject
         1: .line 45
            aload 0 /* newObject */
            getfield org.graalvm.compiler.jtt.jdk.UnsafeAllocateInstance01.field01:I
            ireturn
        end local 0 // org.graalvm.compiler.jtt.jdk.UnsafeAllocateInstance01 newObject
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            1    2     0  newObject  Lorg/graalvm/compiler/jtt/jdk/UnsafeAllocateInstance01;
    Exceptions:
      throws java.lang.SecurityException, java.lang.InstantiationException

  public static void testClassForException(java.lang.Class<?>);
    descriptor: (Ljava/lang/Class;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.lang.Class clazz
         0: .line 49
            getstatic org.graalvm.compiler.jtt.jdk.UnsafeAllocateInstance01.UNSAFE:Lsun/misc/Unsafe;
            aload 0 /* clazz */
            invokevirtual sun.misc.Unsafe.allocateInstance:(Ljava/lang/Class;)Ljava/lang/Object;
            pop
         1: .line 50
            return
        end local 0 // java.lang.Class clazz
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0  clazz  Ljava/lang/Class<*>;
    Exceptions:
      throws java.lang.SecurityException, java.lang.InstantiationException
    Signature: (Ljava/lang/Class<*>;)V
    MethodParameters:
       Name  Flags
      clazz  

  protected org.graalvm.compiler.core.test.GraalCompilerTest$Result executeExpected(jdk.vm.ci.meta.ResolvedJavaMethod, java.lang.Object, java.lang.Object[]);
    descriptor: (Ljdk/vm/ci/meta/ResolvedJavaMethod;Ljava/lang/Object;[Ljava/lang/Object;)Lorg/graalvm/compiler/core/test/GraalCompilerTest$Result;
    flags: (0x0084) ACC_PROTECTED, ACC_VARARGS
    Code:
      stack=6, locals=5, args_size=4
        start local 0 // org.graalvm.compiler.jtt.jdk.UnsafeAllocateInstance01 this
        start local 1 // jdk.vm.ci.meta.ResolvedJavaMethod method
        start local 2 // java.lang.Object receiver
        start local 3 // java.lang.Object[] args
         0: .line 54
            aload 3 /* args */
            arraylength
            iconst_1
            if_icmpne 4
         1: .line 59
            aload 3 /* args */
            iconst_0
            aaload
            checkcast java.lang.Class
            astore 4 /* cl */
        start local 4 // java.lang.Class cl
         2: .line 60
            aload 4 /* cl */
            invokevirtual java.lang.Class.isArray:()Z
            ifeq 4
         3: .line 61
            new org.graalvm.compiler.core.test.GraalCompilerTest$Result
            dup
            aconst_null
            new java.lang.InstantiationException
            dup
            aload 4 /* cl */
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
            invokespecial java.lang.InstantiationException.<init>:(Ljava/lang/String;)V
            invokespecial org.graalvm.compiler.core.test.GraalCompilerTest$Result.<init>:(Ljava/lang/Object;Ljava/lang/Throwable;)V
            areturn
        end local 4 // java.lang.Class cl
         4: .line 64
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* method */
            aload 2 /* receiver */
            aload 3 /* args */
            invokespecial org.graalvm.compiler.jtt.JTTTest.executeExpected:(Ljdk/vm/ci/meta/ResolvedJavaMethod;Ljava/lang/Object;[Ljava/lang/Object;)Lorg/graalvm/compiler/core/test/GraalCompilerTest$Result;
            areturn
        end local 3 // java.lang.Object[] args
        end local 2 // java.lang.Object receiver
        end local 1 // jdk.vm.ci.meta.ResolvedJavaMethod method
        end local 0 // org.graalvm.compiler.jtt.jdk.UnsafeAllocateInstance01 this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/graalvm/compiler/jtt/jdk/UnsafeAllocateInstance01;
            0    5     1    method  Ljdk/vm/ci/meta/ResolvedJavaMethod;
            0    5     2  receiver  Ljava/lang/Object;
            0    5     3      args  [Ljava/lang/Object;
            2    4     4        cl  Ljava/lang/Class<*>;
    MethodParameters:
          Name  Flags
      method    
      receiver  
      args      

  public void run0();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.jtt.jdk.UnsafeAllocateInstance01 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.jtt.jdk.UnsafeAllocateInstance01 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/jtt/jdk/UnsafeAllocateInstance01;
    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.jdk.UnsafeAllocateInstance01 this
         0: .line 72
            new java.lang.Error
            dup
            ldc "Unresolved compilation problems: \n\tIgnore cannot be resolved to a type\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.jdk.UnsafeAllocateInstance01 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/jtt/jdk/UnsafeAllocateInstance01;
    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.jdk.UnsafeAllocateInstance01 this
         0: .line 78
            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.jdk.UnsafeAllocateInstance01 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/jtt/jdk/UnsafeAllocateInstance01;
    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.jdk.UnsafeAllocateInstance01 this
         0: .line 83
            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.jdk.UnsafeAllocateInstance01 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/jtt/jdk/UnsafeAllocateInstance01;
    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.jdk.UnsafeAllocateInstance01 this
         0: .line 88
            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.jdk.UnsafeAllocateInstance01 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/jtt/jdk/UnsafeAllocateInstance01;
    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.jdk.UnsafeAllocateInstance01 this
         0: .line 93
            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.jdk.UnsafeAllocateInstance01 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/jtt/jdk/UnsafeAllocateInstance01;
    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.jdk.UnsafeAllocateInstance01 this
         0: .line 98
            new java.lang.Error
            dup
            ldc "Unresolved compilation problems: \n\tIgnore cannot be resolved to a type\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.jdk.UnsafeAllocateInstance01 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/jtt/jdk/UnsafeAllocateInstance01;
    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.jdk.UnsafeAllocateInstance01 this
         0: .line 104
            new java.lang.Error
            dup
            ldc "Unresolved compilation problems: \n\tIgnore cannot be resolved to a type\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.jdk.UnsafeAllocateInstance01 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/jtt/jdk/UnsafeAllocateInstance01;
    Exceptions:
      throws java.lang.Throwable
    RuntimeInvisibleAnnotations: 
      Test()
}
SourceFile: "UnsafeAllocateInstance01.java"
InnerClasses:
  public Result = org.graalvm.compiler.core.test.GraalCompilerTest$Result of org.graalvm.compiler.core.test.GraalCompilerTest