Searched refs:stack_begin (Results 1 – 8 of 8) sorted by relevance
/freebsd/contrib/llvm-project/compiler-rt/lib/lsan/ |
H A D | lsan_posix.cpp | 30 uptr stack_begin; 42 stack_begin_ = args->stack_begin; in OnStarted() 55 GetThreadStackAndTls(tid == kMainTid, &args.stack_begin, &stack_size, in ThreadStart() 57 args.stack_end = args.stack_begin + stack_size; in ThreadStart() 64 bool GetThreadRangesLocked(tid_t os_id, uptr *stack_begin, uptr *stack_end, in GetThreadRangesLocked() 71 *stack_begin = context->stack_begin(); in GetThreadRangesLocked() 28 uptr stack_begin; global() member 62 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 D | lsan_fuchsia.cpp | 31 uptr stack_begin, stack_end; member 40 stack_begin_ = args->stack_begin; in OnCreated() 65 &args.stack_begin); in InitializeMainThread() 101 args.stack_begin = reinterpret_cast<uptr>(stack_base); in __sanitizer_before_thread_create_hook() 102 args.stack_end = args.stack_begin + stack_size; in __sanitizer_before_thread_create_hook()
|
H A D | lsan_common.cpp | 410 uptr stack_begin, stack_end, tls_begin, tls_end, cache_begin, cache_end; in ProcessThreads() local 413 GetThreadRangesLocked(os_id, &stack_begin, &stack_end, &tls_begin, in ProcessThreads() 430 sp = stack_begin; in ProcessThreads() 445 LOG_THREADS("Stack at %p-%p (SP = %p).\n", (void *)stack_begin, in ProcessThreads() 447 if (sp < stack_begin || sp >= stack_end) { in ProcessThreads() 454 while (stack_begin < stack_end && in ProcessThreads() 455 !IsAccessibleMemoryRange(stack_begin, 1)) { in ProcessThreads() 457 stack_begin += page_size; in ProcessThreads() 460 skipped, (void *)stack_begin, (void *)stack_end); in ProcessThreads() 463 stack_begin = sp; in ProcessThreads() [all …]
|
H A D | lsan_thread.h | 27 uptr stack_begin() { return stack_begin_; } in stack_begin() function
|
H A D | lsan.cpp | 41 stack_bottom = t->stack_begin(); in UnwindImpl()
|
H A D | lsan_common.h | 105 bool GetThreadRangesLocked(tid_t os_id, uptr *stack_begin, uptr *stack_end,
|
/freebsd/contrib/llvm-project/compiler-rt/lib/hwasan/ |
H A D | hwasan_thread.cpp | 194 bool GetThreadRangesLocked(tid_t os_id, uptr *stack_begin, uptr *stack_end, in GetThreadRangesLocked() 200 *stack_begin = t->stack_bottom(); in GetThreadRangesLocked() 193 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
|
/freebsd/contrib/llvm-project/compiler-rt/lib/asan/ |
H A D | asan_thread.cpp | 505 bool GetThreadRangesLocked(tid_t os_id, uptr *stack_begin, uptr *stack_end, in GetThreadRangesLocked() argument 511 *stack_begin = t->stack_bottom(); in GetThreadRangesLocked()
|