blob: 48bfc3cebe2c296127f4e01dcfbcd774af228ead [file] [log] [blame]
Edward O'Callaghan4856eef2009-08-05 04:02:56 +00001/* ===-- fixxfdi.c - Implement __fixxfdi -----------------------------------===
2 *
3 * The LLVM Compiler Infrastructure
4 *
5 * This file is distributed under the University of Illinois Open Source
6 * License. See LICENSE.TXT for details.
7 *
8 * ===----------------------------------------------------------------------===
9 *
10 * This file implements __fixxfdi for the compiler_rt library.
11 *
12 * ===----------------------------------------------------------------------===
13 */
Daniel Dunbarfd089992009-06-26 16:47:03 +000014
15#if !_ARCH_PPC
16
17#include "int_lib.h"
18
Edward O'Callaghan4856eef2009-08-05 04:02:56 +000019/* Returns: convert a to a signed long long, rounding toward zero. */
Daniel Dunbarfd089992009-06-26 16:47:03 +000020
Edward O'Callaghan4856eef2009-08-05 04:02:56 +000021/* 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)
24 */
Daniel Dunbarfd089992009-06-26 16:47:03 +000025
Edward O'Callaghan4856eef2009-08-05 04:02:56 +000026/* 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
28 */
Daniel Dunbarfd089992009-06-26 16:47:03 +000029
30di_int
31__fixxfdi(long double a)
32{
33 long_double_bits fb;
34 fb.f = a;
35 int e = (fb.u.high.low & 0x00007FFF) - 16383;
36 if (e < 0)
37 return 0;
38 di_int s = -(si_int)((fb.u.high.low & 0x00008000) >> 15);
39 di_int r = fb.u.low.all;
40 r = (du_int)r >> (63 - e);
41 return (r ^ s) - s;
42}
43
44#endif