File: conv_flt.c

package info (click to toggle)
picolibc 1.8.11-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 50,064 kB
  • sloc: ansic: 404,031; asm: 24,984; sh: 2,585; python: 2,289; perl: 680; pascal: 329; exp: 287; makefile: 222; cpp: 71; xml: 40
file content (642 lines) | stat: -rw-r--r-- 20,407 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
/* Copyright (c) 2002,2004,2005 Joerg Wunsch
   Copyright (c) 2008  Dmitry Xmelkov
   All rights reserved.

   Redistribution and use in source and binary forms, with or without
   modification, are permitted provided that the following conditions are met:

   * Redistributions of source code must retain the above copyright
     notice, this list of conditions and the following disclaimer.

   * Redistributions in binary form must reproduce the above copyright
     notice, this list of conditions and the following disclaimer in
     the documentation and/or other materials provided with the
     distribution.

   * Neither the name of the copyright holders nor the names of
     contributors may be used to endorse or promote products derived
     from this software without specific prior written permission.

  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  POSSIBILITY OF SUCH DAMAGE.
*/

#ifndef CHAR

#ifdef WIDE_CHARS
#define CHAR wchar_t
#define INT  wint_t
#if __SIZEOF_WCHAR_T__ == 2
#define UCHAR uint16_t
#elif __SIZEOF_WCHAR_T__ == 4
#define UCHAR uint32_t
#endif
#define CQ(a)      L##a
#define MY_EOF     WEOF
#define IS_EOF(c)  ((c) == WEOF)
#define ISSPACE(c) iswspace(c)
#define ISALNUM(c) iswalnum(c)
#else
#define CHAR       char
#define UCHAR      unsigned char
#define INT        int
#define CQ(a)      a
#define MY_EOF     EOF
#define IS_EOF(c)  ((c) < 0)
#define ISSPACE(c) isspace(c)
#define ISALNUM(c) isalnum(c)
#endif

#endif

static const CHAR pstr_nfinity[] = CQ("nfinity");
static const CHAR pstr_an[] = CQ("an");

#if defined(STRTOD) || defined(STRTOF) || defined(STRTOLD)

#define CHECK_WIDTH() 1
#define CHECK_RANGE(flt)                                                             \
    do {                                                                             \
        int __class = fpclassify(flt);                                               \
        if (__class == FP_INFINITE || __class == FP_SUBNORMAL || __class == FP_ZERO) \
            errno = ERANGE;                                                          \
    } while (0);
#ifdef __IO_C99_FORMATS
#define _NEED_IO_C99_FORMATS
#endif

#if defined(STRTOD)

#define _NEED_IO_DOUBLE
#define SCANF_VARIANT     __IO_VARIANT_DOUBLE
#define CHECK_LONG()      1
#define CHECK_LONG_LONG() 0

#elif defined(STRTOLD)

#define _NEED_IO_LONG_DOUBLE
#define SCANF_VARIANT     __IO_VARIANT_DOUBLE
#define CHECK_LONG()      0
#define CHECK_LONG_LONG() 1

#elif defined(STRTOF)

#define _NEED_IO_FLOAT
#define SCANF_VARIANT     __IO_VARIANT_FLOAT
#define CHECK_LONG()      0
#define CHECK_LONG_LONG() 0

#endif

#define FLT_STREAM  const CHAR
#define FLT_CONTEXT int

static inline INT
scanf_getc(const CHAR *s, int *lenp)
{
    int l = *lenp;
    INT c = s[l];
    *lenp = l + 1;
    return c;
}

static inline void
scanf_ungetc(INT c, FLT_STREAM *s, int *lenp)
{
    (void)c;
    (void)s;
    --(*lenp);
}

#undef EOF
#define EOF -1

#else

#define CHECK_WIDTH() (--width != 0)
#define CHECK_RANGE(flt)

#ifdef _NEED_IO_FLOAT

#define CHECK_LONG()      0
#define CHECK_LONG_LONG() 0

#elif defined(_NEED_IO_DOUBLE)

#ifdef _NEED_IO_LONG_DOUBLE
#define CHECK_LONG()      (flags & FL_LONG)
#define CHECK_LONG_LONG() (flags & FL_LONGLONG)
#else
#define CHECK_LONG()      (flags & (FL_LONG | FL_LONGLONG))
#define CHECK_LONG_LONG() 0
#endif
#else
#define CHECK_LONG()      0
#define CHECK_LONG_LONG() 0
#endif

#define FLT_STREAM  FILE
#define FLT_CONTEXT scanf_context_t

#endif

#include "scanf_private.h"

#include "dtoa.h"

#ifdef _NEED_IO_LONG_DOUBLE
#define FLOAT          long double
#define FLOAT_MIN      __LDBL_MIN__
#define FLOAT_MANT_DIG __LDBL_MANT_DIG__
#define FLOAT_MAX_EXP  __LDBL_MAX_EXP__
#define FLOAT_MIN_EXP  __LDBL_MIN_EXP__
#define ASFLOAT(x)     aslongdouble(x)
#if __SIZEOF_LONG_DOUBLE__ > 8
#define TOFLOAT(x) _u128_to_ld(x)
#define UINTFLOAT  _u128
#elif __SIZEOF_LONG_DOUBLE__ == 8
#define TOFLOAT(x) ((long double)(x))
#define UINTFLOAT  uint64_t
#elif __SIZEOF_LONG_DOUBLE__ == 4
#define TOFLOAT(x) ((long double)(x))
#define UINTFLOAT  uint32_t
#endif
#elif defined(_NEED_IO_DOUBLE)
#define FLOAT          double
#define FLOAT_MIN      __DBL_MIN__
#define FLOAT_MANT_DIG __DBL_MANT_DIG__
#define FLOAT_MAX_EXP  __DBL_MAX_EXP__
#define FLOAT_MIN_EXP  __DBL_MIN_EXP__
#define ASFLOAT(x)     _asdouble(x)
#define TOFLOAT(x)     ((double)(x))
#if __SIZEOF_DOUBLE__ == 4
#define UINTFLOAT uint32_t
#elif __SIZEOF_DOUBLE__ == 8
#define UINTFLOAT uint64_t
#endif
#elif defined(_NEED_IO_FLOAT)
#define FLOAT          float
#define FLOAT_MIN      __FLT_MIN__
#define FLOAT_MANT_DIG __FLT_MANT_DIG__
#define FLOAT_MAX_EXP  __FLT_MAX_EXP__
#define FLOAT_MIN_EXP  __FLT_MIN_EXP__
#define ASFLOAT(x)     _asfloat(x)
#define TOFLOAT(x)     ((float)(x))
#define UINTFLOAT      uint32_t
#endif

#if FLOAT_MANT_DIG > 53
#define U32_TO_UF(x)        to_u128(x)
#define U64_TO_UF(x)        to_u128(x)
#define U128_TO_UF(x)       (x)
#define UF_TO_U32(x)        from_u128(x)
#define UF_TO_U64(x)        from_u128(x)
#define UF_TO_U128(x)       (x)
#define UF_IS_ZERO(x)       _u128_is_zero(x)
#define UF_TIMES_BASE(a, b) _u128_times_base(a, b)
#define UF_PLUS_DIGIT(a, b) _u128_plus_64(a, b)
#define UF_RSHIFT(a, b)     _u128_rshift(a, b)
#define UF_LSHIFT(a, b)     _u128_lshift(a, b)
#define UF_LSHIFT_64(a, b)  _u128_lshift_64(a, b)
#define UF_LT(a, b)         _u128_lt(a, b)
#define UF_GE(a, b)         _u128_ge(a, b)
#define UF_OR_64(a, b)      _u128_or_64(a, b)
#define UF_AND_64(a, b)     _u128_and_64(a, b)
#define UF_AND(a, b)        _u128_and(a, b)
#define UF_NOT(a)           _u128_not(a)
#define UF_OR(a, b)         _u128_or(a, b)
#else
#define U32_TO_UF(x)        (x)
#define U64_TO_UF(x)        (x)
#define U128_TO_UF(x)       from_u128(x)
#define UF_TO_U32(x)        (x)
#define UF_TO_U64(x)        (x)
#define UF_TO_U128(x)       to_u128(x)
#define UF_IS_ZERO(x)       ((x) == 0)
#define UF_TIMES_BASE(a, b) ((a) * (b))
#define UF_PLUS_DIGIT(a, b) ((a) + (b))
#define UF_RSHIFT(a, b)     ((a) >> (b))
#define UF_LSHIFT(a, b)     ((a) << (b))
#define UF_LSHIFT_64(a, b)  ((UINTFLOAT)(a) << (b))
#define UF_LT(a, b)         ((a) < (b))
#define UF_GE(a, b)         ((a) >= (b))
#define UF_OR_64(a, b)      ((a) | (b))
#define UF_AND_64(a, b)     ((a) & (b))
#define UF_AND(a, b)        ((a) & (b))
#define UF_NOT(a)           (~(a))
#define UF_OR(a, b)         ((a) | (b))
#endif

static UCHAR
conv_flt(FLT_STREAM *stream, FLT_CONTEXT *context, width_t width, void *addr, uint16_t flags)
{
    UINTFLOAT    uint;
    unsigned int overflow = 0;
    int          uintdigits = 0;
    FLOAT        flt;
    INT          i;
    const CHAR  *p;
    int          exp;

    i = scanf_getc(stream, context); /* after scanf_ungetc()	*/

    switch (i) {
    case CQ('-'):
        flags |= FL_MINUS;
        __fallthrough;
    case CQ('+'):
        if (!CHECK_WIDTH() || IS_EOF(i = (INT)scanf_getc(stream, context)))
            return 0;
    }

    switch (TOLOWER(i)) {
    case CQ('n'):
        p = pstr_an;
        flt = (FLOAT)NAN;
        goto operate_pstr;

    case CQ('i'):
        p = pstr_nfinity;
        flt = (FLOAT)INFINITY;
    operate_pstr: {
        UCHAR c;

        while ((c = *p++) != 0) {
            if (CHECK_WIDTH()) {
                if (!IS_EOF(i = scanf_getc(stream, context))) {
                    if (TOLOWER(i) == (INT)c)
                        continue;
                    scanf_ungetc(i, stream, context);
                }
            }
            if (p == pstr_nfinity + 3)
                break;
            return 0;
        }
        if (isnan(flt)) {
            if (CHECK_WIDTH()) {
                if ((i = scanf_getc(stream, context)) == CQ('(')) {
                    while (CHECK_WIDTH() && (i = scanf_getc(stream, context)) != CQ(')')) {
                        if (ISALNUM(i) || i == CQ('_'))
                            continue;
                        else
                            break;
                    }
                    if (i != CQ(')'))
                        return 0;
                } else {
                    scanf_ungetc(i, stream, context);
                }
            }
        }
    } break;

    default:
        exp = 0;
        uint = U32_TO_UF(0);
#define uintdigitsmax_10_float 8
#define uintdigitsmax_16_float 7
#if __SIZEOF_DOUBLE__ == 8
#define uintdigitsmax_10_double 16
#define uintdigitsmax_16_double 15
#elif __SIZEOF_DOUBLE__ == 4
#define uintdigitsmax_10_double 8
#define uintdigitsmax_16_double 7
#endif
#if __SIZEOF_LONG_DOUBLE__ > 8
#define uintdigitsmax_10_long_double 32
#define uintdigitsmax_16_long_double 30
#elif __SIZEOF_LONG_DOUBLE__ == 8
#define uintdigitsmax_10_long_double 16
#define uintdigitsmax_16_long_double 15
#elif __SIZEOF_LONG_DOUBLE__ == 4
#define uintdigitsmax_10_long_double 8
#define uintdigitsmax_16_long_double 7
#endif

#ifdef _NEED_IO_C99_FORMATS
        UCHAR base = 10;
#else
#define base 10
#endif

#define uintdigitsmax                                                                              \
    ((base) == 10                                                                                  \
         ? (CHECK_LONG_LONG() ? uintdigitsmax_10_long_double                                       \
                              : (CHECK_LONG() ? uintdigitsmax_10_double : uintdigitsmax_10_float)) \
         : (CHECK_LONG_LONG()                                                                      \
                ? uintdigitsmax_16_long_double                                                     \
                : (CHECK_LONG() ? uintdigitsmax_16_double : uintdigitsmax_16_float)))

        do {

            UCHAR c;

#ifdef _NEED_IO_C99_FORMATS
            if ((flags & FL_FHEX) && (c = TOLOWER(i) - CQ('a')) <= 5)
                c += 10;
            else
#endif
                c = i - CQ('0');

            if (c < base) {
                flags |= FL_ANY;
                if (!(flags & FL_OVFL) && uintdigits > uintdigitsmax) {
                    flags |= FL_OVFL;
                    if (base == 10) {
                        /* Check if overflow is >= 0.5 */
                        if (c >= 5) {
                            overflow = 2;
                            /* Check if overflow might be == 0.5 */
                            if (c == 5)
                                c = 0;
                        }
                    }
                }
                if (flags & FL_OVFL) {
                    overflow |= (c != 0);
                    if (!(flags & FL_DOT))
                        exp += 1;
                } else {
                    if (flags & FL_DOT)
                        exp -= 1;
                    uint = UF_PLUS_DIGIT(UF_TIMES_BASE(uint, base), c);
                    if (!UF_IS_ZERO(uint))
                        uintdigits++;
                }

            } else if (c == (UCHAR)((CQ('.') - CQ('0'))) && !(flags & FL_DOT)) {
                flags |= FL_DOT;
#ifdef _NEED_IO_C99_FORMATS
            } else if (TOLOWER(i) == CQ('x') && (flags & FL_ANY) && UF_IS_ZERO(uint)) {
                flags |= FL_FHEX;
                base = 16;
#endif
            } else {
                break;
            }
        } while (CHECK_WIDTH() && !IS_EOF(i = scanf_getc(stream, context)));

        if (!(flags & FL_ANY))
            return 0;

#ifdef _NEED_IO_C99_FORMATS
        INT exp_match = CQ('e');
        if (flags & FL_FHEX) {
            exp_match = CQ('p');
            exp *= 4;
        }
#else
#define exp_match CQ('e')
#endif
        if (TOLOWER(i) == (INT)exp_match) {
            int esign, edig;
            int expacc;

            if (!CHECK_WIDTH())
                goto no_exp;

            esign = scanf_getc(stream, context);

            switch (esign) {
            case CQ('-'):
                flags |= FL_MEXP;
                __fallthrough;
            case CQ('+'):
                if (!CHECK_WIDTH()) {
                    scanf_ungetc(esign, stream, context);
                    goto no_exp;
                }
                edig = scanf_getc(stream, context); /* test EOF will below	*/
                break;
            default:
                edig = esign;
                esign = EOF;
                break;
            }

            if (!isdigit(edig)) {
                scanf_ungetc(edig, stream, context);
                if (esign != EOF)
                    scanf_ungetc(esign, stream, context);
                goto no_exp;
            }

            i = edig;
            expacc = 0;
#define MAX_POSSIBLE_EXP (FLOAT_MAX_EXP + FLOAT_MANT_DIG * 4)
            do {
                if (expacc < MAX_POSSIBLE_EXP)
                    expacc = expacc * 10 + (i - CQ('0'));
            } while (CHECK_WIDTH() && isdigit(i = scanf_getc(stream, context)));
            if (flags & FL_MEXP)
                expacc = -expacc;
            exp += expacc;
        }

    no_exp:
        if (width)
            scanf_ungetc(i, stream, context);

        if (UF_IS_ZERO(uint)) {
            flt = (FLOAT)0;
            break;
        }

#ifdef _NEED_IO_C99_FORMATS
        if (flags & FL_FHEX) {
            int sig_bits;
            int min_exp;

            if (CHECK_LONG_LONG()) {
                sig_bits = __LDBL_MANT_DIG__;
                min_exp = __LDBL_MIN_EXP__ - 1;
            } else if (CHECK_LONG()) {
                sig_bits = __DBL_MANT_DIG__;
                min_exp = __DBL_MIN_EXP__ - 1;
            } else {
                sig_bits = __FLT_MANT_DIG__;
                min_exp = __FLT_MIN_EXP__ - 1;
            }

            /* We're using two guard bits, one for the
             * 'half' value and the second to indicate whether
             * there is any non-zero value beyond that
             */
            exp += (sig_bits + 2 - 1);

            /* Make significand larger than 1.0 */
            while (UF_LT(uint, UF_LSHIFT_64(1, (sig_bits + 2 - 1)))) {
                uint = UF_LSHIFT(uint, 1);
                exp--;
            }

            /* Now shift right until the exponent is in range and the
             * value is less than 2.0. Capture any value > 0.5 in the
             * LSB of uint.  This may generate a denorm.
             */
            while (UF_GE(uint, UF_LSHIFT_64(1, (sig_bits + 2))) || exp < min_exp) {
                /* squash extra bits into  the second guard bit */
                uint = UF_OR_64(UF_RSHIFT(uint, 1), UF_AND_64(uint, 1));
                exp++;
            }

            /* Mix in the overflow bit computed while scanning the
             * string
             */
            uint = UF_OR_64(uint, overflow);

            /* Round even */
            if (UF_AND_64(uint, 3) == 3 || UF_AND_64(uint, 6) == 6) {
                uint = UF_PLUS_DIGIT(uint, 4);
                if (UF_GE(uint, UF_LSHIFT_64(1, FLOAT_MANT_DIG + 2))) {
                    uint = UF_RSHIFT(uint, 1);
                    exp++;
                }
            }

            /* remove guard bits */
            uint = UF_RSHIFT(uint, 2);

            /* align from target to FLOAT */
            uint = UF_LSHIFT(uint, FLOAT_MANT_DIG - sig_bits);

            if (min_exp != (FLOAT_MIN_EXP - 1)) {

                /* Convert from target denorm to FLOAT value */
                while (UF_LT(uint, UF_LSHIFT_64(1, (FLOAT_MANT_DIG - 1))) && exp > FLOAT_MIN_EXP) {
                    uint = UF_LSHIFT(uint, 1);
                    exp--;
                }
            }

            if (exp >= FLOAT_MAX_EXP) {
                flt = (FLOAT)INFINITY;
            } else {
#if FLOAT_MANT_DIG <= 53 || __LDBL_IS_IEC_60559__ != 0 || defined(__m68k__)
                if (UF_LT(uint, UF_LSHIFT_64(1, (FLOAT_MANT_DIG - 1)))) {
                    exp = 0;
                } else {
                    exp += (FLOAT_MAX_EXP - 1);
#if FLOAT_MANT_DIG > 53 && (defined(__x86_64__) || defined(__i386__))
                    /*
                     * Intel 80-bit format is weird -- there's an
                     * integer bit so denorms can have the 'real'
                     * exponent value. That means we don't mask off
                     * the integer bit
                     */
#define EXP_SHIFT FLOAT_MANT_DIG
#elif FLOAT_MANT_DIG > 53 && defined(__m68k__)
#define EXP_SHIFT FLOAT_MANT_DIG + 16
#else
                    uint = UF_AND(uint, UF_NOT(UF_LSHIFT_64(1, (FLOAT_MANT_DIG - 1))));
#define EXP_SHIFT (FLOAT_MANT_DIG - 1)
#endif
                }
                uint = UF_OR(uint, UF_LSHIFT_64(exp, EXP_SHIFT));
                flt = ASFLOAT(uint);
#else /* FLOAT_MANT_DIG <= 53 || __LDBL_IS_IEC_60559__ != 0 */
                flt = scalbnl(TOFLOAT(uint), exp - (FLOAT_MANT_DIG - 1));
#endif
                CHECK_RANGE(flt);
            }
        } else
#endif
        {
            /*
             * Mix in overflow. Overflow has four possible values:
             *
             * 0: overflow == 0
             * 1: overflow < 0.5
             * 2: overflow == 0.5
             * 3: overflow > 0.5
             *
             * We want to increment in case 2 if uint is odd
             * and always in case 3.
             */
            overflow |= UF_AND_64(uint, 1);
            uint = UF_PLUS_DIGIT(uint, (overflow + 1) >> 2);

#ifdef _NEED_IO_FLOAT_LARGE
            if (CHECK_LONG_LONG() && __SIZEOF_LONG_DOUBLE__ > 8) {
                flt = (FLOAT)__atold_engine(UF_TO_U128(uint), exp);
            } else
#endif
#ifdef _NEED_IO_FLOAT64
                if ((CHECK_LONG() && __SIZEOF_DOUBLE__ == 8)
                    || (CHECK_LONG_LONG() && __SIZEOF_LONG_DOUBLE__ == 8)) {
                if (uintdigits + exp <= -324) {
                    // Number is less than 1e-324, which should be rounded down to 0; return +/-0.0.
                    flt = (FLOAT)0.0;
                } else if (uintdigits + exp >= 310) {
                    // Number is larger than 1e+309, which should be rounded to +/-Infinity.
                    flt = (FLOAT)INFINITY;
                } else {
                    flt = (FLOAT)__atod_engine(UF_TO_U64(uint), exp);
                }
            } else
#endif
            {
                if (uintdigits + exp <= -46) {
                    // Number is less than 1e-46, which should be rounded down to 0; return 0.0.
                    flt = (FLOAT)0.0f;
                } else if (uintdigits + exp >= 40) {
                    // Number is larger than 1e+39, which should be rounded to +/-Infinity.
                    flt = (FLOAT)INFINITY;
                } else {
                    flt = (FLOAT)__atof_engine(UF_TO_U32(uint), exp);
                }
            }
        }
        CHECK_RANGE(flt)
        break;
    } /* switch */

#if defined(__riscv) || defined(__ARC64__) || defined(__mips)
    /*
     * Some processors don't preserve the sign of NAN across
     * conversions, so we have to negate after the cast
     */
    if (addr) {
        if (CHECK_LONG_LONG()) {
            long double ld = (long double)flt;
            if (flags & FL_MINUS)
                ld = -ld;
            *((long double *)addr) = ld;
        } else if (CHECK_LONG()) {
            double d = (double)flt;
            if (flags & FL_MINUS)
                d = -d;
            *((double *)addr) = d;
        } else {
            float f = (float)flt;
            if (flags & FL_MINUS)
                f = -f;
            *((float *)addr) = f;
        }
    }
#else
    if (flags & FL_MINUS)
        flt = -flt;
    if (addr) {
        if (CHECK_LONG_LONG())
            *((long double *)addr) = (long double)flt;
        else if (CHECK_LONG())
            *((double *)addr) = (double)flt;
        else
            *((float *)addr) = (float)flt;
    }
#endif
    return 1;
}

#undef base