diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2022-10-03 11:15:14 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2023-01-05 14:38:51 -0500 |
commit | 2b16913cdca20ae1dafdbd816b025a6efdc6c06f (patch) | |
tree | e1b7e91c6e5f57f605ea37cf868f4987eedf078e /gdb/xtensa-config.c | |
parent | cabd67874a6ef7aaed41490d9eaddc4a4869a452 (diff) | |
download | binutils-gdb-2b16913cdca20ae1dafdbd816b025a6efdc6c06f.tar.gz |
gdb: make gdbarch_alloc take ownership of the tdep
It's currently not clear how the ownership of gdbarch_tdep objects
works. In fact, nothing ever takes ownership of it. This is mostly
fine because we never free gdbarch objects, and thus we never free
gdbarch_tdep objects. There is an exception to that however: when
initialization fails, we do free the gdbarch object that is not going to
be used, and we free the tdep too. Currently, i386 and s390 do it.
To make things clearer, change gdbarch_alloc so that it takes ownership
of the tdep. The tdep is thus automatically freed if the gdbarch is
freed.
Change all gdbarch initialization functions to pass a new gdbarch_tdep
object to gdbarch_alloc and then retrieve a non-owning reference from
the gdbarch object.
Before this patch, the xtensa architecture had a single global instance
of xtensa_gdbarch_tdep. Since we need to pass a dynamically allocated
gdbarch_tdep_base instance to gdbarch_alloc, remove this global
instance, and dynamically allocate one as needed, like we do for all
other architectures. Make the `rmap` array externally visible and
rename it to the less collision-prone `xtensa_rmap` name.
Change-Id: Id3d70493ef80ce4bdff701c57636f4c79ed8aea2
Approved-By: Andrew Burgess <aburgess@redhat.com>
Diffstat (limited to 'gdb/xtensa-config.c')
-rw-r--r-- | gdb/xtensa-config.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gdb/xtensa-config.c b/gdb/xtensa-config.c index 3c3b8889688..a40ce9380dc 100644 --- a/gdb/xtensa-config.c +++ b/gdb/xtensa-config.c @@ -62,7 +62,7 @@ const xtensa_mask_t xtensa_mask15 = { 1, xtensa_submask15 }; /* Register map. */ -static xtensa_register_t rmap[] = +xtensa_register_t xtensa_rmap[] = { /* idx ofs bi sz al targno flags cp typ group name */ XTREG( 0, 0,32, 4, 4,0x0020,0x0006,-2, 9,0x0100,pc, 0,0,0,0,0,0) @@ -212,5 +212,3 @@ static xtensa_register_t rmap[] = 0,0,&xtensa_mask15,0,0,0) XTREG_END }; - -xtensa_gdbarch_tdep xtensa_tdep (rmap); |