class com.oracle.truffle.js.runtime.doubleconv.Bignum
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: com.oracle.truffle.js.runtime.doubleconv.Bignum
  super_class: java.lang.Object
{
  static final int kMaxSignificantBits;
    descriptor: I
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: 3584

  static final int kChunkSize;
    descriptor: I
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: 32

  static final int kDoubleChunkSize;
    descriptor: I
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: 64

  static final int kBigitSize;
    descriptor: I
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: 28

  static final int kBigitMask;
    descriptor: I
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: 268435455

  static final int kBigitCapacity;
    descriptor: I
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: 128

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

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

  private final int[] bigits_;
    descriptor: [I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  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 76
            ldc Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;
            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 com.oracle.truffle.js.runtime.doubleconv.Bignum.$assertionsDisabled:Z
         3: .line 91
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void <init>();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum this
         0: .line 98
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 96
            aload 0 /* this */
            sipush 128
            newarray 10
            putfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
         2: .line 98
            return
        end local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;

  void times10();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum this
         0: .line 100
            aload 0 /* this */
            bipush 10
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.multiplyByUInt32:(I)V
            return
        end local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;

  static boolean equal(com.oracle.truffle.js.runtime.doubleconv.Bignum, com.oracle.truffle.js.runtime.doubleconv.Bignum);
    descriptor: (Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;)Z
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum a
        start local 1 // com.oracle.truffle.js.runtime.doubleconv.Bignum b
         0: .line 103
            aload 0 /* a */
            aload 1 /* b */
            invokestatic com.oracle.truffle.js.runtime.doubleconv.Bignum.compare:(Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;)I
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // com.oracle.truffle.js.runtime.doubleconv.Bignum b
        end local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum a
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0     a  Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;
            0    2     1     b  Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;
    MethodParameters:
      Name  Flags
      a     final
      b     final

  static boolean lessEqual(com.oracle.truffle.js.runtime.doubleconv.Bignum, com.oracle.truffle.js.runtime.doubleconv.Bignum);
    descriptor: (Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;)Z
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum a
        start local 1 // com.oracle.truffle.js.runtime.doubleconv.Bignum b
         0: .line 106
            aload 0 /* a */
            aload 1 /* b */
            invokestatic com.oracle.truffle.js.runtime.doubleconv.Bignum.compare:(Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;)I
            ifgt 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // com.oracle.truffle.js.runtime.doubleconv.Bignum b
        end local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum a
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0     a  Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;
            0    2     1     b  Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;
    MethodParameters:
      Name  Flags
      a     final
      b     final

  static boolean less(com.oracle.truffle.js.runtime.doubleconv.Bignum, com.oracle.truffle.js.runtime.doubleconv.Bignum);
    descriptor: (Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;)Z
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum a
        start local 1 // com.oracle.truffle.js.runtime.doubleconv.Bignum b
         0: .line 109
            aload 0 /* a */
            aload 1 /* b */
            invokestatic com.oracle.truffle.js.runtime.doubleconv.Bignum.compare:(Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;)I
            ifge 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // com.oracle.truffle.js.runtime.doubleconv.Bignum b
        end local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum a
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0     a  Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;
            0    2     1     b  Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;
    MethodParameters:
      Name  Flags
      a     final
      b     final

  static boolean plusEqual(com.oracle.truffle.js.runtime.doubleconv.Bignum, com.oracle.truffle.js.runtime.doubleconv.Bignum, com.oracle.truffle.js.runtime.doubleconv.Bignum);
    descriptor: (Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;)Z
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum a
        start local 1 // com.oracle.truffle.js.runtime.doubleconv.Bignum b
        start local 2 // com.oracle.truffle.js.runtime.doubleconv.Bignum c
         0: .line 114
            aload 0 /* a */
            aload 1 /* b */
            aload 2 /* c */
            invokestatic com.oracle.truffle.js.runtime.doubleconv.Bignum.plusCompare:(Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;)I
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 2 // com.oracle.truffle.js.runtime.doubleconv.Bignum c
        end local 1 // com.oracle.truffle.js.runtime.doubleconv.Bignum b
        end local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum a
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0     a  Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;
            0    2     1     b  Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;
            0    2     2     c  Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;
    MethodParameters:
      Name  Flags
      a     final
      b     final
      c     final

  static boolean plusLessEqual(com.oracle.truffle.js.runtime.doubleconv.Bignum, com.oracle.truffle.js.runtime.doubleconv.Bignum, com.oracle.truffle.js.runtime.doubleconv.Bignum);
    descriptor: (Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;)Z
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum a
        start local 1 // com.oracle.truffle.js.runtime.doubleconv.Bignum b
        start local 2 // com.oracle.truffle.js.runtime.doubleconv.Bignum c
         0: .line 118
            aload 0 /* a */
            aload 1 /* b */
            aload 2 /* c */
            invokestatic com.oracle.truffle.js.runtime.doubleconv.Bignum.plusCompare:(Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;)I
            ifgt 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 2 // com.oracle.truffle.js.runtime.doubleconv.Bignum c
        end local 1 // com.oracle.truffle.js.runtime.doubleconv.Bignum b
        end local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum a
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0     a  Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;
            0    2     1     b  Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;
            0    2     2     c  Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;
    MethodParameters:
      Name  Flags
      a     final
      b     final
      c     final

  static boolean plusLess(com.oracle.truffle.js.runtime.doubleconv.Bignum, com.oracle.truffle.js.runtime.doubleconv.Bignum, com.oracle.truffle.js.runtime.doubleconv.Bignum);
    descriptor: (Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;)Z
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum a
        start local 1 // com.oracle.truffle.js.runtime.doubleconv.Bignum b
        start local 2 // com.oracle.truffle.js.runtime.doubleconv.Bignum c
         0: .line 122
            aload 0 /* a */
            aload 1 /* b */
            aload 2 /* c */
            invokestatic com.oracle.truffle.js.runtime.doubleconv.Bignum.plusCompare:(Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;)I
            ifge 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 2 // com.oracle.truffle.js.runtime.doubleconv.Bignum c
        end local 1 // com.oracle.truffle.js.runtime.doubleconv.Bignum b
        end local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum a
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0     a  Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;
            0    2     1     b  Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;
            0    2     2     c  Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;
    MethodParameters:
      Name  Flags
      a     final
      b     final
      c     final

  private void ensureCapacity(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum this
        start local 1 // int size
         0: .line 126
            iload 1 /* size */
            sipush 128
            if_icmple 2
         1: .line 127
            new java.lang.RuntimeException
            dup
            invokespecial java.lang.RuntimeException.<init>:()V
            athrow
         2: .line 129
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int size
        end local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;
            0    3     1  size  I
    MethodParameters:
      Name  Flags
      size  final

  int bigitLength();
    descriptor: ()I
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum this
         0: .line 132
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.exponent_:I
            iadd
            ireturn
        end local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;

  void assignUInt16(char);
    descriptor: (C)V
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum this
        start local 1 // char value
         0: .line 137
            aload 0 /* this */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.zero:()V
         1: .line 138
            iload 1 /* value */
            ifne 3
         2: .line 139
            return
         3: .line 142
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.ensureCapacity:(I)V
         4: .line 143
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
            iconst_0
            iload 1 /* value */
            iastore
         5: .line 144
            aload 0 /* this */
            iconst_1
            putfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
         6: .line 145
            return
        end local 1 // char value
        end local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;
            0    7     1  value  C
    MethodParameters:
       Name  Flags
      value  final

  void assignUInt64(long);
    descriptor: (J)V
    flags: (0x0000) 
    Code:
      stack=6, locals=4, args_size=2
        start local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum this
        start local 1 // long value
         0: .line 151
            aload 0 /* this */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.zero:()V
         1: .line 152
            lload 1 /* value */
            lconst_0
            lcmp
            ifne 3
         2: .line 153
            return
         3: .line 157
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_3
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.ensureCapacity:(I)V
         4: .line 158
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         5: goto 9
         6: .line 159
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
            iload 3 /* i */
            lload 1 /* value */
            ldc 268435455
            land
            l2i
            iastore
         7: .line 160
            lload 1 /* value */
            bipush 28
            lushr
            lstore 1 /* value */
         8: .line 158
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         9: iload 3 /* i */
            iconst_3
            if_icmplt 6
        end local 3 // int i
        10: .line 162
            aload 0 /* this */
            iconst_3
            putfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
        11: .line 163
            aload 0 /* this */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.clamp:()V
        12: .line 164
            return
        end local 1 // long value
        end local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   13     0   this  Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;
            0   13     1  value  J
            5   10     3      i  I
    MethodParameters:
       Name  Flags
      value  

  void assignBignum(com.oracle.truffle.js.runtime.doubleconv.Bignum);
    descriptor: (Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;)V
    flags: (0x0000) 
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum this
        start local 1 // com.oracle.truffle.js.runtime.doubleconv.Bignum other
         0: .line 168
            aload 0 /* this */
            aload 1 /* other */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.exponent_:I
            putfield com.oracle.truffle.js.runtime.doubleconv.Bignum.exponent_:I
         1: .line 169
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         2: goto 5
         3: .line 170
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
            iload 2 /* i */
            aload 1 /* other */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
            iload 2 /* i */
            iaload
            iastore
         4: .line 169
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 2 /* i */
            aload 1 /* other */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            if_icmplt 3
        end local 2 // int i
         6: .line 173
            aload 1 /* other */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            istore 2 /* i */
        start local 2 // int i
         7: goto 10
         8: .line 174
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
            iload 2 /* i */
            iconst_0
            iastore
         9: .line 173
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 2 /* i */
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            if_icmplt 8
        end local 2 // int i
        11: .line 176
            aload 0 /* this */
            aload 1 /* other */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            putfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
        12: .line 177
            return
        end local 1 // com.oracle.truffle.js.runtime.doubleconv.Bignum other
        end local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   13     0   this  Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;
            0   13     1  other  Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;
            2    6     2      i  I
            7   11     2      i  I
    MethodParameters:
       Name  Flags
      other  final

  static long readUInt64(java.lang.String, int, int);
    descriptor: (Ljava/lang/String;II)J
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=7, args_size=3
        start local 0 // java.lang.String str
        start local 1 // int from
        start local 2 // int digits_to_read
         0: .line 183
            lconst_0
            lstore 3 /* result */
        start local 3 // long result
         1: .line 184
            iload 1 /* from */
            istore 5 /* i */
        start local 5 // int i
         2: goto 8
         3: .line 185
      StackMap locals: long int
      StackMap stack:
            aload 0 /* str */
            iload 5 /* i */
            invokevirtual java.lang.String.charAt:(I)C
            bipush 48
            isub
            istore 6 /* digit */
        start local 6 // int digit
         4: .line 186
            getstatic com.oracle.truffle.js.runtime.doubleconv.Bignum.$assertionsDisabled:Z
            ifne 6
            iload 6 /* digit */
            iflt 5
            iload 6 /* digit */
            bipush 9
            if_icmple 6
      StackMap locals: int
      StackMap stack:
         5: new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         6: .line 187
      StackMap locals:
      StackMap stack:
            lload 3 /* result */
            ldc 10
            lmul
            iload 6 /* digit */
            i2l
            ladd
            lstore 3 /* result */
        end local 6 // int digit
         7: .line 184
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
         8: iload 5 /* i */
            iload 1 /* from */
            iload 2 /* digits_to_read */
            iadd
            if_icmplt 3
        end local 5 // int i
         9: .line 189
            lload 3 /* result */
            lreturn
        end local 3 // long result
        end local 2 // int digits_to_read
        end local 1 // int from
        end local 0 // java.lang.String str
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   10     0             str  Ljava/lang/String;
            0   10     1            from  I
            0   10     2  digits_to_read  I
            1   10     3          result  J
            2    9     5               i  I
            4    7     6           digit  I
    MethodParameters:
                Name  Flags
      str             final
      from            final
      digits_to_read  final

  void assignDecimalString(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=6, args_size=2
        start local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum this
        start local 1 // java.lang.String str
         0: .line 196
            aload 0 /* this */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.zero:()V
         1: .line 197
            aload 1 /* str */
            invokevirtual java.lang.String.length:()I
            istore 2 /* length */
        start local 2 // int length
         2: .line 198
            iconst_0
            istore 3 /* pos */
        start local 3 // int pos
         3: .line 200
            goto 9
         4: .line 201
      StackMap locals: int int
      StackMap stack:
            aload 1 /* str */
            iload 3 /* pos */
            bipush 19
            invokestatic com.oracle.truffle.js.runtime.doubleconv.Bignum.readUInt64:(Ljava/lang/String;II)J
            lstore 4 /* digits */
        start local 4 // long digits
         5: .line 202
            iinc 3 /* pos */ 19
         6: .line 203
            iinc 2 /* length */ -19
         7: .line 204
            aload 0 /* this */
            bipush 19
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.multiplyByPowerOfTen:(I)V
         8: .line 205
            aload 0 /* this */
            lload 4 /* digits */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.addUInt64:(J)V
        end local 4 // long digits
         9: .line 200
      StackMap locals:
      StackMap stack:
            iload 2 /* length */
            bipush 19
            if_icmpge 4
        10: .line 207
            aload 1 /* str */
            iload 3 /* pos */
            iload 2 /* length */
            invokestatic com.oracle.truffle.js.runtime.doubleconv.Bignum.readUInt64:(Ljava/lang/String;II)J
            lstore 4 /* digits */
        start local 4 // long digits
        11: .line 208
            aload 0 /* this */
            iload 2 /* length */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.multiplyByPowerOfTen:(I)V
        12: .line 209
            aload 0 /* this */
            lload 4 /* digits */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.addUInt64:(J)V
        13: .line 210
            aload 0 /* this */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.clamp:()V
        14: .line 211
            return
        end local 4 // long digits
        end local 3 // int pos
        end local 2 // int length
        end local 1 // java.lang.String str
        end local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   15     0    this  Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;
            0   15     1     str  Ljava/lang/String;
            2   15     2  length  I
            3   15     3     pos  I
            5    9     4  digits  J
           11   15     4  digits  J
    MethodParameters:
      Name  Flags
      str   final

  static int hexCharValue(char);
    descriptor: (C)I
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // char c
         0: .line 215
            bipush 48
            iload 0 /* c */
            if_icmpgt 1
            iload 0 /* c */
            bipush 57
            if_icmpgt 1
            iload 0 /* c */
            bipush 48
            isub
            ireturn
         1: .line 216
      StackMap locals:
      StackMap stack:
            bipush 97
            iload 0 /* c */
            if_icmpgt 2
            iload 0 /* c */
            bipush 102
            if_icmpgt 2
            bipush 10
            iload 0 /* c */
            iadd
            bipush 97
            isub
            ireturn
         2: .line 217
      StackMap locals:
      StackMap stack:
            getstatic com.oracle.truffle.js.runtime.doubleconv.Bignum.$assertionsDisabled:Z
            ifne 4
            bipush 65
            iload 0 /* c */
            if_icmpgt 3
            iload 0 /* c */
            bipush 70
            if_icmple 4
      StackMap locals:
      StackMap stack:
         3: new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         4: .line 218
      StackMap locals:
      StackMap stack:
            bipush 10
            iload 0 /* c */
            iadd
            bipush 65
            isub
            ireturn
        end local 0 // char c
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0     c  C
    MethodParameters:
      Name  Flags
      c     final

  void assignHexString(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0000) 
    Code:
      stack=4, locals=8, args_size=2
        start local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum this
        start local 1 // java.lang.String str
         0: .line 223
            aload 0 /* this */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.zero:()V
         1: .line 224
            aload 1 /* str */
            invokevirtual java.lang.String.length:()I
            istore 2 /* length */
        start local 2 // int length
         2: .line 226
            iload 2 /* length */
            iconst_4
            imul
            bipush 28
            idiv
            iconst_1
            iadd
            istore 3 /* needed_bigits */
        start local 3 // int needed_bigits
         3: .line 227
            aload 0 /* this */
            iload 3 /* needed_bigits */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.ensureCapacity:(I)V
         4: .line 228
            iload 2 /* length */
            iconst_1
            isub
            istore 4 /* string_index */
        start local 4 // int string_index
         5: .line 229
            iconst_0
            istore 5 /* i */
        start local 5 // int i
         6: goto 15
         7: .line 231
      StackMap locals: com.oracle.truffle.js.runtime.doubleconv.Bignum java.lang.String int int int int
      StackMap stack:
            iconst_0
            istore 6 /* current_bigit */
        start local 6 // int current_bigit
         8: .line 232
            iconst_0
            istore 7 /* j */
        start local 7 // int j
         9: goto 12
        10: .line 233
      StackMap locals: int int
      StackMap stack:
            iload 6 /* current_bigit */
            aload 1 /* str */
            iload 4 /* string_index */
            iinc 4 /* string_index */ -1
            invokevirtual java.lang.String.charAt:(I)C
            invokestatic com.oracle.truffle.js.runtime.doubleconv.Bignum.hexCharValue:(C)I
            iload 7 /* j */
            iconst_4
            imul
            ishl
            iadd
            istore 6 /* current_bigit */
        11: .line 232
            iinc 7 /* j */ 1
      StackMap locals:
      StackMap stack:
        12: iload 7 /* j */
            bipush 7
            if_icmplt 10
        end local 7 // int j
        13: .line 235
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
            iload 5 /* i */
            iload 6 /* current_bigit */
            iastore
        end local 6 // int current_bigit
        14: .line 229
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        15: iload 5 /* i */
            iload 3 /* needed_bigits */
            iconst_1
            isub
            if_icmplt 7
        end local 5 // int i
        16: .line 237
            aload 0 /* this */
            iload 3 /* needed_bigits */
            iconst_1
            isub
            putfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
        17: .line 239
            iconst_0
            istore 5 /* most_significant_bigit */
        start local 5 // int most_significant_bigit
        18: .line 240
            iconst_0
            istore 6 /* j */
        start local 6 // int j
        19: goto 23
        20: .line 241
      StackMap locals: int
      StackMap stack:
            iload 5 /* most_significant_bigit */
            iconst_4
            ishl
            istore 5 /* most_significant_bigit */
        21: .line 242
            iload 5 /* most_significant_bigit */
            aload 1 /* str */
            iload 6 /* j */
            invokevirtual java.lang.String.charAt:(I)C
            invokestatic com.oracle.truffle.js.runtime.doubleconv.Bignum.hexCharValue:(C)I
            iadd
            istore 5 /* most_significant_bigit */
        22: .line 240
            iinc 6 /* j */ 1
      StackMap locals:
      StackMap stack:
        23: iload 6 /* j */
            iload 4 /* string_index */
            if_icmple 20
        end local 6 // int j
        24: .line 244
            iload 5 /* most_significant_bigit */
            ifeq 27
        25: .line 245
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            iload 5 /* most_significant_bigit */
            iastore
        26: .line 246
            aload 0 /* this */
            dup
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            iconst_1
            iadd
            putfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
        27: .line 248
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.clamp:()V
        28: .line 249
            return
        end local 5 // int most_significant_bigit
        end local 4 // int string_index
        end local 3 // int needed_bigits
        end local 2 // int length
        end local 1 // java.lang.String str
        end local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum this
      LocalVariableTable:
        Start  End  Slot                    Name  Signature
            0   29     0                    this  Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;
            0   29     1                     str  Ljava/lang/String;
            2   29     2                  length  I
            3   29     3           needed_bigits  I
            5   29     4            string_index  I
            6   16     5                       i  I
            8   14     6           current_bigit  I
            9   13     7                       j  I
           18   29     5  most_significant_bigit  I
           19   24     6                       j  I
    MethodParameters:
      Name  Flags
      str   final

  void addUInt64(long);
    descriptor: (J)V
    flags: (0x0000) 
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum this
        start local 1 // long operand
         0: .line 253
            lload 1 /* operand */
            lconst_0
            lcmp
            ifne 1
            return
         1: .line 254
      StackMap locals:
      StackMap stack:
            new com.oracle.truffle.js.runtime.doubleconv.Bignum
            dup
            invokespecial com.oracle.truffle.js.runtime.doubleconv.Bignum.<init>:()V
            astore 3 /* other */
        start local 3 // com.oracle.truffle.js.runtime.doubleconv.Bignum other
         2: .line 255
            aload 3 /* other */
            lload 1 /* operand */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.assignUInt64:(J)V
         3: .line 256
            aload 0 /* this */
            aload 3 /* other */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.addBignum:(Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;)V
         4: .line 257
            return
        end local 3 // com.oracle.truffle.js.runtime.doubleconv.Bignum other
        end local 1 // long operand
        end local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;
            0    5     1  operand  J
            2    5     3    other  Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;
    MethodParameters:
         Name  Flags
      operand  final

  void addBignum(com.oracle.truffle.js.runtime.doubleconv.Bignum);
    descriptor: (Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;)V
    flags: (0x0000) 
    Code:
      stack=4, locals=6, args_size=2
        start local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum this
        start local 1 // com.oracle.truffle.js.runtime.doubleconv.Bignum other
         0: .line 261
            getstatic com.oracle.truffle.js.runtime.doubleconv.Bignum.$assertionsDisabled:Z
            ifne 1
            aload 0 /* this */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.isClamped:()Z
            ifne 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 262
      StackMap locals:
      StackMap stack:
            getstatic com.oracle.truffle.js.runtime.doubleconv.Bignum.$assertionsDisabled:Z
            ifne 2
            aload 1 /* other */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.isClamped:()Z
            ifne 2
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         2: .line 266
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* other */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.align:(Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;)V
         3: .line 280
            aload 0 /* this */
            iconst_1
            aload 0 /* this */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.bigitLength:()I
            aload 1 /* other */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.bigitLength:()I
            invokestatic java.lang.Math.max:(II)I
            iadd
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.exponent_:I
            isub
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.ensureCapacity:(I)V
         4: .line 281
            iconst_0
            istore 2 /* carry */
        start local 2 // int carry
         5: .line 282
            aload 1 /* other */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.exponent_:I
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.exponent_:I
            isub
            istore 3 /* bigit_pos */
        start local 3 // int bigit_pos
         6: .line 283
            getstatic com.oracle.truffle.js.runtime.doubleconv.Bignum.$assertionsDisabled:Z
            ifne 7
            iload 3 /* bigit_pos */
            ifge 7
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         7: .line 284
      StackMap locals: int int
      StackMap stack:
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         8: goto 14
         9: .line 285
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
            iload 3 /* bigit_pos */
            iaload
            aload 1 /* other */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
            iload 4 /* i */
            iaload
            iadd
            iload 2 /* carry */
            iadd
            istore 5 /* sum */
        start local 5 // int sum
        10: .line 286
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
            iload 3 /* bigit_pos */
            iload 5 /* sum */
            ldc 268435455
            iand
            iastore
        11: .line 287
            iload 5 /* sum */
            bipush 28
            iushr
            istore 2 /* carry */
        12: .line 288
            iinc 3 /* bigit_pos */ 1
        end local 5 // int sum
        13: .line 284
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        14: iload 4 /* i */
            aload 1 /* other */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            if_icmplt 9
        end local 4 // int i
        15: .line 291
            goto 20
        16: .line 292
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
            iload 3 /* bigit_pos */
            iaload
            iload 2 /* carry */
            iadd
            istore 4 /* sum */
        start local 4 // int sum
        17: .line 293
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
            iload 3 /* bigit_pos */
            iload 4 /* sum */
            ldc 268435455
            iand
            iastore
        18: .line 294
            iload 4 /* sum */
            bipush 28
            iushr
            istore 2 /* carry */
        19: .line 295
            iinc 3 /* bigit_pos */ 1
        end local 4 // int sum
        20: .line 291
      StackMap locals:
      StackMap stack:
            iload 2 /* carry */
            ifne 16
        21: .line 297
            aload 0 /* this */
            iload 3 /* bigit_pos */
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            invokestatic java.lang.Math.max:(II)I
            putfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
        22: .line 298
            getstatic com.oracle.truffle.js.runtime.doubleconv.Bignum.$assertionsDisabled:Z
            ifne 23
            aload 0 /* this */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.isClamped:()Z
            ifne 23
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        23: .line 299
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int bigit_pos
        end local 2 // int carry
        end local 1 // com.oracle.truffle.js.runtime.doubleconv.Bignum other
        end local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   24     0       this  Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;
            0   24     1      other  Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;
            5   24     2      carry  I
            6   24     3  bigit_pos  I
            8   15     4          i  I
           10   13     5        sum  I
           17   20     4        sum  I
    MethodParameters:
       Name  Flags
      other  final

  void subtractBignum(com.oracle.truffle.js.runtime.doubleconv.Bignum);
    descriptor: (Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;)V
    flags: (0x0000) 
    Code:
      stack=4, locals=6, args_size=2
        start local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum this
        start local 1 // com.oracle.truffle.js.runtime.doubleconv.Bignum other
         0: .line 303
            getstatic com.oracle.truffle.js.runtime.doubleconv.Bignum.$assertionsDisabled:Z
            ifne 1
            aload 0 /* this */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.isClamped:()Z
            ifne 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 304
      StackMap locals:
      StackMap stack:
            getstatic com.oracle.truffle.js.runtime.doubleconv.Bignum.$assertionsDisabled:Z
            ifne 2
            aload 1 /* other */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.isClamped:()Z
            ifne 2
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         2: .line 306
      StackMap locals:
      StackMap stack:
            getstatic com.oracle.truffle.js.runtime.doubleconv.Bignum.$assertionsDisabled:Z
            ifne 3
            aload 1 /* other */
            aload 0 /* this */
            invokestatic com.oracle.truffle.js.runtime.doubleconv.Bignum.lessEqual:(Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;)Z
            ifne 3
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         3: .line 308
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* other */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.align:(Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;)V
         4: .line 310
            aload 1 /* other */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.exponent_:I
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.exponent_:I
            isub
            istore 2 /* offset */
        start local 2 // int offset
         5: .line 311
            iconst_0
            istore 3 /* borrow */
        start local 3 // int borrow
         6: .line 313
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         7: goto 13
         8: .line 314
      StackMap locals: int int int
      StackMap stack:
            getstatic com.oracle.truffle.js.runtime.doubleconv.Bignum.$assertionsDisabled:Z
            ifne 9
            iload 3 /* borrow */
            ifeq 9
            iload 3 /* borrow */
            iconst_1
            if_icmpeq 9
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         9: .line 315
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
            iload 4 /* i */
            iload 2 /* offset */
            iadd
            iaload
            aload 1 /* other */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
            iload 4 /* i */
            iaload
            isub
            iload 3 /* borrow */
            isub
            istore 5 /* difference */
        start local 5 // int difference
        10: .line 316
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
            iload 4 /* i */
            iload 2 /* offset */
            iadd
            iload 5 /* difference */
            ldc 268435455
            iand
            iastore
        11: .line 317
            iload 5 /* difference */
            bipush 31
            iushr
            istore 3 /* borrow */
        end local 5 // int difference
        12: .line 313
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        13: iload 4 /* i */
            aload 1 /* other */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            if_icmplt 8
        14: .line 319
            goto 19
        15: .line 320
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
            iload 4 /* i */
            iload 2 /* offset */
            iadd
            iaload
            iload 3 /* borrow */
            isub
            istore 5 /* difference */
        start local 5 // int difference
        16: .line 321
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
            iload 4 /* i */
            iload 2 /* offset */
            iadd
            iload 5 /* difference */
            ldc 268435455
            iand
            iastore
        17: .line 322
            iload 5 /* difference */
            bipush 31
            iushr
            istore 3 /* borrow */
        18: .line 323
            iinc 4 /* i */ 1
        end local 5 // int difference
        19: .line 319
      StackMap locals:
      StackMap stack:
            iload 3 /* borrow */
            ifne 15
        20: .line 325
            aload 0 /* this */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.clamp:()V
        21: .line 326
            return
        end local 4 // int i
        end local 3 // int borrow
        end local 2 // int offset
        end local 1 // com.oracle.truffle.js.runtime.doubleconv.Bignum other
        end local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   22     0        this  Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;
            0   22     1       other  Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;
            5   22     2      offset  I
            6   22     3      borrow  I
            7   22     4           i  I
           10   12     5  difference  I
           16   19     5  difference  I
    MethodParameters:
       Name  Flags
      other  final

  void shiftLeft(int);
    descriptor: (I)V
    flags: (0x0000) 
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum this
        start local 1 // int shift_amount
         0: .line 330
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            ifne 1
            return
         1: .line 331
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.exponent_:I
            iload 1 /* shift_amount */
            bipush 28
            idiv
            iadd
            putfield com.oracle.truffle.js.runtime.doubleconv.Bignum.exponent_:I
         2: .line 332
            iload 1 /* shift_amount */
            bipush 28
            irem
            istore 2 /* local_shift */
        start local 2 // int local_shift
         3: .line 333
            aload 0 /* this */
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            iconst_1
            iadd
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.ensureCapacity:(I)V
         4: .line 334
            aload 0 /* this */
            iload 2 /* local_shift */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.bigitsShiftLeft:(I)V
         5: .line 335
            return
        end local 2 // int local_shift
        end local 1 // int shift_amount
        end local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    6     0          this  Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;
            0    6     1  shift_amount  I
            3    6     2   local_shift  I
    MethodParameters:
              Name  Flags
      shift_amount  final

  void multiplyByUInt32(int);
    descriptor: (I)V
    flags: (0x0000) 
    Code:
      stack=6, locals=7, args_size=2
        start local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum this
        start local 1 // int factor
         0: .line 339
            iload 1 /* factor */
            iconst_1
            if_icmpne 1
            return
         1: .line 340
      StackMap locals:
      StackMap stack:
            iload 1 /* factor */
            ifne 4
         2: .line 341
            aload 0 /* this */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.zero:()V
         3: .line 342
            return
         4: .line 344
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            ifne 5
            return
         5: .line 349
      StackMap locals:
      StackMap stack:
            lconst_0
            lstore 2 /* carry */
        start local 2 // long carry
         6: .line 350
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         7: goto 12
         8: .line 351
      StackMap locals: long int
      StackMap stack:
            iload 1 /* factor */
            i2l
            ldc 4294967295
            land
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
            iload 4 /* i */
            iaload
            i2l
            lmul
            lload 2 /* carry */
            ladd
            lstore 5 /* product */
        start local 5 // long product
         9: .line 352
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
            iload 4 /* i */
            lload 5 /* product */
            ldc 268435455
            land
            l2i
            iastore
        10: .line 353
            lload 5 /* product */
            bipush 28
            lushr
            lstore 2 /* carry */
        end local 5 // long product
        11: .line 350
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        12: iload 4 /* i */
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            if_icmplt 8
        end local 4 // int i
        13: .line 355
            goto 18
        14: .line 356
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            iconst_1
            iadd
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.ensureCapacity:(I)V
        15: .line 357
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            lload 2 /* carry */
            ldc 268435455
            land
            l2i
            iastore
        16: .line 358
            aload 0 /* this */
            dup
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            iconst_1
            iadd
            putfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
        17: .line 359
            lload 2 /* carry */
            bipush 28
            lushr
            lstore 2 /* carry */
        18: .line 355
      StackMap locals:
      StackMap stack:
            lload 2 /* carry */
            lconst_0
            lcmp
            ifne 14
        19: .line 361
            return
        end local 2 // long carry
        end local 1 // int factor
        end local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   20     0     this  Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;
            0   20     1   factor  I
            6   20     2    carry  J
            7   13     4        i  I
            9   11     5  product  J
    MethodParameters:
        Name  Flags
      factor  final

  void multiplyByUInt64(long);
    descriptor: (J)V
    flags: (0x0000) 
    Code:
      stack=6, locals=16, args_size=2
        start local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum this
        start local 1 // long factor
         0: .line 365
            lload 1 /* factor */
            lconst_1
            lcmp
            ifne 1
            return
         1: .line 366
      StackMap locals:
      StackMap stack:
            lload 1 /* factor */
            lconst_0
            lcmp
            ifne 4
         2: .line 367
            aload 0 /* this */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.zero:()V
         3: .line 368
            return
         4: .line 371
      StackMap locals:
      StackMap stack:
            lconst_0
            lstore 3 /* carry */
        start local 3 // long carry
         5: .line 372
            lload 1 /* factor */
            ldc 4294967295
            land
            lstore 5 /* low */
        start local 5 // long low
         6: .line 373
            lload 1 /* factor */
            bipush 32
            lushr
            lstore 7 /* high */
        start local 7 // long high
         7: .line 374
            iconst_0
            istore 9 /* i */
        start local 9 // int i
         8: goto 17
         9: .line 375
      StackMap locals: com.oracle.truffle.js.runtime.doubleconv.Bignum long long long long int
      StackMap stack:
            lload 5 /* low */
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
            iload 9 /* i */
            iaload
            i2l
            lmul
            lstore 10 /* product_low */
        start local 10 // long product_low
        10: .line 376
            lload 7 /* high */
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
            iload 9 /* i */
            iaload
            i2l
            lmul
            lstore 12 /* product_high */
        start local 12 // long product_high
        11: .line 377
            lload 3 /* carry */
            ldc 268435455
            land
            lload 10 /* product_low */
            ladd
            lstore 14 /* tmp */
        start local 14 // long tmp
        12: .line 378
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
            iload 9 /* i */
            lload 14 /* tmp */
            ldc 268435455
            land
            l2i
            iastore
        13: .line 379
            lload 3 /* carry */
            bipush 28
            lushr
            lload 14 /* tmp */
            bipush 28
            lushr
            ladd
        14: .line 380
            lload 12 /* product_high */
            iconst_4
            lshl
        15: .line 379
            ladd
            lstore 3 /* carry */
        end local 14 // long tmp
        end local 12 // long product_high
        end local 10 // long product_low
        16: .line 374
            iinc 9 /* i */ 1
      StackMap locals:
      StackMap stack:
        17: iload 9 /* i */
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            if_icmplt 9
        end local 9 // int i
        18: .line 382
            goto 23
        19: .line 383
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            iconst_1
            iadd
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.ensureCapacity:(I)V
        20: .line 384
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            lload 3 /* carry */
            ldc 268435455
            land
            l2i
            iastore
        21: .line 385
            aload 0 /* this */
            dup
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            iconst_1
            iadd
            putfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
        22: .line 386
            lload 3 /* carry */
            bipush 28
            lushr
            lstore 3 /* carry */
        23: .line 382
      StackMap locals:
      StackMap stack:
            lload 3 /* carry */
            lconst_0
            lcmp
            ifne 19
        24: .line 388
            return
        end local 7 // long high
        end local 5 // long low
        end local 3 // long carry
        end local 1 // long factor
        end local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   25     0          this  Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;
            0   25     1        factor  J
            5   25     3         carry  J
            6   25     5           low  J
            7   25     7          high  J
            8   18     9             i  I
           10   16    10   product_low  J
           11   16    12  product_high  J
           12   16    14           tmp  J
    MethodParameters:
        Name  Flags
      factor  final

  void multiplyByPowerOfTen(int);
    descriptor: (I)V
    flags: (0x0000) 
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum this
        start local 1 // int exponent
         0: .line 407
            bipush 12
            newarray 10
            dup
            iconst_0
            iconst_5
            iastore
            dup
            iconst_1
            bipush 25
            iastore
            dup
            iconst_2
            bipush 125
            iastore
            dup
            iconst_3
            sipush 625
            iastore
            dup
            iconst_4
            sipush 3125
            iastore
            dup
            iconst_5
            sipush 15625
            iastore
            dup
            bipush 6
         1: .line 408
            ldc 78125
            iastore
            dup
            bipush 7
            ldc 390625
            iastore
            dup
            bipush 8
            ldc 1953125
            iastore
            dup
            bipush 9
            ldc 9765625
            iastore
            dup
            bipush 10
            ldc 48828125
            iastore
            dup
            bipush 11
            ldc 244140625
            iastore
         2: .line 406
            astore 2 /* kFive1_to_12 */
        start local 2 // int[] kFive1_to_12
         3: .line 410
            getstatic com.oracle.truffle.js.runtime.doubleconv.Bignum.$assertionsDisabled:Z
            ifne 4
            iload 1 /* exponent */
            ifge 4
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         4: .line 411
      StackMap locals: int[]
      StackMap stack:
            iload 1 /* exponent */
            ifne 5
            return
         5: .line 412
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            ifne 6
            return
         6: .line 415
      StackMap locals:
      StackMap stack:
            iload 1 /* exponent */
            istore 3 /* remaining_exponent */
        start local 3 // int remaining_exponent
         7: .line 416
            goto 10
         8: .line 417
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            ldc 7450580596923828125
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.multiplyByUInt64:(J)V
         9: .line 418
            iinc 3 /* remaining_exponent */ -27
        10: .line 416
      StackMap locals:
      StackMap stack:
            iload 3 /* remaining_exponent */
            bipush 27
            if_icmpge 8
        11: .line 420
            goto 14
        12: .line 421
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            ldc 1220703125
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.multiplyByUInt32:(I)V
        13: .line 422
            iinc 3 /* remaining_exponent */ -13
        14: .line 420
      StackMap locals:
      StackMap stack:
            iload 3 /* remaining_exponent */
            bipush 13
            if_icmpge 12
        15: .line 424
            iload 3 /* remaining_exponent */
            ifle 17
        16: .line 425
            aload 0 /* this */
            aload 2 /* kFive1_to_12 */
            iload 3 /* remaining_exponent */
            iconst_1
            isub
            iaload
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.multiplyByUInt32:(I)V
        17: .line 427
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* exponent */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.shiftLeft:(I)V
        18: .line 428
            return
        end local 3 // int remaining_exponent
        end local 2 // int[] kFive1_to_12
        end local 1 // int exponent
        end local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0   19     0                this  Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;
            0   19     1            exponent  I
            3   19     2        kFive1_to_12  [I
            7   19     3  remaining_exponent  I
    MethodParameters:
          Name  Flags
      exponent  final

  void square();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=6, locals=10, args_size=1
        start local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum this
         0: .line 432
            getstatic com.oracle.truffle.js.runtime.doubleconv.Bignum.$assertionsDisabled:Z
            ifne 1
            aload 0 /* this */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.isClamped:()Z
            ifne 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 433
      StackMap locals:
      StackMap stack:
            iconst_2
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            imul
            istore 1 /* product_length */
        start local 1 // int product_length
         2: .line 434
            aload 0 /* this */
            iload 1 /* product_length */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.ensureCapacity:(I)V
         3: .line 448
            ldc 256
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            i2l
            lcmp
            ifgt 5
         4: .line 449
            new java.lang.RuntimeException
            dup
            ldc "unimplemented"
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 451
      StackMap locals: int
      StackMap stack:
            lconst_0
            lstore 2 /* accumulator */
        start local 2 // long accumulator
         6: .line 453
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            istore 4 /* copy_offset */
        start local 4 // int copy_offset
         7: .line 454
            iconst_0
            istore 5 /* i */
        start local 5 // int i
         8: goto 11
         9: .line 455
      StackMap locals: long int int
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
            iload 4 /* copy_offset */
            iload 5 /* i */
            iadd
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
            iload 5 /* i */
            iaload
            iastore
        10: .line 454
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        11: iload 5 /* i */
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            if_icmplt 9
        end local 5 // int i
        12: .line 458
            iconst_0
            istore 5 /* i */
        start local 5 // int i
        13: goto 26
        14: .line 461
      StackMap locals:
      StackMap stack:
            iload 5 /* i */
            istore 6 /* bigit_index1 */
        start local 6 // int bigit_index1
        15: .line 462
            iconst_0
            istore 7 /* bigit_index2 */
        start local 7 // int bigit_index2
        16: .line 464
            goto 22
        17: .line 465
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
            iload 4 /* copy_offset */
            iload 6 /* bigit_index1 */
            iadd
            iaload
            istore 8 /* int1 */
        start local 8 // int int1
        18: .line 466
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
            iload 4 /* copy_offset */
            iload 7 /* bigit_index2 */
            iadd
            iaload
            istore 9 /* int2 */
        start local 9 // int int2
        19: .line 467
            lload 2 /* accumulator */
            iload 8 /* int1 */
            i2l
            iload 9 /* int2 */
            i2l
            lmul
            ladd
            lstore 2 /* accumulator */
        20: .line 468
            iinc 6 /* bigit_index1 */ -1
        21: .line 469
            iinc 7 /* bigit_index2 */ 1
        end local 9 // int int2
        end local 8 // int int1
        22: .line 464
      StackMap locals:
      StackMap stack:
            iload 6 /* bigit_index1 */
            ifge 17
        23: .line 471
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
            iload 5 /* i */
            lload 2 /* accumulator */
            ldc 268435455
            land
            l2i
            iastore
        24: .line 472
            lload 2 /* accumulator */
            bipush 28
            lushr
            lstore 2 /* accumulator */
        end local 7 // int bigit_index2
        end local 6 // int bigit_index1
        25: .line 458
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        26: iload 5 /* i */
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            if_icmplt 14
        end local 5 // int i
        27: .line 474
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            istore 5 /* i */
        start local 5 // int i
        28: goto 41
        29: .line 475
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            iconst_1
            isub
            istore 6 /* bigit_index1 */
        start local 6 // int bigit_index1
        30: .line 476
            iload 5 /* i */
            iload 6 /* bigit_index1 */
            isub
            istore 7 /* bigit_index2 */
        start local 7 // int bigit_index2
        31: .line 479
            goto 37
        32: .line 480
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
            iload 4 /* copy_offset */
            iload 6 /* bigit_index1 */
            iadd
            iaload
            istore 8 /* int1 */
        start local 8 // int int1
        33: .line 481
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
            iload 4 /* copy_offset */
            iload 7 /* bigit_index2 */
            iadd
            iaload
            istore 9 /* int2 */
        start local 9 // int int2
        34: .line 482
            lload 2 /* accumulator */
            iload 8 /* int1 */
            i2l
            iload 9 /* int2 */
            i2l
            lmul
            ladd
            lstore 2 /* accumulator */
        35: .line 483
            iinc 6 /* bigit_index1 */ -1
        36: .line 484
            iinc 7 /* bigit_index2 */ 1
        end local 9 // int int2
        end local 8 // int int1
        37: .line 479
      StackMap locals:
      StackMap stack:
            iload 7 /* bigit_index2 */
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            if_icmplt 32
        38: .line 489
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
            iload 5 /* i */
            lload 2 /* accumulator */
            ldc 268435455
            land
            l2i
            iastore
        39: .line 490
            lload 2 /* accumulator */
            bipush 28
            lushr
            lstore 2 /* accumulator */
        end local 7 // int bigit_index2
        end local 6 // int bigit_index1
        40: .line 474
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        41: iload 5 /* i */
            iload 1 /* product_length */
            if_icmplt 29
        end local 5 // int i
        42: .line 494
            getstatic com.oracle.truffle.js.runtime.doubleconv.Bignum.$assertionsDisabled:Z
            ifne 43
            lload 2 /* accumulator */
            lconst_0
            lcmp
            ifeq 43
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        43: .line 497
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* product_length */
            putfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
        44: .line 498
            aload 0 /* this */
            dup
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.exponent_:I
            iconst_2
            imul
            putfield com.oracle.truffle.js.runtime.doubleconv.Bignum.exponent_:I
        45: .line 499
            aload 0 /* this */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.clamp:()V
        46: .line 500
            return
        end local 4 // int copy_offset
        end local 2 // long accumulator
        end local 1 // int product_length
        end local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   47     0            this  Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;
            2   47     1  product_length  I
            6   47     2     accumulator  J
            7   47     4     copy_offset  I
            8   12     5               i  I
           13   27     5               i  I
           15   25     6    bigit_index1  I
           16   25     7    bigit_index2  I
           18   22     8            int1  I
           19   22     9            int2  I
           28   42     5               i  I
           30   40     6    bigit_index1  I
           31   40     7    bigit_index2  I
           33   37     8            int1  I
           34   37     9            int2  I

  void assignPowerUInt16(int, int);
    descriptor: (II)V
    flags: (0x0000) 
    Code:
      stack=4, locals=14, args_size=3
        start local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum this
        start local 1 // int base
        start local 2 // int power_exponent
         0: .line 504
            getstatic com.oracle.truffle.js.runtime.doubleconv.Bignum.$assertionsDisabled:Z
            ifne 1
            iload 1 /* base */
            ifne 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 505
      StackMap locals:
      StackMap stack:
            getstatic com.oracle.truffle.js.runtime.doubleconv.Bignum.$assertionsDisabled:Z
            ifne 2
            iload 2 /* power_exponent */
            ifge 2
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         2: .line 506
      StackMap locals:
      StackMap stack:
            iload 2 /* power_exponent */
            ifne 5
         3: .line 507
            aload 0 /* this */
            iconst_1
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.assignUInt16:(C)V
         4: .line 508
            return
         5: .line 510
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.zero:()V
         6: .line 511
            iconst_0
            istore 3 /* shifts */
        start local 3 // int shifts
         7: .line 515
            goto 10
         8: .line 516
      StackMap locals: int
      StackMap stack:
            iload 1 /* base */
            iconst_1
            iushr
            istore 1 /* base */
         9: .line 517
            iinc 3 /* shifts */ 1
        10: .line 515
      StackMap locals:
      StackMap stack:
            iload 1 /* base */
            iconst_1
            iand
            ifeq 8
        11: .line 519
            iconst_0
            istore 4 /* bit_size */
        start local 4 // int bit_size
        12: .line 520
            iload 1 /* base */
            istore 5 /* tmp_base */
        start local 5 // int tmp_base
        13: .line 521
            goto 16
        14: .line 522
      StackMap locals: int int
      StackMap stack:
            iload 5 /* tmp_base */
            iconst_1
            iushr
            istore 5 /* tmp_base */
        15: .line 523
            iinc 4 /* bit_size */ 1
        16: .line 521
      StackMap locals:
      StackMap stack:
            iload 5 /* tmp_base */
            ifne 14
        17: .line 525
            iload 4 /* bit_size */
            iload 2 /* power_exponent */
            imul
            istore 6 /* final_size */
        start local 6 // int final_size
        18: .line 527
            aload 0 /* this */
            iload 6 /* final_size */
            bipush 28
            idiv
            iconst_2
            iadd
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.ensureCapacity:(I)V
        19: .line 530
            iconst_1
            istore 7 /* mask */
        start local 7 // int mask
        20: .line 531
            goto 22
      StackMap locals: int int
      StackMap stack:
        21: iload 7 /* mask */
            iconst_1
            ishl
            istore 7 /* mask */
      StackMap locals:
      StackMap stack:
        22: iload 2 /* power_exponent */
            iload 7 /* mask */
            if_icmpge 21
        23: .line 536
            iload 7 /* mask */
            iconst_2
            iushr
            istore 7 /* mask */
        24: .line 537
            iload 1 /* base */
            i2l
            lstore 8 /* this_value */
        start local 8 // long this_value
        25: .line 539
            iconst_0
            istore 10 /* delayed_multiplication */
        start local 10 // boolean delayed_multiplication
        26: .line 541
            goto 40
        27: .line 542
      StackMap locals: long int
      StackMap stack:
            lload 8 /* this_value */
            lload 8 /* this_value */
            lmul
            lstore 8 /* this_value */
        28: .line 545
            iload 2 /* power_exponent */
            iload 7 /* mask */
            iand
            ifeq 39
        29: .line 546
            getstatic com.oracle.truffle.js.runtime.doubleconv.Bignum.$assertionsDisabled:Z
            ifne 30
            iload 4 /* bit_size */
            ifgt 30
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        30: .line 548
      StackMap locals:
      StackMap stack:
            lconst_1
            bipush 64
            iload 4 /* bit_size */
            isub
            lshl
            lconst_1
            lsub
            ldc -1
            lxor
        31: .line 547
            lstore 11 /* base_bits_mask */
        start local 11 // long base_bits_mask
        32: .line 549
            lload 8 /* this_value */
            lload 11 /* base_bits_mask */
            land
            lconst_0
            lcmp
            ifne 33
            iconst_1
            goto 34
      StackMap locals: long
      StackMap stack:
        33: iconst_0
      StackMap locals:
      StackMap stack: int
        34: istore 13 /* high_bits_zero */
        start local 13 // boolean high_bits_zero
        35: .line 550
            iload 13 /* high_bits_zero */
            ifeq 38
        36: .line 551
            lload 8 /* this_value */
            iload 1 /* base */
            i2l
            lmul
            lstore 8 /* this_value */
        37: .line 552
            goto 39
        38: .line 553
      StackMap locals: int
      StackMap stack:
            iconst_1
            istore 10 /* delayed_multiplication */
        end local 13 // boolean high_bits_zero
        end local 11 // long base_bits_mask
        39: .line 556
      StackMap locals:
      StackMap stack:
            iload 7 /* mask */
            iconst_1
            iushr
            istore 7 /* mask */
        40: .line 541
      StackMap locals:
      StackMap stack:
            iload 7 /* mask */
            ifeq 41
            lload 8 /* this_value */
            ldc 4294967295
            lcmp
            ifle 27
        41: .line 558
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            lload 8 /* this_value */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.assignUInt64:(J)V
        42: .line 559
            iload 10 /* delayed_multiplication */
            ifeq 49
        43: .line 560
            aload 0 /* this */
            iload 1 /* base */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.multiplyByUInt32:(I)V
        44: .line 564
            goto 49
        45: .line 565
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.square:()V
        46: .line 566
            iload 2 /* power_exponent */
            iload 7 /* mask */
            iand
            ifeq 48
        47: .line 567
            aload 0 /* this */
            iload 1 /* base */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.multiplyByUInt32:(I)V
        48: .line 569
      StackMap locals:
      StackMap stack:
            iload 7 /* mask */
            iconst_1
            iushr
            istore 7 /* mask */
        49: .line 564
      StackMap locals:
      StackMap stack:
            iload 7 /* mask */
            ifne 45
        50: .line 573
            aload 0 /* this */
            iload 3 /* shifts */
            iload 2 /* power_exponent */
            imul
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.shiftLeft:(I)V
        51: .line 574
            return
        end local 10 // boolean delayed_multiplication
        end local 8 // long this_value
        end local 7 // int mask
        end local 6 // int final_size
        end local 5 // int tmp_base
        end local 4 // int bit_size
        end local 3 // int shifts
        end local 2 // int power_exponent
        end local 1 // int base
        end local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum this
      LocalVariableTable:
        Start  End  Slot                    Name  Signature
            0   52     0                    this  Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;
            0   52     1                    base  I
            0   52     2          power_exponent  I
            7   52     3                  shifts  I
           12   52     4                bit_size  I
           13   52     5                tmp_base  I
           18   52     6              final_size  I
           20   52     7                    mask  I
           25   52     8              this_value  J
           26   52    10  delayed_multiplication  Z
           32   39    11          base_bits_mask  J
           35   39    13          high_bits_zero  Z
    MethodParameters:
                Name  Flags
      base            
      power_exponent  final

  char divideModuloIntBignum(com.oracle.truffle.js.runtime.doubleconv.Bignum);
    descriptor: (Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;)C
    flags: (0x0000) 
    Code:
      stack=5, locals=6, args_size=2
        start local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum this
        start local 1 // com.oracle.truffle.js.runtime.doubleconv.Bignum other
         0: .line 579
            getstatic com.oracle.truffle.js.runtime.doubleconv.Bignum.$assertionsDisabled:Z
            ifne 1
            aload 0 /* this */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.isClamped:()Z
            ifne 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 580
      StackMap locals:
      StackMap stack:
            getstatic com.oracle.truffle.js.runtime.doubleconv.Bignum.$assertionsDisabled:Z
            ifne 2
            aload 1 /* other */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.isClamped:()Z
            ifne 2
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         2: .line 581
      StackMap locals:
      StackMap stack:
            getstatic com.oracle.truffle.js.runtime.doubleconv.Bignum.$assertionsDisabled:Z
            ifne 3
            aload 1 /* other */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            ifgt 3
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         3: .line 585
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.bigitLength:()I
            aload 1 /* other */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.bigitLength:()I
            if_icmpge 5
         4: .line 586
            iconst_0
            ireturn
         5: .line 589
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* other */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.align:(Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;)V
         6: .line 591
            iconst_0
            istore 2 /* result */
        start local 2 // char result
         7: .line 595
            goto 12
         8: .line 599
      StackMap locals: int
      StackMap stack:
            getstatic com.oracle.truffle.js.runtime.doubleconv.Bignum.$assertionsDisabled:Z
            ifne 9
            aload 1 /* other */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
            aload 1 /* other */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            iconst_1
            isub
            iaload
            ldc 16777216
            if_icmpge 9
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         9: .line 600
      StackMap locals:
      StackMap stack:
            getstatic com.oracle.truffle.js.runtime.doubleconv.Bignum.$assertionsDisabled:Z
            ifne 10
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            iconst_1
            isub
            iaload
            ldc 65536
            if_icmplt 10
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        10: .line 603
      StackMap locals:
      StackMap stack:
            iload 2 /* result */
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            iconst_1
            isub
            iaload
            iadd
            i2c
            istore 2 /* result */
        11: .line 604
            aload 0 /* this */
            aload 1 /* other */
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            iconst_1
            isub
            iaload
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.subtractTimes:(Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;I)V
        12: .line 595
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.bigitLength:()I
            aload 1 /* other */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.bigitLength:()I
            if_icmpgt 8
        13: .line 607
            getstatic com.oracle.truffle.js.runtime.doubleconv.Bignum.$assertionsDisabled:Z
            ifne 14
            aload 0 /* this */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.bigitLength:()I
            aload 1 /* other */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.bigitLength:()I
            if_icmpeq 14
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        14: .line 612
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            iconst_1
            isub
            iaload
            istore 3 /* this_bigit */
        start local 3 // int this_bigit
        15: .line 613
            aload 1 /* other */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
            aload 1 /* other */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            iconst_1
            isub
            iaload
            istore 4 /* other_bigit */
        start local 4 // int other_bigit
        16: .line 615
            aload 1 /* other */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            iconst_1
            if_icmpne 23
        17: .line 617
            iload 3 /* this_bigit */
            iload 4 /* other_bigit */
            invokestatic java.lang.Integer.divideUnsigned:(II)I
            istore 5 /* quotient */
        start local 5 // int quotient
        18: .line 618
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            iconst_1
            isub
            iload 3 /* this_bigit */
            iload 4 /* other_bigit */
            iload 5 /* quotient */
            imul
            isub
            iastore
        19: .line 619
            getstatic com.oracle.truffle.js.runtime.doubleconv.Bignum.$assertionsDisabled:Z
            ifne 20
            iload 5 /* quotient */
            ldc 65536
            invokestatic java.lang.Integer.compareUnsigned:(II)I
            iflt 20
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        20: .line 620
      StackMap locals: int int int
      StackMap stack:
            iload 2 /* result */
            iload 5 /* quotient */
            iadd
            i2c
            istore 2 /* result */
        21: .line 621
            aload 0 /* this */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.clamp:()V
        22: .line 622
            iload 2 /* result */
            ireturn
        end local 5 // int quotient
        23: .line 625
      StackMap locals:
      StackMap stack:
            iload 3 /* this_bigit */
            iload 4 /* other_bigit */
            iconst_1
            iadd
            invokestatic java.lang.Integer.divideUnsigned:(II)I
            istore 5 /* division_estimate */
        start local 5 // int division_estimate
        24: .line 626
            getstatic com.oracle.truffle.js.runtime.doubleconv.Bignum.$assertionsDisabled:Z
            ifne 25
            iload 5 /* division_estimate */
            ldc 65536
            invokestatic java.lang.Integer.compareUnsigned:(II)I
            iflt 25
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        25: .line 627
      StackMap locals: int
      StackMap stack:
            iload 2 /* result */
            iload 5 /* division_estimate */
            iadd
            i2c
            istore 2 /* result */
        26: .line 628
            aload 0 /* this */
            aload 1 /* other */
            iload 5 /* division_estimate */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.subtractTimes:(Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;I)V
        27: .line 630
            iload 4 /* other_bigit */
            iload 5 /* division_estimate */
            iconst_1
            iadd
            imul
            iload 3 /* this_bigit */
            if_icmple 31
        28: .line 633
            iload 2 /* result */
            ireturn
        29: .line 637
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* other */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.subtractBignum:(Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;)V
        30: .line 638
            iload 2 /* result */
            iconst_1
            iadd
            i2c
            istore 2 /* result */
        31: .line 636
      StackMap locals:
      StackMap stack:
            aload 1 /* other */
            aload 0 /* this */
            invokestatic com.oracle.truffle.js.runtime.doubleconv.Bignum.lessEqual:(Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;)Z
            ifne 29
        32: .line 640
            iload 2 /* result */
            ireturn
        end local 5 // int division_estimate
        end local 4 // int other_bigit
        end local 3 // int this_bigit
        end local 2 // char result
        end local 1 // com.oracle.truffle.js.runtime.doubleconv.Bignum other
        end local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   33     0               this  Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;
            0   33     1              other  Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;
            7   33     2             result  C
           15   33     3         this_bigit  I
           16   33     4        other_bigit  I
           18   23     5           quotient  I
           24   33     5  division_estimate  I
    MethodParameters:
       Name  Flags
      other  final

  static int sizeInHexChars(int);
    descriptor: (I)I
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // int number
         0: .line 645
            getstatic com.oracle.truffle.js.runtime.doubleconv.Bignum.$assertionsDisabled:Z
            ifne 1
            iload 0 /* number */
            ifgt 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 646
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 1 /* result */
        start local 1 // int result
         2: .line 647
            goto 5
         3: .line 648
      StackMap locals: int
      StackMap stack:
            iload 0 /* number */
            iconst_4
            iushr
            istore 0 /* number */
         4: .line 649
            iinc 1 /* result */ 1
         5: .line 647
      StackMap locals:
      StackMap stack:
            iload 0 /* number */
            ifne 3
         6: .line 651
            iload 1 /* result */
            ireturn
        end local 1 // int result
        end local 0 // int number
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0  number  I
            2    7     1  result  I
    MethodParameters:
        Name  Flags
      number  

  static char hexCharOfValue(int);
    descriptor: (I)C
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // int value
         0: .line 656
            getstatic com.oracle.truffle.js.runtime.doubleconv.Bignum.$assertionsDisabled:Z
            ifne 2
            iload 0 /* value */
            iflt 1
            iload 0 /* value */
            bipush 16
            if_icmple 2
      StackMap locals:
      StackMap stack:
         1: new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         2: .line 657
      StackMap locals:
      StackMap stack:
            iload 0 /* value */
            bipush 10
            if_icmpge 3
            iload 0 /* value */
            bipush 48
            iadd
            i2c
            ireturn
         3: .line 658
      StackMap locals:
      StackMap stack:
            iload 0 /* value */
            bipush 10
            isub
            bipush 65
            iadd
            i2c
            ireturn
        end local 0 // int value
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0  value  I
    MethodParameters:
       Name  Flags
      value  final

  java.lang.String toHexString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0000) 
    Code:
      stack=4, locals=7, args_size=1
        start local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum this
         0: .line 663
            getstatic com.oracle.truffle.js.runtime.doubleconv.Bignum.$assertionsDisabled:Z
            ifne 1
            aload 0 /* this */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.isClamped:()Z
            ifne 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 668
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            ifne 3
         2: .line 669
            ldc "0"
            areturn
         3: .line 672
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.bigitLength:()I
            iconst_1
            isub
            bipush 7
            imul
         4: .line 673
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            iconst_1
            isub
            iaload
            invokestatic com.oracle.truffle.js.runtime.doubleconv.Bignum.sizeInHexChars:(I)I
         5: .line 672
            iadd
            istore 1 /* needed_chars */
        start local 1 // int needed_chars
         6: .line 674
            new java.lang.StringBuilder
            dup
            iload 1 /* needed_chars */
            invokespecial java.lang.StringBuilder.<init>:(I)V
            astore 2 /* buffer */
        start local 2 // java.lang.StringBuilder buffer
         7: .line 675
            aload 2 /* buffer */
            iload 1 /* needed_chars */
            invokevirtual java.lang.StringBuilder.setLength:(I)V
         8: .line 677
            iload 1 /* needed_chars */
            iconst_1
            isub
            istore 3 /* string_index */
        start local 3 // int string_index
         9: .line 678
            iconst_0
            istore 4 /* i */
        start local 4 // int i
        10: goto 17
        11: .line 679
      StackMap locals: com.oracle.truffle.js.runtime.doubleconv.Bignum int java.lang.StringBuilder int int
      StackMap stack:
            iconst_0
            istore 5 /* j */
        start local 5 // int j
        12: goto 15
        13: .line 680
      StackMap locals: int
      StackMap stack:
            aload 2 /* buffer */
            iload 3 /* string_index */
            iinc 3 /* string_index */ -1
            bipush 48
            invokevirtual java.lang.StringBuilder.setCharAt:(IC)V
        14: .line 679
            iinc 5 /* j */ 1
      StackMap locals:
      StackMap stack:
        15: iload 5 /* j */
            bipush 7
            if_icmplt 13
        end local 5 // int j
        16: .line 678
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        17: iload 4 /* i */
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.exponent_:I
            if_icmplt 11
        end local 4 // int i
        18: .line 683
            iconst_0
            istore 4 /* i */
        start local 4 // int i
        19: goto 28
        20: .line 684
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
            iload 4 /* i */
            iaload
            istore 5 /* current_bigit */
        start local 5 // int current_bigit
        21: .line 685
            iconst_0
            istore 6 /* j */
        start local 6 // int j
        22: goto 26
        23: .line 686
      StackMap locals: int int
      StackMap stack:
            aload 2 /* buffer */
            iload 3 /* string_index */
            iinc 3 /* string_index */ -1
            iload 5 /* current_bigit */
            bipush 15
            iand
            invokestatic com.oracle.truffle.js.runtime.doubleconv.Bignum.hexCharOfValue:(I)C
            invokevirtual java.lang.StringBuilder.setCharAt:(IC)V
        24: .line 687
            iload 5 /* current_bigit */
            iconst_4
            iushr
            istore 5 /* current_bigit */
        25: .line 685
            iinc 6 /* j */ 1
      StackMap locals:
      StackMap stack:
        26: iload 6 /* j */
            bipush 7
            if_icmplt 23
        end local 6 // int j
        end local 5 // int current_bigit
        27: .line 683
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        28: iload 4 /* i */
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            iconst_1
            isub
            if_icmplt 20
        end local 4 // int i
        29: .line 691
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            iconst_1
            isub
            iaload
            istore 4 /* most_significant_bigit */
        start local 4 // int most_significant_bigit
        30: .line 692
            goto 33
        31: .line 693
      StackMap locals:
      StackMap stack:
            aload 2 /* buffer */
            iload 3 /* string_index */
            iinc 3 /* string_index */ -1
            iload 4 /* most_significant_bigit */
            bipush 15
            iand
            invokestatic com.oracle.truffle.js.runtime.doubleconv.Bignum.hexCharOfValue:(I)C
            invokevirtual java.lang.StringBuilder.setCharAt:(IC)V
        32: .line 694
            iload 4 /* most_significant_bigit */
            iconst_4
            iushr
            istore 4 /* most_significant_bigit */
        33: .line 692
      StackMap locals:
      StackMap stack:
            iload 4 /* most_significant_bigit */
            ifne 31
        34: .line 696
            aload 2 /* buffer */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 4 // int most_significant_bigit
        end local 3 // int string_index
        end local 2 // java.lang.StringBuilder buffer
        end local 1 // int needed_chars
        end local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum this
      LocalVariableTable:
        Start  End  Slot                    Name  Signature
            0   35     0                    this  Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;
            6   35     1            needed_chars  I
            7   35     2                  buffer  Ljava/lang/StringBuilder;
            9   35     3            string_index  I
           10   18     4                       i  I
           12   16     5                       j  I
           19   29     4                       i  I
           21   27     5           current_bigit  I
           22   27     6                       j  I
           30   35     4  most_significant_bigit  I

  int bigitOrZero(int);
    descriptor: (I)I
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum this
        start local 1 // int index
         0: .line 701
            iload 1 /* index */
            aload 0 /* this */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.bigitLength:()I
            if_icmplt 1
            iconst_0
            ireturn
         1: .line 702
      StackMap locals:
      StackMap stack:
            iload 1 /* index */
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.exponent_:I
            if_icmpge 2
            iconst_0
            ireturn
         2: .line 703
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
            iload 1 /* index */
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.exponent_:I
            isub
            iaload
            ireturn
        end local 1 // int index
        end local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;
            0    3     1  index  I
    MethodParameters:
       Name  Flags
      index  final

  static int compare(com.oracle.truffle.js.runtime.doubleconv.Bignum, com.oracle.truffle.js.runtime.doubleconv.Bignum);
    descriptor: (Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;)I
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=7, args_size=2
        start local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum a
        start local 1 // com.oracle.truffle.js.runtime.doubleconv.Bignum b
         0: .line 708
            getstatic com.oracle.truffle.js.runtime.doubleconv.Bignum.$assertionsDisabled:Z
            ifne 1
            aload 0 /* a */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.isClamped:()Z
            ifne 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 709
      StackMap locals:
      StackMap stack:
            getstatic com.oracle.truffle.js.runtime.doubleconv.Bignum.$assertionsDisabled:Z
            ifne 2
            aload 1 /* b */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.isClamped:()Z
            ifne 2
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         2: .line 710
      StackMap locals:
      StackMap stack:
            aload 0 /* a */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.bigitLength:()I
            istore 2 /* bigit_length_a */
        start local 2 // int bigit_length_a
         3: .line 711
            aload 1 /* b */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.bigitLength:()I
            istore 3 /* bigit_length_b */
        start local 3 // int bigit_length_b
         4: .line 712
            iload 2 /* bigit_length_a */
            iload 3 /* bigit_length_b */
            if_icmpge 5
            iconst_m1
            ireturn
         5: .line 713
      StackMap locals: int int
      StackMap stack:
            iload 2 /* bigit_length_a */
            iload 3 /* bigit_length_b */
            if_icmple 6
            iconst_1
            ireturn
         6: .line 714
      StackMap locals:
      StackMap stack:
            iload 2 /* bigit_length_a */
            iconst_1
            isub
            istore 4 /* i */
        start local 4 // int i
         7: goto 13
         8: .line 715
      StackMap locals: int
      StackMap stack:
            aload 0 /* a */
            iload 4 /* i */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.bigitOrZero:(I)I
            istore 5 /* bigit_a */
        start local 5 // int bigit_a
         9: .line 716
            aload 1 /* b */
            iload 4 /* i */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.bigitOrZero:(I)I
            istore 6 /* bigit_b */
        start local 6 // int bigit_b
        10: .line 717
            iload 5 /* bigit_a */
            iload 6 /* bigit_b */
            if_icmpge 11
            iconst_m1
            ireturn
        11: .line 718
      StackMap locals: int int
      StackMap stack:
            iload 5 /* bigit_a */
            iload 6 /* bigit_b */
            if_icmple 12
            iconst_1
            ireturn
        end local 6 // int bigit_b
        end local 5 // int bigit_a
        12: .line 714
      StackMap locals:
      StackMap stack:
            iinc 4 /* i */ -1
      StackMap locals:
      StackMap stack:
        13: iload 4 /* i */
            aload 0 /* a */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.exponent_:I
            aload 1 /* b */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.exponent_:I
            invokestatic java.lang.Math.min:(II)I
            if_icmpge 8
        end local 4 // int i
        14: .line 721
            iconst_0
            ireturn
        end local 3 // int bigit_length_b
        end local 2 // int bigit_length_a
        end local 1 // com.oracle.truffle.js.runtime.doubleconv.Bignum b
        end local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum a
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   15     0               a  Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;
            0   15     1               b  Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;
            3   15     2  bigit_length_a  I
            4   15     3  bigit_length_b  I
            7   14     4               i  I
            9   12     5         bigit_a  I
           10   12     6         bigit_b  I
    MethodParameters:
      Name  Flags
      a     final
      b     final

  static int plusCompare(com.oracle.truffle.js.runtime.doubleconv.Bignum, com.oracle.truffle.js.runtime.doubleconv.Bignum, com.oracle.truffle.js.runtime.doubleconv.Bignum);
    descriptor: (Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;)I
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=10, args_size=3
        start local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum a
        start local 1 // com.oracle.truffle.js.runtime.doubleconv.Bignum b
        start local 2 // com.oracle.truffle.js.runtime.doubleconv.Bignum c
         0: .line 726
            getstatic com.oracle.truffle.js.runtime.doubleconv.Bignum.$assertionsDisabled:Z
            ifne 1
            aload 0 /* a */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.isClamped:()Z
            ifne 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 727
      StackMap locals:
      StackMap stack:
            getstatic com.oracle.truffle.js.runtime.doubleconv.Bignum.$assertionsDisabled:Z
            ifne 2
            aload 1 /* b */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.isClamped:()Z
            ifne 2
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         2: .line 728
      StackMap locals:
      StackMap stack:
            getstatic com.oracle.truffle.js.runtime.doubleconv.Bignum.$assertionsDisabled:Z
            ifne 3
            aload 2 /* c */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.isClamped:()Z
            ifne 3
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         3: .line 729
      StackMap locals:
      StackMap stack:
            aload 0 /* a */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.bigitLength:()I
            aload 1 /* b */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.bigitLength:()I
            if_icmpge 5
         4: .line 730
            aload 1 /* b */
            aload 0 /* a */
            aload 2 /* c */
            invokestatic com.oracle.truffle.js.runtime.doubleconv.Bignum.plusCompare:(Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;)I
            ireturn
         5: .line 732
      StackMap locals:
      StackMap stack:
            aload 0 /* a */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.bigitLength:()I
            iconst_1
            iadd
            aload 2 /* c */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.bigitLength:()I
            if_icmpge 6
            iconst_m1
            ireturn
         6: .line 733
      StackMap locals:
      StackMap stack:
            aload 0 /* a */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.bigitLength:()I
            aload 2 /* c */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.bigitLength:()I
            if_icmple 7
            iconst_1
            ireturn
         7: .line 737
      StackMap locals:
      StackMap stack:
            aload 0 /* a */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.exponent_:I
            aload 1 /* b */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.bigitLength:()I
            if_icmplt 9
            aload 0 /* a */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.bigitLength:()I
            aload 2 /* c */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.bigitLength:()I
            if_icmpge 9
         8: .line 738
            iconst_m1
            ireturn
         9: .line 741
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* borrow */
        start local 3 // int borrow
        10: .line 743
            aload 0 /* a */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.exponent_:I
            aload 1 /* b */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.exponent_:I
            invokestatic java.lang.Math.min:(II)I
            aload 2 /* c */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.exponent_:I
            invokestatic java.lang.Math.min:(II)I
            istore 4 /* min_exponent */
        start local 4 // int min_exponent
        11: .line 744
            aload 2 /* c */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.bigitLength:()I
            iconst_1
            isub
            istore 5 /* i */
        start local 5 // int i
        12: goto 23
        13: .line 745
      StackMap locals: int int int
      StackMap stack:
            aload 0 /* a */
            iload 5 /* i */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.bigitOrZero:(I)I
            istore 6 /* int_a */
        start local 6 // int int_a
        14: .line 746
            aload 1 /* b */
            iload 5 /* i */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.bigitOrZero:(I)I
            istore 7 /* int_b */
        start local 7 // int int_b
        15: .line 747
            aload 2 /* c */
            iload 5 /* i */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.bigitOrZero:(I)I
            istore 8 /* int_c */
        start local 8 // int int_c
        16: .line 748
            iload 6 /* int_a */
            iload 7 /* int_b */
            iadd
            istore 9 /* sum */
        start local 9 // int sum
        17: .line 749
            iload 9 /* sum */
            iload 8 /* int_c */
            iload 3 /* borrow */
            iadd
            if_icmple 19
        18: .line 750
            iconst_1
            ireturn
        19: .line 752
      StackMap locals: com.oracle.truffle.js.runtime.doubleconv.Bignum com.oracle.truffle.js.runtime.doubleconv.Bignum com.oracle.truffle.js.runtime.doubleconv.Bignum int int int int int int int
      StackMap stack:
            iload 8 /* int_c */
            iload 3 /* borrow */
            iadd
            iload 9 /* sum */
            isub
            istore 3 /* borrow */
        20: .line 753
            iload 3 /* borrow */
            iconst_1
            if_icmple 21
            iconst_m1
            ireturn
        21: .line 754
      StackMap locals:
      StackMap stack:
            iload 3 /* borrow */
            bipush 28
            ishl
            istore 3 /* borrow */
        end local 9 // int sum
        end local 8 // int int_c
        end local 7 // int int_b
        end local 6 // int int_a
        22: .line 744
            iinc 5 /* i */ -1
      StackMap locals: com.oracle.truffle.js.runtime.doubleconv.Bignum com.oracle.truffle.js.runtime.doubleconv.Bignum com.oracle.truffle.js.runtime.doubleconv.Bignum int int int
      StackMap stack:
        23: iload 5 /* i */
            iload 4 /* min_exponent */
            if_icmpge 13
        end local 5 // int i
        24: .line 757
            iload 3 /* borrow */
            ifne 25
            iconst_0
            ireturn
        25: .line 758
      StackMap locals:
      StackMap stack:
            iconst_m1
            ireturn
        end local 4 // int min_exponent
        end local 3 // int borrow
        end local 2 // com.oracle.truffle.js.runtime.doubleconv.Bignum c
        end local 1 // com.oracle.truffle.js.runtime.doubleconv.Bignum b
        end local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum a
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   26     0             a  Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;
            0   26     1             b  Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;
            0   26     2             c  Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;
           10   26     3        borrow  I
           11   26     4  min_exponent  I
           12   24     5             i  I
           14   22     6         int_a  I
           15   22     7         int_b  I
           16   22     8         int_c  I
           17   22     9           sum  I
    MethodParameters:
      Name  Flags
      a     final
      b     final
      c     final

  void clamp();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum this
         0: .line 763
            goto 2
         1: .line 764
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            iconst_1
            isub
            putfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
         2: .line 763
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            ifle 3
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            iconst_1
            isub
            iaload
            ifeq 1
         3: .line 766
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            ifne 5
         4: .line 768
            aload 0 /* this */
            iconst_0
            putfield com.oracle.truffle.js.runtime.doubleconv.Bignum.exponent_:I
         5: .line 770
      StackMap locals:
      StackMap stack:
            return
        end local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;

  boolean isClamped();
    descriptor: ()Z
    flags: (0x0000) 
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum this
         0: .line 774
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            ifeq 1
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            iconst_1
            isub
            iaload
            ifne 1
            iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_1
            ireturn
        end local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;

  void zero();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum this
         0: .line 779
            iconst_0
            istore 1 /* i */
        start local 1 // int i
         1: goto 4
         2: .line 780
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
            iload 1 /* i */
            iconst_0
            iastore
         3: .line 779
            iinc 1 /* i */ 1
      StackMap locals:
      StackMap stack:
         4: iload 1 /* i */
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            if_icmplt 2
        end local 1 // int i
         5: .line 782
            aload 0 /* this */
            iconst_0
            putfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
         6: .line 783
            aload 0 /* this */
            iconst_0
            putfield com.oracle.truffle.js.runtime.doubleconv.Bignum.exponent_:I
         7: .line 784
            return
        end local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;
            1    5     1     i  I

  void align(com.oracle.truffle.js.runtime.doubleconv.Bignum);
    descriptor: (Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;)V
    flags: (0x0000) 
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum this
        start local 1 // com.oracle.truffle.js.runtime.doubleconv.Bignum other
         0: .line 788
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.exponent_:I
            aload 1 /* other */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.exponent_:I
            if_icmple 17
         1: .line 795
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.exponent_:I
            aload 1 /* other */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.exponent_:I
            isub
            istore 2 /* zero_digits */
        start local 2 // int zero_digits
         2: .line 796
            aload 0 /* this */
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            iload 2 /* zero_digits */
            iadd
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.ensureCapacity:(I)V
         3: .line 797
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            iconst_1
            isub
            istore 3 /* i */
        start local 3 // int i
         4: goto 7
         5: .line 798
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
            iload 3 /* i */
            iload 2 /* zero_digits */
            iadd
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
            iload 3 /* i */
            iaload
            iastore
         6: .line 797
            iinc 3 /* i */ -1
      StackMap locals:
      StackMap stack:
         7: iload 3 /* i */
            ifge 5
        end local 3 // int i
         8: .line 800
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         9: goto 12
        10: .line 801
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
            iload 3 /* i */
            iconst_0
            iastore
        11: .line 800
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        12: iload 3 /* i */
            iload 2 /* zero_digits */
            if_icmplt 10
        end local 3 // int i
        13: .line 803
            aload 0 /* this */
            dup
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            iload 2 /* zero_digits */
            iadd
            putfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
        14: .line 804
            aload 0 /* this */
            dup
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.exponent_:I
            iload 2 /* zero_digits */
            isub
            putfield com.oracle.truffle.js.runtime.doubleconv.Bignum.exponent_:I
        15: .line 805
            getstatic com.oracle.truffle.js.runtime.doubleconv.Bignum.$assertionsDisabled:Z
            ifne 16
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            ifge 16
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        16: .line 806
      StackMap locals:
      StackMap stack:
            getstatic com.oracle.truffle.js.runtime.doubleconv.Bignum.$assertionsDisabled:Z
            ifne 17
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.exponent_:I
            ifge 17
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        end local 2 // int zero_digits
        17: .line 808
      StackMap locals:
      StackMap stack:
            return
        end local 1 // com.oracle.truffle.js.runtime.doubleconv.Bignum other
        end local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   18     0         this  Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;
            0   18     1        other  Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;
            2   17     2  zero_digits  I
            4    8     3            i  I
            9   13     3            i  I
    MethodParameters:
       Name  Flags
      other  final

  void bigitsShiftLeft(int);
    descriptor: (I)V
    flags: (0x0000) 
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum this
        start local 1 // int shift_amount
         0: .line 812
            getstatic com.oracle.truffle.js.runtime.doubleconv.Bignum.$assertionsDisabled:Z
            ifne 1
            iload 1 /* shift_amount */
            bipush 28
            if_icmplt 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 813
      StackMap locals:
      StackMap stack:
            getstatic com.oracle.truffle.js.runtime.doubleconv.Bignum.$assertionsDisabled:Z
            ifne 2
            iload 1 /* shift_amount */
            ifge 2
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         2: .line 814
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* carry */
        start local 2 // int carry
         3: .line 815
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         4: goto 9
         5: .line 816
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
            iload 3 /* i */
            iaload
            bipush 28
            iload 1 /* shift_amount */
            isub
            iushr
            istore 4 /* new_carry */
        start local 4 // int new_carry
         6: .line 817
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
            iload 3 /* i */
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
            iload 3 /* i */
            iaload
            iload 1 /* shift_amount */
            ishl
            iload 2 /* carry */
            iadd
            ldc 268435455
            iand
            iastore
         7: .line 818
            iload 4 /* new_carry */
            istore 2 /* carry */
        end local 4 // int new_carry
         8: .line 815
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         9: iload 3 /* i */
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            if_icmplt 5
        end local 3 // int i
        10: .line 820
            iload 2 /* carry */
            ifeq 13
        11: .line 821
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            iload 2 /* carry */
            iastore
        12: .line 822
            aload 0 /* this */
            dup
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            iconst_1
            iadd
            putfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
        13: .line 824
      StackMap locals:
      StackMap stack:
            return
        end local 2 // int carry
        end local 1 // int shift_amount
        end local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   14     0          this  Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;
            0   14     1  shift_amount  I
            3   14     2         carry  I
            4   10     3             i  I
            6    8     4     new_carry  I
    MethodParameters:
              Name  Flags
      shift_amount  final

  void subtractTimes(com.oracle.truffle.js.runtime.doubleconv.Bignum, int);
    descriptor: (Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;I)V
    flags: (0x0000) 
    Code:
      stack=5, locals=11, args_size=3
        start local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum this
        start local 1 // com.oracle.truffle.js.runtime.doubleconv.Bignum other
        start local 2 // int factor
         0: .line 828
            getstatic com.oracle.truffle.js.runtime.doubleconv.Bignum.$assertionsDisabled:Z
            ifne 1
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.exponent_:I
            aload 1 /* other */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.exponent_:I
            if_icmple 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 829
      StackMap locals:
      StackMap stack:
            iload 2 /* factor */
            iconst_3
            if_icmpge 8
         2: .line 830
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         3: goto 6
         4: .line 831
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* other */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.subtractBignum:(Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;)V
         5: .line 830
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 3 /* i */
            iload 2 /* factor */
            if_icmplt 4
        end local 3 // int i
         7: .line 833
            return
         8: .line 835
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* borrow */
        start local 3 // int borrow
         9: .line 836
            aload 1 /* other */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.exponent_:I
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.exponent_:I
            isub
            istore 4 /* exponent_diff */
        start local 4 // int exponent_diff
        10: .line 837
            iconst_0
            istore 5 /* i */
        start local 5 // int i
        11: goto 20
        12: .line 838
      StackMap locals: int int int
      StackMap stack:
            iload 2 /* factor */
            i2l
            aload 1 /* other */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
            iload 5 /* i */
            iaload
            i2l
            lmul
            lstore 6 /* product */
        start local 6 // long product
        13: .line 839
            iload 3 /* borrow */
            i2l
            lload 6 /* product */
            ladd
            lstore 8 /* remove */
        start local 8 // long remove
        14: .line 840
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
            iload 5 /* i */
            iload 4 /* exponent_diff */
            iadd
            iaload
            lload 8 /* remove */
            ldc 268435455
            land
            l2i
            isub
            istore 10 /* difference */
        start local 10 // int difference
        15: .line 841
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
            iload 5 /* i */
            iload 4 /* exponent_diff */
            iadd
            iload 10 /* difference */
            ldc 268435455
            iand
            iastore
        16: .line 842
            iload 10 /* difference */
            bipush 31
            iushr
            i2l
        17: .line 843
            lload 8 /* remove */
            bipush 28
            lushr
        18: .line 842
            ladd
            l2i
            istore 3 /* borrow */
        end local 10 // int difference
        end local 8 // long remove
        end local 6 // long product
        19: .line 837
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        20: iload 5 /* i */
            aload 1 /* other */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            if_icmplt 12
        end local 5 // int i
        21: .line 845
            aload 1 /* other */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            iload 4 /* exponent_diff */
            iadd
            istore 5 /* i */
        start local 5 // int i
        22: goto 28
        23: .line 846
      StackMap locals:
      StackMap stack:
            iload 3 /* borrow */
            ifne 24
            return
        24: .line 847
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
            iload 5 /* i */
            iaload
            iload 3 /* borrow */
            isub
            istore 6 /* difference */
        start local 6 // int difference
        25: .line 848
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
            iload 5 /* i */
            iload 6 /* difference */
            ldc 268435455
            iand
            iastore
        26: .line 849
            iload 6 /* difference */
            bipush 31
            iushr
            istore 3 /* borrow */
        end local 6 // int difference
        27: .line 845
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        28: iload 5 /* i */
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.used_digits_:I
            if_icmplt 23
        end local 5 // int i
        29: .line 851
            aload 0 /* this */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.Bignum.clamp:()V
        30: .line 852
            return
        end local 4 // int exponent_diff
        end local 3 // int borrow
        end local 2 // int factor
        end local 1 // com.oracle.truffle.js.runtime.doubleconv.Bignum other
        end local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   31     0           this  Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;
            0   31     1          other  Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;
            0   31     2         factor  I
            3    7     3              i  I
            9   31     3         borrow  I
           10   31     4  exponent_diff  I
           11   21     5              i  I
           13   19     6        product  J
           14   19     8         remove  J
           15   19    10     difference  I
           22   29     5              i  I
           25   27     6     difference  I
    MethodParameters:
        Name  Flags
      other   final
      factor  final

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum this
         0: .line 856
            new java.lang.StringBuilder
            dup
            ldc "Bignum"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield com.oracle.truffle.js.runtime.doubleconv.Bignum.bigits_:[I
            invokestatic java.util.Arrays.toString:([I)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // com.oracle.truffle.js.runtime.doubleconv.Bignum this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/js/runtime/doubleconv/Bignum;
}
SourceFile: "Bignum.java"