ptrace.h 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. #ifndef _PPC64_PTRACE_H
  2. #define _PPC64_PTRACE_H
  3. /*
  4. * Copyright (C) 2001 PPC64 Team, IBM Corp
  5. *
  6. * This struct defines the way the registers are stored on the
  7. * kernel stack during a system call or other kernel entry.
  8. *
  9. * this should only contain volatile regs
  10. * since we can keep non-volatile in the thread_struct
  11. * should set this up when only volatiles are saved
  12. * by intr code.
  13. *
  14. * Since this is going on the stack, *CARE MUST BE TAKEN* to insure
  15. * that the overall structure is a multiple of 16 bytes in length.
  16. *
  17. * Note that the offsets of the fields in this struct correspond with
  18. * the PT_* values below. This simplifies arch/ppc64/kernel/ptrace.c.
  19. *
  20. * This program is free software; you can redistribute it and/or
  21. * modify it under the terms of the GNU General Public License
  22. * as published by the Free Software Foundation; either version
  23. * 2 of the License, or (at your option) any later version.
  24. */
  25. #ifndef __ASSEMBLY__
  26. #define PPC_REG unsigned long
  27. struct pt_regs {
  28. PPC_REG gpr[32];
  29. PPC_REG nip;
  30. PPC_REG msr;
  31. PPC_REG orig_gpr3; /* Used for restarting system calls */
  32. PPC_REG ctr;
  33. PPC_REG link;
  34. PPC_REG xer;
  35. PPC_REG ccr;
  36. PPC_REG softe; /* Soft enabled/disabled */
  37. PPC_REG trap; /* Reason for being here */
  38. PPC_REG dar; /* Fault registers */
  39. PPC_REG dsisr;
  40. PPC_REG result; /* Result of a system call */
  41. };
  42. #define PPC_REG_32 unsigned int
  43. struct pt_regs32 {
  44. PPC_REG_32 gpr[32];
  45. PPC_REG_32 nip;
  46. PPC_REG_32 msr;
  47. PPC_REG_32 orig_gpr3; /* Used for restarting system calls */
  48. PPC_REG_32 ctr;
  49. PPC_REG_32 link;
  50. PPC_REG_32 xer;
  51. PPC_REG_32 ccr;
  52. PPC_REG_32 mq; /* 601 only (not used at present) */
  53. /* Used on APUS to hold IPL value. */
  54. PPC_REG_32 trap; /* Reason for being here */
  55. PPC_REG_32 dar; /* Fault registers */
  56. PPC_REG_32 dsisr;
  57. PPC_REG_32 result; /* Result of a system call */
  58. };
  59. #define instruction_pointer(regs) ((regs)->nip)
  60. #ifdef CONFIG_SMP
  61. extern unsigned long profile_pc(struct pt_regs *regs);
  62. #else
  63. #define profile_pc(regs) instruction_pointer(regs)
  64. #endif
  65. #endif /* __ASSEMBLY__ */
  66. #define STACK_FRAME_OVERHEAD 112 /* size of minimum stack frame */
  67. /* Size of dummy stack frame allocated when calling signal handler. */
  68. #define __SIGNAL_FRAMESIZE 128
  69. #define __SIGNAL_FRAMESIZE32 64
  70. #define user_mode(regs) ((((regs)->msr) >> MSR_PR_LG) & 0x1)
  71. #define force_successful_syscall_return() \
  72. (current_thread_info()->syscall_noerror = 1)
  73. /*
  74. * We use the least-significant bit of the trap field to indicate
  75. * whether we have saved the full set of registers, or only a
  76. * partial set. A 1 there means the partial set.
  77. */
  78. #define FULL_REGS(regs) (((regs)->trap & 1) == 0)
  79. #define TRAP(regs) ((regs)->trap & ~0xF)
  80. #define CHECK_FULL_REGS(regs) BUG_ON(regs->trap & 1)
  81. /*
  82. * Offsets used by 'ptrace' system call interface.
  83. */
  84. #define PT_R0 0
  85. #define PT_R1 1
  86. #define PT_R2 2
  87. #define PT_R3 3
  88. #define PT_R4 4
  89. #define PT_R5 5
  90. #define PT_R6 6
  91. #define PT_R7 7
  92. #define PT_R8 8
  93. #define PT_R9 9
  94. #define PT_R10 10
  95. #define PT_R11 11
  96. #define PT_R12 12
  97. #define PT_R13 13
  98. #define PT_R14 14
  99. #define PT_R15 15
  100. #define PT_R16 16
  101. #define PT_R17 17
  102. #define PT_R18 18
  103. #define PT_R19 19
  104. #define PT_R20 20
  105. #define PT_R21 21
  106. #define PT_R22 22
  107. #define PT_R23 23
  108. #define PT_R24 24
  109. #define PT_R25 25
  110. #define PT_R26 26
  111. #define PT_R27 27
  112. #define PT_R28 28
  113. #define PT_R29 29
  114. #define PT_R30 30
  115. #define PT_R31 31
  116. #define PT_NIP 32
  117. #define PT_MSR 33
  118. #ifdef __KERNEL__
  119. #define PT_ORIG_R3 34
  120. #endif
  121. #define PT_CTR 35
  122. #define PT_LNK 36
  123. #define PT_XER 37
  124. #define PT_CCR 38
  125. #define PT_SOFTE 39
  126. #define PT_RESULT 43
  127. #define PT_FPR0 48
  128. /* Kernel and userspace will both use this PT_FPSCR value. 32-bit apps will have
  129. * visibility to the asm-ppc/ptrace.h header instead of this one.
  130. */
  131. #define PT_FPSCR (PT_FPR0 + 32) /* each FP reg occupies 1 slot in 64-bit space */
  132. #ifdef __KERNEL__
  133. #define PT_FPSCR32 (PT_FPR0 + 2*32 + 1) /* each FP reg occupies 2 32-bit userspace slots */
  134. #endif
  135. #define PT_VR0 82 /* each Vector reg occupies 2 slots in 64-bit */
  136. #define PT_VSCR (PT_VR0 + 32*2 + 1)
  137. #define PT_VRSAVE (PT_VR0 + 33*2)
  138. #ifdef __KERNEL__
  139. #define PT_VR0_32 164 /* each Vector reg occupies 4 slots in 32-bit */
  140. #define PT_VSCR_32 (PT_VR0 + 32*4 + 3)
  141. #define PT_VRSAVE_32 (PT_VR0 + 33*4)
  142. #endif
  143. /*
  144. * Get/set all the altivec registers vr0..vr31, vscr, vrsave, in one go.
  145. * The transfer totals 34 quadword. Quadwords 0-31 contain the
  146. * corresponding vector registers. Quadword 32 contains the vscr as the
  147. * last word (offset 12) within that quadword. Quadword 33 contains the
  148. * vrsave as the first word (offset 0) within the quadword.
  149. *
  150. * This definition of the VMX state is compatible with the current PPC32
  151. * ptrace interface. This allows signal handling and ptrace to use the same
  152. * structures. This also simplifies the implementation of a bi-arch
  153. * (combined (32- and 64-bit) gdb.
  154. */
  155. #define PTRACE_GETVRREGS 18
  156. #define PTRACE_SETVRREGS 19
  157. /* Additional PTRACE requests implemented on PowerPC. */
  158. #define PPC_PTRACE_GETREGS 0x99 /* Get GPRs 0 - 31 */
  159. #define PPC_PTRACE_SETREGS 0x98 /* Set GPRs 0 - 31 */
  160. #define PPC_PTRACE_GETFPREGS 0x97 /* Get FPRs 0 - 31 */
  161. #define PPC_PTRACE_SETFPREGS 0x96 /* Set FPRs 0 - 31 */
  162. #define PPC_PTRACE_PEEKTEXT_3264 0x95 /* Read word at location ADDR on a 64-bit process from a 32-bit process. */
  163. #define PPC_PTRACE_PEEKDATA_3264 0x94 /* Read word at location ADDR on a 64-bit process from a 32-bit process. */
  164. #define PPC_PTRACE_POKETEXT_3264 0x93 /* Write word at location ADDR on a 64-bit process from a 32-bit process. */
  165. #define PPC_PTRACE_POKEDATA_3264 0x92 /* Write word at location ADDR on a 64-bit process from a 32-bit process. */
  166. #define PPC_PTRACE_PEEKUSR_3264 0x91 /* Read a register (specified by ADDR) out of the "user area" on a 64-bit process from a 32-bit process. */
  167. #define PPC_PTRACE_POKEUSR_3264 0x90 /* Write DATA into location ADDR within the "user area" on a 64-bit process from a 32-bit process. */
  168. #endif /* _PPC64_PTRACE_H */