diff options
author | Benoît Ganne <bganne@cisco.com> | 2022-03-21 15:01:41 +0100 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2022-03-23 18:33:03 +0000 |
commit | 495c320a7f06c9ddf2693a4ea9dcbce36e6829de (patch) | |
tree | 9b61040b0473133a3671cc3223044969c38d8196 /src | |
parent | d24b86ecce5ab43f4859ed139ce863f5a5c69853 (diff) |
vppinfra: fix bihash key comparison for 512-bits vectors
bihash keys are less than 64-bytes, do not overflow.
Type: fix
Change-Id: Ic55407eb9ccca38058f7e62b363ec05c8445fbcb
Signed-off-by: Benoît Ganne <bganne@cisco.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/vppinfra/bihash_24_16.h | 4 | ||||
-rw-r--r-- | src/vppinfra/bihash_24_8.h | 4 | ||||
-rw-r--r-- | src/vppinfra/bihash_32_8.h | 4 | ||||
-rw-r--r-- | src/vppinfra/bihash_40_8.h | 5 | ||||
-rw-r--r-- | src/vppinfra/bihash_48_8.h | 4 |
5 files changed, 10 insertions, 11 deletions
diff --git a/src/vppinfra/bihash_24_16.h b/src/vppinfra/bihash_24_16.h index 4e979b49410..b9279a88fab 100644 --- a/src/vppinfra/bihash_24_16.h +++ b/src/vppinfra/bihash_24_16.h @@ -77,8 +77,8 @@ static inline int clib_bihash_key_compare_24_16 (u64 * a, u64 * b) { #if defined (CLIB_HAVE_VEC512) - u64x8 v = u64x8_load_unaligned (a) ^ u64x8_load_unaligned (b); - return (u64x8_is_zero_mask (v) & 0x7) == 0; + return u64x8_is_equal (u64x8_mask_load_zero (a, 0x7), + u64x8_mask_load_zero (b, 0x7)); #elif defined(CLIB_HAVE_VEC128) && defined(CLIB_HAVE_VEC128_UNALIGNED_LOAD_STORE) u64x2 v = { a[2] ^ b[2], 0 }; v |= u64x2_load_unaligned (a) ^ u64x2_load_unaligned (b); diff --git a/src/vppinfra/bihash_24_8.h b/src/vppinfra/bihash_24_8.h index 2d667ad9aa3..e83437439d1 100644 --- a/src/vppinfra/bihash_24_8.h +++ b/src/vppinfra/bihash_24_8.h @@ -77,8 +77,8 @@ static inline int clib_bihash_key_compare_24_8 (u64 * a, u64 * b) { #if defined (CLIB_HAVE_VEC512) - u64x8 v = u64x8_load_unaligned (a) ^ u64x8_load_unaligned (b); - return (u64x8_is_zero_mask (v) & 0x7) == 0; + return u64x8_is_equal (u64x8_mask_load_zero (a, 0x7), + u64x8_mask_load_zero (b, 0x7)); #elif defined(CLIB_HAVE_VEC128) && defined(CLIB_HAVE_VEC128_UNALIGNED_LOAD_STORE) u64x2 v = { a[2] ^ b[2], 0 }; v |= u64x2_load_unaligned (a) ^ u64x2_load_unaligned (b); diff --git a/src/vppinfra/bihash_32_8.h b/src/vppinfra/bihash_32_8.h index 0935fcce184..52a18352d71 100644 --- a/src/vppinfra/bihash_32_8.h +++ b/src/vppinfra/bihash_32_8.h @@ -77,8 +77,8 @@ static inline int clib_bihash_key_compare_32_8 (u64 *a, u64 *b) { #if defined(CLIB_HAVE_VEC512) - u64x8 v = u64x8_load_unaligned (a) ^ u64x8_load_unaligned (b); - return (u64x8_is_zero_mask (v) & 0xf) == 0; + return u64x8_is_equal (u64x8_mask_load_zero (a, 0xf), + u64x8_mask_load_zero (b, 0xf)); #elif defined(CLIB_HAVE_VEC256) u64x4 v = u64x4_load_unaligned (a) ^ u64x4_load_unaligned (b); return u64x4_is_all_zero (v); diff --git a/src/vppinfra/bihash_40_8.h b/src/vppinfra/bihash_40_8.h index 1fb344fdeeb..f64784f0488 100644 --- a/src/vppinfra/bihash_40_8.h +++ b/src/vppinfra/bihash_40_8.h @@ -78,9 +78,8 @@ static inline int clib_bihash_key_compare_40_8 (u64 * a, u64 * b) { #if defined (CLIB_HAVE_VEC512) - u64x8 v; - v = u64x8_load_unaligned (a) ^ u64x8_load_unaligned (b); - return (u64x8_is_zero_mask (v) & 0x1f) == 0; + return u64x8_is_equal (u64x8_mask_load_zero (a, 0x1f), + u64x8_mask_load_zero (b, 0x1f)); #elif defined (CLIB_HAVE_VEC256) u64x4 v = { a[4] ^ b[4], 0, 0, 0 }; v |= u64x4_load_unaligned (a) ^ u64x4_load_unaligned (b); diff --git a/src/vppinfra/bihash_48_8.h b/src/vppinfra/bihash_48_8.h index 54fd7090e81..928b10217ec 100644 --- a/src/vppinfra/bihash_48_8.h +++ b/src/vppinfra/bihash_48_8.h @@ -78,8 +78,8 @@ static inline int clib_bihash_key_compare_48_8 (u64 * a, u64 * b) { #if defined (CLIB_HAVE_VEC512) - u64x8 v = u64x8_load_unaligned (a) ^ u64x8_load_unaligned (b); - return (u64x8_is_zero_mask (v) & 0x3f) == 0; + return u64x8_is_equal (u64x8_mask_load_zero (a, 0x3f), + u64x8_mask_load_zero (b, 0x3f)); #elif defined (CLIB_HAVE_VEC256) u64x4 v = { 0 }; v = u64x4_insert_lo (v, u64x2_load_unaligned (a + 4) ^ |