llvm-project/compiler-rt/lib/asan
Dan Albert c8bdae1074 Check multilib dir for asan_device_setup.
Reviewers: eugenis

Subscribers: llvm-commits

Differential Revision: http://reviews.llvm.org/D15247

llvm-svn: 254789
2015-12-04 22:51:03 +00:00
..
scripts Check multilib dir for asan_device_setup. 2015-12-04 22:51:03 +00:00
tests [ASan] Fix the links to bugs and wikipages. 2015-12-04 17:37:40 +00:00
.clang-format Tell clang-format that (most) sanitizers are written using Google style guide. 2015-11-19 22:11:10 +00:00
CMakeLists.txt
Makefile.mk
README.txt [ASan] Fix the links to bugs and wikipages. 2015-12-04 17:37:40 +00:00
asan.syms.extra
asan_activation.cc [asan] Remove the use of system properties on Android. 2015-12-04 22:28:27 +00:00
asan_activation.h
asan_activation_flags.inc
asan_allocator.cc [compiler-rt] Apply modernize-use-nullptr fixes in sanitizers 2015-10-01 00:22:21 +00:00
asan_allocator.h
asan_blacklist.txt
asan_debugging.cc [compiler-rt] Apply modernize-use-nullptr fixes in sanitizers 2015-10-01 00:22:21 +00:00
asan_fake_stack.cc [compiler-rt] Fix build (again) by wrapping lines to 80 chars (NFC) 2015-10-01 02:15:40 +00:00
asan_fake_stack.h Revert "Apply modernize-use-default to compiler-rt." 2015-10-30 18:52:31 +00:00
asan_flags.cc [asan] Remove the use of system properties on Android. 2015-12-04 22:28:27 +00:00
asan_flags.h
asan_flags.inc [ASan] Change the links in asa_flags.inc to point to GitHub. 2015-12-04 17:26:40 +00:00
asan_globals.cc [compiler-rt] Apply modernize-use-nullptr fixes in sanitizers 2015-10-01 00:22:21 +00:00
asan_init_version.h
asan_interceptors.cc [ASan] Fix the links to bugs and wikipages. 2015-12-04 17:37:40 +00:00
asan_interceptors.h
asan_interface_internal.h [ASan] Enable optional ASan recovery. 2015-11-11 11:59:38 +00:00
asan_internal.h [tsan] Use re-exec method to enable interceptors on older versions of OS X 2015-12-03 10:39:43 +00:00
asan_linux.cc [tsan] Use re-exec method to enable interceptors on older versions of OS X 2015-12-03 10:39:43 +00:00
asan_lock.h
asan_mac.cc [ASan] Fix the links to bugs and wikipages. 2015-12-04 17:37:40 +00:00
asan_malloc_linux.cc [asan] Correctly release memory allocated during early startup. 2015-12-01 09:22:41 +00:00
asan_malloc_mac.cc [ASan] Retire mac_ignore_invalid_free, remove some dead code. 2015-12-04 16:17:55 +00:00
asan_malloc_win.cc
asan_mapping.h [ASan] Fix the links to bugs and wikipages. 2015-12-04 17:37:40 +00:00
asan_new_delete.cc [ASan] Fix the links to bugs and wikipages. 2015-12-04 17:37:40 +00:00
asan_poisoning.cc [ASan] Fix the links to bugs and wikipages. 2015-12-04 17:37:40 +00:00
asan_poisoning.h
asan_posix.cc
asan_preinit.cc
asan_report.cc [ASan] Retire mac_ignore_invalid_free, remove some dead code. 2015-12-04 16:17:55 +00:00
asan_report.h [ASan] Retire mac_ignore_invalid_free, remove some dead code. 2015-12-04 16:17:55 +00:00
asan_rtl.cc [ASan] Fix the links to bugs and wikipages. 2015-12-04 17:37:40 +00:00
asan_stack.cc
asan_stack.h [compiler-rt] Apply modernize-use-nullptr fixes in sanitizers 2015-10-01 00:22:21 +00:00
asan_stats.cc
asan_stats.h
asan_suppressions.cc
asan_suppressions.h
asan_thread.cc [compiler-rt] Apply modernize-use-nullptr fixes in sanitizers 2015-10-01 00:22:21 +00:00
asan_thread.h [compiler-rt] Apply modernize-use-nullptr fixes in sanitizers 2015-10-01 00:22:21 +00:00
asan_win.cc [tsan] Use re-exec method to enable interceptors on older versions of OS X 2015-12-03 10:39:43 +00:00
asan_win_dll_thunk.cc [ASan] Fix the links to bugs and wikipages. 2015-12-04 17:37:40 +00:00
asan_win_dynamic_runtime_thunk.cc Sanitizer: define WIN32_LEAN_AND_MEAN 2015-10-29 20:36:55 +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