diff options
author | Jim Blandy <jimb@codesourcery.com> | 2004-05-21 22:15:10 +0000 |
---|---|---|
committer | Jim Blandy <jimb@codesourcery.com> | 2004-05-21 22:15:10 +0000 |
commit | 617a4cbacf3fae7fb4eb43708b127bd19dc1623b (patch) | |
tree | 428672b8e68b23c4d269fc7d793a88190248adbb /gdb/i386-tdep.c | |
parent | 6bd3dfaaa22d67e2070f89b4c960311842a3faaf (diff) | |
download | ppe42-binutils-617a4cbacf3fae7fb4eb43708b127bd19dc1623b.tar.gz ppe42-binutils-617a4cbacf3fae7fb4eb43708b127bd19dc1623b.zip |
Allocate regset structures in the gdbarch's obstack, not using
xmalloc.
* regset.c (regset_alloc): Renamed from regset_xmalloc.
Add 'arch' argument. Allocate the regset on arch's obstack, not
using xmalloc.
* regset.h (regset_alloc): Update declaration.
* am64-tdep.c (amd64_regset_from_core_section): Update call; pass
gdbarch argument.
* amd64obsd-tdep.c (amd64obsd_regset_from_core_section): Same.
* i386-tdep.c (i386_regset_from_core_section): Same.
* i386nbsd-tdep.c (i386nbsd_aout_regset_from_core_section): Same.
* i386obsd-tdep.c (i386obsd_aout_regset_from_core_section): Same.
* sparc64fbsd-tdep.c (sparc64fbsd_init_abi): Same.
* sparc64nbsd-tdep.c (sparc64nbsd_init_abi): Same.
* sparc64obsd-tdep.c (sparc64obsd_init_abi): Same.
* sparcnbsd-tdep.c (sparc32nbsd_init_abi): Same.
Diffstat (limited to 'gdb/i386-tdep.c')
-rw-r--r-- | gdb/i386-tdep.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gdb/i386-tdep.c b/gdb/i386-tdep.c index 99810598db..d01dcc5d92 100644 --- a/gdb/i386-tdep.c +++ b/gdb/i386-tdep.c @@ -1662,7 +1662,8 @@ i386_regset_from_core_section (struct gdbarch *gdbarch, if (strcmp (sect_name, ".reg") == 0 && sect_size == tdep->sizeof_gregset) { if (tdep->gregset == NULL) - tdep->gregset = regset_xmalloc (tdep, i386_supply_gregset, NULL); + tdep->gregset = regset_alloc (gdbarch, tdep, + i386_supply_gregset, NULL); return tdep->gregset; } @@ -1671,7 +1672,8 @@ i386_regset_from_core_section (struct gdbarch *gdbarch, && sect_size == I387_SIZEOF_FXSAVE)) { if (tdep->fpregset == NULL) - tdep->fpregset = regset_xmalloc (tdep, i386_supply_fpregset, NULL); + tdep->fpregset = regset_alloc (gdbarch, tdep, + i386_supply_fpregset, NULL); return tdep->fpregset; } |