]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/symfile.c
Use function view in quick_symbol_functions::map_symbol_filenames
[thirdparty/binutils-gdb.git] / gdb / symfile.c
CommitLineData
c906108c 1/* Generic symbol file reading for the GNU debugger, GDB.
8926118c 2
3666a048 3 Copyright (C) 1990-2021 Free Software Foundation, Inc.
8926118c 4
c906108c
SS
5 Contributed by Cygnus Support, using pieces from other GDB modules.
6
c5aa993b 7 This file is part of GDB.
c906108c 8
c5aa993b
JM
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
a9762ec7 11 the Free Software Foundation; either version 3 of the License, or
c5aa993b 12 (at your option) any later version.
c906108c 13
c5aa993b
JM
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.
c906108c 18
c5aa993b 19 You should have received a copy of the GNU General Public License
a9762ec7 20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
21
22#include "defs.h"
e17c207e 23#include "arch-utils.h"
086df311 24#include "bfdlink.h"
c906108c
SS
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"
0378c332 33#include "source.h"
c906108c
SS
34#include "gdbcmd.h"
35#include "breakpoint.h"
36#include "language.h"
37#include "complaints.h"
38#include "demangle.h"
fb14de7b
UW
39#include "inferior.h"
40#include "regcache.h"
5b5d99cf 41#include "filenames.h" /* for DOSish file names */
c906108c 42#include "gdb-stabs.h"
04ea0df1 43#include "gdb_obstack.h"
d75b5104 44#include "completer.h"
af5f3db6 45#include "bcache.h"
2de7ced7 46#include "hashtab.h"
e0eac551 47#include "readline/tilde.h"
fe898f56 48#include "block.h"
76727919 49#include "observable.h"
c1bd25fd 50#include "exec.h"
9bdcbae7 51#include "parser-defs.h"
8756216b 52#include "varobj.h"
77069918 53#include "elf-bfd.h"
e85a822c 54#include "solib.h"
f1838a98 55#include "remote.h"
1bfeeb0f 56#include "stack.h"
cbb099e8 57#include "gdb_bfd.h"
529480d0 58#include "cli/cli-utils.h"
268a13a5
TT
59#include "gdbsupport/byte-vector.h"
60#include "gdbsupport/pathstuff.h"
61#include "gdbsupport/selftest.h"
47fd17cd 62#include "cli/cli-style.h"
268a13a5 63#include "gdbsupport/forward-scope-exit.h"
c906108c 64
c906108c
SS
65#include <sys/types.h>
66#include <fcntl.h>
53ce3c39 67#include <sys/stat.h>
c906108c 68#include <ctype.h>
dcb07cfa 69#include <chrono>
37e136b1 70#include <algorithm>
c906108c 71
3e43a32a
MS
72int (*deprecated_ui_load_progress_hook) (const char *section,
73 unsigned long num);
9a4105ab 74void (*deprecated_show_load_progress) (const char *section,
5417f6dc
RM
75 unsigned long section_sent,
76 unsigned long section_size,
77 unsigned long total_sent,
c2d11a7d 78 unsigned long total_size);
769d7dc4
AC
79void (*deprecated_pre_add_symbol_hook) (const char *);
80void (*deprecated_post_add_symbol_hook) (void);
c906108c 81
286526c1
TT
82using clear_symtab_users_cleanup
83 = FORWARD_SCOPE_EXIT (clear_symtab_users);
74b7792f 84
c378eb4e 85/* Global variables owned by this file. */
fe7a351a
SM
86
87/* See symfile.h. */
88
89int readnow_symbol_files;
90
91/* See symfile.h. */
92
93int readnever_symbol_files;
c906108c 94
c378eb4e 95/* Functions this file defines. */
c906108c 96
ecf45d2c 97static void symbol_file_add_main_1 (const char *args, symfile_add_flags add_flags,
d4d429d5 98 objfile_flags flags, CORE_ADDR reloff);
d7db6da9 99
00b5771c 100static const struct sym_fns *find_sym_fns (bfd *);
c906108c 101
a14ed312 102static void overlay_invalidate_all (void);
c906108c 103
a14ed312 104static void simple_free_overlay_table (void);
c906108c 105
e17a4113
UW
106static void read_target_long_array (CORE_ADDR, unsigned int *, int, int,
107 enum bfd_endian);
c906108c 108
a14ed312 109static int simple_read_overlay_table (void);
c906108c 110
a14ed312 111static int simple_overlay_update_1 (struct obj_section *);
c906108c 112
31d99776
DJ
113static void symfile_find_segment_sections (struct objfile *objfile);
114
c906108c
SS
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
c378eb4e 117 prepared to read. */
c906108c 118
905014d7 119struct registered_sym_fns
c256e171 120{
905014d7
SM
121 registered_sym_fns (bfd_flavour sym_flavour_, const struct sym_fns *sym_fns_)
122 : sym_flavour (sym_flavour_), sym_fns (sym_fns_)
123 {}
124
c256e171
DE
125 /* BFD flavour that we handle. */
126 enum bfd_flavour sym_flavour;
127
128 /* The "vtable" of symbol functions. */
129 const struct sym_fns *sym_fns;
905014d7 130};
c256e171 131
905014d7 132static std::vector<registered_sym_fns> symtab_fns;
c906108c 133
770e7fc7
DE
134/* Values for "set print symbol-loading". */
135
136const char print_symbol_loading_off[] = "off";
137const char print_symbol_loading_brief[] = "brief";
138const char print_symbol_loading_full[] = "full";
139static const char *print_symbol_loading_enums[] =
140{
141 print_symbol_loading_off,
142 print_symbol_loading_brief,
143 print_symbol_loading_full,
144 NULL
145};
146static const char *print_symbol_loading = print_symbol_loading_full;
147
f2f24aa9 148/* See symfile.h. */
c906108c 149
491144b5 150bool auto_solib_add = true;
c906108c 151\f
c5aa993b 152
770e7fc7
DE
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. */
160
161int
162print_symbol_loading_p (int from_tty, int exec, int full)
163{
164 if (!from_tty && !info_verbose)
165 return 0;
166
167 if (exec)
168 {
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;
172 }
173 if (full)
174 return print_symbol_loading == print_symbol_loading_full;
175 return print_symbol_loading == print_symbol_loading_brief;
176}
177
0d14a781 178/* True if we are reading a symbol table. */
c906108c
SS
179
180int currently_reading_symtab = 0;
181
ccefe4c4
TT
182/* Increment currently_reading_symtab and return a cleanup that can be
183 used to decrement it. */
3b7bacac 184
c83dd867 185scoped_restore_tmpl<int>
ccefe4c4 186increment_reading_symtab (void)
c906108c 187{
c83dd867
TT
188 gdb_assert (currently_reading_symtab >= 0);
189 return make_scoped_restore (&currently_reading_symtab,
190 currently_reading_symtab + 1);
c906108c
SS
191}
192
5417f6dc 193/* Remember the lowest-addressed loadable section we've seen.
c906108c
SS
194
195 In case of equal vmas, the section with the largest size becomes the
196 lowest-addressed loadable section.
197
198 If the vmas and sizes are equal, the last section is considered the
199 lowest-addressed loadable section. */
200
ad7277da
TT
201static void
202find_lowest_section (asection *sect, asection **lowest)
c906108c 203{
fd361982 204 if (0 == (bfd_section_flags (sect) & (SEC_ALLOC | SEC_LOAD)))
c906108c
SS
205 return;
206 if (!*lowest)
207 *lowest = sect; /* First loadable section */
fd361982 208 else if (bfd_section_vma (*lowest) > bfd_section_vma (sect))
c906108c 209 *lowest = sect; /* A lower loadable section */
fd361982
AM
210 else if (bfd_section_vma (*lowest) == bfd_section_vma (sect)
211 && (bfd_section_size (*lowest) <= bfd_section_size (sect)))
c906108c
SS
212 *lowest = sect;
213}
214
62557bbc 215/* Build (allocate and populate) a section_addr_info struct from
c378eb4e 216 an existing section table. */
62557bbc 217
37e136b1 218section_addr_info
bb2a6777 219build_section_addr_info_from_section_table (const target_section_table &table)
62557bbc 220{
37e136b1 221 section_addr_info sap;
62557bbc 222
d7a78e5c 223 for (const target_section &stp : table)
62557bbc 224 {
bb2a6777 225 struct bfd_section *asect = stp.the_bfd_section;
2b2848e2
DE
226 bfd *abfd = asect->owner;
227
fd361982 228 if (bfd_section_flags (asect) & (SEC_ALLOC | SEC_LOAD)
d7a78e5c 229 && sap.size () < table.size ())
bb2a6777 230 sap.emplace_back (stp.addr,
fd361982 231 bfd_section_name (asect),
37e136b1 232 gdb_bfd_section_index (abfd, asect));
62557bbc
KB
233 }
234
235 return sap;
236}
237
82ccf5a5 238/* Create a section_addr_info from section offsets in ABFD. */
089b4803 239
37e136b1 240static section_addr_info
82ccf5a5 241build_section_addr_info_from_bfd (bfd *abfd)
089b4803 242{
089b4803
TG
243 struct bfd_section *sec;
244
37e136b1
TT
245 section_addr_info sap;
246 for (sec = abfd->sections; sec != NULL; sec = sec->next)
fd361982
AM
247 if (bfd_section_flags (sec) & (SEC_ALLOC | SEC_LOAD))
248 sap.emplace_back (bfd_section_vma (sec),
249 bfd_section_name (sec),
37e136b1 250 gdb_bfd_section_index (abfd, sec));
d76488d8 251
089b4803
TG
252 return sap;
253}
254
82ccf5a5
JK
255/* Create a section_addr_info from section offsets in OBJFILE. */
256
37e136b1 257section_addr_info
82ccf5a5
JK
258build_section_addr_info_from_objfile (const struct objfile *objfile)
259{
82ccf5a5
JK
260 int i;
261
262 /* Before reread_symbols gets rewritten it is not safe to call:
263 gdb_assert (objfile->num_sections == bfd_count_sections (objfile->obfd));
264 */
37e136b1
TT
265 section_addr_info sap = build_section_addr_info_from_bfd (objfile->obfd);
266 for (i = 0; i < sap.size (); i++)
82ccf5a5 267 {
37e136b1 268 int sectindex = sap[i].sectindex;
82ccf5a5 269
6a053cb1 270 sap[i].addr += objfile->section_offsets[sectindex];
82ccf5a5
JK
271 }
272 return sap;
273}
62557bbc 274
e8289572 275/* Initialize OBJFILE's sect_index_* members. */
3b7bacac 276
e8289572
JB
277static void
278init_objfile_sect_indices (struct objfile *objfile)
c906108c 279{
e8289572 280 asection *sect;
c906108c 281 int i;
5417f6dc 282
b8fbeb18 283 sect = bfd_get_section_by_name (objfile->obfd, ".text");
5417f6dc 284 if (sect)
b8fbeb18
EZ
285 objfile->sect_index_text = sect->index;
286
287 sect = bfd_get_section_by_name (objfile->obfd, ".data");
5417f6dc 288 if (sect)
b8fbeb18
EZ
289 objfile->sect_index_data = sect->index;
290
291 sect = bfd_get_section_by_name (objfile->obfd, ".bss");
5417f6dc 292 if (sect)
b8fbeb18
EZ
293 objfile->sect_index_bss = sect->index;
294
295 sect = bfd_get_section_by_name (objfile->obfd, ".rodata");
5417f6dc 296 if (sect)
b8fbeb18
EZ
297 objfile->sect_index_rodata = sect->index;
298
bbcd32ad
FF
299 /* This is where things get really weird... We MUST have valid
300 indices for the various sect_index_* members or gdb will abort.
301 So if for example, there is no ".text" section, we have to
31d99776
DJ
302 accomodate that. First, check for a file with the standard
303 one or two segments. */
304
305 symfile_find_segment_sections (objfile);
306
307 /* Except when explicitly adding symbol files at some address,
308 section_offsets contains nothing but zeros, so it doesn't matter
309 which slot in section_offsets the individual sect_index_* members
310 index into. So if they are all zero, it is safe to just point
311 all the currently uninitialized indices to the first slot. But
312 beware: if this is the main executable, it may be relocated
313 later, e.g. by the remote qOffsets packet, and then this will
314 be wrong! That's why we try segments first. */
bbcd32ad 315
6a053cb1 316 for (i = 0; i < objfile->section_offsets.size (); i++)
bbcd32ad 317 {
6a053cb1 318 if (objfile->section_offsets[i] != 0)
bbcd32ad
FF
319 {
320 break;
321 }
322 }
6a053cb1 323 if (i == objfile->section_offsets.size ())
bbcd32ad
FF
324 {
325 if (objfile->sect_index_text == -1)
326 objfile->sect_index_text = 0;
327 if (objfile->sect_index_data == -1)
328 objfile->sect_index_data = 0;
329 if (objfile->sect_index_bss == -1)
330 objfile->sect_index_bss = 0;
331 if (objfile->sect_index_rodata == -1)
332 objfile->sect_index_rodata = 0;
333 }
b8fbeb18 334}
c906108c 335
c1bd25fd
DJ
336/* Find a unique offset to use for loadable section SECT if
337 the user did not provide an offset. */
338
2c0b251b 339static void
ad7277da
TT
340place_section (bfd *abfd, asection *sect, section_offsets &offsets,
341 CORE_ADDR &lowest)
c1bd25fd 342{
6a053cb1 343 CORE_ADDR start_addr;
c1bd25fd 344 int done;
fd361982 345 ULONGEST align = ((ULONGEST) 1) << bfd_section_alignment (sect);
c1bd25fd 346
2711e456 347 /* We are only interested in allocated sections. */
fd361982 348 if ((bfd_section_flags (sect) & SEC_ALLOC) == 0)
c1bd25fd
DJ
349 return;
350
351 /* If the user specified an offset, honor it. */
65cf3563 352 if (offsets[gdb_bfd_section_index (abfd, sect)] != 0)
c1bd25fd
DJ
353 return;
354
355 /* Otherwise, let's try to find a place for the section. */
ad7277da 356 start_addr = (lowest + align - 1) & -align;
3bd72c6f 357
c1bd25fd
DJ
358 do {
359 asection *cur_sec;
c1bd25fd 360
c1bd25fd
DJ
361 done = 1;
362
363 for (cur_sec = abfd->sections; cur_sec != NULL; cur_sec = cur_sec->next)
364 {
365 int indx = cur_sec->index;
c1bd25fd
DJ
366
367 /* We don't need to compare against ourself. */
368 if (cur_sec == sect)
369 continue;
370
2711e456 371 /* We can only conflict with allocated sections. */
fd361982 372 if ((bfd_section_flags (cur_sec) & SEC_ALLOC) == 0)
c1bd25fd
DJ
373 continue;
374
375 /* If the section offset is 0, either the section has not been placed
376 yet, or it was the lowest section placed (in which case LOWEST
377 will be past its end). */
378 if (offsets[indx] == 0)
379 continue;
380
381 /* If this section would overlap us, then we must move up. */
fd361982
AM
382 if (start_addr + bfd_section_size (sect) > offsets[indx]
383 && start_addr < offsets[indx] + bfd_section_size (cur_sec))
c1bd25fd 384 {
fd361982 385 start_addr = offsets[indx] + bfd_section_size (cur_sec);
c1bd25fd
DJ
386 start_addr = (start_addr + align - 1) & -align;
387 done = 0;
3bd72c6f 388 break;
c1bd25fd
DJ
389 }
390
391 /* Otherwise, we appear to be OK. So far. */
392 }
393 }
394 while (!done);
395
65cf3563 396 offsets[gdb_bfd_section_index (abfd, sect)] = start_addr;
ad7277da 397 lowest = start_addr + bfd_section_size (sect);
c1bd25fd 398}
e8289572 399
4f7ae6f5 400/* Store section_addr_info as prepared (made relative and with SECTINDEX
6a053cb1 401 filled-in) by addr_info_make_relative into SECTION_OFFSETS. */
e8289572
JB
402
403void
6a053cb1 404relative_addr_info_to_section_offsets (section_offsets &section_offsets,
37e136b1 405 const section_addr_info &addrs)
e8289572
JB
406{
407 int i;
408
6a053cb1 409 section_offsets.assign (section_offsets.size (), 0);
e8289572 410
c378eb4e 411 /* Now calculate offsets for section that were specified by the caller. */
37e136b1 412 for (i = 0; i < addrs.size (); i++)
e8289572 413 {
3189cb12 414 const struct other_sections *osp;
e8289572 415
37e136b1 416 osp = &addrs[i];
5488dafb 417 if (osp->sectindex == -1)
e8289572
JB
418 continue;
419
c378eb4e 420 /* Record all sections in offsets. */
e8289572 421 /* The section_offsets in the objfile are here filled in using
dda83cd7 422 the BFD index. */
6a053cb1 423 section_offsets[osp->sectindex] = osp->addr;
75242ef4
JK
424 }
425}
426
1276c759
JK
427/* Transform section name S for a name comparison. prelink can split section
428 `.bss' into two sections `.dynbss' and `.bss' (in this order). Similarly
429 prelink can split `.sbss' into `.sdynbss' and `.sbss'. Use virtual address
430 of the new `.dynbss' (`.sdynbss') section as the adjacent new `.bss'
431 (`.sbss') section has invalid (increased) virtual address. */
432
433static const char *
434addr_section_name (const char *s)
435{
436 if (strcmp (s, ".dynbss") == 0)
437 return ".bss";
438 if (strcmp (s, ".sdynbss") == 0)
439 return ".sbss";
440
441 return s;
442}
443
37e136b1
TT
444/* std::sort comparator for addrs_section_sort. Sort entries in
445 ascending order by their (name, sectindex) pair. sectindex makes
446 the sort by name stable. */
82ccf5a5 447
37e136b1
TT
448static bool
449addrs_section_compar (const struct other_sections *a,
450 const struct other_sections *b)
82ccf5a5 451{
22e048c9 452 int retval;
82ccf5a5 453
37e136b1
TT
454 retval = strcmp (addr_section_name (a->name.c_str ()),
455 addr_section_name (b->name.c_str ()));
456 if (retval != 0)
457 return retval < 0;
82ccf5a5 458
37e136b1 459 return a->sectindex < b->sectindex;
82ccf5a5
JK
460}
461
37e136b1 462/* Provide sorted array of pointers to sections of ADDRS. */
82ccf5a5 463
37e136b1
TT
464static std::vector<const struct other_sections *>
465addrs_section_sort (const section_addr_info &addrs)
82ccf5a5 466{
82ccf5a5
JK
467 int i;
468
37e136b1
TT
469 std::vector<const struct other_sections *> array (addrs.size ());
470 for (i = 0; i < addrs.size (); i++)
471 array[i] = &addrs[i];
82ccf5a5 472
37e136b1 473 std::sort (array.begin (), array.end (), addrs_section_compar);
82ccf5a5
JK
474
475 return array;
476}
477
75242ef4 478/* Relativize absolute addresses in ADDRS into offsets based on ABFD. Fill-in
672d9c23
JK
479 also SECTINDEXes specific to ABFD there. This function can be used to
480 rebase ADDRS to start referencing different BFD than before. */
75242ef4
JK
481
482void
37e136b1 483addr_info_make_relative (section_addr_info *addrs, bfd *abfd)
75242ef4
JK
484{
485 asection *lower_sect;
75242ef4
JK
486 CORE_ADDR lower_offset;
487 int i;
488
489 /* Find lowest loadable section to be used as starting point for
85102364 490 contiguous sections. */
e76ab67f 491 lower_sect = NULL;
ad7277da
TT
492 for (asection *iter : gdb_bfd_sections (abfd))
493 find_lowest_section (iter, &lower_sect);
75242ef4
JK
494 if (lower_sect == NULL)
495 {
496 warning (_("no loadable sections found in added symbol-file %s"),
497 bfd_get_filename (abfd));
498 lower_offset = 0;
e8289572 499 }
75242ef4 500 else
fd361982 501 lower_offset = bfd_section_vma (lower_sect);
75242ef4 502
82ccf5a5
JK
503 /* Create ADDRS_TO_ABFD_ADDRS array to map the sections in ADDRS to sections
504 in ABFD. Section names are not unique - there can be multiple sections of
505 the same name. Also the sections of the same name do not have to be
506 adjacent to each other. Some sections may be present only in one of the
507 files. Even sections present in both files do not have to be in the same
508 order.
509
510 Use stable sort by name for the sections in both files. Then linearly
511 scan both lists matching as most of the entries as possible. */
512
37e136b1
TT
513 std::vector<const struct other_sections *> addrs_sorted
514 = addrs_section_sort (*addrs);
82ccf5a5 515
37e136b1
TT
516 section_addr_info abfd_addrs = build_section_addr_info_from_bfd (abfd);
517 std::vector<const struct other_sections *> abfd_addrs_sorted
518 = addrs_section_sort (abfd_addrs);
82ccf5a5 519
c378eb4e
MS
520 /* Now create ADDRS_TO_ABFD_ADDRS from ADDRS_SORTED and
521 ABFD_ADDRS_SORTED. */
82ccf5a5 522
37e136b1
TT
523 std::vector<const struct other_sections *>
524 addrs_to_abfd_addrs (addrs->size (), nullptr);
82ccf5a5 525
37e136b1
TT
526 std::vector<const struct other_sections *>::iterator abfd_sorted_iter
527 = abfd_addrs_sorted.begin ();
52941706 528 for (const other_sections *sect : addrs_sorted)
82ccf5a5 529 {
37e136b1 530 const char *sect_name = addr_section_name (sect->name.c_str ());
82ccf5a5 531
37e136b1
TT
532 while (abfd_sorted_iter != abfd_addrs_sorted.end ()
533 && strcmp (addr_section_name ((*abfd_sorted_iter)->name.c_str ()),
1276c759 534 sect_name) < 0)
37e136b1 535 abfd_sorted_iter++;
82ccf5a5 536
37e136b1
TT
537 if (abfd_sorted_iter != abfd_addrs_sorted.end ()
538 && strcmp (addr_section_name ((*abfd_sorted_iter)->name.c_str ()),
1276c759 539 sect_name) == 0)
82ccf5a5
JK
540 {
541 int index_in_addrs;
542
543 /* Make the found item directly addressable from ADDRS. */
37e136b1 544 index_in_addrs = sect - addrs->data ();
82ccf5a5 545 gdb_assert (addrs_to_abfd_addrs[index_in_addrs] == NULL);
37e136b1 546 addrs_to_abfd_addrs[index_in_addrs] = *abfd_sorted_iter;
82ccf5a5
JK
547
548 /* Never use the same ABFD entry twice. */
37e136b1 549 abfd_sorted_iter++;
82ccf5a5 550 }
82ccf5a5
JK
551 }
552
75242ef4
JK
553 /* Calculate offsets for the loadable sections.
554 FIXME! Sections must be in order of increasing loadable section
555 so that contiguous sections can use the lower-offset!!!
556
557 Adjust offsets if the segments are not contiguous.
558 If the section is contiguous, its offset should be set to
559 the offset of the highest loadable section lower than it
560 (the loadable section directly below it in memory).
561 this_offset = lower_offset = lower_addr - lower_orig_addr */
562
37e136b1 563 for (i = 0; i < addrs->size (); i++)
75242ef4 564 {
37e136b1 565 const struct other_sections *sect = addrs_to_abfd_addrs[i];
672d9c23
JK
566
567 if (sect)
75242ef4 568 {
c378eb4e 569 /* This is the index used by BFD. */
37e136b1 570 (*addrs)[i].sectindex = sect->sectindex;
672d9c23 571
37e136b1 572 if ((*addrs)[i].addr != 0)
75242ef4 573 {
37e136b1
TT
574 (*addrs)[i].addr -= sect->addr;
575 lower_offset = (*addrs)[i].addr;
75242ef4
JK
576 }
577 else
37e136b1 578 (*addrs)[i].addr = lower_offset;
75242ef4
JK
579 }
580 else
672d9c23 581 {
1276c759 582 /* addr_section_name transformation is not used for SECT_NAME. */
37e136b1 583 const std::string &sect_name = (*addrs)[i].name;
1276c759 584
b0fcb67f
JK
585 /* This section does not exist in ABFD, which is normally
586 unexpected and we want to issue a warning.
587
4d9743af
JK
588 However, the ELF prelinker does create a few sections which are
589 marked in the main executable as loadable (they are loaded in
590 memory from the DYNAMIC segment) and yet are not present in
591 separate debug info files. This is fine, and should not cause
592 a warning. Shared libraries contain just the section
593 ".gnu.liblist" but it is not marked as loadable there. There is
594 no other way to identify them than by their name as the sections
1276c759
JK
595 created by prelink have no special flags.
596
597 For the sections `.bss' and `.sbss' see addr_section_name. */
b0fcb67f 598
37e136b1
TT
599 if (!(sect_name == ".gnu.liblist"
600 || sect_name == ".gnu.conflict"
601 || (sect_name == ".bss"
1276c759 602 && i > 0
37e136b1 603 && (*addrs)[i - 1].name == ".dynbss"
1276c759 604 && addrs_to_abfd_addrs[i - 1] != NULL)
37e136b1 605 || (sect_name == ".sbss"
1276c759 606 && i > 0
37e136b1 607 && (*addrs)[i - 1].name == ".sdynbss"
1276c759 608 && addrs_to_abfd_addrs[i - 1] != NULL)))
37e136b1 609 warning (_("section %s not found in %s"), sect_name.c_str (),
b0fcb67f
JK
610 bfd_get_filename (abfd));
611
37e136b1
TT
612 (*addrs)[i].addr = 0;
613 (*addrs)[i].sectindex = -1;
672d9c23 614 }
75242ef4
JK
615 }
616}
617
618/* Parse the user's idea of an offset for dynamic linking, into our idea
619 of how to represent it for fast symbol reading. This is the default
620 version of the sym_fns.sym_offsets function for symbol readers that
621 don't need to do anything special. It allocates a section_offsets table
622 for the objectfile OBJFILE and stuffs ADDR into all of the offsets. */
623
624void
625default_symfile_offsets (struct objfile *objfile,
37e136b1 626 const section_addr_info &addrs)
75242ef4 627{
6a053cb1
TT
628 objfile->section_offsets.resize (gdb_bfd_count_sections (objfile->obfd));
629 relative_addr_info_to_section_offsets (objfile->section_offsets, addrs);
e8289572 630
c1bd25fd
DJ
631 /* For relocatable files, all loadable sections will start at zero.
632 The zero is meaningless, so try to pick arbitrary addresses such
633 that no loadable sections overlap. This algorithm is quadratic,
634 but the number of sections in a single object file is generally
635 small. */
636 if ((bfd_get_file_flags (objfile->obfd) & (EXEC_P | DYNAMIC)) == 0)
637 {
2711e456
DJ
638 bfd *abfd = objfile->obfd;
639 asection *cur_sec;
2711e456
DJ
640
641 for (cur_sec = abfd->sections; cur_sec != NULL; cur_sec = cur_sec->next)
642 /* We do not expect this to happen; just skip this step if the
643 relocatable file has a section with an assigned VMA. */
fd361982 644 if (bfd_section_vma (cur_sec) != 0)
2711e456
DJ
645 break;
646
647 if (cur_sec == NULL)
648 {
6a053cb1 649 section_offsets &offsets = objfile->section_offsets;
2711e456
DJ
650
651 /* Pick non-overlapping offsets for sections the user did not
652 place explicitly. */
ad7277da
TT
653 CORE_ADDR lowest = 0;
654 for (asection *sect : gdb_bfd_sections (objfile->obfd))
655 place_section (objfile->obfd, sect, objfile->section_offsets,
656 lowest);
2711e456
DJ
657
658 /* Correctly filling in the section offsets is not quite
659 enough. Relocatable files have two properties that
660 (most) shared objects do not:
661
662 - Their debug information will contain relocations. Some
663 shared libraries do also, but many do not, so this can not
664 be assumed.
665
666 - If there are multiple code sections they will be loaded
667 at different relative addresses in memory than they are
668 in the objfile, since all sections in the file will start
669 at address zero.
670
671 Because GDB has very limited ability to map from an
672 address in debug info to the correct code section,
673 it relies on adding SECT_OFF_TEXT to things which might be
674 code. If we clear all the section offsets, and set the
675 section VMAs instead, then symfile_relocate_debug_section
676 will return meaningful debug information pointing at the
677 correct sections.
678
679 GDB has too many different data structures for section
680 addresses - a bfd, objfile, and so_list all have section
681 tables, as does exec_ops. Some of these could probably
682 be eliminated. */
683
684 for (cur_sec = abfd->sections; cur_sec != NULL;
685 cur_sec = cur_sec->next)
686 {
fd361982 687 if ((bfd_section_flags (cur_sec) & SEC_ALLOC) == 0)
2711e456
DJ
688 continue;
689
fd361982 690 bfd_set_section_vma (cur_sec, offsets[cur_sec->index]);
3e43a32a
MS
691 exec_set_section_address (bfd_get_filename (abfd),
692 cur_sec->index,
30510692 693 offsets[cur_sec->index]);
2711e456
DJ
694 offsets[cur_sec->index] = 0;
695 }
696 }
c1bd25fd
DJ
697 }
698
e8289572 699 /* Remember the bfd indexes for the .text, .data, .bss and
c378eb4e 700 .rodata sections. */
e8289572
JB
701 init_objfile_sect_indices (objfile);
702}
703
31d99776
DJ
704/* Divide the file into segments, which are individual relocatable units.
705 This is the default version of the sym_fns.sym_segments function for
706 symbol readers that do not have an explicit representation of segments.
707 It assumes that object files do not have segments, and fully linked
708 files have a single segment. */
709
62982abd 710symfile_segment_data_up
31d99776
DJ
711default_symfile_segments (bfd *abfd)
712{
713 int num_sections, i;
714 asection *sect;
31d99776
DJ
715 CORE_ADDR low, high;
716
717 /* Relocatable files contain enough information to position each
718 loadable section independently; they should not be relocated
719 in segments. */
720 if ((bfd_get_file_flags (abfd) & (EXEC_P | DYNAMIC)) == 0)
721 return NULL;
722
723 /* Make sure there is at least one loadable section in the file. */
724 for (sect = abfd->sections; sect != NULL; sect = sect->next)
725 {
fd361982 726 if ((bfd_section_flags (sect) & SEC_ALLOC) == 0)
31d99776
DJ
727 continue;
728
729 break;
730 }
731 if (sect == NULL)
732 return NULL;
733
fd361982
AM
734 low = bfd_section_vma (sect);
735 high = low + bfd_section_size (sect);
31d99776 736
62982abd 737 symfile_segment_data_up data (new symfile_segment_data);
31d99776
DJ
738
739 num_sections = bfd_count_sections (abfd);
9005fbbb
SM
740
741 /* All elements are initialized to 0 (map to no segment). */
742 data->segment_info.resize (num_sections);
31d99776
DJ
743
744 for (i = 0, sect = abfd->sections; sect != NULL; i++, sect = sect->next)
745 {
746 CORE_ADDR vma;
747
fd361982 748 if ((bfd_section_flags (sect) & SEC_ALLOC) == 0)
31d99776
DJ
749 continue;
750
fd361982 751 vma = bfd_section_vma (sect);
31d99776
DJ
752 if (vma < low)
753 low = vma;
fd361982
AM
754 if (vma + bfd_section_size (sect) > high)
755 high = vma + bfd_section_size (sect);
31d99776
DJ
756
757 data->segment_info[i] = 1;
758 }
759
68b888ff 760 data->segments.emplace_back (low, high - low);
31d99776
DJ
761
762 return data;
763}
764
608e2dbb
TT
765/* This is a convenience function to call sym_read for OBJFILE and
766 possibly force the partial symbols to be read. */
767
768static void
b15cc25c 769read_symbols (struct objfile *objfile, symfile_add_flags add_flags)
608e2dbb
TT
770{
771 (*objfile->sf->sym_read) (objfile, add_flags);
23732b1e 772 objfile->per_bfd->minsyms_read = true;
8a92335b
JK
773
774 /* find_separate_debug_file_in_section should be called only if there is
775 single binary with no existing separate debug info file. */
a8ad4f3c 776 if (!objfile->has_partial_symbols ()
8a92335b
JK
777 && objfile->separate_debug_objfile == NULL
778 && objfile->separate_debug_objfile_backlink == NULL)
608e2dbb 779 {
192b62ce 780 gdb_bfd_ref_ptr abfd (find_separate_debug_file_in_section (objfile));
608e2dbb
TT
781
782 if (abfd != NULL)
24ba069a
JK
783 {
784 /* find_separate_debug_file_in_section uses the same filename for the
785 virtual section-as-bfd like the bfd filename containing the
786 section. Therefore use also non-canonical name form for the same
787 file containing the section. */
921222e2
TT
788 symbol_file_add_separate (abfd.get (),
789 bfd_get_filename (abfd.get ()),
790 add_flags | SYMFILE_NOT_FILENAME, objfile);
24ba069a 791 }
608e2dbb
TT
792 }
793 if ((add_flags & SYMFILE_NO_READ) == 0)
d1eef86d 794 objfile->require_partial_symbols (false);
608e2dbb
TT
795}
796
3d6e24f0
JB
797/* Initialize entry point information for this objfile. */
798
799static void
800init_entry_point_info (struct objfile *objfile)
801{
6ef55de7
TT
802 struct entry_info *ei = &objfile->per_bfd->ei;
803
804 if (ei->initialized)
805 return;
806 ei->initialized = 1;
807
3d6e24f0
JB
808 /* Save startup file's range of PC addresses to help blockframe.c
809 decide where the bottom of the stack is. */
810
811 if (bfd_get_file_flags (objfile->obfd) & EXEC_P)
812 {
813 /* Executable file -- record its entry point so we'll recognize
dda83cd7 814 the startup file because it contains the entry point. */
6ef55de7
TT
815 ei->entry_point = bfd_get_start_address (objfile->obfd);
816 ei->entry_point_p = 1;
3d6e24f0
JB
817 }
818 else if (bfd_get_file_flags (objfile->obfd) & DYNAMIC
819 && bfd_get_start_address (objfile->obfd) != 0)
820 {
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. */
6ef55de7
TT
824 ei->entry_point = bfd_get_start_address (objfile->obfd);
825 ei->entry_point_p = 1;
3d6e24f0
JB
826 }
827 else
828 {
829 /* Examination of non-executable.o files. Short-circuit this stuff. */
6ef55de7 830 ei->entry_point_p = 0;
3d6e24f0
JB
831 }
832
6ef55de7 833 if (ei->entry_point_p)
3d6e24f0 834 {
53eddfa6 835 struct obj_section *osect;
6ef55de7 836 CORE_ADDR entry_point = ei->entry_point;
53eddfa6 837 int found;
3d6e24f0
JB
838
839 /* Make certain that the address points at real code, and not a
840 function descriptor. */
328d42d8
SM
841 entry_point = gdbarch_convert_from_func_ptr_addr
842 (objfile->arch (), entry_point, current_inferior ()->top_target ());
3d6e24f0
JB
843
844 /* Remove any ISA markers, so that this matches entries in the
845 symbol table. */
6ef55de7 846 ei->entry_point
08feed99 847 = gdbarch_addr_bits_remove (objfile->arch (), entry_point);
53eddfa6
TT
848
849 found = 0;
850 ALL_OBJFILE_OSECTIONS (objfile, osect)
851 {
852 struct bfd_section *sect = osect->the_bfd_section;
853
fd361982
AM
854 if (entry_point >= bfd_section_vma (sect)
855 && entry_point < (bfd_section_vma (sect)
856 + bfd_section_size (sect)))
53eddfa6 857 {
6ef55de7 858 ei->the_bfd_section_index
53eddfa6
TT
859 = gdb_bfd_section_index (objfile->obfd, sect);
860 found = 1;
861 break;
862 }
863 }
864
865 if (!found)
6ef55de7 866 ei->the_bfd_section_index = SECT_OFF_TEXT (objfile);
3d6e24f0
JB
867 }
868}
869
c906108c
SS
870/* Process a symbol file, as either the main file or as a dynamically
871 loaded file.
872
36e4d068
JB
873 This function does not set the OBJFILE's entry-point info.
874
96baa820
JM
875 OBJFILE is where the symbols are to be read from.
876
7e8580c1
JB
877 ADDRS is the list of section load addresses. If the user has given
878 an 'add-symbol-file' command, then this is the list of offsets and
879 addresses he or she provided as arguments to the command; or, if
880 we're handling a shared library, these are the actual addresses the
881 sections are loaded at, according to the inferior's dynamic linker
882 (as gleaned by GDB's shared library code). We convert each address
883 into an offset from the section VMA's as it appears in the object
884 file, and then call the file's sym_offsets function to convert this
6a053cb1 885 into a format-specific offset table --- a `section_offsets'.
d81a3eaf
PT
886 The sectindex field is used to control the ordering of sections
887 with the same name. Upon return, it is updated to contain the
85102364 888 corresponding BFD section index, or -1 if the section was not found.
96baa820 889
7eedccfa 890 ADD_FLAGS encodes verbosity level, whether this is main symbol or
f71433ee 891 an extra symbol file such as dynamically loaded code, and whether
7eedccfa 892 breakpoint reset should be deferred. */
c906108c 893
36e4d068
JB
894static void
895syms_from_objfile_1 (struct objfile *objfile,
37e136b1 896 section_addr_info *addrs,
b15cc25c 897 symfile_add_flags add_flags)
c906108c 898{
37e136b1 899 section_addr_info local_addr;
7eedccfa 900 const int mainline = add_flags & SYMFILE_MAINLINE;
2acceee2 901
8fb8eb5c 902 objfile_set_sym_fns (objfile, find_sym_fns (objfile->obfd));
e1114590 903 objfile->qf.clear ();
c906108c 904
75245b24 905 if (objfile->sf == NULL)
36e4d068
JB
906 {
907 /* No symbols to load, but we still need to make sure
908 that the section_offsets table is allocated. */
d445b2f6 909 int num_sections = gdb_bfd_count_sections (objfile->obfd);
36e4d068 910
6a053cb1 911 objfile->section_offsets.assign (num_sections, 0);
36e4d068
JB
912 return;
913 }
75245b24 914
c906108c
SS
915 /* Make sure that partially constructed symbol tables will be cleaned up
916 if an error occurs during symbol reading. */
286526c1
TT
917 gdb::optional<clear_symtab_users_cleanup> defer_clear_users;
918
268e4f09 919 objfile_up objfile_holder (objfile);
c906108c 920
6bf667bb
DE
921 /* If ADDRS is NULL, put together a dummy address list.
922 We now establish the convention that an addr of zero means
c378eb4e 923 no load address was specified. */
6bf667bb 924 if (! addrs)
37e136b1 925 addrs = &local_addr;
a39a16c4 926
c5aa993b 927 if (mainline)
c906108c
SS
928 {
929 /* We will modify the main symbol table, make sure that all its users
dda83cd7 930 will be cleaned up if an error occurs during symbol reading. */
286526c1 931 defer_clear_users.emplace ((symfile_add_flag) 0);
c906108c
SS
932
933 /* Since no error yet, throw away the old symbol table. */
934
a42d7dd8 935 if (current_program_space->symfile_object_file != NULL)
c906108c 936 {
a42d7dd8
TT
937 current_program_space->symfile_object_file->unlink ();
938 gdb_assert (current_program_space->symfile_object_file == NULL);
c906108c
SS
939 }
940
941 /* Currently we keep symbols from the add-symbol-file command.
dda83cd7
SM
942 If the user wants to get rid of them, they should do "symbol-file"
943 without arguments first. Not sure this is the best behavior
944 (PR 2207). */
c906108c 945
c5aa993b 946 (*objfile->sf->sym_new_init) (objfile);
c906108c
SS
947 }
948
949 /* Convert addr into an offset rather than an absolute address.
950 We find the lowest address of a loaded segment in the objfile,
53a5351d 951 and assume that <addr> is where that got loaded.
c906108c 952
53a5351d
JM
953 We no longer warn if the lowest section is not a text segment (as
954 happens for the PA64 port. */
37e136b1 955 if (addrs->size () > 0)
75242ef4 956 addr_info_make_relative (addrs, objfile->obfd);
c906108c
SS
957
958 /* Initialize symbol reading routines for this objfile, allow complaints to
959 appear for this new file, and record how verbose to be, then do the
c378eb4e 960 initial symbol reading for this file. */
c906108c 961
c5aa993b 962 (*objfile->sf->sym_init) (objfile);
5ca8c39f 963 clear_complaints ();
c906108c 964
37e136b1 965 (*objfile->sf->sym_offsets) (objfile, *addrs);
c906108c 966
608e2dbb 967 read_symbols (objfile, add_flags);
b11896a5 968
c906108c
SS
969 /* Discard cleanups as symbol reading was successful. */
970
ed2b3126 971 objfile_holder.release ();
286526c1
TT
972 if (defer_clear_users)
973 defer_clear_users->release ();
c906108c
SS
974}
975
36e4d068
JB
976/* Same as syms_from_objfile_1, but also initializes the objfile
977 entry-point info. */
978
6bf667bb 979static void
36e4d068 980syms_from_objfile (struct objfile *objfile,
37e136b1 981 section_addr_info *addrs,
b15cc25c 982 symfile_add_flags add_flags)
36e4d068 983{
6bf667bb 984 syms_from_objfile_1 (objfile, addrs, add_flags);
36e4d068
JB
985 init_entry_point_info (objfile);
986}
987
c906108c
SS
988/* Perform required actions after either reading in the initial
989 symbols for a new objfile, or mapping in the symbols from a reusable
c1e56572 990 objfile. ADD_FLAGS is a bitmask of enum symfile_add_flags. */
c5aa993b 991
e7d52ed3 992static void
b15cc25c 993finish_new_objfile (struct objfile *objfile, symfile_add_flags add_flags)
c906108c 994{
c906108c 995 /* If this is the main symbol file we have to clean up all users of the
c378eb4e 996 old main symbol file. Otherwise it is sufficient to fixup all the
c906108c 997 breakpoints that may have been redefined by this symbol file. */
7eedccfa 998 if (add_flags & SYMFILE_MAINLINE)
c906108c
SS
999 {
1000 /* OK, make it the "real" symbol file. */
a42d7dd8 1001 current_program_space->symfile_object_file = objfile;
c906108c 1002
c1e56572 1003 clear_symtab_users (add_flags);
c906108c 1004 }
7eedccfa 1005 else if ((add_flags & SYMFILE_DEFER_BP_RESET) == 0)
c906108c 1006 {
69de3c6a 1007 breakpoint_re_set ();
c906108c
SS
1008 }
1009
1010 /* We're done reading the symbol file; finish off complaints. */
5ca8c39f 1011 clear_complaints ();
c906108c
SS
1012}
1013
1014/* Process a symbol file, as either the main file or as a dynamically
1015 loaded file.
1016
5417f6dc 1017 ABFD is a BFD already open on the file, as from symfile_bfd_open.
8ac244b4 1018 A new reference is acquired by this function.
7904e09f 1019
9e86da07 1020 For NAME description see the objfile constructor.
24ba069a 1021
7eedccfa 1022 ADD_FLAGS encodes verbosity, whether this is main symbol file or
30baf67b 1023 extra, such as dynamically loaded code, and what to do with breakpoints.
7904e09f 1024
6bf667bb 1025 ADDRS is as described for syms_from_objfile_1, above.
7eedccfa 1026 ADDRS is ignored when SYMFILE_MAINLINE bit is set in ADD_FLAGS.
c906108c 1027
63524580
JK
1028 PARENT is the original objfile if ABFD is a separate debug info file.
1029 Otherwise PARENT is NULL.
1030
c906108c 1031 Upon success, returns a pointer to the objfile that was added.
c378eb4e 1032 Upon failure, jumps back to command level (never returns). */
7eedccfa 1033
7904e09f 1034static struct objfile *
b15cc25c
PA
1035symbol_file_add_with_addrs (bfd *abfd, const char *name,
1036 symfile_add_flags add_flags,
37e136b1 1037 section_addr_info *addrs,
b15cc25c 1038 objfile_flags flags, struct objfile *parent)
c906108c
SS
1039{
1040 struct objfile *objfile;
7eedccfa 1041 const int from_tty = add_flags & SYMFILE_VERBOSE;
0838fb57 1042 const int mainline = add_flags & SYMFILE_MAINLINE;
a8654e7d 1043 const int always_confirm = add_flags & SYMFILE_ALWAYS_CONFIRM;
770e7fc7 1044 const int should_print = (print_symbol_loading_p (from_tty, mainline, 1)
b11896a5
TT
1045 && (readnow_symbol_files
1046 || (add_flags & SYMFILE_NO_READ) == 0));
c906108c 1047
9291a0cd 1048 if (readnow_symbol_files)
b11896a5
TT
1049 {
1050 flags |= OBJF_READNOW;
1051 add_flags &= ~SYMFILE_NO_READ;
1052 }
97cbe998
SDJ
1053 else if (readnever_symbol_files
1054 || (parent != NULL && (parent->flags & OBJF_READNEVER)))
1055 {
1056 flags |= OBJF_READNEVER;
1057 add_flags |= SYMFILE_NO_READ;
1058 }
921222e2
TT
1059 if ((add_flags & SYMFILE_NOT_FILENAME) != 0)
1060 flags |= OBJF_NOT_FILENAME;
9291a0cd 1061
a8654e7d 1062 /* Give user a chance to burp if ALWAYS_CONFIRM or we'd be
5417f6dc 1063 interactively wiping out any existing symbols. */
c906108c 1064
a8654e7d
PW
1065 if (from_tty
1066 && (always_confirm
1067 || ((have_full_symbols () || have_partial_symbols ())
1068 && mainline))
9e2f0ad4 1069 && !query (_("Load new symbol table from \"%s\"? "), name))
8a3fe4f8 1070 error (_("Not confirmed."));
c906108c 1071
b15cc25c
PA
1072 if (mainline)
1073 flags |= OBJF_MAINLINE;
f65fe570 1074 objfile = objfile::make (abfd, name, flags, parent);
63524580 1075
78a4a9b9
AC
1076 /* We either created a new mapped symbol table, mapped an existing
1077 symbol table file which has not had initial symbol reading
c378eb4e 1078 performed, or need to read an unmapped symbol table. */
b11896a5 1079 if (should_print)
c906108c 1080 {
769d7dc4
AC
1081 if (deprecated_pre_add_symbol_hook)
1082 deprecated_pre_add_symbol_hook (name);
78a4a9b9 1083 else
6a831f06
PA
1084 printf_filtered (_("Reading symbols from %ps...\n"),
1085 styled_string (file_name_style.style (), name));
c906108c 1086 }
6bf667bb 1087 syms_from_objfile (objfile, addrs, add_flags);
c906108c
SS
1088
1089 /* We now have at least a partial symbol table. Check to see if the
1090 user requested that all symbols be read on initial access via either
1091 the gdb startup command line or on a per symbol file basis. Expand
c378eb4e 1092 all partial symbol tables for this objfile if so. */
c906108c 1093
9291a0cd 1094 if ((flags & OBJF_READNOW))
c906108c 1095 {
b11896a5 1096 if (should_print)
6a831f06
PA
1097 printf_filtered (_("Expanding full symbols from %ps...\n"),
1098 styled_string (file_name_style.style (), name));
c906108c 1099
4d080b46 1100 objfile->expand_all_symtabs ();
c906108c
SS
1101 }
1102
e79497a1
TT
1103 /* Note that we only print a message if we have no symbols and have
1104 no separate debug file. If there is a separate debug file which
1105 does not have symbols, we'll have emitted this message for that
1106 file, and so printing it twice is just redundant. */
1107 if (should_print && !objfile_has_symbols (objfile)
1108 && objfile->separate_debug_objfile == nullptr)
6a831f06
PA
1109 printf_filtered (_("(No debugging symbols found in %ps)\n"),
1110 styled_string (file_name_style.style (), name));
cb3c37b2 1111
b11896a5 1112 if (should_print)
c906108c 1113 {
769d7dc4
AC
1114 if (deprecated_post_add_symbol_hook)
1115 deprecated_post_add_symbol_hook ();
c906108c
SS
1116 }
1117
481d0f41
JB
1118 /* We print some messages regardless of whether 'from_tty ||
1119 info_verbose' is true, so make sure they go out at the right
1120 time. */
1121 gdb_flush (gdb_stdout);
1122
109f874e 1123 if (objfile->sf == NULL)
8caee43b 1124 {
76727919 1125 gdb::observers::new_objfile.notify (objfile);
c378eb4e 1126 return objfile; /* No symbols. */
8caee43b 1127 }
109f874e 1128
e7d52ed3 1129 finish_new_objfile (objfile, add_flags);
c906108c 1130
76727919 1131 gdb::observers::new_objfile.notify (objfile);
c906108c 1132
ce7d4522 1133 bfd_cache_close_all ();
c906108c
SS
1134 return (objfile);
1135}
1136
24ba069a 1137/* Add BFD as a separate debug file for OBJFILE. For NAME description
9e86da07 1138 see the objfile constructor. */
9cce227f
TG
1139
1140void
b15cc25c
PA
1141symbol_file_add_separate (bfd *bfd, const char *name,
1142 symfile_add_flags symfile_flags,
24ba069a 1143 struct objfile *objfile)
9cce227f 1144{
089b4803
TG
1145 /* Create section_addr_info. We can't directly use offsets from OBJFILE
1146 because sections of BFD may not match sections of OBJFILE and because
1147 vma may have been modified by tools such as prelink. */
37e136b1 1148 section_addr_info sap = build_section_addr_info_from_objfile (objfile);
9cce227f 1149
870f88f7 1150 symbol_file_add_with_addrs
37e136b1 1151 (bfd, name, symfile_flags, &sap,
9cce227f 1152 objfile->flags & (OBJF_REORDERED | OBJF_SHARED | OBJF_READNOW
0c4311ab 1153 | OBJF_USERLOADED | OBJF_MAINLINE),
63524580 1154 objfile);
9cce227f 1155}
7904e09f 1156
eb4556d7
JB
1157/* Process the symbol file ABFD, as either the main file or as a
1158 dynamically loaded file.
6bf667bb 1159 See symbol_file_add_with_addrs's comments for details. */
3b7bacac 1160
eb4556d7 1161struct objfile *
b15cc25c
PA
1162symbol_file_add_from_bfd (bfd *abfd, const char *name,
1163 symfile_add_flags add_flags,
37e136b1 1164 section_addr_info *addrs,
dda83cd7 1165 objfile_flags flags, struct objfile *parent)
eb4556d7 1166{
24ba069a
JK
1167 return symbol_file_add_with_addrs (abfd, name, add_flags, addrs, flags,
1168 parent);
eb4556d7
JB
1169}
1170
7904e09f 1171/* Process a symbol file, as either the main file or as a dynamically
6bf667bb 1172 loaded file. See symbol_file_add_with_addrs's comments for details. */
3b7bacac 1173
7904e09f 1174struct objfile *
b15cc25c 1175symbol_file_add (const char *name, symfile_add_flags add_flags,
37e136b1 1176 section_addr_info *addrs, objfile_flags flags)
7904e09f 1177{
192b62ce 1178 gdb_bfd_ref_ptr bfd (symfile_bfd_open (name));
8ac244b4 1179
192b62ce
TT
1180 return symbol_file_add_from_bfd (bfd.get (), name, add_flags, addrs,
1181 flags, NULL);
7904e09f
JB
1182}
1183
d7db6da9
FN
1184/* Call symbol_file_add() with default values and update whatever is
1185 affected by the loading of a new main().
1186 Used when the file is supplied in the gdb command line
1187 and by some targets with special loading requirements.
1188 The auxiliary function, symbol_file_add_main_1(), has the flags
1189 argument for the switches that can only be specified in the symbol_file
1190 command itself. */
5417f6dc 1191
1adeb98a 1192void
ecf45d2c 1193symbol_file_add_main (const char *args, symfile_add_flags add_flags)
1adeb98a 1194{
d4d429d5 1195 symbol_file_add_main_1 (args, add_flags, 0, 0);
d7db6da9
FN
1196}
1197
1198static void
ecf45d2c 1199symbol_file_add_main_1 (const char *args, symfile_add_flags add_flags,
d4d429d5 1200 objfile_flags flags, CORE_ADDR reloff)
d7db6da9 1201{
ecf45d2c 1202 add_flags |= current_inferior ()->symfile_flags | SYMFILE_MAINLINE;
7dcd53a0 1203
d4d429d5
PT
1204 struct objfile *objfile = symbol_file_add (args, add_flags, NULL, flags);
1205 if (reloff != 0)
1206 objfile_rebase (objfile, reloff);
d7db6da9 1207
d7db6da9
FN
1208 /* Getting new symbols may change our opinion about
1209 what is frameless. */
1210 reinit_frame_cache ();
1211
b15cc25c 1212 if ((add_flags & SYMFILE_NO_READ) == 0)
7dcd53a0 1213 set_initial_language ();
1adeb98a
FN
1214}
1215
1216void
1217symbol_file_clear (int from_tty)
1218{
1219 if ((have_full_symbols () || have_partial_symbols ())
1220 && from_tty
a42d7dd8 1221 && (current_program_space->symfile_object_file
0430b0d6 1222 ? !query (_("Discard symbol table from `%s'? "),
a42d7dd8 1223 objfile_name (current_program_space->symfile_object_file))
0430b0d6 1224 : !query (_("Discard symbol table? "))))
8a3fe4f8 1225 error (_("Not confirmed."));
1adeb98a 1226
0133421a
JK
1227 /* solib descriptors may have handles to objfiles. Wipe them before their
1228 objfiles get stale by free_all_objfiles. */
d10c338d
DE
1229 no_shared_libraries (NULL, from_tty);
1230
343cc952 1231 current_program_space->free_all_objfiles ();
0133421a 1232
f3c469b9
PA
1233 clear_symtab_users (0);
1234
a42d7dd8 1235 gdb_assert (current_program_space->symfile_object_file == NULL);
d10c338d 1236 if (from_tty)
22068491 1237 printf_filtered (_("No symbol file now.\n"));
1adeb98a
FN
1238}
1239
c4dcb155
SM
1240/* See symfile.h. */
1241
491144b5 1242bool separate_debug_file_debug = false;
c4dcb155 1243
5b5d99cf 1244static int
a8dbfd58 1245separate_debug_file_exists (const std::string &name, unsigned long crc,
32a0e547 1246 struct objfile *parent_objfile)
5b5d99cf 1247{
904578ed
JK
1248 unsigned long file_crc;
1249 int file_crc_p;
32a0e547 1250 struct stat parent_stat, abfd_stat;
904578ed 1251 int verified_as_different;
32a0e547
JK
1252
1253 /* Find a separate debug info file as if symbols would be present in
1254 PARENT_OBJFILE itself this function would not be called. .gnu_debuglink
1255 section can contain just the basename of PARENT_OBJFILE without any
1256 ".debug" suffix as "/usr/lib/debug/path/to/file" is a separate tree where
c378eb4e 1257 the separate debug infos with the same basename can exist. */
32a0e547 1258
a8dbfd58 1259 if (filename_cmp (name.c_str (), objfile_name (parent_objfile)) == 0)
32a0e547 1260 return 0;
5b5d99cf 1261
c4dcb155 1262 if (separate_debug_file_debug)
50794b45
SM
1263 {
1264 printf_filtered (_(" Trying %s..."), name.c_str ());
1265 gdb_flush (gdb_stdout);
1266 }
c4dcb155 1267
ad80db5b 1268 gdb_bfd_ref_ptr abfd (gdb_bfd_open (name.c_str (), gnutarget));
f1838a98 1269
192b62ce 1270 if (abfd == NULL)
50794b45
SM
1271 {
1272 if (separate_debug_file_debug)
1273 printf_filtered (_(" no, unable to open.\n"));
1274
1275 return 0;
1276 }
5b5d99cf 1277
0ba1096a 1278 /* Verify symlinks were not the cause of filename_cmp name difference above.
32a0e547
JK
1279
1280 Some operating systems, e.g. Windows, do not provide a meaningful
1281 st_ino; they always set it to zero. (Windows does provide a
0a93529c
GB
1282 meaningful st_dev.) Files accessed from gdbservers that do not
1283 support the vFile:fstat packet will also have st_ino set to zero.
1284 Do not indicate a duplicate library in either case. While there
1285 is no guarantee that a system that provides meaningful inode
1286 numbers will never set st_ino to zero, this is merely an
1287 optimization, so we do not need to worry about false negatives. */
32a0e547 1288
192b62ce 1289 if (bfd_stat (abfd.get (), &abfd_stat) == 0
904578ed
JK
1290 && abfd_stat.st_ino != 0
1291 && bfd_stat (parent_objfile->obfd, &parent_stat) == 0)
32a0e547 1292 {
904578ed
JK
1293 if (abfd_stat.st_dev == parent_stat.st_dev
1294 && abfd_stat.st_ino == parent_stat.st_ino)
50794b45
SM
1295 {
1296 if (separate_debug_file_debug)
1297 printf_filtered (_(" no, same file as the objfile.\n"));
1298
1299 return 0;
1300 }
904578ed 1301 verified_as_different = 1;
32a0e547 1302 }
904578ed
JK
1303 else
1304 verified_as_different = 0;
32a0e547 1305
192b62ce 1306 file_crc_p = gdb_bfd_crc (abfd.get (), &file_crc);
5b5d99cf 1307
904578ed 1308 if (!file_crc_p)
50794b45
SM
1309 {
1310 if (separate_debug_file_debug)
1311 printf_filtered (_(" no, error computing CRC.\n"));
1312
1313 return 0;
1314 }
904578ed 1315
287ccc17
JK
1316 if (crc != file_crc)
1317 {
dccee2de
TT
1318 unsigned long parent_crc;
1319
0a93529c
GB
1320 /* If the files could not be verified as different with
1321 bfd_stat then we need to calculate the parent's CRC
1322 to verify whether the files are different or not. */
904578ed 1323
dccee2de 1324 if (!verified_as_different)
904578ed 1325 {
dccee2de 1326 if (!gdb_bfd_crc (parent_objfile->obfd, &parent_crc))
50794b45
SM
1327 {
1328 if (separate_debug_file_debug)
1329 printf_filtered (_(" no, error computing CRC.\n"));
1330
1331 return 0;
1332 }
904578ed
JK
1333 }
1334
dccee2de 1335 if (verified_as_different || parent_crc != file_crc)
904578ed
JK
1336 warning (_("the debug information found in \"%s\""
1337 " does not match \"%s\" (CRC mismatch).\n"),
a8dbfd58 1338 name.c_str (), objfile_name (parent_objfile));
904578ed 1339
50794b45
SM
1340 if (separate_debug_file_debug)
1341 printf_filtered (_(" no, CRC doesn't match.\n"));
1342
287ccc17
JK
1343 return 0;
1344 }
1345
50794b45
SM
1346 if (separate_debug_file_debug)
1347 printf_filtered (_(" yes!\n"));
1348
287ccc17 1349 return 1;
5b5d99cf
JB
1350}
1351
aa28a74e 1352char *debug_file_directory = NULL;
920d2a44
AC
1353static void
1354show_debug_file_directory (struct ui_file *file, int from_tty,
1355 struct cmd_list_element *c, const char *value)
1356{
3e43a32a
MS
1357 fprintf_filtered (file,
1358 _("The directory where separate debug "
1359 "symbols are searched for is \"%s\".\n"),
920d2a44
AC
1360 value);
1361}
5b5d99cf
JB
1362
1363#if ! defined (DEBUG_SUBDIRECTORY)
1364#define DEBUG_SUBDIRECTORY ".debug"
1365#endif
1366
1db33378
PP
1367/* Find a separate debuginfo file for OBJFILE, using DIR as the directory
1368 where the original file resides (may not be the same as
1369 dirname(objfile->name) due to symlinks), and DEBUGLINK as the file we are
7edbb660
DE
1370 looking for. CANON_DIR is the "realpath" form of DIR.
1371 DIR must contain a trailing '/'.
a8dbfd58
SM
1372 Returns the path of the file with separate debug info, or an empty
1373 string. */
1db33378 1374
a8dbfd58 1375static std::string
1db33378
PP
1376find_separate_debug_file (const char *dir,
1377 const char *canon_dir,
1378 const char *debuglink,
1379 unsigned long crc32, struct objfile *objfile)
9cce227f 1380{
c4dcb155 1381 if (separate_debug_file_debug)
22068491
TT
1382 printf_filtered (_("\nLooking for separate debug info (debug link) for "
1383 "%s\n"), objfile_name (objfile));
c4dcb155 1384
5b5d99cf 1385 /* First try in the same directory as the original file. */
a8dbfd58
SM
1386 std::string debugfile = dir;
1387 debugfile += debuglink;
5b5d99cf 1388
32a0e547 1389 if (separate_debug_file_exists (debugfile, crc32, objfile))
1db33378 1390 return debugfile;
5417f6dc 1391
5b5d99cf 1392 /* Then try in the subdirectory named DEBUG_SUBDIRECTORY. */
a8dbfd58
SM
1393 debugfile = dir;
1394 debugfile += DEBUG_SUBDIRECTORY;
1395 debugfile += "/";
1396 debugfile += debuglink;
5b5d99cf 1397
32a0e547 1398 if (separate_debug_file_exists (debugfile, crc32, objfile))
1db33378 1399 return debugfile;
5417f6dc 1400
24ddea62 1401 /* Then try in the global debugfile directories.
f888f159 1402
24ddea62
JK
1403 Keep backward compatibility so that DEBUG_FILE_DIRECTORY being "" will
1404 cause "/..." lookups. */
5417f6dc 1405
5d36dfb9
AU
1406 bool target_prefix = startswith (dir, "target:");
1407 const char *dir_notarget = target_prefix ? dir + strlen ("target:") : dir;
e80aaf61
SM
1408 std::vector<gdb::unique_xmalloc_ptr<char>> debugdir_vec
1409 = dirnames_to_char_ptr_vec (debug_file_directory);
f62318e9 1410 gdb::unique_xmalloc_ptr<char> canon_sysroot = gdb_realpath (gdb_sysroot);
24ddea62 1411
5f2459c2
EZ
1412 /* MS-Windows/MS-DOS don't allow colons in file names; we must
1413 convert the drive letter into a one-letter directory, so that the
1414 file name resulting from splicing below will be valid.
1415
1416 FIXME: The below only works when GDB runs on MS-Windows/MS-DOS.
1417 There are various remote-debugging scenarios where such a
1418 transformation of the drive letter might be required when GDB runs
1419 on a Posix host, see
1420
1421 https://sourceware.org/ml/gdb-patches/2019-04/msg00605.html
1422
85102364 1423 If some of those scenarios need to be supported, we will need to
5f2459c2
EZ
1424 use a different condition for HAS_DRIVE_SPEC and a different macro
1425 instead of STRIP_DRIVE_SPEC, which work on Posix systems as well. */
1426 std::string drive;
1427 if (HAS_DRIVE_SPEC (dir_notarget))
1428 {
1429 drive = dir_notarget[0];
1430 dir_notarget = STRIP_DRIVE_SPEC (dir_notarget);
1431 }
1432
e80aaf61 1433 for (const gdb::unique_xmalloc_ptr<char> &debugdir : debugdir_vec)
e4ab2fad 1434 {
5d36dfb9
AU
1435 debugfile = target_prefix ? "target:" : "";
1436 debugfile += debugdir.get ();
a8dbfd58 1437 debugfile += "/";
5f2459c2 1438 debugfile += drive;
5d36dfb9 1439 debugfile += dir_notarget;
a8dbfd58 1440 debugfile += debuglink;
aa28a74e 1441
32a0e547 1442 if (separate_debug_file_exists (debugfile, crc32, objfile))
e80aaf61 1443 return debugfile;
24ddea62 1444
f62318e9
JB
1445 const char *base_path = NULL;
1446 if (canon_dir != NULL)
1447 {
1448 if (canon_sysroot.get () != NULL)
1449 base_path = child_path (canon_sysroot.get (), canon_dir);
1450 else
1451 base_path = child_path (gdb_sysroot, canon_dir);
1452 }
1453 if (base_path != NULL)
24ddea62 1454 {
402d2bfe
JB
1455 /* If the file is in the sysroot, try using its base path in
1456 the global debugfile directory. */
5d36dfb9
AU
1457 debugfile = target_prefix ? "target:" : "";
1458 debugfile += debugdir.get ();
cd4b7848
JB
1459 debugfile += "/";
1460 debugfile += base_path;
a8dbfd58
SM
1461 debugfile += "/";
1462 debugfile += debuglink;
24ddea62 1463
402d2bfe
JB
1464 if (separate_debug_file_exists (debugfile, crc32, objfile))
1465 return debugfile;
1466
1467 /* If the file is in the sysroot, try using its base path in
1468 the sysroot's global debugfile directory. */
1469 debugfile = target_prefix ? "target:" : "";
1470 debugfile += gdb_sysroot;
1471 debugfile += debugdir.get ();
cd4b7848
JB
1472 debugfile += "/";
1473 debugfile += base_path;
402d2bfe
JB
1474 debugfile += "/";
1475 debugfile += debuglink;
1476
32a0e547 1477 if (separate_debug_file_exists (debugfile, crc32, objfile))
e80aaf61 1478 return debugfile;
24ddea62 1479 }
402d2bfe 1480
aa28a74e 1481 }
f888f159 1482
a8dbfd58 1483 return std::string ();
1db33378
PP
1484}
1485
7edbb660 1486/* Modify PATH to contain only "[/]directory/" part of PATH.
1db33378
PP
1487 If there were no directory separators in PATH, PATH will be empty
1488 string on return. */
1489
1490static void
1491terminate_after_last_dir_separator (char *path)
1492{
1493 int i;
1494
1495 /* Strip off the final filename part, leaving the directory name,
1496 followed by a slash. The directory can be relative or absolute. */
1497 for (i = strlen(path) - 1; i >= 0; i--)
1498 if (IS_DIR_SEPARATOR (path[i]))
1499 break;
1500
1501 /* If I is -1 then no directory is present there and DIR will be "". */
1502 path[i + 1] = '\0';
1503}
1504
1505/* Find separate debuginfo for OBJFILE (using .gnu_debuglink section).
a8dbfd58 1506 Returns pathname, or an empty string. */
1db33378 1507
a8dbfd58 1508std::string
1db33378
PP
1509find_separate_debug_file_by_debuglink (struct objfile *objfile)
1510{
1db33378 1511 unsigned long crc32;
1db33378 1512
5eae7aea
TT
1513 gdb::unique_xmalloc_ptr<char> debuglink
1514 (bfd_get_debug_link_info (objfile->obfd, &crc32));
1db33378
PP
1515
1516 if (debuglink == NULL)
1517 {
1518 /* There's no separate debug info, hence there's no way we could
1519 load it => no warning. */
a8dbfd58 1520 return std::string ();
1db33378
PP
1521 }
1522
5eae7aea
TT
1523 std::string dir = objfile_name (objfile);
1524 terminate_after_last_dir_separator (&dir[0]);
1525 gdb::unique_xmalloc_ptr<char> canon_dir (lrealpath (dir.c_str ()));
1db33378 1526
a8dbfd58
SM
1527 std::string debugfile
1528 = find_separate_debug_file (dir.c_str (), canon_dir.get (),
1529 debuglink.get (), crc32, objfile);
1db33378 1530
a8dbfd58 1531 if (debugfile.empty ())
1db33378 1532 {
1db33378
PP
1533 /* For PR gdb/9538, try again with realpath (if different from the
1534 original). */
1535
1536 struct stat st_buf;
1537
4262abfb
JK
1538 if (lstat (objfile_name (objfile), &st_buf) == 0
1539 && S_ISLNK (st_buf.st_mode))
1db33378 1540 {
5eae7aea
TT
1541 gdb::unique_xmalloc_ptr<char> symlink_dir
1542 (lrealpath (objfile_name (objfile)));
1db33378
PP
1543 if (symlink_dir != NULL)
1544 {
5eae7aea
TT
1545 terminate_after_last_dir_separator (symlink_dir.get ());
1546 if (dir != symlink_dir.get ())
1db33378
PP
1547 {
1548 /* Different directory, so try using it. */
5eae7aea
TT
1549 debugfile = find_separate_debug_file (symlink_dir.get (),
1550 symlink_dir.get (),
1551 debuglink.get (),
1db33378
PP
1552 crc32,
1553 objfile);
1554 }
1555 }
1556 }
1db33378 1557 }
aa28a74e 1558
25522fae 1559 return debugfile;
5b5d99cf
JB
1560}
1561
97cbe998
SDJ
1562/* Make sure that OBJF_{READNOW,READNEVER} are not set
1563 simultaneously. */
1564
1565static void
1566validate_readnow_readnever (objfile_flags flags)
1567{
1568 if ((flags & OBJF_READNOW) && (flags & OBJF_READNEVER))
1569 error (_("-readnow and -readnever cannot be used simultaneously"));
1570}
1571
c906108c
SS
1572/* This is the symbol-file command. Read the file, analyze its
1573 symbols, and add a struct symtab to a symtab list. The syntax of
cb2f3a29
MK
1574 the command is rather bizarre:
1575
1576 1. The function buildargv implements various quoting conventions
1577 which are undocumented and have little or nothing in common with
1578 the way things are quoted (or not quoted) elsewhere in GDB.
1579
1580 2. Options are used, which are not generally used in GDB (perhaps
1581 "set mapped on", "set readnow on" would be better)
1582
1583 3. The order of options matters, which is contrary to GNU
c906108c
SS
1584 conventions (because it is confusing and inconvenient). */
1585
1586void
1d8b34a7 1587symbol_file_command (const char *args, int from_tty)
c906108c 1588{
c906108c
SS
1589 dont_repeat ();
1590
1591 if (args == NULL)
1592 {
1adeb98a 1593 symbol_file_clear (from_tty);
c906108c
SS
1594 }
1595 else
1596 {
b15cc25c 1597 objfile_flags flags = OBJF_USERLOADED;
ecf45d2c 1598 symfile_add_flags add_flags = 0;
cb2f3a29 1599 char *name = NULL;
40fc416f 1600 bool stop_processing_options = false;
d4d429d5 1601 CORE_ADDR offset = 0;
40fc416f
SDJ
1602 int idx;
1603 char *arg;
cb2f3a29 1604
ecf45d2c
SL
1605 if (from_tty)
1606 add_flags |= SYMFILE_VERBOSE;
1607
773a1edc 1608 gdb_argv built_argv (args);
40fc416f 1609 for (arg = built_argv[0], idx = 0; arg != NULL; arg = built_argv[++idx])
c906108c 1610 {
40fc416f 1611 if (stop_processing_options || *arg != '-')
7f0f8ac8 1612 {
40fc416f
SDJ
1613 if (name == NULL)
1614 name = arg;
1615 else
1616 error (_("Unrecognized argument \"%s\""), arg);
7f0f8ac8 1617 }
40fc416f
SDJ
1618 else if (strcmp (arg, "-readnow") == 0)
1619 flags |= OBJF_READNOW;
97cbe998
SDJ
1620 else if (strcmp (arg, "-readnever") == 0)
1621 flags |= OBJF_READNEVER;
d4d429d5
PT
1622 else if (strcmp (arg, "-o") == 0)
1623 {
1624 arg = built_argv[++idx];
1625 if (arg == NULL)
1626 error (_("Missing argument to -o"));
1627
1628 offset = parse_and_eval_address (arg);
1629 }
40fc416f
SDJ
1630 else if (strcmp (arg, "--") == 0)
1631 stop_processing_options = true;
1632 else
1633 error (_("Unrecognized argument \"%s\""), arg);
c906108c
SS
1634 }
1635
1636 if (name == NULL)
cb2f3a29 1637 error (_("no symbol file name was specified"));
40fc416f 1638
97cbe998
SDJ
1639 validate_readnow_readnever (flags);
1640
ea142fbf
AH
1641 /* Set SYMFILE_DEFER_BP_RESET because the proper displacement for a PIE
1642 (Position Independent Executable) main symbol file will only be
1643 computed by the solib_create_inferior_hook below. Without it,
1644 breakpoint_re_set would fail to insert the breakpoints with the zero
1645 displacement. */
1646 add_flags |= SYMFILE_DEFER_BP_RESET;
1647
d4d429d5 1648 symbol_file_add_main_1 (name, add_flags, flags, offset);
ea142fbf
AH
1649
1650 solib_create_inferior_hook (from_tty);
1651
1652 /* Now it's safe to re-add the breakpoints. */
1653 breakpoint_re_set ();
c906108c
SS
1654 }
1655}
1656
d3214198 1657/* Set the initial language. */
c906108c 1658
8b60591b 1659void
fba45db2 1660set_initial_language (void)
c906108c 1661{
0dce4280
TV
1662 if (language_mode == language_mode_manual)
1663 return;
9e6c82ad 1664 enum language lang = main_language ();
658dadf0
TV
1665 /* Make C the default language. */
1666 enum language default_lang = language_c;
c906108c 1667
9e6c82ad 1668 if (lang == language_unknown)
01f8c46d 1669 {
cd215b2e 1670 const char *name = main_name ();
658dadf0
TV
1671 struct symbol *sym
1672 = lookup_symbol_in_language (name, NULL, VAR_DOMAIN, default_lang,
1673 NULL).symbol;
f888f159 1674
bf6d8a91 1675 if (sym != NULL)
c1b5c1eb 1676 lang = sym->language ();
01f8c46d 1677 }
cb2f3a29 1678
ccefe4c4
TT
1679 if (lang == language_unknown)
1680 {
658dadf0 1681 lang = default_lang;
c906108c 1682 }
ccefe4c4
TT
1683
1684 set_language (lang);
1685 expected_language = current_language; /* Don't warn the user. */
c906108c
SS
1686}
1687
cb2f3a29
MK
1688/* Open the file specified by NAME and hand it off to BFD for
1689 preliminary analysis. Return a newly initialized bfd *, which
1690 includes a newly malloc'd` copy of NAME (tilde-expanded and made
1691 absolute). In case of trouble, error() is called. */
c906108c 1692
192b62ce 1693gdb_bfd_ref_ptr
97a41605 1694symfile_bfd_open (const char *name)
c906108c 1695{
97a41605 1696 int desc = -1;
c906108c 1697
e0cc99a6 1698 gdb::unique_xmalloc_ptr<char> absolute_name;
97a41605 1699 if (!is_target_filename (name))
f1838a98 1700 {
ee0c3293 1701 gdb::unique_xmalloc_ptr<char> expanded_name (tilde_expand (name));
c906108c 1702
97a41605
GB
1703 /* Look down path for it, allocate 2nd new malloc'd copy. */
1704 desc = openp (getenv ("PATH"),
1705 OPF_TRY_CWD_FIRST | OPF_RETURN_REALPATH,
ee0c3293 1706 expanded_name.get (), O_RDONLY | O_BINARY, &absolute_name);
608506ed 1707#if defined(__GO32__) || defined(_WIN32) || defined (__CYGWIN__)
97a41605
GB
1708 if (desc < 0)
1709 {
ee0c3293 1710 char *exename = (char *) alloca (strlen (expanded_name.get ()) + 5);
433759f7 1711
ee0c3293 1712 strcat (strcpy (exename, expanded_name.get ()), ".exe");
97a41605
GB
1713 desc = openp (getenv ("PATH"),
1714 OPF_TRY_CWD_FIRST | OPF_RETURN_REALPATH,
1715 exename, O_RDONLY | O_BINARY, &absolute_name);
1716 }
c906108c 1717#endif
97a41605 1718 if (desc < 0)
ee0c3293 1719 perror_with_name (expanded_name.get ());
cb2f3a29 1720
e0cc99a6 1721 name = absolute_name.get ();
97a41605 1722 }
c906108c 1723
192b62ce
TT
1724 gdb_bfd_ref_ptr sym_bfd (gdb_bfd_open (name, gnutarget, desc));
1725 if (sym_bfd == NULL)
faab9922
JK
1726 error (_("`%s': can't open to read symbols: %s."), name,
1727 bfd_errmsg (bfd_get_error ()));
97a41605 1728
192b62ce
TT
1729 if (!gdb_bfd_has_target_filename (sym_bfd.get ()))
1730 bfd_set_cacheable (sym_bfd.get (), 1);
c906108c 1731
192b62ce
TT
1732 if (!bfd_check_format (sym_bfd.get (), bfd_object))
1733 error (_("`%s': can't read symbols: %s."), name,
1734 bfd_errmsg (bfd_get_error ()));
cb2f3a29
MK
1735
1736 return sym_bfd;
c906108c
SS
1737}
1738
cb2f3a29
MK
1739/* Return the section index for SECTION_NAME on OBJFILE. Return -1 if
1740 the section was not found. */
1741
0e931cf0 1742int
a121b7c1 1743get_section_index (struct objfile *objfile, const char *section_name)
0e931cf0
JB
1744{
1745 asection *sect = bfd_get_section_by_name (objfile->obfd, section_name);
cb2f3a29 1746
0e931cf0
JB
1747 if (sect)
1748 return sect->index;
1749 else
1750 return -1;
1751}
1752
c256e171
DE
1753/* Link SF into the global symtab_fns list.
1754 FLAVOUR is the file format that SF handles.
1755 Called on startup by the _initialize routine in each object file format
1756 reader, to register information about each format the reader is prepared
1757 to handle. */
c906108c
SS
1758
1759void
c256e171 1760add_symtab_fns (enum bfd_flavour flavour, const struct sym_fns *sf)
c906108c 1761{
905014d7 1762 symtab_fns.emplace_back (flavour, sf);
c906108c
SS
1763}
1764
cb2f3a29
MK
1765/* Initialize OBJFILE to read symbols from its associated BFD. It
1766 either returns or calls error(). The result is an initialized
1767 struct sym_fns in the objfile structure, that contains cached
1768 information about the symbol file. */
c906108c 1769
00b5771c 1770static const struct sym_fns *
31d99776 1771find_sym_fns (bfd *abfd)
c906108c 1772{
31d99776 1773 enum bfd_flavour our_flavour = bfd_get_flavour (abfd);
c906108c 1774
75245b24
MS
1775 if (our_flavour == bfd_target_srec_flavour
1776 || our_flavour == bfd_target_ihex_flavour
1777 || our_flavour == bfd_target_tekhex_flavour)
31d99776 1778 return NULL; /* No symbols. */
75245b24 1779
905014d7
SM
1780 for (const registered_sym_fns &rsf : symtab_fns)
1781 if (our_flavour == rsf.sym_flavour)
1782 return rsf.sym_fns;
cb2f3a29 1783
8a3fe4f8 1784 error (_("I'm sorry, Dave, I can't do that. Symbol format `%s' unknown."),
31d99776 1785 bfd_get_target (abfd));
c906108c
SS
1786}
1787\f
cb2f3a29 1788
c906108c
SS
1789/* This function runs the load command of our current target. */
1790
1791static void
5fed81ff 1792load_command (const char *arg, int from_tty)
c906108c 1793{
e5cc9f32
JB
1794 dont_repeat ();
1795
4487aabf
PA
1796 /* The user might be reloading because the binary has changed. Take
1797 this opportunity to check. */
1798 reopen_exec_file ();
1799 reread_symbols ();
1800
b577b6af 1801 std::string temp;
c906108c 1802 if (arg == NULL)
1986bccd 1803 {
b577b6af 1804 const char *parg, *prev;
1986bccd 1805
b577b6af 1806 arg = get_exec_file (1);
1986bccd 1807
b577b6af
TT
1808 /* We may need to quote this string so buildargv can pull it
1809 apart. */
1810 prev = parg = arg;
1986bccd
AS
1811 while ((parg = strpbrk (parg, "\\\"'\t ")))
1812 {
b577b6af
TT
1813 temp.append (prev, parg - prev);
1814 prev = parg++;
1815 temp.push_back ('\\');
1986bccd 1816 }
b577b6af
TT
1817 /* If we have not copied anything yet, then we didn't see a
1818 character to quote, and we can just leave ARG unchanged. */
1819 if (!temp.empty ())
1986bccd 1820 {
b577b6af
TT
1821 temp.append (prev);
1822 arg = temp.c_str ();
1986bccd
AS
1823 }
1824 }
1825
c906108c 1826 target_load (arg, from_tty);
2889e661
JB
1827
1828 /* After re-loading the executable, we don't really know which
1829 overlays are mapped any more. */
1830 overlay_cache_invalid = 1;
c906108c
SS
1831}
1832
1833/* This version of "load" should be usable for any target. Currently
1834 it is just used for remote targets, not inftarg.c or core files,
1835 on the theory that only in that case is it useful.
1836
1837 Avoiding xmodem and the like seems like a win (a) because we don't have
1838 to worry about finding it, and (b) On VMS, fork() is very slow and so
1839 we don't want to run a subprocess. On the other hand, I'm not sure how
1840 performance compares. */
917317f4 1841
917317f4
JM
1842static int validate_download = 0;
1843
a76d924d 1844/* Opaque data for load_progress. */
55089490
TT
1845struct load_progress_data
1846{
a76d924d 1847 /* Cumulative data. */
55089490
TT
1848 unsigned long write_count = 0;
1849 unsigned long data_count = 0;
1850 bfd_size_type total_size = 0;
a76d924d
DJ
1851};
1852
1853/* Opaque data for load_progress for a single section. */
55089490
TT
1854struct load_progress_section_data
1855{
1856 load_progress_section_data (load_progress_data *cumulative_,
1857 const char *section_name_, ULONGEST section_size_,
1858 CORE_ADDR lma_, gdb_byte *buffer_)
1859 : cumulative (cumulative_), section_name (section_name_),
1860 section_size (section_size_), lma (lma_), buffer (buffer_)
1861 {}
1862
a76d924d 1863 struct load_progress_data *cumulative;
cf7a04e8 1864
a76d924d 1865 /* Per-section data. */
cf7a04e8 1866 const char *section_name;
55089490 1867 ULONGEST section_sent = 0;
cf7a04e8
DJ
1868 ULONGEST section_size;
1869 CORE_ADDR lma;
1870 gdb_byte *buffer;
e4f9b4d5
MS
1871};
1872
55089490
TT
1873/* Opaque data for load_section_callback. */
1874struct load_section_data
1875{
1876 load_section_data (load_progress_data *progress_data_)
1877 : progress_data (progress_data_)
1878 {}
1879
1880 ~load_section_data ()
1881 {
1882 for (auto &&request : requests)
1883 {
1884 xfree (request.data);
1885 delete ((load_progress_section_data *) request.baton);
1886 }
1887 }
1888
1889 CORE_ADDR load_offset = 0;
1890 struct load_progress_data *progress_data;
1891 std::vector<struct memory_write_request> requests;
1892};
1893
a76d924d 1894/* Target write callback routine for progress reporting. */
cf7a04e8
DJ
1895
1896static void
1897load_progress (ULONGEST bytes, void *untyped_arg)
1898{
19ba03f4
SM
1899 struct load_progress_section_data *args
1900 = (struct load_progress_section_data *) untyped_arg;
a76d924d
DJ
1901 struct load_progress_data *totals;
1902
1903 if (args == NULL)
1904 /* Writing padding data. No easy way to get at the cumulative
1905 stats, so just ignore this. */
1906 return;
1907
1908 totals = args->cumulative;
1909
1910 if (bytes == 0 && args->section_sent == 0)
1911 {
1912 /* The write is just starting. Let the user know we've started
1913 this section. */
112e8700
SM
1914 current_uiout->message ("Loading section %s, size %s lma %s\n",
1915 args->section_name,
1916 hex_string (args->section_size),
1917 paddress (target_gdbarch (), args->lma));
a76d924d
DJ
1918 return;
1919 }
cf7a04e8
DJ
1920
1921 if (validate_download)
1922 {
1923 /* Broken memories and broken monitors manifest themselves here
1924 when bring new computers to life. This doubles already slow
1925 downloads. */
1926 /* NOTE: cagney/1999-10-18: A more efficient implementation
1927 might add a verify_memory() method to the target vector and
1928 then use that. remote.c could implement that method using
1929 the ``qCRC'' packet. */
0efef640 1930 gdb::byte_vector check (bytes);
cf7a04e8 1931
0efef640 1932 if (target_read_memory (args->lma, check.data (), bytes) != 0)
5af949e3 1933 error (_("Download verify read failed at %s"),
f5656ead 1934 paddress (target_gdbarch (), args->lma));
0efef640 1935 if (memcmp (args->buffer, check.data (), bytes) != 0)
5af949e3 1936 error (_("Download verify compare failed at %s"),
f5656ead 1937 paddress (target_gdbarch (), args->lma));
cf7a04e8 1938 }
a76d924d 1939 totals->data_count += bytes;
cf7a04e8
DJ
1940 args->lma += bytes;
1941 args->buffer += bytes;
a76d924d 1942 totals->write_count += 1;
cf7a04e8 1943 args->section_sent += bytes;
522002f9 1944 if (check_quit_flag ()
cf7a04e8
DJ
1945 || (deprecated_ui_load_progress_hook != NULL
1946 && deprecated_ui_load_progress_hook (args->section_name,
1947 args->section_sent)))
1948 error (_("Canceled the download"));
1949
1950 if (deprecated_show_load_progress != NULL)
1951 deprecated_show_load_progress (args->section_name,
1952 args->section_sent,
1953 args->section_size,
a76d924d
DJ
1954 totals->data_count,
1955 totals->total_size);
cf7a04e8
DJ
1956}
1957
5486c517 1958/* Service function for generic_load. */
e4f9b4d5
MS
1959
1960static void
5486c517
TT
1961load_one_section (bfd *abfd, asection *asec,
1962 struct load_section_data *args)
e4f9b4d5 1963{
fd361982
AM
1964 bfd_size_type size = bfd_section_size (asec);
1965 const char *sect_name = bfd_section_name (asec);
e4f9b4d5 1966
fd361982 1967 if ((bfd_section_flags (asec) & SEC_LOAD) == 0)
cf7a04e8 1968 return;
e4f9b4d5 1969
cf7a04e8
DJ
1970 if (size == 0)
1971 return;
e4f9b4d5 1972
fd361982 1973 ULONGEST begin = bfd_section_lma (asec) + args->load_offset;
55089490
TT
1974 ULONGEST end = begin + size;
1975 gdb_byte *buffer = (gdb_byte *) xmalloc (size);
cf7a04e8 1976 bfd_get_section_contents (abfd, asec, buffer, 0, size);
a76d924d 1977
55089490
TT
1978 load_progress_section_data *section_data
1979 = new load_progress_section_data (args->progress_data, sect_name, size,
1980 begin, buffer);
cf7a04e8 1981
55089490 1982 args->requests.emplace_back (begin, end, buffer, section_data);
e4f9b4d5
MS
1983}
1984
dcb07cfa
PA
1985static void print_transfer_performance (struct ui_file *stream,
1986 unsigned long data_count,
1987 unsigned long write_count,
dda83cd7 1988 std::chrono::steady_clock::duration d);
dcb07cfa 1989
854f6088
SM
1990/* See symfile.h. */
1991
c906108c 1992void
9cbe5fff 1993generic_load (const char *args, int from_tty)
c906108c 1994{
a76d924d 1995 struct load_progress_data total_progress;
55089490 1996 struct load_section_data cbdata (&total_progress);
79a45e25 1997 struct ui_out *uiout = current_uiout;
a76d924d 1998
d1a41061
PP
1999 if (args == NULL)
2000 error_no_arg (_("file to load"));
1986bccd 2001
773a1edc 2002 gdb_argv argv (args);
1986bccd 2003
ee0c3293 2004 gdb::unique_xmalloc_ptr<char> filename (tilde_expand (argv[0]));
1986bccd
AS
2005
2006 if (argv[1] != NULL)
917317f4 2007 {
f698ca8e 2008 const char *endptr;
ba5f2f8a 2009
f698ca8e 2010 cbdata.load_offset = strtoulst (argv[1], &endptr, 0);
1986bccd
AS
2011
2012 /* If the last word was not a valid number then
dda83cd7 2013 treat it as a file name with spaces in. */
1986bccd 2014 if (argv[1] == endptr)
dda83cd7 2015 error (_("Invalid download offset:%s."), argv[1]);
1986bccd
AS
2016
2017 if (argv[2] != NULL)
2018 error (_("Too many parameters."));
917317f4 2019 }
c906108c 2020
c378eb4e 2021 /* Open the file for loading. */
ad80db5b 2022 gdb_bfd_ref_ptr loadfile_bfd (gdb_bfd_open (filename.get (), gnutarget));
c906108c 2023 if (loadfile_bfd == NULL)
ee0c3293 2024 perror_with_name (filename.get ());
917317f4 2025
192b62ce 2026 if (!bfd_check_format (loadfile_bfd.get (), bfd_object))
c906108c 2027 {
ee0c3293 2028 error (_("\"%s\" is not an object file: %s"), filename.get (),
c906108c
SS
2029 bfd_errmsg (bfd_get_error ()));
2030 }
c5aa993b 2031
5486c517
TT
2032 for (asection *asec : gdb_bfd_sections (loadfile_bfd))
2033 total_progress.total_size += bfd_section_size (asec);
a76d924d 2034
5486c517
TT
2035 for (asection *asec : gdb_bfd_sections (loadfile_bfd))
2036 load_one_section (loadfile_bfd.get (), asec, &cbdata);
c2d11a7d 2037
dcb07cfa
PA
2038 using namespace std::chrono;
2039
2040 steady_clock::time_point start_time = steady_clock::now ();
c906108c 2041
a76d924d
DJ
2042 if (target_write_memory_blocks (cbdata.requests, flash_discard,
2043 load_progress) != 0)
2044 error (_("Load failed"));
c906108c 2045
dcb07cfa 2046 steady_clock::time_point end_time = steady_clock::now ();
ba5f2f8a 2047
55089490 2048 CORE_ADDR entry = bfd_get_start_address (loadfile_bfd.get ());
8c2b9656 2049 entry = gdbarch_addr_bits_remove (target_gdbarch (), entry);
112e8700 2050 uiout->text ("Start address ");
ca8d69be 2051 uiout->field_core_addr ("address", target_gdbarch (), entry);
112e8700 2052 uiout->text (", load size ");
1f77b012 2053 uiout->field_unsigned ("load-size", total_progress.data_count);
112e8700 2054 uiout->text ("\n");
fb14de7b 2055 regcache_write_pc (get_current_regcache (), entry);
c906108c 2056
38963c97
DJ
2057 /* Reset breakpoints, now that we have changed the load image. For
2058 instance, breakpoints may have been set (or reset, by
2059 post_create_inferior) while connected to the target but before we
2060 loaded the program. In that case, the prologue analyzer could
2061 have read instructions from the target to find the right
2062 breakpoint locations. Loading has changed the contents of that
2063 memory. */
2064
2065 breakpoint_re_set ();
2066
a76d924d
DJ
2067 print_transfer_performance (gdb_stdout, total_progress.data_count,
2068 total_progress.write_count,
dcb07cfa 2069 end_time - start_time);
c906108c
SS
2070}
2071
dcb07cfa
PA
2072/* Report on STREAM the performance of a memory transfer operation,
2073 such as 'load'. DATA_COUNT is the number of bytes transferred.
2074 WRITE_COUNT is the number of separate write operations, or 0, if
2075 that information is not available. TIME is how long the operation
2076 lasted. */
c906108c 2077
dcb07cfa 2078static void
d9fcf2fb 2079print_transfer_performance (struct ui_file *stream,
917317f4
JM
2080 unsigned long data_count,
2081 unsigned long write_count,
dcb07cfa 2082 std::chrono::steady_clock::duration time)
917317f4 2083{
dcb07cfa 2084 using namespace std::chrono;
79a45e25 2085 struct ui_out *uiout = current_uiout;
2b71414d 2086
dcb07cfa 2087 milliseconds ms = duration_cast<milliseconds> (time);
2b71414d 2088
112e8700 2089 uiout->text ("Transfer rate: ");
dcb07cfa 2090 if (ms.count () > 0)
8b93c638 2091 {
dcb07cfa 2092 unsigned long rate = ((ULONGEST) data_count * 1000) / ms.count ();
9f43d28c 2093
112e8700 2094 if (uiout->is_mi_like_p ())
9f43d28c 2095 {
1f77b012 2096 uiout->field_unsigned ("transfer-rate", rate * 8);
112e8700 2097 uiout->text (" bits/sec");
9f43d28c
DJ
2098 }
2099 else if (rate < 1024)
2100 {
1f77b012 2101 uiout->field_unsigned ("transfer-rate", rate);
112e8700 2102 uiout->text (" bytes/sec");
9f43d28c
DJ
2103 }
2104 else
2105 {
1f77b012 2106 uiout->field_unsigned ("transfer-rate", rate / 1024);
112e8700 2107 uiout->text (" KB/sec");
9f43d28c 2108 }
8b93c638
JM
2109 }
2110 else
2111 {
1f77b012 2112 uiout->field_unsigned ("transferred-bits", (data_count * 8));
112e8700 2113 uiout->text (" bits in <1 sec");
8b93c638
JM
2114 }
2115 if (write_count > 0)
2116 {
112e8700 2117 uiout->text (", ");
1f77b012 2118 uiout->field_unsigned ("write-rate", data_count / write_count);
112e8700 2119 uiout->text (" bytes/write");
8b93c638 2120 }
112e8700 2121 uiout->text (".\n");
c906108c
SS
2122}
2123
291f9a96
PT
2124/* Add an OFFSET to the start address of each section in OBJF, except
2125 sections that were specified in ADDRS. */
2126
2127static void
2128set_objfile_default_section_offset (struct objfile *objf,
2129 const section_addr_info &addrs,
2130 CORE_ADDR offset)
2131{
2132 /* Add OFFSET to all sections by default. */
6a053cb1 2133 section_offsets offsets (objf->section_offsets.size (), offset);
291f9a96
PT
2134
2135 /* Create sorted lists of all sections in ADDRS as well as all
2136 sections in OBJF. */
2137
2138 std::vector<const struct other_sections *> addrs_sorted
2139 = addrs_section_sort (addrs);
2140
2141 section_addr_info objf_addrs
2142 = build_section_addr_info_from_objfile (objf);
2143 std::vector<const struct other_sections *> objf_addrs_sorted
2144 = addrs_section_sort (objf_addrs);
2145
2146 /* Walk the BFD section list, and if a matching section is found in
2147 ADDRS_SORTED_LIST, set its offset to zero to keep its address
2148 unchanged.
2149
2150 Note that both lists may contain multiple sections with the same
2151 name, and then the sections from ADDRS are matched in BFD order
2152 (thanks to sectindex). */
2153
2154 std::vector<const struct other_sections *>::iterator addrs_sorted_iter
2155 = addrs_sorted.begin ();
ff27d073 2156 for (const other_sections *objf_sect : objf_addrs_sorted)
291f9a96
PT
2157 {
2158 const char *objf_name = addr_section_name (objf_sect->name.c_str ());
2159 int cmp = -1;
2160
2161 while (cmp < 0 && addrs_sorted_iter != addrs_sorted.end ())
2162 {
2163 const struct other_sections *sect = *addrs_sorted_iter;
2164 const char *sect_name = addr_section_name (sect->name.c_str ());
2165 cmp = strcmp (sect_name, objf_name);
2166 if (cmp <= 0)
2167 ++addrs_sorted_iter;
2168 }
2169
2170 if (cmp == 0)
6a053cb1 2171 offsets[objf_sect->sectindex] = 0;
291f9a96
PT
2172 }
2173
2174 /* Apply the new section offsets. */
6a053cb1 2175 objfile_relocate (objf, offsets);
291f9a96
PT
2176}
2177
c906108c
SS
2178/* This function allows the addition of incrementally linked object files.
2179 It does not modify any state in the target, only in the debugger. */
2180
c906108c 2181static void
2cf311eb 2182add_symbol_file_command (const char *args, int from_tty)
c906108c 2183{
5af949e3 2184 struct gdbarch *gdbarch = get_current_arch ();
ee0c3293 2185 gdb::unique_xmalloc_ptr<char> filename;
c906108c 2186 char *arg;
2acceee2 2187 int argcnt = 0;
76ad5e1e 2188 struct objfile *objf;
b15cc25c
PA
2189 objfile_flags flags = OBJF_USERLOADED | OBJF_SHARED;
2190 symfile_add_flags add_flags = 0;
2191
2192 if (from_tty)
2193 add_flags |= SYMFILE_VERBOSE;
db162d44 2194
a39a16c4 2195 struct sect_opt
2acceee2 2196 {
a121b7c1
PA
2197 const char *name;
2198 const char *value;
a39a16c4 2199 };
db162d44 2200
40fc416f
SDJ
2201 std::vector<sect_opt> sect_opts = { { ".text", NULL } };
2202 bool stop_processing_options = false;
291f9a96 2203 CORE_ADDR offset = 0;
c5aa993b 2204
c906108c
SS
2205 dont_repeat ();
2206
2207 if (args == NULL)
8a3fe4f8 2208 error (_("add-symbol-file takes a file name and an address"));
c906108c 2209
40fc416f 2210 bool seen_addr = false;
291f9a96 2211 bool seen_offset = false;
773a1edc 2212 gdb_argv argv (args);
db162d44 2213
5b96932b
AS
2214 for (arg = argv[0], argcnt = 0; arg != NULL; arg = argv[++argcnt])
2215 {
40fc416f 2216 if (stop_processing_options || *arg != '-')
41dc8db8 2217 {
40fc416f 2218 if (filename == NULL)
41dc8db8 2219 {
40fc416f
SDJ
2220 /* First non-option argument is always the filename. */
2221 filename.reset (tilde_expand (arg));
41dc8db8 2222 }
40fc416f 2223 else if (!seen_addr)
41dc8db8 2224 {
40fc416f
SDJ
2225 /* The second non-option argument is always the text
2226 address at which to load the program. */
2227 sect_opts[0].value = arg;
2228 seen_addr = true;
41dc8db8
MB
2229 }
2230 else
02ca603a 2231 error (_("Unrecognized argument \"%s\""), arg);
41dc8db8 2232 }
40fc416f
SDJ
2233 else if (strcmp (arg, "-readnow") == 0)
2234 flags |= OBJF_READNOW;
97cbe998
SDJ
2235 else if (strcmp (arg, "-readnever") == 0)
2236 flags |= OBJF_READNEVER;
40fc416f
SDJ
2237 else if (strcmp (arg, "-s") == 0)
2238 {
2239 if (argv[argcnt + 1] == NULL)
2240 error (_("Missing section name after \"-s\""));
2241 else if (argv[argcnt + 2] == NULL)
2242 error (_("Missing section address after \"-s\""));
2243
2244 sect_opt sect = { argv[argcnt + 1], argv[argcnt + 2] };
2245
2246 sect_opts.push_back (sect);
2247 argcnt += 2;
2248 }
291f9a96
PT
2249 else if (strcmp (arg, "-o") == 0)
2250 {
2251 arg = argv[++argcnt];
2252 if (arg == NULL)
2253 error (_("Missing argument to -o"));
2254
2255 offset = parse_and_eval_address (arg);
2256 seen_offset = true;
2257 }
40fc416f
SDJ
2258 else if (strcmp (arg, "--") == 0)
2259 stop_processing_options = true;
2260 else
2261 error (_("Unrecognized argument \"%s\""), arg);
c906108c 2262 }
c906108c 2263
40fc416f
SDJ
2264 if (filename == NULL)
2265 error (_("You must provide a filename to be loaded."));
2266
97cbe998
SDJ
2267 validate_readnow_readnever (flags);
2268
c378eb4e 2269 /* Print the prompt for the query below. And save the arguments into
db162d44
EZ
2270 a sect_addr_info structure to be passed around to other
2271 functions. We have to split this up into separate print
bb599908 2272 statements because hex_string returns a local static
c378eb4e 2273 string. */
5417f6dc 2274
ed6dfe51 2275 printf_unfiltered (_("add symbol table from file \"%s\""),
ee0c3293 2276 filename.get ());
37e136b1 2277 section_addr_info section_addrs;
ed6dfe51
PT
2278 std::vector<sect_opt>::const_iterator it = sect_opts.begin ();
2279 if (!seen_addr)
2280 ++it;
2281 for (; it != sect_opts.end (); ++it)
c906108c 2282 {
db162d44 2283 CORE_ADDR addr;
ed6dfe51
PT
2284 const char *val = it->value;
2285 const char *sec = it->name;
5417f6dc 2286
ed6dfe51
PT
2287 if (section_addrs.empty ())
2288 printf_unfiltered (_(" at\n"));
ae822768 2289 addr = parse_and_eval_address (val);
db162d44 2290
db162d44 2291 /* Here we store the section offsets in the order they were
dda83cd7
SM
2292 entered on the command line. Every array element is
2293 assigned an ascending section index to preserve the above
2294 order over an unstable sorting algorithm. This dummy
2295 index is not used for any other purpose.
d81a3eaf
PT
2296 */
2297 section_addrs.emplace_back (addr, sec, section_addrs.size ());
22068491
TT
2298 printf_filtered ("\t%s_addr = %s\n", sec,
2299 paddress (gdbarch, addr));
db162d44 2300
5417f6dc 2301 /* The object's sections are initialized when a
db162d44 2302 call is made to build_objfile_section_table (objfile).
5417f6dc 2303 This happens in reread_symbols.
db162d44
EZ
2304 At this point, we don't know what file type this is,
2305 so we can't determine what section names are valid. */
2acceee2 2306 }
291f9a96
PT
2307 if (seen_offset)
2308 printf_unfiltered (_("%s offset by %s\n"),
2309 (section_addrs.empty ()
2310 ? _(" with all sections")
2311 : _("with other sections")),
2312 paddress (gdbarch, offset));
2313 else if (section_addrs.empty ())
ed6dfe51 2314 printf_unfiltered ("\n");
db162d44 2315
2acceee2 2316 if (from_tty && (!query ("%s", "")))
8a3fe4f8 2317 error (_("Not confirmed."));
c906108c 2318
37e136b1
TT
2319 objf = symbol_file_add (filename.get (), add_flags, &section_addrs,
2320 flags);
f5686554
TT
2321 if (!objfile_has_symbols (objf) && objf->per_bfd->minimal_symbol_count <= 0)
2322 warning (_("newly-added symbol file \"%s\" does not provide any symbols"),
2323 filename.get ());
76ad5e1e 2324
291f9a96
PT
2325 if (seen_offset)
2326 set_objfile_default_section_offset (objf, section_addrs, offset);
2327
d9eebde0 2328 current_program_space->add_target_sections (objf);
c906108c
SS
2329
2330 /* Getting new symbols may change our opinion about what is
2331 frameless. */
2332 reinit_frame_cache ();
2333}
2334\f
70992597 2335
63644780
NB
2336/* This function removes a symbol file that was added via add-symbol-file. */
2337
2338static void
2cf311eb 2339remove_symbol_file_command (const char *args, int from_tty)
63644780 2340{
63644780 2341 struct objfile *objf = NULL;
63644780 2342 struct program_space *pspace = current_program_space;
63644780
NB
2343
2344 dont_repeat ();
2345
2346 if (args == NULL)
2347 error (_("remove-symbol-file: no symbol file provided"));
2348
773a1edc 2349 gdb_argv argv (args);
63644780
NB
2350
2351 if (strcmp (argv[0], "-a") == 0)
2352 {
2353 /* Interpret the next argument as an address. */
2354 CORE_ADDR addr;
2355
2356 if (argv[1] == NULL)
2357 error (_("Missing address argument"));
2358
2359 if (argv[2] != NULL)
2360 error (_("Junk after %s"), argv[1]);
2361
2362 addr = parse_and_eval_address (argv[1]);
2363
2030c079 2364 for (objfile *objfile : current_program_space->objfiles ())
63644780 2365 {
aed57c53
TT
2366 if ((objfile->flags & OBJF_USERLOADED) != 0
2367 && (objfile->flags & OBJF_SHARED) != 0
2368 && objfile->pspace == pspace
2369 && is_addr_in_objfile (addr, objfile))
2370 {
2371 objf = objfile;
2372 break;
2373 }
63644780
NB
2374 }
2375 }
2376 else if (argv[0] != NULL)
2377 {
2378 /* Interpret the current argument as a file name. */
63644780
NB
2379
2380 if (argv[1] != NULL)
2381 error (_("Junk after %s"), argv[0]);
2382
ee0c3293 2383 gdb::unique_xmalloc_ptr<char> filename (tilde_expand (argv[0]));
63644780 2384
2030c079 2385 for (objfile *objfile : current_program_space->objfiles ())
63644780 2386 {
aed57c53
TT
2387 if ((objfile->flags & OBJF_USERLOADED) != 0
2388 && (objfile->flags & OBJF_SHARED) != 0
2389 && objfile->pspace == pspace
2390 && filename_cmp (filename.get (), objfile_name (objfile)) == 0)
2391 {
2392 objf = objfile;
2393 break;
2394 }
63644780
NB
2395 }
2396 }
2397
2398 if (objf == NULL)
2399 error (_("No symbol file found"));
2400
2401 if (from_tty
2402 && !query (_("Remove symbol table from file \"%s\"? "),
2403 objfile_name (objf)))
2404 error (_("Not confirmed."));
2405
268e4f09 2406 objf->unlink ();
63644780 2407 clear_symtab_users (0);
63644780
NB
2408}
2409
c906108c 2410/* Re-read symbols if a symbol-file has changed. */
3b7bacac 2411
c906108c 2412void
fba45db2 2413reread_symbols (void)
c906108c 2414{
c906108c 2415 long new_modtime;
c906108c
SS
2416 struct stat new_statbuf;
2417 int res;
4c404b8b 2418 std::vector<struct objfile *> new_objfiles;
c906108c 2419
bf227d61 2420 for (objfile *objfile : current_program_space->objfiles ())
c5aa993b 2421 {
9cce227f
TG
2422 if (objfile->obfd == NULL)
2423 continue;
2424
2425 /* Separate debug objfiles are handled in the main objfile. */
2426 if (objfile->separate_debug_objfile_backlink)
2427 continue;
2428
02aeec7b
JB
2429 /* If this object is from an archive (what you usually create with
2430 `ar', often called a `static library' on most systems, though
2431 a `shared library' on AIX is also an archive), then you should
2432 stat on the archive name, not member name. */
9cce227f 2433 if (objfile->obfd->my_archive)
c7e97679 2434 res = stat (bfd_get_filename (objfile->obfd->my_archive), &new_statbuf);
9cce227f 2435 else
4262abfb 2436 res = stat (objfile_name (objfile), &new_statbuf);
9cce227f
TG
2437 if (res != 0)
2438 {
c378eb4e 2439 /* FIXME, should use print_sys_errmsg but it's not filtered. */
22068491
TT
2440 printf_filtered (_("`%s' has disappeared; keeping its symbols.\n"),
2441 objfile_name (objfile));
9cce227f
TG
2442 continue;
2443 }
2444 new_modtime = new_statbuf.st_mtime;
2445 if (new_modtime != objfile->mtime)
2446 {
22068491
TT
2447 printf_filtered (_("`%s' has changed; re-reading symbols.\n"),
2448 objfile_name (objfile));
9cce227f
TG
2449
2450 /* There are various functions like symbol_file_add,
2451 symfile_bfd_open, syms_from_objfile, etc., which might
2452 appear to do what we want. But they have various other
2453 effects which we *don't* want. So we just do stuff
2454 ourselves. We don't worry about mapped files (for one thing,
2455 any mapped file will be out of date). */
2456
2457 /* If we get an error, blow away this objfile (not sure if
2458 that is the correct response for things like shared
2459 libraries). */
268e4f09 2460 objfile_up objfile_holder (objfile);
ed2b3126 2461
9cce227f 2462 /* We need to do this whenever any symbols go away. */
286526c1 2463 clear_symtab_users_cleanup defer_clear_users (0);
9cce227f 2464
7e10abd1 2465 if (current_program_space->exec_bfd () != NULL
0ba1096a 2466 && filename_cmp (bfd_get_filename (objfile->obfd),
7e10abd1 2467 bfd_get_filename (current_program_space->exec_bfd ())) == 0)
9cce227f
TG
2468 {
2469 /* Reload EXEC_BFD without asking anything. */
2470
2471 exec_file_attach (bfd_get_filename (objfile->obfd), 0);
2472 }
2473
f6eeced0
JK
2474 /* Keep the calls order approx. the same as in free_objfile. */
2475
2476 /* Free the separate debug objfiles. It will be
2477 automatically recreated by sym_read. */
2478 free_objfile_separate_debug (objfile);
2479
7b71fc97
L
2480 /* Clear the stale source cache. */
2481 forget_cached_source_info ();
2482
f6eeced0
JK
2483 /* Remove any references to this objfile in the global
2484 value lists. */
2485 preserve_values (objfile);
2486
2487 /* Nuke all the state that we will re-read. Much of the following
2488 code which sets things to NULL really is necessary to tell
2489 other parts of GDB that there is nothing currently there.
2490
2491 Try to keep the freeing order compatible with free_objfile. */
2492
2493 if (objfile->sf != NULL)
2494 {
2495 (*objfile->sf->sym_finish) (objfile);
2496 }
2497
2498 clear_objfile_data (objfile);
2499
e1507e95 2500 /* Clean up any state BFD has sitting around. */
a4453b7e 2501 {
192b62ce 2502 gdb_bfd_ref_ptr obfd (objfile->obfd);
b16c44de 2503 const char *obfd_filename;
a4453b7e
TT
2504
2505 obfd_filename = bfd_get_filename (objfile->obfd);
2506 /* Open the new BFD before freeing the old one, so that
2507 the filename remains live. */
ad80db5b 2508 gdb_bfd_ref_ptr temp (gdb_bfd_open (obfd_filename, gnutarget));
192b62ce 2509 objfile->obfd = temp.release ();
e1507e95 2510 if (objfile->obfd == NULL)
192b62ce 2511 error (_("Can't open %s to read symbols."), obfd_filename);
a4453b7e
TT
2512 }
2513
c0c9f665 2514 std::string original_name = objfile->original_name;
24ba069a 2515
9cce227f
TG
2516 /* bfd_openr sets cacheable to true, which is what we want. */
2517 if (!bfd_check_format (objfile->obfd, bfd_object))
4262abfb 2518 error (_("Can't read symbols from %s: %s."), objfile_name (objfile),
9cce227f
TG
2519 bfd_errmsg (bfd_get_error ()));
2520
41664b45
DG
2521 /* NB: after this call to obstack_free, objfiles_changed
2522 will need to be called (see discussion below). */
9cce227f
TG
2523 obstack_free (&objfile->objfile_obstack, 0);
2524 objfile->sections = NULL;
9d428aae
SM
2525 objfile->section_offsets.clear ();
2526 objfile->sect_index_bss = -1;
2527 objfile->sect_index_data = -1;
2528 objfile->sect_index_rodata = -1;
2529 objfile->sect_index_text = -1;
43f3e411 2530 objfile->compunit_symtabs = NULL;
34eaf542 2531 objfile->template_symbols = NULL;
cf250e36 2532 objfile->static_links.reset (nullptr);
9cce227f 2533
9cce227f
TG
2534 /* obstack_init also initializes the obstack so it is
2535 empty. We could use obstack_specify_allocation but
d82ea6a8 2536 gdb_obstack.h specifies the alloc/dealloc functions. */
9cce227f 2537 obstack_init (&objfile->objfile_obstack);
779bd270 2538
846060df
JB
2539 /* set_objfile_per_bfd potentially allocates the per-bfd
2540 data on the objfile's obstack (if sharing data across
2541 multiple users is not possible), so it's important to
2542 do it *after* the obstack has been initialized. */
2543 set_objfile_per_bfd (objfile);
2544
224c3ddb 2545 objfile->original_name
efba19b0 2546 = obstack_strdup (&objfile->objfile_obstack, original_name);
24ba069a 2547
779bd270
DE
2548 /* Reset the sym_fns pointer. The ELF reader can change it
2549 based on whether .gdb_index is present, and we need it to
2550 start over. PR symtab/15885 */
8fb8eb5c 2551 objfile_set_sym_fns (objfile, find_sym_fns (objfile->obfd));
e1114590 2552 objfile->qf.clear ();
779bd270 2553
d82ea6a8 2554 build_objfile_section_table (objfile);
9cce227f 2555
9cce227f
TG
2556 /* What the hell is sym_new_init for, anyway? The concept of
2557 distinguishing between the main file and additional files
2558 in this way seems rather dubious. */
a42d7dd8 2559 if (objfile == current_program_space->symfile_object_file)
c906108c 2560 {
9cce227f 2561 (*objfile->sf->sym_new_init) (objfile);
c906108c 2562 }
9cce227f
TG
2563
2564 (*objfile->sf->sym_init) (objfile);
5ca8c39f 2565 clear_complaints ();
608e2dbb
TT
2566
2567 objfile->flags &= ~OBJF_PSYMTABS_READ;
41664b45
DG
2568
2569 /* We are about to read new symbols and potentially also
2570 DWARF information. Some targets may want to pass addresses
2571 read from DWARF DIE's through an adjustment function before
2572 saving them, like MIPS, which may call into
2573 "find_pc_section". When called, that function will make
2574 use of per-objfile program space data.
2575
2576 Since we discarded our section information above, we have
2577 dangling pointers in the per-objfile program space data
2578 structure. Force GDB to update the section mapping
2579 information by letting it know the objfile has changed,
2580 making the dangling pointers point to correct data
2581 again. */
2582
2583 objfiles_changed ();
2584
9d428aae
SM
2585 /* Recompute section offsets and section indices. */
2586 objfile->sf->sym_offsets (objfile, {});
2587
608e2dbb 2588 read_symbols (objfile, 0);
b11896a5 2589
9cce227f 2590 if (!objfile_has_symbols (objfile))
c906108c 2591 {
9cce227f 2592 wrap_here ("");
22068491 2593 printf_filtered (_("(no debugging symbols found)\n"));
9cce227f 2594 wrap_here ("");
c5aa993b 2595 }
9cce227f
TG
2596
2597 /* We're done reading the symbol file; finish off complaints. */
5ca8c39f 2598 clear_complaints ();
9cce227f
TG
2599
2600 /* Getting new symbols may change our opinion about what is
2601 frameless. */
2602
2603 reinit_frame_cache ();
2604
2605 /* Discard cleanups as symbol reading was successful. */
ed2b3126 2606 objfile_holder.release ();
286526c1 2607 defer_clear_users.release ();
9cce227f
TG
2608
2609 /* If the mtime has changed between the time we set new_modtime
2610 and now, we *want* this to be out of date, so don't call stat
2611 again now. */
2612 objfile->mtime = new_modtime;
9cce227f 2613 init_entry_point_info (objfile);
4ac39b97 2614
4c404b8b 2615 new_objfiles.push_back (objfile);
c906108c
SS
2616 }
2617 }
c906108c 2618
4c404b8b 2619 if (!new_objfiles.empty ())
ea53e89f 2620 {
c1e56572 2621 clear_symtab_users (0);
4ac39b97
JK
2622
2623 /* clear_objfile_data for each objfile was called before freeing it and
76727919 2624 gdb::observers::new_objfile.notify (NULL) has been called by
4ac39b97 2625 clear_symtab_users above. Notify the new files now. */
4c404b8b 2626 for (auto iter : new_objfiles)
c486b610 2627 gdb::observers::new_objfile.notify (iter);
4ac39b97 2628
ea53e89f 2629 /* At least one objfile has changed, so we can consider that
dda83cd7 2630 the executable we're debugging has changed too. */
76727919 2631 gdb::observers::executable_changed.notify ();
ea53e89f 2632 }
c906108c 2633}
c906108c
SS
2634\f
2635
593e3209 2636struct filename_language
c5aa993b 2637{
593e3209
SM
2638 filename_language (const std::string &ext_, enum language lang_)
2639 : ext (ext_), lang (lang_)
2640 {}
3fcf0b0d 2641
593e3209
SM
2642 std::string ext;
2643 enum language lang;
2644};
c906108c 2645
593e3209 2646static std::vector<filename_language> filename_language_table;
c906108c 2647
56618e20
TT
2648/* See symfile.h. */
2649
2650void
2651add_filename_language (const char *ext, enum language lang)
c906108c 2652{
e171d6f1 2653 gdb_assert (ext != nullptr);
593e3209 2654 filename_language_table.emplace_back (ext, lang);
c906108c
SS
2655}
2656
2657static char *ext_args;
920d2a44
AC
2658static void
2659show_ext_args (struct ui_file *file, int from_tty,
2660 struct cmd_list_element *c, const char *value)
2661{
3e43a32a
MS
2662 fprintf_filtered (file,
2663 _("Mapping between filename extension "
2664 "and source language is \"%s\".\n"),
920d2a44
AC
2665 value);
2666}
c906108c
SS
2667
2668static void
eb4c3f4a
TT
2669set_ext_lang_command (const char *args,
2670 int from_tty, struct cmd_list_element *e)
c906108c 2671{
c906108c
SS
2672 char *cp = ext_args;
2673 enum language lang;
2674
c378eb4e 2675 /* First arg is filename extension, starting with '.' */
c906108c 2676 if (*cp != '.')
8a3fe4f8 2677 error (_("'%s': Filename extension must begin with '.'"), ext_args);
c906108c
SS
2678
2679 /* Find end of first arg. */
c5aa993b 2680 while (*cp && !isspace (*cp))
c906108c
SS
2681 cp++;
2682
2683 if (*cp == '\0')
3e43a32a
MS
2684 error (_("'%s': two arguments required -- "
2685 "filename extension and language"),
c906108c
SS
2686 ext_args);
2687
c378eb4e 2688 /* Null-terminate first arg. */
c5aa993b 2689 *cp++ = '\0';
c906108c
SS
2690
2691 /* Find beginning of second arg, which should be a source language. */
529480d0 2692 cp = skip_spaces (cp);
c906108c
SS
2693
2694 if (*cp == '\0')
3e43a32a
MS
2695 error (_("'%s': two arguments required -- "
2696 "filename extension and language"),
c906108c
SS
2697 ext_args);
2698
2699 /* Lookup the language from among those we know. */
2700 lang = language_enum (cp);
2701
593e3209 2702 auto it = filename_language_table.begin ();
c906108c 2703 /* Now lookup the filename extension: do we already know it? */
593e3209 2704 for (; it != filename_language_table.end (); it++)
3fcf0b0d 2705 {
593e3209 2706 if (it->ext == ext_args)
3fcf0b0d
TT
2707 break;
2708 }
c906108c 2709
593e3209 2710 if (it == filename_language_table.end ())
c906108c 2711 {
c378eb4e 2712 /* New file extension. */
c906108c
SS
2713 add_filename_language (ext_args, lang);
2714 }
2715 else
2716 {
c378eb4e 2717 /* Redefining a previously known filename extension. */
c906108c
SS
2718
2719 /* if (from_tty) */
2720 /* query ("Really make files of type %s '%s'?", */
2721 /* ext_args, language_str (lang)); */
2722
593e3209 2723 it->lang = lang;
c906108c
SS
2724 }
2725}
2726
2727static void
1d12d88f 2728info_ext_lang_command (const char *args, int from_tty)
c906108c 2729{
a3f17187 2730 printf_filtered (_("Filename extensions and the languages they represent:"));
c906108c 2731 printf_filtered ("\n\n");
593e3209
SM
2732 for (const filename_language &entry : filename_language_table)
2733 printf_filtered ("\t%s\t- %s\n", entry.ext.c_str (),
2734 language_str (entry.lang));
c906108c
SS
2735}
2736
c906108c 2737enum language
dd786858 2738deduce_language_from_filename (const char *filename)
c906108c 2739{
e6a959d6 2740 const char *cp;
c906108c
SS
2741
2742 if (filename != NULL)
2743 if ((cp = strrchr (filename, '.')) != NULL)
3fcf0b0d 2744 {
593e3209
SM
2745 for (const filename_language &entry : filename_language_table)
2746 if (entry.ext == cp)
2747 return entry.lang;
3fcf0b0d 2748 }
c906108c
SS
2749
2750 return language_unknown;
2751}
2752\f
43f3e411
DE
2753/* Allocate and initialize a new symbol table.
2754 CUST is from the result of allocate_compunit_symtab. */
c906108c
SS
2755
2756struct symtab *
43f3e411 2757allocate_symtab (struct compunit_symtab *cust, const char *filename)
c906108c 2758{
43f3e411
DE
2759 struct objfile *objfile = cust->objfile;
2760 struct symtab *symtab
2761 = OBSTACK_ZALLOC (&objfile->objfile_obstack, struct symtab);
c906108c 2762
be1e3d3e 2763 symtab->filename = objfile->intern (filename);
c5aa993b
JM
2764 symtab->fullname = NULL;
2765 symtab->language = deduce_language_from_filename (filename);
c906108c 2766
db0fec5c
DE
2767 /* This can be very verbose with lots of headers.
2768 Only print at higher debug levels. */
2769 if (symtab_create_debug >= 2)
45cfd468
DE
2770 {
2771 /* Be a bit clever with debugging messages, and don't print objfile
2772 every time, only when it changes. */
2773 static char *last_objfile_name = NULL;
2774
2775 if (last_objfile_name == NULL
4262abfb 2776 || strcmp (last_objfile_name, objfile_name (objfile)) != 0)
45cfd468
DE
2777 {
2778 xfree (last_objfile_name);
4262abfb 2779 last_objfile_name = xstrdup (objfile_name (objfile));
22068491
TT
2780 fprintf_filtered (gdb_stdlog,
2781 "Creating one or more symtabs for objfile %s ...\n",
2782 last_objfile_name);
45cfd468 2783 }
22068491
TT
2784 fprintf_filtered (gdb_stdlog,
2785 "Created symtab %s for module %s.\n",
2786 host_address_to_string (symtab), filename);
45cfd468
DE
2787 }
2788
43f3e411
DE
2789 /* Add it to CUST's list of symtabs. */
2790 if (cust->filetabs == NULL)
2791 {
2792 cust->filetabs = symtab;
2793 cust->last_filetab = symtab;
2794 }
2795 else
2796 {
2797 cust->last_filetab->next = symtab;
2798 cust->last_filetab = symtab;
2799 }
2800
2801 /* Backlink to the containing compunit symtab. */
2802 symtab->compunit_symtab = cust;
2803
2804 return symtab;
2805}
2806
2807/* Allocate and initialize a new compunit.
2808 NAME is the name of the main source file, if there is one, or some
2809 descriptive text if there are no source files. */
2810
2811struct compunit_symtab *
2812allocate_compunit_symtab (struct objfile *objfile, const char *name)
2813{
2814 struct compunit_symtab *cu = OBSTACK_ZALLOC (&objfile->objfile_obstack,
2815 struct compunit_symtab);
2816 const char *saved_name;
2817
2818 cu->objfile = objfile;
2819
2820 /* The name we record here is only for display/debugging purposes.
2821 Just save the basename to avoid path issues (too long for display,
2822 relative vs absolute, etc.). */
2823 saved_name = lbasename (name);
021887d8 2824 cu->name = obstack_strdup (&objfile->objfile_obstack, saved_name);
43f3e411
DE
2825
2826 COMPUNIT_DEBUGFORMAT (cu) = "unknown";
2827
2828 if (symtab_create_debug)
2829 {
22068491
TT
2830 fprintf_filtered (gdb_stdlog,
2831 "Created compunit symtab %s for %s.\n",
2832 host_address_to_string (cu),
2833 cu->name);
43f3e411
DE
2834 }
2835
2836 return cu;
2837}
2838
2839/* Hook CU to the objfile it comes from. */
2840
2841void
2842add_compunit_symtab_to_objfile (struct compunit_symtab *cu)
2843{
2844 cu->next = cu->objfile->compunit_symtabs;
2845 cu->objfile->compunit_symtabs = cu;
c906108c 2846}
c906108c 2847\f
c5aa993b 2848
b15cc25c
PA
2849/* Reset all data structures in gdb which may contain references to
2850 symbol table data. */
c906108c
SS
2851
2852void
b15cc25c 2853clear_symtab_users (symfile_add_flags add_flags)
c906108c
SS
2854{
2855 /* Someday, we should do better than this, by only blowing away
2856 the things that really need to be blown. */
c0501be5
DJ
2857
2858 /* Clear the "current" symtab first, because it is no longer valid.
2859 breakpoint_re_set may try to access the current symtab. */
2860 clear_current_source_symtab_and_line ();
2861
c906108c 2862 clear_displays ();
1bfeeb0f 2863 clear_last_displayed_sal ();
c906108c 2864 clear_pc_function_cache ();
76727919 2865 gdb::observers::new_objfile.notify (NULL);
9bdcbae7 2866
8756216b
DP
2867 /* Varobj may refer to old symbols, perform a cleanup. */
2868 varobj_invalidate ();
2869
e700d1b2
JB
2870 /* Now that the various caches have been cleared, we can re_set
2871 our breakpoints without risking it using stale data. */
2872 if ((add_flags & SYMFILE_DEFER_BP_RESET) == 0)
2873 breakpoint_re_set ();
c906108c 2874}
c906108c 2875\f
c906108c
SS
2876/* OVERLAYS:
2877 The following code implements an abstraction for debugging overlay sections.
2878
2879 The target model is as follows:
2880 1) The gnu linker will permit multiple sections to be mapped into the
c5aa993b 2881 same VMA, each with its own unique LMA (or load address).
c906108c 2882 2) It is assumed that some runtime mechanism exists for mapping the
c5aa993b 2883 sections, one by one, from the load address into the VMA address.
5417f6dc 2884 3) This code provides a mechanism for gdb to keep track of which
c5aa993b
JM
2885 sections should be considered to be mapped from the VMA to the LMA.
2886 This information is used for symbol lookup, and memory read/write.
5417f6dc 2887 For instance, if a section has been mapped then its contents
c5aa993b 2888 should be read from the VMA, otherwise from the LMA.
c906108c
SS
2889
2890 Two levels of debugger support for overlays are available. One is
2891 "manual", in which the debugger relies on the user to tell it which
2892 overlays are currently mapped. This level of support is
2893 implemented entirely in the core debugger, and the information about
2894 whether a section is mapped is kept in the objfile->obj_section table.
2895
2896 The second level of support is "automatic", and is only available if
2897 the target-specific code provides functionality to read the target's
2898 overlay mapping table, and translate its contents for the debugger
2899 (by updating the mapped state information in the obj_section tables).
2900
2901 The interface is as follows:
c5aa993b
JM
2902 User commands:
2903 overlay map <name> -- tell gdb to consider this section mapped
2904 overlay unmap <name> -- tell gdb to consider this section unmapped
2905 overlay list -- list the sections that GDB thinks are mapped
2906 overlay read-target -- get the target's state of what's mapped
2907 overlay off/manual/auto -- set overlay debugging state
2908 Functional interface:
2909 find_pc_mapped_section(pc): if the pc is in the range of a mapped
2910 section, return that section.
5417f6dc 2911 find_pc_overlay(pc): find any overlay section that contains
c5aa993b 2912 the pc, either in its VMA or its LMA
714835d5 2913 section_is_mapped(sect): true if overlay is marked as mapped
c5aa993b
JM
2914 section_is_overlay(sect): true if section's VMA != LMA
2915 pc_in_mapped_range(pc,sec): true if pc belongs to section's VMA
2916 pc_in_unmapped_range(...): true if pc belongs to section's LMA
9ec8e6a0 2917 sections_overlap(sec1, sec2): true if mapped sec1 and sec2 ranges overlap
c5aa993b
JM
2918 overlay_mapped_address(...): map an address from section's LMA to VMA
2919 overlay_unmapped_address(...): map an address from section's VMA to LMA
2920 symbol_overlayed_address(...): Return a "current" address for symbol:
2921 either in VMA or LMA depending on whether
c378eb4e 2922 the symbol's section is currently mapped. */
c906108c
SS
2923
2924/* Overlay debugging state: */
2925
d874f1e2 2926enum overlay_debugging_state overlay_debugging = ovly_off;
c378eb4e 2927int overlay_cache_invalid = 0; /* True if need to refresh mapped state. */
c906108c 2928
c906108c 2929/* Function: section_is_overlay (SECTION)
5417f6dc 2930 Returns true if SECTION has VMA not equal to LMA, ie.
c906108c
SS
2931 SECTION is loaded at an address different from where it will "run". */
2932
2933int
714835d5 2934section_is_overlay (struct obj_section *section)
c906108c 2935{
714835d5
UW
2936 if (overlay_debugging && section)
2937 {
714835d5 2938 asection *bfd_section = section->the_bfd_section;
f888f159 2939
fd361982
AM
2940 if (bfd_section_lma (bfd_section) != 0
2941 && bfd_section_lma (bfd_section) != bfd_section_vma (bfd_section))
714835d5
UW
2942 return 1;
2943 }
c906108c
SS
2944
2945 return 0;
2946}
2947
2948/* Function: overlay_invalidate_all (void)
2949 Invalidate the mapped state of all overlay sections (mark it as stale). */
2950
2951static void
fba45db2 2952overlay_invalidate_all (void)
c906108c 2953{
c906108c
SS
2954 struct obj_section *sect;
2955
2030c079 2956 for (objfile *objfile : current_program_space->objfiles ())
3b9d3ac2
TT
2957 ALL_OBJFILE_OSECTIONS (objfile, sect)
2958 if (section_is_overlay (sect))
2959 sect->ovly_mapped = -1;
c906108c
SS
2960}
2961
714835d5 2962/* Function: section_is_mapped (SECTION)
5417f6dc 2963 Returns true if section is an overlay, and is currently mapped.
c906108c
SS
2964
2965 Access to the ovly_mapped flag is restricted to this function, so
2966 that we can do automatic update. If the global flag
2967 OVERLAY_CACHE_INVALID is set (by wait_for_inferior), then call
2968 overlay_invalidate_all. If the mapped state of the particular
2969 section is stale, then call TARGET_OVERLAY_UPDATE to refresh it. */
2970
714835d5
UW
2971int
2972section_is_mapped (struct obj_section *osect)
c906108c 2973{
9216df95
UW
2974 struct gdbarch *gdbarch;
2975
714835d5 2976 if (osect == 0 || !section_is_overlay (osect))
c906108c
SS
2977 return 0;
2978
c5aa993b 2979 switch (overlay_debugging)
c906108c
SS
2980 {
2981 default:
d874f1e2 2982 case ovly_off:
c5aa993b 2983 return 0; /* overlay debugging off */
d874f1e2 2984 case ovly_auto: /* overlay debugging automatic */
1c772458 2985 /* Unles there is a gdbarch_overlay_update function,
dda83cd7 2986 there's really nothing useful to do here (can't really go auto). */
08feed99 2987 gdbarch = osect->objfile->arch ();
9216df95 2988 if (gdbarch_overlay_update_p (gdbarch))
c906108c
SS
2989 {
2990 if (overlay_cache_invalid)
2991 {
2992 overlay_invalidate_all ();
2993 overlay_cache_invalid = 0;
2994 }
2995 if (osect->ovly_mapped == -1)
9216df95 2996 gdbarch_overlay_update (gdbarch, osect);
c906108c 2997 }
86a73007 2998 /* fall thru */
d874f1e2 2999 case ovly_on: /* overlay debugging manual */
c906108c
SS
3000 return osect->ovly_mapped == 1;
3001 }
3002}
3003
c906108c
SS
3004/* Function: pc_in_unmapped_range
3005 If PC falls into the lma range of SECTION, return true, else false. */
3006
3007CORE_ADDR
714835d5 3008pc_in_unmapped_range (CORE_ADDR pc, struct obj_section *section)
c906108c 3009{
714835d5
UW
3010 if (section_is_overlay (section))
3011 {
714835d5 3012 asection *bfd_section = section->the_bfd_section;
fbd35540 3013
714835d5 3014 /* We assume the LMA is relocated by the same offset as the VMA. */
fd361982 3015 bfd_vma size = bfd_section_size (bfd_section);
714835d5
UW
3016 CORE_ADDR offset = obj_section_offset (section);
3017
fd361982
AM
3018 if (bfd_section_lma (bfd_section) + offset <= pc
3019 && pc < bfd_section_lma (bfd_section) + offset + size)
714835d5
UW
3020 return 1;
3021 }
c906108c 3022
c906108c
SS
3023 return 0;
3024}
3025
3026/* Function: pc_in_mapped_range
3027 If PC falls into the vma range of SECTION, return true, else false. */
3028
3029CORE_ADDR
714835d5 3030pc_in_mapped_range (CORE_ADDR pc, struct obj_section *section)
c906108c 3031{
714835d5
UW
3032 if (section_is_overlay (section))
3033 {
3034 if (obj_section_addr (section) <= pc
3035 && pc < obj_section_endaddr (section))
3036 return 1;
3037 }
c906108c 3038
c906108c
SS
3039 return 0;
3040}
3041
9ec8e6a0
JB
3042/* Return true if the mapped ranges of sections A and B overlap, false
3043 otherwise. */
3b7bacac 3044
b9362cc7 3045static int
714835d5 3046sections_overlap (struct obj_section *a, struct obj_section *b)
9ec8e6a0 3047{
714835d5
UW
3048 CORE_ADDR a_start = obj_section_addr (a);
3049 CORE_ADDR a_end = obj_section_endaddr (a);
3050 CORE_ADDR b_start = obj_section_addr (b);
3051 CORE_ADDR b_end = obj_section_endaddr (b);
9ec8e6a0
JB
3052
3053 return (a_start < b_end && b_start < a_end);
3054}
3055
c906108c
SS
3056/* Function: overlay_unmapped_address (PC, SECTION)
3057 Returns the address corresponding to PC in the unmapped (load) range.
3058 May be the same as PC. */
3059
3060CORE_ADDR
714835d5 3061overlay_unmapped_address (CORE_ADDR pc, struct obj_section *section)
c906108c 3062{
714835d5
UW
3063 if (section_is_overlay (section) && pc_in_mapped_range (pc, section))
3064 {
714835d5 3065 asection *bfd_section = section->the_bfd_section;
fbd35540 3066
fd361982
AM
3067 return (pc + bfd_section_lma (bfd_section)
3068 - bfd_section_vma (bfd_section));
714835d5 3069 }
c906108c
SS
3070
3071 return pc;
3072}
3073
3074/* Function: overlay_mapped_address (PC, SECTION)
3075 Returns the address corresponding to PC in the mapped (runtime) range.
3076 May be the same as PC. */
3077
3078CORE_ADDR
714835d5 3079overlay_mapped_address (CORE_ADDR pc, struct obj_section *section)
c906108c 3080{
714835d5
UW
3081 if (section_is_overlay (section) && pc_in_unmapped_range (pc, section))
3082 {
714835d5 3083 asection *bfd_section = section->the_bfd_section;
fbd35540 3084
fd361982
AM
3085 return (pc + bfd_section_vma (bfd_section)
3086 - bfd_section_lma (bfd_section));
714835d5 3087 }
c906108c
SS
3088
3089 return pc;
3090}
3091
5417f6dc 3092/* Function: symbol_overlayed_address
c906108c
SS
3093 Return one of two addresses (relative to the VMA or to the LMA),
3094 depending on whether the section is mapped or not. */
3095
c5aa993b 3096CORE_ADDR
714835d5 3097symbol_overlayed_address (CORE_ADDR address, struct obj_section *section)
c906108c
SS
3098{
3099 if (overlay_debugging)
3100 {
c378eb4e 3101 /* If the symbol has no section, just return its regular address. */
c906108c
SS
3102 if (section == 0)
3103 return address;
c378eb4e
MS
3104 /* If the symbol's section is not an overlay, just return its
3105 address. */
c906108c
SS
3106 if (!section_is_overlay (section))
3107 return address;
c378eb4e 3108 /* If the symbol's section is mapped, just return its address. */
c906108c
SS
3109 if (section_is_mapped (section))
3110 return address;
3111 /*
3112 * HOWEVER: if the symbol is in an overlay section which is NOT mapped,
3113 * then return its LOADED address rather than its vma address!!
3114 */
3115 return overlay_unmapped_address (address, section);
3116 }
3117 return address;
3118}
3119
5417f6dc 3120/* Function: find_pc_overlay (PC)
c906108c
SS
3121 Return the best-match overlay section for PC:
3122 If PC matches a mapped overlay section's VMA, return that section.
3123 Else if PC matches an unmapped section's VMA, return that section.
3124 Else if PC matches an unmapped section's LMA, return that section. */
3125
714835d5 3126struct obj_section *
fba45db2 3127find_pc_overlay (CORE_ADDR pc)
c906108c 3128{
c906108c
SS
3129 struct obj_section *osect, *best_match = NULL;
3130
3131 if (overlay_debugging)
b631e59b 3132 {
2030c079 3133 for (objfile *objfile : current_program_space->objfiles ())
3b9d3ac2
TT
3134 ALL_OBJFILE_OSECTIONS (objfile, osect)
3135 if (section_is_overlay (osect))
3136 {
3137 if (pc_in_mapped_range (pc, osect))
3138 {
3139 if (section_is_mapped (osect))
3140 return osect;
3141 else
3142 best_match = osect;
3143 }
3144 else if (pc_in_unmapped_range (pc, osect))
3145 best_match = osect;
3146 }
b631e59b 3147 }
714835d5 3148 return best_match;
c906108c
SS
3149}
3150
3151/* Function: find_pc_mapped_section (PC)
5417f6dc 3152 If PC falls into the VMA address range of an overlay section that is
c906108c
SS
3153 currently marked as MAPPED, return that section. Else return NULL. */
3154
714835d5 3155struct obj_section *
fba45db2 3156find_pc_mapped_section (CORE_ADDR pc)
c906108c 3157{
c906108c
SS
3158 struct obj_section *osect;
3159
3160 if (overlay_debugging)
b631e59b 3161 {
2030c079 3162 for (objfile *objfile : current_program_space->objfiles ())
3b9d3ac2
TT
3163 ALL_OBJFILE_OSECTIONS (objfile, osect)
3164 if (pc_in_mapped_range (pc, osect) && section_is_mapped (osect))
3165 return osect;
b631e59b 3166 }
c906108c
SS
3167
3168 return NULL;
3169}
3170
3171/* Function: list_overlays_command
c378eb4e 3172 Print a list of mapped sections and their PC ranges. */
c906108c 3173
5d3055ad 3174static void
2cf311eb 3175list_overlays_command (const char *args, int from_tty)
c906108c 3176{
c5aa993b 3177 int nmapped = 0;
c906108c
SS
3178 struct obj_section *osect;
3179
3180 if (overlay_debugging)
b631e59b 3181 {
2030c079 3182 for (objfile *objfile : current_program_space->objfiles ())
3b9d3ac2
TT
3183 ALL_OBJFILE_OSECTIONS (objfile, osect)
3184 if (section_is_mapped (osect))
3185 {
08feed99 3186 struct gdbarch *gdbarch = objfile->arch ();
3b9d3ac2
TT
3187 const char *name;
3188 bfd_vma lma, vma;
3189 int size;
3190
fd361982
AM
3191 vma = bfd_section_vma (osect->the_bfd_section);
3192 lma = bfd_section_lma (osect->the_bfd_section);
3193 size = bfd_section_size (osect->the_bfd_section);
3194 name = bfd_section_name (osect->the_bfd_section);
3b9d3ac2
TT
3195
3196 printf_filtered ("Section %s, loaded at ", name);
3197 fputs_filtered (paddress (gdbarch, lma), gdb_stdout);
3198 puts_filtered (" - ");
3199 fputs_filtered (paddress (gdbarch, lma + size), gdb_stdout);
3200 printf_filtered (", mapped at ");
3201 fputs_filtered (paddress (gdbarch, vma), gdb_stdout);
3202 puts_filtered (" - ");
3203 fputs_filtered (paddress (gdbarch, vma + size), gdb_stdout);
3204 puts_filtered ("\n");
3205
3206 nmapped++;
3207 }
b631e59b 3208 }
c906108c 3209 if (nmapped == 0)
a3f17187 3210 printf_filtered (_("No sections are mapped.\n"));
c906108c
SS
3211}
3212
3213/* Function: map_overlay_command
3214 Mark the named section as mapped (ie. residing at its VMA address). */
3215
5d3055ad 3216static void
2cf311eb 3217map_overlay_command (const char *args, int from_tty)
c906108c 3218{
c5aa993b 3219 struct obj_section *sec, *sec2;
c906108c
SS
3220
3221 if (!overlay_debugging)
3e43a32a
MS
3222 error (_("Overlay debugging not enabled. Use "
3223 "either the 'overlay auto' or\n"
3224 "the 'overlay manual' command."));
c906108c
SS
3225
3226 if (args == 0 || *args == 0)
8a3fe4f8 3227 error (_("Argument required: name of an overlay section"));
c906108c 3228
c378eb4e 3229 /* First, find a section matching the user supplied argument. */
2030c079 3230 for (objfile *obj_file : current_program_space->objfiles ())
3b9d3ac2 3231 ALL_OBJFILE_OSECTIONS (obj_file, sec)
fd361982 3232 if (!strcmp (bfd_section_name (sec->the_bfd_section), args))
c5aa993b 3233 {
3b9d3ac2
TT
3234 /* Now, check to see if the section is an overlay. */
3235 if (!section_is_overlay (sec))
3236 continue; /* not an overlay section */
3237
3238 /* Mark the overlay as "mapped". */
3239 sec->ovly_mapped = 1;
3240
3241 /* Next, make a pass and unmap any sections that are
3242 overlapped by this new section: */
2030c079 3243 for (objfile *objfile2 : current_program_space->objfiles ())
3b9d3ac2
TT
3244 ALL_OBJFILE_OSECTIONS (objfile2, sec2)
3245 if (sec2->ovly_mapped && sec != sec2 && sections_overlap (sec,
3246 sec2))
3247 {
3248 if (info_verbose)
3249 printf_unfiltered (_("Note: section %s unmapped by overlap\n"),
fd361982 3250 bfd_section_name (sec2->the_bfd_section));
3b9d3ac2
TT
3251 sec2->ovly_mapped = 0; /* sec2 overlaps sec: unmap sec2. */
3252 }
3253 return;
c5aa993b 3254 }
8a3fe4f8 3255 error (_("No overlay section called %s"), args);
c906108c
SS
3256}
3257
3258/* Function: unmap_overlay_command
5417f6dc 3259 Mark the overlay section as unmapped
c906108c
SS
3260 (ie. resident in its LMA address range, rather than the VMA range). */
3261
5d3055ad 3262static void
2cf311eb 3263unmap_overlay_command (const char *args, int from_tty)
c906108c 3264{
7a270e0c 3265 struct obj_section *sec = NULL;
c906108c
SS
3266
3267 if (!overlay_debugging)
3e43a32a
MS
3268 error (_("Overlay debugging not enabled. "
3269 "Use either the 'overlay auto' or\n"
3270 "the 'overlay manual' command."));
c906108c
SS
3271
3272 if (args == 0 || *args == 0)
8a3fe4f8 3273 error (_("Argument required: name of an overlay section"));
c906108c 3274
c378eb4e 3275 /* First, find a section matching the user supplied argument. */
2030c079 3276 for (objfile *objfile : current_program_space->objfiles ())
3b9d3ac2 3277 ALL_OBJFILE_OSECTIONS (objfile, sec)
fd361982 3278 if (!strcmp (bfd_section_name (sec->the_bfd_section), args))
3b9d3ac2
TT
3279 {
3280 if (!sec->ovly_mapped)
3281 error (_("Section %s is not mapped"), args);
3282 sec->ovly_mapped = 0;
3283 return;
3284 }
8a3fe4f8 3285 error (_("No overlay section called %s"), args);
c906108c
SS
3286}
3287
3288/* Function: overlay_auto_command
3289 A utility command to turn on overlay debugging.
c378eb4e 3290 Possibly this should be done via a set/show command. */
c906108c
SS
3291
3292static void
2cf311eb 3293overlay_auto_command (const char *args, int from_tty)
c906108c 3294{
d874f1e2 3295 overlay_debugging = ovly_auto;
1900040c 3296 enable_overlay_breakpoints ();
c906108c 3297 if (info_verbose)
a3f17187 3298 printf_unfiltered (_("Automatic overlay debugging enabled."));
c906108c
SS
3299}
3300
3301/* Function: overlay_manual_command
3302 A utility command to turn on overlay debugging.
c378eb4e 3303 Possibly this should be done via a set/show command. */
c906108c
SS
3304
3305static void
2cf311eb 3306overlay_manual_command (const char *args, int from_tty)
c906108c 3307{
d874f1e2 3308 overlay_debugging = ovly_on;
1900040c 3309 disable_overlay_breakpoints ();
c906108c 3310 if (info_verbose)
a3f17187 3311 printf_unfiltered (_("Overlay debugging enabled."));
c906108c
SS
3312}
3313
3314/* Function: overlay_off_command
3315 A utility command to turn on overlay debugging.
c378eb4e 3316 Possibly this should be done via a set/show command. */
c906108c
SS
3317
3318static void
2cf311eb 3319overlay_off_command (const char *args, int from_tty)
c906108c 3320{
d874f1e2 3321 overlay_debugging = ovly_off;
1900040c 3322 disable_overlay_breakpoints ();
c906108c 3323 if (info_verbose)
a3f17187 3324 printf_unfiltered (_("Overlay debugging disabled."));
c906108c
SS
3325}
3326
3327static void
2cf311eb 3328overlay_load_command (const char *args, int from_tty)
c906108c 3329{
e17c207e
UW
3330 struct gdbarch *gdbarch = get_current_arch ();
3331
3332 if (gdbarch_overlay_update_p (gdbarch))
3333 gdbarch_overlay_update (gdbarch, NULL);
c906108c 3334 else
8a3fe4f8 3335 error (_("This target does not know how to read its overlay state."));
c906108c
SS
3336}
3337
c378eb4e 3338/* Command list chain containing all defined "overlay" subcommands. */
28578e6b 3339static struct cmd_list_element *overlaylist;
c906108c 3340
c906108c
SS
3341/* Target Overlays for the "Simplest" overlay manager:
3342
5417f6dc
RM
3343 This is GDB's default target overlay layer. It works with the
3344 minimal overlay manager supplied as an example by Cygnus. The
1c772458 3345 entry point is via a function pointer "gdbarch_overlay_update",
5417f6dc 3346 so targets that use a different runtime overlay manager can
c906108c
SS
3347 substitute their own overlay_update function and take over the
3348 function pointer.
3349
3350 The overlay_update function pokes around in the target's data structures
3351 to see what overlays are mapped, and updates GDB's overlay mapping with
3352 this information.
3353
3354 In this simple implementation, the target data structures are as follows:
c5aa993b
JM
3355 unsigned _novlys; /# number of overlay sections #/
3356 unsigned _ovly_table[_novlys][4] = {
438e1e42 3357 {VMA, OSIZE, LMA, MAPPED}, /# one entry per overlay section #/
c5aa993b
JM
3358 {..., ..., ..., ...},
3359 }
3360 unsigned _novly_regions; /# number of overlay regions #/
3361 unsigned _ovly_region_table[_novly_regions][3] = {
438e1e42 3362 {VMA, OSIZE, MAPPED_TO_LMA}, /# one entry per overlay region #/
c5aa993b
JM
3363 {..., ..., ...},
3364 }
c906108c
SS
3365 These functions will attempt to update GDB's mappedness state in the
3366 symbol section table, based on the target's mappedness state.
3367
3368 To do this, we keep a cached copy of the target's _ovly_table, and
3369 attempt to detect when the cached copy is invalidated. The main
3370 entry point is "simple_overlay_update(SECT), which looks up SECT in
3371 the cached table and re-reads only the entry for that section from
c378eb4e 3372 the target (whenever possible). */
c906108c
SS
3373
3374/* Cached, dynamically allocated copies of the target data structures: */
c5aa993b 3375static unsigned (*cache_ovly_table)[4] = 0;
c5aa993b 3376static unsigned cache_novlys = 0;
c906108c 3377static CORE_ADDR cache_ovly_table_base = 0;
c5aa993b
JM
3378enum ovly_index
3379 {
438e1e42 3380 VMA, OSIZE, LMA, MAPPED
c5aa993b 3381 };
c906108c 3382
c378eb4e 3383/* Throw away the cached copy of _ovly_table. */
3b7bacac 3384
c906108c 3385static void
fba45db2 3386simple_free_overlay_table (void)
c906108c 3387{
84d53fa9 3388 xfree (cache_ovly_table);
c5aa993b 3389 cache_novlys = 0;
c906108c
SS
3390 cache_ovly_table = NULL;
3391 cache_ovly_table_base = 0;
3392}
3393
9216df95 3394/* Read an array of ints of size SIZE from the target into a local buffer.
c378eb4e 3395 Convert to host order. int LEN is number of ints. */
3b7bacac 3396
c906108c 3397static void
9216df95 3398read_target_long_array (CORE_ADDR memaddr, unsigned int *myaddr,
e17a4113 3399 int len, int size, enum bfd_endian byte_order)
c906108c 3400{
c378eb4e 3401 /* FIXME (alloca): Not safe if array is very large. */
224c3ddb 3402 gdb_byte *buf = (gdb_byte *) alloca (len * size);
c5aa993b 3403 int i;
c906108c 3404
9216df95 3405 read_memory (memaddr, buf, len * size);
c906108c 3406 for (i = 0; i < len; i++)
e17a4113 3407 myaddr[i] = extract_unsigned_integer (size * i + buf, size, byte_order);
c906108c
SS
3408}
3409
3410/* Find and grab a copy of the target _ovly_table
c378eb4e 3411 (and _novlys, which is needed for the table's size). */
3b7bacac 3412
c5aa993b 3413static int
fba45db2 3414simple_read_overlay_table (void)
c906108c 3415{
3b7344d5 3416 struct bound_minimal_symbol novlys_msym;
7c7b6655 3417 struct bound_minimal_symbol ovly_table_msym;
9216df95
UW
3418 struct gdbarch *gdbarch;
3419 int word_size;
e17a4113 3420 enum bfd_endian byte_order;
c906108c
SS
3421
3422 simple_free_overlay_table ();
9b27852e 3423 novlys_msym = lookup_minimal_symbol ("_novlys", NULL, NULL);
3b7344d5 3424 if (! novlys_msym.minsym)
c906108c 3425 {
8a3fe4f8 3426 error (_("Error reading inferior's overlay table: "
dda83cd7
SM
3427 "couldn't find `_novlys' variable\n"
3428 "in inferior. Use `overlay manual' mode."));
0d43edd1 3429 return 0;
c906108c 3430 }
0d43edd1 3431
7c7b6655
TT
3432 ovly_table_msym = lookup_bound_minimal_symbol ("_ovly_table");
3433 if (! ovly_table_msym.minsym)
0d43edd1 3434 {
8a3fe4f8 3435 error (_("Error reading inferior's overlay table: couldn't find "
dda83cd7
SM
3436 "`_ovly_table' array\n"
3437 "in inferior. Use `overlay manual' mode."));
0d43edd1
JB
3438 return 0;
3439 }
3440
08feed99 3441 gdbarch = ovly_table_msym.objfile->arch ();
9216df95 3442 word_size = gdbarch_long_bit (gdbarch) / TARGET_CHAR_BIT;
e17a4113 3443 byte_order = gdbarch_byte_order (gdbarch);
9216df95 3444
77e371c0
TT
3445 cache_novlys = read_memory_integer (BMSYMBOL_VALUE_ADDRESS (novlys_msym),
3446 4, byte_order);
0d43edd1 3447 cache_ovly_table
224c3ddb 3448 = (unsigned int (*)[4]) xmalloc (cache_novlys * sizeof (*cache_ovly_table));
77e371c0 3449 cache_ovly_table_base = BMSYMBOL_VALUE_ADDRESS (ovly_table_msym);
0d43edd1 3450 read_target_long_array (cache_ovly_table_base,
dda83cd7
SM
3451 (unsigned int *) cache_ovly_table,
3452 cache_novlys * 4, word_size, byte_order);
0d43edd1 3453
c5aa993b 3454 return 1; /* SUCCESS */
c906108c
SS
3455}
3456
5417f6dc 3457/* Function: simple_overlay_update_1
c906108c
SS
3458 A helper function for simple_overlay_update. Assuming a cached copy
3459 of _ovly_table exists, look through it to find an entry whose vma,
3460 lma and size match those of OSECT. Re-read the entry and make sure
3461 it still matches OSECT (else the table may no longer be valid).
3462 Set OSECT's mapped state to match the entry. Return: 1 for
3463 success, 0 for failure. */
3464
3465static int
fba45db2 3466simple_overlay_update_1 (struct obj_section *osect)
c906108c 3467{
764c99c1 3468 int i;
fbd35540 3469 asection *bsect = osect->the_bfd_section;
08feed99 3470 struct gdbarch *gdbarch = osect->objfile->arch ();
9216df95 3471 int word_size = gdbarch_long_bit (gdbarch) / TARGET_CHAR_BIT;
e17a4113 3472 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
c906108c 3473
c906108c 3474 for (i = 0; i < cache_novlys; i++)
fd361982
AM
3475 if (cache_ovly_table[i][VMA] == bfd_section_vma (bsect)
3476 && cache_ovly_table[i][LMA] == bfd_section_lma (bsect))
c906108c 3477 {
9216df95
UW
3478 read_target_long_array (cache_ovly_table_base + i * word_size,
3479 (unsigned int *) cache_ovly_table[i],
e17a4113 3480 4, word_size, byte_order);
fd361982
AM
3481 if (cache_ovly_table[i][VMA] == bfd_section_vma (bsect)
3482 && cache_ovly_table[i][LMA] == bfd_section_lma (bsect))
c906108c
SS
3483 {
3484 osect->ovly_mapped = cache_ovly_table[i][MAPPED];
3485 return 1;
3486 }
c378eb4e 3487 else /* Warning! Warning! Target's ovly table has changed! */
c906108c
SS
3488 return 0;
3489 }
3490 return 0;
3491}
3492
3493/* Function: simple_overlay_update
5417f6dc
RM
3494 If OSECT is NULL, then update all sections' mapped state
3495 (after re-reading the entire target _ovly_table).
3496 If OSECT is non-NULL, then try to find a matching entry in the
c906108c 3497 cached ovly_table and update only OSECT's mapped state.
5417f6dc 3498 If a cached entry can't be found or the cache isn't valid, then
c906108c
SS
3499 re-read the entire cache, and go ahead and update all sections. */
3500
1c772458 3501void
fba45db2 3502simple_overlay_update (struct obj_section *osect)
c906108c 3503{
c378eb4e 3504 /* Were we given an osect to look up? NULL means do all of them. */
c906108c 3505 if (osect)
c378eb4e 3506 /* Have we got a cached copy of the target's overlay table? */
c906108c 3507 if (cache_ovly_table != NULL)
9cc89665
MS
3508 {
3509 /* Does its cached location match what's currently in the
3510 symtab? */
3b7344d5 3511 struct bound_minimal_symbol minsym
9cc89665
MS
3512 = lookup_minimal_symbol ("_ovly_table", NULL, NULL);
3513
3b7344d5 3514 if (minsym.minsym == NULL)
9cc89665
MS
3515 error (_("Error reading inferior's overlay table: couldn't "
3516 "find `_ovly_table' array\n"
3517 "in inferior. Use `overlay manual' mode."));
3518
77e371c0 3519 if (cache_ovly_table_base == BMSYMBOL_VALUE_ADDRESS (minsym))
9cc89665
MS
3520 /* Then go ahead and try to look up this single section in
3521 the cache. */
3522 if (simple_overlay_update_1 (osect))
3523 /* Found it! We're done. */
3524 return;
3525 }
c906108c
SS
3526
3527 /* Cached table no good: need to read the entire table anew.
3528 Or else we want all the sections, in which case it's actually
3529 more efficient to read the whole table in one block anyway. */
3530
0d43edd1
JB
3531 if (! simple_read_overlay_table ())
3532 return;
3533
c378eb4e 3534 /* Now may as well update all sections, even if only one was requested. */
2030c079 3535 for (objfile *objfile : current_program_space->objfiles ())
3b9d3ac2
TT
3536 ALL_OBJFILE_OSECTIONS (objfile, osect)
3537 if (section_is_overlay (osect))
3538 {
3539 int i;
3540 asection *bsect = osect->the_bfd_section;
3541
3542 for (i = 0; i < cache_novlys; i++)
fd361982
AM
3543 if (cache_ovly_table[i][VMA] == bfd_section_vma (bsect)
3544 && cache_ovly_table[i][LMA] == bfd_section_lma (bsect))
3b9d3ac2
TT
3545 { /* obj_section matches i'th entry in ovly_table. */
3546 osect->ovly_mapped = cache_ovly_table[i][MAPPED];
3547 break; /* finished with inner for loop: break out. */
3548 }
3549 }
c906108c
SS
3550}
3551
ac8035ab
TG
3552/* Default implementation for sym_relocate. */
3553
ac8035ab
TG
3554bfd_byte *
3555default_symfile_relocate (struct objfile *objfile, asection *sectp,
dda83cd7 3556 bfd_byte *buf)
ac8035ab 3557{
3019eac3
DE
3558 /* Use sectp->owner instead of objfile->obfd. sectp may point to a
3559 DWO file. */
3560 bfd *abfd = sectp->owner;
ac8035ab
TG
3561
3562 /* We're only interested in sections with relocation
3563 information. */
3564 if ((sectp->flags & SEC_RELOC) == 0)
3565 return NULL;
3566
3567 /* We will handle section offsets properly elsewhere, so relocate as if
3568 all sections begin at 0. */
ad7277da
TT
3569 for (asection *sect : gdb_bfd_sections (abfd))
3570 {
3571 sect->output_section = sect;
3572 sect->output_offset = 0;
3573 }
ac8035ab
TG
3574
3575 return bfd_simple_get_relocated_section_contents (abfd, sectp, buf, NULL);
3576}
3577
086df311
DJ
3578/* Relocate the contents of a debug section SECTP in ABFD. The
3579 contents are stored in BUF if it is non-NULL, or returned in a
3580 malloc'd buffer otherwise.
3581
3582 For some platforms and debug info formats, shared libraries contain
3583 relocations against the debug sections (particularly for DWARF-2;
3584 one affected platform is PowerPC GNU/Linux, although it depends on
3585 the version of the linker in use). Also, ELF object files naturally
3586 have unresolved relocations for their debug sections. We need to apply
065a2c74
PA
3587 the relocations in order to get the locations of symbols correct.
3588 Another example that may require relocation processing, is the
3589 DWARF-2 .eh_frame section in .o files, although it isn't strictly a
3590 debug section. */
086df311
DJ
3591
3592bfd_byte *
ac8035ab 3593symfile_relocate_debug_section (struct objfile *objfile,
dda83cd7 3594 asection *sectp, bfd_byte *buf)
086df311 3595{
ac8035ab 3596 gdb_assert (objfile->sf->sym_relocate);
086df311 3597
ac8035ab 3598 return (*objfile->sf->sym_relocate) (objfile, sectp, buf);
086df311 3599}
c906108c 3600
62982abd 3601symfile_segment_data_up
31d99776
DJ
3602get_symfile_segment_data (bfd *abfd)
3603{
00b5771c 3604 const struct sym_fns *sf = find_sym_fns (abfd);
31d99776
DJ
3605
3606 if (sf == NULL)
3607 return NULL;
3608
3609 return sf->sym_segments (abfd);
3610}
3611
28c32713
JB
3612/* Given:
3613 - DATA, containing segment addresses from the object file ABFD, and
3614 the mapping from ABFD's sections onto the segments that own them,
3615 and
3616 - SEGMENT_BASES[0 .. NUM_SEGMENT_BASES - 1], holding the actual
3617 segment addresses reported by the target,
3618 store the appropriate offsets for each section in OFFSETS.
3619
3620 If there are fewer entries in SEGMENT_BASES than there are segments
3621 in DATA, then apply SEGMENT_BASES' last entry to all the segments.
3622
8d385431
DJ
3623 If there are more entries, then ignore the extra. The target may
3624 not be able to distinguish between an empty data segment and a
3625 missing data segment; a missing text segment is less plausible. */
3b7bacac 3626
31d99776 3627int
3189cb12
DE
3628symfile_map_offsets_to_segments (bfd *abfd,
3629 const struct symfile_segment_data *data,
6a053cb1 3630 section_offsets &offsets,
31d99776
DJ
3631 int num_segment_bases,
3632 const CORE_ADDR *segment_bases)
3633{
3634 int i;
3635 asection *sect;
3636
28c32713
JB
3637 /* It doesn't make sense to call this function unless you have some
3638 segment base addresses. */
202b96c1 3639 gdb_assert (num_segment_bases > 0);
28c32713 3640
31d99776
DJ
3641 /* If we do not have segment mappings for the object file, we
3642 can not relocate it by segments. */
3643 gdb_assert (data != NULL);
68b888ff 3644 gdb_assert (data->segments.size () > 0);
31d99776 3645
31d99776
DJ
3646 for (i = 0, sect = abfd->sections; sect != NULL; i++, sect = sect->next)
3647 {
31d99776
DJ
3648 int which = data->segment_info[i];
3649
68b888ff 3650 gdb_assert (0 <= which && which <= data->segments.size ());
28c32713
JB
3651
3652 /* Don't bother computing offsets for sections that aren't
dda83cd7 3653 loaded as part of any segment. */
28c32713 3654 if (! which)
dda83cd7 3655 continue;
28c32713
JB
3656
3657 /* Use the last SEGMENT_BASES entry as the address of any extra
dda83cd7 3658 segments mentioned in DATA->segment_info. */
31d99776 3659 if (which > num_segment_bases)
dda83cd7 3660 which = num_segment_bases;
31d99776 3661
68b888ff 3662 offsets[i] = segment_bases[which - 1] - data->segments[which - 1].base;
31d99776
DJ
3663 }
3664
3665 return 1;
3666}
3667
3668static void
3669symfile_find_segment_sections (struct objfile *objfile)
3670{
3671 bfd *abfd = objfile->obfd;
3672 int i;
3673 asection *sect;
31d99776 3674
62982abd
SM
3675 symfile_segment_data_up data
3676 = get_symfile_segment_data (objfile->obfd);
31d99776
DJ
3677 if (data == NULL)
3678 return;
3679
68b888ff 3680 if (data->segments.size () != 1 && data->segments.size () != 2)
62982abd 3681 return;
31d99776
DJ
3682
3683 for (i = 0, sect = abfd->sections; sect != NULL; i++, sect = sect->next)
3684 {
31d99776
DJ
3685 int which = data->segment_info[i];
3686
3687 if (which == 1)
3688 {
3689 if (objfile->sect_index_text == -1)
3690 objfile->sect_index_text = sect->index;
3691
3692 if (objfile->sect_index_rodata == -1)
3693 objfile->sect_index_rodata = sect->index;
3694 }
3695 else if (which == 2)
3696 {
3697 if (objfile->sect_index_data == -1)
3698 objfile->sect_index_data = sect->index;
3699
3700 if (objfile->sect_index_bss == -1)
3701 objfile->sect_index_bss = sect->index;
3702 }
3703 }
31d99776
DJ
3704}
3705
76ad5e1e
NB
3706/* Listen for free_objfile events. */
3707
3708static void
3709symfile_free_objfile (struct objfile *objfile)
3710{
c33b2f12
MM
3711 /* Remove the target sections owned by this objfile. */
3712 if (objfile != NULL)
2a3f84af 3713 current_program_space->remove_target_sections ((void *) objfile);
76ad5e1e
NB
3714}
3715
540c2971
DE
3716/* Wrapper around the quick_symbol_functions expand_symtabs_matching "method".
3717 Expand all symtabs that match the specified criteria.
3718 See quick_symbol_functions.expand_symtabs_matching for details. */
3719
3720void
14bc53a8
PA
3721expand_symtabs_matching
3722 (gdb::function_view<expand_symtabs_file_matcher_ftype> file_matcher,
b5ec771e 3723 const lookup_name_info &lookup_name,
14bc53a8
PA
3724 gdb::function_view<expand_symtabs_symbol_matcher_ftype> symbol_matcher,
3725 gdb::function_view<expand_symtabs_exp_notify_ftype> expansion_notify,
3726 enum search_domain kind)
540c2971 3727{
2030c079 3728 for (objfile *objfile : current_program_space->objfiles ())
4d080b46
TT
3729 objfile->expand_symtabs_matching (file_matcher,
3730 &lookup_name,
3731 symbol_matcher,
3732 expansion_notify, kind);
540c2971
DE
3733}
3734
3735/* Wrapper around the quick_symbol_functions map_symbol_filenames "method".
3736 Map function FUN over every file.
3737 See quick_symbol_functions.map_symbol_filenames for details. */
3738
3739void
f4655dee
TT
3740map_symbol_filenames (gdb::function_view<symbol_filename_ftype> fun,
3741 bool need_fullname)
540c2971 3742{
2030c079 3743 for (objfile *objfile : current_program_space->objfiles ())
f4655dee 3744 objfile->map_symbol_filenames (fun, need_fullname);
540c2971
DE
3745}
3746
32fa66eb
SM
3747#if GDB_SELF_TEST
3748
3749namespace selftests {
3750namespace filename_language {
3751
32fa66eb
SM
3752static void test_filename_language ()
3753{
3754 /* This test messes up the filename_language_table global. */
593e3209 3755 scoped_restore restore_flt = make_scoped_restore (&filename_language_table);
32fa66eb
SM
3756
3757 /* Test deducing an unknown extension. */
3758 language lang = deduce_language_from_filename ("myfile.blah");
3759 SELF_CHECK (lang == language_unknown);
3760
3761 /* Test deducing a known extension. */
3762 lang = deduce_language_from_filename ("myfile.c");
3763 SELF_CHECK (lang == language_c);
3764
3765 /* Test adding a new extension using the internal API. */
3766 add_filename_language (".blah", language_pascal);
3767 lang = deduce_language_from_filename ("myfile.blah");
3768 SELF_CHECK (lang == language_pascal);
3769}
3770
3771static void
3772test_set_ext_lang_command ()
3773{
3774 /* This test messes up the filename_language_table global. */
593e3209 3775 scoped_restore restore_flt = make_scoped_restore (&filename_language_table);
32fa66eb
SM
3776
3777 /* Confirm that the .hello extension is not known. */
3778 language lang = deduce_language_from_filename ("cake.hello");
3779 SELF_CHECK (lang == language_unknown);
3780
3781 /* Test adding a new extension using the CLI command. */
b02f78f9 3782 auto args_holder = make_unique_xstrdup (".hello rust");
32fa66eb
SM
3783 ext_args = args_holder.get ();
3784 set_ext_lang_command (NULL, 1, NULL);
3785
3786 lang = deduce_language_from_filename ("cake.hello");
3787 SELF_CHECK (lang == language_rust);
3788
3789 /* Test overriding an existing extension using the CLI command. */
593e3209 3790 int size_before = filename_language_table.size ();
32fa66eb
SM
3791 args_holder.reset (xstrdup (".hello pascal"));
3792 ext_args = args_holder.get ();
3793 set_ext_lang_command (NULL, 1, NULL);
593e3209 3794 int size_after = filename_language_table.size ();
32fa66eb
SM
3795
3796 lang = deduce_language_from_filename ("cake.hello");
3797 SELF_CHECK (lang == language_pascal);
3798 SELF_CHECK (size_before == size_after);
3799}
3800
3801} /* namespace filename_language */
3802} /* namespace selftests */
3803
3804#endif /* GDB_SELF_TEST */
3805
6c265988 3806void _initialize_symfile ();
c906108c 3807void
6c265988 3808_initialize_symfile ()
c906108c
SS
3809{
3810 struct cmd_list_element *c;
c5aa993b 3811
76727919 3812 gdb::observers::free_objfile.attach (symfile_free_objfile);
76ad5e1e 3813
97cbe998 3814#define READNOW_READNEVER_HELP \
8ca2f0b9
TT
3815 "The '-readnow' option will cause GDB to read the entire symbol file\n\
3816immediately. This makes the command slower, but may make future operations\n\
97cbe998
SDJ
3817faster.\n\
3818The '-readnever' option will prevent GDB from reading the symbol file's\n\
3819symbolic debug information."
8ca2f0b9 3820
1a966eab
AC
3821 c = add_cmd ("symbol-file", class_files, symbol_file_command, _("\
3822Load symbol table from executable file FILE.\n\
d4d429d5
PT
3823Usage: symbol-file [-readnow | -readnever] [-o OFF] FILE\n\
3824OFF is an optional offset which is added to each section address.\n\
c906108c 3825The `file' command can also load symbol tables, as well as setting the file\n\
97cbe998 3826to execute.\n" READNOW_READNEVER_HELP), &cmdlist);
5ba2abeb 3827 set_cmd_completer (c, filename_completer);
c906108c 3828
1a966eab 3829 c = add_cmd ("add-symbol-file", class_files, add_symbol_file_command, _("\
5b96932b 3830Load symbols from FILE, assuming FILE has been dynamically loaded.\n\
291f9a96 3831Usage: add-symbol-file FILE [-readnow | -readnever] [-o OFF] [ADDR] \
ed6dfe51 3832[-s SECT-NAME SECT-ADDR]...\n\
02ca603a
TT
3833ADDR is the starting address of the file's text.\n\
3834Each '-s' argument provides a section name and address, and\n\
db162d44 3835should be specified if the data and bss segments are not contiguous\n\
291f9a96
PT
3836with the text. SECT-NAME is a section name to be loaded at SECT-ADDR.\n\
3837OFF is an optional offset which is added to the default load addresses\n\
3838of all sections for which no other address was specified.\n"
97cbe998 3839READNOW_READNEVER_HELP),
c906108c 3840 &cmdlist);
5ba2abeb 3841 set_cmd_completer (c, filename_completer);
c906108c 3842
63644780
NB
3843 c = add_cmd ("remove-symbol-file", class_files,
3844 remove_symbol_file_command, _("\
3845Remove a symbol file added via the add-symbol-file command.\n\
3846Usage: remove-symbol-file FILENAME\n\
3847 remove-symbol-file -a ADDRESS\n\
3848The file to remove can be identified by its filename or by an address\n\
3849that lies within the boundaries of this symbol file in memory."),
3850 &cmdlist);
3851
1a966eab 3852 c = add_cmd ("load", class_files, load_command, _("\
590042fc
PW
3853Dynamically load FILE into the running program.\n\
3854FILE symbols are recorded for access from GDB.\n\
8ca2f0b9 3855Usage: load [FILE] [OFFSET]\n\
5cf30ebf
LM
3856An optional load OFFSET may also be given as a literal address.\n\
3857When OFFSET is provided, FILE must also be provided. FILE can be provided\n\
8ca2f0b9 3858on its own."), &cmdlist);
5ba2abeb 3859 set_cmd_completer (c, filename_completer);
c906108c 3860
0743fc83
TT
3861 add_basic_prefix_cmd ("overlay", class_support,
3862 _("Commands for debugging overlays."), &overlaylist,
3863 "overlay ", 0, &cmdlist);
c906108c 3864
57b4f16e
PW
3865 add_com_alias ("ovly", "overlay", class_support, 1);
3866 add_com_alias ("ov", "overlay", class_support, 1);
c906108c 3867
c5aa993b 3868 add_cmd ("map-overlay", class_support, map_overlay_command,
1a966eab 3869 _("Assert that an overlay section is mapped."), &overlaylist);
c906108c 3870
c5aa993b 3871 add_cmd ("unmap-overlay", class_support, unmap_overlay_command,
1a966eab 3872 _("Assert that an overlay section is unmapped."), &overlaylist);
c906108c 3873
c5aa993b 3874 add_cmd ("list-overlays", class_support, list_overlays_command,
1a966eab 3875 _("List mappings of overlay sections."), &overlaylist);
c906108c 3876
c5aa993b 3877 add_cmd ("manual", class_support, overlay_manual_command,
1a966eab 3878 _("Enable overlay debugging."), &overlaylist);
c5aa993b 3879 add_cmd ("off", class_support, overlay_off_command,
1a966eab 3880 _("Disable overlay debugging."), &overlaylist);
c5aa993b 3881 add_cmd ("auto", class_support, overlay_auto_command,
1a966eab 3882 _("Enable automatic overlay debugging."), &overlaylist);
c5aa993b 3883 add_cmd ("load-target", class_support, overlay_load_command,
1a966eab 3884 _("Read the overlay mapping state from the target."), &overlaylist);
c906108c
SS
3885
3886 /* Filename extension to source language lookup table: */
26c41df3
AC
3887 add_setshow_string_noescape_cmd ("extension-language", class_files,
3888 &ext_args, _("\
3889Set mapping between filename extension and source language."), _("\
3890Show mapping between filename extension and source language."), _("\
3891Usage: set extension-language .foo bar"),
3892 set_ext_lang_command,
920d2a44 3893 show_ext_args,
26c41df3 3894 &setlist, &showlist);
c906108c 3895
c5aa993b 3896 add_info ("extensions", info_ext_lang_command,
1bedd215 3897 _("All filename extensions associated with a source language."));
917317f4 3898
525226b5
AC
3899 add_setshow_optional_filename_cmd ("debug-file-directory", class_support,
3900 &debug_file_directory, _("\
24ddea62
JK
3901Set the directories where separate debug symbols are searched for."), _("\
3902Show the directories where separate debug symbols are searched for."), _("\
525226b5
AC
3903Separate debug symbols are first searched for in the same\n\
3904directory as the binary, then in the `" DEBUG_SUBDIRECTORY "' subdirectory,\n\
3905and lastly at the path of the directory of the binary with\n\
24ddea62 3906each global debug-file-directory component prepended."),
525226b5 3907 NULL,
920d2a44 3908 show_debug_file_directory,
525226b5 3909 &setlist, &showlist);
770e7fc7
DE
3910
3911 add_setshow_enum_cmd ("symbol-loading", no_class,
3912 print_symbol_loading_enums, &print_symbol_loading,
3913 _("\
3914Set printing of symbol loading messages."), _("\
3915Show printing of symbol loading messages."), _("\
3916off == turn all messages off\n\
3917brief == print messages for the executable,\n\
dda83cd7 3918 and brief messages for shared libraries\n\
770e7fc7 3919full == print messages for the executable,\n\
dda83cd7 3920 and messages for each shared library."),
770e7fc7
DE
3921 NULL,
3922 NULL,
3923 &setprintlist, &showprintlist);
c4dcb155
SM
3924
3925 add_setshow_boolean_cmd ("separate-debug-file", no_class,
3926 &separate_debug_file_debug, _("\
3927Set printing of separate debug info file search debug."), _("\
3928Show printing of separate debug info file search debug."), _("\
3929When on, GDB prints the searched locations while looking for separate debug \
3930info files."), NULL, NULL, &setdebuglist, &showdebuglist);
32fa66eb
SM
3931
3932#if GDB_SELF_TEST
3933 selftests::register_test
3934 ("filename_language", selftests::filename_language::test_filename_language);
3935 selftests::register_test
3936 ("set_ext_lang_command",
3937 selftests::filename_language::test_set_ext_lang_command);
3938#endif
c906108c 3939}