Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | [Sanitizer] add internal_memset and internal_strrchr to sanitizer_common/ | Alexey Samsonov | 2012-06-08 | 1 | -1/+0 | |
| | | | | llvm-svn: 158202 | |||||
* | [TSan] s/internal_memset/real_memset | Alexey Samsonov | 2012-06-08 | 1 | -1/+1 | |
| | | | | llvm-svn: 158200 | |||||
* | [Sanitizer] move internal_strdup and internal_memcpy to common runtime. Make ↵ | Alexey Samsonov | 2012-06-07 | 1 | -2/+1 | |
| | | | | | | internal allocations from TSan runtime call InternalAlloc from common runtime llvm-svn: 158148 | |||||
* | [Sanitizer] Use common CHECK machinery. Currently each tool has to define ↵ | Alexey Samsonov | 2012-06-06 | 1 | -20/+0 | |
| | | | | | | its own CheckFailed function. llvm-svn: 158075 | |||||
* | [Sanitizer] Move more functions/constants to sanitizer_common. | Alexey Samsonov | 2012-06-06 | 1 | -2/+0 | |
| | | | | llvm-svn: 158056 | |||||
* | [Sanitizer] rename sanitizer_defs.h to sanitizer_internal_defs.h | Alexey Samsonov | 2012-06-05 | 1 | -1/+1 | |
| | | | | llvm-svn: 158001 | |||||
* | [Sanitizer] remove using namespace __sanitizer lines | Alexey Samsonov | 2012-06-05 | 1 | -2/+0 | |
| | | | | llvm-svn: 157999 | |||||
* | [Sanitizer] Use common defines for ASan and TSan runtime. Split defines ↵ | Alexey Samsonov | 2012-06-05 | 1 | -8/+5 | |
| | | | | | | between interface defines (can be visible in user code that includes interface ASan/TSan headers) and internal defines. llvm-svn: 157998 | |||||
* | [Sanitizer]: move internal_strcmp to sanitizer_common | Alexey Samsonov | 2012-06-04 | 1 | -1/+0 | |
| | | | | llvm-svn: 157926 | |||||
* | tsan: do not call into libc in symbolizer and in other code (this causes ↵ | Dmitry Vyukov | 2012-05-25 | 1 | -0/+1 | |
| | | | | | | recursion and crashes) llvm-svn: 157466 | |||||
* | tsan: fix compilation with newest clang | Dmitry Vyukov | 2012-05-24 | 1 | -11/+8 | |
| | | | | llvm-svn: 157391 | |||||
* | tsan: add shadow memory flush + fix few bugs | Dmitry Vyukov | 2012-05-22 | 1 | -1/+1 | |
| | | | | llvm-svn: 157270 | |||||
* | tsan: reduce per-thread memory usage | Dmitry Vyukov | 2012-05-22 | 1 | -1/+1 | |
| | | | | llvm-svn: 157252 | |||||
* | tsan: detect accesses to freed memory | Dmitry Vyukov | 2012-05-17 | 1 | -1/+2 | |
| | | | | | | http://codereview.appspot.com/6214052 llvm-svn: 156990 | |||||
* | [tsan] run more kinds of builds as presubmit test (and fix gcc debug build) | Kostya Serebryany | 2012-05-11 | 1 | -1/+1 | |
| | | | | llvm-svn: 156616 | |||||
* | [tsan] First commit of ThreadSanitizer (TSan) run-time library. | Kostya Serebryany | 2012-05-10 | 1 | -0/+194 | |
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 |