gdb/sparc-nat.h - gdb

Macros defined

Source code

  1. /* Native-dependent code for SPARC.

  2.    Copyright (C) 2003-2015 Free Software Foundation, Inc.

  3.    This file is part of GDB.

  4.    This program is free software; you can redistribute it and/or modify
  5.    it under the terms of the GNU General Public License as published by
  6.    the Free Software Foundation; either version 3 of the License, or
  7.    (at your option) any later version.

  8.    This program is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11.    GNU General Public License for more details.

  12.    You should have received a copy of the GNU General Public License
  13.    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */

  14. #ifndef SPARC_NAT_H
  15. #define SPARC_NAT_H 1

  16. struct sparc_gregmap;
  17. struct sparc_fpregmap;

  18. extern const struct sparc_gregmap *sparc_gregmap;
  19. extern const struct sparc_fpregmap *sparc_fpregmap;
  20. extern void (*sparc_supply_gregset) (const struct sparc_gregmap *,
  21.                                      struct regcache *, int , const void *);
  22. extern void (*sparc_collect_gregset) (const struct sparc_gregmap *,
  23.                                       const struct regcache *, int, void *);
  24. extern void (*sparc_supply_fpregset) (const struct sparc_fpregmap *,
  25.                                       struct regcache *, int , const void *);
  26. extern void (*sparc_collect_fpregset) (const struct sparc_fpregmap *,
  27.                                        const struct regcache *, int , void *);
  28. extern int (*sparc_gregset_supplies_p) (struct gdbarch *gdbarch, int);
  29. extern int (*sparc_fpregset_supplies_p) (struct gdbarch *gdbarch, int);

  30. extern int sparc32_gregset_supplies_p (struct gdbarch *gdbarch, int regnum);
  31. extern int sparc32_fpregset_supplies_p (struct gdbarch *gdbarch, int regnum);

  32. /* Create a prototype generic SPARC target.  The client can override
  33.    it with local methods.  */

  34. extern struct target_ops *sparc_target (void);

  35. extern void sparc_fetch_inferior_registers (struct target_ops *,
  36.                                             struct regcache *, int);
  37. extern void sparc_store_inferior_registers (struct target_ops *,
  38.                                             struct regcache *, int);

  39. #endif /* sparc-nat.h */