gdtoaimp.h revision 1.9 1 1.9 christos /* $NetBSD: gdtoaimp.h,v 1.9 2011/03/20 23:15:35 christos Exp $ */
2 1.1 kleink
3 1.1 kleink /****************************************************************
4 1.1 kleink
5 1.1 kleink The author of this software is David M. Gay.
6 1.1 kleink
7 1.1 kleink Copyright (C) 1998-2000 by Lucent Technologies
8 1.1 kleink All Rights Reserved
9 1.1 kleink
10 1.1 kleink Permission to use, copy, modify, and distribute this software and
11 1.1 kleink its documentation for any purpose and without fee is hereby
12 1.1 kleink granted, provided that the above copyright notice appear in all
13 1.1 kleink copies and that both that the copyright notice and this
14 1.1 kleink permission notice and warranty disclaimer appear in supporting
15 1.1 kleink documentation, and that the name of Lucent or any of its entities
16 1.1 kleink not be used in advertising or publicity pertaining to
17 1.1 kleink distribution of the software without specific, written prior
18 1.1 kleink permission.
19 1.1 kleink
20 1.1 kleink LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
21 1.1 kleink INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.
22 1.1 kleink IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY
23 1.1 kleink SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
24 1.1 kleink WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
25 1.1 kleink IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
26 1.1 kleink ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
27 1.1 kleink THIS SOFTWARE.
28 1.1 kleink
29 1.1 kleink ****************************************************************/
30 1.1 kleink
31 1.1 kleink /* This is a variation on dtoa.c that converts arbitary binary
32 1.1 kleink floating-point formats to and from decimal notation. It uses
33 1.1 kleink double-precision arithmetic internally, so there are still
34 1.1 kleink various #ifdefs that adapt the calculations to the native
35 1.1 kleink double-precision arithmetic (any of IEEE, VAX D_floating,
36 1.1 kleink or IBM mainframe arithmetic).
37 1.1 kleink
38 1.1 kleink Please send bug reports to David M. Gay (dmg at acm dot org,
39 1.1 kleink with " at " changed at "@" and " dot " changed to ".").
40 1.1 kleink */
41 1.1 kleink
42 1.1 kleink /* On a machine with IEEE extended-precision registers, it is
43 1.1 kleink * necessary to specify double-precision (53-bit) rounding precision
44 1.1 kleink * before invoking strtod or dtoa. If the machine uses (the equivalent
45 1.1 kleink * of) Intel 80x87 arithmetic, the call
46 1.1 kleink * _control87(PC_53, MCW_PC);
47 1.1 kleink * does this with many compilers. Whether this or another call is
48 1.1 kleink * appropriate depends on the compiler; for this to work, it may be
49 1.1 kleink * necessary to #include "float.h" or another system-dependent header
50 1.1 kleink * file.
51 1.1 kleink */
52 1.1 kleink
53 1.1 kleink /* strtod for IEEE-, VAX-, and IBM-arithmetic machines.
54 1.1 kleink *
55 1.1 kleink * This strtod returns a nearest machine number to the input decimal
56 1.1 kleink * string (or sets errno to ERANGE). With IEEE arithmetic, ties are
57 1.1 kleink * broken by the IEEE round-even rule. Otherwise ties are broken by
58 1.1 kleink * biased rounding (add half and chop).
59 1.1 kleink *
60 1.1 kleink * Inspired loosely by William D. Clinger's paper "How to Read Floating
61 1.1 kleink * Point Numbers Accurately" [Proc. ACM SIGPLAN '90, pp. 112-126].
62 1.1 kleink *
63 1.1 kleink * Modifications:
64 1.1 kleink *
65 1.1 kleink * 1. We only require IEEE, IBM, or VAX double-precision
66 1.1 kleink * arithmetic (not IEEE double-extended).
67 1.1 kleink * 2. We get by with floating-point arithmetic in a case that
68 1.1 kleink * Clinger missed -- when we're computing d * 10^n
69 1.1 kleink * for a small integer d and the integer n is not too
70 1.1 kleink * much larger than 22 (the maximum integer k for which
71 1.1 kleink * we can represent 10^k exactly), we may be able to
72 1.1 kleink * compute (d*10^k) * 10^(e-k) with just one roundoff.
73 1.1 kleink * 3. Rather than a bit-at-a-time adjustment of the binary
74 1.1 kleink * result in the hard case, we use floating-point
75 1.1 kleink * arithmetic to determine the adjustment to within
76 1.1 kleink * one bit; only in really hard cases do we need to
77 1.1 kleink * compute a second residual.
78 1.1 kleink * 4. Because of 3., we don't need a large table of powers of 10
79 1.1 kleink * for ten-to-e (just some small tables, e.g. of 10^k
80 1.1 kleink * for 0 <= k <= 22).
81 1.1 kleink */
82 1.1 kleink
83 1.1 kleink /*
84 1.2 kleink * #define IEEE_LITTLE_ENDIAN for IEEE-arithmetic machines where the least
85 1.1 kleink * significant byte has the lowest address.
86 1.2 kleink * #define IEEE_BIG_ENDIAN for IEEE-arithmetic machines where the most
87 1.1 kleink * significant byte has the lowest address.
88 1.1 kleink * #define Long int on machines with 32-bit ints and 64-bit longs.
89 1.1 kleink * #define Sudden_Underflow for IEEE-format machines without gradual
90 1.1 kleink * underflow (i.e., that flush to zero on underflow).
91 1.1 kleink * #define IBM for IBM mainframe-style floating-point arithmetic.
92 1.1 kleink * #define VAX for VAX-style floating-point arithmetic (D_floating).
93 1.1 kleink * #define No_leftright to omit left-right logic in fast floating-point
94 1.1 kleink * computation of dtoa.
95 1.1 kleink * #define Check_FLT_ROUNDS if FLT_ROUNDS can assume the values 2 or 3.
96 1.1 kleink * #define RND_PRODQUOT to use rnd_prod and rnd_quot (assembly routines
97 1.1 kleink * that use extended-precision instructions to compute rounded
98 1.1 kleink * products and quotients) with IBM.
99 1.9 christos * #define ROUND_BIASED for IEEE-format with biased rounding and arithmetic
100 1.9 christos * that rounds toward +Infinity.
101 1.9 christos * #define ROUND_BIASED_without_Round_Up for IEEE-format with biased
102 1.9 christos * rounding when the underlying floating-point arithmetic uses
103 1.9 christos * unbiased rounding. This prevent using ordinary floating-point
104 1.9 christos * arithmetic when the result could be computed with one rounding error.
105 1.1 kleink * #define Inaccurate_Divide for IEEE-format with correctly rounded
106 1.1 kleink * products but inaccurate quotients, e.g., for Intel i860.
107 1.1 kleink * #define NO_LONG_LONG on machines that do not have a "long long"
108 1.1 kleink * integer type (of >= 64 bits). On such machines, you can
109 1.1 kleink * #define Just_16 to store 16 bits per 32-bit Long when doing
110 1.1 kleink * high-precision integer arithmetic. Whether this speeds things
111 1.1 kleink * up or slows things down depends on the machine and the number
112 1.1 kleink * being converted. If long long is available and the name is
113 1.1 kleink * something other than "long long", #define Llong to be the name,
114 1.1 kleink * and if "unsigned Llong" does not work as an unsigned version of
115 1.1 kleink * Llong, #define #ULLong to be the corresponding unsigned type.
116 1.1 kleink * #define KR_headers for old-style C function headers.
117 1.1 kleink * #define Bad_float_h if your system lacks a float.h or if it does not
118 1.1 kleink * define some or all of DBL_DIG, DBL_MAX_10_EXP, DBL_MAX_EXP,
119 1.1 kleink * FLT_RADIX, FLT_ROUNDS, and DBL_MAX.
120 1.1 kleink * #define MALLOC your_malloc, where your_malloc(n) acts like malloc(n)
121 1.1 kleink * if memory is available and otherwise does something you deem
122 1.1 kleink * appropriate. If MALLOC is undefined, malloc will be invoked
123 1.9 christos * directly -- and assumed always to succeed. Similarly, if you
124 1.9 christos * want something other than the system's free() to be called to
125 1.9 christos * recycle memory acquired from MALLOC, #define FREE to be the
126 1.9 christos * name of the alternate routine. (FREE or free is only called in
127 1.9 christos * pathological cases, e.g., in a gdtoa call after a gdtoa return in
128 1.9 christos * mode 3 with thousands of digits requested.)
129 1.1 kleink * #define Omit_Private_Memory to omit logic (added Jan. 1998) for making
130 1.1 kleink * memory allocations from a private pool of memory when possible.
131 1.1 kleink * When used, the private pool is PRIVATE_MEM bytes long: 2304 bytes,
132 1.1 kleink * unless #defined to be a different length. This default length
133 1.1 kleink * suffices to get rid of MALLOC calls except for unusual cases,
134 1.1 kleink * such as decimal-to-binary conversion of a very long string of
135 1.1 kleink * digits. When converting IEEE double precision values, the
136 1.1 kleink * longest string gdtoa can return is about 751 bytes long. For
137 1.1 kleink * conversions by strtod of strings of 800 digits and all gdtoa
138 1.1 kleink * conversions of IEEE doubles in single-threaded executions with
139 1.1 kleink * 8-byte pointers, PRIVATE_MEM >= 7400 appears to suffice; with
140 1.1 kleink * 4-byte pointers, PRIVATE_MEM >= 7112 appears adequate.
141 1.9 christos * #define NO_INFNAN_CHECK if you do not wish to have INFNAN_CHECK
142 1.9 christos * #defined automatically on IEEE systems. On such systems,
143 1.9 christos * when INFNAN_CHECK is #defined, strtod checks
144 1.9 christos * for Infinity and NaN (case insensitively).
145 1.1 kleink * When INFNAN_CHECK is #defined and No_Hex_NaN is not #defined,
146 1.1 kleink * strtodg also accepts (case insensitively) strings of the form
147 1.9 christos * NaN(x), where x is a string of hexadecimal digits (optionally
148 1.9 christos * preceded by 0x or 0X) and spaces; if there is only one string
149 1.9 christos * of hexadecimal digits, it is taken for the fraction bits of the
150 1.9 christos * resulting NaN; if there are two or more strings of hexadecimal
151 1.9 christos * digits, each string is assigned to the next available sequence
152 1.9 christos * of 32-bit words of fractions bits (starting with the most
153 1.9 christos * significant), right-aligned in each sequence.
154 1.9 christos * Unless GDTOA_NON_PEDANTIC_NANCHECK is #defined, input "NaN(...)"
155 1.9 christos * is consumed even when ... has the wrong form (in which case the
156 1.9 christos * "(...)" is consumed but ignored).
157 1.1 kleink * #define MULTIPLE_THREADS if the system offers preemptively scheduled
158 1.1 kleink * multiple threads. In this case, you must provide (or suitably
159 1.1 kleink * #define) two locks, acquired by ACQUIRE_DTOA_LOCK(n) and freed
160 1.1 kleink * by FREE_DTOA_LOCK(n) for n = 0 or 1. (The second lock, accessed
161 1.1 kleink * in pow5mult, ensures lazy evaluation of only one copy of high
162 1.1 kleink * powers of 5; omitting this lock would introduce a small
163 1.1 kleink * probability of wasting memory, but would otherwise be harmless.)
164 1.1 kleink * You must also invoke freedtoa(s) to free the value s returned by
165 1.1 kleink * dtoa. You may do so whether or not MULTIPLE_THREADS is #defined.
166 1.1 kleink * #define IMPRECISE_INEXACT if you do not care about the setting of
167 1.1 kleink * the STRTOG_Inexact bits in the special case of doing IEEE double
168 1.9 christos * precision conversions (which could also be done by the strtod in
169 1.1 kleink * dtoa.c).
170 1.1 kleink * #define NO_HEX_FP to disable recognition of C9x's hexadecimal
171 1.1 kleink * floating-point constants.
172 1.1 kleink * #define -DNO_ERRNO to suppress setting errno (in strtod.c and
173 1.1 kleink * strtodg.c).
174 1.1 kleink * #define NO_STRING_H to use private versions of memcpy.
175 1.1 kleink * On some K&R systems, it may also be necessary to
176 1.1 kleink * #define DECLARE_SIZE_T in this case.
177 1.1 kleink * #define USE_LOCALE to use the current locale's decimal_point value.
178 1.1 kleink */
179 1.1 kleink
180 1.2 kleink /* #define IEEE_{BIG,LITTLE}_ENDIAN in ${ARCHDIR}/gdtoa/arith.h */
181 1.2 kleink
182 1.2 kleink #include <stdint.h>
183 1.5 christos #define Short int16_t
184 1.5 christos #define UShort uint16_t
185 1.2 kleink #define Long int32_t
186 1.2 kleink #define ULong uint32_t
187 1.2 kleink #define LLong int64_t
188 1.2 kleink #define ULLong uint64_t
189 1.2 kleink
190 1.2 kleink #define INFNAN_CHECK
191 1.4 christos #ifdef _REENTRANT
192 1.2 kleink #define MULTIPLE_THREADS
193 1.4 christos #endif
194 1.2 kleink #define USE_LOCALE
195 1.2 kleink
196 1.1 kleink #ifndef GDTOAIMP_H_INCLUDED
197 1.1 kleink #define GDTOAIMP_H_INCLUDED
198 1.1 kleink #include "gdtoa.h"
199 1.1 kleink #include "gd_qnan.h"
200 1.9 christos #ifdef Honor_FLT_ROUNDS
201 1.9 christos #include <fenv.h>
202 1.9 christos #endif
203 1.1 kleink
204 1.1 kleink #ifdef DEBUG
205 1.1 kleink #include "stdio.h"
206 1.1 kleink #define Bug(x) {fprintf(stderr, "%s\n", x); exit(1);}
207 1.1 kleink #endif
208 1.1 kleink
209 1.1 kleink #include "stdlib.h"
210 1.1 kleink #include "string.h"
211 1.1 kleink
212 1.1 kleink #ifdef KR_headers
213 1.1 kleink #define Char char
214 1.1 kleink #else
215 1.1 kleink #define Char void
216 1.1 kleink #endif
217 1.1 kleink
218 1.1 kleink #ifdef MALLOC
219 1.1 kleink extern Char *MALLOC ANSI((size_t));
220 1.1 kleink #else
221 1.1 kleink #define MALLOC malloc
222 1.1 kleink #endif
223 1.1 kleink
224 1.1 kleink #undef IEEE_Arith
225 1.1 kleink #undef Avoid_Underflow
226 1.2 kleink #ifdef IEEE_BIG_ENDIAN
227 1.1 kleink #define IEEE_Arith
228 1.1 kleink #endif
229 1.2 kleink #ifdef IEEE_LITTLE_ENDIAN
230 1.1 kleink #define IEEE_Arith
231 1.1 kleink #endif
232 1.1 kleink
233 1.1 kleink #include "errno.h"
234 1.1 kleink #ifdef Bad_float_h
235 1.1 kleink
236 1.1 kleink #ifdef IEEE_Arith
237 1.1 kleink #define DBL_DIG 15
238 1.1 kleink #define DBL_MAX_10_EXP 308
239 1.1 kleink #define DBL_MAX_EXP 1024
240 1.1 kleink #define FLT_RADIX 2
241 1.1 kleink #define DBL_MAX 1.7976931348623157e+308
242 1.1 kleink #endif
243 1.1 kleink
244 1.1 kleink #ifdef IBM
245 1.1 kleink #define DBL_DIG 16
246 1.1 kleink #define DBL_MAX_10_EXP 75
247 1.1 kleink #define DBL_MAX_EXP 63
248 1.1 kleink #define FLT_RADIX 16
249 1.1 kleink #define DBL_MAX 7.2370055773322621e+75
250 1.1 kleink #endif
251 1.1 kleink
252 1.1 kleink #ifdef VAX
253 1.1 kleink #define DBL_DIG 16
254 1.1 kleink #define DBL_MAX_10_EXP 38
255 1.1 kleink #define DBL_MAX_EXP 127
256 1.1 kleink #define FLT_RADIX 2
257 1.1 kleink #define DBL_MAX 1.7014118346046923e+38
258 1.1 kleink #define n_bigtens 2
259 1.1 kleink #endif
260 1.1 kleink
261 1.1 kleink #ifndef LONG_MAX
262 1.1 kleink #define LONG_MAX 2147483647
263 1.1 kleink #endif
264 1.1 kleink
265 1.1 kleink #else /* ifndef Bad_float_h */
266 1.1 kleink #include "float.h"
267 1.1 kleink #endif /* Bad_float_h */
268 1.1 kleink
269 1.1 kleink #ifdef IEEE_Arith
270 1.1 kleink #define Scale_Bit 0x10
271 1.1 kleink #define n_bigtens 5
272 1.1 kleink #endif
273 1.1 kleink
274 1.1 kleink #ifdef IBM
275 1.1 kleink #define n_bigtens 3
276 1.1 kleink #endif
277 1.1 kleink
278 1.1 kleink #ifdef VAX
279 1.1 kleink #define n_bigtens 2
280 1.1 kleink #endif
281 1.1 kleink
282 1.1 kleink #include "math.h"
283 1.1 kleink
284 1.1 kleink #ifdef __cplusplus
285 1.1 kleink extern "C" {
286 1.1 kleink #endif
287 1.1 kleink
288 1.2 kleink #if defined(IEEE_LITTLE_ENDIAN) + defined(IEEE_BIG_ENDIAN) + defined(VAX) + defined(IBM) != 1
289 1.2 kleink Exactly one of IEEE_LITTLE_ENDIAN, IEEE_BIG_ENDIAN, VAX, or IBM should be defined.
290 1.1 kleink #endif
291 1.1 kleink
292 1.8 christos typedef union { double d; ULong L[2]; } __attribute__((__may_alias__)) U;
293 1.1 kleink
294 1.1 kleink #ifdef YES_ALIAS
295 1.1 kleink #define dval(x) x
296 1.2 kleink #ifdef IEEE_LITTLE_ENDIAN
297 1.9 christos #define word0(x) ((ULong *)x)[1]
298 1.9 christos #define word1(x) ((ULong *)x)[0]
299 1.1 kleink #else
300 1.9 christos #define word0(x) ((ULong *)x)[0]
301 1.9 christos #define word1(x) ((ULong *)x)[1]
302 1.1 kleink #endif
303 1.1 kleink #else /* !YES_ALIAS */
304 1.2 kleink #ifdef IEEE_LITTLE_ENDIAN
305 1.9 christos #define word0(x) ( /* LINTED */ (U*)x)->L[1]
306 1.9 christos #define word1(x) ( /* LINTED */ (U*)x)->L[0]
307 1.1 kleink #else
308 1.9 christos #define word0(x) ( /* LINTED */ (U*)x)->L[0]
309 1.9 christos #define word1(x) ( /* LINTED */ (U*)x)->L[1]
310 1.1 kleink #endif
311 1.9 christos #define dval(x) ( /* LINTED */ (U*)x)->d
312 1.1 kleink #endif /* YES_ALIAS */
313 1.1 kleink
314 1.1 kleink /* The following definition of Storeinc is appropriate for MIPS processors.
315 1.1 kleink * An alternative that might be better on some machines is
316 1.1 kleink * #define Storeinc(a,b,c) (*a++ = b << 16 | c & 0xffff)
317 1.1 kleink */
318 1.2 kleink #if defined(IEEE_LITTLE_ENDIAN) + defined(VAX)
319 1.2 kleink #define Storeinc(a,b,c) \
320 1.2 kleink (((unsigned short *)(void *)a)[1] = (unsigned short)b, \
321 1.2 kleink ((unsigned short *)(void *)a)[0] = (unsigned short)c, \
322 1.2 kleink a++)
323 1.2 kleink #else
324 1.2 kleink #define Storeinc(a,b,c) \
325 1.2 kleink (((unsigned short *)(void *)a)[0] = (unsigned short)b, \
326 1.2 kleink ((unsigned short *)(void *)a)[1] = (unsigned short)c, \
327 1.2 kleink a++)
328 1.1 kleink #endif
329 1.1 kleink
330 1.1 kleink /* #define P DBL_MANT_DIG */
331 1.1 kleink /* Ten_pmax = floor(P*log(2)/log(5)) */
332 1.1 kleink /* Bletch = (highest power of 2 < DBL_MAX_10_EXP) / 16 */
333 1.1 kleink /* Quick_max = floor((P-1)*log(FLT_RADIX)/log(10) - 1) */
334 1.1 kleink /* Int_max = floor(P*log(FLT_RADIX)/log(10) - 1) */
335 1.1 kleink
336 1.1 kleink #ifdef IEEE_Arith
337 1.1 kleink #define Exp_shift 20
338 1.1 kleink #define Exp_shift1 20
339 1.1 kleink #define Exp_msk1 0x100000
340 1.1 kleink #define Exp_msk11 0x100000
341 1.1 kleink #define Exp_mask 0x7ff00000
342 1.1 kleink #define P 53
343 1.1 kleink #define Bias 1023
344 1.1 kleink #define Emin (-1022)
345 1.1 kleink #define Exp_1 0x3ff00000
346 1.1 kleink #define Exp_11 0x3ff00000
347 1.1 kleink #define Ebits 11
348 1.1 kleink #define Frac_mask 0xfffff
349 1.1 kleink #define Frac_mask1 0xfffff
350 1.1 kleink #define Ten_pmax 22
351 1.1 kleink #define Bletch 0x10
352 1.1 kleink #define Bndry_mask 0xfffff
353 1.1 kleink #define Bndry_mask1 0xfffff
354 1.1 kleink #define LSB 1
355 1.1 kleink #define Sign_bit 0x80000000
356 1.1 kleink #define Log2P 1
357 1.1 kleink #define Tiny0 0
358 1.1 kleink #define Tiny1 1
359 1.1 kleink #define Quick_max 14
360 1.1 kleink #define Int_max 14
361 1.1 kleink
362 1.1 kleink #ifndef Flt_Rounds
363 1.1 kleink #ifdef FLT_ROUNDS
364 1.1 kleink #define Flt_Rounds FLT_ROUNDS
365 1.1 kleink #else
366 1.1 kleink #define Flt_Rounds 1
367 1.1 kleink #endif
368 1.1 kleink #endif /*Flt_Rounds*/
369 1.1 kleink
370 1.1 kleink #else /* ifndef IEEE_Arith */
371 1.1 kleink #undef Sudden_Underflow
372 1.1 kleink #define Sudden_Underflow
373 1.1 kleink #ifdef IBM
374 1.1 kleink #undef Flt_Rounds
375 1.1 kleink #define Flt_Rounds 0
376 1.1 kleink #define Exp_shift 24
377 1.1 kleink #define Exp_shift1 24
378 1.1 kleink #define Exp_msk1 0x1000000
379 1.1 kleink #define Exp_msk11 0x1000000
380 1.1 kleink #define Exp_mask 0x7f000000
381 1.1 kleink #define P 14
382 1.1 kleink #define Bias 65
383 1.1 kleink #define Exp_1 0x41000000
384 1.1 kleink #define Exp_11 0x41000000
385 1.1 kleink #define Ebits 8 /* exponent has 7 bits, but 8 is the right value in b2d */
386 1.1 kleink #define Frac_mask 0xffffff
387 1.1 kleink #define Frac_mask1 0xffffff
388 1.1 kleink #define Bletch 4
389 1.1 kleink #define Ten_pmax 22
390 1.1 kleink #define Bndry_mask 0xefffff
391 1.1 kleink #define Bndry_mask1 0xffffff
392 1.1 kleink #define LSB 1
393 1.1 kleink #define Sign_bit 0x80000000
394 1.1 kleink #define Log2P 4
395 1.1 kleink #define Tiny0 0x100000
396 1.1 kleink #define Tiny1 0
397 1.1 kleink #define Quick_max 14
398 1.1 kleink #define Int_max 15
399 1.1 kleink #else /* VAX */
400 1.1 kleink #undef Flt_Rounds
401 1.1 kleink #define Flt_Rounds 1
402 1.1 kleink #define Exp_shift 23
403 1.1 kleink #define Exp_shift1 7
404 1.1 kleink #define Exp_msk1 0x80
405 1.1 kleink #define Exp_msk11 0x800000
406 1.1 kleink #define Exp_mask 0x7f80
407 1.1 kleink #define P 56
408 1.1 kleink #define Bias 129
409 1.1 kleink #define Exp_1 0x40800000
410 1.1 kleink #define Exp_11 0x4080
411 1.1 kleink #define Ebits 8
412 1.1 kleink #define Frac_mask 0x7fffff
413 1.1 kleink #define Frac_mask1 0xffff007f
414 1.1 kleink #define Ten_pmax 24
415 1.1 kleink #define Bletch 2
416 1.1 kleink #define Bndry_mask 0xffff007f
417 1.1 kleink #define Bndry_mask1 0xffff007f
418 1.1 kleink #define LSB 0x10000
419 1.1 kleink #define Sign_bit 0x8000
420 1.1 kleink #define Log2P 1
421 1.1 kleink #define Tiny0 0x80
422 1.1 kleink #define Tiny1 0
423 1.1 kleink #define Quick_max 15
424 1.1 kleink #define Int_max 15
425 1.1 kleink #endif /* IBM, VAX */
426 1.1 kleink #endif /* IEEE_Arith */
427 1.1 kleink
428 1.1 kleink #ifndef IEEE_Arith
429 1.1 kleink #define ROUND_BIASED
430 1.9 christos #else
431 1.9 christos #ifdef ROUND_BIASED_without_Round_Up
432 1.9 christos #undef ROUND_BIASED
433 1.9 christos #define ROUND_BIASED
434 1.9 christos #endif
435 1.1 kleink #endif
436 1.1 kleink
437 1.1 kleink #ifdef RND_PRODQUOT
438 1.1 kleink #define rounded_product(a,b) a = rnd_prod(a, b)
439 1.1 kleink #define rounded_quotient(a,b) a = rnd_quot(a, b)
440 1.1 kleink #ifdef KR_headers
441 1.1 kleink extern double rnd_prod(), rnd_quot();
442 1.1 kleink #else
443 1.1 kleink extern double rnd_prod(double, double), rnd_quot(double, double);
444 1.1 kleink #endif
445 1.1 kleink #else
446 1.1 kleink #define rounded_product(a,b) a *= b
447 1.1 kleink #define rounded_quotient(a,b) a /= b
448 1.1 kleink #endif
449 1.1 kleink
450 1.1 kleink #define Big0 (Frac_mask1 | Exp_msk1*(DBL_MAX_EXP+Bias-1))
451 1.1 kleink #define Big1 0xffffffff
452 1.1 kleink
453 1.1 kleink #undef Pack_16
454 1.1 kleink #ifndef Pack_32
455 1.1 kleink #define Pack_32
456 1.1 kleink #endif
457 1.1 kleink
458 1.1 kleink #ifdef NO_LONG_LONG
459 1.1 kleink #undef ULLong
460 1.1 kleink #ifdef Just_16
461 1.1 kleink #undef Pack_32
462 1.1 kleink #define Pack_16
463 1.1 kleink /* When Pack_32 is not defined, we store 16 bits per 32-bit Long.
464 1.1 kleink * This makes some inner loops simpler and sometimes saves work
465 1.1 kleink * during multiplications, but it often seems to make things slightly
466 1.1 kleink * slower. Hence the default is now to store 32 bits per Long.
467 1.1 kleink */
468 1.1 kleink #endif
469 1.1 kleink #else /* long long available */
470 1.1 kleink #ifndef Llong
471 1.1 kleink #define Llong long long
472 1.1 kleink #endif
473 1.1 kleink #ifndef ULLong
474 1.1 kleink #define ULLong unsigned Llong
475 1.1 kleink #endif
476 1.1 kleink #endif /* NO_LONG_LONG */
477 1.1 kleink
478 1.1 kleink #ifdef Pack_32
479 1.1 kleink #define ULbits 32
480 1.1 kleink #define kshift 5
481 1.1 kleink #define kmask 31
482 1.1 kleink #define ALL_ON 0xffffffff
483 1.1 kleink #else
484 1.1 kleink #define ULbits 16
485 1.1 kleink #define kshift 4
486 1.1 kleink #define kmask 15
487 1.1 kleink #define ALL_ON 0xffff
488 1.1 kleink #endif
489 1.1 kleink
490 1.1 kleink #ifndef MULTIPLE_THREADS
491 1.1 kleink #define ACQUIRE_DTOA_LOCK(n) /*nothing*/
492 1.1 kleink #define FREE_DTOA_LOCK(n) /*nothing*/
493 1.2 kleink #else
494 1.2 kleink #include "reentrant.h"
495 1.2 kleink
496 1.2 kleink extern mutex_t __gdtoa_locks[2];
497 1.2 kleink
498 1.2 kleink #define ACQUIRE_DTOA_LOCK(n) \
499 1.2 kleink do { \
500 1.2 kleink if (__isthreaded) \
501 1.2 kleink mutex_lock(&__gdtoa_locks[n]); \
502 1.2 kleink } while (/* CONSTCOND */ 0)
503 1.2 kleink #define FREE_DTOA_LOCK(n) \
504 1.2 kleink do { \
505 1.2 kleink if (__isthreaded) \
506 1.2 kleink mutex_unlock(&__gdtoa_locks[n]); \
507 1.2 kleink } while (/* CONSTCOND */ 0)
508 1.1 kleink #endif
509 1.1 kleink
510 1.7 christos #define Kmax (sizeof(size_t) << 3)
511 1.1 kleink
512 1.1 kleink struct
513 1.1 kleink Bigint {
514 1.1 kleink struct Bigint *next;
515 1.1 kleink int k, maxwds, sign, wds;
516 1.1 kleink ULong x[1];
517 1.1 kleink };
518 1.1 kleink
519 1.1 kleink typedef struct Bigint Bigint;
520 1.1 kleink
521 1.1 kleink #ifdef NO_STRING_H
522 1.1 kleink #ifdef DECLARE_SIZE_T
523 1.1 kleink typedef unsigned int size_t;
524 1.1 kleink #endif
525 1.1 kleink extern void memcpy_D2A ANSI((void*, const void*, size_t));
526 1.1 kleink #define Bcopy(x,y) memcpy_D2A(&x->sign,&y->sign,y->wds*sizeof(ULong) + 2*sizeof(int))
527 1.1 kleink #else /* !NO_STRING_H */
528 1.1 kleink #define Bcopy(x,y) memcpy(&x->sign,&y->sign,y->wds*sizeof(ULong) + 2*sizeof(int))
529 1.1 kleink #endif /* NO_STRING_H */
530 1.1 kleink
531 1.2 kleink #define Balloc __Balloc_D2A
532 1.2 kleink #define Bfree __Bfree_D2A
533 1.2 kleink #define ULtoQ __ULtoQ_D2A
534 1.2 kleink #define ULtof __ULtof_D2A
535 1.2 kleink #define ULtod __ULtod_D2A
536 1.2 kleink #define ULtodd __ULtodd_D2A
537 1.2 kleink #define ULtox __ULtox_D2A
538 1.2 kleink #define ULtoxL __ULtoxL_D2A
539 1.2 kleink #define any_on __any_on_D2A
540 1.2 kleink #define b2d __b2d_D2A
541 1.2 kleink #define bigtens __bigtens_D2A
542 1.2 kleink #define cmp __cmp_D2A
543 1.2 kleink #define copybits __copybits_D2A
544 1.2 kleink #define d2b __d2b_D2A
545 1.2 kleink #define decrement __decrement_D2A
546 1.2 kleink #define diff __diff_D2A
547 1.2 kleink #define dtoa_result __dtoa_result_D2A
548 1.2 kleink #define g__fmt __g__fmt_D2A
549 1.2 kleink #define gethex __gethex_D2A
550 1.2 kleink #define hexdig __hexdig_D2A
551 1.2 kleink #define hexdig_init_D2A __hexdig_init_D2A
552 1.2 kleink #define hexnan __hexnan_D2A
553 1.2 kleink #define hi0bits __hi0bits_D2A
554 1.2 kleink #define hi0bits_D2A __hi0bits_D2A
555 1.2 kleink #define i2b __i2b_D2A
556 1.2 kleink #define increment __increment_D2A
557 1.2 kleink #define lo0bits __lo0bits_D2A
558 1.2 kleink #define lshift __lshift_D2A
559 1.2 kleink #define match __match_D2A
560 1.2 kleink #define mult __mult_D2A
561 1.2 kleink #define multadd __multadd_D2A
562 1.2 kleink #define nrv_alloc __nrv_alloc_D2A
563 1.2 kleink #define pow5mult __pow5mult_D2A
564 1.2 kleink #define quorem __quorem_D2A
565 1.2 kleink #define ratio __ratio_D2A
566 1.2 kleink #define rshift __rshift_D2A
567 1.2 kleink #define rv_alloc __rv_alloc_D2A
568 1.2 kleink #define s2b __s2b_D2A
569 1.2 kleink #define set_ones __set_ones_D2A
570 1.2 kleink #define strcp __strcp_D2A
571 1.2 kleink #define strcp_D2A __strcp_D2A
572 1.2 kleink #define strtoIg __strtoIg_D2A
573 1.2 kleink #define sum __sum_D2A
574 1.2 kleink #define tens __tens_D2A
575 1.2 kleink #define tinytens __tinytens_D2A
576 1.2 kleink #define tinytens __tinytens_D2A
577 1.2 kleink #define trailz __trailz_D2A
578 1.2 kleink #define ulp __ulp_D2A
579 1.1 kleink
580 1.1 kleink extern char *dtoa_result;
581 1.1 kleink extern CONST double bigtens[], tens[], tinytens[];
582 1.1 kleink extern unsigned char hexdig[];
583 1.1 kleink
584 1.9 christos extern Bigint *Balloc ANSI((size_t));
585 1.1 kleink extern void Bfree ANSI((Bigint*));
586 1.1 kleink extern void ULtof ANSI((ULong*, ULong*, Long, int));
587 1.1 kleink extern void ULtod ANSI((ULong*, ULong*, Long, int));
588 1.1 kleink extern void ULtodd ANSI((ULong*, ULong*, Long, int));
589 1.1 kleink extern void ULtoQ ANSI((ULong*, ULong*, Long, int));
590 1.1 kleink extern void ULtox ANSI((UShort*, ULong*, Long, int));
591 1.1 kleink extern void ULtoxL ANSI((ULong*, ULong*, Long, int));
592 1.1 kleink extern ULong any_on ANSI((Bigint*, int));
593 1.1 kleink extern double b2d ANSI((Bigint*, int*));
594 1.1 kleink extern int cmp ANSI((Bigint*, Bigint*));
595 1.1 kleink extern void copybits ANSI((ULong*, int, Bigint*));
596 1.1 kleink extern Bigint *d2b ANSI((double, int*, int*));
597 1.9 christos extern void decrement ANSI((Bigint*));
598 1.1 kleink extern Bigint *diff ANSI((Bigint*, Bigint*));
599 1.1 kleink extern char *dtoa ANSI((double d, int mode, int ndigits,
600 1.1 kleink int *decpt, int *sign, char **rve));
601 1.9 christos extern char *g__fmt ANSI((char*, char*, char*, int, ULong, size_t));
602 1.3 kleink extern int gethex ANSI((CONST char**, CONST FPI*, Long*, Bigint**, int));
603 1.1 kleink extern void hexdig_init_D2A(Void);
604 1.3 kleink extern int hexnan ANSI((CONST char**, CONST FPI*, ULong*));
605 1.1 kleink extern int hi0bits_D2A ANSI((ULong));
606 1.1 kleink extern Bigint *i2b ANSI((int));
607 1.1 kleink extern Bigint *increment ANSI((Bigint*));
608 1.1 kleink extern int lo0bits ANSI((ULong*));
609 1.1 kleink extern Bigint *lshift ANSI((Bigint*, int));
610 1.2 kleink extern int match ANSI((CONST char**, CONST char*));
611 1.1 kleink extern Bigint *mult ANSI((Bigint*, Bigint*));
612 1.1 kleink extern Bigint *multadd ANSI((Bigint*, int, int));
613 1.6 christos extern char *nrv_alloc ANSI((CONST char*, char **, size_t));
614 1.1 kleink extern Bigint *pow5mult ANSI((Bigint*, int));
615 1.1 kleink extern int quorem ANSI((Bigint*, Bigint*));
616 1.1 kleink extern double ratio ANSI((Bigint*, Bigint*));
617 1.1 kleink extern void rshift ANSI((Bigint*, int));
618 1.6 christos extern char *rv_alloc ANSI((size_t));
619 1.9 christos extern Bigint *s2b ANSI((CONST char*, int, int, ULong, int));
620 1.1 kleink extern Bigint *set_ones ANSI((Bigint*, int));
621 1.1 kleink extern char *strcp ANSI((char*, const char*));
622 1.1 kleink extern int strtoIg ANSI((CONST char*, char**, FPI*, Long*, Bigint**, int*));
623 1.1 kleink extern double strtod ANSI((const char *s00, char **se));
624 1.1 kleink extern Bigint *sum ANSI((Bigint*, Bigint*));
625 1.3 kleink extern int trailz ANSI((CONST Bigint*));
626 1.9 christos /*###626 [lint] syntax error '*' [249]%%%*/
627 1.9 christos /*###626 [lint] incomplete or misplaced function definition [22]%%%*/
628 1.9 christos extern double ulp ANSI((U*));
629 1.1 kleink
630 1.1 kleink #ifdef __cplusplus
631 1.1 kleink }
632 1.1 kleink #endif
633 1.1 kleink /*
634 1.1 kleink * NAN_WORD0 and NAN_WORD1 are only referenced in strtod.c. Prior to
635 1.1 kleink * 20050115, they used to be hard-wired here (to 0x7ff80000 and 0,
636 1.1 kleink * respectively), but now are determined by compiling and running
637 1.1 kleink * qnan.c to generate gd_qnan.h, which specifies d_QNAN0 and d_QNAN1.
638 1.1 kleink * Formerly gdtoaimp.h recommended supplying suitable -DNAN_WORD0=...
639 1.1 kleink * and -DNAN_WORD1=... values if necessary. This should still work.
640 1.1 kleink * (On HP Series 700/800 machines, -DNAN_WORD0=0x7ff40000 works.)
641 1.1 kleink */
642 1.1 kleink #ifdef IEEE_Arith
643 1.9 christos #ifndef NO_INFNAN_CHECK
644 1.9 christos #undef INFNAN_CHECK
645 1.9 christos #define INFNAN_CHECK
646 1.9 christos #endif
647 1.2 kleink #ifdef IEEE_BIG_ENDIAN
648 1.1 kleink #define _0 0
649 1.1 kleink #define _1 1
650 1.1 kleink #ifndef NAN_WORD0
651 1.1 kleink #define NAN_WORD0 d_QNAN0
652 1.1 kleink #endif
653 1.1 kleink #ifndef NAN_WORD1
654 1.1 kleink #define NAN_WORD1 d_QNAN1
655 1.1 kleink #endif
656 1.1 kleink #else
657 1.1 kleink #define _0 1
658 1.1 kleink #define _1 0
659 1.1 kleink #ifndef NAN_WORD0
660 1.1 kleink #define NAN_WORD0 d_QNAN1
661 1.1 kleink #endif
662 1.1 kleink #ifndef NAN_WORD1
663 1.1 kleink #define NAN_WORD1 d_QNAN0
664 1.1 kleink #endif
665 1.1 kleink #endif
666 1.1 kleink #else
667 1.1 kleink #undef INFNAN_CHECK
668 1.1 kleink #endif
669 1.1 kleink
670 1.1 kleink #undef SI
671 1.1 kleink #ifdef Sudden_Underflow
672 1.1 kleink #define SI 1
673 1.1 kleink #else
674 1.1 kleink #define SI 0
675 1.1 kleink #endif
676 1.1 kleink
677 1.1 kleink #endif /* GDTOAIMP_H_INCLUDED */
678