ptrace.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:7k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* $Id: ptrace.h,v 1.13 1997/09/17 17:27:51 davem Exp $ */
  2. #ifndef _SPARC64_PTRACE_H
  3. #define _SPARC64_PTRACE_H
  4. #include <asm/pstate.h>
  5. /* This struct defines the way the registers are stored on the 
  6.  * stack during a system call and basically all traps.
  7.  */
  8. #ifndef __ASSEMBLY__
  9. struct pt_regs {
  10. unsigned long u_regs[16]; /* globals and ins */
  11. unsigned long tstate;
  12. unsigned long tpc;
  13. unsigned long tnpc;
  14. unsigned int y;
  15. unsigned int fprs;
  16. };
  17. struct pt_regs32 {
  18. unsigned int psr;
  19. unsigned int pc;
  20. unsigned int npc;
  21. unsigned int y;
  22. unsigned int u_regs[16]; /* globals and ins */
  23. };
  24. #define UREG_G0        0
  25. #define UREG_G1        1
  26. #define UREG_G2        2
  27. #define UREG_G3        3
  28. #define UREG_G4        4
  29. #define UREG_G5        5
  30. #define UREG_G6        6
  31. #define UREG_G7        7
  32. #define UREG_I0        8
  33. #define UREG_I1        9
  34. #define UREG_I2        10
  35. #define UREG_I3        11
  36. #define UREG_I4        12
  37. #define UREG_I5        13
  38. #define UREG_I6        14
  39. #define UREG_I7        15
  40. #define UREG_FP        UREG_I6
  41. #define UREG_RETPC     UREG_I7
  42. /* A V9 register window */
  43. struct reg_window {
  44. unsigned long locals[8];
  45. unsigned long ins[8];
  46. };
  47. /* A 32-bit register window. */
  48. struct reg_window32 {
  49. unsigned int locals[8];
  50. unsigned int ins[8];
  51. };
  52. /* A V9 Sparc stack frame */
  53. struct sparc_stackf {
  54. unsigned long locals[8];
  55.         unsigned long ins[6];
  56. struct sparc_stackf *fp;
  57. unsigned long callers_pc;
  58. char *structptr;
  59. unsigned long xargs[6];
  60. unsigned long xxargs[1];
  61. };
  62. /* A 32-bit Sparc stack frame */
  63. struct sparc_stackf32 {
  64. unsigned int locals[8];
  65.         unsigned int ins[6];
  66. unsigned int fp;
  67. unsigned int callers_pc;
  68. unsigned int structptr;
  69. unsigned int xargs[6];
  70. unsigned int xxargs[1];
  71. };
  72. struct sparc_trapf {
  73. unsigned long locals[8];
  74. unsigned long ins[8];
  75. unsigned long _unused;
  76. struct pt_regs *regs;
  77. };
  78. #define TRACEREG_SZ sizeof(struct pt_regs)
  79. #define STACKFRAME_SZ sizeof(struct sparc_stackf)
  80. #define REGWIN_SZ sizeof(struct reg_window)
  81. #define TRACEREG32_SZ sizeof(struct pt_regs32)
  82. #define STACKFRAME32_SZ sizeof(struct sparc_stackf32)
  83. #define REGWIN32_SZ sizeof(struct reg_window32)
  84. #ifdef __KERNEL__
  85. #define user_mode(regs) (!((regs)->tstate & TSTATE_PRIV))
  86. #define instruction_pointer(regs) ((regs)->tpc)
  87. extern void show_regs(struct pt_regs *);
  88. #endif
  89. #else /* __ASSEMBLY__ */
  90. /* For assembly code. */
  91. #define TRACEREG_SZ 0xa0
  92. #define STACKFRAME_SZ 0xc0
  93. #define REGWIN_SZ 0x80
  94. #define TRACEREG32_SZ 0x50
  95. #define STACKFRAME32_SZ 0x60
  96. #define REGWIN32_SZ 0x40
  97. #include <asm/asm_offsets.h>
  98. #endif
  99. #ifdef __KERNEL__
  100. #define STACK_BIAS 2047
  101. #endif
  102. /* These are for pt_regs. */
  103. #define PT_V9_G0     0x00
  104. #define PT_V9_G1     0x08
  105. #define PT_V9_G2     0x10
  106. #define PT_V9_G3     0x18
  107. #define PT_V9_G4     0x20
  108. #define PT_V9_G5     0x28
  109. #define PT_V9_G6     0x30
  110. #define PT_V9_G7     0x38
  111. #define PT_V9_I0     0x40
  112. #define PT_V9_I1     0x48
  113. #define PT_V9_I2     0x50
  114. #define PT_V9_I3     0x58
  115. #define PT_V9_I4     0x60
  116. #define PT_V9_I5     0x68
  117. #define PT_V9_I6     0x70
  118. #define PT_V9_FP     PT_V9_I6
  119. #define PT_V9_I7     0x78
  120. #define PT_V9_TSTATE 0x80
  121. #define PT_V9_TPC    0x88
  122. #define PT_V9_TNPC   0x90
  123. #define PT_V9_Y      0x98
  124. #define PT_V9_FPRS   0x9c
  125. #define PT_TSTATE PT_V9_TSTATE
  126. #define PT_TPC PT_V9_TPC
  127. #define PT_TNPC PT_V9_TNPC
  128. /* These for pt_regs32. */
  129. #define PT_PSR    0x0
  130. #define PT_PC     0x4
  131. #define PT_NPC    0x8
  132. #define PT_Y      0xc
  133. #define PT_G0     0x10
  134. #define PT_WIM    PT_G0
  135. #define PT_G1     0x14
  136. #define PT_G2     0x18
  137. #define PT_G3     0x1c
  138. #define PT_G4     0x20
  139. #define PT_G5     0x24
  140. #define PT_G6     0x28
  141. #define PT_G7     0x2c
  142. #define PT_I0     0x30
  143. #define PT_I1     0x34
  144. #define PT_I2     0x38
  145. #define PT_I3     0x3c
  146. #define PT_I4     0x40
  147. #define PT_I5     0x44
  148. #define PT_I6     0x48
  149. #define PT_FP     PT_I6
  150. #define PT_I7     0x4c
  151. /* Reg_window offsets */
  152. #define RW_V9_L0     0x00
  153. #define RW_V9_L1     0x08
  154. #define RW_V9_L2     0x10
  155. #define RW_V9_L3     0x18
  156. #define RW_V9_L4     0x20
  157. #define RW_V9_L5     0x28
  158. #define RW_V9_L6     0x30
  159. #define RW_V9_L7     0x38
  160. #define RW_V9_I0     0x40
  161. #define RW_V9_I1     0x48
  162. #define RW_V9_I2     0x50
  163. #define RW_V9_I3     0x58
  164. #define RW_V9_I4     0x60
  165. #define RW_V9_I5     0x68
  166. #define RW_V9_I6     0x70
  167. #define RW_V9_I7     0x78
  168. #define RW_L0     0x00
  169. #define RW_L1     0x04
  170. #define RW_L2     0x08
  171. #define RW_L3     0x0c
  172. #define RW_L4     0x10
  173. #define RW_L5     0x14
  174. #define RW_L6     0x18
  175. #define RW_L7     0x1c
  176. #define RW_I0     0x20
  177. #define RW_I1     0x24
  178. #define RW_I2     0x28
  179. #define RW_I3     0x2c
  180. #define RW_I4     0x30
  181. #define RW_I5     0x34
  182. #define RW_I6     0x38
  183. #define RW_I7     0x3c
  184. /* Stack_frame offsets */
  185. #define SF_V9_L0     0x00
  186. #define SF_V9_L1     0x08
  187. #define SF_V9_L2     0x10
  188. #define SF_V9_L3     0x18
  189. #define SF_V9_L4     0x20
  190. #define SF_V9_L5     0x28
  191. #define SF_V9_L6     0x30
  192. #define SF_V9_L7     0x38
  193. #define SF_V9_I0     0x40
  194. #define SF_V9_I1     0x48
  195. #define SF_V9_I2     0x50
  196. #define SF_V9_I3     0x58
  197. #define SF_V9_I4     0x60
  198. #define SF_V9_I5     0x68
  199. #define SF_V9_FP     0x70
  200. #define SF_V9_PC     0x78
  201. #define SF_V9_RETP   0x80
  202. #define SF_V9_XARG0  0x88
  203. #define SF_V9_XARG1  0x90
  204. #define SF_V9_XARG2  0x98
  205. #define SF_V9_XARG3  0xa0
  206. #define SF_V9_XARG4  0xa8
  207. #define SF_V9_XARG5  0xb0
  208. #define SF_V9_XXARG  0xb8
  209. #define SF_L0     0x00
  210. #define SF_L1     0x04
  211. #define SF_L2     0x08
  212. #define SF_L3     0x0c
  213. #define SF_L4     0x10
  214. #define SF_L5     0x14
  215. #define SF_L6     0x18
  216. #define SF_L7     0x1c
  217. #define SF_I0     0x20
  218. #define SF_I1     0x24
  219. #define SF_I2     0x28
  220. #define SF_I3     0x2c
  221. #define SF_I4     0x30
  222. #define SF_I5     0x34
  223. #define SF_FP     0x38
  224. #define SF_PC     0x3c
  225. #define SF_RETP   0x40
  226. #define SF_XARG0  0x44
  227. #define SF_XARG1  0x48
  228. #define SF_XARG2  0x4c
  229. #define SF_XARG3  0x50
  230. #define SF_XARG4  0x54
  231. #define SF_XARG5  0x58
  232. #define SF_XXARG  0x5c
  233. /* Stuff for the ptrace system call */
  234. #define PTRACE_SUNATTACH          10
  235. #define PTRACE_SUNDETACH          11
  236. #define PTRACE_GETREGS            12
  237. #define PTRACE_SETREGS            13
  238. #define PTRACE_GETFPREGS          14
  239. #define PTRACE_SETFPREGS          15
  240. #define PTRACE_READDATA           16
  241. #define PTRACE_WRITEDATA          17
  242. #define PTRACE_READTEXT           18
  243. #define PTRACE_WRITETEXT          19
  244. #define PTRACE_GETFPAREGS         20
  245. #define PTRACE_SETFPAREGS         21
  246. /* There are for debugging 64-bit processes, either from a 32 or 64 bit
  247.  * parent.  Thus their compliments are for debugging 32-bit processes only.
  248.  */
  249. #define PTRACE_GETREGS64   22
  250. #define PTRACE_SETREGS64   23
  251. /* PTRACE_SYSCALL is 24 */
  252. #define PTRACE_GETFPREGS64   25
  253. #define PTRACE_SETFPREGS64   26
  254. #define PTRACE_GETUCODE           29  /* stupid bsd-ism */
  255. /* These are for 32-bit processes debugging 64-bit ones.
  256.  * Here addr and addr2 are passed in %g2 and %g3 respectively.
  257.  */
  258. #define PTRACE_PEEKTEXT64         (30 + PTRACE_PEEKTEXT)
  259. #define PTRACE_POKETEXT64         (30 + PTRACE_POKETEXT)
  260. #define PTRACE_PEEKDATA64         (30 + PTRACE_PEEKDATA)
  261. #define PTRACE_POKEDATA64         (30 + PTRACE_POKEDATA)
  262. #define PTRACE_READDATA64         (30 + PTRACE_READDATA)
  263. #define PTRACE_WRITEDATA64        (30 + PTRACE_WRITEDATA)
  264. #define PTRACE_READTEXT64         (30 + PTRACE_READTEXT)
  265. #define PTRACE_WRITETEXT64        (30 + PTRACE_WRITETEXT)
  266. #endif /* !(_SPARC64_PTRACE_H) */