Home
last modified time | relevance | path

Searched refs:user_stack_base (Results 1 – 17 of 17) sorted by relevance

/haiku/src/system/kernel/arch/arm64/
H A Darch_thread.cpp83 thread->user_stack_base + thread->user_stack_size; in arch_thread_init_tls()
139 frame.sp = thread->user_stack_base + thread->user_stack_size; in arch_thread_enter_userspace()
H A Darch_debug.cpp374 if (thread->user_stack_base != 0) { in stack_trace()
376 (void *)thread->user_stack_base, in stack_trace()
377 (void *)(thread->user_stack_base + thread->user_stack_size)); in stack_trace()
/haiku/src/system/kernel/arch/ppc/
H A Darch_debug.cpp175 if (thread->user_stack_base != 0) { in stack_trace()
177 (void *)thread->user_stack_base, in stack_trace()
178 (void *)(thread->user_stack_base + thread->user_stack_size)); in stack_trace()
/haiku/src/system/kernel/arch/m68k/
H A Darch_debug.cpp175 if (thread->user_stack_base != 0) { in stack_trace()
177 (void *)thread->user_stack_base, in stack_trace()
178 (void *)(thread->user_stack_base + thread->user_stack_size)); in stack_trace()
/haiku/src/system/kernel/arch/arm/
H A Darch_debug.cpp384 if (thread->user_stack_base != 0) { in stack_trace()
386 (void *)thread->user_stack_base, in stack_trace()
387 (void *)(thread->user_stack_base + thread->user_stack_size)); in stack_trace()
H A Darch_thread.cpp120 thread->user_stack_base + thread->user_stack_size; in arch_thread_init_tls()
184 addr_t stackTop = thread->user_stack_base + thread->user_stack_size; in arch_thread_enter_userspace()
/haiku/src/system/kernel/arch/x86/
H A Darch_thread.cpp190 thread->user_stack_base + thread->user_stack_size; in arch_thread_init_tls()
H A Darch_debug.cpp703 if (thread->user_stack_base != 0) { in stack_trace()
705 (void*)thread->user_stack_base, in stack_trace()
706 (void*)(thread->user_stack_base + thread->user_stack_size)); in stack_trace()
/haiku/src/system/kernel/arch/riscv64/
H A Darch_thread.cpp69 thread->user_stack_base + thread->user_stack_size; in arch_thread_init_tls()
136 frame.sp = thread->user_stack_base + thread->user_stack_size; in arch_thread_enter_userspace()
H A Darch_debug.cpp655 if (thread->user_stack_base != 0) { in stack_trace()
657 (void*)thread->user_stack_base, in stack_trace()
658 (void*)(thread->user_stack_base + thread->user_stack_size)); in stack_trace()
/haiku/src/system/kernel/
H A Dthread.cpp195 user_stack_base(0), in Thread()
857 thread->user_stack_base = (addr_t)stackBase + guardSize; in create_thread_user_stack()
859 thread->user_stack_base = (addr_t)stackBase; in create_thread_user_stack()
968 if (thread->user_stack_base == 0) { in thread_create_thread()
1218 info->stack_base = (void *)thread->user_stack_base; in fill_thread_info()
1219 info->stack_end = (void *)(thread->user_stack_base in fill_thread_info()
1864 kprintf("user_stack_base: %p\n", (void *)thread->user_stack_base); in _dump_thread_info()
2428 thread->user_stack_base = 0; in thread_reset_for_exec()
H A Dteam.cpp1612 programArgs = (struct user_space_program_args*)(thread->user_stack_base in team_create_thread_start_internal()
2230 thread->user_stack_base = parentThread->user_stack_base; in fork_team()
H A Dsignal.cpp1339 stack->ss_sp = (void*)thread->user_stack_base; in signal_get_user_stack()
/haiku/src/system/kernel/arch/x86/32/
H A Dthread.cpp225 addr_t stackTop = thread->user_stack_base + thread->user_stack_size; in arch_thread_enter_userspace()
/haiku/src/system/kernel/arch/x86/64/
H A Dthread.cpp277 addr_t stackTop = thread->user_stack_base + thread->user_stack_size; in arch_thread_enter_userspace()
/haiku/headers/private/kernel/
H A Dthread_types.h530 addr_t user_stack_base; // protected by thread lock member
/haiku/src/system/kernel/debug/
H A Dcore_dump.cpp187 fStackBase = fThread->user_stack_base; in GetState()