gdb/mips64obsd-tdep.c - gdb

Global variables defined

Functions defined

Macros defined

Source code

  1. /* Target-dependent code for OpenBSD/mips64.

  2.    Copyright (C) 2004-2015 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. /* The MIPS64 Floating-Point Quad-Precision format is similar to
  25.    big-endian IA-64 Quad-Precision format.  */
  26. #define floatformats_mips64_quad floatformats_ia64_quad

  27. #define MIPS64OBSD_NUM_REGS 73

  28. /* Core file support.  */

  29. /* Supply register REGNUM from the buffer specified by GREGS and LEN
  30.    in the general-purpose register set REGSET to register cache
  31.    REGCACHE.  If REGNUM is -1, do this for all registers in REGSET.  */

  32. static void
  33. mips64obsd_supply_gregset (const struct regset *regset,
  34.                            struct regcache *regcache, int regnum,
  35.                            const void *gregs, size_t len)
  36. {
  37.   const char *regs = gregs;
  38.   int i;

  39.   for (i = 0; i < MIPS64OBSD_NUM_REGS; i++)
  40.     {
  41.       if (regnum == i || regnum == -1)
  42.         regcache_raw_supply (regcache, i, regs + i * 8);
  43.     }
  44. }

  45. /* OpenBSD/mips64 register set.  */

  46. static const struct regset mips64obsd_gregset =
  47. {
  48.   NULL,
  49.   mips64obsd_supply_gregset
  50. };

  51. /* Iterate over core file register note sections.  */

  52. static void
  53. mips64obsd_iterate_over_regset_sections (struct gdbarch *gdbarch,
  54.                                          iterate_over_regset_sections_cb *cb,
  55.                                          void *cb_data,
  56.                                          const struct regcache *regcache)
  57. {
  58.   cb (".reg", MIPS64OBSD_NUM_REGS * 8, &mips64obsd_gregset, NULL, cb_data);
  59. }


  60. /* Signal trampolines.  */

  61. static void
  62. mips64obsd_sigframe_init (const struct tramp_frame *self,
  63.                           struct frame_info *this_frame,
  64.                           struct trad_frame_cache *cache,
  65.                           CORE_ADDR func)
  66. {
  67.   struct gdbarch *gdbarch = get_frame_arch (this_frame);
  68.   CORE_ADDR sp, sigcontext_addr, addr;
  69.   int regnum;

  70.   /* We find the appropriate instance of `struct sigcontext' at a
  71.      fixed offset in the signal frame.  */
  72.   sp = get_frame_register_signed (this_frame,
  73.                                   MIPS_SP_REGNUM + gdbarch_num_regs (gdbarch));
  74.   sigcontext_addr = sp + 32;

  75.   /* PC.  */
  76.   regnum = mips_regnum (gdbarch)->pc;
  77.   trad_frame_set_reg_addr (cache,
  78.                            regnum + gdbarch_num_regs (gdbarch),
  79.                             sigcontext_addr + 16);

  80.   /* GPRs.  */
  81.   for (regnum = MIPS_AT_REGNUM, addr = sigcontext_addr + 32;
  82.        regnum <= MIPS_RA_REGNUM; regnum++, addr += 8)
  83.     trad_frame_set_reg_addr (cache,
  84.                              regnum + gdbarch_num_regs (gdbarch),
  85.                              addr);

  86.   /* HI and LO.  */
  87.   regnum = mips_regnum (gdbarch)->lo;
  88.   trad_frame_set_reg_addr (cache,
  89.                            regnum + gdbarch_num_regs (gdbarch),
  90.                            sigcontext_addr + 280);
  91.   regnum = mips_regnum (gdbarch)->hi;
  92.   trad_frame_set_reg_addr (cache,
  93.                            regnum + gdbarch_num_regs (gdbarch),
  94.                            sigcontext_addr + 288);

  95.   /* TODO: Handle the floating-point registers.  */

  96.   trad_frame_set_id (cache, frame_id_build (sp, func));
  97. }

  98. static const struct tramp_frame mips64obsd_sigframe =
  99. {
  100.   SIGTRAMP_FRAME,
  101.   MIPS_INSN32_SIZE,
  102.   {
  103.     { 0x67a40020, -1 },                /* daddiu  a0,sp,32 */
  104.     { 0x24020067, -1 },                /* li      v0,103 */
  105.     { 0x0000000c, -1 },                /* syscall */
  106.     { 0x0000000d, -1 },                /* break */
  107.     { TRAMP_SENTINEL_INSN, -1 }
  108.   },
  109.   mips64obsd_sigframe_init
  110. };


  111. static void
  112. mips64obsd_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
  113. {
  114.   /* OpenBSD/mips64 only supports the n64 ABI, but the braindamaged
  115.      way GDB works, forces us to pretend we can handle them all.  */

  116.   set_gdbarch_iterate_over_regset_sections
  117.     (gdbarch, mips64obsd_iterate_over_regset_sections);

  118.   tramp_frame_prepend_unwinder (gdbarch, &mips64obsd_sigframe);

  119.   set_gdbarch_long_double_bit (gdbarch, 128);
  120.   set_gdbarch_long_double_format (gdbarch, floatformats_mips64_quad);

  121.   obsd_init_abi(info, gdbarch);

  122.   /* OpenBSD/mips64 has SVR4-style shared libraries.  */
  123.   set_solib_svr4_fetch_link_map_offsets
  124.     (gdbarch, svr4_lp64_fetch_link_map_offsets);
  125. }


  126. /* Provide a prototype to silence -Wmissing-prototypes.  */
  127. void _initialize_mips64obsd_tdep (void);

  128. void
  129. _initialize_mips64obsd_tdep (void)
  130. {
  131.   gdbarch_register_osabi (bfd_arch_mips, 0, GDB_OSABI_OPENBSD_ELF,
  132.                           mips64obsd_init_abi);
  133. }