Rename lookup_symbol_static to lookup_symbol_in_static_block,
authorDoug Evans <xdje42@gmail.com>
Fri, 7 Nov 2014 06:56:46 +0000 (22:56 -0800)
committerDoug Evans <xdje42@gmail.com>
Fri, 7 Nov 2014 06:56:46 +0000 (22:56 -0800)
and lookup_static_symbol_aux to lookup_static_symbol.

gdb/ChangeLog:

* symtab.c (lookup_static_symbol): Renamed from
lookup_static_symbol_aux.  All callers updated.
(lookup_symbol_in_static_block): Renamed from lookup_symbol_static.
All callers updated.

gdb/ChangeLog
gdb/cp-namespace.c
gdb/d-exp.y
gdb/symtab.c
gdb/symtab.h
gdb/valops.c

index d6125d71c3d4dcdcc2075f425830dd157532ac95..f31e43a3d4a64e2438e34d83d8689b4ffb11b3c0 100644 (file)
@@ -1,3 +1,10 @@
+2014-11-06  Doug Evans  <xdje42@gmail.com>
+
+       * symtab.c (lookup_static_symbol): Renamed from
+       lookup_static_symbol_aux.  All callers updated.
+       (lookup_symbol_in_static_block): Renamed from lookup_symbol_static.
+       All callers updated.
+
 2014-11-06  Doug Evans  <xdje42@gmail.com>
 
        * block.h (ALL_BLOCK_SYMBOLS_WITH_NAME): New macro.
index c6e1102e0bde6629ba9a9c3d42f18375922d827b..76ffee231d9a24e5ac2b9aab87b076d48a93fb9b 100644 (file)
@@ -615,7 +615,7 @@ lookup_symbol_file (const char *name,
 {
   struct symbol *sym = NULL;
 
-  sym = lookup_symbol_static (name, block, domain);
+  sym = lookup_symbol_in_static_block (name, block, domain);
   if (sym != NULL)
     return sym;
 
@@ -771,14 +771,15 @@ find_symbol_in_baseclass (struct type *parent_type, const char *name,
       len = strlen (base_name) + 2 + strlen (name) + 1;
       concatenated_name = xrealloc (concatenated_name, len);
       xsnprintf (concatenated_name, len, "%s::%s", base_name, name);
-      sym = lookup_symbol_static (concatenated_name, block, VAR_DOMAIN);
+      sym = lookup_symbol_in_static_block (concatenated_name, block,
+                                          VAR_DOMAIN);
       if (sym != NULL)
        break;
 
       /* Nope.  We now have to search all static blocks in all objfiles,
         even if block != NULL, because there's no guarantees as to which
         symtab the symbol we want is in.  */
-      sym = lookup_static_symbol_aux (concatenated_name, VAR_DOMAIN);
+      sym = lookup_static_symbol (concatenated_name, VAR_DOMAIN);
       if (sym != NULL)
        break;
 
@@ -849,7 +850,7 @@ cp_lookup_nested_symbol (struct type *parent_type,
        concatenated_name = alloca (size);
        xsnprintf (concatenated_name, size, "%s::%s",
                 parent_name, nested_name);
-       sym = lookup_static_symbol_aux (concatenated_name, VAR_DOMAIN);
+       sym = lookup_static_symbol (concatenated_name, VAR_DOMAIN);
        if (sym != NULL)
          return sym;
 
index 62348b1eb54d04d28d09e2219275b1a50faf036e..e0df9bc479b42bdffa02858c1aadd455b478a441 100644 (file)
@@ -1179,8 +1179,8 @@ push_module_name (struct parser_state *ps, struct type *module,
       char *copy;
 
       copy = copy_name (name);
-      sym = lookup_symbol_static (copy, expression_context_block,
-                                 VAR_DOMAIN);
+      sym = lookup_symbol_in_static_block (copy, expression_context_block,
+                                          VAR_DOMAIN);
       if (sym != NULL)
        sym = lookup_symbol_global (copy, expression_context_block,
                                    VAR_DOMAIN);
index 9add71fdc760cf15738b1d51a7411785dc2d9aa8..f6c307995ee50921a9b9c3dddc97c24b4e1c8b99 100644 (file)
@@ -1471,13 +1471,13 @@ lookup_symbol_aux (const char *name, const struct block *block,
   /* Now search all static file-level symbols.  Not strictly correct,
      but more useful than an error.  */
 
-  return lookup_static_symbol_aux (name, domain);
+  return lookup_static_symbol (name, domain);
 }
 
 /* See symtab.h.  */
 
 struct symbol *
-lookup_static_symbol_aux (const char *name, const domain_enum domain)
+lookup_static_symbol (const char *name, const domain_enum domain)
 {
   struct objfile *objfile;
   struct symbol *sym;
@@ -1791,7 +1791,7 @@ basic_lookup_symbol_nonlocal (const char *name,
      than that one, so I don't think we should worry about that for
      now.  */
 
-  sym = lookup_symbol_static (name, block, domain);
+  sym = lookup_symbol_in_static_block (name, block, domain);
   if (sym != NULL)
     return sym;
 
@@ -1801,9 +1801,9 @@ basic_lookup_symbol_nonlocal (const char *name,
 /* See symtab.h.  */
 
 struct symbol *
-lookup_symbol_static (const char *name,
-                     const struct block *block,
-                     const domain_enum domain)
+lookup_symbol_in_static_block (const char *name,
+                              const struct block *block,
+                              const domain_enum domain)
 {
   const struct block *static_block = block_static_block (block);
 
index 7fa42a68e862e84413ff8253f341dbe84e6752bf..1d9525863096d1c91796778decacdce4046df507 100644 (file)
@@ -1092,9 +1092,9 @@ extern struct symbol *basic_lookup_symbol_nonlocal (const char *,
    Upon success sets BLOCK_FOUND and fixes up the symbol's section
    if necessary.  */
 
-extern struct symbol *lookup_symbol_static (const char *name,
-                                           const struct block *block,
-                                           const domain_enum domain);
+extern struct symbol *lookup_symbol_in_static_block (const char *name,
+                                                    const struct block *block,
+                                                    const domain_enum domain);
 
 /* Lookup a symbol in all files' global blocks.
    Upon success sets BLOCK_FOUND and fixes up the symbol's section
@@ -1122,8 +1122,8 @@ extern struct symbol *lookup_language_this (const struct language_defn *lang,
    Upon success sets BLOCK_FOUND and fixes up the symbol's section
    if necessary.  */
 
-extern struct symbol *lookup_static_symbol_aux (const char *name,
-                                               const domain_enum domain);
+extern struct symbol *lookup_static_symbol (const char *name,
+                                           const domain_enum domain);
 
 /* Lookup a [struct, union, enum] by name, within a specified block.  */
 
index 4b84eba886d9f04afb930fb2f35060ffc5fecb92..2a1db904238b656b70e97266ea52bf7b1132dce9 100644 (file)
@@ -3576,7 +3576,7 @@ value_maybe_namespace_elt (const struct type *curtype,
                                        + strlen (name) + 1);
 
       sprintf (concatenated_name, "%s::%s", namespace_name, name);
-      sym = lookup_static_symbol_aux (concatenated_name, VAR_DOMAIN);
+      sym = lookup_static_symbol (concatenated_name, VAR_DOMAIN);
     }
 
   if (sym == NULL)
This page took 0.03675 seconds and 4 git commands to generate.