Coverage Report

Created: 2026-09-14 08:07

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/binutils-gdb/gas/atof-generic.c
Line
Count
Source
1
/* atof_generic.c - turn a string of digits into a Flonum
2
   Copyright (C) 1987-2026 Free Software Foundation, Inc.
3
4
   This file is part of GAS, the GNU Assembler.
5
6
   GAS is free software; you can redistribute it and/or modify
7
   it under the terms of the GNU General Public License as published by
8
   the Free Software Foundation; either version 3, or (at your option)
9
   any later version.
10
11
   GAS is distributed in the hope that it will be useful, but WITHOUT
12
   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13
   or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
14
   License for more details.
15
16
   You should have received a copy of the GNU General Public License
17
   along with GAS; see the file COPYING.  If not, write to the Free
18
   Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
19
   02110-1301, USA.  */
20
21
#include "as.h"
22
#include "safe-ctype.h"
23
#include <limits.h>
24
25
#ifdef TRACE
26
static void flonum_print (const FLONUM_TYPE *);
27
#endif
28
29
#define ASSUME_DECIMAL_MARK_IS_DOT
30
31
/***********************************************************************\
32
 *                  *
33
 *  Given a string of decimal digits , with optional decimal  *
34
 *  mark and optional decimal exponent (place value) of the   *
35
 *  lowest_order decimal digit: produce a floating point    *
36
 *  number. The number is 'generic' floating point: our   *
37
 *  caller will encode it for a specific machine architecture.  *
38
 *                  *
39
 *  Assumptions             *
40
 *    uses base (radix) 2         *
41
 *    this machine uses 2's complement binary integers  *
42
 *    target flonums use "      "         "       "   *
43
 *    target flonums exponents fit in a long      *
44
 *                  *
45
 \***********************************************************************/
46
47
/*
48
49
  Syntax:
50
51
  <flonum> ::= <optional-sign> <decimal-number> <optional-exponent>
52
  <optional-sign> ::= '+' | '-' | {empty}
53
  <decimal-number> ::= <integer>
54
  | <integer> <radix-character>
55
  | <integer> <radix-character> <integer>
56
  | <radix-character> <integer>
57
58
  <optional-exponent> ::= {empty}
59
  | <exponent-character> <optional-sign> <integer>
60
61
  <integer> ::= <digit> | <digit> <integer>
62
  <digit> ::= '0' | '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9'
63
  <exponent-character> ::= {one character from "string_of_decimal_exponent_marks"}
64
  <radix-character> ::= {one character from "string_of_decimal_marks"}
65
66
  */
67
68
int
69
atof_generic (/* return pointer to just AFTER number we read.  */
70
        char **address_of_string_pointer,
71
        /* At most one per number.  */
72
        const char *string_of_decimal_marks,
73
        const char *string_of_decimal_exponent_marks,
74
        FLONUM_TYPE *address_of_generic_floating_point_number)
75
25.9k
{
76
25.9k
  int return_value = 0;   /* 0 means OK.  */
77
25.9k
  char *first_digit;
78
25.9k
  unsigned int number_of_digits_before_decimal;
79
25.9k
  unsigned int number_of_digits_after_decimal;
80
25.9k
  unsigned long decimal_exponent;
81
25.9k
  unsigned int number_of_digits_available;
82
25.9k
  char digits_sign_char;
83
84
  /*
85
   * Scan the input string, abstracting (1)digits (2)decimal mark (3) exponent.
86
   * It would be simpler to modify the string, but we don't; just to be nice
87
   * to caller.
88
   * We need to know how many digits we have, so we can allocate space for
89
   * the digits' value.
90
   */
91
92
25.9k
  char *p;
93
25.9k
  char c;
94
25.9k
  int seen_significant_digit;
95
96
25.9k
#ifdef ASSUME_DECIMAL_MARK_IS_DOT
97
25.9k
  gas_assert (string_of_decimal_marks[0] == '.'
98
25.9k
    && string_of_decimal_marks[1] == 0);
99
39.4k
#define IS_DECIMAL_MARK(c)  ((c) == '.')
100
#else
101
#define IS_DECIMAL_MARK(c)  (0 != strchr (string_of_decimal_marks, (c)))
102
#endif
103
104
25.9k
  first_digit = *address_of_string_pointer;
105
25.9k
  c = *first_digit;
106
107
25.9k
  if (c == '-' || c == '+')
108
12.8k
    {
109
12.8k
      digits_sign_char = c;
110
12.8k
      first_digit++;
111
12.8k
    }
112
13.1k
  else
113
13.1k
    digits_sign_char = '+';
114
115
25.9k
  switch (first_digit[0])
116
25.9k
    {
117
0
    case 's':
118
0
    case 'S':
119
7
    case 'q':
120
7
    case 'Q':
121
7
      if (!strncasecmp ("nan", first_digit + 1, 3))
122
1
  {
123
1
    address_of_generic_floating_point_number->sign =
124
1
      digits_sign_char == '+' ? TOUPPER (first_digit[0])
125
1
            : TOLOWER (first_digit[0]);
126
1
    address_of_generic_floating_point_number->exponent = 0;
127
1
    address_of_generic_floating_point_number->leader =
128
1
      address_of_generic_floating_point_number->low;
129
1
    *address_of_string_pointer = first_digit + 4;
130
1
    return 0;
131
1
  }
132
6
      break;
133
134
6
    case 'n':
135
2
    case 'N':
136
2
      if (!strncasecmp ("nan", first_digit, 3))
137
0
  {
138
0
    address_of_generic_floating_point_number->sign =
139
0
      digits_sign_char == '+' ? 0 : 'q';
140
0
    address_of_generic_floating_point_number->exponent = 0;
141
0
    address_of_generic_floating_point_number->leader =
142
0
      address_of_generic_floating_point_number->low;
143
0
    *address_of_string_pointer = first_digit + 3;
144
0
    return 0;
145
0
  }
146
2
      break;
147
148
12.8k
    case 'i':
149
12.8k
    case 'I':
150
12.8k
      if (!strncasecmp ("inf", first_digit, 3))
151
12.8k
  {
152
12.8k
    address_of_generic_floating_point_number->sign =
153
12.8k
      digits_sign_char == '+' ? 'P' : 'N';
154
12.8k
    address_of_generic_floating_point_number->exponent = 0;
155
12.8k
    address_of_generic_floating_point_number->leader =
156
12.8k
      address_of_generic_floating_point_number->low;
157
158
12.8k
    first_digit += 3;
159
12.8k
    if (!strncasecmp ("inity", first_digit, 5))
160
0
      first_digit += 5;
161
162
12.8k
    *address_of_string_pointer = first_digit;
163
164
12.8k
    return 0;
165
12.8k
  }
166
21
      break;
167
25.9k
    }
168
169
13.1k
  number_of_digits_before_decimal = 0;
170
13.1k
  number_of_digits_after_decimal = 0;
171
13.1k
  decimal_exponent = 0;
172
13.1k
  seen_significant_digit = 0;
173
13.1k
  for (p = first_digit;
174
26.3k
       (((c = *p) != '\0')
175
26.3k
  && (!c || !IS_DECIMAL_MARK (c))
176
26.2k
  && (!c || !strchr (string_of_decimal_exponent_marks, c)));
177
13.1k
       p++)
178
26.2k
    {
179
26.2k
      if (ISDIGIT (c))
180
13.1k
  {
181
13.1k
    if (seen_significant_digit || c > '0')
182
13.1k
      {
183
13.1k
        ++number_of_digits_before_decimal;
184
13.1k
        seen_significant_digit = 1;
185
13.1k
      }
186
0
    else
187
0
      {
188
0
        first_digit++;
189
0
      }
190
13.1k
  }
191
13.0k
      else
192
13.0k
  {
193
13.0k
    break;    /* p -> char after pre-decimal digits.  */
194
13.0k
  }
195
26.2k
    }        /* For each digit before decimal mark.  */
196
197
13.1k
#ifndef OLD_FLOAT_READS
198
  /* Ignore trailing 0's after the decimal point.  The original code here
199
     (ifdef'd out) does not do this, and numbers like
200
      4.29496729600000000000e+09  (2**31)
201
     come out inexact for some reason related to length of the digit
202
     string.  */
203
204
  /* The case number_of_digits_before_decimal = 0 is handled for
205
     deleting zeros after decimal.  In this case the decimal mark and
206
     the first zero digits after decimal mark are skipped.  */
207
13.1k
  seen_significant_digit = 0;
208
13.1k
  unsigned long subtract_decimal_exponent = 0;
209
210
13.1k
  if (c && IS_DECIMAL_MARK (c))
211
80
    {
212
80
      unsigned int zeros = 0; /* Length of current string of zeros.  */
213
214
80
      if (number_of_digits_before_decimal == 0)
215
  /* Skip decimal mark.  */
216
71
  first_digit++;
217
218
284
      for (p++; (c = *p) && ISDIGIT (c); p++)
219
204
  {
220
204
    if (c == '0')
221
36
      {
222
36
        if (number_of_digits_before_decimal == 0
223
36
      && !seen_significant_digit)
224
36
    {
225
      /* Skip '0' and the decimal mark.  */
226
36
      first_digit++;
227
36
      subtract_decimal_exponent--;
228
36
    }
229
0
        else
230
0
    zeros++;
231
36
      }
232
168
    else
233
168
      {
234
168
        seen_significant_digit = 1;
235
168
        number_of_digits_after_decimal += 1 + zeros;
236
168
        zeros = 0;
237
168
      }
238
204
  }
239
80
    }
240
#else
241
  if (c && IS_DECIMAL_MARK (c))
242
    {
243
      for (p++;
244
     (((c = *p) != '\0')
245
      && (!c || !strchr (string_of_decimal_exponent_marks, c)));
246
     p++)
247
  {
248
    if (ISDIGIT (c))
249
      {
250
        /* This may be retracted below.  */
251
        number_of_digits_after_decimal++;
252
253
        if ( /* seen_significant_digit || */ c > '0')
254
    {
255
      seen_significant_digit = true;
256
    }
257
      }
258
    else
259
      {
260
        if (!seen_significant_digit)
261
    {
262
      number_of_digits_after_decimal = 0;
263
    }
264
        break;
265
      }
266
  }     /* For each digit after decimal mark.  */
267
    }
268
269
  while (number_of_digits_after_decimal
270
   && first_digit[number_of_digits_before_decimal
271
      + number_of_digits_after_decimal] == '0')
272
    --number_of_digits_after_decimal;
273
#endif
274
275
13.1k
  if (flag_m68k_mri)
276
0
    {
277
0
      while (c == '_')
278
0
  c = *++p;
279
0
    }
280
13.1k
  if (c && strchr (string_of_decimal_exponent_marks, c))
281
62
    {
282
62
      char digits_exponent_sign_char;
283
284
62
      c = *++p;
285
62
      if (flag_m68k_mri)
286
0
  {
287
0
    while (c == '_')
288
0
      c = *++p;
289
0
  }
290
62
      if (c && strchr ("+-", c))
291
48
  {
292
48
    digits_exponent_sign_char = c;
293
48
    c = *++p;
294
48
  }
295
14
      else
296
14
  {
297
14
    digits_exponent_sign_char = '+';
298
14
  }
299
300
680
      for (; (c); c = *++p)
301
639
  {
302
639
    if (ISDIGIT (c))
303
618
      {
304
618
        if (decimal_exponent > LONG_MAX / 10
305
614
      || (decimal_exponent == LONG_MAX / 10
306
8
          && c > '0' + (LONG_MAX - LONG_MAX / 10 * 10)))
307
4
    return_value = ERROR_EXPONENT_OVERFLOW;
308
618
        decimal_exponent = decimal_exponent * 10 + c - '0';
309
618
      }
310
21
    else
311
21
      {
312
21
        break;
313
21
      }
314
639
  }
315
316
62
      if (digits_exponent_sign_char == '-')
317
48
  {
318
48
    decimal_exponent = -decimal_exponent;
319
48
  }
320
62
    }
321
322
13.1k
#ifndef OLD_FLOAT_READS
323
  /* Subtract_decimal_exponent != 0 when number_of_digits_before_decimal = 0
324
     and first digit after decimal is '0'.  */
325
13.1k
  decimal_exponent += subtract_decimal_exponent;
326
13.1k
#endif
327
328
13.1k
  *address_of_string_pointer = p;
329
330
13.1k
  number_of_digits_available =
331
13.1k
    number_of_digits_before_decimal + number_of_digits_after_decimal;
332
13.1k
  if (number_of_digits_available == 0)
333
222
    {
334
222
      address_of_generic_floating_point_number->exponent = 0; /* Not strictly necessary */
335
222
      address_of_generic_floating_point_number->leader
336
222
  = -1 + address_of_generic_floating_point_number->low;
337
222
      address_of_generic_floating_point_number->sign = digits_sign_char;
338
      /* We have just concocted (+/-)0.0E0 */
339
340
222
    }
341
12.9k
  else
342
12.9k
    {
343
12.9k
      int count;    /* Number of useful digits left to scan.  */
344
345
12.9k
      LITTLENUM_TYPE *temporary_binary_low = NULL;
346
12.9k
      LITTLENUM_TYPE *power_binary_low = NULL;
347
12.9k
      LITTLENUM_TYPE *digits_binary_low;
348
12.9k
      unsigned int precision;
349
12.9k
      unsigned int maximum_useful_digits;
350
12.9k
      unsigned int number_of_digits_to_use;
351
12.9k
      unsigned int more_than_enough_bits_for_digits;
352
12.9k
      unsigned int more_than_enough_littlenums_for_digits;
353
12.9k
      unsigned int size_of_digits_in_littlenums;
354
12.9k
      FLONUM_TYPE power_of_10_flonum;
355
12.9k
      FLONUM_TYPE digits_flonum;
356
357
12.9k
      precision = (address_of_generic_floating_point_number->high
358
12.9k
       - address_of_generic_floating_point_number->low
359
12.9k
       + 1);  /* Number of destination littlenums.  */
360
361
      /* precision includes two littlenums worth of guard bits,
362
   so this gives us 10 decimal guard digits here.  */
363
12.9k
      maximum_useful_digits = (precision
364
12.9k
             * LITTLENUM_NUMBER_OF_BITS
365
12.9k
             * 1000000 / 3321928
366
12.9k
             + 1);  /* round up.  */
367
368
12.9k
      if (number_of_digits_available > maximum_useful_digits)
369
0
  {
370
0
    number_of_digits_to_use = maximum_useful_digits;
371
0
  }
372
12.9k
      else
373
12.9k
  {
374
12.9k
    number_of_digits_to_use = number_of_digits_available;
375
12.9k
  }
376
377
12.9k
      decimal_exponent += number_of_digits_before_decimal;
378
12.9k
      decimal_exponent -= number_of_digits_to_use;
379
380
12.9k
      more_than_enough_bits_for_digits
381
12.9k
  = (number_of_digits_to_use * 3321928 / 1000000 + 1);
382
383
12.9k
      more_than_enough_littlenums_for_digits
384
12.9k
  = (more_than_enough_bits_for_digits
385
12.9k
     / LITTLENUM_NUMBER_OF_BITS)
386
12.9k
  + 2;
387
388
      /* Compute (digits) part. In "12.34E56" this is the "1234" part.
389
   Arithmetic is exact here. If no digits are supplied then this
390
   part is a 0 valued binary integer.  Allocate room to build up
391
   the binary number as littlenums.  We want this memory to
392
   disappear when we leave this function.  Assume no alignment
393
   problems => (room for n objects) == n * (room for 1
394
   object).  */
395
396
12.9k
      size_of_digits_in_littlenums = more_than_enough_littlenums_for_digits;
397
398
12.9k
      digits_binary_low = xcalloc (size_of_digits_in_littlenums,
399
12.9k
           sizeof (LITTLENUM_TYPE));
400
401
      /* Digits_binary_low[] is allocated and zeroed.  */
402
403
      /*
404
       * Parse the decimal digits as if * digits_low was in the units position.
405
       * Emit a binary number into digits_binary_low[].
406
       *
407
       * Use a large-precision version of:
408
       * (((1st-digit) * 10 + 2nd-digit) * 10 + 3rd-digit ...) * 10 + last-digit
409
       */
410
411
26.2k
      for (p = first_digit, count = number_of_digits_to_use; count; p++, --count)
412
13.3k
  {
413
13.3k
    c = *p;
414
13.3k
    if (ISDIGIT (c))
415
13.3k
      {
416
        /*
417
         * Multiply by 10. Assume can never overflow.
418
         * Add this digit to digits_binary_low[].
419
         */
420
421
13.3k
        long carry;
422
13.3k
        LITTLENUM_TYPE *littlenum_pointer;
423
13.3k
        LITTLENUM_TYPE *littlenum_limit;
424
425
13.3k
        littlenum_limit = digits_binary_low
426
13.3k
    + more_than_enough_littlenums_for_digits
427
13.3k
    - 1;
428
429
13.3k
        carry = c - '0';  /* char -> binary */
430
431
13.3k
        for (littlenum_pointer = digits_binary_low;
432
40.3k
       littlenum_pointer <= littlenum_limit;
433
27.0k
       littlenum_pointer++)
434
27.0k
    {
435
27.0k
      long work;
436
437
27.0k
      work = carry + 10 * (long) (*littlenum_pointer);
438
27.0k
      *littlenum_pointer = work & LITTLENUM_MASK;
439
27.0k
      carry = work >> LITTLENUM_NUMBER_OF_BITS;
440
27.0k
    }
441
442
13.3k
        if (carry != 0)
443
0
    {
444
      /*
445
       * We have a GROSS internal error.
446
       * This should never happen.
447
       */
448
0
      as_fatal (_("failed sanity check"));
449
0
    }
450
13.3k
      }
451
9
    else
452
9
      {
453
9
        ++count;    /* '.' doesn't alter digits used count.  */
454
9
      }
455
13.3k
  }
456
457
      /*
458
       * Digits_binary_low[] properly encodes the value of the digits.
459
       * Forget about any high-order littlenums that are 0.
460
       */
461
25.8k
      while (digits_binary_low[size_of_digits_in_littlenums - 1] == 0
462
12.9k
       && size_of_digits_in_littlenums >= 2)
463
12.9k
  size_of_digits_in_littlenums--;
464
465
12.9k
      digits_flonum.low = digits_binary_low;
466
12.9k
      digits_flonum.high = digits_binary_low + size_of_digits_in_littlenums - 1;
467
12.9k
      digits_flonum.leader = digits_flonum.high;
468
12.9k
      digits_flonum.exponent = 0;
469
      /*
470
       * The value of digits_flonum . sign should not be important.
471
       * We have already decided the output's sign.
472
       * We trust that the sign won't influence the other parts of the number!
473
       * So we give it a value for these reasons:
474
       * (1) courtesy to humans reading/debugging
475
       *     these numbers so they don't get excited about strange values
476
       * (2) in future there may be more meaning attached to sign,
477
       *     and what was
478
       *     harmless noise may become disruptive, ill-conditioned (or worse)
479
       *     input.
480
       */
481
12.9k
      digits_flonum.sign = '+';
482
483
12.9k
      {
484
  /*
485
   * Compute the mantissa (& exponent) of the power of 10.
486
   * If successful, then multiply the power of 10 by the digits
487
   * giving return_binary_mantissa and return_binary_exponent.
488
   */
489
490
12.9k
  int decimal_exponent_is_negative;
491
  /* This refers to the "-56" in "12.34E-56".  */
492
  /* FALSE: decimal_exponent is positive (or 0) */
493
  /* TRUE:  decimal_exponent is negative */
494
12.9k
  FLONUM_TYPE temporary_flonum;
495
12.9k
  unsigned int size_of_power_in_littlenums;
496
12.9k
  unsigned int size_of_power_in_chars;
497
498
12.9k
  size_of_power_in_littlenums = precision;
499
  /* Precision has a built-in fudge factor so we get a few guard bits.  */
500
501
12.9k
  decimal_exponent_is_negative = (long) decimal_exponent < 0;
502
12.9k
  if (decimal_exponent_is_negative)
503
30
    {
504
30
      decimal_exponent = -decimal_exponent;
505
30
    }
506
507
  /* From now on: the decimal exponent is > 0. Its sign is separate.  */
508
509
12.9k
  size_of_power_in_chars = (size_of_power_in_littlenums
510
12.9k
          * sizeof (LITTLENUM_TYPE)) + 2;
511
512
12.9k
  power_binary_low = xmalloc (size_of_power_in_chars);
513
12.9k
  temporary_binary_low = xmalloc (size_of_power_in_chars);
514
515
12.9k
  memset (power_binary_low, '\0', size_of_power_in_chars);
516
12.9k
  *power_binary_low = 1;
517
12.9k
  power_of_10_flonum.exponent = 0;
518
12.9k
  power_of_10_flonum.low = power_binary_low;
519
12.9k
  power_of_10_flonum.leader = power_binary_low;
520
12.9k
  power_of_10_flonum.high = power_binary_low + size_of_power_in_littlenums - 1;
521
12.9k
  power_of_10_flonum.sign = '+';
522
12.9k
  temporary_flonum.low = temporary_binary_low;
523
12.9k
  temporary_flonum.high = temporary_binary_low + size_of_power_in_littlenums - 1;
524
  /*
525
   * (power) == 1.
526
   * Space for temporary_flonum allocated.
527
   */
528
529
  /*
530
   * ...
531
   *
532
   * WHILE  more bits
533
   * DO find next bit (with place value)
534
   *  multiply into power mantissa
535
   * OD
536
   */
537
12.9k
  {
538
12.9k
    int place_number_limit;
539
    /* Any 10^(2^n) whose "n" exceeds this */
540
    /* value will fall off the end of */
541
    /* flonum_XXXX_powers_of_ten[].  */
542
12.9k
    int place_number;
543
12.9k
    const FLONUM_TYPE *multiplicand;  /* -> 10^(2^n) */
544
545
12.9k
    place_number_limit = table_size_of_flonum_powers_of_ten;
546
547
12.9k
    multiplicand = (decimal_exponent_is_negative
548
12.9k
        ? flonum_negative_powers_of_ten
549
12.9k
        : flonum_positive_powers_of_ten);
550
551
12.9k
    for (place_number = 1;/* Place value of this bit of exponent.  */
552
13.2k
         decimal_exponent;/* Quit when no more 1 bits in exponent.  */
553
12.9k
         decimal_exponent >>= 1, place_number++)
554
279
      {
555
279
        if (decimal_exponent & 1)
556
132
    {
557
132
      if (place_number > place_number_limit)
558
10
        {
559
          /* The decimal exponent has a magnitude so great
560
       that our tables can't help us fragment it.
561
       Although this routine is in error because it
562
       can't imagine a number that big, signal an
563
       error as if it is the user's fault for
564
       presenting such a big number.  */
565
10
          return_value = ERROR_EXPONENT_OVERFLOW;
566
          /* quit out of loop gracefully */
567
10
          decimal_exponent = 0;
568
10
        }
569
122
      else
570
122
        {
571
#ifdef TRACE
572
          printf ("before multiply, place_number = %d., power_of_10_flonum:\n",
573
            place_number);
574
575
          flonum_print (&power_of_10_flonum);
576
          (void) putchar ('\n');
577
#endif
578
#ifdef TRACE
579
          printf ("multiplier:\n");
580
          flonum_print (multiplicand + place_number);
581
          (void) putchar ('\n');
582
#endif
583
122
          flonum_multip (multiplicand + place_number,
584
122
             &power_of_10_flonum, &temporary_flonum);
585
#ifdef TRACE
586
          printf ("after multiply:\n");
587
          flonum_print (&temporary_flonum);
588
          (void) putchar ('\n');
589
#endif
590
122
          flonum_copy (&temporary_flonum, &power_of_10_flonum);
591
#ifdef TRACE
592
          printf ("after copy:\n");
593
          flonum_print (&power_of_10_flonum);
594
          (void) putchar ('\n');
595
#endif
596
122
        } /* If this bit of decimal_exponent was computable.*/
597
132
    } /* If this bit of decimal_exponent was set.  */
598
279
      } /* For each bit of binary representation of exponent */
599
#ifdef TRACE
600
    printf ("after computing power_of_10_flonum:\n");
601
    flonum_print (&power_of_10_flonum);
602
    (void) putchar ('\n');
603
#endif
604
12.9k
  }
605
12.9k
      }
606
607
      /*
608
       * power_of_10_flonum is power of ten in binary (mantissa) , (exponent).
609
       * It may be the number 1, in which case we don't NEED to multiply.
610
       *
611
       * Multiply (decimal digits) by power_of_10_flonum.
612
       */
613
614
12.9k
      flonum_multip (&power_of_10_flonum, &digits_flonum, address_of_generic_floating_point_number);
615
      /* Assert sign of the number we made is '+'.  */
616
12.9k
      address_of_generic_floating_point_number->sign = digits_sign_char;
617
618
12.9k
      free (temporary_binary_low);
619
12.9k
      free (power_binary_low);
620
12.9k
      free (digits_binary_low);
621
12.9k
    }
622
13.1k
  return return_value;
623
13.1k
}
624
625
#ifdef TRACE
626
static void
627
flonum_print (const FLONUM_TYPE *f)
628
{
629
  LITTLENUM_TYPE *lp;
630
  char littlenum_format[10];
631
  sprintf (littlenum_format, " %%0%dx", sizeof (LITTLENUM_TYPE) * 2);
632
#define print_littlenum(LP) (printf (littlenum_format, LP))
633
  printf ("flonum @%p %c e%ld", f, f->sign, f->exponent);
634
  if (f->low < f->high)
635
    for (lp = f->high; lp >= f->low; lp--)
636
      print_littlenum (*lp);
637
  else
638
    for (lp = f->low; lp <= f->high; lp++)
639
      print_littlenum (*lp);
640
  printf ("\n");
641
  fflush (stdout);
642
}
643
#endif
644
645
/* end of atof_generic.c */