blob: 53bf68192f9871c3d9f53b71106f996310e810a2 [file] [log] [blame]
bellard158142c2005-03-13 16:54:06 +00001/* Native implementation of soft float functions */
2#include <math.h>
bellard38cfa062006-05-01 13:58:07 +00003
4#if (defined(_BSD) && !defined(__APPLE__)) || defined(HOST_SOLARIS)
bellard158142c2005-03-13 16:54:06 +00005#include <ieeefp.h>
bellard38cfa062006-05-01 13:58:07 +00006#define fabsf(f) ((float)fabs(f))
bellard158142c2005-03-13 16:54:06 +00007#else
8#include <fenv.h>
9#endif
bellard38cfa062006-05-01 13:58:07 +000010
11/*
12 * Define some C99-7.12.3 classification macros and
13 * some C99-.12.4 for Solaris systems OS less than 10,
14 * or Solaris 10 systems running GCC 3.x or less.
15 * Solaris 10 with GCC4 does not need these macros as they
16 * are defined in <iso/math_c99.h> with a compiler directive
17 */
thsfc81ba52007-04-22 17:16:54 +000018#if defined(HOST_SOLARIS) && (( HOST_SOLARIS <= 9 ) || ((HOST_SOLARIS >= 10) && (__GNUC__ <= 4)))
bellard38cfa062006-05-01 13:58:07 +000019/*
20 * C99 7.12.3 classification macros
21 * and
22 * C99 7.12.14 comparison macros
23 *
24 * ... do not work on Solaris 10 using GNU CC 3.4.x.
25 * Try to workaround the missing / broken C99 math macros.
26 */
27
28#define isnormal(x) (fpclass(x) >= FP_NZERO)
29#define isgreater(x, y) ((!unordered(x, y)) && ((x) > (y)))
30#define isgreaterequal(x, y) ((!unordered(x, y)) && ((x) >= (y)))
31#define isless(x, y) ((!unordered(x, y)) && ((x) < (y)))
32#define islessequal(x, y) ((!unordered(x, y)) && ((x) <= (y)))
33#define isunordered(x,y) unordered(x, y)
bellardec530c82006-04-25 22:36:06 +000034#endif
bellard158142c2005-03-13 16:54:06 +000035
thsc94655b2007-04-17 21:57:02 +000036#if defined(__sun__) && !defined(NEED_LIBSUNMATH)
37
38#ifndef isnan
39# define isnan(x) \
40 (sizeof (x) == sizeof (long double) ? isnan_ld (x) \
41 : sizeof (x) == sizeof (double) ? isnan_d (x) \
42 : isnan_f (x))
43static inline int isnan_f (float x) { return x != x; }
44static inline int isnan_d (double x) { return x != x; }
45static inline int isnan_ld (long double x) { return x != x; }
46#endif
47
48#ifndef isinf
49# define isinf(x) \
50 (sizeof (x) == sizeof (long double) ? isinf_ld (x) \
51 : sizeof (x) == sizeof (double) ? isinf_d (x) \
52 : isinf_f (x))
53static inline int isinf_f (float x) { return isnan (x - x); }
54static inline int isinf_d (double x) { return isnan (x - x); }
55static inline int isinf_ld (long double x) { return isnan (x - x); }
56#endif
57#endif
58
bellard158142c2005-03-13 16:54:06 +000059typedef float float32;
60typedef double float64;
61#ifdef FLOATX80
62typedef long double floatx80;
63#endif
64
65typedef union {
66 float32 f;
67 uint32_t i;
68} float32u;
69typedef union {
70 float64 f;
71 uint64_t i;
72} float64u;
73#ifdef FLOATX80
74typedef union {
75 floatx80 f;
76 struct {
77 uint64_t low;
78 uint16_t high;
79 } i;
80} floatx80u;
81#endif
82
83/*----------------------------------------------------------------------------
84| Software IEC/IEEE floating-point rounding mode.
85*----------------------------------------------------------------------------*/
bellard38cfa062006-05-01 13:58:07 +000086#if (defined(_BSD) && !defined(__APPLE__)) || defined(HOST_SOLARIS)
bellard158142c2005-03-13 16:54:06 +000087enum {
88 float_round_nearest_even = FP_RN,
pbrook7918bf42006-04-28 15:26:51 +000089 float_round_down = FP_RM,
90 float_round_up = FP_RP,
91 float_round_to_zero = FP_RZ
bellard158142c2005-03-13 16:54:06 +000092};
93#elif defined(__arm__)
94enum {
95 float_round_nearest_even = 0,
96 float_round_down = 1,
97 float_round_up = 2,
98 float_round_to_zero = 3
99};
100#else
101enum {
102 float_round_nearest_even = FE_TONEAREST,
103 float_round_down = FE_DOWNWARD,
104 float_round_up = FE_UPWARD,
105 float_round_to_zero = FE_TOWARDZERO
106};
107#endif
108
109typedef struct float_status {
110 signed char float_rounding_mode;
111#ifdef FLOATX80
112 signed char floatx80_rounding_precision;
113#endif
114} float_status;
115
116void set_float_rounding_mode(int val STATUS_PARAM);
117#ifdef FLOATX80
118void set_floatx80_rounding_precision(int val STATUS_PARAM);
119#endif
120
121/*----------------------------------------------------------------------------
122| Software IEC/IEEE integer-to-floating-point conversion routines.
123*----------------------------------------------------------------------------*/
124float32 int32_to_float32( int STATUS_PARAM);
j_mayer75d62a52007-03-20 22:10:42 +0000125float32 uint32_to_float32( unsigned int STATUS_PARAM);
bellard158142c2005-03-13 16:54:06 +0000126float64 int32_to_float64( int STATUS_PARAM);
j_mayer75d62a52007-03-20 22:10:42 +0000127float64 uint32_to_float64( unsigned int STATUS_PARAM);
bellard158142c2005-03-13 16:54:06 +0000128#ifdef FLOATX80
129floatx80 int32_to_floatx80( int STATUS_PARAM);
130#endif
131#ifdef FLOAT128
132float128 int32_to_float128( int STATUS_PARAM);
133#endif
134float32 int64_to_float32( int64_t STATUS_PARAM);
j_mayer75d62a52007-03-20 22:10:42 +0000135float32 uint64_to_float32( uint64_t STATUS_PARAM);
bellard158142c2005-03-13 16:54:06 +0000136float64 int64_to_float64( int64_t STATUS_PARAM);
j_mayer75d62a52007-03-20 22:10:42 +0000137float64 uint64_to_float64( uint64_t v STATUS_PARAM);
bellard158142c2005-03-13 16:54:06 +0000138#ifdef FLOATX80
139floatx80 int64_to_floatx80( int64_t STATUS_PARAM);
140#endif
141#ifdef FLOAT128
142float128 int64_to_float128( int64_t STATUS_PARAM);
143#endif
144
145/*----------------------------------------------------------------------------
146| Software IEC/IEEE single-precision conversion routines.
147*----------------------------------------------------------------------------*/
148int float32_to_int32( float32 STATUS_PARAM);
149int float32_to_int32_round_to_zero( float32 STATUS_PARAM);
j_mayer75d62a52007-03-20 22:10:42 +0000150unsigned int float32_to_uint32( float32 a STATUS_PARAM);
151unsigned int float32_to_uint32_round_to_zero( float32 a STATUS_PARAM);
bellard158142c2005-03-13 16:54:06 +0000152int64_t float32_to_int64( float32 STATUS_PARAM);
153int64_t float32_to_int64_round_to_zero( float32 STATUS_PARAM);
154float64 float32_to_float64( float32 STATUS_PARAM);
155#ifdef FLOATX80
156floatx80 float32_to_floatx80( float32 STATUS_PARAM);
157#endif
158#ifdef FLOAT128
159float128 float32_to_float128( float32 STATUS_PARAM);
160#endif
161
162/*----------------------------------------------------------------------------
163| Software IEC/IEEE single-precision operations.
164*----------------------------------------------------------------------------*/
165float32 float32_round_to_int( float32 STATUS_PARAM);
166INLINE float32 float32_add( float32 a, float32 b STATUS_PARAM)
167{
168 return a + b;
169}
170INLINE float32 float32_sub( float32 a, float32 b STATUS_PARAM)
171{
172 return a - b;
173}
174INLINE float32 float32_mul( float32 a, float32 b STATUS_PARAM)
175{
176 return a * b;
177}
178INLINE float32 float32_div( float32 a, float32 b STATUS_PARAM)
179{
180 return a / b;
181}
182float32 float32_rem( float32, float32 STATUS_PARAM);
183float32 float32_sqrt( float32 STATUS_PARAM);
bellard750afe92006-10-28 19:27:11 +0000184INLINE int float32_eq( float32 a, float32 b STATUS_PARAM)
bellard158142c2005-03-13 16:54:06 +0000185{
bellard158142c2005-03-13 16:54:06 +0000186 return a == b;
187}
bellard750afe92006-10-28 19:27:11 +0000188INLINE int float32_le( float32 a, float32 b STATUS_PARAM)
bellard158142c2005-03-13 16:54:06 +0000189{
190 return a <= b;
191}
bellard750afe92006-10-28 19:27:11 +0000192INLINE int float32_lt( float32 a, float32 b STATUS_PARAM)
bellard158142c2005-03-13 16:54:06 +0000193{
194 return a < b;
195}
bellard750afe92006-10-28 19:27:11 +0000196INLINE int float32_eq_signaling( float32 a, float32 b STATUS_PARAM)
bellard158142c2005-03-13 16:54:06 +0000197{
bellardb109f9f2005-03-20 10:33:58 +0000198 return a <= b && a >= b;
bellard158142c2005-03-13 16:54:06 +0000199}
bellard750afe92006-10-28 19:27:11 +0000200INLINE int float32_le_quiet( float32 a, float32 b STATUS_PARAM)
bellard158142c2005-03-13 16:54:06 +0000201{
202 return islessequal(a, b);
203}
bellard750afe92006-10-28 19:27:11 +0000204INLINE int float32_lt_quiet( float32 a, float32 b STATUS_PARAM)
bellard158142c2005-03-13 16:54:06 +0000205{
206 return isless(a, b);
207}
bellard750afe92006-10-28 19:27:11 +0000208INLINE int float32_unordered( float32 a, float32 b STATUS_PARAM)
bellardb109f9f2005-03-20 10:33:58 +0000209{
210 return isunordered(a, b);
211
212}
bellard750afe92006-10-28 19:27:11 +0000213int float32_compare( float32, float32 STATUS_PARAM );
214int float32_compare_quiet( float32, float32 STATUS_PARAM );
215int float32_is_signaling_nan( float32 );
bellard158142c2005-03-13 16:54:06 +0000216
217INLINE float32 float32_abs(float32 a)
218{
219 return fabsf(a);
220}
221
222INLINE float32 float32_chs(float32 a)
223{
224 return -a;
225}
226
pbrook9ee6e8b2007-11-11 00:04:49 +0000227INLINE float32 float32_scalbn(float32 a, int n)
228{
229 return scalbnf(a, n);
230}
231
bellard158142c2005-03-13 16:54:06 +0000232/*----------------------------------------------------------------------------
233| Software IEC/IEEE double-precision conversion routines.
234*----------------------------------------------------------------------------*/
235int float64_to_int32( float64 STATUS_PARAM );
236int float64_to_int32_round_to_zero( float64 STATUS_PARAM );
j_mayer75d62a52007-03-20 22:10:42 +0000237unsigned int float64_to_uint32( float64 STATUS_PARAM );
238unsigned int float64_to_uint32_round_to_zero( float64 STATUS_PARAM );
bellard158142c2005-03-13 16:54:06 +0000239int64_t float64_to_int64( float64 STATUS_PARAM );
240int64_t float64_to_int64_round_to_zero( float64 STATUS_PARAM );
j_mayer75d62a52007-03-20 22:10:42 +0000241uint64_t float64_to_uint64( float64 STATUS_PARAM );
242uint64_t float64_to_uint64_round_to_zero( float64 STATUS_PARAM );
bellard158142c2005-03-13 16:54:06 +0000243float32 float64_to_float32( float64 STATUS_PARAM );
244#ifdef FLOATX80
245floatx80 float64_to_floatx80( float64 STATUS_PARAM );
246#endif
247#ifdef FLOAT128
248float128 float64_to_float128( float64 STATUS_PARAM );
249#endif
250
251/*----------------------------------------------------------------------------
252| Software IEC/IEEE double-precision operations.
253*----------------------------------------------------------------------------*/
254float64 float64_round_to_int( float64 STATUS_PARAM );
pbrooke6e59062006-10-22 00:18:54 +0000255float64 float64_trunc_to_int( float64 STATUS_PARAM );
bellard158142c2005-03-13 16:54:06 +0000256INLINE float64 float64_add( float64 a, float64 b STATUS_PARAM)
257{
258 return a + b;
259}
260INLINE float64 float64_sub( float64 a, float64 b STATUS_PARAM)
261{
262 return a - b;
263}
264INLINE float64 float64_mul( float64 a, float64 b STATUS_PARAM)
265{
266 return a * b;
267}
268INLINE float64 float64_div( float64 a, float64 b STATUS_PARAM)
269{
270 return a / b;
271}
272float64 float64_rem( float64, float64 STATUS_PARAM );
273float64 float64_sqrt( float64 STATUS_PARAM );
bellard750afe92006-10-28 19:27:11 +0000274INLINE int float64_eq( float64 a, float64 b STATUS_PARAM)
bellard158142c2005-03-13 16:54:06 +0000275{
276 return a == b;
277}
bellard750afe92006-10-28 19:27:11 +0000278INLINE int float64_le( float64 a, float64 b STATUS_PARAM)
bellard158142c2005-03-13 16:54:06 +0000279{
280 return a <= b;
281}
bellard750afe92006-10-28 19:27:11 +0000282INLINE int float64_lt( float64 a, float64 b STATUS_PARAM)
bellard158142c2005-03-13 16:54:06 +0000283{
284 return a < b;
285}
bellard750afe92006-10-28 19:27:11 +0000286INLINE int float64_eq_signaling( float64 a, float64 b STATUS_PARAM)
bellard158142c2005-03-13 16:54:06 +0000287{
bellardb109f9f2005-03-20 10:33:58 +0000288 return a <= b && a >= b;
bellard158142c2005-03-13 16:54:06 +0000289}
bellard750afe92006-10-28 19:27:11 +0000290INLINE int float64_le_quiet( float64 a, float64 b STATUS_PARAM)
bellard158142c2005-03-13 16:54:06 +0000291{
292 return islessequal(a, b);
293}
bellard750afe92006-10-28 19:27:11 +0000294INLINE int float64_lt_quiet( float64 a, float64 b STATUS_PARAM)
bellard158142c2005-03-13 16:54:06 +0000295{
296 return isless(a, b);
297
298}
bellard750afe92006-10-28 19:27:11 +0000299INLINE int float64_unordered( float64 a, float64 b STATUS_PARAM)
bellardb109f9f2005-03-20 10:33:58 +0000300{
301 return isunordered(a, b);
302
303}
bellard750afe92006-10-28 19:27:11 +0000304int float64_compare( float64, float64 STATUS_PARAM );
305int float64_compare_quiet( float64, float64 STATUS_PARAM );
306int float64_is_signaling_nan( float64 );
307int float64_is_nan( float64 );
bellard158142c2005-03-13 16:54:06 +0000308
309INLINE float64 float64_abs(float64 a)
310{
311 return fabs(a);
312}
313
314INLINE float64 float64_chs(float64 a)
315{
316 return -a;
317}
318
pbrook9ee6e8b2007-11-11 00:04:49 +0000319INLINE float64 float64_scalbn(float64 a, int n)
320{
321 return scalbn(a, n);
322}
323
bellard158142c2005-03-13 16:54:06 +0000324#ifdef FLOATX80
325
326/*----------------------------------------------------------------------------
327| Software IEC/IEEE extended double-precision conversion routines.
328*----------------------------------------------------------------------------*/
329int floatx80_to_int32( floatx80 STATUS_PARAM );
330int floatx80_to_int32_round_to_zero( floatx80 STATUS_PARAM );
331int64_t floatx80_to_int64( floatx80 STATUS_PARAM);
332int64_t floatx80_to_int64_round_to_zero( floatx80 STATUS_PARAM);
333float32 floatx80_to_float32( floatx80 STATUS_PARAM );
334float64 floatx80_to_float64( floatx80 STATUS_PARAM );
335#ifdef FLOAT128
336float128 floatx80_to_float128( floatx80 STATUS_PARAM );
337#endif
338
339/*----------------------------------------------------------------------------
340| Software IEC/IEEE extended double-precision operations.
341*----------------------------------------------------------------------------*/
342floatx80 floatx80_round_to_int( floatx80 STATUS_PARAM );
343INLINE floatx80 floatx80_add( floatx80 a, floatx80 b STATUS_PARAM)
344{
345 return a + b;
346}
347INLINE floatx80 floatx80_sub( floatx80 a, floatx80 b STATUS_PARAM)
348{
349 return a - b;
350}
351INLINE floatx80 floatx80_mul( floatx80 a, floatx80 b STATUS_PARAM)
352{
353 return a * b;
354}
355INLINE floatx80 floatx80_div( floatx80 a, floatx80 b STATUS_PARAM)
356{
357 return a / b;
358}
359floatx80 floatx80_rem( floatx80, floatx80 STATUS_PARAM );
360floatx80 floatx80_sqrt( floatx80 STATUS_PARAM );
bellard750afe92006-10-28 19:27:11 +0000361INLINE int floatx80_eq( floatx80 a, floatx80 b STATUS_PARAM)
bellard158142c2005-03-13 16:54:06 +0000362{
363 return a == b;
364}
bellard750afe92006-10-28 19:27:11 +0000365INLINE int floatx80_le( floatx80 a, floatx80 b STATUS_PARAM)
bellard158142c2005-03-13 16:54:06 +0000366{
367 return a <= b;
368}
bellard750afe92006-10-28 19:27:11 +0000369INLINE int floatx80_lt( floatx80 a, floatx80 b STATUS_PARAM)
bellard158142c2005-03-13 16:54:06 +0000370{
371 return a < b;
372}
bellard750afe92006-10-28 19:27:11 +0000373INLINE int floatx80_eq_signaling( floatx80 a, floatx80 b STATUS_PARAM)
bellard158142c2005-03-13 16:54:06 +0000374{
bellardb109f9f2005-03-20 10:33:58 +0000375 return a <= b && a >= b;
bellard158142c2005-03-13 16:54:06 +0000376}
bellard750afe92006-10-28 19:27:11 +0000377INLINE int floatx80_le_quiet( floatx80 a, floatx80 b STATUS_PARAM)
bellard158142c2005-03-13 16:54:06 +0000378{
379 return islessequal(a, b);
380}
bellard750afe92006-10-28 19:27:11 +0000381INLINE int floatx80_lt_quiet( floatx80 a, floatx80 b STATUS_PARAM)
bellard158142c2005-03-13 16:54:06 +0000382{
383 return isless(a, b);
384
385}
bellard750afe92006-10-28 19:27:11 +0000386INLINE int floatx80_unordered( floatx80 a, floatx80 b STATUS_PARAM)
bellardb109f9f2005-03-20 10:33:58 +0000387{
388 return isunordered(a, b);
389
390}
bellard750afe92006-10-28 19:27:11 +0000391int floatx80_compare( floatx80, floatx80 STATUS_PARAM );
392int floatx80_compare_quiet( floatx80, floatx80 STATUS_PARAM );
393int floatx80_is_signaling_nan( floatx80 );
bellard158142c2005-03-13 16:54:06 +0000394
395INLINE floatx80 floatx80_abs(floatx80 a)
396{
397 return fabsl(a);
398}
399
400INLINE floatx80 floatx80_chs(floatx80 a)
401{
402 return -a;
403}
pbrook9ee6e8b2007-11-11 00:04:49 +0000404
405INLINE floatx80 floatx80_scalbn(floatx80 a, int n)
406{
407 return scalbnl(a, n);
408}
409
bellard158142c2005-03-13 16:54:06 +0000410#endif