1 /* Print floating point number in hexadecimal notation according to ISO C99.
2 Copyright (C) 1997-2012 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, see
18 <http://www.gnu.org/licenses/>. */
28 #include "quadmath-rounding-mode.h"
29 #include "quadmath-printf.h"
34 /* Macros for doing the actual output. */
39 register const int outc = (ch); \
40 if (PUTC (outc, fp) == EOF) \
45 #define PRINT(ptr, wptr, len) \
48 register size_t outlen = (len); \
50 while (outlen-- > 0) \
53 while (outlen-- > 0) \
57 #define PADN(ch, len) \
60 if (PAD (fp, ch, len) != len) \
69 __quadmath_printf_fphex (struct __quadmath_printf_file
*fp
,
70 const struct printf_info
*info
,
71 const void *const *args
)
73 /* The floating-point value to output. */
74 ieee854_float128 fpnum
;
76 /* Locale-dependent representation of decimal point. */
80 /* "NaN" or "Inf" for the special cases. */
81 const char *special
= NULL
;
82 const wchar_t *wspecial
= NULL
;
84 /* Buffer for the generated number string for the mantissa. The
85 maximal size for the mantissa is 128 bits. */
94 /* The maximal exponent of two in decimal notation has 5 digits. */
102 /* Non-zero is mantissa is zero. */
105 /* The leading digit before the decimal point. */
109 int precision
= info
->prec
;
112 int width
= info
->width
;
114 /* Number of characters written. */
117 /* Nonzero if this is output on a wide character stream. */
118 int wide
= info
->wide
;
122 /* Figure out the decimal point character. */
123 #ifdef USE_NL_LANGINFO
124 if (info
->extra
== 0)
125 decimal
= nl_langinfo (DECIMAL_POINT
);
128 decimal
= nl_langinfo (MON_DECIMAL_POINT
);
129 if (*decimal
== '\0')
130 decimal
= nl_langinfo (DECIMAL_POINT
);
132 /* The decimal point character must never be zero. */
133 assert (*decimal
!= '\0');
134 #elif defined USE_LOCALECONV
135 const struct lconv
*lc
= localeconv ();
136 if (info
->extra
== 0)
137 decimal
= lc
->decimal_point
;
140 decimal
= lc
->mon_decimal_point
;
141 if (decimal
== NULL
|| *decimal
== '\0')
142 decimal
= lc
->decimal_point
;
144 if (decimal
== NULL
|| *decimal
== '\0')
149 #ifdef USE_NL_LANGINFO_WC
150 if (info
->extra
== 0)
151 decimalwc
= nl_langinfo_wc (_NL_NUMERIC_DECIMAL_POINT_WC
);
154 decimalwc
= nl_langinfo_wc (_NL_MONETARY_DECIMAL_POINT_WC
);
155 if (decimalwc
== L_('\0'))
156 decimalwc
= nl_langinfo_wc (_NL_NUMERIC_DECIMAL_POINT_WC
);
158 /* The decimal point character must never be zero. */
159 assert (decimalwc
!= L_('\0'));
164 /* Fetch the argument value. */
166 fpnum
.value
= **(const __float128
**) args
[0];
168 /* Check for special values: not a number or infinity. */
169 if (isnanq (fpnum
.value
))
171 negative
= fpnum
.ieee
.negative
!= 0;
172 if (isupper (info
->spec
))
175 wspecial
= L_("NAN");
180 wspecial
= L_("nan");
185 if (isinfq (fpnum
.value
))
187 if (isupper (info
->spec
))
190 wspecial
= L_("INF");
195 wspecial
= L_("inf");
199 negative
= signbitq (fpnum
.value
);
205 int width
= info
->width
;
207 if (negative
|| info
->showsign
|| info
->space
)
211 if (!info
->left
&& width
> 0)
216 else if (info
->showsign
)
218 else if (info
->space
)
221 PRINT (special
, wspecial
, 3);
223 if (info
->left
&& width
> 0)
230 /* We have 112 bits of mantissa plus one implicit digit. Since
231 112 bits are representable without rest using hexadecimal
232 digits we use only the implicit digits for the number before
233 the decimal point. */
236 assert (sizeof (long double) == 16);
238 num0
= fpnum
.ieee
.mant_high
;
239 num1
= fpnum
.ieee
.mant_low
;
241 zero_mantissa
= (num0
|num1
) == 0;
243 if (sizeof (unsigned long int) > 6)
245 numstr
= _itoa_word (num1
, numbuf
+ sizeof numbuf
, 16,
247 wnumstr
= _itowa_word (num1
,
248 wnumbuf
+ sizeof (wnumbuf
) / sizeof (wchar_t),
249 16, info
->spec
== 'A');
253 numstr
= _itoa (num1
, numbuf
+ sizeof numbuf
, 16,
255 wnumstr
= _itowa (num1
,
256 wnumbuf
+ sizeof (wnumbuf
) / sizeof (wchar_t),
257 16, info
->spec
== 'A');
260 while (numstr
> numbuf
+ (sizeof numbuf
- 64 / 4))
263 *--wnumstr
= L_('0');
266 if (sizeof (unsigned long int) > 6)
268 numstr
= _itoa_word (num0
, numstr
, 16, info
->spec
== 'A');
269 wnumstr
= _itowa_word (num0
, wnumstr
, 16, info
->spec
== 'A');
273 numstr
= _itoa (num0
, numstr
, 16, info
->spec
== 'A');
274 wnumstr
= _itowa (num0
, wnumstr
, 16, info
->spec
== 'A');
277 /* Fill with zeroes. */
278 while (numstr
> numbuf
+ (sizeof numbuf
- 112 / 4))
280 *--wnumstr
= L_('0');
284 leading
= fpnum
.ieee
.exponent
== 0 ? '0' : '1';
286 exponent
= fpnum
.ieee
.exponent
;
294 /* This is a denormalized number. */
296 exponent
= IEEE854_FLOAT128_BIAS
- 1;
299 else if (exponent
>= IEEE854_FLOAT128_BIAS
)
302 exponent
-= IEEE854_FLOAT128_BIAS
;
307 exponent
= -(exponent
- IEEE854_FLOAT128_BIAS
);
311 /* Look for trailing zeroes. */
314 wnumend
= &wnumbuf
[sizeof wnumbuf
/ sizeof wnumbuf
[0]];
315 numend
= &numbuf
[sizeof numbuf
/ sizeof numbuf
[0]];
316 while (wnumend
[-1] == L_('0'))
322 do_round_away
= false;
324 if (precision
!= -1 && precision
< numend
- numstr
)
326 char last_digit
= precision
> 0 ? numstr
[precision
- 1] : leading
;
327 char next_digit
= numstr
[precision
];
328 int last_digit_value
= (last_digit
>= 'A' && last_digit
<= 'F'
329 ? last_digit
- 'A' + 10
330 : (last_digit
>= 'a' && last_digit
<= 'f'
331 ? last_digit
- 'a' + 10
332 : last_digit
- '0'));
333 int next_digit_value
= (next_digit
>= 'A' && next_digit
<= 'F'
334 ? next_digit
- 'A' + 10
335 : (next_digit
>= 'a' && next_digit
<= 'f'
336 ? next_digit
- 'a' + 10
337 : next_digit
- '0'));
338 bool more_bits
= ((next_digit_value
& 7) != 0
339 || precision
+ 1 < numend
- numstr
);
341 int rounding_mode
= get_rounding_mode ();
342 do_round_away
= round_away (negative
, last_digit_value
& 1,
343 next_digit_value
>= 8, more_bits
,
349 precision
= numend
- numstr
;
350 else if (do_round_away
)
356 char ch
= numstr
[cnt
];
357 /* We assume that the digits and the letters are ordered
358 like in ASCII. This is true for the rest of GNU, too. */
361 wnumstr
[cnt
] = (wchar_t) info
->spec
;
362 numstr
[cnt
] = info
->spec
; /* This is tricky,
366 else if (tolower (ch
) < 'f')
375 wnumstr
[cnt
] = L_('0');
380 /* The mantissa so far was fff...f Now increment the
381 leading digit. Here it is again possible that we
384 leading
= info
->spec
;
385 else if (tolower (leading
) < 'f')
395 exponent
= -exponent
;
413 /* Now we can compute the exponent string. */
414 expstr
= _itoa_word (exponent
, expbuf
+ sizeof expbuf
, 10, 0);
415 wexpstr
= _itowa_word (exponent
,
416 wexpbuf
+ sizeof wexpbuf
/ sizeof (wchar_t), 10, 0);
418 /* Now we have all information to compute the size. */
419 width
-= ((negative
|| info
->showsign
|| info
->space
)
421 + 2 + 1 + 0 + precision
+ 1 + 1
422 /* 0x h . hhh P ExpoSign. */
423 + ((expbuf
+ sizeof expbuf
) - expstr
));
426 /* Count the decimal point.
427 A special case when the mantissa or the precision is zero and the `#'
428 is not given. In this case we must not print the decimal point. */
429 if (precision
> 0 || info
->alt
)
430 width
-= wide
? 1 : strlen (decimal
);
432 if (!info
->left
&& info
->pad
!= '0' && width
> 0)
437 else if (info
->showsign
)
439 else if (info
->space
)
443 if ('X' - 'A' == 'x' - 'a')
444 outchar (info
->spec
+ ('x' - 'a'));
446 outchar (info
->spec
== 'A' ? 'X' : 'x');
448 if (!info
->left
&& info
->pad
== '0' && width
> 0)
453 if (precision
> 0 || info
->alt
)
455 const wchar_t *wtmp
= &decimalwc
;
456 PRINT (decimal
, wtmp
, wide
? 1 : strlen (decimal
));
461 ssize_t tofill
= precision
- (numend
- numstr
);
462 PRINT (numstr
, wnumstr
, MIN (numend
- numstr
, precision
));
467 if ('P' - 'A' == 'p' - 'a')
468 outchar (info
->spec
+ ('p' - 'a'));
470 outchar (info
->spec
== 'A' ? 'P' : 'p');
472 outchar (expnegative
? '-' : '+');
474 PRINT (expstr
, wexpstr
, (expbuf
+ sizeof expbuf
) - expstr
);
476 if (info
->left
&& info
->pad
!= '0' && width
> 0)
477 PADN (info
->pad
, width
);