| /freebsd/contrib/llvm-project/compiler-rt/lib/lsan/ |
| H A D | lsan_posix.cpp | 34 uptr tls_begin; member 44 tls_begin_ = args->tls_begin; in OnStarted() 54 &args.tls_begin, &args.tls_end); in ThreadStart() 61 uptr *tls_begin, uptr *tls_end, uptr *cache_begin, in GetThreadRangesLocked() argument 69 *tls_begin = context->tls_begin(); in GetThreadRangesLocked()
|
| H A D | lsan_common.cpp | 456 uptr stack_begin, stack_end, tls_begin, tls_end, cache_begin, cache_end; in ProcessThread() local 459 GetThreadRangesLocked(os_id, &stack_begin, &stack_end, &tls_begin, in ProcessThread() 507 if (tls_begin) { in ProcessThread() 508 LOG_THREADS("TLS at %p-%p.\n", (void *)tls_begin, (void *)tls_end); in ProcessThread() 512 tls_begin > cache_end) { in ProcessThread() 513 ScanForPointers(tls_begin, tls_end, frontier, "TLS", kReachable, in ProcessThread() 516 if (tls_begin < cache_begin) in ProcessThread() 517 ScanForPointers(tls_begin, cache_begin, frontier, "TLS", kReachable, in ProcessThread()
|
| H A D | lsan_posix.h | 34 uptr tls_begin() { return tls_begin_; } in tls_begin() function
|
| H A D | lsan_common.h | 106 uptr *tls_begin, uptr *tls_end, uptr *cache_begin,
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_tls_get_addr.cpp | 116 const void *tls_begin) { in SANITIZER_INTERFACE_WEAK_DEF() argument 117 const void *start = __sanitizer_get_allocated_begin(tls_begin); in SANITIZER_INTERFACE_WEAK_DEF() 120 CHECK_LE(start, tls_begin); in SANITIZER_INTERFACE_WEAK_DEF() 123 tls_begin, tls_size); in SANITIZER_INTERFACE_WEAK_DEF() 125 (reinterpret_cast<uptr>(tls_begin) - reinterpret_cast<uptr>(start)); in SANITIZER_INTERFACE_WEAK_DEF()
|
| H A D | sanitizer_linux_libcdep.cpp | 678 uptr *tls_begin, uptr *tls_end) { in GetThreadStackAndTls() argument 683 *tls_begin = 0; in GetThreadStackAndTls() 689 *tls_begin = tls_addr; in GetThreadStackAndTls() 699 if (*tls_begin > *stk_begin && *tls_begin < *stk_end) { in GetThreadStackAndTls() 702 *stk_end = *tls_begin; in GetThreadStackAndTls()
|
| H A D | sanitizer_interface_internal.h | 55 __sanitizer_get_dtls_size(const void *tls_begin);
|
| H A D | sanitizer_mac.cpp | 566 uptr *tls_begin, uptr *tls_end) { in GetThreadStackAndTls() argument 569 *tls_begin = TlsBaseAddr(); in GetThreadStackAndTls() 570 *tls_end = *tls_begin + TlsSize(); in GetThreadStackAndTls() 574 *tls_begin = 0; in GetThreadStackAndTls()
|
| H A D | sanitizer_win.cpp | 894 uptr *tls_begin, uptr *tls_end) { in GetThreadStackAndTls() argument 898 *tls_begin = 0; in GetThreadStackAndTls() 902 *tls_begin = 0; in GetThreadStackAndTls()
|
| H A D | sanitizer_common.h | 87 uptr *tls_begin, uptr *tls_end);
|
| H A D | sanitizer_common_interceptors.inc | 5596 uptr tls_begin, tls_end; 5597 COMMON_INTERCEPTOR_GET_TLS_RANGE(&tls_begin, &tls_end); 5598 DTLS::DTV *dtv = DTLS_on_tls_get_addr(arg, res, tls_begin, tls_end); 5627 uptr tls_begin, tls_end; 5628 COMMON_INTERCEPTOR_GET_TLS_RANGE(&tls_begin, &tls_end); 5629 DTLS::DTV *dtv = DTLS_on_tls_get_addr(arg, ptr, tls_begin, tls_end);
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/hwasan/ |
| H A D | hwasan_thread.cpp | 125 stack_top() - stack_bottom(), tls_begin(), tls_end()); in Print() 195 uptr *tls_begin, uptr *tls_end, uptr *cache_begin, in GetThreadRangesLocked() argument 202 *tls_begin = t->tls_begin(); in GetThreadRangesLocked()
|
| H A D | hwasan_thread.h | 47 uptr tls_begin() { return tls_begin_; } in tls_begin() function
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/dfsan/ |
| H A D | dfsan_interceptors.cpp | 168 *begin = t->tls_begin(); \ 179 uptr tls_begin, tls_end; in INTERCEPTOR() local 180 COMMON_INTERCEPTOR_GET_TLS_RANGE(&tls_begin, &tls_end); in INTERCEPTOR() 181 DTLS::DTV *dtv = DTLS_on_tls_get_addr(arg, res, tls_begin, tls_end); in INTERCEPTOR()
|
| H A D | dfsan_thread.h | 37 uptr tls_begin() { return tls_begin_; } in tls_begin() function
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/asan/ |
| H A D | asan_posix.cpp | 62 uptr stack_begin, stack_end, tls_begin, tls_end; in PlatformUnpoisonStacks() local 63 GetThreadStackAndTls(/*main=*/false, &stack_begin, &stack_end, &tls_begin, in PlatformUnpoisonStacks()
|
| H A D | asan_thread.cpp | 501 uptr *tls_begin, uptr *tls_end, uptr *cache_begin, in GetThreadRangesLocked() argument 508 *tls_begin = t->tls_begin(); in GetThreadRangesLocked()
|
| H A D | asan_thread.h | 84 uptr tls_begin() { return tls_begin_; } in tls_begin() function
|
| H A D | asan_rtl.cpp | 625 uptr tls_begin, tls_end; in UnpoisonDefaultStack() local 626 GetThreadStackAndTls(/*main=*/false, &bottom, &top, &tls_begin, &tls_end); in UnpoisonDefaultStack()
|
| H A D | asan_interceptors.cpp | 146 *begin = t->tls_begin(); \
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/msan/ |
| H A D | msan_thread.h | 32 uptr tls_begin() { return tls_begin_; } in tls_begin() function
|
| H A D | msan_interceptors.cpp | 1484 *begin = t->tls_begin(); \
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/nsan/ |
| H A D | nsan_thread.h | 29 uptr tls_begin() { return tls_begin_; } in tls_begin() function
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/memprof/ |
| H A D | memprof_thread.h | 68 uptr tls_begin() { return tls_begin_; } in tls_begin() function
|
| H A D | memprof_interceptors.cpp | 97 *begin = t->tls_begin(); \
|