Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: Tom Tromey <tom@tromey.com>
To: gdb-patches@sourceware.org
Cc: Tom Tromey <tom@tromey.com>
Subject: [PATCH 2/2] Remove lookup_transparent_type lang hook
Date: Wed, 21 Jan 2026 17:51:12 -0700	[thread overview]
Message-ID: <20260121-cp-remove-junk-v1-2-0999e81d866d@tromey.com> (raw)
In-Reply-To: <20260121-cp-remove-junk-v1-0-0999e81d866d@tromey.com>

C++ was the only user of the lookup_transparent_type lang hook, so it
can be removed entirely.  basic_lookup_transparent_type and its helper
function are renamed as appropriate.
---
 gdb/language.h |  8 --------
 gdb/symtab.c   | 34 +++++++++++-----------------------
 gdb/symtab.h   |  3 ---
 3 files changed, 11 insertions(+), 34 deletions(-)

diff --git a/gdb/language.h b/gdb/language.h
index 50a4c026784..1a6420af74e 100644
--- a/gdb/language.h
+++ b/gdb/language.h
@@ -346,14 +346,6 @@ struct language_defn
   virtual void language_arch_info (struct gdbarch *,
 				   struct language_arch_info *) const = 0;
 
-  /* Find the definition of the type with the given name.  */
-
-  virtual struct type *lookup_transparent_type (const char *name,
-						domain_search_flags flags) const
-  {
-    return basic_lookup_transparent_type (name, flags);
-  }
-
   /* Find all symbols in the current program space matching NAME in
      DOMAIN, according to this language's rules.
 
diff --git a/gdb/symtab.c b/gdb/symtab.c
index 63505a94d41..35e380980b5 100644
--- a/gdb/symtab.c
+++ b/gdb/symtab.c
@@ -2622,22 +2622,14 @@ symbol::matches (domain_search_flags flags) const
   return search_flags_matches (flags, m_domain);
 }
 
-/* See symtab.h.  */
-
-struct type *
-lookup_transparent_type (const char *name, domain_search_flags flags)
-{
-  return current_language->lookup_transparent_type (name, flags);
-}
-
-/* A helper for basic_lookup_transparent_type that interfaces with the
+/* A helper for lookup_transparent_type that interfaces with the
    "quick" symbol table functions.  */
 
 static struct type *
-basic_lookup_transparent_type_quick (struct objfile *objfile,
-				     enum block_enum block_index,
-				     domain_search_flags flags,
-				     const lookup_name_info &name)
+lookup_transparent_type_quick (struct objfile *objfile,
+			       enum block_enum block_index,
+			       domain_search_flags flags,
+			       const lookup_name_info &name)
 {
   struct compunit_symtab *cust;
   const struct blockvector *bv;
@@ -2658,14 +2650,10 @@ basic_lookup_transparent_type_quick (struct objfile *objfile,
   return sym->type ();
 }
 
-/* The standard implementation of lookup_transparent_type.  This code
-   was modeled on lookup_symbol -- the parts not relevant to looking
-   up types were just left out.  In particular it's assumed here that
-   types are available in STRUCT_DOMAIN and only in file-static or
-   global blocks.  */
+/* See symtab.h.  */
 
 struct type *
-basic_lookup_transparent_type (const char *name, domain_search_flags flags)
+lookup_transparent_type (const char *name, domain_search_flags flags)
 {
   struct type *t;
 
@@ -2674,8 +2662,8 @@ basic_lookup_transparent_type (const char *name, domain_search_flags flags)
   /* Search all the global symbols.  */
   for (objfile &objfile : current_program_space->objfiles ())
     {
-      t = basic_lookup_transparent_type_quick (&objfile, GLOBAL_BLOCK,
-					       flags, lookup_name);
+      t = lookup_transparent_type_quick (&objfile, GLOBAL_BLOCK,
+					 flags, lookup_name);
       if (t)
 	return t;
     }
@@ -2684,8 +2672,8 @@ basic_lookup_transparent_type (const char *name, domain_search_flags flags)
      but more useful than an error.  */
   for (objfile &objfile : current_program_space->objfiles ())
     {
-      t = basic_lookup_transparent_type_quick (&objfile, STATIC_BLOCK,
-					       flags, lookup_name);
+      t = lookup_transparent_type_quick (&objfile, STATIC_BLOCK,
+					 flags, lookup_name);
       if (t)
 	return t;
     }
diff --git a/gdb/symtab.h b/gdb/symtab.h
index bd305e5259c..6a1320aabad 100644
--- a/gdb/symtab.h
+++ b/gdb/symtab.h
@@ -2320,9 +2320,6 @@ extern void reread_symbols (int from_tty);
 extern struct type *lookup_transparent_type
     (const char *name, domain_search_flags flags = SEARCH_STRUCT_DOMAIN);
 
-extern struct type *basic_lookup_transparent_type
-     (const char *name, domain_search_flags flags = SEARCH_STRUCT_DOMAIN);
-
 /* Macro for name of symbol to indicate a file compiled with gcc.  */
 #ifndef GCC_COMPILED_FLAG_SYMBOL
 #define GCC_COMPILED_FLAG_SYMBOL "gcc_compiled."

-- 
2.49.0


  parent reply	other threads:[~2026-01-22  0:53 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-01-22  0:51 [PATCH 0/2] Remove cp_lookup_transparent_type Tom Tromey
2026-01-22  0:51 ` [PATCH 1/2] " Tom Tromey
2026-01-22  3:11   ` Simon Marchi
2026-01-22  0:51 ` Tom Tromey [this message]
2026-01-22  3:14   ` [PATCH 2/2] Remove lookup_transparent_type lang hook Simon Marchi

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20260121-cp-remove-junk-v1-2-0999e81d866d@tromey.com \
    --to=tom@tromey.com \
    --cc=gdb-patches@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox