summaryrefslogtreecommitdiff
path: root/lib/sanitizer_common/sanitizer_allocator.cc
AgeCommit message (Expand)Author
2017-11-21[sanitizers] Add init function to set alignment of low level allocatorWalter Lee
2017-07-18[Sanitizers] ASan/MSan/LSan allocators set errno on failure.Alex Shlyapnikov
2017-06-29MergeAlex Shlyapnikov
2017-06-28[Sanitizers] Operator new() interceptors always die on allocation errorAlex Shlyapnikov
2017-06-20[Sanitizers] Move cached allocator_may_return_null flag to sanitizer_allocatorAlex Shlyapnikov
2017-06-16[Sanitizer] Remove CombinedAllocator::Allocate's 'cleared' parameterAlex Shlyapnikov
2016-11-29Return memory to OS right after free (not in the async thread).Evgeniy Stepanov
2016-10-28tsan: always define SANITIZER_GODmitry Vyukov
2016-09-29Don't use internal symbolizer if we are in process of reporting Out-of-Memory.Vitaly Buka
2016-07-20tsan: fix windows buildDmitry Vyukov
2016-06-06[tsan] Switch to InternalAlloc everywhere __libc_malloc is currently usedKuba Brecka
2015-09-30[sanitizer_common] Apply modernize-use-nullptr, other minor fixesVedant Kumar
2014-12-12[Sanitizer] Introduce Allocator::may_return_null bool flag.Alexey Samsonov
2014-02-28tsan: allow to force use of __libc_malloc in sanitizer_commonDmitry Vyukov
2014-02-26Reapply r201910. MSVC gets __func__ defined explicitly, even though itJoerg Sonnenberger
2014-02-22Revert "Replace __FUNCTION__ with __func__, the latter being standard C99/C++...Reid Kleckner
2014-02-21Replace __FUNCTION__ with __func__, the latter being standard C99/C++11.Joerg Sonnenberger
2013-09-06[sanitizer] make the allocator crash instead of returning 0 on huge size (con...Kostya Serebryany
2013-05-29[sanitizer] Use raw check in internal allocator to prevent self-deadlocks. Tr...Alexey Samsonov
2013-05-29Make InternalAlloc/InternalFree in sanitizer runtimes libc-free by switching ...Alexey Samsonov
2013-04-03[Sanitizer] Kill the remainders of platform defines in favor of SANITIZER_ de...Alexey Samsonov
2013-03-19[sanitizer] Replace more platform checks with SANITIZER_ constants.Evgeniy Stepanov
2013-01-25[sanitizer] improve the calloc overflow check (spotted by samsonov@)Kostya Serebryany
2013-01-25[sanitizer] fix calloc overflow in asan/tsan/msanKostya Serebryany
2012-12-03[tsan] remove unused InternalAllocBlock as part of larger refactoringKostya Serebryany
2012-11-24[asan/tsan] get rid of kPageSize completely in favor of GetPageSizeCached(). ...Kostya Serebryany
2012-09-10[asan] There is no __libc_malloc on Android.Evgeniy Stepanov
2012-08-27[Sanitizer] align allocation sizes in low level allocatorAlexey Samsonov
2012-08-27[Sanitizer] move low-level (mmap-based) allocator to sanitizer_commonAlexey Samsonov
2012-07-05tsan: Go language supportDmitry Vyukov
2012-06-25tsan: remove internal allocator, switch to sanitizer_common one.Dmitry Vyukov
2012-06-09[Sanitizer] Use __libc_malloc/__libc_free instead of malloc/free inside inter...Alexey Samsonov
2012-06-07[Sanitizer] include stdlib.h header to get malloc/freeAlexey Samsonov
2012-06-07[Sanitizer] Allocator for internal runtime purposes. Currently it calls libcm...Alexey Samsonov