summaryrefslogtreecommitdiff
path: root/lib/asan/asan_posix.cc
AgeCommit message (Expand)Author
2014-03-04A set of trivial changes to support sanitizers on FreeBSD.Alexey Samsonov
2014-02-19[asan] A different way of detectinb stack overflow.Evgeniy Stepanov
2014-02-11[sanitizer] Use system unwinder in signal handlers on Android.Evgeniy Stepanov
2014-01-31[ASan] Move the SIGSEGV/SIGBUS handling to sanitizer_commonAlexander Potapenko
2014-01-28[ASan] Fix compilation.Alexander Potapenko
2014-01-28[ASan] Move the sigaltstack() bits to sanitizer_common.Alexander Potapenko
2014-01-28[ASan] Move the signal handling-related flags to sanitizer_common.Alexander Potapenko
2013-12-05[sanitizer] Introduce VReport and VPrintf macros and use them in sanitizer code.Sergey Matveev
2013-10-15tsan: move verbosity flag to CommonFlagsDmitry Vyukov
2013-10-14[asan] Improve thread lifetime tracking on POSIX systems.Sergey Matveev
2013-04-05[sanitizer] found a bug by code inspection: CHECK(a=b) instead of CHECK(a==b)...Kostya Serebryany
2013-04-03[ASan] Kill the remainders of platform defines in favor of SANITIZER_ definesAlexey Samsonov
2013-03-21[ASan] Switch ASan to generic ThreadRegistry from sanitizer_common. Delete AS...Alexey Samsonov
2013-03-20[ASan] Move GetCurrentThread/SetCurrentThread from AsanThreadRegistry class i...Alexey Samsonov
2013-03-19[sanitizer] Replace more platform checks with SANITIZER_ constants.Evgeniy Stepanov
2012-11-23[ASan] intercept swapcontext on Linux onlyAlexey Samsonov
2012-11-23[ASan] Add interceptor for swapcontext to fight with false positives in some ...Alexey Samsonov
2012-08-09[ASan] Create new files asan_report.{h,cc} as a preparation for refactoring o...Alexey Samsonov
2012-07-09[ASan] Use common flags parsing machinery.Alexey Samsonov
2012-06-15[Sanitizer] move ShadowRangeIsAvailable and several defines to common runtimeAlexey Samsonov
2012-06-15[Sanitizer] move atomic ops, min/max and sort to commnon runtimeAlexey Samsonov
2012-06-15[Sanitizer] move more portability wrappers to common runtime: sleep, _exit, a...Alexey Samsonov
2012-06-15[Sanitizer] move DumpProcessMap and DisableCoreDumper to common runtimeAlexey Samsonov
2012-06-14[ASan] don't include deleted headerAlexey Samsonov
2012-06-07[Sanitizer] __asan::AsanProcMaps -> __sanitizer::ProcessMaps.Alexey Samsonov
2012-06-06[Sanitizer] Switch to common mmap/munmap routines in ASan run-time.Alexey Samsonov
2012-06-06[asan] make tid u32 instead of intKostya Serebryany
2012-06-06[asan] start compacting the allocator header, the goal is to make it 16 bytes...Kostya Serebryany
2012-06-06[Sanitizer]: Introduce a common internal printf function. For now, also use t...Alexey Samsonov
2012-06-06[ASan] Make printf arguments match format strings better.Alexey Samsonov
2012-06-06[Sanitizer] Move more functions/constants to sanitizer_common.Alexey Samsonov
2012-06-06[ASan] Use __sanitizer::Die() in ASan runtime.Alexey Samsonov
2012-06-05[Sanitizer] remove using namespace __sanitizer linesAlexey Samsonov
2012-06-05[ASan] use internal_{close,read,write} in ASan runtime.Alexey Samsonov
2012-05-31[asan] more renamingKostya Serebryany
2012-05-31[asan] more renamingKostya Serebryany
2012-05-30Be more verbose when installing the signals.Alexander Potapenko
2012-05-23Move AsanShadowRangeIsAvailable() from mac to posix.Evgeniy Stepanov
2012-04-06[asan] add flags: disable_core, abort_on_error and unmap_shadow_on_exitKostya Serebryany
2012-04-05[asan] make __asan::Deallocate immune to racy double-free (issue #57)Kostya Serebryany
2012-04-05Introduce the use_sigaltstack flag (off by default), which enables using alte...Alexander Potapenko
2012-03-13[ASan] Fix build error on Linux; screen-reviewed by glider@google.comTimur Iskhodzhanov
2012-03-10[asan] use O(log(N)) algorithm instead of O(N) in __asan_get_ownershipKostya Serebryany
2012-02-22AddressSanitizer: get rid of stdlib.h and add (smaller) stddef.h insteadAlexey Samsonov
2012-02-22Move the contents of AsanProcMaps::Dump() into AsanDumpProcessMaps() for Posi...Alexander Potapenko
2012-02-13[asan] implement __asan_set_death_callbackKostya Serebryany
2012-02-08AddressSanitizer: replace all "real_X" calls with "REAL(X)"Alexey Samsonov
2012-02-07[asan] make sure the AsanThread object is destroyed if pthread_exit is calledKostya Serebryany
2012-01-31[asan] new run-time flag: sleep_before_dying (asan Issue #31)Kostya Serebryany
2012-01-19EHABI-based stack trace on ARM.Evgeniy Stepanov