ptrace.h 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. /*
  2. * linux/include/asm-m32r/ptrace.h
  3. *
  4. * This file is subject to the terms and conditions of the GNU General Public
  5. * License. See the file "COPYING" in the main directory of this archive
  6. * for more details.
  7. *
  8. * M32R version:
  9. * Copyright (C) 2001-2002, 2004 Hirokazu Takata <takata at linux-m32r.org>
  10. */
  11. #ifndef _UAPI_ASM_M32R_PTRACE_H
  12. #define _UAPI_ASM_M32R_PTRACE_H
  13. /* 0 - 13 are integer registers (general purpose registers). */
  14. #define PT_R4 0
  15. #define PT_R5 1
  16. #define PT_R6 2
  17. #define PT_REGS 3
  18. #define PT_R0 4
  19. #define PT_R1 5
  20. #define PT_R2 6
  21. #define PT_R3 7
  22. #define PT_R7 8
  23. #define PT_R8 9
  24. #define PT_R9 10
  25. #define PT_R10 11
  26. #define PT_R11 12
  27. #define PT_R12 13
  28. #define PT_SYSCNR 14
  29. #define PT_R13 PT_FP
  30. #define PT_R14 PT_LR
  31. #define PT_R15 PT_SP
  32. /* processor status and miscellaneous context registers. */
  33. #define PT_ACC0H 15
  34. #define PT_ACC0L 16
  35. #define PT_ACC1H 17 /* ISA_DSP_LEVEL2 only */
  36. #define PT_ACC1L 18 /* ISA_DSP_LEVEL2 only */
  37. #define PT_PSW 19
  38. #define PT_BPC 20
  39. #define PT_BBPSW 21
  40. #define PT_BBPC 22
  41. #define PT_SPU 23
  42. #define PT_FP 24
  43. #define PT_LR 25
  44. #define PT_SPI 26
  45. #define PT_ORIGR0 27
  46. /* virtual pt_reg entry for gdb */
  47. #define PT_PC 30
  48. #define PT_CBR 31
  49. #define PT_EVB 32
  50. /* Control registers. */
  51. #define SPR_CR0 PT_PSW
  52. #define SPR_CR1 PT_CBR /* read only */
  53. #define SPR_CR2 PT_SPI
  54. #define SPR_CR3 PT_SPU
  55. #define SPR_CR4
  56. #define SPR_CR5 PT_EVB /* part of M32R/E, M32R/I core only */
  57. #define SPR_CR6 PT_BPC
  58. #define SPR_CR7
  59. #define SPR_CR8 PT_BBPSW
  60. #define SPR_CR9
  61. #define SPR_CR10
  62. #define SPR_CR11
  63. #define SPR_CR12
  64. #define SPR_CR13 PT_WR
  65. #define SPR_CR14 PT_BBPC
  66. #define SPR_CR15
  67. /* this struct defines the way the registers are stored on the
  68. stack during a system call. */
  69. struct pt_regs {
  70. /* Saved main processor registers. */
  71. unsigned long r4;
  72. unsigned long r5;
  73. unsigned long r6;
  74. struct pt_regs *pt_regs;
  75. unsigned long r0;
  76. unsigned long r1;
  77. unsigned long r2;
  78. unsigned long r3;
  79. unsigned long r7;
  80. unsigned long r8;
  81. unsigned long r9;
  82. unsigned long r10;
  83. unsigned long r11;
  84. unsigned long r12;
  85. long syscall_nr;
  86. /* Saved main processor status and miscellaneous context registers. */
  87. unsigned long acc0h;
  88. unsigned long acc0l;
  89. unsigned long acc1h; /* ISA_DSP_LEVEL2 only */
  90. unsigned long acc1l; /* ISA_DSP_LEVEL2 only */
  91. unsigned long psw;
  92. unsigned long bpc; /* saved PC for TRAP syscalls */
  93. unsigned long bbpsw;
  94. unsigned long bbpc;
  95. unsigned long spu; /* saved user stack */
  96. unsigned long fp;
  97. unsigned long lr; /* saved PC for JL syscalls */
  98. unsigned long spi; /* saved kernel stack */
  99. unsigned long orig_r0;
  100. };
  101. /* Arbitrarily choose the same ptrace numbers as used by the Sparc code. */
  102. #define PTRACE_GETREGS 12
  103. #define PTRACE_SETREGS 13
  104. #define PTRACE_OLDSETOPTIONS 21
  105. #endif /* _UAPI_ASM_M32R_PTRACE_H */