]>
Commit | Line | Data |
---|---|---|
224c7076 A |
1 | /**************************************************************** |
2 | ||
3 | The author of this software is David M. Gay. | |
4 | ||
5 | Copyright (C) 1998, 2000 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 "xlocale_private.h" | |
33 | ||
34 | #include "gdtoaimp.h" | |
35 | ||
36 | float | |
37 | #ifdef KR_headers | |
38 | strtof_l(s, sp, loc) CONST char *s; char **sp; locale_t loc; | |
39 | #else | |
40 | strtof_l(CONST char *s, char **sp, locale_t loc) | |
41 | #endif | |
42 | { | |
43 | static FPI fpi0 = { 24, 1-127-24+1, 254-127-24+1, 1, SI }; | |
44 | ULong bits[1]; | |
45 | Long exp; | |
46 | int k; | |
47 | union { ULong L[1]; float f; } u; | |
48 | FPI *fpi = &fpi0, fpi1; | |
49 | #ifdef Honor_FLT_ROUNDS | |
50 | int rounding = Flt_Rounds; | |
51 | #endif | |
52 | ||
53 | NORMALIZE_LOCALE(loc); | |
54 | #ifdef Honor_FLT_ROUNDS | |
55 | if (rounding != fpi0.rounding) { | |
56 | fpi1 = fpi0; /* for thread safety */ | |
57 | fpi1.rounding = rounding; | |
58 | fpi = &fpi1; | |
59 | } | |
60 | #endif /* Honor_FLT_ROUNDS */ | |
61 | k = strtodg(s, sp, fpi, &exp, bits, loc); | |
62 | switch(k & STRTOG_Retmask) { | |
63 | case STRTOG_NoNumber: | |
64 | u.L[0] = 0; | |
65 | return u.f; // avoid setting sign | |
66 | ||
67 | case STRTOG_Zero: | |
68 | u.L[0] = 0; | |
69 | break; | |
70 | ||
71 | case STRTOG_Normal: | |
72 | case STRTOG_NaNbits: | |
73 | u.L[0] = bits[0] & 0x7fffff | exp + 0x7f + 23 << 23; | |
74 | break; | |
75 | ||
76 | case STRTOG_Denormal: | |
77 | u.L[0] = bits[0]; | |
78 | break; | |
79 | ||
80 | case STRTOG_Infinite: | |
81 | u.L[0] = 0x7f800000; | |
82 | break; | |
83 | ||
84 | case STRTOG_NaN: | |
85 | u.L[0] = f_QNAN; | |
86 | } | |
87 | if (k & STRTOG_Neg) | |
88 | u.L[0] |= 0x80000000L; | |
89 | return u.f; | |
90 | } | |
91 | ||
92 | float | |
93 | #ifdef KR_headers | |
94 | strtof(s, sp) CONST char *s; char **sp; | |
95 | #else | |
96 | strtof(CONST char *s, char **sp) | |
97 | #endif | |
98 | { | |
99 | return strtof_l(s, sp, __current_locale()); | |
100 | } |