This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: RFC: bfd_section should not be NULL in call to prim_record_minimal_*


>>>>> "Pedro" == Pedro Alves <palves@redhat.com> writes:

Pedro> [In my mind, symbols ideally wouldn't need back pointers to thei
Pedro> "containers" (symtabs, object files, etc), because that wastes
Pedro> space; the lookup routines instead should bubble up the "container"
Pedro> the symbol was found in if necessary.  But that may be very
Pedro> hard to do.]

I agree, both that this would be preferable and that it might be hard.

In fact, on my current "split objfile" branch
(archer-tromey-multi-inferior-3), I had to break this link --
on the branch, the symbols are not relocated and may be shared
by multiple objfiles.  (I sent a WIP version of this branch to
gdb-patches a while ago.)

I broke the linkage in a somewhat hacky way, though.  The branch is big
enough that I didn't want to also try to fix this problem at the same
time.

Pedro> The "section" and "obj_section" are one of those sources of difference
Pedro> and confusion that it'd be nice to get rid of:

No kidding.  I have often wondered about this myself.

Pedro> OTOH, this stuff is space sensitive, and in the long term,
Pedro> it could prove better to only hold a "short" instead of a
Pedro> pointer (8 bytes on 64-bit hosts).

It seems like we could perhaps use the BFD index everywhere.
This gets into a fair amount of ugly business.

Pedro> Like in the patch below.  When testing it, I ran linespec.exp
Pedro> first, and that revealed that msymbol_objfile had a bug in that
Pedro> it didn't look at all the pspaces, only the current (the test
Pedro> adds a second inferior, therefore a second pspace).  Not good
Pedro> when you want to look up the objfile because you want to know the
Pedro> msyms' pspace to begin with.

This seems odd to me.  And, with the split objfile stuff, it would be
actively wrong, since a given msymbol could appear in multiple pspaces.
Now, normally I wouldn't mention a patch that isn't checked in yet,
but...

I think it would be better to pass the pspace around with the minimal
symbol in linespec.c.  We certainly know it at the time we actually find
the minsym, so it is just a matter of not losing the information.

Ok, I just looked at linespec.c again, and this is why there is an
objfile in minsym_and_objfile.

Here's a totally untested patch based on this idea.

Note that compare_msymbols, while not exactly wrong right now, is
definitely weird in that it makes an assumption about the layout of
minsym_and_objfile.

Tom

diff --git a/gdb/linespec.c b/gdb/linespec.c
index 228214b..7cbf1bf 100644
--- a/gdb/linespec.c
+++ b/gdb/linespec.c
@@ -1899,7 +1899,7 @@ convert_linespec_to_sals (struct linespec_state *state, linespec_p ls)
 	       VEC_iterate (minsym_and_objfile_d, ls->minimal_symbols, i, elem);
 	       ++i)
 	    {
-	      pspace = SYMBOL_OBJ_SECTION (elem->minsym)->objfile->pspace;
+	      pspace = elem->objfile->pspace;
 	      set_current_program_space (pspace);
 	      minsym_found (state, elem->objfile, elem->minsym, &sals);
 	    }
@@ -2584,20 +2584,20 @@ compare_symbols (const void *a, const void *b)
 static int
 compare_msymbols (const void *a, const void *b)
 {
-  struct minimal_symbol * const *sa = a;
-  struct minimal_symbol * const *sb = b;
+  const struct minsym_and_objfile *sa = a;
+  const struct minsym_and_objfile *sb = b;
   uintptr_t uia, uib;
 
-  uia = (uintptr_t) SYMBOL_OBJ_SECTION (*sa)->objfile->pspace;
-  uib = (uintptr_t) SYMBOL_OBJ_SECTION (*sb)->objfile->pspace;
+  uia = (uintptr_t) sa->objfile->pspace;
+  uib = (uintptr_t) sa->objfile->pspace;
 
   if (uia < uib)
     return -1;
   if (uia > uib)
     return 1;
 
-  uia = (uintptr_t) *sa;
-  uib = (uintptr_t) *sb;
+  uia = (uintptr_t) sa->minsym;
+  uib = (uintptr_t) sb->minsym;
 
   if (uia < uib)
     return -1;


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]