Update release README with new version numbers
[binutils-gdb.git] / gdb / symfile-debug.c
blob2af044334446571f9b55701d91dc58f19dfc54e8
1 /* Debug logging for the symbol file functions for the GNU debugger, GDB.
3 Copyright (C) 2013-2022 Free Software Foundation, Inc.
5 Contributed by Cygnus Support, using pieces from other GDB modules.
7 This file is part of GDB.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
22 /* Note: Be careful with functions that can throw errors.
23 We want to see a logging message regardless of whether an error was thrown.
24 This typically means printing a message before calling the real function
25 and then if the function returns a result printing a message after it
26 returns. */
28 #include "defs.h"
29 #include "gdbcmd.h"
30 #include "objfiles.h"
31 #include "observable.h"
32 #include "source.h"
33 #include "symtab.h"
34 #include "symfile.h"
35 #include "block.h"
36 #include "filenames.h"
38 /* We need to save a pointer to the real symbol functions.
39 Plus, the debug versions are malloc'd because we have to NULL out the
40 ones that are NULL in the real copy. */
42 struct debug_sym_fns_data
44 const struct sym_fns *real_sf = nullptr;
45 struct sym_fns debug_sf {};
48 /* We need to record a pointer to the real set of functions for each
49 objfile. */
50 static const struct objfile_key<debug_sym_fns_data>
51 symfile_debug_objfile_data_key;
53 /* If true all calls to the symfile functions are logged. */
54 static bool debug_symfile = false;
56 /* Return non-zero if symfile debug logging is installed. */
58 static int
59 symfile_debug_installed (struct objfile *objfile)
61 return (objfile->sf != NULL
62 && symfile_debug_objfile_data_key.get (objfile) != NULL);
65 /* Utility return the name to print for SYMTAB. */
67 static const char *
68 debug_symtab_name (struct symtab *symtab)
70 return symtab_to_filename_for_display (symtab);
74 /* See objfiles.h. */
76 bool
77 objfile::has_partial_symbols ()
79 bool retval = false;
81 /* If we have not read psymbols, but we have a function capable of reading
82 them, then that is an indication that they are in fact available. Without
83 this function the symbols may have been already read in but they also may
84 not be present in this objfile. */
85 for (const auto &iter : qf)
87 if ((flags & OBJF_PSYMTABS_READ) == 0
88 && iter->can_lazily_read_symbols ())
89 retval = true;
90 else
91 retval = iter->has_symbols (this);
92 if (retval)
93 break;
96 if (debug_symfile)
97 gdb_printf (gdb_stdlog, "qf->has_symbols (%s) = %d\n",
98 objfile_debug_name (this), retval);
100 return retval;
103 /* See objfiles.h. */
104 bool
105 objfile::has_unexpanded_symtabs ()
107 if (debug_symfile)
108 gdb_printf (gdb_stdlog, "qf->has_unexpanded_symtabs (%s)\n",
109 objfile_debug_name (this));
111 bool result = false;
112 for (const auto &iter : qf_require_partial_symbols ())
114 if (iter->has_unexpanded_symtabs (this))
116 result = true;
117 break;
121 if (debug_symfile)
122 gdb_printf (gdb_stdlog, "qf->has_unexpanded_symtabs (%s) = %d\n",
123 objfile_debug_name (this), (result ? 1 : 0));
125 return result;
128 struct symtab *
129 objfile::find_last_source_symtab ()
131 struct symtab *retval = nullptr;
133 if (debug_symfile)
134 gdb_printf (gdb_stdlog, "qf->find_last_source_symtab (%s)\n",
135 objfile_debug_name (this));
137 for (const auto &iter : qf_require_partial_symbols ())
139 retval = iter->find_last_source_symtab (this);
140 if (retval != nullptr)
141 break;
144 if (debug_symfile)
145 gdb_printf (gdb_stdlog, "qf->find_last_source_symtab (...) = %s\n",
146 retval ? debug_symtab_name (retval) : "NULL");
148 return retval;
151 void
152 objfile::forget_cached_source_info ()
154 if (debug_symfile)
155 gdb_printf (gdb_stdlog, "qf->forget_cached_source_info (%s)\n",
156 objfile_debug_name (this));
158 for (const auto &iter : qf_require_partial_symbols ())
159 iter->forget_cached_source_info (this);
162 bool
163 objfile::map_symtabs_matching_filename
164 (const char *name, const char *real_path,
165 gdb::function_view<bool (symtab *)> callback)
167 if (debug_symfile)
168 gdb_printf (gdb_stdlog,
169 "qf->map_symtabs_matching_filename (%s, \"%s\", "
170 "\"%s\", %s)\n",
171 objfile_debug_name (this), name,
172 real_path ? real_path : NULL,
173 host_address_to_string (&callback));
175 bool retval = true;
176 const char *name_basename = lbasename (name);
178 auto match_one_filename = [&] (const char *filename, bool basenames)
180 if (compare_filenames_for_search (filename, name))
181 return true;
182 if (basenames && FILENAME_CMP (name_basename, filename) == 0)
183 return true;
184 if (real_path != nullptr && IS_ABSOLUTE_PATH (filename)
185 && IS_ABSOLUTE_PATH (real_path))
186 return filename_cmp (filename, real_path) == 0;
187 return false;
190 compunit_symtab *last_made = this->compunit_symtabs;
192 auto on_expansion = [&] (compunit_symtab *symtab)
194 /* The callback to iterate_over_some_symtabs returns false to keep
195 going and true to continue, so we have to invert the result
196 here, for expand_symtabs_matching. */
197 bool result = !iterate_over_some_symtabs (name, real_path,
198 this->compunit_symtabs,
199 last_made,
200 callback);
201 last_made = this->compunit_symtabs;
202 return result;
205 for (const auto &iter : qf_require_partial_symbols ())
207 if (!iter->expand_symtabs_matching (this,
208 match_one_filename,
209 nullptr,
210 nullptr,
211 on_expansion,
212 (SEARCH_GLOBAL_BLOCK
213 | SEARCH_STATIC_BLOCK),
214 UNDEF_DOMAIN,
215 ALL_DOMAIN))
217 retval = false;
218 break;
222 if (debug_symfile)
223 gdb_printf (gdb_stdlog,
224 "qf->map_symtabs_matching_filename (...) = %d\n",
225 retval);
227 /* We must re-invert the return value here to match the caller's
228 expectations. */
229 return !retval;
232 struct compunit_symtab *
233 objfile::lookup_symbol (block_enum kind, const char *name, domain_enum domain)
235 struct compunit_symtab *retval = nullptr;
237 if (debug_symfile)
238 gdb_printf (gdb_stdlog,
239 "qf->lookup_symbol (%s, %d, \"%s\", %s)\n",
240 objfile_debug_name (this), kind, name,
241 domain_name (domain));
243 lookup_name_info lookup_name (name, symbol_name_match_type::FULL);
245 auto search_one_symtab = [&] (compunit_symtab *stab)
247 struct symbol *sym, *with_opaque = NULL;
248 const struct blockvector *bv = stab->blockvector ();
249 const struct block *block = bv->block (kind);
251 sym = block_find_symbol (block, name, domain,
252 block_find_non_opaque_type_preferred,
253 &with_opaque);
255 /* Some caution must be observed with overloaded functions
256 and methods, since the index will not contain any overload
257 information (but NAME might contain it). */
259 if (sym != NULL
260 && symbol_matches_search_name (sym, lookup_name))
262 retval = stab;
263 /* Found it. */
264 return false;
266 if (with_opaque != NULL
267 && symbol_matches_search_name (with_opaque, lookup_name))
268 retval = stab;
270 /* Keep looking through other psymtabs. */
271 return true;
274 for (const auto &iter : qf_require_partial_symbols ())
276 if (!iter->expand_symtabs_matching (this,
277 nullptr,
278 &lookup_name,
279 nullptr,
280 search_one_symtab,
281 kind == GLOBAL_BLOCK
282 ? SEARCH_GLOBAL_BLOCK
283 : SEARCH_STATIC_BLOCK,
284 domain,
285 ALL_DOMAIN))
286 break;
289 if (debug_symfile)
290 gdb_printf (gdb_stdlog, "qf->lookup_symbol (...) = %s\n",
291 retval
292 ? debug_symtab_name (retval->primary_filetab ())
293 : "NULL");
295 return retval;
298 void
299 objfile::print_stats (bool print_bcache)
301 if (debug_symfile)
302 gdb_printf (gdb_stdlog, "qf->print_stats (%s, %d)\n",
303 objfile_debug_name (this), print_bcache);
305 for (const auto &iter : qf_require_partial_symbols ())
306 iter->print_stats (this, print_bcache);
309 void
310 objfile::dump ()
312 if (debug_symfile)
313 gdb_printf (gdb_stdlog, "qf->dump (%s)\n",
314 objfile_debug_name (this));
316 for (const auto &iter : qf)
317 iter->dump (this);
320 void
321 objfile::expand_symtabs_for_function (const char *func_name)
323 if (debug_symfile)
324 gdb_printf (gdb_stdlog,
325 "qf->expand_symtabs_for_function (%s, \"%s\")\n",
326 objfile_debug_name (this), func_name);
328 lookup_name_info base_lookup (func_name, symbol_name_match_type::FULL);
329 lookup_name_info lookup_name = base_lookup.make_ignore_params ();
331 for (const auto &iter : qf_require_partial_symbols ())
332 iter->expand_symtabs_matching (this,
333 nullptr,
334 &lookup_name,
335 nullptr,
336 nullptr,
337 (SEARCH_GLOBAL_BLOCK
338 | SEARCH_STATIC_BLOCK),
339 VAR_DOMAIN,
340 ALL_DOMAIN);
343 void
344 objfile::expand_all_symtabs ()
346 if (debug_symfile)
347 gdb_printf (gdb_stdlog, "qf->expand_all_symtabs (%s)\n",
348 objfile_debug_name (this));
350 for (const auto &iter : qf_require_partial_symbols ())
351 iter->expand_all_symtabs (this);
354 void
355 objfile::expand_symtabs_with_fullname (const char *fullname)
357 if (debug_symfile)
358 gdb_printf (gdb_stdlog,
359 "qf->expand_symtabs_with_fullname (%s, \"%s\")\n",
360 objfile_debug_name (this), fullname);
362 const char *basename = lbasename (fullname);
363 auto file_matcher = [&] (const char *filename, bool basenames)
365 return filename_cmp (basenames ? basename : fullname, filename) == 0;
368 for (const auto &iter : qf_require_partial_symbols ())
369 iter->expand_symtabs_matching (this,
370 file_matcher,
371 nullptr,
372 nullptr,
373 nullptr,
374 (SEARCH_GLOBAL_BLOCK
375 | SEARCH_STATIC_BLOCK),
376 UNDEF_DOMAIN,
377 ALL_DOMAIN);
380 void
381 objfile::expand_matching_symbols
382 (const lookup_name_info &name, domain_enum domain,
383 int global,
384 symbol_compare_ftype *ordered_compare)
386 if (debug_symfile)
387 gdb_printf (gdb_stdlog,
388 "qf->expand_matching_symbols (%s, %s, %d, %s)\n",
389 objfile_debug_name (this),
390 domain_name (domain), global,
391 host_address_to_string (ordered_compare));
393 for (const auto &iter : qf_require_partial_symbols ())
394 iter->expand_matching_symbols (this, name, domain, global,
395 ordered_compare);
398 bool
399 objfile::expand_symtabs_matching
400 (gdb::function_view<expand_symtabs_file_matcher_ftype> file_matcher,
401 const lookup_name_info *lookup_name,
402 gdb::function_view<expand_symtabs_symbol_matcher_ftype> symbol_matcher,
403 gdb::function_view<expand_symtabs_exp_notify_ftype> expansion_notify,
404 block_search_flags search_flags,
405 domain_enum domain,
406 enum search_domain kind)
408 /* This invariant is documented in quick-functions.h. */
409 gdb_assert (lookup_name != nullptr || symbol_matcher == nullptr);
411 if (debug_symfile)
412 gdb_printf (gdb_stdlog,
413 "qf->expand_symtabs_matching (%s, %s, %s, %s, %s)\n",
414 objfile_debug_name (this),
415 host_address_to_string (&file_matcher),
416 host_address_to_string (&symbol_matcher),
417 host_address_to_string (&expansion_notify),
418 search_domain_name (kind));
420 for (const auto &iter : qf_require_partial_symbols ())
421 if (!iter->expand_symtabs_matching (this, file_matcher, lookup_name,
422 symbol_matcher, expansion_notify,
423 search_flags, domain, kind))
424 return false;
425 return true;
428 struct compunit_symtab *
429 objfile::find_pc_sect_compunit_symtab (struct bound_minimal_symbol msymbol,
430 CORE_ADDR pc,
431 struct obj_section *section,
432 int warn_if_readin)
434 struct compunit_symtab *retval = nullptr;
436 if (debug_symfile)
437 gdb_printf (gdb_stdlog,
438 "qf->find_pc_sect_compunit_symtab (%s, %s, %s, %s, %d)\n",
439 objfile_debug_name (this),
440 host_address_to_string (msymbol.minsym),
441 hex_string (pc),
442 host_address_to_string (section),
443 warn_if_readin);
445 for (const auto &iter : qf_require_partial_symbols ())
447 retval = iter->find_pc_sect_compunit_symtab (this, msymbol, pc, section,
448 warn_if_readin);
449 if (retval != nullptr)
450 break;
453 if (debug_symfile)
454 gdb_printf (gdb_stdlog,
455 "qf->find_pc_sect_compunit_symtab (...) = %s\n",
456 retval
457 ? debug_symtab_name (retval->primary_filetab ())
458 : "NULL");
460 return retval;
463 void
464 objfile::map_symbol_filenames (gdb::function_view<symbol_filename_ftype> fun,
465 bool need_fullname)
467 if (debug_symfile)
468 gdb_printf (gdb_stdlog,
469 "qf->map_symbol_filenames (%s, ..., %d)\n",
470 objfile_debug_name (this),
471 need_fullname);
473 for (const auto &iter : qf_require_partial_symbols ())
474 iter->map_symbol_filenames (this, fun, need_fullname);
477 struct compunit_symtab *
478 objfile::find_compunit_symtab_by_address (CORE_ADDR address)
480 if (debug_symfile)
481 gdb_printf (gdb_stdlog,
482 "qf->find_compunit_symtab_by_address (%s, %s)\n",
483 objfile_debug_name (this),
484 hex_string (address));
486 struct compunit_symtab *result = NULL;
487 for (const auto &iter : qf_require_partial_symbols ())
489 result = iter->find_compunit_symtab_by_address (this, address);
490 if (result != nullptr)
491 break;
494 if (debug_symfile)
495 gdb_printf (gdb_stdlog,
496 "qf->find_compunit_symtab_by_address (...) = %s\n",
497 result
498 ? debug_symtab_name (result->primary_filetab ())
499 : "NULL");
501 return result;
504 enum language
505 objfile::lookup_global_symbol_language (const char *name,
506 domain_enum domain,
507 bool *symbol_found_p)
509 enum language result = language_unknown;
510 *symbol_found_p = false;
512 for (const auto &iter : qf_require_partial_symbols ())
514 result = iter->lookup_global_symbol_language (this, name, domain,
515 symbol_found_p);
516 if (*symbol_found_p)
517 break;
520 return result;
523 void
524 objfile::require_partial_symbols (bool verbose)
526 if ((flags & OBJF_PSYMTABS_READ) == 0)
528 flags |= OBJF_PSYMTABS_READ;
530 bool printed = false;
531 for (const auto &iter : qf)
533 if (iter->can_lazily_read_symbols ())
535 if (verbose && !printed)
537 gdb_printf (_("Reading symbols from %s...\n"),
538 objfile_name (this));
539 printed = true;
541 iter->read_partial_symbols (this);
544 if (printed && !objfile_has_symbols (this))
545 gdb_printf (_("(No debugging symbols found in %s)\n"),
546 objfile_name (this));
551 /* Debugging version of struct sym_probe_fns. */
553 static const std::vector<std::unique_ptr<probe>> &
554 debug_sym_get_probes (struct objfile *objfile)
556 const struct debug_sym_fns_data *debug_data
557 = symfile_debug_objfile_data_key.get (objfile);
559 const std::vector<std::unique_ptr<probe>> &retval
560 = debug_data->real_sf->sym_probe_fns->sym_get_probes (objfile);
562 gdb_printf (gdb_stdlog,
563 "probes->sym_get_probes (%s) = %s\n",
564 objfile_debug_name (objfile),
565 host_address_to_string (retval.data ()));
567 return retval;
570 static const struct sym_probe_fns debug_sym_probe_fns =
572 debug_sym_get_probes,
575 /* Debugging version of struct sym_fns. */
577 static void
578 debug_sym_new_init (struct objfile *objfile)
580 const struct debug_sym_fns_data *debug_data
581 = symfile_debug_objfile_data_key.get (objfile);
583 gdb_printf (gdb_stdlog, "sf->sym_new_init (%s)\n",
584 objfile_debug_name (objfile));
586 debug_data->real_sf->sym_new_init (objfile);
589 static void
590 debug_sym_init (struct objfile *objfile)
592 const struct debug_sym_fns_data *debug_data
593 = symfile_debug_objfile_data_key.get (objfile);
595 gdb_printf (gdb_stdlog, "sf->sym_init (%s)\n",
596 objfile_debug_name (objfile));
598 debug_data->real_sf->sym_init (objfile);
601 static void
602 debug_sym_read (struct objfile *objfile, symfile_add_flags symfile_flags)
604 const struct debug_sym_fns_data *debug_data
605 = symfile_debug_objfile_data_key.get (objfile);
607 gdb_printf (gdb_stdlog, "sf->sym_read (%s, 0x%x)\n",
608 objfile_debug_name (objfile), (unsigned) symfile_flags);
610 debug_data->real_sf->sym_read (objfile, symfile_flags);
613 static void
614 debug_sym_finish (struct objfile *objfile)
616 const struct debug_sym_fns_data *debug_data
617 = symfile_debug_objfile_data_key.get (objfile);
619 gdb_printf (gdb_stdlog, "sf->sym_finish (%s)\n",
620 objfile_debug_name (objfile));
622 debug_data->real_sf->sym_finish (objfile);
625 static void
626 debug_sym_offsets (struct objfile *objfile,
627 const section_addr_info &info)
629 const struct debug_sym_fns_data *debug_data
630 = symfile_debug_objfile_data_key.get (objfile);
632 gdb_printf (gdb_stdlog, "sf->sym_offsets (%s, %s)\n",
633 objfile_debug_name (objfile),
634 host_address_to_string (&info));
636 debug_data->real_sf->sym_offsets (objfile, info);
639 static symfile_segment_data_up
640 debug_sym_segments (bfd *abfd)
642 /* This API function is annoying, it doesn't take a "this" pointer.
643 Fortunately it is only used in one place where we (re-)lookup the
644 sym_fns table to use. Thus we will never be called. */
645 gdb_assert_not_reached ("debug_sym_segments called");
648 static void
649 debug_sym_read_linetable (struct objfile *objfile)
651 const struct debug_sym_fns_data *debug_data
652 = symfile_debug_objfile_data_key.get (objfile);
654 gdb_printf (gdb_stdlog, "sf->sym_read_linetable (%s)\n",
655 objfile_debug_name (objfile));
657 debug_data->real_sf->sym_read_linetable (objfile);
660 static bfd_byte *
661 debug_sym_relocate (struct objfile *objfile, asection *sectp, bfd_byte *buf)
663 const struct debug_sym_fns_data *debug_data
664 = symfile_debug_objfile_data_key.get (objfile);
665 bfd_byte *retval;
667 retval = debug_data->real_sf->sym_relocate (objfile, sectp, buf);
669 gdb_printf (gdb_stdlog,
670 "sf->sym_relocate (%s, %s, %s) = %s\n",
671 objfile_debug_name (objfile),
672 host_address_to_string (sectp),
673 host_address_to_string (buf),
674 host_address_to_string (retval));
676 return retval;
679 /* Template of debugging version of struct sym_fns.
680 A copy is made, with sym_flavour updated, and a pointer to the real table
681 installed in real_sf, and then a pointer to the copy is installed in the
682 objfile. */
684 static const struct sym_fns debug_sym_fns =
686 debug_sym_new_init,
687 debug_sym_init,
688 debug_sym_read,
689 debug_sym_finish,
690 debug_sym_offsets,
691 debug_sym_segments,
692 debug_sym_read_linetable,
693 debug_sym_relocate,
694 &debug_sym_probe_fns,
697 /* Install the debugging versions of the symfile functions for OBJFILE.
698 Do not call this if the debug versions are already installed. */
700 static void
701 install_symfile_debug_logging (struct objfile *objfile)
703 const struct sym_fns *real_sf;
704 struct debug_sym_fns_data *debug_data;
706 /* The debug versions should not already be installed. */
707 gdb_assert (!symfile_debug_installed (objfile));
709 real_sf = objfile->sf;
711 /* Alas we have to preserve NULL entries in REAL_SF. */
712 debug_data = new struct debug_sym_fns_data;
714 #define COPY_SF_PTR(from, to, name, func) \
715 do { \
716 if ((from)->name) \
717 (to)->debug_sf.name = func; \
718 } while (0)
720 COPY_SF_PTR (real_sf, debug_data, sym_new_init, debug_sym_new_init);
721 COPY_SF_PTR (real_sf, debug_data, sym_init, debug_sym_init);
722 COPY_SF_PTR (real_sf, debug_data, sym_read, debug_sym_read);
723 COPY_SF_PTR (real_sf, debug_data, sym_finish, debug_sym_finish);
724 COPY_SF_PTR (real_sf, debug_data, sym_offsets, debug_sym_offsets);
725 COPY_SF_PTR (real_sf, debug_data, sym_segments, debug_sym_segments);
726 COPY_SF_PTR (real_sf, debug_data, sym_read_linetable,
727 debug_sym_read_linetable);
728 COPY_SF_PTR (real_sf, debug_data, sym_relocate, debug_sym_relocate);
729 if (real_sf->sym_probe_fns)
730 debug_data->debug_sf.sym_probe_fns = &debug_sym_probe_fns;
732 #undef COPY_SF_PTR
734 debug_data->real_sf = real_sf;
735 symfile_debug_objfile_data_key.set (objfile, debug_data);
736 objfile->sf = &debug_data->debug_sf;
739 /* Uninstall the debugging versions of the symfile functions for OBJFILE.
740 Do not call this if the debug versions are not installed. */
742 static void
743 uninstall_symfile_debug_logging (struct objfile *objfile)
745 struct debug_sym_fns_data *debug_data;
747 /* The debug versions should be currently installed. */
748 gdb_assert (symfile_debug_installed (objfile));
750 debug_data = symfile_debug_objfile_data_key.get (objfile);
752 objfile->sf = debug_data->real_sf;
753 symfile_debug_objfile_data_key.clear (objfile);
756 /* Call this function to set OBJFILE->SF.
757 Do not set OBJFILE->SF directly. */
759 void
760 objfile_set_sym_fns (struct objfile *objfile, const struct sym_fns *sf)
762 if (symfile_debug_installed (objfile))
764 gdb_assert (debug_symfile);
765 /* Remove the current one, and reinstall a new one later. */
766 uninstall_symfile_debug_logging (objfile);
769 /* Assume debug logging is disabled. */
770 objfile->sf = sf;
772 /* Turn debug logging on if enabled. */
773 if (debug_symfile)
774 install_symfile_debug_logging (objfile);
777 static void
778 set_debug_symfile (const char *args, int from_tty, struct cmd_list_element *c)
780 for (struct program_space *pspace : program_spaces)
781 for (objfile *objfile : pspace->objfiles ())
783 if (debug_symfile)
785 if (!symfile_debug_installed (objfile))
786 install_symfile_debug_logging (objfile);
788 else
790 if (symfile_debug_installed (objfile))
791 uninstall_symfile_debug_logging (objfile);
796 static void
797 show_debug_symfile (struct ui_file *file, int from_tty,
798 struct cmd_list_element *c, const char *value)
800 gdb_printf (file, _("Symfile debugging is %s.\n"), value);
803 void _initialize_symfile_debug ();
804 void
805 _initialize_symfile_debug ()
807 add_setshow_boolean_cmd ("symfile", no_class, &debug_symfile, _("\
808 Set debugging of the symfile functions."), _("\
809 Show debugging of the symfile functions."), _("\
810 When enabled, all calls to the symfile functions are logged."),
811 set_debug_symfile, show_debug_symfile,
812 &setdebuglist, &showdebuglist);
814 /* Note: We don't need a new-objfile observer because debug logging
815 will be installed when objfile init'n calls objfile_set_sym_fns. */