public class org.graalvm.compiler.hotspot.test.ForeignCallDeoptimizeTest 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.ForeignCallDeoptimizeTest
  super_class: org.graalvm.compiler.core.test.GraalCompilerTest
{
  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.ForeignCallDeoptimizeTest this
         0: .line 42
            aload 0 /* this */
            invokespecial org.graalvm.compiler.core.test.GraalCompilerTest.<init>:()V
            return
        end local 0 // org.graalvm.compiler.hotspot.test.ForeignCallDeoptimizeTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/hotspot/test/ForeignCallDeoptimizeTest;

  protected void registerInvocationPlugins(org.graalvm.compiler.nodes.graphbuilderconf.InvocationPlugins);
    descriptor: (Lorg/graalvm/compiler/nodes/graphbuilderconf/InvocationPlugins;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=8, locals=2, args_size=2
        start local 0 // org.graalvm.compiler.hotspot.test.ForeignCallDeoptimizeTest this
        start local 1 // org.graalvm.compiler.nodes.graphbuilderconf.InvocationPlugins invocationPlugins
         0: .line 46
            aload 1 /* invocationPlugins */
            new org.graalvm.compiler.hotspot.test.ForeignCallDeoptimizeTest$1
            dup
            aload 0 /* this */
            invokespecial org.graalvm.compiler.hotspot.test.ForeignCallDeoptimizeTest$1.<init>:(Lorg/graalvm/compiler/hotspot/test/ForeignCallDeoptimizeTest;)V
         1: .line 54
            ldc Lorg/graalvm/compiler/hotspot/test/ForeignCallDeoptimizeTest;
            ldc "testCallInt"
            iconst_1
            anewarray java.lang.reflect.Type
            dup
            iconst_0
            getstatic java.lang.Integer.TYPE:Ljava/lang/Class;
            aastore
         2: .line 46
            invokevirtual org.graalvm.compiler.nodes.graphbuilderconf.InvocationPlugins.register:(Lorg/graalvm/compiler/nodes/graphbuilderconf/InvocationPlugin;Ljava/lang/reflect/Type;Ljava/lang/String;[Ljava/lang/reflect/Type;)V
         3: .line 55
            aload 0 /* this */
            aload 1 /* invocationPlugins */
            invokespecial org.graalvm.compiler.core.test.GraalCompilerTest.registerInvocationPlugins:(Lorg/graalvm/compiler/nodes/graphbuilderconf/InvocationPlugins;)V
         4: .line 56
            return
        end local 1 // org.graalvm.compiler.nodes.graphbuilderconf.InvocationPlugins invocationPlugins
        end local 0 // org.graalvm.compiler.hotspot.test.ForeignCallDeoptimizeTest this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    5     0               this  Lorg/graalvm/compiler/hotspot/test/ForeignCallDeoptimizeTest;
            0    5     1  invocationPlugins  Lorg/graalvm/compiler/nodes/graphbuilderconf/InvocationPlugins;
    MethodParameters:
                   Name  Flags
      invocationPlugins  

  public static int testCallInt(int);
    descriptor: (I)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // int value
         0: .line 59
            iload 0 /* value */
            ireturn
        end local 0 // int value
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0  value  I
    MethodParameters:
       Name  Flags
      value  

  public static int testForeignCall(int);
    descriptor: (I)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // int value
         0: .line 63
            iload 0 /* value */
            invokestatic org.graalvm.compiler.hotspot.test.ForeignCallDeoptimizeTest.testCallInt:(I)I
            iload 0 /* value */
            if_icmpeq 2
         1: .line 64
            new java.lang.InternalError
            dup
            invokespecial java.lang.InternalError.<init>:()V
            athrow
         2: .line 66
      StackMap locals:
      StackMap stack:
            iload 0 /* value */
            ireturn
        end local 0 // int value
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0  value  I
    MethodParameters:
       Name  Flags
      value  

  public void test1();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.hotspot.test.ForeignCallDeoptimizeTest this
         0: .line 71
            aload 0 /* this */
            ldc "testForeignCall"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            iconst_0
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            invokevirtual org.graalvm.compiler.hotspot.test.ForeignCallDeoptimizeTest.test:(Ljava/lang/String;[Ljava/lang/Object;)Lorg/graalvm/compiler/core/test/GraalCompilerTest$Result;
            pop
         1: .line 72
            return
        end local 0 // org.graalvm.compiler.hotspot.test.ForeignCallDeoptimizeTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/graalvm/compiler/hotspot/test/ForeignCallDeoptimizeTest;
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void test2();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.hotspot.test.ForeignCallDeoptimizeTest this
         0: .line 76
            aload 0 /* this */
            ldc "testForeignCall"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            iconst_m1
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            invokevirtual org.graalvm.compiler.hotspot.test.ForeignCallDeoptimizeTest.test:(Ljava/lang/String;[Ljava/lang/Object;)Lorg/graalvm/compiler/core/test/GraalCompilerTest$Result;
            pop
         1: .line 77
            return
        end local 0 // org.graalvm.compiler.hotspot.test.ForeignCallDeoptimizeTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/graalvm/compiler/hotspot/test/ForeignCallDeoptimizeTest;
    RuntimeVisibleAnnotations: 
      org.junit.Test()
}
SourceFile: "ForeignCallDeoptimizeTest.java"
NestMembers:
  org.graalvm.compiler.hotspot.test.ForeignCallDeoptimizeTest$1
InnerClasses:
  public Result = org.graalvm.compiler.core.test.GraalCompilerTest$Result of org.graalvm.compiler.core.test.GraalCompilerTest
  org.graalvm.compiler.hotspot.test.ForeignCallDeoptimizeTest$1