blob: 2c27f4bae3b921e319cea31e599507d05718d679 [file] [log] [blame]
Edward O'Callaghan55836322009-08-07 20:30:09 +00001/* ===-- fixdfti.c - Implement __fixdfti -----------------------------------===
2 *
3 * The LLVM Compiler Infrastructure
4 *
Howard Hinnant5b791f62010-11-16 22:13:33 +00005 * This file is dual licensed under the MIT and the University of Illinois Open
6 * Source Licenses. See LICENSE.TXT for details.
Edward O'Callaghan55836322009-08-07 20:30:09 +00007 *
8 * ===----------------------------------------------------------------------===
9 *
10 * This file implements __fixdfti for the compiler_rt library.
11 *
12 * ===----------------------------------------------------------------------===
13 */
Daniel Dunbarfd089992009-06-26 16:47:03 +000014
Daniel Dunbarfd089992009-06-26 16:47:03 +000015#include "int_lib.h"
16
Joerg Sonnenberger938b0df2014-02-21 23:53:03 +000017#ifdef CRT_HAS_128BIT
Chandler Carruth6e2bf8f2012-06-22 21:09:22 +000018
Edward O'Callaghan55836322009-08-07 20:30:09 +000019/* Returns: convert a to a signed long long, rounding toward zero. */
Daniel Dunbarfd089992009-06-26 16:47:03 +000020
Edward O'Callaghan55836322009-08-07 20:30:09 +000021/* Assumption: double is a IEEE 64 bit floating point type
22 * su_int is a 32 bit integral type
23 * value in double is representable in ti_int (no range checking performed)
24 */
Daniel Dunbarfd089992009-06-26 16:47:03 +000025
Edward O'Callaghan55836322009-08-07 20:30:09 +000026/* seee eeee eeee mmmm mmmm mmmm mmmm mmmm | mmmm mmmm mmmm mmmm mmmm mmmm mmmm mmmm */
Daniel Dunbarfd089992009-06-26 16:47:03 +000027
Joerg Sonnenberger6e99daa2014-03-01 15:30:50 +000028COMPILER_RT_ABI ti_int
Daniel Dunbarfd089992009-06-26 16:47:03 +000029__fixdfti(double a)
30{
31 double_bits fb;
32 fb.f = a;
Edward O'Callaghan665671e2009-09-03 09:12:20 +000033 int e = ((fb.u.s.high & 0x7FF00000) >> 20) - 1023;
Daniel Dunbarfd089992009-06-26 16:47:03 +000034 if (e < 0)
35 return 0;
Edward O'Callaghan665671e2009-09-03 09:12:20 +000036 ti_int s = (si_int)(fb.u.s.high & 0x80000000) >> 31;
Daniel Dunbarfd089992009-06-26 16:47:03 +000037 ti_int r = 0x0010000000000000uLL | (0x000FFFFFFFFFFFFFuLL & fb.u.all);
38 if (e > 52)
39 r <<= (e - 52);
40 else
41 r >>= (52 - e);
42 return (r ^ s) - s;
43}
44
Joerg Sonnenberger938b0df2014-02-21 23:53:03 +000045#endif /* CRT_HAS_128BIT */