gdb: rename lm_info_base to lm_info
authorSimon Marchi <simon.marchi@efficios.com>
Mon, 2 Oct 2023 19:57:46 +0000 (15:57 -0400)
committerSimon Marchi <simon.marchi@efficios.com>
Thu, 19 Oct 2023 14:57:51 +0000 (10:57 -0400)
The base class doesn't need to have "_base" in its name, all the
sub-classes have a specific suffix.

Change-Id: I87652105cfedd87898770a81f0eda343ff7f2bdb
Approved-By: Pedro Alves <pedro@palves.net>
Reviewed-By: Reviewed-By: Lancelot Six <lancelot.six@amd.com>
gdb/solib-aix.c
gdb/solib-darwin.c
gdb/solib-dsbt.c
gdb/solib-frv.c
gdb/solib-svr4.h
gdb/solib-target.c
gdb/solist.h

index 515d9d62704a87c72db6bca3c7c3c4ee3d8cd4c9..7e7333e20dd11011a05815d617fe7173ccbbe145 100644 (file)
@@ -28,7 +28,7 @@
 
 /* Our private data in struct so_list.  */
 
-struct lm_info_aix : public lm_info_base
+struct lm_info_aix : public lm_info
 {
   /* The name of the file mapped by the loader.  Apart from the entry
      for the main executable, this is usually a shared library (which,
index 0d58991b56039b34f7ae1dc9fe28ebeedfb94c5c..aebcf81fe4f4c7318994d4cee57d4ea447c53f2f 100644 (file)
@@ -135,7 +135,7 @@ darwin_load_image_infos (struct darwin_info *info)
 
 /* Link map info to include in an allocated so_list entry.  */
 
-struct lm_info_darwin : public lm_info_base
+struct lm_info_darwin : public lm_info
 {
   /* The target location of lm.  */
   CORE_ADDR lm_addr = 0;
index bd60c6ff83c8f8b752ffbc00c2a0faa0b2e1cc67..8de2360add66187e1e2efe02c0c72d906b692158 100644 (file)
@@ -123,7 +123,7 @@ struct dbst_ext_link_map
 
 /* Link map info to include in an allocated so_list entry */
 
-struct lm_info_dsbt : public lm_info_base
+struct lm_info_dsbt : public lm_info
 {
   ~lm_info_dsbt ()
   {
index f823aca57fa001300c24544c67d88d4e2aa7ee6e..caf8a9a87701698fa984d7dc073e367417e77735 100644 (file)
@@ -196,7 +196,7 @@ struct ext_link_map
 
 /* Link map info to include in an allocated so_list entry.  */
 
-struct lm_info_frv : public lm_info_base
+struct lm_info_frv : public lm_info
 {
   ~lm_info_frv ()
   {
index ff15603476ed45d5491a5bd3040ccfdddf05c2a0..050c702f620b1d71a26e35586fcfabc86ab7936e 100644 (file)
@@ -29,7 +29,7 @@ extern const struct target_so_ops svr4_so_ops;
 
 /* Link map info to include in an allocated so_list entry.  */
 
-struct lm_info_svr4 : public lm_info_base
+struct lm_info_svr4 : public lm_info
 {
   /* Amount by which addresses in the binary should be relocated to
      match the inferior.  The direct inferior value is L_ADDR_INFERIOR.
index d2459b5dc81bcdf1b85eea5418e557d95492a90b..8e6a440c46737be0f817719c1263773a6d26858b 100644 (file)
@@ -28,7 +28,7 @@
 #include "inferior.h"
 
 /* Private data for each loaded library.  */
-struct lm_info_target : public lm_info_base
+struct lm_info_target : public lm_info
 {
   /* The library's name.  The name is normally kept in the struct
      so_list; it is only here during XML parsing.  */
index 8b80ed4a6cc7a7964bda7e19ad3a43e1af416d92..51b1ceb0398eeb7ac0c3e78a5d9f4b1ac3f2578a 100644 (file)
@@ -27,7 +27,7 @@
 
 /* Base class for target-specific link map information.  */
 
-struct lm_info_base
+struct lm_info
 {
 };
 
@@ -43,7 +43,7 @@ struct so_list
      will be a copy of struct link_map from the user process, but
      it need not be; it can be any collection of data needed to
      traverse the dynamic linker's data structures.  */
-  lm_info_base *lm_info = nullptr;
+  struct lm_info *lm_info = nullptr;
 
   /* Shared object file name, exactly as it appears in the
      inferior's link map.  This may be a relative path, or something