1 /* Native-dependent code for NetBSD/amd64.
3 Copyright (C) 2003, 2004, 2007, 2008, 2009 Free Software Foundation, Inc.
5 This file is part of GDB.
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.
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.
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/>. */
23 #include "gdb_assert.h"
26 #include "amd64-tdep.h"
27 #include "amd64-nat.h"
29 /* Mapping between the general-purpose registers in NetBSD/amd64
30 `struct reg' format and GDB's register cache layout for
33 Note that most (if not all) NetBSD/amd64 registers are 64-bit,
34 while the NetBSD/i386 registers are all 32-bit, but since we're
35 little-endian we get away with that. */
37 /* From <machine/reg.h>. */
38 static int amd64nbsd32_r_reg_offset
[] =
59 /* Provide a prototype to silence -Wmissing-prototypes. */
60 void _initialize_amd64nbsd_nat (void);
63 _initialize_amd64nbsd_nat (void)
67 amd64_native_gregset32_reg_offset
= amd64nbsd32_r_reg_offset
;
68 amd64_native_gregset32_num_regs
= ARRAY_SIZE (amd64nbsd32_r_reg_offset
);
69 amd64_native_gregset64_reg_offset
= amd64nbsd_r_reg_offset
;
71 /* Add some extra features to the common *BSD/amd64 target. */
72 t
= amd64bsd_target ();
73 t
->to_pid_to_exec_file
= nbsd_pid_to_exec_file
;