]> git.ipfire.org Git - thirdparty/glibc.git/blame - sysdeps/ieee754/ldbl-128/s_llrintl.c
Update copyright notices with scripts/update-copyrights
[thirdparty/glibc.git] / sysdeps / ieee754 / ldbl-128 / s_llrintl.c
CommitLineData
dfd2257a
UD
1/* Round argument to nearest integral value according to current rounding
2 direction.
d4697bc9 3 Copyright (C) 1997-2014 Free Software Foundation, Inc.
dfd2257a 4 This file is part of the GNU C Library.
abfbdde1 5 Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997 and
350635a5 6 Jakub Jelinek <jj@ultra.linux.cz>, 1999.
dfd2257a
UD
7
8 The GNU C Library is free software; you can redistribute it and/or
41bdb6e2
AJ
9 modify it under the terms of the GNU Lesser General Public
10 License as published by the Free Software Foundation; either
11 version 2.1 of the License, or (at your option) any later version.
dfd2257a
UD
12
13 The GNU C Library is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
41bdb6e2 16 Lesser General Public License for more details.
dfd2257a 17
41bdb6e2 18 You should have received a copy of the GNU Lesser General Public
59ba27a6
PE
19 License along with the GNU C Library; if not, see
20 <http://www.gnu.org/licenses/>. */
dfd2257a
UD
21
22#include <math.h>
23
1ed0291c 24#include <math_private.h>
dfd2257a 25
abfbdde1 26static const long double two112[2] =
dfd2257a 27{
abfbdde1
UD
28 5.19229685853482762853049632922009600E+33L, /* 0x406F000000000000, 0 */
29 -5.19229685853482762853049632922009600E+33L /* 0xC06F000000000000, 0 */
dfd2257a
UD
30};
31
dfd2257a
UD
32long long int
33__llrintl (long double x)
34{
abfbdde1
UD
35 int32_t j0;
36 u_int64_t i0,i1;
dfd2257a
UD
37 volatile long double w;
38 long double t;
abfbdde1 39 long long int result;
dfd2257a
UD
40 int sx;
41
abfbdde1
UD
42 GET_LDOUBLE_WORDS64 (i0, i1, x);
43 j0 = ((i0 >> 48) & 0x7fff) - 0x3fff;
44 sx = i0 >> 63;
45 i0 &= 0x0000ffffffffffffLL;
46 i0 |= 0x0001000000000000LL;
dfd2257a 47
cc3fa755 48 if (j0 < (int32_t) (8 * sizeof (long long int)) - 1)
dfd2257a 49 {
abfbdde1
UD
50 w = two112[sx] + x;
51 t = w - two112[sx];
bd3a1a10 52 GET_LDOUBLE_WORDS64 (i0, i1, t);
abfbdde1
UD
53 j0 = ((i0 >> 48) & 0x7fff) - 0x3fff;
54 i0 &= 0x0000ffffffffffffLL;
55 i0 |= 0x0001000000000000LL;
dfd2257a 56
6624dbc0
UD
57 if (j0 < 0)
58 result = 0;
59 else if (j0 <= 48)
abfbdde1
UD
60 result = i0 >> (48 - j0);
61 else
62 result = ((long long int) i0 << (j0 - 48)) | (i1 >> (112 - j0));
dfd2257a
UD
63 }
64 else
65 {
66 /* The number is too large. It is left implementation defined
67 what happens. */
68 return (long long int) x;
69 }
70
71 return sx ? -result : result;
72}
73
74weak_alias (__llrintl, llrintl)