]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/compiler-rt/lib/builtins/fixdfdi.c
Merge clang trunk r321017 to contrib/llvm/tools/clang.
[FreeBSD/FreeBSD.git] / contrib / compiler-rt / lib / builtins / fixdfdi.c
1 /* ===-- fixdfdi.c - Implement __fixdfdi -----------------------------------===
2  *
3  *                     The LLVM Compiler Infrastructure
4  *
5  * This file is dual licensed under the MIT and the University of Illinois Open
6  * Source Licenses. See LICENSE.TXT for details.
7  *
8  * ===----------------------------------------------------------------------===
9  */
10
11 #define DOUBLE_PRECISION
12 #include "fp_lib.h"
13
14 #ifndef __SOFT_FP__
15 /* Support for systems that have hardware floating-point; can set the invalid
16  * flag as a side-effect of computation.
17  */
18
19 COMPILER_RT_ABI du_int __fixunsdfdi(double a);
20
21 COMPILER_RT_ABI di_int
22 __fixdfdi(double a)
23 {
24     if (a < 0.0) {
25         return -__fixunsdfdi(-a);
26     }
27     return __fixunsdfdi(a);
28 }
29
30 #else
31 /* Support for systems that don't have hardware floating-point; there are no
32  * flags to set, and we don't want to code-gen to an unknown soft-float
33  * implementation.
34  */
35
36 typedef di_int fixint_t;
37 typedef du_int fixuint_t;
38 #include "fp_fixint_impl.inc"
39
40 COMPILER_RT_ABI di_int
41 __fixdfdi(fp_t a) {
42     return __fixint(a);
43 }
44
45 #endif
46
47 #if defined(__ARM_EABI__)
48 AEABI_RTABI di_int
49 #if defined(__SOFT_FP__)
50 __aeabi_d2lz(fp_t a) {
51 #else
52 __aeabi_d2lz(double a) {
53 #endif
54   return __fixdfdi(a);
55 }
56 #endif
57