/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 ThreadStart() 69 *tls_begin = context->tls_begin(); in GetThreadRangesLocked() 65 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 | 455 uptr stack_begin, stack_end, tls_begin, tls_end, cache_begin, cache_end; in ProcessThreads() 458 GetThreadRangesLocked(os_id, &stack_begin, &stack_end, &tls_begin, in ProcessThreads() 506 if (tls_begin) { in ProcessThreads() 507 LOG_THREADS("TLS at %p-%p.\n", (void *)tls_begin, (void *)tls_end); in ProcessThreads() 511 tls_begin > cache_end) { in ProcessThreads() 512 ScanForPointers(tls_begin, tls_end, frontier, "TLS", kReachable, in ProcessThreads() 515 if (tls_begin < cache_begin) in ProcessThreads() 516 ScanForPointers(tls_begin, cache_begin, frontier, "TLS", kReachable, in ProcessThreads() 410 uptr stack_begin, stack_end, tls_begin, tls_end, cache_begin, cache_end; ProcessThreads() local
|
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,
|
/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
|
/llvm-project/compiler-rt/lib/dfsan/ |
H A D | dfsan_interceptors.cpp | 168 *begin = t->tls_begin(); \ in INTERCEPTOR() 179 uptr tls_begin, tls_end; 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() 183 uptr tls_begin, tls_end; INTERCEPTOR() local
|
H A D | dfsan_thread.h | 37 uptr tls_begin() { return tls_begin_; } in tls_begin() function
|
/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 | 1454 *begin = t->tls_begin(); \
|
/llvm-project/compiler-rt/lib/asan/ |
H A D | asan_thread.cpp | 501 uptr *tls_begin, uptr *tls_end, uptr *cache_begin, in GetAsanThreadRegistryLocked() 508 *tls_begin = t->tls_begin(); in GetThreadRangesLocked() 506 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 | asan_thread.h | 84 uptr tls_begin() { return tls_begin_; } 89 uptr tls_begin() { return tls_begin_; } tls_begin() function
|
H A D | asan_interceptors.cpp | 146 *begin = t->tls_begin(); \
|
/llvm-project/compiler-rt/lib/memprof/ |
H A D | memprof_thread.h | 68 uptr tls_begin() { return tls_begin_; } 74 uptr tls_begin() { return tls_begin_; } tls_begin() function
|
H A D | memprof_interceptors.cpp | 97 *begin = t->tls_begin(); \
|
/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_common_interceptors.inc | 5563 uptr tls_begin, tls_end; 5564 COMMON_INTERCEPTOR_GET_TLS_RANGE(&tls_begin, &tls_end); 5565 DTLS::DTV *dtv = DTLS_on_tls_get_addr(arg, res, tls_begin, tls_end); 5594 uptr tls_begin, tls_end; 5595 COMMON_INTERCEPTOR_GET_TLS_RANGE(&tls_begin, &tls_end); 5596 DTLS::DTV *dtv = DTLS_on_tls_get_addr(arg, ptr, tls_begin, tls_end);
|
/llvm-project/compiler-rt/lib/tsan/rtl/ |
H A D | tsan_interceptors_posix.cpp | 2572 *begin = t->tls_begin(); \
|