aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXi Ruoyao <xry111@xry111.site>2022-10-15 14:12:13 +0800
committerAndreas K. Hüttel <dilfridge@gentoo.org>2022-11-12 22:11:13 +0100
commit624a84f2352abe22f24d7e00870225f2ef6e9fda (patch)
tree9aa1baa6446b0f38842376c7e787012188d03d59
parentelf: Reinstate on DL_DEBUG_BINDINGS _dl_lookup_symbol_x (diff)
downloadglibc-624a84f2352abe22f24d7e00870225f2ef6e9fda.tar.gz
glibc-624a84f2352abe22f24d7e00870225f2ef6e9fda.tar.bz2
glibc-624a84f2352abe22f24d7e00870225f2ef6e9fda.zip
longlong.h: update from GCC for LoongArch clz/ctz support
Update longlong.h to GCC r13-3269. Keep our local change (prefer https for gnu.org URL). (cherry picked from commit 4c6a78addabbd6e1b69763e286768919e56dfe0a) Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
-rw-r--r--stdlib/longlong.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/stdlib/longlong.h b/stdlib/longlong.h
index 9b89469ac2..d8f76a43b5 100644
--- a/stdlib/longlong.h
+++ b/stdlib/longlong.h
@@ -593,6 +593,18 @@ extern UDItype __umulsidi3 (USItype, USItype);
#define UMUL_TIME 14
#endif
+#ifdef __loongarch__
+# if W_TYPE_SIZE == 32
+# define count_leading_zeros(count, x) ((count) = __builtin_clz (x))
+# define count_trailing_zeros(count, x) ((count) = __builtin_ctz (x))
+# define COUNT_LEADING_ZEROS_0 32
+# elif W_TYPE_SIZE == 64
+# define count_leading_zeros(count, x) ((count) = __builtin_clzll (x))
+# define count_trailing_zeros(count, x) ((count) = __builtin_ctzll (x))
+# define COUNT_LEADING_ZEROS_0 64
+# endif
+#endif
+
#if defined (__M32R__) && W_TYPE_SIZE == 32
#define add_ssaaaa(sh, sl, ah, al, bh, bl) \
/* The cmp clears the condition bit. */ \