aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/ieee754
diff options
context:
space:
mode:
authorXiaolin Tang <tangxiaolin@loongson.cn>2022-11-23 11:44:56 +0800
committercaiyinyu <caiyinyu@loongson.cn>2022-11-29 16:00:28 +0800
commit2b23ab1feab5a59bcc1931666663b2a8eac3fdbc (patch)
tree037d70b1f7a836854162a9f86c2ed62a834130c7 /sysdeps/ieee754
parent948652e4f82f5aedbe882178ae158990bde63c79 (diff)
downloadglibc-2b23ab1feab5a59bcc1931666663b2a8eac3fdbc.zip
glibc-2b23ab1feab5a59bcc1931666663b2a8eac3fdbc.tar.gz
glibc-2b23ab1feab5a59bcc1931666663b2a8eac3fdbc.tar.bz2
Use GCC builtins for lrint functions if desired.
This patch is using the corresponding GCC builtin for lrintf, lrint, lrintl and lrintf128 if the USE_FUNCTION_BUILTIN macros are defined to one in math-use-builtins-function.h. Co-Authored-By: Xi Ruoyao <xry111@xry111.site>
Diffstat (limited to 'sysdeps/ieee754')
-rw-r--r--sysdeps/ieee754/dbl-64/s_lrint.c18
-rw-r--r--sysdeps/ieee754/float128/float128_private.h2
-rw-r--r--sysdeps/ieee754/flt-32/s_lrintf.c18
-rw-r--r--sysdeps/ieee754/ldbl-128/s_lrintl.c17
4 files changed, 38 insertions, 17 deletions
diff --git a/sysdeps/ieee754/dbl-64/s_lrint.c b/sysdeps/ieee754/dbl-64/s_lrint.c
index d427291..2438503 100644
--- a/sysdeps/ieee754/dbl-64/s_lrint.c
+++ b/sysdeps/ieee754/dbl-64/s_lrint.c
@@ -25,17 +25,22 @@
#include <math_private.h>
#include <libm-alias-double.h>
#include <fix-fp-int-convert-overflow.h>
-
-static const double two52[2] =
-{
- 4.50359962737049600000e+15, /* 0x43300000, 0x00000000 */
- -4.50359962737049600000e+15, /* 0xC3300000, 0x00000000 */
-};
+#include <math-use-builtins.h>
long int
__lrint (double x)
{
+#if USE_LRINT_BUILTIN
+ return __builtin_lrint (x);
+#else
+ /* Use generic implementation. */
+ static const double two52[2] =
+ {
+ 4.50359962737049600000e+15, /* 0x43300000, 0x00000000 */
+ -4.50359962737049600000e+15, /* 0xC3300000, 0x00000000 */
+ };
+
int32_t j0;
uint32_t i0, i1;
double w;
@@ -119,6 +124,7 @@ __lrint (double x)
}
return sx ? -result : result;
+#endif /* ! USE_LRINT_BUILTIN */
}
libm_alias_double (__lrint, lrint)
diff --git a/sysdeps/ieee754/float128/float128_private.h b/sysdeps/ieee754/float128/float128_private.h
index f9655df..a452ced 100644
--- a/sysdeps/ieee754/float128/float128_private.h
+++ b/sysdeps/ieee754/float128/float128_private.h
@@ -161,6 +161,8 @@
#define USE_COPYSIGNL_BUILTIN USE_COPYSIGNF128_BUILTIN
#undef USE_FMAL_BUILTIN
#define USE_FMAL_BUILTIN USE_FMAF128_BUILTIN
+#undef USE_LRINTL_BUILTIN
+#define USE_LRINTL_BUILTIN USE_LRINTF128_BUILTIN
/* IEEE function renames. */
#define __ieee754_acoshl __ieee754_acoshf128
diff --git a/sysdeps/ieee754/flt-32/s_lrintf.c b/sysdeps/ieee754/flt-32/s_lrintf.c
index 7438b27..50d044d 100644
--- a/sysdeps/ieee754/flt-32/s_lrintf.c
+++ b/sysdeps/ieee754/flt-32/s_lrintf.c
@@ -25,17 +25,22 @@
#include <math_private.h>
#include <libm-alias-float.h>
#include <fix-fp-int-convert-overflow.h>
-
-static const float two23[2] =
-{
- 8.3886080000e+06, /* 0x4B000000 */
- -8.3886080000e+06, /* 0xCB000000 */
-};
+#include <math-use-builtins.h>
long int
__lrintf (float x)
{
+#if USE_LRINTF_BUILTIN
+ return __builtin_lrintf (x);
+#else
+ /* Use generic implementation. */
+ static const float two23[2] =
+ {
+ 8.3886080000e+06, /* 0x4B000000 */
+ -8.3886080000e+06, /* 0xCB000000 */
+ };
+
int32_t j0;
uint32_t i0;
float w;
@@ -82,6 +87,7 @@ __lrintf (float x)
}
return sx ? -result : result;
+#endif /* ! USE_LRINTF_BUILTIN */
}
libm_alias_float (__lrint, lrint)
diff --git a/sysdeps/ieee754/ldbl-128/s_lrintl.c b/sysdeps/ieee754/ldbl-128/s_lrintl.c
index e8ec02d..ecb604a 100644
--- a/sysdeps/ieee754/ldbl-128/s_lrintl.c
+++ b/sysdeps/ieee754/ldbl-128/s_lrintl.c
@@ -24,16 +24,22 @@
#include <math_private.h>
#include <libm-alias-ldouble.h>
#include <fix-fp-int-convert-overflow.h>
+#include <math-use-builtins.h>
-static const _Float128 two112[2] =
-{
- L(5.19229685853482762853049632922009600E+33), /* 0x406F000000000000, 0 */
- L(-5.19229685853482762853049632922009600E+33) /* 0xC06F000000000000, 0 */
-};
long int
__lrintl (_Float128 x)
{
+#if USE_LRINTL_BUILTIN
+ return __builtin_lrintl (x);
+#else
+ /* Use generic implementation. */
+ static const _Float128 two112[2] =
+ {
+ L(5.19229685853482762853049632922009600E+33), /* 0x406F000000000000, 0 */
+ L(-5.19229685853482762853049632922009600E+33) /* 0xC06F000000000000, 0 */
+ };
+
int32_t j0;
uint64_t i0,i1;
_Float128 w;
@@ -131,6 +137,7 @@ __lrintl (_Float128 x)
}
return sx ? -result : result;
+#endif /* ! USE_LRINTL_BUILTIN */
}
libm_alias_ldouble (__lrint, lrint)