This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository compiler-rt.
from 7218fa5 Fix sanitizer tests with LLVM_TOOL_LLD_BUILD=OFF. new 96ccf18 tsan: add new mutex annotations
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: include/CMakeLists.txt | 1 + include/sanitizer/tsan_interface.h | 121 +++++++++++++++++++++ .../sanitizer_common_interceptors.inc | 14 ++- lib/tsan/go/tsan_go.cc | 8 +- lib/tsan/rtl/tsan.syms.extra | 10 ++ lib/tsan/rtl/tsan_flags.cc | 4 - lib/tsan/rtl/tsan_flags.h | 1 - lib/tsan/rtl/tsan_interceptors.cc | 50 +++++---- lib/tsan/rtl/tsan_interface_ann.cc | 112 +++++++++++++++++-- lib/tsan/rtl/tsan_interface_atomic.cc | 8 +- lib/tsan/rtl/tsan_interface_java.cc | 14 +-- lib/tsan/rtl/tsan_rtl.cc | 12 +- lib/tsan/rtl/tsan_rtl.h | 23 ++-- lib/tsan/rtl/tsan_rtl_mutex.cc | 118 +++++++++++++------- lib/tsan/rtl/tsan_stat.cc | 10 ++ lib/tsan/rtl/tsan_stat.h | 10 ++ lib/tsan/rtl/tsan_sync.cc | 5 +- lib/tsan/rtl/tsan_sync.h | 48 +++++++- test/tsan/custom_mutex.h | 91 ++++++++++++++++ test/tsan/custom_mutex0.cc | 31 ++++++ test/tsan/custom_mutex1.cc | 39 +++++++ test/tsan/custom_mutex2.cc | 34 ++++++ 22 files changed, 651 insertions(+), 113 deletions(-) create mode 100644 include/sanitizer/tsan_interface.h create mode 100644 test/tsan/custom_mutex.h create mode 100644 test/tsan/custom_mutex0.cc create mode 100644 test/tsan/custom_mutex1.cc create mode 100644 test/tsan/custom_mutex2.cc