Home
last modified time | relevance | path

Searched refs:stackFrameAddress (Results 1 – 13 of 13) sorted by relevance

/haiku/src/kits/debug/arch/x86_64/
H A Darch_debug_support.cpp21 void **ip, void **stackFrameAddress) in arch_debug_get_instruction_pointer() argument
30 *stackFrameAddress = (void*)cpuState.rbp; in arch_debug_get_instruction_pointer()
37 arch_debug_get_stack_frame(debug_context *context, void *stackFrameAddress, in arch_debug_get_stack_frame() argument
41 ssize_t bytesRead = debug_read_memory(context, stackFrameAddress, in arch_debug_get_stack_frame()
48 stackFrameInfo->frame = stackFrameAddress; in arch_debug_get_stack_frame()
/haiku/src/kits/debug/arch/riscv64/
H A Darch_debug_support.cpp21 void **ip, void **stackFrameAddress) in arch_debug_get_instruction_pointer() argument
30 *stackFrameAddress = (void*)cpuState.x[7]; in arch_debug_get_instruction_pointer()
37 arch_debug_get_stack_frame(debug_context *context, void *stackFrameAddress, in arch_debug_get_stack_frame() argument
42 (uint8*)stackFrameAddress - sizeof(stackFrame), in arch_debug_get_stack_frame()
50 stackFrameInfo->frame = stackFrameAddress; in arch_debug_get_stack_frame()
/haiku/src/kits/debug/arch/x86/
H A Darch_debug_support.cpp20 void **ip, void **stackFrameAddress) in arch_debug_get_instruction_pointer() argument
29 *stackFrameAddress = (void*)cpuState.ebp; in arch_debug_get_instruction_pointer()
36 arch_debug_get_stack_frame(debug_context *context, void *stackFrameAddress, in arch_debug_get_stack_frame() argument
40 ssize_t bytesRead = debug_read_memory(context, stackFrameAddress, &stackFrame, in arch_debug_get_stack_frame()
47 stackFrameInfo->frame = stackFrameAddress; in arch_debug_get_stack_frame()
/haiku/src/kits/debug/arch/sparc/
H A Darch_debug_support.cpp21 void **pc, void **stackFrameAddress) in arch_debug_get_instruction_pointer() argument
30 *stackFrameAddress = (void*)cpuState.i6; in arch_debug_get_instruction_pointer()
37 arch_debug_get_stack_frame(debug_context *context, void *stackFrameAddress, in arch_debug_get_stack_frame() argument
41 ssize_t bytesRead = debug_read_memory(context, stackFrameAddress, in arch_debug_get_stack_frame()
48 stackFrameInfo->frame = stackFrameAddress; in arch_debug_get_stack_frame()
/haiku/src/kits/debug/arch/ppc/
H A Darch_debug_support.cpp14 void **ip, void **stackFrameAddress) in arch_debug_get_instruction_pointer() argument
22 arch_debug_get_stack_frame(debug_context *context, void *stackFrameAddress, in arch_debug_get_stack_frame() argument
/haiku/src/kits/debug/arch/arm64/
H A Darch_debug_support.cpp12 void **ip, void **stackFrameAddress) in arch_debug_get_instruction_pointer() argument
19 arch_debug_get_stack_frame(debug_context *context, void *stackFrameAddress, in arch_debug_get_stack_frame() argument
/haiku/src/kits/debug/arch/arm/
H A Darch_debug_support.cpp16 void **ip, void **stackFrameAddress) in arch_debug_get_instruction_pointer() argument
23 arch_debug_get_stack_frame(debug_context *context, void *stackFrameAddress, in arch_debug_get_stack_frame() argument
/haiku/src/kits/debug/arch/
H A Darch_debug_support.h15 thread_id thread, void **ip, void **stackFrameAddress);
17 void *stackFrameAddress, debug_stack_frame_info *stackFrameInfo);
/haiku/src/kits/debug/arch/mipsel/
H A Darch_debug_support.cpp14 void **ip, void **stackFrameAddress) in arch_debug_get_instruction_pointer() argument
22 arch_debug_get_stack_frame(debug_context *context, void *stackFrameAddress, in arch_debug_get_stack_frame() argument
/haiku/src/kits/debug/arch/m68k/
H A Darch_debug_support.cpp20 void **ip, void **stackFrameAddress) in arch_debug_get_instruction_pointer() argument
29 arch_debug_get_stack_frame(debug_context *context, void *stackFrameAddress, in arch_debug_get_stack_frame() argument
/haiku/src/kits/debug/
H A Ddebug_support.cpp322 void **ip, void **stackFrameAddress) in debug_get_instruction_pointer() argument
324 if (!context || !ip || !stackFrameAddress) in debug_get_instruction_pointer()
328 stackFrameAddress); in debug_get_instruction_pointer()
333 debug_get_stack_frame(debug_context *context, void *stackFrameAddress, in debug_get_stack_frame() argument
336 if (!context || !stackFrameAddress || !stackFrameInfo) in debug_get_stack_frame()
339 return arch_debug_get_stack_frame(context, stackFrameAddress, in debug_get_stack_frame()
/haiku/headers/private/debug/
H A Ddebug_support.h55 void **ip, void **stackFrameAddress);
57 void *stackFrameAddress, debug_stack_frame_info *stackFrameInfo);
/haiku/src/servers/debug/
H A DDebugServer.cpp953 void *stackFrameAddress = NULL; in _PrintStackTrace() local
955 &stackFrameAddress); in _PrintStackTrace()
976 error = debug_get_stack_frame(&fDebugContext, stackFrameAddress, in _PrintStackTrace()
988 stackFrameAddress = stackFrameInfo.parent_frame; in _PrintStackTrace()