summaryrefslogtreecommitdiff
path: root/lib/asan/asan_win.cc
AgeCommit message (Expand)Author
2014-01-31[ASan] Implement __sanitizer::InstallDeadlySignalHandlers() and __asan::AsanO...Alexander Potapenko
2014-01-31[ASan] Move the SIGSEGV/SIGBUS handling to sanitizer_commonAlexander Potapenko
2014-01-28[ASan] Move the sigaltstack() bits to sanitizer_common.Alexander Potapenko
2013-12-18[Sanitizer] Implement Symbolizer class on WindowsTimur Iskhodzhanov
2013-10-14[asan] Improve thread lifetime tracking on POSIX systems.Sergey Matveev
2013-09-23[ASan] Fix a compile-time warningTimur Iskhodzhanov
2013-09-23[ASan] Add DLL thunks for the new stack UAR interfaceTimur Iskhodzhanov
2013-05-08[sanitizer] Move GetStackTrace from ASan to sanitizer_common.Sergey Matveev
2013-03-19[sanitizer] More renamed macros.Evgeniy Stepanov
2013-03-19[sanitizer] Replace more platform checks with SANITIZER_ constants.Evgeniy Stepanov
2013-01-17[ASan] minor changes to swapcontext handling: don't clear shadow memory if co...Alexey Samsonov
2013-01-14asan/tsan: move blocking mutex from asan to sanitizer_commonDmitry Vyukov
2013-01-11asan: fix FIXME on windowsDmitry Vyukov
2012-12-13[asan] fix win buildKostya Serebryany
2012-11-23[ASan] Add interceptor for swapcontext to fight with false positives in some ...Alexey Samsonov
2012-10-02[ASan] Add extern C for __asan_symbolize on WindowsAlexey Samsonov
2012-10-02[Sanitizer/ASan] Simplify the code that prints and symbolizes stack traces. F...Alexey Samsonov
2012-08-28[asan] fix Windows buildKostya Serebryany
2012-08-28[asan] some renaming before we move StackTrace into sanitizer_commonKostya Serebryany
2012-08-24If the program is linked to a dynamic ASan runtime which is not present in DY...Alexander Potapenko
2012-08-22[ASan] get rid of ASAN_USE_EXTERNAL_SYMBOLIZER compiler def in favor of __asa...Alexey Samsonov
2012-07-23Intercept CFAllocator for each thread in the program.Alexander Potapenko
2012-06-19[Sanitizer] Renaming: SNPrintf -> internal_snprintf (and move it to sanitizer...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[Sanitizer] move rest of mmap routines to common sanitizer runtimeAlexey Samsonov
2012-06-14[Sanitizer] move portable GetEnv to common sanitizer runtimeAlexey Samsonov
2012-06-14[ASan] don't include deleted headerAlexey Samsonov
2012-06-07[Sanitizer] factor out GetThreadStackTopAndBottom from ASan runtime to common.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] Move more functions/constants to sanitizer_common.Alexey Samsonov
2012-06-05[ASan] use internal_{close,read,write} in ASan runtime.Alexey Samsonov
2012-06-05[ASan] use internal_open from sanitizer_libc in ASan runtimeAlexey Samsonov
2012-05-31[asan] partial fix for windows buildKostya Serebryany
2012-05-31[asan] more renamingKostya Serebryany
2012-05-31[asan] more renamingKostya Serebryany
2012-05-21[ASan] Make for-Windows RTL compileable using Clang++Timur Iskhodzhanov
2012-04-06[asan] add flags: disable_core, abort_on_error and unmap_shadow_on_exitKostya Serebryany
2012-04-05[ASan/Win] Fix lint warningTimur Iskhodzhanov
2012-04-05[ASan/Win] Fix build by using inline assembly instead of an unavailable intri...Timur Iskhodzhanov
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/Win] Eliminate a couple of FIXMEs, add NORETURN to CheckFailed/UNIMPLEM...Timur Iskhodzhanov
2012-03-12[ASan] Add back the support for /MT; intercept statically-linked functionsTimur Iskhodzhanov
2012-03-11[ASan] Use WriteFile instead of fwrite in AsanWriteTimur Iskhodzhanov
2012-03-10[asan] use O(log(N)) algorithm instead of O(N) in __asan_get_ownershipKostya Serebryany