]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
Refine search in cp_search_static_and_baseclasses
authorTom Tromey <tom@tromey.com>
Tue, 19 Sep 2023 23:51:36 +0000 (17:51 -0600)
committerTom Tromey <tom@tromey.com>
Sun, 28 Jan 2024 17:58:17 +0000 (10:58 -0700)
This changes cp_search_static_and_baseclasses to only search for
types, functions, and modules.  The latter two cases were discovered
by regression testing.  I found it somewhat surprising the Fortran
name lookup ends up in this code, but did not attempt to change this.

gdb/cp-namespace.c

index 593340af3506afdfbe1ca1a79af3ecfe8490a184..41ab52de54a4ccb5cc70b04662c0d47d67e2fb14 100644 (file)
@@ -268,14 +268,19 @@ cp_search_static_and_baseclasses (const char *name,
   const char *nested = name + prefix_len + 2;
 
   /* Lookup the scope symbol.  If none is found, there is nothing more
-     that can be done.  SCOPE could be a namespace, so always look in
-     VAR_DOMAIN.  This works for classes too because of
-     symbol_matches_domain (which should be replaced with something
-     else, but it's what we have today).  */
-  block_symbol scope_sym = lookup_symbol_in_static_block (scope.c_str (),
-                                                         block, SEARCH_VFT);
+     that can be done.  SCOPE could be a namespace, a class, or even a
+     function.  This code is also used by Fortran, so modules are
+     included in the search as well.  */
+  block_symbol scope_sym
+    = lookup_symbol_in_static_block (scope.c_str (), block,
+                                    SEARCH_TYPE_DOMAIN
+                                    | SEARCH_FUNCTION_DOMAIN
+                                    | SEARCH_MODULE_DOMAIN);
   if (scope_sym.symbol == NULL)
-    scope_sym = lookup_global_symbol (scope.c_str (), block, SEARCH_VFT);
+    scope_sym = lookup_global_symbol (scope.c_str (), block,
+                                     SEARCH_TYPE_DOMAIN
+                                     | SEARCH_FUNCTION_DOMAIN
+                                     | SEARCH_MODULE_DOMAIN);
   if (scope_sym.symbol == NULL)
     return {};