annotate libquadmath/math/lrintq.c @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 1830386684a0
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1 /* Round argument to nearest integral value according to current rounding
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
2 direction.
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 111
diff changeset
3 Copyright (C) 1997-2018 Free Software Foundation, Inc.
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
4 This file is part of the GNU C Library.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
5 Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997 and
111
kono
parents: 68
diff changeset
6 Jakub Jelinek <jj@ultra.linux.cz>, 1999.
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
7
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
8 The GNU C Library is free software; you can redistribute it and/or
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
9 modify it under the terms of the GNU Lesser General Public
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
10 License as published by the Free Software Foundation; either
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
11 version 2.1 of the License, or (at your option) any later version.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
12
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
13 The GNU C Library is distributed in the hope that it will be useful,
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
16 Lesser General Public License for more details.
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
17
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
18 You should have received a copy of the GNU Lesser General Public
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 111
diff changeset
19 License along with the GNU C Library; if not, see
1830386684a0 gcc-9.2.0
anatofuz
parents: 111
diff changeset
20 <http://www.gnu.org/licenses/>. */
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
21
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
22 #include "quadmath-imp.h"
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
23
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
24 static const __float128 two112[2] =
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
25 {
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
26 5.19229685853482762853049632922009600E+33Q, /* 0x406F000000000000, 0 */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
27 -5.19229685853482762853049632922009600E+33Q /* 0xC06F000000000000, 0 */
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
28 };
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
29
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
30 long int
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
31 lrintq (__float128 x)
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
32 {
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
33 int32_t j0;
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
34 uint64_t i0,i1;
111
kono
parents: 68
diff changeset
35 __float128 w;
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
36 __float128 t;
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
37 long int result;
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
38 int sx;
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
39
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
40 GET_FLT128_WORDS64 (i0, i1, x);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
41 j0 = ((i0 >> 48) & 0x7fff) - 0x3fff;
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
42 sx = i0 >> 63;
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
43 i0 &= 0x0000ffffffffffffLL;
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
44 i0 |= 0x0001000000000000LL;
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
45
111
kono
parents: 68
diff changeset
46 if (j0 < (int32_t) (8 * sizeof (long int)) - 1)
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
47 {
111
kono
parents: 68
diff changeset
48 if (j0 < 48)
kono
parents: 68
diff changeset
49 {
kono
parents: 68
diff changeset
50 #if defined FE_INVALID || defined FE_INEXACT
kono
parents: 68
diff changeset
51 /* X < LONG_MAX + 1 implied by J0 < 31. */
kono
parents: 68
diff changeset
52 if (sizeof (long int) == 4
kono
parents: 68
diff changeset
53 && x > (__float128) LONG_MAX)
kono
parents: 68
diff changeset
54 {
kono
parents: 68
diff changeset
55 /* In the event of overflow we must raise the "invalid"
kono
parents: 68
diff changeset
56 exception, but not "inexact". */
kono
parents: 68
diff changeset
57 t = nearbyintq (x);
kono
parents: 68
diff changeset
58 feraiseexcept (t == LONG_MAX ? FE_INEXACT : FE_INVALID);
kono
parents: 68
diff changeset
59 }
kono
parents: 68
diff changeset
60 else
kono
parents: 68
diff changeset
61 #endif
kono
parents: 68
diff changeset
62 {
kono
parents: 68
diff changeset
63 w = two112[sx] + x;
kono
parents: 68
diff changeset
64 t = w - two112[sx];
kono
parents: 68
diff changeset
65 }
kono
parents: 68
diff changeset
66 GET_FLT128_WORDS64 (i0, i1, t);
kono
parents: 68
diff changeset
67 j0 = ((i0 >> 48) & 0x7fff) - 0x3fff;
kono
parents: 68
diff changeset
68 i0 &= 0x0000ffffffffffffLL;
kono
parents: 68
diff changeset
69 i0 |= 0x0001000000000000LL;
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
70
111
kono
parents: 68
diff changeset
71 result = (j0 < 0 ? 0 : i0 >> (48 - j0));
kono
parents: 68
diff changeset
72 }
kono
parents: 68
diff changeset
73 else if (j0 >= 112)
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
74 result = ((long int) i0 << (j0 - 48)) | (i1 << (j0 - 112));
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
75 else
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
76 {
111
kono
parents: 68
diff changeset
77 #if defined FE_INVALID || defined FE_INEXACT
kono
parents: 68
diff changeset
78 /* X < LONG_MAX + 1 implied by J0 < 63. */
kono
parents: 68
diff changeset
79 if (sizeof (long int) == 8
kono
parents: 68
diff changeset
80 && x > (__float128) LONG_MAX)
kono
parents: 68
diff changeset
81 {
kono
parents: 68
diff changeset
82 /* In the event of overflow we must raise the "invalid"
kono
parents: 68
diff changeset
83 exception, but not "inexact". */
kono
parents: 68
diff changeset
84 t = nearbyintq (x);
kono
parents: 68
diff changeset
85 feraiseexcept (t == LONG_MAX ? FE_INEXACT : FE_INVALID);
kono
parents: 68
diff changeset
86 }
kono
parents: 68
diff changeset
87 else
kono
parents: 68
diff changeset
88 #endif
kono
parents: 68
diff changeset
89 {
kono
parents: 68
diff changeset
90 w = two112[sx] + x;
kono
parents: 68
diff changeset
91 t = w - two112[sx];
kono
parents: 68
diff changeset
92 }
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
93 GET_FLT128_WORDS64 (i0, i1, t);
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
94 j0 = ((i0 >> 48) & 0x7fff) - 0x3fff;
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
95 i0 &= 0x0000ffffffffffffLL;
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
96 i0 |= 0x0001000000000000LL;
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
97
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
98 if (j0 == 48)
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
99 result = (long int) i0;
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
100 else
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
101 result = ((long int) i0 << (j0 - 48)) | (i1 >> (112 - j0));
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
102 }
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
103 }
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
104 else
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
105 {
111
kono
parents: 68
diff changeset
106 /* The number is too large. Unless it rounds to LONG_MIN,
kono
parents: 68
diff changeset
107 FE_INVALID must be raised and the return value is
kono
parents: 68
diff changeset
108 unspecified. */
kono
parents: 68
diff changeset
109 #if defined FE_INVALID || defined FE_INEXACT
kono
parents: 68
diff changeset
110 if (x < (__float128) LONG_MIN
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 111
diff changeset
111 && x > (__float128) LONG_MIN - 1)
111
kono
parents: 68
diff changeset
112 {
kono
parents: 68
diff changeset
113 /* If truncation produces LONG_MIN, the cast will not raise
kono
parents: 68
diff changeset
114 the exception, but may raise "inexact". */
kono
parents: 68
diff changeset
115 t = nearbyintq (x);
kono
parents: 68
diff changeset
116 feraiseexcept (t == LONG_MIN ? FE_INEXACT : FE_INVALID);
kono
parents: 68
diff changeset
117 return LONG_MIN;
kono
parents: 68
diff changeset
118 }
145
1830386684a0 gcc-9.2.0
anatofuz
parents: 111
diff changeset
119 else if (FIX_FLT128_LONG_CONVERT_OVERFLOW && x != (__float128) LONG_MIN)
1830386684a0 gcc-9.2.0
anatofuz
parents: 111
diff changeset
120 {
1830386684a0 gcc-9.2.0
anatofuz
parents: 111
diff changeset
121 feraiseexcept (FE_INVALID);
1830386684a0 gcc-9.2.0
anatofuz
parents: 111
diff changeset
122 return sx == 0 ? LONG_MAX : LONG_MIN;
1830386684a0 gcc-9.2.0
anatofuz
parents: 111
diff changeset
123 }
1830386684a0 gcc-9.2.0
anatofuz
parents: 111
diff changeset
124
111
kono
parents: 68
diff changeset
125 #endif
68
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
126 return (long int) x;
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
127 }
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
128
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
129 return sx ? -result : result;
561a7518be6b update gcc-4.6
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
130 }