Home | History | Annotate | only in /external/compiler-rt/lib/asan
Up to higher level directory
NameDateSize
.clang-format22-Oct-202021
Android.bp22-Oct-20204.9K
asan.syms.extra22-Oct-202028
asan_activation.cc22-Oct-20204.3K
asan_activation.h22-Oct-2020708
asan_activation_flags.inc22-Oct-20201.3K
asan_allocator.cc22-Oct-202031.7K
asan_allocator.h22-Oct-20206K
asan_blacklist.txt22-Oct-2020513
asan_debugging.cc22-Oct-20204.1K
asan_fake_stack.cc22-Oct-202010.7K
asan_fake_stack.h22-Oct-20206.9K
asan_flags.cc22-Oct-20205.7K
asan_flags.h22-Oct-20201.4K
asan_flags.inc22-Oct-20206.6K
asan_globals.cc22-Oct-202013.6K
asan_init_version.h22-Oct-20201.6K
asan_interceptors.cc22-Oct-202029.2K
asan_interceptors.h22-Oct-20204K
asan_interface_internal.h22-Oct-20209.7K
asan_internal.h22-Oct-20205.3K
asan_linux.cc22-Oct-20205K
asan_lock.h22-Oct-20200
asan_mac.cc22-Oct-202010.1K
asan_malloc_linux.cc22-Oct-20206.5K
asan_malloc_mac.cc22-Oct-20202.3K
asan_malloc_win.cc22-Oct-20207.6K
asan_mapping.h22-Oct-202012.2K
asan_memory_profile.cc22-Oct-20203K
asan_new_delete.cc22-Oct-20205K
asan_poisoning.cc22-Oct-202015.4K
asan_poisoning.h22-Oct-20203.5K
asan_posix.cc22-Oct-20204.2K
asan_preinit.cc22-Oct-20201,001
asan_report.cc22-Oct-202045K
asan_report.h22-Oct-20203.8K
asan_rtl.cc22-Oct-202024.2K
asan_scariness_score.h22-Oct-20202.1K
asan_stack.cc22-Oct-20201.1K
asan_stack.h22-Oct-20205.2K
asan_stats.cc22-Oct-20205.6K
asan_stats.h22-Oct-20202K
asan_suppressions.cc22-Oct-20203.8K
asan_suppressions.h22-Oct-20201,003
asan_thread.cc22-Oct-202015.1K
asan_thread.h22-Oct-20205.9K
asan_win.cc22-Oct-202011.9K
asan_win_dll_thunk.cc22-Oct-202019K
asan_win_dynamic_runtime_thunk.cc22-Oct-20204.2K
asanwrapper.cc22-Oct-20202.6K
CMakeLists.txt22-Oct-20207.3K
README.txt22-Oct-2020924
scripts/22-Oct-2020
tests/22-Oct-2020

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