blob: 9e5ce0d7b292160d5f544fcda08c00ea6c04f168 [file] [log] [blame]
Chris Metcalf5bf6c072015-04-30 15:12:42 -04001#ifndef _ASM_WORD_AT_A_TIME_H
2#define _ASM_WORD_AT_A_TIME_H
3
4#include <asm/byteorder.h>
5
6struct word_at_a_time { /* unused */ };
7#define WORD_AT_A_TIME_CONSTANTS {}
8
9/* Generate 0x01 byte values for non-zero bytes using a SIMD instruction. */
10static inline unsigned long has_zero(unsigned long val, unsigned long *data,
11 const struct word_at_a_time *c)
12{
13#ifdef __tilegx__
14 unsigned long mask = __insn_v1cmpeqi(val, 0);
15#else /* tilepro */
16 unsigned long mask = __insn_seqib(val, 0);
17#endif
18 *data = mask;
19 return mask;
20}
21
22/* These operations are both nops. */
23#define prep_zero_mask(val, data, c) (data)
24#define create_zero_mask(data) (data)
25
26/* And this operation just depends on endianness. */
27static inline long find_zero(unsigned long mask)
28{
29#ifdef __BIG_ENDIAN
30 return __builtin_clzl(mask) >> 3;
31#else
32 return __builtin_ctzl(mask) >> 3;
33#endif
34}
35
36#endif /* _ASM_WORD_AT_A_TIME_H */