summaryrefslogtreecommitdiff
path: root/lib/asan
Commit message (Expand)AuthorAgeFilesLines
* [Sanitizer] Use ProcessMaps in symbolizer to get module name and offset for i...Alexey Samsonov2012-06-151-11/+16
* [Sanitizer] move all the rest re-implementations of libc functions from ASan ...Alexey Samsonov2012-06-154-109/+4
* [Sanitizer] Use DEFINE_REAL macro in TSan runtime to call libc implementation...Alexey Samsonov2012-06-152-11/+0
* [Sanitizer] move ShadowRangeIsAvailable and several defines to common runtimeAlexey Samsonov2012-06-154-44/+6
* [Sanitizer] move atomic ops, min/max and sort to commnon runtimeAlexey Samsonov2012-06-153-69/+0
* [Sanitizer] move more portability wrappers to common runtime: sleep, _exit, a...Alexey Samsonov2012-06-154-47/+1
* [Sanitizer] move DumpProcessMap and DisableCoreDumper to common runtimeAlexey Samsonov2012-06-154-32/+2
* [Sanitizer] move rest of mmap routines to common sanitizer runtimeAlexey Samsonov2012-06-145-45/+2
* [Sanitizer] move portable GetEnv to common sanitizer runtimeAlexey Samsonov2012-06-145-66/+1
* [Sanitizer] Move internal_memcmp to common sanitizer libcAlexey Samsonov2012-06-142-10/+0
* [ASan] don't include deleted headerAlexey Samsonov2012-06-146-6/+0
* [ASan] remove obsolete header asan_procmaps.hAlexey Samsonov2012-06-141-23/+0
* [Sanitizer] add internal_memset and internal_strrchr to sanitizer_common/Alexey Samsonov2012-06-082-14/+0
* [ASan] allow calls to memmove during rtl initializationAlexey Samsonov2012-06-081-0/+3
* [ASan] add interceptor for strncatAlexey Samsonov2012-06-082-0/+71
* [asan] slow 16-byte redzones (still experimental)Kostya Serebryany2012-06-072-10/+8
* [Sanitizer] Fix mac build.Alexey Samsonov2012-06-071-2/+0
* [Sanitizer] factor out GetThreadStackTopAndBottom from ASan runtime to common.Alexey Samsonov2012-06-074-65/+7
* [Sanitizer] __asan::AsanProcMaps -> __sanitizer::ProcessMaps.Alexey Samsonov2012-06-075-235/+7
* [Sanitizer] Move ReadFileToBuffer to sanitizer_common.Alexey Samsonov2012-06-072-38/+0
* [asan] more compaction: don't use the next field while the chunk is in alloca...Kostya Serebryany2012-06-061-7/+9
* [asan] more allocator compactionKostya Serebryany2012-06-061-13/+27
* [Sanitizer] Switch to common mmap/munmap routines in ASan run-time.Alexey Samsonov2012-06-068-76/+13
* [Sanitizer] Make UNIMPLEMENTED macro common.Alexey Samsonov2012-06-061-2/+0
* [asan] more compaction for allocatorKostya Serebryany2012-06-061-6/+6
* [Sanitizer] Use common CHECK machinery. Currently each tool has to define its...Alexey Samsonov2012-06-062-20/+7
* [asan] make tid u32 instead of intKostya Serebryany2012-06-0610-37/+33
* [asan] start compacting the allocator header, the goal is to make it 16 bytes...Kostya Serebryany2012-06-064-11/+23
* [Sanitizer] Remove __attribute__((format))Alexey Samsonov2012-06-061-2/+2
* [ASan] match type of arguments to format string on Mac.Alexey Samsonov2012-06-061-2/+3
* [Sanitizer]: Introduce a common internal printf function. For now, also use t...Alexey Samsonov2012-06-0611-248/+130
* [ASan] more format fixesAlexey Samsonov2012-06-061-12/+14
* [ASan] Make printf arguments match format strings better.Alexey Samsonov2012-06-067-22/+26
* [Sanitizer] Move more functions/constants to sanitizer_common.Alexey Samsonov2012-06-065-31/+0
* [ASan] Use __sanitizer::Die() in ASan runtime.Alexey Samsonov2012-06-066-29/+37
* [ASan] fix GetFreeBytesTest interface test on 32-bit Linux - delete some assu...Alexey Samsonov2012-06-061-6/+0
* [Sanitizer] rename sanitizer_defs.h to sanitizer_internal_defs.hAlexey Samsonov2012-06-051-1/+1
* [Sanitizer] remove using namespace __sanitizer linesAlexey Samsonov2012-06-058-15/+0
* [Sanitizer] Use common defines for ASan and TSan runtime. Split defines betwe...Alexey Samsonov2012-06-053-62/+29
* [asan] change the order of tests in the asan_test binary. Makes the test runs...Kostya Serebryany2012-06-051-2/+2
* [Sanitizer] add sanitizer_posix.cc. Move more various functions into sanitize...Alexey Samsonov2012-06-056-29/+6
* [ASan] s/size_t/uptr in asan_mac.ccAlexey Samsonov2012-06-051-13/+13
* [ASan] use internal_{close,read,write} in ASan runtime.Alexey Samsonov2012-06-057-58/+9
* [ASan] use internal_open from sanitizer_libc in ASan runtimeAlexey Samsonov2012-06-055-14/+2
* [ASan] Fix a typo in Makefile.oldAlexey Samsonov2012-06-051-6/+6
* [Sanitizer] Enable lint for sanitizer_common/ Alexey Samsonov2012-06-041-0/+1
* Created files sanitizer_linux.cc and sanitizer_mac.cc for platform-specific i...Alexey Samsonov2012-06-042-40/+32
* Remove file-type tags for .cc files in ASan run-time libraryAlexey Samsonov2012-06-0420-20/+20
* [Sanitizer]: move internal_strcmp to sanitizer_commonAlexey Samsonov2012-06-042-13/+3
* [ASan] Use ASan option symbolize to turn on internal symbolizer (in development)Alexey Samsonov2012-06-042-5/+24