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