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)
64 #define user_mode(regs) (!((regs)->psr & PSR_PS))
65 #define instruction_pointer(regs) ((regs)->pc)
66 unsigned long profile_pc(struct pt_regs
*);
67 extern void show_regs(struct pt_regs
*);
70 #else /* __ASSEMBLY__ */
71 /* For assembly code. */
72 #define TRACEREG_SZ 0x50
73 #define STACKFRAME_SZ 0x60
77 * The asm-offsets.h is a generated file, so we cannot include it.
78 * It may be OK for glibc headers, but it's utterly pointless for C code.
79 * The assembly code using those offsets has to include it explicitly.
81 /* #include <asm/asm-offsets.h> */
83 /* These are for pt_regs. */
107 /* Reg_window offsets */
125 /* Stack_frame offsets */
143 #define SF_XARG0 0x44
144 #define SF_XARG1 0x48
145 #define SF_XARG2 0x4c
146 #define SF_XARG3 0x50
147 #define SF_XARG4 0x54
148 #define SF_XARG5 0x58
149 #define SF_XXARG 0x5c
151 /* Stuff for the ptrace system call */
152 #define PTRACE_GETREGS 12
153 #define PTRACE_SETREGS 13
154 #define PTRACE_GETFPREGS 14
155 #define PTRACE_SETFPREGS 15
156 #define PTRACE_READDATA 16
157 #define PTRACE_WRITEDATA 17
158 #define PTRACE_READTEXT 18
159 #define PTRACE_WRITETEXT 19
160 #define PTRACE_GETFPAREGS 20
161 #define PTRACE_SETFPAREGS 21
163 #endif /* !(_SPARC_PTRACE_H) */