Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/lsan/
H A Dlsan_posix.cpp27 uptr stack_begin; member
38 stack_begin_ = args->stack_begin; in OnStarted()
51 GetThreadStackAndTls(tid == kMainTid, &args.stack_begin, &stack_size, in ThreadStart()
53 args.stack_end = args.stack_begin + stack_size; in ThreadStart()
60 bool GetThreadRangesLocked(tid_t os_id, uptr *stack_begin, uptr *stack_end, in GetThreadRangesLocked() argument
67 *stack_begin = context->stack_begin(); in GetThreadRangesLocked()
H A Dlsan_fuchsia.cpp31 uptr stack_begin, stack_end; member
40 stack_begin_ = args->stack_begin; in OnCreated()
64 &args.stack_begin); in InitializeMainThread()
93 args.stack_begin = reinterpret_cast<uptr>(stack_base); in __sanitizer_before_thread_create_hook()
94 args.stack_end = args.stack_begin + stack_size; in __sanitizer_before_thread_create_hook()
H A Dlsan_common.cpp284 uptr stack_begin, stack_end, tls_begin, tls_end, cache_begin, cache_end; in ProcessThreads() local
286 bool thread_found = GetThreadRangesLocked(os_id, &stack_begin, &stack_end, in ProcessThreads()
303 sp = stack_begin; in ProcessThreads()
315 LOG_THREADS("Stack at %p-%p (SP = %p).\n", stack_begin, stack_end, sp); in ProcessThreads()
316 if (sp < stack_begin || sp >= stack_end) { in ProcessThreads()
323 while (stack_begin < stack_end && in ProcessThreads()
324 !IsAccessibleMemoryRange(stack_begin, 1)) { in ProcessThreads()
326 stack_begin += page_size; in ProcessThreads()
329 skipped, stack_begin, stack_end); in ProcessThreads()
332 stack_begin = sp; in ProcessThreads()
[all …]
H A Dlsan_thread.h25 uptr stack_begin() { return stack_begin_; } in stack_begin() function
H A Dlsan.cpp40 stack_bottom = t->stack_begin(); in UnwindImpl()
H A Dlsan_common.h227 bool GetThreadRangesLocked(tid_t os_id, uptr *stack_begin, uptr *stack_end,
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_thread.cpp484 bool GetThreadRangesLocked(tid_t os_id, uptr *stack_begin, uptr *stack_end, in GetThreadRangesLocked() argument
489 *stack_begin = t->stack_bottom(); in GetThreadRangesLocked()