]> git.ipfire.org Git - thirdparty/glibc.git/blame - sysdeps/ieee754/ldbl-128ibm/s_ceill.c
Update copyright dates with scripts/update-copyrights
[thirdparty/glibc.git] / sysdeps / ieee754 / ldbl-128ibm / s_ceill.c
CommitLineData
f964490f
RM
1/* Ceil (round to +inf) long double floating-point values.
2 IBM extended format long double version.
2b778ceb 3 Copyright (C) 2006-2021 Free Software Foundation, Inc.
f964490f
RM
4 This file is part of the GNU C Library.
5
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
10
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
15
16 You should have received a copy of the GNU Lesser General Public
59ba27a6 17 License along with the GNU C Library; if not, see
5a82c748 18 <https://www.gnu.org/licenses/>. */
f964490f 19
71223ef9 20#define NO_MATH_REDIRECT
f964490f 21#include <math.h>
0d13dfa1 22#include <math_private.h>
f964490f
RM
23#include <math_ldbl_opt.h>
24#include <float.h>
25#include <ieee754.h>
26
50bc59ca
JM
27double ceil (double) asm ("__ceil");
28
f964490f 29
f964490f
RM
30long double
31__ceill (long double x)
f964490f 32{
5c68d401 33 double xh, xl, hi, lo;
f964490f 34
5c68d401 35 ldbl_unpack (x, &xh, &xl);
f964490f 36
5c68d401
RM
37 /* Return Inf, Nan, +/-0 unchanged. */
38 if (__builtin_expect (xh != 0.0
39 && __builtin_isless (__builtin_fabs (xh),
40 __builtin_inf ()), 1))
16f0eced 41 {
50bc59ca 42 hi = ceil (xh);
8a9fa008
JM
43 if (hi != xh)
44 {
45 /* The high part is not an integer; the low part does not
46 affect the result. */
47 xh = hi;
48 xl = 0;
49 }
50 else
51 {
52 /* The high part is a nonzero integer. */
50bc59ca 53 lo = ceil (xl);
8a9fa008
JM
54 xh = hi;
55 xl = lo;
56 ldbl_canonicalize_int (&xh, &xl);
57 }
f964490f 58 }
bba14195
JM
59 else
60 /* Quiet signaling NaN arguments. */
61 xh += xh;
f964490f 62
5c68d401 63 return ldbl_pack (xh, xl);
f964490f
RM
64}
65
66long_double_symbol (libm, __ceill, ceill);