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:41 -0600 |
commit | a8ad4f3c17727fe2c499a9a8f775ccfe877326ac (patch) | |
tree | 848ea6efadcd795524e4bf124c944cff3aa6eb97 /gdb/objfiles.c | |
parent | 701823751bec1bbf2f1c96463994f894d33d2238 (diff) | |
download | gdb-a8ad4f3c17727fe2c499a9a8f775ccfe877326ac.zip gdb-a8ad4f3c17727fe2c499a9a8f775ccfe877326ac.tar.gz gdb-a8ad4f3c17727fe2c499a9a8f775ccfe877326ac.tar.bz2 |
Change objfile_has_partial_symbols to a method
This changes objfile_has_partial_symbols to be a method on objfile.
There are some other functions that could benefit from this sort of
change, but this was the only one that was relevant to this series.
gdb/ChangeLog
2021-03-20 Tom Tromey <tom@tromey.com>
* symfile.c (read_symbols): Update.
* objfiles.h (struct objfile) <has_partial_symbols>: New method.
(objfile_has_partial_symbols): Don't declare.
* objfiles.c (objfile::has_partial_symbols): Rename from
objfile_has_partial_symbols.
(objfile_has_symbols, have_partial_symbols): Update.
* elfread.c (elf_symfile_read): Update.
* dwarf2/read.c (dwarf2_has_info): Update.
* coffread.c (coff_symfile_read): Update.
Diffstat (limited to 'gdb/objfiles.c')
-rw-r--r-- | gdb/objfiles.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gdb/objfiles.c b/gdb/objfiles.c index 2a513d8..53ca66d 100644 --- a/gdb/objfiles.c +++ b/gdb/objfiles.c @@ -810,23 +810,23 @@ objfile_rebase (struct objfile *objfile, CORE_ADDR slide) breakpoint_re_set (); } -/* Return non-zero if OBJFILE has partial symbols. */ +/* See objfiles.h. */ int -objfile_has_partial_symbols (struct objfile *objfile) +objfile::has_partial_symbols () { - if (!objfile->sf) + if (!sf) return 0; /* If we have not read psymbols, but we have a function capable of reading them, then that is an indication that they are in fact available. Without this function the symbols may have been already read in but they also may not be present in this objfile. */ - if ((objfile->flags & OBJF_PSYMTABS_READ) == 0 - && objfile->sf->sym_read_psymbols != NULL) + if ((flags & OBJF_PSYMTABS_READ) == 0 + && sf->sym_read_psymbols != NULL) return 1; - return objfile->sf->qf->has_symbols (objfile); + return sf->qf->has_symbols (this); } /* Return non-zero if OBJFILE has full symbols. */ @@ -844,7 +844,7 @@ int objfile_has_symbols (struct objfile *objfile) { for (::objfile *o : objfile->separate_debug_objfiles ()) - if (objfile_has_partial_symbols (o) || objfile_has_full_symbols (o)) + if (o->has_partial_symbols () || objfile_has_full_symbols (o)) return 1; return 0; } @@ -859,7 +859,7 @@ have_partial_symbols (void) { for (objfile *ofp : current_program_space->objfiles ()) { - if (objfile_has_partial_symbols (ofp)) + if (ofp->has_partial_symbols ()) return 1; } return 0; |