public final class jdk.tools.jaotc.StubInformation
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: jdk.tools.jaotc.StubInformation
  super_class: java.lang.Object
{
  private int stubOffset;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int stubSize;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int dispatchJumpOffset;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int resolveJumpOffset;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int resolveJumpStart;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int c2iJumpOffset;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int movOffset;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private boolean isVirtual;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  static final boolean $assertionsDisabled;
    descriptor: Z
    flags: (0x1018) ACC_STATIC, ACC_FINAL, ACC_SYNTHETIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 26
            ldc Ljdk/tools/jaotc/StubInformation;
            invokevirtual java.lang.Class.desiredAssertionStatus:()Z
            ifne 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: putstatic jdk.tools.jaotc.StubInformation.$assertionsDisabled:Z
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void <init>(int, boolean);
    descriptor: (IZ)V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // jdk.tools.jaotc.StubInformation this
        start local 1 // int stubOffset
        start local 2 // boolean isVirtual
         0: .line 41
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 42
            aload 0 /* this */
            iload 1 /* stubOffset */
            putfield jdk.tools.jaotc.StubInformation.stubOffset:I
         2: .line 43
            aload 0 /* this */
            iload 2 /* isVirtual */
            putfield jdk.tools.jaotc.StubInformation.isVirtual:Z
         3: .line 44
            aload 0 /* this */
            iconst_m1
            putfield jdk.tools.jaotc.StubInformation.stubSize:I
         4: .line 45
            aload 0 /* this */
            iconst_m1
            putfield jdk.tools.jaotc.StubInformation.movOffset:I
         5: .line 46
            aload 0 /* this */
            iconst_m1
            putfield jdk.tools.jaotc.StubInformation.c2iJumpOffset:I
         6: .line 47
            aload 0 /* this */
            iconst_m1
            putfield jdk.tools.jaotc.StubInformation.resolveJumpOffset:I
         7: .line 48
            aload 0 /* this */
            iconst_m1
            putfield jdk.tools.jaotc.StubInformation.resolveJumpStart:I
         8: .line 49
            aload 0 /* this */
            iconst_m1
            putfield jdk.tools.jaotc.StubInformation.dispatchJumpOffset:I
         9: .line 50
            return
        end local 2 // boolean isVirtual
        end local 1 // int stubOffset
        end local 0 // jdk.tools.jaotc.StubInformation this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   10     0        this  Ljdk/tools/jaotc/StubInformation;
            0   10     1  stubOffset  I
            0   10     2   isVirtual  Z
    MethodParameters:
            Name  Flags
      stubOffset  
      isVirtual   

  int getOffset();
    descriptor: ()I
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jdk.tools.jaotc.StubInformation this
         0: .line 53
            aload 0 /* this */
            getfield jdk.tools.jaotc.StubInformation.stubOffset:I
            ireturn
        end local 0 // jdk.tools.jaotc.StubInformation this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/tools/jaotc/StubInformation;

  boolean isVirtual();
    descriptor: ()Z
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jdk.tools.jaotc.StubInformation this
         0: .line 57
            aload 0 /* this */
            getfield jdk.tools.jaotc.StubInformation.isVirtual:Z
            ireturn
        end local 0 // jdk.tools.jaotc.StubInformation this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/tools/jaotc/StubInformation;

  public void setSize(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // jdk.tools.jaotc.StubInformation this
        start local 1 // int stubSize
         0: .line 61
            aload 0 /* this */
            iload 1 /* stubSize */
            putfield jdk.tools.jaotc.StubInformation.stubSize:I
         1: .line 62
            return
        end local 1 // int stubSize
        end local 0 // jdk.tools.jaotc.StubInformation this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Ljdk/tools/jaotc/StubInformation;
            0    2     1  stubSize  I
    MethodParameters:
          Name  Flags
      stubSize  

  int getSize();
    descriptor: ()I
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jdk.tools.jaotc.StubInformation this
         0: .line 65
            aload 0 /* this */
            getfield jdk.tools.jaotc.StubInformation.stubSize:I
            ireturn
        end local 0 // jdk.tools.jaotc.StubInformation this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/tools/jaotc/StubInformation;

  public void setMovOffset(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // jdk.tools.jaotc.StubInformation this
        start local 1 // int movOffset
         0: .line 69
            aload 0 /* this */
            iload 1 /* movOffset */
            aload 0 /* this */
            getfield jdk.tools.jaotc.StubInformation.stubOffset:I
            iadd
            putfield jdk.tools.jaotc.StubInformation.movOffset:I
         1: .line 70
            return
        end local 1 // int movOffset
        end local 0 // jdk.tools.jaotc.StubInformation this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Ljdk/tools/jaotc/StubInformation;
            0    2     1  movOffset  I
    MethodParameters:
           Name  Flags
      movOffset  

  int getMovOffset();
    descriptor: ()I
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jdk.tools.jaotc.StubInformation this
         0: .line 73
            aload 0 /* this */
            getfield jdk.tools.jaotc.StubInformation.movOffset:I
            ireturn
        end local 0 // jdk.tools.jaotc.StubInformation this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/tools/jaotc/StubInformation;

  public void setC2IJumpOffset(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // jdk.tools.jaotc.StubInformation this
        start local 1 // int c2iJumpOffset
         0: .line 77
            aload 0 /* this */
            iload 1 /* c2iJumpOffset */
            aload 0 /* this */
            getfield jdk.tools.jaotc.StubInformation.stubOffset:I
            iadd
            putfield jdk.tools.jaotc.StubInformation.c2iJumpOffset:I
         1: .line 78
            return
        end local 1 // int c2iJumpOffset
        end local 0 // jdk.tools.jaotc.StubInformation this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0           this  Ljdk/tools/jaotc/StubInformation;
            0    2     1  c2iJumpOffset  I
    MethodParameters:
               Name  Flags
      c2iJumpOffset  

  int getC2IJumpOffset();
    descriptor: ()I
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jdk.tools.jaotc.StubInformation this
         0: .line 81
            aload 0 /* this */
            getfield jdk.tools.jaotc.StubInformation.c2iJumpOffset:I
            ireturn
        end local 0 // jdk.tools.jaotc.StubInformation this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/tools/jaotc/StubInformation;

  public void setResolveJumpOffset(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // jdk.tools.jaotc.StubInformation this
        start local 1 // int resolveJumpOffset
         0: .line 85
            aload 0 /* this */
            iload 1 /* resolveJumpOffset */
            aload 0 /* this */
            getfield jdk.tools.jaotc.StubInformation.stubOffset:I
            iadd
            putfield jdk.tools.jaotc.StubInformation.resolveJumpOffset:I
         1: .line 86
            return
        end local 1 // int resolveJumpOffset
        end local 0 // jdk.tools.jaotc.StubInformation this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    2     0               this  Ljdk/tools/jaotc/StubInformation;
            0    2     1  resolveJumpOffset  I
    MethodParameters:
                   Name  Flags
      resolveJumpOffset  

  int getResolveJumpOffset();
    descriptor: ()I
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jdk.tools.jaotc.StubInformation this
         0: .line 89
            aload 0 /* this */
            getfield jdk.tools.jaotc.StubInformation.resolveJumpOffset:I
            ireturn
        end local 0 // jdk.tools.jaotc.StubInformation this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/tools/jaotc/StubInformation;

  public void setResolveJumpStart(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // jdk.tools.jaotc.StubInformation this
        start local 1 // int resolveJumpStart
         0: .line 93
            aload 0 /* this */
            iload 1 /* resolveJumpStart */
            aload 0 /* this */
            getfield jdk.tools.jaotc.StubInformation.stubOffset:I
            iadd
            putfield jdk.tools.jaotc.StubInformation.resolveJumpStart:I
         1: .line 94
            return
        end local 1 // int resolveJumpStart
        end local 0 // jdk.tools.jaotc.StubInformation this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    2     0              this  Ljdk/tools/jaotc/StubInformation;
            0    2     1  resolveJumpStart  I
    MethodParameters:
                  Name  Flags
      resolveJumpStart  

  int getResolveJumpStart();
    descriptor: ()I
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jdk.tools.jaotc.StubInformation this
         0: .line 97
            aload 0 /* this */
            getfield jdk.tools.jaotc.StubInformation.resolveJumpStart:I
            ireturn
        end local 0 // jdk.tools.jaotc.StubInformation this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/tools/jaotc/StubInformation;

  public void setDispatchJumpOffset(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // jdk.tools.jaotc.StubInformation this
        start local 1 // int dispatchJumpOffset
         0: .line 101
            aload 0 /* this */
            iload 1 /* dispatchJumpOffset */
            aload 0 /* this */
            getfield jdk.tools.jaotc.StubInformation.stubOffset:I
            iadd
            putfield jdk.tools.jaotc.StubInformation.dispatchJumpOffset:I
         1: .line 102
            return
        end local 1 // int dispatchJumpOffset
        end local 0 // jdk.tools.jaotc.StubInformation this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    2     0                this  Ljdk/tools/jaotc/StubInformation;
            0    2     1  dispatchJumpOffset  I
    MethodParameters:
                    Name  Flags
      dispatchJumpOffset  

  int getDispatchJumpOffset();
    descriptor: ()I
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jdk.tools.jaotc.StubInformation this
         0: .line 105
            aload 0 /* this */
            getfield jdk.tools.jaotc.StubInformation.dispatchJumpOffset:I
            ireturn
        end local 0 // jdk.tools.jaotc.StubInformation this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/tools/jaotc/StubInformation;

  void verify();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // jdk.tools.jaotc.StubInformation this
         0: .line 109
            getstatic jdk.tools.jaotc.StubInformation.$assertionsDisabled:Z
            ifne 1
            aload 0 /* this */
            getfield jdk.tools.jaotc.StubInformation.stubOffset:I
            ifgt 1
            new java.lang.AssertionError
            dup
            new java.lang.StringBuilder
            dup
            ldc "incorrect stubOffset: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield jdk.tools.jaotc.StubInformation.stubOffset:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         1: .line 110
      StackMap locals:
      StackMap stack:
            getstatic jdk.tools.jaotc.StubInformation.$assertionsDisabled:Z
            ifne 2
            aload 0 /* this */
            getfield jdk.tools.jaotc.StubInformation.stubSize:I
            ifgt 2
            new java.lang.AssertionError
            dup
            new java.lang.StringBuilder
            dup
            ldc "incorrect stubSize: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield jdk.tools.jaotc.StubInformation.stubSize:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         2: .line 111
      StackMap locals:
      StackMap stack:
            getstatic jdk.tools.jaotc.StubInformation.$assertionsDisabled:Z
            ifne 3
            aload 0 /* this */
            getfield jdk.tools.jaotc.StubInformation.movOffset:I
            ifgt 3
            new java.lang.AssertionError
            dup
            new java.lang.StringBuilder
            dup
            ldc "incorrect movOffset: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield jdk.tools.jaotc.StubInformation.movOffset:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         3: .line 112
      StackMap locals:
      StackMap stack:
            getstatic jdk.tools.jaotc.StubInformation.$assertionsDisabled:Z
            ifne 4
            aload 0 /* this */
            getfield jdk.tools.jaotc.StubInformation.dispatchJumpOffset:I
            ifgt 4
            new java.lang.AssertionError
            dup
            new java.lang.StringBuilder
            dup
            ldc "incorrect dispatchJumpOffset: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield jdk.tools.jaotc.StubInformation.dispatchJumpOffset:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         4: .line 113
      StackMap locals:
      StackMap stack:
            getstatic jdk.tools.jaotc.StubInformation.$assertionsDisabled:Z
            ifne 5
            aload 0 /* this */
            getfield jdk.tools.jaotc.StubInformation.resolveJumpStart:I
            ifgt 5
            new java.lang.AssertionError
            dup
            new java.lang.StringBuilder
            dup
            ldc "incorrect resolveJumpStart: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield jdk.tools.jaotc.StubInformation.resolveJumpStart:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         5: .line 114
      StackMap locals:
      StackMap stack:
            getstatic jdk.tools.jaotc.StubInformation.$assertionsDisabled:Z
            ifne 6
            aload 0 /* this */
            getfield jdk.tools.jaotc.StubInformation.resolveJumpOffset:I
            ifgt 6
            new java.lang.AssertionError
            dup
            new java.lang.StringBuilder
            dup
            ldc "incorrect resolveJumpOffset: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield jdk.tools.jaotc.StubInformation.resolveJumpOffset:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         6: .line 115
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield jdk.tools.jaotc.StubInformation.isVirtual:Z
            ifne 8
         7: .line 116
            getstatic jdk.tools.jaotc.StubInformation.$assertionsDisabled:Z
            ifne 8
            aload 0 /* this */
            getfield jdk.tools.jaotc.StubInformation.c2iJumpOffset:I
            ifgt 8
            new java.lang.AssertionError
            dup
            new java.lang.StringBuilder
            dup
            ldc "incorrect c2iJumpOffset: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield jdk.tools.jaotc.StubInformation.c2iJumpOffset:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         8: .line 118
      StackMap locals:
      StackMap stack:
            return
        end local 0 // jdk.tools.jaotc.StubInformation this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Ljdk/tools/jaotc/StubInformation;
}
SourceFile: "StubInformation.java"