1 /* origin: FreeBSD /usr/src/lib/msun/src/s_floorl.c */
3 * ====================================================
4 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
6 * Developed at SunPro, a Sun Microsystems, Inc. business.
7 * Permission to use, copy, modify, and distribute this
8 * software is freely granted, provided that this notice
10 * ====================================================
14 * Return x rounded toward -inf to integral value
18 * Inexact flag raised if x not equal to floorl(x).
23 #if LDBL_MANT_DIG == 53 && LDBL_MAX_EXP == 1024
24 long double floorl(long double x)
28 #elif (LDBL_MANT_DIG == 64 || LDBL_MANT_DIG == 113) && LDBL_MAX_EXP == 16384
30 #ifdef LDBL_IMPLICIT_NBIT
31 #define MANH_SIZE (LDBL_MANH_SIZE + 1)
32 #define INC_MANH(u, c) do { \
33 uint64_t o = u.bits.manh; \
35 if (u.bits.manh < o) \
39 #define MANH_SIZE LDBL_MANH_SIZE
40 #define INC_MANH(u, c) do { \
41 uint64_t o = u.bits.manh; \
43 if (u.bits.manh < o) { \
45 u.bits.manh |= 1llu << (LDBL_MANH_SIZE - 1); \
50 static const long double huge = 1.0e300;
52 long double floorl(long double x)
54 union IEEEl2bits u = { .e = x };
55 int e = u.bits.exp - LDBL_MAX_EXP + 1;
57 if (e < MANH_SIZE - 1) {
59 /* raise inexact if x != 0 */
62 (u.bits.manh | u.bits.manl) != 0)
63 u.e = u.bits.sign ? -1.0 : 0.0;
65 uint64_t m = ((1llu << MANH_SIZE) - 1) >> (e + 1);
66 if (((u.bits.manh & m) | u.bits.manl) == 0)
67 return x; /* x is integral */
69 #ifdef LDBL_IMPLICIT_NBIT
74 INC_MANH(u, 1llu << (MANH_SIZE - e - 1));
76 /* raise inexact flag */
82 } else if (e < LDBL_MANT_DIG - 1) {
83 uint64_t m = (uint64_t)-1 >> (64 - LDBL_MANT_DIG + e + 1);
84 if ((u.bits.manl & m) == 0)
85 return x; /* x is integral */
87 if (e == MANH_SIZE - 1)
90 uint64_t o = u.bits.manl;
91 u.bits.manl += 1llu << (LDBL_MANT_DIG - e - 1);
92 if (u.bits.manl < o) /* got a carry */
96 /* raise inexact flag */