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
|
/*
* Test whether all data races are detected in a multithreaded program with
* user-annotated barriers. See also pth_barrier.c.
*/
#define _GNU_SOURCE
#include <pthread.h> /* pthread_create() */
#include <stdio.h> /* fprintf() */
#include <stdlib.h> /* atoi() */
#include <string.h> /* memset() */
#include <unistd.h> /* usleep() */
#include "../../drd/drd.h"
#include "../../config.h"
#define BARRIER_SERIAL_THREAD -1
/* Local datatypes. */
typedef struct
{
/*
* number of threads that must call barrier_wait() before any of them
* successfully return from the call.
*/
unsigned thread_count;
/* number of barrier_wait() calls since last barrier. */
volatile unsigned wait_count;
/*
* barrier count. Only the least significant bit matters -- a single bit
* counter would be sufficient.
*/
volatile unsigned barrier_count;
} barrier_t;
struct threadinfo
{
int thread_num;
barrier_t* b;
pthread_t tid;
int* array;
int iterations;
};
/* Local variables. */
static int s_silent;
/* Local functions. */
static void barrier_init(barrier_t* b, unsigned count)
{
b->thread_count = count;
b->wait_count = 0;
b->barrier_count = 0;
ANNOTATE_BARRIER_INIT(b, count, 0);
}
static void barrier_destroy(barrier_t* b)
{
ANNOTATE_BARRIER_DESTROY(b);
memset(b, 0, sizeof(*b));
}
static int barrier_wait(barrier_t* b)
{
int res;
unsigned barrier_count;
res = 0;
ANNOTATE_BARRIER_WAIT_BEFORE(b);
barrier_count = b->barrier_count;
if (__sync_add_and_fetch(&b->wait_count, 1) == b->thread_count)
{
__sync_sub_and_fetch(&b->wait_count, b->thread_count);
__sync_add_and_fetch(&b->barrier_count, 1);
res = BARRIER_SERIAL_THREAD;
}
else
{
while (b->barrier_count == barrier_count)
{
#ifndef HAVE_PTHREAD_YIELD
/* Darwin doesn't have an implementation of pthread_yield(). */
usleep(100 * 1000);
#else
pthread_yield();
#endif
}
}
ANNOTATE_BARRIER_WAIT_AFTER(b);
return res;
}
/*
* Single thread, which touches p->iterations elements of array p->array.
* Each modification of an element of p->array is a data race.
*/
static void* threadfunc(struct threadinfo* p)
{
int i;
int* const array = p->array;
barrier_t* const b = p->b;
if (! s_silent)
printf("thread %d iteration 0\n", p->thread_num);
barrier_wait(b);
for (i = 0; i < p->iterations; i++)
{
if (! s_silent)
printf("thread %d iteration %d; writing to %p\n",
p->thread_num, i + 1, &array[i]);
array[i] = i;
barrier_wait(b);
}
return 0;
}
/* Actual test, consisting of nthread threads. */
static void barriers_and_races(const int nthread, const int iterations)
{
const struct timespec delay = { 0, 100 * 1000 * 1000 };
int i;
struct threadinfo* t;
barrier_t b;
int* array;
t = malloc(nthread * sizeof(struct threadinfo));
array = malloc(iterations * sizeof(array[0]));
if (! s_silent)
printf("&array[0] = %p\n", array);
barrier_init(&b, nthread);
for (i = 0; i < nthread; i++)
{
t[i].thread_num = i + 1;
t[i].b = &b;
t[i].array = array;
t[i].iterations = iterations;
pthread_create(&t[i].tid, 0, (void*(*)(void*))threadfunc, &t[i]);
nanosleep(&delay, 0);
}
for (i = 0; i < nthread; i++)
pthread_join(t[i].tid, 0);
barrier_destroy(&b);
free(array);
free(t);
}
int main(int argc, char** argv)
{
int nthread;
int iterations;
nthread = (argc > 1) ? atoi(argv[1]) : 2;
iterations = (argc > 2) ? atoi(argv[2]) : 3;
s_silent = (argc > 3) ? atoi(argv[3]) : 0;
barriers_and_races(nthread, iterations);
fprintf(stderr, "Done.\n");
return 0;
}
|