forked from LPD-EPFL/ASCYLIB
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathskiplist-optik.c
More file actions
288 lines (247 loc) · 5.83 KB
/
skiplist-optik.c
File metadata and controls
288 lines (247 loc) · 5.83 KB
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
/*
* File: optik.c
* Author: Vasileios Trigonakis <vasileios.trigonakis@epfl.ch>
* Description:
* optik.c is part of ASCYLIB
*
* Copyright (c) 2015 Vasileios Trigonakis <vasileios.trigonakis@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.
*
*/
#include "skiplist-optik.h"
#include "utils.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 MAX_BACKOFF 131071
#define OPTIK_MAX_MAX_LEVEL 64 /* covers up to 2^64 elements */
/*
* finds the predecessors and the successors of a key,
*/
static sl_node_t*
sl_optik_search(sl_intset_t* set, skey_t key, sl_node_t** preds, sl_node_t** succs, optik_t* predsv)
{
restart:
PARSE_TRY();
sl_node_t* node_found = NULL;
sl_node_t* pred = set->head;
optik_t predv = set->head->lock;
int i;
for (i = (pred->toplevel - 1); i >= 0; i--)
{
sl_node_t* curr = pred->next[i];
optik_t currv = curr->lock;
while (key > curr->key)
{
predv = currv;
pred = curr;
curr = pred->next[i];
currv = curr->lock;
}
if (unlikely(node_is_unlinking(pred)))
{
goto restart;
}
preds[i] = pred;
succs[i] = curr;
predsv[i] = predv;
if (key == curr->key)
{
node_found = curr;
}
}
return node_found;
}
inline sl_node_t*
sl_optik_left_search(sl_intset_t* set, skey_t key)
{
PARSE_TRY();
int i;
sl_node_t* pred, *curr, *nd = NULL;
pred = set->head;
for (i = (pred->toplevel - 1); i >= 0; i--)
{
curr = pred->next[i];
while (key > curr->key)
{
pred = curr;
curr = pred->next[i];
}
if (key == curr->key)
{
nd = curr;
break;
}
}
return nd;
}
sval_t
sl_optik_find(sl_intset_t* set, skey_t key)
{
PARSE_START_TS(0);
sl_node_t* nd = sl_optik_left_search(set, key);
PARSE_END_TS(0, lat_parsing_get++);
sval_t result = 0;
if (nd != NULL)
{
result = nd->val;
}
return result;
}
static inline void
unlock_levels_down(sl_node_t** nodes, int low, int high)
{
sl_node_t* old = NULL;
int i;
for (i = high; i >= low; i--)
{
if (old != nodes[i])
{
optik_unlock(&nodes[i]->lock);
}
old = nodes[i];
}
}
static inline void
unlock_levels_up(sl_node_t** nodes, int low, int high)
{
sl_node_t* old = NULL;
int i;
for (i = low; i < high; i++)
{
if (old != nodes[i])
{
optik_unlock(&nodes[i]->lock);
}
old = nodes[i];
}
}
#define PAUSE_AND_RETRY() OPTIK_PAUSE(); goto restart;
int
sl_optik_insert(sl_intset_t* set, skey_t key, sval_t val)
{
sl_node_t* preds[OPTIK_MAX_MAX_LEVEL], *succs[OPTIK_MAX_MAX_LEVEL];
optik_t predsv[OPTIK_MAX_MAX_LEVEL];
sl_node_t* node_new = NULL;
int toplevel = get_rand_level();
int inserted_upto = 0;
/* printf("++> inserting %zu\n", key); */
NUM_RETRIES();
restart:
UPDATE_TRY();
sl_node_t* node_found = sl_optik_search(set, key, preds, succs, predsv);
if (node_found != NULL && !inserted_upto)
{
if (unlikely(node_new != NULL))
{
#if GC == 1
ssmem_free(alloc, (void*) node_new);
#else
ssfree(node_new);
#endif
}
return 0;
}
if (node_new == NULL)
{
node_new = sl_new_simple_node(key, val, toplevel, 0);
}
sl_node_t* pred_prev = NULL;
int i;
for (i = inserted_upto; i < toplevel; i++)
{
sl_node_t* pred = preds[i];
if (pred_prev != pred && (!optik_lock_version(&pred->lock, predsv[i])))
{
sl_node_t* succ = succs[i];
if (node_is_unlinking(pred) || node_is_unlinking(succ) || pred->next[i] != succ)
{
unlock_levels_down(preds, inserted_upto, i);
inserted_upto = i;
PAUSE_AND_RETRY();
}
}
node_new->next[i] = pred->next[i];
pred->next[i] = node_new;
pred_prev = pred;
}
node_set_valid(node_new);
unlock_levels_down(preds, inserted_upto, toplevel - 1);
return 1;
}
sval_t
sl_optik_delete(sl_intset_t* set, skey_t key)
{
sl_node_t* preds[OPTIK_MAX_MAX_LEVEL], *succs[OPTIK_MAX_MAX_LEVEL];
optik_t predsv[OPTIK_MAX_MAX_LEVEL];
int my_delete = 0;
NUM_RETRIES();
restart:
UPDATE_TRY();
sl_node_t* node_found = sl_optik_search(set, key, preds, succs, predsv);
if (node_found == NULL)
{
return 0;
}
if (!my_delete)
{
if (node_is_unlinking(node_found))
{
return 0;
}
else if (node_is_linking(node_found))
{
PAUSE_AND_RETRY();
}
optik_lock(&node_found->lock);
if (node_is_unlinking(node_found))
{
optik_unlock(&node_found->lock);
return 0;
}
node_set_unlinking(node_found);
}
my_delete = 1;
const int toplevel = node_found->toplevel;
sl_node_t* pred_prev = NULL;
int i;
for (i = 0; i < toplevel; i++)
{
sl_node_t* pred = preds[i];
if (pred_prev != pred && (!optik_lock_version(&pred->lock, predsv[i])))
{
if (node_is_unlinking(pred) || pred->next[i] != succs[i])
{
unlock_levels_down(preds, 0, i);
PAUSE_AND_RETRY();
}
}
pred_prev = pred;
}
for (i = (node_found->toplevel - 1); i >= 0; i--)
{
preds[i]->next[i] = node_found->next[i];
}
optik_unlock(&node_found->lock);
unlock_levels_down(preds, 0, toplevel - 1);
sval_t val = node_found->val;
#if GC == 1
ssmem_free(alloc, (void*) node_found);
#endif
return val;
}