GDB (xrefs)
/tmp/gdb-7.10/gdb/sparc-linux-nat.c
Go to the documentation of this file.
1 /* Native-dependent code for GNU/Linux SPARC.
2  Copyright (C) 2005-2015 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 
31 void
33 {
34  sparc32_supply_gregset (sparc_gregmap, regcache, -1, gregs);
35 }
36 
37 void
39 {
40  sparc32_supply_fpregset (sparc_fpregmap, regcache, -1, fpregs);
41 }
42 
43 void
44 fill_gregset (const struct regcache *regcache, prgregset_t *gregs, int regnum)
45 {
46  sparc32_collect_gregset (sparc_gregmap, regcache, regnum, gregs);
47 }
48 
49 void
51  prfpregset_t *fpregs, int regnum)
52 {
53  sparc32_collect_fpregset (sparc_fpregmap, regcache, regnum, fpregs);
54 }
55 
56 void _initialize_sparc_linux_nat (void);
57 
58 void
60 {
61  struct target_ops *t;
62 
63  /* Fill in the generic GNU/Linux methods. */
64  t = linux_target ();
65 
67 
68  /* Add our register access methods. */
71 
72  /* Register the target. */
74 }
void fill_gregset(const struct regcache *regcache, prgregset_t *gregs, int regnum)
void fill_fpregset(const struct regcache *regcache, prfpregset_t *fpregs, int regnum)
void sparc32_supply_gregset(const struct sparc_gregmap *gregmap, struct regcache *regcache, int regnum, const void *gregs)
Definition: sparc-tdep.c:1894
void sparc_store_inferior_registers(struct target_ops *ops, struct regcache *regcache, int regnum)
Definition: sparc-nat.c:192
void sparc32_collect_fpregset(const struct sparc_fpregmap *fpregmap, const struct regcache *regcache, int regnum, void *fpregs)
Definition: sparc-tdep.c:2034
void _initialize_sparc_linux_nat(void)
gdb_fpregset_t prfpregset_t
void sparc_fetch_inferior_registers(struct target_ops *ops, struct regcache *regcache, int regnum)
Definition: sparc-nat.c:137
void sparc32_supply_fpregset(const struct sparc_fpregmap *fpregmap, struct regcache *regcache, int regnum, const void *fpregs)
Definition: sparc-tdep.c:2014
void linux_nat_add_target(struct target_ops *t)
Definition: linux-nat.c:4972
void supply_gregset(struct regcache *regcache, const prgregset_t *gregs)
void sparc32_collect_gregset(const struct sparc_gregmap *gregmap, const struct regcache *regcache, int regnum, void *gregs)
Definition: sparc-tdep.c:1959
int regnum
Definition: aarch64-tdep.c:69
struct target_ops * linux_target(void)
Definition: linux-nat.c:4544
void supply_fpregset(struct regcache *regcache, const prfpregset_t *fpregs)
const struct sparc_fpregmap sparc32_bsd_fpregmap
Definition: sparc-tdep.c:2075
gdb_gregset_t prgregset_t
void(* to_fetch_registers)(struct target_ops *, struct regcache *, int) TARGET_DEFAULT_IGNORE()
Definition: target.h:472
void(* to_store_registers)(struct target_ops *, struct regcache *, int) TARGET_DEFAULT_NORETURN(noprocess())
Definition: target.h:474