llvm-project/compiler-rt/lib/tsan/rtl
Kostya Serebryany ec68429c5d [sanitizer] simplify DeadlockDetectorTLS
llvm-svn: 201505
2014-02-17 08:47:48 +00:00
..
Makefile.mk [ASan] Delete the code related to static runtime on OS X. 2013-02-05 15:57:12 +00:00
Makefile.old [tsan] fix the old tsan Makefile to build the asm files with includes 2013-12-05 11:24:06 +00:00
tsan.syms.extra [TSan] Add ValgrindSlowdown to the list of exported symbols 2013-10-04 13:12:05 +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: better diagnostics if thread finishes with ignores enabled 2013-11-27 11:30:28 +00:00
tsan_fd.cc tsan: filter out more bogus fd values 2013-11-25 14:53:29 +00:00
tsan_fd.h tsan: detect races on fd passed to epoll_ctl 2013-01-09 17:31:27 +00:00
tsan_flags.cc [Sanitizer] Teach external symbolizer to work with addr2line if llvm-symbolizer is unavailable. Allow this mode in TSan. 2014-02-12 08:29:42 +00:00
tsan_flags.h tsan: do not deadlock on fork 2014-01-24 12:33:35 +00:00
tsan_ignoreset.cc tsan: better diagnostics if thread finishes with ignores enabled 2013-11-27 11:30:28 +00:00
tsan_ignoreset.h tsan: better diagnostics if thread finishes with ignores enabled 2013-11-27 11:30:28 +00:00
tsan_interceptors.cc [TSan] Fix mismatched mangled names in operator delete interceptors 2014-02-10 08:34:46 +00:00
tsan_interface.cc Define SANITIZER_INTERFACE_ATTRIBUTE on Windows and fix all the places where SANITIZER_INTERFACE_ATTRIBUTE or SANITIZER_ATTRIBUTE_WEAK are used 2013-08-13 11:42:45 +00:00
tsan_interface.h Define SANITIZER_INTERFACE_ATTRIBUTE on Windows and fix all the places where SANITIZER_INTERFACE_ATTRIBUTE or SANITIZER_ATTRIBUTE_WEAK are used 2013-08-13 11:42:45 +00:00
tsan_interface_ann.cc tsan: remove in_rtl counter 2013-12-24 12:55:56 +00:00
tsan_interface_ann.h Define SANITIZER_INTERFACE_ATTRIBUTE on Windows and fix all the places where SANITIZER_INTERFACE_ATTRIBUTE or SANITIZER_ATTRIBUTE_WEAK are used 2013-08-13 11:42:45 +00:00
tsan_interface_atomic.cc tsan: relax checking of errno spoiling in signal handlers 2014-01-28 09:49:48 +00:00
tsan_interface_inl.h tsan: better reporting for races on vptr 2013-03-21 15:37:39 +00:00
tsan_interface_java.cc tsan: remove in_rtl counter 2013-12-24 12:55:56 +00:00
tsan_interface_java.h tsan: ignore interceptors coming from specified libraries 2013-10-03 13:37:17 +00:00
tsan_md5.cc [Sanitizer] update style checker script and fix namespace style warnings 2013-01-30 07:45:58 +00:00
tsan_mman.cc tsan: remove in_rtl counter 2013-12-24 12:55:56 +00:00
tsan_mman.h tsan: intercept setjmp/longjmp 2013-03-25 10:10:44 +00:00
tsan_mutex.cc [tsan] rudimentary support for deadlock detector in tsan (nothing really works yet except for a single tiny test). Also rename tsan's DeadlockDetector to InternalDeadlockDetector 2014-02-14 12:20:42 +00:00
tsan_mutex.h [tsan] rudimentary support for deadlock detector in tsan (nothing really works yet except for a single tiny test). Also rename tsan's DeadlockDetector to InternalDeadlockDetector 2014-02-14 12:20:42 +00:00
tsan_mutexset.cc tsan: add mutexsets to reports 2012-12-06 12:16:15 +00:00
tsan_mutexset.h tsan: remove in_rtl counter 2013-12-24 12:55:56 +00:00
tsan_platform.h tsan: ensure proper alignment of mmaps on windows 2014-02-05 11:37:20 +00:00
tsan_platform_linux.cc [tsan] reduce the size of stack frame in MapRodata to please gcc 4.8.2 2014-01-14 10:25:42 +00:00
tsan_platform_mac.cc tsan: fix darwin Go build 2014-02-04 11:29:09 +00:00
tsan_platform_windows.cc tsan: fix windows build 2014-02-04 17:29:44 +00:00
tsan_report.cc [TSan] Extend test for reporting globals with races on them 2013-10-16 09:56:17 +00:00
tsan_report.h tsan: better reporting of thread leaks 2013-03-21 16:55:17 +00:00
tsan_rtl.cc [sanitizer] Use mmap to zero-fill large shadow regions. 2014-02-14 11:41:26 +00:00
tsan_rtl.h [sanitizer] simplify DeadlockDetectorTLS 2014-02-17 08:47:48 +00:00
tsan_rtl_amd64.S Revert r196490 and fix include paths in makefile-based build 2013-12-05 10:40:11 +00:00
tsan_rtl_mutex.cc [sanitizer] simplify DeadlockDetectorTLS 2014-02-17 08:47:48 +00:00
tsan_rtl_report.cc [sanitizer] Use system unwinder in signal handlers on Android. 2014-02-11 13:38:57 +00:00
tsan_rtl_thread.cc tsan: do not deadlock on fork 2014-01-24 12:33:35 +00:00
tsan_stat.cc tsan: remove interceptor stats 2014-01-28 11:02:04 +00:00
tsan_stat.h tsan: remove interceptor stats 2014-01-28 11:02:04 +00:00
tsan_suppressions.cc tsan: ignore interceptors coming from specified libraries 2013-10-03 13:37:17 +00:00
tsan_suppressions.h tsan: ignore interceptors coming from specified libraries 2013-10-03 13:37:17 +00:00
tsan_symbolize.cc [TSan] Kill tsan_symbolize_addr2line_linux.cc 2014-02-12 08:37:09 +00:00
tsan_symbolize.h [TSan] Kill tsan_symbolize_addr2line_linux.cc 2014-02-12 08:37:09 +00:00
tsan_sync.cc [tsan] rudimentary support for deadlock detector in tsan (nothing really works yet except for a single tiny test). Also rename tsan's DeadlockDetector to InternalDeadlockDetector 2014-02-14 12:20:42 +00:00
tsan_sync.h [tsan] rudimentary support for deadlock detector in tsan (nothing really works yet except for a single tiny test). Also rename tsan's DeadlockDetector to InternalDeadlockDetector 2014-02-14 12:20:42 +00:00
tsan_trace.h tsan: move shadow stack from thread descriptors to fixed addresses 2013-10-16 15:35:12 +00:00
tsan_update_shadow_word_inl.h tsan: use memory access size for Go after all 2013-06-06 14:31:15 +00:00
tsan_vector.h [tsan] one more explicit memset in tsan rtl (to please gcc 4.8.2) 2014-01-14 15:00:10 +00:00