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 21d4d4695 Revert "[TSan] Attempt to fix iOS on-device test" new 3ef3d4286 [sanitizers][windows] Rtl-Heap Interception and tests - Ad [...]
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/asan/asan_flags.inc | 2 + lib/asan/asan_malloc_win.cc | 309 +++++++++++++++++++-- lib/asan/asan_win.cc | 75 +++-- test/asan/TestCases/Windows/dll_host.cc | 4 + test/asan/TestCases/Windows/dll_unload.cc | 51 ++++ test/asan/TestCases/Windows/heapalloc.cc | 13 + .../TestCases/Windows/heapalloc_dll_double_free.cc | 40 +++ .../Windows/heapalloc_dll_unload_realloc_uaf.cc | 40 +++ .../asan/TestCases/Windows/heapalloc_doublefree.cc | 16 ++ .../TestCases/Windows/heapalloc_flags_fallback.cc | 20 ++ test/asan/TestCases/Windows/heapalloc_huge.cc | 9 + .../TestCases/Windows/heapalloc_rtl_transfer.cc | 98 +++++++ test/asan/TestCases/Windows/heapalloc_sanity.cc | 13 + test/asan/TestCases/Windows/heapalloc_transfer.cc | 28 ++ test/asan/TestCases/Windows/heapalloc_uaf.cc | 13 + ...realloc_zero_size.cc => heapalloc_zero_size.cc} | 8 +- test/asan/TestCases/Windows/heaprealloc.cc | 23 ++ .../TestCases/Windows/heaprealloc_alloc_zero.cc | 58 ++++ .../TestCases/Windows/heaprealloc_zero_size.cc | 4 +- .../Windows/queue_user_work_item_report.cc | 6 +- test/asan/TestCases/Windows/rtlallocateheap.cc | 30 ++ .../rtlallocateheap_dll_unload_double_free.cc | 72 +++++ .../Windows/rtlallocateheap_dll_unload_realloc.cc | 76 +++++ .../Windows/rtlallocateheap_flags_fallback.cc | 45 +++ .../asan/TestCases/Windows/rtlallocateheap_zero.cc | 68 +++++ 25 files changed, 1063 insertions(+), 58 deletions(-) create mode 100644 test/asan/TestCases/Windows/dll_unload.cc create mode 100644 test/asan/TestCases/Windows/heapalloc.cc create mode 100644 test/asan/TestCases/Windows/heapalloc_dll_double_free.cc create mode 100644 test/asan/TestCases/Windows/heapalloc_dll_unload_realloc_uaf.cc create mode 100644 test/asan/TestCases/Windows/heapalloc_doublefree.cc create mode 100644 test/asan/TestCases/Windows/heapalloc_flags_fallback.cc create mode 100644 test/asan/TestCases/Windows/heapalloc_huge.cc create mode 100644 test/asan/TestCases/Windows/heapalloc_rtl_transfer.cc create mode 100644 test/asan/TestCases/Windows/heapalloc_sanity.cc create mode 100644 test/asan/TestCases/Windows/heapalloc_transfer.cc create mode 100644 test/asan/TestCases/Windows/heapalloc_uaf.cc copy test/asan/TestCases/Windows/{heaprealloc_zero_size.cc => heapalloc_zero_size. [...] create mode 100644 test/asan/TestCases/Windows/heaprealloc.cc create mode 100644 test/asan/TestCases/Windows/heaprealloc_alloc_zero.cc create mode 100644 test/asan/TestCases/Windows/rtlallocateheap.cc create mode 100644 test/asan/TestCases/Windows/rtlallocateheap_dll_unload_double_free.cc create mode 100644 test/asan/TestCases/Windows/rtlallocateheap_dll_unload_realloc.cc create mode 100644 test/asan/TestCases/Windows/rtlallocateheap_flags_fallback.cc create mode 100644 test/asan/TestCases/Windows/rtlallocateheap_zero.cc