public class sun.misc.FormattedFloatingDecimal
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: sun.misc.FormattedFloatingDecimal
  super_class: java.lang.Object
{
  private int decExponentRounded;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private char[] mantissa;
    descriptor: [C
    flags: (0x0002) ACC_PRIVATE

  private char[] exponent;
    descriptor: [C
    flags: (0x0002) ACC_PRIVATE

  private static final java.lang.ThreadLocal<java.lang.Object> threadLocalCharBuffer;
    descriptor: Ljava/lang/ThreadLocal;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    Signature: Ljava/lang/ThreadLocal<Ljava/lang/Object;>;

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

  private static volatile int[] $SWITCH_TABLE$sun$misc$FormattedFloatingDecimal$Form;
    descriptor: [I
    flags: (0x104a) ACC_PRIVATE, ACC_STATIC, ACC_VOLATILE, ACC_SYNTHETIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 30
            ldc Lsun/misc/FormattedFloatingDecimal;
            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 sun.misc.FormattedFloatingDecimal.$assertionsDisabled:Z
         3: .line 46
            new sun.misc.FormattedFloatingDecimal$1
            dup
            invokespecial sun.misc.FormattedFloatingDecimal$1.<init>:()V
         4: .line 45
            putstatic sun.misc.FormattedFloatingDecimal.threadLocalCharBuffer:Ljava/lang/ThreadLocal;
         5: .line 51
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public static sun.misc.FormattedFloatingDecimal valueOf(double, int, sun.misc.FormattedFloatingDecimal$Form);
    descriptor: (DILsun/misc/FormattedFloatingDecimal$Form;)Lsun/misc/FormattedFloatingDecimal;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=5, args_size=3
        start local 0 // double d
        start local 2 // int precision
        start local 3 // sun.misc.FormattedFloatingDecimal$Form form
         0: .line 37
            dload 0 /* d */
            aload 3 /* form */
            getstatic sun.misc.FormattedFloatingDecimal$Form.COMPATIBLE:Lsun/misc/FormattedFloatingDecimal$Form;
            if_acmpne 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack: double
         1: iconst_0
      StackMap locals: double int sun.misc.FormattedFloatingDecimal$Form
      StackMap stack: double int
         2: invokestatic sun.misc.FloatingDecimal.getBinaryToASCIIConverter:(DZ)Lsun/misc/FloatingDecimal$BinaryToASCIIConverter;
         3: .line 36
            astore 4 /* fdConverter */
        start local 4 // sun.misc.FloatingDecimal$BinaryToASCIIConverter fdConverter
         4: .line 38
            new sun.misc.FormattedFloatingDecimal
            dup
            iload 2 /* precision */
            aload 3 /* form */
            aload 4 /* fdConverter */
            invokespecial sun.misc.FormattedFloatingDecimal.<init>:(ILsun/misc/FormattedFloatingDecimal$Form;Lsun/misc/FloatingDecimal$BinaryToASCIIConverter;)V
            areturn
        end local 4 // sun.misc.FloatingDecimal$BinaryToASCIIConverter fdConverter
        end local 3 // sun.misc.FormattedFloatingDecimal$Form form
        end local 2 // int precision
        end local 0 // double d
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    5     0            d  D
            0    5     2    precision  I
            0    5     3         form  Lsun/misc/FormattedFloatingDecimal$Form;
            4    5     4  fdConverter  Lsun/misc/FloatingDecimal$BinaryToASCIIConverter;
    MethodParameters:
           Name  Flags
      d          
      precision  
      form       

  private static char[] getBuffer();
    descriptor: ()[C
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 54
            getstatic sun.misc.FormattedFloatingDecimal.threadLocalCharBuffer:Ljava/lang/ThreadLocal;
            invokevirtual java.lang.ThreadLocal.get:()Ljava/lang/Object;
            checkcast char[]
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private void <init>(int, sun.misc.FormattedFloatingDecimal$Form, sun.misc.FloatingDecimal$BinaryToASCIIConverter);
    descriptor: (ILsun/misc/FormattedFloatingDecimal$Form;Lsun/misc/FloatingDecimal$BinaryToASCIIConverter;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=9, args_size=4
        start local 0 // sun.misc.FormattedFloatingDecimal this
        start local 1 // int precision
        start local 2 // sun.misc.FormattedFloatingDecimal$Form form
        start local 3 // sun.misc.FloatingDecimal$BinaryToASCIIConverter fdConverter
         0: .line 57
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 58
            aload 3 /* fdConverter */
            invokeinterface sun.misc.FloatingDecimal$BinaryToASCIIConverter.isExceptional:()Z
            ifeq 5
         2: .line 59
            aload 0 /* this */
            aload 3 /* fdConverter */
            invokeinterface sun.misc.FloatingDecimal$BinaryToASCIIConverter.toJavaFormatString:()Ljava/lang/String;
            invokevirtual java.lang.String.toCharArray:()[C
            putfield sun.misc.FormattedFloatingDecimal.mantissa:[C
         3: .line 60
            aload 0 /* this */
            aconst_null
            putfield sun.misc.FormattedFloatingDecimal.exponent:[C
         4: .line 61
            return
         5: .line 63
      StackMap locals: sun.misc.FormattedFloatingDecimal int sun.misc.FormattedFloatingDecimal$Form sun.misc.FloatingDecimal$BinaryToASCIIConverter
      StackMap stack:
            invokestatic sun.misc.FormattedFloatingDecimal.getBuffer:()[C
            astore 4 /* digits */
        start local 4 // char[] digits
         6: .line 64
            aload 3 /* fdConverter */
            aload 4 /* digits */
            invokeinterface sun.misc.FloatingDecimal$BinaryToASCIIConverter.getDigits:([C)I
            istore 5 /* nDigits */
        start local 5 // int nDigits
         7: .line 65
            aload 3 /* fdConverter */
            invokeinterface sun.misc.FloatingDecimal$BinaryToASCIIConverter.getDecimalExponent:()I
            istore 6 /* decExp */
        start local 6 // int decExp
         8: .line 67
            aload 3 /* fdConverter */
            invokeinterface sun.misc.FloatingDecimal$BinaryToASCIIConverter.isNegative:()Z
            istore 8 /* isNegative */
        start local 8 // boolean isNegative
         9: .line 68
            invokestatic sun.misc.FormattedFloatingDecimal.$SWITCH_TABLE$sun$misc$FormattedFloatingDecimal$Form:()[I
            aload 2 /* form */
            invokevirtual sun.misc.FormattedFloatingDecimal$Form.ordinal:()I
            iaload
            tableswitch { // 1 - 4
                    1: 18
                    2: 10
                    3: 14
                    4: 22
              default: 31
          }
        10: .line 70
      StackMap locals: sun.misc.FormattedFloatingDecimal int sun.misc.FormattedFloatingDecimal$Form sun.misc.FloatingDecimal$BinaryToASCIIConverter char[] int int top int
      StackMap stack:
            iload 6 /* decExp */
            istore 7 /* exp */
        start local 7 // int exp
        11: .line 71
            aload 0 /* this */
            iload 7 /* exp */
            putfield sun.misc.FormattedFloatingDecimal.decExponentRounded:I
        12: .line 72
            aload 0 /* this */
            iload 1 /* precision */
            aload 4 /* digits */
            iload 5 /* nDigits */
            iload 7 /* exp */
            iload 8 /* isNegative */
            invokevirtual sun.misc.FormattedFloatingDecimal.fillCompatible:(I[CIIZ)V
        13: .line 73
            goto 32
        end local 7 // int exp
        14: .line 75
      StackMap locals:
      StackMap stack:
            iload 6 /* decExp */
            aload 4 /* digits */
            iload 5 /* nDigits */
            iload 6 /* decExp */
            iload 1 /* precision */
            iadd
            invokestatic sun.misc.FormattedFloatingDecimal.applyPrecision:(I[CII)I
            istore 7 /* exp */
        start local 7 // int exp
        15: .line 76
            aload 0 /* this */
            iload 1 /* precision */
            aload 4 /* digits */
            iload 5 /* nDigits */
            iload 7 /* exp */
            iload 8 /* isNegative */
            invokevirtual sun.misc.FormattedFloatingDecimal.fillDecimal:(I[CIIZ)V
        16: .line 77
            aload 0 /* this */
            iload 7 /* exp */
            putfield sun.misc.FormattedFloatingDecimal.decExponentRounded:I
        17: .line 78
            goto 32
        end local 7 // int exp
        18: .line 80
      StackMap locals:
      StackMap stack:
            iload 6 /* decExp */
            aload 4 /* digits */
            iload 5 /* nDigits */
            iload 1 /* precision */
            iconst_1
            iadd
            invokestatic sun.misc.FormattedFloatingDecimal.applyPrecision:(I[CII)I
            istore 7 /* exp */
        start local 7 // int exp
        19: .line 81
            aload 0 /* this */
            iload 1 /* precision */
            aload 4 /* digits */
            iload 5 /* nDigits */
            iload 7 /* exp */
            iload 8 /* isNegative */
            invokevirtual sun.misc.FormattedFloatingDecimal.fillScientific:(I[CIIZ)V
        20: .line 82
            aload 0 /* this */
            iload 7 /* exp */
            putfield sun.misc.FormattedFloatingDecimal.decExponentRounded:I
        21: .line 83
            goto 32
        end local 7 // int exp
        22: .line 85
      StackMap locals:
      StackMap stack:
            iload 6 /* decExp */
            aload 4 /* digits */
            iload 5 /* nDigits */
            iload 1 /* precision */
            invokestatic sun.misc.FormattedFloatingDecimal.applyPrecision:(I[CII)I
            istore 7 /* exp */
        start local 7 // int exp
        23: .line 88
            iload 7 /* exp */
            iconst_1
            isub
            bipush -4
            if_icmplt 24
            iload 7 /* exp */
            iconst_1
            isub
            iload 1 /* precision */
            if_icmplt 27
        24: .line 90
      StackMap locals: sun.misc.FormattedFloatingDecimal int sun.misc.FormattedFloatingDecimal$Form sun.misc.FloatingDecimal$BinaryToASCIIConverter char[] int int int int
      StackMap stack:
            iinc 1 /* precision */ -1
        25: .line 91
            aload 0 /* this */
            iload 1 /* precision */
            aload 4 /* digits */
            iload 5 /* nDigits */
            iload 7 /* exp */
            iload 8 /* isNegative */
            invokevirtual sun.misc.FormattedFloatingDecimal.fillScientific:(I[CIIZ)V
        26: .line 92
            goto 29
        27: .line 94
      StackMap locals:
      StackMap stack:
            iload 1 /* precision */
            iload 7 /* exp */
            isub
            istore 1 /* precision */
        28: .line 95
            aload 0 /* this */
            iload 1 /* precision */
            aload 4 /* digits */
            iload 5 /* nDigits */
            iload 7 /* exp */
            iload 8 /* isNegative */
            invokevirtual sun.misc.FormattedFloatingDecimal.fillDecimal:(I[CIIZ)V
        29: .line 97
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 7 /* exp */
            putfield sun.misc.FormattedFloatingDecimal.decExponentRounded:I
        30: .line 98
            goto 32
        end local 7 // int exp
        31: .line 100
      StackMap locals: sun.misc.FormattedFloatingDecimal int sun.misc.FormattedFloatingDecimal$Form sun.misc.FloatingDecimal$BinaryToASCIIConverter char[] int int top int
      StackMap stack:
            getstatic sun.misc.FormattedFloatingDecimal.$assertionsDisabled:Z
            ifne 32
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        32: .line 102
      StackMap locals:
      StackMap stack:
            return
        end local 8 // boolean isNegative
        end local 6 // int decExp
        end local 5 // int nDigits
        end local 4 // char[] digits
        end local 3 // sun.misc.FloatingDecimal$BinaryToASCIIConverter fdConverter
        end local 2 // sun.misc.FormattedFloatingDecimal$Form form
        end local 1 // int precision
        end local 0 // sun.misc.FormattedFloatingDecimal this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   33     0         this  Lsun/misc/FormattedFloatingDecimal;
            0   33     1    precision  I
            0   33     2         form  Lsun/misc/FormattedFloatingDecimal$Form;
            0   33     3  fdConverter  Lsun/misc/FloatingDecimal$BinaryToASCIIConverter;
            6   33     4       digits  [C
            7   33     5      nDigits  I
            8   33     6       decExp  I
           11   14     7          exp  I
           15   18     7          exp  I
           19   22     7          exp  I
           23   31     7          exp  I
            9   33     8   isNegative  Z
    MethodParameters:
             Name  Flags
      precision    
      form         
      fdConverter  

  public int getExponentRounded();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.misc.FormattedFloatingDecimal this
         0: .line 106
            aload 0 /* this */
            getfield sun.misc.FormattedFloatingDecimal.decExponentRounded:I
            iconst_1
            isub
            ireturn
        end local 0 // sun.misc.FormattedFloatingDecimal this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/misc/FormattedFloatingDecimal;

  public char[] getMantissa();
    descriptor: ()[C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.misc.FormattedFloatingDecimal this
         0: .line 110
            aload 0 /* this */
            getfield sun.misc.FormattedFloatingDecimal.mantissa:[C
            areturn
        end local 0 // sun.misc.FormattedFloatingDecimal this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/misc/FormattedFloatingDecimal;

  public char[] getExponent();
    descriptor: ()[C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // sun.misc.FormattedFloatingDecimal this
         0: .line 114
            aload 0 /* this */
            getfield sun.misc.FormattedFloatingDecimal.exponent:[C
            areturn
        end local 0 // sun.misc.FormattedFloatingDecimal this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/misc/FormattedFloatingDecimal;

  private static int applyPrecision(int, char[], int, int);
    descriptor: (I[CII)I
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=4, locals=6, args_size=4
        start local 0 // int decExp
        start local 1 // char[] digits
        start local 2 // int nDigits
        start local 3 // int prec
         0: .line 121
            iload 3 /* prec */
            iload 2 /* nDigits */
            if_icmpge 1
            iload 3 /* prec */
            ifge 2
         1: .line 123
      StackMap locals:
      StackMap stack:
            iload 0 /* decExp */
            ireturn
         2: .line 125
      StackMap locals:
      StackMap stack:
            iload 3 /* prec */
            ifne 9
         3: .line 128
            aload 1 /* digits */
            iconst_0
            caload
            bipush 53
            if_icmplt 7
         4: .line 129
            aload 1 /* digits */
            iconst_0
            bipush 49
            castore
         5: .line 130
            aload 1 /* digits */
            iconst_1
            iload 2 /* nDigits */
            bipush 48
            invokestatic java.util.Arrays.fill:([CIIC)V
         6: .line 131
            iload 0 /* decExp */
            iconst_1
            iadd
            ireturn
         7: .line 133
      StackMap locals:
      StackMap stack:
            aload 1 /* digits */
            iconst_0
            iload 2 /* nDigits */
            bipush 48
            invokestatic java.util.Arrays.fill:([CIIC)V
         8: .line 134
            iload 0 /* decExp */
            ireturn
         9: .line 137
      StackMap locals:
      StackMap stack:
            aload 1 /* digits */
            iload 3 /* prec */
            caload
            istore 4 /* q */
        start local 4 // int q
        10: .line 138
            iload 4 /* q */
            bipush 53
            if_icmplt 24
        11: .line 139
            iload 3 /* prec */
            istore 5 /* i */
        start local 5 // int i
        12: .line 140
            aload 1 /* digits */
            iinc 5 /* i */ -1
            iload 5 /* i */
            caload
            istore 4 /* q */
        13: .line 141
            iload 4 /* q */
            bipush 57
            if_icmpne 21
        14: .line 142
            goto 16
        15: .line 143
      StackMap locals: int int
      StackMap stack:
            aload 1 /* digits */
            iinc 5 /* i */ -1
            iload 5 /* i */
            caload
            istore 4 /* q */
        16: .line 142
      StackMap locals:
      StackMap stack:
            iload 4 /* q */
            bipush 57
            if_icmpne 17
            iload 5 /* i */
            ifgt 15
        17: .line 145
      StackMap locals:
      StackMap stack:
            iload 4 /* q */
            bipush 57
            if_icmpne 21
        18: .line 147
            aload 1 /* digits */
            iconst_0
            bipush 49
            castore
        19: .line 148
            aload 1 /* digits */
            iconst_1
            iload 2 /* nDigits */
            bipush 48
            invokestatic java.util.Arrays.fill:([CIIC)V
        20: .line 149
            iload 0 /* decExp */
            iconst_1
            iadd
            ireturn
        21: .line 152
      StackMap locals:
      StackMap stack:
            aload 1 /* digits */
            iload 5 /* i */
            iload 4 /* q */
            iconst_1
            iadd
            i2c
            castore
        22: .line 153
            aload 1 /* digits */
            iload 5 /* i */
            iconst_1
            iadd
            iload 2 /* nDigits */
            bipush 48
            invokestatic java.util.Arrays.fill:([CIIC)V
        end local 5 // int i
        23: .line 154
            goto 25
        24: .line 155
      StackMap locals:
      StackMap stack:
            aload 1 /* digits */
            iload 3 /* prec */
            iload 2 /* nDigits */
            bipush 48
            invokestatic java.util.Arrays.fill:([CIIC)V
        25: .line 157
      StackMap locals:
      StackMap stack:
            iload 0 /* decExp */
            ireturn
        end local 4 // int q
        end local 3 // int prec
        end local 2 // int nDigits
        end local 1 // char[] digits
        end local 0 // int decExp
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   26     0   decExp  I
            0   26     1   digits  [C
            0   26     2  nDigits  I
            0   26     3     prec  I
           10   26     4        q  I
           12   23     5        i  I
    MethodParameters:
         Name  Flags
      decExp   
      digits   
      nDigits  
      prec     

  private void fillCompatible(int, char[], int, int, boolean);
    descriptor: (I[CIIZ)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=10, args_size=6
        start local 0 // sun.misc.FormattedFloatingDecimal this
        start local 1 // int precision
        start local 2 // char[] digits
        start local 3 // int nDigits
        start local 4 // int exp
        start local 5 // boolean isNegative
         0: .line 164
            iload 5 /* isNegative */
            ifeq 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: istore 6 /* startIndex */
        start local 6 // int startIndex
         3: .line 165
            iload 4 /* exp */
            ifle 24
            iload 4 /* exp */
            bipush 8
            if_icmpge 24
         4: .line 167
            iload 3 /* nDigits */
            iload 4 /* exp */
            if_icmpge 12
         5: .line 168
            iload 4 /* exp */
            iload 3 /* nDigits */
            isub
            istore 7 /* extraZeros */
        start local 7 // int extraZeros
         6: .line 169
            aload 0 /* this */
            iload 5 /* isNegative */
            iload 3 /* nDigits */
            iload 7 /* extraZeros */
            iadd
            iconst_2
            iadd
            invokestatic sun.misc.FormattedFloatingDecimal.create:(ZI)[C
            putfield sun.misc.FormattedFloatingDecimal.mantissa:[C
         7: .line 170
            aload 2 /* digits */
            iconst_0
            aload 0 /* this */
            getfield sun.misc.FormattedFloatingDecimal.mantissa:[C
            iload 6 /* startIndex */
            iload 3 /* nDigits */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         8: .line 171
            aload 0 /* this */
            getfield sun.misc.FormattedFloatingDecimal.mantissa:[C
            iload 6 /* startIndex */
            iload 3 /* nDigits */
            iadd
            iload 6 /* startIndex */
            iload 3 /* nDigits */
            iadd
            iload 7 /* extraZeros */
            iadd
            bipush 48
            invokestatic java.util.Arrays.fill:([CIIC)V
         9: .line 172
            aload 0 /* this */
            getfield sun.misc.FormattedFloatingDecimal.mantissa:[C
            iload 6 /* startIndex */
            iload 3 /* nDigits */
            iadd
            iload 7 /* extraZeros */
            iadd
            bipush 46
            castore
        10: .line 173
            aload 0 /* this */
            getfield sun.misc.FormattedFloatingDecimal.mantissa:[C
            iload 6 /* startIndex */
            iload 3 /* nDigits */
            iadd
            iload 7 /* extraZeros */
            iadd
            iconst_1
            iadd
            bipush 48
            castore
        end local 7 // int extraZeros
        11: .line 174
            goto 77
      StackMap locals: int
      StackMap stack:
        12: iload 4 /* exp */
            iload 3 /* nDigits */
            if_icmpge 19
        13: .line 175
            iload 3 /* nDigits */
            iload 4 /* exp */
            isub
            iload 1 /* precision */
            invokestatic java.lang.Math.min:(II)I
            istore 7 /* t */
        start local 7 // int t
        14: .line 176
            aload 0 /* this */
            iload 5 /* isNegative */
            iload 4 /* exp */
            iconst_1
            iadd
            iload 7 /* t */
            iadd
            invokestatic sun.misc.FormattedFloatingDecimal.create:(ZI)[C
            putfield sun.misc.FormattedFloatingDecimal.mantissa:[C
        15: .line 177
            aload 2 /* digits */
            iconst_0
            aload 0 /* this */
            getfield sun.misc.FormattedFloatingDecimal.mantissa:[C
            iload 6 /* startIndex */
            iload 4 /* exp */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        16: .line 178
            aload 0 /* this */
            getfield sun.misc.FormattedFloatingDecimal.mantissa:[C
            iload 6 /* startIndex */
            iload 4 /* exp */
            iadd
            bipush 46
            castore
        17: .line 179
            aload 2 /* digits */
            iload 4 /* exp */
            aload 0 /* this */
            getfield sun.misc.FormattedFloatingDecimal.mantissa:[C
            iload 6 /* startIndex */
            iload 4 /* exp */
            iadd
            iconst_1
            iadd
            iload 7 /* t */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        end local 7 // int t
        18: .line 180
            goto 77
        19: .line 181
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 5 /* isNegative */
            iload 3 /* nDigits */
            iconst_2
            iadd
            invokestatic sun.misc.FormattedFloatingDecimal.create:(ZI)[C
            putfield sun.misc.FormattedFloatingDecimal.mantissa:[C
        20: .line 182
            aload 2 /* digits */
            iconst_0
            aload 0 /* this */
            getfield sun.misc.FormattedFloatingDecimal.mantissa:[C
            iload 6 /* startIndex */
            iload 3 /* nDigits */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        21: .line 183
            aload 0 /* this */
            getfield sun.misc.FormattedFloatingDecimal.mantissa:[C
            iload 6 /* startIndex */
            iload 3 /* nDigits */
            iadd
            bipush 46
            castore
        22: .line 184
            aload 0 /* this */
            getfield sun.misc.FormattedFloatingDecimal.mantissa:[C
            iload 6 /* startIndex */
            iload 3 /* nDigits */
            iadd
            iconst_1
            iadd
            bipush 48
            castore
        23: .line 186
            goto 77
      StackMap locals:
      StackMap stack:
        24: iload 4 /* exp */
            ifgt 44
            iload 4 /* exp */
            bipush -3
            if_icmple 44
        25: .line 187
            iconst_0
            iload 4 /* exp */
            ineg
            iload 1 /* precision */
            invokestatic java.lang.Math.min:(II)I
            invokestatic java.lang.Math.max:(II)I
            istore 7 /* zeros */
        start local 7 // int zeros
        26: .line 188
            iconst_0
            iload 3 /* nDigits */
            iload 1 /* precision */
            iload 4 /* exp */
            iadd
            invokestatic java.lang.Math.min:(II)I
            invokestatic java.lang.Math.max:(II)I
            istore 8 /* t */
        start local 8 // int t
        27: .line 190
            iload 7 /* zeros */
            ifle 35
        28: .line 191
            aload 0 /* this */
            iload 5 /* isNegative */
            iload 7 /* zeros */
            iconst_2
            iadd
            iload 8 /* t */
            iadd
            invokestatic sun.misc.FormattedFloatingDecimal.create:(ZI)[C
            putfield sun.misc.FormattedFloatingDecimal.mantissa:[C
        29: .line 192
            aload 0 /* this */
            getfield sun.misc.FormattedFloatingDecimal.mantissa:[C
            iload 6 /* startIndex */
            bipush 48
            castore
        30: .line 193
            aload 0 /* this */
            getfield sun.misc.FormattedFloatingDecimal.mantissa:[C
            iload 6 /* startIndex */
            iconst_1
            iadd
            bipush 46
            castore
        31: .line 194
            aload 0 /* this */
            getfield sun.misc.FormattedFloatingDecimal.mantissa:[C
            iload 6 /* startIndex */
            iconst_2
            iadd
            iload 6 /* startIndex */
            iconst_2
            iadd
            iload 7 /* zeros */
            iadd
            bipush 48
            invokestatic java.util.Arrays.fill:([CIIC)V
        32: .line 195
            iload 8 /* t */
            ifle 77
        33: .line 197
            aload 2 /* digits */
            iconst_0
            aload 0 /* this */
            getfield sun.misc.FormattedFloatingDecimal.mantissa:[C
            iload 6 /* startIndex */
            iconst_2
            iadd
            iload 7 /* zeros */
            iadd
            iload 8 /* t */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        34: .line 199
            goto 77
      StackMap locals: int int
      StackMap stack:
        35: iload 8 /* t */
            ifle 41
        36: .line 200
            aload 0 /* this */
            iload 5 /* isNegative */
            iload 7 /* zeros */
            iconst_2
            iadd
            iload 8 /* t */
            iadd
            invokestatic sun.misc.FormattedFloatingDecimal.create:(ZI)[C
            putfield sun.misc.FormattedFloatingDecimal.mantissa:[C
        37: .line 201
            aload 0 /* this */
            getfield sun.misc.FormattedFloatingDecimal.mantissa:[C
            iload 6 /* startIndex */
            bipush 48
            castore
        38: .line 202
            aload 0 /* this */
            getfield sun.misc.FormattedFloatingDecimal.mantissa:[C
            iload 6 /* startIndex */
            iconst_1
            iadd
            bipush 46
            castore
        39: .line 204
            aload 2 /* digits */
            iconst_0
            aload 0 /* this */
            getfield sun.misc.FormattedFloatingDecimal.mantissa:[C
            iload 6 /* startIndex */
            iconst_2
            iadd
            iload 8 /* t */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        40: .line 205
            goto 77
        41: .line 206
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 5 /* isNegative */
            iconst_1
            invokestatic sun.misc.FormattedFloatingDecimal.create:(ZI)[C
            putfield sun.misc.FormattedFloatingDecimal.mantissa:[C
        42: .line 207
            aload 0 /* this */
            getfield sun.misc.FormattedFloatingDecimal.mantissa:[C
            iload 6 /* startIndex */
            bipush 48
            castore
        end local 8 // int t
        end local 7 // int zeros
        43: .line 209
            goto 77
        44: .line 210
      StackMap locals:
      StackMap stack:
            iload 3 /* nDigits */
            iconst_1
            if_icmple 50
        45: .line 211
            aload 0 /* this */
            iload 5 /* isNegative */
            iload 3 /* nDigits */
            iconst_1
            iadd
            invokestatic sun.misc.FormattedFloatingDecimal.create:(ZI)[C
            putfield sun.misc.FormattedFloatingDecimal.mantissa:[C
        46: .line 212
            aload 0 /* this */
            getfield sun.misc.FormattedFloatingDecimal.mantissa:[C
            iload 6 /* startIndex */
            aload 2 /* digits */
            iconst_0
            caload
            castore
        47: .line 213
            aload 0 /* this */
            getfield sun.misc.FormattedFloatingDecimal.mantissa:[C
            iload 6 /* startIndex */
            iconst_1
            iadd
            bipush 46
            castore
        48: .line 214
            aload 2 /* digits */
            iconst_1
            aload 0 /* this */
            getfield sun.misc.FormattedFloatingDecimal.mantissa:[C
            iload 6 /* startIndex */
            iconst_2
            iadd
            iload 3 /* nDigits */
            iconst_1
            isub
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        49: .line 215
            goto 54
        50: .line 216
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 5 /* isNegative */
            iconst_3
            invokestatic sun.misc.FormattedFloatingDecimal.create:(ZI)[C
            putfield sun.misc.FormattedFloatingDecimal.mantissa:[C
        51: .line 217
            aload 0 /* this */
            getfield sun.misc.FormattedFloatingDecimal.mantissa:[C
            iload 6 /* startIndex */
            aload 2 /* digits */
            iconst_0
            caload
            castore
        52: .line 218
            aload 0 /* this */
            getfield sun.misc.FormattedFloatingDecimal.mantissa:[C
            iload 6 /* startIndex */
            iconst_1
            iadd
            bipush 46
            castore
        53: .line 219
            aload 0 /* this */
            getfield sun.misc.FormattedFloatingDecimal.mantissa:[C
            iload 6 /* startIndex */
            iconst_2
            iadd
            bipush 48
            castore
        54: .line 222
      StackMap locals:
      StackMap stack:
            iload 4 /* exp */
            ifgt 55
            iconst_1
            goto 56
      StackMap locals:
      StackMap stack:
        55: iconst_0
      StackMap locals:
      StackMap stack: int
        56: istore 9 /* isNegExp */
        start local 9 // boolean isNegExp
        57: .line 223
            iload 9 /* isNegExp */
            ifeq 61
        58: .line 224
            iload 4 /* exp */
            ineg
            iconst_1
            iadd
            istore 7 /* e */
        start local 7 // int e
        59: .line 225
            iconst_1
            istore 8 /* expStartIntex */
        start local 8 // int expStartIntex
        60: .line 226
            goto 63
        end local 8 // int expStartIntex
        end local 7 // int e
        61: .line 227
      StackMap locals: sun.misc.FormattedFloatingDecimal int char[] int int int int top top int
      StackMap stack:
            iload 4 /* exp */
            iconst_1
            isub
            istore 7 /* e */
        start local 7 // int e
        62: .line 228
            iconst_0
            istore 8 /* expStartIntex */
        start local 8 // int expStartIntex
        63: .line 231
      StackMap locals: sun.misc.FormattedFloatingDecimal int char[] int int int int int int int
      StackMap stack:
            iload 7 /* e */
            bipush 9
            if_icmpgt 67
        64: .line 232
            aload 0 /* this */
            iload 9 /* isNegExp */
            iconst_1
            invokestatic sun.misc.FormattedFloatingDecimal.create:(ZI)[C
            putfield sun.misc.FormattedFloatingDecimal.exponent:[C
        65: .line 233
            aload 0 /* this */
            getfield sun.misc.FormattedFloatingDecimal.exponent:[C
            iload 8 /* expStartIntex */
            iload 7 /* e */
            bipush 48
            iadd
            i2c
            castore
        66: .line 234
            goto 77
      StackMap locals:
      StackMap stack:
        67: iload 7 /* e */
            bipush 99
            if_icmpgt 72
        68: .line 235
            aload 0 /* this */
            iload 9 /* isNegExp */
            iconst_2
            invokestatic sun.misc.FormattedFloatingDecimal.create:(ZI)[C
            putfield sun.misc.FormattedFloatingDecimal.exponent:[C
        69: .line 236
            aload 0 /* this */
            getfield sun.misc.FormattedFloatingDecimal.exponent:[C
            iload 8 /* expStartIntex */
            iload 7 /* e */
            bipush 10
            idiv
            bipush 48
            iadd
            i2c
            castore
        70: .line 237
            aload 0 /* this */
            getfield sun.misc.FormattedFloatingDecimal.exponent:[C
            iload 8 /* expStartIntex */
            iconst_1
            iadd
            iload 7 /* e */
            bipush 10
            irem
            bipush 48
            iadd
            i2c
            castore
        71: .line 238
            goto 77
        72: .line 239
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 9 /* isNegExp */
            iconst_3
            invokestatic sun.misc.FormattedFloatingDecimal.create:(ZI)[C
            putfield sun.misc.FormattedFloatingDecimal.exponent:[C
        73: .line 240
            aload 0 /* this */
            getfield sun.misc.FormattedFloatingDecimal.exponent:[C
            iload 8 /* expStartIntex */
            iload 7 /* e */
            bipush 100
            idiv
            bipush 48
            iadd
            i2c
            castore
        74: .line 241
            iload 7 /* e */
            bipush 100
            irem
            istore 7 /* e */
        75: .line 242
            aload 0 /* this */
            getfield sun.misc.FormattedFloatingDecimal.exponent:[C
            iload 8 /* expStartIntex */
            iconst_1
            iadd
            iload 7 /* e */
            bipush 10
            idiv
            bipush 48
            iadd
            i2c
            castore
        76: .line 243
            aload 0 /* this */
            getfield sun.misc.FormattedFloatingDecimal.exponent:[C
            iload 8 /* expStartIntex */
            iconst_2
            iadd
            iload 7 /* e */
            bipush 10
            irem
            bipush 48
            iadd
            i2c
            castore
        end local 9 // boolean isNegExp
        end local 8 // int expStartIntex
        end local 7 // int e
        77: .line 246
      StackMap locals:
      StackMap stack:
            return
        end local 6 // int startIndex
        end local 5 // boolean isNegative
        end local 4 // int exp
        end local 3 // int nDigits
        end local 2 // char[] digits
        end local 1 // int precision
        end local 0 // sun.misc.FormattedFloatingDecimal this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   78     0           this  Lsun/misc/FormattedFloatingDecimal;
            0   78     1      precision  I
            0   78     2         digits  [C
            0   78     3        nDigits  I
            0   78     4            exp  I
            0   78     5     isNegative  Z
            3   78     6     startIndex  I
            6   11     7     extraZeros  I
           14   18     7              t  I
           26   43     7          zeros  I
           27   43     8              t  I
           59   61     7              e  I
           62   77     7              e  I
           60   61     8  expStartIntex  I
           63   77     8  expStartIntex  I
           57   77     9       isNegExp  Z
    MethodParameters:
            Name  Flags
      precision   
      digits      
      nDigits     
      exp         
      isNegative  

  private static char[] create(boolean, int);
    descriptor: (ZI)[C
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // boolean isNegative
        start local 1 // int size
         0: .line 249
            iload 0 /* isNegative */
            ifeq 4
         1: .line 250
            iload 1 /* size */
            iconst_1
            iadd
            newarray 5
            astore 2 /* r */
        start local 2 // char[] r
         2: .line 251
            aload 2 /* r */
            iconst_0
            bipush 45
            castore
         3: .line 252
            aload 2 /* r */
            areturn
        end local 2 // char[] r
         4: .line 254
      StackMap locals:
      StackMap stack:
            iload 1 /* size */
            newarray 5
            areturn
        end local 1 // int size
        end local 0 // boolean isNegative
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0  isNegative  Z
            0    5     1        size  I
            2    4     2           r  [C
    MethodParameters:
            Name  Flags
      isNegative  
      size        

  private void fillDecimal(int, char[], int, int, boolean);
    descriptor: (I[CIIZ)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=9, args_size=6
        start local 0 // sun.misc.FormattedFloatingDecimal this
        start local 1 // int precision
        start local 2 // char[] digits
        start local 3 // int nDigits
        start local 4 // int exp
        start local 5 // boolean isNegative
         0: .line 263
            iload 5 /* isNegative */
            ifeq 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: istore 6 /* startIndex */
        start local 6 // int startIndex
         3: .line 264
            iload 4 /* exp */
            ifle 18
         4: .line 266
            iload 3 /* nDigits */
            iload 4 /* exp */
            if_icmpge 9
         5: .line 267
            aload 0 /* this */
            iload 5 /* isNegative */
            iload 4 /* exp */
            invokestatic sun.misc.FormattedFloatingDecimal.create:(ZI)[C
            putfield sun.misc.FormattedFloatingDecimal.mantissa:[C
         6: .line 268
            aload 2 /* digits */
            iconst_0
            aload 0 /* this */
            getfield sun.misc.FormattedFloatingDecimal.mantissa:[C
            iload 6 /* startIndex */
            iload 3 /* nDigits */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         7: .line 269
            aload 0 /* this */
            getfield sun.misc.FormattedFloatingDecimal.mantissa:[C
            iload 6 /* startIndex */
            iload 3 /* nDigits */
            iadd
            iload 6 /* startIndex */
            iload 4 /* exp */
            iadd
            bipush 48
            invokestatic java.util.Arrays.fill:([CIIC)V
         8: .line 273
            goto 37
         9: .line 274
      StackMap locals: int
      StackMap stack:
            iload 3 /* nDigits */
            iload 4 /* exp */
            isub
            iload 1 /* precision */
            invokestatic java.lang.Math.min:(II)I
            istore 7 /* t */
        start local 7 // int t
        10: .line 275
            aload 0 /* this */
            iload 5 /* isNegative */
            iload 4 /* exp */
            iload 7 /* t */
            ifle 11
            iload 7 /* t */
            iconst_1
            iadd
            goto 12
      StackMap locals: sun.misc.FormattedFloatingDecimal int char[] int int int int int
      StackMap stack: sun.misc.FormattedFloatingDecimal int int
        11: iconst_0
      StackMap locals: sun.misc.FormattedFloatingDecimal int char[] int int int int int
      StackMap stack: sun.misc.FormattedFloatingDecimal int int int
        12: iadd
            invokestatic sun.misc.FormattedFloatingDecimal.create:(ZI)[C
            putfield sun.misc.FormattedFloatingDecimal.mantissa:[C
        13: .line 276
            aload 2 /* digits */
            iconst_0
            aload 0 /* this */
            getfield sun.misc.FormattedFloatingDecimal.mantissa:[C
            iload 6 /* startIndex */
            iload 4 /* exp */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        14: .line 280
            iload 7 /* t */
            ifle 37
        15: .line 281
            aload 0 /* this */
            getfield sun.misc.FormattedFloatingDecimal.mantissa:[C
            iload 6 /* startIndex */
            iload 4 /* exp */
            iadd
            bipush 46
            castore
        16: .line 282
            aload 2 /* digits */
            iload 4 /* exp */
            aload 0 /* this */
            getfield sun.misc.FormattedFloatingDecimal.mantissa:[C
            iload 6 /* startIndex */
            iload 4 /* exp */
            iadd
            iconst_1
            iadd
            iload 7 /* t */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        end local 7 // int t
        17: .line 285
            goto 37
      StackMap locals:
      StackMap stack:
        18: iload 4 /* exp */
            ifgt 37
        19: .line 286
            iconst_0
            iload 4 /* exp */
            ineg
            iload 1 /* precision */
            invokestatic java.lang.Math.min:(II)I
            invokestatic java.lang.Math.max:(II)I
            istore 7 /* zeros */
        start local 7 // int zeros
        20: .line 287
            iconst_0
            iload 3 /* nDigits */
            iload 1 /* precision */
            iload 4 /* exp */
            iadd
            invokestatic java.lang.Math.min:(II)I
            invokestatic java.lang.Math.max:(II)I
            istore 8 /* t */
        start local 8 // int t
        21: .line 289
            iload 7 /* zeros */
            ifle 29
        22: .line 290
            aload 0 /* this */
            iload 5 /* isNegative */
            iload 7 /* zeros */
            iconst_2
            iadd
            iload 8 /* t */
            iadd
            invokestatic sun.misc.FormattedFloatingDecimal.create:(ZI)[C
            putfield sun.misc.FormattedFloatingDecimal.mantissa:[C
        23: .line 291
            aload 0 /* this */
            getfield sun.misc.FormattedFloatingDecimal.mantissa:[C
            iload 6 /* startIndex */
            bipush 48
            castore
        24: .line 292
            aload 0 /* this */
            getfield sun.misc.FormattedFloatingDecimal.mantissa:[C
            iload 6 /* startIndex */
            iconst_1
            iadd
            bipush 46
            castore
        25: .line 293
            aload 0 /* this */
            getfield sun.misc.FormattedFloatingDecimal.mantissa:[C
            iload 6 /* startIndex */
            iconst_2
            iadd
            iload 6 /* startIndex */
            iconst_2
            iadd
            iload 7 /* zeros */
            iadd
            bipush 48
            invokestatic java.util.Arrays.fill:([CIIC)V
        26: .line 294
            iload 8 /* t */
            ifle 37
        27: .line 296
            aload 2 /* digits */
            iconst_0
            aload 0 /* this */
            getfield sun.misc.FormattedFloatingDecimal.mantissa:[C
            iload 6 /* startIndex */
            iconst_2
            iadd
            iload 7 /* zeros */
            iadd
            iload 8 /* t */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        28: .line 298
            goto 37
      StackMap locals: int int
      StackMap stack:
        29: iload 8 /* t */
            ifle 35
        30: .line 299
            aload 0 /* this */
            iload 5 /* isNegative */
            iload 7 /* zeros */
            iconst_2
            iadd
            iload 8 /* t */
            iadd
            invokestatic sun.misc.FormattedFloatingDecimal.create:(ZI)[C
            putfield sun.misc.FormattedFloatingDecimal.mantissa:[C
        31: .line 300
            aload 0 /* this */
            getfield sun.misc.FormattedFloatingDecimal.mantissa:[C
            iload 6 /* startIndex */
            bipush 48
            castore
        32: .line 301
            aload 0 /* this */
            getfield sun.misc.FormattedFloatingDecimal.mantissa:[C
            iload 6 /* startIndex */
            iconst_1
            iadd
            bipush 46
            castore
        33: .line 303
            aload 2 /* digits */
            iconst_0
            aload 0 /* this */
            getfield sun.misc.FormattedFloatingDecimal.mantissa:[C
            iload 6 /* startIndex */
            iconst_2
            iadd
            iload 8 /* t */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        34: .line 304
            goto 37
        35: .line 305
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 5 /* isNegative */
            iconst_1
            invokestatic sun.misc.FormattedFloatingDecimal.create:(ZI)[C
            putfield sun.misc.FormattedFloatingDecimal.mantissa:[C
        36: .line 306
            aload 0 /* this */
            getfield sun.misc.FormattedFloatingDecimal.mantissa:[C
            iload 6 /* startIndex */
            bipush 48
            castore
        end local 8 // int t
        end local 7 // int zeros
        37: .line 309
      StackMap locals:
      StackMap stack:
            return
        end local 6 // int startIndex
        end local 5 // boolean isNegative
        end local 4 // int exp
        end local 3 // int nDigits
        end local 2 // char[] digits
        end local 1 // int precision
        end local 0 // sun.misc.FormattedFloatingDecimal this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   38     0        this  Lsun/misc/FormattedFloatingDecimal;
            0   38     1   precision  I
            0   38     2      digits  [C
            0   38     3     nDigits  I
            0   38     4         exp  I
            0   38     5  isNegative  Z
            3   38     6  startIndex  I
           10   17     7           t  I
           20   37     7       zeros  I
           21   37     8           t  I
    MethodParameters:
            Name  Flags
      precision   
      digits      
      nDigits     
      exp         
      isNegative  

  private void fillScientific(int, char[], int, int, boolean);
    descriptor: (I[CIIZ)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=11, args_size=6
        start local 0 // sun.misc.FormattedFloatingDecimal this
        start local 1 // int precision
        start local 2 // char[] digits
        start local 3 // int nDigits
        start local 4 // int exp
        start local 5 // boolean isNegative
         0: .line 315
            iload 5 /* isNegative */
            ifeq 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: istore 6 /* startIndex */
        start local 6 // int startIndex
         3: .line 316
            iconst_0
            iload 3 /* nDigits */
            iconst_1
            isub
            iload 1 /* precision */
            invokestatic java.lang.Math.min:(II)I
            invokestatic java.lang.Math.max:(II)I
            istore 7 /* t */
        start local 7 // int t
         4: .line 317
            iload 7 /* t */
            ifle 10
         5: .line 318
            aload 0 /* this */
            iload 5 /* isNegative */
            iload 7 /* t */
            iconst_2
            iadd
            invokestatic sun.misc.FormattedFloatingDecimal.create:(ZI)[C
            putfield sun.misc.FormattedFloatingDecimal.mantissa:[C
         6: .line 319
            aload 0 /* this */
            getfield sun.misc.FormattedFloatingDecimal.mantissa:[C
            iload 6 /* startIndex */
            aload 2 /* digits */
            iconst_0
            caload
            castore
         7: .line 320
            aload 0 /* this */
            getfield sun.misc.FormattedFloatingDecimal.mantissa:[C
            iload 6 /* startIndex */
            iconst_1
            iadd
            bipush 46
            castore
         8: .line 321
            aload 2 /* digits */
            iconst_1
            aload 0 /* this */
            getfield sun.misc.FormattedFloatingDecimal.mantissa:[C
            iload 6 /* startIndex */
            iconst_2
            iadd
            iload 7 /* t */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         9: .line 322
            goto 12
        10: .line 323
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            iload 5 /* isNegative */
            iconst_1
            invokestatic sun.misc.FormattedFloatingDecimal.create:(ZI)[C
            putfield sun.misc.FormattedFloatingDecimal.mantissa:[C
        11: .line 324
            aload 0 /* this */
            getfield sun.misc.FormattedFloatingDecimal.mantissa:[C
            iload 6 /* startIndex */
            aload 2 /* digits */
            iconst_0
            caload
            castore
        12: .line 328
      StackMap locals:
      StackMap stack:
            iload 4 /* exp */
            ifgt 16
        13: .line 329
            bipush 45
            istore 8 /* expSign */
        start local 8 // char expSign
        14: .line 330
            iload 4 /* exp */
            ineg
            iconst_1
            iadd
            istore 9 /* e */
        start local 9 // int e
        15: .line 331
            goto 18
        end local 9 // int e
        end local 8 // char expSign
        16: .line 332
      StackMap locals:
      StackMap stack:
            bipush 43
            istore 8 /* expSign */
        start local 8 // char expSign
        17: .line 333
            iload 4 /* exp */
            iconst_1
            isub
            istore 9 /* e */
        start local 9 // int e
        18: .line 336
      StackMap locals: int int
      StackMap stack:
            iload 9 /* e */
            bipush 9
            if_icmpgt 23
        19: .line 337
            aload 0 /* this */
            iconst_3
            newarray 5
            dup
            iconst_0
            iload 8 /* expSign */
            castore
            dup
            iconst_1
        20: .line 338
            bipush 48
            castore
            dup
            iconst_2
            iload 9 /* e */
            bipush 48
            iadd
            i2c
            castore
        21: .line 337
            putfield sun.misc.FormattedFloatingDecimal.exponent:[C
        22: .line 339
            goto 33
      StackMap locals:
      StackMap stack:
        23: iload 9 /* e */
            bipush 99
            if_icmpgt 28
        24: .line 340
            aload 0 /* this */
            iconst_3
            newarray 5
            dup
            iconst_0
            iload 8 /* expSign */
            castore
            dup
            iconst_1
        25: .line 341
            iload 9 /* e */
            bipush 10
            idiv
            bipush 48
            iadd
            i2c
            castore
            dup
            iconst_2
            iload 9 /* e */
            bipush 10
            irem
            bipush 48
            iadd
            i2c
            castore
        26: .line 340
            putfield sun.misc.FormattedFloatingDecimal.exponent:[C
        27: .line 342
            goto 33
        28: .line 343
      StackMap locals:
      StackMap stack:
            iload 9 /* e */
            bipush 100
            idiv
            bipush 48
            iadd
            i2c
            istore 10 /* hiExpChar */
        start local 10 // char hiExpChar
        29: .line 344
            iload 9 /* e */
            bipush 100
            irem
            istore 9 /* e */
        30: .line 345
            aload 0 /* this */
            iconst_4
            newarray 5
            dup
            iconst_0
            iload 8 /* expSign */
            castore
            dup
            iconst_1
        31: .line 346
            iload 10 /* hiExpChar */
            castore
            dup
            iconst_2
            iload 9 /* e */
            bipush 10
            idiv
            bipush 48
            iadd
            i2c
            castore
            dup
            iconst_3
            iload 9 /* e */
            bipush 10
            irem
            bipush 48
            iadd
            i2c
            castore
        32: .line 345
            putfield sun.misc.FormattedFloatingDecimal.exponent:[C
        end local 10 // char hiExpChar
        33: .line 348
      StackMap locals:
      StackMap stack:
            return
        end local 9 // int e
        end local 8 // char expSign
        end local 7 // int t
        end local 6 // int startIndex
        end local 5 // boolean isNegative
        end local 4 // int exp
        end local 3 // int nDigits
        end local 2 // char[] digits
        end local 1 // int precision
        end local 0 // sun.misc.FormattedFloatingDecimal this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   34     0        this  Lsun/misc/FormattedFloatingDecimal;
            0   34     1   precision  I
            0   34     2      digits  [C
            0   34     3     nDigits  I
            0   34     4         exp  I
            0   34     5  isNegative  Z
            3   34     6  startIndex  I
            4   34     7           t  I
           14   16     8     expSign  C
           17   34     8     expSign  C
           15   16     9           e  I
           18   34     9           e  I
           29   33    10   hiExpChar  C
    MethodParameters:
            Name  Flags
      precision   
      digits      
      nDigits     
      exp         
      isNegative  

  static int[] $SWITCH_TABLE$sun$misc$FormattedFloatingDecimal$Form();
    descriptor: ()[I
    flags: (0x1008) ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=1, args_size=0
         0: .line 30
            getstatic sun.misc.FormattedFloatingDecimal.$SWITCH_TABLE$sun$misc$FormattedFloatingDecimal$Form:[I
            dup
            ifnull 1
            areturn
      StackMap locals:
      StackMap stack: int[]
         1: pop
            invokestatic sun.misc.FormattedFloatingDecimal$Form.values:()[Lsun/misc/FormattedFloatingDecimal$Form;
            arraylength
            newarray 10
            astore 0
         2: aload 0
            getstatic sun.misc.FormattedFloatingDecimal$Form.COMPATIBLE:Lsun/misc/FormattedFloatingDecimal$Form;
            invokevirtual sun.misc.FormattedFloatingDecimal$Form.ordinal:()I
            iconst_2
            iastore
         3: goto 5
      StackMap locals: int[]
      StackMap stack: java.lang.NoSuchFieldError
         4: pop
      StackMap locals:
      StackMap stack:
         5: aload 0
            getstatic sun.misc.FormattedFloatingDecimal$Form.DECIMAL_FLOAT:Lsun/misc/FormattedFloatingDecimal$Form;
            invokevirtual sun.misc.FormattedFloatingDecimal$Form.ordinal:()I
            iconst_3
            iastore
         6: goto 8
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
         7: pop
      StackMap locals:
      StackMap stack:
         8: aload 0
            getstatic sun.misc.FormattedFloatingDecimal$Form.GENERAL:Lsun/misc/FormattedFloatingDecimal$Form;
            invokevirtual sun.misc.FormattedFloatingDecimal$Form.ordinal:()I
            iconst_4
            iastore
         9: goto 11
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
        10: pop
      StackMap locals:
      StackMap stack:
        11: aload 0
            getstatic sun.misc.FormattedFloatingDecimal$Form.SCIENTIFIC:Lsun/misc/FormattedFloatingDecimal$Form;
            invokevirtual sun.misc.FormattedFloatingDecimal$Form.ordinal:()I
            iconst_1
            iastore
        12: goto 14
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
        13: pop
      StackMap locals:
      StackMap stack:
        14: aload 0
            dup
            putstatic sun.misc.FormattedFloatingDecimal.$SWITCH_TABLE$sun$misc$FormattedFloatingDecimal$Form:[I
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
      Exception table:
        from    to  target  type
           2     3       4  Class java.lang.NoSuchFieldError
           5     6       7  Class java.lang.NoSuchFieldError
           8     9      10  Class java.lang.NoSuchFieldError
          11    12      13  Class java.lang.NoSuchFieldError
}
SourceFile: "FormattedFloatingDecimal.java"
NestMembers:
  sun.misc.FormattedFloatingDecimal$1  sun.misc.FormattedFloatingDecimal$Form
InnerClasses:
  public abstract BinaryToASCIIConverter = sun.misc.FloatingDecimal$BinaryToASCIIConverter of sun.misc.FloatingDecimal
  sun.misc.FormattedFloatingDecimal$1
  public final Form = sun.misc.FormattedFloatingDecimal$Form of sun.misc.FormattedFloatingDecimal