Edward O'Callaghan | 4856eef | 2009-08-05 04:02:56 +0000 | [diff] [blame] | 1 | /* ===-- fixunssfdi.c - Implement __fixunssfdi -----------------------------=== |
| 2 | * |
| 3 | * The LLVM Compiler Infrastructure |
| 4 | * |
Howard Hinnant | 5b791f6 | 2010-11-16 22:13:33 +0000 | [diff] [blame] | 5 | * This file is dual licensed under the MIT and the University of Illinois Open |
| 6 | * Source Licenses. See LICENSE.TXT for details. |
Edward O'Callaghan | 4856eef | 2009-08-05 04:02:56 +0000 | [diff] [blame] | 7 | * |
| 8 | * ===----------------------------------------------------------------------=== |
Edward O'Callaghan | 4856eef | 2009-08-05 04:02:56 +0000 | [diff] [blame] | 9 | */ |
Daniel Dunbar | fd08999 | 2009-06-26 16:47:03 +0000 | [diff] [blame] | 10 | |
Joerg Sonnenberger | 91bd698 | 2015-03-11 21:13:56 +0000 | [diff] [blame] | 11 | #define SINGLE_PRECISION |
| 12 | #include "fp_lib.h" |
Daniel Dunbar | fd08999 | 2009-06-26 16:47:03 +0000 | [diff] [blame] | 13 | |
Chandler Carruth | 321916a | 2012-06-22 21:09:15 +0000 | [diff] [blame] | 14 | ARM_EABI_FNALIAS(f2ulz, fixunssfdi) |
Anton Korobeynikov | 75e3c19 | 2011-04-19 17:51:24 +0000 | [diff] [blame] | 15 | |
Sergey Dmitrouk | f3206d6 | 2015-04-06 11:54:51 +0000 | [diff] [blame] | 16 | #ifndef __SOFT_FP__ |
| 17 | /* Support for systems that have hardware floating-point; can set the invalid |
| 18 | * flag as a side-effect of computation. |
| 19 | */ |
| 20 | |
| 21 | COMPILER_RT_ABI du_int |
| 22 | __fixunssfdi(float a) |
| 23 | { |
Derek Schuff | de036eb | 2015-05-01 16:02:16 +0000 | [diff] [blame] | 24 | if (a <= 0.0f) return 0; |
Sergey Dmitrouk | f3206d6 | 2015-04-06 11:54:51 +0000 | [diff] [blame] | 25 | double da = a; |
Saleem Abdulrasool | 4c81f0a | 2015-10-06 04:33:02 +0000 | [diff] [blame] | 26 | su_int high = da / 4294967296.f; /* da / 0x1p32f; */ |
| 27 | su_int low = da - (double)high * 4294967296.f; /* high * 0x1p32f; */ |
Sergey Dmitrouk | f3206d6 | 2015-04-06 11:54:51 +0000 | [diff] [blame] | 28 | return ((du_int)high << 32) | low; |
| 29 | } |
| 30 | |
| 31 | #else |
| 32 | /* Support for systems that don't have hardware floating-point; there are no |
| 33 | * flags to set, and we don't want to code-gen to an unknown soft-float |
| 34 | * implementation. |
| 35 | */ |
| 36 | |
| 37 | typedef du_int fixuint_t; |
| 38 | #include "fp_fixuint_impl.inc" |
| 39 | |
Anton Korobeynikov | e63da93 | 2011-04-19 17:52:09 +0000 | [diff] [blame] | 40 | COMPILER_RT_ABI du_int |
Joerg Sonnenberger | 91bd698 | 2015-03-11 21:13:56 +0000 | [diff] [blame] | 41 | __fixunssfdi(fp_t a) { |
| 42 | return __fixuint(a); |
Daniel Dunbar | fd08999 | 2009-06-26 16:47:03 +0000 | [diff] [blame] | 43 | } |
Sergey Dmitrouk | f3206d6 | 2015-04-06 11:54:51 +0000 | [diff] [blame] | 44 | |
| 45 | #endif |