Home | History | Annotate | only in /external/compiler-rt/lib/asan
Up to higher level directory
NameDateSize
.clang-format06-Dec-201621
Android.mk06-Dec-20169.9K
asan.syms.extra06-Dec-201628
asan_activation.cc06-Dec-20164.3K
asan_activation.h06-Dec-2016708
asan_activation_flags.inc06-Dec-20161.3K
asan_allocator.cc06-Dec-201631K
asan_allocator.h06-Dec-20165.9K
asan_android_stub.cc06-Dec-2016134
asan_blacklist.txt06-Dec-2016513
asan_debugging.cc06-Dec-20164.1K
asan_fake_stack.cc06-Dec-201610.7K
asan_fake_stack.h06-Dec-20166.8K
asan_flags.cc06-Dec-20165.3K
asan_flags.h06-Dec-20161.4K
asan_flags.inc06-Dec-20166.4K
asan_globals.cc06-Dec-201610K
asan_init_version.h06-Dec-20161.4K
asan_interceptors.cc06-Dec-201629.4K
asan_interceptors.h06-Dec-20164K
asan_interface_internal.h06-Dec-20169.3K
asan_internal.h06-Dec-20164.4K
asan_linux.cc06-Dec-20164.9K
asan_lock.h06-Dec-20160
asan_mac.cc06-Dec-20169.2K
asan_malloc_linux.cc06-Dec-20166.2K
asan_malloc_mac.cc06-Dec-20162.3K
asan_malloc_win.cc06-Dec-20165.4K
asan_mapping.h06-Dec-201611.3K
asan_new_delete.cc06-Dec-20164K
asan_poisoning.cc06-Dec-201615.4K
asan_poisoning.h06-Dec-20163.5K
asan_posix.cc06-Dec-20163.8K
asan_preinit.cc06-Dec-20161,001
asan_report.cc06-Dec-201641.9K
asan_report.h06-Dec-20163.7K
asan_rtl.cc06-Dec-201623.7K
asan_stack.cc06-Dec-20161.1K
asan_stack.h06-Dec-20165.1K
asan_stats.cc06-Dec-20165.6K
asan_stats.h06-Dec-20162K
asan_suppressions.cc06-Dec-20163.8K
asan_suppressions.h06-Dec-20161,003
asan_thread.cc06-Dec-201612K
asan_thread.h06-Dec-20165.5K
asan_win.cc06-Dec-20169K
asan_win_dll_thunk.cc06-Dec-201618.5K
asan_win_dynamic_runtime_thunk.cc06-Dec-20164.2K
asanwrapper.cc06-Dec-20162.3K
CMakeLists.txt06-Dec-20167.3K
Makefile.mk06-Dec-20161.1K
README.txt06-Dec-2016924
scripts/06-Dec-2016
tests/06-Dec-2016

README.txt

      1 AddressSanitizer RT
      2 ================================
      3 This directory contains sources of the AddressSanitizer (ASan) runtime library.
      4 
      5 Directory structure:
      6 README.txt       : This file.
      7 Makefile.mk      : File for make-based build.
      8 CMakeLists.txt   : File for cmake-based build.
      9 asan_*.{cc,h}    : Sources of the asan runtime library.
     10 scripts/*        : Helper scripts.
     11 tests/*          : ASan unit tests.
     12 
     13 Also ASan runtime needs the following libraries:
     14 lib/interception/      : Machinery used to intercept function calls.
     15 lib/sanitizer_common/  : Code shared between various sanitizers.
     16 
     17 ASan runtime currently also embeds part of LeakSanitizer runtime for
     18 leak detection (lib/lsan/lsan_common.{cc,h}).
     19 
     20 ASan runtime can only be built by CMake. You can run ASan tests
     21 from the root of your CMake build tree:
     22 
     23 make check-asan
     24 
     25 For more instructions see:
     26 https://github.com/google/sanitizers/wiki/AddressSanitizerHowToBuild
     27