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.
31 #include <sys/types.h>
39 #include <urcu/tls-compat.h>
40 #include <urcu/rand-compat.h>
42 #include "thread-id.h"
43 #include "../common/debug-yield.h"
45 #define DEFAULT_HASH_SIZE 32
46 #define DEFAULT_MIN_ALLOC_SIZE 1
47 #define DEFAULT_RAND_POOL 1000000
50 * Note: the hash seed should be a random value for hash tables
51 * targeting production environments to provide protection against
52 * denial of service attacks. We keep it a static value within this test
53 * program to compare identical benchmark runs.
55 #define TEST_HASH_SEED 0x42UL
57 /* hardcoded number of CPUs */
61 #define poison_free(ptr) \
63 memset(ptr, 0x42, sizeof(*(ptr))); \
67 #define poison_free(ptr) free(ptr)
70 #ifndef DYNAMIC_LINK_TEST
73 #define debug_yield_read()
75 #include <urcu-qsbr.h>
76 #include <urcu/rculfhash.h>
77 #include <urcu-call-rcu.h>
80 unsigned long update_ops
;
82 unsigned long add_exist
;
86 extern DECLARE_URCU_TLS(unsigned int, rand_lookup
);
87 extern DECLARE_URCU_TLS(unsigned long, nr_add
);
88 extern DECLARE_URCU_TLS(unsigned long, nr_addexist
);
89 extern DECLARE_URCU_TLS(unsigned long, nr_del
);
90 extern DECLARE_URCU_TLS(unsigned long, nr_delnoent
);
91 extern DECLARE_URCU_TLS(unsigned long, lookup_fail
);
92 extern DECLARE_URCU_TLS(unsigned long, lookup_ok
);
94 extern struct cds_lfht
*test_ht
;
101 struct lfht_test_node
{
102 struct cds_lfht_node node
;
104 unsigned int key_len
;
105 /* cache-cold for iteration */
106 struct rcu_head head
;
109 static inline struct lfht_test_node
*
110 to_test_node(struct cds_lfht_node
*node
)
112 return caa_container_of(node
, struct lfht_test_node
, node
);
116 void lfht_test_node_init(struct lfht_test_node
*node
, void *key
,
119 cds_lfht_node_init(&node
->node
);
121 node
->key_len
= key_len
;
124 static inline struct lfht_test_node
*
125 cds_lfht_iter_get_test_node(struct cds_lfht_iter
*iter
)
127 return to_test_node(cds_lfht_iter_get_node(iter
));
130 extern volatile int test_go
, test_stop
;
132 extern unsigned long wdelay
;
134 extern unsigned long duration
;
136 /* read-side C.S. duration, in loops */
137 extern unsigned long rduration
;
139 extern unsigned long init_hash_size
;
140 extern unsigned long min_hash_alloc_size
;
141 extern unsigned long max_hash_buckets_size
;
142 extern unsigned long init_populate
;
143 extern int opt_auto_resize
;
144 extern int add_only
, add_unique
, add_replace
;
145 extern const struct cds_lfht_mm_type
*memory_backend
;
147 extern unsigned long init_pool_offset
, lookup_pool_offset
, write_pool_offset
;
148 extern unsigned long init_pool_size
,
151 extern int validate_lookup
;
153 extern unsigned long nr_hash_chains
;
155 extern int count_pipe
[2];
157 static inline void loop_sleep(unsigned long loops
)
163 extern int verbose_mode
;
165 #define printf_verbose(fmt, args...) \
168 printf(fmt, ## args); \
171 extern unsigned int cpu_affinities
[NR_CPUS
];
172 extern unsigned int next_aff
;
173 extern int use_affinity
;
175 extern pthread_mutex_t affinity_mutex
;
177 void set_affinity(void);
180 * returns 0 if test should end.
182 static inline int test_duration_write(void)
187 static inline int test_duration_read(void)
192 extern DECLARE_URCU_TLS(unsigned long long, nr_writes
);
193 extern DECLARE_URCU_TLS(unsigned long long, nr_reads
);
195 extern unsigned int nr_readers
;
196 extern unsigned int nr_writers
;
198 void rcu_copy_mutex_lock(void);
199 void rcu_copy_mutex_unlock(void);
203 * Source: http://burtleburtle.net/bob/c/lookup3.c
204 * Originally Public Domain
207 #define rot(x, k) (((x) << (k)) | ((x) >> (32 - (k))))
209 #define mix(a, b, c) \
211 a -= c; a ^= rot(c, 4); c += b; \
212 b -= a; b ^= rot(a, 6); a += c; \
213 c -= b; c ^= rot(b, 8); b += a; \
214 a -= c; a ^= rot(c, 16); c += b; \
215 b -= a; b ^= rot(a, 19); a += c; \
216 c -= b; c ^= rot(b, 4); b += a; \
219 #define final(a, b, c) \
221 c ^= b; c -= rot(b, 14); \
222 a ^= c; a -= rot(c, 11); \
223 b ^= a; b -= rot(a, 25); \
224 c ^= b; c -= rot(b, 16); \
225 a ^= c; a -= rot(c, 4);\
226 b ^= a; b -= rot(a, 14); \
227 c ^= b; c -= rot(b, 24); \
230 static inline __attribute__((unused
))
232 const uint32_t *k
, /* the key, an array of uint32_t values */
233 size_t length
, /* the length of the key, in uint32_ts */
234 uint32_t initval
) /* the previous hash, or an arbitrary value */
238 /* Set up the internal state */
239 a
= b
= c
= 0xdeadbeef + (((uint32_t) length
) << 2) + initval
;
241 /*----------------------------------------- handle most of the key */
251 /*----------------------------------- handle the last 3 uint32_t's */
252 switch (length
) { /* all the case statements fall through */
257 case 0: /* case 0: nothing left to add */
260 /*---------------------------------------------- report the result */
266 const uint32_t *k
, /* the key, an array of uint32_t values */
267 size_t length
, /* the length of the key, in uint32_ts */
268 uint32_t *pc
, /* IN: seed OUT: primary hash value */
269 uint32_t *pb
) /* IN: more seed OUT: secondary hash value */
273 /* Set up the internal state */
274 a
= b
= c
= 0xdeadbeef + ((uint32_t) (length
<< 2)) + *pc
;
277 /*----------------------------------------- handle most of the key */
287 /*----------------------------------- handle the last 3 uint32_t's */
288 switch (length
) { /* all the case statements 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 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 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 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 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 */