Home | History | Annotate | only in /external/compiler-rt/lib/asan
Up to higher level directory
NameDateSize
Android.mk13-Nov-20124.3K
asan_allocator.cc13-Nov-201232K
asan_allocator.h13-Nov-20124.7K
asan_android_stub.cc13-Nov-2012134
asan_flags.h13-Nov-20123.9K
asan_globals.cc13-Nov-20127.3K
asan_intercepted_functions.h13-Nov-20128.4K
asan_interceptors.cc13-Nov-201220.6K
asan_interceptors.h13-Nov-20121.4K
asan_internal.h13-Nov-20124.9K
asan_linux.cc13-Nov-20124K
asan_lock.h13-Nov-20121.3K
asan_mac.cc13-Nov-201219K
asan_mac.h13-Nov-20121.4K
asan_malloc_linux.cc13-Nov-20124.1K
asan_malloc_mac.cc13-Nov-201214.8K
asan_malloc_win.cc13-Nov-20123.9K
asan_mapping.h13-Nov-20123.5K
asan_new_delete.cc13-Nov-20121.9K
asan_poisoning.cc13-Nov-20125K
asan_posix.cc13-Nov-20123.7K
asan_report.cc13-Nov-201215.4K
asan_report.h13-Nov-20122.2K
asan_rtl.cc13-Nov-201214.3K
asan_stack.cc13-Nov-20121.1K
asan_stack.h13-Nov-20122K
asan_stats.cc13-Nov-20122.7K
asan_stats.h13-Nov-20121.7K
asan_thread.cc13-Nov-20124.5K
asan_thread.h13-Nov-20123.1K
asan_thread_registry.cc13-Nov-20125K
asan_thread_registry.h13-Nov-20122.4K
asan_win.cc13-Nov-20125.5K
asanwrapper.cc13-Nov-20121.4K
CMakeLists.txt13-Nov-20123.5K
dynamic/13-Nov-2012
lit_tests/13-Nov-2012
Makefile.mk13-Nov-2012859
README.txt13-Nov-20121.1K
scripts/13-Nov-2012
tests/13-Nov-2012

README.txt

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