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 f2f6037 add -f to rm so the test passes the first time it's run the f [...] new a8e7154 [sanitizer] Initial implementation of a Hardened 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: cmake/config-ix.cmake | 14 + lib/CMakeLists.txt | 4 + lib/scudo/CMakeLists.txt | 32 ++ lib/scudo/scudo_allocator.cpp | 635 ++++++++++++++++++++++++++++++ lib/scudo/scudo_allocator.h | 63 +++ lib/scudo/scudo_flags.cpp | 81 ++++ lib/scudo/scudo_flags.h | 33 ++ lib/scudo/scudo_flags.inc | 35 ++ lib/scudo/scudo_interceptors.cpp | 75 ++++ lib/scudo/scudo_new_delete.cpp | 69 ++++ lib/scudo/scudo_termination.cpp | 41 ++ lib/scudo/scudo_utils.cpp | 133 +++++++ lib/scudo/scudo_utils.h | 59 +++ test/CMakeLists.txt | 3 + test/scudo/CMakeLists.txt | 28 ++ test/scudo/alignment.cpp | 25 ++ test/scudo/double-free.cpp | 49 +++ test/scudo/lit.cfg | 39 ++ test/{safestack => scudo}/lit.site.cfg.in | 2 +- test/scudo/malloc.cpp | 27 ++ test/scudo/memalign.cpp | 42 ++ test/scudo/mismatch.cpp | 41 ++ test/scudo/overflow.cpp | 38 ++ test/scudo/preinit.cpp | 38 ++ test/scudo/quarantine.cpp | 43 ++ test/scudo/realloc.cpp | 69 ++++ test/scudo/sized-delete.cpp | 40 ++ test/scudo/sizes.cpp | 61 +++ 28 files changed, 1818 insertions(+), 1 deletion(-) create mode 100644 lib/scudo/CMakeLists.txt create mode 100644 lib/scudo/scudo_allocator.cpp create mode 100644 lib/scudo/scudo_allocator.h create mode 100644 lib/scudo/scudo_flags.cpp create mode 100644 lib/scudo/scudo_flags.h create mode 100644 lib/scudo/scudo_flags.inc create mode 100644 lib/scudo/scudo_interceptors.cpp create mode 100644 lib/scudo/scudo_new_delete.cpp create mode 100644 lib/scudo/scudo_termination.cpp create mode 100644 lib/scudo/scudo_utils.cpp create mode 100644 lib/scudo/scudo_utils.h create mode 100644 test/scudo/CMakeLists.txt create mode 100644 test/scudo/alignment.cpp create mode 100644 test/scudo/double-free.cpp create mode 100644 test/scudo/lit.cfg copy test/{safestack => scudo}/lit.site.cfg.in (76%) create mode 100644 test/scudo/malloc.cpp create mode 100644 test/scudo/memalign.cpp create mode 100644 test/scudo/mismatch.cpp create mode 100644 test/scudo/overflow.cpp create mode 100644 test/scudo/preinit.cpp create mode 100644 test/scudo/quarantine.cpp create mode 100644 test/scudo/realloc.cpp create mode 100644 test/scudo/sized-delete.cpp create mode 100644 test/scudo/sizes.cpp