#736: Show targets of vtable/itable calls

This commit is contained in:
Andrei Pangin
2023-03-28 03:59:33 +01:00
parent ac561f3ba7
commit 6b35b46070
11 changed files with 86 additions and 5 deletions
+5
View File
@@ -53,6 +53,11 @@ uintptr_t StackFrame::arg3() {
return (uintptr_t)_ucontext->uc_mcontext.arm_r3;
}
uintptr_t StackFrame::jarg0() {
// Unimplemented
return 0;
}
void StackFrame::ret() {
_ucontext->uc_mcontext.arm_pc = _ucontext->uc_mcontext.arm_lr;
}