class com.oracle.svm.core.deopt.Deoptimizer$TargetContent
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: com.oracle.svm.core.deopt.Deoptimizer$TargetContent
  super_class: java.lang.Object
{
  private final byte[] frameBuffer;
    descriptor: [B
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private static final int sizeofInt;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final int sizeofLong;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private final int sizeofCompressedReference;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int sizeofUncompressedReference;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private static final int arrayBaseOffset;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final java.lang.ArrayIndexOutOfBoundsException arrayIndexOutOfBoundsException;
    descriptor: Ljava/lang/ArrayIndexOutOfBoundsException;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=0, args_size=0
         0: .line 1161
            getstatic jdk.vm.ci.meta.JavaKind.Int:Ljdk/vm/ci/meta/JavaKind;
            invokevirtual jdk.vm.ci.meta.JavaKind.getByteCount:()I
            putstatic com.oracle.svm.core.deopt.Deoptimizer$TargetContent.sizeofInt:I
         1: .line 1162
            getstatic jdk.vm.ci.meta.JavaKind.Long:Ljdk/vm/ci/meta/JavaKind;
            invokevirtual jdk.vm.ci.meta.JavaKind.getByteCount:()I
            putstatic com.oracle.svm.core.deopt.Deoptimizer$TargetContent.sizeofLong:I
         2: .line 1169
            invokestatic com.oracle.svm.core.config.ConfigurationValues.getObjectLayout:()Lcom/oracle/svm/core/config/ObjectLayout;
            getstatic jdk.vm.ci.meta.JavaKind.Byte:Ljdk/vm/ci/meta/JavaKind;
            invokevirtual com.oracle.svm.core.config.ObjectLayout.getArrayBaseOffset:(Ljdk/vm/ci/meta/JavaKind;)I
            putstatic com.oracle.svm.core.deopt.Deoptimizer$TargetContent.arrayBaseOffset:I
         3: .line 1171
            new java.lang.ArrayIndexOutOfBoundsException
            dup
            ldc "TargetContent.offsetCheck"
            invokespecial java.lang.ArrayIndexOutOfBoundsException.<init>:(Ljava/lang/String;)V
            putstatic com.oracle.svm.core.deopt.Deoptimizer$TargetContent.arrayIndexOutOfBoundsException:Ljava/lang/ArrayIndexOutOfBoundsException;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private void offsetCheck(int, int);
    descriptor: (II)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.oracle.svm.core.deopt.Deoptimizer$TargetContent this
        start local 1 // int offset
        start local 2 // int size
         0: .line 1176
            iload 1 /* offset */
            iflt 1
            iload 1 /* offset */
            aload 0 /* this */
            getfield com.oracle.svm.core.deopt.Deoptimizer$TargetContent.frameBuffer:[B
            arraylength
            iload 2 /* size */
            isub
            if_icmple 2
         1: .line 1177
      StackMap locals:
      StackMap stack:
            getstatic com.oracle.svm.core.deopt.Deoptimizer$TargetContent.arrayIndexOutOfBoundsException:Ljava/lang/ArrayIndexOutOfBoundsException;
            athrow
         2: .line 1179
      StackMap locals:
      StackMap stack:
            return
        end local 2 // int size
        end local 1 // int offset
        end local 0 // com.oracle.svm.core.deopt.Deoptimizer$TargetContent this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lcom/oracle/svm/core/deopt/Deoptimizer$TargetContent;
            0    3     1  offset  I
            0    3     2    size  I
    RuntimeVisibleAnnotations: 
      com.oracle.svm.core.annotate.Uninterruptible(reason = "Called from uninterruptible code.")
    MethodParameters:
        Name  Flags
      offset  
      size    

  protected void <init>(int, java.nio.ByteOrder);
    descriptor: (ILjava/nio/ByteOrder;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // com.oracle.svm.core.deopt.Deoptimizer$TargetContent this
        start local 1 // int targetContentSize
        start local 2 // java.nio.ByteOrder byteOrder
         0: .line 1182
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 1164
            aload 0 /* this */
            invokestatic com.oracle.svm.core.config.ConfigurationValues.getObjectLayout:()Lcom/oracle/svm/core/config/ObjectLayout;
            invokevirtual com.oracle.svm.core.config.ObjectLayout.getReferenceSize:()I
            putfield com.oracle.svm.core.deopt.Deoptimizer$TargetContent.sizeofCompressedReference:I
         2: .line 1165
            aload 0 /* this */
            invokestatic com.oracle.svm.core.FrameAccess.uncompressedReferenceSize:()I
            putfield com.oracle.svm.core.deopt.Deoptimizer$TargetContent.sizeofUncompressedReference:I
         3: .line 1184
            aload 2 /* byteOrder */
            invokestatic java.nio.ByteOrder.nativeOrder:()Ljava/nio/ByteOrder;
            if_acmpeq 5
         4: .line 1185
            ldc "TargetContent with non-native byte order."
            invokestatic com.oracle.svm.core.util.VMError.unsupportedFeature:(Ljava/lang/String;)Ljava/lang/RuntimeException;
            pop
         5: .line 1187
      StackMap locals: com.oracle.svm.core.deopt.Deoptimizer$TargetContent int java.nio.ByteOrder
      StackMap stack:
            invokestatic com.oracle.svm.core.FrameAccess.returnAddressSize:()I
            getstatic com.oracle.svm.core.deopt.Deoptimizer$TargetContent.sizeofLong:I
            if_icmpeq 7
         6: .line 1188
            ldc "TargetContent with returnAddressSize() != sizeof(long)."
            invokestatic com.oracle.svm.core.util.VMError.unsupportedFeature:(Ljava/lang/String;)Ljava/lang/RuntimeException;
            pop
         7: .line 1190
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* targetContentSize */
            newarray 8
            putfield com.oracle.svm.core.deopt.Deoptimizer$TargetContent.frameBuffer:[B
         8: .line 1191
            return
        end local 2 // java.nio.ByteOrder byteOrder
        end local 1 // int targetContentSize
        end local 0 // com.oracle.svm.core.deopt.Deoptimizer$TargetContent this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    9     0               this  Lcom/oracle/svm/core/deopt/Deoptimizer$TargetContent;
            0    9     1  targetContentSize  I
            0    9     2          byteOrder  Ljava/nio/ByteOrder;
    MethodParameters:
                   Name  Flags
      targetContentSize  
      byteOrder          

  protected int getSize();
    descriptor: ()I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.svm.core.deopt.Deoptimizer$TargetContent this
         0: .line 1196
            aload 0 /* this */
            getfield com.oracle.svm.core.deopt.Deoptimizer$TargetContent.frameBuffer:[B
            arraylength
            ireturn
        end local 0 // com.oracle.svm.core.deopt.Deoptimizer$TargetContent this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/svm/core/deopt/Deoptimizer$TargetContent;
    RuntimeVisibleAnnotations: 
      com.oracle.svm.core.annotate.Uninterruptible(reason = "Called from uninterruptible code.")

  protected void copyToPointer(org.graalvm.word.Pointer);
    descriptor: (Lorg/graalvm/word/Pointer;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // com.oracle.svm.core.deopt.Deoptimizer$TargetContent this
        start local 1 // org.graalvm.word.Pointer p
         0: .line 1202
            iconst_0
            istore 2 /* idx */
        start local 2 // int idx
         1: goto 4
         2: .line 1203
      StackMap locals: int
      StackMap stack:
            aload 1 /* p */
            iload 2 /* idx */
            aload 0 /* this */
            getfield com.oracle.svm.core.deopt.Deoptimizer$TargetContent.frameBuffer:[B
            iload 2 /* idx */
            baload
            invokeinterface org.graalvm.word.Pointer.writeByte:(IB)V
         3: .line 1202
            iinc 2 /* idx */ 1
      StackMap locals:
      StackMap stack:
         4: iload 2 /* idx */
            aload 0 /* this */
            getfield com.oracle.svm.core.deopt.Deoptimizer$TargetContent.frameBuffer:[B
            arraylength
            if_icmplt 2
        end local 2 // int idx
         5: .line 1205
            return
        end local 1 // org.graalvm.word.Pointer p
        end local 0 // com.oracle.svm.core.deopt.Deoptimizer$TargetContent this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lcom/oracle/svm/core/deopt/Deoptimizer$TargetContent;
            0    6     1     p  Lorg/graalvm/word/Pointer;
            1    5     2   idx  I
    RuntimeVisibleAnnotations: 
      com.oracle.svm.core.annotate.Uninterruptible(reason = "Called from uninterruptible code.")
    MethodParameters:
      Name  Flags
      p     

  protected void writeInt(int, int);
    descriptor: (II)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.oracle.svm.core.deopt.Deoptimizer$TargetContent this
        start local 1 // int offset
        start local 2 // int value
         0: .line 1210
            aload 0 /* this */
            iload 1 /* offset */
            getstatic com.oracle.svm.core.deopt.Deoptimizer$TargetContent.sizeofInt:I
            invokevirtual com.oracle.svm.core.deopt.Deoptimizer$TargetContent.offsetCheck:(II)V
         1: .line 1211
            aload 0 /* this */
            invokevirtual com.oracle.svm.core.deopt.Deoptimizer$TargetContent.addressOfFrameArray0:()Lorg/graalvm/word/Pointer;
            iload 1 /* offset */
            iload 2 /* value */
            invokeinterface org.graalvm.word.Pointer.writeInt:(II)V
         2: .line 1212
            return
        end local 2 // int value
        end local 1 // int offset
        end local 0 // com.oracle.svm.core.deopt.Deoptimizer$TargetContent this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lcom/oracle/svm/core/deopt/Deoptimizer$TargetContent;
            0    3     1  offset  I
            0    3     2   value  I
    RuntimeVisibleAnnotations: 
      com.oracle.svm.core.annotate.Uninterruptible(reason = "Called from uninterruptible code.")
    MethodParameters:
        Name  Flags
      offset  
      value   

  protected void writeLong(int, long);
    descriptor: (IJ)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // com.oracle.svm.core.deopt.Deoptimizer$TargetContent this
        start local 1 // int offset
        start local 2 // long value
         0: .line 1217
            aload 0 /* this */
            iload 1 /* offset */
            getstatic com.oracle.svm.core.deopt.Deoptimizer$TargetContent.sizeofLong:I
            invokevirtual com.oracle.svm.core.deopt.Deoptimizer$TargetContent.offsetCheck:(II)V
         1: .line 1218
            aload 0 /* this */
            invokevirtual com.oracle.svm.core.deopt.Deoptimizer$TargetContent.addressOfFrameArray0:()Lorg/graalvm/word/Pointer;
            iload 1 /* offset */
            lload 2 /* value */
            invokeinterface org.graalvm.word.Pointer.writeLong:(IJ)V
         2: .line 1219
            return
        end local 2 // long value
        end local 1 // int offset
        end local 0 // com.oracle.svm.core.deopt.Deoptimizer$TargetContent this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lcom/oracle/svm/core/deopt/Deoptimizer$TargetContent;
            0    3     1  offset  I
            0    3     2   value  J
    RuntimeVisibleAnnotations: 
      com.oracle.svm.core.annotate.Uninterruptible(reason = "Called from uninterruptible code.")
    MethodParameters:
        Name  Flags
      offset  
      value   

  protected void writeWord(int, org.graalvm.word.WordBase);
    descriptor: (ILorg/graalvm/word/WordBase;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // com.oracle.svm.core.deopt.Deoptimizer$TargetContent this
        start local 1 // int offset
        start local 2 // org.graalvm.word.WordBase value
         0: .line 1224
            invokestatic com.oracle.svm.core.FrameAccess.wordSize:()I
            bipush 8
            if_icmpne 3
         1: .line 1225
            aload 0 /* this */
            iload 1 /* offset */
            aload 2 /* value */
            invokeinterface org.graalvm.word.WordBase.rawValue:()J
            invokevirtual com.oracle.svm.core.deopt.Deoptimizer$TargetContent.writeLong:(IJ)V
         2: .line 1226
            goto 7
      StackMap locals:
      StackMap stack:
         3: invokestatic com.oracle.svm.core.FrameAccess.wordSize:()I
            iconst_4
            if_icmpne 6
         4: .line 1227
            aload 0 /* this */
            iload 1 /* offset */
            aload 2 /* value */
            invokeinterface org.graalvm.word.WordBase.rawValue:()J
            l2i
            invokevirtual com.oracle.svm.core.deopt.Deoptimizer$TargetContent.writeInt:(II)V
         5: .line 1228
            goto 7
         6: .line 1229
      StackMap locals:
      StackMap stack:
            new java.lang.StringBuilder
            dup
            ldc "Unexpected word size: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            invokestatic com.oracle.svm.core.FrameAccess.wordSize:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokestatic com.oracle.svm.core.util.VMError.shouldNotReachHere:(Ljava/lang/String;)Ljava/lang/RuntimeException;
            athrow
         7: .line 1231
      StackMap locals:
      StackMap stack:
            return
        end local 2 // org.graalvm.word.WordBase value
        end local 1 // int offset
        end local 0 // com.oracle.svm.core.deopt.Deoptimizer$TargetContent this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lcom/oracle/svm/core/deopt/Deoptimizer$TargetContent;
            0    8     1  offset  I
            0    8     2   value  Lorg/graalvm/word/WordBase;
    RuntimeVisibleAnnotations: 
      com.oracle.svm.core.annotate.Uninterruptible(reason = "Called from uninterruptible code.")
    MethodParameters:
        Name  Flags
      offset  
      value   

  protected void writeObject(int, java.lang.Object, boolean);
    descriptor: (ILjava/lang/Object;Z)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // com.oracle.svm.core.deopt.Deoptimizer$TargetContent this
        start local 1 // int offset
        start local 2 // java.lang.Object value
        start local 3 // boolean compressed
         0: .line 1236
            aload 0 /* this */
            iload 1 /* offset */
            iload 3 /* compressed */
            ifeq 1
            aload 0 /* this */
            getfield com.oracle.svm.core.deopt.Deoptimizer$TargetContent.sizeofCompressedReference:I
            goto 2
      StackMap locals: com.oracle.svm.core.deopt.Deoptimizer$TargetContent int java.lang.Object int
      StackMap stack: com.oracle.svm.core.deopt.Deoptimizer$TargetContent int
         1: aload 0 /* this */
            getfield com.oracle.svm.core.deopt.Deoptimizer$TargetContent.sizeofUncompressedReference:I
      StackMap locals: com.oracle.svm.core.deopt.Deoptimizer$TargetContent int java.lang.Object int
      StackMap stack: com.oracle.svm.core.deopt.Deoptimizer$TargetContent int int
         2: invokevirtual com.oracle.svm.core.deopt.Deoptimizer$TargetContent.offsetCheck:(II)V
         3: .line 1237
            aload 0 /* this */
            invokevirtual com.oracle.svm.core.deopt.Deoptimizer$TargetContent.addressOfFrameArray0:()Lorg/graalvm/word/Pointer;
            checkcast org.graalvm.compiler.word.Word
            astore 4 /* address */
        start local 4 // org.graalvm.compiler.word.Word address
         4: .line 1238
            aload 4 /* address */
            iload 1 /* offset */
            invokevirtual org.graalvm.compiler.word.Word.add:(I)Lorg/graalvm/compiler/word/Word;
            astore 4 /* address */
         5: .line 1239
            invokestatic com.oracle.svm.core.heap.ReferenceAccess.singleton:()Lcom/oracle/svm/core/heap/ReferenceAccess;
            aload 4 /* address */
            aload 2 /* value */
            iload 3 /* compressed */
            invokeinterface com.oracle.svm.core.heap.ReferenceAccess.writeObjectAt:(Lorg/graalvm/word/Pointer;Ljava/lang/Object;Z)V
         6: .line 1240
            return
        end local 4 // org.graalvm.compiler.word.Word address
        end local 3 // boolean compressed
        end local 2 // java.lang.Object value
        end local 1 // int offset
        end local 0 // com.oracle.svm.core.deopt.Deoptimizer$TargetContent this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    7     0        this  Lcom/oracle/svm/core/deopt/Deoptimizer$TargetContent;
            0    7     1      offset  I
            0    7     2       value  Ljava/lang/Object;
            0    7     3  compressed  Z
            4    7     4     address  Lorg/graalvm/compiler/word/Word;
    RuntimeVisibleAnnotations: 
      com.oracle.svm.core.annotate.Uninterruptible(reason = "Called from uninterruptible code.")
    MethodParameters:
            Name  Flags
      offset      
      value       
      compressed  

  private org.graalvm.word.Pointer addressOfFrameArray0();
    descriptor: ()Lorg/graalvm/word/Pointer;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.oracle.svm.core.deopt.Deoptimizer$TargetContent this
         0: .line 1245
            aload 0 /* this */
            getfield com.oracle.svm.core.deopt.Deoptimizer$TargetContent.frameBuffer:[B
            invokestatic org.graalvm.compiler.word.Word.objectToUntrackedPointer:(Ljava/lang/Object;)Lorg/graalvm/compiler/word/Word;
            getstatic com.oracle.svm.core.deopt.Deoptimizer$TargetContent.arrayBaseOffset:I
            invokevirtual org.graalvm.compiler.word.Word.add:(I)Lorg/graalvm/compiler/word/Word;
            areturn
        end local 0 // com.oracle.svm.core.deopt.Deoptimizer$TargetContent this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/svm/core/deopt/Deoptimizer$TargetContent;
    RuntimeVisibleAnnotations: 
      com.oracle.svm.core.annotate.Uninterruptible(reason = "Called from uninterruptible code.")
}
SourceFile: "Deoptimizer.java"
NestHost: com.oracle.svm.core.deopt.Deoptimizer
InnerClasses:
  TargetContent = com.oracle.svm.core.deopt.Deoptimizer$TargetContent of com.oracle.svm.core.deopt.Deoptimizer