-
Notifications
You must be signed in to change notification settings - Fork 42
/
concurrent_hash_map2.h
109 lines (97 loc) · 2.61 KB
/
concurrent_hash_map2.h
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
/*
* File: concurrent_hash_map2.h
* Author: Vasileios Trigonakis <vasileios.trigonakis@epfl.ch>
* Description: Similar to Java's ConcurrentHashMap.
* Doug Lea. 1.3.4. http://gee.cs.oswego.edu/dl/classes/EDU/oswego/
* cs/dl/util/concurrent/intro.html, 2003.
* concurrent_hash_map2.h is part of ASCYLIB
*
* Copyright (c) 2014 Vasileios Trigonakis <vasileios.trigonakis@epfl.ch>,
* Tudor David <tudor.david@epfl.ch>
* Distributed Programming Lab (LPD), EPFL
*
* ASCYLIB is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation, version 2
* of the License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
*/
#ifndef _CONCURRENT_HASH_MAP_H_
#define _CONCURRENT_HASH_MAP_H_
#include "utils.h"
#include "common.h"
#include "lock_if.h"
#include "ssmem.h"
#define DEFAULT_LOAD 1
#define MAXHTLENGTH 65536
/*
* parameters
*/
#define CHM_NUM_SEGMENTS 128
#if defined(__tile__)
/* on the tilera we need to keep the ht small to avoid the TLB issues */
# define CHM_LOAD_FACTOR 3
#else
# define CHM_LOAD_FACTOR 1
#endif
#define CHM_TRY_PREFETCH 0
#define CHM_MAX_SCAN_RETRIES 64
#define CHM_READ_ONLY_FAIL RO_FAIL
/*
* structures
*/
typedef volatile struct chm_node
{
skey_t key;
sval_t val;
uint8_t padding32[8];
volatile struct chm_node* next;
} chm_node_t;
typedef volatile struct ALIGNED(CACHE_LINE_SIZE) chm_seg
{
union
{
struct
{
size_t num_buckets;
size_t hash;
ptlock_t lock;
uint32_t modifications;
uint32_t size;
float load_factor;
uint32_t size_limit;
chm_node_t** table;
};
uint8_t padding[CACHE_LINE_SIZE];
};
} chm_seg_t;
typedef struct ALIGNED(CACHE_LINE_SIZE) chm
{
union
{
struct
{
size_t num_segments;
size_t hash;
int hash_seed;
chm_seg_t** segments;
};
uint8_t padding[CACHE_LINE_SIZE];
};
} chm_t;
/*
* interface
*/
chm_t* chm_new(size_t capacity, size_t concurrency);
sval_t chm_get(chm_t* set, skey_t key);
int chm_put(chm_t* set, skey_t key, sval_t val);
sval_t chm_rem(chm_t* set, skey_t key);
size_t chm_size(chm_t* set);
extern __thread ssmem_allocator_t* alloc;
extern size_t maxhtlength;
#endif /* _CONCURRENT_HASH_MAP_H_ */