| 1 | /**************************************************************** |
| 2 | |
| 3 | The author of this software is David M. Gay. |
| 4 | |
| 5 | Copyright (C) 1998 by Lucent Technologies |
| 6 | All Rights Reserved |
| 7 | |
| 8 | Permission to use, copy, modify, and distribute this software and |
| 9 | its documentation for any purpose and without fee is hereby |
| 10 | granted, provided that the above copyright notice appear in all |
| 11 | copies and that both that the copyright notice and this |
| 12 | permission notice and warranty disclaimer appear in supporting |
| 13 | documentation, and that the name of Lucent or any of its entities |
| 14 | not be used in advertising or publicity pertaining to |
| 15 | distribution of the software without specific, written prior |
| 16 | permission. |
| 17 | |
| 18 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, |
| 19 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. |
| 20 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY |
| 21 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 22 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER |
| 23 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, |
| 24 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF |
| 25 | THIS SOFTWARE. |
| 26 | |
| 27 | ****************************************************************/ |
| 28 | |
| 29 | /* Please send bug reports to David M. Gay (dmg at acm dot org, |
| 30 | * with " at " changed at "@" and " dot " changed to ".").	*/ |
| 31 | |
| 32 | #include "gdtoaimp.h" |
| 33 | |
| 34 | char *__g_dfmt (char *buf, double *d, int ndig, size_t bufsize) |
| 35 | { |
| 36 | 	static FPI fpi0 = { 53, 1-1023-53+1, 2046-1023-53+1, 1, 0, Int_max }; |
| 37 | 	char *b, *s, *se; |
| 38 | 	ULong bits[2], *L, sign; |
| 39 | 	int decpt, ex, i, mode; |
| 40 | #ifdef Honor_FLT_ROUNDS |
| 41 | #include "gdtoa_fltrnds.h" |
| 42 | #else |
| 43 | #define fpi &fpi0 |
| 44 | #endif |
| 45 | |
| 46 | 	if (ndig < 0) |
| 47 | 		ndig = 0; |
| 48 | 	if (bufsize < (size_t)(ndig + 10)) |
| 49 | 		return 0; |
| 50 | |
| 51 | 	L = (ULong*)d; |
| 52 | 	sign = L[_0] & 0x80000000L; |
| 53 | 	if ((L[_0] & 0x7ff00000) == 0x7ff00000) { |
| 54 | 		/* Infinity or NaN */ |
| 55 | 		if (bufsize < 10) |
| 56 | 			return 0; |
| 57 | 		if (L[_0] & 0xfffff || L[_1]) { |
| 58 | 			return strcp(buf, "NaN"); |
| 59 | 		} |
| 60 | 		b = buf; |
| 61 | 		if (sign) |
| 62 | 			*b++ = '-'; |
| 63 | 		return strcp(b, "Infinity"); |
| 64 | 	} |
| 65 | 	if (L[_1] == 0 && (L[_0] ^ sign) == 0 /*d == 0.*/) { |
| 66 | 		b = buf; |
| 67 | #ifndef IGNORE_ZERO_SIGN |
| 68 | 		if (L[_0] & 0x80000000L) |
| 69 | 			*b++ = '-'; |
| 70 | #endif |
| 71 | 		*b++ = '0'; |
| 72 | 		*b = 0; |
| 73 | 		return b; |
| 74 | 	} |
| 75 | 	bits[0] = L[_1]; |
| 76 | 	bits[1] = L[_0] & 0xfffff; |
| 77 | 	if ( (ex = (L[_0] >> 20) & 0x7ff) !=0) |
| 78 | 		bits[1] |= 0x100000; |
| 79 | 	else |
| 80 | 		ex = 1; |
| 81 | 	ex -= 0x3ff + 52; |
| 82 | 	mode = 2; |
| 83 | 	if (ndig <= 0) |
| 84 | 		mode = 0; |
| 85 | 	i = STRTOG_Normal; |
| 86 | 	if (sign) |
| 87 | 		i = STRTOG_Normal | STRTOG_Neg; |
| 88 | 	s = __gdtoa(fpi, ex, bits, &i, mode, ndig, &decpt, &se); |
| 89 | 	return __g__fmt(buf, s, se, decpt, sign, bufsize); |
| 90 | } |