M88K: Migrate from 'regset_from_core_section' to 'iterate_over_regset_sections'

For M88K targets, no longer define the gdbarch method
'regset_from_core_section', but the iterator method instead.

gdb/ChangeLog:

	* m88k-tdep.c (m88k_regset_from_core_section): Remove.
	(m88k_iterate_over_regset_sections): New.
	(m88k_gdbarch_init): Adjust gdbarch initialization.
This commit is contained in:
Andreas Arnez 2013-11-29 16:48:24 +00:00 committed by Andreas Krebbel
parent 55a2906a41
commit b61ddd6e24
2 changed files with 15 additions and 11 deletions

View file

@ -1,3 +1,9 @@
2014-09-30 Andreas Arnez <arnez@linux.vnet.ibm.com>
* m88k-tdep.c (m88k_regset_from_core_section): Remove.
(m88k_iterate_over_regset_sections): New.
(m88k_gdbarch_init): Adjust gdbarch initialization.
2014-09-30 Andreas Arnez <arnez@linux.vnet.ibm.com>
* ia64-linux-tdep.c (ia64_linux_regset_from_core_section): Remove.

View file

@ -802,17 +802,15 @@ static const struct regset m88k_gregset =
m88k_supply_gregset
};
/* Return the appropriate register set for the core section identified
by SECT_NAME and SECT_SIZE. */
/* Iterate over supported core file register note sections. */
static const struct regset *
m88k_regset_from_core_section (struct gdbarch *gdbarch,
const char *sect_name, size_t sect_size)
static void
m88k_iterate_over_regset_sections (struct gdbarch *gdbarch,
iterate_over_regset_sections_cb *cb,
void *cb_data,
const struct regcache *regcache)
{
if (strcmp (sect_name, ".reg") == 0 && sect_size >= M88K_NUM_REGS * 4)
return &m88k_gregset;
return NULL;
cb (".reg", M88K_NUM_REGS * 4, &m88k_gregset, NULL, cb_data);
}
@ -842,8 +840,8 @@ m88k_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
set_gdbarch_pc_regnum (gdbarch, M88K_SXIP_REGNUM);
/* Core file support. */
set_gdbarch_regset_from_core_section
(gdbarch, m88k_regset_from_core_section);
set_gdbarch_iterate_over_regset_sections
(gdbarch, m88k_iterate_over_regset_sections);
set_gdbarch_print_insn (gdbarch, print_insn_m88k);