Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/compiler-rt/lib/lsan/
H A Dlsan_posix.cpp30 uptr stack_begin; member
42 stack_begin_ = args->stack_begin; in OnStarted()
53 GetThreadStackAndTls(tid == kMainTid, &args.stack_begin, &args.stack_end, 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.cpp36 uptr stack_begin, stack_end; member
45 stack_begin_ = args->stack_begin; in OnCreated()
70 &args.stack_begin); in InitializeMainThread()
106 args.stack_begin = reinterpret_cast<uptr>(stack_base); in __sanitizer_before_thread_create_hook()
107 args.stack_end = args.stack_begin + stack_size; in __sanitizer_before_thread_create_hook()
H A Dlsan_common.cpp456 uptr stack_begin, stack_end, tls_begin, tls_end, cache_begin, cache_end; in ProcessThread() local
459 GetThreadRangesLocked(os_id, &stack_begin, &stack_end, &tls_begin, in ProcessThread()
469 sp = stack_begin; in ProcessThread()
480 LOG_THREADS("Stack at %p-%p (SP = %p).\n", (void *)stack_begin, in ProcessThread()
482 if (sp < stack_begin || sp >= stack_end) { in ProcessThread()
489 while (stack_begin < stack_end && in ProcessThread()
490 !IsAccessibleMemoryRange(stack_begin, 1)) { in ProcessThread()
492 stack_begin += page_size; in ProcessThread()
495 (void *)stack_begin, (void *)stack_end); in ProcessThread()
498 stack_begin = sp; in ProcessThread()
[all …]
H A Dlsan_thread.h27 uptr stack_begin() { return stack_begin_; } in stack_begin() function
H A Dlsan.cpp41 stack_bottom = t->stack_begin(); in UnwindImpl()
H A Dlsan_common.h105 bool GetThreadRangesLocked(tid_t os_id, uptr *stack_begin, uptr *stack_end,
/freebsd/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_posix.cpp62 uptr stack_begin, stack_end, tls_begin, tls_end; in PlatformUnpoisonStacks() local
63 GetThreadStackAndTls(/*main=*/false, &stack_begin, &stack_end, &tls_begin, in PlatformUnpoisonStacks()
65 UnpoisonStack(stack_begin, stack_end, "default"); in PlatformUnpoisonStacks()
H A Dasan_thread.cpp500 bool GetThreadRangesLocked(tid_t os_id, uptr *stack_begin, uptr *stack_end, in GetThreadRangesLocked() argument
506 *stack_begin = t->stack_bottom(); in GetThreadRangesLocked()
/freebsd/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_thread.cpp194 bool GetThreadRangesLocked(tid_t os_id, uptr *stack_begin, uptr *stack_end, in GetThreadRangesLocked() argument
200 *stack_begin = t->stack_bottom(); in GetThreadRangesLocked()