1 // RUN: %clangxx_tsan -O1 %s -o %t && %deflake %run %t | FileCheck %s
2 // This test fails on powerpc64 big endian.
3 // The Tsan report is returning wrong information about
4 // the location of the race.
5 // XFAIL: target=powerpc64-unknown-linux-gnu{{.*}}
14 void *Thread(void *p
) {
15 barrier_wait(&barrier
);
16 __tsan_read1_pc((jptr
)p
, (jptr
)foobar
+ kPCInc
);
21 barrier_init(&barrier
, 2);
22 int const kHeapSize
= 1024 * 1024;
23 jptr jheap
= (jptr
)malloc(kHeapSize
+ 8) + 8;
24 __tsan_java_init(jheap
, kHeapSize
);
25 const int kBlockSize
= 16;
26 __tsan_java_alloc(jheap
, kBlockSize
);
28 pthread_create(&th
, 0, Thread
, (void*)jheap
);
29 __tsan_write1_pc((jptr
)jheap
, (jptr
)barbaz
+ kPCInc
);
30 barrier_wait(&barrier
);
32 __tsan_java_free(jheap
, kBlockSize
);
33 fprintf(stderr
, "DONE\n");
34 return __tsan_java_fini();
37 // CHECK: WARNING: ThreadSanitizer: data race