diff options
author | Bhasker Hariharan <bhaskerh@google.com> | 2021-03-11 08:23:55 -0800 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-03-11 08:25:51 -0800 |
commit | 1020ac83f47cd6b178e7655f413fcd4f3cd2aa4c (patch) | |
tree | 891343cb91f9b9b9a76ffa9e974f8d0fdf99023b /pkg/abi | |
parent | a44dc15bdce80adf4468972347e3bd7f3ed8d573 (diff) |
Move Arch specific code to arch specific files.
PiperOrigin-RevId: 362297474
Diffstat (limited to 'pkg/abi')
-rw-r--r-- | pkg/abi/linux/ptrace_amd64.go | 11 | ||||
-rw-r--r-- | pkg/abi/linux/ptrace_arm64.go | 11 |
2 files changed, 22 insertions, 0 deletions
diff --git a/pkg/abi/linux/ptrace_amd64.go b/pkg/abi/linux/ptrace_amd64.go index ed3881e27..50e22fe7e 100644 --- a/pkg/abi/linux/ptrace_amd64.go +++ b/pkg/abi/linux/ptrace_amd64.go @@ -50,3 +50,14 @@ type PtraceRegs struct { Fs uint64 Gs uint64 } + +// InstructionPointer returns the address of the next instruction to +// be executed. +func (p *PtraceRegs) InstructionPointer() uint64 { + return p.Rip +} + +// StackPointer returns the address of the Stack pointer. +func (p *PtraceRegs) StackPointer() uint64 { + return p.Rsp +} 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 +} |