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 a39f5f8 [asan] fix __sanitizer_cov_with_check to get the correct call [...] new 86251c4 [XRay][compiler-rt] XRay Flight Data Recorder Mode
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/xray/xray_log_interface.h | 51 +++ include/xray/xray_records.h | 6 + lib/xray/CMakeLists.txt | 37 +-- lib/xray/tests/CMakeLists.txt | 10 +- lib/xray/tests/unit/CMakeLists.txt | 2 + lib/xray/tests/unit/buffer_queue_test.cc | 40 ++- lib/xray/tests/unit/fdr_logging_test.cc | 127 ++++++++ lib/xray/xray_buffer_queue.cc | 31 +- lib/xray/xray_buffer_queue.h | 36 +- lib/xray/xray_fdr_logging.cc | 542 +++++++++++++++++++++++++++++++ lib/xray/xray_fdr_logging.h | 95 ++++++ lib/xray/xray_flags.inc | 2 + lib/xray/xray_inmemory_log.cc | 66 +--- lib/xray/xray_log_interface.cc | 57 ++++ lib/xray/xray_utils.cc | 165 ++++++++++ lib/xray/xray_utils.h | 44 +++ lib/xray/xray_x86_64.h | 2 +- test/xray/CMakeLists.txt | 6 - test/xray/Unit/lit.site.cfg.in | 4 + 19 files changed, 1203 insertions(+), 120 deletions(-) create mode 100644 include/xray/xray_log_interface.h create mode 100644 lib/xray/tests/unit/fdr_logging_test.cc create mode 100644 lib/xray/xray_fdr_logging.cc create mode 100644 lib/xray/xray_fdr_logging.h create mode 100644 lib/xray/xray_log_interface.cc create mode 100644 lib/xray/xray_utils.cc create mode 100644 lib/xray/xray_utils.h