hanchenye-llvm-project/compiler-rt/lib/asan
Evgeniy Stepanov 366ea7115d [asan] Remove malloc_context_size=0 from asan_device_setup.
This line was added in
  r243679 - [asan] Support arm64 devices in asan_device_setup
without any good reason.

llvm-svn: 329962
2018-04-12 22:06:18 +00:00
..
scripts [asan] Remove malloc_context_size=0 from asan_device_setup. 2018-04-12 22:06:18 +00:00
tests [sanitizer] Split coverage into separate RT in sanitizer_common 2018-03-22 15:04:31 +00:00
.clang-format
CMakeLists.txt [sanitizer] Split coverage into separate RT in sanitizer_common 2018-03-22 15:04:31 +00:00
README.txt
asan.syms.extra
asan_activation.cc [asan] Ensure that the minimum redzone is at least SHADOW_GRANULARITY 2017-11-16 17:03:25 +00:00
asan_activation.h
asan_activation_flags.inc
asan_allocator.cc [ASan] Report proper ASan error on allocator failures instead of CHECK(0)-ing 2018-03-28 18:22:40 +00:00
asan_allocator.h [Sanitizers] ASan: detect new/delete calls with mismatched alignment. 2017-10-25 17:21:37 +00:00
asan_blacklist.txt
asan_debugging.cc
asan_descriptions.cc [asan] Add vfork to the list of reasons for stack errors. 2018-03-28 00:45:20 +00:00
asan_descriptions.h [ASan] Enhance libsanitizer support for invalid-pointer-pair. 2017-12-04 18:00:24 +00:00
asan_errors.cc [ASan] Report proper ASan error on allocator failures instead of CHECK(0)-ing 2018-03-28 18:22:40 +00:00
asan_errors.h [ASan] NFC: make use of a new ErrorBase ctor 2018-04-09 16:00:10 +00:00
asan_fake_stack.cc [asan] Avoid assert failure for non-default shadow scale 2017-11-16 22:02:58 +00:00
asan_fake_stack.h
asan_flags.cc [scudo] Allow options to be defined at compile time 2018-02-08 16:29:48 +00:00
asan_flags.h
asan_flags.inc Make detect_invalid_pointer_pairs option to be tristate. 2018-02-01 19:52:56 +00:00
asan_fuchsia.cc (NFC) Rename GetMax{,User}VirtualAddress. 2017-11-07 23:51:22 +00:00
asan_globals.cc [asan] Unpoison global metadata on dlclose. 2017-09-28 13:38:58 +00:00
asan_globals_win.cc
asan_init_version.h [asan] Use dynamic shadow on 32-bit Android, try 2. 2017-11-20 17:41:57 +00:00
asan_interceptors.cc Revert "[asan] Replace vfork with fork." 2018-03-27 00:31:16 +00:00
asan_interceptors.h Revert "[asan] Replace vfork with fork." 2018-03-27 00:31:16 +00:00
asan_interceptors_memintrinsics.cc [asan] Interceptors for Fuchsia 2017-08-02 07:59:30 +00:00
asan_interceptors_memintrinsics.h [asan] Fix bug where suppression of overlapping accesses was ignored on 2018-03-08 21:50:22 +00:00
asan_interface.inc [asan] Fix dead stripping of globals on Linux (compiler-rt). 2017-04-27 20:27:33 +00:00
asan_interface_internal.h [asan] Fix dead stripping of globals on Linux (compiler-rt). 2017-04-27 20:27:33 +00:00
asan_internal.h [asan] Refactor thread creation bookkeeping 2017-08-09 00:38:57 +00:00
asan_linux.cc [asan] Fix filename size on linux platforms. 2018-02-07 18:27:25 +00:00
asan_lock.h
asan_mac.cc [asan] Be more careful and verbose when allocating dynamic shadow memory 2018-02-26 18:33:21 +00:00
asan_malloc_linux.cc [Sanitizers] Basic sanitizer Solaris support (PR 33274) 2017-12-14 20:14:29 +00:00
asan_malloc_mac.cc [Sanitizers] Add more standard compliant posix_memalign implementation for LSan. 2018-03-12 21:59:06 +00:00
asan_malloc_win.cc
asan_mapping.h [PowerPC][asan] Update asan to handle changed memory layouts in newer kernels 2017-12-07 22:53:49 +00:00
asan_memory_profile.cc [Sanitizers] Add more details to ASan allocator stats report. 2017-10-13 18:38:10 +00:00
asan_new_delete.cc [ASan] Report proper ASan error on allocator failures instead of CHECK(0)-ing 2018-03-28 18:22:40 +00:00
asan_poisoning.cc [asan] poison_heap=0 should not disable __asan_handle_no_return. 2018-03-12 21:46:55 +00:00
asan_poisoning.h [asan] poison_heap=0 should not disable __asan_handle_no_return. 2018-03-12 21:46:55 +00:00
asan_posix.cc [sanitizer] Remove unused <signal.h> which conflicts with asan declarations 2017-11-10 04:12:35 +00:00
asan_preinit.cc
asan_premap_shadow.cc [asan] Use dynamic shadow on 32-bit Android, try 2. 2017-11-20 17:41:57 +00:00
asan_premap_shadow.h [asan] Use dynamic shadow on 32-bit Android, try 2. 2017-11-20 17:41:57 +00:00
asan_report.cc [ASan] Report proper ASan error on allocator failures instead of CHECK(0)-ing 2018-03-28 18:22:40 +00:00
asan_report.h [ASan] Report proper ASan error on allocator failures instead of CHECK(0)-ing 2018-03-28 18:22:40 +00:00
asan_rtl.cc [sanitizers] Add init function to set alignment of low level allocator 2017-11-21 01:01:32 +00:00
asan_scariness_score.h [asan] Add const into ScarinessScoreBase::Print 2017-09-14 03:06:20 +00:00
asan_shadow_setup.cc [asan] Use dynamic shadow on 32-bit Android, try 2. 2017-11-20 17:41:57 +00:00
asan_stack.cc
asan_stack.h [sanitizers] Rename GetStackTraceWithPcBpAndContext 2017-11-09 07:53:06 +00:00
asan_stats.cc
asan_stats.h
asan_suppressions.cc
asan_suppressions.h
asan_thread.cc [ASan] Enhance libsanitizer support for invalid-pointer-pair. 2017-12-04 18:00:24 +00:00
asan_thread.h [ASan] Enhance libsanitizer support for invalid-pointer-pair. 2017-12-04 18:00:24 +00:00
asan_win.cc Fix-up for r326106: FindAvailableMemoryRange needs a nullptr as its 5th argument. 2018-02-26 18:44:43 +00:00
asan_win_dll_thunk.cc Fix WinASan after moving wcslen interceptor to sanitizer_common 2017-06-29 17:15:53 +00:00
asan_win_dynamic_runtime_thunk.cc
asan_win_weak_interception.cc
weak_symbols.txt Add lsan interceptors for libdispatch functions on darwin 2017-06-19 19:21:31 +00:00

README.txt

AddressSanitizer RT
================================
This directory contains sources of the AddressSanitizer (ASan) runtime library.

Directory structure:
README.txt       : This file.
Makefile.mk      : File for make-based build.
CMakeLists.txt   : File for cmake-based build.
asan_*.{cc,h}    : Sources of the asan runtime library.
scripts/*        : Helper scripts.
tests/*          : ASan unit tests.

Also ASan runtime needs the following libraries:
lib/interception/      : Machinery used to intercept function calls.
lib/sanitizer_common/  : Code shared between various sanitizers.

ASan runtime currently also embeds part of LeakSanitizer runtime for
leak detection (lib/lsan/lsan_common.{cc,h}).

ASan runtime can only be built by CMake. You can run ASan tests
from the root of your CMake build tree:

make check-asan

For more instructions see:
https://github.com/google/sanitizers/wiki/AddressSanitizerHowToBuild