Home | History | Annotate | only in /external/compiler-rt/lib/asan
Up to higher level directory
NameDateSize
Android.mk04-Nov-20146.3K
asan.syms.extra04-Nov-201428
asan_activation.cc04-Nov-20142.2K
asan_activation.h04-Nov-2014714
asan_allocator.h04-Nov-20145.1K
asan_allocator2.cc04-Nov-201427.6K
asan_android_stub.cc04-Nov-2014134
asan_blacklist.txt04-Nov-2014513
asan_dll_thunk.cc04-Nov-201415.5K
asan_fake_stack.cc04-Nov-20149.7K
asan_fake_stack.h04-Nov-20146.8K
asan_flags.h04-Nov-20142.1K
asan_globals.cc04-Nov-20148.9K
asan_init_version.h04-Nov-20141.5K
asan_interceptors.cc04-Nov-201426.6K
asan_interceptors.h04-Nov-20143.2K
asan_interface_internal.h04-Nov-20146.2K
asan_internal.h04-Nov-20144.6K
asan_linux.cc04-Nov-20147.4K
asan_lock.h04-Nov-20140
asan_mac.cc04-Nov-201415.2K
asan_malloc_linux.cc04-Nov-20144.9K
asan_malloc_mac.cc04-Nov-201410.9K
asan_malloc_win.cc04-Nov-20144.7K
asan_mapping.h04-Nov-20149.3K
asan_new_delete.cc04-Nov-20143.8K
asan_poisoning.cc04-Nov-201412.6K
asan_poisoning.h04-Nov-20143.4K
asan_posix.cc04-Nov-20142.6K
asan_preinit.cc04-Nov-20141.4K
asan_report.cc04-Nov-201434.4K
asan_report.h04-Nov-20142.9K
asan_rtl.cc04-Nov-201429K
asan_stack.cc04-Nov-2014786
asan_stack.h04-Nov-20144.3K
asan_stats.cc04-Nov-20146.2K
asan_stats.h04-Nov-20142.2K
asan_thread.cc04-Nov-201411.4K
asan_thread.h04-Nov-20144.8K
asan_win.cc04-Nov-20142.1K
asanwrapper.cc04-Nov-20141.4K
CMakeLists.txt04-Nov-20146.6K
Makefile.mk04-Nov-20141.1K
README.txt04-Nov-20141K
scripts/04-Nov-2014
tests/04-Nov-2014

README.txt

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