1 1.1 joerg /* ===-- fixxfdi.c - Implement __fixxfdi -----------------------------------=== 2 1.1 joerg * 3 1.1 joerg * The LLVM Compiler Infrastructure 4 1.1 joerg * 5 1.1 joerg * This file is dual licensed under the MIT and the University of Illinois Open 6 1.1 joerg * Source Licenses. See LICENSE.TXT for details. 7 1.1 joerg * 8 1.1 joerg * ===----------------------------------------------------------------------=== 9 1.1 joerg * 10 1.1 joerg * This file implements __fixxfdi for the compiler_rt library. 11 1.1 joerg * 12 1.1 joerg * ===----------------------------------------------------------------------=== 13 1.1 joerg */ 14 1.1 joerg 15 1.1 joerg #if !_ARCH_PPC 16 1.1 joerg 17 1.1 joerg #include "int_lib.h" 18 1.1 joerg 19 1.1 joerg /* Returns: convert a to a signed long long, rounding toward zero. */ 20 1.1 joerg 21 1.1 joerg /* Assumption: long double is an intel 80 bit floating point type padded with 6 bytes 22 1.1.1.3 joerg * di_int is a 64 bit integral type 23 1.1 joerg * value in long double is representable in di_int (no range checking performed) 24 1.1 joerg */ 25 1.1 joerg 26 1.1 joerg /* gggg gggg gggg gggg gggg gggg gggg gggg | gggg gggg gggg gggg seee eeee eeee eeee | 27 1.1 joerg * 1mmm mmmm mmmm mmmm mmmm mmmm mmmm mmmm | mmmm mmmm mmmm mmmm mmmm mmmm mmmm mmmm 28 1.1 joerg */ 29 1.1 joerg 30 1.1.1.2 joerg COMPILER_RT_ABI di_int 31 1.1 joerg __fixxfdi(long double a) 32 1.1 joerg { 33 1.1.1.3 joerg const di_int di_max = (di_int)((~(du_int)0) / 2); 34 1.1.1.3 joerg const di_int di_min = -di_max - 1; 35 1.1 joerg long_double_bits fb; 36 1.1 joerg fb.f = a; 37 1.1 joerg int e = (fb.u.high.s.low & 0x00007FFF) - 16383; 38 1.1 joerg if (e < 0) 39 1.1 joerg return 0; 40 1.1.1.3 joerg if ((unsigned)e >= sizeof(di_int) * CHAR_BIT) 41 1.1.1.3 joerg return a > 0 ? di_max : di_min; 42 1.1 joerg di_int s = -(si_int)((fb.u.high.s.low & 0x00008000) >> 15); 43 1.1 joerg di_int r = fb.u.low.all; 44 1.1 joerg r = (du_int)r >> (63 - e); 45 1.1 joerg return (r ^ s) - s; 46 1.1 joerg } 47 1.1 joerg 48 1.1 joerg #endif /* !_ARCH_PPC */ 49