aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2022-04-16 09:10:29 -0600
committerTom Tromey <tom@tromey.com>2022-06-12 10:49:48 -0600
commit5427f03f9e0ab815ca5dbc73339ef27863a6f2df (patch)
treec388261d8be3f2885476ca9d8efc398d077f63e9 /gdb
parenta692aa3f1dc1106edaa0b93b23bd1179a8833548 (diff)
downloadgdb-5427f03f9e0ab815ca5dbc73339ef27863a6f2df.zip
gdb-5427f03f9e0ab815ca5dbc73339ef27863a6f2df.tar.gz
gdb-5427f03f9e0ab815ca5dbc73339ef27863a6f2df.tar.bz2
Privacy for addrmap_fixed
This changes addrmap_fixed so that its data members are private. It also makes struct addrmap_transition private as well.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/addrmap.c97
1 files changed, 44 insertions, 53 deletions
diff --git a/gdb/addrmap.c b/gdb/addrmap.c
index 3f3629f..915dc88 100644
--- a/gdb/addrmap.c
+++ b/gdb/addrmap.c
@@ -84,18 +84,15 @@ addrmap_foreach (struct addrmap *map, addrmap_foreach_fn fn)
/* Fixed address maps. */
-/* A transition: a point in an address map where the value changes.
- The map maps ADDR to VALUE, but if ADDR > 0, it maps ADDR-1 to
- something else. */
-struct addrmap_transition
-{
- CORE_ADDR addr;
- void *value;
-};
-
+struct addrmap_mutable;
struct addrmap_fixed : public addrmap
{
+public:
+
+ addrmap_fixed (struct obstack *obstack, addrmap_mutable *mut);
+ DISABLE_COPY_AND_ASSIGN (addrmap_fixed);
+
void set_empty (CORE_ADDR start, CORE_ADDR end_inclusive,
void *obj) override;
void *find (CORE_ADDR addr) const override;
@@ -103,6 +100,17 @@ struct addrmap_fixed : public addrmap
void relocate (CORE_ADDR offset) override;
int foreach (addrmap_foreach_fn fn) override;
+private:
+
+ /* A transition: a point in an address map where the value changes.
+ The map maps ADDR to VALUE, but if ADDR > 0, it maps ADDR-1 to
+ something else. */
+ struct addrmap_transition
+ {
+ CORE_ADDR addr;
+ void *value;
+ };
+
/* The number of transitions in TRANSITIONS. */
size_t num_transitions;
@@ -396,63 +404,46 @@ addrmap_mutable::find (CORE_ADDR addr) const
}
-/* A function to pass to splay_tree_foreach to count the number of nodes
- in the tree. */
-static int
-splay_foreach_count (splay_tree_node n, void *closure)
-{
- size_t *count = (size_t *) closure;
-
- (*count)++;
- return 0;
-}
-
-
-/* A function to pass to splay_tree_foreach to copy entries into a
- fixed address map. */
-static int
-splay_foreach_copy (splay_tree_node n, void *closure)
-{
- struct addrmap_fixed *fixed = (struct addrmap_fixed *) closure;
- struct addrmap_transition *t = &fixed->transitions[fixed->num_transitions];
-
- t->addr = addrmap_node_key (n);
- t->value = addrmap_node_value (n);
- fixed->num_transitions++;
-
- return 0;
-}
-
-
-struct addrmap *
-addrmap_mutable::create_fixed (struct obstack *obstack)
+addrmap_fixed::addrmap_fixed (struct obstack *obstack, addrmap_mutable *mut)
{
- struct addrmap_fixed *fixed;
- size_t num_transitions;
+ size_t transition_count = 0;
/* Count the number of transitions in the tree. */
- num_transitions = 0;
- splay_tree_foreach (tree, splay_foreach_count, &num_transitions);
+ addrmap_foreach (mut, [&] (CORE_ADDR start, void *obj)
+ {
+ ++transition_count;
+ return 0;
+ });
/* Include an extra entry for the transition at zero (which fixed
maps have, but mutable maps do not.) */
- num_transitions++;
+ transition_count++;
- fixed = new (obstack) struct addrmap_fixed;
- fixed->num_transitions = 1;
- fixed->transitions = XOBNEWVEC (obstack, struct addrmap_transition,
- num_transitions);
- fixed->transitions[0].addr = 0;
- fixed->transitions[0].value = NULL;
+ num_transitions = 1;
+ transitions = XOBNEWVEC (obstack, struct addrmap_transition,
+ transition_count);
+ transitions[0].addr = 0;
+ transitions[0].value = NULL;
/* Copy all entries from the splay tree to the array, in order
of increasing address. */
- splay_tree_foreach (tree, splay_foreach_copy, fixed);
+ addrmap_foreach (mut, [&] (CORE_ADDR start, void *obj)
+ {
+ transitions[num_transitions].addr = start;
+ transitions[num_transitions].value = obj;
+ ++num_transitions;
+ return 0;
+ });
/* We should have filled the array. */
- gdb_assert (fixed->num_transitions == num_transitions);
+ gdb_assert (num_transitions == transition_count);
+}
- return fixed;
+
+struct addrmap *
+addrmap_mutable::create_fixed (struct obstack *obstack)
+{
+ return new (obstack) struct addrmap_fixed (obstack, this);
}