xref: /minix/lib/libc/gdtoa/strtof_vaxf.c (revision 84d9c625)
1 /* $NetBSD: strtof_vaxf.c,v 1.8 2013/05/17 12:55:57 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 /* Adapted to VAX F_floating by Klaus Klein <kleink@netbsd.org>. */
35 
36 #include "namespace.h"
37 #include "gdtoaimp.h"
38 #include <locale.h>
39 #include "setlocale_local.h"
40 
41 #ifdef __weak_alias
__weak_alias(strtof,_strtof)42 __weak_alias(strtof, _strtof)
43 __weak_alias(strtof_l, _strtof_l)
44 #endif
45 
46 static float
47 _int_strtof_l(CONST char *s, char **sp, locale_t loc)
48 {
49 	static CONST FPI fpi = { 24, 1-128-1-24+1,  255-128-1-24+1, 1, SI };
50 	ULong bits[1];
51 	Long expt;
52 	int k;
53 	union { ULong L[1]; float f; } u;
54 
55 	k = strtodg(s, sp, &fpi, &expt, bits, loc);
56 	if (k == STRTOG_NoMemory) {
57 		errno = ERANGE;
58 		return HUGE_VALF;
59 	}
60 	switch(k & STRTOG_Retmask) {
61 	  case STRTOG_NoNumber:
62 	  case STRTOG_Zero:
63 	  default:
64 		u.f = 0.0;
65 		break;
66 
67 	  case STRTOG_Normal:
68 		u.L[0] = ((bits[0] & 0x0000ffff) << 16)	| /* FracLo */
69 			 ((bits[0] & 0x007f0000) >> 16)	| /* FracHi */
70 			 ((expt + 128 + 1 + 23)  <<  7);  /* Exp */
71 		break;
72 
73 	  case STRTOG_Infinite:
74 		u.f = HUGE_VALF;
75 		break;
76 
77 	  }
78 	if (k & STRTOG_Neg)
79 		u.L[0] |= 0x00008000L;
80 	return u.f;
81 }
82 
83 float
strtof(CONST char * s,char ** sp)84 strtof(CONST char *s, char **sp)
85 {
86 	return _int_strtof_l(s, sp, _current_locale());
87 }
88 
89 float
strtof_l(CONST char * s,char ** sp,locale_t loc)90 strtof_l(CONST char *s, char **sp, locale_t loc)
91 {
92 	return _int_strtof_l(s, sp, loc);
93 }
94