1 //===-- fixdfdi.c - Implement __fixdfdi -----------------------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 #define DOUBLE_PRECISION
13 // Support for systems that have hardware floating-point; can set the invalid
14 // flag as a side-effect of computation.
16 COMPILER_RT_ABI du_int
__fixunsdfdi(double a
);
18 COMPILER_RT_ABI di_int
__fixdfdi(double a
) {
20 return -__fixunsdfdi(-a
);
22 return __fixunsdfdi(a
);
26 // Support for systems that don't have hardware floating-point; there are no
27 // flags to set, and we don't want to code-gen to an unknown soft-float
30 typedef di_int fixint_t
;
31 typedef du_int fixuint_t
;
32 #include "fp_fixint_impl.inc"
34 COMPILER_RT_ABI di_int
__fixdfdi(fp_t a
) { return __fixint(a
); }
38 #if defined(__ARM_EABI__)
39 #if defined(COMPILER_RT_ARMHF_TARGET)
40 AEABI_RTABI di_int
__aeabi_d2lz(fp_t a
) { return __fixdfdi(a
); }
42 COMPILER_RT_ALIAS(__fixdfdi
, __aeabi_d2lz
)
46 #if defined(__MINGW32__) && defined(__arm__)
47 COMPILER_RT_ALIAS(__fixdfdi
, __dtoi64
)