1. 9849309 [asan] Don't require X86 to build Android runtime. by Evgeniy Stepanov · 11 years ago
  2. cf39032 [sanitizer] Fix localtime and gmtime interceptors to clean tm->tm_zone. by Evgeniy Stepanov · 11 years ago
  3. 1d02bea tsan: fix the following compiler warning by Dmitry Vyukov · 11 years ago
  4. fdf10e2 msan: fix compiler warnings about unused variables by Dmitry Vyukov · 11 years ago
  5. c6fc723 tsan: use ninja instead of make (faster and less output) by Dmitry Vyukov · 11 years ago
  6. 43ac401 This fixme is resolved, fix the test. by Nick Lewycky · 11 years ago
  7. d1bf52e Make the InvalidValueData take a SourceLocation. by Nick Lewycky · 11 years ago
  8. c349466 Add top-level CMake 'compiler-rt' target to build all compiler-rt libraries by Alexey Samsonov · 11 years ago
  9. 2946f13 [LSan] Rework r191522 - treat allocations with short stack traces as live by Alexey Samsonov · 11 years ago
  10. 4430fdb [LSan] Don't report leaks with single-frame stack traces by Alexey Samsonov · 11 years ago
  11. 1394be1 [sanitizer] Intercept backtrace, backtrace_symbols. by Evgeniy Stepanov · 11 years ago
  12. e1c68c3 [asan] introduce run-time flag uar_stack_size_log to control the size of FakeStack; don't crash when the fake stack is exhausted, move some code to .cc file by Kostya Serebryany · 11 years ago
  13. cfc29de [msan] Unpoison argument shadow for C++ module destructors. by Evgeniy Stepanov · 11 years ago
  14. c78773e tsan: support allocator_may_return_null flag by Dmitry Vyukov · 11 years ago
  15. 1c571df tsan: fix scanf interceptor by Dmitry Vyukov · 11 years ago
  16. 9a949a8 [sanitizer] A bunch of libc interceptors. by Evgeniy Stepanov · 11 years ago
  17. 9c4fd16 [Sanitizer] Don't include wordexp.h on Android by Alexey Samsonov · 11 years ago
  18. c5a3855 [sanitizer] Intercept wordexp. by Evgeniy Stepanov · 11 years ago
  19. 6186bfc [ASan] Fix GCD tests by spinning forever in the main thread. by Alexander Potapenko · 11 years ago
  20. 1e190da [msan] Test for atomic handling in MSan. by Evgeniy Stepanov · 11 years ago
  21. cf2cabb [asan] remove -fsanitize=use-after-return from the tests (this flag now comes with asan by default) by Kostya Serebryany · 11 years ago
  22. 29296c0 [msan] Fix a WTF in r191196. by Evgeniy Stepanov · 11 years ago
  23. 27ee7a8 [msan] Allow nested symbolizer and loader scopes. by Evgeniy Stepanov · 11 years ago
  24. a8b8e96 [ASan/Win] Slightly optimize the DLL thunk by Timur Iskhodzhanov · 11 years ago
  25. def895b [ASan] Fix a compile-time warning by Timur Iskhodzhanov · 11 years ago
  26. c11fa09 [ASan] Add DLL thunks for the new stack UAR interface by Timur Iskhodzhanov · 11 years ago
  27. f5ebc6a [ASan] Fix the interface test on Darwin. by Alexander Potapenko · 11 years ago
  28. b079602 [asan] disable the detect_stack_use_after_return run-time flag by default and enable it explicitly in tests. This is done in preparation to enabling the -fsanitize=use-after-return compile-time flag by default when -fsanitize=address is present. by Kostya Serebryany · 11 years ago
  29. ccaafe6 tsan: remove unneeded ___chkstk_ms function from Go runtime by Dmitry Vyukov · 11 years ago
  30. 2d2dc46 tsan: allow symbolization of non-native PCs, e.g. coming from JIT/JAVA/etc by Dmitry Vyukov · 11 years ago
  31. 39fa68e tsan: ignore malloc/free/strdup when called from libjvm by Dmitry Vyukov · 11 years ago
  32. d188653 tsan: ignore all interceptors coming directly from JVM by Dmitry Vyukov · 11 years ago
  33. fcb6c9c tsan: improve diagnostics for incorrect usages of mutexes by Dmitry Vyukov · 11 years ago
  34. 821acfa tsan: allow to obtain code range for a particular module by Dmitry Vyukov · 11 years ago
  35. 6c21e11 tsan: intercept fork syscall by Dmitry Vyukov · 11 years ago
  36. d16622b tsan: do not try to use builtin atomic operations see the comment in code by Dmitry Vyukov · 11 years ago
  37. b47d41f tsan: intercept close syscall by Dmitry Vyukov · 11 years ago
  38. 6c70a55 [ASan] Remove a complex multiline comment that baffles lint. by Alexander Potapenko · 11 years ago
  39. e8eeda0 [libsanitizer] Pass an explicit template to mktemp. Running mktemp without a template doesn't work on Darwin. by Alexander Potapenko · 11 years ago
  40. b812253 [ASan] Fix compilation of asan_str_test.cc on non-Darwin. by Alexander Potapenko · 11 years ago
  41. d4d7040 [ASan] Enforce the memmove semantics for both memcpy() and memmove() interceptors on Darwin. by Alexander Potapenko · 11 years ago
  42. 81b0fe0 [asan] nuke yet another async-signal-safety bug in UAR (oh, my) by Kostya Serebryany · 11 years ago
  43. 8e05fda [Sanitizer] Add pthread_cond_init to the list of versioned functions by Alexey Samsonov · 11 years ago
  44. eb0be61 tsan: handle memory read/write in syscalls by Dmitry Vyukov · 11 years ago
  45. ff90a95 tsan: allow to ignore memory accesses in malloc and free by Dmitry Vyukov · 11 years ago
  46. 9880219 tsan: do not crash when user intercepts fopen() by Dmitry Vyukov · 11 years ago
  47. fae2bff tsan: fix linking of tsan runtime into dynamic libraries by Dmitry Vyukov · 11 years ago
  48. b928ac1 [ASan] Fix init-order-dlopen.cc test to not depend on the -Wl,-undefined,dynamic_lookup being passed to the linker. by Alexander Potapenko · 11 years ago
  49. 621770a [asan] fix one more async-signal-safety issue with use-after-return by Kostya Serebryany · 11 years ago
  50. 6b85945 [MSan] Fix -Wempty-body warning by Alexey Samsonov · 11 years ago
  51. c09250f [TSan] Fix -Wempty-body warning by Alexey Samsonov · 11 years ago
  52. 6fa0619 asan/tsan/msan: use builtin atomic operations when available by Dmitry Vyukov · 11 years ago
  53. 9d4956e tsan: prevent the following false positive due to __cxa_atexit by Dmitry Vyukov · 11 years ago
  54. 9c1e4f4 tsan: consistently use thr instead of cur_thread() in annotations implementation by Dmitry Vyukov · 11 years ago
  55. 652f78a tsan: refactor internal IgnoreCtl interface by Dmitry Vyukov · 11 years ago
  56. 2ec7318 [tsan] No-op implementation of AnnotateMemoryIsInitialized. by Evgeniy Stepanov · 11 years ago
  57. 230e52f [asan] add a run-time option detect_stack_use_after_return, add verbosity output for fake stack by Kostya Serebryany · 11 years ago
  58. 6086094 [ASan] Don't add SANITIZER_INTERFACE_ATTRIBUTE for internal ASan functions by Alexey Samsonov · 11 years ago
  59. 4681781 [ASan] Enable fake stack test on Mac and Android, as no-instrumentation tests are now fixed by Alexey Samsonov · 11 years ago
  60. 5d9d807 [ASan] Link tests with -pie if ASan runtime uses zero-base shadow by Alexey Samsonov · 11 years ago
  61. b388987 [asan] further speedup use-after-return: simplify deallocation of fake frames. ~ 20% speedup. by Kostya Serebryany · 11 years ago
  62. 356cff7 Check the function we just called for errors, not an incoming argument. Noticed by Nick Lewycky · 11 years ago
  63. 382bbc8 [ASan] Don't link with pthread on Android by Alexey Samsonov · 11 years ago
  64. 05fa380 [ASan] Split ASan unit tests into two different binaries: by Alexey Samsonov · 11 years ago
  65. 22e21b0 [ASan] Check that getSymbolizer() is defined. Turn magic mapping constants into named variables by Alexey Samsonov · 11 years ago
  66. 7bb2f9b Minor enhancements for sanitizer_common build rules by Alexey Samsonov · 11 years ago
  67. db6d089 [msan] Check return value of main: compiler-rt tests. by Evgeniy Stepanov · 11 years ago
  68. effdc7e [msan] Fix origin of deallocated memory. by Evgeniy Stepanov · 11 years ago
  69. 1effc05 [msan] Add source file:line to stack origin reports. by Evgeniy Stepanov · 11 years ago
  70. 6f34605 [msan] Add source file:line to stack origin reports. by Evgeniy Stepanov · 11 years ago
  71. 7b63608 [msan] Intercept tzset. by Evgeniy Stepanov · 11 years ago
  72. 48abc61 [msandr] Add debugging instructions to README.txt. by Evgeniy Stepanov · 11 years ago
  73. ff64012 [asan] Android does not have TLS by Kostya Serebryany · 11 years ago
  74. 9c59ca8 [ASan] Temporary disable UAR unit test on Android due to https://code.google.com/p/address-sanitizer/issues/detail?id=222 by Alexey Samsonov · 11 years ago
  75. 0f22837 [asan] don't record the class_id in FakeFrame (scratching the last bits of performance) by Kostya Serebryany · 11 years ago
  76. dff16d4 [asan] more performance to FakeStack: a) don't used atomic exchange, instead rely on regular load and store and other signal-safe logic; b) remove allocated_from_size_class_mask_ which is not helping much anyway; Another 10% speedup by Kostya Serebryany · 11 years ago
  77. 9433af3 [asan] second attempt to use TLS with fake stack. This time it looks (more) async-signal safe. by Kostya Serebryany · 11 years ago
  78. b8a903c [asan] undo the previous commit since TLS hack breaks with signals... :( by Kostya Serebryany · 11 years ago
  79. 6147f02 [asan] use TLS on Linux to get the FakeStack. Saves 15% performance by Kostya Serebryany · 11 years ago
  80. 8f7ec32 [asan] inline PoisonShadow in FakeStack to get ~10% speedup by Kostya Serebryany · 11 years ago
  81. 223c838 [dfsan] Add a few easy functions to the ABI list. by Peter Collingbourne · 11 years ago
  82. b1173c2 [asan] a bit of performance improvement in fake stack, generalized one test, fixed android build of another test by Kostya Serebryany · 11 years ago
  83. 89de457 [asan] add a test for use-after-return and exceptions and fix it. Not 100% sure this is a complete fix, will keep looking for harder cases. by Kostya Serebryany · 11 years ago
  84. bdd9545 [ASan] Do not build asan_fake_stack_test.cc on OSX until https://code.google.com/p/address-sanitizer/issues/detail?id=222 is fixed. by Alexander Potapenko · 11 years ago
  85. 3b37dd4 [asan] limit the size of the fake stack with a reasonable constant. This fixes a failure when the main thread's stack is considered unlimited (very large). by Kostya Serebryany · 11 years ago
  86. b39a604 [asan] (part 2) don't lazy-init fake_stack if we only need to check that fake_stack exists (should fix 32-bit builds) by Kostya Serebryany · 11 years ago
  87. dcf98bf [asan] don't lazy-init fake_stack if we only need to check that fake_stack exists (should fix 32-bit builds) by Kostya Serebryany · 11 years ago
  88. c98fc1f [asan] hopefully make the FakeStack async-signal safe, enable the related test by Kostya Serebryany · 11 years ago
  89. 96a575f [asan] Fix deadlock in stack unwinder on android/x86. by Evgeniy Stepanov · 11 years ago
  90. 86b88b8 [asan] use xchg instead of CAS in FakeStack::Allocate (5% faster for this case) by Kostya Serebryany · 11 years ago
  91. ac3ae5d [asan] fully re-implement the FakeStack (use-after-return) to make it faster and async-signal-safe. The implementation is not yet complete (see FIXMEs) but the existing tests pass. by Kostya Serebryany · 11 years ago
  92. 08a0e08 Fix typo by Bill Wendling · 11 years ago
  93. 665efa9 Revert r190520 as it wasn't the right fix. by Daniel Jasper · 11 years ago
  94. a81787d Add empty virtual destructor... by Daniel Jasper · 11 years ago
  95. cac631e [TSan] Use --whole-archive around TSan runtime in old TSan makefiles. Fix a Go build by Alexey Samsonov · 11 years ago
  96. 7a3d5fe [Sanitizer] build sanitizer_common library with -Wglobal-constructors by Alexey Samsonov · 11 years ago
  97. a8b4c3b [TSan] Use Clang to compile and link TSan unit tests with TSan runtime by Alexey Samsonov · 11 years ago
  98. e059bd3 Fixup for r190410: use lazy initialization for symbolizer as some compilers emit global constructor to setup vptr by Alexey Samsonov · 11 years ago
  99. 9213e07 [ASan] Remove the explicit function prototypes for intercepted functions on Windows by Timur Iskhodzhanov · 11 years ago
  100. 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