1. e86e35f [asan] Improve thread lifetime tracking on POSIX systems. by Sergey Matveev · 11 years ago
  2. def895b [ASan] Fix a compile-time warning by Timur Iskhodzhanov · 11 years ago
  3. c11fa09 [ASan] Add DLL thunks for the new stack UAR interface by Timur Iskhodzhanov · 11 years ago
  4. 736cf49 [sanitizer] Move GetStackTrace from ASan to sanitizer_common. by Sergey Matveev · 11 years ago
  5. 30e110e [sanitizer] More renamed macros. by Evgeniy Stepanov · 11 years ago
  6. 24e1372 [sanitizer] Replace more platform checks with SANITIZER_ constants. by Evgeniy Stepanov · 11 years ago
  7. 57db4ba [ASan] minor changes to swapcontext handling: don't clear shadow memory if context stack is too large by Alexey Samsonov · 12 years ago
  8. f4f51f2 asan/tsan: move blocking mutex from asan to sanitizer_common by Dmitry Vyukov · 12 years ago
  9. 219f174 asan: fix FIXME on windows by Dmitry Vyukov · 12 years ago
  10. 52c0684 [asan] fix win build by Kostya Serebryany · 12 years ago
  11. 0870028 [ASan] Add interceptor for swapcontext to fight with false positives in some of its use cases. by Alexey Samsonov · 12 years ago
  12. 0ec37a6 [ASan] Add extern C for __asan_symbolize on Windows by Alexey Samsonov · 12 years ago
  13. 1ca5357 [Sanitizer/ASan] Simplify the code that prints and symbolizes stack traces. Fall back to module+offset if user-provided symbolizer failed. Use weak function __asan_symbolize instead of __asan_set_symbolize_callback in ASan interface, so that we're able to symbolize reports for errors that happen before the main() is called, for example, during module initialization. by Alexey Samsonov · 12 years ago
  14. 69f2174 [asan] fix Windows build by Kostya Serebryany · 12 years ago
  15. c3390df [asan] some renaming before we move StackTrace into sanitizer_common by Kostya Serebryany · 12 years ago
  16. 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
  17. c93d3e2 [ASan] get rid of ASAN_USE_EXTERNAL_SYMBOLIZER compiler def in favor of __asan_set_symbolize_callback interface function. Now the user doesn't have to recompile ASan runtime to provide its own symbolizer by Alexey Samsonov · 12 years ago
  18. 75b19eb Intercept CFAllocator for each thread in the program. by Alexander Potapenko · 12 years ago
  19. de08c02 [Sanitizer] Renaming: SNPrintf -> internal_snprintf (and move it to sanitizer libc) by Alexey Samsonov · 12 years ago
  20. dd3a911 [Sanitizer] move ShadowRangeIsAvailable and several defines to common runtime by Alexey Samsonov · 12 years ago
  21. 4c49666 [Sanitizer] move atomic ops, min/max and sort to commnon runtime by Alexey Samsonov · 12 years ago
  22. fa3daaf [Sanitizer] move more portability wrappers to common runtime: sleep, _exit, abort, atexit, pthread_self by Alexey Samsonov · 12 years ago
  23. be7420c [Sanitizer] move DumpProcessMap and DisableCoreDumper to common runtime by Alexey Samsonov · 12 years ago
  24. f607fc1 [Sanitizer] move rest of mmap routines to common sanitizer runtime by Alexey Samsonov · 12 years ago
  25. 3dbeabb [Sanitizer] move portable GetEnv to common sanitizer runtime by Alexey Samsonov · 12 years ago
  26. 996651d [ASan] don't include deleted header by Alexey Samsonov · 12 years ago
  27. e5931fd [Sanitizer] factor out GetThreadStackTopAndBottom from ASan runtime to common. by Alexey Samsonov · 12 years ago
  28. a25b346 [Sanitizer] Switch to common mmap/munmap routines in ASan run-time. by Alexey Samsonov · 12 years ago
  29. e0cff0b [asan] make tid u32 instead of int by Kostya Serebryany · 12 years ago
  30. 7ebac95 [asan] start compacting the allocator header, the goal is to make it 16 bytes w/o losing any information by Kostya Serebryany · 12 years ago
  31. 230c3be [Sanitizer] Move more functions/constants to sanitizer_common. by Alexey Samsonov · 12 years ago
  32. 2221f55 [ASan] use internal_{close,read,write} in ASan runtime. by Alexey Samsonov · 12 years ago
  33. 9552db7 [ASan] use internal_open from sanitizer_libc in ASan runtime by Alexey Samsonov · 12 years ago
  34. 45c8d1b [asan] partial fix for windows build by Kostya Serebryany · 12 years ago
  35. ee39255 [asan] more renaming by Kostya Serebryany · 12 years ago
  36. 3f4c387 [asan] more renaming by Kostya Serebryany · 12 years ago
  37. 8c505ef [ASan] Make for-Windows RTL compileable using Clang++ by Timur Iskhodzhanov · 12 years ago
  38. f8e6fee [asan] add flags: disable_core, abort_on_error and unmap_shadow_on_exit by Kostya Serebryany · 12 years ago
  39. 00152bf [ASan/Win] Fix lint warning by Timur Iskhodzhanov · 12 years ago
  40. 8a5d8c4 [ASan/Win] Fix build by using inline assembly instead of an unavailable intrinsic function by Timur Iskhodzhanov · 12 years ago
  41. f1e82b8 [asan] make __asan::Deallocate immune to racy double-free (issue #57) by Kostya Serebryany · 12 years ago
  42. f03d8af Introduce the use_sigaltstack flag (off by default), which enables using alternate by Alexander Potapenko · 12 years ago
  43. 23bd2bb [ASan/Win] Eliminate a couple of FIXMEs, add NORETURN to CheckFailed/UNIMPLEMENTED by Timur Iskhodzhanov · 12 years ago
  44. 2716a61 [ASan] Add back the support for /MT; intercept statically-linked functions by Timur Iskhodzhanov · 12 years ago
  45. 27a7800 [ASan] Use WriteFile instead of fwrite in AsanWrite by Timur Iskhodzhanov · 12 years ago
  46. 25c7178 [asan] use O(log(N)) algorithm instead of O(N) in __asan_get_ownership by Kostya Serebryany · 13 years ago
  47. 600972e [ASan] Intercept CreateThread on Windows by Timur Iskhodzhanov · 13 years ago
  48. b823e3c AddressSanitizer: get rid of stdlib.h and add (smaller) stddef.h instead by Alexey Samsonov · 13 years ago
  49. 07bb9f1 [ASan] Intercept functions on Windows - first version by Timur Iskhodzhanov · 13 years ago
  50. 99d17eb Move the contents of AsanProcMaps::Dump() into AsanDumpProcessMaps() for Posix systems. by Alexander Potapenko · 13 years ago
  51. e1fe0fd [asan] implement __asan_set_death_callback by Kostya Serebryany · 13 years ago
  52. f73a6a3 Move the non-trivial implementation of AsanShadowRangeIsAvailable to asan_mac.cc by Alexander Potapenko · 13 years ago
  53. 3e81fe4 [asan] The first version of the RTL for Windows, reviewed at http://codereview.appspot.com/5647052 by Timur Iskhodzhanov · 13 years ago