Can't boot from the u-boot.bin file in current directory
[qemu/mini2440.git] / fpu / softfloat-native.c
blob2af07a3f8f987df26067cffef1359b7cd7437da6
1 /* Native implementation of soft float functions. Only a single status
2 context is supported */
3 #include "softfloat.h"
4 #include <math.h>
5 #if defined(HOST_SOLARIS)
6 #include <fenv.h>
7 #endif
9 void set_float_rounding_mode(int val STATUS_PARAM)
11 STATUS(float_rounding_mode) = val;
12 #if defined(HOST_BSD) && !defined(__APPLE__) || \
13 (defined(HOST_SOLARIS) && HOST_SOLARIS < 10)
14 fpsetround(val);
15 #elif defined(__arm__)
16 /* nothing to do */
17 #else
18 fesetround(val);
19 #endif
22 #ifdef FLOATX80
23 void set_floatx80_rounding_precision(int val STATUS_PARAM)
25 STATUS(floatx80_rounding_precision) = val;
27 #endif
29 #if defined(HOST_BSD) || (defined(HOST_SOLARIS) && HOST_SOLARIS < 10)
30 #define lrint(d) ((int32_t)rint(d))
31 #define llrint(d) ((int64_t)rint(d))
32 #define lrintf(f) ((int32_t)rint(f))
33 #define llrintf(f) ((int64_t)rint(f))
34 #define sqrtf(f) ((float)sqrt(f))
35 #define remainderf(fa, fb) ((float)remainder(fa, fb))
36 #define rintf(f) ((float)rint(f))
37 #if !defined(__sparc__) && defined(HOST_SOLARIS) && HOST_SOLARIS < 10
38 extern long double rintl(long double);
39 extern long double scalbnl(long double, int);
41 long long
42 llrintl(long double x) {
43 return ((long long) rintl(x));
46 long
47 lrintl(long double x) {
48 return ((long) rintl(x));
51 long double
52 ldexpl(long double x, int n) {
53 return (scalbnl(x, n));
55 #endif
56 #endif
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;
64 if (fabs(x) >= y)
65 return x;
66 if (x < 0)
67 y = -y;
68 y = (x + y) - y;
69 if (y == 0.0)
70 y = copysign(y, x);
71 return y;
74 #define rint qemu_rint
75 #endif
77 /*----------------------------------------------------------------------------
78 | Software IEC/IEEE integer-to-floating-point conversion routines.
79 *----------------------------------------------------------------------------*/
80 float32 int32_to_float32(int v STATUS_PARAM)
82 return (float32)v;
85 float32 uint32_to_float32(unsigned int v STATUS_PARAM)
87 return (float32)v;
90 float64 int32_to_float64(int v STATUS_PARAM)
92 return (float64)v;
95 float64 uint32_to_float64(unsigned int v STATUS_PARAM)
97 return (float64)v;
100 #ifdef FLOATX80
101 floatx80 int32_to_floatx80(int v STATUS_PARAM)
103 return (floatx80)v;
105 #endif
106 float32 int64_to_float32( int64_t v STATUS_PARAM)
108 return (float32)v;
110 float32 uint64_to_float32( uint64_t v STATUS_PARAM)
112 return (float32)v;
114 float64 int64_to_float64( int64_t v STATUS_PARAM)
116 return (float64)v;
118 float64 uint64_to_float64( uint64_t v STATUS_PARAM)
120 return (float64)v;
122 #ifdef FLOATX80
123 floatx80 int64_to_floatx80( int64_t v STATUS_PARAM)
125 return (floatx80)v;
127 #endif
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)
133 return a;
135 #else
136 static inline int long_to_int32(long a)
138 if (a != (int32_t)a)
139 a = 0x80000000;
140 return a;
142 #endif
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)
153 return (int)a;
155 int64_t float32_to_int64( float32 a STATUS_PARAM)
157 return llrintf(a);
160 int64_t float32_to_int64_round_to_zero( float32 a STATUS_PARAM)
162 return (int64_t)a;
165 float64 float32_to_float64( float32 a STATUS_PARAM)
167 return a;
169 #ifdef FLOATX80
170 floatx80 float32_to_floatx80( float32 a STATUS_PARAM)
172 return a;
174 #endif
176 unsigned int float32_to_uint32( float32 a STATUS_PARAM)
178 int64_t v;
179 unsigned int res;
181 v = llrintf(a);
182 if (v < 0) {
183 res = 0;
184 } else if (v > 0xffffffff) {
185 res = 0xffffffff;
186 } else {
187 res = v;
189 return res;
191 unsigned int float32_to_uint32_round_to_zero( float32 a STATUS_PARAM)
193 int64_t v;
194 unsigned int res;
196 v = (int64_t)a;
197 if (v < 0) {
198 res = 0;
199 } else if (v > 0xffffffff) {
200 res = 0xffffffff;
201 } else {
202 res = v;
204 return res;
207 /*----------------------------------------------------------------------------
208 | Software IEC/IEEE single-precision operations.
209 *----------------------------------------------------------------------------*/
210 float32 float32_round_to_int( float32 a STATUS_PARAM)
212 return rintf(a);
215 float32 float32_rem( float32 a, float32 b STATUS_PARAM)
217 return remainderf(a, b);
220 float32 float32_sqrt( float32 a STATUS_PARAM)
222 return sqrtf(a);
224 int float32_compare( float32 a, float32 b STATUS_PARAM )
226 if (a < b) {
227 return float_relation_less;
228 } else if (a == b) {
229 return float_relation_equal;
230 } else if (a > b) {
231 return float_relation_greater;
232 } else {
233 return float_relation_unordered;
236 int float32_compare_quiet( float32 a, float32 b STATUS_PARAM )
238 if (isless(a, b)) {
239 return float_relation_less;
240 } else if (a == b) {
241 return float_relation_equal;
242 } else if (isgreater(a, b)) {
243 return float_relation_greater;
244 } else {
245 return float_relation_unordered;
248 int float32_is_signaling_nan( float32 a1)
250 float32u u;
251 uint32_t a;
252 u.f = a1;
253 a = u.i;
254 return ( ( ( a>>22 ) & 0x1FF ) == 0x1FE ) && ( a & 0x003FFFFF );
257 int float32_is_nan( float32 a1 )
259 float32u u;
260 uint64_t a;
261 u.f = a1;
262 a = u.i;
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)
275 return (int)a;
277 int64_t float64_to_int64( float64 a STATUS_PARAM)
279 return llrint(a);
281 int64_t float64_to_int64_round_to_zero( float64 a STATUS_PARAM)
283 return (int64_t)a;
285 float32 float64_to_float32( float64 a STATUS_PARAM)
287 return a;
289 #ifdef FLOATX80
290 floatx80 float64_to_floatx80( float64 a STATUS_PARAM)
292 return a;
294 #endif
295 #ifdef FLOAT128
296 float128 float64_to_float128( float64 a STATUS_PARAM)
298 return a;
300 #endif
302 unsigned int float64_to_uint32( float64 a STATUS_PARAM)
304 int64_t v;
305 unsigned int res;
307 v = llrint(a);
308 if (v < 0) {
309 res = 0;
310 } else if (v > 0xffffffff) {
311 res = 0xffffffff;
312 } else {
313 res = v;
315 return res;
317 unsigned int float64_to_uint32_round_to_zero( float64 a STATUS_PARAM)
319 int64_t v;
320 unsigned int res;
322 v = (int64_t)a;
323 if (v < 0) {
324 res = 0;
325 } else if (v > 0xffffffff) {
326 res = 0xffffffff;
327 } else {
328 res = v;
330 return res;
332 uint64_t float64_to_uint64 (float64 a STATUS_PARAM)
334 int64_t v;
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)
342 int64_t v;
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__) && defined(HOST_SOLARIS) && HOST_SOLARIS < 10
353 static inline float64 trunc(float64 x)
355 return x < 0 ? -floor(-x) : floor(x);
357 #endif
358 float64 float64_trunc_to_int( float64 a STATUS_PARAM )
360 return trunc(a);
363 float64 float64_round_to_int( float64 a STATUS_PARAM )
365 #if defined(__arm__)
366 switch(STATUS(float_rounding_mode)) {
367 default:
368 case float_round_nearest_even:
369 asm("rndd %0, %1" : "=f" (a) : "f"(a));
370 break;
371 case float_round_down:
372 asm("rnddm %0, %1" : "=f" (a) : "f"(a));
373 break;
374 case float_round_up:
375 asm("rnddp %0, %1" : "=f" (a) : "f"(a));
376 break;
377 case float_round_to_zero:
378 asm("rnddz %0, %1" : "=f" (a) : "f"(a));
379 break;
381 #else
382 return rint(a);
383 #endif
386 float64 float64_rem( float64 a, float64 b STATUS_PARAM)
388 return remainder(a, b);
391 float64 float64_sqrt( float64 a STATUS_PARAM)
393 return sqrt(a);
395 int float64_compare( float64 a, float64 b STATUS_PARAM )
397 if (a < b) {
398 return float_relation_less;
399 } else if (a == b) {
400 return float_relation_equal;
401 } else if (a > b) {
402 return float_relation_greater;
403 } else {
404 return float_relation_unordered;
407 int float64_compare_quiet( float64 a, float64 b STATUS_PARAM )
409 if (isless(a, b)) {
410 return float_relation_less;
411 } else if (a == b) {
412 return float_relation_equal;
413 } else if (isgreater(a, b)) {
414 return float_relation_greater;
415 } else {
416 return float_relation_unordered;
419 int float64_is_signaling_nan( float64 a1)
421 float64u u;
422 uint64_t a;
423 u.f = a1;
424 a = u.i;
425 return
426 ( ( ( a>>51 ) & 0xFFF ) == 0xFFE )
427 && ( a & LIT64( 0x0007FFFFFFFFFFFF ) );
431 int float64_is_nan( float64 a1 )
433 float64u u;
434 uint64_t a;
435 u.f = a1;
436 a = u.i;
438 return ( LIT64( 0xFFF0000000000000 ) < (bits64) ( a<<1 ) );
442 #ifdef FLOATX80
444 /*----------------------------------------------------------------------------
445 | Software IEC/IEEE extended double-precision conversion routines.
446 *----------------------------------------------------------------------------*/
447 int floatx80_to_int32( floatx80 a STATUS_PARAM)
449 return long_to_int32(lrintl(a));
451 int floatx80_to_int32_round_to_zero( floatx80 a STATUS_PARAM)
453 return (int)a;
455 int64_t floatx80_to_int64( floatx80 a STATUS_PARAM)
457 return llrintl(a);
459 int64_t floatx80_to_int64_round_to_zero( floatx80 a STATUS_PARAM)
461 return (int64_t)a;
463 float32 floatx80_to_float32( floatx80 a STATUS_PARAM)
465 return a;
467 float64 floatx80_to_float64( floatx80 a STATUS_PARAM)
469 return a;
472 /*----------------------------------------------------------------------------
473 | Software IEC/IEEE extended double-precision operations.
474 *----------------------------------------------------------------------------*/
475 floatx80 floatx80_round_to_int( floatx80 a STATUS_PARAM)
477 return rintl(a);
479 floatx80 floatx80_rem( floatx80 a, floatx80 b STATUS_PARAM)
481 return remainderl(a, b);
483 floatx80 floatx80_sqrt( floatx80 a STATUS_PARAM)
485 return sqrtl(a);
487 int floatx80_compare( floatx80 a, floatx80 b STATUS_PARAM )
489 if (a < b) {
490 return float_relation_less;
491 } else if (a == b) {
492 return float_relation_equal;
493 } else if (a > b) {
494 return float_relation_greater;
495 } else {
496 return float_relation_unordered;
499 int floatx80_compare_quiet( floatx80 a, floatx80 b STATUS_PARAM )
501 if (isless(a, b)) {
502 return float_relation_less;
503 } else if (a == b) {
504 return float_relation_equal;
505 } else if (isgreater(a, b)) {
506 return float_relation_greater;
507 } else {
508 return float_relation_unordered;
511 int floatx80_is_signaling_nan( floatx80 a1)
513 floatx80u u;
514 uint64_t aLow;
515 u.f = a1;
517 aLow = u.i.low & ~ LIT64( 0x4000000000000000 );
518 return
519 ( ( u.i.high & 0x7FFF ) == 0x7FFF )
520 && (bits64) ( aLow<<1 )
521 && ( u.i.low == aLow );
524 int floatx80_is_nan( floatx80 a1 )
526 floatx80u u;
527 u.f = a1;
528 return ( ( u.i.high & 0x7FFF ) == 0x7FFF ) && (bits64) ( u.i.low<<1 );
531 #endif