You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the el0_sync code, for the case where it is not an svc request, the handle_invalid_entry macro is included. This results in the kernel_entry macro being included again, and the registers being saved again, with register corruption.
If, like me, you're implementing a debugger using a BRK instruction, you've got register corruption after proceeding from a breakpoint.
The text was updated successfully, but these errors were encountered:
In the el0_sync code, for the case where it is not an svc request, the handle_invalid_entry macro is included. This results in the kernel_entry macro being included again, and the registers being saved again, with register corruption.
If, like me, you're implementing a debugger using a BRK instruction, you've got register corruption after proceeding from a breakpoint.
The text was updated successfully, but these errors were encountered: