-
Notifications
You must be signed in to change notification settings - Fork 42
/
linkedlist-optik.c
297 lines (237 loc) · 5.53 KB
/
linkedlist-optik.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
/*
* File: optik.c
* Author: Vincent Gramoli <[email protected]>,
* Vasileios Trigonakis <[email protected]>
* Description:
*
* 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 "linkedlist-optik.h"
RETRY_STATS_VARS;
#define CACHE_TYPE 0 /* 0 - validation with optik versions */
/* 1 - uses any non-deleted element */
#if CACHE_TYPE == 0
typedef struct node_cache
{
skey_t key;
node_l_t* node;
optik_t version;
} node_cache_t;
__thread node_cache_t node_last = {0, 0, OPTIK_INIT};
sval_t optik_find_pes(intset_l_t *set, skey_t key);
static inline int
optik_cache_validate(intset_l_t* set, skey_t key)
{
if (unlikely(!node_last.key))
{
// printf("--> pessimistic run\n");
return optik_find_pes(set, key);
}
return (key > node_last.key &&
optik_is_same_version(node_last.node->lock, node_last.version));
}
static inline int
optik_cache_validate_plus(intset_l_t* set, skey_t key)
{
if (unlikely(!node_last.key))
{
// printf("--> pessimistic run\n");
return optik_find_pes(set, key);
}
return (key >= node_last.key &&
optik_is_same_version(node_last.node->lock, node_last.version));
}
static inline void
optik_cache_and_unlock(node_l_t* pred)
{
node_last.key = pred->key;
node_last.node = pred;
node_last.version = optik_unlockv(&pred->lock);
}
sval_t
optik_find_pes(intset_l_t *set, skey_t key)
{
node_l_t *curr, *pred;
optik_t pred_ver = OPTIK_INIT;
restart:
PARSE_TRY();
curr = set->head;
do
{
COMPILER_NO_REORDER(optik_t curr_ver = curr->lock;);
pred = curr;
pred_ver = curr_ver;
curr = curr->next;
}
while (likely(curr->key < key));
if ((!optik_trylock_version(&pred->lock, pred_ver)))
{
goto restart;
}
int res = (curr->key == key);
optik_cache_and_unlock(pred);
return res;
}
#elif CACHE_TYPE == 1
typedef struct node_cache
{
node_l_t* node;
} node_cache_t;
__thread node_cache_t node_last = {0};
static inline int
optik_cache_validate(intset_l_t* set, skey_t key)
{
return (node_last.node &&
!optik_is_deleted(node_last.node->lock) &&
key > node_last.node->key);
}
static inline int
optik_cache_validate_plus(intset_l_t* set, skey_t key)
{
return (node_last.node &&
!optik_is_deleted(node_last.node->lock) &&
key >= node_last.node->key);
}
static inline void
optik_cache_and_unlock(node_l_t* pred)
{
node_last.node = pred;
optik_unlock(&pred->lock);
}
#endif /* CACHE_TYPE */
sval_t
optik_find(intset_l_t *set, skey_t key)
{
PARSE_TRY();
node_l_t* curr;
if (optik_cache_validate_plus(set, key))
{
NODE_CACHE_HIT();
/* printf("++> optik_find(%zu) cache start @%zu\n", key, node_last.key); */
curr = node_last.node;
}
else
{
curr = set->head;
}
while (likely(curr->key < key))
{
curr = curr->next;
}
#if CACHE_TYPE == 1
node_last.node = curr;
#endif
sval_t res = 0;
if (curr->key == key)
{
res = curr->val;
}
return res;
}
/* static int __dc = 0, __r = 0; */
int
optik_insert(intset_l_t *set, skey_t key, sval_t val)
{
node_l_t *curr, *pred;
optik_t pred_ver = OPTIK_INIT;
restart:
PARSE_TRY();
if (optik_cache_validate(set, key))
{
NODE_CACHE_HIT();
curr = node_last.node;
}
else
{
curr = set->head;
}
do
{
COMPILER_NO_REORDER(optik_t curr_ver = curr->lock;);
pred = curr;
pred_ver = curr_ver;
curr = curr->next;
}
while (likely(curr->key < key));
UPDATE_TRY();
if (curr->key == key)
{
return false;
}
node_l_t* newnode = new_node_l(key, val, curr, 0);
if ((!optik_trylock_version(&pred->lock, pred_ver)))
{
node_delete_l(newnode);
goto restart;
}
#ifdef __tile__
MEM_BARRIER;
#endif
pred->next = newnode;
optik_cache_and_unlock(pred);
return true;
}
sval_t
optik_delete(intset_l_t *set, skey_t key)
{
node_l_t *pred, *curr;
optik_t pred_ver = OPTIK_INIT, curr_ver = OPTIK_INIT;
restart:
PARSE_TRY();
if (optik_cache_validate(set, key))
{
NODE_CACHE_HIT();
#if CACHE_TYPE == 0
curr_ver = node_last.version;
#elif CACHE_TYPE == 1
curr_ver = node_last.node->lock;
#endif
curr = node_last.node;
}
else
{
curr = set->head;
curr_ver = curr->lock;
}
do
{
// PREFETCH(curr->next);
pred = curr;
pred_ver = curr_ver;
curr = curr->next;
curr_ver = curr->lock;
}
while (likely(curr->key < key));
UPDATE_TRY();
if (curr->key != key)
{
return false;
}
if (unlikely(!optik_trylock_version(&pred->lock, pred_ver)))
{
goto restart;
}
if (unlikely(!optik_trylock_version(&curr->lock, curr_ver)))
{
optik_revert(&pred->lock);
goto restart;
}
pred->next = curr->next;
optik_cache_and_unlock(pred);
sval_t result = curr->val;
node_delete_l(curr);
return result;
}