1. 2fb0872 [Sanitizer] Unify summary reporting across all sanitizers. by Alexey Samsonov · 11 years ago
  2. 21bf90d [msan] Check that address is an app region before printing shadow. by Evgeniy Stepanov · 11 years ago
  3. bd65956 [sanitizer] Enhance io_submti syscall handler. by Evgeniy Stepanov · 11 years ago
  4. a96c4dc Consistently use StackTrace::PrintStack in ASan, LSan and MSan by Alexey Samsonov · 11 years ago
  5. 66d91e3 [Sanitizer] Add Symbolizer::AddHooks() and use it in TSan and MSan. by Alexey Samsonov · 11 years ago
  6. ae7db43 [msan] Intercept dlerror. by Evgeniy Stepanov · 11 years ago
  7. 548559d [msan] Disable mlock/mlockall to work around a linux kernel bug. by Evgeniy Stepanov · 11 years ago
  8. 26fe5d3 [sanitizer] Intercept getline, getdelim. by Evgeniy Stepanov · 11 years ago
  9. 78d77c2 [sanitizer] Intercept drand48_r, lrand48_r. by Evgeniy Stepanov · 11 years ago
  10. f814b43 [sanitizer] Intercept sincos, remquo, lgamma, lgamma_r. by Evgeniy Stepanov · 11 years ago
  11. 3ee98e3 [sanitizer] Ptrace syscall handler. by Evgeniy Stepanov · 11 years ago
  12. 5cf2c46 tsan/asan: support pthread_setname_np to set thread names by Dmitry Vyukov · 11 years ago
  13. 7996a2e [Sanitizer] Simplify StackTrace::PrintStack interface: prefer common flags to turn on/off the symbolization by Alexey Samsonov · 11 years ago
  14. f360389 [msan] Intercept shmat. by Evgeniy Stepanov · 11 years ago
  15. 1767ec1 [msan] Fix a typo and enable poison_in_free flag. by Evgeniy Stepanov · 11 years ago
  16. db92faf asan/msan: separate different report blocks with new lines by Dmitry Vyukov · 11 years ago
  17. c1a1ed6 Overhaul the symbolizer interface. by Peter Collingbourne · 11 years ago
  18. eada1a8 [sanitizer] Intercept tmpnam, tmpnam_r, tempnam. by Evgeniy Stepanov · 11 years ago
  19. 3a3805f [sanitizer] Remove pthread_attr_getstackaddr interceptor. by Evgeniy Stepanov · 11 years ago
  20. e46ecb1 [msan] Zerofill initstate_r buffer in random_r test. by Evgeniy Stepanov · 11 years ago
  21. e236dbb [sanitizer] Intercept pthread_attr_get*. by Evgeniy Stepanov · 11 years ago
  22. 719df33 [msan] Separate access and origin blocks in msan reports with an extra whiteline. by Evgeniy Stepanov · 11 years ago
  23. aff25aa [sanitizer] Intercept random_r. by Evgeniy Stepanov · 11 years ago
  24. 10362d6 [sanitizer] Intercept shmctl. by Evgeniy Stepanov · 11 years ago
  25. 1161eb4 [msan] Unpoison errno in common interceptors. by Evgeniy Stepanov · 11 years ago
  26. 450eee6 [msan] Fix invalid origin copying. by Evgeniy Stepanov · 11 years ago
  27. 48ed058 [msan] Change wording in the invalid origin message. by Evgeniy Stepanov · 11 years ago
  28. 369a9a6 [sanitizer] Intercept ether_* functions. by Evgeniy Stepanov · 11 years ago
  29. 7c6bd40 [msan] Drain allocator cache when leaving thread. by Evgeniy Stepanov · 11 years ago
  30. 285d458 [sanitizer] Intercept initgroups. by Evgeniy Stepanov · 11 years ago
  31. 5cee73e [sanitizer] Move statfs/fstatfs to common interceptors and add statvfs/fstatvfs. by Evgeniy Stepanov · 11 years ago
  32. 4d7297d [sanitizer] Intercept getmntent, getmntent_r. by Evgeniy Stepanov · 11 years ago
  33. ab8bf09 [sanitizer] Fix unpoisoning of msghdr::msg_name in recvmsg interceptor. by Evgeniy Stepanov · 11 years ago
  34. fc81346 [Sanitizer] Move pthread_cond_signal and pthread_cond_broadcast to common interceptors by Alexey Samsonov · 11 years ago
  35. 7ad195c [msan] Handle origins in __sanitizer_unaligned_(load|store)*. by Evgeniy Stepanov · 11 years ago
  36. 5e2d377 Make some pthread_mutex_* and pthread_cond_* interceptors common. by Alexey Samsonov · 11 years ago
  37. 06cbed8 tsan: use verbosity flag in sanitizer_common code directly by Dmitry Vyukov · 11 years ago
  38. 6866dba tsan: move verbosity flag to CommonFlags by Dmitry Vyukov · 11 years ago
  39. e910a16 [msan] Remove CallocOverflow test. by Evgeniy Stepanov · 11 years ago
  40. 600d516 [msan] Implement allocator_may_return_null=1 in MemorySanitizer. by Evgeniy Stepanov · 11 years ago
  41. f1d9411 [msan] Test for r192599. by Evgeniy Stepanov · 11 years ago
  42. 2a2dc88 [msan] Remove a long-outdated comment. by Evgeniy Stepanov · 11 years ago
  43. 3f4beff [msan] Intercept strto(d|f|ld)_l and glibc-specific __strto(d|f|ld)_l. by Evgeniy Stepanov · 11 years ago
  44. fa33a8c [msan] Regression test for r192575. by Evgeniy Stepanov · 11 years ago
  45. 064da32 [Sanitizer] Simplify StackTrace::FastUnwindStack interface and fix a bug with one-frame stack traces by Alexey Samsonov · 11 years ago
  46. 90b0f1e Refactor the usage of strip_path_prefix option and make it more consistent across sanitizers by Alexey Samsonov · 11 years ago
  47. 8cde99f asan/msan: fix "unused function 'OnExit'" warning by Dmitry Vyukov · 11 years ago
  48. 14dd980 asan/msan/tsan: move _exit interceptor to common interceptors by Dmitry Vyukov · 11 years ago
  49. 0586dcc tsan: fix false positive in localtime() by Dmitry Vyukov · 11 years ago
  50. cf39032 [sanitizer] Fix localtime and gmtime interceptors to clean tm->tm_zone. by Evgeniy Stepanov · 11 years ago
  51. fdf10e2 msan: fix compiler warnings about unused variables by Dmitry Vyukov · 11 years ago
  52. 1394be1 [sanitizer] Intercept backtrace, backtrace_symbols. by Evgeniy Stepanov · 11 years ago
  53. cfc29de [msan] Unpoison argument shadow for C++ module destructors. by Evgeniy Stepanov · 11 years ago
  54. 9a949a8 [sanitizer] A bunch of libc interceptors. by Evgeniy Stepanov · 11 years ago
  55. c5a3855 [sanitizer] Intercept wordexp. by Evgeniy Stepanov · 11 years ago
  56. 1e190da [msan] Test for atomic handling in MSan. by Evgeniy Stepanov · 11 years ago
  57. 29296c0 [msan] Fix a WTF in r191196. by Evgeniy Stepanov · 11 years ago
  58. 27ee7a8 [msan] Allow nested symbolizer and loader scopes. by Evgeniy Stepanov · 11 years ago
  59. 6b85945 [MSan] Fix -Wempty-body warning by Alexey Samsonov · 11 years ago
  60. db6d089 [msan] Check return value of main: compiler-rt tests. by Evgeniy Stepanov · 11 years ago
  61. effdc7e [msan] Fix origin of deallocated memory. by Evgeniy Stepanov · 11 years ago
  62. 1effc05 [msan] Add source file:line to stack origin reports. by Evgeniy Stepanov · 11 years ago
  63. 6f34605 [msan] Add source file:line to stack origin reports. by Evgeniy Stepanov · 11 years ago
  64. 7b63608 [msan] Intercept tzset. by Evgeniy Stepanov · 11 years ago
  65. 7847d77 [Sanitizer] Refactor symbolization interface: use class instead of several functions. Move some code around to get rid of extra source files by Alexey Samsonov · 11 years ago
  66. 13c3790 [msan] bool -> int to make msan_interface.h C-compatible. by Evgeniy Stepanov · 11 years ago
  67. bb22942 [msan] Intercept fstatat / fstatat64. by Evgeniy Stepanov · 11 years ago
  68. 639df40 [sanitizer] A bunch of linux system call handlers. by Evgeniy Stepanov · 11 years ago
  69. 967e07e [msan] make calloc crash instead of returning 0 on overflow (controlled by the allocator_may_return_null flag) by Kostya Serebryany · 11 years ago
  70. 650c7d4 [lsan] Colorize LSan reports. by Sergey Matveev · 11 years ago
  71. 68c016a 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 · 11 years ago
  72. ec014cc [msan] Another regression test for r189786. by Evgeniy Stepanov · 11 years ago
  73. 2040604 [msan] A regression test for r189785. by Evgeniy Stepanov · 11 years ago
  74. 97160a8 [msan] Intercept memalign, valloc, pvalloc. by Evgeniy Stepanov · 11 years ago
  75. c154820 [sanitizer] fix code style by Alexey Samsonov · 11 years ago
  76. 4c62159 [msan] Remove extra backup/restore calls. by Evgeniy Stepanov · 11 years ago
  77. 544bdfb Generate list of symbols exported from sanitizer runtimes only on 64-bit Unix by Alexey Samsonov · 11 years ago
  78. e5fa243 Properly generate lists of exported symbols for sanitizer runtimes by Alexey Samsonov · 11 years ago
  79. 0e38a67 [msan] Save/restore va_arg_overflow_tls in signal handlers. by Evgeniy Stepanov · 11 years ago
  80. 91659d5 [msan] Unpoison all TLS shadow when leaving a signal handler. by Evgeniy Stepanov · 11 years ago
  81. e0a8712 [msan] Fix a data race in signal/sigaction interceptors. by Evgeniy Stepanov · 11 years ago
  82. 47177ef [msan] A test for ppoll() interceptor. by Evgeniy Stepanov · 11 years ago
  83. b32d1bf [sanitizer] Simplify sigaction and sigset_t handling. by Evgeniy Stepanov · 11 years ago
  84. 3c531df [msan] Extend VAArgTLSOverwrite test. by Evgeniy Stepanov · 11 years ago
  85. dbac0a4 tsan/msan: add halt_on_error flag by Dmitry Vyukov · 11 years ago
  86. 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
  87. e18e3f0 [sanitizer] Intercept poll/ppoll. by Evgeniy Stepanov · 11 years ago
  88. edff34b [sanitizer] Intercept getgroups. by Evgeniy Stepanov · 11 years ago
  89. a1b15b4 [tests] Update to use lit_config and lit package, as appropriate. by Daniel Dunbar · 11 years ago
  90. 224226c [sanitizer] Intercept scandir/scandir64. by Evgeniy Stepanov · 11 years ago
  91. 1204979 [sanitizer] Intercept strerror and strerror_r. by Evgeniy Stepanov · 11 years ago
  92. 82821fa [sanitizer] ASan/MSan tests for r187967. by Evgeniy Stepanov · 11 years ago
  93. 84ba74c [sanitizer] Intercept sched_getaffinity. by Evgeniy Stepanov · 11 years ago
  94. 2120083 Revert "[sanitizer] Intercept sched_getaffinity." by David Blaikie · 11 years ago
  95. 39d68ed [sanitizer] Fix NULL arg handling in setitimer/getitimer interceptors. by Evgeniy Stepanov · 11 years ago
  96. b2dc613 [sanitizer] Intercept sched_getaffinity. by Evgeniy Stepanov · 11 years ago
  97. 5c48a8c [msan] Allocator statistics interface and malloc hooks. by Evgeniy Stepanov · 11 years ago
  98. 08104e6 [msan] Fix unused function warning in the tests. by Evgeniy Stepanov · 11 years ago
  99. 534e2ba [msan] Intercept setenv, putenv. by Evgeniy Stepanov · 11 years ago
  100. 3ff67e6 [msan] Fix msan tests with pipefail option. by Evgeniy Stepanov · 11 years ago