Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | tsan: add pipe interceptors | Dmitry Vyukov | 2012-12-07 | 1 | -0/+3 | |
| | | | | llvm-svn: 169602 | |||||
* | tsan: add mutexsets to reports | Dmitry Vyukov | 2012-12-06 | 1 | -0/+1 | |
| | | | | | | With this change reports say what mutexes the threads hold around the racy memory accesses. llvm-svn: 169493 | |||||
* | tsan: provide own implementation of __cxa_guard_xxx functions | Dmitry Vyukov | 2012-12-05 | 1 | -0/+1 | |
| | | | | | | that way we allow static linking of libstdc++ llvm-svn: 169376 | |||||
* | tsan: add __libc_memalign interceptor (used by dynamic loader to allocate ↵ | Dmitry Vyukov | 2012-11-30 | 1 | -0/+1 | |
| | | | | | | tls for dlopen'ed modules) llvm-svn: 169017 | |||||
* | tsan: add 128-bit atomic operations | Dmitry Vyukov | 2012-11-27 | 1 | -0/+1 | |
| | | | | llvm-svn: 168683 | |||||
* | tsan: add atomic nand operation | Dmitry Vyukov | 2012-11-26 | 1 | -0/+1 | |
| | | | | llvm-svn: 168584 | |||||
* | tsan: eevn better handling of signals | Dmitry Vyukov | 2012-11-15 | 1 | -0/+1 | |
| | | | | | | | | add interceptor for poll() in addition process signals in every atomic op in addition process signals in blocking libc functions llvm-svn: 168050 | |||||
* | tsan: intercept gettimeofday() | Dmitry Vyukov | 2012-11-09 | 1 | -0/+1 | |
| | | | | llvm-svn: 167630 | |||||
* | tsan: add atomic_fetch_sub() and atomic_signal_fence() functions | Dmitry Vyukov | 2012-10-04 | 1 | -0/+1 | |
| | | | | llvm-svn: 165218 | |||||
* | [TSan] fix a bunch of warnings reported by pedantic gcc | Alexey Samsonov | 2012-09-13 | 1 | -1/+1 | |
| | | | | llvm-svn: 163788 | |||||
* | Revert the lockf() support. | Alexander Potapenko | 2012-09-11 | 1 | -2/+0 | |
| | | | | llvm-svn: 163614 | |||||
* | Interceptors for lockf and lockf64, minor calloc() fix. | Alexander Potapenko | 2012-09-11 | 1 | -0/+2 | |
| | | | | llvm-svn: 163602 | |||||
* | tsan: add "as if synchronized via sleep" feature | Dmitry Vyukov | 2012-08-31 | 1 | -0/+3 | |
| | | | | llvm-svn: 163006 | |||||
* | tsan: implement RWLOCK annotations | Dmitry Vyukov | 2012-08-16 | 1 | -0/+1 | |
| | | | | llvm-svn: 162019 | |||||
* | tsan: intercept longjmp() but die in it, greatly simplifies problem diagnostic | Dmitry Vyukov | 2012-05-31 | 1 | -0/+2 | |
| | | | | llvm-svn: 157760 | |||||
* | tsan: better, more realistic handling of signals | Dmitry Vyukov | 2012-05-21 | 1 | -0/+4 | |
| | | | | llvm-svn: 157178 | |||||
* | tsan: add more atomics to public interface (fetch_or/and/xor + 1-,2-byte ↵ | Dmitry Vyukov | 2012-05-14 | 1 | -0/+3 | |
| | | | | | | versions) llvm-svn: 156766 | |||||
* | [tsan] First commit of ThreadSanitizer (TSan) run-time library. | Kostya Serebryany | 2012-05-10 | 1 | -0/+245 | |
Algorithm description: http://code.google.com/p/thread-sanitizer/wiki/ThreadSanitizerAlgorithm Status: The tool is known to work on large real-life applications, but still has quite a few rough edges. Nothing is guaranteed yet. The tool works on x86_64 Linux. Support for 64-bit MacOS 10.7+ is planned for late 2012. Support for 32-bit OSes is doable, but problematic and not yet planed. Further commits coming: - tests - makefiles - documentation - clang driver patch The code was previously developed at http://code.google.com/p/data-race-test/source/browse/trunk/v2/ by Dmitry Vyukov and Kostya Serebryany with contributions from Timur Iskhodzhanov, Alexander Potapenko, Alexey Samsonov and Evgeniy Stepanov. llvm-svn: 156542 |