llvm-project/compiler-rt/lib/tsan/rtl
Dmitry Vyukov 805006b0ab tsan: switch to new memory_order constants (ABI compatible)
llvm-svn: 167614
2012-11-09 14:11:51 +00:00
..
CMakeLists.txt [TSan] finally remove TsanPrintf in favor of Printf from sanitizer_common 2012-11-02 12:17:51 +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: more precise handling of finalizers 2012-11-07 15:08:20 +00:00
tsan_clock.h tsan: more precise handling of finalizers 2012-11-07 15:08:20 +00:00
tsan_defs.h tsan: use GORACE env for options for Go 2012-11-08 11:32:40 +00:00
tsan_flags.cc tsan: add flag to suppress all reports (useful for benchmarking) 2012-11-07 16:14:12 +00:00
tsan_flags.h tsan: add flag to suppress all reports (useful for benchmarking) 2012-11-07 16:14:12 +00:00
tsan_interceptors.cc tsan: do not sleep at exit if there are no other threads 2012-11-07 16:41:57 +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] finally remove TsanPrintf in favor of Printf from sanitizer_common 2012-11-02 12:17:51 +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: switch to new memory_order constants (ABI compatible) 2012-11-09 14:11:51 +00:00
tsan_interface_atomic.h tsan: switch to new memory_order constants (ABI compatible) 2012-11-09 14:11:51 +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: cache pc's that cause suppressions (this way we do not need to symbolize the reports) 2012-10-05 15:51:32 +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] finally remove TsanPrintf in favor of Printf from sanitizer_common 2012-11-02 12:17:51 +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: add shadow mapping for windows 2012-11-06 13:26:57 +00:00
tsan_platform_linux.cc tsan: use GORACE env for options for Go 2012-11-08 11:32:40 +00:00
tsan_platform_mac.cc tsan: use GORACE env for options for Go 2012-11-08 11:32:40 +00:00
tsan_platform_windows.cc tsan: use GORACE env for options for Go 2012-11-08 11:32:40 +00:00
tsan_report.cc [TSan] finally remove TsanPrintf in favor of Printf from sanitizer_common 2012-11-02 12:17:51 +00:00
tsan_report.h tsan: fix mac build 2012-10-02 12:58:14 +00:00
tsan_rtl.cc tsan: do not sleep at exit if there are no other threads 2012-11-07 16:41:57 +00:00
tsan_rtl.h tsan: do not sleep at exit if there are no other threads 2012-11-07 16:41:57 +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: more precise handling of finalizers 2012-11-07 15:08:20 +00:00
tsan_rtl_report.cc tsan: add flag to suppress all reports (useful for benchmarking) 2012-11-07 16:14:12 +00:00
tsan_rtl_thread.cc tsan: do not sleep at exit if there are no other threads 2012-11-07 16:41:57 +00:00
tsan_stat.cc [TSan] finally remove TsanPrintf in favor of Printf from sanitizer_common 2012-11-02 12:17:51 +00:00
tsan_stat.h tsan: add atomic_fetch_sub() and atomic_signal_fence() functions 2012-10-04 10:08:23 +00:00
tsan_suppressions.cc [TSan] finally remove TsanPrintf in favor of Printf from sanitizer_common 2012-11-02 12:17:51 +00:00
tsan_suppressions.h tsan: cache pc's that cause suppressions (this way we do not need to symbolize the reports) 2012-10-05 15:51:32 +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 [TSan] finally remove TsanPrintf in favor of Printf from sanitizer_common 2012-11-02 12:17:51 +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