forked from cgvwzq/evsets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcache.c
389 lines (355 loc) · 6.67 KB
/
cache.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
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
#include "cache.h"
#include "micro.h"
#include "hist_utils.h"
#include "public_structs.h"
#ifdef THREAD_COUNTER
#include <pthread.h>
#include <signal.h>
#endif
#ifdef THREAD_COUNTER
void* counter_thread()
{
while (1)
{
__asm__ volatile ("mfence");
params.counter++;
__asm__ volatile ("mfence");
}
pthread_exit(NULL);
}
static inline uint64_t
clock_thread()
{
uint64_t ret;
__asm__ volatile ("mfence");
ret = params.counter;
__asm__ volatile ("mfence");
return ret;
}
int
create_counter()
{
if (pthread_create (&thread, NULL, counter_thread, ¶ms))
{
printf("[!] Error: thread counter\n");
return 1;
}
return 0;
}
void destroy_counter()
{
pthread_kill(thread, 0);
}
#endif
inline
void
traverse_list_skylake(Elem *ptr)
{
while (ptr && ptr->next && ptr->next->next)
{
maccess (ptr);
maccess (ptr->next);
maccess (ptr->next->next);
maccess (ptr);
maccess (ptr->next);
maccess (ptr->next->next);
ptr = ptr->next;
}
}
inline
void
traverse_list_asm_skylake(Elem *ptr)
{
__asm__ volatile
(
"test %%rcx, %%rcx;"
"jz out;"
"loop:"
"movq (%%rcx), %%rax;"
"test %%rax, %%rax;"
"jz out;"
"movq (%%rax), %%rax;"
"test %%rax, %%rax;"
"jz out;"
"movq (%%rax), %%rax;"
"movq (%%rcx), %%rcx;"
"movq (%%rcx), %%rax;"
"movq (%%rax), %%rax;"
"test %%rcx, %%rcx;"
"jnz loop;"
"out:"
: // no output
: "c" (ptr)
: "cc", "memory"
);
}
inline
void
traverse_list_asm_haswell(Elem *ptr)
{
__asm__ volatile
(
"test %%rcx, %%rcx;"
"jz out2;"
"loop2:"
"movq (%%rcx), %%rax;"
"test %%rax, %%rax;"
"jz out2;"
"movq (%%rax), %%rax;"
"movq (%%rcx), %%rcx;"
"movq (%%rcx), %%rax;"
"test %%rcx, %%rcx;"
"jnz loop2;"
"out2:"
: // no output
: "c" (ptr)
: "cc", "memory"
);
}
inline
void
traverse_list_asm_simple(Elem *ptr)
{
__asm__ volatile
(
"loop3:"
"test %%rcx, %%rcx;"
"jz out3;"
"movq (%%rcx), %%rcx;"
"jmp loop3;"
"out3:"
: // no output
: "c" (ptr)
: "cc", "memory"
);
}
inline
void
traverse_list_haswell(Elem *ptr)
{
while (ptr && ptr->next)
{
maccess (ptr);
maccess (ptr->next);
maccess (ptr);
maccess (ptr->next);
ptr = ptr->next;
}
}
inline
void
traverse_list_simple(Elem *ptr)
{
while (ptr)
{
maccess (ptr);
ptr = ptr->next;
}
}
inline
void
traverse_list_rrip(Elem *ptr)
{
Elem *p, *s = ptr;
while (ptr)
{
p = ptr;
maccess (ptr);
maccess (ptr);
maccess (ptr);
maccess (ptr);
ptr = ptr->next;
}
while (p != s)
{
maccess (p);
maccess (p);
p = p->prev;
}
maccess (p);
maccess (p);
}
inline
void
traverse_list_to_n(Elem *ptr, int n)
{
while (ptr && n-- > 0)
{
maccess (ptr);
ptr = ptr->next;
}
}
inline
void
traverse_list_time (Elem *ptr, void (*trav)(Elem*))
{
size_t time;
trav (ptr);
while (ptr)
{
// time = rdtsc();
time = rdtscfence();
maccess (ptr);
ptr->delta += rdtscfence() - time;
// ptr->delta += rdtscp() - time;
ptr = ptr->next;
}
}
int
test_set(Elem *ptr, char *victim, void (*trav)(Elem*))
{
maccess (victim);
maccess (victim);
maccess (victim);
maccess (victim);
trav (ptr);
maccess (victim + 222); // page walk
size_t delta, time;
#ifndef THREAD_COUNTER
// time = rdtsc();
time = rdtscfence();
maccess (victim);
// delta = rdtscp() - time;
delta = rdtscfence() - time;
#else
time = clock_thread();
maccess (victim);
delta = clock_thread() - time;
#endif
return delta;
}
int
test_and_time(Elem *ptr, int rep, int threshold, int ways, void (*trav)(Elem*))
{
int i = 0, count = 0;
Elem *tmp = ptr;
while (tmp)
{
tmp->delta = 0;
tmp = tmp->next;
}
for (i = 0; i < rep; i++)
{
tmp = ptr;
traverse_list_time (tmp, trav);
}
while (ptr)
{
ptr->delta = (float)ptr->delta / rep;
if (ptr->delta > (unsigned)threshold)
{
count++;
}
ptr = ptr->next;
}
return count > ways;
}
int
tests_avg(Elem *ptr, char *victim, int rep, int threshold, void (*trav)(Elem*))
{
int i = 0, ret =0, delta = 0;
Elem *vic = (Elem*)victim;
vic->delta = 0;
for (i=0; i < rep; i++)
{
delta = test_set (ptr, victim, trav);
if (delta < 800) vic->delta += delta;
}
ret = (float)vic->delta / rep;
return ret > threshold;
}
int
tests(Elem *ptr, char *victim, int rep, int threshold, float ratio, void (*trav)(Elem*))
{
int i = 0, ret = 0, delta, hsz = rep * 100;
struct histogram *hist;
if ((hist = (struct histogram*) calloc (hsz, sizeof(struct histogram)))
== NULL)
{
return 0;
}
for (i=0; i < rep; i++)
{
delta = test_set (ptr, victim, trav);
hist_add (hist, hsz, delta);
}
ret = hist_q (hist, hsz, threshold);
free (hist);
return ret > (int)(rep * ratio);
}
int
calibrate(char *victim, struct config *conf)
{
size_t delta, time, t_flushed, t_unflushed;
struct histogram *flushed, *unflushed;
int i, ret, hsz = conf->cal_rounds * 100;
flushed = (struct histogram*) calloc (hsz, sizeof(struct histogram));
unflushed = (struct histogram*) calloc (hsz, sizeof(struct histogram));
if (flushed == NULL || unflushed == NULL)
{
return -1;
}
for (i=0; i < conf->cal_rounds; i++)
{
maccess (victim);
maccess (victim);
maccess (victim);
maccess (victim);
maccess (victim + 222); // page walk
#ifndef THREAD_COUNTER
// time = rdtsc();
time = rdtscfence();
maccess (victim);
// delta = rdtscp() - time;
delta = rdtscfence() - time;
#else
time = clock_thread();
maccess (victim);
delta = clock_thread() - time;
#endif
hist_add (unflushed, hsz, delta);
}
t_unflushed = hist_avg (unflushed, hsz);
for (i=0; i < conf->cal_rounds; i++)
{
maccess (victim); // page walk
flush (victim);
#ifndef THREAD_COUNTER
// time = rdtsc();
time = rdtscfence();
maccess (victim);
// delta = rdtscp() - time;
delta = rdtscfence() - time;
#else
time = clock_thread();
maccess (victim);
delta = clock_thread() - time;
#endif
hist_add (flushed, hsz, delta);
}
t_flushed = hist_avg (flushed, hsz);
ret = hist_min (flushed, hsz);
if (conf->flags & FLAG_VERBOSE)
{
printf("\tflushed: min %d, mode %d, avg %f, max %d, std %.02f, q %d (%.02f)\n",
hist_min (flushed, hsz), hist_mode(flushed, hsz),
hist_avg (flushed, hsz), hist_max (flushed, hsz),
hist_std (flushed, hsz, hist_avg (flushed, hsz)),
hist_q (flushed, hsz, ret),
(double) hist_q (flushed, hsz, ret) / conf->cal_rounds);
printf("\tunflushed: min %d, mode %d, avg %f, max %d, std %.02f, q %d (%.02f)\n",
hist_min (unflushed, hsz), hist_mode(unflushed, hsz),
hist_avg (unflushed, hsz), hist_max (unflushed, hsz),
hist_std (unflushed, hsz, hist_avg (unflushed, hsz)),
hist_q (unflushed, hsz, ret),
(double) hist_q (unflushed, hsz, ret) / conf->cal_rounds);
}
free (unflushed);
free (flushed);
if (t_flushed < t_unflushed)
{
return -1;
} else {
return (t_flushed + t_unflushed * 2) / 3;
}
}