public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
* [patch +noconst 2/2] Unify lookup_symbol_in_objfile_symtabs
@ 2014-12-03 17:07 Jan Kratochvil
  2014-12-05 18:05 ` Doug Evans
  0 siblings, 1 reply; 3+ messages in thread
From: Jan Kratochvil @ 2014-12-03 17:07 UTC (permalink / raw)
  To: gdb-patches

2014-12-03  Jan Kratochvil  <jan.kratochvil@redhat.com>

	* symtab.c (lookup_symbol_in_objfile_symtabs): New declaration.
	(lookup_global_symbol_from_objfile): Call it.

diff --git a/gdb/symtab.c b/gdb/symtab.c
index 6d50ebe..213bd4e 100644
--- a/gdb/symtab.c
+++ b/gdb/symtab.c
@@ -79,6 +79,11 @@ struct symbol *lookup_local_symbol (const char *name,
 				    const domain_enum domain,
 				    enum language language);
 
+static struct symbol *
+  lookup_symbol_in_objfile_symtabs (struct objfile *objfile,
+				    int block_index, const char *name,
+				    const domain_enum domain);
+
 static
 struct symbol *lookup_symbol_via_quick_fns (struct objfile *objfile,
 					    int block_index,
@@ -1546,24 +1551,12 @@ lookup_global_symbol_from_objfile (struct objfile *main_objfile,
        objfile;
        objfile = objfile_separate_debug_iterate (main_objfile, objfile))
     {
-      struct compunit_symtab *cust;
       struct symbol *sym;
-
-      /* Go through symtabs.  */
-      ALL_OBJFILE_COMPUNITS (objfile, cust)
-	{
-	  const struct blockvector *bv;
-	  const struct block *block;
-
-	  bv = COMPUNIT_BLOCKVECTOR (cust);
-	  block = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
-	  sym = block_lookup_symbol (block, name, domain);
-	  if (sym)
-	    {
-	      block_found = block;
-	      return fixup_symbol_section (sym, objfile);
-	    }
-	}
+      
+      sym = lookup_symbol_in_objfile_symtabs (objfile, GLOBAL_BLOCK, name,
+					      domain);
+      if (sym != NULL)
+	return sym;
 
       sym = lookup_symbol_via_quick_fns (objfile, GLOBAL_BLOCK, name, domain);
       if (sym)

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [patch +noconst 2/2] Unify lookup_symbol_in_objfile_symtabs
  2014-12-03 17:07 [patch +noconst 2/2] Unify lookup_symbol_in_objfile_symtabs Jan Kratochvil
@ 2014-12-05 18:05 ` Doug Evans
  2014-12-05 18:41   ` [commit] " Jan Kratochvil
  0 siblings, 1 reply; 3+ messages in thread
From: Doug Evans @ 2014-12-05 18:05 UTC (permalink / raw)
  To: Jan Kratochvil; +Cc: gdb-patches

Jan Kratochvil <jan.kratochvil@redhat.com> writes:

> 2014-12-03  Jan Kratochvil  <jan.kratochvil@redhat.com>
>
> 	* symtab.c (lookup_symbol_in_objfile_symtabs): New declaration.
> 	(lookup_global_symbol_from_objfile): Call it.
>
> diff --git a/gdb/symtab.c b/gdb/symtab.c
> index 6d50ebe..213bd4e 100644
> --- a/gdb/symtab.c
> +++ b/gdb/symtab.c
> @@ -79,6 +79,11 @@ struct symbol *lookup_local_symbol (const char *name,
>  				    const domain_enum domain,
>  				    enum language language);
>  
> +static struct symbol *
> +  lookup_symbol_in_objfile_symtabs (struct objfile *objfile,
> +				    int block_index, const char *name,
> +				    const domain_enum domain);
> +
>  static
>  struct symbol *lookup_symbol_via_quick_fns (struct objfile *objfile,
>  					    int block_index,
> @@ -1546,24 +1551,12 @@ lookup_global_symbol_from_objfile (struct objfile *main_objfile,
>         objfile;
>         objfile = objfile_separate_debug_iterate (main_objfile, objfile))
>      {
> -      struct compunit_symtab *cust;
>        struct symbol *sym;
> -
> -      /* Go through symtabs.  */
> -      ALL_OBJFILE_COMPUNITS (objfile, cust)
> -	{
> -	  const struct blockvector *bv;
> -	  const struct block *block;
> -
> -	  bv = COMPUNIT_BLOCKVECTOR (cust);
> -	  block = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
> -	  sym = block_lookup_symbol (block, name, domain);
> -	  if (sym)
> -	    {
> -	      block_found = block;
> -	      return fixup_symbol_section (sym, objfile);
> -	    }
> -	}
> +      
> +      sym = lookup_symbol_in_objfile_symtabs (objfile, GLOBAL_BLOCK, name,
> +					      domain);
> +      if (sym != NULL)
> +	return sym;
>  
>        sym = lookup_symbol_via_quick_fns (objfile, GLOBAL_BLOCK, name, domain);
>        if (sym)

Heh, I meant this version. :-)
[no-const]

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [commit] [patch +noconst 2/2] Unify lookup_symbol_in_objfile_symtabs
  2014-12-05 18:05 ` Doug Evans
@ 2014-12-05 18:41   ` Jan Kratochvil
  0 siblings, 0 replies; 3+ messages in thread
From: Jan Kratochvil @ 2014-12-05 18:41 UTC (permalink / raw)
  To: Doug Evans; +Cc: gdb-patches

On Fri, 05 Dec 2014 19:04:10 +0100, Doug Evans wrote:
> Heh, I meant this version. :-)
> [no-const]

Checked in:
	6c1c7be347154e17a8cf723395bb616d4f3258ed


Thanks,
Jan

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2014-12-05 18:41 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-12-03 17:07 [patch +noconst 2/2] Unify lookup_symbol_in_objfile_symtabs Jan Kratochvil
2014-12-05 18:05 ` Doug Evans
2014-12-05 18:41   ` [commit] " Jan Kratochvil

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).