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

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

Completed in 88 milliseconds