- 6c49695 [ASan] Remove a complex multiline comment that baffles lint. by Alexander Potapenko · 12 years ago
- d1bae72 [libsanitizer] Pass an explicit template to mktemp. Running mktemp without a template doesn't work on Darwin. by Alexander Potapenko · 12 years ago
- bff7e64 [ASan] Fix compilation of asan_str_test.cc on non-Darwin. by Alexander Potapenko · 12 years ago
- 7be1a63 [ASan] Enforce the memmove semantics for both memcpy() and memmove() interceptors on Darwin. by Alexander Potapenko · 12 years ago
- 2ab5a48 [asan] nuke yet another async-signal-safety bug in UAR (oh, my) by Kostya Serebryany · 12 years ago
- 29d7be1 [Sanitizer] Add pthread_cond_init to the list of versioned functions by Alexey Samsonov · 12 years ago
- 481d90c tsan: handle memory read/write in syscalls by Dmitry Vyukov · 12 years ago
- c7547d0 tsan: allow to ignore memory accesses in malloc and free by Dmitry Vyukov · 12 years ago
- 20f6ff1 tsan: do not crash when user intercepts fopen() by Dmitry Vyukov · 12 years ago
- b523b9c tsan: fix linking of tsan runtime into dynamic libraries by Dmitry Vyukov · 12 years ago
- 8f5d907 [ASan] Fix init-order-dlopen.cc test to not depend on the -Wl,-undefined,dynamic_lookup being passed to the linker. by Alexander Potapenko · 12 years ago
- f8bbdfa [asan] fix one more async-signal-safety issue with use-after-return by Kostya Serebryany · 12 years ago
- 786ee9b [MSan] Fix -Wempty-body warning by Alexey Samsonov · 12 years ago
- 1c5cd75 [TSan] Fix -Wempty-body warning by Alexey Samsonov · 12 years ago
- d78bc3a asan/tsan/msan: use builtin atomic operations when available by Dmitry Vyukov · 12 years ago
- f54631d tsan: prevent the following false positive due to __cxa_atexit by Dmitry Vyukov · 12 years ago
- c2437ff tsan: consistently use thr instead of cur_thread() in annotations implementation by Dmitry Vyukov · 12 years ago
- 1a7ca92 tsan: refactor internal IgnoreCtl interface by Dmitry Vyukov · 12 years ago
- 91375fd [tsan] No-op implementation of AnnotateMemoryIsInitialized. by Evgeniy Stepanov · 12 years ago
- c3d43ca [asan] add a run-time option detect_stack_use_after_return, add verbosity output for fake stack by Kostya Serebryany · 12 years ago
- c947eb0 [ASan] Don't add SANITIZER_INTERFACE_ATTRIBUTE for internal ASan functions by Alexey Samsonov · 12 years ago
- a7f35c0 [ASan] Enable fake stack test on Mac and Android, as no-instrumentation tests are now fixed by Alexey Samsonov · 12 years ago
- 676c109 [ASan] Link tests with -pie if ASan runtime uses zero-base shadow by Alexey Samsonov · 12 years ago
- 2f5c2be [asan] further speedup use-after-return: simplify deallocation of fake frames. ~ 20% speedup. by Kostya Serebryany · 12 years ago
- 885136d Check the function we just called for errors, not an incoming argument. Noticed by Nick Lewycky · 12 years ago
- f71c889 [ASan] Don't link with pthread on Android by Alexey Samsonov · 12 years ago
- 036a5be [ASan] Split ASan unit tests into two different binaries: by Alexey Samsonov · 12 years ago
- 48e2564 [ASan] Check that getSymbolizer() is defined. Turn magic mapping constants into named variables by Alexey Samsonov · 12 years ago
- ad7925e Minor enhancements for sanitizer_common build rules by Alexey Samsonov · 12 years ago
- 08d649c [msan] Check return value of main: compiler-rt tests. by Evgeniy Stepanov · 12 years ago
- 65562f5 [msan] Fix origin of deallocated memory. by Evgeniy Stepanov · 12 years ago
- 0da3540 [msan] Add source file:line to stack origin reports. by Evgeniy Stepanov · 12 years ago
- ac5ac34 [msan] Add source file:line to stack origin reports. by Evgeniy Stepanov · 12 years ago
- 9be91e9 [msan] Intercept tzset. by Evgeniy Stepanov · 12 years ago
- 8f0b7fe [msandr] Add debugging instructions to README.txt. by Evgeniy Stepanov · 12 years ago
- 3bee8ef [asan] Android does not have TLS by Kostya Serebryany · 12 years ago
- 70c93d3 [ASan] Temporary disable UAR unit test on Android due to https://code.google.com/p/address-sanitizer/issues/detail?id=222 by Alexey Samsonov · 12 years ago
- 9583b87 [asan] don't record the class_id in FakeFrame (scratching the last bits of performance) by Kostya Serebryany · 12 years ago
- 4117bdb [asan] more performance to FakeStack: a) don't used atomic exchange, instead rely on regular load and store and other signal-safe logic; b) remove allocated_from_size_class_mask_ which is not helping much anyway; Another 10% speedup by Kostya Serebryany · 12 years ago
- 43c4493 [asan] second attempt to use TLS with fake stack. This time it looks (more) async-signal safe. by Kostya Serebryany · 12 years ago
- c19851a [asan] undo the previous commit since TLS hack breaks with signals... :( by Kostya Serebryany · 12 years ago
- 096413b [asan] use TLS on Linux to get the FakeStack. Saves 15% performance by Kostya Serebryany · 12 years ago
- 77caab4 [asan] inline PoisonShadow in FakeStack to get ~10% speedup by Kostya Serebryany · 12 years ago
- cdec0a8 [dfsan] Add a few easy functions to the ABI list. by Peter Collingbourne · 12 years ago
- 7638aa1 [asan] a bit of performance improvement in fake stack, generalized one test, fixed android build of another test by Kostya Serebryany · 12 years ago
- 627ea63 [asan] add a test for use-after-return and exceptions and fix it. Not 100% sure this is a complete fix, will keep looking for harder cases. by Kostya Serebryany · 12 years ago
- 9caa10d [ASan] Do not build asan_fake_stack_test.cc on OSX until https://code.google.com/p/address-sanitizer/issues/detail?id=222 is fixed. by Alexander Potapenko · 12 years ago
- 79d98a8 [asan] limit the size of the fake stack with a reasonable constant. This fixes a failure when the main thread's stack is considered unlimited (very large). by Kostya Serebryany · 12 years ago
- 44441cc [asan] (part 2) don't lazy-init fake_stack if we only need to check that fake_stack exists (should fix 32-bit builds) by Kostya Serebryany · 12 years ago
- 736bd08 [asan] don't lazy-init fake_stack if we only need to check that fake_stack exists (should fix 32-bit builds) by Kostya Serebryany · 12 years ago
- 628cda7 [asan] hopefully make the FakeStack async-signal safe, enable the related test by Kostya Serebryany · 12 years ago
- 58dbe06 [asan] Fix deadlock in stack unwinder on android/x86. by Evgeniy Stepanov · 12 years ago
- e8f961e [asan] use xchg instead of CAS in FakeStack::Allocate (5% faster for this case) by Kostya Serebryany · 12 years ago
- 729c8dc [asan] fully re-implement the FakeStack (use-after-return) to make it faster and async-signal-safe. The implementation is not yet complete (see FIXMEs) but the existing tests pass. by Kostya Serebryany · 12 years ago
- a6ec07c Fix typo by Bill Wendling · 12 years ago
- 333e0cb Revert r190520 as it wasn't the right fix. by Daniel Jasper · 12 years ago
- 2b3f143 Add empty virtual destructor... by Daniel Jasper · 12 years ago
- 4a2447f [TSan] Use --whole-archive around TSan runtime in old TSan makefiles. Fix a Go build by Alexey Samsonov · 12 years ago
- 279283c [Sanitizer] build sanitizer_common library with -Wglobal-constructors by Alexey Samsonov · 12 years ago
- e99a0b9 [TSan] Use Clang to compile and link TSan unit tests with TSan runtime by Alexey Samsonov · 12 years ago
- d397a9b Fixup for r190410: use lazy initialization for symbolizer as some compilers emit global constructor to setup vptr by Alexey Samsonov · 12 years ago
- 92702d8 [ASan] Remove the explicit function prototypes for intercepted functions on Windows by Timur Iskhodzhanov · 12 years ago
- 7a36e61 [Sanitizer] Refactor symbolization interface: use class instead of several functions. Move some code around to get rid of extra source files by Alexey Samsonov · 12 years ago
- 8fc35ca [asan] refactor the use-after-return API so that the size class is computed at compile time instead of at run-time. compiler-rt part by Kostya Serebryany · 12 years ago
- 2b31d71 [msan] Make all pointers in msan_interface "const volatile void *". by Evgeniy Stepanov · 12 years ago
- df96e86 [msan] bool -> int to make msan_interface.h C-compatible. by Evgeniy Stepanov · 12 years ago
- 190784b [ASan] Don't crash in DescribeHeapAddress if we don't know the current thread's ID by Timur Iskhodzhanov · 12 years ago
- abc1a5c Delete unused variables. by Eli Friedman · 12 years ago
- 0dca2e5 [dfsan] Initial set of DFSAN_OPTIONS flags. by Peter Collingbourne · 12 years ago
- 97c22c3 Don't allow a NULL-length file. Try to revert to the buffered version. by Bill Wendling · 12 years ago
- 842fa3f [msan] Intercept fstatat / fstatat64. by Evgeniy Stepanov · 12 years ago
- cf02f17 [sanitizer] Fix PR17138. by Evgeniy Stepanov · 12 years ago
- 80cc278 [sanitizer] Delete extra whitespace. by Evgeniy Stepanov · 12 years ago
- 77029be [ASan] fix one more memory leak in test case by Alexey Samsonov · 12 years ago
- a302a1a [Sanitizer] Use generic configs for running sanitizer_common unit tests by Alexey Samsonov · 12 years ago
- 071cc9e [ASan] turn on leak checking for ASan tests and fix a few discovered leaks by Alexey Samsonov · 12 years ago
- 7316679 [sanitizer] Avoid including any system headers in the system-header-free part of the runtime library. by Evgeniy Stepanov · 12 years ago
- 09d33c6 [sanitizer] Fix Android build. by Evgeniy Stepanov · 12 years ago
- 5c1035e [sanitizer] A bunch of linux system call handlers. by Evgeniy Stepanov · 12 years ago
- 2a54274 [ASan] make the check for NULL more portable. by Alexander Potapenko · 12 years ago
- 6985f3f Fix compiler warning introduced in r190022 by Alexey Samsonov · 12 years ago
- 16516b9b Migrate ATTRIBUTE_NO_ADDRESS_SAFETY_ANALYSIS to new spelling - ATTRIBUTE_NO_SANITIZE_ADDRESS by Alexey Samsonov · 12 years ago
- 895ff83e [tsan] make calloc crash instead of returning 0 on overflow (controlled by the allocator_may_return_null flag) by Kostya Serebryany · 12 years ago
- 6c5b034 [msan] make calloc crash instead of returning 0 on overflow (controlled by the allocator_may_return_null flag) by Kostya Serebryany · 12 years ago
- e009ef4 [asan] make calloc crash instead of returning 0 on overflow (controlled by the allocator_may_return_null flag) by Kostya Serebryany · 12 years ago
- ada5a7b [sanitizer] make the allocator crash instead of returning 0 on huge size (controlled by the allocator_may_return_null flag) by Kostya Serebryany · 12 years ago
- 5e0b208 [tsan] add colors to tsan output by Kostya Serebryany · 12 years ago
- d483c07 sanitizers: Make sure Visual Studio gets error reports by Reid Kleckner · 12 years ago
- 0071525 asan: Add a wcslen interceptor mirroring strlen by Reid Kleckner · 12 years ago
- 2e57127 [asan] add a test that demonstrates why the current use-after-return is not signal-safe by Kostya Serebryany · 12 years ago
- 1f13414 [asan] make use-after-return handle very deep recursion; fixes 483.xalancbmk in UAR mode by Kostya Serebryany · 12 years ago
- 5b2000e Disable FindPathToBinary test on Android by Alexey Samsonov · 12 years ago
- 2eea589 [asan] Hopefully un-break the RTL on Windows by Timur Iskhodzhanov · 12 years ago
- 2b8d35f [asan] Hopefully fix the RTL build on Windows (part 2) by Timur Iskhodzhanov · 12 years ago
- 4e27d1f tsan: catch races on condition variables by Dmitry Vyukov · 12 years ago
- 14b7cac [asan] attemping to fix the Windows build by Kostya Serebryany · 12 years ago
- 8a9f076 Revert r185536 as it neither fixes any memory leaks, nor is it necessary (see the example from "man pthread_getattr_np") by Timur Iskhodzhanov · 12 years ago
- 6bafcd1 implement PR17059: more visible diagnostics for stack-buffer-overflow by Kostya Serebryany · 12 years ago
- b9d3444 [lsan] Colorize LSan reports. by Sergey Matveev · 12 years ago
- 5b5c99d ASan, LSan, MSan: try to find llvm-symbolizer binary in PATH if it is not provided. Now we don't need to explicitly set the location of llvm-symbolizer in lit test configs. by Alexey Samsonov · 12 years ago