| /freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/lsan/ |
| D | lsan_posix.cpp | 31 uptr tls_begin; member 40 tls_begin_ = args->tls_begin; in OnStarted() 52 &args.tls_begin, &tls_size); in ThreadStart() 54 args.tls_end = args.tls_begin + tls_size; in ThreadStart() 61 uptr *tls_begin, uptr *tls_end, uptr *cache_begin, in GetThreadRangesLocked() argument 69 *tls_begin = context->tls_begin(); in GetThreadRangesLocked()
|
| D | lsan_common.cpp | 284 uptr stack_begin, stack_end, tls_begin, tls_end, cache_begin, cache_end; in ProcessThreads() local 287 &tls_begin, &tls_end, in ProcessThreads() 340 if (tls_begin) { in ProcessThreads() 341 LOG_THREADS("TLS at %p-%p.\n", tls_begin, tls_end); in ProcessThreads() 345 tls_begin > cache_end) { in ProcessThreads() 346 ScanRangeForPointers(tls_begin, tls_end, frontier, "TLS", kReachable); in ProcessThreads() 348 if (tls_begin < cache_begin) in ProcessThreads() 349 ScanRangeForPointers(tls_begin, cache_begin, frontier, "TLS", in ProcessThreads()
|
| D | lsan_posix.h | 34 uptr tls_begin() { return tls_begin_; } in tls_begin() function
|
| D | lsan_common.h | 228 uptr *tls_begin, uptr *tls_end, uptr *cache_begin,
|
| /freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/dfsan/ |
| D | dfsan_interceptors.cpp | 197 *begin = t->tls_begin(); \ 208 uptr tls_begin, tls_end; in INTERCEPTOR() local 209 COMMON_INTERCEPTOR_GET_TLS_RANGE(&tls_begin, &tls_end); in INTERCEPTOR() 210 DTLS::DTV *dtv = DTLS_on_tls_get_addr(arg, res, tls_begin, tls_end); in INTERCEPTOR()
|
| D | dfsan_thread.h | 38 uptr tls_begin() { return tls_begin_; } in tls_begin() function
|
| /freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/msan/ |
| D | msan_thread.h | 32 uptr tls_begin() { return tls_begin_; } in tls_begin() function
|
| D | msan_interceptors.cpp | 1320 *begin = t->tls_begin(); \
|
| /freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/asan/ |
| D | asan_thread.cpp | 485 uptr *tls_begin, uptr *tls_end, uptr *cache_begin, in GetThreadRangesLocked() argument 491 *tls_begin = t->tls_begin(); in GetThreadRangesLocked()
|
| D | asan_thread.h | 74 uptr tls_begin() { return tls_begin_; } in tls_begin() function
|
| D | asan_interceptors.cpp | 145 *begin = t->tls_begin(); \
|
| /freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/hwasan/ |
| D | hwasan_thread.h | 42 uptr tls_begin() { return tls_begin_; } in tls_begin() function
|
| D | hwasan_thread.cpp | 114 tls_begin(), tls_end()); in Print()
|
| /freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/memprof/ |
| D | memprof_thread.h | 74 uptr tls_begin() { return tls_begin_; } in tls_begin() function
|
| D | memprof_interceptors.cpp | 106 *begin = t->tls_begin(); \
|
| /freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/ |
| D | tsan_interceptors_posix.cpp | 2398 *begin = t->tls_begin(); \
|
| /freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
| D | sanitizer_common_interceptors.inc | 5322 uptr tls_begin, tls_end; 5323 COMMON_INTERCEPTOR_GET_TLS_RANGE(&tls_begin, &tls_end); 5324 DTLS::DTV *dtv = DTLS_on_tls_get_addr(arg, res, tls_begin, tls_end); 5355 uptr tls_begin, tls_end; 5356 COMMON_INTERCEPTOR_GET_TLS_RANGE(&tls_begin, &tls_end); 5357 DTLS::DTV *dtv = DTLS_on_tls_get_addr(arg, ptr, tls_begin, tls_end);
|