gdb/amd64fbsd-tdep.c - gdb

Global variables defined

Functions defined

Source code

  1. /* Target-dependent code for FreeBSD/amd64.

  2.    Copyright (C) 2003-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 "arch-utils.h"
  16. #include "frame.h"
  17. #include "gdbcore.h"
  18. #include "regcache.h"
  19. #include "osabi.h"

  20. #include "amd64-tdep.h"
  21. #include "bsd-uthread.h"
  22. #include "fbsd-tdep.h"
  23. #include "solib-svr4.h"

  24. /* Support for signal handlers.  */

  25. /* Assuming THIS_FRAME is for a BSD sigtramp routine, return the
  26.    address of the associated sigcontext structure.  */

  27. static CORE_ADDR
  28. amd64fbsd_sigcontext_addr (struct frame_info *this_frame)
  29. {
  30.   CORE_ADDR sp;

  31.   /* The `struct sigcontext' (which really is an `ucontext_t' on
  32.      FreeBSD/amd64) lives at a fixed offset in the signal frame.  See
  33.      <machine/sigframe.h>.  */
  34.   sp = frame_unwind_register_unsigned (this_frame, AMD64_RSP_REGNUM);
  35.   return sp + 16;
  36. }

  37. /* FreeBSD 5.1-RELEASE or later.  */

  38. /* Mapping between the general-purpose registers in `struct reg'
  39.    format and GDB's register cache layout.

  40.    Note that some registers are 32-bit, but since we're little-endian
  41.    we get away with that.  */

  42. /* From <machine/reg.h>.  */
  43. static int amd64fbsd_r_reg_offset[] =
  44. {
  45.   14 * 8,                        /* %rax */
  46.   11 * 8,                        /* %rbx */
  47.   13 * 8,                        /* %rcx */
  48.   12 * 8,                        /* %rdx */
  49.   9 * 8,                        /* %rsi */
  50.   8 * 8,                        /* %rdi */
  51.   10 * 8,                        /* %rbp */
  52.   20 * 8,                        /* %rsp */
  53.   7 * 8,                        /* %r8 ...  */
  54.   6 * 8,
  55.   5 * 8,
  56.   4 * 8,
  57.   3 * 8,
  58.   2 * 8,
  59.   1 * 8,
  60.   0 * 8,                        /* ... %r15 */
  61.   17 * 8,                        /* %rip */
  62.   19 * 8,                        /* %eflags */
  63.   18 * 8,                        /* %cs */
  64.   21 * 8,                        /* %ss */
  65.   -1,                                /* %ds */
  66.   -1,                                /* %es */
  67.   -1,                                /* %fs */
  68.   -1                                /* %gs */
  69. };

  70. /* Location of the signal trampoline.  */
  71. CORE_ADDR amd64fbsd_sigtramp_start_addr = 0x7fffffffffc0ULL;
  72. CORE_ADDR amd64fbsd_sigtramp_end_addr = 0x7fffffffffe0ULL;

  73. /* From <machine/signal.h>.  */
  74. int amd64fbsd_sc_reg_offset[] =
  75. {
  76.   24 + 6 * 8,                        /* %rax */
  77.   24 + 7 * 8,                        /* %rbx */
  78.   24 + 3 * 8,                        /* %rcx */
  79.   24 + 2 * 8,                        /* %rdx */
  80.   24 + 1 * 8,                        /* %rsi */
  81.   24 + 0 * 8,                        /* %rdi */
  82.   24 + 8 * 8,                        /* %rbp */
  83.   24 + 22 * 8,                        /* %rsp */
  84.   24 + 4 * 8,                        /* %r8 ...  */
  85.   24 + 5 * 8,
  86.   24 + 9 * 8,
  87.   24 + 10 * 8,
  88.   24 + 11 * 8,
  89.   24 + 12 * 8,
  90.   24 + 13 * 8,
  91.   24 + 14 * 8,                        /* ... %r15 */
  92.   24 + 19 * 8,                        /* %rip */
  93.   24 + 21 * 8,                        /* %eflags */
  94.   24 + 20 * 8,                        /* %cs */
  95.   24 + 23 * 8,                        /* %ss */
  96.   -1,                                /* %ds */
  97.   -1,                                /* %es */
  98.   -1,                                /* %fs */
  99.   -1                                /* %gs */
  100. };

  101. /* From /usr/src/lib/libc/amd64/gen/_setjmp.S.  */
  102. static int amd64fbsd_jmp_buf_reg_offset[] =
  103. {
  104.   -1,                                /* %rax */
  105.   1 * 8,                        /* %rbx */
  106.   -1,                                /* %rcx */
  107.   -1,                                /* %rdx */
  108.   -1,                                /* %rsi */
  109.   -1,                                /* %rdi */
  110.   3 * 8,                        /* %rbp */
  111.   2 * 8,                        /* %rsp */
  112.   -1,                                /* %r8 ...  */
  113.   -1,
  114.   -1,
  115.   -1,                                /* ... %r11 */
  116.   4 * 8,                        /* %r12 ...  */
  117.   5 * 8,
  118.   6 * 8,
  119.   7 * 8,                        /* ... %r15 */
  120.   0 * 8                                /* %rip */
  121. };

  122. static void
  123. amd64fbsd_supply_uthread (struct regcache *regcache,
  124.                           int regnum, CORE_ADDR addr)
  125. {
  126.   gdb_byte buf[8];
  127.   int i;

  128.   gdb_assert (regnum >= -1);

  129.   for (i = 0; i < ARRAY_SIZE (amd64fbsd_jmp_buf_reg_offset); i++)
  130.     {
  131.       if (amd64fbsd_jmp_buf_reg_offset[i] != -1
  132.           && (regnum == -1 || regnum == i))
  133.         {
  134.           read_memory (addr + amd64fbsd_jmp_buf_reg_offset[i], buf, 8);
  135.           regcache_raw_supply (regcache, i, buf);
  136.         }
  137.     }
  138. }

  139. static void
  140. amd64fbsd_collect_uthread (const struct regcache *regcache,
  141.                            int regnum, CORE_ADDR addr)
  142. {
  143.   gdb_byte buf[8];
  144.   int i;

  145.   gdb_assert (regnum >= -1);

  146.   for (i = 0; i < ARRAY_SIZE (amd64fbsd_jmp_buf_reg_offset); i++)
  147.     {
  148.       if (amd64fbsd_jmp_buf_reg_offset[i] != -1
  149.           && (regnum == -1 || regnum == i))
  150.         {
  151.           regcache_raw_collect (regcache, i, buf);
  152.           write_memory (addr + amd64fbsd_jmp_buf_reg_offset[i], buf, 8);
  153.         }
  154.     }
  155. }

  156. static void
  157. amd64fbsd_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
  158. {
  159.   struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);

  160.   /* Generic FreeBSD support. */
  161.   fbsd_init_abi (info, gdbarch);

  162.   /* Obviously FreeBSD is BSD-based.  */
  163.   i386bsd_init_abi (info, gdbarch);

  164.   tdep->gregset_reg_offset = amd64fbsd_r_reg_offset;
  165.   tdep->gregset_num_regs = ARRAY_SIZE (amd64fbsd_r_reg_offset);
  166.   tdep->sizeof_gregset = 22 * 8;

  167.   amd64_init_abi (info, gdbarch);

  168.   tdep->sigtramp_start = amd64fbsd_sigtramp_start_addr;
  169.   tdep->sigtramp_end = amd64fbsd_sigtramp_end_addr;
  170.   tdep->sigcontext_addr = amd64fbsd_sigcontext_addr;
  171.   tdep->sc_reg_offset = amd64fbsd_sc_reg_offset;
  172.   tdep->sc_num_regs = ARRAY_SIZE (amd64fbsd_sc_reg_offset);

  173.   /* FreeBSD provides a user-level threads implementation.  */
  174.   bsd_uthread_set_supply_uthread (gdbarch, amd64fbsd_supply_uthread);
  175.   bsd_uthread_set_collect_uthread (gdbarch, amd64fbsd_collect_uthread);

  176.   /* FreeBSD uses SVR4-style shared libraries.  */
  177.   set_solib_svr4_fetch_link_map_offsets
  178.     (gdbarch, svr4_lp64_fetch_link_map_offsets);
  179. }


  180. /* Provide a prototype to silence -Wmissing-prototypes.  */
  181. void _initialize_amd64fbsd_tdep (void);

  182. void
  183. _initialize_amd64fbsd_tdep (void)
  184. {
  185.   gdbarch_register_osabi (bfd_arch_i386, bfd_mach_x86_64,
  186.                           GDB_OSABI_FREEBSD_ELF, amd64fbsd_init_abi);
  187. }