[llvm-commits] [compiler-rt] r170896 - /compiler-rt/trunk/lib/tsan/lit_tests/java_alloc.cc

Dmitry Vyukov dvyukov at google.com
Fri Dec 21 05:40:27 PST 2012


Author: dvyukov
Date: Fri Dec 21 07:40:27 2012
New Revision: 170896

URL: http://llvm.org/viewvc/llvm-project?rev=170896&view=rev
Log:
tsan: add java malloc stress test

Added:
    compiler-rt/trunk/lib/tsan/lit_tests/java_alloc.cc

Added: compiler-rt/trunk/lib/tsan/lit_tests/java_alloc.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/java_alloc.cc?rev=170896&view=auto
==============================================================================
--- compiler-rt/trunk/lib/tsan/lit_tests/java_alloc.cc (added)
+++ compiler-rt/trunk/lib/tsan/lit_tests/java_alloc.cc Fri Dec 21 07:40:27 2012
@@ -0,0 +1,32 @@
+// RUN: %clangxx_tsan -O1 %s -o %t && %t 2>&1 | FileCheck %s
+#include "java.h"
+
+int const kHeapSize = 1024 * 1024;
+
+void stress(jptr addr) {
+  for (jptr sz = 8; sz <= 32; sz <<= 1) {
+    for (jptr i = 0; i < kHeapSize / 4 / sz; i++) {
+      __tsan_java_alloc(addr + i * sz, sz);
+    }
+    __tsan_java_move(addr, addr + kHeapSize / 2, kHeapSize / 4);
+    __tsan_java_free(addr + kHeapSize / 2, kHeapSize / 4);
+  }
+}
+
+void *Thread(void *p) {
+  stress((jptr)p);
+  return 0;
+}
+
+int main() {
+  jptr jheap = (jptr)malloc(kHeapSize);
+  __tsan_java_init(jheap, kHeapSize);
+  pthread_t th;
+  pthread_create(&th, 0, Thread, (void*)(jheap + kHeapSize / 4)
+  );
+  stress(jheap);
+  pthread_join(th, 0);
+  return __tsan_java_fini();
+}
+
+// CHECK-NOT: WARNING: ThreadSanitizer: data race





More information about the llvm-commits mailing list