llvm-project/compiler-rt/lib/tsan/rtl
Dmitry Vyukov 7af8a3a83d tsan: simplify TSAN_HISTORY_SIZE code
llvm-svn: 162905
2012-08-30 13:29:11 +00:00
..
Makefile.mk [Sanitizer] Make ASan/TSan sources depend on headers from interception library 2012-08-01 14:55:49 +00:00
Makefile.old [tsan] fix tsan's Makefile.old -- our build bot still uses it (hopefully, will soon migrate to cmake completely) 2012-08-29 08:21:09 +00:00
tsan_clock.cc [TSan] delete trailing spaces 2012-07-30 07:46:09 +00:00
tsan_clock.h tsan: add ReleaseStore() function that merely copies vector clock rather than combines two clocks 2012-07-28 15:27:41 +00:00
tsan_defs.h tsan: switch to new allocator 2012-08-15 15:35:15 +00:00
tsan_flags.cc tsan: add flag to disable reporting of destruction of locked mutexes (some programs use that on a regular basis) 2012-08-16 15:12:35 +00:00
tsan_flags.h tsan: add flag to disable reporting of destruction of locked mutexes (some programs use that on a regular basis) 2012-08-16 15:12:35 +00:00
tsan_interceptors.cc tsan: implement RWLOCK annotations 2012-08-16 13:29:41 +00:00
tsan_interface.cc Remove file-type tags in .cc files in tsan/ and sanitizer_common/ 2012-06-04 13:55:19 +00:00
tsan_interface.h [tsan] First commit of ThreadSanitizer (TSan) run-time library. 2012-05-10 13:48:04 +00:00
tsan_interface_ann.cc tsan: implement RWLOCK annotations 2012-08-16 13:29:41 +00:00
tsan_interface_ann.h [tsan] First commit of ThreadSanitizer (TSan) run-time library. 2012-05-10 13:48:04 +00:00
tsan_interface_atomic.cc [Sanitizer] move placement_new definiton from TSan to common runtime 2012-06-07 09:50:16 +00:00
tsan_interface_atomic.h tsan: add more atomics to public interface (fetch_or/and/xor + 1-,2-byte versions) 2012-05-14 15:33:00 +00:00
tsan_interface_inl.h [tsan] First commit of ThreadSanitizer (TSan) run-time library. 2012-05-10 13:48:04 +00:00
tsan_md5.cc tsan: prevent insertion of unwanted memset/memcpy/memcmp into runtime 2012-06-27 21:00:23 +00:00
tsan_mman.cc tsan: use stack depot to describe heap blocks 2012-08-30 13:02:30 +00:00
tsan_mman.h [TSan] switch tsan to using InternalScopedBuffer from sanitizer_common 2012-08-22 07:25:52 +00:00
tsan_mutex.cc tsan: use stack depot to describe heap blocks 2012-08-30 13:02:30 +00:00
tsan_mutex.h tsan: use stack depot to describe heap blocks 2012-08-30 13:02:30 +00:00
tsan_platform.h tsan: fix COMPAT shadow mapping once again 2012-08-16 14:20:45 +00:00
tsan_platform_linux.cc [Sanitizer] Rename ProcessMaps to MemoryMappingLayout and fix Windows build by providing stub implementation 2012-08-27 13:48:48 +00:00
tsan_platform_mac.cc [TSan] cleanup header comments 2012-07-17 09:39:59 +00:00
tsan_printf.cc [TSan] switch tsan to using InternalScopedBuffer from sanitizer_common 2012-08-22 07:25:52 +00:00
tsan_report.cc tsan: use stack depot to describe heap blocks 2012-08-30 13:02:30 +00:00
tsan_report.h tsan: check that signal handlers do not spoil errno. 2012-06-27 13:54:46 +00:00
tsan_rtl.cc tsan: use stack depot to describe heap blocks 2012-08-30 13:02:30 +00:00
tsan_rtl.h tsan: use stack depot to describe heap blocks 2012-08-30 13:02:30 +00:00
tsan_rtl_amd64.S tsan: Non-executable stack for hand-coded assembly 2012-08-17 18:05:28 +00:00
tsan_rtl_mutex.cc tsan: proper handling of linker initialized mutexes 2012-08-18 11:49:00 +00:00
tsan_rtl_report.cc tsan: use stack depot to describe heap blocks 2012-08-30 13:02:30 +00:00
tsan_rtl_thread.cc tsan: use stack depot to describe heap blocks 2012-08-30 13:02:30 +00:00
tsan_stat.cc [Sanitizer]: Introduce a common internal printf function. For now, also use tool-specific wrappers TsanPrintf (its output is controlled by TSan flags) and AsanPrintf (which copies its results to the ASan-private buffer). Supported formats: %[z]{d,u,x}, %s, %p. Re-write all format strings in TSan according to this format (this should have no effect on 64-bit platforms). 2012-06-06 13:11:29 +00:00
tsan_stat.h tsan: implement RWLOCK annotations 2012-08-16 13:29:41 +00:00
tsan_suppressions.cc [TSan] switch tsan to using InternalScopedBuffer from sanitizer_common 2012-08-22 07:25:52 +00:00
tsan_suppressions.h tsan: suppress reports against source file names as well 2012-05-31 13:18:11 +00:00
tsan_symbolize.cc [TSan] switch tsan to using InternalScopedBuffer from sanitizer_common 2012-08-22 07:25:52 +00:00
tsan_symbolize.h [TSan] add a new option 'use_internal_symbolizer' that allows to choose between addr2line-based and llvm-based symbolizer w/o having to rebuild the runtime. This is hopefully a temporary solution that simplifies testing process. In the end, we should leave a single symbolizer. 2012-07-05 07:18:29 +00:00
tsan_symbolize_addr2line_linux.cc [TSan] switch tsan to using InternalScopedBuffer from sanitizer_common 2012-08-22 07:25:52 +00:00
tsan_sync.cc tsan: proper handling of linker initialized mutexes 2012-08-18 11:49:00 +00:00
tsan_sync.h tsan: better diagnostics for destroy of a locked mutex + a test 2012-08-16 15:08:49 +00:00
tsan_trace.h tsan: simplify TSAN_HISTORY_SIZE code 2012-08-30 13:29:11 +00:00
tsan_update_shadow_word_inl.h [tsan] First commit of ThreadSanitizer (TSan) run-time library. 2012-05-10 13:48:04 +00:00
tsan_vector.h tsan: prevent insertion of unwanted memset/memcpy/memcmp into runtime 2012-06-27 21:00:23 +00:00