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