llvm-project/compiler-rt/lib/tsan/rtl
Dmitry Vyukov dc36d69b6a tsan: increase number of dead threads for Go
llvm-svn: 160283
2012-07-16 16:03:16 +00:00
..
Makefile.mk [tsan] makefile machinery to build tsan-rt (linux-x86_64 only) 2012-05-15 15:17:35 +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 Remove file-type tags in .cc files in tsan/ and sanitizer_common/ 2012-06-04 13:55:19 +00:00
tsan_clock.h tsan: add shadow memory flush + fix few bugs 2012-05-22 18:07:45 +00:00
tsan_defs.h tsan: Go language support 2012-07-05 16:18:28 +00:00
tsan_flags.cc [Sanitizer] move flag parsing routines (and unit tests) from tsan runtime to common runtime. 2012-07-09 13:21:39 +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] use internal_strnlen in strncpy interceptor (the bug found while booting chromium) 2012-07-13 13:04:43 +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: fix COMPAT mapping to not produce false reports 2012-06-14 21:40:35 +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: remove internal allocator, switch to sanitizer_common one. 2012-06-25 15:03:15 +00:00
tsan_mman.h tsan: refactor signal handling code (move some definitions out of common header) 2012-06-27 16:05:06 +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: port Go runtime to Darwin 2012-07-16 13:02:40 +00:00
tsan_platform_linux.cc tsan: fix build 2012-07-16 13:25:47 +00:00
tsan_platform_mac.cc tsan: fix build 2012-07-16 13:25:47 +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: Go lang: symbolize stack traces 2012-07-06 14:54:25 +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: Go language support 2012-07-05 16:18:28 +00:00
tsan_rtl.h tsan: Go language support 2012-07-05 16:18:28 +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 [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_rtl_report.cc tsan: Go language support fixes 2012-07-06 20:23:59 +00:00
tsan_rtl_thread.cc tsan: increase number of dead threads for Go 2012-07-16 16:03:16 +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: intercept longjmp() but die in it, greatly simplifies problem diagnostic 2012-05-31 18:03:59 +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: do not call malloc/free in memory access handling routine. 2012-06-22 11:08:55 +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: do not call malloc/free in memory access handling routine. 2012-06-22 11:08:55 +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