2003-09-26 16:36:56 +02:00
|
|
|
/* Manage register sets.
|
|
|
|
|
2009-01-03 06:58:08 +01:00
|
|
|
Copyright (C) 2003, 2004, 2007, 2008, 2009 Free Software Foundation, Inc.
|
2003-09-26 16:36:56 +02:00
|
|
|
|
|
|
|
This file is part of GDB.
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
2007-08-23 20:08:50 +02:00
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
2003-09-26 16:36:56 +02:00
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
2007-08-23 20:08:50 +02:00
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
2003-09-26 16:36:56 +02:00
|
|
|
|
|
|
|
#ifndef REGSET_H
|
|
|
|
#define REGSET_H 1
|
|
|
|
|
|
|
|
struct gdbarch;
|
|
|
|
struct regcache;
|
|
|
|
|
2008-05-24 18:32:01 +02:00
|
|
|
/* Data structure for the supported register notes in a core file. */
|
|
|
|
struct core_regset_section
|
|
|
|
{
|
|
|
|
const char *sect_name;
|
|
|
|
int size;
|
|
|
|
};
|
|
|
|
|
2003-09-26 16:36:56 +02:00
|
|
|
/* Data structure describing a register set. */
|
2004-05-22 17:16:22 +02:00
|
|
|
|
2004-05-20 02:53:06 +02:00
|
|
|
typedef void (supply_regset_ftype) (const struct regset *, struct regcache *,
|
|
|
|
int, const void *, size_t);
|
|
|
|
typedef void (collect_regset_ftype) (const struct regset *,
|
|
|
|
const struct regcache *,
|
2004-05-30 00:28:57 +02:00
|
|
|
int, void *, size_t);
|
2003-09-26 16:36:56 +02:00
|
|
|
|
|
|
|
struct regset
|
|
|
|
{
|
|
|
|
/* Data pointer for private use by the methods below, presumably
|
|
|
|
providing some sort of description of the register set. */
|
2004-05-24 00:42:59 +02:00
|
|
|
const void *descr;
|
2003-09-26 16:36:56 +02:00
|
|
|
|
2004-05-20 02:53:06 +02:00
|
|
|
/* Function supplying values in a register set to a register cache. */
|
|
|
|
supply_regset_ftype *supply_regset;
|
|
|
|
|
|
|
|
/* Function collecting values in a register set from a register cache. */
|
|
|
|
collect_regset_ftype *collect_regset;
|
2004-05-24 00:42:59 +02:00
|
|
|
|
|
|
|
/* Architecture associated with the register set. */
|
|
|
|
struct gdbarch *arch;
|
2003-09-26 16:36:56 +02:00
|
|
|
};
|
|
|
|
|
2004-05-22 17:16:22 +02:00
|
|
|
/* Allocate a fresh 'struct regset' whose supply_regset function is
|
|
|
|
SUPPLY_REGSET, and whose collect_regset function is COLLECT_REGSET.
|
|
|
|
If the regset has no collect_regset function, pass NULL for
|
|
|
|
COLLECT_REGSET.
|
2004-05-20 02:53:06 +02:00
|
|
|
|
2004-05-22 00:15:10 +02:00
|
|
|
The object returned is allocated on ARCH's obstack. */
|
2004-05-22 17:16:22 +02:00
|
|
|
|
2004-05-22 00:15:10 +02:00
|
|
|
extern struct regset *regset_alloc (struct gdbarch *arch,
|
|
|
|
supply_regset_ftype *supply_regset,
|
|
|
|
collect_regset_ftype *collect_regset);
|
2004-05-20 02:53:06 +02:00
|
|
|
|
2003-09-26 16:36:56 +02:00
|
|
|
#endif /* regset.h */
|