diff options
author | Tom Tromey <tom@tromey.com> | 2025-03-25 13:25:39 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2025-04-01 07:30:10 -0600 |
commit | d33f7cc36e7fb5f53452febb28cb3189d3290fb8 (patch) | |
tree | 209c970d320abf03dd016bdc55570465815dff7f /gdb/addrmap.h | |
parent | 23ad2598a6b92643417b7a94da54aebb62469423 (diff) | |
download | binutils-d33f7cc36e7fb5f53452febb28cb3189d3290fb8.zip binutils-d33f7cc36e7fb5f53452febb28cb3189d3290fb8.tar.gz binutils-d33f7cc36e7fb5f53452febb28cb3189d3290fb8.tar.bz2 |
Add addrmap_mutable::clear
It was convenient to add a 'clear' method to addrmap_mutable. The
cleanest way to do this was to change the class to lazily initialize
its 'tree' member. This also makes addrmap_mutable::operator= a bit
less weird.
Approved-By: Simon Marchi <simon.marchi@efficios.com>
Diffstat (limited to 'gdb/addrmap.h')
-rw-r--r-- | gdb/addrmap.h | 21 |
1 files changed, 17 insertions, 4 deletions
diff --git a/gdb/addrmap.h b/gdb/addrmap.h index 95f6ec8..06fc175 100644 --- a/gdb/addrmap.h +++ b/gdb/addrmap.h @@ -126,8 +126,12 @@ struct addrmap_mutable final : public addrmap { public: - addrmap_mutable (); - ~addrmap_mutable (); + addrmap_mutable () = default; + ~addrmap_mutable () + { + clear (); + } + DISABLE_COPY_AND_ASSIGN (addrmap_mutable); addrmap_mutable (addrmap_mutable &&other) @@ -138,7 +142,13 @@ public: addrmap_mutable &operator= (addrmap_mutable &&other) { - std::swap (tree, other.tree); + /* Handle self-move. */ + if (this != &other) + { + clear (); + tree = other.tree; + other.tree = nullptr; + } return *this; } @@ -183,6 +193,9 @@ public: void *obj); void relocate (CORE_ADDR offset) override; + /* Clear this addrmap. */ + void clear (); + private: void *do_find (CORE_ADDR addr) const override; int do_foreach (addrmap_foreach_fn fn) const override; @@ -204,7 +217,7 @@ private: function, we can't keep a freelist for keys. Since mutable addrmaps are only used temporarily right now, we just leak keys from deleted nodes; they'll be freed when the obstack is freed. */ - splay_tree tree; + splay_tree tree = nullptr; /* Various helper methods. */ splay_tree_key allocate_key (CORE_ADDR addr); |