-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathlinkedlist-optik.c
130 lines (106 loc) · 2.4 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
/*
* File: optik.c
* Author: Vincent Gramoli <vincent.gramoli@sydney.edu.au>,
* Vasileios Trigonakis <vasileios.trigonakis@epfl.ch>
* Description:
*
* 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.
*
*/
#include "linkedlist-optik.h"
RETRY_STATS_VARS;
sval_t
optik_find(intset_l_t *set, skey_t key)
{
PARSE_TRY();
node_l_t* curr = set->head;
while (likely(curr->key < key))
{
curr = curr->next;
}
sval_t res = 0;
if (curr->key == key)
{
res = curr->val;
}
return res;
}
int
optik_insert(intset_l_t *set, skey_t key, sval_t val)
{
node_l_t *curr, *pred, *newnode;
NUM_RETRIES();
restart:
PARSE_TRY();
COMPILER_NO_REORDER(optik_t version = set->lock;);
curr = set->head;
do
{
pred = curr;
curr = curr->next;
}
while (likely(curr->key < key));
UPDATE_TRY();
if (curr->key == key)
{
return false;
}
newnode = new_node_l(key, val, curr, 0);
if ((!optik_trylock_version(&set->lock, version)))
{
DO_PAUSE();
node_delete_l(newnode);
goto restart;
}
#ifdef __tile__
MEM_BARRIER;
#endif
pred->next = newnode;
optik_unlock(&set->lock);
return true;
}
sval_t
optik_delete(intset_l_t *set, skey_t key)
{
node_l_t *pred, *curr;
sval_t result = 0;
NUM_RETRIES();
restart:
COMPILER_NO_REORDER(optik_t version = set->lock;);
PARSE_TRY();
curr = set->head;
do
{
pred = curr;
curr = curr->next;
}
while (likely(curr->key < key));
UPDATE_TRY();
if (curr->key != key)
{
return false;
}
if (unlikely(!optik_trylock_version(&set->lock, version)))
{
DO_PAUSE();
/* cpause(rand() & 1023); */
goto restart;
}
pred->next = curr->next;
optik_unlock(&set->lock);
result = curr->val;
node_delete_l(curr);
return result;
}