1 //===-- fixsfdi.c - Implement __fixsfdi -----------------------------------===//
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 SINGLE_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
__fixunssfdi(float a
);
18 COMPILER_RT_ABI di_int
__fixsfdi(float a
) {
20 return -__fixunssfdi(-a
);
22 return __fixunssfdi(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
__fixsfdi(fp_t a
) { return __fixint(a
); }
38 #if defined(__ARM_EABI__)
39 #if defined(COMPILER_RT_ARMHF_TARGET)
40 AEABI_RTABI di_int
__aeabi_f2lz(fp_t a
) { return __fixsfdi(a
); }
42 COMPILER_RT_ALIAS(__fixsfdi
, __aeabi_f2lz
)
46 #if defined(__MINGW32__) && defined(__arm__)
47 COMPILER_RT_ALIAS(__fixsfdi
, __stoi64
)