Mercurial > hg > CbC > CbC_llvm
view compiler-rt/test/tsan/java_heap_init.cpp @ 266:00f31e85ec16 default tip
Added tag current for changeset 31d058e83c98
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Sat, 14 Oct 2023 10:13:55 +0900 |
parents | 1d019706d866 |
children |
line wrap: on
line source
// RUN: %clangxx_tsan -O1 %s -o %t && %run %t 2>&1 | FileCheck %s #include "java.h" #include <errno.h> #include <sys/mman.h> int main() { // Test that munmap interceptor resets meta shadow for the memory range. // Previously __tsan_java_move failed because it encountered non-zero meta // shadow for the destination. int const kHeapSize = 1024 * 1024; jptr jheap = (jptr)mmap(0, kHeapSize, PROT_READ | PROT_WRITE, MAP_ANON | MAP_PRIVATE, -1, 0); if (jheap == (jptr)MAP_FAILED) return printf("mmap failed with %d\n", errno); __atomic_store_n((int*)jheap, 1, __ATOMIC_RELEASE); munmap((void*)jheap, kHeapSize); jheap = (jptr)mmap((void*)jheap, kHeapSize, PROT_READ | PROT_WRITE, MAP_ANON | MAP_PRIVATE, -1, 0); if (jheap == (jptr)MAP_FAILED) return printf("second mmap failed with %d\n", errno); __tsan_java_init(jheap, kHeapSize); __tsan_java_move(jheap + 16, jheap, 16); fprintf(stderr, "DONE\n"); return __tsan_java_fini(); } // CHECK-NOT: WARNING: ThreadSanitizer: data race // CHECK: DONE