diff options
author | Tom Tromey <tom@tromey.com> | 2022-06-01 15:31:15 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2022-08-04 13:28:04 -0600 |
commit | cb275538dbddfbb3c2c372a665ac48e6f617ea33 (patch) | |
tree | 7bc54ff4fc92c9b1cee74c2d7b9ae452b5ffec8b /gdb/m2-lang.c | |
parent | 8b1540430107b0752485ab9e6a841dbbacd45681 (diff) | |
download | fsf-binutils-gdb-cb275538dbddfbb3c2c372a665ac48e6f617ea33.zip fsf-binutils-gdb-cb275538dbddfbb3c2c372a665ac48e6f617ea33.tar.gz fsf-binutils-gdb-cb275538dbddfbb3c2c372a665ac48e6f617ea33.tar.bz2 |
Use registry in gdbarch
gdbarch implements its own registry-like approach. This patch changes
it to instead use registry.h. It's a rather large patch but largely
uninteresting -- it's mostly a straightforward conversion from the old
approach to the new one.
The main benefit of this change is that it introduces type safety to
the gdbarch registry. It also removes a bunch of code.
One possible drawback is that, previously, the gdbarch registry
differentiated between pre- and post-initialization setup. This
doesn't seem very important to me, though.
Diffstat (limited to 'gdb/m2-lang.c')
-rw-r--r-- | gdb/m2-lang.c | 24 |
1 files changed, 10 insertions, 14 deletions
diff --git a/gdb/m2-lang.c b/gdb/m2-lang.c index 17b21af..6a243bd 100644 --- a/gdb/m2-lang.c +++ b/gdb/m2-lang.c @@ -275,11 +275,10 @@ m2_language::emitchar (int ch, struct type *chtype, /* Called during architecture gdbarch initialisation to create language specific types. */ -static void * +static struct builtin_m2_type * build_m2_types (struct gdbarch *gdbarch) { - struct builtin_m2_type *builtin_m2_type - = GDBARCH_OBSTACK_ZALLOC (gdbarch, struct builtin_m2_type); + struct builtin_m2_type *builtin_m2_type = new struct builtin_m2_type; /* Modula-2 "pervasive" types. NOTE: these can be redefined!!! */ builtin_m2_type->builtin_int @@ -297,20 +296,17 @@ build_m2_types (struct gdbarch *gdbarch) return builtin_m2_type; } -static struct gdbarch_data *m2_type_data; +static const registry<gdbarch>::key<struct builtin_m2_type> m2_type_data; const struct builtin_m2_type * builtin_m2_type (struct gdbarch *gdbarch) { - return (const struct builtin_m2_type *) gdbarch_data (gdbarch, m2_type_data); -} - - -/* Initialization for Modula-2 */ + struct builtin_m2_type *result = m2_type_data.get (gdbarch); + if (result == nullptr) + { + result = build_m2_types (gdbarch); + m2_type_data.set (gdbarch, result); + } -void _initialize_m2_language (); -void -_initialize_m2_language () -{ - m2_type_data = gdbarch_data_register_post_init (build_m2_types); + return result; } |