From: Benoît Ganne Date: Mon, 21 Mar 2022 14:01:41 +0000 (+0100) Subject: vppinfra: fix bihash key comparison for 512-bits vectors X-Git-Tag: v22.10-rc0~225 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F48%2F35748%2F4;p=vpp.git 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 --- 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) ^