summaryrefslogtreecommitdiffhomepage
path: root/pkg/abi/linux/ptrace_arm64.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/abi/linux/ptrace_arm64.go')
-rw-r--r--pkg/abi/linux/ptrace_arm64.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/pkg/abi/linux/ptrace_arm64.go b/pkg/abi/linux/ptrace_arm64.go
index 6147738b3..da36811d2 100644
--- a/pkg/abi/linux/ptrace_arm64.go
+++ b/pkg/abi/linux/ptrace_arm64.go
@@ -27,3 +27,14 @@ type PtraceRegs struct {
Pc uint64
Pstate uint64
}
+
+// InstructionPointer returns the address of the next instruction to be
+// executed.
+func (p *PtraceRegs) InstructionPointer() uint64 {
+ return p.Pc
+}
+
+// StackPointer returns the address of the Stack pointer.
+func (p *PtraceRegs) StackPointer() uint64 {
+ return p.Sp
+}