| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/dfsan/ |
| H A D | dfsan_interceptors.cpp | 223 INTERCEPT_FUNCTION(calloc); in initialize_interceptors() 224 INTERCEPT_FUNCTION(cfree); in initialize_interceptors() 225 INTERCEPT_FUNCTION(free); in initialize_interceptors() 227 INTERCEPT_FUNCTION(malloc); in initialize_interceptors() 230 INTERCEPT_FUNCTION(mallopt); in initialize_interceptors() 232 INTERCEPT_FUNCTION(mmap); in initialize_interceptors() 233 INTERCEPT_FUNCTION(mmap64); in initialize_interceptors() 234 INTERCEPT_FUNCTION(munmap); in initialize_interceptors() 236 INTERCEPT_FUNCTION(pvalloc); in initialize_interceptors() 237 INTERCEPT_FUNCTION(realloc); in initialize_interceptors() [all …]
|
| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/msan/ |
| H A D | msan_interceptors.cpp | 460 INTERCEPT_FUNCTION(func); \ in INTERCEPTORS_STRTO() 464 INTERCEPT_FUNCTION(func); \ 1617 INTERCEPT_FUNCTION(valloc); in InitializeInterceptors() 1623 INTERCEPT_FUNCTION(free); in InitializeInterceptors() 1629 INTERCEPT_FUNCTION(fread); in InitializeInterceptors() 1633 INTERCEPT_FUNCTION(bcopy); in InitializeInterceptors() 1692 INTERCEPT_FUNCTION(pipe); in InitializeInterceptors() 1693 INTERCEPT_FUNCTION(pipe2); in InitializeInterceptors() 1720 INTERCEPT_FUNCTION(tzset); in InitializeInterceptors() 1723 INTERCEPT_FUNCTION(shmat); in InitializeInterceptors() [all …]
|
| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/lsan/ |
| H A D | lsan_interceptors.cpp | 152 INTERCEPT_FUNCTION(malloc_usable_size) 508 INTERCEPT_FUNCTION(malloc); in InitializeInterceptors() 509 INTERCEPT_FUNCTION(free); in InitializeInterceptors() 511 INTERCEPT_FUNCTION(calloc); in InitializeInterceptors() 512 INTERCEPT_FUNCTION(realloc); in InitializeInterceptors() 516 INTERCEPT_FUNCTION(posix_memalign); in InitializeInterceptors() 517 INTERCEPT_FUNCTION(valloc); in InitializeInterceptors() 522 INTERCEPT_FUNCTION(pthread_create); in InitializeInterceptors() 523 INTERCEPT_FUNCTION(pthread_detach); in InitializeInterceptors() 524 INTERCEPT_FUNCTION(pthread_join); in InitializeInterceptors() [all …]
|
| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/tsan/dd/ |
| H A D | dd_interceptors.cpp | 295 INTERCEPT_FUNCTION(pthread_mutex_destroy); in InitializeInterceptors() 296 INTERCEPT_FUNCTION(pthread_mutex_lock); in InitializeInterceptors() 297 INTERCEPT_FUNCTION(pthread_mutex_trylock); in InitializeInterceptors() 298 INTERCEPT_FUNCTION(pthread_mutex_unlock); in InitializeInterceptors() 300 INTERCEPT_FUNCTION(pthread_spin_destroy); in InitializeInterceptors() 301 INTERCEPT_FUNCTION(pthread_spin_lock); in InitializeInterceptors() 302 INTERCEPT_FUNCTION(pthread_spin_trylock); in InitializeInterceptors() 303 INTERCEPT_FUNCTION(pthread_spin_unlock); in InitializeInterceptors() 322 INTERCEPT_FUNCTION(realpath); in InitializeInterceptors() 323 INTERCEPT_FUNCTION(read); in InitializeInterceptors() [all …]
|
| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/tsan/rtl/ |
| H A D | tsan_interceptors_libdispatch.cpp | 769 INTERCEPT_FUNCTION(dispatch_async); in InitializeLibdispatchInterceptors() 770 INTERCEPT_FUNCTION(dispatch_async_f); in InitializeLibdispatchInterceptors() 771 INTERCEPT_FUNCTION(dispatch_sync); in InitializeLibdispatchInterceptors() 772 INTERCEPT_FUNCTION(dispatch_sync_f); in InitializeLibdispatchInterceptors() 781 INTERCEPT_FUNCTION(dispatch_after); in InitializeLibdispatchInterceptors() 783 INTERCEPT_FUNCTION(dispatch_once); in InitializeLibdispatchInterceptors() 784 INTERCEPT_FUNCTION(dispatch_once_f); in InitializeLibdispatchInterceptors() 799 INTERCEPT_FUNCTION(dispatch_apply); in InitializeLibdispatchInterceptors() 802 INTERCEPT_FUNCTION(dispatch_read); in InitializeLibdispatchInterceptors() 803 INTERCEPT_FUNCTION(dispatch_write); in InitializeLibdispatchInterceptors() [all …]
|
| H A D | tsan_interceptors_posix.cpp | 294 #define TSAN_INTERCEPT(func) INTERCEPT_FUNCTION(func) 296 # define TSAN_INTERCEPT_VER(func, ver) INTERCEPT_FUNCTION(func) 302 INTERCEPT_FUNCTION(_pthread_##func) 308 INTERCEPT_FUNCTION(__libc_##func) 310 INTERCEPT_FUNCTION(__libc_thr_##func) 2283 #define COMMON_INTERCEPT_FUNCTION(name) INTERCEPT_FUNCTION(name) 2287 (INTERCEPT_FUNCTION_VER(name, ver) || INTERCEPT_FUNCTION(name))
|
| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/hwasan/ |
| H A D | hwasan_interceptors.cpp | 159 INTERCEPT_FUNCTION(fork); in InitializeInterceptors() 163 INTERCEPT_FUNCTION(vfork); in InitializeInterceptors() 165 INTERCEPT_FUNCTION(pthread_create); in InitializeInterceptors()
|
| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/memprof/ |
| H A D | memprof_interceptors.h | 45 if (!INTERCEPT_FUNCTION(name)) \ 55 if (!INTERCEPT_FUNCTION_VER(name, ver) && !INTERCEPT_FUNCTION(name)) \
|
| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/asan/ |
| H A D | asan_interceptors.h | 139 if (!INTERCEPT_FUNCTION(name)) \ 150 if (!INTERCEPT_FUNCTION_VER(name, ver) && !INTERCEPT_FUNCTION(name)) \
|
| H A D | asan_malloc_win.cpp | 511 INTERCEPT_FUNCTION(HeapSize); in ReplaceSystemMalloc() 512 INTERCEPT_FUNCTION(HeapFree); in ReplaceSystemMalloc() 513 INTERCEPT_FUNCTION(HeapReAlloc); in ReplaceSystemMalloc() 514 INTERCEPT_FUNCTION(HeapAlloc); in ReplaceSystemMalloc()
|
| H A D | asan_win_dll_thunk.cpp | 131 INTERCEPT_FUNCTION(_except_handler4); in asan_dll_thunk_init()
|
| H A D | asan_interceptors.cpp | 668 INTERCEPT_FUNCTION(_Unwind_RaiseException); in InitializeAsanInterceptors() 672 INTERCEPT_FUNCTION(_Unwind_SjLj_RaiseException); in InitializeAsanInterceptors()
|
| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/interception/ |
| H A D | interception.h | 278 # define INTERCEPT_FUNCTION(func) INTERCEPT_FUNCTION_LINUX_OR_FREEBSD(func) macro 283 # define INTERCEPT_FUNCTION(func) INTERCEPT_FUNCTION_MAC(func) macro 288 # define INTERCEPT_FUNCTION(func) INTERCEPT_FUNCTION_WIN(func) macro
|
| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/ubsan/ |
| H A D | ubsan_signals_standalone.cpp | 37 #define COMMON_INTERCEPT_FUNCTION(name) INTERCEPT_FUNCTION(name)
|
| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/cfi/ |
| H A D | cfi.cpp | 447 INTERCEPT_FUNCTION(dlopen); in EnsureInterceptorsInitialized() 448 INTERCEPT_FUNCTION(dlclose); in EnsureInterceptorsInitialized()
|
| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/safestack/ |
| H A D | safestack.cpp | 253 INTERCEPT_FUNCTION(pthread_create); in EnsureInterceptorsInitialized()
|