| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/dfsan/ |
| H A D | dfsan_interceptors.cpp | 198 INTERCEPT_FUNCTION(calloc); in initialize_interceptors() 199 INTERCEPT_FUNCTION(cfree); in initialize_interceptors() 200 INTERCEPT_FUNCTION(free); in initialize_interceptors() 202 INTERCEPT_FUNCTION(malloc); in initialize_interceptors() 205 INTERCEPT_FUNCTION(mallopt); in initialize_interceptors() 207 INTERCEPT_FUNCTION(mmap); in initialize_interceptors() 208 INTERCEPT_FUNCTION(mmap64); in initialize_interceptors() 209 INTERCEPT_FUNCTION(munmap); in initialize_interceptors() 211 INTERCEPT_FUNCTION(pvalloc); in initialize_interceptors() 212 INTERCEPT_FUNCTION(realloc); in initialize_interceptors() [all …]
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/lsan/ |
| H A D | lsan_interceptors.cpp | 548 INTERCEPT_FUNCTION(malloc); in InitializeInterceptors() 549 INTERCEPT_FUNCTION(free); in InitializeInterceptors() 551 INTERCEPT_FUNCTION(calloc); in InitializeInterceptors() 552 INTERCEPT_FUNCTION(realloc); in InitializeInterceptors() 556 INTERCEPT_FUNCTION(posix_memalign); in InitializeInterceptors() 557 INTERCEPT_FUNCTION(valloc); in InitializeInterceptors() 562 INTERCEPT_FUNCTION(pthread_create); in InitializeInterceptors() 563 INTERCEPT_FUNCTION(pthread_join); in InitializeInterceptors() 564 INTERCEPT_FUNCTION(pthread_detach); in InitializeInterceptors() 565 INTERCEPT_FUNCTION(pthread_exit); in InitializeInterceptors() [all …]
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/msan/ |
| H A D | msan_interceptors.cpp | 548 INTERCEPT_FUNCTION(func); \ in INTERCEPTORS_STRTO() 552 INTERCEPT_FUNCTION(func); \ 1773 INTERCEPT_FUNCTION(valloc); in InitializeInterceptors() 1775 INTERCEPT_FUNCTION(malloc); in InitializeInterceptors() 1779 INTERCEPT_FUNCTION(free); in InitializeInterceptors() 1786 INTERCEPT_FUNCTION(fread); in InitializeInterceptors() 1790 INTERCEPT_FUNCTION(bcopy); in InitializeInterceptors() 1879 INTERCEPT_FUNCTION(pipe); in InitializeInterceptors() 1880 INTERCEPT_FUNCTION(pipe2); in InitializeInterceptors() 1914 INTERCEPT_FUNCTION(tzset); in InitializeInterceptors() [all …]
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/tsan/dd/ |
| H A D | dd_interceptors.cpp | 296 INTERCEPT_FUNCTION(pthread_mutex_destroy); in InitializeInterceptors() 297 INTERCEPT_FUNCTION(pthread_mutex_lock); in InitializeInterceptors() 298 INTERCEPT_FUNCTION(pthread_mutex_trylock); in InitializeInterceptors() 299 INTERCEPT_FUNCTION(pthread_mutex_unlock); in InitializeInterceptors() 301 INTERCEPT_FUNCTION(pthread_spin_destroy); in InitializeInterceptors() 302 INTERCEPT_FUNCTION(pthread_spin_lock); in InitializeInterceptors() 303 INTERCEPT_FUNCTION(pthread_spin_trylock); in InitializeInterceptors() 304 INTERCEPT_FUNCTION(pthread_spin_unlock); in InitializeInterceptors() 323 INTERCEPT_FUNCTION(realpath); in InitializeInterceptors() 324 INTERCEPT_FUNCTION(read); in InitializeInterceptors() [all …]
|
| /freebsd-14.2/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.h | 111 #define COMMON_INTERCEPT_FUNCTION(name) INTERCEPT_FUNCTION(name)
|
| H A D | tsan_interceptors_posix.cpp | 332 #define TSAN_INTERCEPT(func) INTERCEPT_FUNCTION(func) 334 # define TSAN_INTERCEPT_VER(func, ver) INTERCEPT_FUNCTION(func) 340 INTERCEPT_FUNCTION(_pthread_##func) 346 INTERCEPT_FUNCTION(__libc_##func) 348 INTERCEPT_FUNCTION(__libc_thr_##func) 2431 (INTERCEPT_FUNCTION_VER(name, ver) || INTERCEPT_FUNCTION(name))
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/hwasan/ |
| H A D | hwasan_interceptors.cpp | 53 if (!INTERCEPT_FUNCTION(name)) \ 529 INTERCEPT_FUNCTION(__libc_longjmp); in InitializeInterceptors() 530 INTERCEPT_FUNCTION(longjmp); in InitializeInterceptors() 531 INTERCEPT_FUNCTION(siglongjmp); in InitializeInterceptors() 532 INTERCEPT_FUNCTION(vfork); in InitializeInterceptors() 534 INTERCEPT_FUNCTION(pthread_create); in InitializeInterceptors() 535 INTERCEPT_FUNCTION(pthread_join); in InitializeInterceptors() 536 INTERCEPT_FUNCTION(pthread_detach); in InitializeInterceptors() 537 INTERCEPT_FUNCTION(pthread_exit); in InitializeInterceptors() 539 INTERCEPT_FUNCTION(pthread_tryjoin_np); in InitializeInterceptors() [all …]
|
| /freebsd-14.2/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-14.2/contrib/llvm-project/compiler-rt/lib/asan/ |
| H A D | asan_interceptors.h | 137 if (!INTERCEPT_FUNCTION(name)) \ 148 if (!INTERCEPT_FUNCTION_VER(name, ver) && !INTERCEPT_FUNCTION(name)) \
|
| H A D | asan_win_dll_thunk.cpp | 144 INTERCEPT_FUNCTION(_except_handler4); in asan_dll_thunk_init()
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/interception/ |
| H A D | interception.h | 359 # define INTERCEPT_FUNCTION(func) INTERCEPT_FUNCTION_LINUX_OR_FREEBSD(func) macro 364 # define INTERCEPT_FUNCTION(func) INTERCEPT_FUNCTION_MAC(func) macro 369 # define INTERCEPT_FUNCTION(func) INTERCEPT_FUNCTION_WIN(func) macro
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/ubsan/ |
| H A D | ubsan_signals_standalone.cpp | 41 #define COMMON_INTERCEPT_FUNCTION(name) INTERCEPT_FUNCTION(name)
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/cfi/ |
| H A D | cfi.cpp | 451 INTERCEPT_FUNCTION(dlopen); in EnsureInterceptorsInitialized() 452 INTERCEPT_FUNCTION(dlclose); in EnsureInterceptorsInitialized()
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/safestack/ |
| H A D | safestack.cpp | 253 INTERCEPT_FUNCTION(pthread_create); in EnsureInterceptorsInitialized()
|