hppa-linux-tdep.c 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536
  1. /* Target-dependent code for GNU/Linux running on PA-RISC, for GDB.
  2. Copyright (C) 2004-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 "gdbcore.h"
  16. #include "osabi.h"
  17. #include "target.h"
  18. #include "objfiles.h"
  19. #include "solib-svr4.h"
  20. #include "glibc-tdep.h"
  21. #include "frame-unwind.h"
  22. #include "trad-frame.h"
  23. #include "dwarf2/frame.h"
  24. #include "value.h"
  25. #include "regset.h"
  26. #include "regcache.h"
  27. #include "hppa-tdep.h"
  28. #include "linux-tdep.h"
  29. #include "elf/common.h"
  30. /* Map DWARF DBX register numbers to GDB register numbers. */
  31. static int
  32. hppa_dwarf_reg_to_regnum (struct gdbarch *gdbarch, int reg)
  33. {
  34. /* The general registers and the sar are the same in both sets. */
  35. if (reg >= 0 && reg <= 32)
  36. return reg;
  37. /* fr4-fr31 (left and right halves) are mapped from 72. */
  38. if (reg >= 72 && reg <= 72 + 28 * 2)
  39. return HPPA_FP4_REGNUM + (reg - 72);
  40. return -1;
  41. }
  42. static void
  43. hppa_linux_target_write_pc (struct regcache *regcache, CORE_ADDR v)
  44. {
  45. /* Probably this should be done by the kernel, but it isn't. */
  46. regcache_cooked_write_unsigned (regcache, HPPA_PCOQ_HEAD_REGNUM, v | 0x3);
  47. regcache_cooked_write_unsigned (regcache,
  48. HPPA_PCOQ_TAIL_REGNUM, (v + 4) | 0x3);
  49. }
  50. /* An instruction to match. */
  51. struct insn_pattern
  52. {
  53. unsigned int data; /* See if it matches this.... */
  54. unsigned int mask; /* ... with this mask. */
  55. };
  56. static struct insn_pattern hppa_sigtramp[] = {
  57. /* ldi 0, %r25 or ldi 1, %r25 */
  58. { 0x34190000, 0xfffffffd },
  59. /* ldi __NR_rt_sigreturn, %r20 */
  60. { 0x3414015a, 0xffffffff },
  61. /* be,l 0x100(%sr2, %r0), %sr0, %r31 */
  62. { 0xe4008200, 0xffffffff },
  63. /* nop */
  64. { 0x08000240, 0xffffffff },
  65. { 0, 0 }
  66. };
  67. #define HPPA_MAX_INSN_PATTERN_LEN (4)
  68. /* Return non-zero if the instructions at PC match the series
  69. described in PATTERN, or zero otherwise. PATTERN is an array of
  70. 'struct insn_pattern' objects, terminated by an entry whose mask is
  71. zero.
  72. When the match is successful, fill INSN[i] with what PATTERN[i]
  73. matched. */
  74. static int
  75. insns_match_pattern (struct gdbarch *gdbarch, CORE_ADDR pc,
  76. struct insn_pattern *pattern,
  77. unsigned int *insn)
  78. {
  79. enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
  80. int i;
  81. CORE_ADDR npc = pc;
  82. for (i = 0; pattern[i].mask; i++)
  83. {
  84. gdb_byte buf[4];
  85. target_read_memory (npc, buf, 4);
  86. insn[i] = extract_unsigned_integer (buf, 4, byte_order);
  87. if ((insn[i] & pattern[i].mask) == pattern[i].data)
  88. npc += 4;
  89. else
  90. return 0;
  91. }
  92. return 1;
  93. }
  94. /* Signal frames. */
  95. /* (This is derived from MD_FALLBACK_FRAME_STATE_FOR in gcc.)
  96. Unfortunately, because of various bugs and changes to the kernel,
  97. we have several cases to deal with.
  98. In 2.4, the signal trampoline is 4 bytes, and pc should point directly at
  99. the beginning of the trampoline and struct rt_sigframe.
  100. In <= 2.6.5-rc2-pa3, the signal trampoline is 9 bytes, and pc points at
  101. the 4th word in the trampoline structure. This is wrong, it should point
  102. at the 5th word. This is fixed in 2.6.5-rc2-pa4.
  103. To detect these cases, we first take pc, align it to 64-bytes
  104. to get the beginning of the signal frame, and then check offsets 0, 4
  105. and 5 to see if we found the beginning of the trampoline. This will
  106. tell us how to locate the sigcontext structure.
  107. Note that with a 2.4 64-bit kernel, the signal context is not properly
  108. passed back to userspace so the unwind will not work correctly. */
  109. static CORE_ADDR
  110. hppa_linux_sigtramp_find_sigcontext (struct gdbarch *gdbarch, CORE_ADDR pc)
  111. {
  112. unsigned int dummy[HPPA_MAX_INSN_PATTERN_LEN];
  113. int offs = 0;
  114. int attempt;
  115. /* offsets to try to find the trampoline */
  116. static int pcoffs[] = { 0, 4*4, 5*4 };
  117. /* offsets to the rt_sigframe structure */
  118. static int sfoffs[] = { 4*4, 10*4, 10*4 };
  119. CORE_ADDR sp;
  120. /* Most of the time, this will be correct. The one case when this will
  121. fail is if the user defined an alternate stack, in which case the
  122. beginning of the stack will not be align_down (pc, 64). */
  123. sp = align_down (pc, 64);
  124. /* rt_sigreturn trampoline:
  125. 3419000x ldi 0, %r25 or ldi 1, %r25 (x = 0 or 2)
  126. 3414015a ldi __NR_rt_sigreturn, %r20
  127. e4008200 be,l 0x100(%sr2, %r0), %sr0, %r31
  128. 08000240 nop */
  129. for (attempt = 0; attempt < ARRAY_SIZE (pcoffs); attempt++)
  130. {
  131. if (insns_match_pattern (gdbarch, sp + pcoffs[attempt],
  132. hppa_sigtramp, dummy))
  133. {
  134. offs = sfoffs[attempt];
  135. break;
  136. }
  137. }
  138. if (offs == 0)
  139. {
  140. if (insns_match_pattern (gdbarch, pc, hppa_sigtramp, dummy))
  141. {
  142. /* sigaltstack case: we have no way of knowing which offset to
  143. use in this case; default to new kernel handling. If this is
  144. wrong the unwinding will fail. */
  145. attempt = 2;
  146. sp = pc - pcoffs[attempt];
  147. }
  148. else
  149. return 0;
  150. }
  151. /* sp + sfoffs[try] points to a struct rt_sigframe, which contains
  152. a struct siginfo and a struct ucontext. struct ucontext contains
  153. a struct sigcontext. Return an offset to this sigcontext here. Too
  154. bad we cannot include system specific headers :-(.
  155. sizeof(struct siginfo) == 128
  156. offsetof(struct ucontext, uc_mcontext) == 24. */
  157. return sp + sfoffs[attempt] + 128 + 24;
  158. }
  159. struct hppa_linux_sigtramp_unwind_cache
  160. {
  161. CORE_ADDR base;
  162. trad_frame_saved_reg *saved_regs;
  163. };
  164. static struct hppa_linux_sigtramp_unwind_cache *
  165. hppa_linux_sigtramp_frame_unwind_cache (struct frame_info *this_frame,
  166. void **this_cache)
  167. {
  168. struct gdbarch *gdbarch = get_frame_arch (this_frame);
  169. struct hppa_linux_sigtramp_unwind_cache *info;
  170. CORE_ADDR pc, scptr;
  171. int i;
  172. if (*this_cache)
  173. return (struct hppa_linux_sigtramp_unwind_cache *) *this_cache;
  174. info = FRAME_OBSTACK_ZALLOC (struct hppa_linux_sigtramp_unwind_cache);
  175. *this_cache = info;
  176. info->saved_regs = trad_frame_alloc_saved_regs (this_frame);
  177. pc = get_frame_pc (this_frame);
  178. scptr = hppa_linux_sigtramp_find_sigcontext (gdbarch, pc);
  179. /* structure of struct sigcontext:
  180. struct sigcontext {
  181. unsigned long sc_flags;
  182. unsigned long sc_gr[32];
  183. unsigned long long sc_fr[32];
  184. unsigned long sc_iasq[2];
  185. unsigned long sc_iaoq[2];
  186. unsigned long sc_sar; */
  187. /* Skip sc_flags. */
  188. scptr += 4;
  189. /* GR[0] is the psw. */
  190. info->saved_regs[HPPA_IPSW_REGNUM].set_addr (scptr);
  191. scptr += 4;
  192. /* General registers. */
  193. for (i = 1; i < 32; i++)
  194. {
  195. info->saved_regs[HPPA_R0_REGNUM + i].set_addr (scptr);
  196. scptr += 4;
  197. }
  198. /* Pad to long long boundary. */
  199. scptr += 4;
  200. /* FP regs; FP0-3 are not restored. */
  201. scptr += (8 * 4);
  202. for (i = 4; i < 32; i++)
  203. {
  204. info->saved_regs[HPPA_FP0_REGNUM + (i * 2)].set_addr (scptr);
  205. scptr += 4;
  206. info->saved_regs[HPPA_FP0_REGNUM + (i * 2) + 1].set_addr (scptr);
  207. scptr += 4;
  208. }
  209. /* IASQ/IAOQ. */
  210. info->saved_regs[HPPA_PCSQ_HEAD_REGNUM].set_addr (scptr);
  211. scptr += 4;
  212. info->saved_regs[HPPA_PCSQ_TAIL_REGNUM].set_addr (scptr);
  213. scptr += 4;
  214. info->saved_regs[HPPA_PCOQ_HEAD_REGNUM].set_addr (scptr);
  215. scptr += 4;
  216. info->saved_regs[HPPA_PCOQ_TAIL_REGNUM].set_addr (scptr);
  217. scptr += 4;
  218. info->saved_regs[HPPA_SAR_REGNUM].set_addr (scptr);
  219. info->base = get_frame_register_unsigned (this_frame, HPPA_SP_REGNUM);
  220. return info;
  221. }
  222. static void
  223. hppa_linux_sigtramp_frame_this_id (struct frame_info *this_frame,
  224. void **this_prologue_cache,
  225. struct frame_id *this_id)
  226. {
  227. struct hppa_linux_sigtramp_unwind_cache *info
  228. = hppa_linux_sigtramp_frame_unwind_cache (this_frame, this_prologue_cache);
  229. *this_id = frame_id_build (info->base, get_frame_pc (this_frame));
  230. }
  231. static struct value *
  232. hppa_linux_sigtramp_frame_prev_register (struct frame_info *this_frame,
  233. void **this_prologue_cache,
  234. int regnum)
  235. {
  236. struct hppa_linux_sigtramp_unwind_cache *info
  237. = hppa_linux_sigtramp_frame_unwind_cache (this_frame, this_prologue_cache);
  238. return hppa_frame_prev_register_helper (this_frame,
  239. info->saved_regs, regnum);
  240. }
  241. /* hppa-linux always uses "new-style" rt-signals. The signal handler's return
  242. address should point to a signal trampoline on the stack. The signal
  243. trampoline is embedded in a rt_sigframe structure that is aligned on
  244. the stack. We take advantage of the fact that sp must be 64-byte aligned,
  245. and the trampoline is small, so by rounding down the trampoline address
  246. we can find the beginning of the struct rt_sigframe. */
  247. static int
  248. hppa_linux_sigtramp_frame_sniffer (const struct frame_unwind *self,
  249. struct frame_info *this_frame,
  250. void **this_prologue_cache)
  251. {
  252. struct gdbarch *gdbarch = get_frame_arch (this_frame);
  253. CORE_ADDR pc = get_frame_pc (this_frame);
  254. if (hppa_linux_sigtramp_find_sigcontext (gdbarch, pc))
  255. return 1;
  256. return 0;
  257. }
  258. static const struct frame_unwind hppa_linux_sigtramp_frame_unwind = {
  259. "hppa linux sigtramp",
  260. SIGTRAMP_FRAME,
  261. default_frame_unwind_stop_reason,
  262. hppa_linux_sigtramp_frame_this_id,
  263. hppa_linux_sigtramp_frame_prev_register,
  264. NULL,
  265. hppa_linux_sigtramp_frame_sniffer
  266. };
  267. /* Attempt to find (and return) the global pointer for the given
  268. function.
  269. This is a rather nasty bit of code searchs for the .dynamic section
  270. in the objfile corresponding to the pc of the function we're trying
  271. to call. Once it finds the addresses at which the .dynamic section
  272. lives in the child process, it scans the Elf32_Dyn entries for a
  273. DT_PLTGOT tag. If it finds one of these, the corresponding
  274. d_un.d_ptr value is the global pointer. */
  275. static CORE_ADDR
  276. hppa_linux_find_global_pointer (struct gdbarch *gdbarch,
  277. struct value *function)
  278. {
  279. enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
  280. struct obj_section *faddr_sect;
  281. CORE_ADDR faddr;
  282. faddr = value_as_address (function);
  283. /* Is this a plabel? If so, dereference it to get the gp value. */
  284. if (faddr & 2)
  285. {
  286. int status;
  287. gdb_byte buf[4];
  288. faddr &= ~3;
  289. status = target_read_memory (faddr + 4, buf, sizeof (buf));
  290. if (status == 0)
  291. return extract_unsigned_integer (buf, sizeof (buf), byte_order);
  292. }
  293. /* If the address is in the plt section, then the real function hasn't
  294. yet been fixed up by the linker so we cannot determine the gp of
  295. that function. */
  296. if (in_plt_section (faddr))
  297. return 0;
  298. faddr_sect = find_pc_section (faddr);
  299. if (faddr_sect != NULL)
  300. {
  301. struct obj_section *osect;
  302. ALL_OBJFILE_OSECTIONS (faddr_sect->objfile, osect)
  303. {
  304. if (strcmp (osect->the_bfd_section->name, ".dynamic") == 0)
  305. break;
  306. }
  307. if (osect < faddr_sect->objfile->sections_end)
  308. {
  309. CORE_ADDR addr, endaddr;
  310. addr = osect->addr ();
  311. endaddr = osect->endaddr ();
  312. while (addr < endaddr)
  313. {
  314. int status;
  315. LONGEST tag;
  316. gdb_byte buf[4];
  317. status = target_read_memory (addr, buf, sizeof (buf));
  318. if (status != 0)
  319. break;
  320. tag = extract_signed_integer (buf, byte_order);
  321. if (tag == DT_PLTGOT)
  322. {
  323. CORE_ADDR global_pointer;
  324. status = target_read_memory (addr + 4, buf, sizeof (buf));
  325. if (status != 0)
  326. break;
  327. global_pointer = extract_unsigned_integer (buf, sizeof (buf),
  328. byte_order);
  329. /* The payoff... */
  330. return global_pointer;
  331. }
  332. if (tag == DT_NULL)
  333. break;
  334. addr += 8;
  335. }
  336. }
  337. }
  338. return 0;
  339. }
  340. /*
  341. * Registers saved in a coredump:
  342. * gr0..gr31
  343. * sr0..sr7
  344. * iaoq0..iaoq1
  345. * iasq0..iasq1
  346. * sar, iir, isr, ior, ipsw
  347. * cr0, cr24..cr31
  348. * cr8,9,12,13
  349. * cr10, cr15
  350. */
  351. static const struct regcache_map_entry hppa_linux_gregmap[] =
  352. {
  353. { 32, HPPA_R0_REGNUM },
  354. { 1, HPPA_SR4_REGNUM+1 },
  355. { 1, HPPA_SR4_REGNUM+2 },
  356. { 1, HPPA_SR4_REGNUM+3 },
  357. { 1, HPPA_SR4_REGNUM+4 },
  358. { 1, HPPA_SR4_REGNUM },
  359. { 1, HPPA_SR4_REGNUM+5 },
  360. { 1, HPPA_SR4_REGNUM+6 },
  361. { 1, HPPA_SR4_REGNUM+7 },
  362. { 1, HPPA_PCOQ_HEAD_REGNUM },
  363. { 1, HPPA_PCOQ_TAIL_REGNUM },
  364. { 1, HPPA_PCSQ_HEAD_REGNUM },
  365. { 1, HPPA_PCSQ_TAIL_REGNUM },
  366. { 1, HPPA_SAR_REGNUM },
  367. { 1, HPPA_IIR_REGNUM },
  368. { 1, HPPA_ISR_REGNUM },
  369. { 1, HPPA_IOR_REGNUM },
  370. { 1, HPPA_IPSW_REGNUM },
  371. { 1, HPPA_RCR_REGNUM },
  372. { 8, HPPA_TR0_REGNUM },
  373. { 4, HPPA_PID0_REGNUM },
  374. { 1, HPPA_CCR_REGNUM },
  375. { 1, HPPA_EIEM_REGNUM },
  376. { 0 }
  377. };
  378. static const struct regcache_map_entry hppa_linux_fpregmap[] =
  379. {
  380. /* FIXME: Only works for 32-bit mode. In 64-bit mode there should
  381. be 32 fpregs, 8 bytes each. */
  382. { 64, HPPA_FP0_REGNUM, 4 },
  383. { 0 }
  384. };
  385. /* HPPA Linux kernel register set. */
  386. static const struct regset hppa_linux_regset =
  387. {
  388. hppa_linux_gregmap,
  389. regcache_supply_regset, regcache_collect_regset
  390. };
  391. static const struct regset hppa_linux_fpregset =
  392. {
  393. hppa_linux_fpregmap,
  394. regcache_supply_regset, regcache_collect_regset
  395. };
  396. static void
  397. hppa_linux_iterate_over_regset_sections (struct gdbarch *gdbarch,
  398. iterate_over_regset_sections_cb *cb,
  399. void *cb_data,
  400. const struct regcache *regcache)
  401. {
  402. hppa_gdbarch_tdep *tdep = (hppa_gdbarch_tdep *) gdbarch_tdep (gdbarch);
  403. cb (".reg", 80 * tdep->bytes_per_address, 80 * tdep->bytes_per_address,
  404. &hppa_linux_regset, NULL, cb_data);
  405. cb (".reg2", 64 * 4, 64 * 4, &hppa_linux_fpregset, NULL, cb_data);
  406. }
  407. static void
  408. hppa_linux_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
  409. {
  410. hppa_gdbarch_tdep *tdep = (hppa_gdbarch_tdep *) gdbarch_tdep (gdbarch);
  411. linux_init_abi (info, gdbarch, 0);
  412. /* GNU/Linux is always ELF. */
  413. tdep->is_elf = 1;
  414. tdep->find_global_pointer = hppa_linux_find_global_pointer;
  415. set_gdbarch_write_pc (gdbarch, hppa_linux_target_write_pc);
  416. frame_unwind_append_unwinder (gdbarch, &hppa_linux_sigtramp_frame_unwind);
  417. /* GNU/Linux uses SVR4-style shared libraries. */
  418. set_solib_svr4_fetch_link_map_offsets
  419. (gdbarch, linux_ilp32_fetch_link_map_offsets);
  420. tdep->in_solib_call_trampoline = hppa_in_solib_call_trampoline;
  421. set_gdbarch_skip_trampoline_code (gdbarch, hppa_skip_trampoline_code);
  422. /* GNU/Linux uses the dynamic linker included in the GNU C Library. */
  423. set_gdbarch_skip_solib_resolver (gdbarch, glibc_skip_solib_resolver);
  424. /* On hppa-linux, currently, sizeof(long double) == 8. There has been
  425. some discussions to support 128-bit long double, but it requires some
  426. more work in gcc and glibc first. */
  427. set_gdbarch_long_double_bit (gdbarch, 64);
  428. set_gdbarch_long_double_format (gdbarch, floatformats_ieee_double);
  429. set_gdbarch_iterate_over_regset_sections
  430. (gdbarch, hppa_linux_iterate_over_regset_sections);
  431. set_gdbarch_dwarf2_reg_to_regnum (gdbarch, hppa_dwarf_reg_to_regnum);
  432. /* Enable TLS support. */
  433. set_gdbarch_fetch_tls_load_module_address (gdbarch,
  434. svr4_fetch_objfile_link_map);
  435. }
  436. void _initialize_hppa_linux_tdep ();
  437. void
  438. _initialize_hppa_linux_tdep ()
  439. {
  440. gdbarch_register_osabi (bfd_arch_hppa, 0, GDB_OSABI_LINUX,
  441. hppa_linux_init_abi);
  442. gdbarch_register_osabi (bfd_arch_hppa, bfd_mach_hppa20w,
  443. GDB_OSABI_LINUX, hppa_linux_init_abi);
  444. }