[PATCH] D14992: [tsan] Add interceptors and sychronization for libdispatch semaphores on OS X
Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Dec 1 05:16:02 PST 2015
This revision was automatically updated to reflect the committed changes.
Closed by commit rL254412: [tsan] Add interceptors and sychronization for libdispatch semaphores on OS X (authored by kuba.brecka).
Changed prior to commit:
http://reviews.llvm.org/D14992?vs=41159&id=41493#toc
Repository:
rL LLVM
http://reviews.llvm.org/D14992
Files:
compiler-rt/trunk/lib/tsan/rtl/tsan_libdispatch_mac.cc
compiler-rt/trunk/test/tsan/Darwin/gcd-semaphore-norace.mm
Index: compiler-rt/trunk/test/tsan/Darwin/gcd-semaphore-norace.mm
===================================================================
--- compiler-rt/trunk/test/tsan/Darwin/gcd-semaphore-norace.mm
+++ compiler-rt/trunk/test/tsan/Darwin/gcd-semaphore-norace.mm
@@ -0,0 +1,29 @@
+// RUN: %clang_tsan %s -o %t -framework Foundation
+// RUN: %run %t 2>&1
+
+#import <Foundation/Foundation.h>
+
+long global;
+
+int main() {
+ NSLog(@"Hello world.");
+
+ global = 42;
+
+ dispatch_semaphore_t sem = dispatch_semaphore_create(0);
+ dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
+
+ global = 43;
+ dispatch_semaphore_signal(sem);
+ });
+
+ dispatch_semaphore_wait(sem, DISPATCH_TIME_FOREVER);
+ global = 44;
+
+ NSLog(@"Done.");
+ return 0;
+}
+
+// CHECK: Hello world.
+// CHECK: Done.
+// CHECK-NOT: WARNING: ThreadSanitizer
Index: compiler-rt/trunk/lib/tsan/rtl/tsan_libdispatch_mac.cc
===================================================================
--- compiler-rt/trunk/lib/tsan/rtl/tsan_libdispatch_mac.cc
+++ compiler-rt/trunk/lib/tsan/rtl/tsan_libdispatch_mac.cc
@@ -25,6 +25,8 @@
#include <dispatch/dispatch.h>
#include <pthread.h>
+typedef long long_t; // NOLINT
+
namespace __tsan {
typedef struct {
@@ -166,6 +168,21 @@
});
}
+TSAN_INTERCEPTOR(long_t, dispatch_semaphore_signal,
+ dispatch_semaphore_t dsema) {
+ SCOPED_TSAN_INTERCEPTOR(dispatch_semaphore_signal, dsema);
+ Release(thr, pc, (uptr)dsema);
+ return REAL(dispatch_semaphore_signal)(dsema);
+}
+
+TSAN_INTERCEPTOR(long_t, dispatch_semaphore_wait, dispatch_semaphore_t dsema,
+ dispatch_time_t timeout) {
+ SCOPED_TSAN_INTERCEPTOR(dispatch_semaphore_wait, dsema, timeout);
+ long_t result = REAL(dispatch_semaphore_wait)(dsema, timeout);
+ if (result == 0) Acquire(thr, pc, (uptr)dsema);
+ return result;
+}
+
} // namespace __tsan
#endif // SANITIZER_MAC
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D14992.41493.patch
Type: text/x-patch
Size: 1979 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20151201/017bbc98/attachment.bin>
More information about the llvm-commits
mailing list