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
|
#define _GNU_SOURCE
#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
#include <unistd.h>
#include "rand.h"
#include "hmproto.h"
#define ARRAYSZ(x) (sizeof(x)/sizeof(x[0]))
typedef uintptr_t word;
// These functions return a 64-bit value on 64-bit systems; I'd be
// interested in testing stuff on a box where you have more cores
// than fits in an uint32_t...
static word nthreads, nrthreads, nwthreads;
static word nproc()
{
#if defined(__USE_GNU) && !defined(__gnu_hurd__)
cpu_set_t set;
if (!pthread_getaffinity_np(pthread_self(), sizeof(set), &set))
return CPU_COUNT(&set);
#endif
long n = sysconf(_SC_NPROCESSORS_CONF);
if (n > 0)
return n;
return 0;
}
static int bad=0, any_bad=0;
#define CHECK(x) do if (!(x)) bad=1; while (0)
#define CHECKP(x,...) do if (!(x)) {bad=1; printf("ERROR: "__VA_ARGS__);} while (0)
static int done=0;
static word the1000[1000];
static void* the1000p[1000];
#if __SIZEOF_SIZE_T__ == 8
# define K 0xdeadbeefcafebabe
#else
# define K 0xcafebabe
#endif
/***********/
/* threads */
/***********/
static void* thread_read1(void* c)
{
word count=0;
while (!done)
{
CHECK(hm_get(c, K) == (void*)K);
count++;
}
return (void*)count;
}
static void* thread_read1p(void* c)
{
void* k = the1000p[0];
word count=0;
while (!done)
{
CHECK(hm_get(c, (word)k) == k);
count++;
}
return (void*)count;
}
static void* thread_read1000(void* c)
{
word count=0;
int i=0;
while (!done)
{
if (++i==1000)
i=0;
word v=the1000[i];
CHECK(hm_get(c, v) == (void*)v);
count++;
}
return (void*)count;
}
static void* thread_write1000(void* c)
{
rng_t rng;
randomize_r(&rng, 0);
word w1000[1000];
for (int i=0; i<ARRAYSZ(w1000); i++)
w1000[i] = rnd64_r(&rng);
word count=0;
int i=0;
while (!done)
{
if (++i==1000)
i=0;
word v=w1000[i];
hm_insert(c, v, (void*)v, 0);
word r=(word)hm_remove(c, v);
CHECK(v==r);
count++;
}
return (void*)count;
}
static void* thread_read_write_remove(void* c)
{
rng_t rng;
randomize_r(&rng, 0);
word count=0;
while (!done)
{
word r, v=rnd64_r(&rng);
hm_insert(c, v, (void*)v, 0);
r = (word)hm_get(c, v);
CHECKP(r == v, "get[%016zx] got %016zx\n\n", v, r);
r = (word)hm_remove(c, v);
CHECKP(r == v, "remove[%016zx] got %016zx\n\n", v, r);
count++;
}
return (void*)count;
}
#define CACHESIZE 512 /* 32KB in 64-byte cachelines */
static void* thread_read1_cachekiller(void* c)
{
volatile word cache[CACHESIZE][8];
word count=0;
while (!done)
{
for (int i=0; i<CACHESIZE; i++)
cache[i][0]++;
CHECK(hm_get(c, K) == (void*)K);
count++;
}
return (void*)count;
}
static void* thread_read1000_cachekiller(void* c)
{
volatile word cache[CACHESIZE][8];
word count=0;
int i=0;
while (!done)
{
for (int k=0; k<CACHESIZE; k++)
cache[k][0]++;
if (++i==1000)
i=0;
word v=the1000[i];
CHECK(hm_get(c, v) == (void*)v);
count++;
}
return (void*)count;
}
static void* thread_write1000_cachekiller(void* c)
{
volatile word cache[CACHESIZE][8];
rng_t rng;
randomize_r(&rng, 0);
word w1000[1000];
for (int i=0; i<ARRAYSZ(w1000); i++)
w1000[i] = rnd64_r(&rng);
word count=0;
int i=0;
while (!done)
{
for (int k=0; k<CACHESIZE; k++)
cache[k][0]++;
if (++i==1000)
i=0;
word v=w1000[i];
hm_insert(c, v, (void*)v, 0);
word r=(word)hm_remove(c, v);
CHECK(v==r);
count++;
}
return (void*)count;
}
static word revbits(word x)
{
word y=0, a=1, b=1UL<<(sizeof(void*)*8-1);
for (; b; a<<=1, b>>=1)
{
if (x & a)
y |= b;
}
return y;
}
static void* thread_le1(void* c)
{
word count=0;
while (!done)
{
word y = revbits(count);
if (y < K)
CHECK(hm_find_le(c, y) == NULL);
else
CHECK(hm_find_le(c, y) == (void*)K);
count++;
}
return (void*)count;
}
static void* thread_le1000(void* c)
{
word count=0;
while (!done)
{
word y = revbits(count);
hm_find_le(c, y);
count++;
}
return (void*)count;
}
/*********/
/* tests */
/*********/
typedef void *(*thread_func_t)(void *);
static void run_test(int spreload, int rpreload, thread_func_t rthread, thread_func_t wthread)
{
int ptrs = (rpreload<0);
void *c = hm_new();
if (spreload>=1)
hm_insert(c, K, (void*)K, 0);
if (spreload>=2)
hm_insert(c, 1, (void*)1, 0);
if (ptrs)
{
rpreload=-rpreload;
for (int i=spreload; i<rpreload; i++)
hm_insert(c, (word)the1000p[i], the1000p[i], 0);
}
else
for (int i=spreload; i<rpreload; i++)
hm_insert(c, the1000[i], (void*)the1000[i], 0);
pthread_t th[nthreads], wr[nwthreads];
int ntr=wthread?nrthreads:nthreads;
int ntw=wthread?nwthreads:0;
done=0;
for (int i=0; i<ntr; i++)
CHECK(!pthread_create(&th[i], 0, rthread, c));
for (int i=0; i<ntw; i++)
CHECK(!pthread_create(&wr[i], 0, wthread, c));
sleep(1);
done=1;
word countr=0, countw=0;
for (int i=0; i<ntr; i++)
{
void* retval;
CHECK(!pthread_join(th[i], &retval));
countr+=(word)retval;
}
for (int i=0; i<ntw; i++)
{
void* retval;
CHECK(!pthread_join(wr[i], &retval));
countw+=(word)retval;
}
if (ntw)
printf("\e[F\e[25C%15zu %15zu\n", countr, countw);
else
printf("\e[F\e[25C%15zu\n", countr);
hm_delete(c);
}
static int only_hm = -1;
static void test(const char *name, int spreload, int rpreload,
thread_func_t rthread, thread_func_t wthread, int req)
{
printf("TEST: %s\n", name);
int hmin = (only_hm<0)?0:only_hm;
int hmax = (only_hm>=0 && only_hm<ARRAYSZ(hms))?only_hm:ARRAYSZ(hms)-1;
for (int i=hmin; i<=hmax; i++)
{
hm_select(i);
if ((wthread && (hm_immutable&1)) || hm_immutable&req)
{
printf(" \e[35m[\e[1m!\e[22m]\e[0m: %s\n", hm_name);
continue;
}
printf(" \e[34m[\e[1m⚒\e[22m]\e[0m: %s\e[0m\n", hm_name);
bad=0;
run_test(spreload, rpreload, rthread, ((intptr_t)wthread==-1)?0:wthread);
if (!bad)
printf("\e[F \e[32m[\e[1m✓\e[22m]\e[0m\n");
else
printf("\e[F \e[31m[\e[1m✗\e[22m]\e[0m\n"), any_bad=1;
}
}
int main(int argc, char **argv)
{
int opt;
while ((opt = getopt(argc, argv, "a:")) != -1)
{
switch (opt)
{
case 'a':
only_hm = atoi(optarg);
break;
default:
exit(1);
}
}
if (optind < argc)
return fprintf(stderr, "%s: unknown arg '%s'\n", argv[0], argv[optind]), 1;
randomize(0);
for (int i=0; i<ARRAYSZ(the1000); i++)
the1000[i] = rnd64();
for (int i=0; i<ARRAYSZ(the1000p); i++)
the1000p[i] = malloc(the1000[i]%65536+1);
nthreads = nproc();
if (!nthreads)
nthreads = 8;
nwthreads=nthreads/2;
if (!nwthreads)
nwthreads = 1;
nrthreads=nthreads-nwthreads;
if (!nrthreads)
nrthreads = 1;
printf("Using %zu threads; %zu readers %zu writers in mixed tests.\n",
nthreads, nrthreads, nwthreads);
test("read 1-of-1", 1, 0, thread_read1, 0, 0);
test("read 1-of-2", 2, 0, thread_read1, 0, 0);
test("read 1-of-1000", 1, 1000, thread_read1, 0, 0);
test("read 1000-of-1000", 0, 1000, thread_read1000, 0, 0);
test("read 1-of-1000 pointers", 0, -1000, thread_read1p, 0, 0);
#if __SIZEOF_SIZE_T__ == 8
// These tests are slightly buggy: the 1000*nwthreads random values
// must be unique, which I didn't bothered to check as the chance of
// collision on 64-bit is negligible, esp. with CI being unreliable.
// Enter 32-bit...
// The library code is correct, just the tests are wrong.
test("read 1 write 1000", 1, 0, thread_read1, thread_write1000, 0);
test("read 1000 write 1000", 0, 1000, thread_read1000, thread_write1000, 0);
test("read-write-remove", 0, 0, thread_read_write_remove, (thread_func_t)-1, 0);
#endif
test("read 1-of-1 cachekiller", 1, 0, thread_read1_cachekiller, 0, 0);
test("read 1-of-1000 cachekiller", 1, 1000, thread_read1_cachekiller, 0, 0);
#if __SIZEOF_SIZE_T__ == 8
test("read 1000 write 1000 cachekiller", 0, 1000, thread_read1000_cachekiller, thread_write1000_cachekiller, 0);
#endif
test("le 1 van der Corput", 1, 0, thread_le1, 0, 2);
test("le 1000 van der Corput", 0, 1000, thread_le1000, 0, 2);
for (int i=0; i<ARRAYSZ(the1000p); i++)
free(the1000p[i]);
return any_bad;
}
|