Use SDL endian macros in libm.
This fixes problems (specifically with SDL_floor) for systems where __BYTE_ORDER is not defined.
2 * ====================================================
3 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
5 * Developed at SunPro, a Sun Microsystems, Inc. business.
6 * Permission to use, copy, modify, and distribute this
7 * software is freely granted, provided that this notice
9 * ====================================================
13 * from: @(#)fdlibm.h 5.1 93/09/24
14 * $Id: math_private.h,v 1.3 2004/02/09 07:10:38 andersen Exp $
17 #ifndef _MATH_PRIVATE_H_
18 #define _MATH_PRIVATE_H_
20 /*#include <endian.h>*/
21 #include "SDL_endian.h"
22 #include <sys/types.h>
24 #define attribute_hidden
25 #define libm_hidden_proto(x)
26 #define libm_hidden_def(x)
28 typedef unsigned int u_int32_t;
30 /* The original fdlibm code used statements like:
31 n0 = ((*(int*)&one)>>29)^1; * index of high word *
32 ix0 = *(n0+(int*)&x); * high word of x *
33 ix1 = *((1-n0)+(int*)&x); * low word of x *
34 to dig two 32 bit words out of the 64 bit IEEE floating point
35 value. That is non-ANSI, and, moreover, the gcc instruction
36 scheduler gets it wrong. We instead use the following macros.
37 Unlike the original code, we determine the endianness at compile
38 time, not at run time; I don't see much benefit to selecting
39 endianness at run time. */
41 /* A union which permits us to convert between a double and two 32 bit
45 * Math on arm is special:
46 * For FPA, float words are always big-endian.
47 * For VFP, floats words follow the memory system mode.
50 #if (SDL_BYTEORDER == SDL_BIG_ENDIAN)
60 } ieee_double_shape_type;
72 } ieee_double_shape_type;
76 /* Get two 32 bit ints from a double. */
78 #define EXTRACT_WORDS(ix0,ix1,d) \
80 ieee_double_shape_type ew_u; \
82 (ix0) = ew_u.parts.msw; \
83 (ix1) = ew_u.parts.lsw; \
86 /* Get the more significant 32 bit int from a double. */
88 #define GET_HIGH_WORD(i,d) \
90 ieee_double_shape_type gh_u; \
92 (i) = gh_u.parts.msw; \
95 /* Get the less significant 32 bit int from a double. */
97 #define GET_LOW_WORD(i,d) \
99 ieee_double_shape_type gl_u; \
101 (i) = gl_u.parts.lsw; \
104 /* Set a double from two 32 bit ints. */
106 #define INSERT_WORDS(d,ix0,ix1) \
108 ieee_double_shape_type iw_u; \
109 iw_u.parts.msw = (ix0); \
110 iw_u.parts.lsw = (ix1); \
114 /* Set the more significant 32 bits of a double from an int. */
116 #define SET_HIGH_WORD(d,v) \
118 ieee_double_shape_type sh_u; \
120 sh_u.parts.msw = (v); \
124 /* Set the less significant 32 bits of a double from an int. */
126 #define SET_LOW_WORD(d,v) \
128 ieee_double_shape_type sl_u; \
130 sl_u.parts.lsw = (v); \
134 /* A union which permits us to convert between a float and a 32 bit
141 } ieee_float_shape_type;
143 /* Get a 32 bit int from a float. */
145 #define GET_FLOAT_WORD(i,d) \
147 ieee_float_shape_type gf_u; \
152 /* Set a float from a 32 bit int. */
154 #define SET_FLOAT_WORD(d,i) \
156 ieee_float_shape_type sf_u; \
161 /* ieee style elementary functions */
163 __ieee754_sqrt(double)
165 extern double __ieee754_acos(double) attribute_hidden;
166 extern double __ieee754_acosh(double) attribute_hidden;
167 extern double __ieee754_log(double) attribute_hidden;
168 extern double __ieee754_atanh(double) attribute_hidden;
169 extern double __ieee754_asin(double) attribute_hidden;
170 extern double __ieee754_atan2(double, double) attribute_hidden;
171 extern double __ieee754_exp(double) attribute_hidden;
172 extern double __ieee754_cosh(double) attribute_hidden;
173 extern double __ieee754_fmod(double, double) attribute_hidden;
174 extern double __ieee754_pow(double, double) attribute_hidden;
175 extern double __ieee754_lgamma_r(double, int *) attribute_hidden;
176 extern double __ieee754_gamma_r(double, int *) attribute_hidden;
177 extern double __ieee754_lgamma(double) attribute_hidden;
178 extern double __ieee754_gamma(double) attribute_hidden;
179 extern double __ieee754_log10(double) attribute_hidden;
180 extern double __ieee754_sinh(double) attribute_hidden;
181 extern double __ieee754_hypot(double, double) attribute_hidden;
182 extern double __ieee754_j0(double) attribute_hidden;
183 extern double __ieee754_j1(double) attribute_hidden;
184 extern double __ieee754_y0(double) attribute_hidden;
185 extern double __ieee754_y1(double) attribute_hidden;
186 extern double __ieee754_jn(int, double) attribute_hidden;
187 extern double __ieee754_yn(int, double) attribute_hidden;
188 extern double __ieee754_remainder(double, double) attribute_hidden;
189 extern int __ieee754_rem_pio2(double, double *) attribute_hidden;
190 #if defined(_SCALB_INT)
191 extern double __ieee754_scalb(double, int) attribute_hidden;
193 extern double __ieee754_scalb(double, double) attribute_hidden;
196 /* fdlibm kernel function */
198 extern double __kernel_standard(double, double, int) attribute_hidden;
200 extern double __kernel_sin(double, double, int) attribute_hidden;
201 extern double __kernel_cos(double, double) attribute_hidden;
202 extern double __kernel_tan(double, double, int) attribute_hidden;
203 extern int __kernel_rem_pio2(double *, double *, int, int, int,
204 const int *) attribute_hidden;
206 #endif /* _MATH_PRIVATE_H_ */