Searched refs:tls_begin (Results 1 – 11 of 11) sorted by relevance
/external/compiler-rt/lib/lsan/ |
D | lsan_thread.cc | 63 tls_begin, tls_end; member 70 tls_begin_ = args->tls_begin; in OnStarted() 90 &args.tls_begin, &tls_size); in ThreadStart() 92 args.tls_end = args.tls_begin + tls_size; in ThreadStart() 134 uptr *tls_begin, uptr *tls_end, in GetThreadRangesLocked() argument 141 *tls_begin = context->tls_begin(); in GetThreadRangesLocked()
|
D | lsan_common.cc | 187 uptr stack_begin, stack_end, tls_begin, tls_end, cache_begin, cache_end; in ProcessThreads() local 189 &tls_begin, &tls_end, in ProcessThreads() 227 LOG_THREADS("TLS at %p-%p.\n", tls_begin, tls_end); in ProcessThreads() 229 ScanRangeForPointers(tls_begin, tls_end, frontier, "TLS", kReachable); in ProcessThreads() 233 CHECK_LE(tls_begin, cache_begin); in ProcessThreads() 235 if (tls_begin < cache_begin) in ProcessThreads() 236 ScanRangeForPointers(tls_begin, cache_begin, frontier, "TLS", in ProcessThreads()
|
D | lsan_thread.h | 29 uptr tls_begin() { return tls_begin_; } in tls_begin() function
|
D | lsan_common.h | 144 uptr *tls_begin, uptr *tls_end,
|
/external/compiler-rt/lib/asan/ |
D | asan_thread.cc | 325 uptr *tls_begin, uptr *tls_end, in GetThreadRangesLocked() argument 331 *tls_begin = t->tls_begin(); in GetThreadRangesLocked()
|
D | asan_thread.h | 68 uptr tls_begin() { return tls_begin_; } in tls_begin() function
|
D | asan_interceptors.cc | 193 *begin = t->tls_begin(); \
|
/external/compiler-rt/lib/msan/ |
D | msan_thread.h | 33 uptr tls_begin() { return tls_begin_; } in tls_begin() function
|
D | msan_interceptors.cc | 1446 *begin = t->tls_begin(); \
|
/external/compiler-rt/lib/tsan/rtl/ |
D | tsan_interceptors.cc | 2403 *begin = t->tls_begin(); \
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_common_interceptors.inc | 4211 uptr tls_begin, tls_end; 4212 COMMON_INTERCEPTOR_GET_TLS_RANGE(&tls_begin, &tls_end); 4213 DTLS::DTV *dtv = DTLS_on_tls_get_addr(arg, res, tls_begin, tls_end);
|