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 e266b158a Revert "[hwasan] Record and display stack history in stack-ba [...] new 17003a129 [hwasan] Record and display stack history in stack-based reports.
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: lib/hwasan/CMakeLists.txt | 6 +- lib/hwasan/hwasan.cc | 14 +- lib/hwasan/hwasan.h | 6 + lib/hwasan/hwasan_dynamic_shadow.cc | 13 +- lib/hwasan/hwasan_flags.inc | 4 + lib/hwasan/hwasan_linux.cc | 70 +++++--- lib/hwasan/hwasan_report.cc | 63 ++++++- lib/hwasan/hwasan_thread.cc | 116 ++++-------- lib/hwasan/hwasan_thread.h | 42 ++--- lib/hwasan/hwasan_thread_list.cc | 15 ++ lib/hwasan/hwasan_thread_list.h | 200 +++++++++++++++++++++ lib/sanitizer_common/sanitizer_ring_buffer.h | 81 ++++++++- .../tests/sanitizer_ring_buffer_test.cc | 22 +++ test/hwasan/TestCases/deep-recursion.c | 73 ++++++++ test/hwasan/TestCases/rich-stack.c | 66 +++++++ test/hwasan/TestCases/stack-history-length.c | 36 ++++ 16 files changed, 669 insertions(+), 158 deletions(-) create mode 100644 lib/hwasan/hwasan_thread_list.cc create mode 100644 lib/hwasan/hwasan_thread_list.h create mode 100644 test/hwasan/TestCases/deep-recursion.c create mode 100644 test/hwasan/TestCases/rich-stack.c create mode 100644 test/hwasan/TestCases/stack-history-length.c