1. 7202e79 [sanitizer] Fix windows build. by Evgeniy Stepanov · 11 years ago
  2. 2e9ffcb [sanitizer] Fix __sanitizer_unaligned_* to work with unaligned data types. by Evgeniy Stepanov · 11 years ago
  3. 7c9ffde Fix ALIGNED misuse in asan_thread.cc (built on all platforms); also, add a comment to the ALIGNED macro describing the correct usage by Timur Iskhodzhanov · 11 years ago
  4. 9578a3e [nolibc] Change internal syscall API to remove reliance on libc's errno. by Peter Collingbourne · 11 years ago
  5. 40e1668 Finally drop the 'static' from INLINE and ALWAYS_INLINE by Timur Iskhodzhanov · 11 years ago
  6. 78b580f [Sanitizer] Fix OnPrint weak hook. Disable weak hooks for gotsan. by Alexey Samsonov · 11 years ago
  7. 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
  8. 66b4a28 Add "static" to the Windows ALWAYS_INLINE macro (similar to what we do on POSIX) by Timur Iskhodzhanov · 11 years ago
  9. abfdbdf Make all the ALWAYS_INLINE users Windows-friendly; also, avoid ALWAYS_INLINE INLINE combinations by Timur Iskhodzhanov · 11 years ago
  10. 30e110e [sanitizer] More renamed macros. by Evgeniy Stepanov · 11 years ago
  11. 24e1372 [sanitizer] Replace more platform checks with SANITIZER_ constants. by Evgeniy Stepanov · 11 years ago
  12. 83cb787 [sanitizer] Move ASan platform macros to sanitizer_common and rename them appropriately. by Evgeniy Stepanov · 11 years ago
  13. 6fb47af add Linux syscall wrappers and ThreadLister to sanitizer_common by Kostya Serebryany · 12 years ago
  14. e31eca9 [asan] make asan work with 7fff8000 offset and prelink by Kostya Serebryany · 12 years ago
  15. 2673fd8 [asan] print a short one-line report summary after the full report. Currently, works only if symbolization happens in-process. by Kostya Serebryany · 12 years ago
  16. e85c83d [Sanitizer] use u32 instead of mode_t, which is defined in Darwin headers by Alexey Samsonov · 12 years ago
  17. ee7cc44 [Sanitizer] make internal_open have the same interface as libc version by Alexey Samsonov · 12 years ago
  18. 250f221 [sanitizer] Further split private and public sanitizer headers. by Evgeniy Stepanov · 12 years ago
  19. 0c7f61c asan: fix ARM build by Dmitry Vyukov · 12 years ago
  20. db1b58a asan: correct non-temporal prefetch for memory allocator by Dmitry Vyukov · 12 years ago
  21. b1bd208 asan: add memory prefetch to quarantine recycle by Dmitry Vyukov · 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. e2462f7 tsan: define missing compier macros for windows by Dmitry Vyukov · 12 years ago
  24. bb19294 tsan: fix non-msvc windows build by Dmitry Vyukov · 12 years ago
  25. 97daee8 tasn: improve sanitizer_internal_defs.h by Dmitry Vyukov · 12 years ago
  26. bfa45e1 tsan: fix windows build __declspec is not _WIN32, it's _MSC_VER by Dmitry Vyukov · 12 years ago
  27. 5759d92 [asan] fix lint by Kostya Serebryany · 12 years ago
  28. 45418d1 [Sanitizer] Add UNREACHABLE(msg) macro by Alexey Samsonov · 12 years ago
  29. 3334e12 [*San]: handle EINTR. by Evgeniy Stepanov · 12 years ago
  30. b46941a [ASan] Apply some ASan-relevant pieces of patch by Ruben Van Boxem. In the same time, remove ASan from CMake build on Windows after conversation with Timur. We don't want to support building ASan on Windows until it is in a working state. by Alexey Samsonov · 12 years ago
  31. d7ed1f0 [Sanitizer] fix warnings reported by gcc. Update the list of targets to check lint for by Alexey Samsonov · 12 years ago
  32. d865fec Relocate the external headers provided by ASan and the common sanitizer library. by Chandler Carruth · 12 years ago
  33. 80acccf [asan] one more fix for windows build by Kostya Serebryany · 12 years ago
  34. 1b5ea8f [asan] actually move StackTrace to sanitizer_common by Kostya Serebryany · 12 years ago
  35. 4c2ddda [asan] some renaming before we move StackTrace into sanitizer_common (part 2) by Kostya Serebryany · 12 years ago
  36. 70e177e [Sanitizer] move low-level (mmap-based) allocator to sanitizer_common by Alexey Samsonov · 12 years ago
  37. fce5bd4 tsan/asan: unify atomics (move atomics from tsan to sanitizer_common) by Dmitry Vyukov · 12 years ago
  38. d51a1a1 tsan: prevent insertion of unwanted memset/memcpy/memcmp into runtime by Dmitry Vyukov · 12 years ago
  39. c375657 [tsan] first step in implementing a custom allocator for tsan (and msan) which saves precious shadow by Kostya Serebryany · 12 years ago
  40. c925697 [Sanitizer] move all the rest re-implementations of libc functions from ASan runtime to common sanitizer runtime by Alexey Samsonov · 12 years ago
  41. dd3a911 [Sanitizer] move ShadowRangeIsAvailable and several defines to common runtime by Alexey Samsonov · 12 years ago
  42. 2ea9787 [Sanitizer] Workaround for -Wunused-private-field warning - add an attribute in TSan unit test, and silence this warning as gtest has unused fields. by Alexey Samsonov · 12 years ago
  43. 8c53e54 [Sanitizer] Make UNIMPLEMENTED macro common. by Alexey Samsonov · 12 years ago
  44. 15a7761 [Sanitizer] Use common CHECK machinery. Currently each tool has to define its own CheckFailed function. by Alexey Samsonov · 12 years ago
  45. 15503b0 [Sanitizer] fix Win build - ignore __attribute__((format)). by Alexey Samsonov · 12 years ago
  46. 230c3be [Sanitizer] Move more functions/constants to sanitizer_common. by Alexey Samsonov · 12 years ago
  47. 94b5036 [Sanitizer] rename sanitizer_defs.h to sanitizer_internal_defs.h by Alexey Samsonov · 12 years ago[Renamed (96%) from lib/sanitizer_common/sanitizer_defs.h]
  48. 0a4c906 [Sanitizer] Use common defines for ASan and TSan runtime. Split defines between interface defines (can be visible in user code that includes interface ASan/TSan headers) and internal defines. by Alexey Samsonov · 12 years ago
  49. 982cee4 [Sanitizer] Enable lint for sanitizer_common/ by Alexey Samsonov · 12 years ago
  50. ee39255 [asan] more renaming by Kostya Serebryany · 12 years ago
  51. 9aead37 [asan,tsan] introduce sanitizer_common/sanitizer_defs.h and perform some renaming in asan rt. More to come. by Kostya Serebryany · 12 years ago