Lines Matching refs:stack_begin
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()
465 ScanRangeForPointers(stack_begin, stack_end, frontier, "STACK", in ProcessThreads()