diff options
| author | Francis Ricci <francisjricci@gmail.com> | 2017-01-07 00:31:20 +0000 |
|---|---|---|
| committer | Francis Ricci <francisjricci@gmail.com> | 2017-01-07 00:31:20 +0000 |
| commit | 9a2a9922ca12260cf2cf0d6ac3410e1a8493be76 (patch) | |
| tree | dafd5264fbcbb95d3b5f3c4b7fd6b57da2ed0a24 | |
| parent | 913e1127eba080db8c165dbd5b8525b8b991d197 (diff) | |
| download | bcm5719-llvm-9a2a9922ca12260cf2cf0d6ac3410e1a8493be76.tar.gz bcm5719-llvm-9a2a9922ca12260cf2cf0d6ac3410e1a8493be76.zip | |
Provide default implementations for sanitizer interface functions
Summary:
Adds a few default implementations for weak
interface functions on platforms where weak hooks are not supported.
Reviewers: eugenis, samsonov, timurrrr
Subscribers: llvm-commits
Differential Revision: https://reviews.llvm.org/D28201
llvm-svn: 291313
| -rw-r--r-- | compiler-rt/lib/lsan/lsan_allocator.cc | 13 | ||||
| -rw-r--r-- | compiler-rt/lib/lsan/lsan_common.cc | 5 |
2 files changed, 18 insertions, 0 deletions
diff --git a/compiler-rt/lib/lsan/lsan_allocator.cc b/compiler-rt/lib/lsan/lsan_allocator.cc index 1f6efc0f8d9..c805a39e1cc 100644 --- a/compiler-rt/lib/lsan/lsan_allocator.cc +++ b/compiler-rt/lib/lsan/lsan_allocator.cc @@ -258,4 +258,17 @@ SANITIZER_INTERFACE_ATTRIBUTE uptr __sanitizer_get_allocated_size(const void *p) { return GetMallocUsableSize(p); } + +#if !SANITIZER_SUPPORTS_WEAK_HOOKS +// Provide default (no-op) implementation of malloc hooks. +SANITIZER_INTERFACE_ATTRIBUTE SANITIZER_WEAK_ATTRIBUTE +void __sanitizer_malloc_hook(void *ptr, uptr size) { + (void)ptr; + (void)size; +} +SANITIZER_INTERFACE_ATTRIBUTE SANITIZER_WEAK_ATTRIBUTE +void __sanitizer_free_hook(void *ptr) { + (void)ptr; +} +#endif } // extern "C" diff --git a/compiler-rt/lib/lsan/lsan_common.cc b/compiler-rt/lib/lsan/lsan_common.cc index b20941ef23f..f0554526b76 100644 --- a/compiler-rt/lib/lsan/lsan_common.cc +++ b/compiler-rt/lib/lsan/lsan_common.cc @@ -758,5 +758,10 @@ SANITIZER_INTERFACE_ATTRIBUTE SANITIZER_WEAK_ATTRIBUTE int __lsan_is_turned_off() { return 0; } + +SANITIZER_INTERFACE_ATTRIBUTE SANITIZER_WEAK_ATTRIBUTE +const char *__lsan_default_suppressions() { + return ""; +} #endif } // extern "C" |

