2003-09-26 16:36:56 +02:00
|
|
|
/* Manage register sets.
|
|
|
|
|
2017-01-01 07:50:51 +01:00
|
|
|
Copyright (C) 2003-2017 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;
|
|
|
|
|
|
|
|
/* 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
|
|
|
|
{
|
2014-06-03 19:11:35 +02:00
|
|
|
/* Pointer to a "register map", for private use by the methods
|
|
|
|
below. Typically describes how the regset's registers are
|
|
|
|
arranged in the buffer collected to or supplied from. */
|
|
|
|
const void *regmap;
|
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;
|
2015-01-15 11:20:45 +01:00
|
|
|
|
|
|
|
unsigned flags;
|
2003-09-26 16:36:56 +02:00
|
|
|
};
|
|
|
|
|
2015-01-15 11:20:45 +01:00
|
|
|
/* Values for a regset's 'flags' field. */
|
|
|
|
|
|
|
|
#define REGSET_VARIABLE_SIZE 1 /* Accept a larger regset section size
|
|
|
|
in a core file without warning. */
|
|
|
|
|
2003-09-26 16:36:56 +02:00
|
|
|
#endif /* regset.h */
|