-
Notifications
You must be signed in to change notification settings - Fork 42
/
fraser.c
255 lines (220 loc) · 5.65 KB
/
fraser.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
/*
* File: fraser.c
* Author: Vincent Gramoli <[email protected]>,
* Vasileios Trigonakis <[email protected]>
* Description: Lock-based skip list implementation of the Fraser algorithm
* "Practical Lock Freedom", K. Fraser,
* PhD dissertation, September 2003
* fraser.c is part of ASCYLIB
*
* Copyright (c) 2014 Vasileios Trigonakis <[email protected]>,
* Tudor David <[email protected]>
* 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.
*
*/
#include "fraser.h"
RETRY_STATS_VARS;
#include "latency.h"
#if LATENCY_PARSING == 1
__thread size_t lat_parsing_get = 0;
__thread size_t lat_parsing_put = 0;
__thread size_t lat_parsing_rem = 0;
#endif /* LATENCY_PARSING == 1 */
extern ALIGNED(CACHE_LINE_SIZE) unsigned int levelmax;
#define FRASER_MAX_MAX_LEVEL 64 /* covers up to 2^64 elements */
void
fraser_search(sl_intset_t *set, skey_t key, sl_node_t **left_list, sl_node_t **right_list)
{
int i;
sl_node_t *left, *left_next, *right, *right_next;
retry:
PARSE_TRY();
left = set->head;
for (i = levelmax - 1; i >= 0; i--)
{
left_next = left->next[i];
if (unlikely(is_marked((uintptr_t)left_next)))
{
goto retry;
}
/* Find unmarked node pair at this level */
for (right = left_next; ; right = right_next)
{
/* Skip a sequence of marked nodes */
right_next = right->next[i];
while (unlikely(is_marked((uintptr_t)right_next)))
{
right = (sl_node_t*)unset_mark((uintptr_t)right_next);
right_next = right->next[i];
}
if (right->key >= key)
{
break;
}
left = right;
left_next = right_next;
}
/* Ensure left and right nodes are adjacent */
if ((left_next != right))
{
if ((!ATOMIC_CAS_MB(&left->next[i], left_next, right)))
{
CLEANUP_TRY();
goto retry;
}
}
if (left_list != NULL)
{
left_list[i] = left;
}
if (right_list != NULL)
{
right_list[i] = right;
}
}
}
sval_t
fraser_find(sl_intset_t *set, skey_t key)
{
sl_node_t* succs[FRASER_MAX_MAX_LEVEL];
sval_t result = 0;
PARSE_START_TS(0);
fraser_search(set, key, NULL, succs);
PARSE_END_TS(0, lat_parsing_get++);
if (succs[0]->key == key && !succs[0]->deleted)
{
result = succs[0]->val;
}
return result;
}
inline void
mark_node_ptrs(sl_node_t *n)
{
int i;
sl_node_t *n_next;
for (i = n->toplevel - 1; i >= 0; i--)
{
do
{
n_next = n->next[i];
if (is_marked((uintptr_t)n_next))
{
break;
}
}
while (!ATOMIC_CAS_MB(&n->next[i], n_next, set_mark((uintptr_t)n_next)));
}
}
sval_t
fraser_remove(sl_intset_t *set, skey_t key)
{
/* sl_node_t **succs; */
sl_node_t* succs[FRASER_MAX_MAX_LEVEL];
sval_t result = 0;
UPDATE_TRY();
PARSE_START_TS(2);
fraser_search(set, key, NULL, succs);
PARSE_END_TS(2, lat_parsing_rem++);
if (succs[0]->key != key)
{
goto end;
}
/* 1. Node is logically deleted when the deleted field is not 0 */
if (succs[0]->deleted)
{
goto end;
}
if (ATOMIC_FETCH_AND_INC_FULL(&succs[0]->deleted) == 0)
{
/* 2. Mark forward pointers, then search will remove the node */
mark_node_ptrs(succs[0]);
result = succs[0]->val;
#if GC == 1
ssmem_free(alloc, (void*)succs[0]);
#endif
/* MEM_BARRIER; */
fraser_search(set, key, NULL, NULL);
}
end:
return result;
}
int
fraser_insert(sl_intset_t *set, skey_t key, sval_t val)
{
sl_node_t *new, *new_next, *pred, *succ;
/* sl_new_node **succs, **preds; */
sl_node_t *succs[FRASER_MAX_MAX_LEVEL], *preds[FRASER_MAX_MAX_LEVEL];
int i;
int result = 0;
new = sl_new_simple_node(key, val, get_rand_level(), 0);
PARSE_START_TS(1);
retry:
UPDATE_TRY();
fraser_search(set, key, preds, succs);
PARSE_END_TS(1, lat_parsing_put);
/* Update the value field of an existing node */
if (succs[0]->key == key)
{ /* Value already in list */
if (succs[0]->deleted)
{ /* Value is deleted: remove it and retry */
mark_node_ptrs(succs[0]);
goto retry;
}
result = 0;
sl_delete_node(new);
goto end;
}
for (i = 0; i < new->toplevel; i++)
{
new->next[i] = succs[i];
}
#if defined(__tile__)
MEM_BARRIER;
#endif
/* Node is visible once inserted at lowest level */
if (!ATOMIC_CAS_MB(&preds[0]->next[0], succs[0], new))
{
goto retry;
}
for (i = 1; i < new->toplevel; i++)
{
while (1)
{
pred = preds[i];
succ = succs[i];
/* Update the forward pointer if it is stale */
new_next = new->next[i];
if (is_marked((uintptr_t) new_next))
{
goto success;
}
if ((new_next != succ) &&
(!ATOMIC_CAS_MB(&new->next[i], unset_mark((uintptr_t)new_next), succ)))
break; /* Give up if pointer is marked */
/* Check for old reference to a k node */
if (succ->key == key)
{
succ = (sl_node_t *)unset_mark((uintptr_t)succ->next);
}
/* We retry the search if the CAS fails */
if (ATOMIC_CAS_MB(&pred->next[i], succ, new))
break;
fraser_search(set, key, preds, succs);
}
}
success:
result = 1;
end:
PARSE_END_INC(lat_parsing_put);
return result;
}