Cleanup: Re-organise source dir
[urcu.git] / tests / benchmark / test_urcu.c
CommitLineData
b257a10b
MD
1/*
2 * test_urcu.c
3 *
4 * Userspace RCU library - test program
5 *
6982d6d7 6 * Copyright February 2009 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
b257a10b 7 *
af02d47e
MD
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
b257a10b
MD
21 */
22
ac260fd9 23#include <stdio.h>
f69f195a
MD
24#include <pthread.h>
25#include <stdlib.h>
41718ff9 26#include <string.h>
f69f195a
MD
27#include <sys/types.h>
28#include <sys/wait.h>
29#include <unistd.h>
30#include <stdio.h>
41718ff9 31#include <assert.h>
94b343fd 32#include <errno.h>
87bd15cd 33
ec4e58a3 34#include <urcu/arch.h>
bd252a04 35#include <urcu/tls-compat.h>
2953b501 36#include "cpuset.h"
94df6318 37#include "thread-id.h"
2650042a 38#include <../common/debug-yield.h>
65fcc7e9 39
2a7ac59d
MD
40/* hardcoded number of CPUs */
41#define NR_CPUS 16384
42
121a5d44
MD
43#ifndef DYNAMIC_LINK_TEST
44#define _LGPL_SOURCE
121a5d44 45#endif
ec4e58a3 46#include <urcu.h>
ac260fd9 47
78efb485 48static volatile int test_go, test_stop;
8c86b9a1 49
9e31d0f0 50static unsigned long wdelay;
bb488185 51
bcc74df3 52static int *test_rcu_pointer;
41718ff9 53
cf380c2f 54static unsigned long duration;
cf380c2f 55
daddf5b0 56/* read-side C.S. duration, in loops */
8b632bab
MD
57static unsigned long rduration;
58
31b598e0
MD
59/* write-side C.S. duration, in loops */
60static unsigned long wduration;
61
ab0aacbe 62static inline void loop_sleep(unsigned long loops)
daddf5b0 63{
ab0aacbe 64 while (loops-- != 0)
06f22bdb 65 caa_cpu_relax();
daddf5b0
MD
66}
67
4bad7d45
MD
68static int verbose_mode;
69
70#define printf_verbose(fmt, args...) \
71 do { \
72 if (verbose_mode) \
73 printf(fmt, args); \
74 } while (0)
75
2a7ac59d
MD
76static unsigned int cpu_affinities[NR_CPUS];
77static unsigned int next_aff = 0;
78static int use_affinity = 0;
79
80pthread_mutex_t affinity_mutex = PTHREAD_MUTEX_INITIALIZER;
81
82static void set_affinity(void)
83{
95bc7fb9 84#if HAVE_SCHED_SETAFFINITY
2a7ac59d 85 cpu_set_t mask;
95bc7fb9
MD
86 int cpu, ret;
87#endif /* HAVE_SCHED_SETAFFINITY */
2a7ac59d
MD
88
89 if (!use_affinity)
90 return;
91
d8540fc5 92#if HAVE_SCHED_SETAFFINITY
2a7ac59d
MD
93 ret = pthread_mutex_lock(&affinity_mutex);
94 if (ret) {
95 perror("Error in pthread mutex lock");
96 exit(-1);
97 }
98 cpu = cpu_affinities[next_aff++];
99 ret = pthread_mutex_unlock(&affinity_mutex);
100 if (ret) {
101 perror("Error in pthread mutex unlock");
102 exit(-1);
103 }
d8540fc5 104
2a7ac59d
MD
105 CPU_ZERO(&mask);
106 CPU_SET(cpu, &mask);
d8540fc5
PA
107#if SCHED_SETAFFINITY_ARGS == 2
108 sched_setaffinity(0, &mask);
109#else
2a7ac59d 110 sched_setaffinity(0, sizeof(mask), &mask);
d8540fc5
PA
111#endif
112#endif /* HAVE_SCHED_SETAFFINITY */
2a7ac59d
MD
113}
114
cf380c2f
MD
115/*
116 * returns 0 if test should end.
117 */
5873cd17 118static int test_duration_write(void)
cf380c2f 119{
78efb485 120 return !test_stop;
5873cd17
MD
121}
122
123static int test_duration_read(void)
124{
78efb485 125 return !test_stop;
cf380c2f
MD
126}
127
bd252a04
MD
128static DEFINE_URCU_TLS(unsigned long long, nr_writes);
129static DEFINE_URCU_TLS(unsigned long long, nr_reads);
1eec319e 130
8c86b9a1
MD
131static unsigned int nr_readers;
132static unsigned int nr_writers;
133
c265818b
MD
134pthread_mutex_t rcu_copy_mutex = PTHREAD_MUTEX_INITIALIZER;
135
136void rcu_copy_mutex_lock(void)
137{
138 int ret;
139 ret = pthread_mutex_lock(&rcu_copy_mutex);
140 if (ret) {
141 perror("Error in pthread mutex lock");
142 exit(-1);
143 }
144}
145
146void rcu_copy_mutex_unlock(void)
147{
148 int ret;
149
150 ret = pthread_mutex_unlock(&rcu_copy_mutex);
151 if (ret) {
152 perror("Error in pthread mutex unlock");
153 exit(-1);
154 }
155}
f69f195a 156
1eec319e 157void *thr_reader(void *_count)
f69f195a 158{
1eec319e 159 unsigned long long *count = _count;
bcc74df3 160 int *local_ptr;
41718ff9 161
94df6318
MD
162 printf_verbose("thread_begin %s, tid %lu\n",
163 "reader", urcu_get_thread_id());
f69f195a 164
2a7ac59d
MD
165 set_affinity();
166
121a5d44 167 rcu_register_thread();
882f3357 168 assert(!rcu_read_ongoing());
f69f195a 169
8c86b9a1
MD
170 while (!test_go)
171 {
172 }
5481ddb3 173 cmm_smp_mb();
8c86b9a1 174
cf380c2f 175 for (;;) {
1430ee0b 176 rcu_read_lock();
882f3357 177 assert(rcu_read_ongoing());
cf380c2f 178 local_ptr = rcu_dereference(test_rcu_pointer);
1de4df4b 179 rcu_debug_yield_read();
cf380c2f 180 if (local_ptr)
bcc74df3 181 assert(*local_ptr == 8);
a0b7f7ea 182 if (caa_unlikely(rduration))
daddf5b0 183 loop_sleep(rduration);
1430ee0b 184 rcu_read_unlock();
bd252a04 185 URCU_TLS(nr_reads)++;
a0b7f7ea 186 if (caa_unlikely(!test_duration_read()))
cf380c2f 187 break;
41718ff9 188 }
f69f195a 189
121a5d44 190 rcu_unregister_thread();
41718ff9 191
2b514ae2
MD
192 /* test extra thread registration */
193 rcu_register_thread();
194 rcu_unregister_thread();
195
bd252a04 196 *count = URCU_TLS(nr_reads);
94df6318
MD
197 printf_verbose("thread_end %s, tid %lu\n",
198 "reader", urcu_get_thread_id());
f69f195a
MD
199 return ((void*)1);
200
201}
202
1eec319e 203void *thr_writer(void *_count)
f69f195a 204{
1eec319e 205 unsigned long long *count = _count;
bcc74df3 206 int *new, *old;
f69f195a 207
94df6318
MD
208 printf_verbose("thread_begin %s, tid %lu\n",
209 "writer", urcu_get_thread_id());
f69f195a 210
2a7ac59d
MD
211 set_affinity();
212
8c86b9a1
MD
213 while (!test_go)
214 {
215 }
5481ddb3 216 cmm_smp_mb();
8c86b9a1 217
cf380c2f 218 for (;;) {
bcc74df3
MD
219 new = malloc(sizeof(int));
220 assert(new);
221 *new = 8;
d2835e6f 222 old = rcu_xchg_pointer(&test_rcu_pointer, new);
a0b7f7ea 223 if (caa_unlikely(wduration))
31b598e0 224 loop_sleep(wduration);
d2835e6f 225 synchronize_rcu();
cf380c2f 226 if (old)
bcc74df3
MD
227 *old = 0;
228 free(old);
bd252a04 229 URCU_TLS(nr_writes)++;
a0b7f7ea 230 if (caa_unlikely(!test_duration_write()))
cf380c2f 231 break;
a0b7f7ea 232 if (caa_unlikely(wdelay))
9e31d0f0 233 loop_sleep(wdelay);
f69f195a
MD
234 }
235
94df6318
MD
236 printf_verbose("thread_end %s, tid %lu\n",
237 "writer", urcu_get_thread_id());
bd252a04 238 *count = URCU_TLS(nr_writes);
f69f195a
MD
239 return ((void*)2);
240}
ac260fd9 241
1430ee0b
MD
242void show_usage(int argc, char **argv)
243{
06637138
MD
244 printf("Usage : %s nr_readers nr_writers duration (s) <OPTIONS>\n",
245 argv[0]);
246 printf("OPTIONS:\n");
06637138 247 printf(" [-r] [-w] (yield reader and/or writer)\n");
06637138
MD
248 printf(" [-d delay] (writer period (us))\n");
249 printf(" [-c duration] (reader C.S. duration (in loops))\n");
250 printf(" [-e duration] (writer C.S. duration (in loops))\n");
251 printf(" [-v] (verbose output)\n");
252 printf(" [-a cpu#] [-a cpu#]... (affinity)\n");
1430ee0b
MD
253 printf("\n");
254}
255
cf380c2f 256int main(int argc, char **argv)
ac260fd9 257{
f69f195a 258 int err;
8c86b9a1 259 pthread_t *tid_reader, *tid_writer;
f69f195a 260 void *tret;
8c86b9a1 261 unsigned long long *count_reader, *count_writer;
1eec319e 262 unsigned long long tot_reads = 0, tot_writes = 0;
9e97e478 263 int i, a;
f69f195a 264
8c86b9a1
MD
265 if (argc < 4) {
266 show_usage(argc, argv);
267 return -1;
268 }
269
270 err = sscanf(argv[1], "%u", &nr_readers);
271 if (err != 1) {
1430ee0b 272 show_usage(argc, argv);
cf380c2f
MD
273 return -1;
274 }
275
8c86b9a1
MD
276 err = sscanf(argv[2], "%u", &nr_writers);
277 if (err != 1) {
278 show_usage(argc, argv);
279 return -1;
280 }
281
282 err = sscanf(argv[3], "%lu", &duration);
cf380c2f 283 if (err != 1) {
1430ee0b 284 show_usage(argc, argv);
cf380c2f
MD
285 return -1;
286 }
287
8c86b9a1 288 for (i = 4; i < argc; i++) {
cf380c2f
MD
289 if (argv[i][0] != '-')
290 continue;
291 switch (argv[i][1]) {
292 case 'r':
2650042a 293 rcu_debug_yield_enable(RCU_YIELD_READ);
cf380c2f
MD
294 break;
295 case 'w':
2650042a 296 rcu_debug_yield_enable(RCU_YIELD_WRITE);
cf380c2f 297 break;
9e97e478
MD
298 case 'a':
299 if (argc < i + 2) {
300 show_usage(argc, argv);
301 return -1;
302 }
303 a = atoi(argv[++i]);
2a7ac59d 304 cpu_affinities[next_aff++] = a;
9e97e478 305 use_affinity = 1;
4bad7d45 306 printf_verbose("Adding CPU %d affinity\n", a);
9e97e478 307 break;
8b632bab
MD
308 case 'c':
309 if (argc < i + 2) {
310 show_usage(argc, argv);
311 return -1;
312 }
9e31d0f0 313 rduration = atol(argv[++i]);
8b632bab 314 break;
8c86b9a1 315 case 'd':
7685d963 316 if (argc < i + 2) {
8c86b9a1
MD
317 show_usage(argc, argv);
318 return -1;
319 }
9e31d0f0 320 wdelay = atol(argv[++i]);
bb488185 321 break;
31b598e0
MD
322 case 'e':
323 if (argc < i + 2) {
324 show_usage(argc, argv);
325 return -1;
326 }
327 wduration = atol(argv[++i]);
328 break;
4bad7d45
MD
329 case 'v':
330 verbose_mode = 1;
331 break;
cf380c2f
MD
332 }
333 }
cf380c2f 334
4bad7d45 335 printf_verbose("running test for %lu seconds, %u readers, %u writers.\n",
8c86b9a1 336 duration, nr_readers, nr_writers);
9e31d0f0 337 printf_verbose("Writer delay : %lu loops.\n", wdelay);
4bad7d45 338 printf_verbose("Reader duration : %lu loops.\n", rduration);
94df6318
MD
339 printf_verbose("thread %-6s, tid %lu\n",
340 "main", urcu_get_thread_id());
87bd15cd 341
9aa14175
MD
342 tid_reader = calloc(nr_readers, sizeof(*tid_reader));
343 tid_writer = calloc(nr_writers, sizeof(*tid_writer));
344 count_reader = calloc(nr_readers, sizeof(*count_reader));
345 count_writer = calloc(nr_writers, sizeof(*count_writer));
8c86b9a1 346
2a7ac59d
MD
347 next_aff = 0;
348
8c86b9a1 349 for (i = 0; i < nr_readers; i++) {
1eec319e
MD
350 err = pthread_create(&tid_reader[i], NULL, thr_reader,
351 &count_reader[i]);
f69f195a
MD
352 if (err != 0)
353 exit(1);
354 }
8c86b9a1 355 for (i = 0; i < nr_writers; i++) {
1eec319e
MD
356 err = pthread_create(&tid_writer[i], NULL, thr_writer,
357 &count_writer[i]);
f69f195a
MD
358 if (err != 0)
359 exit(1);
360 }
361
5481ddb3 362 cmm_smp_mb();
8c86b9a1 363
78efb485
MD
364 test_go = 1;
365
366 sleep(duration);
367
368 test_stop = 1;
369
8c86b9a1 370 for (i = 0; i < nr_readers; i++) {
f69f195a
MD
371 err = pthread_join(tid_reader[i], &tret);
372 if (err != 0)
373 exit(1);
1eec319e 374 tot_reads += count_reader[i];
f69f195a 375 }
8c86b9a1 376 for (i = 0; i < nr_writers; i++) {
f69f195a
MD
377 err = pthread_join(tid_writer[i], &tret);
378 if (err != 0)
379 exit(1);
1eec319e 380 tot_writes += count_writer[i];
f69f195a 381 }
5873cd17 382
4bad7d45 383 printf_verbose("total number of reads : %llu, writes %llu\n", tot_reads,
1eec319e 384 tot_writes);
a50a7b43 385 printf("SUMMARY %-25s testdur %4lu nr_readers %3u rdur %6lu wdur %6lu "
cda3c71d 386 "nr_writers %3u "
9e31d0f0 387 "wdelay %6lu nr_reads %12llu nr_writes %12llu nr_ops %12llu\n",
a50a7b43 388 argv[0], duration, nr_readers, rduration, wduration,
4bad7d45
MD
389 nr_writers, wdelay, tot_reads, tot_writes,
390 tot_reads + tot_writes);
bcc74df3 391 free(test_rcu_pointer);
8c86b9a1
MD
392 free(tid_reader);
393 free(tid_writer);
394 free(count_reader);
395 free(count_writer);
f69f195a 396 return 0;
ac260fd9 397}
This page took 0.058564 seconds and 4 git commands to generate.