-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathqueue-optik.c
152 lines (134 loc) · 3.11 KB
/
queue-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
/*
* File: optik.c
* Author: Vasileios Trigonakis <[email protected]>
* Description:
* optik.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 teroptik 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 "queue-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 */
sval_t
queue_optik_find(queue_t* qu, skey_t key)
{
return 1;
}
UNUSED static void
queue_list_print(queue_node_t* node)
{
size_t len = 0;
queue_node_t* cur = node;
while (cur != NULL && len++ < 1024)
{
printf("[%zu] -> ", cur->key);
cur = cur->next;
}
if (len > 1000)
{
printf("[[[ extreme size ]]] ");
}
printf("NULL\n");
}
UNUSED static size_t
queue_list_len(queue_node_t* node)
{
size_t len = 0;
queue_node_t* cur = node;
while (cur != NULL)
{
len++;
cur = cur->next;
}
return len;
}
UNUSED static void
queue_list_head_tail_assert(queue_node_t* node, queue_node_t* head, queue_node_t* tail)
{
size_t len = 0;
queue_node_t* cur = node, *pred = NULL;
assert(head == cur);
while (cur != NULL)
{
len++;
pred = cur;
cur = cur->next;
}
assert(pred == tail);
}
int
queue_optik_insert(queue_t* qu, skey_t key, sval_t val)
{
queue_node_t* node = queue_new_node(key, val, NULL);
if (optik_num_queued(qu->tail_lock) > 2)
{
node->next = SWAP_PTR(&qu->overflow, node);
if (node->next == NULL)
{
optik_lock_backoff(&qu->tail_lock);
queue_node_t* oh = SWAP_PTR(&qu->overflow, NULL);
qu->tail->next = oh;
qu->tail = node;
optik_unlock(&qu->tail_lock);
}
else
{
volatile queue_node_t* qn;
do
{
COMPILER_NO_REORDER(qn = qu->overflow;);
pause_rep(16);
}
while (qn != NULL);
}
return 1;
}
optik_lock_backoff(&qu->tail_lock);
qu->tail->next = node;
qu->tail = node;
optik_unlock(&qu->tail_lock);
return 1;
}
sval_t
queue_optik_delete(queue_t* qu)
{
NUM_RETRIES();
restart:
COMPILER_NO_REORDER(const optik_t version = qu->head_lock;);
const queue_node_t* node = qu->head;
const queue_node_t* head_new = node->next;
if (head_new == NULL)
{
return 0;
}
if (!optik_trylock_version(&qu->head_lock, version))
{
DO_PAUSE();
goto restart;
}
qu->head = (queue_node_t*) head_new;
optik_unlock(&qu->head_lock);
#if GC == 1
ssmem_free(alloc, (void*) node);
#endif
return head_new->val;
}