1. 04a2281 [nolibc] Move libc-dependent sanitizer_posix.cc code to sanitizer_posix_libcdep.cc. by Peter Collingbourne · 11 years ago
  2. 4df343a [nolibc] Move GetPageSize to the individual platforms. by Peter Collingbourne · 11 years ago
  3. 0b694fc [nolibc] Move all platforms to internal_getpid. by Peter Collingbourne · 11 years ago
  4. 9578a3e [nolibc] Change internal syscall API to remove reliance on libc's errno. by Peter Collingbourne · 11 years ago
  5. 3e3f80d [sanitizer] Fix build breakage in Go TSan. by Sergey Matveev · 11 years ago
  6. 736cf49 [sanitizer] Move GetStackTrace from ASan to sanitizer_common. by Sergey Matveev · 11 years ago
  7. 46f9395 [Sanitizer] Kill the remainders of platform defines in favor of SANITIZER_ defines by Alexey Samsonov · 12 years ago
  8. 9ae2883 [libsanitizer] Unmapping the old cache partially invalidates the memory layout, so add by Alexander Potapenko · 12 years ago
  9. 24e1372 [sanitizer] Replace more platform checks with SANITIZER_ constants. by Evgeniy Stepanov · 12 years ago
  10. 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
  11. a8d37a0 [ASan] don't call strerr from functions that map memory, since this results in malloc(). by Alexander Potapenko · 12 years ago
  12. f882247 [Sanitizer] use raw syscall instead of _exit() function on Linux by Alexey Samsonov · 12 years ago
  13. 0fa691b [Sanitizer] Make temporary filename depend on user ID by Alexey Samsonov · 12 years ago
  14. ee7cc44 [Sanitizer] make internal_open have the same interface as libc version by Alexey Samsonov · 12 years ago
  15. 859778a [sanitizer] make the error messages from sanitizer_common contain the actual tool name by Kostya Serebryany · 12 years ago
  16. c8490e2 tsan: fix the message (tsan is not asan) by Dmitry Vyukov · 12 years ago
  17. a54aec8 [asan/tsan] when unmapping a chunk of user memory, apply madvise(MADV_DONTNEED) to the corresponding chunk of shadow memory. Also update sanitizer_allocator64_testlib.cc by Kostya Serebryany · 12 years ago
  18. 9bfe78f [sanitizer] introduce MmapFixedOrDie and use it in SizeClassAllocator64 by Kostya Serebryany · 12 years ago
  19. d698edc tsan: dynamic history size by Dmitry Vyukov · 12 years ago
  20. f67ec2b [asan] get rid of some of the uses of kPageSize. The intent is to get rid of it completely to support platforms with multiple possible page sizes. by Kostya Serebryany · 12 years ago
  21. 6b641c5 tsan: slightly relax requirements for lazy shadow memory (can overlap and may not be properly aligned) by Dmitry Vyukov · 12 years ago
  22. be1a4c4 tsan: fix debug output by Dmitry Vyukov · 12 years ago
  23. 785a7c0 tsan: better diagnostics for failed mmap() by Dmitry Vyukov · 12 years ago
  24. 84d57b4 [Sanitizer] Add internal_isatty to sanitizer_libc and PrintsToTty to determine whether error reports are printed to terminal by Alexey Samsonov · 12 years ago
  25. e8216fd [asan] properly report mmap failure by Kostya Serebryany · 12 years ago
  26. e0023f7 tsan: fix mac build by Dmitry Vyukov · 12 years ago
  27. 7dccf3f tsan: output tid's in reports by Dmitry Vyukov · 12 years ago
  28. d7e5bb4 [Sanitizer] Hoist functions to get/set stack size and re-exec from memory-sanitizer branch to sanitizer_common by Alexey Samsonov · 12 years ago
  29. e1f5dac [Sanitizer] Rename ProcessMaps to MemoryMappingLayout and fix Windows build by providing stub implementation by Alexey Samsonov · 12 years ago
  30. 0aa04b3 [asan] better diagnostics for mmap failure by Kostya Serebryany · 12 years ago
  31. b78caa6 tsan: Go language support by Dmitry Vyukov · 12 years ago
  32. a68633f [Sanitizer] Extend a symbolizer code. Implemented for Linux only. Use dl_iterate_phdr to get virtual addresses of mapped module sections. To symbolize an address from a module, map this module to memory and obtain pointers to debug info sections. Later these pointers can be passed to constructor of DWARF context-in-memory from LLVM DebugInfo lib. by Alexey Samsonov · 12 years ago
  33. b6eb56f tsan/asan: first try on msvc atomics by Dmitry Vyukov · 12 years ago
  34. a4e4744 [asan] get rid of libc's sscanf as it causes infinite recursion on Fedora. by Kostya Serebryany · 12 years ago
  35. 84902c7 [TSan] kill some linux-specific code in favor of code in common runtime: reuse wrappers for mmap routines, ProcessMaps iterator, thread stack calculation by Alexey Samsonov · 12 years ago
  36. 0969bcf [Sanitizer] move different wrappers from TSan to common sanitizer runtime by Alexey Samsonov · 12 years ago
  37. b84ee02 [Sanitizer] Use mmaped buffer in DumpProcessMaps to avoid large stack frames by Alexey Samsonov · 12 years ago
  38. dd3a911 [Sanitizer] move ShadowRangeIsAvailable and several defines to common runtime by Alexey Samsonov · 12 years ago
  39. 4c49666 [Sanitizer] move atomic ops, min/max and sort to commnon runtime by Alexey Samsonov · 12 years ago
  40. fa3daaf [Sanitizer] move more portability wrappers to common runtime: sleep, _exit, abort, atexit, pthread_self by Alexey Samsonov · 12 years ago
  41. be7420c [Sanitizer] move DumpProcessMap and DisableCoreDumper to common runtime by Alexey Samsonov · 12 years ago
  42. f607fc1 [Sanitizer] move rest of mmap routines to common sanitizer runtime by Alexey Samsonov · 12 years ago
  43. a25b346 [Sanitizer] Switch to common mmap/munmap routines in ASan run-time. by Alexey Samsonov · 12 years ago
  44. 230c3be [Sanitizer] Move more functions/constants to sanitizer_common. by Alexey Samsonov · 12 years ago
  45. 94b5036 [Sanitizer] rename sanitizer_defs.h to sanitizer_internal_defs.h by Alexey Samsonov · 12 years ago
  46. 1f11d31 [Sanitizer] add sanitizer_posix.cc. Move more various functions into sanitizer_libc: sscanf, munmap, memchr by Alexey Samsonov · 12 years ago