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 e791cfa36 The error message for mismatched value sites is very cryptic. [...] new 429c2dfb4 [scudo][standalone] Introduce the Secondary allocator
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/scudo/standalone/CMakeLists.txt | 3 + lib/scudo/standalone/common.h | 14 ++- lib/scudo/standalone/fuchsia.cc | 95 ++++++---------- lib/scudo/standalone/{crc32_hw.cc => fuchsia.h} | 26 +++-- lib/scudo/standalone/linux.cc | 7 +- lib/scudo/standalone/linux.h | 3 + lib/scudo/standalone/list.h | 4 +- lib/scudo/standalone/secondary.cc | 136 +++++++++++++++++++++++ lib/scudo/standalone/secondary.h | 97 +++++++++++++++++ lib/scudo/standalone/tests/CMakeLists.txt | 1 + lib/scudo/standalone/tests/bytemap_test.cc | 2 +- lib/scudo/standalone/tests/map_test.cc | 32 +++--- lib/scudo/standalone/tests/mutex_test.cc | 2 +- lib/scudo/standalone/tests/secondary_test.cc | 137 ++++++++++++++++++++++++ 14 files changed, 464 insertions(+), 95 deletions(-) copy lib/scudo/standalone/{crc32_hw.cc => fuchsia.h} (50%) create mode 100644 lib/scudo/standalone/secondary.cc create mode 100644 lib/scudo/standalone/secondary.h create mode 100644 lib/scudo/standalone/tests/secondary_test.cc