1 /* $Id: ptrace.h,v 1.25 1997/03/04 16:27:25 jj Exp $ */
2 #ifndef _SPARC_PTRACE_H
3 #define _SPARC_PTRACE_H
7 /* This struct defines the way the registers are stored on the
8 * stack during a system call and basically all traps.
18 unsigned long u_regs[16]; /* globals and ins */
37 #define UREG_WIM UREG_G0
38 #define UREG_FADDR UREG_G0
39 #define UREG_FP UREG_I6
40 #define UREG_RETPC UREG_I7
42 /* A register window */
44 unsigned long locals[8];
48 /* A Sparc stack frame */
50 unsigned long locals[8];
52 struct sparc_stackf *fp;
53 unsigned long callers_pc;
55 unsigned long xargs[6];
56 unsigned long xxargs[1];
59 #define TRACEREG_SZ sizeof(struct pt_regs)
60 #define STACKFRAME_SZ sizeof(struct sparc_stackf)
63 #define user_mode(regs) (!((regs)->psr & PSR_PS))
64 #define instruction_pointer(regs) ((regs)->pc)
65 unsigned long profile_pc(struct pt_regs *);
66 extern void show_regs(struct pt_regs *);
69 #else /* __ASSEMBLY__ */
70 /* For assembly code. */
71 #define TRACEREG_SZ 0x50
72 #define STACKFRAME_SZ 0x60
76 * The asm_offsets.h is a generated file, so we cannot include it.
77 * It may be OK for glibc headers, but it's utterly pointless for C code.
78 * The assembly code using those offsets has to include it explicitly.
80 /* #include <asm/asm_offsets.h> */
82 /* These are for pt_regs. */
106 /* Reg_window offsets */
124 /* Stack_frame offsets */
142 #define SF_XARG0 0x44
143 #define SF_XARG1 0x48
144 #define SF_XARG2 0x4c
145 #define SF_XARG3 0x50
146 #define SF_XARG4 0x54
147 #define SF_XARG5 0x58
148 #define SF_XXARG 0x5c
150 /* Stuff for the ptrace system call */
151 #define PTRACE_SUNATTACH 10
152 #define PTRACE_SUNDETACH 11
153 #define PTRACE_GETREGS 12
154 #define PTRACE_SETREGS 13
155 #define PTRACE_GETFPREGS 14
156 #define PTRACE_SETFPREGS 15
157 #define PTRACE_READDATA 16
158 #define PTRACE_WRITEDATA 17
159 #define PTRACE_READTEXT 18
160 #define PTRACE_WRITETEXT 19
161 #define PTRACE_GETFPAREGS 20
162 #define PTRACE_SETFPAREGS 21
164 #define PTRACE_GETUCODE 29 /* stupid bsd-ism */
167 #endif /* !(_SPARC_PTRACE_H) */