• Home
  • History
  • Annotate
  • only in /external/compiler-rt/lib/asan/
NameDateSize

..02-Jul-20154 KiB

Android.mk02-Jul-20156.3 KiB

asan.syms.extra02-Jul-201528

asan_activation.cc02-Jul-20152.2 KiB

asan_activation.h02-Jul-2015714

asan_allocator.h02-Jul-20155.1 KiB

asan_allocator2.cc02-Jul-201527.6 KiB

asan_android_stub.cc02-Jul-2015134

asan_blacklist.txt02-Jul-2015513

asan_dll_thunk.cc02-Jul-201515.5 KiB

asan_fake_stack.cc02-Jul-20159.7 KiB

asan_fake_stack.h02-Jul-20156.8 KiB

asan_flags.h02-Jul-20152.1 KiB

asan_globals.cc02-Jul-20158.9 KiB

asan_init_version.h02-Jul-20151.5 KiB

asan_interceptors.cc02-Jul-201526.6 KiB

asan_interceptors.h02-Jul-20153.2 KiB

asan_interface_internal.h02-Jul-20156.2 KiB

asan_internal.h02-Jul-20154.6 KiB

asan_linux.cc02-Jul-20157.4 KiB

asan_lock.h02-Jul-20150

asan_mac.cc02-Jul-201515.2 KiB

asan_malloc_linux.cc02-Jul-20154.9 KiB

asan_malloc_mac.cc02-Jul-201510.9 KiB

asan_malloc_win.cc02-Jul-20154.7 KiB

asan_mapping.h02-Jul-20159.3 KiB

asan_new_delete.cc02-Jul-20153.8 KiB

asan_poisoning.cc02-Jul-201512.6 KiB

asan_poisoning.h02-Jul-20153.4 KiB

asan_posix.cc02-Jul-20152.6 KiB

asan_preinit.cc02-Jul-20151.4 KiB

asan_report.cc02-Jul-201534.4 KiB

asan_report.h02-Jul-20152.9 KiB

asan_rtl.cc02-Jul-201529 KiB

asan_stack.cc02-Jul-2015786

asan_stack.h02-Jul-20154.3 KiB

asan_stats.cc02-Jul-20156.2 KiB

asan_stats.h02-Jul-20152.2 KiB

asan_thread.cc02-Jul-201511.4 KiB

asan_thread.h02-Jul-20154.8 KiB

asan_win.cc02-Jul-20152.1 KiB

asanwrapper.cc02-Jul-20151.4 KiB

CMakeLists.txt02-Jul-20156.6 KiB

Makefile.mk02-Jul-20151.1 KiB

README.txt02-Jul-20151 KiB

scripts/02-Jul-20154 KiB

tests/02-Jul-20154 KiB

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