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

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

  void <init>();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.js.runtime.doubleconv.FixedDtoa this
         0: .line 73
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // com.oracle.truffle.js.runtime.doubleconv.FixedDtoa this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/js/runtime/doubleconv/FixedDtoa;

  static void fillDigits32FixedLength(int, int, com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer);
    descriptor: (IILcom/oracle/truffle/js/runtime/doubleconv/DtoaBuffer;)V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // int number
        start local 1 // int requested_length
        start local 2 // com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer buffer
         0: .line 164
            iload 1 /* requested_length */
            iconst_1
            isub
            istore 3 /* i */
        start local 3 // int i
         1: goto 5
         2: .line 165
      StackMap locals: int
      StackMap stack:
            aload 2 /* buffer */
            getfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.chars:[C
            aload 2 /* buffer */
            getfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.length:I
            iload 3 /* i */
            iadd
            bipush 48
            iload 0 /* number */
            bipush 10
            invokestatic java.lang.Integer.remainderUnsigned:(II)I
            iadd
            i2c
            castore
         3: .line 166
            iload 0 /* number */
            bipush 10
            invokestatic java.lang.Integer.divideUnsigned:(II)I
            istore 0 /* number */
         4: .line 164
            iinc 3 /* i */ -1
      StackMap locals:
      StackMap stack:
         5: iload 3 /* i */
            ifge 2
        end local 3 // int i
         6: .line 168
            aload 2 /* buffer */
            dup
            getfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.length:I
            iload 1 /* requested_length */
            iadd
            putfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.length:I
         7: .line 169
            return
        end local 2 // com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer buffer
        end local 1 // int requested_length
        end local 0 // int number
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    8     0            number  I
            0    8     1  requested_length  I
            0    8     2            buffer  Lcom/oracle/truffle/js/runtime/doubleconv/DtoaBuffer;
            1    6     3                 i  I
    MethodParameters:
                  Name  Flags
      number            
      requested_length  final
      buffer            final

  static void fillDigits32(int, com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer);
    descriptor: (ILcom/oracle/truffle/js/runtime/doubleconv/DtoaBuffer;)V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=6, args_size=2
        start local 0 // int number
        start local 1 // com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer buffer
         0: .line 173
            iconst_0
            istore 2 /* number_length */
        start local 2 // int number_length
         1: .line 175
            goto 6
         2: .line 176
      StackMap locals: int
      StackMap stack:
            iload 0 /* number */
            bipush 10
            invokestatic java.lang.Integer.remainderUnsigned:(II)I
            istore 3 /* digit */
        start local 3 // int digit
         3: .line 177
            iload 0 /* number */
            bipush 10
            invokestatic java.lang.Integer.divideUnsigned:(II)I
            istore 0 /* number */
         4: .line 178
            aload 1 /* buffer */
            getfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.chars:[C
            aload 1 /* buffer */
            getfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.length:I
            iload 2 /* number_length */
            iadd
            bipush 48
            iload 3 /* digit */
            iadd
            i2c
            castore
         5: .line 179
            iinc 2 /* number_length */ 1
        end local 3 // int digit
         6: .line 175
      StackMap locals:
      StackMap stack:
            iload 0 /* number */
            ifne 2
         7: .line 182
            aload 1 /* buffer */
            getfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.length:I
            istore 3 /* i */
        start local 3 // int i
         8: .line 183
            aload 1 /* buffer */
            getfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.length:I
            iload 2 /* number_length */
            iadd
            iconst_1
            isub
            istore 4 /* j */
        start local 4 // int j
         9: .line 184
            goto 15
        10: .line 185
      StackMap locals: int int
      StackMap stack:
            aload 1 /* buffer */
            getfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.chars:[C
            iload 3 /* i */
            caload
            istore 5 /* tmp */
        start local 5 // char tmp
        11: .line 186
            aload 1 /* buffer */
            getfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.chars:[C
            iload 3 /* i */
            aload 1 /* buffer */
            getfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.chars:[C
            iload 4 /* j */
            caload
            castore
        12: .line 187
            aload 1 /* buffer */
            getfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.chars:[C
            iload 4 /* j */
            iload 5 /* tmp */
            castore
        13: .line 188
            iinc 3 /* i */ 1
        14: .line 189
            iinc 4 /* j */ -1
        end local 5 // char tmp
        15: .line 184
      StackMap locals:
      StackMap stack:
            iload 3 /* i */
            iload 4 /* j */
            if_icmplt 10
        16: .line 191
            aload 1 /* buffer */
            dup
            getfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.length:I
            iload 2 /* number_length */
            iadd
            putfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.length:I
        17: .line 192
            return
        end local 4 // int j
        end local 3 // int i
        end local 2 // int number_length
        end local 1 // com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer buffer
        end local 0 // int number
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   18     0         number  I
            0   18     1         buffer  Lcom/oracle/truffle/js/runtime/doubleconv/DtoaBuffer;
            1   18     2  number_length  I
            3    6     3          digit  I
            8   18     3              i  I
            9   18     4              j  I
           11   15     5            tmp  C
    MethodParameters:
        Name  Flags
      number  
      buffer  final

  static void fillDigits64FixedLength(long, com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer);
    descriptor: (JLcom/oracle/truffle/js/runtime/doubleconv/DtoaBuffer;)V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=6, args_size=2
        start local 0 // long number
        start local 2 // com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer buffer
         0: .line 198
            lload 0 /* number */
            ldc 10000000
            invokestatic java.lang.Long.remainderUnsigned:(JJ)J
            l2i
            istore 3 /* part2 */
        start local 3 // int part2
         1: .line 199
            lload 0 /* number */
            ldc 10000000
            invokestatic java.lang.Long.divideUnsigned:(JJ)J
            lstore 0 /* number */
         2: .line 200
            lload 0 /* number */
            ldc 10000000
            invokestatic java.lang.Long.remainderUnsigned:(JJ)J
            l2i
            istore 4 /* part1 */
        start local 4 // int part1
         3: .line 201
            lload 0 /* number */
            ldc 10000000
            invokestatic java.lang.Long.divideUnsigned:(JJ)J
            l2i
            istore 5 /* part0 */
        start local 5 // int part0
         4: .line 203
            iload 5 /* part0 */
            iconst_3
            aload 2 /* buffer */
            invokestatic com.oracle.truffle.js.runtime.doubleconv.FixedDtoa.fillDigits32FixedLength:(IILcom/oracle/truffle/js/runtime/doubleconv/DtoaBuffer;)V
         5: .line 204
            iload 4 /* part1 */
            bipush 7
            aload 2 /* buffer */
            invokestatic com.oracle.truffle.js.runtime.doubleconv.FixedDtoa.fillDigits32FixedLength:(IILcom/oracle/truffle/js/runtime/doubleconv/DtoaBuffer;)V
         6: .line 205
            iload 3 /* part2 */
            bipush 7
            aload 2 /* buffer */
            invokestatic com.oracle.truffle.js.runtime.doubleconv.FixedDtoa.fillDigits32FixedLength:(IILcom/oracle/truffle/js/runtime/doubleconv/DtoaBuffer;)V
         7: .line 206
            return
        end local 5 // int part0
        end local 4 // int part1
        end local 3 // int part2
        end local 2 // com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer buffer
        end local 0 // long number
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0  number  J
            0    8     2  buffer  Lcom/oracle/truffle/js/runtime/doubleconv/DtoaBuffer;
            1    8     3   part2  I
            3    8     4   part1  I
            4    8     5   part0  I
    MethodParameters:
        Name  Flags
      number  
      buffer  final

  static void FillDigits64(long, com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer);
    descriptor: (JLcom/oracle/truffle/js/runtime/doubleconv/DtoaBuffer;)V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=6, args_size=2
        start local 0 // long number
        start local 2 // com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer buffer
         0: .line 212
            lload 0 /* number */
            ldc 10000000
            invokestatic java.lang.Long.remainderUnsigned:(JJ)J
            l2i
            istore 3 /* part2 */
        start local 3 // int part2
         1: .line 213
            lload 0 /* number */
            ldc 10000000
            invokestatic java.lang.Long.divideUnsigned:(JJ)J
            lstore 0 /* number */
         2: .line 214
            lload 0 /* number */
            ldc 10000000
            invokestatic java.lang.Long.remainderUnsigned:(JJ)J
            l2i
            istore 4 /* part1 */
        start local 4 // int part1
         3: .line 215
            lload 0 /* number */
            ldc 10000000
            invokestatic java.lang.Long.divideUnsigned:(JJ)J
            l2i
            istore 5 /* part0 */
        start local 5 // int part0
         4: .line 217
            iload 5 /* part0 */
            ifeq 9
         5: .line 218
            iload 5 /* part0 */
            aload 2 /* buffer */
            invokestatic com.oracle.truffle.js.runtime.doubleconv.FixedDtoa.fillDigits32:(ILcom/oracle/truffle/js/runtime/doubleconv/DtoaBuffer;)V
         6: .line 219
            iload 4 /* part1 */
            bipush 7
            aload 2 /* buffer */
            invokestatic com.oracle.truffle.js.runtime.doubleconv.FixedDtoa.fillDigits32FixedLength:(IILcom/oracle/truffle/js/runtime/doubleconv/DtoaBuffer;)V
         7: .line 220
            iload 3 /* part2 */
            bipush 7
            aload 2 /* buffer */
            invokestatic com.oracle.truffle.js.runtime.doubleconv.FixedDtoa.fillDigits32FixedLength:(IILcom/oracle/truffle/js/runtime/doubleconv/DtoaBuffer;)V
         8: .line 221
            goto 14
      StackMap locals: int int int
      StackMap stack:
         9: iload 4 /* part1 */
            ifeq 13
        10: .line 222
            iload 4 /* part1 */
            aload 2 /* buffer */
            invokestatic com.oracle.truffle.js.runtime.doubleconv.FixedDtoa.fillDigits32:(ILcom/oracle/truffle/js/runtime/doubleconv/DtoaBuffer;)V
        11: .line 223
            iload 3 /* part2 */
            bipush 7
            aload 2 /* buffer */
            invokestatic com.oracle.truffle.js.runtime.doubleconv.FixedDtoa.fillDigits32FixedLength:(IILcom/oracle/truffle/js/runtime/doubleconv/DtoaBuffer;)V
        12: .line 224
            goto 14
        13: .line 225
      StackMap locals:
      StackMap stack:
            iload 3 /* part2 */
            aload 2 /* buffer */
            invokestatic com.oracle.truffle.js.runtime.doubleconv.FixedDtoa.fillDigits32:(ILcom/oracle/truffle/js/runtime/doubleconv/DtoaBuffer;)V
        14: .line 227
      StackMap locals:
      StackMap stack:
            return
        end local 5 // int part0
        end local 4 // int part1
        end local 3 // int part2
        end local 2 // com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer buffer
        end local 0 // long number
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   15     0  number  J
            0   15     2  buffer  Lcom/oracle/truffle/js/runtime/doubleconv/DtoaBuffer;
            1   15     3   part2  I
            3   15     4   part1  I
            4   15     5   part0  I
    MethodParameters:
        Name  Flags
      number  
      buffer  final

  static void roundUp(com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer);
    descriptor: (Lcom/oracle/truffle/js/runtime/doubleconv/DtoaBuffer;)V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer buffer
         0: .line 232
            aload 0 /* buffer */
            getfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.length:I
            ifne 5
         1: .line 233
            aload 0 /* buffer */
            getfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.chars:[C
            iconst_0
            bipush 49
            castore
         2: .line 234
            aload 0 /* buffer */
            iconst_1
            putfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.decimalPoint:I
         3: .line 235
            aload 0 /* buffer */
            iconst_1
            putfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.length:I
         4: .line 236
            return
         5: .line 240
      StackMap locals:
      StackMap stack:
            aload 0 /* buffer */
            getfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.chars:[C
            aload 0 /* buffer */
            getfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.length:I
            iconst_1
            isub
            dup2
            caload
            iconst_1
            iadd
            i2c
            castore
         6: .line 241
            aload 0 /* buffer */
            getfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.length:I
            iconst_1
            isub
            istore 1 /* i */
        start local 1 // int i
         7: goto 13
         8: .line 242
      StackMap locals: int
      StackMap stack:
            aload 0 /* buffer */
            getfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.chars:[C
            iload 1 /* i */
            caload
            bipush 58
            if_icmpeq 10
         9: .line 243
            return
        10: .line 245
      StackMap locals:
      StackMap stack:
            aload 0 /* buffer */
            getfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.chars:[C
            iload 1 /* i */
            bipush 48
            castore
        11: .line 246
            aload 0 /* buffer */
            getfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.chars:[C
            iload 1 /* i */
            iconst_1
            isub
            dup2
            caload
            iconst_1
            iadd
            i2c
            castore
        12: .line 241
            iinc 1 /* i */ -1
      StackMap locals:
      StackMap stack:
        13: iload 1 /* i */
            ifgt 8
        end local 1 // int i
        14: .line 253
            aload 0 /* buffer */
            getfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.chars:[C
            iconst_0
            caload
            bipush 58
            if_icmpne 17
        15: .line 254
            aload 0 /* buffer */
            getfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.chars:[C
            iconst_0
            bipush 49
            castore
        16: .line 255
            aload 0 /* buffer */
            dup
            getfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.decimalPoint:I
            iconst_1
            iadd
            putfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.decimalPoint:I
        17: .line 257
      StackMap locals:
      StackMap stack:
            return
        end local 0 // com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer buffer
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   18     0  buffer  Lcom/oracle/truffle/js/runtime/doubleconv/DtoaBuffer;
            7   14     1       i  I
    MethodParameters:
        Name  Flags
      buffer  final

  static void fillFractionals(long, int, int, com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer);
    descriptor: (JIILcom/oracle/truffle/js/runtime/doubleconv/DtoaBuffer;)V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=6, locals=9, args_size=4
        start local 0 // long fractionals
        start local 2 // int exponent
        start local 3 // int fractional_count
        start local 4 // com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer buffer
         0: .line 273
            getstatic com.oracle.truffle.js.runtime.doubleconv.FixedDtoa.$assertionsDisabled:Z
            ifne 2
            bipush -128
            iload 2 /* exponent */
            if_icmpgt 1
            iload 2 /* exponent */
            ifle 2
      StackMap locals:
      StackMap stack:
         1: new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         2: .line 277
      StackMap locals:
      StackMap stack:
            iload 2 /* exponent */
            ineg
            bipush 64
            if_icmpgt 21
         3: .line 279
            getstatic com.oracle.truffle.js.runtime.doubleconv.FixedDtoa.$assertionsDisabled:Z
            ifne 4
            lload 0 /* fractionals */
            bipush 56
            lushr
            lconst_0
            lcmp
            ifeq 4
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         4: .line 280
      StackMap locals:
      StackMap stack:
            iload 2 /* exponent */
            ineg
            istore 5 /* point */
        start local 5 // int point
         5: .line 281
            iconst_0
            istore 6 /* i */
        start local 6 // int i
         6: goto 16
         7: .line 282
      StackMap locals: int int
      StackMap stack:
            lload 0 /* fractionals */
            lconst_0
            lcmp
            ifne 8
            goto 17
         8: .line 293
      StackMap locals:
      StackMap stack:
            lload 0 /* fractionals */
            ldc 5
            lmul
            lstore 0 /* fractionals */
         9: .line 294
            iinc 5 /* point */ -1
        10: .line 295
            lload 0 /* fractionals */
            iload 5 /* point */
            lushr
            l2i
            istore 7 /* digit */
        start local 7 // int digit
        11: .line 296
            getstatic com.oracle.truffle.js.runtime.doubleconv.FixedDtoa.$assertionsDisabled:Z
            ifne 12
            iload 7 /* digit */
            bipush 9
            if_icmple 12
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        12: .line 297
      StackMap locals: int
      StackMap stack:
            aload 4 /* buffer */
            getfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.chars:[C
            aload 4 /* buffer */
            getfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.length:I
            bipush 48
            iload 7 /* digit */
            iadd
            i2c
            castore
        13: .line 298
            aload 4 /* buffer */
            dup
            getfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.length:I
            iconst_1
            iadd
            putfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.length:I
        14: .line 299
            lload 0 /* fractionals */
            iload 7 /* digit */
            i2l
            iload 5 /* point */
            lshl
            lsub
            lstore 0 /* fractionals */
        end local 7 // int digit
        15: .line 281
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
        16: iload 6 /* i */
            iload 3 /* fractional_count */
            if_icmplt 7
        end local 6 // int i
        17: .line 302
      StackMap locals:
      StackMap stack:
            getstatic com.oracle.truffle.js.runtime.doubleconv.FixedDtoa.$assertionsDisabled:Z
            ifne 18
            lload 0 /* fractionals */
            lconst_0
            lcmp
            ifeq 18
            iload 5 /* point */
            iconst_1
            isub
            ifge 18
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        18: .line 303
      StackMap locals:
      StackMap stack:
            lload 0 /* fractionals */
            lconst_0
            lcmp
            ifeq 39
            lload 0 /* fractionals */
            iload 5 /* point */
            iconst_1
            isub
            lushr
            lconst_1
            land
            lconst_1
            lcmp
            ifne 39
        19: .line 304
            aload 4 /* buffer */
            invokestatic com.oracle.truffle.js.runtime.doubleconv.FixedDtoa.roundUp:(Lcom/oracle/truffle/js/runtime/doubleconv/DtoaBuffer;)V
        end local 5 // int point
        20: .line 306
            goto 39
        21: .line 307
      StackMap locals:
      StackMap stack:
            getstatic com.oracle.truffle.js.runtime.doubleconv.FixedDtoa.$assertionsDisabled:Z
            ifne 23
            bipush 64
            iload 2 /* exponent */
            ineg
            if_icmpge 22
            iload 2 /* exponent */
            ineg
            sipush 128
            if_icmple 23
      StackMap locals:
      StackMap stack:
        22: new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        23: .line 308
      StackMap locals:
      StackMap stack:
            new com.oracle.truffle.js.runtime.doubleconv.FixedDtoa$UInt128
            dup
            lload 0 /* fractionals */
            lconst_0
            invokespecial com.oracle.truffle.js.runtime.doubleconv.FixedDtoa$UInt128.<init>:(JJ)V
            astore 5 /* fractionals128 */
        start local 5 // com.oracle.truffle.js.runtime.doubleconv.FixedDtoa$UInt128 fractionals128
        24: .line 309
            aload 5 /* fractionals128 */
            iload 2 /* exponent */
            ineg
            bipush 64
            isub
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.FixedDtoa$UInt128.shift:(I)V
        25: .line 310
            sipush 128
            istore 6 /* point */
        start local 6 // int point
        26: .line 311
            iconst_0
            istore 7 /* i */
        start local 7 // int i
        27: goto 36
        28: .line 312
      StackMap locals: com.oracle.truffle.js.runtime.doubleconv.FixedDtoa$UInt128 int int
      StackMap stack:
            aload 5 /* fractionals128 */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.FixedDtoa$UInt128.isZero:()Z
            ifeq 29
            goto 37
        29: .line 316
      StackMap locals:
      StackMap stack:
            aload 5 /* fractionals128 */
            iconst_5
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.FixedDtoa$UInt128.multiply:(I)V
        30: .line 317
            iinc 6 /* point */ -1
        31: .line 318
            aload 5 /* fractionals128 */
            iload 6 /* point */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.FixedDtoa$UInt128.divModPowerOf2:(I)I
            istore 8 /* digit */
        start local 8 // int digit
        32: .line 319
            getstatic com.oracle.truffle.js.runtime.doubleconv.FixedDtoa.$assertionsDisabled:Z
            ifne 33
            iload 8 /* digit */
            bipush 9
            if_icmple 33
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        33: .line 320
      StackMap locals: int
      StackMap stack:
            aload 4 /* buffer */
            getfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.chars:[C
            aload 4 /* buffer */
            getfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.length:I
            bipush 48
            iload 8 /* digit */
            iadd
            i2c
            castore
        34: .line 321
            aload 4 /* buffer */
            dup
            getfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.length:I
            iconst_1
            iadd
            putfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.length:I
        end local 8 // int digit
        35: .line 311
            iinc 7 /* i */ 1
      StackMap locals:
      StackMap stack:
        36: iload 7 /* i */
            iload 3 /* fractional_count */
            if_icmplt 28
        end local 7 // int i
        37: .line 323
      StackMap locals:
      StackMap stack:
            aload 5 /* fractionals128 */
            iload 6 /* point */
            iconst_1
            isub
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.FixedDtoa$UInt128.bitAt:(I)I
            iconst_1
            if_icmpne 39
        38: .line 324
            aload 4 /* buffer */
            invokestatic com.oracle.truffle.js.runtime.doubleconv.FixedDtoa.roundUp:(Lcom/oracle/truffle/js/runtime/doubleconv/DtoaBuffer;)V
        end local 6 // int point
        end local 5 // com.oracle.truffle.js.runtime.doubleconv.FixedDtoa$UInt128 fractionals128
        39: .line 327
      StackMap locals:
      StackMap stack:
            return
        end local 4 // com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer buffer
        end local 3 // int fractional_count
        end local 2 // int exponent
        end local 0 // long fractionals
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   40     0       fractionals  J
            0   40     2          exponent  I
            0   40     3  fractional_count  I
            0   40     4            buffer  Lcom/oracle/truffle/js/runtime/doubleconv/DtoaBuffer;
            5   20     5             point  I
            6   17     6                 i  I
           11   15     7             digit  I
           24   39     5    fractionals128  Lcom/oracle/truffle/js/runtime/doubleconv/FixedDtoa$UInt128;
           26   39     6             point  I
           27   37     7                 i  I
           32   35     8             digit  I
    MethodParameters:
                  Name  Flags
      fractionals       
      exponent          final
      fractional_count  final
      buffer            final

  static void trimZeros(com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer);
    descriptor: (Lcom/oracle/truffle/js/runtime/doubleconv/DtoaBuffer;)V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer buffer
         0: .line 333
            goto 2
         1: .line 334
      StackMap locals:
      StackMap stack:
            aload 0 /* buffer */
            dup
            getfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.length:I
            iconst_1
            isub
            putfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.length:I
         2: .line 333
      StackMap locals:
      StackMap stack:
            aload 0 /* buffer */
            getfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.length:I
            ifle 3
            aload 0 /* buffer */
            getfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.chars:[C
            aload 0 /* buffer */
            getfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.length:I
            iconst_1
            isub
            caload
            bipush 48
            if_icmpeq 1
         3: .line 336
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 1 /* first_non_zero */
        start local 1 // int first_non_zero
         4: .line 337
            goto 6
         5: .line 338
      StackMap locals: int
      StackMap stack:
            iinc 1 /* first_non_zero */ 1
         6: .line 337
      StackMap locals:
      StackMap stack:
            iload 1 /* first_non_zero */
            aload 0 /* buffer */
            getfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.length:I
            if_icmpge 7
            aload 0 /* buffer */
            getfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.chars:[C
            iload 1 /* first_non_zero */
            caload
            bipush 48
            if_icmpeq 5
         7: .line 340
      StackMap locals:
      StackMap stack:
            iload 1 /* first_non_zero */
            ifeq 15
         8: .line 341
            iload 1 /* first_non_zero */
            istore 2 /* i */
        start local 2 // int i
         9: goto 12
        10: .line 342
      StackMap locals: int
      StackMap stack:
            aload 0 /* buffer */
            getfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.chars:[C
            iload 2 /* i */
            iload 1 /* first_non_zero */
            isub
            aload 0 /* buffer */
            getfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.chars:[C
            iload 2 /* i */
            caload
            castore
        11: .line 341
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        12: iload 2 /* i */
            aload 0 /* buffer */
            getfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.length:I
            if_icmplt 10
        end local 2 // int i
        13: .line 344
            aload 0 /* buffer */
            dup
            getfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.length:I
            iload 1 /* first_non_zero */
            isub
            putfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.length:I
        14: .line 345
            aload 0 /* buffer */
            dup
            getfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.decimalPoint:I
            iload 1 /* first_non_zero */
            isub
            putfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.decimalPoint:I
        15: .line 347
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int first_non_zero
        end local 0 // com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer buffer
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   16     0          buffer  Lcom/oracle/truffle/js/runtime/doubleconv/DtoaBuffer;
            4   16     1  first_non_zero  I
            9   13     2               i  I
    MethodParameters:
        Name  Flags
      buffer  final

  static boolean fastFixedDtoa(double, int, com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer);
    descriptor: (DILcom/oracle/truffle/js/runtime/doubleconv/DtoaBuffer;)Z
    flags: (0x0008) ACC_STATIC
    Code:
      stack=5, locals=16, args_size=3
        start local 0 // double v
        start local 2 // int fractional_count
        start local 3 // com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer buffer
         0: .line 354
            dload 0 /* v */
            invokestatic com.oracle.truffle.js.runtime.doubleconv.IeeeDouble.doubleToLong:(D)J
            lstore 4 /* l */
        start local 4 // long l
         1: .line 355
            lload 4 /* l */
            invokestatic com.oracle.truffle.js.runtime.doubleconv.IeeeDouble.significand:(J)J
            lstore 6 /* significand */
        start local 6 // long significand
         2: .line 356
            lload 4 /* l */
            invokestatic com.oracle.truffle.js.runtime.doubleconv.IeeeDouble.exponent:(J)I
            istore 8 /* exponent */
        start local 8 // int exponent
         3: .line 362
            iload 8 /* exponent */
            bipush 20
            if_icmple 4
            iconst_0
            ireturn
         4: .line 363
      StackMap locals: long long int
      StackMap stack:
            iload 2 /* fractional_count */
            bipush 20
            if_icmple 5
            iconst_0
            ireturn
         5: .line 367
      StackMap locals:
      StackMap stack:
            iload 8 /* exponent */
            bipush 53
            iadd
            bipush 64
            if_icmple 20
         6: .line 377
            ldc 762939453125
            lstore 9 /* divisor */
        start local 9 // long divisor
         7: .line 379
            lload 6 /* significand */
            lstore 11 /* dividend */
        start local 11 // long dividend
         8: .line 391
            iload 8 /* exponent */
            bipush 17
            if_icmple 13
         9: .line 393
            lload 11 /* dividend */
            iload 8 /* exponent */
            bipush 17
            isub
            lshl
            lstore 11 /* dividend */
        10: .line 394
            lload 11 /* dividend */
            lload 9 /* divisor */
            invokestatic java.lang.Long.divideUnsigned:(JJ)J
            l2i
            istore 13 /* quotient */
        start local 13 // int quotient
        11: .line 395
            lload 11 /* dividend */
            lload 9 /* divisor */
            invokestatic java.lang.Long.remainderUnsigned:(JJ)J
            bipush 17
            lshl
            lstore 14 /* remainder */
        start local 14 // long remainder
        12: .line 396
            goto 16
        end local 14 // long remainder
        end local 13 // int quotient
        13: .line 397
      StackMap locals: long long
      StackMap stack:
            lload 9 /* divisor */
            bipush 17
            iload 8 /* exponent */
            isub
            lshl
            lstore 9 /* divisor */
        14: .line 398
            lload 11 /* dividend */
            lload 9 /* divisor */
            invokestatic java.lang.Long.divideUnsigned:(JJ)J
            l2i
            istore 13 /* quotient */
        start local 13 // int quotient
        15: .line 399
            lload 11 /* dividend */
            lload 9 /* divisor */
            invokestatic java.lang.Long.remainderUnsigned:(JJ)J
            iload 8 /* exponent */
            lshl
            lstore 14 /* remainder */
        start local 14 // long remainder
        16: .line 401
      StackMap locals: int long
      StackMap stack:
            iload 13 /* quotient */
            aload 3 /* buffer */
            invokestatic com.oracle.truffle.js.runtime.doubleconv.FixedDtoa.fillDigits32:(ILcom/oracle/truffle/js/runtime/doubleconv/DtoaBuffer;)V
        17: .line 402
            lload 14 /* remainder */
            aload 3 /* buffer */
            invokestatic com.oracle.truffle.js.runtime.doubleconv.FixedDtoa.fillDigits64FixedLength:(JLcom/oracle/truffle/js/runtime/doubleconv/DtoaBuffer;)V
        18: .line 403
            aload 3 /* buffer */
            aload 3 /* buffer */
            getfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.length:I
            putfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.decimalPoint:I
        end local 14 // long remainder
        end local 13 // int quotient
        end local 11 // long dividend
        end local 9 // long divisor
        19: .line 404
            goto 42
      StackMap locals: double int com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer long long int
      StackMap stack:
        20: iload 8 /* exponent */
            iflt 25
        21: .line 406
            lload 6 /* significand */
            iload 8 /* exponent */
            lshl
            lstore 6 /* significand */
        22: .line 407
            lload 6 /* significand */
            aload 3 /* buffer */
            invokestatic com.oracle.truffle.js.runtime.doubleconv.FixedDtoa.FillDigits64:(JLcom/oracle/truffle/js/runtime/doubleconv/DtoaBuffer;)V
        23: .line 408
            aload 3 /* buffer */
            aload 3 /* buffer */
            getfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.length:I
            putfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.decimalPoint:I
        24: .line 409
            goto 42
      StackMap locals:
      StackMap stack:
        25: iload 8 /* exponent */
            bipush -53
            if_icmple 35
        26: .line 411
            lload 6 /* significand */
            iload 8 /* exponent */
            ineg
            lushr
            lstore 9 /* integrals */
        start local 9 // long integrals
        27: .line 412
            lload 6 /* significand */
            lload 9 /* integrals */
            iload 8 /* exponent */
            ineg
            lshl
            lsub
            lstore 11 /* fractionals */
        start local 11 // long fractionals
        28: .line 413
            lload 9 /* integrals */
            ldc 4294967295
            invokestatic java.lang.Long.compareUnsigned:(JJ)I
            ifle 31
        29: .line 414
            lload 9 /* integrals */
            aload 3 /* buffer */
            invokestatic com.oracle.truffle.js.runtime.doubleconv.FixedDtoa.FillDigits64:(JLcom/oracle/truffle/js/runtime/doubleconv/DtoaBuffer;)V
        30: .line 415
            goto 32
        31: .line 416
      StackMap locals: long long
      StackMap stack:
            lload 9 /* integrals */
            l2i
            aload 3 /* buffer */
            invokestatic com.oracle.truffle.js.runtime.doubleconv.FixedDtoa.fillDigits32:(ILcom/oracle/truffle/js/runtime/doubleconv/DtoaBuffer;)V
        32: .line 418
      StackMap locals:
      StackMap stack:
            aload 3 /* buffer */
            aload 3 /* buffer */
            getfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.length:I
            putfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.decimalPoint:I
        33: .line 419
            lload 11 /* fractionals */
            iload 8 /* exponent */
            iload 2 /* fractional_count */
            aload 3 /* buffer */
            invokestatic com.oracle.truffle.js.runtime.doubleconv.FixedDtoa.fillFractionals:(JIILcom/oracle/truffle/js/runtime/doubleconv/DtoaBuffer;)V
        end local 11 // long fractionals
        end local 9 // long integrals
        34: .line 420
            goto 42
      StackMap locals:
      StackMap stack:
        35: iload 8 /* exponent */
            bipush -128
            if_icmpge 40
        36: .line 423
            getstatic com.oracle.truffle.js.runtime.doubleconv.FixedDtoa.$assertionsDisabled:Z
            ifne 37
            iload 2 /* fractional_count */
            bipush 20
            if_icmple 37
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        37: .line 424
      StackMap locals:
      StackMap stack:
            aload 3 /* buffer */
            invokevirtual com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.reset:()V
        38: .line 425
            aload 3 /* buffer */
            iload 2 /* fractional_count */
            ineg
            putfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.decimalPoint:I
        39: .line 426
            goto 42
        40: .line 427
      StackMap locals:
      StackMap stack:
            aload 3 /* buffer */
            iconst_0
            putfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.decimalPoint:I
        41: .line 428
            lload 6 /* significand */
            iload 8 /* exponent */
            iload 2 /* fractional_count */
            aload 3 /* buffer */
            invokestatic com.oracle.truffle.js.runtime.doubleconv.FixedDtoa.fillFractionals:(JIILcom/oracle/truffle/js/runtime/doubleconv/DtoaBuffer;)V
        42: .line 430
      StackMap locals:
      StackMap stack:
            aload 3 /* buffer */
            invokestatic com.oracle.truffle.js.runtime.doubleconv.FixedDtoa.trimZeros:(Lcom/oracle/truffle/js/runtime/doubleconv/DtoaBuffer;)V
        43: .line 431
            aload 3 /* buffer */
            getfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.length:I
            ifne 45
        44: .line 434
            aload 3 /* buffer */
            iload 2 /* fractional_count */
            ineg
            putfield com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer.decimalPoint:I
        45: .line 436
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 8 // int exponent
        end local 6 // long significand
        end local 4 // long l
        end local 3 // com.oracle.truffle.js.runtime.doubleconv.DtoaBuffer buffer
        end local 2 // int fractional_count
        end local 0 // double v
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   46     0                 v  D
            0   46     2  fractional_count  I
            0   46     3            buffer  Lcom/oracle/truffle/js/runtime/doubleconv/DtoaBuffer;
            1   46     4                 l  J
            2   46     6       significand  J
            3   46     8          exponent  I
            7   19     9           divisor  J
            8   19    11          dividend  J
           11   13    13          quotient  I
           15   19    13          quotient  I
           12   13    14         remainder  J
           16   19    14         remainder  J
           27   34     9         integrals  J
           28   34    11       fractionals  J
    MethodParameters:
                  Name  Flags
      v                 final
      fractional_count  final
      buffer            final
}
SourceFile: "FixedDtoa.java"
NestMembers:
  com.oracle.truffle.js.runtime.doubleconv.FixedDtoa$UInt128
InnerClasses:
  UInt128 = com.oracle.truffle.js.runtime.doubleconv.FixedDtoa$UInt128 of com.oracle.truffle.js.runtime.doubleconv.FixedDtoa