llvm-project/compiler-rt/lib/tsan/rtl
Alexey Samsonov 5c6b93bc33 [Sanitizer] Get rid of dependency between sanitizer_common and asan/tsan runtimes: implement tool-specific Die and CheckFailed functions via callbacks
llvm-svn: 163603
2012-09-11 09:44:48 +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: fix code style 2012-09-06 16:11:30 +00:00
tsan_flags.cc [TSan] add support for running external symbolizer other than addr2line (for testing purposes) 2012-09-06 08:48:43 +00:00
tsan_flags.h [TSan] add support for running external symbolizer other than addr2line (for testing purposes) 2012-09-06 08:48:43 +00:00
tsan_interceptors.cc Interceptors for lockf and lockf64, minor calloc() fix. 2012-09-11 09:26:35 +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 tsan: more precise handling of atomic_store(memory_order_release) 2012-08-31 13:22:13 +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: add "as if synchronized via sleep" feature 2012-08-31 17:27:49 +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: ignore destruction of global mutexes (causes a lot of non-interesting reports) 2012-09-07 18:08:02 +00:00
tsan_platform_linux.cc [Sanitizer] Get rid of dependency between sanitizer_common and asan/tsan runtimes: implement tool-specific Die and CheckFailed functions via callbacks 2012-09-11 09:44:48 +00:00
tsan_platform_mac.cc [Sanitizer] Get rid of dependency between sanitizer_common and asan/tsan runtimes: implement tool-specific Die and CheckFailed functions via callbacks 2012-09-11 09:44:48 +00:00
tsan_printf.cc [Sanitizer] Remove implicit conversion of InternalScopedBuffer<T> to T* 2012-09-05 07:23:44 +00:00
tsan_report.cc tsan: increase max shadow stack size + reduce memory consumption at the same time (by not memorizing full stacks in traces) 2012-09-06 15:18:14 +00:00
tsan_report.h tsan: better diagnostics for mutex misuse 2012-09-01 12:13:18 +00:00
tsan_rtl.cc [Sanitizer] Get rid of dependency between sanitizer_common and asan/tsan runtimes: implement tool-specific Die and CheckFailed functions via callbacks 2012-09-11 09:44:48 +00:00
tsan_rtl.h [Sanitizer] Get rid of dependency between sanitizer_common and asan/tsan runtimes: implement tool-specific Die and CheckFailed functions via callbacks 2012-09-11 09:44:48 +00:00
tsan_rtl_amd64.S tsan: insert cfi directives into assembly (not fully working for now, though) 2012-09-02 11:24:07 +00:00
tsan_rtl_mutex.cc tsan: ignore destruction of global mutexes (causes a lot of non-interesting reports) 2012-09-07 18:08:02 +00:00
tsan_rtl_report.cc [Sanitizer] Get rid of dependency between sanitizer_common and asan/tsan runtimes: implement tool-specific Die and CheckFailed functions via callbacks 2012-09-11 09:44:48 +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 Interceptors for lockf and lockf64, minor calloc() fix. 2012-09-11 09:26:35 +00:00
tsan_stat.h Interceptors for lockf and lockf64, minor calloc() fix. 2012-09-11 09:26:35 +00:00
tsan_suppressions.cc [Sanitizer] Remove implicit conversion of InternalScopedBuffer<T> to T* 2012-09-05 07:23:44 +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 support for running external symbolizer other than addr2line (for testing purposes) 2012-09-06 08:48:43 +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 [Sanitizer] Remove implicit conversion of InternalScopedBuffer<T> to T* 2012-09-05 07:23:44 +00:00
tsan_sync.cc tsan: increase max shadow stack size + reduce memory consumption at the same time (by not memorizing full stacks in traces) 2012-09-06 15:18:14 +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: increase max shadow stack size + reduce memory consumption at the same time (by not memorizing full stacks in traces) 2012-09-06 15:18:14 +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