summaryrefslogtreecommitdiffstats
path: root/compiler-rt/lib/tsan/rtl/tsan_defs.h
Commit message (Collapse)AuthorAgeFilesLines
...
* [Sanitizer] add internal_memset and internal_strrchr to sanitizer_common/Alexey Samsonov2012-06-081-1/+0
| | | | llvm-svn: 158202
* [TSan] s/internal_memset/real_memsetAlexey Samsonov2012-06-081-1/+1
| | | | llvm-svn: 158200
* [Sanitizer] move internal_strdup and internal_memcpy to common runtime. Make ↵Alexey Samsonov2012-06-071-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 Samsonov2012-06-061-20/+0
| | | | | | its own CheckFailed function. llvm-svn: 158075
* [Sanitizer] Move more functions/constants to sanitizer_common.Alexey Samsonov2012-06-061-2/+0
| | | | llvm-svn: 158056
* [Sanitizer] rename sanitizer_defs.h to sanitizer_internal_defs.hAlexey Samsonov2012-06-051-1/+1
| | | | llvm-svn: 158001
* [Sanitizer] remove using namespace __sanitizer linesAlexey Samsonov2012-06-051-2/+0
| | | | llvm-svn: 157999
* [Sanitizer] Use common defines for ASan and TSan runtime. Split defines ↵Alexey Samsonov2012-06-051-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_commonAlexey Samsonov2012-06-041-1/+0
| | | | llvm-svn: 157926
* tsan: do not call into libc in symbolizer and in other code (this causes ↵Dmitry Vyukov2012-05-251-0/+1
| | | | | | recursion and crashes) llvm-svn: 157466
* tsan: fix compilation with newest clangDmitry Vyukov2012-05-241-11/+8
| | | | llvm-svn: 157391
* tsan: add shadow memory flush + fix few bugsDmitry Vyukov2012-05-221-1/+1
| | | | llvm-svn: 157270
* tsan: reduce per-thread memory usageDmitry Vyukov2012-05-221-1/+1
| | | | llvm-svn: 157252
* tsan: detect accesses to freed memoryDmitry Vyukov2012-05-171-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 Serebryany2012-05-111-1/+1
| | | | llvm-svn: 156616
* [tsan] First commit of ThreadSanitizer (TSan) run-time library.Kostya Serebryany2012-05-101-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
OpenPOWER on IntegriCloud