summaryrefslogtreecommitdiff
path: root/lib
Commit message (Expand)AuthorAgeFilesLines
* [Sanitizer] move unit test for Printf from tsan to sanitizer_commonAlexey Samsonov2012-11-024-15/+14
* [TSan] finally remove TsanPrintf in favor of Printf from sanitizer_commonAlexey Samsonov2012-11-0217-151/+111
* [Sanitizer] Use kStderrFd constant instead of hardcoded 2Alexey Samsonov2012-11-024-11/+15
* [Sanitizer]: add __sanitizer_set_report_fd function to alter file descriptor ...Alexey Samsonov2012-11-021-1/+15
* Flag -ccc-clang-cxx was removed in r166986, remove it from compiler-rt lit co...Alexey Samsonov2012-10-303-4/+3
* Consistently declare 'extern "C"' variable in namespace __ubsan. No functiona...Richard Smith2012-10-291-1/+2
* Don't define an extern "C" variable in its first declaration, to appease aRichard Smith2012-10-292-8/+15
* Fix a compiler warning in internal_memmove.Alexander Potapenko2012-10-261-5/+5
* Fix the internal_memmove() implementation that used to skip src[0] if dst < src.Alexander Potapenko2012-10-263-2/+26
* [ASan] don't run hacky test for __asan_get_free_bytes() on 32-bitsAlexey Samsonov2012-10-261-15/+18
* In the dynamic runtime on Mac OS, do not call internal_strdup() before __asan...Alexander Potapenko2012-10-261-0/+8
* -fcatch-undefined-behavior checking for appropriate vptr value: library side.Richard Smith2012-10-257-4/+397
* [ASan] Rename ReplaceCFAllocator to MaybeReplaceCFAllocator.Alexander Potapenko2012-10-243-20/+14
* [ASan] Use internal_memmove() in both static and dynamic runtime libraries if...Alexander Potapenko2012-10-241-3/+1
* [ASan] Due to data races, ASan malloc stats are inaccurate, which may cause c...Alexey Samsonov2012-10-241-6/+13
* [ASan] add comment to blacklist file to test behavior introduced in r166283Alexey Samsonov2012-10-191-0/+1
* [ASan] instrumented asan unit tests should depend on blacklist fileAlexey Samsonov2012-10-191-2/+4
* [asan] Disable new/delete interceptors on Android and make them visible elsew...Evgeniy Stepanov2012-10-181-5/+13
* [Sanitizer] fall back to online symbolizer if user-provided callback failedAlexey Samsonov2012-10-181-1/+2
* Re-enable this test now that r166172 has hacked around the terribleChandler Carruth2012-10-181-1/+1
* [ASan] unit tests: Move main() to a separate file. Fix lintAlexey Samsonov2012-10-174-10/+22
* [asan] added a test for a bug in asan at -O0 introduced by r165936 (making as...Kostya Serebryany2012-10-171-0/+14
* [ASan] Fix strchr/index tests for users who have 'char* strchr(char*,int)' in...Alexey Samsonov2012-10-172-2/+27
* [ASan] don't use attribute no_address_safety_analysis if it's unknown to comp...Alexey Samsonov2012-10-172-1/+8
* [Sanitizer] symbolizer: increase the maximal number of shared libraries to 16KAlexey Samsonov2012-10-172-2/+3
* [asan] fix gcc warnings while building asan-rtKostya Serebryany2012-10-171-4/+6
* Do not call ReplaceCFAllocator() before __CFInitialize(), otherwise crashes a...Alexander Potapenko2012-10-161-1/+8
* Commit a leftover file from r166026: Add MACOS_VERSION_MOUNTAIN_LION.Alexander Potapenko2012-10-161-1/+2
* Add MACOS_VERSION_MOUNTAIN_LION.Alexander Potapenko2012-10-161-0/+1
* [asan] fix lintKostya Serebryany2012-10-162-2/+2
* Implement internal_memmove.Alexander Potapenko2012-10-153-0/+29
* [asan] fix more tests Kostya Serebryany2012-10-151-9/+9
* [asan] change the asan output slightly to avoid user confusion: a) add ':' af...Kostya Serebryany2012-10-1511-17/+17
* Provide a slightly more helpful diagnostic if -fcatch-undefined-behavior findsRichard Smith2012-10-141-0/+6
* Use a better test for __int128 support, which works on old GCC versions.Richard Smith2012-10-141-1/+1
* Fix the bootstrap of CompilerRT with host compilers that don't supportChandler Carruth2012-10-133-4/+8
* -fcatch-undefined-behavior: Runtime library support for trapping conversions ...Richard Smith2012-10-127-2/+122
* -fcatch-undefined-behavior: handler for VLA bound which evaluates to a non-po...Richard Smith2012-10-103-0/+28
* -fcatch-undefined-behavior: store the type name directly at the end of a type...Richard Smith2012-10-091-3/+4
* Add a runtime diagnostics library for Clang's -fcatch-undefined-behavior.Richard Smith2012-10-0923-0/+1023
* [Sanitizer] Remove unneeded returns after UNIMPLEMENTED macroAlexey Samsonov2012-10-096-20/+0
* [Sanitizer] Add UNREACHABLE(msg) macroAlexey Samsonov2012-10-091-1/+6
* [ASan] use llvm-symbolizer for ASan lit-style tests on MacAlexey Samsonov2012-10-0811-31/+24
* tsan: better message about found races for Go ThreadSanitizerDmitry Vyukov2012-10-071-0/+4
* tsan: cache pc's that cause suppressions (this way we do not need to symboliz...Dmitry Vyukov2012-10-059-28/+62
* If !asan_inited, call internal versions of libc functions where available.Alexander Potapenko2012-10-051-24/+8
* tsan for Go: support mallocs before __tsan_init() (required to support cgo code)Dmitry Vyukov2012-10-041-1/+3
* Avoid calling __asan_init from memcpy(), memmove(), memset() during libSystem...Alexander Potapenko2012-10-041-0/+9
* tsan: add atomic_fetch_sub() and atomic_signal_fence() functionsDmitry Vyukov2012-10-043-0/+41
* [asan] properly report mmap failureKostya Serebryany2012-10-042-0/+24