Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | tsan: do not call into libc in symbolizer and in other code (this causes ↵ | Dmitry Vyukov | 2012-05-25 | 1 | -1/+1 | |
| | | | | | | recursion and crashes) llvm-svn: 157466 | |||||
* | tsan: add shadow memory flush + fix few bugs | Dmitry Vyukov | 2012-05-22 | 1 | -1/+2 | |
| | | | | llvm-svn: 157270 | |||||
* | tsan: reduce per-thread memory usage | Dmitry Vyukov | 2012-05-22 | 1 | -8/+6 | |
| | | | | llvm-svn: 157252 | |||||
* | tsan: remove shutdown code | Dmitry Vyukov | 2012-05-17 | 1 | -3/+0 | |
| | | | | | | | | tsan runtime shutdown is problematic for 2 reasons: 1. others crash during shutdown 2. we have to override user exit status (don't know it and can't return from atexit handler) llvm-svn: 156991 | |||||
* | [tsan] run more kinds of builds as presubmit test (and fix gcc debug build) | Kostya Serebryany | 2012-05-11 | 1 | -2/+2 | |
| | | | | llvm-svn: 156616 | |||||
* | [tsan] First commit of ThreadSanitizer (TSan) run-time library. | Kostya Serebryany | 2012-05-10 | 1 | -0/+368 | |
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 |