gdb: add target_ops::supports_displaced_step
[deliverable/binutils-gdb.git] / gdb / sparc-linux-nat.c
CommitLineData
10d6c8cd 1/* Native-dependent code for GNU/Linux SPARC.
b811d2c2 2 Copyright (C) 2005-2020 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
f6ac5f3d
PA
31class sparc_linux_nat_target final : public linux_nat_target
32{
33public:
34 /* Add our register access methods. */
35 void fetch_registers (struct regcache *regcache, int regnum) override
36 { sparc_fetch_inferior_registers (regcache, regnum); }
37
ed2df75c 38 void store_registers (struct regcache *regcache, int regnum) override
f6ac5f3d
PA
39 { sparc_store_inferior_registers (regcache, regnum); }
40};
41
42static sparc_linux_nat_target the_sparc_linux_nat_target;
43
75e192e6 44void
7f7fe91e 45supply_gregset (struct regcache *regcache, const prgregset_t *gregs)
75e192e6 46{
b4fd25c9 47 sparc32_supply_gregset (sparc_gregmap, regcache, -1, gregs);
75e192e6
DM
48}
49
50void
7f7fe91e 51supply_fpregset (struct regcache *regcache, const prfpregset_t *fpregs)
75e192e6 52{
b4fd25c9 53 sparc32_supply_fpregset (sparc_fpregmap, regcache, -1, fpregs);
75e192e6
DM
54}
55
56void
7f7fe91e 57fill_gregset (const struct regcache *regcache, prgregset_t *gregs, int regnum)
75e192e6 58{
b4fd25c9 59 sparc32_collect_gregset (sparc_gregmap, regcache, regnum, gregs);
75e192e6
DM
60}
61
62void
c378eb4e
MS
63fill_fpregset (const struct regcache *regcache,
64 prfpregset_t *fpregs, int regnum)
75e192e6 65{
b4fd25c9 66 sparc32_collect_fpregset (sparc_fpregmap, regcache, regnum, fpregs);
75e192e6
DM
67}
68
6c265988 69void _initialize_sparc_linux_nat ();
10d6c8cd 70void
6c265988 71_initialize_sparc_linux_nat ()
10d6c8cd 72{
b4fd25c9 73 sparc_fpregmap = &sparc32_bsd_fpregmap;
db75c717 74
10d6c8cd 75 /* Register the target. */
f6ac5f3d 76 linux_target = &the_sparc_linux_nat_target;
d9f719f1 77 add_inf_child_target (&the_sparc_linux_nat_target);
10d6c8cd 78}
This page took 1.510991 seconds and 4 git commands to generate.