[CMake] Rename add_compiler_rt_static_runtime to add_compiler_rt_runtime.
[blocksruntime.git] / lib / builtins / fixunsxfsi.c
blobdf0a18e2c1abeea94bfc79f097fc96426dadb0c0
1 /* ===-- fixunsxfsi.c - Implement __fixunsxfsi -----------------------------===
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 __fixunsxfsi for the compiler_rt library.
12 * ===----------------------------------------------------------------------===
15 #if !_ARCH_PPC
17 #include "int_lib.h"
19 /* Returns: convert a to a unsigned int, rounding toward zero.
20 * Negative values all become zero.
23 /* Assumption: long double is an intel 80 bit floating point type padded with 6 bytes
24 * su_int is a 32 bit integral type
25 * value in long double is representable in su_int or is negative
26 * (no range checking performed)
29 /* gggg gggg gggg gggg gggg gggg gggg gggg | gggg gggg gggg gggg seee eeee eeee eeee |
30 * 1mmm mmmm mmmm mmmm mmmm mmmm mmmm mmmm | mmmm mmmm mmmm mmmm mmmm mmmm mmmm mmmm
33 COMPILER_RT_ABI su_int
34 __fixunsxfsi(long double a)
36 long_double_bits fb;
37 fb.f = a;
38 int e = (fb.u.high.s.low & 0x00007FFF) - 16383;
39 if (e < 0 || (fb.u.high.s.low & 0x00008000))
40 return 0;
41 return fb.u.low.s.high >> (31 - e);
44 #endif /* !_ARCH_PPC */