1. cdce50b Update aosp/master compiler-rt for rebase to r239765 by Pirama Arumuga Nainar · 9 years ago
  2. 6d18623 Update aosp/master compiler-rt for rebase to r222486. by Stephen Hines · 10 years ago
  3. 2d1fdb2 Update compiler-rt aosp/master for 3.5 (r209699) rebase. by Stephen Hines · 10 years ago
  4. bb4697f [Sanitizer] Print symbolized stack frame using a single Printf() call. by Alexey Samsonov · 11 years ago
  5. 6f2741c tsan: allow to override OnPrint() callback in Go runtime by Dmitry Vyukov · 11 years ago
  6. 3c80c6c Define SANITIZER_INTERFACE_ATTRIBUTE on Windows and fix all the places where SANITIZER_INTERFACE_ATTRIBUTE or SANITIZER_ATTRIBUTE_WEAK are used by Timur Iskhodzhanov · 11 years ago
  7. 134da44 [sanitizer] Support padding with spaces in Printf. by Sergey Matveev · 11 years ago
  8. c528867 tsan: fix windows mingw build by Dmitry Vyukov · 11 years ago
  9. 5e97ba3 Fix MSVC W3 compiler warnings by Timur Iskhodzhanov · 11 years ago
  10. 0b694fc [nolibc] Move all platforms to internal_getpid. by Peter Collingbourne · 11 years ago
  11. 6a72c9d asan: fix windows build by Dmitry Vyukov · 11 years ago
  12. 4f5e4bb asan/tsan: fix printf(), on the second pass it prints garbage and crashes on random pointer dereference by Dmitry Vyukov · 11 years ago
  13. 99f1e20 [Sanitizer] Rework r176802: share code between Printf and Report and simplify it a bit by Alexey Samsonov · 11 years ago
  14. 7ed46ff [Sanitizer] Use a common mutex to prevent mixing reports from different sanitizers. This fixes PR15516 by Alexey Samsonov · 11 years ago
  15. 78b580f [Sanitizer] Fix OnPrint weak hook. Disable weak hooks for gotsan. by Alexey Samsonov · 11 years ago
  16. 1700fd3 asan/tsan: change SANITIZER_GO to more general SANITIZER_SUPPORTS_WEAK_HOOKS by Dmitry Vyukov · 11 years ago
  17. 13f62b2 asan/tsan: add Printf/Report hook by Dmitry Vyukov · 11 years ago
  18. 87c8bb9 Break a >80 char line. by Evgeniy Stepanov · 11 years ago
  19. c1b73e8 [ASan] Reduce the local buffer size in Report() not to fail the check enforced when building TSan runtime. by Alexander Potapenko · 11 years ago
  20. e282b1a [ASan] Try to use a small (512 bytes) stack-local buffer in Report() for short messages, fall back to MmapOrDie() in the case of a failure. by Alexander Potapenko · 11 years ago
  21. 01e9a38 Don't escape %s in printf usage message; it's not written by printf. by Richard Smith · 12 years ago
  22. 5af39e5 [asan/tsan] do not use __WORDSIZE macro, as it is glibc-private thing. Instead, define our own SANITIZER_WORDSIZE by Kostya Serebryany · 12 years ago
  23. e52e280 [Sanitizer] replace while with internal_memset to make sure compiler won't replace it with library memset by Alexey Samsonov · 12 years ago
  24. f493220 -fsanitize=undefined: Switch to using sanitizer_common for output. This gets us much closer to not depending on any system headers. by Richard Smith · 12 years ago
  25. b1fe302 [TSan] finally remove TsanPrintf in favor of Printf from sanitizer_common by Alexey Samsonov · 12 years ago
  26. 01167e8 [asan] fix the va_arg usage by Kostya Serebryany · 12 years ago
  27. 81dfbb7 [asan] add asan option log_path=PATH to let users redirect asan reports to a file PATH.PID instead of stderr by Kostya Serebryany · 12 years ago
  28. 4fa111c [asan/tsan] use InternalScopedBuffer instead of stack arrays. Use mmap inseted of InternalAlloc in InternalScopedBuffer by Kostya Serebryany · 12 years ago
  29. 283c296 [asan] get rid of AsanPrintf in favor of Printf from sanitizer_common by Kostya Serebryany · 12 years ago
  30. de08c02 [Sanitizer] Renaming: SNPrintf -> internal_snprintf (and move it to sanitizer libc) by Alexey Samsonov · 12 years ago
  31. a25b346 [Sanitizer] Switch to common mmap/munmap routines in ASan run-time. by Alexey Samsonov · 12 years ago
  32. e954101 [Sanitizer]: Introduce a common internal printf function. For now, also use tool-specific wrappers TsanPrintf (its output is controlled by TSan flags) and AsanPrintf (which copies its results to the ASan-private buffer). Supported formats: %[z]{d,u,x}, %s, %p. Re-write all format strings in TSan according to this format (this should have no effect on 64-bit platforms). by Alexey Samsonov · 12 years ago