llvm-project/compiler-rt/lib/tsan/rtl
Dmitry Vyukov 92d917d91c tsan: prevent recursive signal handlers
llvm-svn: 157625
2012-05-29 15:51:27 +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_allocator.cc [tsan] First commit of ThreadSanitizer (TSan) run-time library. 2012-05-10 13:48:04 +00:00
tsan_allocator.h [tsan] First commit of ThreadSanitizer (TSan) run-time library. 2012-05-10 13:48:04 +00:00
tsan_atomic.h [tsan] First commit of ThreadSanitizer (TSan) run-time library. 2012-05-10 13:48:04 +00:00
tsan_clock.cc tsan: detect accesses to freed memory 2012-05-17 14:17:51 +00:00
tsan_clock.h tsan: add shadow memory flush + fix few bugs 2012-05-22 18:07:45 +00:00
tsan_compiler.h [tsan] First commit of ThreadSanitizer (TSan) run-time library. 2012-05-10 13:48:04 +00:00
tsan_defs.h tsan: do not call into libc in symbolizer and in other code (this causes recursion and crashes) 2012-05-25 11:15:04 +00:00
tsan_flags.cc tsan: add a flag to control RunningOnValgrind() return value 2012-05-24 09:24:45 +00:00
tsan_flags.h tsan: add a flag to control RunningOnValgrind() return value 2012-05-24 09:24:45 +00:00
tsan_interceptors.cc tsan: prevent recursive signal handlers 2012-05-29 15:51:27 +00:00
tsan_interface.cc [tsan] First commit of ThreadSanitizer (TSan) run-time library. 2012-05-10 13:48:04 +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: add a flag to control RunningOnValgrind() return value 2012-05-24 09:24:45 +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: add more atomics to public interface (fetch_or/and/xor + 1-,2-byte versions) 2012-05-14 15:33:00 +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] First commit of ThreadSanitizer (TSan) run-time library. 2012-05-10 13:48:04 +00:00
tsan_mman.cc tsan: add more checks for OOM conditions 2012-05-21 06:46:27 +00:00
tsan_mman.h tsan: reduce per-thread memory usage 2012-05-22 14:34:43 +00:00
tsan_mutex.cc tsan: simple memory profiler 2012-05-22 11:33:03 +00:00
tsan_mutex.h [tsan] First commit of ThreadSanitizer (TSan) run-time library. 2012-05-10 13:48:04 +00:00
tsan_placement_new.h [tsan] First commit of ThreadSanitizer (TSan) run-time library. 2012-05-10 13:48:04 +00:00
tsan_platform.h tsan: do not call into libc in symbolizer and in other code (this causes recursion and crashes) 2012-05-25 11:15:04 +00:00
tsan_platform_linux.cc tsan: increase /proc/self/maps max size (1M is far not enough) 2012-05-28 09:24:01 +00:00
tsan_printf.cc [tsan] First commit of ThreadSanitizer (TSan) run-time library. 2012-05-10 13:48:04 +00:00
tsan_report.cc tsan: detect accesses to freed memory 2012-05-17 14:17:51 +00:00
tsan_report.h tsan: detect accesses to freed memory 2012-05-17 14:17:51 +00:00
tsan_rtl.cc [asan,tsan] Add a new directory compiler-rt/lib/sanitizer_common 2012-05-29 12:18:18 +00:00
tsan_rtl.h tsan: fix compilation with newest clang 2012-05-24 14:50:33 +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] First commit of ThreadSanitizer (TSan) run-time library. 2012-05-10 13:48:04 +00:00
tsan_rtl_report.cc asan/tsan: rename interceptors from __xsan_xxx to __interceptor_xxx 2012-05-28 07:47:35 +00:00
tsan_rtl_thread.cc tsan: fix race during pthread_join/detach 2012-05-28 17:32:50 +00:00
tsan_stat.cc [tsan] First commit of ThreadSanitizer (TSan) run-time library. 2012-05-10 13:48:04 +00:00
tsan_stat.h tsan: better, more realistic handling of signals 2012-05-21 08:26:51 +00:00
tsan_suppressions.cc tsan: remove shutdown code 2012-05-17 15:00:27 +00:00
tsan_suppressions.h tsan: remove shutdown code 2012-05-17 15:00:27 +00:00
tsan_symbolize.h [tsan] First commit of ThreadSanitizer (TSan) run-time library. 2012-05-10 13:48:04 +00:00
tsan_symbolize_addr2line_linux.cc tsan: do not call into libc in symbolizer and in other code (this causes recursion and crashes) 2012-05-25 11:15:04 +00:00
tsan_sync.cc tsan: simple memory profiler 2012-05-22 11:33:03 +00:00
tsan_sync.h tsan: simple memory profiler 2012-05-22 11:33:03 +00:00
tsan_trace.h tsan: reduce per-thread memory usage 2012-05-22 14:34:43 +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] First commit of ThreadSanitizer (TSan) run-time library. 2012-05-10 13:48:04 +00:00