1 //===-- fixunsxfti.c - Implement __fixunsxfti -----------------------------===//
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 // This file implements __fixunsxfti for the compiler_rt library.
11 //===----------------------------------------------------------------------===//
17 // Returns: convert a to a unsigned long long, rounding toward zero.
18 // Negative values all become zero.
20 // Assumption: long double is an intel 80 bit floating point type padded with 6
21 // bytes tu_int is a 128 bit integral type value in long double is representable
22 // in tu_int or is negative
24 // gggg gggg gggg gggg gggg gggg gggg gggg | gggg gggg gggg gggg seee eeee eeee
25 // eeee | 1mmm mmmm mmmm mmmm mmmm mmmm mmmm mmmm | mmmm mmmm mmmm mmmm mmmm
28 COMPILER_RT_ABI tu_int
__fixunsxfti(long double a
) {
31 int e
= (fb
.u
.high
.s
.low
& 0x00007FFF) - 16383;
32 if (e
< 0 || (fb
.u
.high
.s
.low
& 0x00008000))
34 if ((unsigned)e
> sizeof(tu_int
) * CHAR_BIT
)
36 tu_int r
= fb
.u
.low
.all
;
44 #endif // CRT_HAS_128BIT