]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/sparc-linux-nat.c
Remove unnecessary function prototypes.
[thirdparty/binutils-gdb.git] / gdb / sparc-linux-nat.c
CommitLineData
10d6c8cd 1/* Native-dependent code for GNU/Linux SPARC.
61baf725 2 Copyright (C) 2005-2017 Free Software Foundation, Inc.
10d6c8cd
DJ
3
4 This file is part of GDB.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
a9762ec7 8 the Free Software Foundation; either version 3 of the License, or
10d6c8cd
DJ
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
a9762ec7 17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
10d6c8cd
DJ
18
19#include "defs.h"
75e192e6
DM
20#include "regcache.h"
21
22#include <sys/procfs.h>
23#include "gregset.h"
24
25#include "sparc-tdep.h"
26#include "sparc-nat.h"
10d6c8cd
DJ
27#include "inferior.h"
28#include "target.h"
29#include "linux-nat.h"
30
75e192e6 31void
7f7fe91e 32supply_gregset (struct regcache *regcache, const prgregset_t *gregs)
75e192e6 33{
b4fd25c9 34 sparc32_supply_gregset (sparc_gregmap, regcache, -1, gregs);
75e192e6
DM
35}
36
37void
7f7fe91e 38supply_fpregset (struct regcache *regcache, const prfpregset_t *fpregs)
75e192e6 39{
b4fd25c9 40 sparc32_supply_fpregset (sparc_fpregmap, regcache, -1, fpregs);
75e192e6
DM
41}
42
43void
7f7fe91e 44fill_gregset (const struct regcache *regcache, prgregset_t *gregs, int regnum)
75e192e6 45{
b4fd25c9 46 sparc32_collect_gregset (sparc_gregmap, regcache, regnum, gregs);
75e192e6
DM
47}
48
49void
c378eb4e
MS
50fill_fpregset (const struct regcache *regcache,
51 prfpregset_t *fpregs, int regnum)
75e192e6 52{
b4fd25c9 53 sparc32_collect_fpregset (sparc_fpregmap, regcache, regnum, fpregs);
75e192e6
DM
54}
55
10d6c8cd
DJ
56void
57_initialize_sparc_linux_nat (void)
58{
59 struct target_ops *t;
60
61 /* Fill in the generic GNU/Linux methods. */
62 t = linux_target ();
63
b4fd25c9 64 sparc_fpregmap = &sparc32_bsd_fpregmap;
db75c717 65
10d6c8cd 66 /* Add our register access methods. */
6f7a27d5
UW
67 t->to_fetch_registers = sparc_fetch_inferior_registers;
68 t->to_store_registers = sparc_store_inferior_registers;
10d6c8cd
DJ
69
70 /* Register the target. */
f973ed9c 71 linux_nat_add_target (t);
10d6c8cd 72}