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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * This file is subject to the terms and conditions of the GNU General Public
  3.  * License.  See the file "COPYING" in the main directory of this archive
  4.  * for more details.
  5.  *
  6.  * Copyright (C) 1994, 95, 96, 97, 98, 99, 2000 by Ralf Baechle
  7.  * Copyright (C) 1999, 2000 Silicon Graphics, Inc.
  8.  */
  9. #ifndef _ASM_PTRACE_H
  10. #define _ASM_PTRACE_H
  11. #include <linux/types.h>
  12. /* 0 - 31 are integer registers, 32 - 63 are fp registers.  */
  13. #define FPR_BASE 32
  14. #define PC 64
  15. #define CAUSE 65
  16. #define BADVADDR 66
  17. #define MMHI 67
  18. #define MMLO 68
  19. #define FPC_CSR 69
  20. #define FPC_EIR 70
  21. #ifndef _LANGUAGE_ASSEMBLY
  22. #define abi64_no_regargs
  23. unsigned long __dummy0,
  24. unsigned long __dummy1,
  25. unsigned long __dummy2,
  26. unsigned long __dummy3,
  27. unsigned long __dummy4,
  28. unsigned long __dummy5,
  29. unsigned long __dummy6,
  30. unsigned long __dummy7
  31. /*
  32.  * This struct defines the way the registers are stored on the stack during a
  33.  * system call/exception. As usual the registers k0/k1 aren't being saved.
  34.  */
  35. struct pt_regs {
  36. /* Saved main processor registers. */
  37. unsigned long regs[32];
  38. /* Other saved registers. */
  39. unsigned long lo;
  40. unsigned long hi;
  41. /*
  42.  * saved cp0 registers
  43.  */
  44. unsigned long cp0_epc;
  45. unsigned long cp0_badvaddr;
  46. unsigned long cp0_status;
  47. unsigned long cp0_cause;
  48. };
  49. #endif /* !(_LANGUAGE_ASSEMBLY__) */
  50. /* Arbitrarily choose the same ptrace numbers as used by the Sparc code. */
  51. /* #define PTRACE_GETREGS 12 */
  52. /* #define PTRACE_SETREGS 13 */
  53. /* #define PTRACE_GETFPREGS 14 */
  54. /* #define PTRACE_SETFPREGS 15 */
  55. /* #define PTRACE_GETFPXREGS 18 */
  56. /* #define PTRACE_SETFPXREGS 19 */
  57. #define PTRACE_SETOPTIONS 21
  58. /* options set using PTRACE_SETOPTIONS */
  59. #define PTRACE_O_TRACESYSGOOD 0x00000001
  60. #ifdef _LANGUAGE_ASSEMBLY
  61. #include <asm/offset.h>
  62. #endif /* (_LANGUAGE_ASSEMBLY__) */
  63. #ifdef __KERNEL__
  64. #ifndef _LANGUAGE_ASSEMBLY
  65. #define instruction_pointer(regs) ((regs)->cp0_epc)
  66. extern void (*_show_regs)(struct pt_regs *);
  67. #define show_regs(regs) _show_regs(regs)
  68. #endif /* !(_LANGUAGE_ASSEMBLY__) */
  69. #endif
  70. #endif /* _ASM_PTRACE_H */