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 6c9f8f338 build: clean up some unnecessary cached variables new f43b0036d [XRay][compiler-rt] FDRLogWriter Abstraction new 137ed7f44 [XRay] Detect terminfo library new 2fa618b34 [compiler-rt][TSan] Add TSan runtime support for Go on linux- [...] new 01c0f7abd [UBSan] Fix typo in CMake conditional that checked if the arc [...] new dacd48db0 [sanitizer][fuchsia] Fix VMAR leak new 24e356b7c Revert "[XRay][compiler-rt] FDRLogWriter Abstraction" and 1 more. new 9b7ccb138 [builtins] Add __emutls_unregister_key function new 2e91b98ca [XRay][compiler-rt] FDRLogWriter Abstraction new 58a112ea7 [winasan] Reduce hotpatch prefix check to 8 bytes new 3d7a4b4d1 [sanitizer] Make __sanitizer::CheckFailed not public new a5f872209 [winasan] Unpoison the stack in NtTerminateThread new 04419a7eb Fix test after r342652 new 00b02ed51 [profile] Fix tests in compiler-rt for patch in gcov (https:/ [...]
The 13 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/Modules/AddCompilerRT.cmake | 10 ++ cmake/Modules/CompilerRTUtils.cmake | 6 +- cmake/config-ix.cmake | 13 ++ lib/asan/asan_win.cc | 12 +- lib/builtins/emutls.c | 13 ++ lib/interception/interception_win.cc | 8 +- lib/sanitizer_common/sanitizer_fuchsia.cc | 22 ++-- lib/sanitizer_common/sanitizer_internal_defs.h | 2 - lib/tsan/CMakeLists.txt | 9 ++ lib/tsan/go/buildgo.sh | 13 +- lib/tsan/rtl/tsan_platform.h | 44 +++++++ lib/tsan/rtl/tsan_platform_linux.cc | 8 ++ lib/xray/tests/CMakeLists.txt | 26 +++- lib/xray/tests/unit/CMakeLists.txt | 4 + lib/xray/tests/unit/fdr_log_writer_test.cc | 92 +++++++++++++++ lib/xray/xray_fdr_log_records.h | 5 + lib/xray/xray_fdr_log_writer.h | 119 +++++++++++++++++++ lib/xray/xray_fdr_logging.cc | 131 ++++++++------------- test/asan/TestCases/Windows/dll_host.cc | 1 + .../Inputs/instrprof-gcov-exceptions.cpp.gcov | 2 +- test/profile/Inputs/instrprof-shared-main.c.gcov | 4 +- .../instrprof-gcov-multiple-bbs-single-line.test | 2 - test/ubsan/CMakeLists.txt | 2 +- 23 files changed, 436 insertions(+), 112 deletions(-) create mode 100644 lib/xray/tests/unit/fdr_log_writer_test.cc create mode 100644 lib/xray/xray_fdr_log_writer.h