mips64-obsd-tdep.c 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. /* Target-dependent code for OpenBSD/mips64.
  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 "gdbtypes.h"
  16. #include "osabi.h"
  17. #include "regcache.h"
  18. #include "regset.h"
  19. #include "trad-frame.h"
  20. #include "tramp-frame.h"
  21. #include "obsd-tdep.h"
  22. #include "mips-tdep.h"
  23. #include "solib-svr4.h"
  24. #define MIPS64OBSD_NUM_REGS 73
  25. /* Core file support. */
  26. /* Supply register REGNUM from the buffer specified by GREGS and LEN
  27. in the general-purpose register set REGSET to register cache
  28. REGCACHE. If REGNUM is -1, do this for all registers in REGSET. */
  29. static void
  30. mips64obsd_supply_gregset (const struct regset *regset,
  31. struct regcache *regcache, int regnum,
  32. const void *gregs, size_t len)
  33. {
  34. const char *regs = (const char *) gregs;
  35. int i;
  36. for (i = 0; i < MIPS64OBSD_NUM_REGS; i++)
  37. {
  38. if (regnum == i || regnum == -1)
  39. regcache->raw_supply (i, regs + i * 8);
  40. }
  41. }
  42. /* OpenBSD/mips64 register set. */
  43. static const struct regset mips64obsd_gregset =
  44. {
  45. NULL,
  46. mips64obsd_supply_gregset
  47. };
  48. /* Iterate over core file register note sections. */
  49. static void
  50. mips64obsd_iterate_over_regset_sections (struct gdbarch *gdbarch,
  51. iterate_over_regset_sections_cb *cb,
  52. void *cb_data,
  53. const struct regcache *regcache)
  54. {
  55. cb (".reg", MIPS64OBSD_NUM_REGS * 8, MIPS64OBSD_NUM_REGS * 8,
  56. &mips64obsd_gregset, NULL, cb_data);
  57. }
  58. /* Signal trampolines. */
  59. static void
  60. mips64obsd_sigframe_init (const struct tramp_frame *self,
  61. struct frame_info *this_frame,
  62. struct trad_frame_cache *cache,
  63. CORE_ADDR func)
  64. {
  65. struct gdbarch *gdbarch = get_frame_arch (this_frame);
  66. CORE_ADDR sp, sigcontext_addr, addr;
  67. int regnum;
  68. /* We find the appropriate instance of `struct sigcontext' at a
  69. fixed offset in the signal frame. */
  70. sp = get_frame_register_signed (this_frame,
  71. MIPS_SP_REGNUM + gdbarch_num_regs (gdbarch));
  72. sigcontext_addr = sp + 32;
  73. /* PC. */
  74. regnum = mips_regnum (gdbarch)->pc;
  75. trad_frame_set_reg_addr (cache,
  76. regnum + gdbarch_num_regs (gdbarch),
  77. sigcontext_addr + 16);
  78. /* GPRs. */
  79. for (regnum = MIPS_AT_REGNUM, addr = sigcontext_addr + 32;
  80. regnum <= MIPS_RA_REGNUM; regnum++, addr += 8)
  81. trad_frame_set_reg_addr (cache,
  82. regnum + gdbarch_num_regs (gdbarch),
  83. addr);
  84. /* HI and LO. */
  85. regnum = mips_regnum (gdbarch)->lo;
  86. trad_frame_set_reg_addr (cache,
  87. regnum + gdbarch_num_regs (gdbarch),
  88. sigcontext_addr + 280);
  89. regnum = mips_regnum (gdbarch)->hi;
  90. trad_frame_set_reg_addr (cache,
  91. regnum + gdbarch_num_regs (gdbarch),
  92. sigcontext_addr + 288);
  93. /* TODO: Handle the floating-point registers. */
  94. trad_frame_set_id (cache, frame_id_build (sp, func));
  95. }
  96. static const struct tramp_frame mips64obsd_sigframe =
  97. {
  98. SIGTRAMP_FRAME,
  99. MIPS_INSN32_SIZE,
  100. {
  101. { 0x67a40020, ULONGEST_MAX }, /* daddiu a0,sp,32 */
  102. { 0x24020067, ULONGEST_MAX }, /* li v0,103 */
  103. { 0x0000000c, ULONGEST_MAX }, /* syscall */
  104. { 0x0000000d, ULONGEST_MAX }, /* break */
  105. { TRAMP_SENTINEL_INSN, ULONGEST_MAX }
  106. },
  107. mips64obsd_sigframe_init
  108. };
  109. static void
  110. mips64obsd_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
  111. {
  112. /* OpenBSD/mips64 only supports the n64 ABI, but the braindamaged
  113. way GDB works, forces us to pretend we can handle them all. */
  114. set_gdbarch_iterate_over_regset_sections
  115. (gdbarch, mips64obsd_iterate_over_regset_sections);
  116. tramp_frame_prepend_unwinder (gdbarch, &mips64obsd_sigframe);
  117. set_gdbarch_long_double_bit (gdbarch, 128);
  118. set_gdbarch_long_double_format (gdbarch, floatformats_ieee_quad);
  119. obsd_init_abi(info, gdbarch);
  120. /* OpenBSD/mips64 has SVR4-style shared libraries. */
  121. set_solib_svr4_fetch_link_map_offsets
  122. (gdbarch, svr4_lp64_fetch_link_map_offsets);
  123. }
  124. void _initialize_mips64obsd_tdep ();
  125. void
  126. _initialize_mips64obsd_tdep ()
  127. {
  128. gdbarch_register_osabi (bfd_arch_mips, 0, GDB_OSABI_OPENBSD,
  129. mips64obsd_init_abi);
  130. }