]> git.proxmox.com Git - qemu.git/blame - fpu/softfloat-native.h
softfloat: rename float*_eq_signaling() into float*_eq()
[qemu.git] / fpu / softfloat-native.h
CommitLineData
158142c2
FB
1/* Native implementation of soft float functions */
2#include <math.h>
38cfa06c 3
a167ba50
AJ
4#if (defined(CONFIG_BSD) && !defined(__APPLE__) && !defined(__GLIBC__)) \
5 || defined(CONFIG_SOLARIS)
158142c2 6#include <ieeefp.h>
38cfa06c 7#define fabsf(f) ((float)fabs(f))
158142c2
FB
8#else
9#include <fenv.h>
10#endif
38cfa06c 11
d07cca02 12#if defined(__OpenBSD__) || defined(__NetBSD__)
7c2a9d09
BS
13#include <sys/param.h>
14#endif
15
38cfa06c
FB
16/*
17 * Define some C99-7.12.3 classification macros and
18 * some C99-.12.4 for Solaris systems OS less than 10,
19 * or Solaris 10 systems running GCC 3.x or less.
20 * Solaris 10 with GCC4 does not need these macros as they
21 * are defined in <iso/math_c99.h> with a compiler directive
22 */
dfe5fff3
JQ
23#if defined(CONFIG_SOLARIS) && \
24 ((CONFIG_SOLARIS_VERSION <= 9 ) || \
be45f068 25 ((CONFIG_SOLARIS_VERSION == 10) && (__GNUC__ < 4))) \
7c2a9d09 26 || (defined(__OpenBSD__) && (OpenBSD < 200811))
38cfa06c
FB
27/*
28 * C99 7.12.3 classification macros
29 * and
30 * C99 7.12.14 comparison macros
31 *
32 * ... do not work on Solaris 10 using GNU CC 3.4.x.
33 * Try to workaround the missing / broken C99 math macros.
34 */
128ab2ff
BS
35#if defined(__OpenBSD__)
36#define unordered(x, y) (isnan(x) || isnan(y))
37#endif
38cfa06c 38
d07cca02
BS
39#ifdef __NetBSD__
40#ifndef isgreater
41#define isgreater(x, y) __builtin_isgreater(x, y)
42#endif
43#ifndef isgreaterequal
44#define isgreaterequal(x, y) __builtin_isgreaterequal(x, y)
45#endif
46#ifndef isless
47#define isless(x, y) __builtin_isless(x, y)
48#endif
49#ifndef islessequal
50#define islessequal(x, y) __builtin_islessequal(x, y)
51#endif
52#ifndef isunordered
53#define isunordered(x, y) __builtin_isunordered(x, y)
54#endif
55#endif
56
57
38cfa06c
FB
58#define isnormal(x) (fpclass(x) >= FP_NZERO)
59#define isgreater(x, y) ((!unordered(x, y)) && ((x) > (y)))
60#define isgreaterequal(x, y) ((!unordered(x, y)) && ((x) >= (y)))
61#define isless(x, y) ((!unordered(x, y)) && ((x) < (y)))
62#define islessequal(x, y) ((!unordered(x, y)) && ((x) <= (y)))
63#define isunordered(x,y) unordered(x, y)
ec530c81 64#endif
158142c2 65
75b5a697 66#if defined(__sun__) && !defined(CONFIG_NEEDS_LIBSUNMATH)
c94655b0
TS
67
68#ifndef isnan
69# define isnan(x) \
70 (sizeof (x) == sizeof (long double) ? isnan_ld (x) \
71 : sizeof (x) == sizeof (double) ? isnan_d (x) \
72 : isnan_f (x))
73static inline int isnan_f (float x) { return x != x; }
74static inline int isnan_d (double x) { return x != x; }
75static inline int isnan_ld (long double x) { return x != x; }
76#endif
77
78#ifndef isinf
79# define isinf(x) \
80 (sizeof (x) == sizeof (long double) ? isinf_ld (x) \
81 : sizeof (x) == sizeof (double) ? isinf_d (x) \
82 : isinf_f (x))
83static inline int isinf_f (float x) { return isnan (x - x); }
84static inline int isinf_d (double x) { return isnan (x - x); }
85static inline int isinf_ld (long double x) { return isnan (x - x); }
86#endif
87#endif
88
158142c2
FB
89typedef float float32;
90typedef double float64;
91#ifdef FLOATX80
92typedef long double floatx80;
93#endif
94
95typedef union {
96 float32 f;
97 uint32_t i;
98} float32u;
99typedef union {
100 float64 f;
101 uint64_t i;
102} float64u;
103#ifdef FLOATX80
104typedef union {
105 floatx80 f;
106 struct {
107 uint64_t low;
108 uint16_t high;
109 } i;
110} floatx80u;
111#endif
112
113/*----------------------------------------------------------------------------
114| Software IEC/IEEE floating-point rounding mode.
115*----------------------------------------------------------------------------*/
a167ba50
AJ
116#if (defined(CONFIG_BSD) && !defined(__APPLE__) && !defined(__GLIBC__)) \
117 || defined(CONFIG_SOLARIS)
128ab2ff
BS
118#if defined(__OpenBSD__)
119#define FE_RM FP_RM
120#define FE_RP FP_RP
121#define FE_RZ FP_RZ
122#endif
158142c2
FB
123enum {
124 float_round_nearest_even = FP_RN,
7918bf47
PB
125 float_round_down = FP_RM,
126 float_round_up = FP_RP,
127 float_round_to_zero = FP_RZ
158142c2 128};
158142c2
FB
129#else
130enum {
131 float_round_nearest_even = FE_TONEAREST,
132 float_round_down = FE_DOWNWARD,
133 float_round_up = FE_UPWARD,
134 float_round_to_zero = FE_TOWARDZERO
135};
136#endif
137
138typedef struct float_status {
e872aa81 139 int float_rounding_mode;
158142c2 140#ifdef FLOATX80
e872aa81 141 int floatx80_rounding_precision;
158142c2
FB
142#endif
143} float_status;
144
145void set_float_rounding_mode(int val STATUS_PARAM);
146#ifdef FLOATX80
147void set_floatx80_rounding_precision(int val STATUS_PARAM);
148#endif
149
150/*----------------------------------------------------------------------------
151| Software IEC/IEEE integer-to-floating-point conversion routines.
152*----------------------------------------------------------------------------*/
153float32 int32_to_float32( int STATUS_PARAM);
75d62a58 154float32 uint32_to_float32( unsigned int STATUS_PARAM);
158142c2 155float64 int32_to_float64( int STATUS_PARAM);
75d62a58 156float64 uint32_to_float64( unsigned int STATUS_PARAM);
158142c2
FB
157#ifdef FLOATX80
158floatx80 int32_to_floatx80( int STATUS_PARAM);
159#endif
160#ifdef FLOAT128
161float128 int32_to_float128( int STATUS_PARAM);
162#endif
163float32 int64_to_float32( int64_t STATUS_PARAM);
75d62a58 164float32 uint64_to_float32( uint64_t STATUS_PARAM);
158142c2 165float64 int64_to_float64( int64_t STATUS_PARAM);
75d62a58 166float64 uint64_to_float64( uint64_t v STATUS_PARAM);
158142c2
FB
167#ifdef FLOATX80
168floatx80 int64_to_floatx80( int64_t STATUS_PARAM);
169#endif
170#ifdef FLOAT128
171float128 int64_to_float128( int64_t STATUS_PARAM);
172#endif
173
174/*----------------------------------------------------------------------------
175| Software IEC/IEEE single-precision conversion routines.
176*----------------------------------------------------------------------------*/
177int float32_to_int32( float32 STATUS_PARAM);
178int float32_to_int32_round_to_zero( float32 STATUS_PARAM);
75d62a58
JM
179unsigned int float32_to_uint32( float32 a STATUS_PARAM);
180unsigned int float32_to_uint32_round_to_zero( float32 a STATUS_PARAM);
158142c2
FB
181int64_t float32_to_int64( float32 STATUS_PARAM);
182int64_t float32_to_int64_round_to_zero( float32 STATUS_PARAM);
183float64 float32_to_float64( float32 STATUS_PARAM);
184#ifdef FLOATX80
185floatx80 float32_to_floatx80( float32 STATUS_PARAM);
186#endif
187#ifdef FLOAT128
188float128 float32_to_float128( float32 STATUS_PARAM);
189#endif
190
191/*----------------------------------------------------------------------------
192| Software IEC/IEEE single-precision operations.
193*----------------------------------------------------------------------------*/
194float32 float32_round_to_int( float32 STATUS_PARAM);
195INLINE float32 float32_add( float32 a, float32 b STATUS_PARAM)
196{
197 return a + b;
198}
199INLINE float32 float32_sub( float32 a, float32 b STATUS_PARAM)
200{
201 return a - b;
202}
203INLINE float32 float32_mul( float32 a, float32 b STATUS_PARAM)
204{
205 return a * b;
206}
207INLINE float32 float32_div( float32 a, float32 b STATUS_PARAM)
208{
209 return a / b;
210}
211float32 float32_rem( float32, float32 STATUS_PARAM);
212float32 float32_sqrt( float32 STATUS_PARAM);
211315fb 213INLINE int float32_eq_quiet( float32 a, float32 b STATUS_PARAM)
158142c2 214{
158142c2
FB
215 return a == b;
216}
750afe93 217INLINE int float32_le( float32 a, float32 b STATUS_PARAM)
158142c2
FB
218{
219 return a <= b;
220}
750afe93 221INLINE int float32_lt( float32 a, float32 b STATUS_PARAM)
158142c2
FB
222{
223 return a < b;
224}
2657d0ff 225INLINE int float32_eq( float32 a, float32 b STATUS_PARAM)
158142c2 226{
b109f9f8 227 return a <= b && a >= b;
158142c2 228}
750afe93 229INLINE int float32_le_quiet( float32 a, float32 b STATUS_PARAM)
158142c2
FB
230{
231 return islessequal(a, b);
232}
750afe93 233INLINE int float32_lt_quiet( float32 a, float32 b STATUS_PARAM)
158142c2
FB
234{
235 return isless(a, b);
236}
750afe93 237INLINE int float32_unordered( float32 a, float32 b STATUS_PARAM)
b109f9f8
FB
238{
239 return isunordered(a, b);
b4a0ef79
AJ
240}
241INLINE int float32_unordered_quiet( float32 a, float32 b STATUS_PARAM)
242{
243 return isunordered(a, b);
b109f9f8 244}
750afe93
FB
245int float32_compare( float32, float32 STATUS_PARAM );
246int float32_compare_quiet( float32, float32 STATUS_PARAM );
247int float32_is_signaling_nan( float32 );
18569871 248int float32_is_quiet_nan( float32 );
158142c2
FB
249
250INLINE float32 float32_abs(float32 a)
251{
252 return fabsf(a);
253}
254
255INLINE float32 float32_chs(float32 a)
256{
257 return -a;
258}
259
c52ab6f5
AJ
260INLINE float32 float32_is_infinity(float32 a)
261{
262 return fpclassify(a) == FP_INFINITE;
263}
264
265INLINE float32 float32_is_neg(float32 a)
266{
8d6c92b6
AJ
267 float32u u;
268 u.f = a;
269 return u.i >> 31;
c52ab6f5
AJ
270}
271
272INLINE float32 float32_is_zero(float32 a)
273{
274 return fpclassify(a) == FP_ZERO;
275}
276
9ee6e8bb
PB
277INLINE float32 float32_scalbn(float32 a, int n)
278{
279 return scalbnf(a, n);
280}
281
158142c2
FB
282/*----------------------------------------------------------------------------
283| Software IEC/IEEE double-precision conversion routines.
284*----------------------------------------------------------------------------*/
285int float64_to_int32( float64 STATUS_PARAM );
286int float64_to_int32_round_to_zero( float64 STATUS_PARAM );
75d62a58
JM
287unsigned int float64_to_uint32( float64 STATUS_PARAM );
288unsigned int float64_to_uint32_round_to_zero( float64 STATUS_PARAM );
158142c2
FB
289int64_t float64_to_int64( float64 STATUS_PARAM );
290int64_t float64_to_int64_round_to_zero( float64 STATUS_PARAM );
75d62a58
JM
291uint64_t float64_to_uint64( float64 STATUS_PARAM );
292uint64_t float64_to_uint64_round_to_zero( float64 STATUS_PARAM );
158142c2
FB
293float32 float64_to_float32( float64 STATUS_PARAM );
294#ifdef FLOATX80
295floatx80 float64_to_floatx80( float64 STATUS_PARAM );
296#endif
297#ifdef FLOAT128
298float128 float64_to_float128( float64 STATUS_PARAM );
299#endif
300
301/*----------------------------------------------------------------------------
302| Software IEC/IEEE double-precision operations.
303*----------------------------------------------------------------------------*/
304float64 float64_round_to_int( float64 STATUS_PARAM );
e6e5906b 305float64 float64_trunc_to_int( float64 STATUS_PARAM );
158142c2
FB
306INLINE float64 float64_add( float64 a, float64 b STATUS_PARAM)
307{
308 return a + b;
309}
310INLINE float64 float64_sub( float64 a, float64 b STATUS_PARAM)
311{
312 return a - b;
313}
314INLINE float64 float64_mul( float64 a, float64 b STATUS_PARAM)
315{
316 return a * b;
317}
318INLINE float64 float64_div( float64 a, float64 b STATUS_PARAM)
319{
320 return a / b;
321}
322float64 float64_rem( float64, float64 STATUS_PARAM );
323float64 float64_sqrt( float64 STATUS_PARAM );
211315fb 324INLINE int float64_eq_quiet( float64 a, float64 b STATUS_PARAM)
158142c2
FB
325{
326 return a == b;
327}
750afe93 328INLINE int float64_le( float64 a, float64 b STATUS_PARAM)
158142c2
FB
329{
330 return a <= b;
331}
750afe93 332INLINE int float64_lt( float64 a, float64 b STATUS_PARAM)
158142c2
FB
333{
334 return a < b;
335}
2657d0ff 336INLINE int float64_eq( float64 a, float64 b STATUS_PARAM)
158142c2 337{
b109f9f8 338 return a <= b && a >= b;
158142c2 339}
750afe93 340INLINE int float64_le_quiet( float64 a, float64 b STATUS_PARAM)
158142c2
FB
341{
342 return islessequal(a, b);
343}
750afe93 344INLINE int float64_lt_quiet( float64 a, float64 b STATUS_PARAM)
158142c2
FB
345{
346 return isless(a, b);
347
348}
750afe93 349INLINE int float64_unordered( float64 a, float64 b STATUS_PARAM)
b109f9f8
FB
350{
351 return isunordered(a, b);
b4a0ef79
AJ
352}
353INLINE int float64_unordered_quiet( float64 a, float64 b STATUS_PARAM)
354{
355 return isunordered(a, b);
b109f9f8 356}
750afe93
FB
357int float64_compare( float64, float64 STATUS_PARAM );
358int float64_compare_quiet( float64, float64 STATUS_PARAM );
359int float64_is_signaling_nan( float64 );
18569871 360int float64_is_quiet_nan( float64 );
158142c2
FB
361
362INLINE float64 float64_abs(float64 a)
363{
364 return fabs(a);
365}
366
367INLINE float64 float64_chs(float64 a)
368{
369 return -a;
370}
371
c52ab6f5
AJ
372INLINE float64 float64_is_infinity(float64 a)
373{
374 return fpclassify(a) == FP_INFINITE;
375}
376
377INLINE float64 float64_is_neg(float64 a)
378{
8d6c92b6
AJ
379 float64u u;
380 u.f = a;
381 return u.i >> 63;
c52ab6f5
AJ
382}
383
384INLINE float64 float64_is_zero(float64 a)
385{
386 return fpclassify(a) == FP_ZERO;
387}
388
9ee6e8bb
PB
389INLINE float64 float64_scalbn(float64 a, int n)
390{
391 return scalbn(a, n);
392}
393
158142c2
FB
394#ifdef FLOATX80
395
396/*----------------------------------------------------------------------------
397| Software IEC/IEEE extended double-precision conversion routines.
398*----------------------------------------------------------------------------*/
399int floatx80_to_int32( floatx80 STATUS_PARAM );
400int floatx80_to_int32_round_to_zero( floatx80 STATUS_PARAM );
401int64_t floatx80_to_int64( floatx80 STATUS_PARAM);
402int64_t floatx80_to_int64_round_to_zero( floatx80 STATUS_PARAM);
403float32 floatx80_to_float32( floatx80 STATUS_PARAM );
404float64 floatx80_to_float64( floatx80 STATUS_PARAM );
405#ifdef FLOAT128
406float128 floatx80_to_float128( floatx80 STATUS_PARAM );
407#endif
408
409/*----------------------------------------------------------------------------
410| Software IEC/IEEE extended double-precision operations.
411*----------------------------------------------------------------------------*/
412floatx80 floatx80_round_to_int( floatx80 STATUS_PARAM );
413INLINE floatx80 floatx80_add( floatx80 a, floatx80 b STATUS_PARAM)
414{
415 return a + b;
416}
417INLINE floatx80 floatx80_sub( floatx80 a, floatx80 b STATUS_PARAM)
418{
419 return a - b;
420}
421INLINE floatx80 floatx80_mul( floatx80 a, floatx80 b STATUS_PARAM)
422{
423 return a * b;
424}
425INLINE floatx80 floatx80_div( floatx80 a, floatx80 b STATUS_PARAM)
426{
427 return a / b;
428}
429floatx80 floatx80_rem( floatx80, floatx80 STATUS_PARAM );
430floatx80 floatx80_sqrt( floatx80 STATUS_PARAM );
211315fb 431INLINE int floatx80_eq_quiet( floatx80 a, floatx80 b STATUS_PARAM)
158142c2
FB
432{
433 return a == b;
434}
750afe93 435INLINE int floatx80_le( floatx80 a, floatx80 b STATUS_PARAM)
158142c2
FB
436{
437 return a <= b;
438}
750afe93 439INLINE int floatx80_lt( floatx80 a, floatx80 b STATUS_PARAM)
158142c2
FB
440{
441 return a < b;
442}
2657d0ff 443INLINE int floatx80_eq( floatx80 a, floatx80 b STATUS_PARAM)
158142c2 444{
b109f9f8 445 return a <= b && a >= b;
158142c2 446}
750afe93 447INLINE int floatx80_le_quiet( floatx80 a, floatx80 b STATUS_PARAM)
158142c2
FB
448{
449 return islessequal(a, b);
450}
750afe93 451INLINE int floatx80_lt_quiet( floatx80 a, floatx80 b STATUS_PARAM)
158142c2
FB
452{
453 return isless(a, b);
454
455}
750afe93 456INLINE int floatx80_unordered( floatx80 a, floatx80 b STATUS_PARAM)
b109f9f8
FB
457{
458 return isunordered(a, b);
b4a0ef79
AJ
459}
460INLINE int floatx80_unordered_quiet( floatx80 a, floatx80 b STATUS_PARAM)
461{
462 return isunordered(a, b);
b109f9f8 463}
750afe93
FB
464int floatx80_compare( floatx80, floatx80 STATUS_PARAM );
465int floatx80_compare_quiet( floatx80, floatx80 STATUS_PARAM );
466int floatx80_is_signaling_nan( floatx80 );
18569871 467int floatx80_is_quiet_nan( floatx80 );
158142c2
FB
468
469INLINE floatx80 floatx80_abs(floatx80 a)
470{
471 return fabsl(a);
472}
473
474INLINE floatx80 floatx80_chs(floatx80 a)
475{
476 return -a;
477}
9ee6e8bb 478
c52ab6f5
AJ
479INLINE floatx80 floatx80_is_infinity(floatx80 a)
480{
481 return fpclassify(a) == FP_INFINITE;
482}
483
484INLINE floatx80 floatx80_is_neg(floatx80 a)
485{
8d6c92b6
AJ
486 floatx80u u;
487 u.f = a;
488 return u.i.high >> 15;
c52ab6f5
AJ
489}
490
491INLINE floatx80 floatx80_is_zero(floatx80 a)
492{
493 return fpclassify(a) == FP_ZERO;
494}
495
9ee6e8bb
PB
496INLINE floatx80 floatx80_scalbn(floatx80 a, int n)
497{
498 return scalbnl(a, n);
499}
500
158142c2 501#endif