mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-17 16:05:56 +08:00
MN10300: Migrate from 'regset_from_core_section' to 'iterate_over_regset_sections'.
For MN10300 GNU/Linux targets, no longer define the gdbarch method 'regset_from_core_section', but the iterator method instead. gdb/ChangeLog: * mn10300-linux-tdep.c (am33_regset_from_core_section): Remove. (am33_iterate_over_regset_sections): New. (am33_linux_init_osabi): Adjust gdbarch initialization.
This commit is contained in:

committed by
Andreas Krebbel

parent
d40362355c
commit
3636e6083c
@ -1,3 +1,9 @@
|
|||||||
|
2014-09-30 Andreas Arnez <arnez@linux.vnet.ibm.com>
|
||||||
|
|
||||||
|
* mn10300-linux-tdep.c (am33_regset_from_core_section): Remove.
|
||||||
|
(am33_iterate_over_regset_sections): New.
|
||||||
|
(am33_linux_init_osabi): Adjust gdbarch initialization.
|
||||||
|
|
||||||
2014-09-30 Andreas Arnez <arnez@linux.vnet.ibm.com>
|
2014-09-30 Andreas Arnez <arnez@linux.vnet.ibm.com>
|
||||||
|
|
||||||
* mips-linux-tdep.c (mips_linux_regset_from_core_section): Remove.
|
* mips-linux-tdep.c (mips_linux_regset_from_core_section): Remove.
|
||||||
|
@ -457,17 +457,18 @@ static const struct regset am33_fpregset =
|
|||||||
NULL, am33_supply_fpregset_method, am33_collect_fpregset_method
|
NULL, am33_supply_fpregset_method, am33_collect_fpregset_method
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Create a struct regset from a corefile register section. */
|
/* Iterate over core file register note sections. */
|
||||||
|
|
||||||
static const struct regset *
|
static void
|
||||||
am33_regset_from_core_section (struct gdbarch *gdbarch,
|
am33_iterate_over_regset_sections (struct gdbarch *gdbarch,
|
||||||
const char *sect_name,
|
iterate_over_regset_sections_cb *cb,
|
||||||
size_t sect_size)
|
void *cb_data,
|
||||||
|
const struct regcache *regcache)
|
||||||
{
|
{
|
||||||
if (sect_size == sizeof (mn10300_elf_fpregset_t))
|
cb (".reg", sizeof (mn10300_elf_gregset_t), &am33_gregset,
|
||||||
return &am33_fpregset;
|
NULL, cb_data);
|
||||||
else
|
cb (".reg2", sizeof(mn10300_elf_fpregset_t), &am33_fpregset,
|
||||||
return &am33_gregset;
|
NULL, cb_data);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
@ -714,8 +715,8 @@ am33_linux_init_osabi (struct gdbarch_info info, struct gdbarch *gdbarch)
|
|||||||
{
|
{
|
||||||
linux_init_abi (info, gdbarch);
|
linux_init_abi (info, gdbarch);
|
||||||
|
|
||||||
set_gdbarch_regset_from_core_section (gdbarch,
|
set_gdbarch_iterate_over_regset_sections
|
||||||
am33_regset_from_core_section);
|
(gdbarch, am33_iterate_over_regset_sections);
|
||||||
set_solib_svr4_fetch_link_map_offsets
|
set_solib_svr4_fetch_link_map_offsets
|
||||||
(gdbarch, svr4_ilp32_fetch_link_map_offsets);
|
(gdbarch, svr4_ilp32_fetch_link_map_offsets);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user