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