summaryrefslogtreecommitdiff
path: root/lib/asan/asan_thread.cc
Commit message (Expand)AuthorAge
* Introduce an operator new for LowLevelAllocator, and convert most users to it.Peter Collingbourne2013-10-24
* [asan] allocate AsanThreadContext using LowLevelAllocator instead of mmap to ...Kostya Serebryany2013-10-18
* [asan] reduce the size of AsanThreadContext by storing the stack trace in the...Kostya Serebryany2013-10-18
* tsan: move verbosity flag to CommonFlagsDmitry Vyukov2013-10-15
* [lsan] Support ASan's stack-use-after-return mode in LSan.Sergey Matveev2013-10-14
* [asan] Improve thread lifetime tracking on POSIX systems.Sergey Matveev2013-10-14
* [asan] introduce run-time flag uar_stack_size_log to control the size of Fake...Kostya Serebryany2013-09-27
* [asan] fix one more async-signal-safety issue with use-after-returnKostya Serebryany2013-09-19
* [asan] add a run-time option detect_stack_use_after_return, add verbosity out...Kostya Serebryany2013-09-18
* [asan] second attempt to use TLS with fake stack. This time it looks (more) a...Kostya Serebryany2013-09-13
* [asan] (part 2) don't lazy-init fake_stack if we only need to check that fake...Kostya Serebryany2013-09-12
* [asan] don't lazy-init fake_stack if we only need to check that fake_stack ex...Kostya Serebryany2013-09-12
* [asan] hopefully make the FakeStack async-signal safe, enable the related testKostya Serebryany2013-09-12
* Improve collecting malloc stats in ASanAlexey Samsonov2013-09-02
* [lsan] Handle fork() correctly.Sergey Matveev2013-07-08
* [asan] initialize fake_stack lazily and increase its maximal size. This makes...Kostya Serebryany2013-06-26
* [asan] Move lsan_disabled out of thread context.Sergey Matveev2013-06-21
* Fix ALIGNED misuse in asan_thread.cc (built on all platforms); also, add a co...Timur Iskhodzhanov2013-06-04
* [asan] ASan Linux MIPS32 support (compiler-rt part), patch by Jyun-Yan YKostya Serebryany2013-06-03
* [lsan] Add __lsan_disable() and __lsan_enable().Sergey Matveev2013-06-03
* [asan] Make ASan report the correct thread address ranges to LSan.Sergey Matveev2013-05-29
* [asan] LSan hooks in asan_thread.ccSergey Matveev2013-05-21
* [sanitizer] found a bug by code inspection: CHECK(a=b) instead of CHECK(a==b)...Kostya Serebryany2013-04-05
* [ASan] Speed-up initialization-order checking: create and use fast versions o...Alexey Samsonov2013-03-28
* [asan] Change the way we report the alloca frame on stack-buff-overflow.Kostya Serebryany2013-03-22
* asan: fix lint warning about line lengthDmitry Vyukov2013-03-22
* [ASan] Switch ASan to generic ThreadRegistry from sanitizer_common. Delete AS...Alexey Samsonov2013-03-21
* [ASan] Move GetCurrentThread/SetCurrentThread from AsanThreadRegistry class i...Alexey Samsonov2013-03-20
* [asan] fix two off-by-one errors that seem to affect only PowerPC because onl...Kostya Serebryany2013-01-18
* [asan] get rid of some of the uses of kPageSize. The intent is to get rid of ...Kostya Serebryany2012-11-23
* [asan/tsan] do not use __WORDSIZE macro, as it is glibc-private thing. Instea...Kostya Serebryany2012-11-21
* [ASan] Revert r168040 and r168043 and take a cleaner solution suggested by Ko...Alexander Potapenko2012-11-15
* [ASan] Minor fix: return to the last byte of the fake stack if we've raced by.Alexander Potapenko2012-11-15
* [ASan] Poison the leftmost shadow byte with a special value so that we can findAlexander Potapenko2012-11-15
* [asan] increase max stack size to 256 (+test)Kostya Serebryany2012-09-06
* [asan] some renaming before we move StackTrace into sanitizer_commonKostya Serebryany2012-08-28
* [Sanitizer] Use low-level allocator in flag parsing to avoid calling malloc()...Alexey Samsonov2012-08-27
* Intercept CFAllocator for each thread in the program.Alexander Potapenko2012-07-23
* [asan] get rid of the last operator new call in asan rtlKostya Serebryany2012-07-17
* [ASan] Use common flags parsing machinery.Alexey Samsonov2012-07-09
* [ASan] don't include deleted headerAlexey Samsonov2012-06-14
* [Sanitizer] factor out GetThreadStackTopAndBottom from ASan runtime to common.Alexey Samsonov2012-06-07
* [Sanitizer] Switch to common mmap/munmap routines in ASan run-time.Alexey Samsonov2012-06-06
* [asan] make tid u32 instead of intKostya Serebryany2012-06-06
* [ASan] Make printf arguments match format strings better.Alexey Samsonov2012-06-06
* Remove file-type tags for .cc files in ASan run-time libraryAlexey Samsonov2012-06-04
* [asan] more renamingKostya Serebryany2012-05-31
* [asan] more renamingKostya Serebryany2012-05-31
* Fix GetFrameNameByAddr hitting stale stack guards.Evgeniy Stepanov2012-05-12
* Introduce the use_sigaltstack flag (off by default), which enables using alte...Alexander Potapenko2012-04-05