GDB (xrefs)
Loading...
Searching...
No Matches
sparc-linux-nat.c
Go to the documentation of this file.
1/* Native-dependent code for GNU/Linux SPARC.
2 Copyright (C) 2005-2023 Free Software Foundation, Inc.
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
8 the Free Software Foundation; either version 3 of the License, or
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
17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
18
19#include "defs.h"
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"
27#include "inferior.h"
28#include "target.h"
29#include "linux-nat.h"
30
32{
33public:
34 /* Add our register access methods. */
37
40};
41
43
44void
45supply_gregset (struct regcache *regcache, const prgregset_t *gregs)
46{
48}
49
50void
51supply_fpregset (struct regcache *regcache, const prfpregset_t *fpregs)
52{
54}
55
56void
57fill_gregset (const struct regcache *regcache, prgregset_t *gregs, int regnum)
58{
60}
61
62void
64 prfpregset_t *fpregs, int regnum)
65{
67}
68
70void
int regnum
void fetch_registers(struct regcache *regcache, int regnum) override
void store_registers(struct regcache *regcache, int regnum) override
void add_inf_child_target(inf_child_target *target)
Definition inf-child.c:418
struct linux_nat_target * linux_target
Definition linux-nat.c:189
void fill_fpregset(const struct regcache *regcache, prfpregset_t *fpregs, int regnum)
void fill_gregset(const struct regcache *regcache, prgregset_t *gregs, int regnum)
void _initialize_sparc_linux_nat()
void supply_gregset(struct regcache *regcache, const prgregset_t *gregs)
static sparc_linux_nat_target the_sparc_linux_nat_target
void supply_fpregset(struct regcache *regcache, const prfpregset_t *fpregs)
void sparc_store_inferior_registers(process_stratum_target *proc_target, regcache *regcache, int regnum)
Definition sparc-nat.c:193
void sparc_fetch_inferior_registers(process_stratum_target *proc_target, regcache *regcache, int regnum)
Definition sparc-nat.c:150
void sparc32_supply_gregset(const struct sparc_gregmap *gregmap, struct regcache *regcache, int regnum, const void *gregs)
const struct sparc_fpregmap sparc32_bsd_fpregmap
void sparc32_supply_fpregset(const struct sparc_fpregmap *fpregmap, struct regcache *regcache, int regnum, const void *fpregs)
void sparc32_collect_fpregset(const struct sparc_fpregmap *fpregmap, const struct regcache *regcache, int regnum, void *fpregs)
void sparc32_collect_gregset(const struct sparc_gregmap *gregmap, const struct regcache *regcache, int regnum, void *gregs)