hppa-netbsd-tdep.c 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  1. /* Target-dependent code for NetBSD/hppa
  2. Copyright (C) 2008-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 "defs.h"
  15. #include "osabi.h"
  16. #include "regcache.h"
  17. #include "regset.h"
  18. #include "trad-frame.h"
  19. #include "tramp-frame.h"
  20. #include "hppa-tdep.h"
  21. #include "hppa-bsd-tdep.h"
  22. #include "netbsd-tdep.h"
  23. #include "gdbarch.h"
  24. /* From <machine/mcontext.h>. */
  25. static int hppanbsd_mc_reg_offset[] =
  26. {
  27. /* r0 ... r31 */
  28. -1, 1 * 4, 2 * 4, 3 * 4,
  29. 4 * 4, 5 * 4, 6 * 4, 7 * 4,
  30. 8 * 4, 9 * 4, 10 * 4, 11 * 4,
  31. 12 * 4, 13 * 4, 14 * 4, 15 * 4,
  32. 16 * 4, 17 * 4, 18 * 4, 19 * 4,
  33. 20 * 4, 21 * 4, 22 * 4, 23 * 4,
  34. 24 * 4, 25 * 4, 26 * 4, 27 * 4,
  35. 28 * 4, 29 * 4, 30 * 4, 31 * 4,
  36. 32 * 4, /* HPPA_SAR_REGNUM */
  37. 35 * 4, /* HPPA_PCOQ_HEAD_REGNUM */
  38. 33 * 4, /* HPPA_PCSQ_HEAD_REGNUM */
  39. 36 * 4, /* HPPA_PCOQ_TAIL_REGNUM */
  40. 34 * 4, /* HPPA_PCSQ_TAIL_REGNUM */
  41. -1, /* HPPA_EIEM_REGNUM */
  42. -1, /* HPPA_IIR_REGNUM */
  43. -1, /* HPPA_ISR_REGNUM */
  44. -1, /* HPPA_IOR_REGNUM */
  45. 0 * 4, /* HPPA_IPSW_REGNUM */
  46. -1, /* spare? */
  47. 41 * 4, /* HPPA_SR4_REGNUM */
  48. 37 * 4, /* sr0 */
  49. 38 * 4, /* sr1 */
  50. 39 * 4, /* sr2 */
  51. 40 * 4, /* sr3 */
  52. /* more tbd */
  53. };
  54. static void hppanbsd_sigtramp_cache_init (const struct tramp_frame *,
  55. struct frame_info *,
  56. struct trad_frame_cache *,
  57. CORE_ADDR);
  58. static const struct tramp_frame hppanbsd_sigtramp_si4 =
  59. {
  60. SIGTRAMP_FRAME,
  61. 4,
  62. {
  63. { 0xc7d7c012, ULONGEST_MAX }, /* bb,>=,n %arg3, 30, 1f */
  64. { 0xd6e01c1e, ULONGEST_MAX }, /* depwi 0,31,2,%arg3 */
  65. { 0x0ee81093, ULONGEST_MAX }, /* ldw 4(%arg3), %r19 */
  66. { 0x0ee01097, ULONGEST_MAX }, /* ldw 0(%arg3), %arg3 */
  67. /* 1: */
  68. { 0xe8404000, ULONGEST_MAX }, /* blr %r0, %rp */
  69. { 0xeae0c002, ULONGEST_MAX }, /* bv,n %r0(%arg3) */
  70. { 0x08000240, ULONGEST_MAX }, /* nop */
  71. { 0x0803025a, ULONGEST_MAX }, /* copy %r3, %arg0 */
  72. { 0x20200801, ULONGEST_MAX }, /* ldil -40000000, %r1 */
  73. { 0xe420e008, ULONGEST_MAX }, /* be,l 4(%sr7, %r1), %sr0, %r31 */
  74. { 0x34160268, ULONGEST_MAX }, /* ldi 134, %t1 ; SYS_setcontext */
  75. { 0x081c025a, ULONGEST_MAX }, /* copy ret0, %arg0 */
  76. { 0x20200801, ULONGEST_MAX }, /* ldil -40000000, %r1 */
  77. { 0xe420e008, ULONGEST_MAX }, /* be,l 4(%sr7, %r1), %sr0, %r31 */
  78. { 0x34160002, ULONGEST_MAX }, /* ldi 1, %t1 ; SYS_exit */
  79. { TRAMP_SENTINEL_INSN, ULONGEST_MAX }
  80. },
  81. hppanbsd_sigtramp_cache_init
  82. };
  83. static void
  84. hppanbsd_sigtramp_cache_init (const struct tramp_frame *self,
  85. struct frame_info *this_frame,
  86. struct trad_frame_cache *this_cache,
  87. CORE_ADDR func)
  88. {
  89. CORE_ADDR sp = get_frame_register_unsigned (this_frame, HPPA_SP_REGNUM);
  90. CORE_ADDR base;
  91. int *reg_offset;
  92. int num_regs;
  93. int i;
  94. reg_offset = hppanbsd_mc_reg_offset;
  95. num_regs = ARRAY_SIZE (hppanbsd_mc_reg_offset);
  96. /* frame pointer */
  97. base = sp - 0x280;
  98. /* offsetof(struct sigframe_siginfo, sf_uc) = 128 */
  99. base += 128;
  100. /* offsetof(ucontext_t, uc_mcontext) == 40 */
  101. base += 40;
  102. for (i = 0; i < num_regs; i++)
  103. if (reg_offset[i] != -1)
  104. trad_frame_set_reg_addr (this_cache, i, base + reg_offset[i]);
  105. /* Construct the frame ID using the function start. */
  106. trad_frame_set_id (this_cache, frame_id_build (sp, func));
  107. }
  108. /* Core file support. */
  109. /* Sizeof `struct reg' in <machine/reg.h>. */
  110. #define HPPANBSD_SIZEOF_GREGS (44 * 4)
  111. static int hppanbsd_reg_offset[] =
  112. {
  113. /* r0 ... r31 */
  114. -1, 1 * 4, 2 * 4, 3 * 4,
  115. 4 * 4, 5 * 4, 6 * 4, 7 * 4,
  116. 8 * 4, 9 * 4, 10 * 4, 11 * 4,
  117. 12 * 4, 13 * 4, 14 * 4, 15 * 4,
  118. 16 * 4, 17 * 4, 18 * 4, 19 * 4,
  119. 20 * 4, 21 * 4, 22 * 4, 23 * 4,
  120. 24 * 4, 25 * 4, 26 * 4, 27 * 4,
  121. 28 * 4, 29 * 4, 30 * 4, 31 * 4,
  122. 32 * 4, /* HPPA_SAR_REGNUM */
  123. 35 * 4, /* HPPA_PCOQ_HEAD_REGNUM */
  124. 33 * 4, /* HPPA_PCSQ_HEAD_REGNUM */
  125. 36 * 4, /* HPPA_PCOQ_TAIL_REGNUM */
  126. 34 * 4, /* HPPA_PCSQ_TAIL_REGNUM */
  127. -1, /* HPPA_EIEM_REGNUM */
  128. -1, /* HPPA_IIR_REGNUM */
  129. -1, /* HPPA_ISR_REGNUM */
  130. -1, /* HPPA_IOR_REGNUM */
  131. 0 * 4, /* HPPA_IPSW_REGNUM */
  132. };
  133. /* Supply register REGNUM from the buffer specified by GREGS and LEN
  134. in the general-purpose register set REGSET to register cache
  135. REGCACHE. If REGNUM is -1, do this for all registers in REGSET. */
  136. static void
  137. hppanbsd_supply_gregset (const struct regset *regset,
  138. struct regcache *regcache,
  139. int regnum, const void *gregs, size_t len)
  140. {
  141. const gdb_byte *regs = (const gdb_byte *) gregs;
  142. int i;
  143. gdb_assert (len >= HPPANBSD_SIZEOF_GREGS);
  144. for (i = 0; i < ARRAY_SIZE (hppanbsd_reg_offset); i++)
  145. if (hppanbsd_reg_offset[i] != -1)
  146. if (regnum == -1 || regnum == i)
  147. regcache->raw_supply (i, regs + hppanbsd_reg_offset[i]);
  148. }
  149. /* NetBSD/hppa register set. */
  150. static const struct regset hppanbsd_gregset =
  151. {
  152. NULL,
  153. hppanbsd_supply_gregset
  154. };
  155. /* Iterate over supported core file register note sections. */
  156. static void
  157. hppanbsd_iterate_over_regset_sections (struct gdbarch *gdbarch,
  158. iterate_over_regset_sections_cb *cb,
  159. void *cb_data,
  160. const struct regcache *regcache)
  161. {
  162. cb (".reg", HPPANBSD_SIZEOF_GREGS, HPPANBSD_SIZEOF_GREGS, &hppanbsd_gregset,
  163. NULL, cb_data);
  164. }
  165. static void
  166. hppanbsd_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
  167. {
  168. /* Obviously NetBSD is BSD-based. */
  169. hppabsd_init_abi (info, gdbarch);
  170. nbsd_init_abi (info, gdbarch);
  171. /* Core file support. */
  172. set_gdbarch_iterate_over_regset_sections
  173. (gdbarch, hppanbsd_iterate_over_regset_sections);
  174. tramp_frame_prepend_unwinder (gdbarch, &hppanbsd_sigtramp_si4);
  175. }
  176. void _initialize_hppanbsd_tdep ();
  177. void
  178. _initialize_hppanbsd_tdep ()
  179. {
  180. gdbarch_register_osabi (bfd_arch_hppa, 0, GDB_OSABI_NETBSD,
  181. hppanbsd_init_abi);
  182. }