1/* $NetBSD: strtopf.c,v 1.4 2019/08/01 02:27:43 riastradh 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 int
37#ifdef KR_headers
38strtopf(s, sp, f) CONST char *s; char **sp; float *f;
39#else
40strtopf(CONST char *s, char **sp, float *f)
41#endif
42{
43	static CONST FPI fpi0 = { 24, 1-127-24+1,  254-127-24+1, 1, SI };
44	ULong bits[1], *L;
45	Long expt;
46	int k;
47#ifdef Honor_FLT_ROUNDS
48#include "gdtoa_fltrnds.h"
49#else
50#define fpi &fpi0
51#endif
52
53	k = strtodg(s, sp, fpi, &expt, bits);
54	if (k == STRTOG_NoMemory)
55		return k;
56	L = (ULong*)f;
57	switch(k & STRTOG_Retmask) {
58	  case STRTOG_NoNumber:
59	  case STRTOG_Zero:
60		L[0] = 0;
61		break;
62
63	  case STRTOG_Normal:
64	  case STRTOG_NaNbits:
65		L[0] = (bits[0] & 0x7fffff) | ((expt + 0x7f + 23) << 23);
66		break;
67
68	  case STRTOG_Denormal:
69		L[0] = bits[0];
70		break;
71
72	  case STRTOG_Infinite:
73		L[0] = 0x7f800000;
74		break;
75
76	  case STRTOG_NaN:
77		L[0] = f_QNAN;
78	  }
79	if (k & STRTOG_Neg)
80		L[0] |= 0x80000000L;
81	return k;
82	}
83