1 /* Native implementation of soft float functions */
4 #if (defined(CONFIG_BSD) && !defined(__APPLE__) && !defined(__GLIBC__)) \
5 || defined(CONFIG_SOLARIS)
7 #define fabsf(f) ((float)fabs(f))
12 #if defined(__OpenBSD__) || defined(__NetBSD__)
13 #include <sys/param.h>
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
23 #if defined(CONFIG_SOLARIS) && \
24 ((CONFIG_SOLARIS_VERSION <= 9 ) || \
25 ((CONFIG_SOLARIS_VERSION == 10) && (__GNUC__ < 4))) \
26 || (defined(__OpenBSD__) && (OpenBSD < 200811))
28 * C99 7.12.3 classification macros
30 * C99 7.12.14 comparison macros
32 * ... do not work on Solaris 10 using GNU CC 3.4.x.
33 * Try to workaround the missing / broken C99 math macros.
35 #if defined(__OpenBSD__)
36 #define unordered(x, y) (isnan(x) || isnan(y))
41 #define isgreater(x, y) __builtin_isgreater(x, y)
43 #ifndef isgreaterequal
44 #define isgreaterequal(x, y) __builtin_isgreaterequal(x, y)
47 #define isless(x, y) __builtin_isless(x, y)
50 #define islessequal(x, y) __builtin_islessequal(x, y)
53 #define isunordered(x, y) __builtin_isunordered(x, y)
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)
66 #if defined(__sun__) && !defined(CONFIG_NEEDS_LIBSUNMATH)
70 (sizeof (x) == sizeof (long double) ? isnan_ld (x) \
71 : sizeof (x) == sizeof (double) ? isnan_d (x) \
73 static inline int isnan_f (float x
) { return x
!= x
; }
74 static inline int isnan_d (double x
) { return x
!= x
; }
75 static inline int isnan_ld (long double x
) { return x
!= x
; }
80 (sizeof (x) == sizeof (long double) ? isinf_ld (x) \
81 : sizeof (x) == sizeof (double) ? isinf_d (x) \
83 static inline int isinf_f (float x
) { return isnan (x
- x
); }
84 static inline int isinf_d (double x
) { return isnan (x
- x
); }
85 static inline int isinf_ld (long double x
) { return isnan (x
- x
); }
89 typedef float float32
;
90 typedef double float64
;
92 typedef long double floatx80
;
113 /*----------------------------------------------------------------------------
114 | Software IEC/IEEE floating-point rounding mode.
115 *----------------------------------------------------------------------------*/
116 #if (defined(CONFIG_BSD) && !defined(__APPLE__) && !defined(__GLIBC__)) \
117 || defined(CONFIG_SOLARIS)
118 #if defined(__OpenBSD__)
124 float_round_nearest_even
= FP_RN
,
125 float_round_down
= FP_RM
,
126 float_round_up
= FP_RP
,
127 float_round_to_zero
= FP_RZ
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
138 typedef struct float_status
{
139 int float_rounding_mode
;
141 int floatx80_rounding_precision
;
145 void set_float_rounding_mode(int val STATUS_PARAM
);
147 void set_floatx80_rounding_precision(int val STATUS_PARAM
);
150 /*----------------------------------------------------------------------------
151 | Software IEC/IEEE integer-to-floating-point conversion routines.
152 *----------------------------------------------------------------------------*/
153 float32
int32_to_float32( int STATUS_PARAM
);
154 float32
uint32_to_float32( unsigned int STATUS_PARAM
);
155 float64
int32_to_float64( int STATUS_PARAM
);
156 float64
uint32_to_float64( unsigned int STATUS_PARAM
);
158 floatx80
int32_to_floatx80( int STATUS_PARAM
);
161 float128
int32_to_float128( int STATUS_PARAM
);
163 float32
int64_to_float32( int64_t STATUS_PARAM
);
164 float32
uint64_to_float32( uint64_t STATUS_PARAM
);
165 float64
int64_to_float64( int64_t STATUS_PARAM
);
166 float64
uint64_to_float64( uint64_t v STATUS_PARAM
);
168 floatx80
int64_to_floatx80( int64_t STATUS_PARAM
);
171 float128
int64_to_float128( int64_t STATUS_PARAM
);
174 /*----------------------------------------------------------------------------
175 | Software IEC/IEEE single-precision conversion routines.
176 *----------------------------------------------------------------------------*/
177 int float32_to_int32( float32 STATUS_PARAM
);
178 int float32_to_int32_round_to_zero( float32 STATUS_PARAM
);
179 unsigned int float32_to_uint32( float32 a STATUS_PARAM
);
180 unsigned int float32_to_uint32_round_to_zero( float32 a STATUS_PARAM
);
181 int64_t float32_to_int64( float32 STATUS_PARAM
);
182 int64_t float32_to_int64_round_to_zero( float32 STATUS_PARAM
);
183 float64
float32_to_float64( float32 STATUS_PARAM
);
185 floatx80
float32_to_floatx80( float32 STATUS_PARAM
);
188 float128
float32_to_float128( float32 STATUS_PARAM
);
191 /*----------------------------------------------------------------------------
192 | Software IEC/IEEE single-precision operations.
193 *----------------------------------------------------------------------------*/
194 float32
float32_round_to_int( float32 STATUS_PARAM
);
195 INLINE float32
float32_add( float32 a
, float32 b STATUS_PARAM
)
199 INLINE float32
float32_sub( float32 a
, float32 b STATUS_PARAM
)
203 INLINE float32
float32_mul( float32 a
, float32 b STATUS_PARAM
)
207 INLINE float32
float32_div( float32 a
, float32 b STATUS_PARAM
)
211 float32
float32_rem( float32
, float32 STATUS_PARAM
);
212 float32
float32_sqrt( float32 STATUS_PARAM
);
213 INLINE
int float32_eq( float32 a
, float32 b STATUS_PARAM
)
217 INLINE
int float32_le( float32 a
, float32 b STATUS_PARAM
)
221 INLINE
int float32_lt( float32 a
, float32 b STATUS_PARAM
)
225 INLINE
int float32_eq_signaling( float32 a
, float32 b STATUS_PARAM
)
227 return a
<= b
&& a
>= b
;
229 INLINE
int float32_le_quiet( float32 a
, float32 b STATUS_PARAM
)
231 return islessequal(a
, b
);
233 INLINE
int float32_lt_quiet( float32 a
, float32 b STATUS_PARAM
)
237 INLINE
int float32_unordered( float32 a
, float32 b STATUS_PARAM
)
239 return isunordered(a
, b
);
242 int float32_compare( float32
, float32 STATUS_PARAM
);
243 int float32_compare_quiet( float32
, float32 STATUS_PARAM
);
244 int float32_is_signaling_nan( float32
);
245 int float32_is_quiet_nan( float32
);
247 INLINE float32
float32_abs(float32 a
)
252 INLINE float32
float32_chs(float32 a
)
257 INLINE float32
float32_is_infinity(float32 a
)
259 return fpclassify(a
) == FP_INFINITE
;
262 INLINE float32
float32_is_neg(float32 a
)
269 INLINE float32
float32_is_zero(float32 a
)
271 return fpclassify(a
) == FP_ZERO
;
274 INLINE float32
float32_scalbn(float32 a
, int n
)
276 return scalbnf(a
, n
);
279 /*----------------------------------------------------------------------------
280 | Software IEC/IEEE double-precision conversion routines.
281 *----------------------------------------------------------------------------*/
282 int float64_to_int32( float64 STATUS_PARAM
);
283 int float64_to_int32_round_to_zero( float64 STATUS_PARAM
);
284 unsigned int float64_to_uint32( float64 STATUS_PARAM
);
285 unsigned int float64_to_uint32_round_to_zero( float64 STATUS_PARAM
);
286 int64_t float64_to_int64( float64 STATUS_PARAM
);
287 int64_t float64_to_int64_round_to_zero( float64 STATUS_PARAM
);
288 uint64_t float64_to_uint64( float64 STATUS_PARAM
);
289 uint64_t float64_to_uint64_round_to_zero( float64 STATUS_PARAM
);
290 float32
float64_to_float32( float64 STATUS_PARAM
);
292 floatx80
float64_to_floatx80( float64 STATUS_PARAM
);
295 float128
float64_to_float128( float64 STATUS_PARAM
);
298 /*----------------------------------------------------------------------------
299 | Software IEC/IEEE double-precision operations.
300 *----------------------------------------------------------------------------*/
301 float64
float64_round_to_int( float64 STATUS_PARAM
);
302 float64
float64_trunc_to_int( float64 STATUS_PARAM
);
303 INLINE float64
float64_add( float64 a
, float64 b STATUS_PARAM
)
307 INLINE float64
float64_sub( float64 a
, float64 b STATUS_PARAM
)
311 INLINE float64
float64_mul( float64 a
, float64 b STATUS_PARAM
)
315 INLINE float64
float64_div( float64 a
, float64 b STATUS_PARAM
)
319 float64
float64_rem( float64
, float64 STATUS_PARAM
);
320 float64
float64_sqrt( float64 STATUS_PARAM
);
321 INLINE
int float64_eq( float64 a
, float64 b STATUS_PARAM
)
325 INLINE
int float64_le( float64 a
, float64 b STATUS_PARAM
)
329 INLINE
int float64_lt( float64 a
, float64 b STATUS_PARAM
)
333 INLINE
int float64_eq_signaling( float64 a
, float64 b STATUS_PARAM
)
335 return a
<= b
&& a
>= b
;
337 INLINE
int float64_le_quiet( float64 a
, float64 b STATUS_PARAM
)
339 return islessequal(a
, b
);
341 INLINE
int float64_lt_quiet( float64 a
, float64 b STATUS_PARAM
)
346 INLINE
int float64_unordered( float64 a
, float64 b STATUS_PARAM
)
348 return isunordered(a
, b
);
351 int float64_compare( float64
, float64 STATUS_PARAM
);
352 int float64_compare_quiet( float64
, float64 STATUS_PARAM
);
353 int float64_is_signaling_nan( float64
);
354 int float64_is_quiet_nan( float64
);
356 INLINE float64
float64_abs(float64 a
)
361 INLINE float64
float64_chs(float64 a
)
366 INLINE float64
float64_is_infinity(float64 a
)
368 return fpclassify(a
) == FP_INFINITE
;
371 INLINE float64
float64_is_neg(float64 a
)
378 INLINE float64
float64_is_zero(float64 a
)
380 return fpclassify(a
) == FP_ZERO
;
383 INLINE float64
float64_scalbn(float64 a
, int n
)
390 /*----------------------------------------------------------------------------
391 | Software IEC/IEEE extended double-precision conversion routines.
392 *----------------------------------------------------------------------------*/
393 int floatx80_to_int32( floatx80 STATUS_PARAM
);
394 int floatx80_to_int32_round_to_zero( floatx80 STATUS_PARAM
);
395 int64_t floatx80_to_int64( floatx80 STATUS_PARAM
);
396 int64_t floatx80_to_int64_round_to_zero( floatx80 STATUS_PARAM
);
397 float32
floatx80_to_float32( floatx80 STATUS_PARAM
);
398 float64
floatx80_to_float64( floatx80 STATUS_PARAM
);
400 float128
floatx80_to_float128( floatx80 STATUS_PARAM
);
403 /*----------------------------------------------------------------------------
404 | Software IEC/IEEE extended double-precision operations.
405 *----------------------------------------------------------------------------*/
406 floatx80
floatx80_round_to_int( floatx80 STATUS_PARAM
);
407 INLINE floatx80
floatx80_add( floatx80 a
, floatx80 b STATUS_PARAM
)
411 INLINE floatx80
floatx80_sub( floatx80 a
, floatx80 b STATUS_PARAM
)
415 INLINE floatx80
floatx80_mul( floatx80 a
, floatx80 b STATUS_PARAM
)
419 INLINE floatx80
floatx80_div( floatx80 a
, floatx80 b STATUS_PARAM
)
423 floatx80
floatx80_rem( floatx80
, floatx80 STATUS_PARAM
);
424 floatx80
floatx80_sqrt( floatx80 STATUS_PARAM
);
425 INLINE
int floatx80_eq( floatx80 a
, floatx80 b STATUS_PARAM
)
429 INLINE
int floatx80_le( floatx80 a
, floatx80 b STATUS_PARAM
)
433 INLINE
int floatx80_lt( floatx80 a
, floatx80 b STATUS_PARAM
)
437 INLINE
int floatx80_eq_signaling( floatx80 a
, floatx80 b STATUS_PARAM
)
439 return a
<= b
&& a
>= b
;
441 INLINE
int floatx80_le_quiet( floatx80 a
, floatx80 b STATUS_PARAM
)
443 return islessequal(a
, b
);
445 INLINE
int floatx80_lt_quiet( floatx80 a
, floatx80 b STATUS_PARAM
)
450 INLINE
int floatx80_unordered( floatx80 a
, floatx80 b STATUS_PARAM
)
452 return isunordered(a
, b
);
455 int floatx80_compare( floatx80
, floatx80 STATUS_PARAM
);
456 int floatx80_compare_quiet( floatx80
, floatx80 STATUS_PARAM
);
457 int floatx80_is_signaling_nan( floatx80
);
458 int floatx80_is_quiet_nan( floatx80
);
460 INLINE floatx80
floatx80_abs(floatx80 a
)
465 INLINE floatx80
floatx80_chs(floatx80 a
)
470 INLINE floatx80
floatx80_is_infinity(floatx80 a
)
472 return fpclassify(a
) == FP_INFINITE
;
475 INLINE floatx80
floatx80_is_neg(floatx80 a
)
479 return u
.i
.high
>> 15;
482 INLINE floatx80
floatx80_is_zero(floatx80 a
)
484 return fpclassify(a
) == FP_ZERO
;
487 INLINE floatx80
floatx80_scalbn(floatx80 a
, int n
)
489 return scalbnl(a
, n
);