Home | History | Annotate | only in /src/sys/external/bsd/compiler_rt/dist/lib/asan
Up to higher level directory
NameDateSize
.clang-format08-Jan-201964
asan.syms.extra08-Jan-201939
asan_activation.cc08-Jan-20194.5K
asan_activation.h08-Jan-2019708
asan_activation_flags.inc08-Jan-20191.4K
asan_allocator.cc08-Jan-201938.9K
asan_allocator.h08-Jan-20198.7K
asan_blacklist.txt08-Jan-2019513
asan_debugging.cc08-Jan-20194.7K
asan_descriptions.cc08-Jan-201916.4K
asan_descriptions.h08-Jan-20197.6K
asan_errors.cc08-Jan-201921.3K
asan_errors.h08-Jan-201914.1K
asan_fake_stack.cc08-Jan-201910.8K
asan_fake_stack.h08-Jan-20196.9K
asan_flags.cc08-Jan-20197.3K
asan_flags.h08-Jan-20191.4K
asan_flags.inc08-Jan-20197.7K
asan_fuchsia.cc08-Jan-20198.1K
asan_globals.cc08-Jan-201917K
asan_globals_win.cc08-Jan-20192K
asan_init_version.h08-Jan-20191.9K
asan_interceptors.cc08-Jan-201922.6K
asan_interceptors.h08-Jan-20194.4K
asan_interceptors_memintrinsics.cc08-Jan-20191.5K
asan_interceptors_memintrinsics.h08-Jan-20198.1K
asan_interface.inc08-Jan-20197.1K
asan_interface_internal.h08-Jan-201910.7K
asan_internal.h08-Jan-20195.5K
asan_linux.cc08-Jan-20197.4K
asan_lock.h08-Jan-20190
asan_mac.cc08-Jan-201911.6K
asan_malloc_linux.cc08-Jan-20199.5K
asan_malloc_local.h08-Jan-20191.3K
asan_malloc_mac.cc08-Jan-20193.2K
asan_malloc_win.cc08-Jan-20198.2K
asan_mapping.h08-Jan-201914.5K
asan_mapping_myriad.h08-Jan-20192.1K
asan_memory_profile.cc08-Jan-20194.1K
asan_new_delete.cc08-Jan-20198.1K
asan_poisoning.cc08-Jan-201916K
asan_poisoning.h08-Jan-20193.8K
asan_posix.cc14-Aug-20192.9K
asan_preinit.cc08-Jan-20191,001
asan_premap_shadow.cc08-Jan-20192.7K
asan_premap_shadow.h08-Jan-2019885
asan_report.cc08-Jan-201919.7K
asan_report.h08-Jan-20194.4K
asan_rtems.cc08-Jan-20198.8K
asan_rtl.cc08-Jan-201922.1K
asan_scariness_score.h08-Jan-20192.2K
asan_shadow_setup.cc08-Jan-20196.2K
asan_stack.cc08-Jan-20191.1K
asan_stack.h08-Jan-20194.3K
asan_stats.cc08-Jan-20195.6K
asan_stats.h08-Jan-20192K
asan_suppressions.cc08-Jan-20193.6K
asan_suppressions.h08-Jan-20191,003
asan_thread.cc08-Jan-201918K
asan_thread.h08-Jan-20195.7K
asan_win.cc08-Jan-201912.2K
asan_win_dll_thunk.cc08-Jan-20195.1K
asan_win_dynamic_runtime_thunk.cc08-Jan-20195.4K
asan_win_weak_interception.cc08-Jan-20191.1K
README.txt08-Jan-2019924
scripts/09-Nov-2022
tests/09-Nov-2022
weak_symbols.txt08-Jan-2019268

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