diff options
author | Xi Ruoyao <xry111@xry111.site> | 2023-08-07 13:07:08 +0200 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2023-08-12 09:58:22 +0930 |
commit | 079b20e89d3c511716bafb3369336e2b1c165bd5 (patch) | |
tree | a15f0626d489f986241b536983c3c3ce0a73cae8 /include | |
parent | 82fc3423c36c2cdc413910dac2e3c9faf0c59967 (diff) | |
download | gdb-079b20e89d3c511716bafb3369336e2b1c165bd5.zip gdb-079b20e89d3c511716bafb3369336e2b1c165bd5.tar.gz gdb-079b20e89d3c511716bafb3369336e2b1c165bd5.tar.bz2 |
LoongArch: implement count_{leading,trailing}_zeros
LoongArch always support clz and ctz instructions, so we can always use
__builtin_{clz,ctz} for count_{leading,trailing}_zeros. This improves
the code of libgcc, and also benefits Glibc once we merge longlong.h
there.
Bootstrapped and regtested on loongarch64-linux-gnu.
include/
* longlong.h [__loongarch__] (count_leading_zeros): Define.
[__loongarch__] (count_trailing_zeros): Likewise.
[__loongarch__] (COUNT_LEADING_ZEROS_0): Likewise.
Diffstat (limited to 'include')
-rw-r--r-- | include/longlong.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/longlong.h b/include/longlong.h index 9948a58..32d2048 100644 --- a/include/longlong.h +++ b/include/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. */ \ |