1. 2e9ffcb [sanitizer] Fix __sanitizer_unaligned_* to work with unaligned data types. by Evgeniy Stepanov · 11 years ago
  2. f43f602 [msan] Implement __sanitizer_unaligned_*. by Evgeniy Stepanov · 11 years ago
  3. a879f10 [msan] Fix gcc build of msan runtime. by Evgeniy Stepanov · 11 years ago
  4. b36779d [msan] Handle mixed track-origins and keep-going settings (compiler-rt part). by Evgeniy Stepanov · 11 years ago
  5. 512c616 [sanitizer] Fix getaddrinfo interceptor to use the actual returned sockaddr size. by Evgeniy Stepanov · 11 years ago
  6. bc33e13 [sanitizer] Intercept getpeername. by Evgeniy Stepanov · 11 years ago
  7. 9666d89 [sanitizer] Move TSan and MSan recvmsg interceptors to common. by Evgeniy Stepanov · 11 years ago
  8. c87088b [sanitizer] modf/modff/modfl interceptors. by Evgeniy Stepanov · 11 years ago
  9. 1f3c2fe Make InternalAlloc/InternalFree in sanitizer runtimes libc-free by switching to a custom allocator. by Alexey Samsonov · 11 years ago
  10. 9d1525e [sanitizer] Share TSan accept & accept4 interceptors with other sanitizers. by Evgeniy Stepanov · 11 years ago
  11. 3538eb8 [sanitizer] Improve getaddrinfo interceptor. by Evgeniy Stepanov · 11 years ago
  12. 6ac157d [msan] Change report header to be more alike to ASan and TSan. by Evgeniy Stepanov · 11 years ago
  13. 57434a3 Improve support for compiler-rt tests in CMake build. by Alexey Samsonov · 11 years ago
  14. 5b2afc3 [msan] Fix line >80 chars. by Evgeniy Stepanov · 11 years ago
  15. f32be42 [sanitizer] Intercept getsockopt. by Evgeniy Stepanov · 11 years ago
  16. 0a2cc37 [sanitizer] Interceptors for gethostbyname and friends. by Evgeniy Stepanov · 11 years ago
  17. 9f58c5c [msan] Intercept getsockname. by Evgeniy Stepanov · 11 years ago
  18. 447ef19 [msan] getaddrinfo & nested interceptor support. by Evgeniy Stepanov · 11 years ago
  19. 4d1b383 [MSan] Add empty default blacklist for MSan by Alexey Samsonov · 11 years ago
  20. e6c62f2 [msan] Replace GetArgv hack with something that is slightly better. by Evgeniy Stepanov · 11 years ago
  21. 56d3472 [sanitizer] Intercept pthread_getschedparam. by Evgeniy Stepanov · 11 years ago
  22. 0c547de [nolibc] Begin moving sanitizer_common's libc-dependent code to a separate library by Peter Collingbourne · 11 years ago
  23. 1aad6b5 [msan] Unpoison dlpi_name in dl_iterate_phdr interceptor. by Evgeniy Stepanov · 11 years ago
  24. 2bba4ef [msan] Intercept dl_iterate_phdr. by Evgeniy Stepanov · 11 years ago
  25. 84b35c4 Add sanitizer syscall hooks to the tool's export lists. by Evgeniy Stepanov · 11 years ago
  26. 0b4bf4d [msan] Common flags in MSan. by Sergey Matveev · 11 years ago
  27. 9530eb7 [sanitizer] Intercept inet_pton and inet_ntop. by Evgeniy Stepanov · 11 years ago
  28. 11347bf [MSan] Make a few interface functions accept 'const void *' instead of 'void*' by Alexey Samsonov · 11 years ago
  29. b6c8e47 [msan] Unpoison the result of posix_memalign. by Evgeniy Stepanov · 11 years ago
  30. 103a63e [sanitizer] Intercept getgrnam{_r}, getgrgid{_r}. by Evgeniy Stepanov · 11 years ago
  31. 7cdae16 [msan] Allow clock_getres(, 0). by Evgeniy Stepanov · 11 years ago
  32. b921bf2 [msan] Fix gcc build of msan_test. by Evgeniy Stepanov · 11 years ago
  33. 6d0b7f6 [msan] Fix sigaction test. by Evgeniy Stepanov · 11 years ago
  34. e865045 [msan] Really disable replacement new and delete. by Evgeniy Stepanov · 11 years ago
  35. f1faf5d [MSan] Demangle function name in description of stack origin by Alexey Samsonov · 11 years ago
  36. d10d2d7 [MSan] don't build tests with -fPIE/-pie, as these flags are implied by -fsanitize=memory now by Alexey Samsonov · 11 years ago
  37. 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
  38. 2887a64 [sanitizer] Syscall hooks. by Evgeniy Stepanov · 11 years ago
  39. 897a4ae [sanitizer] Interceptors for wait*. by Evgeniy Stepanov · 11 years ago
  40. a1c2a55 [msan] Intercept glob() with tests. by Evgeniy Stepanov · 11 years ago
  41. 134fe8a [msan] Interceptors for pipe2 and socketpair. by Evgeniy Stepanov · 11 years ago
  42. fef6605 [msan] Intercept time(). by Evgeniy Stepanov · 11 years ago
  43. 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 · 11 years ago
  44. cd3049d [msan] Fix sigaction interceptor. by Evgeniy Stepanov · 11 years ago
  45. a897400 [msan] Conditionally disable new() and delete() wrappers. by Evgeniy Stepanov · 11 years ago
  46. a213ab6 [msan] A runtime option to disable wrapping of signal handlers. by Evgeniy Stepanov · 11 years ago
  47. 7ed46ff [Sanitizer] Use a common mutex to prevent mixing reports from different sanitizers. This fixes PR15516 by Alexey Samsonov · 11 years ago
  48. 0727702 [sanitizer] Use ucontext_t instead of "struct ucontext". by Evgeniy Stepanov · 11 years ago
  49. 06658ea [msan] Unpoison siginfo_t and ucontext_t in signal handlers. by Evgeniy Stepanov · 11 years ago
  50. 583025d [sanitizer] while doing fast unwinding make sure that the frame pointer is aligned; fix lint by Kostya Serebryany · 11 years ago
  51. e4bdda5 [sanitizer] More interceptors. by Evgeniy Stepanov · 11 years ago
  52. 9ae2883 [libsanitizer] Unmapping the old cache partially invalidates the memory layout, so add by Alexander Potapenko · 11 years ago
  53. a06fe91 Build and install .syms files alongside sanitizer runtimes. These are used to by Richard Smith · 12 years ago
  54. 6c503b9 [msan] Handle dlopen() failure in dlopen interceptor. by Evgeniy Stepanov · 12 years ago
  55. 6e5ff89 [msan] Move test main and gtest include to separate files. by Evgeniy Stepanov · 12 years ago
  56. 86b5722 [msan] Place dlopen in an anon namespace. by Evgeniy Stepanov · 12 years ago
  57. 24e1372 [sanitizer] Replace more platform checks with SANITIZER_ constants. by Evgeniy Stepanov · 12 years ago
  58. b9bf700 [sanitizer] Don't adjust the size of the user-allocated stack. by Evgeniy Stepanov · 12 years ago
  59. d97a15a [msan] Intercept readdir64. by Evgeniy Stepanov · 12 years ago
  60. 1d21bd1 [msan] Fix a typo in test. by Evgeniy Stepanov · 12 years ago
  61. 58b52b5 [msan] Options for switching between fast and cfi unwinders in run time. by Evgeniy Stepanov · 12 years ago
  62. 7cbbb29 [sanitizer] Intercept frexp and friends. by Evgeniy Stepanov · 12 years ago
  63. 8aa1ae0 [msan] Intercept __strdup, strndup, __strndup. by Evgeniy Stepanov · 12 years ago
  64. 0ecc437 [sanitizer] Fix lint. by Evgeniy Stepanov · 12 years ago
  65. a7e5db9 [Sanitizer] Build ASan, TSan and MSan runtimes with -fno-rtti. by Alexey Samsonov · 12 years ago
  66. 10fd322 [msan] Increase stack size as required. by Evgeniy Stepanov · 12 years ago
  67. 45717c9 [Sanitizer] Change MemoryMappingLayout methods to also report memory protection flags (for future use in leak checker). Patch by Sergey Matveev. by Alexey Samsonov · 12 years ago
  68. 4c49cca [msan] Use sptr instead of ptrdiff_t. by Evgeniy Stepanov · 12 years ago
  69. 0f92deb [msan] intercept dlopen and clear shadow for it by Reid Kleckner · 12 years ago
  70. 93c2602 [msan] Block reports from interceptors during _Unwind_Backtrace by Reid Kleckner · 12 years ago
  71. 021ba51 [msan] Lit tests for __attribute__((no_sanitize_memory)). by Evgeniy Stepanov · 12 years ago
  72. 372b267 [sanitizer] Add MSan to Makefile-based build rules. by Evgeniy Stepanov · 12 years ago
  73. efbc435 [msan] Use slow stack unwinder in UMR reports. by Evgeniy Stepanov · 12 years ago
  74. f35eae8 [msan] Fix ReExec on linux. by Evgeniy Stepanov · 12 years ago
  75. 9358c58 [sanitizer] Add interceptors for localtime and friends. by Evgeniy Stepanov · 12 years ago
  76. 70c6e3f [msan] don't check shadow inside interceptors if we are inside symbolizer; add weak function __msan_default_options that overrides default options by Kostya Serebryany · 12 years ago
  77. 7eed04c [msan] Allow zero buf pointer in getcwd() interceptor. by Evgeniy Stepanov · 12 years ago
  78. 43fb758 [MSan] symbolize correct PC when printing Summary message by Alexey Samsonov · 12 years ago
  79. 9af8676 [msan] Lit tests for MemorySanitizer. by Evgeniy Stepanov · 12 years ago
  80. 1d333c5 [msan] add strip_path_prefix flag; print error summary; don't crash while printing summary if debug info is missing. The tests will follow later once we establish the lit-like tests for msan. by Kostya Serebryany · 12 years ago
  81. 859778a [sanitizer] make the error messages from sanitizer_common contain the actual tool name by Kostya Serebryany · 12 years ago
  82. 250f221 [sanitizer] Further split private and public sanitizer headers. by Evgeniy Stepanov · 12 years ago
  83. 48ecaf4 Use LLVM_BUILD_TYPE instead of CMAKE_BUILD_TYPE in compiler-rt unit tests to match the behavior of llvm unittests by Alexey Samsonov · 12 years ago
  84. ba5e996 [Sanitizer] update style checker script and fix namespace style warnings by Alexey Samsonov · 12 years ago
  85. 12c4693 [msan] Cleanup public interface header. by Evgeniy Stepanov · 12 years ago
  86. 887a5fe [msan] A runtime call to support custom allocators. by Evgeniy Stepanov · 12 years ago
  87. f1d9fdd [msan] Remove icmp tests that require exact shadow propagation. by Evgeniy Stepanov · 12 years ago
  88. f6acafc [CMake] Fix compiler-rt tests after r173617 by Alexey Samsonov · 12 years ago
  89. 9a22a3d [msan] Tests for ICmp handling. by Evgeniy Stepanov · 12 years ago
  90. 65199f1 [sanitizer] fix calloc overflow in asan/tsan/msan by Kostya Serebryany · 12 years ago
  91. 9e6d3b3 [msan] Allow waitpid while in __msan_init(). by Evgeniy Stepanov · 12 years ago
  92. 95d0588 [msan] gethostbyname interceptor. by Evgeniy Stepanov · 12 years ago
  93. 6c3ad94 [msan] Remove the trap handler code. by Evgeniy Stepanov · 12 years ago
  94. e36d006 [msan] Follow -msan-keep-going in reports from interceptors. by Evgeniy Stepanov · 12 years ago
  95. e9c10e2 [msan] Fix linkage type of __msan_track_origins. by Evgeniy Stepanov · 12 years ago
  96. 02f4a94 [msan] Simplify test code. by Evgeniy Stepanov · 12 years ago
  97. 2efa142 [msan] Test handling of volatile bitfields. by Evgeniy Stepanov · 12 years ago
  98. 1192900 [msan] Stop using volatile assignments as undef checks in MSan tests. by Evgeniy Stepanov · 12 years ago
  99. 7eca152 CMake: use add_compiler_rt_static_runtime to build TSan and MSan runtimes. No functionality change. by Alexey Samsonov · 12 years ago
  100. 392c50d CMake: create AddCompilerRT module and implement convenience add_compiler_rt_object_library function by Alexey Samsonov · 12 years ago