/haiku/src/kits/debug/arch/x86_64/ |
H A D | arch_debug_support.cpp | 21 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 D | arch_debug_support.cpp | 21 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 D | arch_debug_support.cpp | 20 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 D | arch_debug_support.cpp | 21 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 D | arch_debug_support.cpp | 14 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 D | arch_debug_support.cpp | 12 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 D | arch_debug_support.cpp | 16 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 D | arch_debug_support.h | 15 thread_id thread, void **ip, void **stackFrameAddress); 17 void *stackFrameAddress, debug_stack_frame_info *stackFrameInfo);
|
/haiku/src/kits/debug/arch/mipsel/ |
H A D | arch_debug_support.cpp | 14 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 D | arch_debug_support.cpp | 20 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 D | debug_support.cpp | 322 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 D | debug_support.h | 55 void **ip, void **stackFrameAddress); 57 void *stackFrameAddress, debug_stack_frame_info *stackFrameInfo);
|
/haiku/src/servers/debug/ |
H A D | DebugServer.cpp | 953 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()
|