s390: Fix build when using EXEEXT_FOR_BUILD
[binutils-gdb.git] / gdb / symfile.c
blob2bfe36ee6ef31e813f1429e8b86c1c403cf79c33
1 /* Generic symbol file reading for the GNU debugger, GDB.
3 Copyright (C) 1990-2023 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 #include "defs.h"
23 #include "arch-utils.h"
24 #include "bfdlink.h"
25 #include "symtab.h"
26 #include "gdbtypes.h"
27 #include "gdbcore.h"
28 #include "frame.h"
29 #include "target.h"
30 #include "value.h"
31 #include "symfile.h"
32 #include "objfiles.h"
33 #include "source.h"
34 #include "gdbcmd.h"
35 #include "breakpoint.h"
36 #include "language.h"
37 #include "complaints.h"
38 #include "demangle.h"
39 #include "inferior.h"
40 #include "regcache.h"
41 #include "filenames.h"
42 #include "gdbsupport/gdb_obstack.h"
43 #include "completer.h"
44 #include "bcache.h"
45 #include "hashtab.h"
46 #include "readline/tilde.h"
47 #include "block.h"
48 #include "observable.h"
49 #include "exec.h"
50 #include "parser-defs.h"
51 #include "varobj.h"
52 #include "elf-bfd.h"
53 #include "solib.h"
54 #include "remote.h"
55 #include "stack.h"
56 #include "gdb_bfd.h"
57 #include "cli/cli-utils.h"
58 #include "gdbsupport/byte-vector.h"
59 #include "gdbsupport/pathstuff.h"
60 #include "gdbsupport/selftest.h"
61 #include "cli/cli-style.h"
62 #include "gdbsupport/forward-scope-exit.h"
63 #include "gdbsupport/buildargv.h"
65 #include <sys/types.h>
66 #include <fcntl.h>
67 #include <sys/stat.h>
68 #include <ctype.h>
69 #include <chrono>
70 #include <algorithm>
72 int (*deprecated_ui_load_progress_hook) (const char *section,
73 unsigned long num);
74 void (*deprecated_show_load_progress) (const char *section,
75 unsigned long section_sent,
76 unsigned long section_size,
77 unsigned long total_sent,
78 unsigned long total_size);
79 void (*deprecated_pre_add_symbol_hook) (const char *);
80 void (*deprecated_post_add_symbol_hook) (void);
82 using clear_symtab_users_cleanup
83 = FORWARD_SCOPE_EXIT (clear_symtab_users);
85 /* Global variables owned by this file. */
87 /* See symfile.h. */
89 int readnow_symbol_files;
91 /* See symfile.h. */
93 int readnever_symbol_files;
95 /* Functions this file defines. */
97 static void symbol_file_add_main_1 (const char *args, symfile_add_flags add_flags,
98 objfile_flags flags, CORE_ADDR reloff);
100 static const struct sym_fns *find_sym_fns (bfd *);
102 static void overlay_invalidate_all (void);
104 static void simple_free_overlay_table (void);
106 static void read_target_long_array (CORE_ADDR, unsigned int *, int, int,
107 enum bfd_endian);
109 static int simple_read_overlay_table (void);
111 static int simple_overlay_update_1 (struct obj_section *);
113 static void symfile_find_segment_sections (struct objfile *objfile);
115 /* List of all available sym_fns. On gdb startup, each object file reader
116 calls add_symtab_fns() to register information on each format it is
117 prepared to read. */
119 struct registered_sym_fns
121 registered_sym_fns (bfd_flavour sym_flavour_, const struct sym_fns *sym_fns_)
122 : sym_flavour (sym_flavour_), sym_fns (sym_fns_)
125 /* BFD flavour that we handle. */
126 enum bfd_flavour sym_flavour;
128 /* The "vtable" of symbol functions. */
129 const struct sym_fns *sym_fns;
132 static std::vector<registered_sym_fns> symtab_fns;
134 /* Values for "set print symbol-loading". */
136 const char print_symbol_loading_off[] = "off";
137 const char print_symbol_loading_brief[] = "brief";
138 const char print_symbol_loading_full[] = "full";
139 static const char *print_symbol_loading_enums[] =
141 print_symbol_loading_off,
142 print_symbol_loading_brief,
143 print_symbol_loading_full,
144 NULL
146 static const char *print_symbol_loading = print_symbol_loading_full;
148 /* See symfile.h. */
150 bool auto_solib_add = true;
153 /* Return non-zero if symbol-loading messages should be printed.
154 FROM_TTY is the standard from_tty argument to gdb commands.
155 If EXEC is non-zero the messages are for the executable.
156 Otherwise, messages are for shared libraries.
157 If FULL is non-zero then the caller is printing a detailed message.
158 E.g., the message includes the shared library name.
159 Otherwise, the caller is printing a brief "summary" message. */
162 print_symbol_loading_p (int from_tty, int exec, int full)
164 if (!from_tty && !info_verbose)
165 return 0;
167 if (exec)
169 /* We don't check FULL for executables, there are few such
170 messages, therefore brief == full. */
171 return print_symbol_loading != print_symbol_loading_off;
173 if (full)
174 return print_symbol_loading == print_symbol_loading_full;
175 return print_symbol_loading == print_symbol_loading_brief;
178 /* True if we are reading a symbol table. */
180 int currently_reading_symtab = 0;
182 /* Increment currently_reading_symtab and return a cleanup that can be
183 used to decrement it. */
185 scoped_restore_tmpl<int>
186 increment_reading_symtab (void)
188 gdb_assert (currently_reading_symtab >= 0);
189 return make_scoped_restore (&currently_reading_symtab,
190 currently_reading_symtab + 1);
193 /* Remember the lowest-addressed loadable section we've seen.
195 In case of equal vmas, the section with the largest size becomes the
196 lowest-addressed loadable section.
198 If the vmas and sizes are equal, the last section is considered the
199 lowest-addressed loadable section. */
201 static void
202 find_lowest_section (asection *sect, asection **lowest)
204 if (0 == (bfd_section_flags (sect) & (SEC_ALLOC | SEC_LOAD)))
205 return;
206 if (!*lowest)
207 *lowest = sect; /* First loadable section */
208 else if (bfd_section_vma (*lowest) > bfd_section_vma (sect))
209 *lowest = sect; /* A lower loadable section */
210 else if (bfd_section_vma (*lowest) == bfd_section_vma (sect)
211 && (bfd_section_size (*lowest) <= bfd_section_size (sect)))
212 *lowest = sect;
215 /* Build (allocate and populate) a section_addr_info struct from
216 an existing section table. */
218 section_addr_info
219 build_section_addr_info_from_section_table (const std::vector<target_section> &table)
221 section_addr_info sap;
223 for (const target_section &stp : table)
225 struct bfd_section *asect = stp.the_bfd_section;
226 bfd *abfd = asect->owner;
228 if (bfd_section_flags (asect) & (SEC_ALLOC | SEC_LOAD)
229 && sap.size () < table.size ())
230 sap.emplace_back (stp.addr,
231 bfd_section_name (asect),
232 gdb_bfd_section_index (abfd, asect));
235 return sap;
238 /* Create a section_addr_info from section offsets in ABFD. */
240 static section_addr_info
241 build_section_addr_info_from_bfd (bfd *abfd)
243 struct bfd_section *sec;
245 section_addr_info sap;
246 for (sec = abfd->sections; sec != NULL; sec = sec->next)
247 if (bfd_section_flags (sec) & (SEC_ALLOC | SEC_LOAD))
248 sap.emplace_back (bfd_section_vma (sec),
249 bfd_section_name (sec),
250 gdb_bfd_section_index (abfd, sec));
252 return sap;
255 /* Create a section_addr_info from section offsets in OBJFILE. */
257 section_addr_info
258 build_section_addr_info_from_objfile (const struct objfile *objfile)
260 int i;
262 /* Before reread_symbols gets rewritten it is not safe to call:
263 gdb_assert (objfile->num_sections == bfd_count_sections (objfile->obfd));
265 section_addr_info sap
266 = build_section_addr_info_from_bfd (objfile->obfd.get ());
267 for (i = 0; i < sap.size (); i++)
269 int sectindex = sap[i].sectindex;
271 sap[i].addr += objfile->section_offsets[sectindex];
273 return sap;
276 /* Initialize OBJFILE's sect_index_* members. */
278 static void
279 init_objfile_sect_indices (struct objfile *objfile)
281 asection *sect;
282 int i;
284 sect = bfd_get_section_by_name (objfile->obfd.get (), ".text");
285 if (sect)
286 objfile->sect_index_text = sect->index;
288 sect = bfd_get_section_by_name (objfile->obfd.get (), ".data");
289 if (sect)
290 objfile->sect_index_data = sect->index;
292 sect = bfd_get_section_by_name (objfile->obfd.get (), ".bss");
293 if (sect)
294 objfile->sect_index_bss = sect->index;
296 sect = bfd_get_section_by_name (objfile->obfd.get (), ".rodata");
297 if (sect)
298 objfile->sect_index_rodata = sect->index;
300 /* This is where things get really weird... We MUST have valid
301 indices for the various sect_index_* members or gdb will abort.
302 So if for example, there is no ".text" section, we have to
303 accommodate that. First, check for a file with the standard
304 one or two segments. */
306 symfile_find_segment_sections (objfile);
308 /* Except when explicitly adding symbol files at some address,
309 section_offsets contains nothing but zeros, so it doesn't matter
310 which slot in section_offsets the individual sect_index_* members
311 index into. So if they are all zero, it is safe to just point
312 all the currently uninitialized indices to the first slot. But
313 beware: if this is the main executable, it may be relocated
314 later, e.g. by the remote qOffsets packet, and then this will
315 be wrong! That's why we try segments first. */
317 for (i = 0; i < objfile->section_offsets.size (); i++)
319 if (objfile->section_offsets[i] != 0)
321 break;
324 if (i == objfile->section_offsets.size ())
326 if (objfile->sect_index_text == -1)
327 objfile->sect_index_text = 0;
328 if (objfile->sect_index_data == -1)
329 objfile->sect_index_data = 0;
330 if (objfile->sect_index_bss == -1)
331 objfile->sect_index_bss = 0;
332 if (objfile->sect_index_rodata == -1)
333 objfile->sect_index_rodata = 0;
337 /* Find a unique offset to use for loadable section SECT if
338 the user did not provide an offset. */
340 static void
341 place_section (bfd *abfd, asection *sect, section_offsets &offsets,
342 CORE_ADDR &lowest)
344 CORE_ADDR start_addr;
345 int done;
346 ULONGEST align = ((ULONGEST) 1) << bfd_section_alignment (sect);
348 /* We are only interested in allocated sections. */
349 if ((bfd_section_flags (sect) & SEC_ALLOC) == 0)
350 return;
352 /* If the user specified an offset, honor it. */
353 if (offsets[gdb_bfd_section_index (abfd, sect)] != 0)
354 return;
356 /* Otherwise, let's try to find a place for the section. */
357 start_addr = (lowest + align - 1) & -align;
359 do {
360 asection *cur_sec;
362 done = 1;
364 for (cur_sec = abfd->sections; cur_sec != NULL; cur_sec = cur_sec->next)
366 int indx = cur_sec->index;
368 /* We don't need to compare against ourself. */
369 if (cur_sec == sect)
370 continue;
372 /* We can only conflict with allocated sections. */
373 if ((bfd_section_flags (cur_sec) & SEC_ALLOC) == 0)
374 continue;
376 /* If the section offset is 0, either the section has not been placed
377 yet, or it was the lowest section placed (in which case LOWEST
378 will be past its end). */
379 if (offsets[indx] == 0)
380 continue;
382 /* If this section would overlap us, then we must move up. */
383 if (start_addr + bfd_section_size (sect) > offsets[indx]
384 && start_addr < offsets[indx] + bfd_section_size (cur_sec))
386 start_addr = offsets[indx] + bfd_section_size (cur_sec);
387 start_addr = (start_addr + align - 1) & -align;
388 done = 0;
389 break;
392 /* Otherwise, we appear to be OK. So far. */
395 while (!done);
397 offsets[gdb_bfd_section_index (abfd, sect)] = start_addr;
398 lowest = start_addr + bfd_section_size (sect);
401 /* Store section_addr_info as prepared (made relative and with SECTINDEX
402 filled-in) by addr_info_make_relative into SECTION_OFFSETS. */
404 void
405 relative_addr_info_to_section_offsets (section_offsets &section_offsets,
406 const section_addr_info &addrs)
408 int i;
410 section_offsets.assign (section_offsets.size (), 0);
412 /* Now calculate offsets for section that were specified by the caller. */
413 for (i = 0; i < addrs.size (); i++)
415 const struct other_sections *osp;
417 osp = &addrs[i];
418 if (osp->sectindex == -1)
419 continue;
421 /* Record all sections in offsets. */
422 /* The section_offsets in the objfile are here filled in using
423 the BFD index. */
424 section_offsets[osp->sectindex] = osp->addr;
428 /* Transform section name S for a name comparison. prelink can split section
429 `.bss' into two sections `.dynbss' and `.bss' (in this order). Similarly
430 prelink can split `.sbss' into `.sdynbss' and `.sbss'. Use virtual address
431 of the new `.dynbss' (`.sdynbss') section as the adjacent new `.bss'
432 (`.sbss') section has invalid (increased) virtual address. */
434 static const char *
435 addr_section_name (const char *s)
437 if (strcmp (s, ".dynbss") == 0)
438 return ".bss";
439 if (strcmp (s, ".sdynbss") == 0)
440 return ".sbss";
442 return s;
445 /* std::sort comparator for addrs_section_sort. Sort entries in
446 ascending order by their (name, sectindex) pair. sectindex makes
447 the sort by name stable. */
449 static bool
450 addrs_section_compar (const struct other_sections *a,
451 const struct other_sections *b)
453 int retval;
455 retval = strcmp (addr_section_name (a->name.c_str ()),
456 addr_section_name (b->name.c_str ()));
457 if (retval != 0)
458 return retval < 0;
460 return a->sectindex < b->sectindex;
463 /* Provide sorted array of pointers to sections of ADDRS. */
465 static std::vector<const struct other_sections *>
466 addrs_section_sort (const section_addr_info &addrs)
468 int i;
470 std::vector<const struct other_sections *> array (addrs.size ());
471 for (i = 0; i < addrs.size (); i++)
472 array[i] = &addrs[i];
474 std::sort (array.begin (), array.end (), addrs_section_compar);
476 return array;
479 /* Relativize absolute addresses in ADDRS into offsets based on ABFD. Fill-in
480 also SECTINDEXes specific to ABFD there. This function can be used to
481 rebase ADDRS to start referencing different BFD than before. */
483 void
484 addr_info_make_relative (section_addr_info *addrs, bfd *abfd)
486 asection *lower_sect;
487 CORE_ADDR lower_offset;
488 int i;
490 /* Find lowest loadable section to be used as starting point for
491 contiguous sections. */
492 lower_sect = NULL;
493 for (asection *iter : gdb_bfd_sections (abfd))
494 find_lowest_section (iter, &lower_sect);
495 if (lower_sect == NULL)
497 warning (_("no loadable sections found in added symbol-file %s"),
498 bfd_get_filename (abfd));
499 lower_offset = 0;
501 else
502 lower_offset = bfd_section_vma (lower_sect);
504 /* Create ADDRS_TO_ABFD_ADDRS array to map the sections in ADDRS to sections
505 in ABFD. Section names are not unique - there can be multiple sections of
506 the same name. Also the sections of the same name do not have to be
507 adjacent to each other. Some sections may be present only in one of the
508 files. Even sections present in both files do not have to be in the same
509 order.
511 Use stable sort by name for the sections in both files. Then linearly
512 scan both lists matching as most of the entries as possible. */
514 std::vector<const struct other_sections *> addrs_sorted
515 = addrs_section_sort (*addrs);
517 section_addr_info abfd_addrs = build_section_addr_info_from_bfd (abfd);
518 std::vector<const struct other_sections *> abfd_addrs_sorted
519 = addrs_section_sort (abfd_addrs);
521 /* Now create ADDRS_TO_ABFD_ADDRS from ADDRS_SORTED and
522 ABFD_ADDRS_SORTED. */
524 std::vector<const struct other_sections *>
525 addrs_to_abfd_addrs (addrs->size (), nullptr);
527 std::vector<const struct other_sections *>::iterator abfd_sorted_iter
528 = abfd_addrs_sorted.begin ();
529 for (const other_sections *sect : addrs_sorted)
531 const char *sect_name = addr_section_name (sect->name.c_str ());
533 while (abfd_sorted_iter != abfd_addrs_sorted.end ()
534 && strcmp (addr_section_name ((*abfd_sorted_iter)->name.c_str ()),
535 sect_name) < 0)
536 abfd_sorted_iter++;
538 if (abfd_sorted_iter != abfd_addrs_sorted.end ()
539 && strcmp (addr_section_name ((*abfd_sorted_iter)->name.c_str ()),
540 sect_name) == 0)
542 int index_in_addrs;
544 /* Make the found item directly addressable from ADDRS. */
545 index_in_addrs = sect - addrs->data ();
546 gdb_assert (addrs_to_abfd_addrs[index_in_addrs] == NULL);
547 addrs_to_abfd_addrs[index_in_addrs] = *abfd_sorted_iter;
549 /* Never use the same ABFD entry twice. */
550 abfd_sorted_iter++;
554 /* Calculate offsets for the loadable sections.
555 FIXME! Sections must be in order of increasing loadable section
556 so that contiguous sections can use the lower-offset!!!
558 Adjust offsets if the segments are not contiguous.
559 If the section is contiguous, its offset should be set to
560 the offset of the highest loadable section lower than it
561 (the loadable section directly below it in memory).
562 this_offset = lower_offset = lower_addr - lower_orig_addr */
564 for (i = 0; i < addrs->size (); i++)
566 const struct other_sections *sect = addrs_to_abfd_addrs[i];
568 if (sect)
570 /* This is the index used by BFD. */
571 (*addrs)[i].sectindex = sect->sectindex;
573 if ((*addrs)[i].addr != 0)
575 (*addrs)[i].addr -= sect->addr;
576 lower_offset = (*addrs)[i].addr;
578 else
579 (*addrs)[i].addr = lower_offset;
581 else
583 /* addr_section_name transformation is not used for SECT_NAME. */
584 const std::string &sect_name = (*addrs)[i].name;
586 /* This section does not exist in ABFD, which is normally
587 unexpected and we want to issue a warning.
589 However, the ELF prelinker does create a few sections which are
590 marked in the main executable as loadable (they are loaded in
591 memory from the DYNAMIC segment) and yet are not present in
592 separate debug info files. This is fine, and should not cause
593 a warning. Shared libraries contain just the section
594 ".gnu.liblist" but it is not marked as loadable there. There is
595 no other way to identify them than by their name as the sections
596 created by prelink have no special flags.
598 For the sections `.bss' and `.sbss' see addr_section_name. */
600 if (!(sect_name == ".gnu.liblist"
601 || sect_name == ".gnu.conflict"
602 || (sect_name == ".bss"
603 && i > 0
604 && (*addrs)[i - 1].name == ".dynbss"
605 && addrs_to_abfd_addrs[i - 1] != NULL)
606 || (sect_name == ".sbss"
607 && i > 0
608 && (*addrs)[i - 1].name == ".sdynbss"
609 && addrs_to_abfd_addrs[i - 1] != NULL)))
610 warning (_("section %s not found in %s"), sect_name.c_str (),
611 bfd_get_filename (abfd));
613 (*addrs)[i].addr = 0;
614 (*addrs)[i].sectindex = -1;
619 /* Parse the user's idea of an offset for dynamic linking, into our idea
620 of how to represent it for fast symbol reading. This is the default
621 version of the sym_fns.sym_offsets function for symbol readers that
622 don't need to do anything special. It allocates a section_offsets table
623 for the objectfile OBJFILE and stuffs ADDR into all of the offsets. */
625 void
626 default_symfile_offsets (struct objfile *objfile,
627 const section_addr_info &addrs)
629 objfile->section_offsets.resize (gdb_bfd_count_sections (objfile->obfd.get ()));
630 relative_addr_info_to_section_offsets (objfile->section_offsets, addrs);
632 /* For relocatable files, all loadable sections will start at zero.
633 The zero is meaningless, so try to pick arbitrary addresses such
634 that no loadable sections overlap. This algorithm is quadratic,
635 but the number of sections in a single object file is generally
636 small. */
637 if ((bfd_get_file_flags (objfile->obfd.get ()) & (EXEC_P | DYNAMIC)) == 0)
639 bfd *abfd = objfile->obfd.get ();
640 asection *cur_sec;
642 for (cur_sec = abfd->sections; cur_sec != NULL; cur_sec = cur_sec->next)
643 /* We do not expect this to happen; just skip this step if the
644 relocatable file has a section with an assigned VMA. */
645 if (bfd_section_vma (cur_sec) != 0)
646 break;
648 if (cur_sec == NULL)
650 section_offsets &offsets = objfile->section_offsets;
652 /* Pick non-overlapping offsets for sections the user did not
653 place explicitly. */
654 CORE_ADDR lowest = 0;
655 for (asection *sect : gdb_bfd_sections (objfile->obfd.get ()))
656 place_section (objfile->obfd.get (), sect, objfile->section_offsets,
657 lowest);
659 /* Correctly filling in the section offsets is not quite
660 enough. Relocatable files have two properties that
661 (most) shared objects do not:
663 - Their debug information will contain relocations. Some
664 shared libraries do also, but many do not, so this can not
665 be assumed.
667 - If there are multiple code sections they will be loaded
668 at different relative addresses in memory than they are
669 in the objfile, since all sections in the file will start
670 at address zero.
672 Because GDB has very limited ability to map from an
673 address in debug info to the correct code section,
674 it relies on adding SECT_OFF_TEXT to things which might be
675 code. If we clear all the section offsets, and set the
676 section VMAs instead, then symfile_relocate_debug_section
677 will return meaningful debug information pointing at the
678 correct sections.
680 GDB has too many different data structures for section
681 addresses - a bfd, objfile, and so_list all have section
682 tables, as does exec_ops. Some of these could probably
683 be eliminated. */
685 for (cur_sec = abfd->sections; cur_sec != NULL;
686 cur_sec = cur_sec->next)
688 if ((bfd_section_flags (cur_sec) & SEC_ALLOC) == 0)
689 continue;
691 bfd_set_section_vma (cur_sec, offsets[cur_sec->index]);
692 exec_set_section_address (bfd_get_filename (abfd),
693 cur_sec->index,
694 offsets[cur_sec->index]);
695 offsets[cur_sec->index] = 0;
700 /* Remember the bfd indexes for the .text, .data, .bss and
701 .rodata sections. */
702 init_objfile_sect_indices (objfile);
705 /* Divide the file into segments, which are individual relocatable units.
706 This is the default version of the sym_fns.sym_segments function for
707 symbol readers that do not have an explicit representation of segments.
708 It assumes that object files do not have segments, and fully linked
709 files have a single segment. */
711 symfile_segment_data_up
712 default_symfile_segments (bfd *abfd)
714 int num_sections, i;
715 asection *sect;
716 CORE_ADDR low, high;
718 /* Relocatable files contain enough information to position each
719 loadable section independently; they should not be relocated
720 in segments. */
721 if ((bfd_get_file_flags (abfd) & (EXEC_P | DYNAMIC)) == 0)
722 return NULL;
724 /* Make sure there is at least one loadable section in the file. */
725 for (sect = abfd->sections; sect != NULL; sect = sect->next)
727 if ((bfd_section_flags (sect) & SEC_ALLOC) == 0)
728 continue;
730 break;
732 if (sect == NULL)
733 return NULL;
735 low = bfd_section_vma (sect);
736 high = low + bfd_section_size (sect);
738 symfile_segment_data_up data (new symfile_segment_data);
740 num_sections = bfd_count_sections (abfd);
742 /* All elements are initialized to 0 (map to no segment). */
743 data->segment_info.resize (num_sections);
745 for (i = 0, sect = abfd->sections; sect != NULL; i++, sect = sect->next)
747 CORE_ADDR vma;
749 if ((bfd_section_flags (sect) & SEC_ALLOC) == 0)
750 continue;
752 vma = bfd_section_vma (sect);
753 if (vma < low)
754 low = vma;
755 if (vma + bfd_section_size (sect) > high)
756 high = vma + bfd_section_size (sect);
758 data->segment_info[i] = 1;
761 data->segments.emplace_back (low, high - low);
763 return data;
766 /* This is a convenience function to call sym_read for OBJFILE and
767 possibly force the partial symbols to be read. */
769 static void
770 read_symbols (struct objfile *objfile, symfile_add_flags add_flags)
772 (*objfile->sf->sym_read) (objfile, add_flags);
773 objfile->per_bfd->minsyms_read = true;
775 /* find_separate_debug_file_in_section should be called only if there is
776 single binary with no existing separate debug info file. */
777 if (!objfile->has_partial_symbols ()
778 && objfile->separate_debug_objfile == NULL
779 && objfile->separate_debug_objfile_backlink == NULL)
781 gdb_bfd_ref_ptr abfd (find_separate_debug_file_in_section (objfile));
783 if (abfd != NULL)
785 /* find_separate_debug_file_in_section uses the same filename for the
786 virtual section-as-bfd like the bfd filename containing the
787 section. Therefore use also non-canonical name form for the same
788 file containing the section. */
789 symbol_file_add_separate (abfd, bfd_get_filename (abfd.get ()),
790 add_flags | SYMFILE_NOT_FILENAME, objfile);
793 if ((add_flags & SYMFILE_NO_READ) == 0)
794 objfile->require_partial_symbols (false);
797 /* Initialize entry point information for this objfile. */
799 static void
800 init_entry_point_info (struct objfile *objfile)
802 struct entry_info *ei = &objfile->per_bfd->ei;
804 if (ei->initialized)
805 return;
806 ei->initialized = 1;
808 /* Save startup file's range of PC addresses to help blockframe.c
809 decide where the bottom of the stack is. */
811 if (bfd_get_file_flags (objfile->obfd.get ()) & EXEC_P)
813 /* Executable file -- record its entry point so we'll recognize
814 the startup file because it contains the entry point. */
815 ei->entry_point = bfd_get_start_address (objfile->obfd.get ());
816 ei->entry_point_p = 1;
818 else if (bfd_get_file_flags (objfile->obfd.get ()) & DYNAMIC
819 && bfd_get_start_address (objfile->obfd.get ()) != 0)
821 /* Some shared libraries may have entry points set and be
822 runnable. There's no clear way to indicate this, so just check
823 for values other than zero. */
824 ei->entry_point = bfd_get_start_address (objfile->obfd.get ());
825 ei->entry_point_p = 1;
827 else
829 /* Examination of non-executable.o files. Short-circuit this stuff. */
830 ei->entry_point_p = 0;
833 if (ei->entry_point_p)
835 CORE_ADDR entry_point = ei->entry_point;
836 int found;
838 /* Make certain that the address points at real code, and not a
839 function descriptor. */
840 entry_point = gdbarch_convert_from_func_ptr_addr
841 (objfile->arch (), entry_point, current_inferior ()->top_target ());
843 /* Remove any ISA markers, so that this matches entries in the
844 symbol table. */
845 ei->entry_point
846 = gdbarch_addr_bits_remove (objfile->arch (), entry_point);
848 found = 0;
849 for (obj_section *osect : objfile->sections ())
851 struct bfd_section *sect = osect->the_bfd_section;
853 if (entry_point >= bfd_section_vma (sect)
854 && entry_point < (bfd_section_vma (sect)
855 + bfd_section_size (sect)))
857 ei->the_bfd_section_index
858 = gdb_bfd_section_index (objfile->obfd.get (), sect);
859 found = 1;
860 break;
864 if (!found)
865 ei->the_bfd_section_index = SECT_OFF_TEXT (objfile);
869 /* Process a symbol file, as either the main file or as a dynamically
870 loaded file.
872 This function does not set the OBJFILE's entry-point info.
874 OBJFILE is where the symbols are to be read from.
876 ADDRS is the list of section load addresses. If the user has given
877 an 'add-symbol-file' command, then this is the list of offsets and
878 addresses he or she provided as arguments to the command; or, if
879 we're handling a shared library, these are the actual addresses the
880 sections are loaded at, according to the inferior's dynamic linker
881 (as gleaned by GDB's shared library code). We convert each address
882 into an offset from the section VMA's as it appears in the object
883 file, and then call the file's sym_offsets function to convert this
884 into a format-specific offset table --- a `section_offsets'.
885 The sectindex field is used to control the ordering of sections
886 with the same name. Upon return, it is updated to contain the
887 corresponding BFD section index, or -1 if the section was not found.
889 ADD_FLAGS encodes verbosity level, whether this is main symbol or
890 an extra symbol file such as dynamically loaded code, and whether
891 breakpoint reset should be deferred. */
893 static void
894 syms_from_objfile_1 (struct objfile *objfile,
895 section_addr_info *addrs,
896 symfile_add_flags add_flags)
898 section_addr_info local_addr;
899 const int mainline = add_flags & SYMFILE_MAINLINE;
901 objfile_set_sym_fns (objfile, find_sym_fns (objfile->obfd.get ()));
902 objfile->qf.clear ();
904 if (objfile->sf == NULL)
906 /* No symbols to load, but we still need to make sure
907 that the section_offsets table is allocated. */
908 int num_sections = gdb_bfd_count_sections (objfile->obfd.get ());
910 objfile->section_offsets.assign (num_sections, 0);
911 return;
914 /* Make sure that partially constructed symbol tables will be cleaned up
915 if an error occurs during symbol reading. */
916 std::optional<clear_symtab_users_cleanup> defer_clear_users;
918 objfile_up objfile_holder (objfile);
920 /* If ADDRS is NULL, put together a dummy address list.
921 We now establish the convention that an addr of zero means
922 no load address was specified. */
923 if (! addrs)
924 addrs = &local_addr;
926 if (mainline)
928 /* We will modify the main symbol table, make sure that all its users
929 will be cleaned up if an error occurs during symbol reading. */
930 defer_clear_users.emplace ((symfile_add_flag) 0);
932 /* Since no error yet, throw away the old symbol table. */
934 if (current_program_space->symfile_object_file != NULL)
936 current_program_space->symfile_object_file->unlink ();
937 gdb_assert (current_program_space->symfile_object_file == NULL);
940 /* Currently we keep symbols from the add-symbol-file command.
941 If the user wants to get rid of them, they should do "symbol-file"
942 without arguments first. Not sure this is the best behavior
943 (PR 2207). */
945 (*objfile->sf->sym_new_init) (objfile);
948 /* Convert addr into an offset rather than an absolute address.
949 We find the lowest address of a loaded segment in the objfile,
950 and assume that <addr> is where that got loaded.
952 We no longer warn if the lowest section is not a text segment (as
953 happens for the PA64 port. */
954 if (addrs->size () > 0)
955 addr_info_make_relative (addrs, objfile->obfd.get ());
957 /* Initialize symbol reading routines for this objfile, allow complaints to
958 appear for this new file, and record how verbose to be, then do the
959 initial symbol reading for this file. */
961 (*objfile->sf->sym_init) (objfile);
962 clear_complaints ();
964 (*objfile->sf->sym_offsets) (objfile, *addrs);
966 read_symbols (objfile, add_flags);
968 /* Discard cleanups as symbol reading was successful. */
970 objfile_holder.release ();
971 if (defer_clear_users)
972 defer_clear_users->release ();
975 /* Same as syms_from_objfile_1, but also initializes the objfile
976 entry-point info. */
978 static void
979 syms_from_objfile (struct objfile *objfile,
980 section_addr_info *addrs,
981 symfile_add_flags add_flags)
983 syms_from_objfile_1 (objfile, addrs, add_flags);
984 init_entry_point_info (objfile);
987 /* Perform required actions after either reading in the initial
988 symbols for a new objfile, or mapping in the symbols from a reusable
989 objfile. ADD_FLAGS is a bitmask of enum symfile_add_flags. */
991 static void
992 finish_new_objfile (struct objfile *objfile, symfile_add_flags add_flags)
994 /* If this is the main symbol file we have to clean up all users of the
995 old main symbol file. Otherwise it is sufficient to fixup all the
996 breakpoints that may have been redefined by this symbol file. */
997 if (add_flags & SYMFILE_MAINLINE)
999 /* OK, make it the "real" symbol file. */
1000 current_program_space->symfile_object_file = objfile;
1002 clear_symtab_users (add_flags);
1004 else if ((add_flags & SYMFILE_DEFER_BP_RESET) == 0)
1006 breakpoint_re_set ();
1009 /* We're done reading the symbol file; finish off complaints. */
1010 clear_complaints ();
1013 /* Process a symbol file, as either the main file or as a dynamically
1014 loaded file.
1016 ABFD is a BFD already open on the file, as from symfile_bfd_open.
1017 A new reference is acquired by this function.
1019 For NAME description see the objfile constructor.
1021 ADD_FLAGS encodes verbosity, whether this is main symbol file or
1022 extra, such as dynamically loaded code, and what to do with breakpoints.
1024 ADDRS is as described for syms_from_objfile_1, above.
1025 ADDRS is ignored when SYMFILE_MAINLINE bit is set in ADD_FLAGS.
1027 PARENT is the original objfile if ABFD is a separate debug info file.
1028 Otherwise PARENT is NULL.
1030 Upon success, returns a pointer to the objfile that was added.
1031 Upon failure, jumps back to command level (never returns). */
1033 static struct objfile *
1034 symbol_file_add_with_addrs (const gdb_bfd_ref_ptr &abfd, const char *name,
1035 symfile_add_flags add_flags,
1036 section_addr_info *addrs,
1037 objfile_flags flags, struct objfile *parent)
1039 struct objfile *objfile;
1040 const int from_tty = add_flags & SYMFILE_VERBOSE;
1041 const int mainline = add_flags & SYMFILE_MAINLINE;
1042 const int always_confirm = add_flags & SYMFILE_ALWAYS_CONFIRM;
1043 const int should_print = (print_symbol_loading_p (from_tty, mainline, 1)
1044 && (readnow_symbol_files
1045 || (add_flags & SYMFILE_NO_READ) == 0));
1047 if (readnow_symbol_files)
1049 flags |= OBJF_READNOW;
1050 add_flags &= ~SYMFILE_NO_READ;
1052 else if (readnever_symbol_files
1053 || (parent != NULL && (parent->flags & OBJF_READNEVER)))
1055 flags |= OBJF_READNEVER;
1056 add_flags |= SYMFILE_NO_READ;
1058 if ((add_flags & SYMFILE_NOT_FILENAME) != 0)
1059 flags |= OBJF_NOT_FILENAME;
1061 /* Give user a chance to burp if ALWAYS_CONFIRM or we'd be
1062 interactively wiping out any existing symbols. */
1064 if (from_tty
1065 && (always_confirm
1066 || ((have_full_symbols () || have_partial_symbols ())
1067 && mainline))
1068 && !query (_("Load new symbol table from \"%s\"? "), name))
1069 error (_("Not confirmed."));
1071 if (mainline)
1072 flags |= OBJF_MAINLINE;
1073 objfile = objfile::make (abfd, name, flags, parent);
1075 /* We either created a new mapped symbol table, mapped an existing
1076 symbol table file which has not had initial symbol reading
1077 performed, or need to read an unmapped symbol table. */
1078 if (should_print)
1080 if (deprecated_pre_add_symbol_hook)
1081 deprecated_pre_add_symbol_hook (name);
1082 else
1083 gdb_printf (_("Reading symbols from %ps...\n"),
1084 styled_string (file_name_style.style (), name));
1086 syms_from_objfile (objfile, addrs, add_flags);
1088 /* We now have at least a partial symbol table. Check to see if the
1089 user requested that all symbols be read on initial access via either
1090 the gdb startup command line or on a per symbol file basis. Expand
1091 all partial symbol tables for this objfile if so. */
1093 if ((flags & OBJF_READNOW))
1095 if (should_print)
1096 gdb_printf (_("Expanding full symbols from %ps...\n"),
1097 styled_string (file_name_style.style (), name));
1099 objfile->expand_all_symtabs ();
1102 /* Note that we only print a message if we have no symbols and have
1103 no separate debug file. If there is a separate debug file which
1104 does not have symbols, we'll have emitted this message for that
1105 file, and so printing it twice is just redundant. */
1106 if (should_print && !objfile_has_symbols (objfile)
1107 && objfile->separate_debug_objfile == nullptr)
1108 gdb_printf (_("(No debugging symbols found in %ps)\n"),
1109 styled_string (file_name_style.style (), name));
1111 if (should_print)
1113 if (deprecated_post_add_symbol_hook)
1114 deprecated_post_add_symbol_hook ();
1117 /* We print some messages regardless of whether 'from_tty ||
1118 info_verbose' is true, so make sure they go out at the right
1119 time. */
1120 gdb_flush (gdb_stdout);
1122 if (objfile->sf != nullptr)
1123 finish_new_objfile (objfile, add_flags);
1125 gdb::observers::new_objfile.notify (objfile);
1127 return objfile;
1130 /* Add BFD as a separate debug file for OBJFILE. For NAME description
1131 see the objfile constructor. */
1133 void
1134 symbol_file_add_separate (const gdb_bfd_ref_ptr &bfd, const char *name,
1135 symfile_add_flags symfile_flags,
1136 struct objfile *objfile)
1138 /* Create section_addr_info. We can't directly use offsets from OBJFILE
1139 because sections of BFD may not match sections of OBJFILE and because
1140 vma may have been modified by tools such as prelink. */
1141 section_addr_info sap = build_section_addr_info_from_objfile (objfile);
1143 symbol_file_add_with_addrs
1144 (bfd, name, symfile_flags, &sap,
1145 objfile->flags & (OBJF_SHARED | OBJF_READNOW
1146 | OBJF_USERLOADED | OBJF_MAINLINE),
1147 objfile);
1150 /* Process the symbol file ABFD, as either the main file or as a
1151 dynamically loaded file.
1152 See symbol_file_add_with_addrs's comments for details. */
1154 struct objfile *
1155 symbol_file_add_from_bfd (const gdb_bfd_ref_ptr &abfd, const char *name,
1156 symfile_add_flags add_flags,
1157 section_addr_info *addrs,
1158 objfile_flags flags, struct objfile *parent)
1160 return symbol_file_add_with_addrs (abfd, name, add_flags, addrs, flags,
1161 parent);
1164 /* Process a symbol file, as either the main file or as a dynamically
1165 loaded file. See symbol_file_add_with_addrs's comments for details. */
1167 struct objfile *
1168 symbol_file_add (const char *name, symfile_add_flags add_flags,
1169 section_addr_info *addrs, objfile_flags flags)
1171 gdb_bfd_ref_ptr bfd (symfile_bfd_open (name));
1173 return symbol_file_add_from_bfd (bfd, name, add_flags, addrs,
1174 flags, NULL);
1177 /* Call symbol_file_add() with default values and update whatever is
1178 affected by the loading of a new main().
1179 Used when the file is supplied in the gdb command line
1180 and by some targets with special loading requirements.
1181 The auxiliary function, symbol_file_add_main_1(), has the flags
1182 argument for the switches that can only be specified in the symbol_file
1183 command itself. */
1185 void
1186 symbol_file_add_main (const char *args, symfile_add_flags add_flags)
1188 symbol_file_add_main_1 (args, add_flags, 0, 0);
1191 static void
1192 symbol_file_add_main_1 (const char *args, symfile_add_flags add_flags,
1193 objfile_flags flags, CORE_ADDR reloff)
1195 add_flags |= current_inferior ()->symfile_flags | SYMFILE_MAINLINE;
1197 struct objfile *objfile = symbol_file_add (args, add_flags, NULL, flags);
1198 if (reloff != 0)
1199 objfile_rebase (objfile, reloff);
1201 /* Getting new symbols may change our opinion about
1202 what is frameless. */
1203 reinit_frame_cache ();
1205 if ((add_flags & SYMFILE_NO_READ) == 0)
1206 set_initial_language ();
1209 void
1210 symbol_file_clear (int from_tty)
1212 if ((have_full_symbols () || have_partial_symbols ())
1213 && from_tty
1214 && (current_program_space->symfile_object_file
1215 ? !query (_("Discard symbol table from `%s'? "),
1216 objfile_name (current_program_space->symfile_object_file))
1217 : !query (_("Discard symbol table? "))))
1218 error (_("Not confirmed."));
1220 /* solib descriptors may have handles to objfiles. Wipe them before their
1221 objfiles get stale by free_all_objfiles. */
1222 no_shared_libraries (NULL, from_tty);
1224 current_program_space->free_all_objfiles ();
1226 clear_symtab_users (0);
1228 gdb_assert (current_program_space->symfile_object_file == NULL);
1229 if (from_tty)
1230 gdb_printf (_("No symbol file now.\n"));
1233 /* See symfile.h. */
1235 bool separate_debug_file_debug = false;
1237 static int
1238 separate_debug_file_exists (const std::string &name, unsigned long crc,
1239 struct objfile *parent_objfile,
1240 deferred_warnings *warnings)
1242 unsigned long file_crc;
1243 int file_crc_p;
1244 struct stat parent_stat, abfd_stat;
1245 int verified_as_different;
1247 /* Find a separate debug info file as if symbols would be present in
1248 PARENT_OBJFILE itself this function would not be called. .gnu_debuglink
1249 section can contain just the basename of PARENT_OBJFILE without any
1250 ".debug" suffix as "/usr/lib/debug/path/to/file" is a separate tree where
1251 the separate debug infos with the same basename can exist. */
1253 if (filename_cmp (name.c_str (), objfile_name (parent_objfile)) == 0)
1254 return 0;
1256 if (separate_debug_file_debug)
1258 gdb_printf (gdb_stdlog, _(" Trying %s..."), name.c_str ());
1259 gdb_flush (gdb_stdlog);
1262 gdb_bfd_ref_ptr abfd (gdb_bfd_open (name.c_str (), gnutarget));
1264 if (abfd == NULL)
1266 if (separate_debug_file_debug)
1267 gdb_printf (gdb_stdlog, _(" no, unable to open.\n"));
1269 return 0;
1272 /* Verify symlinks were not the cause of filename_cmp name difference above.
1274 Some operating systems, e.g. Windows, do not provide a meaningful
1275 st_ino; they always set it to zero. (Windows does provide a
1276 meaningful st_dev.) Files accessed from gdbservers that do not
1277 support the vFile:fstat packet will also have st_ino set to zero.
1278 Do not indicate a duplicate library in either case. While there
1279 is no guarantee that a system that provides meaningful inode
1280 numbers will never set st_ino to zero, this is merely an
1281 optimization, so we do not need to worry about false negatives. */
1283 if (bfd_stat (abfd.get (), &abfd_stat) == 0
1284 && abfd_stat.st_ino != 0
1285 && bfd_stat (parent_objfile->obfd.get (), &parent_stat) == 0)
1287 if (abfd_stat.st_dev == parent_stat.st_dev
1288 && abfd_stat.st_ino == parent_stat.st_ino)
1290 if (separate_debug_file_debug)
1291 gdb_printf (gdb_stdlog,
1292 _(" no, same file as the objfile.\n"));
1294 return 0;
1296 verified_as_different = 1;
1298 else
1299 verified_as_different = 0;
1301 file_crc_p = gdb_bfd_crc (abfd.get (), &file_crc);
1303 if (!file_crc_p)
1305 if (separate_debug_file_debug)
1306 gdb_printf (gdb_stdlog, _(" no, error computing CRC.\n"));
1308 return 0;
1311 if (crc != file_crc)
1313 unsigned long parent_crc;
1315 /* If the files could not be verified as different with
1316 bfd_stat then we need to calculate the parent's CRC
1317 to verify whether the files are different or not. */
1319 if (!verified_as_different)
1321 if (!gdb_bfd_crc (parent_objfile->obfd.get (), &parent_crc))
1323 if (separate_debug_file_debug)
1324 gdb_printf (gdb_stdlog,
1325 _(" no, error computing CRC.\n"));
1327 return 0;
1331 if (verified_as_different || parent_crc != file_crc)
1333 if (separate_debug_file_debug)
1334 gdb_printf (gdb_stdlog, "the debug information found in \"%s\""
1335 " does not match \"%s\" (CRC mismatch).\n",
1336 name.c_str (), objfile_name (parent_objfile));
1337 warnings->warn (_("the debug information found in \"%ps\""
1338 " does not match \"%ps\" (CRC mismatch)."),
1339 styled_string (file_name_style.style (),
1340 name.c_str ()),
1341 styled_string (file_name_style.style (),
1342 objfile_name (parent_objfile)));
1345 return 0;
1348 if (separate_debug_file_debug)
1349 gdb_printf (gdb_stdlog, _(" yes!\n"));
1351 return 1;
1354 std::string debug_file_directory;
1355 static void
1356 show_debug_file_directory (struct ui_file *file, int from_tty,
1357 struct cmd_list_element *c, const char *value)
1359 gdb_printf (file,
1360 _("The directory where separate debug "
1361 "symbols are searched for is \"%s\".\n"),
1362 value);
1365 #if ! defined (DEBUG_SUBDIRECTORY)
1366 #define DEBUG_SUBDIRECTORY ".debug"
1367 #endif
1369 /* Find a separate debuginfo file for OBJFILE, using DIR as the directory
1370 where the original file resides (may not be the same as
1371 dirname(objfile->name) due to symlinks), and DEBUGLINK as the file we are
1372 looking for. CANON_DIR is the "realpath" form of DIR.
1373 DIR must contain a trailing '/'.
1374 Returns the path of the file with separate debug info, or an empty
1375 string.
1377 Any warnings generated as part of the lookup process are added to
1378 WARNINGS. If some other mechanism can be used to lookup the debug
1379 information then the warning will not be shown, however, if GDB fails to
1380 find suitable debug information using any approach, then any warnings
1381 will be printed. */
1383 static std::string
1384 find_separate_debug_file (const char *dir,
1385 const char *canon_dir,
1386 const char *debuglink,
1387 unsigned long crc32, struct objfile *objfile,
1388 deferred_warnings *warnings)
1390 if (separate_debug_file_debug)
1391 gdb_printf (gdb_stdlog,
1392 _("\nLooking for separate debug info (debug link) for "
1393 "%s\n"), objfile_name (objfile));
1395 /* First try in the same directory as the original file. */
1396 std::string debugfile = dir;
1397 debugfile += debuglink;
1399 if (separate_debug_file_exists (debugfile, crc32, objfile, warnings))
1400 return debugfile;
1402 /* Then try in the subdirectory named DEBUG_SUBDIRECTORY. */
1403 debugfile = dir;
1404 debugfile += DEBUG_SUBDIRECTORY;
1405 debugfile += "/";
1406 debugfile += debuglink;
1408 if (separate_debug_file_exists (debugfile, crc32, objfile, warnings))
1409 return debugfile;
1411 /* Then try in the global debugfile directories.
1413 Keep backward compatibility so that DEBUG_FILE_DIRECTORY being "" will
1414 cause "/..." lookups. */
1416 bool target_prefix = is_target_filename (dir);
1417 const char *dir_notarget
1418 = target_prefix ? dir + strlen (TARGET_SYSROOT_PREFIX) : dir;
1419 std::vector<gdb::unique_xmalloc_ptr<char>> debugdir_vec
1420 = dirnames_to_char_ptr_vec (debug_file_directory.c_str ());
1421 gdb::unique_xmalloc_ptr<char> canon_sysroot
1422 = gdb_realpath (gdb_sysroot.c_str ());
1424 /* MS-Windows/MS-DOS don't allow colons in file names; we must
1425 convert the drive letter into a one-letter directory, so that the
1426 file name resulting from splicing below will be valid.
1428 FIXME: The below only works when GDB runs on MS-Windows/MS-DOS.
1429 There are various remote-debugging scenarios where such a
1430 transformation of the drive letter might be required when GDB runs
1431 on a Posix host, see
1433 https://sourceware.org/ml/gdb-patches/2019-04/msg00605.html
1435 If some of those scenarios need to be supported, we will need to
1436 use a different condition for HAS_DRIVE_SPEC and a different macro
1437 instead of STRIP_DRIVE_SPEC, which work on Posix systems as well. */
1438 std::string drive;
1439 if (HAS_DRIVE_SPEC (dir_notarget))
1441 drive = dir_notarget[0];
1442 dir_notarget = STRIP_DRIVE_SPEC (dir_notarget);
1445 for (const gdb::unique_xmalloc_ptr<char> &debugdir : debugdir_vec)
1447 debugfile = target_prefix ? TARGET_SYSROOT_PREFIX : "";
1448 debugfile += debugdir;
1449 debugfile += "/";
1450 debugfile += drive;
1451 debugfile += dir_notarget;
1452 debugfile += debuglink;
1454 if (separate_debug_file_exists (debugfile, crc32, objfile, warnings))
1455 return debugfile;
1457 const char *base_path = NULL;
1458 if (canon_dir != NULL)
1460 if (canon_sysroot.get () != NULL)
1461 base_path = child_path (canon_sysroot.get (), canon_dir);
1462 else
1463 base_path = child_path (gdb_sysroot.c_str (), canon_dir);
1465 if (base_path != NULL)
1467 /* If the file is in the sysroot, try using its base path in
1468 the global debugfile directory. */
1469 debugfile = target_prefix ? TARGET_SYSROOT_PREFIX : "";
1470 debugfile += debugdir;
1471 debugfile += "/";
1472 debugfile += base_path;
1473 debugfile += "/";
1474 debugfile += debuglink;
1476 if (separate_debug_file_exists (debugfile, crc32, objfile, warnings))
1477 return debugfile;
1479 /* If the file is in the sysroot, try using its base path in
1480 the sysroot's global debugfile directory. GDB_SYSROOT
1481 might refer to a target: path; we strip the "target:"
1482 prefix -- but if that would yield the empty string, we
1483 don't bother at all, because that would just give the
1484 same result as above. */
1485 if (gdb_sysroot != TARGET_SYSROOT_PREFIX)
1487 debugfile = target_prefix ? TARGET_SYSROOT_PREFIX : "";
1488 if (is_target_filename (gdb_sysroot))
1490 std::string root
1491 = gdb_sysroot.substr (strlen (TARGET_SYSROOT_PREFIX));
1492 gdb_assert (!root.empty ());
1493 debugfile += root;
1495 else
1496 debugfile += gdb_sysroot;
1497 debugfile += debugdir;
1498 debugfile += "/";
1499 debugfile += base_path;
1500 debugfile += "/";
1501 debugfile += debuglink;
1503 if (separate_debug_file_exists (debugfile, crc32, objfile,
1504 warnings))
1505 return debugfile;
1510 return std::string ();
1513 /* Modify PATH to contain only "[/]directory/" part of PATH.
1514 If there were no directory separators in PATH, PATH will be empty
1515 string on return. */
1517 static void
1518 terminate_after_last_dir_separator (char *path)
1520 int i;
1522 /* Strip off the final filename part, leaving the directory name,
1523 followed by a slash. The directory can be relative or absolute. */
1524 for (i = strlen(path) - 1; i >= 0; i--)
1525 if (IS_DIR_SEPARATOR (path[i]))
1526 break;
1528 /* If I is -1 then no directory is present there and DIR will be "". */
1529 path[i + 1] = '\0';
1532 /* See symtab.h. */
1534 std::string
1535 find_separate_debug_file_by_debuglink
1536 (struct objfile *objfile, deferred_warnings *warnings)
1538 uint32_t crc32;
1540 gdb::unique_xmalloc_ptr<char> debuglink
1541 (bfd_get_debug_link_info (objfile->obfd.get (), &crc32));
1543 if (debuglink == NULL)
1545 /* There's no separate debug info, hence there's no way we could
1546 load it => no warning. */
1547 return std::string ();
1550 std::string dir = objfile_name (objfile);
1551 terminate_after_last_dir_separator (&dir[0]);
1552 gdb::unique_xmalloc_ptr<char> canon_dir (lrealpath (dir.c_str ()));
1554 std::string debugfile
1555 = find_separate_debug_file (dir.c_str (), canon_dir.get (),
1556 debuglink.get (), crc32, objfile,
1557 warnings);
1559 if (debugfile.empty ())
1561 /* For PR gdb/9538, try again with realpath (if different from the
1562 original). */
1564 struct stat st_buf;
1566 if (lstat (objfile_name (objfile), &st_buf) == 0
1567 && S_ISLNK (st_buf.st_mode))
1569 gdb::unique_xmalloc_ptr<char> symlink_dir
1570 (lrealpath (objfile_name (objfile)));
1571 if (symlink_dir != NULL)
1573 terminate_after_last_dir_separator (symlink_dir.get ());
1574 if (dir != symlink_dir.get ())
1576 /* Different directory, so try using it. */
1577 debugfile = find_separate_debug_file (symlink_dir.get (),
1578 symlink_dir.get (),
1579 debuglink.get (),
1580 crc32,
1581 objfile,
1582 warnings);
1588 return debugfile;
1591 /* Make sure that OBJF_{READNOW,READNEVER} are not set
1592 simultaneously. */
1594 static void
1595 validate_readnow_readnever (objfile_flags flags)
1597 if ((flags & OBJF_READNOW) && (flags & OBJF_READNEVER))
1598 error (_("-readnow and -readnever cannot be used simultaneously"));
1601 /* This is the symbol-file command. Read the file, analyze its
1602 symbols, and add a struct symtab to a symtab list. The syntax of
1603 the command is rather bizarre:
1605 1. The function buildargv implements various quoting conventions
1606 which are undocumented and have little or nothing in common with
1607 the way things are quoted (or not quoted) elsewhere in GDB.
1609 2. Options are used, which are not generally used in GDB (perhaps
1610 "set mapped on", "set readnow on" would be better)
1612 3. The order of options matters, which is contrary to GNU
1613 conventions (because it is confusing and inconvenient). */
1615 void
1616 symbol_file_command (const char *args, int from_tty)
1618 dont_repeat ();
1620 if (args == NULL)
1622 symbol_file_clear (from_tty);
1624 else
1626 objfile_flags flags = OBJF_USERLOADED;
1627 symfile_add_flags add_flags = 0;
1628 char *name = NULL;
1629 bool stop_processing_options = false;
1630 CORE_ADDR offset = 0;
1631 int idx;
1632 char *arg;
1634 if (from_tty)
1635 add_flags |= SYMFILE_VERBOSE;
1637 gdb_argv built_argv (args);
1638 for (arg = built_argv[0], idx = 0; arg != NULL; arg = built_argv[++idx])
1640 if (stop_processing_options || *arg != '-')
1642 if (name == NULL)
1643 name = arg;
1644 else
1645 error (_("Unrecognized argument \"%s\""), arg);
1647 else if (strcmp (arg, "-readnow") == 0)
1648 flags |= OBJF_READNOW;
1649 else if (strcmp (arg, "-readnever") == 0)
1650 flags |= OBJF_READNEVER;
1651 else if (strcmp (arg, "-o") == 0)
1653 arg = built_argv[++idx];
1654 if (arg == NULL)
1655 error (_("Missing argument to -o"));
1657 offset = parse_and_eval_address (arg);
1659 else if (strcmp (arg, "--") == 0)
1660 stop_processing_options = true;
1661 else
1662 error (_("Unrecognized argument \"%s\""), arg);
1665 if (name == NULL)
1666 error (_("no symbol file name was specified"));
1668 validate_readnow_readnever (flags);
1670 /* Set SYMFILE_DEFER_BP_RESET because the proper displacement for a PIE
1671 (Position Independent Executable) main symbol file will only be
1672 computed by the solib_create_inferior_hook below. Without it,
1673 breakpoint_re_set would fail to insert the breakpoints with the zero
1674 displacement. */
1675 add_flags |= SYMFILE_DEFER_BP_RESET;
1677 symbol_file_add_main_1 (name, add_flags, flags, offset);
1679 solib_create_inferior_hook (from_tty);
1681 /* Now it's safe to re-add the breakpoints. */
1682 breakpoint_re_set ();
1684 /* Also, it's safe to re-add varobjs. */
1685 varobj_re_set ();
1689 /* Set the initial language. */
1691 void
1692 set_initial_language (void)
1694 if (language_mode == language_mode_manual)
1695 return;
1696 enum language lang = main_language ();
1697 /* Make C the default language. */
1698 enum language default_lang = language_c;
1700 if (lang == language_unknown)
1702 const char *name = main_name ();
1703 struct symbol *sym
1704 = lookup_symbol_in_language (name, NULL, VAR_DOMAIN, default_lang,
1705 NULL).symbol;
1707 if (sym != NULL)
1708 lang = sym->language ();
1711 if (lang == language_unknown)
1713 lang = default_lang;
1716 set_language (lang);
1717 expected_language = current_language; /* Don't warn the user. */
1720 /* Open the file specified by NAME and hand it off to BFD for
1721 preliminary analysis. Return a newly initialized bfd *, which
1722 includes a newly malloc'd` copy of NAME (tilde-expanded and made
1723 absolute). In case of trouble, error() is called. */
1725 gdb_bfd_ref_ptr
1726 symfile_bfd_open (const char *name)
1728 int desc = -1;
1730 gdb::unique_xmalloc_ptr<char> absolute_name;
1731 if (!is_target_filename (name))
1733 gdb::unique_xmalloc_ptr<char> expanded_name (tilde_expand (name));
1735 /* Look down path for it, allocate 2nd new malloc'd copy. */
1736 desc = openp (getenv ("PATH"),
1737 OPF_TRY_CWD_FIRST | OPF_RETURN_REALPATH,
1738 expanded_name.get (), O_RDONLY | O_BINARY, &absolute_name);
1739 #if defined(__GO32__) || defined(_WIN32) || defined (__CYGWIN__)
1740 if (desc < 0)
1742 char *exename = (char *) alloca (strlen (expanded_name.get ()) + 5);
1744 strcat (strcpy (exename, expanded_name.get ()), ".exe");
1745 desc = openp (getenv ("PATH"),
1746 OPF_TRY_CWD_FIRST | OPF_RETURN_REALPATH,
1747 exename, O_RDONLY | O_BINARY, &absolute_name);
1749 #endif
1750 if (desc < 0)
1751 perror_with_name (expanded_name.get ());
1753 name = absolute_name.get ();
1756 gdb_bfd_ref_ptr sym_bfd (gdb_bfd_open (name, gnutarget, desc));
1757 if (sym_bfd == NULL)
1758 error (_("`%s': can't open to read symbols: %s."), name,
1759 bfd_errmsg (bfd_get_error ()));
1761 if (!bfd_check_format (sym_bfd.get (), bfd_object))
1762 error (_("`%s': can't read symbols: %s."), name,
1763 bfd_errmsg (bfd_get_error ()));
1765 return sym_bfd;
1768 /* See symfile.h. */
1770 gdb_bfd_ref_ptr
1771 symfile_bfd_open_no_error (const char *name) noexcept
1775 return symfile_bfd_open (name);
1777 catch (const gdb_exception_error &err)
1779 warning ("%s", err.what ());
1782 return nullptr;
1785 /* Return the section index for SECTION_NAME on OBJFILE. Return -1 if
1786 the section was not found. */
1789 get_section_index (struct objfile *objfile, const char *section_name)
1791 asection *sect = bfd_get_section_by_name (objfile->obfd.get (), section_name);
1793 if (sect)
1794 return sect->index;
1795 else
1796 return -1;
1799 /* Link SF into the global symtab_fns list.
1800 FLAVOUR is the file format that SF handles.
1801 Called on startup by the _initialize routine in each object file format
1802 reader, to register information about each format the reader is prepared
1803 to handle. */
1805 void
1806 add_symtab_fns (enum bfd_flavour flavour, const struct sym_fns *sf)
1808 symtab_fns.emplace_back (flavour, sf);
1811 /* Initialize OBJFILE to read symbols from its associated BFD. It
1812 either returns or calls error(). The result is an initialized
1813 struct sym_fns in the objfile structure, that contains cached
1814 information about the symbol file. */
1816 static const struct sym_fns *
1817 find_sym_fns (bfd *abfd)
1819 enum bfd_flavour our_flavour = bfd_get_flavour (abfd);
1821 if (our_flavour == bfd_target_srec_flavour
1822 || our_flavour == bfd_target_ihex_flavour
1823 || our_flavour == bfd_target_tekhex_flavour)
1824 return NULL; /* No symbols. */
1826 for (const registered_sym_fns &rsf : symtab_fns)
1827 if (our_flavour == rsf.sym_flavour)
1828 return rsf.sym_fns;
1830 error (_("I'm sorry, Dave, I can't do that. Symbol format `%s' unknown."),
1831 bfd_get_target (abfd));
1835 /* This function runs the load command of our current target. */
1837 static void
1838 load_command (const char *arg, int from_tty)
1840 dont_repeat ();
1842 /* The user might be reloading because the binary has changed. Take
1843 this opportunity to check. */
1844 reopen_exec_file ();
1845 reread_symbols (from_tty);
1847 std::string temp;
1848 if (arg == NULL)
1850 const char *parg, *prev;
1852 arg = get_exec_file (1);
1854 /* We may need to quote this string so buildargv can pull it
1855 apart. */
1856 prev = parg = arg;
1857 while ((parg = strpbrk (parg, "\\\"'\t ")))
1859 temp.append (prev, parg - prev);
1860 prev = parg++;
1861 temp.push_back ('\\');
1863 /* If we have not copied anything yet, then we didn't see a
1864 character to quote, and we can just leave ARG unchanged. */
1865 if (!temp.empty ())
1867 temp.append (prev);
1868 arg = temp.c_str ();
1872 target_load (arg, from_tty);
1874 /* After re-loading the executable, we don't really know which
1875 overlays are mapped any more. */
1876 overlay_cache_invalid = 1;
1879 /* This version of "load" should be usable for any target. Currently
1880 it is just used for remote targets, not inftarg.c or core files,
1881 on the theory that only in that case is it useful.
1883 Avoiding xmodem and the like seems like a win (a) because we don't have
1884 to worry about finding it, and (b) On VMS, fork() is very slow and so
1885 we don't want to run a subprocess. On the other hand, I'm not sure how
1886 performance compares. */
1888 static int validate_download = 0;
1890 /* Opaque data for load_progress. */
1891 struct load_progress_data
1893 /* Cumulative data. */
1894 unsigned long write_count = 0;
1895 unsigned long data_count = 0;
1896 bfd_size_type total_size = 0;
1899 /* Opaque data for load_progress for a single section. */
1900 struct load_progress_section_data
1902 load_progress_section_data (load_progress_data *cumulative_,
1903 const char *section_name_, ULONGEST section_size_,
1904 CORE_ADDR lma_, gdb_byte *buffer_)
1905 : cumulative (cumulative_), section_name (section_name_),
1906 section_size (section_size_), lma (lma_), buffer (buffer_)
1909 struct load_progress_data *cumulative;
1911 /* Per-section data. */
1912 const char *section_name;
1913 ULONGEST section_sent = 0;
1914 ULONGEST section_size;
1915 CORE_ADDR lma;
1916 gdb_byte *buffer;
1919 /* Opaque data for load_section_callback. */
1920 struct load_section_data
1922 load_section_data (load_progress_data *progress_data_)
1923 : progress_data (progress_data_)
1926 ~load_section_data ()
1928 for (auto &&request : requests)
1930 xfree (request.data);
1931 delete ((load_progress_section_data *) request.baton);
1935 CORE_ADDR load_offset = 0;
1936 struct load_progress_data *progress_data;
1937 std::vector<struct memory_write_request> requests;
1940 /* Target write callback routine for progress reporting. */
1942 static void
1943 load_progress (ULONGEST bytes, void *untyped_arg)
1945 struct load_progress_section_data *args
1946 = (struct load_progress_section_data *) untyped_arg;
1947 struct load_progress_data *totals;
1949 if (args == NULL)
1950 /* Writing padding data. No easy way to get at the cumulative
1951 stats, so just ignore this. */
1952 return;
1954 totals = args->cumulative;
1956 if (bytes == 0 && args->section_sent == 0)
1958 /* The write is just starting. Let the user know we've started
1959 this section. */
1960 current_uiout->message ("Loading section %s, size %s lma %s\n",
1961 args->section_name,
1962 hex_string (args->section_size),
1963 paddress (current_inferior ()->arch (),
1964 args->lma));
1965 return;
1968 if (validate_download)
1970 /* Broken memories and broken monitors manifest themselves here
1971 when bring new computers to life. This doubles already slow
1972 downloads. */
1973 /* NOTE: cagney/1999-10-18: A more efficient implementation
1974 might add a verify_memory() method to the target vector and
1975 then use that. remote.c could implement that method using
1976 the ``qCRC'' packet. */
1977 gdb::byte_vector check (bytes);
1979 if (target_read_memory (args->lma, check.data (), bytes) != 0)
1980 error (_("Download verify read failed at %s"),
1981 paddress (current_inferior ()->arch (), args->lma));
1982 if (memcmp (args->buffer, check.data (), bytes) != 0)
1983 error (_("Download verify compare failed at %s"),
1984 paddress (current_inferior ()->arch (), args->lma));
1986 totals->data_count += bytes;
1987 args->lma += bytes;
1988 args->buffer += bytes;
1989 totals->write_count += 1;
1990 args->section_sent += bytes;
1991 if (check_quit_flag ()
1992 || (deprecated_ui_load_progress_hook != NULL
1993 && deprecated_ui_load_progress_hook (args->section_name,
1994 args->section_sent)))
1995 error (_("Canceled the download"));
1997 if (deprecated_show_load_progress != NULL)
1998 deprecated_show_load_progress (args->section_name,
1999 args->section_sent,
2000 args->section_size,
2001 totals->data_count,
2002 totals->total_size);
2005 /* Service function for generic_load. */
2007 static void
2008 load_one_section (bfd *abfd, asection *asec,
2009 struct load_section_data *args)
2011 bfd_size_type size = bfd_section_size (asec);
2012 const char *sect_name = bfd_section_name (asec);
2014 if ((bfd_section_flags (asec) & SEC_LOAD) == 0)
2015 return;
2017 if (size == 0)
2018 return;
2020 ULONGEST begin = bfd_section_lma (asec) + args->load_offset;
2021 ULONGEST end = begin + size;
2022 gdb_byte *buffer = (gdb_byte *) xmalloc (size);
2023 bfd_get_section_contents (abfd, asec, buffer, 0, size);
2025 load_progress_section_data *section_data
2026 = new load_progress_section_data (args->progress_data, sect_name, size,
2027 begin, buffer);
2029 args->requests.emplace_back (begin, end, buffer, section_data);
2032 static void print_transfer_performance (struct ui_file *stream,
2033 unsigned long data_count,
2034 unsigned long write_count,
2035 std::chrono::steady_clock::duration d);
2037 /* See symfile.h. */
2039 void
2040 generic_load (const char *args, int from_tty)
2042 struct load_progress_data total_progress;
2043 struct load_section_data cbdata (&total_progress);
2044 struct ui_out *uiout = current_uiout;
2046 if (args == NULL)
2047 error_no_arg (_("file to load"));
2049 gdb_argv argv (args);
2051 gdb::unique_xmalloc_ptr<char> filename (tilde_expand (argv[0]));
2053 if (argv[1] != NULL)
2055 const char *endptr;
2057 cbdata.load_offset = strtoulst (argv[1], &endptr, 0);
2059 /* If the last word was not a valid number then
2060 treat it as a file name with spaces in. */
2061 if (argv[1] == endptr)
2062 error (_("Invalid download offset:%s."), argv[1]);
2064 if (argv[2] != NULL)
2065 error (_("Too many parameters."));
2068 /* Open the file for loading. */
2069 gdb_bfd_ref_ptr loadfile_bfd (gdb_bfd_open (filename.get (), gnutarget));
2070 if (loadfile_bfd == NULL)
2071 perror_with_name (filename.get ());
2073 if (!bfd_check_format (loadfile_bfd.get (), bfd_object))
2075 error (_("\"%s\" is not an object file: %s"), filename.get (),
2076 bfd_errmsg (bfd_get_error ()));
2079 for (asection *asec : gdb_bfd_sections (loadfile_bfd))
2080 total_progress.total_size += bfd_section_size (asec);
2082 for (asection *asec : gdb_bfd_sections (loadfile_bfd))
2083 load_one_section (loadfile_bfd.get (), asec, &cbdata);
2085 using namespace std::chrono;
2087 steady_clock::time_point start_time = steady_clock::now ();
2089 if (target_write_memory_blocks (cbdata.requests, flash_discard,
2090 load_progress) != 0)
2091 error (_("Load failed"));
2093 steady_clock::time_point end_time = steady_clock::now ();
2095 CORE_ADDR entry = bfd_get_start_address (loadfile_bfd.get ());
2096 entry = gdbarch_addr_bits_remove (current_inferior ()->arch (), entry);
2097 uiout->text ("Start address ");
2098 uiout->field_core_addr ("address", current_inferior ()->arch (), entry);
2099 uiout->text (", load size ");
2100 uiout->field_unsigned ("load-size", total_progress.data_count);
2101 uiout->text ("\n");
2102 regcache_write_pc (get_thread_regcache (inferior_thread ()), entry);
2104 /* Reset breakpoints, now that we have changed the load image. For
2105 instance, breakpoints may have been set (or reset, by
2106 post_create_inferior) while connected to the target but before we
2107 loaded the program. In that case, the prologue analyzer could
2108 have read instructions from the target to find the right
2109 breakpoint locations. Loading has changed the contents of that
2110 memory. */
2112 breakpoint_re_set ();
2114 print_transfer_performance (gdb_stdout, total_progress.data_count,
2115 total_progress.write_count,
2116 end_time - start_time);
2119 /* Report on STREAM the performance of a memory transfer operation,
2120 such as 'load'. DATA_COUNT is the number of bytes transferred.
2121 WRITE_COUNT is the number of separate write operations, or 0, if
2122 that information is not available. TIME is how long the operation
2123 lasted. */
2125 static void
2126 print_transfer_performance (struct ui_file *stream,
2127 unsigned long data_count,
2128 unsigned long write_count,
2129 std::chrono::steady_clock::duration time)
2131 using namespace std::chrono;
2132 struct ui_out *uiout = current_uiout;
2134 milliseconds ms = duration_cast<milliseconds> (time);
2136 uiout->text ("Transfer rate: ");
2137 if (ms.count () > 0)
2139 unsigned long rate = ((ULONGEST) data_count * 1000) / ms.count ();
2141 if (uiout->is_mi_like_p ())
2143 uiout->field_unsigned ("transfer-rate", rate * 8);
2144 uiout->text (" bits/sec");
2146 else if (rate < 1024)
2148 uiout->field_unsigned ("transfer-rate", rate);
2149 uiout->text (" bytes/sec");
2151 else
2153 uiout->field_unsigned ("transfer-rate", rate / 1024);
2154 uiout->text (" KB/sec");
2157 else
2159 uiout->field_unsigned ("transferred-bits", (data_count * 8));
2160 uiout->text (" bits in <1 sec");
2162 if (write_count > 0)
2164 uiout->text (", ");
2165 uiout->field_unsigned ("write-rate", data_count / write_count);
2166 uiout->text (" bytes/write");
2168 uiout->text (".\n");
2171 /* Add an OFFSET to the start address of each section in OBJF, except
2172 sections that were specified in ADDRS. */
2174 static void
2175 set_objfile_default_section_offset (struct objfile *objf,
2176 const section_addr_info &addrs,
2177 CORE_ADDR offset)
2179 /* Add OFFSET to all sections by default. */
2180 section_offsets offsets (objf->section_offsets.size (), offset);
2182 /* Create sorted lists of all sections in ADDRS as well as all
2183 sections in OBJF. */
2185 std::vector<const struct other_sections *> addrs_sorted
2186 = addrs_section_sort (addrs);
2188 section_addr_info objf_addrs
2189 = build_section_addr_info_from_objfile (objf);
2190 std::vector<const struct other_sections *> objf_addrs_sorted
2191 = addrs_section_sort (objf_addrs);
2193 /* Walk the BFD section list, and if a matching section is found in
2194 ADDRS_SORTED_LIST, set its offset to zero to keep its address
2195 unchanged.
2197 Note that both lists may contain multiple sections with the same
2198 name, and then the sections from ADDRS are matched in BFD order
2199 (thanks to sectindex). */
2201 std::vector<const struct other_sections *>::iterator addrs_sorted_iter
2202 = addrs_sorted.begin ();
2203 for (const other_sections *objf_sect : objf_addrs_sorted)
2205 const char *objf_name = addr_section_name (objf_sect->name.c_str ());
2206 int cmp = -1;
2208 while (cmp < 0 && addrs_sorted_iter != addrs_sorted.end ())
2210 const struct other_sections *sect = *addrs_sorted_iter;
2211 const char *sect_name = addr_section_name (sect->name.c_str ());
2212 cmp = strcmp (sect_name, objf_name);
2213 if (cmp <= 0)
2214 ++addrs_sorted_iter;
2217 if (cmp == 0)
2218 offsets[objf_sect->sectindex] = 0;
2221 /* Apply the new section offsets. */
2222 objfile_relocate (objf, offsets);
2225 /* This function allows the addition of incrementally linked object files.
2226 It does not modify any state in the target, only in the debugger. */
2228 static void
2229 add_symbol_file_command (const char *args, int from_tty)
2231 struct gdbarch *gdbarch = get_current_arch ();
2232 gdb::unique_xmalloc_ptr<char> filename;
2233 char *arg;
2234 int argcnt = 0;
2235 struct objfile *objf;
2236 objfile_flags flags = OBJF_USERLOADED | OBJF_SHARED;
2237 symfile_add_flags add_flags = 0;
2239 if (from_tty)
2240 add_flags |= SYMFILE_VERBOSE;
2242 struct sect_opt
2244 const char *name;
2245 const char *value;
2248 std::vector<sect_opt> sect_opts = { { ".text", NULL } };
2249 bool stop_processing_options = false;
2250 CORE_ADDR offset = 0;
2252 dont_repeat ();
2254 if (args == NULL)
2255 error (_("add-symbol-file takes a file name and an address"));
2257 bool seen_addr = false;
2258 bool seen_offset = false;
2259 gdb_argv argv (args);
2261 for (arg = argv[0], argcnt = 0; arg != NULL; arg = argv[++argcnt])
2263 if (stop_processing_options || *arg != '-')
2265 if (filename == NULL)
2267 /* First non-option argument is always the filename. */
2268 filename.reset (tilde_expand (arg));
2270 else if (!seen_addr)
2272 /* The second non-option argument is always the text
2273 address at which to load the program. */
2274 sect_opts[0].value = arg;
2275 seen_addr = true;
2277 else
2278 error (_("Unrecognized argument \"%s\""), arg);
2280 else if (strcmp (arg, "-readnow") == 0)
2281 flags |= OBJF_READNOW;
2282 else if (strcmp (arg, "-readnever") == 0)
2283 flags |= OBJF_READNEVER;
2284 else if (strcmp (arg, "-s") == 0)
2286 if (argv[argcnt + 1] == NULL)
2287 error (_("Missing section name after \"-s\""));
2288 else if (argv[argcnt + 2] == NULL)
2289 error (_("Missing section address after \"-s\""));
2291 sect_opt sect = { argv[argcnt + 1], argv[argcnt + 2] };
2293 sect_opts.push_back (sect);
2294 argcnt += 2;
2296 else if (strcmp (arg, "-o") == 0)
2298 arg = argv[++argcnt];
2299 if (arg == NULL)
2300 error (_("Missing argument to -o"));
2302 offset = parse_and_eval_address (arg);
2303 seen_offset = true;
2305 else if (strcmp (arg, "--") == 0)
2306 stop_processing_options = true;
2307 else
2308 error (_("Unrecognized argument \"%s\""), arg);
2311 if (filename == NULL)
2312 error (_("You must provide a filename to be loaded."));
2314 validate_readnow_readnever (flags);
2316 /* Print the prompt for the query below. And save the arguments into
2317 a sect_addr_info structure to be passed around to other
2318 functions. We have to split this up into separate print
2319 statements because hex_string returns a local static
2320 string. */
2322 gdb_printf (_("add symbol table from file \"%ps\""),
2323 styled_string (file_name_style.style (), filename.get ()));
2324 section_addr_info section_addrs;
2325 std::vector<sect_opt>::const_iterator it = sect_opts.begin ();
2326 if (!seen_addr)
2327 ++it;
2328 for (; it != sect_opts.end (); ++it)
2330 CORE_ADDR addr;
2331 const char *val = it->value;
2332 const char *sec = it->name;
2334 if (section_addrs.empty ())
2335 gdb_printf (_(" at\n"));
2336 addr = parse_and_eval_address (val);
2338 /* Here we store the section offsets in the order they were
2339 entered on the command line. Every array element is
2340 assigned an ascending section index to preserve the above
2341 order over an unstable sorting algorithm. This dummy
2342 index is not used for any other purpose.
2344 section_addrs.emplace_back (addr, sec, section_addrs.size ());
2345 gdb_printf ("\t%s_addr = %s\n", sec,
2346 paddress (gdbarch, addr));
2348 /* The object's sections are initialized when a
2349 call is made to build_objfile_section_table (objfile).
2350 This happens in reread_symbols.
2351 At this point, we don't know what file type this is,
2352 so we can't determine what section names are valid. */
2354 if (seen_offset)
2355 gdb_printf (_("%s offset by %s\n"),
2356 (section_addrs.empty ()
2357 ? _(" with all sections")
2358 : _("with other sections")),
2359 paddress (gdbarch, offset));
2360 else if (section_addrs.empty ())
2361 gdb_printf ("\n");
2363 if (from_tty && (!query ("%s", "")))
2364 error (_("Not confirmed."));
2366 objf = symbol_file_add (filename.get (), add_flags, &section_addrs,
2367 flags);
2368 if (!objfile_has_symbols (objf) && objf->per_bfd->minimal_symbol_count <= 0)
2369 warning (_("newly-added symbol file \"%ps\" does not provide any symbols"),
2370 styled_string (file_name_style.style (), filename.get ()));
2372 if (seen_offset)
2373 set_objfile_default_section_offset (objf, section_addrs, offset);
2375 current_program_space->add_target_sections (objf);
2377 /* Getting new symbols may change our opinion about what is
2378 frameless. */
2379 reinit_frame_cache ();
2383 /* This function removes a symbol file that was added via add-symbol-file. */
2385 static void
2386 remove_symbol_file_command (const char *args, int from_tty)
2388 struct objfile *objf = NULL;
2389 struct program_space *pspace = current_program_space;
2391 dont_repeat ();
2393 if (args == NULL)
2394 error (_("remove-symbol-file: no symbol file provided"));
2396 gdb_argv argv (args);
2398 if (strcmp (argv[0], "-a") == 0)
2400 /* Interpret the next argument as an address. */
2401 CORE_ADDR addr;
2403 if (argv[1] == NULL)
2404 error (_("Missing address argument"));
2406 if (argv[2] != NULL)
2407 error (_("Junk after %s"), argv[1]);
2409 addr = parse_and_eval_address (argv[1]);
2411 for (objfile *objfile : current_program_space->objfiles ())
2413 if ((objfile->flags & OBJF_USERLOADED) != 0
2414 && (objfile->flags & OBJF_SHARED) != 0
2415 && objfile->pspace == pspace
2416 && is_addr_in_objfile (addr, objfile))
2418 objf = objfile;
2419 break;
2423 else if (argv[0] != NULL)
2425 /* Interpret the current argument as a file name. */
2427 if (argv[1] != NULL)
2428 error (_("Junk after %s"), argv[0]);
2430 gdb::unique_xmalloc_ptr<char> filename (tilde_expand (argv[0]));
2432 for (objfile *objfile : current_program_space->objfiles ())
2434 if ((objfile->flags & OBJF_USERLOADED) != 0
2435 && (objfile->flags & OBJF_SHARED) != 0
2436 && objfile->pspace == pspace
2437 && filename_cmp (filename.get (), objfile_name (objfile)) == 0)
2439 objf = objfile;
2440 break;
2445 if (objf == NULL)
2446 error (_("No symbol file found"));
2448 if (from_tty
2449 && !query (_("Remove symbol table from file \"%s\"? "),
2450 objfile_name (objf)))
2451 error (_("Not confirmed."));
2453 objf->unlink ();
2454 clear_symtab_users (0);
2457 /* Re-read symbols if a symbol-file has changed. */
2459 void
2460 reread_symbols (int from_tty)
2462 std::vector<struct objfile *> new_objfiles;
2464 /* Check to see if the executable has changed, and if so reopen it. The
2465 executable might not be in the list of objfiles (if the user set
2466 different values for 'exec-file' and 'symbol-file'), and even if it
2467 is, then we use a separate timestamp (within the program_space) to
2468 indicate when the executable was last reloaded. */
2469 reopen_exec_file ();
2471 for (objfile *objfile : current_program_space->objfiles ())
2473 if (objfile->obfd.get () == NULL)
2474 continue;
2476 /* Separate debug objfiles are handled in the main objfile. */
2477 if (objfile->separate_debug_objfile_backlink)
2478 continue;
2480 /* When a in-memory BFD is initially created, it's mtime (as
2481 returned by bfd_get_mtime) is the creation time of the BFD.
2482 However, we call bfd_stat here as we want to see if the
2483 underlying file has changed, and in this case an in-memory BFD
2484 will return an st_mtime of zero, so it appears that the in-memory
2485 file has changed, which isn't what we want here -- this code is
2486 about reloading BFDs that changed on disk.
2488 Just skip any in-memory BFD. */
2489 if (objfile->obfd.get ()->flags & BFD_IN_MEMORY)
2490 continue;
2492 struct stat new_statbuf;
2493 int res = bfd_stat (objfile->obfd.get (), &new_statbuf);
2494 if (res != 0)
2496 /* If this object is from an archive (what you usually create
2497 with `ar', often called a `static library' on most systems,
2498 though a `shared library' on AIX is also an archive), then you
2499 should stat on the archive name, not member name. */
2500 const char *filename;
2501 if (objfile->obfd->my_archive)
2502 filename = bfd_get_filename (objfile->obfd->my_archive);
2503 else
2504 filename = objfile_name (objfile);
2506 warning (_("`%ps' has disappeared; keeping its symbols."),
2507 styled_string (file_name_style.style (), filename));
2508 continue;
2510 time_t new_modtime = new_statbuf.st_mtime;
2511 if (new_modtime != objfile->mtime)
2513 gdb_printf (_("`%ps' has changed; re-reading symbols.\n"),
2514 styled_string (file_name_style.style (),
2515 objfile_name (objfile)));
2517 /* There are various functions like symbol_file_add,
2518 symfile_bfd_open, syms_from_objfile, etc., which might
2519 appear to do what we want. But they have various other
2520 effects which we *don't* want. So we just do stuff
2521 ourselves. We don't worry about mapped files (for one thing,
2522 any mapped file will be out of date). */
2524 /* If we get an error, blow away this objfile (not sure if
2525 that is the correct response for things like shared
2526 libraries). */
2527 objfile_up objfile_holder (objfile);
2529 /* We need to do this whenever any symbols go away. */
2530 clear_symtab_users_cleanup defer_clear_users (0);
2532 /* Keep the calls order approx. the same as in free_objfile. */
2534 /* Free the separate debug objfiles. It will be
2535 automatically recreated by sym_read. */
2536 free_objfile_separate_debug (objfile);
2538 /* Clear the stale source cache. */
2539 forget_cached_source_info ();
2541 /* Remove any references to this objfile in the global
2542 value lists. */
2543 preserve_values (objfile);
2545 /* Nuke all the state that we will re-read. Much of the following
2546 code which sets things to NULL really is necessary to tell
2547 other parts of GDB that there is nothing currently there.
2549 Try to keep the freeing order compatible with free_objfile. */
2551 if (objfile->sf != NULL)
2553 (*objfile->sf->sym_finish) (objfile);
2556 objfile->registry_fields.clear_registry ();
2558 /* Clean up any state BFD has sitting around. */
2560 gdb_bfd_ref_ptr obfd = objfile->obfd;
2561 const char *obfd_filename;
2563 obfd_filename = bfd_get_filename (objfile->obfd.get ());
2564 /* Open the new BFD before freeing the old one, so that
2565 the filename remains live. */
2566 gdb_bfd_ref_ptr temp (gdb_bfd_open (obfd_filename, gnutarget));
2567 objfile->obfd = std::move (temp);
2568 if (objfile->obfd == NULL)
2569 error (_("Can't open %s to read symbols."), obfd_filename);
2572 std::string original_name = objfile->original_name;
2574 /* bfd_openr sets cacheable to true, which is what we want. */
2575 if (!bfd_check_format (objfile->obfd.get (), bfd_object))
2576 error (_("Can't read symbols from %s: %s."), objfile_name (objfile),
2577 bfd_errmsg (bfd_get_error ()));
2579 /* NB: after this call to obstack_free, objfiles_changed
2580 will need to be called (see discussion below). */
2581 obstack_free (&objfile->objfile_obstack, 0);
2582 objfile->sections_start = NULL;
2583 objfile->section_offsets.clear ();
2584 objfile->sect_index_bss = -1;
2585 objfile->sect_index_data = -1;
2586 objfile->sect_index_rodata = -1;
2587 objfile->sect_index_text = -1;
2588 objfile->compunit_symtabs = NULL;
2589 objfile->template_symbols = NULL;
2590 objfile->static_links.reset (nullptr);
2592 /* obstack_init also initializes the obstack so it is
2593 empty. We could use obstack_specify_allocation but
2594 gdb_obstack.h specifies the alloc/dealloc functions. */
2595 obstack_init (&objfile->objfile_obstack);
2597 /* set_objfile_per_bfd potentially allocates the per-bfd
2598 data on the objfile's obstack (if sharing data across
2599 multiple users is not possible), so it's important to
2600 do it *after* the obstack has been initialized. */
2601 set_objfile_per_bfd (objfile);
2603 objfile->original_name
2604 = obstack_strdup (&objfile->objfile_obstack, original_name);
2606 /* Reset the sym_fns pointer. The ELF reader can change it
2607 based on whether .gdb_index is present, and we need it to
2608 start over. PR symtab/15885 */
2609 objfile_set_sym_fns (objfile, find_sym_fns (objfile->obfd.get ()));
2610 objfile->qf.clear ();
2612 build_objfile_section_table (objfile);
2614 /* What the hell is sym_new_init for, anyway? The concept of
2615 distinguishing between the main file and additional files
2616 in this way seems rather dubious. */
2617 if (objfile == current_program_space->symfile_object_file)
2619 (*objfile->sf->sym_new_init) (objfile);
2622 (*objfile->sf->sym_init) (objfile);
2623 clear_complaints ();
2625 objfile->flags &= ~OBJF_PSYMTABS_READ;
2627 /* We are about to read new symbols and potentially also
2628 DWARF information. Some targets may want to pass addresses
2629 read from DWARF DIE's through an adjustment function before
2630 saving them, like MIPS, which may call into
2631 "find_pc_section". When called, that function will make
2632 use of per-objfile program space data.
2634 Since we discarded our section information above, we have
2635 dangling pointers in the per-objfile program space data
2636 structure. Force GDB to update the section mapping
2637 information by letting it know the objfile has changed,
2638 making the dangling pointers point to correct data
2639 again. */
2641 objfiles_changed ();
2643 /* Recompute section offsets and section indices. */
2644 objfile->sf->sym_offsets (objfile, {});
2646 read_symbols (objfile, 0);
2648 if ((objfile->flags & OBJF_READNOW))
2650 const int mainline = objfile->flags & OBJF_MAINLINE;
2651 const int should_print = (print_symbol_loading_p (from_tty, mainline, 1)
2652 && readnow_symbol_files);
2653 if (should_print)
2654 gdb_printf (_("Expanding full symbols from %ps...\n"),
2655 styled_string (file_name_style.style (),
2656 objfile_name (objfile)));
2658 objfile->expand_all_symtabs ();
2661 if (!objfile_has_symbols (objfile))
2663 gdb_stdout->wrap_here (0);
2664 gdb_printf (_("(no debugging symbols found)\n"));
2665 gdb_stdout->wrap_here (0);
2668 /* We're done reading the symbol file; finish off complaints. */
2669 clear_complaints ();
2671 /* Getting new symbols may change our opinion about what is
2672 frameless. */
2674 reinit_frame_cache ();
2676 /* Discard cleanups as symbol reading was successful. */
2677 objfile_holder.release ();
2678 defer_clear_users.release ();
2680 /* If the mtime has changed between the time we set new_modtime
2681 and now, we *want* this to be out of date, so don't call stat
2682 again now. */
2683 objfile->mtime = new_modtime;
2684 init_entry_point_info (objfile);
2686 new_objfiles.push_back (objfile);
2690 if (!new_objfiles.empty ())
2692 clear_symtab_users (0);
2694 /* The registry for each objfile was cleared and
2695 gdb::observers::new_objfile.notify (NULL) has been called by
2696 clear_symtab_users above. Notify the new files now. */
2697 for (auto iter : new_objfiles)
2698 gdb::observers::new_objfile.notify (iter);
2703 struct filename_language
2705 filename_language (const std::string &ext_, enum language lang_)
2706 : ext (ext_), lang (lang_)
2709 std::string ext;
2710 enum language lang;
2713 static std::vector<filename_language> filename_language_table;
2715 /* See symfile.h. */
2717 void
2718 add_filename_language (const char *ext, enum language lang)
2720 gdb_assert (ext != nullptr);
2721 filename_language_table.emplace_back (ext, lang);
2724 static std::string ext_args;
2725 static void
2726 show_ext_args (struct ui_file *file, int from_tty,
2727 struct cmd_list_element *c, const char *value)
2729 gdb_printf (file,
2730 _("Mapping between filename extension "
2731 "and source language is \"%s\".\n"),
2732 value);
2735 static void
2736 set_ext_lang_command (const char *args,
2737 int from_tty, struct cmd_list_element *e)
2739 const char *begin = ext_args.c_str ();
2740 const char *end = ext_args.c_str ();
2742 /* First arg is filename extension, starting with '.' */
2743 if (*end != '.')
2744 error (_("'%s': Filename extension must begin with '.'"), ext_args.c_str ());
2746 /* Find end of first arg. */
2747 while (*end != '\0' && !isspace (*end))
2748 end++;
2750 if (*end == '\0')
2751 error (_("'%s': two arguments required -- "
2752 "filename extension and language"),
2753 ext_args.c_str ());
2755 /* Extract first arg, the extension. */
2756 std::string extension = ext_args.substr (0, end - begin);
2758 /* Find beginning of second arg, which should be a source language. */
2759 begin = skip_spaces (end);
2761 if (*begin == '\0')
2762 error (_("'%s': two arguments required -- "
2763 "filename extension and language"),
2764 ext_args.c_str ());
2766 /* Lookup the language from among those we know. */
2767 language lang = language_enum (begin);
2769 auto it = filename_language_table.begin ();
2770 /* Now lookup the filename extension: do we already know it? */
2771 for (; it != filename_language_table.end (); it++)
2773 if (it->ext == extension)
2774 break;
2777 if (it == filename_language_table.end ())
2779 /* New file extension. */
2780 add_filename_language (extension.data (), lang);
2782 else
2784 /* Redefining a previously known filename extension. */
2786 /* if (from_tty) */
2787 /* query ("Really make files of type %s '%s'?", */
2788 /* ext_args, language_str (lang)); */
2790 it->lang = lang;
2794 static void
2795 info_ext_lang_command (const char *args, int from_tty)
2797 gdb_printf (_("Filename extensions and the languages they represent:"));
2798 gdb_printf ("\n\n");
2799 for (const filename_language &entry : filename_language_table)
2800 gdb_printf ("\t%s\t- %s\n", entry.ext.c_str (),
2801 language_str (entry.lang));
2804 enum language
2805 deduce_language_from_filename (const char *filename)
2807 const char *cp;
2809 if (filename != NULL)
2810 if ((cp = strrchr (filename, '.')) != NULL)
2812 for (const filename_language &entry : filename_language_table)
2813 if (entry.ext == cp)
2814 return entry.lang;
2817 return language_unknown;
2820 /* Allocate and initialize a new symbol table.
2821 CUST is from the result of allocate_compunit_symtab. */
2823 struct symtab *
2824 allocate_symtab (struct compunit_symtab *cust, const char *filename,
2825 const char *filename_for_id)
2827 struct objfile *objfile = cust->objfile ();
2828 struct symtab *symtab
2829 = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct symtab);
2831 symtab->filename = objfile->intern (filename);
2832 symtab->filename_for_id = objfile->intern (filename_for_id);
2833 symtab->fullname = NULL;
2834 symtab->set_language (deduce_language_from_filename (filename));
2836 /* This can be very verbose with lots of headers.
2837 Only print at higher debug levels. */
2838 if (symtab_create_debug >= 2)
2840 /* Be a bit clever with debugging messages, and don't print objfile
2841 every time, only when it changes. */
2842 static std::string last_objfile_name;
2843 const char *this_objfile_name = objfile_name (objfile);
2845 if (last_objfile_name.empty () || last_objfile_name != this_objfile_name)
2847 last_objfile_name = this_objfile_name;
2849 symtab_create_debug_printf_v
2850 ("creating one or more symtabs for objfile %s", this_objfile_name);
2853 symtab_create_debug_printf_v ("created symtab %s for module %s",
2854 host_address_to_string (symtab), filename);
2857 /* Add it to CUST's list of symtabs. */
2858 cust->add_filetab (symtab);
2860 /* Backlink to the containing compunit symtab. */
2861 symtab->set_compunit (cust);
2863 return symtab;
2866 /* Allocate and initialize a new compunit.
2867 NAME is the name of the main source file, if there is one, or some
2868 descriptive text if there are no source files. */
2870 struct compunit_symtab *
2871 allocate_compunit_symtab (struct objfile *objfile, const char *name)
2873 struct compunit_symtab *cu = OBSTACK_ZALLOC (&objfile->objfile_obstack,
2874 struct compunit_symtab);
2875 const char *saved_name;
2877 cu->set_objfile (objfile);
2879 /* The name we record here is only for display/debugging purposes.
2880 Just save the basename to avoid path issues (too long for display,
2881 relative vs absolute, etc.). */
2882 saved_name = lbasename (name);
2883 cu->name = obstack_strdup (&objfile->objfile_obstack, saved_name);
2885 cu->set_debugformat ("unknown");
2887 symtab_create_debug_printf_v ("created compunit symtab %s for %s",
2888 host_address_to_string (cu),
2889 cu->name);
2891 return cu;
2894 /* Hook CU to the objfile it comes from. */
2896 void
2897 add_compunit_symtab_to_objfile (struct compunit_symtab *cu)
2899 cu->next = cu->objfile ()->compunit_symtabs;
2900 cu->objfile ()->compunit_symtabs = cu;
2904 /* Reset all data structures in gdb which may contain references to
2905 symbol table data. */
2907 void
2908 clear_symtab_users (symfile_add_flags add_flags)
2910 /* Someday, we should do better than this, by only blowing away
2911 the things that really need to be blown. */
2913 /* Clear the "current" symtab first, because it is no longer valid.
2914 breakpoint_re_set may try to access the current symtab. */
2915 clear_current_source_symtab_and_line ();
2917 clear_displays ();
2918 clear_last_displayed_sal ();
2919 clear_pc_function_cache ();
2920 gdb::observers::all_objfiles_removed.notify (current_program_space);
2922 /* Now that the various caches have been cleared, we can re_set
2923 our breakpoints without risking it using stale data. */
2924 if ((add_flags & SYMFILE_DEFER_BP_RESET) == 0)
2925 breakpoint_re_set ();
2928 /* OVERLAYS:
2929 The following code implements an abstraction for debugging overlay sections.
2931 The target model is as follows:
2932 1) The gnu linker will permit multiple sections to be mapped into the
2933 same VMA, each with its own unique LMA (or load address).
2934 2) It is assumed that some runtime mechanism exists for mapping the
2935 sections, one by one, from the load address into the VMA address.
2936 3) This code provides a mechanism for gdb to keep track of which
2937 sections should be considered to be mapped from the VMA to the LMA.
2938 This information is used for symbol lookup, and memory read/write.
2939 For instance, if a section has been mapped then its contents
2940 should be read from the VMA, otherwise from the LMA.
2942 Two levels of debugger support for overlays are available. One is
2943 "manual", in which the debugger relies on the user to tell it which
2944 overlays are currently mapped. This level of support is
2945 implemented entirely in the core debugger, and the information about
2946 whether a section is mapped is kept in the objfile->obj_section table.
2948 The second level of support is "automatic", and is only available if
2949 the target-specific code provides functionality to read the target's
2950 overlay mapping table, and translate its contents for the debugger
2951 (by updating the mapped state information in the obj_section tables).
2953 The interface is as follows:
2954 User commands:
2955 overlay map <name> -- tell gdb to consider this section mapped
2956 overlay unmap <name> -- tell gdb to consider this section unmapped
2957 overlay list -- list the sections that GDB thinks are mapped
2958 overlay read-target -- get the target's state of what's mapped
2959 overlay off/manual/auto -- set overlay debugging state
2960 Functional interface:
2961 find_pc_mapped_section(pc): if the pc is in the range of a mapped
2962 section, return that section.
2963 find_pc_overlay(pc): find any overlay section that contains
2964 the pc, either in its VMA or its LMA
2965 section_is_mapped(sect): true if overlay is marked as mapped
2966 section_is_overlay(sect): true if section's VMA != LMA
2967 pc_in_mapped_range(pc,sec): true if pc belongs to section's VMA
2968 pc_in_unmapped_range(...): true if pc belongs to section's LMA
2969 sections_overlap(sec1, sec2): true if mapped sec1 and sec2 ranges overlap
2970 overlay_mapped_address(...): map an address from section's LMA to VMA
2971 overlay_unmapped_address(...): map an address from section's VMA to LMA
2972 symbol_overlayed_address(...): Return a "current" address for symbol:
2973 either in VMA or LMA depending on whether
2974 the symbol's section is currently mapped. */
2976 /* Overlay debugging state: */
2978 enum overlay_debugging_state overlay_debugging = ovly_off;
2979 int overlay_cache_invalid = 0; /* True if need to refresh mapped state. */
2981 /* Function: section_is_overlay (SECTION)
2982 Returns true if SECTION has VMA not equal to LMA, ie.
2983 SECTION is loaded at an address different from where it will "run". */
2986 section_is_overlay (struct obj_section *section)
2988 if (overlay_debugging && section)
2990 asection *bfd_section = section->the_bfd_section;
2992 if (bfd_section_lma (bfd_section) != 0
2993 && bfd_section_lma (bfd_section) != bfd_section_vma (bfd_section))
2994 return 1;
2997 return 0;
3000 /* Function: overlay_invalidate_all (void)
3001 Invalidate the mapped state of all overlay sections (mark it as stale). */
3003 static void
3004 overlay_invalidate_all (void)
3006 for (objfile *objfile : current_program_space->objfiles ())
3007 for (obj_section *sect : objfile->sections ())
3008 if (section_is_overlay (sect))
3009 sect->ovly_mapped = -1;
3012 /* Function: section_is_mapped (SECTION)
3013 Returns true if section is an overlay, and is currently mapped.
3015 Access to the ovly_mapped flag is restricted to this function, so
3016 that we can do automatic update. If the global flag
3017 OVERLAY_CACHE_INVALID is set (by wait_for_inferior), then call
3018 overlay_invalidate_all. If the mapped state of the particular
3019 section is stale, then call TARGET_OVERLAY_UPDATE to refresh it. */
3022 section_is_mapped (struct obj_section *osect)
3024 struct gdbarch *gdbarch;
3026 if (osect == 0 || !section_is_overlay (osect))
3027 return 0;
3029 switch (overlay_debugging)
3031 default:
3032 case ovly_off:
3033 return 0; /* overlay debugging off */
3034 case ovly_auto: /* overlay debugging automatic */
3035 /* Unles there is a gdbarch_overlay_update function,
3036 there's really nothing useful to do here (can't really go auto). */
3037 gdbarch = osect->objfile->arch ();
3038 if (gdbarch_overlay_update_p (gdbarch))
3040 if (overlay_cache_invalid)
3042 overlay_invalidate_all ();
3043 overlay_cache_invalid = 0;
3045 if (osect->ovly_mapped == -1)
3046 gdbarch_overlay_update (gdbarch, osect);
3048 [[fallthrough]];
3049 case ovly_on: /* overlay debugging manual */
3050 return osect->ovly_mapped == 1;
3054 /* Function: pc_in_unmapped_range
3055 If PC falls into the lma range of SECTION, return true, else false. */
3057 bool
3058 pc_in_unmapped_range (CORE_ADDR pc, struct obj_section *section)
3060 if (section_is_overlay (section))
3062 asection *bfd_section = section->the_bfd_section;
3064 /* We assume the LMA is relocated by the same offset as the VMA. */
3065 bfd_vma size = bfd_section_size (bfd_section);
3066 CORE_ADDR offset = section->offset ();
3068 if (bfd_section_lma (bfd_section) + offset <= pc
3069 && pc < bfd_section_lma (bfd_section) + offset + size)
3070 return true;
3073 return false;
3076 /* Function: pc_in_mapped_range
3077 If PC falls into the vma range of SECTION, return true, else false. */
3079 bool
3080 pc_in_mapped_range (CORE_ADDR pc, struct obj_section *section)
3082 if (section_is_overlay (section))
3084 if (section->addr () <= pc
3085 && pc < section->endaddr ())
3086 return true;
3089 return false;
3092 /* Return true if the mapped ranges of sections A and B overlap, false
3093 otherwise. */
3095 static int
3096 sections_overlap (struct obj_section *a, struct obj_section *b)
3098 CORE_ADDR a_start = a->addr ();
3099 CORE_ADDR a_end = a->endaddr ();
3100 CORE_ADDR b_start = b->addr ();
3101 CORE_ADDR b_end = b->endaddr ();
3103 return (a_start < b_end && b_start < a_end);
3106 /* Function: overlay_unmapped_address (PC, SECTION)
3107 Returns the address corresponding to PC in the unmapped (load) range.
3108 May be the same as PC. */
3110 CORE_ADDR
3111 overlay_unmapped_address (CORE_ADDR pc, struct obj_section *section)
3113 if (section_is_overlay (section) && pc_in_mapped_range (pc, section))
3115 asection *bfd_section = section->the_bfd_section;
3117 return (pc + bfd_section_lma (bfd_section)
3118 - bfd_section_vma (bfd_section));
3121 return pc;
3124 /* Function: overlay_mapped_address (PC, SECTION)
3125 Returns the address corresponding to PC in the mapped (runtime) range.
3126 May be the same as PC. */
3128 CORE_ADDR
3129 overlay_mapped_address (CORE_ADDR pc, struct obj_section *section)
3131 if (section_is_overlay (section) && pc_in_unmapped_range (pc, section))
3133 asection *bfd_section = section->the_bfd_section;
3135 return (pc + bfd_section_vma (bfd_section)
3136 - bfd_section_lma (bfd_section));
3139 return pc;
3142 /* Function: symbol_overlayed_address
3143 Return one of two addresses (relative to the VMA or to the LMA),
3144 depending on whether the section is mapped or not. */
3146 CORE_ADDR
3147 symbol_overlayed_address (CORE_ADDR address, struct obj_section *section)
3149 if (overlay_debugging)
3151 /* If the symbol has no section, just return its regular address. */
3152 if (section == 0)
3153 return address;
3154 /* If the symbol's section is not an overlay, just return its
3155 address. */
3156 if (!section_is_overlay (section))
3157 return address;
3158 /* If the symbol's section is mapped, just return its address. */
3159 if (section_is_mapped (section))
3160 return address;
3162 * HOWEVER: if the symbol is in an overlay section which is NOT mapped,
3163 * then return its LOADED address rather than its vma address!!
3165 return overlay_unmapped_address (address, section);
3167 return address;
3170 /* Function: find_pc_overlay (PC)
3171 Return the best-match overlay section for PC:
3172 If PC matches a mapped overlay section's VMA, return that section.
3173 Else if PC matches an unmapped section's VMA, return that section.
3174 Else if PC matches an unmapped section's LMA, return that section. */
3176 struct obj_section *
3177 find_pc_overlay (CORE_ADDR pc)
3179 struct obj_section *best_match = NULL;
3181 if (overlay_debugging)
3183 for (objfile *objfile : current_program_space->objfiles ())
3184 for (obj_section *osect : objfile->sections ())
3185 if (section_is_overlay (osect))
3187 if (pc_in_mapped_range (pc, osect))
3189 if (section_is_mapped (osect))
3190 return osect;
3191 else
3192 best_match = osect;
3194 else if (pc_in_unmapped_range (pc, osect))
3195 best_match = osect;
3198 return best_match;
3201 /* Function: find_pc_mapped_section (PC)
3202 If PC falls into the VMA address range of an overlay section that is
3203 currently marked as MAPPED, return that section. Else return NULL. */
3205 struct obj_section *
3206 find_pc_mapped_section (CORE_ADDR pc)
3208 if (overlay_debugging)
3210 for (objfile *objfile : current_program_space->objfiles ())
3211 for (obj_section *osect : objfile->sections ())
3212 if (pc_in_mapped_range (pc, osect) && section_is_mapped (osect))
3213 return osect;
3216 return NULL;
3219 /* Function: list_overlays_command
3220 Print a list of mapped sections and their PC ranges. */
3222 static void
3223 list_overlays_command (const char *args, int from_tty)
3225 int nmapped = 0;
3227 if (overlay_debugging)
3229 for (objfile *objfile : current_program_space->objfiles ())
3230 for (obj_section *osect : objfile->sections ())
3231 if (section_is_mapped (osect))
3233 struct gdbarch *gdbarch = objfile->arch ();
3234 const char *name;
3235 bfd_vma lma, vma;
3236 int size;
3238 vma = bfd_section_vma (osect->the_bfd_section);
3239 lma = bfd_section_lma (osect->the_bfd_section);
3240 size = bfd_section_size (osect->the_bfd_section);
3241 name = bfd_section_name (osect->the_bfd_section);
3243 gdb_printf ("Section %s, loaded at ", name);
3244 gdb_puts (paddress (gdbarch, lma));
3245 gdb_puts (" - ");
3246 gdb_puts (paddress (gdbarch, lma + size));
3247 gdb_printf (", mapped at ");
3248 gdb_puts (paddress (gdbarch, vma));
3249 gdb_puts (" - ");
3250 gdb_puts (paddress (gdbarch, vma + size));
3251 gdb_puts ("\n");
3253 nmapped++;
3256 if (nmapped == 0)
3257 gdb_printf (_("No sections are mapped.\n"));
3260 /* Function: map_overlay_command
3261 Mark the named section as mapped (ie. residing at its VMA address). */
3263 static void
3264 map_overlay_command (const char *args, int from_tty)
3266 if (!overlay_debugging)
3267 error (_("Overlay debugging not enabled. Use "
3268 "either the 'overlay auto' or\n"
3269 "the 'overlay manual' command."));
3271 if (args == 0 || *args == 0)
3272 error (_("Argument required: name of an overlay section"));
3274 /* First, find a section matching the user supplied argument. */
3275 for (objfile *obj_file : current_program_space->objfiles ())
3276 for (obj_section *sec : obj_file->sections ())
3277 if (!strcmp (bfd_section_name (sec->the_bfd_section), args))
3279 /* Now, check to see if the section is an overlay. */
3280 if (!section_is_overlay (sec))
3281 continue; /* not an overlay section */
3283 /* Mark the overlay as "mapped". */
3284 sec->ovly_mapped = 1;
3286 /* Next, make a pass and unmap any sections that are
3287 overlapped by this new section: */
3288 for (objfile *objfile2 : current_program_space->objfiles ())
3289 for (obj_section *sec2 : objfile2->sections ())
3290 if (sec2->ovly_mapped && sec != sec2 && sections_overlap (sec,
3291 sec2))
3293 if (info_verbose)
3294 gdb_printf (_("Note: section %s unmapped by overlap\n"),
3295 bfd_section_name (sec2->the_bfd_section));
3296 sec2->ovly_mapped = 0; /* sec2 overlaps sec: unmap sec2. */
3298 return;
3300 error (_("No overlay section called %s"), args);
3303 /* Function: unmap_overlay_command
3304 Mark the overlay section as unmapped
3305 (ie. resident in its LMA address range, rather than the VMA range). */
3307 static void
3308 unmap_overlay_command (const char *args, int from_tty)
3310 if (!overlay_debugging)
3311 error (_("Overlay debugging not enabled. "
3312 "Use either the 'overlay auto' or\n"
3313 "the 'overlay manual' command."));
3315 if (args == 0 || *args == 0)
3316 error (_("Argument required: name of an overlay section"));
3318 /* First, find a section matching the user supplied argument. */
3319 for (objfile *objfile : current_program_space->objfiles ())
3320 for (obj_section *sec : objfile->sections ())
3321 if (!strcmp (bfd_section_name (sec->the_bfd_section), args))
3323 if (!sec->ovly_mapped)
3324 error (_("Section %s is not mapped"), args);
3325 sec->ovly_mapped = 0;
3326 return;
3328 error (_("No overlay section called %s"), args);
3331 /* Function: overlay_auto_command
3332 A utility command to turn on overlay debugging.
3333 Possibly this should be done via a set/show command. */
3335 static void
3336 overlay_auto_command (const char *args, int from_tty)
3338 overlay_debugging = ovly_auto;
3339 enable_overlay_breakpoints ();
3340 if (info_verbose)
3341 gdb_printf (_("Automatic overlay debugging enabled."));
3344 /* Function: overlay_manual_command
3345 A utility command to turn on overlay debugging.
3346 Possibly this should be done via a set/show command. */
3348 static void
3349 overlay_manual_command (const char *args, int from_tty)
3351 overlay_debugging = ovly_on;
3352 disable_overlay_breakpoints ();
3353 if (info_verbose)
3354 gdb_printf (_("Overlay debugging enabled."));
3357 /* Function: overlay_off_command
3358 A utility command to turn on overlay debugging.
3359 Possibly this should be done via a set/show command. */
3361 static void
3362 overlay_off_command (const char *args, int from_tty)
3364 overlay_debugging = ovly_off;
3365 disable_overlay_breakpoints ();
3366 if (info_verbose)
3367 gdb_printf (_("Overlay debugging disabled."));
3370 static void
3371 overlay_load_command (const char *args, int from_tty)
3373 struct gdbarch *gdbarch = get_current_arch ();
3375 if (gdbarch_overlay_update_p (gdbarch))
3376 gdbarch_overlay_update (gdbarch, NULL);
3377 else
3378 error (_("This target does not know how to read its overlay state."));
3381 /* Command list chain containing all defined "overlay" subcommands. */
3382 static struct cmd_list_element *overlaylist;
3384 /* Target Overlays for the "Simplest" overlay manager:
3386 This is GDB's default target overlay layer. It works with the
3387 minimal overlay manager supplied as an example by Cygnus. The
3388 entry point is via a function pointer "gdbarch_overlay_update",
3389 so targets that use a different runtime overlay manager can
3390 substitute their own overlay_update function and take over the
3391 function pointer.
3393 The overlay_update function pokes around in the target's data structures
3394 to see what overlays are mapped, and updates GDB's overlay mapping with
3395 this information.
3397 In this simple implementation, the target data structures are as follows:
3398 unsigned _novlys; /# number of overlay sections #/
3399 unsigned _ovly_table[_novlys][4] = {
3400 {VMA, OSIZE, LMA, MAPPED}, /# one entry per overlay section #/
3401 {..., ..., ..., ...},
3403 unsigned _novly_regions; /# number of overlay regions #/
3404 unsigned _ovly_region_table[_novly_regions][3] = {
3405 {VMA, OSIZE, MAPPED_TO_LMA}, /# one entry per overlay region #/
3406 {..., ..., ...},
3408 These functions will attempt to update GDB's mappedness state in the
3409 symbol section table, based on the target's mappedness state.
3411 To do this, we keep a cached copy of the target's _ovly_table, and
3412 attempt to detect when the cached copy is invalidated. The main
3413 entry point is "simple_overlay_update(SECT), which looks up SECT in
3414 the cached table and re-reads only the entry for that section from
3415 the target (whenever possible). */
3417 /* Cached, dynamically allocated copies of the target data structures: */
3418 static unsigned (*cache_ovly_table)[4] = 0;
3419 static unsigned cache_novlys = 0;
3420 static CORE_ADDR cache_ovly_table_base = 0;
3421 enum ovly_index
3423 VMA, OSIZE, LMA, MAPPED
3426 /* Throw away the cached copy of _ovly_table. */
3428 static void
3429 simple_free_overlay_table (void)
3431 xfree (cache_ovly_table);
3432 cache_novlys = 0;
3433 cache_ovly_table = NULL;
3434 cache_ovly_table_base = 0;
3437 /* Read an array of ints of size SIZE from the target into a local buffer.
3438 Convert to host order. int LEN is number of ints. */
3440 static void
3441 read_target_long_array (CORE_ADDR memaddr, unsigned int *myaddr,
3442 int len, int size, enum bfd_endian byte_order)
3444 /* FIXME (alloca): Not safe if array is very large. */
3445 gdb_byte *buf = (gdb_byte *) alloca (len * size);
3446 int i;
3448 read_memory (memaddr, buf, len * size);
3449 for (i = 0; i < len; i++)
3450 myaddr[i] = extract_unsigned_integer (size * i + buf, size, byte_order);
3453 /* Find and grab a copy of the target _ovly_table
3454 (and _novlys, which is needed for the table's size). */
3456 static int
3457 simple_read_overlay_table (void)
3459 struct bound_minimal_symbol novlys_msym;
3460 struct bound_minimal_symbol ovly_table_msym;
3461 struct gdbarch *gdbarch;
3462 int word_size;
3463 enum bfd_endian byte_order;
3465 simple_free_overlay_table ();
3466 novlys_msym = lookup_minimal_symbol ("_novlys", NULL, NULL);
3467 if (! novlys_msym.minsym)
3469 error (_("Error reading inferior's overlay table: "
3470 "couldn't find `_novlys' variable\n"
3471 "in inferior. Use `overlay manual' mode."));
3472 return 0;
3475 ovly_table_msym = lookup_bound_minimal_symbol ("_ovly_table");
3476 if (! ovly_table_msym.minsym)
3478 error (_("Error reading inferior's overlay table: couldn't find "
3479 "`_ovly_table' array\n"
3480 "in inferior. Use `overlay manual' mode."));
3481 return 0;
3484 gdbarch = ovly_table_msym.objfile->arch ();
3485 word_size = gdbarch_long_bit (gdbarch) / TARGET_CHAR_BIT;
3486 byte_order = gdbarch_byte_order (gdbarch);
3488 cache_novlys = read_memory_integer (novlys_msym.value_address (),
3489 4, byte_order);
3490 cache_ovly_table
3491 = (unsigned int (*)[4]) xmalloc (cache_novlys * sizeof (*cache_ovly_table));
3492 cache_ovly_table_base = ovly_table_msym.value_address ();
3493 read_target_long_array (cache_ovly_table_base,
3494 (unsigned int *) cache_ovly_table,
3495 cache_novlys * 4, word_size, byte_order);
3497 return 1; /* SUCCESS */
3500 /* Function: simple_overlay_update_1
3501 A helper function for simple_overlay_update. Assuming a cached copy
3502 of _ovly_table exists, look through it to find an entry whose vma,
3503 lma and size match those of OSECT. Re-read the entry and make sure
3504 it still matches OSECT (else the table may no longer be valid).
3505 Set OSECT's mapped state to match the entry. Return: 1 for
3506 success, 0 for failure. */
3508 static int
3509 simple_overlay_update_1 (struct obj_section *osect)
3511 int i;
3512 asection *bsect = osect->the_bfd_section;
3513 struct gdbarch *gdbarch = osect->objfile->arch ();
3514 int word_size = gdbarch_long_bit (gdbarch) / TARGET_CHAR_BIT;
3515 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
3517 for (i = 0; i < cache_novlys; i++)
3518 if (cache_ovly_table[i][VMA] == bfd_section_vma (bsect)
3519 && cache_ovly_table[i][LMA] == bfd_section_lma (bsect))
3521 read_target_long_array (cache_ovly_table_base + i * word_size,
3522 (unsigned int *) cache_ovly_table[i],
3523 4, word_size, byte_order);
3524 if (cache_ovly_table[i][VMA] == bfd_section_vma (bsect)
3525 && cache_ovly_table[i][LMA] == bfd_section_lma (bsect))
3527 osect->ovly_mapped = cache_ovly_table[i][MAPPED];
3528 return 1;
3530 else /* Warning! Warning! Target's ovly table has changed! */
3531 return 0;
3533 return 0;
3536 /* Function: simple_overlay_update
3537 If OSECT is NULL, then update all sections' mapped state
3538 (after re-reading the entire target _ovly_table).
3539 If OSECT is non-NULL, then try to find a matching entry in the
3540 cached ovly_table and update only OSECT's mapped state.
3541 If a cached entry can't be found or the cache isn't valid, then
3542 re-read the entire cache, and go ahead and update all sections. */
3544 void
3545 simple_overlay_update (struct obj_section *osect)
3547 /* Were we given an osect to look up? NULL means do all of them. */
3548 if (osect)
3549 /* Have we got a cached copy of the target's overlay table? */
3550 if (cache_ovly_table != NULL)
3552 /* Does its cached location match what's currently in the
3553 symtab? */
3554 struct bound_minimal_symbol minsym
3555 = lookup_minimal_symbol ("_ovly_table", NULL, NULL);
3557 if (minsym.minsym == NULL)
3558 error (_("Error reading inferior's overlay table: couldn't "
3559 "find `_ovly_table' array\n"
3560 "in inferior. Use `overlay manual' mode."));
3562 if (cache_ovly_table_base == minsym.value_address ())
3563 /* Then go ahead and try to look up this single section in
3564 the cache. */
3565 if (simple_overlay_update_1 (osect))
3566 /* Found it! We're done. */
3567 return;
3570 /* Cached table no good: need to read the entire table anew.
3571 Or else we want all the sections, in which case it's actually
3572 more efficient to read the whole table in one block anyway. */
3574 if (! simple_read_overlay_table ())
3575 return;
3577 /* Now may as well update all sections, even if only one was requested. */
3578 for (objfile *objfile : current_program_space->objfiles ())
3579 for (obj_section *sect : objfile->sections ())
3580 if (section_is_overlay (sect))
3582 int i;
3583 asection *bsect = sect->the_bfd_section;
3585 for (i = 0; i < cache_novlys; i++)
3586 if (cache_ovly_table[i][VMA] == bfd_section_vma (bsect)
3587 && cache_ovly_table[i][LMA] == bfd_section_lma (bsect))
3588 { /* obj_section matches i'th entry in ovly_table. */
3589 sect->ovly_mapped = cache_ovly_table[i][MAPPED];
3590 break; /* finished with inner for loop: break out. */
3595 /* Default implementation for sym_relocate. */
3597 bfd_byte *
3598 default_symfile_relocate (struct objfile *objfile, asection *sectp,
3599 bfd_byte *buf)
3601 /* Use sectp->owner instead of objfile->obfd. sectp may point to a
3602 DWO file. */
3603 bfd *abfd = sectp->owner;
3605 /* We're only interested in sections with relocation
3606 information. */
3607 if ((sectp->flags & SEC_RELOC) == 0)
3608 return NULL;
3610 /* We will handle section offsets properly elsewhere, so relocate as if
3611 all sections begin at 0. */
3612 for (asection *sect : gdb_bfd_sections (abfd))
3614 sect->output_section = sect;
3615 sect->output_offset = 0;
3618 return bfd_simple_get_relocated_section_contents (abfd, sectp, buf, NULL);
3621 /* Relocate the contents of a debug section SECTP in ABFD. The
3622 contents are stored in BUF if it is non-NULL, or returned in a
3623 malloc'd buffer otherwise.
3625 For some platforms and debug info formats, shared libraries contain
3626 relocations against the debug sections (particularly for DWARF-2;
3627 one affected platform is PowerPC GNU/Linux, although it depends on
3628 the version of the linker in use). Also, ELF object files naturally
3629 have unresolved relocations for their debug sections. We need to apply
3630 the relocations in order to get the locations of symbols correct.
3631 Another example that may require relocation processing, is the
3632 DWARF-2 .eh_frame section in .o files, although it isn't strictly a
3633 debug section. */
3635 bfd_byte *
3636 symfile_relocate_debug_section (struct objfile *objfile,
3637 asection *sectp, bfd_byte *buf)
3639 gdb_assert (objfile->sf->sym_relocate);
3641 return (*objfile->sf->sym_relocate) (objfile, sectp, buf);
3644 symfile_segment_data_up
3645 get_symfile_segment_data (bfd *abfd)
3647 const struct sym_fns *sf = find_sym_fns (abfd);
3649 if (sf == NULL)
3650 return NULL;
3652 return sf->sym_segments (abfd);
3655 /* Given:
3656 - DATA, containing segment addresses from the object file ABFD, and
3657 the mapping from ABFD's sections onto the segments that own them,
3659 - SEGMENT_BASES[0 .. NUM_SEGMENT_BASES - 1], holding the actual
3660 segment addresses reported by the target,
3661 store the appropriate offsets for each section in OFFSETS.
3663 If there are fewer entries in SEGMENT_BASES than there are segments
3664 in DATA, then apply SEGMENT_BASES' last entry to all the segments.
3666 If there are more entries, then ignore the extra. The target may
3667 not be able to distinguish between an empty data segment and a
3668 missing data segment; a missing text segment is less plausible. */
3671 symfile_map_offsets_to_segments (bfd *abfd,
3672 const struct symfile_segment_data *data,
3673 section_offsets &offsets,
3674 int num_segment_bases,
3675 const CORE_ADDR *segment_bases)
3677 int i;
3678 asection *sect;
3680 /* It doesn't make sense to call this function unless you have some
3681 segment base addresses. */
3682 gdb_assert (num_segment_bases > 0);
3684 /* If we do not have segment mappings for the object file, we
3685 can not relocate it by segments. */
3686 gdb_assert (data != NULL);
3687 gdb_assert (data->segments.size () > 0);
3689 for (i = 0, sect = abfd->sections; sect != NULL; i++, sect = sect->next)
3691 int which = data->segment_info[i];
3693 gdb_assert (0 <= which && which <= data->segments.size ());
3695 /* Don't bother computing offsets for sections that aren't
3696 loaded as part of any segment. */
3697 if (! which)
3698 continue;
3700 /* Use the last SEGMENT_BASES entry as the address of any extra
3701 segments mentioned in DATA->segment_info. */
3702 if (which > num_segment_bases)
3703 which = num_segment_bases;
3705 offsets[i] = segment_bases[which - 1] - data->segments[which - 1].base;
3708 return 1;
3711 static void
3712 symfile_find_segment_sections (struct objfile *objfile)
3714 bfd *abfd = objfile->obfd.get ();
3715 int i;
3716 asection *sect;
3718 symfile_segment_data_up data = get_symfile_segment_data (abfd);
3719 if (data == NULL)
3720 return;
3722 if (data->segments.size () != 1 && data->segments.size () != 2)
3723 return;
3725 for (i = 0, sect = abfd->sections; sect != NULL; i++, sect = sect->next)
3727 int which = data->segment_info[i];
3729 if (which == 1)
3731 if (objfile->sect_index_text == -1)
3732 objfile->sect_index_text = sect->index;
3734 if (objfile->sect_index_rodata == -1)
3735 objfile->sect_index_rodata = sect->index;
3737 else if (which == 2)
3739 if (objfile->sect_index_data == -1)
3740 objfile->sect_index_data = sect->index;
3742 if (objfile->sect_index_bss == -1)
3743 objfile->sect_index_bss = sect->index;
3748 /* Listen for free_objfile events. */
3750 static void
3751 symfile_free_objfile (struct objfile *objfile)
3753 /* Remove the target sections owned by this objfile. */
3754 objfile->pspace->remove_target_sections (objfile);
3757 /* Wrapper around the quick_symbol_functions expand_symtabs_matching "method".
3758 Expand all symtabs that match the specified criteria.
3759 See quick_symbol_functions.expand_symtabs_matching for details. */
3761 bool
3762 expand_symtabs_matching
3763 (gdb::function_view<expand_symtabs_file_matcher_ftype> file_matcher,
3764 const lookup_name_info &lookup_name,
3765 gdb::function_view<expand_symtabs_symbol_matcher_ftype> symbol_matcher,
3766 gdb::function_view<expand_symtabs_exp_notify_ftype> expansion_notify,
3767 block_search_flags search_flags,
3768 enum search_domain kind)
3770 for (objfile *objfile : current_program_space->objfiles ())
3771 if (!objfile->expand_symtabs_matching (file_matcher,
3772 &lookup_name,
3773 symbol_matcher,
3774 expansion_notify,
3775 search_flags,
3776 UNDEF_DOMAIN,
3777 kind))
3778 return false;
3779 return true;
3782 /* Wrapper around the quick_symbol_functions map_symbol_filenames "method".
3783 Map function FUN over every file.
3784 See quick_symbol_functions.map_symbol_filenames for details. */
3786 void
3787 map_symbol_filenames (gdb::function_view<symbol_filename_ftype> fun,
3788 bool need_fullname)
3790 for (objfile *objfile : current_program_space->objfiles ())
3791 objfile->map_symbol_filenames (fun, need_fullname);
3794 #if GDB_SELF_TEST
3796 namespace selftests {
3797 namespace filename_language {
3799 static void test_filename_language ()
3801 /* This test messes up the filename_language_table global. */
3802 scoped_restore restore_flt = make_scoped_restore (&filename_language_table);
3804 /* Test deducing an unknown extension. */
3805 language lang = deduce_language_from_filename ("myfile.blah");
3806 SELF_CHECK (lang == language_unknown);
3808 /* Test deducing a known extension. */
3809 lang = deduce_language_from_filename ("myfile.c");
3810 SELF_CHECK (lang == language_c);
3812 /* Test adding a new extension using the internal API. */
3813 add_filename_language (".blah", language_pascal);
3814 lang = deduce_language_from_filename ("myfile.blah");
3815 SELF_CHECK (lang == language_pascal);
3818 static void
3819 test_set_ext_lang_command ()
3821 /* This test messes up the filename_language_table global. */
3822 scoped_restore restore_flt = make_scoped_restore (&filename_language_table);
3824 /* Confirm that the .hello extension is not known. */
3825 language lang = deduce_language_from_filename ("cake.hello");
3826 SELF_CHECK (lang == language_unknown);
3828 /* Test adding a new extension using the CLI command. */
3829 ext_args = ".hello rust";
3830 set_ext_lang_command (NULL, 1, NULL);
3832 lang = deduce_language_from_filename ("cake.hello");
3833 SELF_CHECK (lang == language_rust);
3835 /* Test overriding an existing extension using the CLI command. */
3836 int size_before = filename_language_table.size ();
3837 ext_args = ".hello pascal";
3838 set_ext_lang_command (NULL, 1, NULL);
3839 int size_after = filename_language_table.size ();
3841 lang = deduce_language_from_filename ("cake.hello");
3842 SELF_CHECK (lang == language_pascal);
3843 SELF_CHECK (size_before == size_after);
3846 } /* namespace filename_language */
3847 } /* namespace selftests */
3849 #endif /* GDB_SELF_TEST */
3851 void _initialize_symfile ();
3852 void
3853 _initialize_symfile ()
3855 struct cmd_list_element *c;
3857 gdb::observers::free_objfile.attach (symfile_free_objfile, "symfile");
3859 #define READNOW_READNEVER_HELP \
3860 "The '-readnow' option will cause GDB to read the entire symbol file\n\
3861 immediately. This makes the command slower, but may make future operations\n\
3862 faster.\n\
3863 The '-readnever' option will prevent GDB from reading the symbol file's\n\
3864 symbolic debug information."
3866 c = add_cmd ("symbol-file", class_files, symbol_file_command, _("\
3867 Load symbol table from executable file FILE.\n\
3868 Usage: symbol-file [-readnow | -readnever] [-o OFF] FILE\n\
3869 OFF is an optional offset which is added to each section address.\n\
3870 The `file' command can also load symbol tables, as well as setting the file\n\
3871 to execute.\n" READNOW_READNEVER_HELP), &cmdlist);
3872 set_cmd_completer (c, filename_completer);
3874 c = add_cmd ("add-symbol-file", class_files, add_symbol_file_command, _("\
3875 Load symbols from FILE, assuming FILE has been dynamically loaded.\n\
3876 Usage: add-symbol-file FILE [-readnow | -readnever] [-o OFF] [ADDR] \
3877 [-s SECT-NAME SECT-ADDR]...\n\
3878 ADDR is the starting address of the file's text.\n\
3879 Each '-s' argument provides a section name and address, and\n\
3880 should be specified if the data and bss segments are not contiguous\n\
3881 with the text. SECT-NAME is a section name to be loaded at SECT-ADDR.\n\
3882 OFF is an optional offset which is added to the default load addresses\n\
3883 of all sections for which no other address was specified.\n"
3884 READNOW_READNEVER_HELP),
3885 &cmdlist);
3886 set_cmd_completer (c, filename_completer);
3888 c = add_cmd ("remove-symbol-file", class_files,
3889 remove_symbol_file_command, _("\
3890 Remove a symbol file added via the add-symbol-file command.\n\
3891 Usage: remove-symbol-file FILENAME\n\
3892 remove-symbol-file -a ADDRESS\n\
3893 The file to remove can be identified by its filename or by an address\n\
3894 that lies within the boundaries of this symbol file in memory."),
3895 &cmdlist);
3897 c = add_cmd ("load", class_files, load_command, _("\
3898 Dynamically load FILE into the running program.\n\
3899 FILE symbols are recorded for access from GDB.\n\
3900 Usage: load [FILE] [OFFSET]\n\
3901 An optional load OFFSET may also be given as a literal address.\n\
3902 When OFFSET is provided, FILE must also be provided. FILE can be provided\n\
3903 on its own."), &cmdlist);
3904 set_cmd_completer (c, filename_completer);
3906 cmd_list_element *overlay_cmd
3907 = add_basic_prefix_cmd ("overlay", class_support,
3908 _("Commands for debugging overlays."), &overlaylist,
3909 0, &cmdlist);
3911 add_com_alias ("ovly", overlay_cmd, class_support, 1);
3912 add_com_alias ("ov", overlay_cmd, class_support, 1);
3914 add_cmd ("map-overlay", class_support, map_overlay_command,
3915 _("Assert that an overlay section is mapped."), &overlaylist);
3917 add_cmd ("unmap-overlay", class_support, unmap_overlay_command,
3918 _("Assert that an overlay section is unmapped."), &overlaylist);
3920 add_cmd ("list-overlays", class_support, list_overlays_command,
3921 _("List mappings of overlay sections."), &overlaylist);
3923 add_cmd ("manual", class_support, overlay_manual_command,
3924 _("Enable overlay debugging."), &overlaylist);
3925 add_cmd ("off", class_support, overlay_off_command,
3926 _("Disable overlay debugging."), &overlaylist);
3927 add_cmd ("auto", class_support, overlay_auto_command,
3928 _("Enable automatic overlay debugging."), &overlaylist);
3929 add_cmd ("load-target", class_support, overlay_load_command,
3930 _("Read the overlay mapping state from the target."), &overlaylist);
3932 /* Filename extension to source language lookup table: */
3933 add_setshow_string_noescape_cmd ("extension-language", class_files,
3934 &ext_args, _("\
3935 Set mapping between filename extension and source language."), _("\
3936 Show mapping between filename extension and source language."), _("\
3937 Usage: set extension-language .foo bar"),
3938 set_ext_lang_command,
3939 show_ext_args,
3940 &setlist, &showlist);
3942 add_info ("extensions", info_ext_lang_command,
3943 _("All filename extensions associated with a source language."));
3945 add_setshow_optional_filename_cmd ("debug-file-directory", class_support,
3946 &debug_file_directory, _("\
3947 Set the directories where separate debug symbols are searched for."), _("\
3948 Show the directories where separate debug symbols are searched for."), _("\
3949 Separate debug symbols are first searched for in the same\n\
3950 directory as the binary, then in the `" DEBUG_SUBDIRECTORY "' subdirectory,\n\
3951 and lastly at the path of the directory of the binary with\n\
3952 each global debug-file-directory component prepended."),
3953 NULL,
3954 show_debug_file_directory,
3955 &setlist, &showlist);
3957 add_setshow_enum_cmd ("symbol-loading", no_class,
3958 print_symbol_loading_enums, &print_symbol_loading,
3959 _("\
3960 Set printing of symbol loading messages."), _("\
3961 Show printing of symbol loading messages."), _("\
3962 off == turn all messages off\n\
3963 brief == print messages for the executable,\n\
3964 and brief messages for shared libraries\n\
3965 full == print messages for the executable,\n\
3966 and messages for each shared library."),
3967 NULL,
3968 NULL,
3969 &setprintlist, &showprintlist);
3971 add_setshow_boolean_cmd ("separate-debug-file", no_class,
3972 &separate_debug_file_debug, _("\
3973 Set printing of separate debug info file search debug."), _("\
3974 Show printing of separate debug info file search debug."), _("\
3975 When on, GDB prints the searched locations while looking for separate debug \
3976 info files."), NULL, NULL, &setdebuglist, &showdebuglist);
3978 #if GDB_SELF_TEST
3979 selftests::register_test
3980 ("filename_language", selftests::filename_language::test_filename_language);
3981 selftests::register_test
3982 ("set_ext_lang_command",
3983 selftests::filename_language::test_set_ext_lang_command);
3984 #endif