libsanitizer: add hwasan.
authorMartin Liska <mliska@suse.cz>
Fri, 13 Nov 2020 16:06:48 +0000 (17:06 +0100)
committerMatthew Malcomson <matthew.malcomson@arm.com>
Wed, 25 Nov 2020 16:35:30 +0000 (16:35 +0000)
commit1ee3d1ef105c5181fbf298b8ddb638f8e3cbaaca
tree388861983e62f323e196589cbf51973e40a7f928
parentb13dacdfb315675803982ad5a3098f7b55e6357a
libsanitizer: add hwasan.

Introduce the libhwasan library from LLVM sources.
34 files changed:
libsanitizer/MERGE
libsanitizer/README.gcc
libsanitizer/hwasan/hwasan.cpp [new file with mode: 0644]
libsanitizer/hwasan/hwasan.h [new file with mode: 0644]
libsanitizer/hwasan/hwasan_allocator.cpp [new file with mode: 0644]
libsanitizer/hwasan/hwasan_allocator.h [new file with mode: 0644]
libsanitizer/hwasan/hwasan_checks.h [new file with mode: 0644]
libsanitizer/hwasan/hwasan_dynamic_shadow.cpp [new file with mode: 0644]
libsanitizer/hwasan/hwasan_dynamic_shadow.h [new file with mode: 0644]
libsanitizer/hwasan/hwasan_exceptions.cpp [new file with mode: 0644]
libsanitizer/hwasan/hwasan_flags.h [new file with mode: 0644]
libsanitizer/hwasan/hwasan_flags.inc [new file with mode: 0644]
libsanitizer/hwasan/hwasan_globals.cpp [new file with mode: 0644]
libsanitizer/hwasan/hwasan_globals.h [new file with mode: 0644]
libsanitizer/hwasan/hwasan_interceptors.cpp [new file with mode: 0644]
libsanitizer/hwasan/hwasan_interceptors_vfork.S [new file with mode: 0644]
libsanitizer/hwasan/hwasan_interface_internal.h [new file with mode: 0644]
libsanitizer/hwasan/hwasan_linux.cpp [new file with mode: 0644]
libsanitizer/hwasan/hwasan_malloc_bisect.h [new file with mode: 0644]
libsanitizer/hwasan/hwasan_mapping.h [new file with mode: 0644]
libsanitizer/hwasan/hwasan_memintrinsics.cpp [new file with mode: 0644]
libsanitizer/hwasan/hwasan_new_delete.cpp [new file with mode: 0644]
libsanitizer/hwasan/hwasan_poisoning.cpp [new file with mode: 0644]
libsanitizer/hwasan/hwasan_poisoning.h [new file with mode: 0644]
libsanitizer/hwasan/hwasan_report.cpp [new file with mode: 0644]
libsanitizer/hwasan/hwasan_report.h [new file with mode: 0644]
libsanitizer/hwasan/hwasan_setjmp.S [new file with mode: 0644]
libsanitizer/hwasan/hwasan_tag_mismatch_aarch64.S [new file with mode: 0644]
libsanitizer/hwasan/hwasan_thread.cpp [new file with mode: 0644]
libsanitizer/hwasan/hwasan_thread.h [new file with mode: 0644]
libsanitizer/hwasan/hwasan_thread_list.cpp [new file with mode: 0644]
libsanitizer/hwasan/hwasan_thread_list.h [new file with mode: 0644]
libsanitizer/hwasan/hwasan_type_test.cpp [new file with mode: 0644]
libsanitizer/merge.sh