• Home
Name Date Size #Lines LOC

..--

scripts/03-May-2024-1,056847

tests/03-May-2024-4,5803,572

.clang-formatD03-May-202421 21

Android.mkD03-May-20249.9 KiB328267

CMakeLists.txtD03-May-20247.3 KiB231203

Makefile.mkD03-May-20241.1 KiB3014

README.txtD03-May-2024924 2720

asan.syms.extraD03-May-202428 43

asan_activation.ccD03-May-20244.3 KiB14097

asan_activation.hD03-May-2024708 247

asan_activation_flags.incD03-May-20241.3 KiB3631

asan_allocator.ccD03-May-202431 KiB909694

asan_allocator.hD03-May-20245.9 KiB185143

asan_android_stub.ccD03-May-2024134 53

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.8 KiB17681

asan_flags.ccD03-May-20245.3 KiB172121

asan_flags.hD03-May-20241.4 KiB5018

asan_flags.incD03-May-20246.4 KiB138133

asan_globals.ccD03-May-202410 KiB293227

asan_init_version.hD03-May-20241.4 KiB356

asan_interceptors.ccD03-May-202429.4 KiB823666

asan_interceptors.hD03-May-20244 KiB12793

asan_interface_internal.hD03-May-20249.3 KiB220146

asan_internal.hD03-May-20244.4 KiB14286

asan_linux.ccD03-May-20244.9 KiB172123

asan_lock.hD03-May-20240 10

asan_mac.ccD03-May-20249.2 KiB264176

asan_malloc_linux.ccD03-May-20246.2 KiB204147

asan_malloc_mac.ccD03-May-20242.3 KiB6243

asan_malloc_win.ccD03-May-20245.4 KiB179121

asan_mapping.hD03-May-202411.3 KiB313159

asan_new_delete.ccD03-May-20244 KiB13392

asan_poisoning.ccD03-May-202415.4 KiB435328

asan_poisoning.hD03-May-20243.5 KiB9456

asan_posix.ccD03-May-20243.8 KiB11870

asan_preinit.ccD03-May-20241,001 266

asan_report.ccD03-May-202441.9 KiB1,189987

asan_report.hD03-May-20243.7 KiB8859

asan_rtl.ccD03-May-202423.7 KiB631488

asan_stack.ccD03-May-20241.1 KiB4119

asan_stack.hD03-May-20245.1 KiB12077

asan_stats.ccD03-May-20245.6 KiB175128

asan_stats.hD03-May-20242 KiB7338

asan_suppressions.ccD03-May-20243.8 KiB11178

asan_suppressions.hD03-May-20241,003 3112

asan_thread.ccD03-May-202412 KiB358263

asan_thread.hD03-May-20245.5 KiB186123

asan_win.ccD03-May-20249 KiB255155

asan_win_dll_thunk.ccD03-May-202418.5 KiB427296

asan_win_dynamic_runtime_thunk.ccD03-May-20244.2 KiB10032

asanwrapper.ccD03-May-20242.3 KiB8671

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