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 ba5a00573 Fix test/msan/iconv.cc on NetBSD new 32e20e441 Hardware-assisted AddressSanitizer (compiler-rt)
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: cmake/config-ix.cmake | 14 +- include/CMakeLists.txt | 1 + include/sanitizer/hwasan_interface.h | 33 ++ lib/{asan => hwasan}/.clang-format | 0 lib/hwasan/CMakeLists.txt | 145 +++++++ lib/hwasan/hwasan.cc | 301 +++++++++++++ lib/hwasan/hwasan.h | 176 ++++++++ lib/hwasan/hwasan.syms.extra | 2 + lib/hwasan/hwasan_allocator.cc | 330 ++++++++++++++ lib/hwasan/hwasan_allocator.h | 55 +++ .../hwasan_blacklist.txt} | 2 +- lib/{msan/msan_flags.h => hwasan/hwasan_flags.h} | 20 +- lib/hwasan/hwasan_flags.inc | 29 ++ lib/hwasan/hwasan_interceptors.cc | 483 +++++++++++++++++++++ lib/hwasan/hwasan_interface_internal.h | 105 +++++ lib/hwasan/hwasan_linux.cc | 194 +++++++++ .../hwasan_new_delete.cc} | 16 +- lib/hwasan/hwasan_poisoning.cc | 36 ++ .../hwasan_poisoning.h} | 19 +- lib/hwasan/hwasan_report.cc | 133 ++++++ .../msan_thread.cc => hwasan/hwasan_thread.cc} | 51 +-- lib/{msan/msan_thread.h => hwasan/hwasan_thread.h} | 40 +- lib/sanitizer_common/sanitizer_internal_defs.h | 1 + test/hwasan/CMakeLists.txt | 29 ++ test/hwasan/TestCases/halt-on-error.cc | 29 ++ test/hwasan/TestCases/use-after-free.cc | 29 ++ test/hwasan/lit.cfg | 32 ++ test/{dfsan => hwasan}/lit.site.cfg.in | 8 +- 28 files changed, 2238 insertions(+), 75 deletions(-) create mode 100644 include/sanitizer/hwasan_interface.h copy lib/{asan => hwasan}/.clang-format (100%) create mode 100644 lib/hwasan/CMakeLists.txt create mode 100644 lib/hwasan/hwasan.cc create mode 100644 lib/hwasan/hwasan.h create mode 100644 lib/hwasan/hwasan.syms.extra create mode 100644 lib/hwasan/hwasan_allocator.cc create mode 100644 lib/hwasan/hwasan_allocator.h copy lib/{msan/msan_blacklist.txt => hwasan/hwasan_blacklist.txt} (73%) copy lib/{msan/msan_flags.h => hwasan/hwasan_flags.h} (52%) create mode 100644 lib/hwasan/hwasan_flags.inc create mode 100644 lib/hwasan/hwasan_interceptors.cc create mode 100644 lib/hwasan/hwasan_interface_internal.h create mode 100644 lib/hwasan/hwasan_linux.cc copy lib/{msan/msan_new_delete.cc => hwasan/hwasan_new_delete.cc} (82%) create mode 100644 lib/hwasan/hwasan_poisoning.cc copy lib/{msan/tests/msan_test_config.h => hwasan/hwasan_poisoning.h} (50%) create mode 100644 lib/hwasan/hwasan_report.cc copy lib/{msan/msan_thread.cc => hwasan/hwasan_thread.cc} (50%) copy lib/{msan/msan_thread.h => hwasan/hwasan_thread.h} (57%) create mode 100644 test/hwasan/CMakeLists.txt create mode 100644 test/hwasan/TestCases/halt-on-error.cc create mode 100644 test/hwasan/TestCases/use-after-free.cc create mode 100644 test/hwasan/lit.cfg copy test/{dfsan => hwasan}/lit.site.cfg.in (53%)