1 /* Native-dependent code for GNU/Linux UltraSPARC.
3 Copyright (C) 2003, 2005, 2006 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 2 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, write to the Free Software
19 Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, USA. */
25 #include <sys/procfs.h>
28 #include "sparc64-tdep.h"
29 #include "sparc-tdep.h"
30 #include "sparc-nat.h"
33 #include "linux-nat.h"
35 static const struct sparc_gregset sparc64_linux_ptrace_gregset
=
37 16 * 8, /* "tstate" */
50 supply_gregset (prgregset_t
*gregs
)
52 sparc64_supply_gregset (sparc_gregset
, current_regcache
, -1, gregs
);
56 supply_fpregset (prfpregset_t
*fpregs
)
58 sparc64_supply_fpregset (current_regcache
, -1, fpregs
);
62 fill_gregset (prgregset_t
*gregs
, int regnum
)
64 sparc64_collect_gregset (sparc_gregset
, current_regcache
, regnum
, gregs
);
68 fill_fpregset (prfpregset_t
*fpregs
, int regnum
)
70 sparc64_collect_fpregset (current_regcache
, regnum
, fpregs
);
73 /* Provide a prototype to silence -Wmissing-prototypes. */
74 void _initialize_sparc64_linux_nat (void);
77 _initialize_sparc64_linux_nat (void)
81 /* Fill in the generic GNU/Linux methods. */
84 /* Add our register access methods. */
85 t
->to_fetch_registers
= fetch_inferior_registers
;
86 t
->to_store_registers
= store_inferior_registers
;
88 /* Register the target. */
89 linux_nat_add_target (t
);
91 sparc_gregset
= &sparc64_linux_ptrace_gregset
;