- 3de0086 [sanitizer] LibraryNameIs in sanitizer_linux by Sergey Matveev · 11 years ago
- a615b26 [sanitizer] Minor fixes in sanitizer_common tests. by Sergey Matveev · 11 years ago
- 411e828 [tsan] fix gcc build with -Wall by Kostya Serebryany · 11 years ago
- 15bb32b [sanitizer] Generic sorting in sanitizer_common. by Sergey Matveev · 11 years ago
- 115accb [sanitizer] Fix StopTheWorld build on non-Android ARM. by Sergey Matveev · 11 years ago
- 6712833 Try to fix Windows build too by Peter Collingbourne · 12 years ago
- 65246dc Try to fix the mac buildbots by Peter Collingbourne · 12 years ago
- 9578a3e [nolibc] Change internal syscall API to remove reliance on libc's errno. by Peter Collingbourne · 12 years ago
- 33280bb Quick fix for ASan test build on Android. by Sergey Matveev · 12 years ago
- 3e3f80d [sanitizer] Fix build breakage in Go TSan. by Sergey Matveev · 12 years ago
- 736cf49 [sanitizer] Move GetStackTrace from ASan to sanitizer_common. by Sergey Matveev · 12 years ago
- f310654 [sanitizer] Fixed InitTlsSize for Android. by Sergey Matveev · 12 years ago
- 35f1c1f [sanitizer] Fixed includes in sanitizer_linux.cc for Android. by Sergey Matveev · 12 years ago
- 24323de [sanitizer] Move GetThreadStackAndTls from TSan to sanitizer_common. by Sergey Matveev · 12 years ago
- 2be3a28 [sanitizer] Sanitizer __internal_*stat interface. by Evgeniy Stepanov · 12 years ago
- 0b4bf4d [msan] Common flags in MSan. by Sergey Matveev · 12 years ago
- ed20ebe [asan] Common flags in ASan. by Sergey Matveev · 12 years ago
- 346e348 I was wrong in my testing. by Bill Wendling · 12 years ago
- d83a6d8 Use unbuffered I/O. This reduces the runtime by about half. Our implementation is now only about 5 times slower than gcc's. by Bill Wendling · 12 years ago
- 6a72c9d asan: fix windows build by Dmitry Vyukov · 12 years ago
- 19bbac0 tsan: comment out debug output in test by Dmitry Vyukov · 12 years ago
- 4f5e4bb asan/tsan: fix printf(), on the second pass it prints garbage and crashes on random pointer dereference by Dmitry Vyukov · 12 years ago
- 94d8b44 tsan: fix deadlock detector table (OK to lock sync var mutex during reporting) by Dmitry Vyukov · 12 years ago
- 924047f tsan: reverse stack trace for failed CHECK's, this is how we print traces in other places by Dmitry Vyukov · 12 years ago
- 8ecd0e5 tsan: add interface functions for unaligned access, e.g. __sanitizer_unaligned_load16 by Dmitry Vyukov · 12 years ago
- f82eb24 asna/tsan/msan: fix wait() interceptors to allow NULL arguments by Dmitry Vyukov · 12 years ago
- 62db3f2 Revert r180599 "[sanitizer] Clear LD_PRELOAD when forking an external symbolizer." by Sergey Matveev · 12 years ago
- ab06583 [sanitizer] Clear LD_PRELOAD when forking an external symbolizer. by Sergey Matveev · 12 years ago
- 332bf33 [ASan] Add allow_user_segv_handler to let users override SEGV handler installed by ASan by Alexey Samsonov · 12 years ago
- 4526909 tsan: add a test that used to crash, fixed by r180180. by Dmitry Vyukov · 12 years ago
- 46fea91 tsan: fix stack traces for malloc and free by Dmitry Vyukov · 12 years ago
- 5d9915e tsan: run tests sequentially otherwise cmake says: by Dmitry Vyukov · 12 years ago
- edd2821 tsan: disable getpwuid_r() and glob64() interceptors under tsan, because they cause interceptor recursion if user intercepts fopen() by Dmitry Vyukov · 12 years ago
- 0304941 tsan: fix crash when data race happens on out-of-bounds accesses. by Dmitry Vyukov · 12 years ago
- d36f07c tsan: support heap starting at 0x04c0 (used in some custom deplyments) by Dmitry Vyukov · 12 years ago
- 4860c68 tsan: update Go memory mapping, Go now uses 0x00c0 heap base by Dmitry Vyukov · 12 years ago
- 9530eb7 [sanitizer] Intercept inet_pton and inet_ntop. by Evgeniy Stepanov · 12 years ago
- bdd0966 [ASan] Disable strict-init-order checker once we have more than one thread, as this mode is thread-hostile by Alexey Samsonov · 12 years ago
- 11347bf [MSan] Make a few interface functions accept 'const void *' instead of 'void*' by Alexey Samsonov · 12 years ago
- b6c8e47 [msan] Unpoison the result of posix_memalign. by Evgeniy Stepanov · 12 years ago
- ff7c14f Revert r180082 and add a test for SetEnv function by Alexey Samsonov · 12 years ago
- 51e9728 [ASan] Make wait.cc more Darwin-compatible: fix the header name and the CHECK patterns. by Alexander Potapenko · 12 years ago
- 8db82e1 [ASan] Disable AddressSanitizer.AllocDeallocMismatch on Darwin. by Alexander Potapenko · 12 years ago
- 103a63e [sanitizer] Intercept getgrnam{_r}, getgrgid{_r}. by Evgeniy Stepanov · 12 years ago
- 7cdae16 [msan] Allow clock_getres(, 0). by Evgeniy Stepanov · 12 years ago
- 51ecba3 [Sanitizer] Delete unused function by Alexey Samsonov · 12 years ago
- 1d8bc4b [sanitizer] Fix lint. by Evgeniy Stepanov · 12 years ago
- 4aa08fa Improve performance of file I/O. by Bill Wendling · 12 years ago
- 64544c1 Fixup for r179843: add missing header by Alexey Samsonov · 12 years ago
- dfeef67 [ASan] Make init-order checker allow access to already initialized globals. by Alexey Samsonov · 12 years ago
- 7733017 [TSan] Allocate fd table in user heap instead of using internal allocator. We need this to catch races on fds. by Alexey Samsonov · 12 years ago
- 99f1e20 [Sanitizer] Rework r176802: share code between Printf and Report and simplify it a bit by Alexey Samsonov · 12 years ago
- e8a005f [Sanitizer] Don't die in symbolizer if it can't read /proc/self/exe link by Alexey Samsonov · 12 years ago
- 102c043 Wrap macro invocations in braces to supress 'suggest braces around empty body in an ‘if’ statement' warning. by Andy Gibbs · 12 years ago
- 3f5528b [asan] Fix spelling in asan_rtl.cc Test commit. by Sergey Matveev · 12 years ago
- b921bf2 [msan] Fix gcc build of msan_test. by Evgeniy Stepanov · 12 years ago
- fa56896 [sanitizer] Implement wait4 and waitpid syscall hooks. by Evgeniy Stepanov · 12 years ago
- 6d0b7f6 [msan] Fix sigaction test. by Evgeniy Stepanov · 12 years ago
- e865045 [msan] Really disable replacement new and delete. by Evgeniy Stepanov · 12 years ago
- 881b677 [sanitizer] Add syscall handlers to ASan and TSan runtimes. by Evgeniy Stepanov · 12 years ago
- 3ba4b90 [sanitizer] More syscall handler placeholders. by Evgeniy Stepanov · 12 years ago
- 40e1668 Finally drop the 'static' from INLINE and ALWAYS_INLINE by Timur Iskhodzhanov · 12 years ago
- f1faf5d [MSan] Demangle function name in description of stack origin by Alexey Samsonov · 12 years ago
- d10d2d7 [MSan] don't build tests with -fPIE/-pie, as these flags are implied by -fsanitize=memory now by Alexey Samsonov · 12 years ago
- 103f258 [TSan] remove -fPIE -pie from TSan lit tests to check that -fsanitize=thread implies them now by Alexey Samsonov · 12 years ago
- 16cc10d [asan] inline flags(), up to 1% perf gain on malloc-intensive code by Kostya Serebryany · 12 years ago
- fecbf27 [asan] make heavy_uar_test even heavier by Kostya Serebryany · 12 years ago
- 2a529ad Explicitly list all sanitizer headers in CMake build rules. Make sure sanitizer lit_tests depend on fresh headers. by Alexey Samsonov · 12 years ago
- 71c9e9e [asan] improve the UAR reporting (try harder to find the correct frame), try to make the test more stable by Kostya Serebryany · 12 years ago
- 2887a64 [sanitizer] Syscall hooks. by Evgeniy Stepanov · 12 years ago
- 37f9464 [asan] make heavy_uar_test a bit more heavy and fix he fake stack to pass this test by Kostya Serebryany · 12 years ago
- 61723f2 [ASan] test source-based init-order blacklisting added in r179280 by Alexey Samsonov · 12 years ago
- ce0f7d1 [asan] fix use-after-return functionality (PR15672) and enable the corresponding test. We still don't guarantee anything with regard to use-after-return checking by Kostya Serebryany · 12 years ago
- 22c1c18 [ASan] Symbolize correct address when printint error summary by Alexey Samsonov · 12 years ago
- 244384d [asan] move fake stack into a separate .h file; actually disable a failing test by Kostya Serebryany · 12 years ago
- 2c02f63 [asan] add heavy_uar_test (disabled); fix lint by Kostya Serebryany · 12 years ago
- 15832c2 [ASan] Do not check the shadow of NULL argument in the time() interceptor. by Alexander Potapenko · 12 years ago
- dc0d179 [asan] implement callbacks for unaligned loads/stores by Kostya Serebryany · 12 years ago
- f3f2f5c [ASan] fix a typo in legend in error report by Alexey Samsonov · 12 years ago
- 897a4ae [sanitizer] Interceptors for wait*. by Evgeniy Stepanov · 12 years ago
- a1c2a55 [msan] Intercept glob() with tests. by Evgeniy Stepanov · 12 years ago
- c9b626e [Sanitizer] fix TSan tests: remove global ctor from sanitizer_common, run load_shared_lib test only in lit by Alexey Samsonov · 12 years ago
- 8a6cac5 [asan] relax Linux/zero-base-shadow.cc to make it pass on newer Ubuntu; fix lint by Kostya Serebryany · 12 years ago
- 39fdce1 Revert r179012: "[msan] Intercept glob()." by Chandler Carruth · 12 years ago
- c8feb2f [libsymbolized] If we can't find an address in the list of shared libraries, try to reload it. by Alexander Potapenko · 12 years ago
- 134fe8a [msan] Interceptors for pipe2 and socketpair. by Evgeniy Stepanov · 12 years ago
- 6f4c197 [msan] Intercept glob(). by Evgeniy Stepanov · 12 years ago
- cc24ec9 [tsan] Fix build. by Evgeniy Stepanov · 12 years ago
- a2c1d98 [sanitizer] Fix boundary condition in LargeMmapAllocator::GetBlockBegin. Patch by Sergey Matveev by Kostya Serebryany · 12 years ago
- fef6605 [msan] Intercept time(). by Evgeniy Stepanov · 12 years ago
- 5ef2920 [asan] make huge_negative_hea_oob more meaningful by Kostya Serebryany · 12 years ago
- d26a01e [asan] add a test for huge left oob by Kostya Serebryany · 12 years ago
- a27bdf7 [sanitizer] found a bug by code inspection: CHECK(a=b) instead of CHECK(a==b). Was puzzled why lint did not catch it. Turns out this check was disabled for asan source. fix all cases and enable the check by Kostya Serebryany · 12 years ago
- cd3049d [msan] Fix sigaction interceptor. by Evgeniy Stepanov · 12 years ago
- a897400 [msan] Conditionally disable new() and delete() wrappers. by Evgeniy Stepanov · 12 years ago
- a213ab6 [msan] A runtime option to disable wrapping of signal handlers. by Evgeniy Stepanov · 12 years ago
- 48cab52 [Sanitizer] enquote the module name when passing it to external symbolizer by Alexey Samsonov · 12 years ago
- ce184c8 [ASan] init-order checker tests: move constexpr test that requires -std=c++11 to a separate test case. Check that structs with no ctor but non-trivial dtor are ignored. by Alexey Samsonov · 12 years ago
- 10f3ab7 Remove InternalAlloc/InternalFree calls from StopTheWorld. Patch by Sergey Matveev. by Alexey Samsonov · 12 years ago
- 7ed46ff [Sanitizer] Use a common mutex to prevent mixing reports from different sanitizers. This fixes PR15516 by Alexey Samsonov · 12 years ago