summaryrefslogtreecommitdiffstats
path: root/src/vppinfra/bihash_16_8_32.h
blob: 3e83ad2c52fd119889c011ac2b49df0d21d881a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/*
 * Copyright (c) 2018 Cisco and/or its affiliates.
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at:
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
#undef BIHASH_TYPE
#undef BIHASH_KVP_PER_PAGE

#define BIHASH_TYPE _16_8_32
#define BIHASH_KVP_PER_PAGE 4

#define BIHASH_32_64_SVM 1

#ifndef __included_bihash_16_18_32_h__
#define __included_bihash_16_18_32_h__

#include <vppinfra/heap.h>
#include <vppinfra/format.h>
#include <vppinfra/pool.h>
#include <vppinfra/xxhash.h>
#include <vppinfra/crc32.h>

typedef struct
{
  u64 key[2];
  u64 value;
} clib_bihash_kv_16_8_32_t;

static inline int
clib_bihash_is_free_16_8_32 (clib_bihash_kv_16_8_32_t * v)
{
  /* Free values are clib_memset to 0xff, check a bit... */
  if (v->key[0] == ~0ULL && v->value == ~0ULL)
    return 1;
  return 0;
}

static inline u64
clib_bihash_hash_16_8_32 (clib_bihash_kv_16_8_32_t * v)
{
#ifdef clib_crc32c_uses_intrinsics
  return clib_crc32c ((u8 *) v->key, 16);
#else
  u64 tmp = v->key[0] ^ v->key[1];
  return clib_xxhash (tmp);
#endif
}

static inline u8 *
format_bihash_kvp_16_8_32 (u8 * s, va_list * args)
{
  clib_bihash_kv_16_8_32_t *v = va_arg (*args, clib_bihash_kv_16_8_32_t *);

  s = format (s, "key %llu %llu value %llu", v->key[0], v->key[1], v->value);
  return s;
}

static inline int
clib_bihash_key_compare_16_8_32 (u64 * a, u64 * b)
{
#if defined(CLIB_HAVE_VEC128) && defined(CLIB_HAVE_VEC128_UNALIGNED_LOAD_STORE)
  u64x2 v;
  v = u64x2_load_unaligned (a) ^ u64x2_load_unaligned (b);
  return u64x2_is_all_zero (v);
#else
  return ((a[0] ^ b[0]) | (a[1] ^ b[1])) == 0;
#endif
}

#undef __included_bihash_template_h__
#include <vppinfra/bihash_template.h>

#endif /* __included_bihash_16_8_32_h__ */

/*
 * fd.io coding-style-patch-verification: ON
 *
 * Local Variables:
 * eval: (c-set-style "gnu")
 * End:
 */
/* pair add until we have 2 uint64_t */ u16x8 merge1 = vpaddlq_u8 (before_merge); /* u16x8--> [a+b,c+d, e+f,g+h, i+j,k+l, m+n,o+p] */ u32x4 merge2 = vpaddlq_u16 (merge1); /* u32x4--> [a+b+c+d, e+f+g+h, i+j+k+l, m+n+o+p] */ u64x2 merge3 = vpaddlq_u32 (merge2); /* u64x2--> [a+b+c+d+e+f+g+h, i+j+k+l+m+n+o+p] */ return (u32) (vgetq_lane_u64 (merge3, 1) << 8) + vgetq_lane_u64 (merge3, 0); } always_inline u32 u8x16_zero_byte_mask (u8x16 input) { return u16x8_zero_byte_mask ((u16x8) input); } always_inline u32 u32x4_zero_byte_mask (u32x4 input) { return u16x8_zero_byte_mask ((u16x8) input); } always_inline u32 u64x2_zero_byte_mask (u64x2 input) { return u16x8_zero_byte_mask ((u16x8) input); } /* *INDENT-OFF* */ #define foreach_neon_vec128i \ _(i,8,16,s8) _(i,16,8,s16) _(i,32,4,s32) _(i,64,2,s64) #define foreach_neon_vec128u \ _(u,8,16,u8) _(u,16,8,u16) _(u,32,4,u32) _(u,64,2,u64) #define foreach_neon_vec128f \ _(f,32,4,f32) _(f,64,2,f64) #define _(t, s, c, i) \ static_always_inline t##s##x##c \ t##s##x##c##_splat (t##s x) \ { return (t##s##x##c) vdupq_n_##i (x); } \ \ static_always_inline t##s##x##c \ t##s##x##c##_load_unaligned (void *p) \ { return (t##s##x##c) vld1q_##i (p); } \ \ static_always_inline void \ t##s##x##c##_store_unaligned (t##s##x##c v, void *p) \ { vst1q_##i (p, v); } \ \ static_always_inline int \ t##s##x##c##_is_all_zero (t##s##x##c x) \ { return !(vaddvq_##i (x)); } \ \ static_always_inline int \ t##s##x##c##_is_equal (t##s##x##c a, t##s##x##c b) \ { return t##s##x##c##_is_all_zero (a ^ b); } \ \ static_always_inline int \ t##s##x##c##_is_all_equal (t##s##x##c v, t##s x) \ { return t##s##x##c##_is_equal (v, t##s##x##c##_splat (x)); }; \ foreach_neon_vec128i foreach_neon_vec128u #undef _ /* *INDENT-ON* */ static_always_inline u16x8 u16x8_byte_swap (u16x8 v) { return (u16x8) vrev16q_u8 ((u8x16) v); } static_always_inline u8x16 u8x16_shuffle (u8x16 v, u8x16 m) { return (u8x16) vqtbl1q_u8 (v, m); } static_always_inline u32x4 u32x4_hadd (u32x4 v1, u32x4 v2) { return (u32x4) vpaddq_u32 (v1, v2); } static_always_inline u64x2 u32x4_extend_to_u64x2 (u32x4 v) { return vmovl_u32 (vget_low_u32 (v)); } static_always_inline u64x2 u32x4_extend_to_u64x2_high (u32x4 v) { return vmovl_high_u32 (v); } #define CLIB_HAVE_VEC128_UNALIGNED_LOAD_STORE #define CLIB_VEC128_SPLAT_DEFINED #endif /* included_vector_neon_h */ /* * fd.io coding-style-patch-verification: ON * * Local Variables: * eval: (c-set-style "gnu") * End: */