Home
last modified time | relevance | path

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

/netbsd-src/external/gpl3/gcc/dist/libsanitizer/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.cpp283 uptr stack_begin, stack_end, tls_begin, tls_end, cache_begin, cache_end; in ProcessThreads() local
285 bool thread_found = GetThreadRangesLocked(os_id, &stack_begin, &stack_end, in ProcessThreads()
302 sp = stack_begin; in ProcessThreads()
314 LOG_THREADS("Stack at %p-%p (SP = %p).\n", (void *)stack_begin, 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, (void *)stack_begin, (void *)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.h228 bool GetThreadRangesLocked(tid_t os_id, uptr *stack_begin, uptr *stack_end,
/netbsd-src/sys/external/bsd/compiler_rt/dist/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,
/netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/lsan/
H A Dlsan_thread.cc51 uptr stack_begin, stack_end, member
59 stack_begin_ = args->stack_begin; in OnStarted()
82 GetThreadStackAndTls(tid == 0, &args.stack_begin, &stack_size, in ThreadStart()
84 args.stack_end = args.stack_begin + stack_size; in ThreadStart()
128 bool GetThreadRangesLocked(tid_t os_id, uptr *stack_begin, uptr *stack_end, in GetThreadRangesLocked() argument
134 *stack_begin = context->stack_begin(); in GetThreadRangesLocked()
H A Dlsan_common.cc223 uptr stack_begin, stack_end, tls_begin, tls_end, cache_begin, cache_end; in ProcessThreads() local
225 bool thread_found = GetThreadRangesLocked(os_id, &stack_begin, &stack_end, in ProcessThreads()
242 sp = stack_begin; in ProcessThreads()
250 LOG_THREADS("Stack at %p-%p (SP = %p).\n", stack_begin, stack_end, sp); in ProcessThreads()
251 if (sp < stack_begin || sp >= stack_end) { in ProcessThreads()
258 while (stack_begin < stack_end && in ProcessThreads()
259 !IsAccessibleMemoryRange(stack_begin, 1)) { in ProcessThreads()
261 stack_begin += page_size; in ProcessThreads()
264 skipped, stack_begin, stack_end); in ProcessThreads()
267 stack_begin = sp; in ProcessThreads()
[all …]
H A Dlsan_thread.h29 uptr stack_begin() { return stack_begin_; } in stack_begin() function
H A Dlsan.h53 stack_bottom = t->stack_begin(); in GetStackTrace()
H A Dlsan_common.h209 bool GetThreadRangesLocked(tid_t os_id, uptr *stack_begin, uptr *stack_end,
/netbsd-src/sys/external/bsd/compiler_rt/dist/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()
/netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/asan/
H A Dasan_thread.cc467 bool GetThreadRangesLocked(tid_t os_id, uptr *stack_begin, uptr *stack_end, in GetThreadRangesLocked() argument
472 *stack_begin = t->stack_bottom(); in GetThreadRangesLocked()
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/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()