Home | History | Annotate | only in /external/compiler-rt/lib/asan
Up to higher level directory
NameDateSize
.clang-format06-Dec-201721
Android.bp06-Dec-20177K
asan.syms.extra06-Dec-201728
asan_activation.cc06-Dec-20174.3K
asan_activation.h06-Dec-2017708
asan_activation_flags.inc06-Dec-20171.3K
asan_allocator.cc06-Dec-201731.7K
asan_allocator.h06-Dec-20176K
asan_blacklist.txt06-Dec-2017513
asan_debugging.cc06-Dec-20174.1K
asan_fake_stack.cc06-Dec-201710.7K
asan_fake_stack.h06-Dec-20176.9K
asan_flags.cc06-Dec-20175.7K
asan_flags.h06-Dec-20171.4K
asan_flags.inc06-Dec-20176.6K
asan_globals.cc06-Dec-201713.6K
asan_init_version.h06-Dec-20171.6K
asan_interceptors.cc06-Dec-201729.2K
asan_interceptors.h06-Dec-20174K
asan_interface_internal.h06-Dec-20179.7K
asan_internal.h06-Dec-20175.3K
asan_linux.cc06-Dec-20175K
asan_lock.h06-Dec-20170
asan_mac.cc06-Dec-201710.1K
asan_malloc_linux.cc06-Dec-20176.5K
asan_malloc_mac.cc06-Dec-20172.3K
asan_malloc_win.cc06-Dec-20177.6K
asan_mapping.h06-Dec-201712.2K
asan_memory_profile.cc06-Dec-20173K
asan_new_delete.cc06-Dec-20175K
asan_poisoning.cc06-Dec-201715.4K
asan_poisoning.h06-Dec-20173.5K
asan_posix.cc06-Dec-20174.2K
asan_preinit.cc06-Dec-20171,001
asan_report.cc06-Dec-201745K
asan_report.h06-Dec-20173.8K
asan_rtl.cc06-Dec-201724.2K
asan_scariness_score.h06-Dec-20172.1K
asan_stack.cc06-Dec-20171.1K
asan_stack.h06-Dec-20175.2K
asan_stats.cc06-Dec-20175.6K
asan_stats.h06-Dec-20172K
asan_suppressions.cc06-Dec-20173.8K
asan_suppressions.h06-Dec-20171,003
asan_thread.cc06-Dec-201715.1K
asan_thread.h06-Dec-20175.9K
asan_win.cc06-Dec-201711.9K
asan_win_dll_thunk.cc06-Dec-201719K
asan_win_dynamic_runtime_thunk.cc06-Dec-20174.2K
asanwrapper.cc06-Dec-20172.6K
CMakeLists.txt06-Dec-20177.3K
README.txt06-Dec-2017924
scripts/06-Dec-2017
tests/06-Dec-2017

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