1/* $NetBSD: strtorf.c,v 1.2 2008/03/21 23:13:48 christos Exp $ */
2
3/****************************************************************
4
5The author of this software is David M. Gay.
6
7Copyright (C) 1998, 2000 by Lucent Technologies
8All Rights Reserved
9
10Permission to use, copy, modify, and distribute this software and
11its documentation for any purpose and without fee is hereby
12granted, provided that the above copyright notice appear in all
13copies and that both that the copyright notice and this
14permission notice and warranty disclaimer appear in supporting
15documentation, and that the name of Lucent or any of its entities
16not be used in advertising or publicity pertaining to
17distribution of the software without specific, written prior
18permission.
19
20LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
21INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.
22IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY
23SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
24WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
25IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
26ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
27THIS 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
38ULtof(L, bits, expt, k) ULong *L; ULong *bits; Long expt; int k;
39#else
40ULtof(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;
47		break;
48
49	  case STRTOG_Normal:
50	  case STRTOG_NaNbits:
51		L[0] = (bits[0] & 0x7fffff) | ((expt + 0x7f + 23) << 23);
52		break;
53
54	  case STRTOG_Denormal:
55		L[0] = bits[0];
56		break;
57
58	  case STRTOG_Infinite:
59		L[0] = 0x7f800000;
60		break;
61
62	  case STRTOG_NaN:
63		L[0] = f_QNAN;
64	  }
65	if (k & STRTOG_Neg)
66		L[0] |= 0x80000000L;
67	}
68
69 int
70#ifdef KR_headers
71strtorf(s, sp, rounding, f) CONST char *s; char **sp; int rounding; float *f;
72#else
73strtorf(CONST char *s, char **sp, int rounding, float *f)
74#endif
75{
76	static CONST FPI fpi0 = { 24, 1-127-24+1,  254-127-24+1, 1, SI };
77	CONST FPI *fpi;
78	FPI fpi1;
79	ULong bits[1];
80	Long expt;
81	int k;
82
83	fpi = &fpi0;
84	if (rounding != FPI_Round_near) {
85		fpi1 = fpi0;
86		fpi1.rounding = rounding;
87		fpi = &fpi1;
88		}
89	k = strtodg(s, sp, fpi, &expt, bits);
90	if (k == STRTOG_NoMemory)
91		return k;
92	ULtof((ULong*)f, bits, expt, k);
93	return k;
94	}
95