linux-m68k-low.cc 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270
  1. /* GNU/Linux/m68k specific low level interface, for the remote server for GDB.
  2. Copyright (C) 1995-2022 Free Software Foundation, Inc.
  3. This file is part of GDB.
  4. This program is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 3 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program. If not, see <http://www.gnu.org/licenses/>. */
  14. #include "server.h"
  15. #include "linux-low.h"
  16. /* Linux target op definitions for the m68k architecture. */
  17. class m68k_target : public linux_process_target
  18. {
  19. public:
  20. const regs_info *get_regs_info () override;
  21. const gdb_byte *sw_breakpoint_from_kind (int kind, int *size) override;
  22. protected:
  23. void low_arch_setup () override;
  24. bool low_cannot_fetch_register (int regno) override;
  25. bool low_cannot_store_register (int regno) override;
  26. bool low_supports_breakpoints () override;
  27. CORE_ADDR low_get_pc (regcache *regcache) override;
  28. void low_set_pc (regcache *regcache, CORE_ADDR newpc) override;
  29. int low_decr_pc_after_break () override;
  30. bool low_breakpoint_at (CORE_ADDR pc) override;
  31. };
  32. /* The singleton target ops object. */
  33. static m68k_target the_m68k_target;
  34. bool
  35. m68k_target::low_supports_breakpoints ()
  36. {
  37. return true;
  38. }
  39. CORE_ADDR
  40. m68k_target::low_get_pc (regcache *regcache)
  41. {
  42. return linux_get_pc_32bit (regcache);
  43. }
  44. void
  45. m68k_target::low_set_pc (regcache *regcache, CORE_ADDR pc)
  46. {
  47. linux_set_pc_32bit (regcache, pc);
  48. }
  49. int
  50. m68k_target::low_decr_pc_after_break ()
  51. {
  52. return 2;
  53. }
  54. /* Defined in auto-generated file reg-m68k.c. */
  55. void init_registers_m68k (void);
  56. extern const struct target_desc *tdesc_m68k;
  57. #ifdef HAVE_SYS_REG_H
  58. #include <sys/reg.h>
  59. #endif
  60. #define m68k_num_regs 29
  61. #define m68k_num_gregs 18
  62. /* This table must line up with REGISTER_NAMES in tm-m68k.h */
  63. static int m68k_regmap[] =
  64. {
  65. #ifdef PT_D0
  66. PT_D0 * 4, PT_D1 * 4, PT_D2 * 4, PT_D3 * 4,
  67. PT_D4 * 4, PT_D5 * 4, PT_D6 * 4, PT_D7 * 4,
  68. PT_A0 * 4, PT_A1 * 4, PT_A2 * 4, PT_A3 * 4,
  69. PT_A4 * 4, PT_A5 * 4, PT_A6 * 4, PT_USP * 4,
  70. PT_SR * 4, PT_PC * 4,
  71. #else
  72. 14 * 4, 0 * 4, 1 * 4, 2 * 4, 3 * 4, 4 * 4, 5 * 4, 6 * 4,
  73. 7 * 4, 8 * 4, 9 * 4, 10 * 4, 11 * 4, 12 * 4, 13 * 4, 15 * 4,
  74. 17 * 4, 18 * 4,
  75. #endif
  76. #ifdef PT_FP0
  77. PT_FP0 * 4, PT_FP1 * 4, PT_FP2 * 4, PT_FP3 * 4,
  78. PT_FP4 * 4, PT_FP5 * 4, PT_FP6 * 4, PT_FP7 * 4,
  79. PT_FPCR * 4, PT_FPSR * 4, PT_FPIAR * 4
  80. #else
  81. 21 * 4, 24 * 4, 27 * 4, 30 * 4, 33 * 4, 36 * 4,
  82. 39 * 4, 42 * 4, 45 * 4, 46 * 4, 47 * 4
  83. #endif
  84. };
  85. bool
  86. m68k_target::low_cannot_store_register (int regno)
  87. {
  88. return (regno >= m68k_num_regs);
  89. }
  90. bool
  91. m68k_target::low_cannot_fetch_register (int regno)
  92. {
  93. return (regno >= m68k_num_regs);
  94. }
  95. #ifdef HAVE_PTRACE_GETREGS
  96. #include <sys/procfs.h>
  97. #include "nat/gdb_ptrace.h"
  98. static void
  99. m68k_fill_gregset (struct regcache *regcache, void *buf)
  100. {
  101. int i;
  102. for (i = 0; i < m68k_num_gregs; i++)
  103. collect_register (regcache, i, (char *) buf + m68k_regmap[i]);
  104. }
  105. static void
  106. m68k_store_gregset (struct regcache *regcache, const void *buf)
  107. {
  108. int i;
  109. for (i = 0; i < m68k_num_gregs; i++)
  110. supply_register (regcache, i, (const char *) buf + m68k_regmap[i]);
  111. }
  112. static void
  113. m68k_fill_fpregset (struct regcache *regcache, void *buf)
  114. {
  115. int i;
  116. for (i = m68k_num_gregs; i < m68k_num_regs; i++)
  117. collect_register (regcache, i, ((char *) buf
  118. + (m68k_regmap[i] - m68k_regmap[m68k_num_gregs])));
  119. }
  120. static void
  121. m68k_store_fpregset (struct regcache *regcache, const void *buf)
  122. {
  123. int i;
  124. for (i = m68k_num_gregs; i < m68k_num_regs; i++)
  125. supply_register (regcache, i, ((const char *) buf
  126. + (m68k_regmap[i] - m68k_regmap[m68k_num_gregs])));
  127. }
  128. #endif /* HAVE_PTRACE_GETREGS */
  129. static struct regset_info m68k_regsets[] = {
  130. #ifdef HAVE_PTRACE_GETREGS
  131. { PTRACE_GETREGS, PTRACE_SETREGS, 0, sizeof (elf_gregset_t),
  132. GENERAL_REGS,
  133. m68k_fill_gregset, m68k_store_gregset },
  134. { PTRACE_GETFPREGS, PTRACE_SETFPREGS, 0, sizeof (elf_fpregset_t),
  135. FP_REGS,
  136. m68k_fill_fpregset, m68k_store_fpregset },
  137. #endif /* HAVE_PTRACE_GETREGS */
  138. NULL_REGSET
  139. };
  140. static const gdb_byte m68k_breakpoint[] = { 0x4E, 0x4F };
  141. #define m68k_breakpoint_len 2
  142. /* Implementation of target ops method "sw_breakpoint_from_kind". */
  143. const gdb_byte *
  144. m68k_target::sw_breakpoint_from_kind (int kind, int *size)
  145. {
  146. *size = m68k_breakpoint_len;
  147. return m68k_breakpoint;
  148. }
  149. bool
  150. m68k_target::low_breakpoint_at (CORE_ADDR pc)
  151. {
  152. unsigned char c[2];
  153. read_inferior_memory (pc, c, 2);
  154. if (c[0] == 0x4E && c[1] == 0x4F)
  155. return true;
  156. return false;
  157. }
  158. #include <asm/ptrace.h>
  159. #ifdef PTRACE_GET_THREAD_AREA
  160. /* Fetch the thread-local storage pointer for libthread_db. */
  161. ps_err_e
  162. ps_get_thread_area (struct ps_prochandle *ph,
  163. lwpid_t lwpid, int idx, void **base)
  164. {
  165. if (ptrace (PTRACE_GET_THREAD_AREA, lwpid, NULL, base) != 0)
  166. return PS_ERR;
  167. /* IDX is the bias from the thread pointer to the beginning of the
  168. thread descriptor. It has to be subtracted due to implementation
  169. quirks in libthread_db. */
  170. *base = (void *) ((char *)*base - idx);
  171. return PS_OK;
  172. }
  173. #endif /* PTRACE_GET_THREAD_AREA */
  174. static struct regsets_info m68k_regsets_info =
  175. {
  176. m68k_regsets, /* regsets */
  177. 0, /* num_regsets */
  178. NULL, /* disabled_regsets */
  179. };
  180. static struct usrregs_info m68k_usrregs_info =
  181. {
  182. m68k_num_regs,
  183. m68k_regmap,
  184. };
  185. static struct regs_info myregs_info =
  186. {
  187. NULL, /* regset_bitmap */
  188. &m68k_usrregs_info,
  189. &m68k_regsets_info
  190. };
  191. const regs_info *
  192. m68k_target::get_regs_info ()
  193. {
  194. return &myregs_info;
  195. }
  196. void
  197. m68k_target::low_arch_setup ()
  198. {
  199. current_process ()->tdesc = tdesc_m68k;
  200. }
  201. /* The linux target ops object. */
  202. linux_process_target *the_linux_target = &the_m68k_target;
  203. void
  204. initialize_low_arch (void)
  205. {
  206. /* Initialize the Linux target descriptions. */
  207. init_registers_m68k ();
  208. initialize_regsets_info (&m68k_regsets_info);
  209. }