public class org.graalvm.compiler.jtt.optimize.UnsafeDeopt 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.UnsafeDeopt
  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.UnsafeDeopt this
         0: .line 36
            aload 0 /* this */
            invokespecial org.graalvm.compiler.jtt.JTTTest.<init>:()V
            return
        end local 0 // org.graalvm.compiler.jtt.optimize.UnsafeDeopt this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/jtt/optimize/UnsafeDeopt;

  public static int readWriteReadUnsafe(long, int);
    descriptor: (JI)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // long addr
        start local 2 // int m
         0: .line 39
            getstatic org.graalvm.compiler.jtt.optimize.UnsafeDeopt.UNSAFE:Lsun/misc/Unsafe;
            lload 0 /* addr */
            invokevirtual sun.misc.Unsafe.getInt:(J)I
            istore 3 /* original */
        start local 3 // int original
         1: .line 40
            iload 3 /* original */
            ifeq 3
         2: .line 41
            iload 2 /* m */
            ineg
            ireturn
         3: .line 43
      StackMap locals: int
      StackMap stack:
            getstatic org.graalvm.compiler.jtt.optimize.UnsafeDeopt.UNSAFE:Lsun/misc/Unsafe;
            lload 0 /* addr */
            iload 2 /* m */
            invokevirtual sun.misc.Unsafe.putInt:(JI)V
         4: .line 44
            iload 2 /* m */
            bipush 10
            if_icmple 8
         5: .line 45
            iload 2 /* m */
            bipush 20
            if_icmple 7
         6: .line 46
            invokestatic org.graalvm.compiler.api.directives.GraalDirectives.deoptimize:()V
         7: .line 48
      StackMap locals:
      StackMap stack:
            getstatic org.graalvm.compiler.jtt.optimize.UnsafeDeopt.UNSAFE:Lsun/misc/Unsafe;
            lload 0 /* addr */
            ldc 4
            ladd
            iload 2 /* m */
            invokevirtual sun.misc.Unsafe.putInt:(JI)V
         8: .line 50
      StackMap locals:
      StackMap stack:
            getstatic org.graalvm.compiler.jtt.optimize.UnsafeDeopt.UNSAFE:Lsun/misc/Unsafe;
            lload 0 /* addr */
            invokevirtual sun.misc.Unsafe.getInt:(J)I
            ireturn
        end local 3 // int original
        end local 2 // int m
        end local 0 // long addr
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    9     0      addr  J
            0    9     2         m  I
            1    9     3  original  I
    MethodParameters:
      Name  Flags
      addr  
      m     

  public static int readWriteReadByteBuffer(java.nio.ByteBuffer, int);
    descriptor: (Ljava/nio/ByteBuffer;I)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // java.nio.ByteBuffer buffer
        start local 1 // int m
         0: .line 54
            aload 0 /* buffer */
            iconst_0
            invokevirtual java.nio.ByteBuffer.getInt:(I)I
            istore 2 /* original */
        start local 2 // int original
         1: .line 55
            iload 2 /* original */
            ifeq 3
         2: .line 56
            iload 1 /* m */
            ineg
            ireturn
         3: .line 58
      StackMap locals: int
      StackMap stack:
            aload 0 /* buffer */
            iconst_0
            iload 1 /* m */
            invokevirtual java.nio.ByteBuffer.putInt:(II)Ljava/nio/ByteBuffer;
            pop
         4: .line 59
            iload 1 /* m */
            bipush 10
            if_icmple 8
         5: .line 60
            iload 1 /* m */
            bipush 20
            if_icmple 8
         6: .line 61
            invokestatic org.graalvm.compiler.api.directives.GraalDirectives.deoptimize:()V
         7: .line 62
            aload 0 /* buffer */
            iconst_4
            iload 1 /* m */
            invokevirtual java.nio.ByteBuffer.putInt:(II)Ljava/nio/ByteBuffer;
            pop
         8: .line 65
      StackMap locals:
      StackMap stack:
            aload 0 /* buffer */
            iconst_0
            invokevirtual java.nio.ByteBuffer.getInt:(I)I
            ireturn
        end local 2 // int original
        end local 1 // int m
        end local 0 // java.nio.ByteBuffer buffer
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    9     0    buffer  Ljava/nio/ByteBuffer;
            0    9     1         m  I
            1    9     2  original  I
    MethodParameters:
        Name  Flags
      buffer  
      m       

  public long createBuffer();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=1
        start local 0 // org.graalvm.compiler.jtt.optimize.UnsafeDeopt this
         0: .line 69
            getstatic org.graalvm.compiler.jtt.optimize.UnsafeDeopt.UNSAFE:Lsun/misc/Unsafe;
            ldc 32
            invokevirtual sun.misc.Unsafe.allocateMemory:(J)J
            lstore 1 /* addr */
        start local 1 // long addr
         1: .line 70
            getstatic org.graalvm.compiler.jtt.optimize.UnsafeDeopt.UNSAFE:Lsun/misc/Unsafe;
            lload 1 /* addr */
            ldc 32
            iconst_0
            invokevirtual sun.misc.Unsafe.setMemory:(JJB)V
         2: .line 71
            lload 1 /* addr */
            lreturn
        end local 1 // long addr
        end local 0 // org.graalvm.compiler.jtt.optimize.UnsafeDeopt this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/graalvm/compiler/jtt/optimize/UnsafeDeopt;
            1    3     1  addr  J

  public void disposeBuffer(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.graalvm.compiler.jtt.optimize.UnsafeDeopt this
        start local 1 // long addr
         0: .line 75
            getstatic org.graalvm.compiler.jtt.optimize.UnsafeDeopt.UNSAFE:Lsun/misc/Unsafe;
            lload 1 /* addr */
            invokevirtual sun.misc.Unsafe.freeMemory:(J)V
         1: .line 76
            return
        end local 1 // long addr
        end local 0 // org.graalvm.compiler.jtt.optimize.UnsafeDeopt this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/graalvm/compiler/jtt/optimize/UnsafeDeopt;
            0    2     1  addr  J
    MethodParameters:
      Name  Flags
      addr  

  public void testUnsafe();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.jtt.optimize.UnsafeDeopt this
         0: .line 78
            new java.lang.Error
            dup
            ldc "Unresolved compilation problems: \n\tTest cannot be resolved to a type\n\tAssumptionViolatedException 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.UnsafeDeopt this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/jtt/optimize/UnsafeDeopt;
    RuntimeInvisibleAnnotations: 
      Test()

  public void testByteBuffer();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.graalvm.compiler.jtt.optimize.UnsafeDeopt this
         0: .line 100
            new java.lang.Error
            dup
            ldc "Unresolved compilation problems: \n\tTest cannot be resolved to a type\n\tAssumptionViolatedException 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.UnsafeDeopt this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/compiler/jtt/optimize/UnsafeDeopt;
    RuntimeInvisibleAnnotations: 
      Test()
}
SourceFile: "UnsafeDeopt.java"