1. 84b35c4 Add sanitizer syscall hooks to the tool's export lists. by Evgeniy Stepanov · 11 years ago
  2. 9578a3e [nolibc] Change internal syscall API to remove reliance on libc's errno. by Peter Collingbourne · 11 years ago
  3. 24323de [sanitizer] Move GetThreadStackAndTls from TSan to sanitizer_common. by Sergey Matveev · 11 years ago
  4. 19bbac0 tsan: comment out debug output in test by Dmitry Vyukov · 11 years ago
  5. 94d8b44 tsan: fix deadlock detector table (OK to lock sync var mutex during reporting) by Dmitry Vyukov · 11 years ago
  6. 924047f tsan: reverse stack trace for failed CHECK's, this is how we print traces in other places by Dmitry Vyukov · 11 years ago
  7. 8ecd0e5 tsan: add interface functions for unaligned access, e.g. __sanitizer_unaligned_load16 by Dmitry Vyukov · 11 years ago
  8. 4526909 tsan: add a test that used to crash, fixed by r180180. by Dmitry Vyukov · 11 years ago
  9. 46fea91 tsan: fix stack traces for malloc and free by Dmitry Vyukov · 11 years ago
  10. 5d9915e tsan: run tests sequentially otherwise cmake says: by Dmitry Vyukov · 11 years ago
  11. edd2821 tsan: disable getpwuid_r() and glob64() interceptors under tsan, because they cause interceptor recursion if user intercepts fopen() by Dmitry Vyukov · 11 years ago
  12. 0304941 tsan: fix crash when data race happens on out-of-bounds accesses. by Dmitry Vyukov · 11 years ago
  13. d36f07c tsan: support heap starting at 0x04c0 (used in some custom deplyments) by Dmitry Vyukov · 11 years ago
  14. 4860c68 tsan: update Go memory mapping, Go now uses 0x00c0 heap base by Dmitry Vyukov · 11 years ago
  15. 9530eb7 [sanitizer] Intercept inet_pton and inet_ntop. by Evgeniy Stepanov · 11 years ago
  16. 103a63e [sanitizer] Intercept getgrnam{_r}, getgrgid{_r}. by Evgeniy Stepanov · 11 years ago
  17. 7733017 [TSan] Allocate fd table in user heap instead of using internal allocator. We need this to catch races on fds. by Alexey Samsonov · 11 years ago
  18. 881b677 [sanitizer] Add syscall handlers to ASan and TSan runtimes. by Evgeniy Stepanov · 11 years ago
  19. 103f258 [TSan] remove -fPIE -pie from TSan lit tests to check that -fsanitize=thread implies them now by Alexey Samsonov · 11 years ago
  20. 2a529ad Explicitly list all sanitizer headers in CMake build rules. Make sure sanitizer lit_tests depend on fresh headers. by Alexey Samsonov · 11 years ago
  21. 897a4ae [sanitizer] Interceptors for wait*. by Evgeniy Stepanov · 11 years ago
  22. a1c2a55 [msan] Intercept glob() with tests. by Evgeniy Stepanov · 11 years ago
  23. c9b626e [Sanitizer] fix TSan tests: remove global ctor from sanitizer_common, run load_shared_lib test only in lit by Alexey Samsonov · 11 years ago
  24. 8a6cac5 [asan] relax Linux/zero-base-shadow.cc to make it pass on newer Ubuntu; fix lint by Kostya Serebryany · 11 years ago
  25. 39fdce1 Revert r179012: "[msan] Intercept glob()." by Chandler Carruth · 11 years ago
  26. c8feb2f [libsymbolized] If we can't find an address in the list of shared libraries, try to reload it. by Alexander Potapenko · 11 years ago
  27. 6f4c197 [msan] Intercept glob(). by Evgeniy Stepanov · 11 years ago
  28. cc24ec9 [tsan] Fix build. by Evgeniy Stepanov · 11 years ago
  29. 7ed46ff [Sanitizer] Use a common mutex to prevent mixing reports from different sanitizers. This fixes PR15516 by Alexey Samsonov · 11 years ago
  30. 6a7c51d [TSan] Make path to FileCheck configurable by Alexey Samsonov · 11 years ago
  31. 743d89d [TSan] Add the WTFAnnotateBenignRaceSized implementation and a test for by Alexander Potapenko · 11 years ago
  32. e4bdda5 [sanitizer] More interceptors. by Evgeniy Stepanov · 11 years ago
  33. d475aa8 [tsan] restore performance critical inlining in tsan: remove static from ALWAYS_INLINE, use ALWAYS_INLINE USED for critical functions. by Kostya Serebryany · 11 years ago
  34. 76030b3 [TSan] Build TSan runtime with -fPIE. by Alexander Potapenko · 11 years ago
  35. 43c36e4 Band-aid fix for the TSan RTL build by Timur Iskhodzhanov · 11 years ago
  36. b157c67 Remove all 'static' before ALWAYS_INLINE by Timur Iskhodzhanov · 11 years ago
  37. abfdbdf Make all the ALWAYS_INLINE users Windows-friendly; also, avoid ALWAYS_INLINE INLINE combinations by Timur Iskhodzhanov · 11 years ago
  38. 0fd908c tsan: print statistics about benign race annotations by Dmitry Vyukov · 11 years ago
  39. 7acbcb9 [tsan] a test checking that memset/memcpy/memmove are not inlined in tsan mode by Kostya Serebryany · 11 years ago
  40. 83b4707 [tsan] don't use -fno-builtin for tests; add a test for a false negative bug (inlined memcpy is not instrumented) by Kostya Serebryany · 11 years ago
  41. f754eb5 tsan: print matched suppressions if print_suppressions=1 flag is provided by Dmitry Vyukov · 11 years ago
  42. f778ae5 [TSan] Fixup for r178128: verify that TSan indeed doesn't report race by Alexey Samsonov · 11 years ago
  43. f3798f5 [TSan] Run test output through FileCheck by Alexey Samsonov · 11 years ago
  44. 0f2cf8a [tsan] make memcpy_race.cc test immune to memcpy inlining by Kostya Serebryany · 11 years ago
  45. be52366 asan/tsan: move strcasecmp() interceptor to sanitizer_common by Dmitry Vyukov · 11 years ago
  46. 9ae2883 [libsanitizer] Unmapping the old cache partially invalidates the memory layout, so add by Alexander Potapenko · 11 years ago
  47. 5b1b9ce [tsan] add a test for aligned-vs-unaligned race (tsan's false negative) by Kostya Serebryany · 11 years ago
  48. f58a1ea [TSan] Build TSan unit tests with the same compile flags as TSan runtime by Alexey Samsonov · 11 years ago
  49. 8b30c25 tsan: intercept setjmp/longjmp by Dmitry Vyukov · 11 years ago
  50. a06fe91 Build and install .syms files alongside sanitizer runtimes. These are used to by Richard Smith · 11 years ago
  51. 7423c78 tsan: return 0 on malloc() failure instead of crashing by Dmitry Vyukov · 11 years ago
  52. 4044752 tsan: test that tsan explicitly says "race on vptr". Requires llvm r177717. by Dmitry Vyukov · 11 years ago
  53. 1471220 tsan: work around FileCheck bug with empty outputs by Dmitry Vyukov · 11 years ago
  54. 4536cb1 tsan: better reporting of thread leaks by Dmitry Vyukov · 11 years ago
  55. 0dc47b6 tsan: better reporting for races on vptr by Dmitry Vyukov · 11 years ago
  56. f63dde3 tsan: add flag to control symbolizer flush frequency by Dmitry Vyukov · 11 years ago
  57. 5043f05 tsan: intercept abort() to fflush() libc streams by Dmitry Vyukov · 11 years ago
  58. f465bde tsan: remove bogus CHECK by Dmitry Vyukov · 11 years ago
  59. a38e40f tsan: flush symbolizer cache if not symbolized for more than 5 seconds by Dmitry Vyukov · 11 years ago
  60. 4219ea3 tsan: add a comment about magic numbers by Dmitry Vyukov · 11 years ago
  61. 4bebe7b tsan: use a single background thread for memory profiler and memory flush (and later for symbolizer flush) by Dmitry Vyukov · 11 years ago
  62. 236a098 tsan: correct sizes of signal-related data structures by Dmitry Vyukov · 11 years ago
  63. 423bd20 tsan: add missing stat descriptions by Dmitry Vyukov · 11 years ago
  64. 0ebfc6f tsan: call fflush(0) on exit again by Dmitry Vyukov · 11 years ago
  65. ae4cf31 tsan: reduce size of mutexsets from 64 to 16 mutexes by Dmitry Vyukov · 11 years ago
  66. cab1315 tsan: fix incorrect test by Dmitry Vyukov · 11 years ago
  67. 82dbc51 tsan: special handling of .rodata (don't try to find races, don't keep shadow, dont' put into traces) by Dmitry Vyukov · 11 years ago
  68. 286c914 tsan: fix build by Dmitry Vyukov · 11 years ago
  69. 9743d74 tsan: move trace header into 0x600000000000 range by Dmitry Vyukov · 11 years ago
  70. 4ff1f60 tsan: fix flaky test by Dmitry Vyukov · 11 years ago
  71. 0602fc9 tsan: fix incorrect test by Dmitry Vyukov · 11 years ago
  72. 30e110e [sanitizer] More renamed macros. by Evgeniy Stepanov · 11 years ago
  73. 24e1372 [sanitizer] Replace more platform checks with SANITIZER_ constants. by Evgeniy Stepanov · 11 years ago
  74. ce85e03 tsan: flush dead thread info earlier (when another thread is finished rather than new thread is created) by Dmitry Vyukov · 11 years ago
  75. 8e1c769 tsan: instruct malloc() to consume less memory by Dmitry Vyukov · 11 years ago
  76. 723e24f tsan: symbolizer "flush caches" support by Dmitry Vyukov · 11 years ago
  77. b186c19 tsan: fix memory leak by Dmitry Vyukov · 11 years ago
  78. b9bf700 [sanitizer] Don't adjust the size of the user-allocated stack. by Evgeniy Stepanov · 11 years ago
  79. 210ce0e tsan: do not allocate sync vars on relaxed atomic operations by Dmitry Vyukov · 11 years ago
  80. f51c386 tsan: smaller memory block headers (32b->16b) by Dmitry Vyukov · 11 years ago
  81. 3ce2170 tsan: add support for idle threads by Dmitry Vyukov · 11 years ago
  82. 74172de tsan: touch less shadow memory during operations on big memory ranges by Dmitry Vyukov · 11 years ago
  83. 7ac33ac tsan: mark shadow for thread stack as "don't need" when thread exits by Dmitry Vyukov · 11 years ago
  84. 5d72fc7 tsan: better memory profiler by Dmitry Vyukov · 11 years ago
  85. ac1f5ca tsan: madvise(DONTNEED) shadow memory on munmap() by Dmitry Vyukov · 11 years ago
  86. e93e505 tsan: move implementation out of h file by Dmitry Vyukov · 11 years ago
  87. 6af642e tsan: fix clang -Wall build by Dmitry Vyukov · 11 years ago
  88. 036f933 [TSan] re-apply r177249 lost in edits by Alexey Samsonov · 11 years ago
  89. 46b4a86 tsan: fix memory leak by Dmitry Vyukov · 11 years ago
  90. 2c5284e tsan: use StackDepot for thread creation stacks by Dmitry Vyukov · 11 years ago
  91. 491852e tsan: fix Go build by Dmitry Vyukov · 11 years ago
  92. 3abf531 tsan: use StackDepot in sync object to store creation stacks by Dmitry Vyukov · 11 years ago
  93. ffa4e08 [TSan] fix undefined variable in debug TSan build by Alexey Samsonov · 11 years ago
  94. df2ca17 [TSan] Use ThreadRegistry::FindThreadContextLocked() to find thread by its stack/tls address. by Alexey Samsonov · 11 years ago
  95. 5c88936 [TSan] Makefiles: allow configurable paths to clang and FileCheck. Add -fno-rtti flag. by Alexey Samsonov · 11 years ago
  96. 2bbd8be [TSan] Switch TSan runtime to use ThreadRegistry class from sanitizer_common by Alexey Samsonov · 11 years ago
  97. 7cbbb29 [sanitizer] Intercept frexp and friends. by Evgeniy Stepanov · 11 years ago
  98. 47a0f6e [TSan] Add missing header inclusion by Alexey Samsonov · 11 years ago
  99. f110e35 [TSan] Use __sanitizer_pthread_attr_t in TSan by Alexey Samsonov · 11 years ago
  100. a7e5db9 [Sanitizer] Build ASan, TSan and MSan runtimes with -fno-rtti. by Alexey Samsonov · 11 years ago