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

..14-Feb-20134 KiB

Android.mk14-Feb-20134.3 KiB

asan_allocator.cc14-Feb-201332 KiB

asan_allocator.h14-Feb-20134.7 KiB

asan_android_stub.cc14-Feb-2013134

asan_flags.h14-Feb-20133.9 KiB

asan_globals.cc14-Feb-20137.3 KiB

asan_intercepted_functions.h14-Feb-20138.4 KiB

asan_interceptors.cc14-Feb-201320.6 KiB

asan_interceptors.h14-Feb-20131.4 KiB

asan_internal.h14-Feb-20134.9 KiB

asan_linux.cc14-Feb-20134 KiB

asan_lock.h14-Feb-20131.3 KiB

asan_mac.cc14-Feb-201319 KiB

asan_mac.h14-Feb-20131.4 KiB

asan_malloc_linux.cc14-Feb-20134.1 KiB

asan_malloc_mac.cc14-Feb-201314.8 KiB

asan_malloc_win.cc14-Feb-20133.9 KiB

asan_mapping.h14-Feb-20133.5 KiB

asan_new_delete.cc14-Feb-20131.9 KiB

asan_poisoning.cc14-Feb-20135 KiB

asan_posix.cc14-Feb-20133.7 KiB

asan_report.cc14-Feb-201315.4 KiB

asan_report.h14-Feb-20132.2 KiB

asan_rtl.cc14-Feb-201314.3 KiB

asan_stack.cc14-Feb-20131.1 KiB

asan_stack.h14-Feb-20132 KiB

asan_stats.cc14-Feb-20132.7 KiB

asan_stats.h14-Feb-20131.7 KiB

asan_thread.cc14-Feb-20134.5 KiB

asan_thread.h14-Feb-20133.1 KiB

asan_thread_registry.cc14-Feb-20135 KiB

asan_thread_registry.h14-Feb-20132.4 KiB

asan_win.cc14-Feb-20135.5 KiB

asanwrapper.cc14-Feb-20131.4 KiB

CMakeLists.txt14-Feb-20133.5 KiB

dynamic/14-Feb-20134 KiB

lit_tests/14-Feb-20134 KiB

Makefile.mk14-Feb-2013859

README.txt14-Feb-20131.1 KiB

scripts/14-Feb-20134 KiB

tests/14-Feb-20134 KiB

README.txt

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