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/s390-tdep.h | |
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/s390-tdep.h')
-rw-r--r-- | gdb/s390-tdep.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gdb/s390-tdep.h b/gdb/s390-tdep.h index 0460e8ba049..7a9a3530723 100644 --- a/gdb/s390-tdep.h +++ b/gdb/s390-tdep.h @@ -67,6 +67,8 @@ struct s390_gdbarch_tdep : gdbarch_tdep_base = nullptr; }; +using s390_gdbarch_tdep_up = std::unique_ptr<s390_gdbarch_tdep>; + /* Decoding S/390 instructions. */ /* Named opcode values for the S/390 instructions we recognize. Some |