1 /* ===-- fixxfdi.c - Implement __fixxfdi -----------------------------------===
3 * The LLVM Compiler Infrastructure
5 * This file is dual licensed under the MIT and the University of Illinois Open
6 * Source Licenses. See LICENSE.TXT for details.
8 * ===----------------------------------------------------------------------===
10 * This file implements __fixxfdi for the compiler_rt library.
12 * ===----------------------------------------------------------------------===
19 /* Returns: convert a to a signed long long, rounding toward zero. */
21 /* Assumption: long double is an intel 80 bit floating point type padded with 6 bytes
22 * su_int is a 32 bit integral type
23 * value in long double is representable in di_int (no range checking performed)
26 /* gggg gggg gggg gggg gggg gggg gggg gggg | gggg gggg gggg gggg seee eeee eeee eeee |
27 * 1mmm mmmm mmmm mmmm mmmm mmmm mmmm mmmm | mmmm mmmm mmmm mmmm mmmm mmmm mmmm mmmm
31 __fixxfdi(long double a
)
35 int e
= (fb
.u
.high
.s
.low
& 0x00007FFF) - 16383;
38 di_int s
= -(si_int
)((fb
.u
.high
.s
.low
& 0x00008000) >> 15);
39 di_int r
= fb
.u
.low
.all
;
40 r
= (du_int
)r
>> (63 - e
);
44 #endif /* !_ARCH_PPC */