1 /* Compatibility functions for floating point formatting, reentrant versions.
2 Copyright (C) 1995-2016 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
26 #include <sys/param.h>
27 #include <math_ldbl_opt.h>
30 # define FLOAT_TYPE double
32 # define FLOAT_FMT_FLAG
33 # define FLOAT_NAME_EXT
34 # define FLOAT_MIN_10_EXP DBL_MIN_10_EXP
35 # if DBL_MANT_DIG == 53
36 # define NDIGIT_MAX 17
37 # elif DBL_MANT_DIG == 24
39 # elif DBL_MANT_DIG == 56
40 # define NDIGIT_MAX 18
42 /* See IEEE 854 5.6, table 2 for this formula. Unfortunately we need a
43 compile time constant here, so we cannot use it. */
44 # error "NDIGIT_MAX must be precomputed"
45 # define NDIGIT_MAX (lrint (ceil (M_LN2 / M_LN10 * DBL_MANT_DIG + 1.0)))
47 # if DBL_MIN_10_EXP == -37
48 # define FLOAT_MIN_10_NORM 1.0e-37
49 # elif DBL_MIN_10_EXP == -307
50 # define FLOAT_MIN_10_NORM 1.0e-307
51 # elif DBL_MIN_10_EXP == -4931
52 # define FLOAT_MIN_10_NORM 1.0e-4931
54 /* libc can't depend on libm. */
55 # error "FLOAT_MIN_10_NORM must be precomputed"
56 # define FLOAT_MIN_10_NORM exp10 (DBL_MIN_10_EXP)
59 # define LONG_DOUBLE_CVT
62 #define APPEND(a, b) APPEND2 (a, b)
63 #define APPEND2(a, b) a##b
64 #define __APPEND(a, b) __APPEND2 (a, b)
65 #define __APPEND2(a, b) __##a##b
67 #define FLOOR APPEND(floor, FLOAT_NAME_EXT)
68 #define FABS APPEND(fabs, FLOAT_NAME_EXT)
69 #define LOG10 APPEND(log10, FLOAT_NAME_EXT)
70 #define EXP APPEND(exp, FLOAT_NAME_EXT)
74 __APPEND (FUNC_PREFIX
, fcvt_r
) (FLOAT_TYPE value
, int ndigit
, int *decpt
,
75 int *sign
, char *buf
, size_t len
)
90 *sign
= signbit (value
) != 0;
96 /* Rounding to the left of the decimal point. */
99 FLOAT_TYPE new_value
= value
* 0.1;
114 /* Value is Inf or NaN. */
117 n
= __snprintf (buf
, len
, "%.*" FLOAT_FMT_FLAG
"f", MIN (ndigit
, NDIGIT_MAX
),
119 /* Check for a too small buffer. */
120 if (n
>= (ssize_t
) len
)
124 while (i
< n
&& isdigit (buf
[i
]))
129 /* Value is Inf or NaN. */
136 while (i
< n
&& !isdigit (buf
[i
]));
138 if (*decpt
== 1 && buf
[0] == '0' && value
!= 0.0)
140 /* We must not have leading zeroes. Strip them all out and
141 adjust *DECPT if necessary. */
143 while (i
< n
&& buf
[i
] == '0')
150 memmove (&buf
[MAX (*decpt
, 0)], &buf
[i
], n
- i
);
151 buf
[n
- (i
- MAX (*decpt
, 0))] = '\0';
157 if ((ssize_t
) --len
> n
)
159 while (left
-- > 0 && n
< (ssize_t
) len
)
169 __APPEND (FUNC_PREFIX
, ecvt_r
) (FLOAT_TYPE value
, int ndigit
, int *decpt
,
170 int *sign
, char *buf
, size_t len
)
174 if (isfinite (value
) && value
!= 0.0)
176 /* Slow code that doesn't require -lm functions. */
183 /* For denormalized numbers the d < 1.0 case below won't work,
184 as f can overflow to +Inf. */
185 if (d
< FLOAT_MIN_10_NORM
)
187 value
/= FLOAT_MIN_10_NORM
;
192 exponent
+= FLOAT_MIN_10_EXP
;
212 while (d
>= f
* 10.0);
217 else if (value
== 0.0)
218 /* SUSv2 leaves it unspecified whether *DECPT is 0 or 1 for 0.0.
219 This could be changed to -1 if we want to return 0. */
222 if (ndigit
<= 0 && len
> 0)
226 *sign
= isfinite (value
) ? signbit (value
) != 0 : 0;
229 if (__APPEND (FUNC_PREFIX
, fcvt_r
) (value
, MIN (ndigit
, NDIGIT_MAX
) - 1,
230 decpt
, sign
, buf
, len
))
237 #if LONG_DOUBLE_COMPAT (libc, GLIBC_2_0)
238 # ifdef LONG_DOUBLE_CVT
239 # define cvt_symbol(symbol) \
240 cvt_symbol_1 (libc, __APPEND (FUNC_PREFIX, symbol), \
241 APPEND (FUNC_PREFIX, symbol), GLIBC_2_4)
242 # define cvt_symbol_1(lib, local, symbol, version) \
243 versioned_symbol (lib, local, symbol, version)
245 # define cvt_symbol(symbol) \
246 cvt_symbol_1 (libc, __APPEND (FUNC_PREFIX, symbol), \
247 APPEND (q, symbol), GLIBC_2_0); \
248 weak_alias (__APPEND (FUNC_PREFIX, symbol), APPEND (FUNC_PREFIX, symbol))
249 # define cvt_symbol_1(lib, local, symbol, version) \
250 compat_symbol (lib, local, symbol, version)
253 # define cvt_symbol(symbol) \
254 weak_alias (__APPEND (FUNC_PREFIX, symbol), APPEND (FUNC_PREFIX, symbol))