• Home
Name Date Size #Lines LOC

..--

scripts/03-May-2024-958759

tests/03-May-2024-4,5563,557

Android.mkD03-May-20249.9 KiB321262

CMakeLists.txtD03-May-20246.2 KiB183160

Makefile.mkD03-May-20241.1 KiB3014

README.txtD03-May-2024914 2720

asan.syms.extraD03-May-202428 43

asan_activation.ccD03-May-20244.4 KiB14399

asan_activation.hD03-May-2024708 247

asan_activation_flags.incD03-May-20241.3 KiB3631

asan_allocator.ccD03-May-202431.1 KiB910695

asan_allocator.hD03-May-20245.6 KiB180140

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-20249.7 KiB257206

asan_fake_stack.hD03-May-20246.8 KiB17681

asan_flags.ccD03-May-20245.6 KiB179125

asan_flags.hD03-May-20241.4 KiB5018

asan_flags.incD03-May-20246.8 KiB146141

asan_globals.ccD03-May-202410.2 KiB298232

asan_init_version.hD03-May-20241.4 KiB357

asan_interceptors.ccD03-May-202429.7 KiB842682

asan_interceptors.hD03-May-20243.6 KiB12187

asan_interface_internal.hD03-May-20248.2 KiB201131

asan_internal.hD03-May-20244.5 KiB14790

asan_linux.ccD03-May-20244.9 KiB180126

asan_lock.hD03-May-20240 10

asan_mac.ccD03-May-202415.2 KiB425290

asan_malloc_linux.ccD03-May-20245.7 KiB187132

asan_malloc_mac.ccD03-May-202410.8 KiB363264

asan_malloc_win.ccD03-May-20245.4 KiB179121

asan_mapping.hD03-May-202410.2 KiB289151

asan_new_delete.ccD03-May-20244 KiB13392

asan_poisoning.ccD03-May-202415 KiB428322

asan_poisoning.hD03-May-20243.5 KiB9456

asan_posix.ccD03-May-20243.7 KiB11466

asan_preinit.ccD03-May-20241,001 266

asan_report.ccD03-May-202439.4 KiB1,108936

asan_report.hD03-May-20244 KiB9667

asan_rtl.ccD03-May-202421.1 KiB579447

asan_stack.ccD03-May-20241.1 KiB4119

asan_stack.hD03-May-20245.1 KiB11977

asan_stats.ccD03-May-20245.9 KiB180133

asan_stats.hD03-May-20242.2 KiB7943

asan_suppressions.ccD03-May-20243.8 KiB11178

asan_suppressions.hD03-May-20241,003 3112

asan_thread.ccD03-May-202412 KiB359264

asan_thread.hD03-May-20245.5 KiB188126

asan_win.ccD03-May-20249.1 KiB267161

asan_win_dll_thunk.ccD03-May-202418.1 KiB413284

asan_win_dynamic_runtime_thunk.ccD03-May-20244.1 KiB9830

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:
26http://code.google.com/p/address-sanitizer/wiki/HowToBuild
27