-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathhash.c
881 lines (738 loc) · 20.4 KB
/
hash.c
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <assert.h>
#include <string.h>
#include <pthread.h>
#define TRUE 1
#define FALSE 0
#define UNINITIALIZED (NULL)
typedef unsigned int hash_t;
typedef void* key_t;
typedef void* value_t;
typedef int gboolean;
typedef void* gpointer;
#define PTR_TO_UINT(p) ((unsigned)(uintptr_t)p)
#define UINT_TO_PTR(p) ((void*)(uintptr_t)p)
#define LOAD_FACTOR 0.75f
typedef struct _node node_t;
typedef node_t* mark_ptr_t;
struct _node {
mark_ptr_t next;
hash_t hash_code;
key_t key;
value_t value;
};
typedef struct {
mark_ptr_t *table;
unsigned count, size;
gboolean lock_value;
} conc_hashtable_t;
/*FIXME, make this use a table*/
static hash_t
reverse_value (hash_t k)
{
int i;
hash_t r = 0;
for (i = 0; i < 32; ++i) {
hash_t bit = (k & (1 << i)) >> i;
r |= bit << (31 - i);
}
return r;
}
static inline hash_t
hash_key (key_t key)
{
return (hash_t)((uintptr_t)(key) * 2654435761u);
}
static inline hash_t
hash_regular_key (hash_t k)
{
return reverse_value (k | 0x80000000);
}
static inline hash_t
hash_dummy_key (hash_t k)
{
return reverse_value (k & ~0x80000000);
}
static inline gboolean
is_dummy_node (hash_t k)
{
return (k & 0x1) == 0;
}
static inline gboolean
is_regular_node (hash_t k)
{
return (k & 0x1) == 1;
}
#define atomic_fetch_and_inc(t) __sync_fetch_and_add (t, 1)
#define atomic_fetch_and_dec(t) __sync_fetch_and_sub (t, 1)
#define atomic_compare_and_swap(t,old,new) __sync_bool_compare_and_swap (t, old, new)
#define load_barrier __builtin_ia32_lfence
#define store_barrier __builtin_ia32_sfence
#define memory_barrier __builtin_ia32_mfence
#define atomic_load(p) ({ typeof(*p) __tmp = *(p); load_barrier (); __tmp; })
#define atomic_store(p, v) do { store_barrier (); *(p) = v; } while (0);
static inline mark_ptr_t
mk_node (node_t *n, uintptr_t bit)
{
return (mark_ptr_t)(((uintptr_t)n) | bit);
}
static inline node_t*
get_node (mark_ptr_t n)
{
return (node_t*)(((uintptr_t)n) & ~(uintptr_t)0x1);
}
static inline uintptr_t
get_bit (mark_ptr_t n)
{
return (uintptr_t)n & 0x1;
}
static void
delete_node (mark_ptr_t node)
{
assert (get_bit (node) == 0);
// free (get_node (node));
}
/*Dummy implementation of hazzard pointers */
pthread_key_t hazard_pointer;
static gpointer*
get_hazard_table (void)
{
gpointer *tb = pthread_getspecific (hazard_pointer);
if (!tb) {
tb = calloc (sizeof (gpointer), 3);
pthread_setspecific (hazard_pointer, tb);
}
return tb;
}
static gpointer
get_hazardous_pointer (gpointer *pp, int hazard_index)
{
gpointer res = *pp;
get_hazard_table () [hazard_index] = res;
return res;
}
/*Clean the bottom 2 bits*/
static gpointer*
unmask (gpointer* p)
{
return (gpointer*)((uintptr_t)p & ~(uintptr_t)0x3);
}
/*
Use this version of get_hazardous_pointer if either
@pp or the value it points to might be masked.
*/
static gpointer
get_hazardous_pointer_with_mask (gpointer *pp, int hazard_index)
{
gpointer res = *unmask (pp);
get_hazard_table () [hazard_index] = unmask (res);
return res;
}
static void
clear_hazardous_pointer (int hazard_index)
{
get_hazard_table () [hazard_index] = NULL;
}
static void
set_hazardous_pointer (gpointer pp, int hazard_index)
{
get_hazard_table () [hazard_index] = pp;
}
static void
set_hazardous_pointer_with_mask (gpointer pp, int hazard_index)
{
get_hazard_table () [hazard_index] = unmask (pp);
}
static void
clear_hazardous_pointers (void)
{
gpointer *tb = get_hazard_table ();
tb [0] = NULL;
tb [1] = NULL;
tb [2] = NULL;
}
static void*
get_current_hazardous_pointer (int hazard_index)
{
return get_hazard_table () [hazard_index];
}
////////////////////////////////////////////
/*
LOCKING:
On Entry:
HP 0/1/2 should be available
On Exit:
if res == null
(null, null, prev)
else
(next, cur, prev)
Return value:
cur
*/
static mark_ptr_t
list_find_hp (conc_hashtable_t *ht, unsigned bucket, key_t key, hash_t hash_code, mark_ptr_t **out_prev)
{
mark_ptr_t *table;
mark_ptr_t cur, next, *prev;
try_again:
table = get_hazardous_pointer ((void**)&ht->table, 0);
mark_ptr_t *head = &table [bucket];
prev = head;
cur = get_hazardous_pointer ((void**)prev, 1);
while (1) {
if (get_node (cur) == NULL)
goto done;
next = get_hazardous_pointer_with_mask ((void**)&cur->next, 0);
hash_t cur_hash = cur->hash_code;
key_t cur_key = cur->key;
if (atomic_load (prev) != mk_node (get_node (cur), 0))
goto try_again;
if (!get_bit (next)) {
if (cur_hash > hash_code || (cur_hash == hash_code && cur_key == key))
goto done;
prev = &get_node (cur)->next;
set_hazardous_pointer_with_mask (cur, 2);
} else {
if (atomic_compare_and_swap (prev, mk_node (get_node (cur), 0), mk_node (get_node (next), 0)))
delete_node (get_node (cur));
else
goto try_again;
}
cur = next;
set_hazardous_pointer_with_mask (next, 1);
}
done:
*out_prev = prev;
return cur;
}
/*
LOCKING:
Same as list_find_hp.
This function has the same logic as list_find_hp except it sweeps the whole hash table
*/
static mark_ptr_t
list_sweep_hp (conc_hashtable_t *ht)
{
mark_ptr_t *table;
mark_ptr_t cur, next, *prev;
try_again:
table = get_hazardous_pointer ((void**)&ht->table, 0);
mark_ptr_t *head = &table [0];
prev = head;
cur = get_hazardous_pointer ((void**)prev, 1);
while (1) {
if (get_node (cur) == NULL)
break;
next = get_hazardous_pointer_with_mask ((void**)&cur->next, 0);
if (atomic_load (prev) != mk_node (get_node (cur), 0))
goto try_again;
if (!get_bit (next)) {
prev = &get_node (cur)->next;
set_hazardous_pointer_with_mask (cur, 2);
} else {
if (atomic_compare_and_swap (prev, mk_node (get_node (cur), 0), mk_node (get_node (next), 0)))
delete_node (get_node (cur));
else
goto try_again;
}
cur = next;
set_hazardous_pointer_with_mask (next, 1);
}
}
/*
This function doesn't perform any delete, so use it with care.
LOCKING:
On Entry:
HP 0/1/2 should be available
On Exit:
if res == null
(null, null, prev)
else
(next, cur, prev)
Return value:
cur
*/
static mark_ptr_t
list_find_signal_safe_hp (conc_hashtable_t *ht, unsigned bucket, key_t key, hash_t hash_code, mark_ptr_t **out_prev)
{
mark_ptr_t *table;
mark_ptr_t cur, next, *prev;
gboolean deleted = FALSE;
try_again:
table = get_hazardous_pointer ((void**)&ht->table, 0);
mark_ptr_t *head = &table [bucket];
prev = head;
cur = get_hazardous_pointer ((void**)prev, 1);
while (1) {
if (cur == NULL)
goto done;
next = get_hazardous_pointer_with_mask ((void**)&cur->next, 0);
hash_t cur_hash = cur->hash_code;
key_t cur_key = cur->key;
if (atomic_load (prev) != mk_node (get_node (cur), 0))
goto try_again;
if (cur_hash > hash_code || (cur_hash == hash_code && cur_key == key)) {
if (deleted)
cur = NULL;
goto done;
}
deleted = get_bit (next) != 0;
prev = &get_node (cur)->next;
set_hazardous_pointer_with_mask (cur, 2);
cur = next;
set_hazardous_pointer_with_mask (next, 1);
}
done:
*out_prev = prev;
return cur;
}
/*
LOCKING:
On Entry:
HP 0/1/2 are available
On exit:
if res == node
(next, cur, prev)
else
(node, cur, prev) *cur might be null
Return:
either the new node or the exiting one
*/
static mark_ptr_t
list_insert_hp (conc_hashtable_t *ht, unsigned bucket, node_t *node)
{
mark_ptr_t res, *prev;
key_t key = node->key;
hash_t hash_code = node->hash_code;
/*We must do a store barrier before inserting
to make sure all values in @node are globally visible.*/
store_barrier ();
while (1) {
res = list_find_hp (ht, bucket, key, hash_code, &prev);
if (res && res->hash_code == node->hash_code && res->key == node->key)
return res;
node->next = mk_node (get_node (res), 0);
set_hazardous_pointer (node, 0);
if (atomic_compare_and_swap (prev, mk_node (get_node (res), 0), mk_node (node, 0)))
return node;
}
}
/*
LOCKING:
On Entry:
HP 0/1/2 are available
On exit:
(?, res, ?) *res might be null
Return:
either null or the deleted node.
*/
static mark_ptr_t
list_delete_hp (conc_hashtable_t *ht, unsigned bucket, key_t key, hash_t hash_code)
{
mark_ptr_t res, *prev, next;
while (1) {
res = list_find_hp (ht, bucket, key, hash_code, &prev);
if (!res || res->hash_code != hash_code || res->key != key)
return NULL;
next = get_current_hazardous_pointer (0);
if (!atomic_compare_and_swap (&get_node (res)->next, mk_node (get_node (next), 0), mk_node (get_node (next), 1)))
continue;
if (atomic_compare_and_swap (prev, mk_node (get_node (res), 0), mk_node (get_node (next), 0)))
delete_node (get_node (res));
/* XXX
* We must deviate from the standard algorithm here otherwise we won't be able to hold a HP
* to res otherwise. Not doing the find here means that it will take longer for the list to converge
* to a state with no deleted nodes. The degenerated case will have dead nodes that are not deleted
* because they are never traversed. If this turns out to be a problem the solution is to have a 4th HP.
*/
//else
// list_find_hp (ht, bucket, key, hash_code, &prev);
return res;
}
}
/*
LOCKING:
Assumes no concurrent accesss.
*/
static void
dump_hash (conc_hashtable_t *ht)
{
int i;
node_t *cur = get_node (ht->table [0]);
printf ("---------\n");
for (i = 0; i < ht->size; ++i)
if (ht->table [i]) printf ("root [%d] -> %p\n", i, ht->table [i]);
while (cur) {
printf ("node %p hash %08x key %p deleted %d\n", cur, cur->hash_code, (void*)(uintptr_t)cur->key, (int)get_bit (cur->next));
cur = get_node (cur->next);
}
printf ("---------\n");
}
static unsigned
get_parent (unsigned b)
{
int i;
for (i = 31; i >= 0; --i) {
if (b & (1 << i))
return b & ~(1 << i);
}
return 0;
}
/*
LOCKING:
On entry:
table must be held on HP 0
On exit:
(node, table, prev)
*/
static void
initialize_bucket (conc_hashtable_t *ht, mark_ptr_t *table, unsigned bucket)
{
mark_ptr_t res;
unsigned parent = get_parent (bucket);
/*This is protected by the non recursive caller HP*/
if (atomic_load (&table [parent]) == UNINITIALIZED)
initialize_bucket (ht, table, parent);
node_t *node = calloc (sizeof (node_t), 1);
node->key = (key_t)(uintptr_t)bucket;
node->hash_code = hash_dummy_key (bucket);
res = list_insert_hp (ht, parent, node);
if (get_node (res) != node) {
free (node);
node = get_node (res);
}
/*we need to reload it since the previous HP is no longer valid
HP 0 hold node, so we must use 1 or 2
*/
table = get_hazardous_pointer ((void**)&ht->table, 1);
atomic_store (&table [bucket], mk_node (node, 0));
}
/*
LOCKING:
On entry:
HP 0/1/2 can be any value
On exit:
HP 0 holds table. HP 1/2 unchanged
*/
static void
resize_table (conc_hashtable_t *ht, unsigned size)
{
node_t **old_table = get_hazardous_pointer ((void**)&ht->table, 0);
node_t **new_table = calloc (sizeof (node_t*), size * 2);
memcpy (new_table, old_table, sizeof (node_t*) * size);
if (!atomic_compare_and_swap (&ht->size, size, size * 2)) {
free (new_table);
return;
}
if (!atomic_compare_and_swap ((void**)&ht->table, old_table, new_table))
free (new_table);
}
/*
LOCKING:
On Entry:
HP 0/1/2 must not be in used
On Exit:
HP 0/1/2 are clear
*/
gboolean
conc_hashtable_insert (conc_hashtable_t *ht, key_t key, value_t value)
{
hash_t hash = hash_key (key);
node_t *node = calloc (sizeof (node_t), 1);
mark_ptr_t *table = get_hazardous_pointer ((void**)&ht->table, 0);
node->hash_code = hash_regular_key (hash);
node->key = key;
node->value = value;
unsigned bucket = hash % ht->size;
if (table [bucket] == UNINITIALIZED)
initialize_bucket (ht, table, bucket);
if (get_node (list_insert_hp (ht, bucket, node)) != node) {
free (node);
clear_hazardous_pointers ();
return FALSE;
}
float size = (float)ht->size;
if (atomic_fetch_and_inc (&ht->count) / size > LOAD_FACTOR)
resize_table (ht, size);
return TRUE;
}
/*
LOCKING:
On Entry:
HP 0/1/2 must not be in used
On Exit:
if ht->lock_value
(value, null, null)
else
HP 0/1/2 clear
*/
value_t
conc_hashtable_find (conc_hashtable_t *ht, key_t key)
{
mark_ptr_t res, *prev;
hash_t hash = hash_key (key);
unsigned bucket = hash % ht->size;
node_t *res_node;
mark_ptr_t *table = get_hazardous_pointer ((void**)&ht->table, 0);
if (table [bucket] == UNINITIALIZED)
initialize_bucket (ht, table, bucket);
hash = hash_regular_key (hash);
res = list_find_hp (ht, bucket, key, hash, &prev);
res_node = get_node (res);
if (res_node && res_node->hash_code == hash && res_node->key == key) {
value_t val = NULL;
if (ht->lock_value) {
value_t val = get_hazardous_pointer_with_mask (&res_node->value, 0);
clear_hazardous_pointer (1);
clear_hazardous_pointer (2);
} else {
val = res_node->value;
clear_hazardous_pointers ();
}
return val;
}
return NULL;
}
/*
This function does the same as conc_hashtable_find
except it doesn't delete nodes since it must be signal safe.
LOCKING:
On Entry:
HP 0/1/2 must not be in used
On Exit:
if ht->lock_value
(value, null, null)
else
HP 0/1/2 clear
*/
value_t
conc_hashtable_find_signal_safe (conc_hashtable_t *ht, key_t key)
{
mark_ptr_t res, *prev;
node_t *res_node;
hash_t hash = hash_key (key);
unsigned bucket = hash % ht->size;
mark_ptr_t *table = get_hazardous_pointer ((void**)&ht->table, 0);
while (table [bucket] == UNINITIALIZED && bucket != 0)
bucket = get_parent (bucket);
hash = hash_regular_key (hash);
res = list_find_signal_safe_hp (ht, bucket, key, hash, &prev);
res_node = get_node (res);
if (res_node && res_node->hash_code == hash && res_node->key == key && !get_bit (res->next)) {
value_t val = NULL;
if (ht->lock_value) {
value_t val = get_hazardous_pointer_with_mask (&res_node->value, 0);
clear_hazardous_pointer (1);
clear_hazardous_pointer (2);
} else {
val = res_node->value;
clear_hazardous_pointers ();
}
return val;
}
return NULL;
}
/*
LOCKING:
On Entry:
HP 0/1/2 must not be in used
On Exit:
if ht->lock_value
(value, null, null)
else
HP 0/1/2 clear
*/
value_t
conc_hashtable_delete (conc_hashtable_t *ht, key_t key)
{
mark_ptr_t res;
hash_t hash = hash_key (key);
unsigned bucket = hash % ht->size;
mark_ptr_t *table = get_hazardous_pointer ((void**)&ht->table, 0);
value_t value;
if (table [bucket] == UNINITIALIZED)
initialize_bucket (ht, table, bucket);
hash = hash_regular_key (hash);
res = list_delete_hp (ht, bucket, key, hash);
if (!res)
return NULL;
atomic_fetch_and_dec (&ht->count);
if (ht->lock_value) {
value = get_hazardous_pointer_with_mask (&get_node (res)->value, 0);
clear_hazardous_pointer (1);
clear_hazardous_pointer (2);
} else {
value = get_node (res)->value;
clear_hazardous_pointers ();
}
/*
We set value to NULL so if others get a hold on the deleted node
there is a smaller change of them seeing value.
*/
atomic_store (&res->value, NULL);
return value;
}
typedef gboolean (*foreach_callback) (key_t key, value_t value);
/*
Locking:
Assumes exclusive access.
Doesn't use any hazard pointer.
Doesn't reclaim any deleted node.
Since this must run with exclusive access, lock_value is not respected.
This is only useful if you want to iterate over the table during a
stop-the-world kind of scenario where it's safe to assume there are
no other threads running.
*/
void
conc_hashtable_foreach_exclusive (conc_hashtable_t *ht, foreach_callback cb)
{
int i;
node_t *cur = get_node (ht->table [0]);
for (; cur; cur = get_node (cur->next)) {
/*if node_t::next bit is set the current node has been deleted*/
if (get_bit (cur->next) || !cur->value || is_dummy_node (cur->hash_code))
continue;
if (cb (cur->key, cur->value))
cur->next = mk_node (get_node (cur->next), 1);
}
}
/*
LOCKING:
On Entry:
HP 0/1/2 must not be in used
On Exit:
HP 0/1/2 clear
During callback:
HP 0/1 (next, cur)
HP 2 has value if lock_value
Consistency:
There is no guarantee on what nodes will be seen during the
traversal in face of concurrent modification, the only guarantee
is that values will be consistent in respect to insert/delete.
It's possible to see deleted nodes, but access is reclamation safe.
*/
void
conc_hashtable_foreach (conc_hashtable_t *ht, foreach_callback cb)
{
mark_ptr_t next;
node_t *cur;
mark_ptr_t *table = get_hazardous_pointer ((void**)&ht->table, 2);
gboolean deleted = FALSE;
cur = get_node (get_hazardous_pointer ((void**)&table [0], 0));
for (; cur;) {
set_hazardous_pointer_with_mask (cur, 1); /* (cur, cur, ?)*/
next = get_hazardous_pointer_with_mask ((void**)&cur->next, 0); /* (next, cur, ?) */
if (!get_bit (next) && is_regular_node (cur->hash_code)) {
/*call CB*/
value_t *value = NULL;
if (ht->lock_value)
value = get_hazardous_pointer_with_mask (&cur->value, 2) /* (next, cur, value)*/;
else
value = cur->value;
if (value && cb (cur->key, value)) {
while (!atomic_compare_and_swap (&cur->next, mk_node (get_node (next), 0), mk_node (get_node (next), 1))) {
next = get_hazardous_pointer_with_mask ((void**)&cur->next, 0); /* (next, cur, value)*/
if (get_bit (next))
break;
}
/*We don't fixup the list during iteration since it would require 4 HPs for prev, cur, next and value*/
deleted = TRUE;
}
}
cur = get_node (next);
}
if (deleted)
list_sweep_hp (ht);
}
conc_hashtable_t*
conc_hashtable_create (gboolean lock_value)
{
conc_hashtable_t *res = calloc (sizeof (conc_hashtable_t), 1);
res->lock_value = lock_value;
res->size = 16;
res->table = calloc (sizeof (node_t), 16);
res->table [0] = calloc (sizeof (node_t), 1);
res->table [0]->hash_code = hash_dummy_key (0);
res->table [0]->key = (key_t)(uintptr_t)0;
return res;
}
static conc_hashtable_t *_ht;
static gboolean
delete_odd_keys (key_t key, value_t value)
{
return (PTR_TO_UINT (key) % 2) == 1;
}
#define INSERT_CNT 1000000
static void*
async_insert (key_t arg)
{
int base = INSERT_CNT * (int)(intptr_t)arg;
int i;
for (i = 0; i < INSERT_CNT; ++i) {
conc_hashtable_insert (_ht, UINT_TO_PTR (base + i), UINT_TO_PTR (1));
conc_hashtable_insert (_ht, UINT_TO_PTR (base + i - INSERT_CNT), UINT_TO_PTR (2));
}
return NULL;
}
int main ()
{
int i = 0;
pthread_key_create (&hazard_pointer, NULL);
/* _ht = create ();
pthread_t threads[4];
for (i = 0; i < 4; ++i)
pthread_create (&threads [i], NULL, async_insert, (void*)(intptr_t)i);
for (i = 0; i < 4; ++i)
pthread_join (threads [i], NULL);
printf ("elements in %d\n", _ht->count);*/
conc_hashtable_t *ht = conc_hashtable_create (FALSE);
conc_hashtable_insert (ht, UINT_TO_PTR (0), UINT_TO_PTR (0x20));
conc_hashtable_insert (ht, UINT_TO_PTR (1), UINT_TO_PTR (0x30));
conc_hashtable_insert (ht, UINT_TO_PTR (5), UINT_TO_PTR (0x40));
conc_hashtable_insert (ht, UINT_TO_PTR (20), UINT_TO_PTR (0x50));
conc_hashtable_insert (ht, UINT_TO_PTR (99), UINT_TO_PTR (0x60));
printf ("find %p %p %p %p %p\n",
conc_hashtable_find (ht, UINT_TO_PTR (0)),
conc_hashtable_find (ht, UINT_TO_PTR (1)),
conc_hashtable_find (ht, UINT_TO_PTR (5)),
conc_hashtable_find (ht, UINT_TO_PTR (20)),
conc_hashtable_find (ht, UINT_TO_PTR (99)));
dump_hash (ht);
conc_hashtable_foreach_exclusive (ht, delete_odd_keys);
dump_hash (ht);
printf ("find_sf %p %p %p %p %p\n",
conc_hashtable_find_signal_safe (ht, UINT_TO_PTR (0)),
conc_hashtable_find_signal_safe (ht, UINT_TO_PTR (1)),
conc_hashtable_find_signal_safe (ht, UINT_TO_PTR (5)),
conc_hashtable_find_signal_safe (ht, UINT_TO_PTR (20)),
conc_hashtable_find_signal_safe (ht, UINT_TO_PTR (99)));
printf ("find_nm %p %p %p %p %p\n",
conc_hashtable_find (ht, UINT_TO_PTR (0)),
conc_hashtable_find (ht, UINT_TO_PTR (1)),
conc_hashtable_find (ht, UINT_TO_PTR (5)),
conc_hashtable_find (ht, UINT_TO_PTR (20)),
conc_hashtable_find (ht, UINT_TO_PTR (99)));
/* conc_hashtable_t *ht = conc_hashtable_create (FALSE);
printf ("find %p %p %p\n",
conc_hashtable_find (ht, UINT_TO_PTR (0)),
conc_hashtable_find (ht, UINT_TO_PTR (10)),
conc_hashtable_find (ht, UINT_TO_PTR (26)));
conc_hashtable_insert (ht, UINT_TO_PTR (0), UINT_TO_PTR (0x20));
conc_hashtable_insert (ht, UINT_TO_PTR (26), UINT_TO_PTR (0x30));
printf ("find %p %p %p\n",
conc_hashtable_find (ht, UINT_TO_PTR (0)),
conc_hashtable_find (ht, UINT_TO_PTR (10)),
conc_hashtable_find (ht, UINT_TO_PTR (26)));
conc_hashtable_delete (ht, UINT_TO_PTR (0));
printf ("find %p %p %p\n",
conc_hashtable_find (ht, UINT_TO_PTR (0)),
conc_hashtable_find (ht, UINT_TO_PTR (10)),
conc_hashtable_find (ht, UINT_TO_PTR (26)));
printf ("%d ", conc_hashtable_insert (ht, UINT_TO_PTR (5), UINT_TO_PTR (0x10)));
printf ("%d ", conc_hashtable_insert (ht, UINT_TO_PTR (5), UINT_TO_PTR (0x10)));
printf ("%d ", conc_hashtable_insert (ht, UINT_TO_PTR (5), UINT_TO_PTR (0x10)));
printf ("%d\n", ht->count);*/
return 0;
}