-
Notifications
You must be signed in to change notification settings - Fork 0
/
2Dc-window.c
201 lines (162 loc) · 4.01 KB
/
2Dc-window.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
#include "2Dc-window.h"
static inline uint64_t hop(DS_TYPE* set, uint64_t index, uint16_t* random, uint16_t* hops)
{
uint64_t old_index = index;
my_hop_count += 1;
if(*random < set->random_hops)
{
*random += 1;
index = random_index(set->width);
}
else
{
*hops += 1;
index += 1;
if(index >= set->width)
{
index = 0;
}
}
return index;
}
// Reads the global window into the thread local one, can think of it as atomic
static void read_window()
{
// Opt: Can we read it in two consecutive parts? First in that case the version, and then the rest
// __atomic_load(&global_Window.content, &thread_Window, __ATOMIC_SEQ_CST);
thread_Window.max = global_Window.content.max;
thread_Window.version = global_Window.content.version;
}
descriptor_t put_window(DS_TYPE* set, uint8_t contention)
{
window_t read_global_Window, new_window;
uint16_t hops, random;
descriptor_t descriptor;
hops = random = 0;
if(thread_Window.version != global_Window.content.version)
{
read_window();
}
if(contention == 1)
{
thread_index = random_index(set->width);
}
while(1)
{
/* read descriptor */
descriptor = set->set_array[thread_index].descriptor;
/* Read the global window and possibly sync */
if (global_Window.content.version != thread_Window.version)
{
hops = 0;
read_window();
}
/* Try to work on the descriptor */
else if(descriptor.count < thread_Window.max)
{
return descriptor;
}
/* hop */
else if(hops != set->width)
{
thread_index = hop(set, thread_index, &random, &hops);
}
/* shift window */
else
{
new_window.max = thread_Window.max + set->shift;
new_window.version = thread_Window.version + 1;
if(thread_Window.version == global_Window.content.version)
{
if(CAE(&global_Window.content, &thread_Window, &new_window))
{
thread_Window = new_window;
my_slide_count+=1;
}
else
{
read_window();
my_slide_fail_count+=1;
}
}
hops = 0;
}
}
}
descriptor_t get_window(DS_TYPE* set, uint8_t contention)
{
window_t read_global_Window, new_window;
uint16_t hops, random, shift;
hops = random = 0;
descriptor_t descriptor;
uint8_t empty = 1;
if(thread_Window.version != global_Window.content.version)
{
read_window();
}
if(contention == 1)
{
thread_index = random_index(set->width);
}
while(1)
{
/* read descriptor */
descriptor = set->set_array[thread_index].descriptor;
/* Read the global window and possibly sync */
if (global_Window.content.version != thread_Window.version)
{
hops = 0; empty = 1;
read_window();
}
/* empty sub-structures will be skipped at this point because (global_Window.content.max - set->depth) cannot go bellow zero */
else if(descriptor.count + set->depth > thread_Window.max)
{
return descriptor;
}
/* change index (hop) */
else if(hops != set->width)
{
/* emptiness check */
if(descriptor.count > 0)
{
empty = 0;
}
thread_index = hop(set, thread_index, &random, &hops);
}
/* Return empty descriptor */
else if (empty)
{
return descriptor;
}
/* shift window */
else
{
new_window.version = thread_Window.version + 1;
new_window.max = thread_Window.max - set->shift;
/* maintains (global_Window.content.max >= global_Window.content.depth) */
if(thread_Window.version == global_Window.content.version && new_window.max >= set->depth)
{
if(CAE(&global_Window.content, &thread_Window, &new_window))
{
thread_Window = new_window;
my_slide_count+=1;
}
else
{
read_window();
my_slide_fail_count+=1;
}
}
hops = 0; empty = 1;
}
}
}
uint64_t random_index(uint16_t width)
{
return my_random(&(seeds[0]), &(seeds[1]), &(seeds[2])) % width;
}
void initialize_global_window(uint16_t depth)
{
global_Window.content.max = depth;
global_Window.content.version = 1;
}