Home | History | Annotate | only in /external/compiler-rt/lib/asan
Up to higher level directory
NameDateSize
Android.mk05-Aug-20156.3K
asan.syms.extra05-Aug-201528
asan_activation.cc05-Aug-20152.2K
asan_activation.h05-Aug-2015714
asan_allocator.h05-Aug-20155.1K
asan_allocator2.cc05-Aug-201527.6K
asan_android_stub.cc05-Aug-2015134
asan_blacklist.txt05-Aug-2015513
asan_dll_thunk.cc05-Aug-201515.5K
asan_fake_stack.cc05-Aug-20159.7K
asan_fake_stack.h05-Aug-20156.8K
asan_flags.h05-Aug-20152.1K
asan_globals.cc05-Aug-20158.9K
asan_init_version.h05-Aug-20151.5K
asan_interceptors.cc05-Aug-201526.6K
asan_interceptors.h05-Aug-20153.2K
asan_interface_internal.h05-Aug-20156.2K
asan_internal.h05-Aug-20154.6K
asan_linux.cc05-Aug-20157.4K
asan_lock.h05-Aug-20150
asan_mac.cc05-Aug-201515.2K
asan_malloc_linux.cc05-Aug-20154.9K
asan_malloc_mac.cc05-Aug-201510.9K
asan_malloc_win.cc05-Aug-20154.7K
asan_mapping.h05-Aug-20159.3K
asan_new_delete.cc05-Aug-20153.8K
asan_poisoning.cc05-Aug-201512.6K
asan_poisoning.h05-Aug-20153.4K
asan_posix.cc05-Aug-20152.6K
asan_preinit.cc05-Aug-20151.4K
asan_report.cc05-Aug-201534.4K
asan_report.h05-Aug-20152.9K
asan_rtl.cc05-Aug-201529K
asan_stack.cc05-Aug-2015786
asan_stack.h05-Aug-20154.3K
asan_stats.cc05-Aug-20156.2K
asan_stats.h05-Aug-20152.2K
asan_thread.cc05-Aug-201511.4K
asan_thread.h05-Aug-20154.8K
asan_win.cc05-Aug-20152.1K
asanwrapper.cc05-Aug-20151.4K
CMakeLists.txt05-Aug-20156.6K
Makefile.mk05-Aug-20151.1K
README.txt05-Aug-20151K
scripts/05-Aug-2015
tests/05-Aug-2015

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