1 /* Native implementation of soft float functions. Only a single status
2 context is supported */
5 #if defined(CONFIG_SOLARIS)
9 void set_float_rounding_mode(int val STATUS_PARAM
)
11 STATUS(float_rounding_mode
) = val
;
12 #if (defined(CONFIG_BSD) && !defined(__APPLE__) && !defined(__GLIBC__)) || \
13 (defined(CONFIG_SOLARIS) && CONFIG_SOLARIS_VERSION < 10)
21 void set_floatx80_rounding_precision(int val STATUS_PARAM
)
23 STATUS(floatx80_rounding_precision
) = val
;
27 #if defined(CONFIG_BSD) || \
28 (defined(CONFIG_SOLARIS) && CONFIG_SOLARIS_VERSION < 10)
29 #define lrint(d) ((int32_t)rint(d))
30 #define llrint(d) ((int64_t)rint(d))
31 #define lrintf(f) ((int32_t)rint(f))
32 #define llrintf(f) ((int64_t)rint(f))
33 #define sqrtf(f) ((float)sqrt(f))
34 #define remainderf(fa, fb) ((float)remainder(fa, fb))
35 #define rintf(f) ((float)rint(f))
36 #if !defined(__sparc__) && \
37 (defined(CONFIG_SOLARIS) && CONFIG_SOLARIS_VERSION < 10)
38 extern long double rintl(long double);
39 extern long double scalbnl(long double, int);
42 llrintl(long double x
) {
43 return ((long long) rintl(x
));
47 lrintl(long double x
) {
48 return ((long) rintl(x
));
52 ldexpl(long double x
, int n
) {
53 return (scalbnl(x
, n
));
58 #if defined(_ARCH_PPC)
60 /* correct (but slow) PowerPC rint() (glibc version is incorrect) */
61 static double qemu_rint(double x
)
63 double y
= 4503599627370496.0;
74 #define rint qemu_rint
77 /*----------------------------------------------------------------------------
78 | Software IEC/IEEE integer-to-floating-point conversion routines.
79 *----------------------------------------------------------------------------*/
80 float32
int32_to_float32(int v STATUS_PARAM
)
85 float32
uint32_to_float32(unsigned int v STATUS_PARAM
)
90 float64
int32_to_float64(int v STATUS_PARAM
)
95 float64
uint32_to_float64(unsigned int v STATUS_PARAM
)
101 floatx80
int32_to_floatx80(int v STATUS_PARAM
)
106 float32
int64_to_float32( int64_t v STATUS_PARAM
)
110 float32
uint64_to_float32( uint64_t v STATUS_PARAM
)
114 float64
int64_to_float64( int64_t v STATUS_PARAM
)
118 float64
uint64_to_float64( uint64_t v STATUS_PARAM
)
123 floatx80
int64_to_floatx80( int64_t v STATUS_PARAM
)
129 /* XXX: this code implements the x86 behaviour, not the IEEE one. */
130 #if HOST_LONG_BITS == 32
131 static inline int long_to_int32(long a
)
136 static inline int long_to_int32(long a
)
144 /*----------------------------------------------------------------------------
145 | Software IEC/IEEE single-precision conversion routines.
146 *----------------------------------------------------------------------------*/
147 int float32_to_int32( float32 a STATUS_PARAM
)
149 return long_to_int32(lrintf(a
));
151 int float32_to_int32_round_to_zero( float32 a STATUS_PARAM
)
155 int64_t float32_to_int64( float32 a STATUS_PARAM
)
160 int64_t float32_to_int64_round_to_zero( float32 a STATUS_PARAM
)
165 float64
float32_to_float64( float32 a STATUS_PARAM
)
170 floatx80
float32_to_floatx80( float32 a STATUS_PARAM
)
176 unsigned int float32_to_uint32( float32 a STATUS_PARAM
)
184 } else if (v
> 0xffffffff) {
191 unsigned int float32_to_uint32_round_to_zero( float32 a STATUS_PARAM
)
199 } else if (v
> 0xffffffff) {
207 /*----------------------------------------------------------------------------
208 | Software IEC/IEEE single-precision operations.
209 *----------------------------------------------------------------------------*/
210 float32
float32_round_to_int( float32 a STATUS_PARAM
)
215 float32
float32_rem( float32 a
, float32 b STATUS_PARAM
)
217 return remainderf(a
, b
);
220 float32
float32_sqrt( float32 a STATUS_PARAM
)
224 int float32_compare( float32 a
, float32 b STATUS_PARAM
)
227 return float_relation_less
;
229 return float_relation_equal
;
231 return float_relation_greater
;
233 return float_relation_unordered
;
236 int float32_compare_quiet( float32 a
, float32 b STATUS_PARAM
)
239 return float_relation_less
;
241 return float_relation_equal
;
242 } else if (isgreater(a
, b
)) {
243 return float_relation_greater
;
245 return float_relation_unordered
;
248 int float32_is_signaling_nan( float32 a1
)
254 return ( ( ( a
>>22 ) & 0x1FF ) == 0x1FE ) && ( a
& 0x003FFFFF );
257 int float32_is_quiet_nan( float32 a1
)
263 return ( 0xFF800000 < ( a
<<1 ) );
266 /*----------------------------------------------------------------------------
267 | Software IEC/IEEE double-precision conversion routines.
268 *----------------------------------------------------------------------------*/
269 int float64_to_int32( float64 a STATUS_PARAM
)
271 return long_to_int32(lrint(a
));
273 int float64_to_int32_round_to_zero( float64 a STATUS_PARAM
)
277 int64_t float64_to_int64( float64 a STATUS_PARAM
)
281 int64_t float64_to_int64_round_to_zero( float64 a STATUS_PARAM
)
285 float32
float64_to_float32( float64 a STATUS_PARAM
)
290 floatx80
float64_to_floatx80( float64 a STATUS_PARAM
)
296 float128
float64_to_float128( float64 a STATUS_PARAM
)
302 unsigned int float64_to_uint32( float64 a STATUS_PARAM
)
310 } else if (v
> 0xffffffff) {
317 unsigned int float64_to_uint32_round_to_zero( float64 a STATUS_PARAM
)
325 } else if (v
> 0xffffffff) {
332 uint64_t float64_to_uint64 (float64 a STATUS_PARAM
)
336 v
= llrint(a
+ (float64
)INT64_MIN
);
338 return v
- INT64_MIN
;
340 uint64_t float64_to_uint64_round_to_zero (float64 a STATUS_PARAM
)
344 v
= (int64_t)(a
+ (float64
)INT64_MIN
);
346 return v
- INT64_MIN
;
349 /*----------------------------------------------------------------------------
350 | Software IEC/IEEE double-precision operations.
351 *----------------------------------------------------------------------------*/
352 #if defined(__sun__) && \
353 (defined(CONFIG_SOLARIS) && CONFIG_SOLARIS_VERSION < 10)
354 static inline float64
trunc(float64 x
)
356 return x
< 0 ? -floor(-x
) : floor(x
);
359 float64
float64_trunc_to_int( float64 a STATUS_PARAM
)
364 float64
float64_round_to_int( float64 a STATUS_PARAM
)
369 float64
float64_rem( float64 a
, float64 b STATUS_PARAM
)
371 return remainder(a
, b
);
374 float64
float64_sqrt( float64 a STATUS_PARAM
)
378 int float64_compare( float64 a
, float64 b STATUS_PARAM
)
381 return float_relation_less
;
383 return float_relation_equal
;
385 return float_relation_greater
;
387 return float_relation_unordered
;
390 int float64_compare_quiet( float64 a
, float64 b STATUS_PARAM
)
393 return float_relation_less
;
395 return float_relation_equal
;
396 } else if (isgreater(a
, b
)) {
397 return float_relation_greater
;
399 return float_relation_unordered
;
402 int float64_is_signaling_nan( float64 a1
)
409 ( ( ( a
>>51 ) & 0xFFF ) == 0xFFE )
410 && ( a
& LIT64( 0x0007FFFFFFFFFFFF ) );
414 int float64_is_quiet_nan( float64 a1
)
421 return ( LIT64( 0xFFF0000000000000 ) < (bits64
) ( a
<<1 ) );
427 /*----------------------------------------------------------------------------
428 | Software IEC/IEEE extended double-precision conversion routines.
429 *----------------------------------------------------------------------------*/
430 int floatx80_to_int32( floatx80 a STATUS_PARAM
)
432 return long_to_int32(lrintl(a
));
434 int floatx80_to_int32_round_to_zero( floatx80 a STATUS_PARAM
)
438 int64_t floatx80_to_int64( floatx80 a STATUS_PARAM
)
442 int64_t floatx80_to_int64_round_to_zero( floatx80 a STATUS_PARAM
)
446 float32
floatx80_to_float32( floatx80 a STATUS_PARAM
)
450 float64
floatx80_to_float64( floatx80 a STATUS_PARAM
)
455 /*----------------------------------------------------------------------------
456 | Software IEC/IEEE extended double-precision operations.
457 *----------------------------------------------------------------------------*/
458 floatx80
floatx80_round_to_int( floatx80 a STATUS_PARAM
)
462 floatx80
floatx80_rem( floatx80 a
, floatx80 b STATUS_PARAM
)
464 return remainderl(a
, b
);
466 floatx80
floatx80_sqrt( floatx80 a STATUS_PARAM
)
470 int floatx80_compare( floatx80 a
, floatx80 b STATUS_PARAM
)
473 return float_relation_less
;
475 return float_relation_equal
;
477 return float_relation_greater
;
479 return float_relation_unordered
;
482 int floatx80_compare_quiet( floatx80 a
, floatx80 b STATUS_PARAM
)
485 return float_relation_less
;
487 return float_relation_equal
;
488 } else if (isgreater(a
, b
)) {
489 return float_relation_greater
;
491 return float_relation_unordered
;
494 int floatx80_is_signaling_nan( floatx80 a1
)
500 aLow
= u
.i
.low
& ~ LIT64( 0x4000000000000000 );
502 ( ( u
.i
.high
& 0x7FFF ) == 0x7FFF )
503 && (bits64
) ( aLow
<<1 )
504 && ( u
.i
.low
== aLow
);
507 int floatx80_is_quiet_nan( floatx80 a1
)
511 return ( ( u
.i
.high
& 0x7FFF ) == 0x7FFF ) && (bits64
) ( u
.i
.low
<<1 );