1 #ifndef _TEST_URCU_HASH_H
2 #define _TEST_URCU_HASH_H
7 * Userspace RCU library - test program
9 * Copyright 2009-2012 - Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License along
22 * with this program; if not, write to the Free Software Foundation, Inc.,
23 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
30 #include <sys/types.h>
37 #include <urcu/assert.h>
38 #include <urcu/tls-compat.h>
39 #include <compat-rand.h>
40 #include "thread-id.h"
41 #include "../common/debug-yield.h"
43 #define DEFAULT_HASH_SIZE 32
44 #define DEFAULT_MIN_ALLOC_SIZE 1
45 #define DEFAULT_RAND_POOL 1000000
48 * Note: the hash seed should be a random value for hash tables
49 * targeting production environments to provide protection against
50 * denial of service attacks. We keep it a static value within this test
51 * program to compare identical benchmark runs.
53 #define TEST_HASH_SEED 0x42UL
55 /* hardcoded number of CPUs */
59 #define poison_free(ptr) \
61 memset(ptr, 0x42, sizeof(*(ptr))); \
65 #define poison_free(ptr) free(ptr)
68 #ifndef DYNAMIC_LINK_TEST
71 #define debug_yield_read()
73 #include <urcu-qsbr.h>
74 #include <urcu/rculfhash.h>
75 #include <urcu-call-rcu.h>
78 unsigned long update_ops
;
80 unsigned long add_exist
;
84 extern DECLARE_URCU_TLS(unsigned int, rand_lookup
);
85 extern DECLARE_URCU_TLS(unsigned long, nr_add
);
86 extern DECLARE_URCU_TLS(unsigned long, nr_addexist
);
87 extern DECLARE_URCU_TLS(unsigned long, nr_del
);
88 extern DECLARE_URCU_TLS(unsigned long, nr_delnoent
);
89 extern DECLARE_URCU_TLS(unsigned long, lookup_fail
);
90 extern DECLARE_URCU_TLS(unsigned long, lookup_ok
);
92 extern struct cds_lfht
*test_ht
;
99 struct lfht_test_node
{
100 struct cds_lfht_node node
;
102 unsigned int key_len
;
103 /* cache-cold for iteration */
104 struct rcu_head head
;
107 static inline struct lfht_test_node
*
108 to_test_node(struct cds_lfht_node
*node
)
110 return caa_container_of(node
, struct lfht_test_node
, node
);
114 void lfht_test_node_init(struct lfht_test_node
*node
, void *key
,
117 cds_lfht_node_init(&node
->node
);
119 node
->key_len
= key_len
;
122 static inline struct lfht_test_node
*
123 cds_lfht_iter_get_test_node(struct cds_lfht_iter
*iter
)
125 return to_test_node(cds_lfht_iter_get_node(iter
));
128 extern volatile int test_go
, test_stop
;
130 extern unsigned long wdelay
;
132 extern unsigned long duration
;
134 /* read-side C.S. duration, in loops */
135 extern unsigned long rduration
;
137 extern unsigned long init_hash_size
;
138 extern unsigned long min_hash_alloc_size
;
139 extern unsigned long max_hash_buckets_size
;
140 extern unsigned long init_populate
;
141 extern int opt_auto_resize
;
142 extern int add_only
, add_unique
, add_replace
;
143 extern const struct cds_lfht_mm_type
*memory_backend
;
145 extern unsigned long init_pool_offset
, lookup_pool_offset
, write_pool_offset
;
146 extern unsigned long init_pool_size
,
149 extern int validate_lookup
;
151 extern unsigned long nr_hash_chains
;
153 extern int count_pipe
[2];
155 static inline void loop_sleep(unsigned long loops
)
161 extern int verbose_mode
;
163 #define printf_verbose(fmt, args...) \
166 printf(fmt, ## args); \
169 extern unsigned int cpu_affinities
[NR_CPUS
];
170 extern unsigned int next_aff
;
171 extern int use_affinity
;
173 extern pthread_mutex_t affinity_mutex
;
175 void set_affinity(void);
178 * returns 0 if test should end.
180 static inline int test_duration_write(void)
185 static inline int test_duration_read(void)
190 extern DECLARE_URCU_TLS(unsigned long long, nr_writes
);
191 extern DECLARE_URCU_TLS(unsigned long long, nr_reads
);
193 extern unsigned int nr_readers
;
194 extern unsigned int nr_writers
;
196 void rcu_copy_mutex_lock(void);
197 void rcu_copy_mutex_unlock(void);
201 * Source: http://burtleburtle.net/bob/c/lookup3.c
202 * Originally Public Domain
205 #define rot(x, k) (((x) << (k)) | ((x) >> (32 - (k))))
207 #define mix(a, b, c) \
209 a -= c; a ^= rot(c, 4); c += b; \
210 b -= a; b ^= rot(a, 6); a += c; \
211 c -= b; c ^= rot(b, 8); b += a; \
212 a -= c; a ^= rot(c, 16); c += b; \
213 b -= a; b ^= rot(a, 19); a += c; \
214 c -= b; c ^= rot(b, 4); b += a; \
217 #define final(a, b, c) \
219 c ^= b; c -= rot(b, 14); \
220 a ^= c; a -= rot(c, 11); \
221 b ^= a; b -= rot(a, 25); \
222 c ^= b; c -= rot(b, 16); \
223 a ^= c; a -= rot(c, 4);\
224 b ^= a; b -= rot(a, 14); \
225 c ^= b; c -= rot(b, 24); \
228 static inline __attribute__((unused
))
230 const uint32_t *k
, /* the key, an array of uint32_t values */
231 size_t length
, /* the length of the key, in uint32_ts */
232 uint32_t initval
) /* the previous hash, or an arbitrary value */
236 /* Set up the internal state */
237 a
= b
= c
= 0xdeadbeef + (((uint32_t) length
) << 2) + initval
;
239 /*----------------------------------------- handle most of the key */
249 /*----------------------------------- handle the last 3 uint32_t's */
250 switch (length
) { /* all the case statements fall through */
251 case 3: c
+= k
[2]; /* fall through */
252 case 2: b
+= k
[1]; /* fall through */
256 case 0: /* case 0: nothing left to add */
259 /*---------------------------------------------- report the result */
265 const uint32_t *k
, /* the key, an array of uint32_t values */
266 size_t length
, /* the length of the key, in uint32_ts */
267 uint32_t *pc
, /* IN: seed OUT: primary hash value */
268 uint32_t *pb
) /* IN: more seed OUT: secondary hash value */
272 /* Set up the internal state */
273 a
= b
= c
= 0xdeadbeef + ((uint32_t) (length
<< 2)) + *pc
;
276 /*----------------------------------------- handle most of the key */
286 /*----------------------------------- handle the last 3 uint32_t's */
287 switch (length
) { /* all the case statements fall through */
288 case 3: c
+= k
[2]; /* fall through */
289 case 2: b
+= k
[1]; /* fall through */
293 case 0: /* case 0: nothing left to add */
296 /*---------------------------------------------- report the result */
301 #if (CAA_BITS_PER_LONG == 32)
303 unsigned long test_hash_mix(const void *_key
, size_t length
, unsigned long seed
)
305 unsigned int key
= (unsigned int) _key
;
307 urcu_posix_assert(length
== sizeof(unsigned int));
308 return hash_u32(&key
, 1, seed
);
312 unsigned long test_hash_mix(const void *_key
, size_t length
, unsigned long seed
)
323 urcu_posix_assert(length
== sizeof(unsigned long));
324 v
.v64
= (uint64_t) seed
;
325 key
.v64
= (uint64_t) _key
;
326 hashword2(key
.v32
, 2, &v
.v32
[0], &v
.v32
[1]);
332 * Hash function with nr_hash_chains != 0 for testing purpose only!
333 * Creates very long hash chains, deteriorating the hash table into a
334 * few linked lists, depending on the nr_hash_chains value. The purpose
335 * of this test is to check how the hash table behaves with hash chains
336 * containing different values, which is a rare case in a normal hash
340 unsigned long test_hash(const void *_key
, size_t length
,
343 if (nr_hash_chains
== 0) {
344 return test_hash_mix(_key
, length
, seed
);
348 urcu_posix_assert(length
== sizeof(unsigned long));
349 v
= (unsigned long) _key
;
350 return v
% nr_hash_chains
;
354 unsigned long test_compare(const void *key1
, size_t key1_len
,
355 const void *key2
, size_t key2_len
);
358 int test_match(struct cds_lfht_node
*node
, const void *key
)
360 struct lfht_test_node
*test_node
= to_test_node(node
);
362 return !test_compare(test_node
->key
, test_node
->key_len
,
363 key
, sizeof(unsigned long));
367 void cds_lfht_test_lookup(struct cds_lfht
*ht
, void *key
, size_t key_len
,
368 struct cds_lfht_iter
*iter
)
370 urcu_posix_assert(key_len
== sizeof(unsigned long));
372 cds_lfht_lookup(ht
, test_hash(key
, key_len
, TEST_HASH_SEED
),
373 test_match
, key
, iter
);
376 void free_node_cb(struct rcu_head
*head
);
379 void test_hash_rw_sigusr1_handler(int signo
);
380 void test_hash_rw_sigusr2_handler(int signo
);
381 void *test_hash_rw_thr_reader(void *_count
);
382 void *test_hash_rw_thr_writer(void *_count
);
383 int test_hash_rw_populate_hash(void);
386 void test_hash_unique_sigusr1_handler(int signo
);
387 void test_hash_unique_sigusr2_handler(int signo
);
388 void *test_hash_unique_thr_reader(void *_count
);
389 void *test_hash_unique_thr_writer(void *_count
);
390 int test_hash_unique_populate_hash(void);
392 #endif /* _TEST_URCU_HASH_H */