cleanup: all functions have declarations (-Wmissing-prototypes)
[urcu.git] / tests / benchmark / test_urcu.c
... / ...
CommitLineData
1/*
2 * test_urcu.c
3 *
4 * Userspace RCU library - test program
5 *
6 * Copyright February 2009 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7 *
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.
21 */
22
23#include <stdio.h>
24#include <pthread.h>
25#include <stdlib.h>
26#include <string.h>
27#include <sys/types.h>
28#include <sys/wait.h>
29#include <unistd.h>
30#include <stdio.h>
31#include <assert.h>
32#include <errno.h>
33
34#include <urcu/arch.h>
35#include <urcu/tls-compat.h>
36#include "cpuset.h"
37#include "thread-id.h"
38#include <../common/debug-yield.h>
39
40/* hardcoded number of CPUs */
41#define NR_CPUS 16384
42
43#ifndef DYNAMIC_LINK_TEST
44#define _LGPL_SOURCE
45#endif
46#include <urcu.h>
47
48static volatile int test_go, test_stop;
49
50static unsigned long wdelay;
51
52static int *test_rcu_pointer;
53
54static unsigned long duration;
55
56/* read-side C.S. duration, in loops */
57static unsigned long rduration;
58
59/* write-side C.S. duration, in loops */
60static unsigned long wduration;
61
62static inline void loop_sleep(unsigned long loops)
63{
64 while (loops-- != 0)
65 caa_cpu_relax();
66}
67
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
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{
84#if HAVE_SCHED_SETAFFINITY
85 cpu_set_t mask;
86 int cpu, ret;
87#endif /* HAVE_SCHED_SETAFFINITY */
88
89 if (!use_affinity)
90 return;
91
92#if HAVE_SCHED_SETAFFINITY
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 }
104
105 CPU_ZERO(&mask);
106 CPU_SET(cpu, &mask);
107#if SCHED_SETAFFINITY_ARGS == 2
108 sched_setaffinity(0, &mask);
109#else
110 sched_setaffinity(0, sizeof(mask), &mask);
111#endif
112#endif /* HAVE_SCHED_SETAFFINITY */
113}
114
115/*
116 * returns 0 if test should end.
117 */
118static int test_duration_write(void)
119{
120 return !test_stop;
121}
122
123static int test_duration_read(void)
124{
125 return !test_stop;
126}
127
128static DEFINE_URCU_TLS(unsigned long long, nr_writes);
129static DEFINE_URCU_TLS(unsigned long long, nr_reads);
130
131static unsigned int nr_readers;
132static unsigned int nr_writers;
133
134pthread_mutex_t rcu_copy_mutex = PTHREAD_MUTEX_INITIALIZER;
135
136static
137void *thr_reader(void *_count)
138{
139 unsigned long long *count = _count;
140 int *local_ptr;
141
142 printf_verbose("thread_begin %s, tid %lu\n",
143 "reader", urcu_get_thread_id());
144
145 set_affinity();
146
147 rcu_register_thread();
148 assert(!rcu_read_ongoing());
149
150 while (!test_go)
151 {
152 }
153 cmm_smp_mb();
154
155 for (;;) {
156 rcu_read_lock();
157 assert(rcu_read_ongoing());
158 local_ptr = rcu_dereference(test_rcu_pointer);
159 rcu_debug_yield_read();
160 if (local_ptr)
161 assert(*local_ptr == 8);
162 if (caa_unlikely(rduration))
163 loop_sleep(rduration);
164 rcu_read_unlock();
165 URCU_TLS(nr_reads)++;
166 if (caa_unlikely(!test_duration_read()))
167 break;
168 }
169
170 rcu_unregister_thread();
171
172 /* test extra thread registration */
173 rcu_register_thread();
174 rcu_unregister_thread();
175
176 *count = URCU_TLS(nr_reads);
177 printf_verbose("thread_end %s, tid %lu\n",
178 "reader", urcu_get_thread_id());
179 return ((void*)1);
180
181}
182
183static
184void *thr_writer(void *_count)
185{
186 unsigned long long *count = _count;
187 int *new, *old;
188
189 printf_verbose("thread_begin %s, tid %lu\n",
190 "writer", urcu_get_thread_id());
191
192 set_affinity();
193
194 while (!test_go)
195 {
196 }
197 cmm_smp_mb();
198
199 for (;;) {
200 new = malloc(sizeof(int));
201 assert(new);
202 *new = 8;
203 old = rcu_xchg_pointer(&test_rcu_pointer, new);
204 if (caa_unlikely(wduration))
205 loop_sleep(wduration);
206 synchronize_rcu();
207 if (old)
208 *old = 0;
209 free(old);
210 URCU_TLS(nr_writes)++;
211 if (caa_unlikely(!test_duration_write()))
212 break;
213 if (caa_unlikely(wdelay))
214 loop_sleep(wdelay);
215 }
216
217 printf_verbose("thread_end %s, tid %lu\n",
218 "writer", urcu_get_thread_id());
219 *count = URCU_TLS(nr_writes);
220 return ((void*)2);
221}
222
223static
224void show_usage(int argc, char **argv)
225{
226 printf("Usage : %s nr_readers nr_writers duration (s) <OPTIONS>\n",
227 argv[0]);
228 printf("OPTIONS:\n");
229 printf(" [-r] [-w] (yield reader and/or writer)\n");
230 printf(" [-d delay] (writer period (us))\n");
231 printf(" [-c duration] (reader C.S. duration (in loops))\n");
232 printf(" [-e duration] (writer C.S. duration (in loops))\n");
233 printf(" [-v] (verbose output)\n");
234 printf(" [-a cpu#] [-a cpu#]... (affinity)\n");
235 printf("\n");
236}
237
238int main(int argc, char **argv)
239{
240 int err;
241 pthread_t *tid_reader, *tid_writer;
242 void *tret;
243 unsigned long long *count_reader, *count_writer;
244 unsigned long long tot_reads = 0, tot_writes = 0;
245 int i, a;
246 unsigned int i_thr;
247
248 if (argc < 4) {
249 show_usage(argc, argv);
250 return -1;
251 }
252
253 err = sscanf(argv[1], "%u", &nr_readers);
254 if (err != 1) {
255 show_usage(argc, argv);
256 return -1;
257 }
258
259 err = sscanf(argv[2], "%u", &nr_writers);
260 if (err != 1) {
261 show_usage(argc, argv);
262 return -1;
263 }
264
265 err = sscanf(argv[3], "%lu", &duration);
266 if (err != 1) {
267 show_usage(argc, argv);
268 return -1;
269 }
270
271 for (i = 4; i < argc; i++) {
272 if (argv[i][0] != '-')
273 continue;
274 switch (argv[i][1]) {
275 case 'r':
276 rcu_debug_yield_enable(RCU_YIELD_READ);
277 break;
278 case 'w':
279 rcu_debug_yield_enable(RCU_YIELD_WRITE);
280 break;
281 case 'a':
282 if (argc < i + 2) {
283 show_usage(argc, argv);
284 return -1;
285 }
286 a = atoi(argv[++i]);
287 cpu_affinities[next_aff++] = a;
288 use_affinity = 1;
289 printf_verbose("Adding CPU %d affinity\n", a);
290 break;
291 case 'c':
292 if (argc < i + 2) {
293 show_usage(argc, argv);
294 return -1;
295 }
296 rduration = atol(argv[++i]);
297 break;
298 case 'd':
299 if (argc < i + 2) {
300 show_usage(argc, argv);
301 return -1;
302 }
303 wdelay = atol(argv[++i]);
304 break;
305 case 'e':
306 if (argc < i + 2) {
307 show_usage(argc, argv);
308 return -1;
309 }
310 wduration = atol(argv[++i]);
311 break;
312 case 'v':
313 verbose_mode = 1;
314 break;
315 }
316 }
317
318 printf_verbose("running test for %lu seconds, %u readers, %u writers.\n",
319 duration, nr_readers, nr_writers);
320 printf_verbose("Writer delay : %lu loops.\n", wdelay);
321 printf_verbose("Reader duration : %lu loops.\n", rduration);
322 printf_verbose("thread %-6s, tid %lu\n",
323 "main", urcu_get_thread_id());
324
325 tid_reader = calloc(nr_readers, sizeof(*tid_reader));
326 tid_writer = calloc(nr_writers, sizeof(*tid_writer));
327 count_reader = calloc(nr_readers, sizeof(*count_reader));
328 count_writer = calloc(nr_writers, sizeof(*count_writer));
329
330 next_aff = 0;
331
332 for (i_thr = 0; i_thr < nr_readers; i_thr++) {
333 err = pthread_create(&tid_reader[i_thr], NULL, thr_reader,
334 &count_reader[i_thr]);
335 if (err != 0)
336 exit(1);
337 }
338 for (i_thr = 0; i_thr < nr_writers; i_thr++) {
339 err = pthread_create(&tid_writer[i_thr], NULL, thr_writer,
340 &count_writer[i_thr]);
341 if (err != 0)
342 exit(1);
343 }
344
345 cmm_smp_mb();
346
347 test_go = 1;
348
349 sleep(duration);
350
351 test_stop = 1;
352
353 for (i_thr = 0; i_thr < nr_readers; i_thr++) {
354 err = pthread_join(tid_reader[i_thr], &tret);
355 if (err != 0)
356 exit(1);
357 tot_reads += count_reader[i_thr];
358 }
359 for (i_thr = 0; i_thr < nr_writers; i_thr++) {
360 err = pthread_join(tid_writer[i_thr], &tret);
361 if (err != 0)
362 exit(1);
363 tot_writes += count_writer[i_thr];
364 }
365
366 printf_verbose("total number of reads : %llu, writes %llu\n", tot_reads,
367 tot_writes);
368 printf("SUMMARY %-25s testdur %4lu nr_readers %3u rdur %6lu wdur %6lu "
369 "nr_writers %3u "
370 "wdelay %6lu nr_reads %12llu nr_writes %12llu nr_ops %12llu\n",
371 argv[0], duration, nr_readers, rduration, wduration,
372 nr_writers, wdelay, tot_reads, tot_writes,
373 tot_reads + tot_writes);
374 free(test_rcu_pointer);
375 free(tid_reader);
376 free(tid_writer);
377 free(count_reader);
378 free(count_writer);
379 return 0;
380}
This page took 0.022986 seconds and 4 git commands to generate.