gdb - Local mods (compile)
[dragonfly.git] / contrib / gdb-7 / gdb / amd64dfly-tdep.c
1 /* Target-dependent code for DragonFly/amd64.
2
3    Copyright (C) 2003-2013 Free Software Foundation, Inc.
4
5    This file is part of GDB.
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 3 of the License, or
10    (at your option) any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
19
20 #include "defs.h"
21 #include "arch-utils.h"
22 #include "frame.h"
23 #include "gdbcore.h"
24 #include "regcache.h"
25 #include "osabi.h"
26
27 #include "gdb_assert.h"
28
29 #include "amd64-tdep.h"
30 #include "solib-svr4.h"
31
32 /* Support for signal handlers.  */
33
34 /* Assuming THIS_FRAME is for a BSD sigtramp routine, return the
35    address of the associated sigcontext structure.  */
36
37 static CORE_ADDR
38 amd64dfly_sigcontext_addr (struct frame_info *this_frame)
39 {
40   struct gdbarch *gdbarch = get_frame_arch (this_frame);
41   enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
42   CORE_ADDR sp;
43   gdb_byte buf[8];
44
45   /* The `struct sigcontext' (which really is an `ucontext_t' on
46      DragonFly/amd64) lives at a fixed offset in the signal frame.  See
47      <machine/sigframe.h>.  */
48   get_frame_register (this_frame, AMD64_RSP_REGNUM, buf);
49   sp = extract_unsigned_integer (buf, 8, byte_order);
50   return sp + 16;
51 }
52 \f
53 /* Mapping between the general-purpose registers in `struct reg'
54    format and GDB's register cache layout.
55
56    Note that some registers are 32-bit, but since we're little-endian
57    we get away with that.  */
58
59 /* From <machine/reg.h>.  */
60 static int amd64dfly_r_reg_offset[] =
61 {
62   6 * 8,                        /* %rax */
63   7 * 8,                        /* %rbx */
64   3 * 8,                        /* %rcx */
65   2 * 8,                        /* %rdx */
66   1 * 8,                        /* %rsi */
67   0 * 8,                        /* %rdi */
68   8 * 8,                        /* %rbp */
69   23 * 8,                       /* %rsp */
70   4 * 8,                        /* %r8 ... */
71   5 * 8,
72   9 * 8,
73   10 * 8,
74   11 * 8,
75   12 * 8,
76   13 * 8,
77   14 * 8,                       /* ... %r15 */
78   20 * 8,                       /* %rip */
79   22 * 8,                       /* %eflags */
80   21 * 8,                       /* %cs */
81   24 * 8,                       /* %ss */
82   -1,                           /* %ds */
83   -1,                           /* %es */
84   -1,                           /* %fs */
85   -1                            /* %gs */
86 };
87
88 /* Location of the signal trampoline.  */
89 CORE_ADDR amd64dfly_sigtramp_start_addr = 0x7fffffffffc0ULL;
90 CORE_ADDR amd64dfly_sigtramp_end_addr = 0x7fffffffffe0ULL;
91
92 /* From <machine/signal.h>.  */
93 int amd64dfly_sc_reg_offset[] =
94 {
95   24 + 6 * 8,                   /* %rax */
96   24 + 7 * 8,                   /* %rbx */
97   24 + 3 * 8,                   /* %rcx */
98   24 + 2 * 8,                   /* %rdx */
99   24 + 1 * 8,                   /* %rsi */
100   24 + 0 * 8,                   /* %rdi */
101   24 + 8 * 8,                   /* %rbp */
102   24 + 23 * 8,                  /* %rsp */
103   24 + 4 * 8,                   /* %r8 ... */
104   24 + 5 * 8,
105   24 + 9 * 8,
106   24 + 10 * 8,
107   24 + 11 * 8,
108   24 + 12 * 8,
109   24 + 13 * 8,
110   24 + 14 * 8,                  /* ... %r15 */
111   24 + 20 * 8,                  /* %rip */
112   24 + 22 * 8,                  /* %eflags */
113   24 + 21 * 8,                  /* %cs */
114   24 + 24 * 8,                  /* %ss */
115   -1,                           /* %ds */
116   -1,                           /* %es */
117   -1,                           /* %fs */
118   -1                            /* %gs */
119 };
120
121 /* From /usr/src/lib/libc/amd64/gen/_setjmp.S.  */
122 static int amd64dfly_jmp_buf_reg_offset[] =
123 {
124   -1,                           /* %rax */
125   1 * 8,                        /* %rbx */
126   -1,                           /* %rcx */
127   -1,                           /* %rdx */
128   -1,                           /* %rsi */
129   -1,                           /* %rdi */
130   3 * 8,                        /* %rbp */
131   2 * 8,                        /* %rsp */
132   -1,                           /* %r8 ... */
133   -1,
134   -1,
135   -1,                           /* ... %r11 */
136   4 * 8,                        /* %r12 ... */
137   5 * 8,
138   6 * 8,
139   7 * 8,                        /* ... %r15 */
140   0 * 8                         /* %rip */
141 };
142
143 static void
144 amd64dfly_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
145 {
146   struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
147
148   i386bsd_init_abi (info, gdbarch);
149
150   tdep->gregset_reg_offset = amd64dfly_r_reg_offset;
151   tdep->gregset_num_regs = ARRAY_SIZE (amd64dfly_r_reg_offset);
152   tdep->sizeof_gregset = 25 * 8;
153
154   amd64_init_abi (info, gdbarch);
155
156   tdep->sigtramp_start = amd64dfly_sigtramp_start_addr;
157   tdep->sigtramp_end = amd64dfly_sigtramp_end_addr;
158   tdep->sigcontext_addr = amd64dfly_sigcontext_addr;
159   tdep->sc_reg_offset = amd64dfly_sc_reg_offset;
160   tdep->sc_num_regs = ARRAY_SIZE (amd64dfly_sc_reg_offset);
161
162   set_solib_svr4_fetch_link_map_offsets
163     (gdbarch, svr4_lp64_fetch_link_map_offsets);
164 }
165 \f
166
167 /* Provide a prototype to silence -Wmissing-prototypes.  */
168 void _initialize_amd64dfly_tdep (void);
169
170 void
171 _initialize_amd64dfly_tdep (void)
172 {
173   gdbarch_register_osabi (bfd_arch_i386, bfd_mach_x86_64,
174                           GDB_OSABI_DRAGONFLY, amd64dfly_init_abi);
175 }