opnsense-src/contrib/compiler-rt/lib/asan
Dimitry Andric f8ca070d3a Merge compiler-rt release_38 branch r258968.
Note that there is still a problem on amd64, causing SIGBUS in the early
startup of Address Sanitizer.  This is being investigated.
2016-02-06 13:39:20 +00:00
..
asan.syms.extra
asan_activation.cc Merge compiler-rt release_38 branch r258968. 2016-02-06 13:39:20 +00:00
asan_activation.h
asan_activation_flags.inc
asan_allocator.cc Merge compiler-rt release_38 branch r258968. 2016-02-06 13:39:20 +00:00
asan_allocator.h Merge compiler-rt release_38 branch r258968. 2016-02-06 13:39:20 +00:00
asan_blacklist.txt
asan_debugging.cc Merge compiler-rt release_38 branch r258968. 2016-02-06 13:39:20 +00:00
asan_fake_stack.cc Merge compiler-rt release_38 branch r258968. 2016-02-06 13:39:20 +00:00
asan_fake_stack.h
asan_flags.cc Merge compiler-rt release_38 branch r258968. 2016-02-06 13:39:20 +00:00
asan_flags.h Update compiler-rt to trunk r230183. This has some of our patches 2015-02-22 22:53:51 +00:00
asan_flags.inc Merge compiler-rt release_38 branch r258968. 2016-02-06 13:39:20 +00:00
asan_globals.cc Merge compiler-rt release_38 branch r258968. 2016-02-06 13:39:20 +00:00
asan_init_version.h Merge compiler-rt release_38 branch r258968. 2016-02-06 13:39:20 +00:00
asan_interceptors.cc Merge compiler-rt release_38 branch r258968. 2016-02-06 13:39:20 +00:00
asan_interceptors.h Merge compiler-rt release_38 branch r258968. 2016-02-06 13:39:20 +00:00
asan_interface_internal.h Merge compiler-rt release_38 branch r258968. 2016-02-06 13:39:20 +00:00
asan_internal.h Merge compiler-rt release_38 branch r258968. 2016-02-06 13:39:20 +00:00
asan_linux.cc Merge compiler-rt release_38 branch r258968. 2016-02-06 13:39:20 +00:00
asan_lock.h
asan_mac.cc Merge compiler-rt release_38 branch r258968. 2016-02-06 13:39:20 +00:00
asan_malloc_linux.cc Merge compiler-rt release_38 branch r258968. 2016-02-06 13:39:20 +00:00
asan_malloc_mac.cc Merge compiler-rt release_38 branch r258968. 2016-02-06 13:39:20 +00:00
asan_malloc_win.cc
asan_mapping.h Merge compiler-rt release_38 branch r258968. 2016-02-06 13:39:20 +00:00
asan_new_delete.cc Merge compiler-rt release_38 branch r258968. 2016-02-06 13:39:20 +00:00
asan_poisoning.cc Merge compiler-rt release_38 branch r258968. 2016-02-06 13:39:20 +00:00
asan_poisoning.h Update compiler-rt to 3.7.0 release. This also includes the sanitizer 2015-09-10 20:35:47 +00:00
asan_posix.cc Merge compiler-rt release_38 branch r258968. 2016-02-06 13:39:20 +00:00
asan_preinit.cc
asan_report.cc Merge compiler-rt release_38 branch r258968. 2016-02-06 13:39:20 +00:00
asan_report.h Merge compiler-rt release_38 branch r258968. 2016-02-06 13:39:20 +00:00
asan_rtl.cc Merge compiler-rt release_38 branch r258968. 2016-02-06 13:39:20 +00:00
asan_stack.cc
asan_stack.h Merge compiler-rt release_38 branch r258968. 2016-02-06 13:39:20 +00:00
asan_stats.cc Update compiler-rt to 3.7.0 release. This also includes the sanitizer 2015-09-10 20:35:47 +00:00
asan_stats.h Update compiler-rt to 3.7.0 release. This also includes the sanitizer 2015-09-10 20:35:47 +00:00
asan_suppressions.cc Update compiler-rt to 3.7.0 release. This also includes the sanitizer 2015-09-10 20:35:47 +00:00
asan_suppressions.h Update compiler-rt to 3.7.0 release. This also includes the sanitizer 2015-09-10 20:35:47 +00:00
asan_thread.cc Merge compiler-rt release_38 branch r258968. 2016-02-06 13:39:20 +00:00
asan_thread.h Merge compiler-rt release_38 branch r258968. 2016-02-06 13:39:20 +00:00
asan_win.cc Merge compiler-rt release_38 branch r258968. 2016-02-06 13:39:20 +00:00
asan_win_dll_thunk.cc Merge compiler-rt release_38 branch r258968. 2016-02-06 13:39:20 +00:00
asan_win_dynamic_runtime_thunk.cc Merge compiler-rt release_38 branch r258968. 2016-02-06 13:39:20 +00:00
README.txt Merge compiler-rt release_38 branch r258968. 2016-02-06 13:39:20 +00:00

AddressSanitizer RT
================================
This directory contains sources of the AddressSanitizer (ASan) runtime library.

Directory structure:
README.txt       : This file.
Makefile.mk      : File for make-based build.
CMakeLists.txt   : File for cmake-based build.
asan_*.{cc,h}    : Sources of the asan runtime library.
scripts/*        : Helper scripts.
tests/*          : ASan unit tests.

Also ASan runtime needs the following libraries:
lib/interception/      : Machinery used to intercept function calls.
lib/sanitizer_common/  : Code shared between various sanitizers.

ASan runtime currently also embeds part of LeakSanitizer runtime for
leak detection (lib/lsan/lsan_common.{cc,h}).

ASan runtime can only be built by CMake. You can run ASan tests
from the root of your CMake build tree:

make check-asan

For more instructions see:
https://github.com/google/sanitizers/wiki/AddressSanitizerHowToBuild