1 /* $NetBSD: strtord.c,v 1.5 2013/04/18 21:54:11 joerg Exp $ */ 2 3 /**************************************************************** 4 5 The author of this software is David M. Gay. 6 7 Copyright (C) 1998, 2000 by Lucent Technologies 8 All Rights Reserved 9 10 Permission to use, copy, modify, and distribute this software and 11 its documentation for any purpose and without fee is hereby 12 granted, provided that the above copyright notice appear in all 13 copies and that both that the copyright notice and this 14 permission notice and warranty disclaimer appear in supporting 15 documentation, and that the name of Lucent or any of its entities 16 not be used in advertising or publicity pertaining to 17 distribution of the software without specific, written prior 18 permission. 19 20 LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, 21 INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. 22 IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY 23 SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 24 WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER 25 IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, 26 ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF 27 THIS SOFTWARE. 28 29 ****************************************************************/ 30 31 /* Please send bug reports to David M. Gay (dmg at acm dot org, 32 * with " at " changed at "@" and " dot " changed to "."). */ 33 34 #include "gdtoaimp.h" 35 36 void 37 #ifdef KR_headers 38 ULtod(L, bits, expt, k) ULong *L; ULong *bits; Long expt; int k; 39 #else 40 ULtod(ULong *L, ULong *bits, Long expt, int k) 41 #endif 42 { 43 switch(k & STRTOG_Retmask) { 44 case STRTOG_NoNumber: 45 case STRTOG_Zero: 46 L[0] = L[1] = 0; 47 break; 48 49 case STRTOG_Denormal: 50 L[_1] = bits[0]; 51 L[_0] = bits[1]; 52 break; 53 54 case STRTOG_Normal: 55 case STRTOG_NaNbits: 56 L[_1] = bits[0]; 57 L[_0] = (bits[1] & ~0x100000) | ((expt + 0x3ff + 52) << 20); 58 break; 59 60 case STRTOG_Infinite: 61 L[_0] = 0x7ff00000; 62 L[_1] = 0; 63 break; 64 65 #ifdef d_QNAN0 66 case STRTOG_NaN: 67 L[0] = d_QNAN0; 68 L[1] = d_QNAN1; 69 #endif 70 } 71 if (k & STRTOG_Neg) 72 L[_0] |= 0x80000000L; 73 } 74 75 int 76 strtord(CONST char *s, char **sp, int rounding, double *d, locale_t loc) 77 { 78 static CONST FPI fpi0 = { 53, 1-1023-53+1, 2046-1023-53+1, 1, SI }; 79 CONST FPI *fpi; 80 FPI fpi1; 81 ULong bits[2]; 82 Long expt; 83 int k; 84 85 fpi = &fpi0; 86 if (rounding != FPI_Round_near) { 87 fpi1 = fpi0; 88 fpi1.rounding = rounding; 89 fpi = &fpi1; 90 } 91 k = strtodg(s, sp, fpi, &expt, bits, loc); 92 if (k == STRTOG_NoMemory) 93 return k; 94 ULtod((/* LINTED */(U*)d)->L, bits, expt, k); 95 return k; 96 } 97