Home
last modified time | relevance | path

Searched refs:stack_begin (Results 1 – 6 of 6) sorted by relevance

/freebsd-12.1/contrib/compiler-rt/lib/lsan/
H A Dlsan_thread.cc53 uptr stack_begin, stack_end, member
61 stack_begin_ = args->stack_begin; in OnStarted()
84 GetThreadStackAndTls(tid == 0, &args.stack_begin, &stack_size, in ThreadStart()
86 args.stack_end = args.stack_begin + stack_size; in ThreadStart()
130 bool GetThreadRangesLocked(tid_t os_id, uptr *stack_begin, uptr *stack_end, in GetThreadRangesLocked() argument
136 *stack_begin = context->stack_begin(); in GetThreadRangesLocked()
H A Dlsan_common.cc225 uptr stack_begin, stack_end, tls_begin, tls_end, cache_begin, cache_end; in ProcessThreads() local
227 bool thread_found = GetThreadRangesLocked(os_id, &stack_begin, &stack_end, in ProcessThreads()
244 sp = stack_begin; in ProcessThreads()
252 LOG_THREADS("Stack at %p-%p (SP = %p).\n", stack_begin, stack_end, sp); in ProcessThreads()
253 if (sp < stack_begin || sp >= stack_end) { in ProcessThreads()
260 while (stack_begin < stack_end && in ProcessThreads()
261 !IsAccessibleMemoryRange(stack_begin, 1)) { in ProcessThreads()
263 stack_begin += page_size; in ProcessThreads()
266 skipped, stack_begin, stack_end); in ProcessThreads()
269 stack_begin = sp; in ProcessThreads()
[all …]
H A Dlsan_thread.h31 uptr stack_begin() { return stack_begin_; } in stack_begin() function
H A Dlsan.h55 stack_bottom = t->stack_begin(); in GetStackTrace()
H A Dlsan_common.h209 bool GetThreadRangesLocked(tid_t os_id, uptr *stack_begin, uptr *stack_end,
/freebsd-12.1/contrib/compiler-rt/lib/asan/
H A Dasan_thread.cc468 bool GetThreadRangesLocked(tid_t os_id, uptr *stack_begin, uptr *stack_end, in GetThreadRangesLocked() argument
473 *stack_begin = t->stack_bottom(); in GetThreadRangesLocked()