/freebsd/contrib/llvm-project/compiler-rt/lib/lsan/ |
H A D | lsan_posix.cpp | 34 uptr tls_begin; 44 tls_begin_ = args->tls_begin; in OnStarted() 56 &args.tls_begin, &tls_size); in ThreadStart() 58 args.tls_end = args.tls_begin + tls_size; in ThreadStart() 65 uptr *tls_begin, uptr *tls_end, uptr *cache_begin, in GetThreadRangesLocked() 73 *tls_begin = context->tls_begin(); in GetThreadRangesLocked() 32 uptr tls_begin; global() member 63 GetThreadRangesLocked(tid_t os_id,uptr * stack_begin,uptr * stack_end,uptr * tls_begin,uptr * tls_end,uptr * cache_begin,uptr * cache_end,DTLS ** dtls) GetThreadRangesLocked() argument
|
H A D | lsan_common.cpp | 410 uptr stack_begin, stack_end, tls_begin, tls_end, cache_begin, cache_end; in ProcessThreads() local 413 GetThreadRangesLocked(os_id, &stack_begin, &stack_end, &tls_begin, in ProcessThreads() 473 if (tls_begin) { in ProcessThreads() 474 LOG_THREADS("TLS at %p-%p.\n", (void *)tls_begin, (void *)tls_end); in ProcessThreads() 478 tls_begin > cache_end) { in ProcessThreads() 479 ScanRangeForPointers(tls_begin, tls_end, frontier, "TLS", kReachable); in ProcessThreads() 481 if (tls_begin < cache_begin) in ProcessThreads() 482 ScanRangeForPointers(tls_begin, cache_begin, frontier, "TLS", in ProcessThreads()
|
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/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() 202 *tls_begin = t->tls_begin(); in GetThreadRangesLocked() 194 GetThreadRangesLocked(tid_t os_id,uptr * stack_begin,uptr * stack_end,uptr * tls_begin,uptr * tls_end,uptr * cache_begin,uptr * cache_end,DTLS ** dtls) GetThreadRangesLocked() argument
|
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 | 172 *begin = t->tls_begin(); \ 183 uptr tls_begin, tls_end; in INTERCEPTOR() local 184 COMMON_INTERCEPTOR_GET_TLS_RANGE(&tls_begin, &tls_end); in INTERCEPTOR() 185 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/msan/ |
H A D | msan_thread.h | 32 uptr tls_begin() { return tls_begin_; } in tls_begin() function
|
H A D | msan_interceptors.cpp | 1458 *begin = t->tls_begin(); \
|
/freebsd/contrib/llvm-project/compiler-rt/lib/asan/ |
H A D | asan_thread.cpp | 506 uptr *tls_begin, uptr *tls_end, uptr *cache_begin, in GetThreadRangesLocked() argument 513 *tls_begin = t->tls_begin(); in GetThreadRangesLocked()
|
H A D | asan_interceptors.cpp | 146 *begin = t->tls_begin(); \
|
/freebsd/contrib/llvm-project/compiler-rt/lib/memprof/ |
H A D | memprof_thread.h | 74 uptr tls_begin() { return tls_begin_; } in tls_begin() function
|
H A D | memprof_interceptors.cpp | 97 *begin = t->tls_begin(); \
|
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_common_interceptors.inc | 5435 uptr tls_begin, tls_end; 5436 COMMON_INTERCEPTOR_GET_TLS_RANGE(&tls_begin, &tls_end); 5437 DTLS::DTV *dtv = DTLS_on_tls_get_addr(arg, res, tls_begin, tls_end); 5466 uptr tls_begin, tls_end; 5467 COMMON_INTERCEPTOR_GET_TLS_RANGE(&tls_begin, &tls_end); 5468 DTLS::DTV *dtv = DTLS_on_tls_get_addr(arg, ptr, tls_begin, tls_end);
|
/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/ |
H A D | tsan_interceptors_posix.cpp | 2544 *begin = t->tls_begin(); \
|