1 /* Configuration data for libmath subpart of libstdc++. */
3 /* Copyright (C) 1997-1999, 2000 Free Software Foundation, Inc.
5 This file is part of the GNU ISO C++ Library. This library is free
6 software; you can redistribute it and/or modify it under the
7 terms of the GNU General Public License as published by the
8 Free Software Foundation; either version 2, or (at your option)
11 This library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License along
17 with this library; see the file COPYING. If not, write to the Free
18 Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
21 As a special exception, you may use this file as part of a free software
22 library without restriction. Specifically, if other files instantiate
23 templates or use macros or inline functions from this file, or you compile
24 this file and link it with other files to produce an executable, this
25 file does not by itself cause the resulting executable to be covered by
26 the GNU General Public License. This exception does not however
27 invalidate any other reasons why the executable file might be covered by
28 the GNU General Public License. */
31 #include <bits/c++config.h>
33 #ifdef _GLIBCPP_HAVE_ENDIAN_H
36 # ifdef _GLIBCPP_HAVE_MACHINE_ENDIAN_H
37 # include <machine/endian.h>
39 # ifdef _GLIBCPP_HAVE_SYS_MACHINE_H
40 # include <sys/machine.h>
42 # if defined _GLIBCPP_HAVE_SYS_ISA_DEFS_H || defined _GLIBCPP_HAVE_MACHINE_PARAM_H
43 /* This is on Solaris. */
44 # ifdef _GLIBCPP_HAVE_SYS_ISA_DEFS_H
45 # include <sys/isa_defs.h>
47 # ifdef _GLIBCPP_HAVE_MACHINE_PARAM_H
48 # include <machine/param.h>
50 # ifdef _LITTLE_ENDIAN
51 # define LITTLE_ENDIAN 1
58 /* We have to rely on the AC_C_BIGENDIAN test. */
59 # ifdef WORDS_BIGENDIAN
62 # define LITTLE_ENDIAN 1
70 typedef unsigned int U_int32_t
__attribute ((mode (SI
)));
71 typedef int Int32_t
__attribute ((mode (SI
)));
72 typedef unsigned int U_int64_t
__attribute ((mode (DI
)));
73 typedef int Int64_t
__attribute ((mode (DI
)));
75 #ifdef _GLIBCPP_HAVE_NAN_H
84 #ifdef _GLIBCPP_HAVE_IEEEFP_H
88 #ifdef _GLIBCPP_HAVE_FP_H
92 #ifdef _GLIBCPP_HAVE_FLOAT_H
96 /* `float' variant of HUGE_VAL. */
99 # define HUGE_VALF HUGE_VALf
101 # define HUGE_VALF HUGE_VAL
105 /* `long double' variant of HUGE_VAL. */
108 # define HUGE_VALL HUGE_VALl
110 # define HUGE_VALL HUGE_VAL
114 /* Make sure that at least HUGE_VAL is defined. */
117 # define HUGE_VAL HUGE
120 # define HUGE_VAL MAXFLOAT
122 # error "We need HUGE_VAL!"
128 # define M_PI 3.14159265358979323846
136 /* signbit is a macro in ISO C99. */
138 extern int __signbitf (float);
139 extern int __signbit (double);
140 extern int __signbitl (long double);
142 # define signbit(x) \
143 (sizeof (x) == sizeof (float) ? \
145 : sizeof (x) == sizeof (double) ? \
146 __signbit (x) : __signbitl (x))
149 #if BYTE_ORDER == BIG_ENDIAN
158 } ieee_double_shape_type
;
160 #if BYTE_ORDER == LITTLE_ENDIAN
169 } ieee_double_shape_type
;
171 /* Get the more significant 32 bit int from a double. */
172 #define GET_HIGH_WORD(i,d) \
174 ieee_double_shape_type gh_u; \
176 (i) = gh_u.parts.msw; \
184 } ieee_float_shape_type
;
185 /* Get a 32 bit int from a float. */
186 #define GET_FLOAT_WORD(i,d) \
188 ieee_float_shape_type gf_u; \
194 #if BYTE_ORDER == BIG_ENDIAN
200 unsigned int sign_exponent
:16;
201 unsigned int empty
:16;
205 } ieee_long_double_shape_type
;
207 #if BYTE_ORDER == LITTLE_ENDIAN
215 unsigned int sign_exponent
:16;
216 unsigned int empty
:16;
218 } ieee_long_double_shape_type
;
220 /* Get int from the exponent of a long double. */
221 #define GET_LDOUBLE_EXP(exp,d) \
223 ieee_long_double_shape_type ge_u; \
225 (exp) = ge_u.parts.sign_exponent; \
228 #if BYTE_ORDER == BIG_ENDIAN
239 U_int32_t w0
, w1
, w2
, w3
;
241 } ieee_quad_double_shape_type
;
243 #if BYTE_ORDER == LITTLE_ENDIAN
254 U_int32_t w3
, w2
, w1
, w0
;
256 } ieee_quad_double_shape_type
;
258 /* Get most significant 64 bit int from a quad long double. */
259 #define GET_LDOUBLE_MSW64(msw,d) \
261 ieee_quad_double_shape_type qw_u; \
263 (msw) = qw_u.parts64.msw; \
267 /* Replacement for non-existing float functions. */
268 #if !defined(_GLIBCPP_HAVE_FABSF) && !defined(_GLIBCPP_HAVE___BUILTIN_FABSF)
269 # define fabsf(x) fabs (x)
271 #if !defined(_GLIBCPP_HAVE_COSF) && !defined(_GLIBCPP_HAVE___BUILTIN_COSF)
272 # define cosf(x) cos (x)
274 #ifndef _GLIBCPP_HAVE_COSHF
275 # define coshf(x) cosh (x)
277 #ifndef _GLIBCPP_HAVE_EXPF
278 # define expf(x) expf (x)
280 #ifndef _GLIBCPP_HAVE_LOGF
281 # define logf(x) log(x)
283 #ifndef _GLIBCPP_HAVE_LOG10F
284 # define log10f(x) log10 (x)
286 #ifndef _GLIBCPP_HAVE_POWF
287 # define powf(x, y) pow (x, y)
289 #if !defined(_GLIBCPP_HAVE_SINF) && !defined(_GLIBCPP_HAVE___BUILTIN_SINF)
290 # define sinf(x) sin (x)
292 #ifndef _GLIBCPP_HAVE_SINHF
293 # define sinhf(x) sinh (x)
295 #if !defined(_GLIBCPP_HAVE_SQRTF) && !defined(_GLIBCPP_HAVE___BUILTIN_SQRTF)
296 # define sqrtf(x) sqrt (x)
298 #ifndef _GLIBCPP_HAVE_TANF
299 # define tanf(x) tan (x)
301 #ifndef _GLIBCPP_HAVE_TANHF
302 # define tanhf(x) tanh (x)
304 #ifndef _GLIBCPP_HAVE_STRTOF
305 # define strtof(s, e) strtod (s, e)