llvm-project/compiler-rt/lib/tsan/rtl
Dmitry Vyukov a2c1c7a78e tsan: wait for pending reports before exit
llvm-svn: 164999
2012-10-02 12:07:16 +00:00
..
CMakeLists.txt [TSan] move replacement for new/delete back into tsan_interceptors 2012-09-27 09:50:19 +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] move replacement for new/delete back into tsan_interceptors 2012-09-27 09:50:19 +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] Use interface attribute for weak functions that may be overriden by user 2012-09-13 13:34:09 +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 tsan: output tid's in reports 2012-10-02 11:52:05 +00:00
tsan_interceptors.h [TSan] Provide replacements for operators new/delete instead of declaring extern C functions with weirdly mangled names (same strategy is used in ASan). 2012-09-24 13:19:47 +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] fix a bunch of warnings reported by pedantic gcc 2012-09-13 11:54:41 +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] Provide replacements for operators new/delete instead of declaring extern C functions with weirdly mangled names (same strategy is used in ASan). 2012-09-24 13:19:47 +00:00
tsan_mman.h [TSan] Provide replacements for operators new/delete instead of declaring extern C functions with weirdly mangled names (same strategy is used in ASan). 2012-09-24 13:19:47 +00:00
tsan_mutex.cc [TSan] fix a bunch of warnings reported by pedantic gcc 2012-09-13 11:54:41 +00:00
tsan_mutex.h [TSan] fix a bunch of warnings reported by pedantic gcc 2012-09-13 11:54:41 +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 Quick fix data/bss detection in TSan. 2012-09-27 13:20:40 +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: output tid's in reports 2012-10-02 11:52:05 +00:00
tsan_report.h tsan: output tid's in reports 2012-10-02 11:52:05 +00:00
tsan_rtl.cc tsan: wait for pending reports before exit 2012-10-02 12:07:16 +00:00
tsan_rtl.h tsan: output tid's in reports 2012-10-02 11:52:05 +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 tsan: output tid's in reports 2012-10-02 11:52:05 +00:00
tsan_rtl_thread.cc tsan: output tid's in reports 2012-10-02 11:52:05 +00:00
tsan_stat.cc Revert the lockf() support. 2012-09-11 11:59:05 +00:00
tsan_stat.h [TSan] fix a bunch of warnings reported by pedantic gcc 2012-09-13 11:54:41 +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] fix a bunch of warnings reported by pedantic gcc 2012-09-13 11:54:41 +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] fix a bunch of warnings reported by pedantic gcc 2012-09-13 11:54:41 +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