Commit c753bf34 authored by Chris Metcalf's avatar Chris Metcalf

word-at-a-time.h: support zero_bytemask() on alpha and tile

Both alpha and tile needed implementations of zero_bytemask.

The alpha version is untested.
Signed-off-by: default avatarChris Metcalf <cmetcalf@ezchip.com>
parent 19c22f3a
...@@ -52,4 +52,6 @@ static inline unsigned long find_zero(unsigned long bits) ...@@ -52,4 +52,6 @@ static inline unsigned long find_zero(unsigned long bits)
#endif #endif
} }
#define zero_bytemask(mask) ((2ul << (find_zero(mask) * 8)) - 1)
#endif /* _ASM_WORD_AT_A_TIME_H */ #endif /* _ASM_WORD_AT_A_TIME_H */
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
struct word_at_a_time { /* unused */ }; struct word_at_a_time { /* unused */ };
#define WORD_AT_A_TIME_CONSTANTS {} #define WORD_AT_A_TIME_CONSTANTS {}
/* Generate 0x01 byte values for non-zero bytes using a SIMD instruction. */ /* Generate 0x01 byte values for zero bytes using a SIMD instruction. */
static inline unsigned long has_zero(unsigned long val, unsigned long *data, static inline unsigned long has_zero(unsigned long val, unsigned long *data,
const struct word_at_a_time *c) const struct word_at_a_time *c)
{ {
...@@ -33,4 +33,10 @@ static inline long find_zero(unsigned long mask) ...@@ -33,4 +33,10 @@ static inline long find_zero(unsigned long mask)
#endif #endif
} }
#ifdef __BIG_ENDIAN
#define zero_bytemask(mask) (~1ul << (63 - __builtin_clzl(mask)))
#else
#define zero_bytemask(mask) ((2ul << __builtin_ctzl(mask)) - 1)
#endif
#endif /* _ASM_WORD_AT_A_TIME_H */ #endif /* _ASM_WORD_AT_A_TIME_H */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment