diff options
author | Tom Tromey <tom@tromey.com> | 2021-03-20 17:23:40 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2021-03-20 17:23:42 -0600 |
commit | 75336a5a2aa345953d0a9de73205457b6d9e27c2 (patch) | |
tree | 73e2373cad911b81c529089a73db5b199b26ae05 /gdb/objfiles.c | |
parent | 39298a5d973d5822ed7d09230f67cc83f72a06c2 (diff) | |
download | gdb-75336a5a2aa345953d0a9de73205457b6d9e27c2.zip gdb-75336a5a2aa345953d0a9de73205457b6d9e27c2.tar.gz gdb-75336a5a2aa345953d0a9de73205457b6d9e27c2.tar.bz2 |
Move psymbol_map out of objfile
objfile::psymbol_map is used to implement a Rust feature. It is
currently specific to partial symbols -- it isn't used by the DWARF
indices.
This patch moves it out of objfile and into psymbol_functions, adding
a new method to quick_symbol_functions to handle the clearing case.
This is needed because the map holds unrelocated addresses.
gdb/ChangeLog
2021-03-20 Tom Tromey <tom@tromey.com>
* quick-symbol.h (struct quick_symbol_functions)
<relocated>: New method.
* psymtab.h (struct psymbol_functions) <relocated>: New
method.
<fill_psymbol_map>: Declare method.
<m_psymbol_map>: New member.
* psymtab.c (psymbol_functions::fill_psymbol_map): Rename.
(psymbol_functions::find_compunit_symtab_by_address): Update.
* objfiles.h (reset_psymtabs): Don't clear psymbol_map.
(struct objfile) <psymbol_map>: Remove.
* objfiles.c (objfile_relocate1): Update.
Diffstat (limited to 'gdb/objfiles.c')
-rw-r--r-- | gdb/objfiles.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/objfiles.c b/gdb/objfiles.c index f18f615..bfa5f04 100644 --- a/gdb/objfiles.c +++ b/gdb/objfiles.c @@ -703,9 +703,9 @@ objfile_relocate1 (struct objfile *objfile, } } - /* This stores relocated addresses and so must be cleared. This - will cause it to be recreated on demand. */ - objfile->psymbol_map.clear (); + /* Notify the quick symbol object. */ + if (objfile->qf) + objfile->qf->relocated (); /* Relocate isolated symbols. */ { |