llvm-project/compiler-rt/lib/tsan/rtl
Dmitry Vyukov 4723e6b1e5 tsan: implement RWLOCK annotations
llvm-svn: 162019
2012-08-16 13:29:41 +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 [asan,tsan] Add a new directory compiler-rt/lib/sanitizer_common 2012-05-29 12:18:18 +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: allow environment to override OnReport() and OverrideFlags() 2012-07-25 14:30:51 +00:00
tsan_flags.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_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: store sync objects in memory block headers + delete them when the block is freed 2012-08-15 17:27:20 +00:00
tsan_mman.h tsan: switch to new allocator 2012-08-15 15:35:15 +00:00
tsan_mutex.cc tsan: Go language support 2012-07-05 16:18:28 +00:00
tsan_mutex.h tsan/asan: unify ScopedLock 2012-06-29 17:10:08 +00:00
tsan_platform.h tsan: fix COMPAT shadow mapping for new memory allocator 2012-08-16 13:27:25 +00:00
tsan_platform_linux.cc tsan: switch to new allocator 2012-08-15 15:35:15 +00:00
tsan_platform_mac.cc [TSan] cleanup header comments 2012-07-17 09:39:59 +00:00
tsan_printf.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_report.cc tsan: align report style with Go internal format 2012-07-24 12:29:43 +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: provide function that imitates write to a region but does not detect races 2012-08-15 16:52:19 +00:00
tsan_rtl.h tsan: implement RWLOCK annotations 2012-08-16 13:29:41 +00:00
tsan_rtl_amd64.S [tsan] First commit of ThreadSanitizer (TSan) run-time library. 2012-05-10 13:48:04 +00:00
tsan_rtl_mutex.cc tsan: implement RWLOCK annotations 2012-08-16 13:29:41 +00:00
tsan_rtl_report.cc tsan: allow environment to override OnReport() and OverrideFlags() 2012-07-25 14:30:51 +00:00
tsan_rtl_thread.cc tsan: switch to new allocator 2012-08-15 15:35:15 +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: prevent insertion of unwanted memset/memcpy/memcmp into runtime 2012-06-27 21:00:23 +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] 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.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] 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_sync.cc tsan: store sync objects in memory block headers + delete them when the block is freed 2012-08-15 17:27:20 +00:00
tsan_sync.h tsan/asan: unify atomics (move atomics from tsan to sanitizer_common) 2012-06-29 16:58:33 +00:00
tsan_trace.h [TSan] cleanup header comments 2012-07-17 09:39:59 +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