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
Currently the Golang native unwinder generates separate stack deltas when unwinding using LR or SP.
Since then the framepointers should be fixed, see e.g. golang/go#58432
Investigate if it would be possible to now use frame pointer unwinding on Golang/arm64. This requires a new unwind instruction to unwind using lr or fp depending on whether we are on leaf frame or not, and to detect if the Go runtime has proper frame pointers.
The text was updated successfully, but these errors were encountered:
Currently the Golang native unwinder generates separate stack deltas when unwinding using
LR
orSP
.Since then the framepointers should be fixed, see e.g. golang/go#58432
Investigate if it would be possible to now use frame pointer unwinding on Golang/arm64. This requires a new unwind instruction to unwind using
lr
orfp
depending on whether we are on leaf frame or not, and to detect if the Go runtime has proper frame pointers.The text was updated successfully, but these errors were encountered: