2 * Copyright (C) 2013 Altera Corporation
3 * Copyright (C) 2010 Tobias Klauser <tklauser@distanz.ch>
4 * Copyright (C) 2004 Microtronix Datacom Ltd
6 * based on m68k asm/processor.h
8 * This file is subject to the terms and conditions of the GNU General Public
9 * License. See the file "COPYING" in the main directory of this archive
13 #ifndef _ASM_NIOS2_PTRACE_H
14 #define _ASM_NIOS2_PTRACE_H
16 #include <uapi/asm/ptrace.h>
18 /* This struct defines the way the registers are stored on the
19 stack during a system call. */
23 unsigned long r8
; /* r8-r15 Caller-saved GP registers */
31 unsigned long r1
; /* Assembler temporary */
32 unsigned long r2
; /* Retval LS 32bits */
33 unsigned long r3
; /* Retval MS 32bits */
34 unsigned long r4
; /* r4-r7 Register arguments */
38 unsigned long orig_r2
; /* Copy of r2 ?? */
39 unsigned long ra
; /* Return address */
40 unsigned long fp
; /* Frame pointer */
41 unsigned long sp
; /* Stack pointer */
42 unsigned long gp
; /* Global pointer */
43 unsigned long estatus
;
44 unsigned long ea
; /* Exception return address (pc) */
45 unsigned long orig_r7
;
49 * This is the extended stack used by signal handlers and the context
50 * switcher: it's pushed after the normal "struct pt_regs".
53 unsigned long r16
; /* r16-r23 Callee-saved GP registers */
66 #define user_mode(regs) (((regs)->estatus & ESTATUS_EU))
68 #define instruction_pointer(regs) ((regs)->ra)
69 #define profile_pc(regs) instruction_pointer(regs)
70 #define user_stack_pointer(regs) ((regs)->sp)
71 extern void show_regs(struct pt_regs
*);
73 #define current_pt_regs() \
74 ((struct pt_regs *)((unsigned long)current_thread_info() + THREAD_SIZE)\
77 int do_syscall_trace_enter(void);
78 void do_syscall_trace_exit(void);
79 #endif /* __ASSEMBLY__ */
80 #endif /* _ASM_NIOS2_PTRACE_H */