• Home
Name Date Size #Lines LOC

..--

scripts/03-May-2024-1,057844

tests/03-May-2024-4,6513,638

.clang-formatD03-May-202421 21

CMakeLists.txtD03-May-20247.3 KiB233204

README.txtD03-May-2024924 2720

asan.syms.extraD03-May-202428 43

asan_activation.ccD03-May-20244.3 KiB14198

asan_activation.hD03-May-2024708 247

asan_activation_flags.incD03-May-20241.3 KiB3631

asan_allocator.ccD03-May-202431.7 KiB925703

asan_allocator.hD03-May-20246 KiB188146

asan_blacklist.txtD03-May-2024513 1411

asan_debugging.ccD03-May-20244.1 KiB142106

asan_fake_stack.ccD03-May-202410.7 KiB284228

asan_fake_stack.hD03-May-20246.9 KiB17782

asan_flags.ccD03-May-20245.7 KiB180129

asan_flags.hD03-May-20241.4 KiB5018

asan_flags.incD03-May-20246.6 KiB142137

asan_globals.ccD03-May-202413.6 KiB384279

asan_init_version.hD03-May-20241.6 KiB396

asan_interceptors.ccD03-May-202429.2 KiB807650

asan_interceptors.hD03-May-20244 KiB12591

asan_interface_internal.hD03-May-20249.7 KiB229151

asan_internal.hD03-May-20245.3 KiB15997

asan_linux.ccD03-May-20245 KiB177127

asan_lock.hD03-May-20240 10

asan_mac.ccD03-May-202410.1 KiB297201

asan_malloc_linux.ccD03-May-20246.5 KiB210151

asan_malloc_mac.ccD03-May-20242.3 KiB6243

asan_malloc_win.ccD03-May-20247.6 KiB252180

asan_mapping.hD03-May-202412.2 KiB337169

asan_memory_profile.ccD03-May-20243 KiB10174

asan_new_delete.ccD03-May-20245 KiB149105

asan_poisoning.ccD03-May-202415.4 KiB435328

asan_poisoning.hD03-May-20243.5 KiB9456

asan_posix.ccD03-May-20244.2 KiB12775

asan_preinit.ccD03-May-20241,001 266

asan_report.ccD03-May-202445 KiB1,2741,069

asan_report.hD03-May-20243.8 KiB8859

asan_rtl.ccD03-May-202424.2 KiB649501

asan_scariness_score.hD03-May-20242.1 KiB6834

asan_stack.ccD03-May-20241.1 KiB4119

asan_stack.hD03-May-20245.2 KiB12380

asan_stats.ccD03-May-20245.6 KiB175128

asan_stats.hD03-May-20242 KiB7338

asan_suppressions.ccD03-May-20243.8 KiB11279

asan_suppressions.hD03-May-20241,003 3112

asan_thread.ccD03-May-202415.1 KiB459345

asan_thread.hD03-May-20245.9 KiB206138

asan_win.ccD03-May-202411.9 KiB332198

asan_win_dll_thunk.ccD03-May-202419 KiB438307

asan_win_dynamic_runtime_thunk.ccD03-May-20244.2 KiB10133

asanwrapper.ccD03-May-20242.6 KiB7437

README.txt

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