* config/i386/linux.mt (TDEPFILES): Remove solib-legacy.o.
[deliverable/binutils-gdb.git] / gdb / symfile.c
CommitLineData
c906108c 1/* Generic symbol file reading for the GNU debugger, GDB.
8926118c
AC
2
3 Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
cf5b2f1b 4 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
8926118c 5
c906108c
SS
6 Contributed by Cygnus Support, using pieces from other GDB modules.
7
c5aa993b 8 This file is part of GDB.
c906108c 9
c5aa993b
JM
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
c906108c 14
c5aa993b
JM
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
c906108c 19
c5aa993b
JM
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 59 Temple Place - Suite 330,
23 Boston, MA 02111-1307, USA. */
c906108c
SS
24
25#include "defs.h"
086df311 26#include "bfdlink.h"
c906108c
SS
27#include "symtab.h"
28#include "gdbtypes.h"
29#include "gdbcore.h"
30#include "frame.h"
31#include "target.h"
32#include "value.h"
33#include "symfile.h"
34#include "objfiles.h"
0378c332 35#include "source.h"
c906108c
SS
36#include "gdbcmd.h"
37#include "breakpoint.h"
38#include "language.h"
39#include "complaints.h"
40#include "demangle.h"
c5aa993b 41#include "inferior.h" /* for write_pc */
5b5d99cf 42#include "filenames.h" /* for DOSish file names */
c906108c 43#include "gdb-stabs.h"
04ea0df1 44#include "gdb_obstack.h"
d75b5104 45#include "completer.h"
af5f3db6 46#include "bcache.h"
2de7ced7 47#include "hashtab.h"
dbda9972 48#include "readline/readline.h"
7e8580c1 49#include "gdb_assert.h"
fe898f56 50#include "block.h"
c906108c 51
c906108c
SS
52#include <sys/types.h>
53#include <fcntl.h>
54#include "gdb_string.h"
55#include "gdb_stat.h"
56#include <ctype.h>
57#include <time.h>
c906108c
SS
58
59#ifndef O_BINARY
60#define O_BINARY 0
61#endif
62
63#ifdef HPUXHPPA
64
65/* Some HP-UX related globals to clear when a new "main"
66 symbol file is loaded. HP-specific. */
67
c906108c
SS
68extern int hp_cxx_exception_support_initialized;
69#define RESET_HP_UX_GLOBALS() do {\
f83f82bc 70 deprecated_hp_som_som_object_present = 0; /* indicates HP-compiled code */ \
c906108c
SS
71 hp_cxx_exception_support_initialized = 0; /* must reinitialize exception stuff */ \
72 } while (0)
73#endif
74
917317f4 75int (*ui_load_progress_hook) (const char *section, unsigned long num);
c2d11a7d
JM
76void (*show_load_progress) (const char *section,
77 unsigned long section_sent,
78 unsigned long section_size,
79 unsigned long total_sent,
80 unsigned long total_size);
507f3c78
KB
81void (*pre_add_symbol_hook) (char *);
82void (*post_add_symbol_hook) (void);
83void (*target_new_objfile_hook) (struct objfile *);
c906108c 84
74b7792f
AC
85static void clear_symtab_users_cleanup (void *ignore);
86
c906108c 87/* Global variables owned by this file */
c5aa993b 88int readnow_symbol_files; /* Read full symbols immediately */
c906108c 89
c906108c
SS
90/* External variables and functions referenced. */
91
a14ed312 92extern void report_transfer_performance (unsigned long, time_t, time_t);
c906108c
SS
93
94/* Functions this file defines */
95
96#if 0
a14ed312
KB
97static int simple_read_overlay_region_table (void);
98static void simple_free_overlay_region_table (void);
c906108c
SS
99#endif
100
a14ed312 101static void set_initial_language (void);
c906108c 102
a14ed312 103static void load_command (char *, int);
c906108c 104
d7db6da9
FN
105static void symbol_file_add_main_1 (char *args, int from_tty, int flags);
106
a14ed312 107static void add_symbol_file_command (char *, int);
c906108c 108
a14ed312 109static void add_shared_symbol_files_command (char *, int);
c906108c 110
5b5d99cf
JB
111static void reread_separate_symbols (struct objfile *objfile);
112
a14ed312 113static void cashier_psymtab (struct partial_symtab *);
c906108c 114
a14ed312 115bfd *symfile_bfd_open (char *);
c906108c 116
0e931cf0
JB
117int get_section_index (struct objfile *, char *);
118
a14ed312 119static void find_sym_fns (struct objfile *);
c906108c 120
a14ed312 121static void decrement_reading_symtab (void *);
c906108c 122
a14ed312 123static void overlay_invalidate_all (void);
c906108c 124
a14ed312 125static int overlay_is_mapped (struct obj_section *);
c906108c 126
a14ed312 127void list_overlays_command (char *, int);
c906108c 128
a14ed312 129void map_overlay_command (char *, int);
c906108c 130
a14ed312 131void unmap_overlay_command (char *, int);
c906108c 132
a14ed312 133static void overlay_auto_command (char *, int);
c906108c 134
a14ed312 135static void overlay_manual_command (char *, int);
c906108c 136
a14ed312 137static void overlay_off_command (char *, int);
c906108c 138
a14ed312 139static void overlay_load_command (char *, int);
c906108c 140
a14ed312 141static void overlay_command (char *, int);
c906108c 142
a14ed312 143static void simple_free_overlay_table (void);
c906108c 144
a14ed312 145static void read_target_long_array (CORE_ADDR, unsigned int *, int);
c906108c 146
a14ed312 147static int simple_read_overlay_table (void);
c906108c 148
a14ed312 149static int simple_overlay_update_1 (struct obj_section *);
c906108c 150
a14ed312 151static void add_filename_language (char *ext, enum language lang);
392a587b 152
a14ed312 153static void set_ext_lang_command (char *args, int from_tty);
392a587b 154
a14ed312 155static void info_ext_lang_command (char *args, int from_tty);
392a587b 156
5b5d99cf
JB
157static char *find_separate_debug_file (struct objfile *objfile);
158
a14ed312 159static void init_filename_language_table (void);
392a587b 160
a14ed312 161void _initialize_symfile (void);
c906108c
SS
162
163/* List of all available sym_fns. On gdb startup, each object file reader
164 calls add_symtab_fns() to register information on each format it is
165 prepared to read. */
166
167static struct sym_fns *symtab_fns = NULL;
168
169/* Flag for whether user will be reloading symbols multiple times.
170 Defaults to ON for VxWorks, otherwise OFF. */
171
172#ifdef SYMBOL_RELOADING_DEFAULT
173int symbol_reloading = SYMBOL_RELOADING_DEFAULT;
174#else
175int symbol_reloading = 0;
176#endif
177
b7209cb4
FF
178/* If non-zero, shared library symbols will be added automatically
179 when the inferior is created, new libraries are loaded, or when
180 attaching to the inferior. This is almost always what users will
181 want to have happen; but for very large programs, the startup time
182 will be excessive, and so if this is a problem, the user can clear
183 this flag and then add the shared library symbols as needed. Note
184 that there is a potential for confusion, since if the shared
c906108c 185 library symbols are not loaded, commands like "info fun" will *not*
b7209cb4 186 report all the functions that are actually present. */
c906108c
SS
187
188int auto_solib_add = 1;
b7209cb4
FF
189
190/* For systems that support it, a threshold size in megabytes. If
191 automatically adding a new library's symbol table to those already
192 known to the debugger would cause the total shared library symbol
193 size to exceed this threshhold, then the shlib's symbols are not
194 added. The threshold is ignored if the user explicitly asks for a
195 shlib to be added, such as when using the "sharedlibrary"
196 command. */
197
198int auto_solib_limit;
c906108c 199\f
c5aa993b 200
0fe19209
DC
201/* This compares two partial symbols by names, using strcmp_iw_ordered
202 for the comparison. */
c906108c
SS
203
204static int
0cd64fe2 205compare_psymbols (const void *s1p, const void *s2p)
c906108c 206{
0fe19209
DC
207 struct partial_symbol *const *s1 = s1p;
208 struct partial_symbol *const *s2 = s2p;
209
c8be8951
DC
210 return strcmp_iw_ordered (SYMBOL_NATURAL_NAME (*s1),
211 SYMBOL_NATURAL_NAME (*s2));
c906108c
SS
212}
213
214void
fba45db2 215sort_pst_symbols (struct partial_symtab *pst)
c906108c
SS
216{
217 /* Sort the global list; don't sort the static list */
218
c5aa993b
JM
219 qsort (pst->objfile->global_psymbols.list + pst->globals_offset,
220 pst->n_global_syms, sizeof (struct partial_symbol *),
c906108c
SS
221 compare_psymbols);
222}
223
c906108c
SS
224/* Make a null terminated copy of the string at PTR with SIZE characters in
225 the obstack pointed to by OBSTACKP . Returns the address of the copy.
226 Note that the string at PTR does not have to be null terminated, I.E. it
227 may be part of a larger string and we are only saving a substring. */
228
229char *
63ca651f 230obsavestring (const char *ptr, int size, struct obstack *obstackp)
c906108c 231{
52f0bd74 232 char *p = (char *) obstack_alloc (obstackp, size + 1);
c906108c
SS
233 /* Open-coded memcpy--saves function call time. These strings are usually
234 short. FIXME: Is this really still true with a compiler that can
235 inline memcpy? */
236 {
aa1ee363
AC
237 const char *p1 = ptr;
238 char *p2 = p;
63ca651f 239 const char *end = ptr + size;
c906108c
SS
240 while (p1 != end)
241 *p2++ = *p1++;
242 }
243 p[size] = 0;
244 return p;
245}
246
247/* Concatenate strings S1, S2 and S3; return the new string. Space is found
248 in the obstack pointed to by OBSTACKP. */
249
250char *
fba45db2
KB
251obconcat (struct obstack *obstackp, const char *s1, const char *s2,
252 const char *s3)
c906108c 253{
52f0bd74
AC
254 int len = strlen (s1) + strlen (s2) + strlen (s3) + 1;
255 char *val = (char *) obstack_alloc (obstackp, len);
c906108c
SS
256 strcpy (val, s1);
257 strcat (val, s2);
258 strcat (val, s3);
259 return val;
260}
261
262/* True if we are nested inside psymtab_to_symtab. */
263
264int currently_reading_symtab = 0;
265
266static void
fba45db2 267decrement_reading_symtab (void *dummy)
c906108c
SS
268{
269 currently_reading_symtab--;
270}
271
272/* Get the symbol table that corresponds to a partial_symtab.
273 This is fast after the first time you do it. In fact, there
274 is an even faster macro PSYMTAB_TO_SYMTAB that does the fast
275 case inline. */
276
277struct symtab *
aa1ee363 278psymtab_to_symtab (struct partial_symtab *pst)
c906108c
SS
279{
280 /* If it's been looked up before, return it. */
281 if (pst->symtab)
282 return pst->symtab;
283
284 /* If it has not yet been read in, read it. */
285 if (!pst->readin)
c5aa993b 286 {
c906108c
SS
287 struct cleanup *back_to = make_cleanup (decrement_reading_symtab, NULL);
288 currently_reading_symtab++;
289 (*pst->read_symtab) (pst);
290 do_cleanups (back_to);
291 }
292
293 return pst->symtab;
294}
295
c906108c
SS
296/* Remember the lowest-addressed loadable section we've seen.
297 This function is called via bfd_map_over_sections.
298
299 In case of equal vmas, the section with the largest size becomes the
300 lowest-addressed loadable section.
301
302 If the vmas and sizes are equal, the last section is considered the
303 lowest-addressed loadable section. */
304
305void
4efb68b1 306find_lowest_section (bfd *abfd, asection *sect, void *obj)
c906108c 307{
c5aa993b 308 asection **lowest = (asection **) obj;
c906108c
SS
309
310 if (0 == (bfd_get_section_flags (abfd, sect) & SEC_LOAD))
311 return;
312 if (!*lowest)
313 *lowest = sect; /* First loadable section */
314 else if (bfd_section_vma (abfd, *lowest) > bfd_section_vma (abfd, sect))
315 *lowest = sect; /* A lower loadable section */
316 else if (bfd_section_vma (abfd, *lowest) == bfd_section_vma (abfd, sect)
317 && (bfd_section_size (abfd, (*lowest))
318 <= bfd_section_size (abfd, sect)))
319 *lowest = sect;
320}
321
a39a16c4
MM
322/* Create a new section_addr_info, with room for NUM_SECTIONS. */
323
324struct section_addr_info *
325alloc_section_addr_info (size_t num_sections)
326{
327 struct section_addr_info *sap;
328 size_t size;
329
330 size = (sizeof (struct section_addr_info)
331 + sizeof (struct other_sections) * (num_sections - 1));
332 sap = (struct section_addr_info *) xmalloc (size);
333 memset (sap, 0, size);
334 sap->num_sections = num_sections;
335
336 return sap;
337}
62557bbc
KB
338
339/* Build (allocate and populate) a section_addr_info struct from
340 an existing section table. */
341
342extern struct section_addr_info *
343build_section_addr_info_from_section_table (const struct section_table *start,
344 const struct section_table *end)
345{
346 struct section_addr_info *sap;
347 const struct section_table *stp;
348 int oidx;
349
a39a16c4 350 sap = alloc_section_addr_info (end - start);
62557bbc
KB
351
352 for (stp = start, oidx = 0; stp != end; stp++)
353 {
fbd35540
MS
354 if (bfd_get_section_flags (stp->bfd,
355 stp->the_bfd_section) & (SEC_ALLOC | SEC_LOAD)
a39a16c4 356 && oidx < end - start)
62557bbc
KB
357 {
358 sap->other[oidx].addr = stp->addr;
fbd35540
MS
359 sap->other[oidx].name
360 = xstrdup (bfd_section_name (stp->bfd, stp->the_bfd_section));
62557bbc
KB
361 sap->other[oidx].sectindex = stp->the_bfd_section->index;
362 oidx++;
363 }
364 }
365
366 return sap;
367}
368
369
370/* Free all memory allocated by build_section_addr_info_from_section_table. */
371
372extern void
373free_section_addr_info (struct section_addr_info *sap)
374{
375 int idx;
376
a39a16c4 377 for (idx = 0; idx < sap->num_sections; idx++)
62557bbc 378 if (sap->other[idx].name)
b8c9b27d
KB
379 xfree (sap->other[idx].name);
380 xfree (sap);
62557bbc
KB
381}
382
383
e8289572
JB
384/* Initialize OBJFILE's sect_index_* members. */
385static void
386init_objfile_sect_indices (struct objfile *objfile)
c906108c 387{
e8289572 388 asection *sect;
c906108c 389 int i;
e8289572 390
b8fbeb18
EZ
391 sect = bfd_get_section_by_name (objfile->obfd, ".text");
392 if (sect)
393 objfile->sect_index_text = sect->index;
394
395 sect = bfd_get_section_by_name (objfile->obfd, ".data");
396 if (sect)
397 objfile->sect_index_data = sect->index;
398
399 sect = bfd_get_section_by_name (objfile->obfd, ".bss");
400 if (sect)
401 objfile->sect_index_bss = sect->index;
402
403 sect = bfd_get_section_by_name (objfile->obfd, ".rodata");
404 if (sect)
405 objfile->sect_index_rodata = sect->index;
406
bbcd32ad
FF
407 /* This is where things get really weird... We MUST have valid
408 indices for the various sect_index_* members or gdb will abort.
409 So if for example, there is no ".text" section, we have to
410 accomodate that. Except when explicitly adding symbol files at
411 some address, section_offsets contains nothing but zeros, so it
412 doesn't matter which slot in section_offsets the individual
413 sect_index_* members index into. So if they are all zero, it is
414 safe to just point all the currently uninitialized indices to the
415 first slot. */
416
417 for (i = 0; i < objfile->num_sections; i++)
418 {
419 if (ANOFFSET (objfile->section_offsets, i) != 0)
420 {
421 break;
422 }
423 }
424 if (i == objfile->num_sections)
425 {
426 if (objfile->sect_index_text == -1)
427 objfile->sect_index_text = 0;
428 if (objfile->sect_index_data == -1)
429 objfile->sect_index_data = 0;
430 if (objfile->sect_index_bss == -1)
431 objfile->sect_index_bss = 0;
432 if (objfile->sect_index_rodata == -1)
433 objfile->sect_index_rodata = 0;
434 }
b8fbeb18 435}
c906108c 436
e8289572
JB
437
438/* Parse the user's idea of an offset for dynamic linking, into our idea
439 of how to represent it for fast symbol reading. This is the default
440 version of the sym_fns.sym_offsets function for symbol readers that
441 don't need to do anything special. It allocates a section_offsets table
442 for the objectfile OBJFILE and stuffs ADDR into all of the offsets. */
443
444void
445default_symfile_offsets (struct objfile *objfile,
446 struct section_addr_info *addrs)
447{
448 int i;
449
a39a16c4 450 objfile->num_sections = bfd_count_sections (objfile->obfd);
e8289572 451 objfile->section_offsets = (struct section_offsets *)
8b92e4d5 452 obstack_alloc (&objfile->objfile_obstack,
a39a16c4
MM
453 SIZEOF_N_SECTION_OFFSETS (objfile->num_sections));
454 memset (objfile->section_offsets, 0,
455 SIZEOF_N_SECTION_OFFSETS (objfile->num_sections));
e8289572
JB
456
457 /* Now calculate offsets for section that were specified by the
458 caller. */
a39a16c4 459 for (i = 0; i < addrs->num_sections && addrs->other[i].name; i++)
e8289572
JB
460 {
461 struct other_sections *osp ;
462
463 osp = &addrs->other[i] ;
464 if (osp->addr == 0)
465 continue;
466
467 /* Record all sections in offsets */
468 /* The section_offsets in the objfile are here filled in using
469 the BFD index. */
470 (objfile->section_offsets)->offsets[osp->sectindex] = osp->addr;
471 }
472
473 /* Remember the bfd indexes for the .text, .data, .bss and
474 .rodata sections. */
475 init_objfile_sect_indices (objfile);
476}
477
478
c906108c
SS
479/* Process a symbol file, as either the main file or as a dynamically
480 loaded file.
481
96baa820
JM
482 OBJFILE is where the symbols are to be read from.
483
7e8580c1
JB
484 ADDRS is the list of section load addresses. If the user has given
485 an 'add-symbol-file' command, then this is the list of offsets and
486 addresses he or she provided as arguments to the command; or, if
487 we're handling a shared library, these are the actual addresses the
488 sections are loaded at, according to the inferior's dynamic linker
489 (as gleaned by GDB's shared library code). We convert each address
490 into an offset from the section VMA's as it appears in the object
491 file, and then call the file's sym_offsets function to convert this
492 into a format-specific offset table --- a `struct section_offsets'.
493 If ADDRS is non-zero, OFFSETS must be zero.
494
495 OFFSETS is a table of section offsets already in the right
496 format-specific representation. NUM_OFFSETS is the number of
497 elements present in OFFSETS->offsets. If OFFSETS is non-zero, we
498 assume this is the proper table the call to sym_offsets described
499 above would produce. Instead of calling sym_offsets, we just dump
500 it right into objfile->section_offsets. (When we're re-reading
501 symbols from an objfile, we don't have the original load address
502 list any more; all we have is the section offset table.) If
503 OFFSETS is non-zero, ADDRS must be zero.
96baa820
JM
504
505 MAINLINE is nonzero if this is the main symbol file, or zero if
506 it's an extra symbol file such as dynamically loaded code.
507
508 VERBO is nonzero if the caller has printed a verbose message about
509 the symbol reading (and complaints can be more terse about it). */
c906108c
SS
510
511void
7e8580c1
JB
512syms_from_objfile (struct objfile *objfile,
513 struct section_addr_info *addrs,
514 struct section_offsets *offsets,
515 int num_offsets,
516 int mainline,
517 int verbo)
c906108c 518{
a39a16c4 519 struct section_addr_info *local_addr = NULL;
c906108c 520 struct cleanup *old_chain;
2acceee2 521
7e8580c1 522 gdb_assert (! (addrs && offsets));
2acceee2 523
c906108c
SS
524 init_entry_point_info (objfile);
525 find_sym_fns (objfile);
526
75245b24
MS
527 if (objfile->sf == NULL)
528 return; /* No symbols. */
529
c906108c
SS
530 /* Make sure that partially constructed symbol tables will be cleaned up
531 if an error occurs during symbol reading. */
74b7792f 532 old_chain = make_cleanup_free_objfile (objfile);
c906108c 533
a39a16c4
MM
534 /* If ADDRS and OFFSETS are both NULL, put together a dummy address
535 list. We now establish the convention that an addr of zero means
536 no load address was specified. */
537 if (! addrs && ! offsets)
538 {
539 local_addr
540 = alloc_section_addr_info (bfd_count_sections (objfile->obfd));
541 make_cleanup (xfree, local_addr);
542 addrs = local_addr;
543 }
544
545 /* Now either addrs or offsets is non-zero. */
546
c5aa993b 547 if (mainline)
c906108c
SS
548 {
549 /* We will modify the main symbol table, make sure that all its users
c5aa993b 550 will be cleaned up if an error occurs during symbol reading. */
74b7792f 551 make_cleanup (clear_symtab_users_cleanup, 0 /*ignore*/);
c906108c
SS
552
553 /* Since no error yet, throw away the old symbol table. */
554
555 if (symfile_objfile != NULL)
556 {
557 free_objfile (symfile_objfile);
558 symfile_objfile = NULL;
559 }
560
561 /* Currently we keep symbols from the add-symbol-file command.
c5aa993b
JM
562 If the user wants to get rid of them, they should do "symbol-file"
563 without arguments first. Not sure this is the best behavior
564 (PR 2207). */
c906108c 565
c5aa993b 566 (*objfile->sf->sym_new_init) (objfile);
c906108c
SS
567 }
568
569 /* Convert addr into an offset rather than an absolute address.
570 We find the lowest address of a loaded segment in the objfile,
53a5351d 571 and assume that <addr> is where that got loaded.
c906108c 572
53a5351d
JM
573 We no longer warn if the lowest section is not a text segment (as
574 happens for the PA64 port. */
1549f619 575 if (!mainline && addrs && addrs->other[0].name)
c906108c 576 {
1549f619
EZ
577 asection *lower_sect;
578 asection *sect;
579 CORE_ADDR lower_offset;
580 int i;
581
2acceee2
JM
582 /* Find lowest loadable section to be used as starting point for
583 continguous sections. FIXME!! won't work without call to find
584 .text first, but this assumes text is lowest section. */
585 lower_sect = bfd_get_section_by_name (objfile->obfd, ".text");
586 if (lower_sect == NULL)
c906108c 587 bfd_map_over_sections (objfile->obfd, find_lowest_section,
4efb68b1 588 &lower_sect);
2acceee2 589 if (lower_sect == NULL)
c906108c
SS
590 warning ("no loadable sections found in added symbol-file %s",
591 objfile->name);
b8fbeb18
EZ
592 else
593 if ((bfd_get_section_flags (objfile->obfd, lower_sect) & SEC_CODE) == 0)
594 warning ("Lowest section in %s is %s at %s",
595 objfile->name,
596 bfd_section_name (objfile->obfd, lower_sect),
597 paddr (bfd_section_vma (objfile->obfd, lower_sect)));
2acceee2
JM
598 if (lower_sect != NULL)
599 lower_offset = bfd_section_vma (objfile->obfd, lower_sect);
600 else
601 lower_offset = 0;
602
13de58df 603 /* Calculate offsets for the loadable sections.
2acceee2
JM
604 FIXME! Sections must be in order of increasing loadable section
605 so that contiguous sections can use the lower-offset!!!
606
13de58df
JB
607 Adjust offsets if the segments are not contiguous.
608 If the section is contiguous, its offset should be set to
2acceee2
JM
609 the offset of the highest loadable section lower than it
610 (the loadable section directly below it in memory).
611 this_offset = lower_offset = lower_addr - lower_orig_addr */
612
1549f619 613 for (i = 0; i < addrs->num_sections && addrs->other[i].name; i++)
7e8580c1
JB
614 {
615 if (addrs->other[i].addr != 0)
616 {
617 sect = bfd_get_section_by_name (objfile->obfd,
618 addrs->other[i].name);
619 if (sect)
620 {
621 addrs->other[i].addr
622 -= bfd_section_vma (objfile->obfd, sect);
623 lower_offset = addrs->other[i].addr;
624 /* This is the index used by BFD. */
625 addrs->other[i].sectindex = sect->index ;
626 }
627 else
628 {
629 warning ("section %s not found in %s",
630 addrs->other[i].name,
631 objfile->name);
632 addrs->other[i].addr = 0;
633 }
634 }
635 else
636 addrs->other[i].addr = lower_offset;
637 }
c906108c
SS
638 }
639
640 /* Initialize symbol reading routines for this objfile, allow complaints to
641 appear for this new file, and record how verbose to be, then do the
642 initial symbol reading for this file. */
643
c5aa993b 644 (*objfile->sf->sym_init) (objfile);
b9caf505 645 clear_complaints (&symfile_complaints, 1, verbo);
c906108c 646
7e8580c1
JB
647 if (addrs)
648 (*objfile->sf->sym_offsets) (objfile, addrs);
649 else
650 {
651 size_t size = SIZEOF_N_SECTION_OFFSETS (num_offsets);
652
653 /* Just copy in the offset table directly as given to us. */
654 objfile->num_sections = num_offsets;
655 objfile->section_offsets
656 = ((struct section_offsets *)
8b92e4d5 657 obstack_alloc (&objfile->objfile_obstack, size));
7e8580c1
JB
658 memcpy (objfile->section_offsets, offsets, size);
659
660 init_objfile_sect_indices (objfile);
661 }
c906108c 662
52d16ba8 663#ifndef DEPRECATED_IBM6000_TARGET
c906108c
SS
664 /* This is a SVR4/SunOS specific hack, I think. In any event, it
665 screws RS/6000. sym_offsets should be doing this sort of thing,
666 because it knows the mapping between bfd sections and
667 section_offsets. */
668 /* This is a hack. As far as I can tell, section offsets are not
669 target dependent. They are all set to addr with a couple of
670 exceptions. The exceptions are sysvr4 shared libraries, whose
671 offsets are kept in solib structures anyway and rs6000 xcoff
672 which handles shared libraries in a completely unique way.
673
674 Section offsets are built similarly, except that they are built
675 by adding addr in all cases because there is no clear mapping
676 from section_offsets into actual sections. Note that solib.c
96baa820 677 has a different algorithm for finding section offsets.
c906108c
SS
678
679 These should probably all be collapsed into some target
680 independent form of shared library support. FIXME. */
681
2acceee2 682 if (addrs)
c906108c
SS
683 {
684 struct obj_section *s;
685
2acceee2
JM
686 /* Map section offsets in "addr" back to the object's
687 sections by comparing the section names with bfd's
688 section names. Then adjust the section address by
689 the offset. */ /* for gdb/13815 */
690
96baa820 691 ALL_OBJFILE_OSECTIONS (objfile, s)
c906108c 692 {
2acceee2
JM
693 CORE_ADDR s_addr = 0;
694 int i;
695
62557bbc 696 for (i = 0;
a39a16c4 697 !s_addr && i < addrs->num_sections && addrs->other[i].name;
62557bbc 698 i++)
fbd35540
MS
699 if (strcmp (bfd_section_name (s->objfile->obfd,
700 s->the_bfd_section),
701 addrs->other[i].name) == 0)
2acceee2
JM
702 s_addr = addrs->other[i].addr; /* end added for gdb/13815 */
703
c906108c 704 s->addr -= s->offset;
2acceee2 705 s->addr += s_addr;
c906108c 706 s->endaddr -= s->offset;
2acceee2
JM
707 s->endaddr += s_addr;
708 s->offset += s_addr;
c906108c
SS
709 }
710 }
52d16ba8 711#endif /* not DEPRECATED_IBM6000_TARGET */
c906108c 712
96baa820 713 (*objfile->sf->sym_read) (objfile, mainline);
c906108c 714
c906108c
SS
715 /* Don't allow char * to have a typename (else would get caddr_t).
716 Ditto void *. FIXME: Check whether this is now done by all the
717 symbol readers themselves (many of them now do), and if so remove
718 it from here. */
719
720 TYPE_NAME (lookup_pointer_type (builtin_type_char)) = 0;
721 TYPE_NAME (lookup_pointer_type (builtin_type_void)) = 0;
722
723 /* Mark the objfile has having had initial symbol read attempted. Note
724 that this does not mean we found any symbols... */
725
c5aa993b 726 objfile->flags |= OBJF_SYMS;
c906108c
SS
727
728 /* Discard cleanups as symbol reading was successful. */
729
730 discard_cleanups (old_chain);
c906108c
SS
731}
732
733/* Perform required actions after either reading in the initial
734 symbols for a new objfile, or mapping in the symbols from a reusable
735 objfile. */
c5aa993b 736
c906108c 737void
fba45db2 738new_symfile_objfile (struct objfile *objfile, int mainline, int verbo)
c906108c
SS
739{
740
741 /* If this is the main symbol file we have to clean up all users of the
742 old main symbol file. Otherwise it is sufficient to fixup all the
743 breakpoints that may have been redefined by this symbol file. */
744 if (mainline)
745 {
746 /* OK, make it the "real" symbol file. */
747 symfile_objfile = objfile;
748
749 clear_symtab_users ();
750 }
751 else
752 {
753 breakpoint_re_set ();
754 }
755
756 /* We're done reading the symbol file; finish off complaints. */
b9caf505 757 clear_complaints (&symfile_complaints, 0, verbo);
c906108c
SS
758}
759
760/* Process a symbol file, as either the main file or as a dynamically
761 loaded file.
762
763 NAME is the file name (which will be tilde-expanded and made
764 absolute herein) (but we don't free or modify NAME itself).
7904e09f
JB
765
766 FROM_TTY says how verbose to be.
767
768 MAINLINE specifies whether this is the main symbol file, or whether
769 it's an extra symbol file such as dynamically loaded code.
770
771 ADDRS, OFFSETS, and NUM_OFFSETS are as described for
772 syms_from_objfile, above. ADDRS is ignored when MAINLINE is
773 non-zero.
c906108c 774
c906108c
SS
775 Upon success, returns a pointer to the objfile that was added.
776 Upon failure, jumps back to command level (never returns). */
7904e09f
JB
777static struct objfile *
778symbol_file_add_with_addrs_or_offsets (char *name, int from_tty,
779 struct section_addr_info *addrs,
780 struct section_offsets *offsets,
781 int num_offsets,
782 int mainline, int flags)
c906108c
SS
783{
784 struct objfile *objfile;
785 struct partial_symtab *psymtab;
5b5d99cf 786 char *debugfile;
c906108c 787 bfd *abfd;
a39a16c4
MM
788 struct section_addr_info *orig_addrs;
789 struct cleanup *my_cleanups;
c906108c
SS
790
791 /* Open a bfd for the file, and give user a chance to burp if we'd be
792 interactively wiping out any existing symbols. */
793
794 abfd = symfile_bfd_open (name);
795
796 if ((have_full_symbols () || have_partial_symbols ())
797 && mainline
798 && from_tty
799 && !query ("Load new symbol table from \"%s\"? ", name))
c5aa993b 800 error ("Not confirmed.");
c906108c 801
2df3850c 802 objfile = allocate_objfile (abfd, flags);
c906108c 803
a39a16c4
MM
804 orig_addrs = alloc_section_addr_info (bfd_count_sections (abfd));
805 my_cleanups = make_cleanup (xfree, orig_addrs);
806 if (addrs)
63cd24fe
EZ
807 {
808 int i;
809 orig_addrs->num_sections = addrs->num_sections;
810 for (i = 0; i < addrs->num_sections; i++)
811 orig_addrs->other[i] = addrs->other[i];
812 }
a39a16c4 813
78a4a9b9
AC
814 /* We either created a new mapped symbol table, mapped an existing
815 symbol table file which has not had initial symbol reading
816 performed, or need to read an unmapped symbol table. */
817 if (from_tty || info_verbose)
c906108c 818 {
78a4a9b9
AC
819 if (pre_add_symbol_hook)
820 pre_add_symbol_hook (name);
821 else
c906108c 822 {
78a4a9b9 823 printf_unfiltered ("Reading symbols from %s...", name);
c906108c
SS
824 wrap_here ("");
825 gdb_flush (gdb_stdout);
826 }
c906108c 827 }
78a4a9b9
AC
828 syms_from_objfile (objfile, addrs, offsets, num_offsets,
829 mainline, from_tty);
c906108c
SS
830
831 /* We now have at least a partial symbol table. Check to see if the
832 user requested that all symbols be read on initial access via either
833 the gdb startup command line or on a per symbol file basis. Expand
834 all partial symbol tables for this objfile if so. */
835
2acceee2 836 if ((flags & OBJF_READNOW) || readnow_symbol_files)
c906108c
SS
837 {
838 if (from_tty || info_verbose)
839 {
46f45a4a 840 printf_unfiltered ("expanding to full symbols...");
c906108c
SS
841 wrap_here ("");
842 gdb_flush (gdb_stdout);
843 }
844
c5aa993b 845 for (psymtab = objfile->psymtabs;
c906108c 846 psymtab != NULL;
c5aa993b 847 psymtab = psymtab->next)
c906108c
SS
848 {
849 psymtab_to_symtab (psymtab);
850 }
851 }
852
5b5d99cf
JB
853 debugfile = find_separate_debug_file (objfile);
854 if (debugfile)
855 {
5b5d99cf
JB
856 if (addrs != NULL)
857 {
858 objfile->separate_debug_objfile
a39a16c4 859 = symbol_file_add (debugfile, from_tty, orig_addrs, 0, flags);
5b5d99cf
JB
860 }
861 else
862 {
863 objfile->separate_debug_objfile
864 = symbol_file_add (debugfile, from_tty, NULL, 0, flags);
865 }
866 objfile->separate_debug_objfile->separate_debug_objfile_backlink
867 = objfile;
868
869 /* Put the separate debug object before the normal one, this is so that
870 usage of the ALL_OBJFILES_SAFE macro will stay safe. */
871 put_objfile_before (objfile->separate_debug_objfile, objfile);
872
873 xfree (debugfile);
874 }
875
cb3c37b2
JB
876 if (!have_partial_symbols () && !have_full_symbols ())
877 {
878 wrap_here ("");
46f45a4a 879 printf_unfiltered ("(no debugging symbols found)...");
cb3c37b2
JB
880 wrap_here ("");
881 }
882
c906108c
SS
883 if (from_tty || info_verbose)
884 {
885 if (post_add_symbol_hook)
c5aa993b 886 post_add_symbol_hook ();
c906108c 887 else
c5aa993b 888 {
46f45a4a 889 printf_unfiltered ("done.\n");
c5aa993b 890 }
c906108c
SS
891 }
892
481d0f41
JB
893 /* We print some messages regardless of whether 'from_tty ||
894 info_verbose' is true, so make sure they go out at the right
895 time. */
896 gdb_flush (gdb_stdout);
897
a39a16c4
MM
898 do_cleanups (my_cleanups);
899
109f874e
MS
900 if (objfile->sf == NULL)
901 return objfile; /* No symbols. */
902
c906108c
SS
903 new_symfile_objfile (objfile, mainline, from_tty);
904
11cf8741
JM
905 if (target_new_objfile_hook)
906 target_new_objfile_hook (objfile);
c906108c
SS
907
908 return (objfile);
909}
910
7904e09f
JB
911
912/* Process a symbol file, as either the main file or as a dynamically
913 loaded file. See symbol_file_add_with_addrs_or_offsets's comments
914 for details. */
915struct objfile *
916symbol_file_add (char *name, int from_tty, struct section_addr_info *addrs,
917 int mainline, int flags)
918{
919 return symbol_file_add_with_addrs_or_offsets (name, from_tty, addrs, 0, 0,
920 mainline, flags);
921}
922
923
d7db6da9
FN
924/* Call symbol_file_add() with default values and update whatever is
925 affected by the loading of a new main().
926 Used when the file is supplied in the gdb command line
927 and by some targets with special loading requirements.
928 The auxiliary function, symbol_file_add_main_1(), has the flags
929 argument for the switches that can only be specified in the symbol_file
930 command itself. */
1adeb98a
FN
931
932void
933symbol_file_add_main (char *args, int from_tty)
934{
d7db6da9
FN
935 symbol_file_add_main_1 (args, from_tty, 0);
936}
937
938static void
939symbol_file_add_main_1 (char *args, int from_tty, int flags)
940{
941 symbol_file_add (args, from_tty, NULL, 1, flags);
942
943#ifdef HPUXHPPA
944 RESET_HP_UX_GLOBALS ();
945#endif
946
947 /* Getting new symbols may change our opinion about
948 what is frameless. */
949 reinit_frame_cache ();
950
951 set_initial_language ();
1adeb98a
FN
952}
953
954void
955symbol_file_clear (int from_tty)
956{
957 if ((have_full_symbols () || have_partial_symbols ())
958 && from_tty
959 && !query ("Discard symbol table from `%s'? ",
960 symfile_objfile->name))
961 error ("Not confirmed.");
962 free_all_objfiles ();
963
964 /* solib descriptors may have handles to objfiles. Since their
965 storage has just been released, we'd better wipe the solib
966 descriptors as well.
967 */
968#if defined(SOLIB_RESTART)
969 SOLIB_RESTART ();
970#endif
971
972 symfile_objfile = NULL;
973 if (from_tty)
974 printf_unfiltered ("No symbol file now.\n");
975#ifdef HPUXHPPA
976 RESET_HP_UX_GLOBALS ();
977#endif
978}
979
5b5d99cf
JB
980static char *
981get_debug_link_info (struct objfile *objfile, unsigned long *crc32_out)
982{
983 asection *sect;
984 bfd_size_type debuglink_size;
985 unsigned long crc32;
986 char *contents;
987 int crc_offset;
988 unsigned char *p;
989
990 sect = bfd_get_section_by_name (objfile->obfd, ".gnu_debuglink");
991
992 if (sect == NULL)
993 return NULL;
994
995 debuglink_size = bfd_section_size (objfile->obfd, sect);
996
997 contents = xmalloc (debuglink_size);
998 bfd_get_section_contents (objfile->obfd, sect, contents,
999 (file_ptr)0, (bfd_size_type)debuglink_size);
1000
1001 /* Crc value is stored after the filename, aligned up to 4 bytes. */
1002 crc_offset = strlen (contents) + 1;
1003 crc_offset = (crc_offset + 3) & ~3;
1004
1005 crc32 = bfd_get_32 (objfile->obfd, (bfd_byte *) (contents + crc_offset));
1006
1007 *crc32_out = crc32;
1008 return contents;
1009}
1010
1011static int
1012separate_debug_file_exists (const char *name, unsigned long crc)
1013{
1014 unsigned long file_crc = 0;
1015 int fd;
1016 char buffer[8*1024];
1017 int count;
1018
1019 fd = open (name, O_RDONLY | O_BINARY);
1020 if (fd < 0)
1021 return 0;
1022
1023 while ((count = read (fd, buffer, sizeof (buffer))) > 0)
1024 file_crc = gnu_debuglink_crc32 (file_crc, buffer, count);
1025
1026 close (fd);
1027
1028 return crc == file_crc;
1029}
1030
1031static char *debug_file_directory = NULL;
1032
1033#if ! defined (DEBUG_SUBDIRECTORY)
1034#define DEBUG_SUBDIRECTORY ".debug"
1035#endif
1036
1037static char *
1038find_separate_debug_file (struct objfile *objfile)
1039{
1040 asection *sect;
1041 char *basename;
1042 char *dir;
1043 char *debugfile;
1044 char *name_copy;
1045 bfd_size_type debuglink_size;
1046 unsigned long crc32;
1047 int i;
1048
1049 basename = get_debug_link_info (objfile, &crc32);
1050
1051 if (basename == NULL)
1052 return NULL;
1053
1054 dir = xstrdup (objfile->name);
1055
fe36c4f4
JB
1056 /* Strip off the final filename part, leaving the directory name,
1057 followed by a slash. Objfile names should always be absolute and
1058 tilde-expanded, so there should always be a slash in there
1059 somewhere. */
5b5d99cf
JB
1060 for (i = strlen(dir) - 1; i >= 0; i--)
1061 {
1062 if (IS_DIR_SEPARATOR (dir[i]))
1063 break;
1064 }
fe36c4f4 1065 gdb_assert (i >= 0 && IS_DIR_SEPARATOR (dir[i]));
5b5d99cf
JB
1066 dir[i+1] = '\0';
1067
1068 debugfile = alloca (strlen (debug_file_directory) + 1
1069 + strlen (dir)
1070 + strlen (DEBUG_SUBDIRECTORY)
1071 + strlen ("/")
1072 + strlen (basename)
1073 + 1);
1074
1075 /* First try in the same directory as the original file. */
1076 strcpy (debugfile, dir);
1077 strcat (debugfile, basename);
1078
1079 if (separate_debug_file_exists (debugfile, crc32))
1080 {
1081 xfree (basename);
1082 xfree (dir);
1083 return xstrdup (debugfile);
1084 }
1085
1086 /* Then try in the subdirectory named DEBUG_SUBDIRECTORY. */
1087 strcpy (debugfile, dir);
1088 strcat (debugfile, DEBUG_SUBDIRECTORY);
1089 strcat (debugfile, "/");
1090 strcat (debugfile, basename);
1091
1092 if (separate_debug_file_exists (debugfile, crc32))
1093 {
1094 xfree (basename);
1095 xfree (dir);
1096 return xstrdup (debugfile);
1097 }
1098
1099 /* Then try in the global debugfile directory. */
1100 strcpy (debugfile, debug_file_directory);
1101 strcat (debugfile, "/");
1102 strcat (debugfile, dir);
5b5d99cf
JB
1103 strcat (debugfile, basename);
1104
1105 if (separate_debug_file_exists (debugfile, crc32))
1106 {
1107 xfree (basename);
1108 xfree (dir);
1109 return xstrdup (debugfile);
1110 }
1111
1112 xfree (basename);
1113 xfree (dir);
1114 return NULL;
1115}
1116
1117
c906108c
SS
1118/* This is the symbol-file command. Read the file, analyze its
1119 symbols, and add a struct symtab to a symtab list. The syntax of
1120 the command is rather bizarre--(1) buildargv implements various
1121 quoting conventions which are undocumented and have little or
1122 nothing in common with the way things are quoted (or not quoted)
1123 elsewhere in GDB, (2) options are used, which are not generally
1124 used in GDB (perhaps "set mapped on", "set readnow on" would be
1125 better), (3) the order of options matters, which is contrary to GNU
1126 conventions (because it is confusing and inconvenient). */
4da95fc4
EZ
1127/* Note: ezannoni 2000-04-17. This function used to have support for
1128 rombug (see remote-os9k.c). It consisted of a call to target_link()
1129 (target.c) to get the address of the text segment from the target,
1130 and pass that to symbol_file_add(). This is no longer supported. */
c906108c
SS
1131
1132void
fba45db2 1133symbol_file_command (char *args, int from_tty)
c906108c
SS
1134{
1135 char **argv;
1136 char *name = NULL;
c906108c 1137 struct cleanup *cleanups;
2df3850c 1138 int flags = OBJF_USERLOADED;
c906108c
SS
1139
1140 dont_repeat ();
1141
1142 if (args == NULL)
1143 {
1adeb98a 1144 symbol_file_clear (from_tty);
c906108c
SS
1145 }
1146 else
1147 {
1148 if ((argv = buildargv (args)) == NULL)
1149 {
1150 nomem (0);
1151 }
7a292a7a 1152 cleanups = make_cleanup_freeargv (argv);
c906108c
SS
1153 while (*argv != NULL)
1154 {
78a4a9b9
AC
1155 if (strcmp (*argv, "-readnow") == 0)
1156 flags |= OBJF_READNOW;
1157 else if (**argv == '-')
1158 error ("unknown option `%s'", *argv);
1159 else
1160 {
1161 name = *argv;
1162
1163 symbol_file_add_main_1 (name, from_tty, flags);
1164 }
c906108c
SS
1165 argv++;
1166 }
1167
1168 if (name == NULL)
1169 {
1170 error ("no symbol file name was specified");
1171 }
c906108c
SS
1172 do_cleanups (cleanups);
1173 }
1174}
1175
1176/* Set the initial language.
1177
1178 A better solution would be to record the language in the psymtab when reading
1179 partial symbols, and then use it (if known) to set the language. This would
1180 be a win for formats that encode the language in an easily discoverable place,
1181 such as DWARF. For stabs, we can jump through hoops looking for specially
1182 named symbols or try to intuit the language from the specific type of stabs
1183 we find, but we can't do that until later when we read in full symbols.
1184 FIXME. */
1185
1186static void
fba45db2 1187set_initial_language (void)
c906108c
SS
1188{
1189 struct partial_symtab *pst;
c5aa993b 1190 enum language lang = language_unknown;
c906108c
SS
1191
1192 pst = find_main_psymtab ();
1193 if (pst != NULL)
1194 {
c5aa993b 1195 if (pst->filename != NULL)
c906108c 1196 {
c5aa993b
JM
1197 lang = deduce_language_from_filename (pst->filename);
1198 }
c906108c
SS
1199 if (lang == language_unknown)
1200 {
c5aa993b
JM
1201 /* Make C the default language */
1202 lang = language_c;
c906108c
SS
1203 }
1204 set_language (lang);
1205 expected_language = current_language; /* Don't warn the user */
1206 }
1207}
1208
1209/* Open file specified by NAME and hand it off to BFD for preliminary
1210 analysis. Result is a newly initialized bfd *, which includes a newly
1211 malloc'd` copy of NAME (tilde-expanded and made absolute).
1212 In case of trouble, error() is called. */
1213
1214bfd *
fba45db2 1215symfile_bfd_open (char *name)
c906108c
SS
1216{
1217 bfd *sym_bfd;
1218 int desc;
1219 char *absolute_name;
1220
1221
1222
1223 name = tilde_expand (name); /* Returns 1st new malloc'd copy */
1224
1225 /* Look down path for it, allocate 2nd new malloc'd copy. */
1226 desc = openp (getenv ("PATH"), 1, name, O_RDONLY | O_BINARY, 0, &absolute_name);
608506ed 1227#if defined(__GO32__) || defined(_WIN32) || defined (__CYGWIN__)
c906108c
SS
1228 if (desc < 0)
1229 {
1230 char *exename = alloca (strlen (name) + 5);
1231 strcat (strcpy (exename, name), ".exe");
1232 desc = openp (getenv ("PATH"), 1, exename, O_RDONLY | O_BINARY,
c5aa993b 1233 0, &absolute_name);
c906108c
SS
1234 }
1235#endif
1236 if (desc < 0)
1237 {
b8c9b27d 1238 make_cleanup (xfree, name);
c906108c
SS
1239 perror_with_name (name);
1240 }
b8c9b27d 1241 xfree (name); /* Free 1st new malloc'd copy */
c906108c 1242 name = absolute_name; /* Keep 2nd malloc'd copy in bfd */
c5aa993b 1243 /* It'll be freed in free_objfile(). */
c906108c
SS
1244
1245 sym_bfd = bfd_fdopenr (name, gnutarget, desc);
1246 if (!sym_bfd)
1247 {
1248 close (desc);
b8c9b27d 1249 make_cleanup (xfree, name);
c906108c
SS
1250 error ("\"%s\": can't open to read symbols: %s.", name,
1251 bfd_errmsg (bfd_get_error ()));
1252 }
549c1eea 1253 bfd_set_cacheable (sym_bfd, 1);
c906108c
SS
1254
1255 if (!bfd_check_format (sym_bfd, bfd_object))
1256 {
1257 /* FIXME: should be checking for errors from bfd_close (for one thing,
c5aa993b
JM
1258 on error it does not free all the storage associated with the
1259 bfd). */
c906108c 1260 bfd_close (sym_bfd); /* This also closes desc */
b8c9b27d 1261 make_cleanup (xfree, name);
c906108c
SS
1262 error ("\"%s\": can't read symbols: %s.", name,
1263 bfd_errmsg (bfd_get_error ()));
1264 }
1265 return (sym_bfd);
1266}
1267
0e931cf0
JB
1268/* Return the section index for the given section name. Return -1 if
1269 the section was not found. */
1270int
1271get_section_index (struct objfile *objfile, char *section_name)
1272{
1273 asection *sect = bfd_get_section_by_name (objfile->obfd, section_name);
1274 if (sect)
1275 return sect->index;
1276 else
1277 return -1;
1278}
1279
c906108c
SS
1280/* Link a new symtab_fns into the global symtab_fns list. Called on gdb
1281 startup by the _initialize routine in each object file format reader,
1282 to register information about each format the the reader is prepared
1283 to handle. */
1284
1285void
fba45db2 1286add_symtab_fns (struct sym_fns *sf)
c906108c
SS
1287{
1288 sf->next = symtab_fns;
1289 symtab_fns = sf;
1290}
1291
1292
1293/* Initialize to read symbols from the symbol file sym_bfd. It either
1294 returns or calls error(). The result is an initialized struct sym_fns
1295 in the objfile structure, that contains cached information about the
1296 symbol file. */
1297
1298static void
fba45db2 1299find_sym_fns (struct objfile *objfile)
c906108c
SS
1300{
1301 struct sym_fns *sf;
c5aa993b
JM
1302 enum bfd_flavour our_flavour = bfd_get_flavour (objfile->obfd);
1303 char *our_target = bfd_get_target (objfile->obfd);
c906108c 1304
75245b24
MS
1305 if (our_flavour == bfd_target_srec_flavour
1306 || our_flavour == bfd_target_ihex_flavour
1307 || our_flavour == bfd_target_tekhex_flavour)
1308 return; /* No symbols. */
1309
c5aa993b 1310 for (sf = symtab_fns; sf != NULL; sf = sf->next)
c906108c 1311 {
c5aa993b 1312 if (our_flavour == sf->sym_flavour)
c906108c 1313 {
c5aa993b 1314 objfile->sf = sf;
c906108c
SS
1315 return;
1316 }
1317 }
1318 error ("I'm sorry, Dave, I can't do that. Symbol format `%s' unknown.",
c5aa993b 1319 bfd_get_target (objfile->obfd));
c906108c
SS
1320}
1321\f
1322/* This function runs the load command of our current target. */
1323
1324static void
fba45db2 1325load_command (char *arg, int from_tty)
c906108c
SS
1326{
1327 if (arg == NULL)
1328 arg = get_exec_file (1);
1329 target_load (arg, from_tty);
2889e661
JB
1330
1331 /* After re-loading the executable, we don't really know which
1332 overlays are mapped any more. */
1333 overlay_cache_invalid = 1;
c906108c
SS
1334}
1335
1336/* This version of "load" should be usable for any target. Currently
1337 it is just used for remote targets, not inftarg.c or core files,
1338 on the theory that only in that case is it useful.
1339
1340 Avoiding xmodem and the like seems like a win (a) because we don't have
1341 to worry about finding it, and (b) On VMS, fork() is very slow and so
1342 we don't want to run a subprocess. On the other hand, I'm not sure how
1343 performance compares. */
917317f4
JM
1344
1345static int download_write_size = 512;
1346static int validate_download = 0;
1347
e4f9b4d5
MS
1348/* Callback service function for generic_load (bfd_map_over_sections). */
1349
1350static void
1351add_section_size_callback (bfd *abfd, asection *asec, void *data)
1352{
1353 bfd_size_type *sum = data;
1354
1355 *sum += bfd_get_section_size_before_reloc (asec);
1356}
1357
1358/* Opaque data for load_section_callback. */
1359struct load_section_data {
1360 unsigned long load_offset;
1361 unsigned long write_count;
1362 unsigned long data_count;
1363 bfd_size_type total_size;
1364};
1365
1366/* Callback service function for generic_load (bfd_map_over_sections). */
1367
1368static void
1369load_section_callback (bfd *abfd, asection *asec, void *data)
1370{
1371 struct load_section_data *args = data;
1372
1373 if (bfd_get_section_flags (abfd, asec) & SEC_LOAD)
1374 {
1375 bfd_size_type size = bfd_get_section_size_before_reloc (asec);
1376 if (size > 0)
1377 {
1378 char *buffer;
1379 struct cleanup *old_chain;
1380 CORE_ADDR lma = bfd_section_lma (abfd, asec) + args->load_offset;
1381 bfd_size_type block_size;
1382 int err;
1383 const char *sect_name = bfd_get_section_name (abfd, asec);
1384 bfd_size_type sent;
1385
1386 if (download_write_size > 0 && size > download_write_size)
1387 block_size = download_write_size;
1388 else
1389 block_size = size;
1390
1391 buffer = xmalloc (size);
1392 old_chain = make_cleanup (xfree, buffer);
1393
1394 /* Is this really necessary? I guess it gives the user something
1395 to look at during a long download. */
e4f9b4d5
MS
1396 ui_out_message (uiout, 0, "Loading section %s, size 0x%s lma 0x%s\n",
1397 sect_name, paddr_nz (size), paddr_nz (lma));
e4f9b4d5
MS
1398
1399 bfd_get_section_contents (abfd, asec, buffer, 0, size);
1400
1401 sent = 0;
1402 do
1403 {
1404 int len;
1405 bfd_size_type this_transfer = size - sent;
1406
1407 if (this_transfer >= block_size)
1408 this_transfer = block_size;
1409 len = target_write_memory_partial (lma, buffer,
1410 this_transfer, &err);
1411 if (err)
1412 break;
1413 if (validate_download)
1414 {
1415 /* Broken memories and broken monitors manifest
1416 themselves here when bring new computers to
1417 life. This doubles already slow downloads. */
1418 /* NOTE: cagney/1999-10-18: A more efficient
1419 implementation might add a verify_memory()
1420 method to the target vector and then use
1421 that. remote.c could implement that method
1422 using the ``qCRC'' packet. */
1423 char *check = xmalloc (len);
1424 struct cleanup *verify_cleanups =
1425 make_cleanup (xfree, check);
1426
1427 if (target_read_memory (lma, check, len) != 0)
1428 error ("Download verify read failed at 0x%s",
1429 paddr (lma));
1430 if (memcmp (buffer, check, len) != 0)
1431 error ("Download verify compare failed at 0x%s",
1432 paddr (lma));
1433 do_cleanups (verify_cleanups);
1434 }
1435 args->data_count += len;
1436 lma += len;
1437 buffer += len;
1438 args->write_count += 1;
1439 sent += len;
1440 if (quit_flag
1441 || (ui_load_progress_hook != NULL
1442 && ui_load_progress_hook (sect_name, sent)))
1443 error ("Canceled the download");
1444
1445 if (show_load_progress != NULL)
1446 show_load_progress (sect_name, sent, size,
1447 args->data_count, args->total_size);
1448 }
1449 while (sent < size);
1450
1451 if (err != 0)
1452 error ("Memory access error while loading section %s.", sect_name);
1453
1454 do_cleanups (old_chain);
1455 }
1456 }
1457}
1458
c906108c 1459void
917317f4 1460generic_load (char *args, int from_tty)
c906108c 1461{
c906108c
SS
1462 asection *s;
1463 bfd *loadfile_bfd;
1464 time_t start_time, end_time; /* Start and end times of download */
917317f4
JM
1465 char *filename;
1466 struct cleanup *old_cleanups;
1467 char *offptr;
e4f9b4d5
MS
1468 struct load_section_data cbdata;
1469 CORE_ADDR entry;
1470
1471 cbdata.load_offset = 0; /* Offset to add to vma for each section. */
1472 cbdata.write_count = 0; /* Number of writes needed. */
1473 cbdata.data_count = 0; /* Number of bytes written to target memory. */
1474 cbdata.total_size = 0; /* Total size of all bfd sectors. */
917317f4
JM
1475
1476 /* Parse the input argument - the user can specify a load offset as
1477 a second argument. */
1478 filename = xmalloc (strlen (args) + 1);
b8c9b27d 1479 old_cleanups = make_cleanup (xfree, filename);
917317f4
JM
1480 strcpy (filename, args);
1481 offptr = strchr (filename, ' ');
1482 if (offptr != NULL)
1483 {
1484 char *endptr;
ba5f2f8a 1485
e4f9b4d5 1486 cbdata.load_offset = strtoul (offptr, &endptr, 0);
917317f4
JM
1487 if (offptr == endptr)
1488 error ("Invalid download offset:%s\n", offptr);
1489 *offptr = '\0';
1490 }
c906108c 1491 else
e4f9b4d5 1492 cbdata.load_offset = 0;
c906108c 1493
917317f4 1494 /* Open the file for loading. */
c906108c
SS
1495 loadfile_bfd = bfd_openr (filename, gnutarget);
1496 if (loadfile_bfd == NULL)
1497 {
1498 perror_with_name (filename);
1499 return;
1500 }
917317f4 1501
c906108c
SS
1502 /* FIXME: should be checking for errors from bfd_close (for one thing,
1503 on error it does not free all the storage associated with the
1504 bfd). */
5c65bbb6 1505 make_cleanup_bfd_close (loadfile_bfd);
c906108c 1506
c5aa993b 1507 if (!bfd_check_format (loadfile_bfd, bfd_object))
c906108c
SS
1508 {
1509 error ("\"%s\" is not an object file: %s", filename,
1510 bfd_errmsg (bfd_get_error ()));
1511 }
c5aa993b 1512
e4f9b4d5
MS
1513 bfd_map_over_sections (loadfile_bfd, add_section_size_callback,
1514 (void *) &cbdata.total_size);
c2d11a7d 1515
c906108c
SS
1516 start_time = time (NULL);
1517
e4f9b4d5 1518 bfd_map_over_sections (loadfile_bfd, load_section_callback, &cbdata);
c906108c
SS
1519
1520 end_time = time (NULL);
ba5f2f8a 1521
e4f9b4d5 1522 entry = bfd_get_start_address (loadfile_bfd);
e4f9b4d5
MS
1523 ui_out_text (uiout, "Start address ");
1524 ui_out_field_fmt (uiout, "address", "0x%s", paddr_nz (entry));
1525 ui_out_text (uiout, ", load size ");
1526 ui_out_field_fmt (uiout, "load-size", "%lu", cbdata.data_count);
1527 ui_out_text (uiout, "\n");
e4f9b4d5
MS
1528 /* We were doing this in remote-mips.c, I suspect it is right
1529 for other targets too. */
1530 write_pc (entry);
c906108c 1531
7ca9f392
AC
1532 /* FIXME: are we supposed to call symbol_file_add or not? According
1533 to a comment from remote-mips.c (where a call to symbol_file_add
1534 was commented out), making the call confuses GDB if more than one
1535 file is loaded in. Some targets do (e.g., remote-vx.c) but
1536 others don't (or didn't - perhaphs they have all been deleted). */
c906108c 1537
e4f9b4d5
MS
1538 print_transfer_performance (gdb_stdout, cbdata.data_count,
1539 cbdata.write_count, end_time - start_time);
c906108c
SS
1540
1541 do_cleanups (old_cleanups);
1542}
1543
1544/* Report how fast the transfer went. */
1545
917317f4
JM
1546/* DEPRECATED: cagney/1999-10-18: report_transfer_performance is being
1547 replaced by print_transfer_performance (with a very different
1548 function signature). */
1549
c906108c 1550void
fba45db2
KB
1551report_transfer_performance (unsigned long data_count, time_t start_time,
1552 time_t end_time)
c906108c 1553{
ba5f2f8a
MS
1554 print_transfer_performance (gdb_stdout, data_count,
1555 end_time - start_time, 0);
917317f4
JM
1556}
1557
1558void
d9fcf2fb 1559print_transfer_performance (struct ui_file *stream,
917317f4
JM
1560 unsigned long data_count,
1561 unsigned long write_count,
1562 unsigned long time_count)
1563{
8b93c638
JM
1564 ui_out_text (uiout, "Transfer rate: ");
1565 if (time_count > 0)
1566 {
ba5f2f8a 1567 ui_out_field_fmt (uiout, "transfer-rate", "%lu",
8b93c638
JM
1568 (data_count * 8) / time_count);
1569 ui_out_text (uiout, " bits/sec");
1570 }
1571 else
1572 {
ba5f2f8a 1573 ui_out_field_fmt (uiout, "transferred-bits", "%lu", (data_count * 8));
8b93c638
JM
1574 ui_out_text (uiout, " bits in <1 sec");
1575 }
1576 if (write_count > 0)
1577 {
1578 ui_out_text (uiout, ", ");
ba5f2f8a 1579 ui_out_field_fmt (uiout, "write-rate", "%lu", data_count / write_count);
8b93c638
JM
1580 ui_out_text (uiout, " bytes/write");
1581 }
1582 ui_out_text (uiout, ".\n");
c906108c
SS
1583}
1584
1585/* This function allows the addition of incrementally linked object files.
1586 It does not modify any state in the target, only in the debugger. */
db162d44
EZ
1587/* Note: ezannoni 2000-04-13 This function/command used to have a
1588 special case syntax for the rombug target (Rombug is the boot
1589 monitor for Microware's OS-9 / OS-9000, see remote-os9k.c). In the
1590 rombug case, the user doesn't need to supply a text address,
1591 instead a call to target_link() (in target.c) would supply the
1592 value to use. We are now discontinuing this type of ad hoc syntax. */
c906108c 1593
c906108c 1594static void
fba45db2 1595add_symbol_file_command (char *args, int from_tty)
c906108c 1596{
db162d44 1597 char *filename = NULL;
2df3850c 1598 int flags = OBJF_USERLOADED;
c906108c 1599 char *arg;
2acceee2 1600 int expecting_option = 0;
db162d44 1601 int section_index = 0;
2acceee2
JM
1602 int argcnt = 0;
1603 int sec_num = 0;
1604 int i;
db162d44
EZ
1605 int expecting_sec_name = 0;
1606 int expecting_sec_addr = 0;
1607
a39a16c4 1608 struct sect_opt
2acceee2 1609 {
2acceee2
JM
1610 char *name;
1611 char *value;
a39a16c4 1612 };
db162d44 1613
a39a16c4
MM
1614 struct section_addr_info *section_addrs;
1615 struct sect_opt *sect_opts = NULL;
1616 size_t num_sect_opts = 0;
3017564a 1617 struct cleanup *my_cleanups = make_cleanup (null_cleanup, NULL);
c5aa993b 1618
a39a16c4
MM
1619 num_sect_opts = 16;
1620 sect_opts = (struct sect_opt *) xmalloc (num_sect_opts
1621 * sizeof (struct sect_opt));
1622
c906108c
SS
1623 dont_repeat ();
1624
1625 if (args == NULL)
db162d44 1626 error ("add-symbol-file takes a file name and an address");
c906108c
SS
1627
1628 /* Make a copy of the string that we can safely write into. */
c2d11a7d 1629 args = xstrdup (args);
c906108c 1630
2acceee2 1631 while (*args != '\000')
c906108c 1632 {
db162d44 1633 /* Any leading spaces? */
c5aa993b 1634 while (isspace (*args))
db162d44
EZ
1635 args++;
1636
1637 /* Point arg to the beginning of the argument. */
c906108c 1638 arg = args;
db162d44
EZ
1639
1640 /* Move args pointer over the argument. */
c5aa993b 1641 while ((*args != '\000') && !isspace (*args))
db162d44
EZ
1642 args++;
1643
1644 /* If there are more arguments, terminate arg and
1645 proceed past it. */
c906108c 1646 if (*args != '\000')
db162d44
EZ
1647 *args++ = '\000';
1648
1649 /* Now process the argument. */
1650 if (argcnt == 0)
c906108c 1651 {
db162d44
EZ
1652 /* The first argument is the file name. */
1653 filename = tilde_expand (arg);
3017564a 1654 make_cleanup (xfree, filename);
c906108c 1655 }
db162d44 1656 else
7a78ae4e
ND
1657 if (argcnt == 1)
1658 {
1659 /* The second argument is always the text address at which
1660 to load the program. */
1661 sect_opts[section_index].name = ".text";
1662 sect_opts[section_index].value = arg;
a39a16c4
MM
1663 if (++section_index > num_sect_opts)
1664 {
1665 num_sect_opts *= 2;
1666 sect_opts = ((struct sect_opt *)
1667 xrealloc (sect_opts,
1668 num_sect_opts
1669 * sizeof (struct sect_opt)));
1670 }
7a78ae4e
ND
1671 }
1672 else
1673 {
1674 /* It's an option (starting with '-') or it's an argument
1675 to an option */
1676
1677 if (*arg == '-')
1678 {
78a4a9b9
AC
1679 if (strcmp (arg, "-readnow") == 0)
1680 flags |= OBJF_READNOW;
1681 else if (strcmp (arg, "-s") == 0)
1682 {
1683 expecting_sec_name = 1;
1684 expecting_sec_addr = 1;
1685 }
7a78ae4e
ND
1686 }
1687 else
1688 {
1689 if (expecting_sec_name)
db162d44 1690 {
7a78ae4e
ND
1691 sect_opts[section_index].name = arg;
1692 expecting_sec_name = 0;
db162d44
EZ
1693 }
1694 else
7a78ae4e
ND
1695 if (expecting_sec_addr)
1696 {
1697 sect_opts[section_index].value = arg;
1698 expecting_sec_addr = 0;
a39a16c4
MM
1699 if (++section_index > num_sect_opts)
1700 {
1701 num_sect_opts *= 2;
1702 sect_opts = ((struct sect_opt *)
1703 xrealloc (sect_opts,
1704 num_sect_opts
1705 * sizeof (struct sect_opt)));
1706 }
7a78ae4e
ND
1707 }
1708 else
1709 error ("USAGE: add-symbol-file <filename> <textaddress> [-mapped] [-readnow] [-s <secname> <addr>]*");
1710 }
1711 }
db162d44 1712 argcnt++;
c906108c 1713 }
c906108c 1714
db162d44
EZ
1715 /* Print the prompt for the query below. And save the arguments into
1716 a sect_addr_info structure to be passed around to other
1717 functions. We have to split this up into separate print
1718 statements because local_hex_string returns a local static
1719 string. */
2acceee2 1720
46f45a4a 1721 printf_unfiltered ("add symbol table from file \"%s\" at\n", filename);
a39a16c4
MM
1722 section_addrs = alloc_section_addr_info (section_index);
1723 make_cleanup (xfree, section_addrs);
db162d44 1724 for (i = 0; i < section_index; i++)
c906108c 1725 {
db162d44
EZ
1726 CORE_ADDR addr;
1727 char *val = sect_opts[i].value;
1728 char *sec = sect_opts[i].name;
1729
ae822768 1730 addr = parse_and_eval_address (val);
db162d44 1731
db162d44
EZ
1732 /* Here we store the section offsets in the order they were
1733 entered on the command line. */
a39a16c4
MM
1734 section_addrs->other[sec_num].name = sec;
1735 section_addrs->other[sec_num].addr = addr;
46f45a4a 1736 printf_unfiltered ("\t%s_addr = %s\n",
db162d44
EZ
1737 sec,
1738 local_hex_string ((unsigned long)addr));
1739 sec_num++;
1740
1741 /* The object's sections are initialized when a
1742 call is made to build_objfile_section_table (objfile).
1743 This happens in reread_symbols.
1744 At this point, we don't know what file type this is,
1745 so we can't determine what section names are valid. */
2acceee2 1746 }
db162d44 1747
2acceee2 1748 if (from_tty && (!query ("%s", "")))
c906108c
SS
1749 error ("Not confirmed.");
1750
a39a16c4 1751 symbol_file_add (filename, from_tty, section_addrs, 0, flags);
c906108c
SS
1752
1753 /* Getting new symbols may change our opinion about what is
1754 frameless. */
1755 reinit_frame_cache ();
db162d44 1756 do_cleanups (my_cleanups);
c906108c
SS
1757}
1758\f
1759static void
fba45db2 1760add_shared_symbol_files_command (char *args, int from_tty)
c906108c
SS
1761{
1762#ifdef ADD_SHARED_SYMBOL_FILES
1763 ADD_SHARED_SYMBOL_FILES (args, from_tty);
1764#else
1765 error ("This command is not available in this configuration of GDB.");
c5aa993b 1766#endif
c906108c
SS
1767}
1768\f
1769/* Re-read symbols if a symbol-file has changed. */
1770void
fba45db2 1771reread_symbols (void)
c906108c
SS
1772{
1773 struct objfile *objfile;
1774 long new_modtime;
1775 int reread_one = 0;
1776 struct stat new_statbuf;
1777 int res;
1778
1779 /* With the addition of shared libraries, this should be modified,
1780 the load time should be saved in the partial symbol tables, since
1781 different tables may come from different source files. FIXME.
1782 This routine should then walk down each partial symbol table
1783 and see if the symbol table that it originates from has been changed */
1784
c5aa993b
JM
1785 for (objfile = object_files; objfile; objfile = objfile->next)
1786 {
1787 if (objfile->obfd)
1788 {
52d16ba8 1789#ifdef DEPRECATED_IBM6000_TARGET
c5aa993b
JM
1790 /* If this object is from a shared library, then you should
1791 stat on the library name, not member name. */
c906108c 1792
c5aa993b
JM
1793 if (objfile->obfd->my_archive)
1794 res = stat (objfile->obfd->my_archive->filename, &new_statbuf);
1795 else
c906108c 1796#endif
c5aa993b
JM
1797 res = stat (objfile->name, &new_statbuf);
1798 if (res != 0)
c906108c 1799 {
c5aa993b 1800 /* FIXME, should use print_sys_errmsg but it's not filtered. */
46f45a4a 1801 printf_unfiltered ("`%s' has disappeared; keeping its symbols.\n",
c5aa993b
JM
1802 objfile->name);
1803 continue;
c906108c 1804 }
c5aa993b
JM
1805 new_modtime = new_statbuf.st_mtime;
1806 if (new_modtime != objfile->mtime)
c906108c 1807 {
c5aa993b
JM
1808 struct cleanup *old_cleanups;
1809 struct section_offsets *offsets;
1810 int num_offsets;
c5aa993b
JM
1811 char *obfd_filename;
1812
46f45a4a 1813 printf_unfiltered ("`%s' has changed; re-reading symbols.\n",
c5aa993b
JM
1814 objfile->name);
1815
1816 /* There are various functions like symbol_file_add,
1817 symfile_bfd_open, syms_from_objfile, etc., which might
1818 appear to do what we want. But they have various other
1819 effects which we *don't* want. So we just do stuff
1820 ourselves. We don't worry about mapped files (for one thing,
1821 any mapped file will be out of date). */
1822
1823 /* If we get an error, blow away this objfile (not sure if
1824 that is the correct response for things like shared
1825 libraries). */
74b7792f 1826 old_cleanups = make_cleanup_free_objfile (objfile);
c5aa993b 1827 /* We need to do this whenever any symbols go away. */
74b7792f 1828 make_cleanup (clear_symtab_users_cleanup, 0 /*ignore*/);
c5aa993b
JM
1829
1830 /* Clean up any state BFD has sitting around. We don't need
1831 to close the descriptor but BFD lacks a way of closing the
1832 BFD without closing the descriptor. */
1833 obfd_filename = bfd_get_filename (objfile->obfd);
1834 if (!bfd_close (objfile->obfd))
1835 error ("Can't close BFD for %s: %s", objfile->name,
1836 bfd_errmsg (bfd_get_error ()));
1837 objfile->obfd = bfd_openr (obfd_filename, gnutarget);
1838 if (objfile->obfd == NULL)
1839 error ("Can't open %s to read symbols.", objfile->name);
1840 /* bfd_openr sets cacheable to true, which is what we want. */
1841 if (!bfd_check_format (objfile->obfd, bfd_object))
1842 error ("Can't read symbols from %s: %s.", objfile->name,
1843 bfd_errmsg (bfd_get_error ()));
1844
1845 /* Save the offsets, we will nuke them with the rest of the
8b92e4d5 1846 objfile_obstack. */
c5aa993b 1847 num_offsets = objfile->num_sections;
a39a16c4
MM
1848 offsets = ((struct section_offsets *)
1849 alloca (SIZEOF_N_SECTION_OFFSETS (num_offsets)));
1850 memcpy (offsets, objfile->section_offsets,
1851 SIZEOF_N_SECTION_OFFSETS (num_offsets));
c5aa993b
JM
1852
1853 /* Nuke all the state that we will re-read. Much of the following
1854 code which sets things to NULL really is necessary to tell
1855 other parts of GDB that there is nothing currently there. */
1856
1857 /* FIXME: Do we have to free a whole linked list, or is this
1858 enough? */
1859 if (objfile->global_psymbols.list)
aac7f4ea 1860 xmfree (objfile->md, objfile->global_psymbols.list);
c5aa993b
JM
1861 memset (&objfile->global_psymbols, 0,
1862 sizeof (objfile->global_psymbols));
1863 if (objfile->static_psymbols.list)
aac7f4ea 1864 xmfree (objfile->md, objfile->static_psymbols.list);
c5aa993b
JM
1865 memset (&objfile->static_psymbols, 0,
1866 sizeof (objfile->static_psymbols));
1867
1868 /* Free the obstacks for non-reusable objfiles */
af5f3db6
AC
1869 bcache_xfree (objfile->psymbol_cache);
1870 objfile->psymbol_cache = bcache_xmalloc ();
1871 bcache_xfree (objfile->macro_cache);
1872 objfile->macro_cache = bcache_xmalloc ();
2de7ced7
DJ
1873 if (objfile->demangled_names_hash != NULL)
1874 {
1875 htab_delete (objfile->demangled_names_hash);
1876 objfile->demangled_names_hash = NULL;
1877 }
b99607ea 1878 obstack_free (&objfile->objfile_obstack, 0);
c5aa993b
JM
1879 objfile->sections = NULL;
1880 objfile->symtabs = NULL;
1881 objfile->psymtabs = NULL;
1882 objfile->free_psymtabs = NULL;
a1b8c067 1883 objfile->cp_namespace_symtab = NULL;
c5aa993b 1884 objfile->msymbols = NULL;
29239a8f 1885 objfile->sym_private = NULL;
c5aa993b 1886 objfile->minimal_symbol_count = 0;
0a83117a
MS
1887 memset (&objfile->msymbol_hash, 0,
1888 sizeof (objfile->msymbol_hash));
1889 memset (&objfile->msymbol_demangled_hash, 0,
1890 sizeof (objfile->msymbol_demangled_hash));
c5aa993b 1891 objfile->fundamental_types = NULL;
7b097ae3 1892 clear_objfile_data (objfile);
c5aa993b
JM
1893 if (objfile->sf != NULL)
1894 {
1895 (*objfile->sf->sym_finish) (objfile);
1896 }
1897
1898 /* We never make this a mapped file. */
1899 objfile->md = NULL;
af5f3db6
AC
1900 objfile->psymbol_cache = bcache_xmalloc ();
1901 objfile->macro_cache = bcache_xmalloc ();
1ab21617
EZ
1902 /* obstack_init also initializes the obstack so it is
1903 empty. We could use obstack_specify_allocation but
1904 gdb_obstack.h specifies the alloc/dealloc
1905 functions. */
1906 obstack_init (&objfile->objfile_obstack);
c5aa993b
JM
1907 if (build_objfile_section_table (objfile))
1908 {
1909 error ("Can't find the file sections in `%s': %s",
1910 objfile->name, bfd_errmsg (bfd_get_error ()));
1911 }
15831452 1912 terminate_minimal_symbol_table (objfile);
c5aa993b
JM
1913
1914 /* We use the same section offsets as from last time. I'm not
1915 sure whether that is always correct for shared libraries. */
1916 objfile->section_offsets = (struct section_offsets *)
8b92e4d5 1917 obstack_alloc (&objfile->objfile_obstack,
a39a16c4
MM
1918 SIZEOF_N_SECTION_OFFSETS (num_offsets));
1919 memcpy (objfile->section_offsets, offsets,
1920 SIZEOF_N_SECTION_OFFSETS (num_offsets));
c5aa993b
JM
1921 objfile->num_sections = num_offsets;
1922
1923 /* What the hell is sym_new_init for, anyway? The concept of
1924 distinguishing between the main file and additional files
1925 in this way seems rather dubious. */
1926 if (objfile == symfile_objfile)
1927 {
1928 (*objfile->sf->sym_new_init) (objfile);
c906108c 1929#ifdef HPUXHPPA
c5aa993b 1930 RESET_HP_UX_GLOBALS ();
c906108c 1931#endif
c5aa993b
JM
1932 }
1933
1934 (*objfile->sf->sym_init) (objfile);
b9caf505 1935 clear_complaints (&symfile_complaints, 1, 1);
c5aa993b
JM
1936 /* The "mainline" parameter is a hideous hack; I think leaving it
1937 zero is OK since dbxread.c also does what it needs to do if
1938 objfile->global_psymbols.size is 0. */
96baa820 1939 (*objfile->sf->sym_read) (objfile, 0);
c5aa993b
JM
1940 if (!have_partial_symbols () && !have_full_symbols ())
1941 {
1942 wrap_here ("");
46f45a4a 1943 printf_unfiltered ("(no debugging symbols found)\n");
c5aa993b
JM
1944 wrap_here ("");
1945 }
1946 objfile->flags |= OBJF_SYMS;
1947
1948 /* We're done reading the symbol file; finish off complaints. */
b9caf505 1949 clear_complaints (&symfile_complaints, 0, 1);
c906108c 1950
c5aa993b
JM
1951 /* Getting new symbols may change our opinion about what is
1952 frameless. */
c906108c 1953
c5aa993b 1954 reinit_frame_cache ();
c906108c 1955
c5aa993b
JM
1956 /* Discard cleanups as symbol reading was successful. */
1957 discard_cleanups (old_cleanups);
c906108c 1958
c5aa993b
JM
1959 /* If the mtime has changed between the time we set new_modtime
1960 and now, we *want* this to be out of date, so don't call stat
1961 again now. */
1962 objfile->mtime = new_modtime;
1963 reread_one = 1;
5b5d99cf 1964 reread_separate_symbols (objfile);
c5aa993b 1965 }
c906108c
SS
1966 }
1967 }
c906108c
SS
1968
1969 if (reread_one)
1970 clear_symtab_users ();
1971}
5b5d99cf
JB
1972
1973
1974/* Handle separate debug info for OBJFILE, which has just been
1975 re-read:
1976 - If we had separate debug info before, but now we don't, get rid
1977 of the separated objfile.
1978 - If we didn't have separated debug info before, but now we do,
1979 read in the new separated debug info file.
1980 - If the debug link points to a different file, toss the old one
1981 and read the new one.
1982 This function does *not* handle the case where objfile is still
1983 using the same separate debug info file, but that file's timestamp
1984 has changed. That case should be handled by the loop in
1985 reread_symbols already. */
1986static void
1987reread_separate_symbols (struct objfile *objfile)
1988{
1989 char *debug_file;
1990 unsigned long crc32;
1991
1992 /* Does the updated objfile's debug info live in a
1993 separate file? */
1994 debug_file = find_separate_debug_file (objfile);
1995
1996 if (objfile->separate_debug_objfile)
1997 {
1998 /* There are two cases where we need to get rid of
1999 the old separated debug info objfile:
2000 - if the new primary objfile doesn't have
2001 separated debug info, or
2002 - if the new primary objfile has separate debug
2003 info, but it's under a different filename.
2004
2005 If the old and new objfiles both have separate
2006 debug info, under the same filename, then we're
2007 okay --- if the separated file's contents have
2008 changed, we will have caught that when we
2009 visited it in this function's outermost
2010 loop. */
2011 if (! debug_file
2012 || strcmp (debug_file, objfile->separate_debug_objfile->name) != 0)
2013 free_objfile (objfile->separate_debug_objfile);
2014 }
2015
2016 /* If the new objfile has separate debug info, and we
2017 haven't loaded it already, do so now. */
2018 if (debug_file
2019 && ! objfile->separate_debug_objfile)
2020 {
2021 /* Use the same section offset table as objfile itself.
2022 Preserve the flags from objfile that make sense. */
2023 objfile->separate_debug_objfile
2024 = (symbol_file_add_with_addrs_or_offsets
2025 (debug_file,
2026 info_verbose, /* from_tty: Don't override the default. */
2027 0, /* No addr table. */
2028 objfile->section_offsets, objfile->num_sections,
2029 0, /* Not mainline. See comments about this above. */
78a4a9b9 2030 objfile->flags & (OBJF_REORDERED | OBJF_SHARED | OBJF_READNOW
5b5d99cf
JB
2031 | OBJF_USERLOADED)));
2032 objfile->separate_debug_objfile->separate_debug_objfile_backlink
2033 = objfile;
2034 }
2035}
2036
2037
c906108c
SS
2038\f
2039
c5aa993b
JM
2040
2041typedef struct
2042{
2043 char *ext;
c906108c 2044 enum language lang;
c5aa993b
JM
2045}
2046filename_language;
c906108c 2047
c5aa993b 2048static filename_language *filename_language_table;
c906108c
SS
2049static int fl_table_size, fl_table_next;
2050
2051static void
fba45db2 2052add_filename_language (char *ext, enum language lang)
c906108c
SS
2053{
2054 if (fl_table_next >= fl_table_size)
2055 {
2056 fl_table_size += 10;
25bf3106
PM
2057 filename_language_table =
2058 xrealloc (filename_language_table,
2059 fl_table_size * sizeof (*filename_language_table));
c906108c
SS
2060 }
2061
4fcf66da 2062 filename_language_table[fl_table_next].ext = xstrdup (ext);
c906108c
SS
2063 filename_language_table[fl_table_next].lang = lang;
2064 fl_table_next++;
2065}
2066
2067static char *ext_args;
2068
2069static void
fba45db2 2070set_ext_lang_command (char *args, int from_tty)
c906108c
SS
2071{
2072 int i;
2073 char *cp = ext_args;
2074 enum language lang;
2075
2076 /* First arg is filename extension, starting with '.' */
2077 if (*cp != '.')
2078 error ("'%s': Filename extension must begin with '.'", ext_args);
2079
2080 /* Find end of first arg. */
c5aa993b 2081 while (*cp && !isspace (*cp))
c906108c
SS
2082 cp++;
2083
2084 if (*cp == '\0')
2085 error ("'%s': two arguments required -- filename extension and language",
2086 ext_args);
2087
2088 /* Null-terminate first arg */
c5aa993b 2089 *cp++ = '\0';
c906108c
SS
2090
2091 /* Find beginning of second arg, which should be a source language. */
2092 while (*cp && isspace (*cp))
2093 cp++;
2094
2095 if (*cp == '\0')
2096 error ("'%s': two arguments required -- filename extension and language",
2097 ext_args);
2098
2099 /* Lookup the language from among those we know. */
2100 lang = language_enum (cp);
2101
2102 /* Now lookup the filename extension: do we already know it? */
2103 for (i = 0; i < fl_table_next; i++)
2104 if (0 == strcmp (ext_args, filename_language_table[i].ext))
2105 break;
2106
2107 if (i >= fl_table_next)
2108 {
2109 /* new file extension */
2110 add_filename_language (ext_args, lang);
2111 }
2112 else
2113 {
2114 /* redefining a previously known filename extension */
2115
2116 /* if (from_tty) */
2117 /* query ("Really make files of type %s '%s'?", */
2118 /* ext_args, language_str (lang)); */
2119
b8c9b27d 2120 xfree (filename_language_table[i].ext);
4fcf66da 2121 filename_language_table[i].ext = xstrdup (ext_args);
c906108c
SS
2122 filename_language_table[i].lang = lang;
2123 }
2124}
2125
2126static void
fba45db2 2127info_ext_lang_command (char *args, int from_tty)
c906108c
SS
2128{
2129 int i;
2130
2131 printf_filtered ("Filename extensions and the languages they represent:");
2132 printf_filtered ("\n\n");
2133 for (i = 0; i < fl_table_next; i++)
c5aa993b
JM
2134 printf_filtered ("\t%s\t- %s\n",
2135 filename_language_table[i].ext,
c906108c
SS
2136 language_str (filename_language_table[i].lang));
2137}
2138
2139static void
fba45db2 2140init_filename_language_table (void)
c906108c
SS
2141{
2142 if (fl_table_size == 0) /* protect against repetition */
2143 {
2144 fl_table_size = 20;
2145 fl_table_next = 0;
c5aa993b 2146 filename_language_table =
c906108c 2147 xmalloc (fl_table_size * sizeof (*filename_language_table));
c5aa993b
JM
2148 add_filename_language (".c", language_c);
2149 add_filename_language (".C", language_cplus);
2150 add_filename_language (".cc", language_cplus);
2151 add_filename_language (".cp", language_cplus);
2152 add_filename_language (".cpp", language_cplus);
2153 add_filename_language (".cxx", language_cplus);
2154 add_filename_language (".c++", language_cplus);
2155 add_filename_language (".java", language_java);
c906108c 2156 add_filename_language (".class", language_java);
da2cf7e0 2157 add_filename_language (".m", language_objc);
c5aa993b
JM
2158 add_filename_language (".f", language_fortran);
2159 add_filename_language (".F", language_fortran);
2160 add_filename_language (".s", language_asm);
2161 add_filename_language (".S", language_asm);
c6fd39cd
PM
2162 add_filename_language (".pas", language_pascal);
2163 add_filename_language (".p", language_pascal);
2164 add_filename_language (".pp", language_pascal);
c906108c
SS
2165 }
2166}
2167
2168enum language
fba45db2 2169deduce_language_from_filename (char *filename)
c906108c
SS
2170{
2171 int i;
2172 char *cp;
2173
2174 if (filename != NULL)
2175 if ((cp = strrchr (filename, '.')) != NULL)
2176 for (i = 0; i < fl_table_next; i++)
2177 if (strcmp (cp, filename_language_table[i].ext) == 0)
2178 return filename_language_table[i].lang;
2179
2180 return language_unknown;
2181}
2182\f
2183/* allocate_symtab:
2184
2185 Allocate and partly initialize a new symbol table. Return a pointer
2186 to it. error() if no space.
2187
2188 Caller must set these fields:
c5aa993b
JM
2189 LINETABLE(symtab)
2190 symtab->blockvector
2191 symtab->dirname
2192 symtab->free_code
2193 symtab->free_ptr
2194 possibly free_named_symtabs (symtab->filename);
c906108c
SS
2195 */
2196
2197struct symtab *
fba45db2 2198allocate_symtab (char *filename, struct objfile *objfile)
c906108c 2199{
52f0bd74 2200 struct symtab *symtab;
c906108c
SS
2201
2202 symtab = (struct symtab *)
4a146b47 2203 obstack_alloc (&objfile->objfile_obstack, sizeof (struct symtab));
c906108c 2204 memset (symtab, 0, sizeof (*symtab));
c5aa993b 2205 symtab->filename = obsavestring (filename, strlen (filename),
4a146b47 2206 &objfile->objfile_obstack);
c5aa993b
JM
2207 symtab->fullname = NULL;
2208 symtab->language = deduce_language_from_filename (filename);
2209 symtab->debugformat = obsavestring ("unknown", 7,
4a146b47 2210 &objfile->objfile_obstack);
c906108c
SS
2211
2212 /* Hook it to the objfile it comes from */
2213
c5aa993b
JM
2214 symtab->objfile = objfile;
2215 symtab->next = objfile->symtabs;
2216 objfile->symtabs = symtab;
c906108c
SS
2217
2218 /* FIXME: This should go away. It is only defined for the Z8000,
2219 and the Z8000 definition of this macro doesn't have anything to
2220 do with the now-nonexistent EXTRA_SYMTAB_INFO macro, it's just
2221 here for convenience. */
2222#ifdef INIT_EXTRA_SYMTAB_INFO
2223 INIT_EXTRA_SYMTAB_INFO (symtab);
2224#endif
2225
2226 return (symtab);
2227}
2228
2229struct partial_symtab *
fba45db2 2230allocate_psymtab (char *filename, struct objfile *objfile)
c906108c
SS
2231{
2232 struct partial_symtab *psymtab;
2233
c5aa993b 2234 if (objfile->free_psymtabs)
c906108c 2235 {
c5aa993b
JM
2236 psymtab = objfile->free_psymtabs;
2237 objfile->free_psymtabs = psymtab->next;
c906108c
SS
2238 }
2239 else
2240 psymtab = (struct partial_symtab *)
8b92e4d5 2241 obstack_alloc (&objfile->objfile_obstack,
c906108c
SS
2242 sizeof (struct partial_symtab));
2243
2244 memset (psymtab, 0, sizeof (struct partial_symtab));
c5aa993b 2245 psymtab->filename = obsavestring (filename, strlen (filename),
8b92e4d5 2246 &objfile->objfile_obstack);
c5aa993b 2247 psymtab->symtab = NULL;
c906108c
SS
2248
2249 /* Prepend it to the psymtab list for the objfile it belongs to.
2250 Psymtabs are searched in most recent inserted -> least recent
2251 inserted order. */
2252
c5aa993b
JM
2253 psymtab->objfile = objfile;
2254 psymtab->next = objfile->psymtabs;
2255 objfile->psymtabs = psymtab;
c906108c
SS
2256#if 0
2257 {
2258 struct partial_symtab **prev_pst;
c5aa993b
JM
2259 psymtab->objfile = objfile;
2260 psymtab->next = NULL;
2261 prev_pst = &(objfile->psymtabs);
c906108c 2262 while ((*prev_pst) != NULL)
c5aa993b 2263 prev_pst = &((*prev_pst)->next);
c906108c 2264 (*prev_pst) = psymtab;
c5aa993b 2265 }
c906108c 2266#endif
c5aa993b 2267
c906108c
SS
2268 return (psymtab);
2269}
2270
2271void
fba45db2 2272discard_psymtab (struct partial_symtab *pst)
c906108c
SS
2273{
2274 struct partial_symtab **prev_pst;
2275
2276 /* From dbxread.c:
2277 Empty psymtabs happen as a result of header files which don't
2278 have any symbols in them. There can be a lot of them. But this
2279 check is wrong, in that a psymtab with N_SLINE entries but
2280 nothing else is not empty, but we don't realize that. Fixing
2281 that without slowing things down might be tricky. */
2282
2283 /* First, snip it out of the psymtab chain */
2284
2285 prev_pst = &(pst->objfile->psymtabs);
2286 while ((*prev_pst) != pst)
2287 prev_pst = &((*prev_pst)->next);
2288 (*prev_pst) = pst->next;
2289
2290 /* Next, put it on a free list for recycling */
2291
2292 pst->next = pst->objfile->free_psymtabs;
2293 pst->objfile->free_psymtabs = pst;
2294}
c906108c 2295\f
c5aa993b 2296
c906108c
SS
2297/* Reset all data structures in gdb which may contain references to symbol
2298 table data. */
2299
2300void
fba45db2 2301clear_symtab_users (void)
c906108c
SS
2302{
2303 /* Someday, we should do better than this, by only blowing away
2304 the things that really need to be blown. */
2305 clear_value_history ();
2306 clear_displays ();
2307 clear_internalvars ();
2308 breakpoint_re_set ();
2309 set_default_breakpoint (0, 0, 0, 0);
0378c332 2310 clear_current_source_symtab_and_line ();
c906108c 2311 clear_pc_function_cache ();
11cf8741
JM
2312 if (target_new_objfile_hook)
2313 target_new_objfile_hook (NULL);
c906108c
SS
2314}
2315
74b7792f
AC
2316static void
2317clear_symtab_users_cleanup (void *ignore)
2318{
2319 clear_symtab_users ();
2320}
2321
c906108c
SS
2322/* clear_symtab_users_once:
2323
2324 This function is run after symbol reading, or from a cleanup.
2325 If an old symbol table was obsoleted, the old symbol table
2326 has been blown away, but the other GDB data structures that may
2327 reference it have not yet been cleared or re-directed. (The old
2328 symtab was zapped, and the cleanup queued, in free_named_symtab()
2329 below.)
2330
2331 This function can be queued N times as a cleanup, or called
2332 directly; it will do all the work the first time, and then will be a
2333 no-op until the next time it is queued. This works by bumping a
2334 counter at queueing time. Much later when the cleanup is run, or at
2335 the end of symbol processing (in case the cleanup is discarded), if
2336 the queued count is greater than the "done-count", we do the work
2337 and set the done-count to the queued count. If the queued count is
2338 less than or equal to the done-count, we just ignore the call. This
2339 is needed because reading a single .o file will often replace many
2340 symtabs (one per .h file, for example), and we don't want to reset
2341 the breakpoints N times in the user's face.
2342
2343 The reason we both queue a cleanup, and call it directly after symbol
2344 reading, is because the cleanup protects us in case of errors, but is
2345 discarded if symbol reading is successful. */
2346
2347#if 0
2348/* FIXME: As free_named_symtabs is currently a big noop this function
2349 is no longer needed. */
a14ed312 2350static void clear_symtab_users_once (void);
c906108c
SS
2351
2352static int clear_symtab_users_queued;
2353static int clear_symtab_users_done;
2354
2355static void
fba45db2 2356clear_symtab_users_once (void)
c906108c
SS
2357{
2358 /* Enforce once-per-`do_cleanups'-semantics */
2359 if (clear_symtab_users_queued <= clear_symtab_users_done)
2360 return;
2361 clear_symtab_users_done = clear_symtab_users_queued;
2362
2363 clear_symtab_users ();
2364}
2365#endif
2366
2367/* Delete the specified psymtab, and any others that reference it. */
2368
2369static void
fba45db2 2370cashier_psymtab (struct partial_symtab *pst)
c906108c
SS
2371{
2372 struct partial_symtab *ps, *pprev = NULL;
2373 int i;
2374
2375 /* Find its previous psymtab in the chain */
c5aa993b
JM
2376 for (ps = pst->objfile->psymtabs; ps; ps = ps->next)
2377 {
2378 if (ps == pst)
2379 break;
2380 pprev = ps;
2381 }
c906108c 2382
c5aa993b
JM
2383 if (ps)
2384 {
2385 /* Unhook it from the chain. */
2386 if (ps == pst->objfile->psymtabs)
2387 pst->objfile->psymtabs = ps->next;
2388 else
2389 pprev->next = ps->next;
2390
2391 /* FIXME, we can't conveniently deallocate the entries in the
2392 partial_symbol lists (global_psymbols/static_psymbols) that
2393 this psymtab points to. These just take up space until all
2394 the psymtabs are reclaimed. Ditto the dependencies list and
8b92e4d5 2395 filename, which are all in the objfile_obstack. */
c5aa993b
JM
2396
2397 /* We need to cashier any psymtab that has this one as a dependency... */
2398 again:
2399 for (ps = pst->objfile->psymtabs; ps; ps = ps->next)
2400 {
2401 for (i = 0; i < ps->number_of_dependencies; i++)
2402 {
2403 if (ps->dependencies[i] == pst)
2404 {
2405 cashier_psymtab (ps);
2406 goto again; /* Must restart, chain has been munged. */
2407 }
2408 }
c906108c 2409 }
c906108c 2410 }
c906108c
SS
2411}
2412
2413/* If a symtab or psymtab for filename NAME is found, free it along
2414 with any dependent breakpoints, displays, etc.
2415 Used when loading new versions of object modules with the "add-file"
2416 command. This is only called on the top-level symtab or psymtab's name;
2417 it is not called for subsidiary files such as .h files.
2418
2419 Return value is 1 if we blew away the environment, 0 if not.
7e73cedf 2420 FIXME. The return value appears to never be used.
c906108c
SS
2421
2422 FIXME. I think this is not the best way to do this. We should
2423 work on being gentler to the environment while still cleaning up
2424 all stray pointers into the freed symtab. */
2425
2426int
fba45db2 2427free_named_symtabs (char *name)
c906108c
SS
2428{
2429#if 0
2430 /* FIXME: With the new method of each objfile having it's own
2431 psymtab list, this function needs serious rethinking. In particular,
2432 why was it ever necessary to toss psymtabs with specific compilation
2433 unit filenames, as opposed to all psymtabs from a particular symbol
2434 file? -- fnf
2435 Well, the answer is that some systems permit reloading of particular
2436 compilation units. We want to blow away any old info about these
2437 compilation units, regardless of which objfiles they arrived in. --gnu. */
2438
52f0bd74
AC
2439 struct symtab *s;
2440 struct symtab *prev;
2441 struct partial_symtab *ps;
c906108c
SS
2442 struct blockvector *bv;
2443 int blewit = 0;
2444
2445 /* We only wack things if the symbol-reload switch is set. */
2446 if (!symbol_reloading)
2447 return 0;
2448
2449 /* Some symbol formats have trouble providing file names... */
2450 if (name == 0 || *name == '\0')
2451 return 0;
2452
2453 /* Look for a psymtab with the specified name. */
2454
2455again2:
c5aa993b
JM
2456 for (ps = partial_symtab_list; ps; ps = ps->next)
2457 {
6314a349 2458 if (strcmp (name, ps->filename) == 0)
c5aa993b
JM
2459 {
2460 cashier_psymtab (ps); /* Blow it away...and its little dog, too. */
2461 goto again2; /* Must restart, chain has been munged */
2462 }
c906108c 2463 }
c906108c
SS
2464
2465 /* Look for a symtab with the specified name. */
2466
2467 for (s = symtab_list; s; s = s->next)
2468 {
6314a349 2469 if (strcmp (name, s->filename) == 0)
c906108c
SS
2470 break;
2471 prev = s;
2472 }
2473
2474 if (s)
2475 {
2476 if (s == symtab_list)
2477 symtab_list = s->next;
2478 else
2479 prev->next = s->next;
2480
2481 /* For now, queue a delete for all breakpoints, displays, etc., whether
c5aa993b
JM
2482 or not they depend on the symtab being freed. This should be
2483 changed so that only those data structures affected are deleted. */
c906108c
SS
2484
2485 /* But don't delete anything if the symtab is empty.
c5aa993b
JM
2486 This test is necessary due to a bug in "dbxread.c" that
2487 causes empty symtabs to be created for N_SO symbols that
2488 contain the pathname of the object file. (This problem
2489 has been fixed in GDB 3.9x). */
c906108c
SS
2490
2491 bv = BLOCKVECTOR (s);
2492 if (BLOCKVECTOR_NBLOCKS (bv) > 2
2493 || BLOCK_NSYMS (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK))
2494 || BLOCK_NSYMS (BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK)))
2495 {
b9caf505
AC
2496 complaint (&symfile_complaints, "Replacing old symbols for `%s'",
2497 name);
c906108c
SS
2498 clear_symtab_users_queued++;
2499 make_cleanup (clear_symtab_users_once, 0);
2500 blewit = 1;
c5aa993b
JM
2501 }
2502 else
2503 {
b9caf505
AC
2504 complaint (&symfile_complaints, "Empty symbol table found for `%s'",
2505 name);
c906108c
SS
2506 }
2507
2508 free_symtab (s);
2509 }
2510 else
2511 {
2512 /* It is still possible that some breakpoints will be affected
c5aa993b
JM
2513 even though no symtab was found, since the file might have
2514 been compiled without debugging, and hence not be associated
2515 with a symtab. In order to handle this correctly, we would need
2516 to keep a list of text address ranges for undebuggable files.
2517 For now, we do nothing, since this is a fairly obscure case. */
c906108c
SS
2518 ;
2519 }
2520
2521 /* FIXME, what about the minimal symbol table? */
2522 return blewit;
2523#else
2524 return (0);
2525#endif
2526}
2527\f
2528/* Allocate and partially fill a partial symtab. It will be
2529 completely filled at the end of the symbol list.
2530
d4f3574e 2531 FILENAME is the name of the symbol-file we are reading from. */
c906108c
SS
2532
2533struct partial_symtab *
fba45db2
KB
2534start_psymtab_common (struct objfile *objfile,
2535 struct section_offsets *section_offsets, char *filename,
2536 CORE_ADDR textlow, struct partial_symbol **global_syms,
2537 struct partial_symbol **static_syms)
c906108c
SS
2538{
2539 struct partial_symtab *psymtab;
2540
2541 psymtab = allocate_psymtab (filename, objfile);
c5aa993b
JM
2542 psymtab->section_offsets = section_offsets;
2543 psymtab->textlow = textlow;
2544 psymtab->texthigh = psymtab->textlow; /* default */
2545 psymtab->globals_offset = global_syms - objfile->global_psymbols.list;
2546 psymtab->statics_offset = static_syms - objfile->static_psymbols.list;
c906108c
SS
2547 return (psymtab);
2548}
2549\f
2550/* Add a symbol with a long value to a psymtab.
5c4e30ca
DC
2551 Since one arg is a struct, we pass in a ptr and deref it (sigh).
2552 Return the partial symbol that has been added. */
2553
2554/* NOTE: carlton/2003-09-11: The reason why we return the partial
2555 symbol is so that callers can get access to the symbol's demangled
2556 name, which they don't have any cheap way to determine otherwise.
2557 (Currenly, dwarf2read.c is the only file who uses that information,
2558 though it's possible that other readers might in the future.)
2559 Elena wasn't thrilled about that, and I don't blame her, but we
2560 couldn't come up with a better way to get that information. If
2561 it's needed in other situations, we could consider breaking up
2562 SYMBOL_SET_NAMES to provide access to the demangled name lookup
2563 cache. */
2564
2565const struct partial_symbol *
176620f1 2566add_psymbol_to_list (char *name, int namelength, domain_enum domain,
fba45db2
KB
2567 enum address_class class,
2568 struct psymbol_allocation_list *list, long val, /* Value as a long */
2569 CORE_ADDR coreaddr, /* Value as a CORE_ADDR */
2570 enum language language, struct objfile *objfile)
c906108c 2571{
52f0bd74 2572 struct partial_symbol *psym;
c906108c
SS
2573 char *buf = alloca (namelength + 1);
2574 /* psymbol is static so that there will be no uninitialized gaps in the
2575 structure which might contain random data, causing cache misses in
2576 bcache. */
2577 static struct partial_symbol psymbol;
2578
2579 /* Create local copy of the partial symbol */
2580 memcpy (buf, name, namelength);
2581 buf[namelength] = '\0';
c906108c
SS
2582 /* val and coreaddr are mutually exclusive, one of them *will* be zero */
2583 if (val != 0)
2584 {
2585 SYMBOL_VALUE (&psymbol) = val;
2586 }
2587 else
2588 {
2589 SYMBOL_VALUE_ADDRESS (&psymbol) = coreaddr;
2590 }
2591 SYMBOL_SECTION (&psymbol) = 0;
2592 SYMBOL_LANGUAGE (&psymbol) = language;
176620f1 2593 PSYMBOL_DOMAIN (&psymbol) = domain;
c906108c 2594 PSYMBOL_CLASS (&psymbol) = class;
2de7ced7
DJ
2595
2596 SYMBOL_SET_NAMES (&psymbol, buf, namelength, objfile);
c906108c
SS
2597
2598 /* Stash the partial symbol away in the cache */
3a16a68c
AC
2599 psym = deprecated_bcache (&psymbol, sizeof (struct partial_symbol),
2600 objfile->psymbol_cache);
c906108c
SS
2601
2602 /* Save pointer to partial symbol in psymtab, growing symtab if needed. */
2603 if (list->next >= list->list + list->size)
2604 {
2605 extend_psymbol_list (list, objfile);
2606 }
2607 *list->next++ = psym;
2608 OBJSTAT (objfile, n_psyms++);
5c4e30ca
DC
2609
2610 return psym;
c906108c
SS
2611}
2612
2613/* Add a symbol with a long value to a psymtab. This differs from
2614 * add_psymbol_to_list above in taking both a mangled and a demangled
2615 * name. */
2616
2617void
fba45db2 2618add_psymbol_with_dem_name_to_list (char *name, int namelength, char *dem_name,
176620f1 2619 int dem_namelength, domain_enum domain,
fba45db2
KB
2620 enum address_class class,
2621 struct psymbol_allocation_list *list, long val, /* Value as a long */
2622 CORE_ADDR coreaddr, /* Value as a CORE_ADDR */
2623 enum language language,
2624 struct objfile *objfile)
c906108c 2625{
52f0bd74 2626 struct partial_symbol *psym;
c906108c
SS
2627 char *buf = alloca (namelength + 1);
2628 /* psymbol is static so that there will be no uninitialized gaps in the
2629 structure which might contain random data, causing cache misses in
2630 bcache. */
2631 static struct partial_symbol psymbol;
2632
2633 /* Create local copy of the partial symbol */
2634
2635 memcpy (buf, name, namelength);
2636 buf[namelength] = '\0';
3a16a68c
AC
2637 DEPRECATED_SYMBOL_NAME (&psymbol) = deprecated_bcache (buf, namelength + 1,
2638 objfile->psymbol_cache);
c906108c
SS
2639
2640 buf = alloca (dem_namelength + 1);
2641 memcpy (buf, dem_name, dem_namelength);
2642 buf[dem_namelength] = '\0';
c5aa993b 2643
c906108c
SS
2644 switch (language)
2645 {
c5aa993b
JM
2646 case language_c:
2647 case language_cplus:
2648 SYMBOL_CPLUS_DEMANGLED_NAME (&psymbol) =
3a16a68c 2649 deprecated_bcache (buf, dem_namelength + 1, objfile->psymbol_cache);
c5aa993b 2650 break;
c906108c
SS
2651 /* FIXME What should be done for the default case? Ignoring for now. */
2652 }
2653
2654 /* val and coreaddr are mutually exclusive, one of them *will* be zero */
2655 if (val != 0)
2656 {
2657 SYMBOL_VALUE (&psymbol) = val;
2658 }
2659 else
2660 {
2661 SYMBOL_VALUE_ADDRESS (&psymbol) = coreaddr;
2662 }
2663 SYMBOL_SECTION (&psymbol) = 0;
2664 SYMBOL_LANGUAGE (&psymbol) = language;
176620f1 2665 PSYMBOL_DOMAIN (&psymbol) = domain;
c906108c
SS
2666 PSYMBOL_CLASS (&psymbol) = class;
2667 SYMBOL_INIT_LANGUAGE_SPECIFIC (&psymbol, language);
2668
2669 /* Stash the partial symbol away in the cache */
3a16a68c
AC
2670 psym = deprecated_bcache (&psymbol, sizeof (struct partial_symbol),
2671 objfile->psymbol_cache);
c906108c
SS
2672
2673 /* Save pointer to partial symbol in psymtab, growing symtab if needed. */
2674 if (list->next >= list->list + list->size)
2675 {
2676 extend_psymbol_list (list, objfile);
2677 }
2678 *list->next++ = psym;
2679 OBJSTAT (objfile, n_psyms++);
2680}
2681
2682/* Initialize storage for partial symbols. */
2683
2684void
fba45db2 2685init_psymbol_list (struct objfile *objfile, int total_symbols)
c906108c
SS
2686{
2687 /* Free any previously allocated psymbol lists. */
c5aa993b
JM
2688
2689 if (objfile->global_psymbols.list)
c906108c 2690 {
4efb68b1 2691 xmfree (objfile->md, objfile->global_psymbols.list);
c906108c 2692 }
c5aa993b 2693 if (objfile->static_psymbols.list)
c906108c 2694 {
4efb68b1 2695 xmfree (objfile->md, objfile->static_psymbols.list);
c906108c 2696 }
c5aa993b 2697
c906108c
SS
2698 /* Current best guess is that approximately a twentieth
2699 of the total symbols (in a debugging file) are global or static
2700 oriented symbols */
c906108c 2701
c5aa993b
JM
2702 objfile->global_psymbols.size = total_symbols / 10;
2703 objfile->static_psymbols.size = total_symbols / 10;
2704
2705 if (objfile->global_psymbols.size > 0)
c906108c 2706 {
c5aa993b
JM
2707 objfile->global_psymbols.next =
2708 objfile->global_psymbols.list = (struct partial_symbol **)
2709 xmmalloc (objfile->md, (objfile->global_psymbols.size
2710 * sizeof (struct partial_symbol *)));
c906108c 2711 }
c5aa993b 2712 if (objfile->static_psymbols.size > 0)
c906108c 2713 {
c5aa993b
JM
2714 objfile->static_psymbols.next =
2715 objfile->static_psymbols.list = (struct partial_symbol **)
2716 xmmalloc (objfile->md, (objfile->static_psymbols.size
2717 * sizeof (struct partial_symbol *)));
c906108c
SS
2718 }
2719}
2720
2721/* OVERLAYS:
2722 The following code implements an abstraction for debugging overlay sections.
2723
2724 The target model is as follows:
2725 1) The gnu linker will permit multiple sections to be mapped into the
c5aa993b 2726 same VMA, each with its own unique LMA (or load address).
c906108c 2727 2) It is assumed that some runtime mechanism exists for mapping the
c5aa993b 2728 sections, one by one, from the load address into the VMA address.
c906108c 2729 3) This code provides a mechanism for gdb to keep track of which
c5aa993b
JM
2730 sections should be considered to be mapped from the VMA to the LMA.
2731 This information is used for symbol lookup, and memory read/write.
2732 For instance, if a section has been mapped then its contents
2733 should be read from the VMA, otherwise from the LMA.
c906108c
SS
2734
2735 Two levels of debugger support for overlays are available. One is
2736 "manual", in which the debugger relies on the user to tell it which
2737 overlays are currently mapped. This level of support is
2738 implemented entirely in the core debugger, and the information about
2739 whether a section is mapped is kept in the objfile->obj_section table.
2740
2741 The second level of support is "automatic", and is only available if
2742 the target-specific code provides functionality to read the target's
2743 overlay mapping table, and translate its contents for the debugger
2744 (by updating the mapped state information in the obj_section tables).
2745
2746 The interface is as follows:
c5aa993b
JM
2747 User commands:
2748 overlay map <name> -- tell gdb to consider this section mapped
2749 overlay unmap <name> -- tell gdb to consider this section unmapped
2750 overlay list -- list the sections that GDB thinks are mapped
2751 overlay read-target -- get the target's state of what's mapped
2752 overlay off/manual/auto -- set overlay debugging state
2753 Functional interface:
2754 find_pc_mapped_section(pc): if the pc is in the range of a mapped
2755 section, return that section.
2756 find_pc_overlay(pc): find any overlay section that contains
2757 the pc, either in its VMA or its LMA
2758 overlay_is_mapped(sect): true if overlay is marked as mapped
2759 section_is_overlay(sect): true if section's VMA != LMA
2760 pc_in_mapped_range(pc,sec): true if pc belongs to section's VMA
2761 pc_in_unmapped_range(...): true if pc belongs to section's LMA
9ec8e6a0 2762 sections_overlap(sec1, sec2): true if mapped sec1 and sec2 ranges overlap
c5aa993b
JM
2763 overlay_mapped_address(...): map an address from section's LMA to VMA
2764 overlay_unmapped_address(...): map an address from section's VMA to LMA
2765 symbol_overlayed_address(...): Return a "current" address for symbol:
2766 either in VMA or LMA depending on whether
2767 the symbol's section is currently mapped
c906108c
SS
2768 */
2769
2770/* Overlay debugging state: */
2771
d874f1e2 2772enum overlay_debugging_state overlay_debugging = ovly_off;
c906108c
SS
2773int overlay_cache_invalid = 0; /* True if need to refresh mapped state */
2774
2775/* Target vector for refreshing overlay mapped state */
a14ed312 2776static void simple_overlay_update (struct obj_section *);
507f3c78 2777void (*target_overlay_update) (struct obj_section *) = simple_overlay_update;
c906108c
SS
2778
2779/* Function: section_is_overlay (SECTION)
2780 Returns true if SECTION has VMA not equal to LMA, ie.
2781 SECTION is loaded at an address different from where it will "run". */
2782
2783int
fba45db2 2784section_is_overlay (asection *section)
c906108c 2785{
fbd35540
MS
2786 /* FIXME: need bfd *, so we can use bfd_section_lma methods. */
2787
c906108c
SS
2788 if (overlay_debugging)
2789 if (section && section->lma != 0 &&
2790 section->vma != section->lma)
2791 return 1;
2792
2793 return 0;
2794}
2795
2796/* Function: overlay_invalidate_all (void)
2797 Invalidate the mapped state of all overlay sections (mark it as stale). */
2798
2799static void
fba45db2 2800overlay_invalidate_all (void)
c906108c 2801{
c5aa993b 2802 struct objfile *objfile;
c906108c
SS
2803 struct obj_section *sect;
2804
2805 ALL_OBJSECTIONS (objfile, sect)
2806 if (section_is_overlay (sect->the_bfd_section))
c5aa993b 2807 sect->ovly_mapped = -1;
c906108c
SS
2808}
2809
2810/* Function: overlay_is_mapped (SECTION)
2811 Returns true if section is an overlay, and is currently mapped.
2812 Private: public access is thru function section_is_mapped.
2813
2814 Access to the ovly_mapped flag is restricted to this function, so
2815 that we can do automatic update. If the global flag
2816 OVERLAY_CACHE_INVALID is set (by wait_for_inferior), then call
2817 overlay_invalidate_all. If the mapped state of the particular
2818 section is stale, then call TARGET_OVERLAY_UPDATE to refresh it. */
2819
c5aa993b 2820static int
fba45db2 2821overlay_is_mapped (struct obj_section *osect)
c906108c
SS
2822{
2823 if (osect == 0 || !section_is_overlay (osect->the_bfd_section))
2824 return 0;
2825
c5aa993b 2826 switch (overlay_debugging)
c906108c
SS
2827 {
2828 default:
d874f1e2 2829 case ovly_off:
c5aa993b 2830 return 0; /* overlay debugging off */
d874f1e2 2831 case ovly_auto: /* overlay debugging automatic */
c906108c 2832 /* Unles there is a target_overlay_update function,
c5aa993b 2833 there's really nothing useful to do here (can't really go auto) */
c906108c
SS
2834 if (target_overlay_update)
2835 {
2836 if (overlay_cache_invalid)
2837 {
2838 overlay_invalidate_all ();
2839 overlay_cache_invalid = 0;
2840 }
2841 if (osect->ovly_mapped == -1)
2842 (*target_overlay_update) (osect);
2843 }
2844 /* fall thru to manual case */
d874f1e2 2845 case ovly_on: /* overlay debugging manual */
c906108c
SS
2846 return osect->ovly_mapped == 1;
2847 }
2848}
2849
2850/* Function: section_is_mapped
2851 Returns true if section is an overlay, and is currently mapped. */
2852
2853int
fba45db2 2854section_is_mapped (asection *section)
c906108c 2855{
c5aa993b 2856 struct objfile *objfile;
c906108c
SS
2857 struct obj_section *osect;
2858
2859 if (overlay_debugging)
2860 if (section && section_is_overlay (section))
2861 ALL_OBJSECTIONS (objfile, osect)
2862 if (osect->the_bfd_section == section)
c5aa993b 2863 return overlay_is_mapped (osect);
c906108c
SS
2864
2865 return 0;
2866}
2867
2868/* Function: pc_in_unmapped_range
2869 If PC falls into the lma range of SECTION, return true, else false. */
2870
2871CORE_ADDR
fba45db2 2872pc_in_unmapped_range (CORE_ADDR pc, asection *section)
c906108c 2873{
fbd35540
MS
2874 /* FIXME: need bfd *, so we can use bfd_section_lma methods. */
2875
c906108c
SS
2876 int size;
2877
2878 if (overlay_debugging)
2879 if (section && section_is_overlay (section))
2880 {
2881 size = bfd_get_section_size_before_reloc (section);
2882 if (section->lma <= pc && pc < section->lma + size)
2883 return 1;
2884 }
2885 return 0;
2886}
2887
2888/* Function: pc_in_mapped_range
2889 If PC falls into the vma range of SECTION, return true, else false. */
2890
2891CORE_ADDR
fba45db2 2892pc_in_mapped_range (CORE_ADDR pc, asection *section)
c906108c 2893{
fbd35540
MS
2894 /* FIXME: need bfd *, so we can use bfd_section_vma methods. */
2895
c906108c
SS
2896 int size;
2897
2898 if (overlay_debugging)
2899 if (section && section_is_overlay (section))
2900 {
2901 size = bfd_get_section_size_before_reloc (section);
2902 if (section->vma <= pc && pc < section->vma + size)
2903 return 1;
2904 }
2905 return 0;
2906}
2907
9ec8e6a0
JB
2908
2909/* Return true if the mapped ranges of sections A and B overlap, false
2910 otherwise. */
b9362cc7 2911static int
9ec8e6a0
JB
2912sections_overlap (asection *a, asection *b)
2913{
fbd35540
MS
2914 /* FIXME: need bfd *, so we can use bfd_section_vma methods. */
2915
9ec8e6a0
JB
2916 CORE_ADDR a_start = a->vma;
2917 CORE_ADDR a_end = a->vma + bfd_get_section_size_before_reloc (a);
2918 CORE_ADDR b_start = b->vma;
2919 CORE_ADDR b_end = b->vma + bfd_get_section_size_before_reloc (b);
2920
2921 return (a_start < b_end && b_start < a_end);
2922}
2923
c906108c
SS
2924/* Function: overlay_unmapped_address (PC, SECTION)
2925 Returns the address corresponding to PC in the unmapped (load) range.
2926 May be the same as PC. */
2927
2928CORE_ADDR
fba45db2 2929overlay_unmapped_address (CORE_ADDR pc, asection *section)
c906108c 2930{
fbd35540
MS
2931 /* FIXME: need bfd *, so we can use bfd_section_lma methods. */
2932
c906108c
SS
2933 if (overlay_debugging)
2934 if (section && section_is_overlay (section) &&
2935 pc_in_mapped_range (pc, section))
2936 return pc + section->lma - section->vma;
2937
2938 return pc;
2939}
2940
2941/* Function: overlay_mapped_address (PC, SECTION)
2942 Returns the address corresponding to PC in the mapped (runtime) range.
2943 May be the same as PC. */
2944
2945CORE_ADDR
fba45db2 2946overlay_mapped_address (CORE_ADDR pc, asection *section)
c906108c 2947{
fbd35540
MS
2948 /* FIXME: need bfd *, so we can use bfd_section_vma methods. */
2949
c906108c
SS
2950 if (overlay_debugging)
2951 if (section && section_is_overlay (section) &&
2952 pc_in_unmapped_range (pc, section))
2953 return pc + section->vma - section->lma;
2954
2955 return pc;
2956}
2957
2958
2959/* Function: symbol_overlayed_address
2960 Return one of two addresses (relative to the VMA or to the LMA),
2961 depending on whether the section is mapped or not. */
2962
c5aa993b 2963CORE_ADDR
fba45db2 2964symbol_overlayed_address (CORE_ADDR address, asection *section)
c906108c
SS
2965{
2966 if (overlay_debugging)
2967 {
2968 /* If the symbol has no section, just return its regular address. */
2969 if (section == 0)
2970 return address;
2971 /* If the symbol's section is not an overlay, just return its address */
2972 if (!section_is_overlay (section))
2973 return address;
2974 /* If the symbol's section is mapped, just return its address */
2975 if (section_is_mapped (section))
2976 return address;
2977 /*
2978 * HOWEVER: if the symbol is in an overlay section which is NOT mapped,
2979 * then return its LOADED address rather than its vma address!!
2980 */
2981 return overlay_unmapped_address (address, section);
2982 }
2983 return address;
2984}
2985
2986/* Function: find_pc_overlay (PC)
2987 Return the best-match overlay section for PC:
2988 If PC matches a mapped overlay section's VMA, return that section.
2989 Else if PC matches an unmapped section's VMA, return that section.
2990 Else if PC matches an unmapped section's LMA, return that section. */
2991
2992asection *
fba45db2 2993find_pc_overlay (CORE_ADDR pc)
c906108c 2994{
c5aa993b 2995 struct objfile *objfile;
c906108c
SS
2996 struct obj_section *osect, *best_match = NULL;
2997
2998 if (overlay_debugging)
2999 ALL_OBJSECTIONS (objfile, osect)
3000 if (section_is_overlay (osect->the_bfd_section))
c5aa993b
JM
3001 {
3002 if (pc_in_mapped_range (pc, osect->the_bfd_section))
3003 {
3004 if (overlay_is_mapped (osect))
3005 return osect->the_bfd_section;
3006 else
3007 best_match = osect;
3008 }
3009 else if (pc_in_unmapped_range (pc, osect->the_bfd_section))
3010 best_match = osect;
3011 }
c906108c
SS
3012 return best_match ? best_match->the_bfd_section : NULL;
3013}
3014
3015/* Function: find_pc_mapped_section (PC)
3016 If PC falls into the VMA address range of an overlay section that is
3017 currently marked as MAPPED, return that section. Else return NULL. */
3018
3019asection *
fba45db2 3020find_pc_mapped_section (CORE_ADDR pc)
c906108c 3021{
c5aa993b 3022 struct objfile *objfile;
c906108c
SS
3023 struct obj_section *osect;
3024
3025 if (overlay_debugging)
3026 ALL_OBJSECTIONS (objfile, osect)
3027 if (pc_in_mapped_range (pc, osect->the_bfd_section) &&
3028 overlay_is_mapped (osect))
c5aa993b 3029 return osect->the_bfd_section;
c906108c
SS
3030
3031 return NULL;
3032}
3033
3034/* Function: list_overlays_command
3035 Print a list of mapped sections and their PC ranges */
3036
3037void
fba45db2 3038list_overlays_command (char *args, int from_tty)
c906108c 3039{
c5aa993b
JM
3040 int nmapped = 0;
3041 struct objfile *objfile;
c906108c
SS
3042 struct obj_section *osect;
3043
3044 if (overlay_debugging)
3045 ALL_OBJSECTIONS (objfile, osect)
3046 if (overlay_is_mapped (osect))
c5aa993b
JM
3047 {
3048 const char *name;
3049 bfd_vma lma, vma;
3050 int size;
3051
3052 vma = bfd_section_vma (objfile->obfd, osect->the_bfd_section);
3053 lma = bfd_section_lma (objfile->obfd, osect->the_bfd_section);
3054 size = bfd_get_section_size_before_reloc (osect->the_bfd_section);
3055 name = bfd_section_name (objfile->obfd, osect->the_bfd_section);
3056
3057 printf_filtered ("Section %s, loaded at ", name);
3058 print_address_numeric (lma, 1, gdb_stdout);
3059 puts_filtered (" - ");
3060 print_address_numeric (lma + size, 1, gdb_stdout);
3061 printf_filtered (", mapped at ");
3062 print_address_numeric (vma, 1, gdb_stdout);
3063 puts_filtered (" - ");
3064 print_address_numeric (vma + size, 1, gdb_stdout);
3065 puts_filtered ("\n");
3066
3067 nmapped++;
3068 }
c906108c
SS
3069 if (nmapped == 0)
3070 printf_filtered ("No sections are mapped.\n");
3071}
3072
3073/* Function: map_overlay_command
3074 Mark the named section as mapped (ie. residing at its VMA address). */
3075
3076void
fba45db2 3077map_overlay_command (char *args, int from_tty)
c906108c 3078{
c5aa993b
JM
3079 struct objfile *objfile, *objfile2;
3080 struct obj_section *sec, *sec2;
3081 asection *bfdsec;
c906108c
SS
3082
3083 if (!overlay_debugging)
515ad16c
EZ
3084 error ("\
3085Overlay debugging not enabled. Use either the 'overlay auto' or\n\
3086the 'overlay manual' command.");
c906108c
SS
3087
3088 if (args == 0 || *args == 0)
3089 error ("Argument required: name of an overlay section");
3090
3091 /* First, find a section matching the user supplied argument */
3092 ALL_OBJSECTIONS (objfile, sec)
3093 if (!strcmp (bfd_section_name (objfile->obfd, sec->the_bfd_section), args))
c5aa993b
JM
3094 {
3095 /* Now, check to see if the section is an overlay. */
3096 bfdsec = sec->the_bfd_section;
3097 if (!section_is_overlay (bfdsec))
3098 continue; /* not an overlay section */
3099
3100 /* Mark the overlay as "mapped" */
3101 sec->ovly_mapped = 1;
3102
3103 /* Next, make a pass and unmap any sections that are
3104 overlapped by this new section: */
3105 ALL_OBJSECTIONS (objfile2, sec2)
9ec8e6a0
JB
3106 if (sec2->ovly_mapped
3107 && sec != sec2
3108 && sec->the_bfd_section != sec2->the_bfd_section
3109 && sections_overlap (sec->the_bfd_section,
3110 sec2->the_bfd_section))
c5aa993b
JM
3111 {
3112 if (info_verbose)
46f45a4a 3113 printf_unfiltered ("Note: section %s unmapped by overlap\n",
c5aa993b
JM
3114 bfd_section_name (objfile->obfd,
3115 sec2->the_bfd_section));
3116 sec2->ovly_mapped = 0; /* sec2 overlaps sec: unmap sec2 */
3117 }
3118 return;
3119 }
c906108c
SS
3120 error ("No overlay section called %s", args);
3121}
3122
3123/* Function: unmap_overlay_command
3124 Mark the overlay section as unmapped
3125 (ie. resident in its LMA address range, rather than the VMA range). */
3126
3127void
fba45db2 3128unmap_overlay_command (char *args, int from_tty)
c906108c 3129{
c5aa993b 3130 struct objfile *objfile;
c906108c
SS
3131 struct obj_section *sec;
3132
3133 if (!overlay_debugging)
515ad16c
EZ
3134 error ("\
3135Overlay debugging not enabled. Use either the 'overlay auto' or\n\
3136the 'overlay manual' command.");
c906108c
SS
3137
3138 if (args == 0 || *args == 0)
3139 error ("Argument required: name of an overlay section");
3140
3141 /* First, find a section matching the user supplied argument */
3142 ALL_OBJSECTIONS (objfile, sec)
3143 if (!strcmp (bfd_section_name (objfile->obfd, sec->the_bfd_section), args))
c5aa993b
JM
3144 {
3145 if (!sec->ovly_mapped)
3146 error ("Section %s is not mapped", args);
3147 sec->ovly_mapped = 0;
3148 return;
3149 }
c906108c
SS
3150 error ("No overlay section called %s", args);
3151}
3152
3153/* Function: overlay_auto_command
3154 A utility command to turn on overlay debugging.
3155 Possibly this should be done via a set/show command. */
3156
3157static void
fba45db2 3158overlay_auto_command (char *args, int from_tty)
c906108c 3159{
d874f1e2 3160 overlay_debugging = ovly_auto;
1900040c 3161 enable_overlay_breakpoints ();
c906108c 3162 if (info_verbose)
46f45a4a 3163 printf_unfiltered ("Automatic overlay debugging enabled.");
c906108c
SS
3164}
3165
3166/* Function: overlay_manual_command
3167 A utility command to turn on overlay debugging.
3168 Possibly this should be done via a set/show command. */
3169
3170static void
fba45db2 3171overlay_manual_command (char *args, int from_tty)
c906108c 3172{
d874f1e2 3173 overlay_debugging = ovly_on;
1900040c 3174 disable_overlay_breakpoints ();
c906108c 3175 if (info_verbose)
46f45a4a 3176 printf_unfiltered ("Overlay debugging enabled.");
c906108c
SS
3177}
3178
3179/* Function: overlay_off_command
3180 A utility command to turn on overlay debugging.
3181 Possibly this should be done via a set/show command. */
3182
3183static void
fba45db2 3184overlay_off_command (char *args, int from_tty)
c906108c 3185{
d874f1e2 3186 overlay_debugging = ovly_off;
1900040c 3187 disable_overlay_breakpoints ();
c906108c 3188 if (info_verbose)
46f45a4a 3189 printf_unfiltered ("Overlay debugging disabled.");
c906108c
SS
3190}
3191
3192static void
fba45db2 3193overlay_load_command (char *args, int from_tty)
c906108c
SS
3194{
3195 if (target_overlay_update)
3196 (*target_overlay_update) (NULL);
3197 else
3198 error ("This target does not know how to read its overlay state.");
3199}
3200
3201/* Function: overlay_command
3202 A place-holder for a mis-typed command */
3203
3204/* Command list chain containing all defined "overlay" subcommands. */
3205struct cmd_list_element *overlaylist;
3206
3207static void
fba45db2 3208overlay_command (char *args, int from_tty)
c906108c 3209{
c5aa993b 3210 printf_unfiltered
c906108c
SS
3211 ("\"overlay\" must be followed by the name of an overlay command.\n");
3212 help_list (overlaylist, "overlay ", -1, gdb_stdout);
3213}
3214
3215
3216/* Target Overlays for the "Simplest" overlay manager:
3217
3218 This is GDB's default target overlay layer. It works with the
3219 minimal overlay manager supplied as an example by Cygnus. The
3220 entry point is via a function pointer "target_overlay_update",
3221 so targets that use a different runtime overlay manager can
3222 substitute their own overlay_update function and take over the
3223 function pointer.
3224
3225 The overlay_update function pokes around in the target's data structures
3226 to see what overlays are mapped, and updates GDB's overlay mapping with
3227 this information.
3228
3229 In this simple implementation, the target data structures are as follows:
c5aa993b
JM
3230 unsigned _novlys; /# number of overlay sections #/
3231 unsigned _ovly_table[_novlys][4] = {
3232 {VMA, SIZE, LMA, MAPPED}, /# one entry per overlay section #/
3233 {..., ..., ..., ...},
3234 }
3235 unsigned _novly_regions; /# number of overlay regions #/
3236 unsigned _ovly_region_table[_novly_regions][3] = {
3237 {VMA, SIZE, MAPPED_TO_LMA}, /# one entry per overlay region #/
3238 {..., ..., ...},
3239 }
c906108c
SS
3240 These functions will attempt to update GDB's mappedness state in the
3241 symbol section table, based on the target's mappedness state.
3242
3243 To do this, we keep a cached copy of the target's _ovly_table, and
3244 attempt to detect when the cached copy is invalidated. The main
3245 entry point is "simple_overlay_update(SECT), which looks up SECT in
3246 the cached table and re-reads only the entry for that section from
3247 the target (whenever possible).
3248 */
3249
3250/* Cached, dynamically allocated copies of the target data structures: */
c5aa993b 3251static unsigned (*cache_ovly_table)[4] = 0;
c906108c 3252#if 0
c5aa993b 3253static unsigned (*cache_ovly_region_table)[3] = 0;
c906108c 3254#endif
c5aa993b 3255static unsigned cache_novlys = 0;
c906108c 3256#if 0
c5aa993b 3257static unsigned cache_novly_regions = 0;
c906108c
SS
3258#endif
3259static CORE_ADDR cache_ovly_table_base = 0;
3260#if 0
3261static CORE_ADDR cache_ovly_region_table_base = 0;
3262#endif
c5aa993b
JM
3263enum ovly_index
3264 {
3265 VMA, SIZE, LMA, MAPPED
3266 };
c906108c
SS
3267#define TARGET_LONG_BYTES (TARGET_LONG_BIT / TARGET_CHAR_BIT)
3268
3269/* Throw away the cached copy of _ovly_table */
3270static void
fba45db2 3271simple_free_overlay_table (void)
c906108c
SS
3272{
3273 if (cache_ovly_table)
b8c9b27d 3274 xfree (cache_ovly_table);
c5aa993b 3275 cache_novlys = 0;
c906108c
SS
3276 cache_ovly_table = NULL;
3277 cache_ovly_table_base = 0;
3278}
3279
3280#if 0
3281/* Throw away the cached copy of _ovly_region_table */
3282static void
fba45db2 3283simple_free_overlay_region_table (void)
c906108c
SS
3284{
3285 if (cache_ovly_region_table)
b8c9b27d 3286 xfree (cache_ovly_region_table);
c5aa993b 3287 cache_novly_regions = 0;
c906108c
SS
3288 cache_ovly_region_table = NULL;
3289 cache_ovly_region_table_base = 0;
3290}
3291#endif
3292
3293/* Read an array of ints from the target into a local buffer.
3294 Convert to host order. int LEN is number of ints */
3295static void
fba45db2 3296read_target_long_array (CORE_ADDR memaddr, unsigned int *myaddr, int len)
c906108c 3297{
34c0bd93 3298 /* FIXME (alloca): Not safe if array is very large. */
c906108c 3299 char *buf = alloca (len * TARGET_LONG_BYTES);
c5aa993b 3300 int i;
c906108c
SS
3301
3302 read_memory (memaddr, buf, len * TARGET_LONG_BYTES);
3303 for (i = 0; i < len; i++)
c5aa993b 3304 myaddr[i] = extract_unsigned_integer (TARGET_LONG_BYTES * i + buf,
c906108c
SS
3305 TARGET_LONG_BYTES);
3306}
3307
3308/* Find and grab a copy of the target _ovly_table
3309 (and _novlys, which is needed for the table's size) */
c5aa993b 3310static int
fba45db2 3311simple_read_overlay_table (void)
c906108c 3312{
0d43edd1 3313 struct minimal_symbol *novlys_msym, *ovly_table_msym;
c906108c
SS
3314
3315 simple_free_overlay_table ();
9b27852e 3316 novlys_msym = lookup_minimal_symbol ("_novlys", NULL, NULL);
0d43edd1 3317 if (! novlys_msym)
c906108c 3318 {
0d43edd1
JB
3319 error ("Error reading inferior's overlay table: "
3320 "couldn't find `_novlys' variable\n"
3321 "in inferior. Use `overlay manual' mode.");
3322 return 0;
c906108c 3323 }
0d43edd1 3324
9b27852e 3325 ovly_table_msym = lookup_minimal_symbol ("_ovly_table", NULL, NULL);
0d43edd1
JB
3326 if (! ovly_table_msym)
3327 {
3328 error ("Error reading inferior's overlay table: couldn't find "
3329 "`_ovly_table' array\n"
3330 "in inferior. Use `overlay manual' mode.");
3331 return 0;
3332 }
3333
3334 cache_novlys = read_memory_integer (SYMBOL_VALUE_ADDRESS (novlys_msym), 4);
3335 cache_ovly_table
3336 = (void *) xmalloc (cache_novlys * sizeof (*cache_ovly_table));
3337 cache_ovly_table_base = SYMBOL_VALUE_ADDRESS (ovly_table_msym);
3338 read_target_long_array (cache_ovly_table_base,
3339 (int *) cache_ovly_table,
3340 cache_novlys * 4);
3341
c5aa993b 3342 return 1; /* SUCCESS */
c906108c
SS
3343}
3344
3345#if 0
3346/* Find and grab a copy of the target _ovly_region_table
3347 (and _novly_regions, which is needed for the table's size) */
c5aa993b 3348static int
fba45db2 3349simple_read_overlay_region_table (void)
c906108c
SS
3350{
3351 struct minimal_symbol *msym;
3352
3353 simple_free_overlay_region_table ();
9b27852e 3354 msym = lookup_minimal_symbol ("_novly_regions", NULL, NULL);
c906108c
SS
3355 if (msym != NULL)
3356 cache_novly_regions = read_memory_integer (SYMBOL_VALUE_ADDRESS (msym), 4);
c5aa993b
JM
3357 else
3358 return 0; /* failure */
c906108c
SS
3359 cache_ovly_region_table = (void *) xmalloc (cache_novly_regions * 12);
3360 if (cache_ovly_region_table != NULL)
3361 {
9b27852e 3362 msym = lookup_minimal_symbol ("_ovly_region_table", NULL, NULL);
c906108c
SS
3363 if (msym != NULL)
3364 {
3365 cache_ovly_region_table_base = SYMBOL_VALUE_ADDRESS (msym);
c5aa993b
JM
3366 read_target_long_array (cache_ovly_region_table_base,
3367 (int *) cache_ovly_region_table,
c906108c
SS
3368 cache_novly_regions * 3);
3369 }
c5aa993b
JM
3370 else
3371 return 0; /* failure */
c906108c 3372 }
c5aa993b
JM
3373 else
3374 return 0; /* failure */
3375 return 1; /* SUCCESS */
c906108c
SS
3376}
3377#endif
3378
3379/* Function: simple_overlay_update_1
3380 A helper function for simple_overlay_update. Assuming a cached copy
3381 of _ovly_table exists, look through it to find an entry whose vma,
3382 lma and size match those of OSECT. Re-read the entry and make sure
3383 it still matches OSECT (else the table may no longer be valid).
3384 Set OSECT's mapped state to match the entry. Return: 1 for
3385 success, 0 for failure. */
3386
3387static int
fba45db2 3388simple_overlay_update_1 (struct obj_section *osect)
c906108c
SS
3389{
3390 int i, size;
fbd35540
MS
3391 bfd *obfd = osect->objfile->obfd;
3392 asection *bsect = osect->the_bfd_section;
c906108c
SS
3393
3394 size = bfd_get_section_size_before_reloc (osect->the_bfd_section);
3395 for (i = 0; i < cache_novlys; i++)
fbd35540
MS
3396 if (cache_ovly_table[i][VMA] == bfd_section_vma (obfd, bsect)
3397 && cache_ovly_table[i][LMA] == bfd_section_lma (obfd, bsect)
3398 /* && cache_ovly_table[i][SIZE] == size */ )
c906108c
SS
3399 {
3400 read_target_long_array (cache_ovly_table_base + i * TARGET_LONG_BYTES,
3401 (int *) cache_ovly_table[i], 4);
fbd35540
MS
3402 if (cache_ovly_table[i][VMA] == bfd_section_vma (obfd, bsect)
3403 && cache_ovly_table[i][LMA] == bfd_section_lma (obfd, bsect)
3404 /* && cache_ovly_table[i][SIZE] == size */ )
c906108c
SS
3405 {
3406 osect->ovly_mapped = cache_ovly_table[i][MAPPED];
3407 return 1;
3408 }
fbd35540 3409 else /* Warning! Warning! Target's ovly table has changed! */
c906108c
SS
3410 return 0;
3411 }
3412 return 0;
3413}
3414
3415/* Function: simple_overlay_update
3416 If OSECT is NULL, then update all sections' mapped state
3417 (after re-reading the entire target _ovly_table).
3418 If OSECT is non-NULL, then try to find a matching entry in the
3419 cached ovly_table and update only OSECT's mapped state.
3420 If a cached entry can't be found or the cache isn't valid, then
3421 re-read the entire cache, and go ahead and update all sections. */
3422
3423static void
fba45db2 3424simple_overlay_update (struct obj_section *osect)
c906108c 3425{
c5aa993b 3426 struct objfile *objfile;
c906108c
SS
3427
3428 /* Were we given an osect to look up? NULL means do all of them. */
3429 if (osect)
3430 /* Have we got a cached copy of the target's overlay table? */
3431 if (cache_ovly_table != NULL)
3432 /* Does its cached location match what's currently in the symtab? */
c5aa993b 3433 if (cache_ovly_table_base ==
9b27852e 3434 SYMBOL_VALUE_ADDRESS (lookup_minimal_symbol ("_ovly_table", NULL, NULL)))
c906108c
SS
3435 /* Then go ahead and try to look up this single section in the cache */
3436 if (simple_overlay_update_1 (osect))
3437 /* Found it! We're done. */
3438 return;
3439
3440 /* Cached table no good: need to read the entire table anew.
3441 Or else we want all the sections, in which case it's actually
3442 more efficient to read the whole table in one block anyway. */
3443
0d43edd1
JB
3444 if (! simple_read_overlay_table ())
3445 return;
3446
c906108c
SS
3447 /* Now may as well update all sections, even if only one was requested. */
3448 ALL_OBJSECTIONS (objfile, osect)
3449 if (section_is_overlay (osect->the_bfd_section))
c5aa993b
JM
3450 {
3451 int i, size;
fbd35540
MS
3452 bfd *obfd = osect->objfile->obfd;
3453 asection *bsect = osect->the_bfd_section;
c5aa993b
JM
3454
3455 size = bfd_get_section_size_before_reloc (osect->the_bfd_section);
3456 for (i = 0; i < cache_novlys; i++)
fbd35540
MS
3457 if (cache_ovly_table[i][VMA] == bfd_section_vma (obfd, bsect)
3458 && cache_ovly_table[i][LMA] == bfd_section_lma (obfd, bsect)
3459 /* && cache_ovly_table[i][SIZE] == size */ )
3460 { /* obj_section matches i'th entry in ovly_table */
c5aa993b
JM
3461 osect->ovly_mapped = cache_ovly_table[i][MAPPED];
3462 break; /* finished with inner for loop: break out */
3463 }
3464 }
c906108c
SS
3465}
3466
086df311
DJ
3467/* Set the output sections and output offsets for section SECTP in
3468 ABFD. The relocation code in BFD will read these offsets, so we
3469 need to be sure they're initialized. We map each section to itself,
3470 with no offset; this means that SECTP->vma will be honored. */
3471
3472static void
3473symfile_dummy_outputs (bfd *abfd, asection *sectp, void *dummy)
3474{
3475 sectp->output_section = sectp;
3476 sectp->output_offset = 0;
3477}
3478
3479/* Relocate the contents of a debug section SECTP in ABFD. The
3480 contents are stored in BUF if it is non-NULL, or returned in a
3481 malloc'd buffer otherwise.
3482
3483 For some platforms and debug info formats, shared libraries contain
3484 relocations against the debug sections (particularly for DWARF-2;
3485 one affected platform is PowerPC GNU/Linux, although it depends on
3486 the version of the linker in use). Also, ELF object files naturally
3487 have unresolved relocations for their debug sections. We need to apply
3488 the relocations in order to get the locations of symbols correct. */
3489
3490bfd_byte *
3491symfile_relocate_debug_section (bfd *abfd, asection *sectp, bfd_byte *buf)
3492{
3493 /* We're only interested in debugging sections with relocation
3494 information. */
3495 if ((sectp->flags & SEC_RELOC) == 0)
3496 return NULL;
3497 if ((sectp->flags & SEC_DEBUGGING) == 0)
3498 return NULL;
3499
3500 /* We will handle section offsets properly elsewhere, so relocate as if
3501 all sections begin at 0. */
3502 bfd_map_over_sections (abfd, symfile_dummy_outputs, NULL);
3503
97606a13 3504 return bfd_simple_get_relocated_section_contents (abfd, sectp, buf, NULL);
086df311 3505}
c906108c
SS
3506
3507void
fba45db2 3508_initialize_symfile (void)
c906108c
SS
3509{
3510 struct cmd_list_element *c;
c5aa993b 3511
c906108c 3512 c = add_cmd ("symbol-file", class_files, symbol_file_command,
c5aa993b 3513 "Load symbol table from executable file FILE.\n\
c906108c
SS
3514The `file' command can also load symbol tables, as well as setting the file\n\
3515to execute.", &cmdlist);
5ba2abeb 3516 set_cmd_completer (c, filename_completer);
c906108c
SS
3517
3518 c = add_cmd ("add-symbol-file", class_files, add_symbol_file_command,
db162d44 3519 "Usage: add-symbol-file FILE ADDR [-s <SECT> <SECT_ADDR> -s <SECT> <SECT_ADDR> ...]\n\
c906108c 3520Load the symbols from FILE, assuming FILE has been dynamically loaded.\n\
2acceee2 3521ADDR is the starting address of the file's text.\n\
db162d44
EZ
3522The optional arguments are section-name section-address pairs and\n\
3523should be specified if the data and bss segments are not contiguous\n\
d4654627 3524with the text. SECT is a section name to be loaded at SECT_ADDR.",
c906108c 3525 &cmdlist);
5ba2abeb 3526 set_cmd_completer (c, filename_completer);
c906108c
SS
3527
3528 c = add_cmd ("add-shared-symbol-files", class_files,
3529 add_shared_symbol_files_command,
3530 "Load the symbols from shared objects in the dynamic linker's link map.",
c5aa993b 3531 &cmdlist);
c906108c
SS
3532 c = add_alias_cmd ("assf", "add-shared-symbol-files", class_files, 1,
3533 &cmdlist);
3534
3535 c = add_cmd ("load", class_files, load_command,
c5aa993b 3536 "Dynamically load FILE into the running program, and record its symbols\n\
c906108c 3537for access from GDB.", &cmdlist);
5ba2abeb 3538 set_cmd_completer (c, filename_completer);
c906108c
SS
3539
3540 add_show_from_set
3541 (add_set_cmd ("symbol-reloading", class_support, var_boolean,
c5aa993b
JM
3542 (char *) &symbol_reloading,
3543 "Set dynamic symbol table reloading multiple times in one run.",
c906108c
SS
3544 &setlist),
3545 &showlist);
3546
c5aa993b
JM
3547 add_prefix_cmd ("overlay", class_support, overlay_command,
3548 "Commands for debugging overlays.", &overlaylist,
c906108c
SS
3549 "overlay ", 0, &cmdlist);
3550
3551 add_com_alias ("ovly", "overlay", class_alias, 1);
3552 add_com_alias ("ov", "overlay", class_alias, 1);
3553
c5aa993b 3554 add_cmd ("map-overlay", class_support, map_overlay_command,
c906108c
SS
3555 "Assert that an overlay section is mapped.", &overlaylist);
3556
c5aa993b 3557 add_cmd ("unmap-overlay", class_support, unmap_overlay_command,
c906108c
SS
3558 "Assert that an overlay section is unmapped.", &overlaylist);
3559
c5aa993b 3560 add_cmd ("list-overlays", class_support, list_overlays_command,
c906108c
SS
3561 "List mappings of overlay sections.", &overlaylist);
3562
c5aa993b 3563 add_cmd ("manual", class_support, overlay_manual_command,
c906108c 3564 "Enable overlay debugging.", &overlaylist);
c5aa993b 3565 add_cmd ("off", class_support, overlay_off_command,
c906108c 3566 "Disable overlay debugging.", &overlaylist);
c5aa993b 3567 add_cmd ("auto", class_support, overlay_auto_command,
c906108c 3568 "Enable automatic overlay debugging.", &overlaylist);
c5aa993b 3569 add_cmd ("load-target", class_support, overlay_load_command,
c906108c
SS
3570 "Read the overlay mapping state from the target.", &overlaylist);
3571
3572 /* Filename extension to source language lookup table: */
3573 init_filename_language_table ();
3574 c = add_set_cmd ("extension-language", class_files, var_string_noescape,
c5aa993b 3575 (char *) &ext_args,
c906108c
SS
3576 "Set mapping between filename extension and source language.\n\
3577Usage: set extension-language .foo bar",
c5aa993b 3578 &setlist);
9f60d481 3579 set_cmd_cfunc (c, set_ext_lang_command);
c906108c 3580
c5aa993b 3581 add_info ("extensions", info_ext_lang_command,
c906108c 3582 "All filename extensions associated with a source language.");
917317f4
JM
3583
3584 add_show_from_set
3585 (add_set_cmd ("download-write-size", class_obscure,
3586 var_integer, (char *) &download_write_size,
3587 "Set the write size used when downloading a program.\n"
3588 "Only used when downloading a program onto a remote\n"
3589 "target. Specify zero, or a negative value, to disable\n"
3590 "blocked writes. The actual size of each transfer is also\n"
3591 "limited by the size of the target packet and the memory\n"
3592 "cache.\n",
3593 &setlist),
3594 &showlist);
5b5d99cf
JB
3595
3596 debug_file_directory = xstrdup (DEBUGDIR);
3597 c = (add_set_cmd
3598 ("debug-file-directory", class_support, var_string,
3599 (char *) &debug_file_directory,
3600 "Set the directory where separate debug symbols are searched for.\n"
3601 "Separate debug symbols are first searched for in the same\n"
3602 "directory as the binary, then in the `" DEBUG_SUBDIRECTORY
3603 "' subdirectory,\n"
3604 "and lastly at the path of the directory of the binary with\n"
3605 "the global debug-file directory prepended\n",
3606 &setlist));
3607 add_show_from_set (c, &showlist);
3608 set_cmd_completer (c, filename_completer);
c906108c 3609}
This page took 0.610205 seconds and 4 git commands to generate.