Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost
[cris-mirror.git] / arch / parisc / include / asm / ptrace.h
blob46da07670c2bea266084945fd9ff4f5a42b25c58
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /* written by Philipp Rumpf, Copyright (C) 1999 SuSE GmbH Nuernberg
3 ** Copyright (C) 2000 Grant Grundler, Hewlett-Packard
4 */
5 #ifndef _PARISC_PTRACE_H
6 #define _PARISC_PTRACE_H
8 #include <uapi/asm/ptrace.h>
11 #define task_regs(task) ((struct pt_regs *) ((char *)(task) + TASK_REGS))
13 #define arch_has_single_step() 1
14 #define arch_has_block_step() 1
16 /* XXX should we use iaoq[1] or iaoq[0] ? */
17 #define user_mode(regs) (((regs)->iaoq[0] & 3) ? 1 : 0)
18 #define user_space(regs) (((regs)->iasq[1] != 0) ? 1 : 0)
19 #define instruction_pointer(regs) ((regs)->iaoq[0] & ~3)
20 #define user_stack_pointer(regs) ((regs)->gr[30])
21 unsigned long profile_pc(struct pt_regs *);
23 static inline unsigned long regs_return_value(struct pt_regs *regs)
25 return regs->gr[20];
28 #endif