1. 799172d Update aosp/master compiler-rt for rebase to r256229 by Pirama Arumuga Nainar · 9 years ago
  2. 86277eb Update aosp/master compiler-rt for rebase to r230699. by Stephen Hines · 9 years ago
  3. 2d1fdb2 Update compiler-rt aosp/master for 3.5 (r209699) rebase. by Stephen Hines · 10 years ago
  4. e1f1661 [ASan] Do not protect the malloc zone created by malloc_zone_create() on Snow Leopard and earlier systems. by Alexander Potapenko · 11 years ago
  5. 6b233ed [ASan][OSX] Make sure the zones created by malloc_create_zone() are write-protected. by Alexander Potapenko · 11 years ago
  6. 66ad412 [ASan][OSX] Fix the incorrect malloc_create_zone() implementation that led to out-of-bounds mprotect()s by Alexander Potapenko · 11 years ago
  7. 649a270 [ASan] Kill the remainders of platform defines in favor of SANITIZER_ defines by Alexey Samsonov · 11 years ago
  8. def1be9 [ASan] Switch ASan to generic ThreadRegistry from sanitizer_common. Delete ASan-specific AsanThreadRegistry. by Alexey Samsonov · 11 years ago
  9. c25e62b [ASan] Move malloc stats collection away from AsanThreadRegistry class. by Alexey Samsonov · 11 years ago
  10. 30e110e [sanitizer] More renamed macros. by Evgeniy Stepanov · 11 years ago
  11. 24e1372 [sanitizer] Replace more platform checks with SANITIZER_ constants. by Evgeniy Stepanov · 11 years ago
  12. eba4803 [ASan] Use dylib interposition to hook memory allocation in the dynamic runtime. by Alexander Potapenko · 12 years ago
  13. fe6d916 [asan] add a flag alloc_dealloc_mismatch (off by default for now) which finds malloc/delete, new/free, new/delete[], etc mismatches by Kostya Serebryany · 12 years ago
  14. a1ff0d1 [asan] fix mac build by Kostya Serebryany · 12 years ago
  15. a30c8f9 [asan] add two asan flags: fast_unwind_on_fatal and fast_unwind_on_malloc to allow using the slow CFI-based unwinder by Kostya Serebryany · 12 years ago
  16. 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
  17. ec3a5a2 [ASan] Rename ReplaceCFAllocator to MaybeReplaceCFAllocator. by Alexander Potapenko · 12 years ago
  18. 35b6614 [Sanitizer] Remove unneeded returns after UNIMPLEMENTED macro by Alexey Samsonov · 12 years ago
  19. ca2cdd9 Give more accurate malloc statistics to malloc_zone_statistics(). by Alexander Potapenko · 12 years ago
  20. 4ea14c2 [ASan] more macro/casting magic to suppress warnings by Alexey Samsonov · 12 years ago
  21. 938c1ba Initial support for malloc_zone_statistics. All counters are set to zero now. by Alexander Potapenko · 12 years ago
  22. 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
  23. 283c296 [asan] get rid of AsanPrintf in favor of Printf from sanitizer_common by Kostya Serebryany · 12 years ago
  24. 0ef5310 Commit the source and CMake changes that will allow to build ASan runtime by Alexander Potapenko · 12 years ago
  25. 79fc3c0 Remove the setjmp.h dependency, fix the comment. by Alexander Potapenko · 12 years ago
  26. d262653 Temporary fix for http://code.google.com/p/address-sanitizer/issues/detail?id=99: by Alexander Potapenko · 12 years ago
  27. 663c501 [ASan] Move mac-specific error reports to asan_report.cc as well by Alexey Samsonov · 12 years ago
  28. 75b19eb Intercept CFAllocator for each thread in the program. by Alexander Potapenko · 12 years ago
  29. cb8c4dc [ASan] Use common flags parsing machinery. by Alexey Samsonov · 12 years ago
  30. 0fedcd5 Small fix: do not replace the default CFAllocator if it has been replaced already. by Alexander Potapenko · 12 years ago
  31. 23a3b76 Because CFAllocatorCreate() should also be called after __CFInitialize() on Lion, by Alexander Potapenko · 12 years ago
  32. bf9f6fb A portable way to check whether __CFInitialize has been called: compare kCFAllocatorSystemDefault._base._cfisa to 0. by Alexander Potapenko · 12 years ago
  33. d079db6 Do not check for __CFRuntimeClassTableSize on non-10.6 systems, where this symbol is private. by Alexander Potapenko · 12 years ago
  34. decaec9 Fix http://code.google.com/p/address-sanitizer/issues/detail?id=87 by making sure we replace the default CFAllocator only after __CFInitialize has been called. by Alexander Potapenko · 12 years ago
  35. e93be84 Do not call malloc_zone_from_ptr() for the pointers passed to mz_size() and mz_free(). by Alexander Potapenko · 12 years ago
  36. 0aa794d Factor the common code out of cf_free and mz_free. by Alexander Potapenko · 12 years ago
  37. e205a9d Actually intercept free() to ensure that the deallocations caused by other functions directly calling it are routed to our allocator. by Alexander Potapenko · 12 years ago
  38. e954101 [Sanitizer]: Introduce a common internal printf function. For now, also use tool-specific wrappers TsanPrintf (its output is controlled by TSan flags) and AsanPrintf (which copies its results to the ASan-private buffer). Supported formats: %[z]{d,u,x}, %s, %p. Re-write all format strings in TSan according to this format (this should have no effect on 64-bit platforms). by Alexey Samsonov · 12 years ago
  39. e5f5895 Remove file-type tags for .cc files in ASan run-time library by Alexey Samsonov · 12 years ago
  40. 3f4c387 [asan] more renaming by Kostya Serebryany · 12 years ago
  41. ebb9702 Add internal_memset and replace the uses of REAL(memset) with it where the performance allows. by Alexander Potapenko · 12 years ago
  42. eeb7191 Make sure to properly ifdef out an unused function on OSX < 10.6. PR12136. Patch from Jeremy Huddleston. by Eli Friedman · 13 years ago
  43. 5b29018 AddressSanitizer: start factoring out interception machinery by Alexey Samsonov · 13 years ago
  44. 09672ca AddressSanitizer: replace all "real_X" calls with "REAL(X)" by Alexey Samsonov · 13 years ago
  45. 4fd95f1 AddressSanitizer: add support for malloc_usable_size() function by Alexey Samsonov · 13 years ago
  46. c1ef2a0 asan: #if 0 out some unused functions (we build with -Werror). by Daniel Dunbar · 13 years ago
  47. d6567c5 [asan] flatten the asan-rt build slightly by Kostya Serebryany · 13 years ago
  48. 1e172b4 AddressSanitizer run-time library. Not yet integrated with the compiler-rt build system, but can be built using the old makefile. See details in README.txt by Kostya Serebryany · 13 years ago