summaryrefslogtreecommitdiffstats
path: root/compiler-rt/lib/asan/asan_rtl.cc
Commit message (Expand)AuthorAgeFilesLines
* [Sanitizer] Refactor symbolization interface: use class instead of several fu...Alexey Samsonov2013-09-101-1/+2
* [asan] refactor the use-after-return API so that the size class is computed a...Kostya Serebryany2013-09-101-2/+1
* ASan, LSan, MSan: try to find llvm-symbolizer binary in PATH if it is not pro...Alexey Samsonov2013-09-031-4/+2
* [ASan/RTL] Disable alloc_dealloc_mismatch by default on WindowsTimur Iskhodzhanov2013-08-161-3/+3
* Define SANITIZER_INTERFACE_ATTRIBUTE on Windows and fix all the places where ...Timur Iskhodzhanov2013-08-131-1/+1
* [lsan] Add leak_check_at_exit flag.Sergey Matveev2013-08-011-1/+2
* [lsan] Make __lsan_do_leak_check() honor the detect_leaks flag.Sergey Matveev2013-07-221-7/+6
* [ASan] Use less shadow on Win 32-bitTimur Iskhodzhanov2013-07-161-19/+9
* [sanitizer] Move log_path to common flag and use it in MSan.Evgeniy Stepanov2013-06-251-3/+2
* [Sanitizer] support running external llvm-symbolizer on MacAlexey Samsonov2013-06-111-3/+6
* [sanitizer] ioctl interceptor.Evgeniy Stepanov2013-06-071-0/+1
* [asan] Make ASan report the correct thread address ranges to LSan.Sergey Matveev2013-05-291-0/+2
* Revert r182465 and add lsan-common library to makefile-based buildAlexey Samsonov2013-05-221-2/+2
* [ASan] Temporary remove leak checking from ASan, while we don't have makefile...Alexey Samsonov2013-05-221-1/+1
* [asan] workaround for asan bug 189 (swapcontext followed by throw gets OOM ki...Kostya Serebryany2013-05-221-0/+14
* [lsan] Invoke leak detection with atexit().Sergey Matveev2013-05-211-8/+5
* [asan] Do not invoke LSan hooks unless CAN_SANITIZE_LEAKS.Sergey Matveev2013-05-211-0/+4
* [asan] LSan hooks in asan_rtl.Sergey Matveev2013-05-211-0/+23
* [nolibc] Move all platforms to internal_getpid.Peter Collingbourne2013-05-171-1/+1
* [asan] symbolize when possible, even if ASAN_SYMBOLIZER_PATH is not provided....Kostya Serebryany2013-05-161-1/+1
* [asan] Common flags in ASan.Sergey Matveev2013-05-061-21/+18
* [ASan] Add allow_user_segv_handler to let users override SEGV handler install...Alexey Samsonov2013-04-251-0/+2
* [ASan] Make init-order checker allow access to already initialized globals.Alexey Samsonov2013-04-191-0/+2
* [asan] Fix spelling in asan_rtl.cc Test commit.Sergey Matveev2013-04-161-2/+2
* [asan] inline flags(), up to 1% perf gain on malloc-intensive codeKostya Serebryany2013-04-111-5/+1
* [sanitizer] found a bug by code inspection: CHECK(a=b) instead of CHECK(a==b)...Kostya Serebryany2013-04-051-3/+3
* [asan] nuke the old unused allocator codeKostya Serebryany2013-04-041-1/+1
* [asan] fill first 4K of malloc-ed memory with garbage, implement flags max_ma...Kostya Serebryany2013-04-041-1/+3
* [ASan] Speed-up initialization-order checking: create and use fast versions o...Alexey Samsonov2013-03-281-0/+1
* Fix unmatching ASan runtime flag for init-order checking exposed by r178158. ...Alexey Samsonov2013-03-281-1/+1
* [ASan] Change the ABI of __asan_before_dynamic_init function: now it takes po...Alexey Samsonov2013-03-261-1/+1
* [ASan] Switch ASan to generic ThreadRegistry from sanitizer_common. Delete AS...Alexey Samsonov2013-03-211-3/+9
* [ASan] Move GetCurrentThread/SetCurrentThread from AsanThreadRegistry class i...Alexey Samsonov2013-03-201-1/+1
* [sanitizer] Move ASan platform macros to sanitizer_common and rename them app...Evgeniy Stepanov2013-03-191-2/+2
* [ASan] turn off checking initialization order in ASan runtime by default. Ins...Alexey Samsonov2013-03-141-1/+1
* [ASan] make ASan assume ASAN_OPTIONS=symbolize=1 if ASAN_EXTERNAL_SYMBOLIZER ...Alexey Samsonov2013-03-141-6/+8
* [ASan] Add the memcmp_strict flag (1 by default) that controls the behavior o...Alexander Potapenko2013-02-281-0/+2
* [asan] bump kMidMemEnd to 0x4fffffffffULL since in rare cases prelink uses ad...Kostya Serebryany2013-02-281-1/+1
* [asan] move the .preinit_array hack into a separate file (added used attribute)Kostya Serebryany2013-02-221-14/+0
* [ASan] temporarily disable alloc_dealloc_mismatch on Mac, since the previous ...Alexander Potapenko2013-02-211-1/+3
* [asan] on linux, run __asan_init from .preinit_array (even earlier than before)Kostya Serebryany2013-02-201-2/+2
* [Sanitizer] use raw syscall instead of _exit() function on LinuxAlexey Samsonov2013-02-201-1/+1
* [ASan] Allow ASan default runtime options be overriden at compile time by pro...Alexey Samsonov2013-02-191-0/+14
* [asan] instrument memory accesses with unusual sizesKostya Serebryany2013-02-191-0/+11
* [asan] make asan work with 7fff8000 offset and prelinkKostya Serebryany2013-02-151-38/+106
* [ASan] Remove the replace_cfallocator flag, which is used no more.Alexander Potapenko2013-02-071-2/+0
* [ASan] Enable alloc_dealloc_mismatch by default on Darwin.Alexander Potapenko2013-02-071-3/+1
* [sanitizer] make the error messages from sanitizer_common contain the actual ...Kostya Serebryany2013-01-311-0/+1
* [ASan] Split ASan interface header into private and public parts. Add a test ...Alexey Samsonov2013-01-311-1/+0
* [asan] fix a crash in asan stats printing (initialize the allocator in __asan...Kostya Serebryany2013-01-281-0/+2
OpenPOWER on IntegriCloud