Home
last modified time | relevance | path

Searched refs:tls_begin (Results 1 – 17 of 17) sorted by relevance

/llvm-project/compiler-rt/lib/lsan/
H A Dlsan_posix.cpp34 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 Dlsan_common.cpp455 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 Dlsan_posix.h34 uptr tls_begin() { return tls_begin_; } in tls_begin() function
H A Dlsan_common.h106 uptr *tls_begin, uptr *tls_end, uptr *cache_begin,
/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_thread.cpp125 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 Dhwasan_thread.h47 uptr tls_begin() { return tls_begin_; } in tls_begin() function
/llvm-project/compiler-rt/lib/dfsan/
H A Ddfsan_interceptors.cpp168 *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 Ddfsan_thread.h37 uptr tls_begin() { return tls_begin_; } in tls_begin() function
/llvm-project/compiler-rt/lib/msan/
H A Dmsan_thread.h32 uptr tls_begin() { return tls_begin_; } in tls_begin() function
H A Dmsan_interceptors.cpp1454 *begin = t->tls_begin(); \
/llvm-project/compiler-rt/lib/asan/
H A Dasan_thread.cpp501 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 Dasan_thread.h84 uptr tls_begin() { return tls_begin_; }
89 uptr tls_begin() { return tls_begin_; } tls_begin() function
H A Dasan_interceptors.cpp146 *begin = t->tls_begin(); \
/llvm-project/compiler-rt/lib/memprof/
H A Dmemprof_thread.h68 uptr tls_begin() { return tls_begin_; }
74 uptr tls_begin() { return tls_begin_; } tls_begin() function
H A Dmemprof_interceptors.cpp97 *begin = t->tls_begin(); \
/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_interceptors.inc5563 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 Dtsan_interceptors_posix.cpp2572 *begin = t->tls_begin(); \