1 /* mpfr_strtofr -- set a floating-point number from a string
3 Copyright 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
4 Contributed by the Arenaire and Cacao projects, INRIA.
6 This file is part of the GNU MPFR Library.
8 The GNU MPFR Library is free software; you can redistribute it and/or modify
9 it under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 2.1 of the License, or (at your
11 option) any later version.
13 The GNU MPFR Library is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
16 License for more details.
18 You should have received a copy of the GNU Lesser General Public License
19 along with the GNU MPFR Library; see the file COPYING.LIB. If not, write to
20 the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
21 MA 02110-1301, USA. */
23 #include <string.h> /* For strlen */
24 #include <stdlib.h> /* For strtol */
25 #include <ctype.h> /* For isspace */
27 #define MPFR_NEED_LONGLONG_H
28 #include "mpfr-impl.h"
30 #define MPFR_MAX_BASE 62
32 struct parsed_string
{
33 int negative
; /* non-zero iff the number is negative */
34 int base
; /* base of the string */
35 unsigned char *mantissa
; /* raw significand (without any point) */
36 unsigned char *mant
; /* stripped significand (without starting and
38 size_t prec
; /* length of mant (zero for +/-0) */
39 size_t alloc
; /* allocation size of mantissa */
40 mp_exp_t exp_base
; /* number of digits before the point */
41 mp_exp_t exp_bin
; /* exponent in case base=2 or 16, and the pxxx
42 format is used (i.e., exponent is given in
46 /* This table has been generated by the following program.
47 For 2 <= b <= MPFR_MAX_BASE,
48 RedInvLog2Table[b-2][0] / RedInvLog2Table[b-2][1]
49 is an upper approximation of log(2)/log(b).
51 static const unsigned long RedInvLog2Table
[MPFR_MAX_BASE
-1][2] = {
117 unsigned long tab
[N
];
121 int overflow
= 0, base_overflow
;
128 for (base
= 2 ; base
< 63 ; base
++)
130 mpfr_set_ui (x
, base
, GMP_RNDN
);
131 mpfr_log2 (x
, x
, GMP_RNDN
);
132 mpfr_ui_div (x
, 1, x
, GMP_RNDN
);
133 printf ("Base: %d x=%e ", base
, mpfr_get_d1 (x
));
134 for (i
= 0 ; i
< N
; i
++)
137 tab
[i
] = mpfr_get_ui (y
, GMP_RNDN
);
138 mpfr_sub (x
, x
, y
, GMP_RNDN
);
139 mpfr_ui_div (x
, 1, x
, GMP_RNDN
);
141 for (i
= N
-1 ; i
>= 0 ; i
--)
144 mpq_set_ui (q1
, tab
[i
], 1);
145 for (i
= i
-1 ; i
>= 0 ; i
--)
148 mpq_set_ui (q2
, tab
[i
], 1);
149 mpq_add (q1
, q1
, q2
);
151 printf("Approx: ", base
);
152 mpq_out_str (stdout
, 10, q1
);
153 printf (" = %e\n", mpq_get_d (q1
) );
154 fprintf (stderr
, "{");
155 mpz_out_str (stderr
, 10, mpq_numref (q1
));
156 fprintf (stderr
, "UL, ");
157 mpz_out_str (stderr
, 10, mpq_denref (q1
));
158 fprintf (stderr
, "UL},\n");
159 if (mpz_cmp_ui (mpq_numref (q1
), 1<<16-1) >= 0
160 || mpz_cmp_ui (mpq_denref (q1
), 1<<16-1) >= 0)
161 overflow
= 1, base_overflow
= base
;
169 printf ("OVERFLOW for base =%d!\n", base_overflow
);
174 /* Compatible with any locale, but one still assumes that 'a', 'b', 'c',
175 ..., 'z', and 'A', 'B', 'C', ..., 'Z' are consecutive values (like
176 in any ASCII-based character set). */
178 digit_value_in_base (int c
, int base
)
182 MPFR_ASSERTD (base
> 0 && base
<= MPFR_MAX_BASE
);
184 if (c
>= '0' && c
<= '9')
186 else if (c
>= 'a' && c
<= 'z')
187 digit
= (base
>= 37) ? c
- 'a' + 36 : c
- 'a' + 10;
188 else if (c
>= 'A' && c
<= 'Z')
189 digit
= c
- 'A' + 10;
193 return MPFR_LIKELY (digit
< base
) ? digit
: -1;
196 /* Compatible with any locale, but one still assumes that 'a', 'b', 'c',
197 ..., 'z', and 'A', 'B', 'C', ..., 'Z' are consecutive values (like
198 in any ASCII-based character set). */
199 /* TODO: support EBCDIC. */
201 fast_casecmp (const char *s1
, const char *s2
)
203 unsigned char c1
, c2
;
207 c2
= *(const unsigned char *) s2
++;
210 c1
= *(const unsigned char *) s1
++;
211 if (c1
>= 'A' && c1
<= 'Z')
218 /* Parse a string and fill pstr.
219 Return the advanced ptr too.
221 -1 if invalid string,
222 0 if special string (like nan),
223 1 if the string is ok.
225 So it doesn't return the ternary value
226 BUT if it returns 0 (NAN or INF), the ternary value is also '0'
227 (ie NAN and INF are exact) */
229 parse_string (mpfr_t x
, struct parsed_string
*pstr
,
230 const char **string
, int base
)
232 const char *str
= *string
;
235 int res
= -1; /* Invalid input return value */
236 const char *prefix_str
;
239 decimal_point
= (unsigned char) MPFR_DECIMAL_POINT
;
242 pstr
->mantissa
= NULL
;
244 /* Optional leading whitespace */
245 while (isspace((unsigned char) *str
)) str
++;
247 /* An optional sign `+' or `-' */
248 pstr
->negative
= (*str
== '-');
249 if (*str
== '-' || *str
== '+')
252 /* Can be case-insensitive NAN */
253 if (fast_casecmp (str
, "@nan@") == 0)
258 if (base
<= 16 && fast_casecmp (str
, "nan") == 0)
262 /* Check for "(dummychars)" */
266 for (s
= str
+1 ; *s
!= ')' ; s
++)
267 if (!(*s
>= 'A' && *s
<= 'Z')
268 && !(*s
>= 'a' && *s
<= 'z')
269 && !(*s
>= '0' && *s
<= '9')
277 /* MPFR_RET_NAN not used as the return value isn't a ternary value */
278 __gmpfr_flags
|= MPFR_FLAGS_NAN
;
282 /* Can be case-insensitive INF */
283 if (fast_casecmp (str
, "@inf@") == 0)
288 if (base
<= 16 && fast_casecmp (str
, "infinity") == 0)
293 if (base
<= 16 && fast_casecmp (str
, "inf") == 0)
299 (pstr
->negative
) ? MPFR_SET_NEG (x
) : MPFR_SET_POS (x
);
303 /* If base=0 or 16, it may include '0x' prefix */
305 if ((base
== 0 || base
== 16) && str
[0]=='0'
306 && (str
[1]=='x' || str
[1] == 'X'))
312 /* If base=0 or 2, it may include '0b' prefix */
313 if ((base
== 0 || base
== 2) && str
[0]=='0'
314 && (str
[1]=='b' || str
[1] == 'B'))
320 /* Else if base=0, we assume decimal base */
326 pstr
->alloc
= (size_t) strlen (str
) * sizeof(char) + 1;
327 pstr
->mantissa
= (unsigned char*) (*__gmp_allocate_func
) (pstr
->alloc
);
329 /* Read mantissa digits */
331 mant
= pstr
->mantissa
;
336 for (;;) /* Loop until an invalid character is read */
338 int c
= (unsigned char) *str
++;
339 /* The cast to unsigned char is needed because of digit_value_in_base;
340 decimal_point uses this convention too. */
341 if (c
== '.' || c
== decimal_point
)
343 if (MPFR_UNLIKELY(point
)) /* Second '.': stop parsing */
348 c
= digit_value_in_base (c
, base
);
351 MPFR_ASSERTN (c
>= 0); /* c is representable in an unsigned char */
352 *mant
++ = (unsigned char) c
;
356 str
--; /* The last read character was invalid */
358 /* Update the # of char in the mantissa */
359 pstr
->prec
= mant
- pstr
->mantissa
;
360 /* Check if there are no characters in the mantissa (Invalid argument) */
363 /* Check if there was a prefix (in such a case, we have to read
364 again the mantissa without skipping the prefix)
365 The allocated mantissa is still big enough since we will
366 read only 0, and we alloc one more char than needed.
367 FIXME: Not really friendly. Maybe cleaner code? */
368 if (prefix_str
!= NULL
)
379 MPFR_ASSERTD (pstr
->exp_base
>= 0);
381 /* an optional exponent (e or E, p or P, @) */
382 if ( (*str
== '@' || (base
<= 10 && (*str
== 'e' || *str
== 'E')))
383 && (!isspace((unsigned char) str
[1])) )
386 /* the exponent digits are kept in ASCII */
387 mp_exp_t read_exp
= strtol (str
+ 1, endptr
, 10);
389 if (endptr
[0] != str
+1)
391 MPFR_ASSERTN (read_exp
== (long) read_exp
);
392 MPFR_SADD_OVERFLOW (sum
, read_exp
, pstr
->exp_base
,
393 mp_exp_t
, mp_exp_unsigned_t
,
394 MPFR_EXP_MIN
, MPFR_EXP_MAX
,
396 /* Since exp_base was positive, read_exp + exp_base can't
397 do a negative overflow. */
398 MPFR_ASSERTD (res
!= 3);
399 pstr
->exp_base
= sum
;
401 else if ((base
== 2 || base
== 16)
402 && (*str
== 'p' || *str
== 'P')
403 && (!isspace((unsigned char) str
[1])))
406 pstr
->exp_bin
= (mp_exp_t
) strtol (str
+ 1, endptr
, 10);
407 if (endptr
[0] != str
+1)
411 /* Remove 0's at the beginning and end of mant_s[0..prec_s-1] */
412 mant
= pstr
->mantissa
;
413 for ( ; (pstr
->prec
> 0) && (*mant
== 0) ; mant
++, pstr
->prec
--)
415 for ( ; (pstr
->prec
> 0) && (mant
[pstr
->prec
- 1] == 0); pstr
->prec
--);
431 if (pstr
->mantissa
!= NULL
&& res
!= 1)
432 (*__gmp_free_func
) (pstr
->mantissa
, pstr
->alloc
);
436 /* Transform a parsed string to a mpfr_t according to the rounding mode
437 and the precision of x.
438 Returns the ternary value. */
440 parsed_string_to_mpfr (mpfr_t x
, struct parsed_string
*pstr
, mp_rnd_t rnd
)
445 mp_limb_t
*y
, *result
;
448 mp_size_t ysize
, real_ysize
;
450 MPFR_ZIV_DECL (loop
);
451 MPFR_TMP_DECL (marker
);
453 /* initialize the working precision */
454 prec
= MPFR_PREC (x
) + MPFR_INT_CEIL_LOG2 (MPFR_PREC (x
));
456 /* compute y as long as rounding is not possible */
457 MPFR_TMP_MARK(marker
);
458 MPFR_ZIV_INIT (loop
, prec
);
461 /* Set y to the value of the ~prec most significant bits of pstr->mant
462 (as long as we guarantee correct rounding, we don't need to get
463 exactly prec bits). */
464 ysize
= (prec
- 1) / BITS_PER_MP_LIMB
+ 1;
465 /* prec bits corresponds to ysize limbs */
466 ysize_bits
= ysize
* BITS_PER_MP_LIMB
;
467 /* and to ysize_bits >= prec > MPFR_PREC (x) bits */
468 y
= (mp_limb_t
*) MPFR_TMP_ALLOC ((2 * ysize
+ 1) * sizeof (mp_limb_t
));
469 y
+= ysize
; /* y has (ysize+1) allocated limbs */
471 /* pstr_size is the number of characters we read in pstr->mant
472 to have at least ysize full limbs.
473 We must have base^(pstr_size-1) >= (2^(BITS_PER_MP_LIMB))^ysize
474 (in the worst case, the first digit is one and all others are zero).
475 i.e., pstr_size >= 1 + ysize*BITS_PER_MP_LIMB/log2(base)
476 Since ysize ~ prec/BITS_PER_MP_LIMB and prec < Umax/2 =>
477 ysize*BITS_PER_MP_LIMB can not overflow.
478 We compute pstr_size = 1 + ceil(ysize_bits * Num / Den)
479 where Num/Den >= 1/log2(base)
480 It is not exactly ceil(1/log2(base)) but could be one more (base 2)
481 Quite ugly since it tries to avoid overflow:
482 let Num = RedInvLog2Table[pstr->base-2][0]
483 and Den = RedInvLog2Table[pstr->base-2][1],
484 and ysize_bits = a*Den+b,
485 then ysize_bits * Num/Den = a*Num + (b * Num)/Den,
486 thus ceil(ysize_bits * Num/Den) = a*Num + floor(b * Num + Den - 1)/Den
489 unsigned long Num
= RedInvLog2Table
[pstr
->base
-2][0];
490 unsigned long Den
= RedInvLog2Table
[pstr
->base
-2][1];
491 pstr_size
= ((ysize_bits
/ Den
) * Num
)
492 + (((ysize_bits
% Den
) * Num
+ Den
- 1) / Den
)
496 /* since pstr_size corresponds to at least ysize_bits full bits,
497 and ysize_bits > prec, the weight of the neglected part of
498 pstr->mant (if any) is < ulp(y) < ulp(x) */
500 /* if the number of wanted characters is more than what we have in
501 pstr->mant, round it down */
502 if (pstr_size
>= pstr
->prec
)
503 pstr_size
= pstr
->prec
;
504 MPFR_ASSERTD (pstr_size
== (mp_exp_t
) pstr_size
);
506 /* convert str into binary: note that pstr->mant is big endian,
507 thus no offset is needed */
508 real_ysize
= mpn_set_str (y
, pstr
->mant
, pstr_size
, pstr
->base
);
509 MPFR_ASSERTD (real_ysize
<= ysize
+1);
511 /* normalize y: warning we can get even get ysize+1 limbs! */
512 MPFR_ASSERTD (y
[real_ysize
- 1] != 0); /* mpn_set_str guarantees this */
513 count_leading_zeros (count
, y
[real_ysize
- 1]);
514 /* exact means that the number of limbs of the output of mpn_set_str
515 is less or equal to ysize */
516 exact
= real_ysize
<= ysize
;
517 if (exact
) /* shift y to the left in that case y should be exact */
519 /* we have enough limbs to store {y, real_ysize} */
520 /* shift {y, num_limb} for count bits to the left */
522 mpn_lshift (y
+ ysize
- real_ysize
, y
, real_ysize
, count
);
523 if (real_ysize
!= ysize
)
526 MPN_COPY_DECR (y
+ ysize
- real_ysize
, y
, real_ysize
);
527 MPN_ZERO (y
, ysize
- real_ysize
);
529 /* for each bit shift decrease exponent of y */
530 /* (This should not overflow) */
531 exp
= - ((ysize
- real_ysize
) * BITS_PER_MP_LIMB
+ count
);
533 else /* shift y to the right, by doing this we might lose some
534 bits from the result of mpn_set_str (in addition to the
535 characters neglected from pstr->mant) */
537 /* shift {y, num_limb} for (BITS_PER_MP_LIMB - count) bits
538 to the right. FIXME: can we prove that count cannot be zero here,
539 since mpn_rshift does not accept a shift of BITS_PER_MP_LIMB? */
540 MPFR_ASSERTD (count
!= 0);
541 exact
= mpn_rshift (y
, y
, real_ysize
, BITS_PER_MP_LIMB
- count
) ==
543 /* for each bit shift increase exponent of y */
544 exp
= BITS_PER_MP_LIMB
- count
;
547 /* compute base^(exp_s-pr) on n limbs */
548 if (IS_POW2 (pstr
->base
))
550 /* Base: 2, 4, 8, 16, 32 */
554 count_leading_zeros (pow2
, (mp_limb_t
) pstr
->base
);
555 pow2
= BITS_PER_MP_LIMB
- pow2
- 1; /* base = 2^pow2 */
556 MPFR_ASSERTD (0 < pow2
&& pow2
<= 5);
557 /* exp += pow2 * (pstr->exp_base - pstr_size) + pstr->exp_bin
558 with overflow checking
559 and check that we can add/substract 2 to exp without overflow */
560 MPFR_SADD_OVERFLOW (tmp
, pstr
->exp_base
, -(mp_exp_t
) pstr_size
,
561 mp_exp_t
, mp_exp_unsigned_t
,
562 MPFR_EXP_MIN
, MPFR_EXP_MAX
,
563 goto overflow
, goto underflow
);
564 /* On some FreeBsd/Alpha, LONG_MIN/1 produces an exception
565 so we check for this before doing the division */
566 if (tmp
> 0 && pow2
!= 1 && MPFR_EXP_MAX
/pow2
<= tmp
)
568 else if (tmp
< 0 && pow2
!= 1 && MPFR_EXP_MIN
/pow2
>= tmp
)
571 MPFR_SADD_OVERFLOW (tmp
, tmp
, pstr
->exp_bin
,
572 mp_exp_t
, mp_exp_unsigned_t
,
573 MPFR_EXP_MIN
, MPFR_EXP_MAX
,
574 goto overflow
, goto underflow
);
575 MPFR_SADD_OVERFLOW (exp
, exp
, tmp
,
576 mp_exp_t
, mp_exp_unsigned_t
,
577 MPFR_EXP_MIN
+2, MPFR_EXP_MAX
-2,
578 goto overflow
, goto underflow
);
582 /* case non-power-of-two-base, and pstr->exp_base > pstr_size */
583 else if (pstr
->exp_base
> (mp_exp_t
) pstr_size
)
588 result
= (mp_limb_t
*) MPFR_TMP_ALLOC ((2*ysize
+1)*BYTES_PER_MP_LIMB
);
590 /* z = base^(exp_base-sptr_size) using space allocated at y-ysize */
592 /* NOTE: exp_base-pstr_size can't overflow since pstr_size > 0 */
593 err
= mpfr_mpn_exp (z
, &exp_z
, pstr
->base
,
594 pstr
->exp_base
- pstr_size
, ysize
);
597 exact
= exact
&& (err
== -1);
599 /* If exact is non zero, then z equals exactly the value of the
600 pstr_size most significant digits from pstr->mant, i.e., the
601 only difference can come from the neglected pstr->prec-pstr_size
602 least significant digits of pstr->mant.
603 If exact is zero, then z is rounded towards zero with respect
606 /* multiply(y = 0.mant_s[0]...mant_s[pr-1])_base by base^(exp_s-g) */
607 mpn_mul_n (result
, y
, z
, ysize
);
609 /* compute the error on the product */
614 /* compute the exponent of y */
615 /* exp += exp_z + ysize_bits with overflow checking
616 and check that we can add/substract 2 to exp without overflow */
617 MPFR_SADD_OVERFLOW (exp_z
, exp_z
, ysize_bits
,
618 mp_exp_t
, mp_exp_unsigned_t
,
619 MPFR_EXP_MIN
, MPFR_EXP_MAX
,
620 goto overflow
, goto underflow
);
621 MPFR_SADD_OVERFLOW (exp
, exp
, exp_z
,
622 mp_exp_t
, mp_exp_unsigned_t
,
623 MPFR_EXP_MIN
+2, MPFR_EXP_MAX
-2,
624 goto overflow
, goto underflow
);
626 /* normalize result */
627 if (MPFR_LIMB_MSB (result
[2 * ysize
- 1]) == 0)
629 mp_limb_t
*r
= result
+ ysize
- 1;
630 mpn_lshift (r
, r
, ysize
+ 1, 1);
631 /* Overflow checking not needed */
635 /* if the low ysize limbs of {result, 2*ysize} are all zero,
636 then the result is still "exact" (if it was before) */
637 exact
= exact
&& (mpn_scan1 (result
, 0)
638 >= (unsigned long) ysize_bits
);
641 /* case exp_base < pstr_size */
642 else if (pstr
->exp_base
< (mp_exp_t
) pstr_size
)
647 result
= (mp_limb_t
*) MPFR_TMP_ALLOC ((3*ysize
+1) * BYTES_PER_MP_LIMB
);
649 /* set y to y * K^ysize */
650 y
= y
- ysize
; /* we have allocated ysize limbs at y - ysize */
653 /* pstr_size - pstr->exp_base can overflow */
654 MPFR_SADD_OVERFLOW (exp_z
, (mp_exp_t
) pstr_size
, -pstr
->exp_base
,
655 mp_exp_t
, mp_exp_unsigned_t
,
656 MPFR_EXP_MIN
, MPFR_EXP_MAX
,
657 goto underflow
, goto overflow
);
659 /* (z, exp_z) = base^(exp_base-pstr_size) */
660 z
= result
+ 2*ysize
+ 1;
661 err
= mpfr_mpn_exp (z
, &exp_z
, pstr
->base
, exp_z
, ysize
);
662 exact
= exact
&& (err
== -1);
664 goto underflow
; /* FIXME: Sure? */
669 /* result will be put into result + n, and remainder into result */
670 mpn_tdiv_qr (result
+ ysize
, result
, (mp_size_t
) 0, y
,
671 2 * ysize
, z
, ysize
);
673 /* exp -= exp_z + ysize_bits with overflow checking
674 and check that we can add/substract 2 to exp without overflow */
675 MPFR_SADD_OVERFLOW (exp_z
, exp_z
, ysize_bits
,
676 mp_exp_t
, mp_exp_unsigned_t
,
677 MPFR_EXP_MIN
, MPFR_EXP_MAX
,
678 goto underflow
, goto overflow
);
679 MPFR_SADD_OVERFLOW (exp
, exp
, -exp_z
,
680 mp_exp_t
, mp_exp_unsigned_t
,
681 MPFR_EXP_MIN
+2, MPFR_EXP_MAX
-2,
682 goto overflow
, goto underflow
);
684 /* if the remainder of the division is zero, then the result is
685 still "exact" if it was before */
686 exact
= exact
&& (mpn_popcount (result
, ysize
) == 0);
688 /* normalize result */
689 if (result
[2 * ysize
] == MPFR_LIMB_ONE
)
691 mp_limb_t
*r
= result
+ ysize
;
692 exact
= exact
&& ((*r
& MPFR_LIMB_ONE
) == 0);
693 mpn_rshift (r
, r
, ysize
+ 1, 1);
694 /* Overflow Checking not needed */
699 /* case exp_base = pstr_size: no multiplication or division needed */
702 /* base^(exp_s-pr) = 1 nothing to compute */
707 /* If result is exact, we still have to consider the neglected part
708 of the input string. For a directed rounding, in that case we could
709 still correctly round, since the neglected part is less than
710 one ulp, but that would make the code more complex, and give a
711 speedup for rare cases only. */
712 exact
= exact
&& (pstr_size
== pstr
->prec
);
714 /* at this point, result is an approximation rounded towards zero
715 of the pstr_size most significant digits of pstr->mant, with
716 equality in case exact is non-zero. */
718 /* test if rounding is possible, and if so exit the loop */
719 if (exact
|| mpfr_can_round_raw (result
, ysize
,
720 (pstr
->negative
) ? -1 : 1,
721 ysize_bits
- err
- 1,
722 GMP_RNDN
, rnd
, MPFR_PREC(x
)))
725 /* update the prec for next loop */
726 MPFR_ZIV_NEXT (loop
, prec
);
728 MPFR_ZIV_FREE (loop
);
731 if (mpfr_round_raw (MPFR_MANT (x
), result
,
733 pstr
->negative
, MPFR_PREC(x
), rnd
, &res
))
735 /* overflow when rounding y */
736 MPFR_MANT (x
)[MPFR_LIMB_SIZE (x
) - 1] = MPFR_LIMB_HIGHBIT
;
737 /* Overflow Checking not needed */
741 if (res
== 0) /* fix ternary value */
743 exact
= exact
&& (pstr_size
== pstr
->prec
);
745 res
= (pstr
->negative
) ? 1 : -1;
748 /* Set sign of x before exp since check_range needs a valid sign */
749 (pstr
->negative
) ? MPFR_SET_NEG (x
) : MPFR_SET_POS (x
);
751 /* DO NOT USE MPFR_SET_EXP. The exp may be out of range! */
752 MPFR_SADD_OVERFLOW (exp
, exp
, ysize_bits
,
753 mp_exp_t
, mp_exp_unsigned_t
,
754 MPFR_EXP_MIN
, MPFR_EXP_MAX
,
755 goto overflow
, goto underflow
);
757 res
= mpfr_check_range (x
, res
, rnd
);
761 /* This is called when there is a huge overflow
762 (Real expo < MPFR_EXP_MIN << __gmpfr_emin */
765 res
= mpfr_underflow (x
, rnd
, (pstr
->negative
) ? -1 : 1);
769 res
= mpfr_overflow (x
, rnd
, (pstr
->negative
) ? -1 : 1);
772 MPFR_TMP_FREE (marker
);
777 free_parsed_string (struct parsed_string
*pstr
)
779 (*__gmp_free_func
) (pstr
->mantissa
, pstr
->alloc
);
783 mpfr_strtofr (mpfr_t x
, const char *string
, char **end
, int base
,
787 struct parsed_string pstr
;
789 MPFR_ASSERTN (base
== 0 || (base
>= 2 && base
<= 36));
791 /* If an error occured, it must return 0 */
795 /* Though bases up to MPFR_MAX_BASE are supported, we require a lower
796 limit: 36. For such values <= 36, parsing is case-insensitive. */
797 MPFR_ASSERTN (MPFR_MAX_BASE
>= 36);
798 res
= parse_string (x
, &pstr
, &string
, base
);
799 /* If res == 0, then it was exact (NAN or INF),
800 so it is also the ternary value */
801 if (MPFR_UNLIKELY (res
== -1)) /* invalid data */
802 res
= 0; /* x is set to 0, which is exact, thus ternary value is 0 */
805 res
= parsed_string_to_mpfr (x
, &pstr
, rnd
);
806 free_parsed_string (&pstr
);
809 res
= mpfr_overflow (x
, rnd
, (pstr
.negative
) ? -1 : 1);
810 MPFR_ASSERTD (res
!= 3);
814 /* This is called when there is a huge overflow
815 (Real expo < MPFR_EXP_MIN << __gmpfr_emin */
818 res
= mpfr_underflow (x
, rnd
, (pstr
.negative
) ? -1 : 1);
823 *end
= (char *) string
;