• Home
Name Date Size #Lines LOC

..--

scripts/03-May-2024-719565

tests/03-May-2024-4,4833,496

Android.mkD03-May-20246.3 KiB214167

CMakeLists.txtD03-May-20246.6 KiB198173

Makefile.mkD03-May-20241.1 KiB3014

README.txtD03-May-20241 KiB2922

asan.syms.extraD03-May-202428 43

asan_activation.ccD03-May-20242.2 KiB7545

asan_activation.hD03-May-2024714 247

asan_allocator.hD03-May-20245.1 KiB164126

asan_allocator2.ccD03-May-202427.6 KiB817628

asan_android_stub.ccD03-May-2024134 53

asan_blacklist.txtD03-May-2024513 1411

asan_dll_thunk.ccD03-May-202415.5 KiB350229

asan_fake_stack.ccD03-May-20249.7 KiB256205

asan_fake_stack.hD03-May-20246.8 KiB17681

asan_flags.hD03-May-20242.1 KiB7848

asan_globals.ccD03-May-20248.9 KiB255193

asan_init_version.hD03-May-20241.5 KiB389

asan_interceptors.ccD03-May-202426.6 KiB834669

asan_interceptors.hD03-May-20243.2 KiB11179

asan_interface_internal.hD03-May-20246.2 KiB15193

asan_internal.hD03-May-20244.6 KiB15092

asan_linux.ccD03-May-20247.4 KiB250194

asan_lock.hD03-May-20240 10

asan_mac.ccD03-May-202415.2 KiB421291

asan_malloc_linux.ccD03-May-20244.9 KiB166117

asan_malloc_mac.ccD03-May-202410.9 KiB360257

asan_malloc_win.ccD03-May-20244.7 KiB172113

asan_mapping.hD03-May-20249.3 KiB269147

asan_new_delete.ccD03-May-20243.8 KiB12382

asan_poisoning.ccD03-May-202412.6 KiB355265

asan_poisoning.hD03-May-20243.4 KiB9155

asan_posix.ccD03-May-20242.6 KiB8854

asan_preinit.ccD03-May-20241.4 KiB328

asan_report.ccD03-May-202434.4 KiB960820

asan_report.hD03-May-20242.9 KiB7043

asan_rtl.ccD03-May-202429 KiB775608

asan_stack.ccD03-May-2024786 269

asan_stack.hD03-May-20244.3 KiB10065

asan_stats.ccD03-May-20246.2 KiB192145

asan_stats.hD03-May-20242.2 KiB7943

asan_thread.ccD03-May-202411.4 KiB345252

asan_thread.hD03-May-20244.8 KiB167109

asan_win.ccD03-May-20242.1 KiB9254

asanwrapper.ccD03-May-20241.4 KiB5242

README.txt

1AddressSanitizer RT
2================================
3This directory contains sources of the AddressSanitizer (asan) runtime library.
4We are in the process of integrating AddressSanitizer with LLVM, stay tuned.
5
6Directory structure:
7README.txt       : This file.
8Makefile.mk      : File for make-based build.
9CMakeLists.txt   : File for cmake-based build.
10asan_*.{cc,h}    : Sources of the asan runtime library.
11scripts/*        : Helper scripts.
12tests/*          : ASan unit tests.
13
14Also ASan runtime needs the following libraries:
15lib/interception/      : Machinery used to intercept function calls.
16lib/sanitizer_common/  : Code shared between ASan and TSan.
17
18Currently ASan runtime can be built by both make and cmake build systems.
19(see compiler-rt/make and files Makefile.mk for make-based build and
20files CMakeLists.txt for cmake-based build).
21
22ASan unit and output tests work only with cmake. You may run this
23command from the root of your cmake build tree:
24
25make check-asan
26
27For more instructions see:
28http://code.google.com/p/address-sanitizer/wiki/HowToBuild
29