1. d2f2615 Revert r163415 in an attempt to bring back the buildbots. by Chad Rosier · 12 years ago
  2. 4a4719c [asan] There is no __libc_malloc on Android. by Evgeniy Stepanov · 12 years ago
  3. 8d6e3f7 Allow to call strchr() from __asan_init(). Fixes PR13794. by Alexander Potapenko · 12 years ago
  4. 5b36c14 build/clang_darwin: Add the ASAN dynamic library. by Daniel Dunbar · 12 years ago
  5. 0d02f1f [asan] Use a relative include path instead of requiring build system involvement. by Daniel Dunbar · 12 years ago
  6. 38b7c1b build: Teach Makefile build system about asan/dynamic subdir. by Daniel Dunbar · 12 years ago
  7. 8bc01cb build: Add support for building dylibs. by Daniel Dunbar · 12 years ago
  8. f4e21fb [asan] Suppress some bogus -Winvalid-noreturn diagnostics. by Daniel Dunbar · 12 years ago
  9. 0c2feef tsan: ignore destruction of global mutexes (causes a lot of non-interesting reports) by Dmitry Vyukov · 12 years ago
  10. 8e23d27 Remove the infinite recursion check for now, as we don't have __thread on Mac, and TSD is an overkill. by Alexander Potapenko · 12 years ago
  11. 5aabcb5 Two minor changes: by Alexander Potapenko · 12 years ago
  12. 7315c26 [asan] Raise quarantine size a bit with ASAN_LOW_MEMORY. by Evgeniy Stepanov · 12 years ago
  13. d796359 [ASan] hack initialization-bug test so that it stably passes on both Linux and Mac: make the bug appear independent of the translation unit order by Alexey Samsonov · 12 years ago
  14. ef69812 [ASan] add Linux-specific test for initialization order that checks that we find a bug independently of translation units order by Alexey Samsonov · 12 years ago
  15. 3bb7e52 [Sanitizer] add --demangle option to llvm-symbolizer (for now just assume that __cxa_demangle option is available) by Alexey Samsonov · 12 years ago
  16. 03e23bb tsan: fix code style by Dmitry Vyukov · 12 years ago
  17. 0ab628c tsan: increase max shadow stack size + reduce memory consumption at the same time (by not memorizing full stacks in traces) by Dmitry Vyukov · 12 years ago
  18. dd5a237 tsan: fix Go build script by Dmitry Vyukov · 12 years ago
  19. 78c7f57 Fix two compiler warnings: must use at least one argument for "..." in a variadic macros, signed vs. unsigned comparison. by Alexander Potapenko · 12 years ago
  20. e0e9eea [asan] Use __ANDROID__ guard in asan_test. by Evgeniy Stepanov · 12 years ago
  21. e9f5785 Use the return value of dladdr() to avoid Clang warning. by Alexander Potapenko · 12 years ago
  22. 6d924fa [asan] increase max stack size to 256 (+test) by Kostya Serebryany · 12 years ago
  23. 6d8091d Add "movsbl %dh, %ecx" and "testb %r8, %r8" to mach_override. by Alexander Potapenko · 12 years ago
  24. ba534e7 [ASan] actually remove old makefile by Alexey Samsonov · 12 years ago
  25. 8cc1f81 [TSan] add support for running external symbolizer other than addr2line (for testing purposes) by Alexey Samsonov · 12 years ago
  26. 03e699f [Sanitizer] remove unused field by Alexey Samsonov · 12 years ago
  27. 5b1f020 [ASan] Nuke output_tests/ in favor of lit_tests/. Stop using Makefile.old. by Alexey Samsonov · 12 years ago
  28. ff392a4 [asan] increase the maximal size of malloc/free stack by Kostya Serebryany · 12 years ago
  29. d1b8f58 [Sanitizer] implement readlink as syscall on Linux by Alexey Samsonov · 12 years ago
  30. 4a78b1e [ASan] Hack ASan lit config to allow running lit on tests manually by Alexey Samsonov · 12 years ago
  31. 5f799c7 [asan] added tests for asan-initialization-order, patch by Reid Watson by Kostya Serebryany · 12 years ago
  32. 0f7d4a4 [ASan] hoist more compile flags to SANITIZER_COMMON_CFLAGS var and add the rest of flags/defs from old Makefile to CMake by Alexey Samsonov · 12 years ago
  33. 656e4ee [ASan] Add CMake support for building ASan benchmarks by Alexey Samsonov · 12 years ago
  34. 71b42c9 [ASan] Add print_full_thread_history runtime option (on by default) that prints all full thread creation paths for threads involved in ASan error report by Alexey Samsonov · 12 years ago
  35. 1dc4cf7 [Sanitizer] Remove implicit conversion of InternalScopedBuffer<T> to T* by Alexey Samsonov · 12 years ago
  36. 38e853d [Sanitizer] Support for reading inlined frames from llvm-symbolizer by Alexey Samsonov · 12 years ago
  37. c5fee8e [compiler-rt] Recurse into 'utils' directory in CMake build of compiler-rt, enable build of llvm-symbolizer binary (currently for one target only) by Alexey Samsonov · 12 years ago
  38. 92656f8 [Sanitizer] llvm-symbolizer util: make it more conforming to LLVM code style, and support fetching inlining info by Alexey Samsonov · 12 years ago
  39. aaac6e2 tsan: do not crash with obscure message if a user passes invalid arguments to malloc/free/memset/etc by Dmitry Vyukov · 12 years ago
  40. 41e8153 tsan: insert cfi directives into assembly (not fully working for now, though) by Dmitry Vyukov · 12 years ago
  41. 0542644 tsan: more robust current thread stack restoration by Dmitry Vyukov · 12 years ago
  42. 1da1056 tsan: better diagnostics for mutex misuse by Dmitry Vyukov · 12 years ago
  43. 9adce67 tsan: fix crash when users pass insane mutex addresses in dynamic annotations by Dmitry Vyukov · 12 years ago
  44. 8485311 tsan: add "as if synchronized via sleep" feature by Dmitry Vyukov · 12 years ago
  45. 1b1de03 tsan: fix windows build (2) by Dmitry Vyukov · 12 years ago
  46. 0d9c08d tsan: fix windows build (1) by Dmitry Vyukov · 12 years ago
  47. c00e30a tsan: slightly optimize mutex unlock by Dmitry Vyukov · 12 years ago
  48. 7643a50 tsan: more precise handling of atomic_store(memory_order_release) by Dmitry Vyukov · 12 years ago
  49. 84112a3 tsan: improve stack depot by Dmitry Vyukov · 12 years ago
  50. c79c21f [tsan] locate the auxilary space for tsan's Allocator64 after the main region, not before. This simplifies the shadow mappings by Kostya Serebryany · 12 years ago
  51. 98ea507 [Sanitizer] fix overloaded operator error by Alexey Samsonov · 12 years ago
  52. 2132d13 [compiler-rt] fixup for r162988 - remove accidentally commited file by Alexey Samsonov · 12 years ago
  53. 8790f0a [compiler-rt] Move draft code for llvm-symbolizer to compiler-rt/utils/llvm-symbolizer after chandlerc's suggestion by Alexey Samsonov · 12 years ago
  54. 2acf556 [Sanitizer] Remove some calls to libc malloc from symbolizer by Alexey Samsonov · 12 years ago
  55. 678b2fe [Sanitizer] Resolve fixme: break dependency of sanitizer_common tests on TSan RTL by Alexey Samsonov · 12 years ago
  56. 02aa242 [Sanitizer] Make lint checking a standalone script in sanitizer_common by Alexey Samsonov · 12 years ago
  57. 184fdd7 [Sanitizer] Remove lint checkers from our old makefiles in favor of buildbot by Alexey Samsonov · 12 years ago
  58. ada9236 [TSan] Fix style warinings in output test by Alexey Samsonov · 12 years ago
  59. 5092682 Whitespace/lint by Alexey Samsonov · 12 years ago
  60. af31087 tsan: speed up allocator64 GetBlockBegin() by Dmitry Vyukov · 12 years ago
  61. 9d6f5a8 tsan: simplify TSAN_HISTORY_SIZE code by Dmitry Vyukov · 12 years ago
  62. ff35f1d tsan: use stack depot to describe heap blocks by Dmitry Vyukov · 12 years ago
  63. 1b37017 asan/tsan: first version of "stack depot" by Dmitry Vyukov · 12 years ago
  64. 6282567 [ASan] fix flakiness of Linux-specific clone_test: waitpid should better be provided with __WCLONE option, otherwise it didn't wait for the subprocess, returned -1, and we went crushing the subprocess stack by Alexey Samsonov · 12 years ago
  65. 2122f70 For invalid pointers passed to free_common check whether they are actually skewed to hold an additional CFAllocatorRef. by Alexander Potapenko · 12 years ago
  66. 4fa111c [asan/tsan] use InternalScopedBuffer instead of stack arrays. Use mmap inseted of InternalAlloc in InternalScopedBuffer by Kostya Serebryany · 12 years ago
  67. 5f0297b [tsan] fix tsan's Makefile.old -- our build bot still uses it (hopefully, will soon migrate to cmake completely) by Kostya Serebryany · 12 years ago
  68. a60844d [asan] fix asan's Makefile.old -- our build bot still uses it (hopefully, will soon migrate to cmake completely) by Kostya Serebryany · 12 years ago
  69. d865fec Relocate the external headers provided by ASan and the common sanitizer library. by Chandler Carruth · 12 years ago
  70. 60ab090 Some flag cleanup for the sanitizer runtimes. by Chandler Carruth · 12 years ago
  71. 80acccf [asan] one more fix for windows build by Kostya Serebryany · 12 years ago
  72. 9ada1f3 [asan] fix the cmake build (hopefully) by Kostya Serebryany · 12 years ago
  73. c7be407 [asan] actually doing 'svn add' helps by Kostya Serebryany · 12 years ago
  74. 69f2174 [asan] fix Windows build by Kostya Serebryany · 12 years ago
  75. 1b5ea8f [asan] actually move StackTrace to sanitizer_common by Kostya Serebryany · 12 years ago
  76. cc34722 [asan] even more refactoring to move StackTrace to sanitizer_common by Kostya Serebryany · 12 years ago
  77. 2b939c3 [asan] more refactoring to move StackTrace to sanitizer_common by Kostya Serebryany · 12 years ago
  78. 8757a68 [ASan] CMake build: share more compile flags between instrumented and non-instrumented tests by Alexey Samsonov · 12 years ago
  79. 4c2ddda [asan] some renaming before we move StackTrace into sanitizer_common (part 2) by Kostya Serebryany · 12 years ago
  80. c3390df [asan] some renaming before we move StackTrace into sanitizer_common by Kostya Serebryany · 12 years ago
  81. 283c296 [asan] get rid of AsanPrintf in favor of Printf from sanitizer_common by Kostya Serebryany · 12 years ago
  82. 2c29212 [asan] improve SetErrorReportCallbackTest to actually catch missing functionality in __asan_set_error_report_callback by Kostya Serebryany · 12 years ago
  83. 3ec16c5 [Sanitizer] Allow to create stub MemoryMappingLayout on Windows by Alexey Samsonov · 12 years ago
  84. f7fa68f [Sanitizer] One more method stub for Windows by Alexey Samsonov · 12 years ago
  85. d883c80 [Sanitizer] align allocation sizes in low level allocator by Alexey Samsonov · 12 years ago
  86. b100277 CMake build rules for ASan/Android runtime. by Evgeniy Stepanov · 12 years ago
  87. 985aaaa [Sanitizer] One more try to fix Windows build by Alexey Samsonov · 12 years ago
  88. 947fbd1 [Sanitizer] Use low-level allocator in flag parsing to avoid calling malloc() before ASan/TSan initialization is done by Alexey Samsonov · 12 years ago
  89. e1f5dac [Sanitizer] Rename ProcessMaps to MemoryMappingLayout and fix Windows build by providing stub implementation by Alexey Samsonov · 12 years ago
  90. 1069b9a [ASan] add missing build dependency on sanitizer_common headers by Alexey Samsonov · 12 years ago
  91. 3891ce6 A few tweaks for building ASanRT against Android NDK. by Evgeniy Stepanov · 12 years ago
  92. 70e177e [Sanitizer] move low-level (mmap-based) allocator to sanitizer_common by Alexey Samsonov · 12 years ago
  93. ae46cd0 tsan: improve memory allocator a bit by Dmitry Vyukov · 12 years ago
  94. f5b925f Revert the erroneous changes made to Makefile.old in r162547 by Alexander Potapenko · 12 years ago
  95. eb8c46e If the program is linked to a dynamic ASan runtime which is not present in DYLD_INSERT_LIBRARIES by Alexander Potapenko · 12 years ago
  96. 1e2525d Add add_clang_runtime_shared_library() CMake function and use it to put the shared ASan runtime in the appropriate place. by Alexander Potapenko · 12 years ago
  97. ffad0c4 tsan: allow to override per-thread event trace size by Dmitry Vyukov · 12 years ago
  98. 557042c tsan: fix new memory allocator by Dmitry Vyukov · 12 years ago
  99. 5e26975 [Sanitizer] Add external symbolizer binary. Next steps - include it in CMake build (produce 32-bit and 64-bit version of it, make sure we can compile LLVM sources with our own flags) and add tests for it. by Alexey Samsonov · 12 years ago
  100. af198e4 Re-implement the wrappers for libdispatch functions using blocks where appropriate by Alexander Potapenko · 12 years ago