1 /* Round argument to nearest integral value according to current rounding
3 Copyright (C) 1997-2024 Free Software Foundation, Inc.
4 This file is part of the GNU C Library.
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.
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.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, see
18 <https://www.gnu.org/licenses/>. */
24 #include <math-narrow-eval.h>
25 #include <math_private.h>
26 #include <libm-alias-float.h>
27 #include <fix-fp-int-convert-overflow.h>
28 #include <math-use-builtins.h>
34 #if USE_LRINTF_BUILTIN
35 return __builtin_lrintf (x
);
37 /* Use generic implementation. */
38 static const float two23
[2] =
40 8.3886080000e+06, /* 0x4B000000 */
41 -8.3886080000e+06, /* 0xCB000000 */
51 GET_FLOAT_WORD (i0
, x
);
54 j0
= ((i0
>> 23) & 0xff) - 0x7f;
58 if (j0
< (int32_t) (sizeof (long int) * 8) - 1)
61 result
= (long int) i0
<< (j0
- 23);
64 w
= math_narrow_eval (two23
[sx
] + x
);
66 GET_FLOAT_WORD (i0
, t
);
67 j0
= ((i0
>> 23) & 0xff) - 0x7f;
71 result
= (j0
< 0 ? 0 : i0
>> (23 - j0
));
77 /* The number is too large. Unless it rounds to LONG_MIN,
78 FE_INVALID must be raised and the return value is
80 if (FIX_FLT_LONG_CONVERT_OVERFLOW
&& x
!= (float) LONG_MIN
)
82 feraiseexcept (FE_INVALID
);
83 return sx
== 0 ? LONG_MAX
: LONG_MIN
;
89 return sx
? -result
: result
;
90 #endif /* ! USE_LRINTF_BUILTIN */
93 libm_alias_float (__lrint
, lrint
)