Lines Matching refs:stack_begin
373 uptr stack_begin, stack_end, tls_begin, tls_end, cache_begin, cache_end; in ProcessThreads() local
376 GetThreadRangesLocked(os_id, &stack_begin, &stack_end, &tls_begin, in ProcessThreads()
393 sp = stack_begin; in ProcessThreads()
405 LOG_THREADS("Stack at %p-%p (SP = %p).\n", (void *)stack_begin, in ProcessThreads()
407 if (sp < stack_begin || sp >= stack_end) { in ProcessThreads()
414 while (stack_begin < stack_end && in ProcessThreads()
415 !IsAccessibleMemoryRange(stack_begin, 1)) { in ProcessThreads()
417 stack_begin += page_size; in ProcessThreads()
420 skipped, (void *)stack_begin, (void *)stack_end); in ProcessThreads()
423 stack_begin = sp; in ProcessThreads()
425 ScanRangeForPointers(stack_begin, stack_end, frontier, "STACK", in ProcessThreads()