• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

scripts/22-Nov-2023-958759

tests/22-Nov-2023-4,5563,557

Android.mkD22-Nov-20239.9 KiB321262

CMakeLists.txtD22-Nov-20236.2 KiB183160

Makefile.mkD22-Nov-20231.1 KiB3014

README.txtD22-Nov-2023914 2720

asan.syms.extraD22-Nov-202328 43

asan_activation.ccD22-Nov-20234.4 KiB14399

asan_activation.hD22-Nov-2023708 247

asan_activation_flags.incD22-Nov-20231.3 KiB3631

asan_allocator.ccD22-Nov-202331.1 KiB910695

asan_allocator.hD22-Nov-20235.6 KiB180140

asan_android_stub.ccD22-Nov-2023134 53

asan_blacklist.txtD22-Nov-2023513 1411

asan_debugging.ccD22-Nov-20234.1 KiB142106

asan_fake_stack.ccD22-Nov-20239.7 KiB257206

asan_fake_stack.hD22-Nov-20236.8 KiB17681

asan_flags.ccD22-Nov-20235.6 KiB179125

asan_flags.hD22-Nov-20231.4 KiB5018

asan_flags.incD22-Nov-20236.8 KiB146141

asan_globals.ccD22-Nov-202310.2 KiB298232

asan_init_version.hD22-Nov-20231.4 KiB357

asan_interceptors.ccD22-Nov-202329.7 KiB842682

asan_interceptors.hD22-Nov-20233.6 KiB12187

asan_interface_internal.hD22-Nov-20238.2 KiB201131

asan_internal.hD22-Nov-20234.5 KiB14790

asan_linux.ccD22-Nov-20234.9 KiB180126

asan_lock.hD22-Nov-20230 10

asan_mac.ccD22-Nov-202315.2 KiB425290

asan_malloc_linux.ccD22-Nov-20235.7 KiB187132

asan_malloc_mac.ccD22-Nov-202310.8 KiB363264

asan_malloc_win.ccD22-Nov-20235.4 KiB179121

asan_mapping.hD22-Nov-202310.2 KiB289151

asan_new_delete.ccD22-Nov-20234 KiB13392

asan_poisoning.ccD22-Nov-202315 KiB428322

asan_poisoning.hD22-Nov-20233.5 KiB9456

asan_posix.ccD22-Nov-20233.7 KiB11466

asan_preinit.ccD22-Nov-20231,001 266

asan_report.ccD22-Nov-202339.4 KiB1,108936

asan_report.hD22-Nov-20234 KiB9667

asan_rtl.ccD22-Nov-202321.1 KiB579447

asan_stack.ccD22-Nov-20231.1 KiB4119

asan_stack.hD22-Nov-20235.1 KiB11977

asan_stats.ccD22-Nov-20235.9 KiB180133

asan_stats.hD22-Nov-20232.2 KiB7943

asan_suppressions.ccD22-Nov-20233.8 KiB11178

asan_suppressions.hD22-Nov-20231,003 3112

asan_thread.ccD22-Nov-202312 KiB359264

asan_thread.hD22-Nov-20235.5 KiB188126

asan_win.ccD22-Nov-20239.1 KiB267161

asan_win_dll_thunk.ccD22-Nov-202318.1 KiB413284

asan_win_dynamic_runtime_thunk.ccD22-Nov-20234.1 KiB9830

asanwrapper.ccD22-Nov-20232.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