hanchenye-llvm-project/compiler-rt/lib/sanitizer_common
Dmitry Vyukov af96edbad2 asan: fix format string in CHECK
llvm-svn: 172203
2013-01-11 15:07:49 +00:00
..
scripts [TSan] Blacklist test: Rename blacklisted function. Make this test work for custom TSan testing script. 2012-12-28 10:06:26 +00:00
tests asan/tsan: fix bug in list implementation 2013-01-11 10:15:13 +00:00
CMakeLists.txt asan: Refactor asan memory quarantine. 2013-01-11 08:07:43 +00:00
Makefile.mk
sanitizer_allocator.cc [tsan] remove unused InternalAllocBlock as part of larger refactoring 2012-12-03 11:57:01 +00:00
sanitizer_allocator.h asan: always pass allocator cache to Allocate() 2013-01-11 11:15:48 +00:00
sanitizer_atomic.h [ASan] cmake cleanup: make tab/space padding in CMakeLists consistent, silence/fix some pedantic warnings 2012-07-02 06:48:10 +00:00
sanitizer_atomic_clang.h tsan/asan: first try on msvc atomics 2012-06-29 18:00:38 +00:00
sanitizer_atomic_msvc.h [ASan/Win] Satisfy lint 2013-01-09 12:43:16 +00:00
sanitizer_common.cc asan: fix format string in CHECK 2013-01-11 15:07:49 +00:00
sanitizer_common.h [asan/tsan] when unmapping a chunk of user memory, apply madvise(MADV_DONTNEED) to the corresponding chunk of shadow memory. Also update sanitizer_allocator64_testlib.cc 2012-12-27 07:37:24 +00:00
sanitizer_common_interceptors.h [Sanitizer] use INTERCEPT_FUNCTION(foo) instead of CHECK(INTERCEPT_FUNCTION(foo)) - this check may fail on Linux if user program defines its own version of library function foo 2012-12-14 11:52:02 +00:00
sanitizer_flags.cc [Sanitizer] align allocation sizes in low level allocator 2012-08-27 14:51:36 +00:00
sanitizer_flags.h [Sanitizer] fix CMake build 2012-07-10 09:17:06 +00:00
sanitizer_internal_defs.h [asan/tsan] do not use __WORDSIZE macro, as it is glibc-private thing. Instead, define our own SANITIZER_WORDSIZE 2012-11-21 12:38:58 +00:00
sanitizer_libc.cc [asan] implement more strict checking for memset/etc parameters. Instead of checking the first and the last byte, we check the entire shadow region. This costs ~10 slowdown for the instrumented functions. Motivated by a nasty memset-buffer-overflow-by-140-bytes in chrome which was reported as a use-after-free or not at all 2012-12-28 15:24:16 +00:00
sanitizer_libc.h [asan] implement more strict checking for memset/etc parameters. Instead of checking the first and the last byte, we check the entire shadow region. This costs ~10 slowdown for the instrumented functions. Motivated by a nasty memset-buffer-overflow-by-140-bytes in chrome which was reported as a use-after-free or not at all 2012-12-28 15:24:16 +00:00
sanitizer_linux.cc [asan] make the slow unwinder a bit more robust. The unittests pass with fast_unwind_on_fatal=0, but I still observe some differences between the two unwinders 2013-01-09 13:55:00 +00:00
sanitizer_list.h asan/tsan: fix bug in list implementation 2013-01-11 10:15:13 +00:00
sanitizer_mac.cc Add a libsanitizer API __sanitizer_sandbox_on_notify(void* reserved), which should be used by 2012-12-10 13:10:40 +00:00
sanitizer_mutex.h asan: faster quarantine 2013-01-11 11:03:35 +00:00
sanitizer_placement_new.h [asan/tsan] do not use __WORDSIZE macro, as it is glibc-private thing. Instead, define our own SANITIZER_WORDSIZE 2012-11-21 12:38:58 +00:00
sanitizer_platform_interceptors.h [Sanitizer] Add new header - sanitizer_platform_interceptors.h, which should define whether or not given function should be intercepted on a given platform. 2012-12-13 08:50:16 +00:00
sanitizer_posix.cc [asan/tsan] when unmapping a chunk of user memory, apply madvise(MADV_DONTNEED) to the corresponding chunk of shadow memory. Also update sanitizer_allocator64_testlib.cc 2012-12-27 07:37:24 +00:00
sanitizer_printf.cc Don't escape %s in printf usage message; it's not written by printf. 2012-12-18 05:49:49 +00:00
sanitizer_procmaps.h Use a struct to hold the /proc/self/maps buffer on Linux. 2012-12-03 21:21:22 +00:00
sanitizer_quarantine.h asan: prevent inlining of cold function 2013-01-11 11:39:59 +00:00
sanitizer_report_decorator.h [asan] add some colors to asan output if printing to tty (following ubsan) 2012-12-18 07:32:16 +00:00
sanitizer_stackdepot.cc [asan] asan_allocator2: by default use the StackDepot to store the stack traces instead of storing them in the redzones 2012-12-26 06:30:02 +00:00
sanitizer_stackdepot.h [asan] asan_allocator2: by default use the StackDepot to store the stack traces instead of storing them in the redzones 2012-12-26 06:30:02 +00:00
sanitizer_stacktrace.cc [Sanitizer] Expose StackTrace::GetPreviousInstructionPc() to get PC of call instruction from return address 2012-12-18 09:57:34 +00:00
sanitizer_stacktrace.h [Sanitizer] Expose StackTrace::GetPreviousInstructionPc() to get PC of call instruction from return address 2012-12-18 09:57:34 +00:00
sanitizer_symbolizer.cc tsan: symbolize global variables 2013-01-11 07:23:51 +00:00
sanitizer_symbolizer.h tsan: symbolize global variables 2013-01-11 07:23:51 +00:00
sanitizer_symbolizer_itanium.cc [Sanitizer] Modify CMake build rules for sanitizer_common unit tests: build them with fresh Clang for both 32- and 64-bits (if possible) 2012-12-20 13:24:21 +00:00
sanitizer_symbolizer_linux.cc [Sanitizer] add sanity checks for communication with external symbolizer 2012-11-09 14:45:30 +00:00
sanitizer_symbolizer_mac.cc [Sanitizer] Remove unneeded returns after UNIMPLEMENTED macro 2012-10-09 08:51:08 +00:00
sanitizer_symbolizer_win.cc Move C++ name demangling support from ubsan into sanitizer_common. 2012-12-20 05:00:13 +00:00
sanitizer_win.cc [Sanitizer] add missing header on Windows 2012-12-19 08:51:39 +00:00