Home | History | Annotate | only in /external/compiler-rt/lib/asan
Up to higher level directory
NameDateSize
Android.mk09-Oct-20135.3K
asan_allocator.cc09-Oct-201325.2K
asan_allocator.h09-Oct-20136.7K
asan_allocator2.cc09-Oct-201324.5K
asan_android_stub.cc09-Oct-2013134
asan_fake_stack.cc09-Oct-20135.3K
asan_flags.h09-Oct-20134.8K
asan_globals.cc09-Oct-20136.4K
asan_intercepted_functions.h09-Oct-20133.3K
asan_interceptors.cc09-Oct-201323.9K
asan_interceptors.h09-Oct-20131.4K
asan_interface_internal.h09-Oct-20135.6K
asan_internal.h09-Oct-20135.5K
asan_linux.cc09-Oct-20133.8K
asan_lock.h09-Oct-20130
asan_mac.cc09-Oct-201315.7K
asan_mac.h09-Oct-20131.5K
asan_malloc_linux.cc09-Oct-20134.2K
asan_malloc_mac.cc09-Oct-201310.5K
asan_malloc_win.cc09-Oct-20133.9K
asan_mapping.h09-Oct-20137.3K
asan_new_delete.cc09-Oct-20133.4K
asan_poisoning.cc09-Oct-20137.5K
asan_posix.cc09-Oct-20133.7K
asan_preinit.cc09-Oct-20131.3K
asan_report.cc09-Oct-201325.6K
asan_report.h09-Oct-20132.4K
asan_rtl.cc09-Oct-201318.8K
asan_stack.cc09-Oct-20131.5K
asan_stack.h09-Oct-20132.5K
asan_stats.cc09-Oct-20133K
asan_stats.h09-Oct-20131.9K
asan_thread.cc09-Oct-20134.5K
asan_thread.h09-Oct-20133.4K
asan_thread_registry.cc09-Oct-20136.4K
asan_thread_registry.h09-Oct-20132.6K
asan_win.cc09-Oct-20134.5K
asanwrapper.cc09-Oct-20131.4K
CMakeLists.txt09-Oct-20132.6K
lit_tests/09-Oct-2013
Makefile.mk09-Oct-2013783
README.txt09-Oct-20131.1K
scripts/09-Oct-2013
tests/09-Oct-2013

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