Home | History | Annotate | only in /external/compiler-rt/lib/asan
Up to higher level directory
NameDateSize
.clang-format21-Aug-201821
Android.bp21-Aug-20186.9K
asan.syms.extra21-Aug-201828
asan_activation.cc21-Aug-20184.3K
asan_activation.h21-Aug-2018708
asan_activation_flags.inc21-Aug-20181.3K
asan_allocator.cc21-Aug-201831.7K
asan_allocator.h21-Aug-20186K
asan_blacklist.txt21-Aug-2018513
asan_debugging.cc21-Aug-20184.1K
asan_fake_stack.cc21-Aug-201810.7K
asan_fake_stack.h21-Aug-20186.9K
asan_flags.cc21-Aug-20185.7K
asan_flags.h21-Aug-20181.4K
asan_flags.inc21-Aug-20186.6K
asan_globals.cc21-Aug-201813.6K
asan_init_version.h21-Aug-20181.6K
asan_interceptors.cc21-Aug-201829.2K
asan_interceptors.h21-Aug-20184K
asan_interface_internal.h21-Aug-20189.7K
asan_internal.h21-Aug-20185.3K
asan_linux.cc21-Aug-20185K
asan_lock.h21-Aug-20180
asan_mac.cc21-Aug-201810.1K
asan_malloc_linux.cc21-Aug-20186.5K
asan_malloc_mac.cc21-Aug-20182.3K
asan_malloc_win.cc21-Aug-20187.6K
asan_mapping.h21-Aug-201812.2K
asan_memory_profile.cc21-Aug-20183K
asan_new_delete.cc21-Aug-20185K
asan_poisoning.cc21-Aug-201815.4K
asan_poisoning.h21-Aug-20183.5K
asan_posix.cc21-Aug-20184.2K
asan_preinit.cc21-Aug-20181,001
asan_report.cc21-Aug-201845K
asan_report.h21-Aug-20183.8K
asan_rtl.cc21-Aug-201824.2K
asan_scariness_score.h21-Aug-20182.1K
asan_stack.cc21-Aug-20181.1K
asan_stack.h21-Aug-20185.2K
asan_stats.cc21-Aug-20185.6K
asan_stats.h21-Aug-20182K
asan_suppressions.cc21-Aug-20183.8K
asan_suppressions.h21-Aug-20181,003
asan_thread.cc21-Aug-201815.1K
asan_thread.h21-Aug-20185.9K
asan_win.cc21-Aug-201811.9K
asan_win_dll_thunk.cc21-Aug-201819K
asan_win_dynamic_runtime_thunk.cc21-Aug-20184.2K
asanwrapper.cc21-Aug-20182.6K
CMakeLists.txt21-Aug-20187.3K
README.txt21-Aug-2018924
scripts/21-Aug-2018
tests/21-Aug-2018

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