| /* chunkset_neon.c -- NEON inline functions to copy small data chunks. |
| * For conditions of distribution and use, see copyright notice in zlib.h |
| */ |
| |
| #ifdef ARM_NEON |
| |
| #include "zbuild.h" |
| #include "zsanitizer.h" |
| #include "zmemory.h" |
| #include "neon_intrins.h" |
| #include "arch/shared/chunk_128bit_perm_idx_lut.h" |
| |
| typedef uint8x16_t chunk_t; |
| |
| #define HAVE_CHUNKMEMSET_2 |
| #define HAVE_CHUNKMEMSET_4 |
| #define HAVE_CHUNKMEMSET_8 |
| #define HAVE_CHUNK_MAG |
| |
| |
| static inline void chunkmemset_2(uint8_t *from, chunk_t *chunk) { |
| *chunk = vreinterpretq_u8_u16(vdupq_n_u16(zng_memread_2(from))); |
| } |
| |
| static inline void chunkmemset_4(uint8_t *from, chunk_t *chunk) { |
| *chunk = vreinterpretq_u8_u32(vdupq_n_u32(zng_memread_4(from))); |
| } |
| |
| static inline void chunkmemset_8(uint8_t *from, chunk_t *chunk) { |
| *chunk = vreinterpretq_u8_u64(vdupq_n_u64(zng_memread_8(from))); |
| } |
| |
| #define CHUNKSIZE chunksize_neon |
| #define CHUNKCOPY chunkcopy_neon |
| #define CHUNKUNROLL chunkunroll_neon |
| #define CHUNKMEMSET chunkmemset_neon |
| #define CHUNKMEMSET_SAFE chunkmemset_safe_neon |
| |
| static inline void loadchunk(uint8_t const *s, chunk_t *chunk) { |
| *chunk = vld1q_u8(s); |
| } |
| |
| static inline void storechunk(uint8_t *out, chunk_t *chunk) { |
| vst1q_u8(out, *chunk); |
| } |
| |
| static inline chunk_t GET_CHUNK_MAG(uint8_t *buf, size_t *chunk_rem, size_t dist) { |
| lut_rem_pair lut_rem = perm_idx_lut[dist - 3]; |
| *chunk_rem = lut_rem.remval; |
| |
| /* See note in chunkset_ssse3.c for why this is ok */ |
| __msan_unpoison(buf + dist, 16 - dist); |
| |
| /* This version of table is only available on aarch64 */ |
| #if defined(ARCH_ARM) && defined(ARCH_64BIT) |
| uint8x16_t ret_vec = vld1q_u8(buf); |
| |
| uint8x16_t perm_vec = vld1q_u8_ex(permute_table + lut_rem.idx, 128); |
| return vqtbl1q_u8(ret_vec, perm_vec); |
| #else |
| uint8x8_t ret0, ret1, a, b, perm_vec0, perm_vec1; |
| perm_vec0 = vld1_u8_ex(permute_table + lut_rem.idx, 64); |
| perm_vec1 = vld1_u8_ex(permute_table + lut_rem.idx + 8, 64); |
| a = vld1_u8(buf); |
| b = vld1_u8(buf + 8); |
| ret0 = vtbl1_u8(a, perm_vec0); |
| uint8x8x2_t ab; |
| ab.val[0] = a; |
| ab.val[1] = b; |
| ret1 = vtbl2_u8(ab, perm_vec1); |
| return vcombine_u8(ret0, ret1); |
| #endif |
| } |
| |
| #include "chunkset_tpl.h" |
| |
| #define INFLATE_FAST inflate_fast_neon |
| |
| #include "inffast_tpl.h" |
| |
| #endif |