* archive.c, bfd.c, bout.c, coffcode.h, init.c, reloc.c,
[deliverable/binutils-gdb.git] / gdb / symfile.c
CommitLineData
bd5635a1 1/* Generic symbol file reading for the GNU debugger, GDB.
30875e1c 2 Copyright 1990, 1991, 1992 Free Software Foundation, Inc.
bd5635a1
RP
3 Contributed by Cygnus Support, using pieces from other GDB modules.
4
5This file is part of GDB.
6
61a7292f 7This program is free software; you can redistribute it and/or modify
bd5635a1 8it under the terms of the GNU General Public License as published by
61a7292f
SG
9the Free Software Foundation; either version 2 of the License, or
10(at your option) any later version.
bd5635a1 11
61a7292f 12This program is distributed in the hope that it will be useful,
bd5635a1
RP
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
61a7292f
SG
18along with this program; if not, write to the Free Software
19Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
bd5635a1 20
bd5635a1
RP
21#include "defs.h"
22#include "symtab.h"
30875e1c 23#include "gdbtypes.h"
bd5635a1
RP
24#include "gdbcore.h"
25#include "frame.h"
26#include "target.h"
27#include "value.h"
28#include "symfile.h"
bf349b77 29#include "objfiles.h"
bd5635a1
RP
30#include "gdbcmd.h"
31#include "breakpoint.h"
32
33#include <obstack.h>
34#include <assert.h>
35
36#include <sys/types.h>
37#include <fcntl.h>
38#include <string.h>
39#include <sys/stat.h>
40
30875e1c
SG
41/* Global variables owned by this file */
42
80d68b1d 43int readnow_symbol_files; /* Read full symbols immediately */
d47d5315 44
30875e1c 45/* External variables and functions referenced. */
bd5635a1 46
30875e1c 47extern int info_verbose;
bd5635a1
RP
48
49/* Functions this file defines */
7d9884b9 50
30875e1c
SG
51static void
52load_command PARAMS ((char *, int));
53
54static void
55add_symbol_file_command PARAMS ((char *, int));
56
30875e1c
SG
57static void
58cashier_psymtab PARAMS ((struct partial_symtab *));
bd5635a1 59
30875e1c
SG
60static int
61compare_psymbols PARAMS ((const void *, const void *));
bd5635a1 62
30875e1c
SG
63static int
64compare_symbols PARAMS ((const void *, const void *));
65
b0246b3b
FF
66static bfd *
67symfile_bfd_open PARAMS ((char *));
30875e1c 68
80d68b1d
FF
69static void
70find_sym_fns PARAMS ((struct objfile *));
30875e1c
SG
71
72static void
73clear_symtab_users_once PARAMS ((void));
bd5635a1 74
80d68b1d
FF
75/* List of all available sym_fns. On gdb startup, each object file reader
76 calls add_symtab_fns() to register information on each format it is
77 prepared to read. */
bd5635a1 78
80d68b1d 79static struct sym_fns *symtab_fns = NULL;
bd5635a1 80
bd5635a1
RP
81/* Structures with which to manage partial symbol allocation. */
82
83struct psymbol_allocation_list global_psymbols = {0}, static_psymbols = {0};
84
61a7292f
SG
85/* Flag for whether user will be reloading symbols multiple times.
86 Defaults to ON for VxWorks, otherwise OFF. */
87
88#ifdef SYMBOL_RELOADING_DEFAULT
89int symbol_reloading = SYMBOL_RELOADING_DEFAULT;
90#else
91int symbol_reloading = 0;
92#endif
93
bd5635a1
RP
94/* Structure to manage complaints about symbol file contents. */
95
96struct complaint complaint_root[1] = {
30875e1c 97 {(char *) 0, 0, complaint_root},
bd5635a1
RP
98};
99
9d199712
JG
100/* Some actual complaints. */
101
102struct complaint oldsyms_complaint = {
103 "Replacing old symbols for `%s'", 0, 0 };
104
105struct complaint empty_symtab_complaint = {
106 "Empty symbol table found for `%s'", 0, 0 };
107
bd5635a1
RP
108\f
109/* In the following sort, we always make sure that
110 register debug symbol declarations always come before regular
111 debug symbol declarations (as might happen when parameters are
30875e1c
SG
112 then put into registers by the compiler).
113
114 Since this function is called from within qsort, in an ANSI environment
115 it must conform to the prototype for qsort, which specifies that the
116 comparison function takes two "void *" pointers. */
bd5635a1
RP
117
118static int
30875e1c
SG
119compare_symbols (s1p, s2p)
120 const PTR s1p;
121 const PTR s2p;
bd5635a1 122{
30875e1c 123 register struct symbol **s1, **s2;
bd5635a1
RP
124 register int namediff;
125
30875e1c
SG
126 s1 = (struct symbol **) s1p;
127 s2 = (struct symbol **) s2p;
128
bd5635a1
RP
129 /* Compare the initial characters. */
130 namediff = SYMBOL_NAME (*s1)[0] - SYMBOL_NAME (*s2)[0];
131 if (namediff != 0) return namediff;
132
133 /* If they match, compare the rest of the names. */
134 namediff = strcmp (SYMBOL_NAME (*s1), SYMBOL_NAME (*s2));
135 if (namediff != 0) return namediff;
136
137 /* For symbols of the same name, registers should come first. */
138 return ((SYMBOL_CLASS (*s2) == LOC_REGISTER)
139 - (SYMBOL_CLASS (*s1) == LOC_REGISTER));
140}
141
30875e1c
SG
142/*
143
144LOCAL FUNCTION
145
146 compare_psymbols -- compare two partial symbols by name
147
148DESCRIPTION
149
150 Given pointer to two partial symbol table entries, compare
151 them by name and return -N, 0, or +N (ala strcmp). Typically
152 used by sorting routines like qsort().
153
154NOTES
155
156 Does direct compare of first two characters before punting
157 and passing to strcmp for longer compares. Note that the
158 original version had a bug whereby two null strings or two
159 identically named one character strings would return the
160 comparison of memory following the null byte.
161
162 */
163
164static int
165compare_psymbols (s1p, s2p)
166 const PTR s1p;
167 const PTR s2p;
168{
169 register char *st1 = SYMBOL_NAME ((struct partial_symbol *) s1p);
170 register char *st2 = SYMBOL_NAME ((struct partial_symbol *) s2p);
171
172 if ((st1[0] - st2[0]) || !st1[0])
173 {
174 return (st1[0] - st2[0]);
175 }
176 else if ((st1[1] - st2[1]) || !st1[1])
177 {
178 return (st1[1] - st2[1]);
179 }
180 else
181 {
182 return (strcmp (st1 + 2, st2 + 2));
183 }
184}
185
186void
187sort_pst_symbols (pst)
188 struct partial_symtab *pst;
189{
190 /* Sort the global list; don't sort the static list */
191
192 qsort (pst -> objfile -> global_psymbols.list + pst -> globals_offset,
193 pst -> n_global_syms, sizeof (struct partial_symbol),
194 compare_psymbols);
195}
196
bd5635a1
RP
197/* Call sort_block_syms to sort alphabetically the symbols of one block. */
198
199void
200sort_block_syms (b)
201 register struct block *b;
202{
203 qsort (&BLOCK_SYM (b, 0), BLOCK_NSYMS (b),
204 sizeof (struct symbol *), compare_symbols);
205}
206
207/* Call sort_symtab_syms to sort alphabetically
208 the symbols of each block of one symtab. */
209
210void
211sort_symtab_syms (s)
212 register struct symtab *s;
213{
c9bd6710
JG
214 register struct blockvector *bv;
215 int nbl;
bd5635a1
RP
216 int i;
217 register struct block *b;
218
c9bd6710
JG
219 if (s == 0)
220 return;
221 bv = BLOCKVECTOR (s);
222 nbl = BLOCKVECTOR_NBLOCKS (bv);
bd5635a1
RP
223 for (i = 0; i < nbl; i++)
224 {
225 b = BLOCKVECTOR_BLOCK (bv, i);
226 if (BLOCK_SHOULD_SORT (b))
227 sort_block_syms (b);
228 }
229}
230
231void
232sort_all_symtab_syms ()
233{
234 register struct symtab *s;
30875e1c 235 register struct objfile *objfile;
bd5635a1 236
30875e1c 237 for (objfile = object_files; objfile != NULL; objfile = objfile -> next)
bd5635a1 238 {
30875e1c
SG
239 for (s = objfile -> symtabs; s != NULL; s = s -> next)
240 {
241 sort_symtab_syms (s);
242 }
bd5635a1
RP
243 }
244}
245
246/* Make a copy of the string at PTR with SIZE characters in the symbol obstack
247 (and add a null character at the end in the copy).
248 Returns the address of the copy. */
249
250char *
30875e1c 251obsavestring (ptr, size, obstackp)
bd5635a1
RP
252 char *ptr;
253 int size;
30875e1c 254 struct obstack *obstackp;
bd5635a1 255{
30875e1c 256 register char *p = (char *) obstack_alloc (obstackp, size + 1);
bd5635a1
RP
257 /* Open-coded bcopy--saves function call time.
258 These strings are usually short. */
259 {
260 register char *p1 = ptr;
261 register char *p2 = p;
262 char *end = ptr + size;
263 while (p1 != end)
264 *p2++ = *p1++;
265 }
266 p[size] = 0;
267 return p;
268}
269
270/* Concatenate strings S1, S2 and S3; return the new string.
271 Space is found in the symbol_obstack. */
272
273char *
30875e1c
SG
274obconcat (obstackp, s1, s2, s3)
275 struct obstack *obstackp;
276 const char *s1, *s2, *s3;
bd5635a1
RP
277{
278 register int len = strlen (s1) + strlen (s2) + strlen (s3) + 1;
30875e1c 279 register char *val = (char *) obstack_alloc (obstackp, len);
bd5635a1
RP
280 strcpy (val, s1);
281 strcat (val, s2);
282 strcat (val, s3);
283 return val;
284}
bd5635a1
RP
285
286/* Get the symbol table that corresponds to a partial_symtab.
287 This is fast after the first time you do it. In fact, there
288 is an even faster macro PSYMTAB_TO_SYMTAB that does the fast
289 case inline. */
290
291struct symtab *
292psymtab_to_symtab (pst)
293 register struct partial_symtab *pst;
294{
bd5635a1
RP
295 /* If it's been looked up before, return it. */
296 if (pst->symtab)
297 return pst->symtab;
298
299 /* If it has not yet been read in, read it. */
300 if (!pst->readin)
301 {
302 (*pst->read_symtab) (pst);
303 }
304
61a7292f 305 return pst->symtab;
bd5635a1
RP
306}
307
bf349b77
FF
308/* Initialize entry point information for this objfile. */
309
310void
311init_entry_point_info (objfile)
312 struct objfile *objfile;
313{
314 /* Save startup file's range of PC addresses to help blockframe.c
315 decide where the bottom of the stack is. */
316
317 if (bfd_get_file_flags (objfile -> obfd) & EXEC_P)
318 {
319 /* Executable file -- record its entry point so we'll recognize
320 the startup file because it contains the entry point. */
321 objfile -> ei.entry_point = bfd_get_start_address (objfile -> obfd);
322 }
323 else
324 {
325 /* Examination of non-executable.o files. Short-circuit this stuff. */
326 /* ~0 will not be in any file, we hope. */
327 objfile -> ei.entry_point = ~0;
328 /* set the startup file to be an empty range. */
329 objfile -> ei.entry_file_lowpc = 0;
330 objfile -> ei.entry_file_highpc = 0;
331 }
332}
333
bd5635a1
RP
334/* Process a symbol file, as either the main file or as a dynamically
335 loaded file.
336
b3fdaf3d
JK
337 NAME is the file name (which will be tilde-expanded and made
338 absolute herein) (but we don't free or modify NAME itself).
339 FROM_TTY says how verbose to be. MAINLINE specifies whether this
340 is the main symbol file, or whether it's an extra symbol file such
341 as dynamically loaded code. If !mainline, ADDR is the address
4369a140
JG
342 where the text segment was loaded. If VERBO, the caller has printed
343 a verbose message about the symbol reading (and complaints can be
344 more terse about it). */
bd5635a1
RP
345
346void
4369a140 347syms_from_objfile (objfile, addr, mainline, verbo)
7d9884b9 348 struct objfile *objfile;
bd5635a1
RP
349 CORE_ADDR addr;
350 int mainline;
4369a140 351 int verbo;
bd5635a1 352{
bd5635a1 353 asection *text_sect;
bd5635a1 354
bd5635a1
RP
355 /* There is a distinction between having no symbol table
356 (we refuse to read the file, leaving the old set of symbols around)
357 and having no debugging symbols in your symbol table (we read
bf349b77
FF
358 the file and end up with a mostly empty symbol table).
359
360 FIXME: This strategy works correctly when the debugging symbols are
361 intermixed with "normal" symbols. However, when the debugging symbols
362 are separate, such as with ELF/DWARF, it is perfectly plausible for
363 the symbol table to be missing but still have all the DWARF info
364 intact. Thus in general it is wrong to assume that having no symbol
365 table implies no debugging information. */
bd5635a1 366
b0246b3b 367 if (!(bfd_get_file_flags (objfile -> obfd) & HAS_SYMS))
d47d5315
JG
368 return;
369
bf349b77 370 init_entry_point_info (objfile);
80d68b1d 371 find_sym_fns (objfile);
bd5635a1
RP
372
373 if (mainline)
374 {
375 /* Since no error yet, throw away the old symbol table. */
376
80d68b1d
FF
377 if (symfile_objfile != NULL)
378 {
379 free_objfile (symfile_objfile);
380 symfile_objfile = NULL;
381 }
bd5635a1 382
80d68b1d 383 (*objfile -> sf -> sym_new_init) (objfile);
bd5635a1
RP
384
385 /* For mainline, caller didn't know the specified address of the
386 text section. We fix that here. */
80d68b1d 387
b0246b3b
FF
388 text_sect = bfd_get_section_by_name (objfile -> obfd, ".text");
389 addr = bfd_section_vma (objfile -> obfd, text_sect);
bd5635a1
RP
390 }
391
80d68b1d
FF
392 /* Initialize symbol reading routines for this objfile, allow complaints to
393 appear for this new file, and record how verbose to be, then do the
394 initial symbol reading for this file. */
4369a140 395
80d68b1d
FF
396 (*objfile -> sf -> sym_init) (objfile);
397 clear_complaints (1, verbo);
398 (*objfile -> sf -> sym_read) (objfile, addr, mainline);
bd5635a1
RP
399
400 /* Don't allow char * to have a typename (else would get caddr_t.) */
401 /* Ditto void *. FIXME should do this for all the builtin types. */
402
403 TYPE_NAME (lookup_pointer_type (builtin_type_char)) = 0;
404 TYPE_NAME (lookup_pointer_type (builtin_type_void)) = 0;
405
406 if (mainline)
407 {
408 /* OK, make it the "real" symbol file. */
7d9884b9 409 symfile_objfile = objfile;
bd5635a1
RP
410 }
411
0ef6f019
JG
412 /* If we have wiped out any old symbol tables, clean up. */
413 clear_symtab_users_once ();
4369a140
JG
414
415 /* We're done reading the symbol file; finish off complaints. */
80d68b1d 416 clear_complaints (0, verbo);
30875e1c 417
318bf84f
FF
418 /* Fixup all the breakpoints that may have been redefined by this
419 symbol file. */
30875e1c 420
318bf84f 421 breakpoint_re_set ();
30875e1c 422}
d47d5315
JG
423
424/* Process a symbol file, as either the main file or as a dynamically
425 loaded file.
426
427 NAME is the file name (which will be tilde-expanded and made
428 absolute herein) (but we don't free or modify NAME itself).
429 FROM_TTY says how verbose to be. MAINLINE specifies whether this
430 is the main symbol file, or whether it's an extra symbol file such
431 as dynamically loaded code. If !mainline, ADDR is the address
30875e1c 432 where the text segment was loaded.
d47d5315 433
30875e1c
SG
434 Upon success, returns a pointer to the objfile that was added.
435 Upon failure, jumps back to command level (never returns). */
436
437struct objfile *
b0246b3b 438symbol_file_add (name, from_tty, addr, mainline, mapped, readnow)
d47d5315
JG
439 char *name;
440 int from_tty;
441 CORE_ADDR addr;
442 int mainline;
318bf84f 443 int mapped;
b0246b3b 444 int readnow;
d47d5315 445{
7d9884b9 446 struct objfile *objfile;
b0246b3b 447 struct partial_symtab *psymtab;
80d68b1d
FF
448 bfd *abfd;
449 int mapped_it;
d47d5315 450
80d68b1d
FF
451 /* Open a bfd for the file and then check to see if the file has a
452 symbol table. There is a distinction between having no symbol table
d47d5315 453 (we refuse to read the file, leaving the old set of symbols around)
80d68b1d
FF
454 and having no debugging symbols in the symbol table (we read the file
455 and end up with a mostly empty symbol table, but with lots of stuff in
456 the minimal symbol table). We need to make the decision about whether
457 to continue with the file before allocating and building a objfile.
458
459 FIXME: This strategy works correctly when the debugging symbols are
460 intermixed with "normal" symbols. However, when the debugging symbols
461 are separate, such as with ELF/DWARF, it is perfectly plausible for
462 the symbol table to be missing but still have all the DWARF info
463 intact. Thus in general it is wrong to assume that having no symbol
464 table implies no debugging information. */
465
466 abfd = symfile_bfd_open (name);
467 if (!(bfd_get_file_flags (abfd) & HAS_SYMS))
d47d5315
JG
468 {
469 error ("%s has no symbol-table", name);
470 }
471
80d68b1d
FF
472 if ((have_full_symbols () || have_partial_symbols ())
473 && mainline
474 && from_tty
475 && !query ("Load new symbol table from \"%s\"? ", name))
476 error ("Not confirmed.");
477
478 objfile = allocate_objfile (abfd, mapped);
479
318bf84f
FF
480 /* If the objfile uses a mapped symbol file, and we have a psymtab for
481 it, then skip reading any symbols at this time. */
d47d5315 482
bf349b77 483 if ((objfile -> flags & OBJF_MAPPED) && (objfile -> flags & OBJF_SYMS))
d47d5315 484 {
80d68b1d 485 /* We mapped in an existing symbol table file that already has had
bf349b77
FF
486 initial symbol reading performed, so we can skip that part. Notify
487 the user that instead of reading the symbols, they have been mapped.
488 */
318bf84f
FF
489 if (from_tty || info_verbose)
490 {
80d68b1d
FF
491 printf_filtered ("Mapped symbols for %s...", name);
492 wrap_here ("");
318bf84f
FF
493 fflush (stdout);
494 }
d47d5315 495 }
318bf84f 496 else
bd5635a1 497 {
80d68b1d 498 /* We either created a new mapped symbol table, mapped an existing
bf349b77
FF
499 symbol table file which has not had initial symbol reading
500 performed, or need to read an unmapped symbol table. */
318bf84f
FF
501 if (from_tty || info_verbose)
502 {
503 printf_filtered ("Reading symbols from %s...", name);
504 wrap_here ("");
505 fflush (stdout);
506 }
318bf84f 507 syms_from_objfile (objfile, addr, mainline, from_tty);
bf349b77 508 objfile -> flags |= OBJF_SYMS;
80d68b1d
FF
509 }
510
511 /* We now have at least a partial symbol table. Check to see if the
512 user requested that all symbols be read on initial access via either
513 the gdb startup command line or on a per symbol file basis. Expand
514 all partial symbol tables for this objfile if so. */
b0246b3b 515
bf349b77 516 if (readnow || readnow_symbol_files)
80d68b1d 517 {
318bf84f
FF
518 if (from_tty || info_verbose)
519 {
80d68b1d
FF
520 printf_filtered ("expanding to full symbols...");
521 wrap_here ("");
318bf84f
FF
522 fflush (stdout);
523 }
80d68b1d
FF
524
525 for (psymtab = objfile -> psymtabs;
526 psymtab != NULL;
527 psymtab = psymtab -> next)
528 {
529 (void) psymtab_to_symtab (psymtab);
530 }
531 }
532
533 if (from_tty || info_verbose)
534 {
535 printf_filtered ("done.\n");
536 fflush (stdout);
bd5635a1 537 }
80d68b1d 538
30875e1c 539 return (objfile);
bd5635a1
RP
540}
541
542/* This is the symbol-file command. Read the file, analyze its symbols,
30875e1c 543 and add a struct symtab to a symtab list. */
bd5635a1
RP
544
545void
30875e1c
SG
546symbol_file_command (args, from_tty)
547 char *args;
bd5635a1
RP
548 int from_tty;
549{
30875e1c 550 char **argv;
b0246b3b 551 char *name = NULL;
30875e1c
SG
552 struct cleanup *cleanups;
553 struct objfile *objfile;
318bf84f 554 int mapped = 0;
30875e1c 555 int readnow = 0;
bd5635a1
RP
556
557 dont_repeat ();
558
30875e1c 559 if (args == NULL)
bd5635a1 560 {
cba0d141
JG
561 if ((have_full_symbols () || have_partial_symbols ())
562 && from_tty
563 && !query ("Discard symbol table from `%s'? ",
564 symfile_objfile -> name))
565 error ("Not confirmed.");
566 free_all_objfiles ();
30875e1c 567 symfile_objfile = NULL;
bd5635a1 568 }
30875e1c
SG
569 else
570 {
571 if ((argv = buildargv (args)) == NULL)
572 {
318bf84f 573 nomem (0);
30875e1c
SG
574 }
575 cleanups = make_cleanup (freeargv, (char *) argv);
b0246b3b 576 while (*argv != NULL)
30875e1c 577 {
b0246b3b 578 if (strcmp (*argv, "-mapped") == 0)
30875e1c 579 {
318bf84f 580 mapped = 1;
30875e1c 581 }
b0246b3b 582 else if (strcmp (*argv, "-readnow") == 0)
30875e1c
SG
583 {
584 readnow = 1;
585 }
b0246b3b
FF
586 else if (**argv == '-')
587 {
588 error ("unknown option `%s'", *argv);
589 }
590 else
591 {
592 name = *argv;
593 }
594 argv++;
30875e1c 595 }
2403f49b 596
b0246b3b
FF
597 if (name == NULL)
598 {
599 error ("no symbol file name was specified");
600 }
601 else
30875e1c 602 {
318bf84f
FF
603 /* Getting new symbols may change our opinion about what is
604 frameless. */
605 reinit_frame_cache ();
606 objfile = symbol_file_add (name, from_tty, (CORE_ADDR)0, 1,
b0246b3b 607 mapped, readnow);
30875e1c
SG
608 }
609 do_cleanups (cleanups);
610 }
bd5635a1
RP
611}
612
b0246b3b
FF
613/* Open file specified by NAME and hand it off to BFD for preliminary
614 analysis. Result is a newly initialized bfd *, which includes a newly
615 malloc'd` copy of NAME (tilde-expanded and made absolute).
7d9884b9 616 In case of trouble, error() is called. */
bd5635a1 617
b0246b3b
FF
618static bfd *
619symfile_bfd_open (name)
bd5635a1
RP
620 char *name;
621{
622 bfd *sym_bfd;
623 int desc;
624 char *absolute_name;
625
7d9884b9 626 name = tilde_expand (name); /* Returns 1st new malloc'd copy */
bd5635a1 627
7d9884b9 628 /* Look down path for it, allocate 2nd new malloc'd copy. */
bd5635a1 629 desc = openp (getenv ("PATH"), 1, name, O_RDONLY, 0, &absolute_name);
b0246b3b
FF
630 if (desc < 0)
631 {
632 make_cleanup (free, name);
633 perror_with_name (name);
634 }
7d9884b9 635 free (name); /* Free 1st new malloc'd copy */
30875e1c 636 name = absolute_name; /* Keep 2nd malloc'd copy in bfd */
bd5635a1
RP
637
638 sym_bfd = bfd_fdopenr (name, NULL, desc);
639 if (!sym_bfd)
640 {
641 close (desc);
7d9884b9 642 make_cleanup (free, name);
b0246b3b
FF
643 error ("\"%s\": can't open to read symbols: %s.", name,
644 bfd_errmsg (bfd_error));
bd5635a1 645 }
bd5635a1 646
b0246b3b
FF
647 if (!bfd_check_format (sym_bfd, bfd_object))
648 {
649 bfd_close (sym_bfd); /* This also closes desc */
650 make_cleanup (free, name);
651 error ("\"%s\": can't read symbols: %s.", name,
652 bfd_errmsg (bfd_error));
653 }
7d9884b9 654
b0246b3b 655 return (sym_bfd);
7d9884b9
JG
656}
657
80d68b1d
FF
658/* Link a new symtab_fns into the global symtab_fns list. Called on gdb
659 startup by the _initialize routine in each object file format reader,
660 to register information about each format the the reader is prepared
661 to handle. */
bd5635a1
RP
662
663void
664add_symtab_fns (sf)
665 struct sym_fns *sf;
666{
667 sf->next = symtab_fns;
668 symtab_fns = sf;
669}
670
671
672/* Initialize to read symbols from the symbol file sym_bfd. It either
80d68b1d
FF
673 returns or calls error(). The result is an initialized struct sym_fns
674 in the objfile structure, that contains cached information about the
675 symbol file. */
bd5635a1 676
80d68b1d
FF
677static void
678find_sym_fns (objfile)
7d9884b9 679 struct objfile *objfile;
bd5635a1
RP
680{
681 struct sym_fns *sf, *sf2;
682
80d68b1d 683 for (sf = symtab_fns; sf != NULL; sf = sf -> next)
bd5635a1 684 {
80d68b1d
FF
685 if (strncmp (bfd_get_target (objfile -> obfd),
686 sf -> sym_name, sf -> sym_namelen) == 0)
bd5635a1 687 {
80d68b1d
FF
688 objfile -> sf = sf;
689 return;
bd5635a1
RP
690 }
691 }
c9bd6710 692 error ("I'm sorry, Dave, I can't do that. Symbol format `%s' unknown.",
b0246b3b 693 bfd_get_target (objfile -> obfd));
bd5635a1
RP
694}
695\f
696/* This function runs the load command of our current target. */
697
30875e1c 698static void
bd5635a1
RP
699load_command (arg, from_tty)
700 char *arg;
701 int from_tty;
702{
703 target_load (arg, from_tty);
704}
705
61a7292f
SG
706/* This function allows the addition of incrementally linked object files.
707 It does not modify any state in the target, only in the debugger. */
bd5635a1 708
e1ce8aa5 709/* ARGSUSED */
30875e1c 710static void
b0246b3b
FF
711add_symbol_file_command (args, from_tty)
712 char *args;
bd5635a1
RP
713 int from_tty;
714{
b0246b3b 715 char *name = NULL;
bd5635a1 716 CORE_ADDR text_addr;
b0246b3b
FF
717 char *arg;
718 int readnow;
719 int mapped;
bd5635a1 720
b0246b3b 721 dont_repeat ();
61a7292f 722
b0246b3b
FF
723 if (args == NULL)
724 {
725 error ("add-symbol-file takes a file name and an address");
726 }
bd5635a1 727
b0246b3b 728 /* Make a copy of the string that we can safely write into. */
bd5635a1 729
b0246b3b
FF
730 args = strdup (args);
731 make_cleanup (free, args);
732
733 /* Pick off any -option args and the file name. */
734
735 while ((*args != '\000') && (name == NULL))
736 {
737 while (isspace (*args)) {args++;}
738 arg = args;
739 while ((*args != '\000') && !isspace (*args)) {args++;}
740 if (*args != '\000')
741 {
742 *args++ = '\000';
743 }
744 if (*arg != '-')
745 {
746 name = arg;
747 }
748 else if (strcmp (arg, "-mapped") == 0)
749 {
750 mapped = 1;
751 }
752 else if (strcmp (arg, "-readnow") == 0)
753 {
754 readnow = 1;
755 }
756 else
757 {
758 error ("unknown option `%s'", arg);
759 }
760 }
bd5635a1 761
b0246b3b
FF
762 /* After picking off any options and the file name, args should be
763 left pointing at the remainder of the command line, which should
764 be the address expression to evaluate. */
bd5635a1 765
b0246b3b
FF
766 if ((name == NULL) || (*args == '\000') )
767 {
768 error ("add-symbol-file takes a file name and an address");
769 }
770 name = tilde_expand (name);
771 make_cleanup (free, name);
bd5635a1 772
b0246b3b 773 text_addr = parse_and_eval_address (args);
bd5635a1 774
d8ce1326
JG
775 if (!query ("add symbol table from file \"%s\" at text_addr = %s?\n",
776 name, local_hex_string (text_addr)))
bd5635a1
RP
777 error ("Not confirmed.");
778
b0246b3b
FF
779 /* Getting new symbols may change our opinion about what is
780 frameless. */
781
782 reinit_frame_cache ();
783
784 (void) symbol_file_add (name, 0, text_addr, 0, mapped, readnow);
bd5635a1
RP
785}
786\f
7d9884b9 787/* Re-read symbols if a symbol-file has changed. */
bd5635a1
RP
788void
789reread_symbols ()
790{
7d9884b9
JG
791 struct objfile *objfile;
792 long new_modtime;
793 int reread_one = 0;
cba0d141
JG
794 struct stat new_statbuf;
795 int res;
bd5635a1
RP
796
797 /* With the addition of shared libraries, this should be modified,
798 the load time should be saved in the partial symbol tables, since
799 different tables may come from different source files. FIXME.
800 This routine should then walk down each partial symbol table
30875e1c 801 and see if the symbol table that it originates from has been changed */
bd5635a1 802
30875e1c 803the_big_top:
7d9884b9
JG
804 for (objfile = object_files; objfile; objfile = objfile->next) {
805 if (objfile->obfd) {
1eeba686 806#ifdef IBM6000_TARGET
318bf84f
FF
807 /* If this object is from a shared library, then you should
808 stat on the library name, not member name. */
809
810 if (objfile->obfd->my_archive)
811 res = stat (objfile->obfd->my_archive->filename, &new_statbuf);
812 else
813#endif
cba0d141
JG
814 res = stat (objfile->name, &new_statbuf);
815 if (res != 0) {
816 /* FIXME, should use print_sys_errmsg but it's not filtered. */
817 printf_filtered ("`%s' has disappeared; keeping its symbols.\n",
818 objfile->name);
819 continue;
820 }
821 new_modtime = new_statbuf.st_mtime;
7d9884b9
JG
822 if (new_modtime != objfile->mtime) {
823 printf_filtered ("`%s' has changed; re-reading symbols.\n",
824 objfile->name);
825 /* FIXME, this should use a different command...that would only
30875e1c
SG
826 affect this objfile's symbols, and would reset objfile->mtime.
827 (objfile->mtime = new_modtime;)
828 HOWEVER, that command isn't written yet -- so call symbol_file_
829 command, and restart the scan from the top, because it munges
830 the object_files list. */
7d9884b9 831 symbol_file_command (objfile->name, 0);
7d9884b9 832 reread_one = 1;
30875e1c 833 goto the_big_top; /* Start over. */
7d9884b9 834 }
bd5635a1 835 }
7d9884b9
JG
836 }
837
838 if (reread_one)
839 breakpoint_re_set ();
bd5635a1 840}
bd5635a1
RP
841\f
842/* Functions to handle complaints during symbol reading. */
843
844/* How many complaints about a particular thing should be printed before
61a7292f
SG
845 we stop whining about it? Default is no whining at all, since so many
846 systems have ill-constructed symbol files. */
bd5635a1 847
61a7292f 848static unsigned stop_whining = 0;
bd5635a1 849
4369a140
JG
850/* Should each complaint be self explanatory, or should we assume that
851 a series of complaints is being produced?
852 case 0: self explanatory message.
853 case 1: First message of a series that must start off with explanation.
854 case 2: Subsequent message, when user already knows we are reading
855 symbols and we can just state our piece. */
856
857static int complaint_series = 0;
858
bd5635a1 859/* Print a complaint about the input symbols, and link the complaint block
7d9884b9 860 into a chain for later handling. */
bd5635a1 861
7d9884b9 862void
bd5635a1
RP
863complain (complaint, val)
864 struct complaint *complaint;
865 char *val;
866{
867 complaint->counter++;
868 if (complaint->next == 0) {
869 complaint->next = complaint_root->next;
870 complaint_root->next = complaint;
871 }
872 if (complaint->counter > stop_whining)
7d9884b9 873 return;
bd5635a1 874 wrap_here ("");
4369a140
JG
875
876 switch (complaint_series + (info_verbose << 1)) {
877
878 /* Isolated messages, must be self-explanatory. */
879 case 0:
880 puts_filtered ("During symbol reading, ");
881 wrap_here("");
882 printf_filtered (complaint->message, val);
883 puts_filtered (".\n");
884 break;
885
886 /* First of a series, without `set verbose'. */
887 case 1:
bd5635a1 888 puts_filtered ("During symbol reading...");
4369a140
JG
889 printf_filtered (complaint->message, val);
890 puts_filtered ("...");
891 wrap_here("");
892 complaint_series++;
893 break;
894
895 /* Subsequent messages of a series, or messages under `set verbose'.
896 (We'll already have produced a "Reading in symbols for XXX..." message
897 and will clean up at the end with a newline.) */
898 default:
899 printf_filtered (complaint->message, val);
900 puts_filtered ("...");
901 wrap_here("");
bd5635a1 902 }
bd5635a1
RP
903}
904
4369a140
JG
905/* Clear out all complaint counters that have ever been incremented.
906 If sym_reading is 1, be less verbose about successive complaints,
907 since the messages are appearing all together during a command that
908 reads symbols (rather than scattered around as psymtabs get fleshed
909 out into symtabs at random times). If noisy is 1, we are in a
910 noisy symbol reading command, and our caller will print enough
911 context for the user to figure it out. */
bd5635a1
RP
912
913void
4369a140
JG
914clear_complaints (sym_reading, noisy)
915 int sym_reading;
916 int noisy;
bd5635a1
RP
917{
918 struct complaint *p;
919
920 for (p = complaint_root->next; p != complaint_root; p = p->next)
921 p->counter = 0;
4369a140
JG
922
923 if (!sym_reading && !noisy && complaint_series > 1) {
924 /* Terminate previous series, since caller won't. */
925 puts_filtered ("\n");
926 }
927
928 complaint_series = sym_reading? 1 + noisy: 0;
bd5635a1
RP
929}
930\f
7d9884b9
JG
931enum language
932deduce_language_from_filename (filename)
933 char *filename;
934{
30875e1c 935 char *c = strrchr (filename, '.');
7d9884b9
JG
936
937 if (!c) ; /* Get default. */
938 else if(!strcmp(c,".mod"))
939 return language_m2;
940 else if(!strcmp(c,".c"))
941 return language_c;
942 else if(!strcmp(c,".cc") || !strcmp(c,".C"))
943 return language_cplus;
944
945 return language_unknown; /* default */
946}
947\f
d8ce1326
JG
948/* allocate_symtab:
949
950 Allocate and partly initialize a new symbol table. Return a pointer
951 to it. error() if no space.
952
953 Caller must set these fields:
954 LINETABLE(symtab)
955 symtab->blockvector
d8ce1326
JG
956 symtab->dirname
957 symtab->free_code
958 symtab->free_ptr
959 initialize any EXTRA_SYMTAB_INFO
960 possibly free_named_symtabs (symtab->filename);
d8ce1326
JG
961 */
962
963struct symtab *
30875e1c
SG
964allocate_symtab (filename, objfile)
965 char *filename;
966 struct objfile *objfile;
d8ce1326
JG
967{
968 register struct symtab *symtab;
d8ce1326 969
30875e1c
SG
970 symtab = (struct symtab *)
971 obstack_alloc (&objfile -> symbol_obstack, sizeof (struct symtab));
972 (void) memset (symtab, 0, sizeof (*symtab));
973 symtab -> filename = obsavestring (filename, strlen (filename),
974 &objfile -> symbol_obstack);
975 symtab -> fullname = NULL;
976 symtab -> language = deduce_language_from_filename (filename);
d8ce1326 977
7d9884b9 978 /* Hook it to the objfile it comes from */
30875e1c
SG
979
980 symtab -> objfile = objfile;
981 symtab -> next = objfile -> symtabs;
982 objfile -> symtabs = symtab;
7d9884b9
JG
983
984#ifdef INIT_EXTRA_SYMTAB_INFO
30875e1c 985 INIT_EXTRA_SYMTAB_INFO (symtab);
7d9884b9 986#endif
d8ce1326 987
30875e1c 988 return (symtab);
d8ce1326 989}
30875e1c
SG
990
991struct partial_symtab *
992allocate_psymtab (filename, objfile)
993 char *filename;
994 struct objfile *objfile;
995{
996 struct partial_symtab *psymtab;
997
cba0d141
JG
998 if (objfile -> free_psymtabs)
999 {
1000 psymtab = objfile -> free_psymtabs;
1001 objfile -> free_psymtabs = psymtab -> next;
1002 }
1003 else
1004 psymtab = (struct partial_symtab *)
1005 obstack_alloc (&objfile -> psymbol_obstack,
1006 sizeof (struct partial_symtab));
1007
30875e1c
SG
1008 (void) memset (psymtab, 0, sizeof (struct partial_symtab));
1009 psymtab -> filename = obsavestring (filename, strlen (filename),
1010 &objfile -> psymbol_obstack);
1011 psymtab -> symtab = NULL;
1012
1013 /* Hook it to the objfile it comes from */
1014
1015 psymtab -> objfile = objfile;
1016 psymtab -> next = objfile -> psymtabs;
1017 objfile -> psymtabs = psymtab;
1018
1019 return (psymtab);
1020}
1021
d8ce1326 1022\f
9d199712
JG
1023/* clear_symtab_users_once:
1024
1025 This function is run after symbol reading, or from a cleanup.
1026 If an old symbol table was obsoleted, the old symbol table
1027 has been blown away, but the other GDB data structures that may
1028 reference it have not yet been cleared or re-directed. (The old
1029 symtab was zapped, and the cleanup queued, in free_named_symtab()
1030 below.)
1031
1032 This function can be queued N times as a cleanup, or called
1033 directly; it will do all the work the first time, and then will be a
1034 no-op until the next time it is queued. This works by bumping a
1035 counter at queueing time. Much later when the cleanup is run, or at
1036 the end of symbol processing (in case the cleanup is discarded), if
1037 the queued count is greater than the "done-count", we do the work
1038 and set the done-count to the queued count. If the queued count is
1039 less than or equal to the done-count, we just ignore the call. This
1040 is needed because reading a single .o file will often replace many
1041 symtabs (one per .h file, for example), and we don't want to reset
1042 the breakpoints N times in the user's face.
1043
1044 The reason we both queue a cleanup, and call it directly after symbol
1045 reading, is because the cleanup protects us in case of errors, but is
1046 discarded if symbol reading is successful. */
1047
1048static int clear_symtab_users_queued;
1049static int clear_symtab_users_done;
1050
1051static void
1052clear_symtab_users_once ()
1053{
1054 /* Enforce once-per-`do_cleanups'-semantics */
1055 if (clear_symtab_users_queued <= clear_symtab_users_done)
1056 return;
1057 clear_symtab_users_done = clear_symtab_users_queued;
1058
1059 printf ("Resetting debugger state after updating old symbol tables\n");
1060
1061 /* Someday, we should do better than this, by only blowing away
1062 the things that really need to be blown. */
1063 clear_value_history ();
1064 clear_displays ();
1065 clear_internalvars ();
1066 breakpoint_re_set ();
1067 set_default_breakpoint (0, 0, 0, 0);
1068 current_source_symtab = 0;
1069}
1070
1071/* Delete the specified psymtab, and any others that reference it. */
1072
e1ce8aa5 1073static void
9d199712
JG
1074cashier_psymtab (pst)
1075 struct partial_symtab *pst;
1076{
1077 struct partial_symtab *ps, *pprev;
1078 int i;
1079
1080 /* Find its previous psymtab in the chain */
30875e1c 1081 for (ps = pst->objfile->psymtabs; ps; ps = ps->next) {
9d199712
JG
1082 if (ps == pst)
1083 break;
1084 pprev = ps;
1085 }
1086
1087 if (ps) {
1088 /* Unhook it from the chain. */
30875e1c
SG
1089 if (ps == pst->objfile->psymtabs)
1090 pst->objfile->psymtabs = ps->next;
9d199712
JG
1091 else
1092 pprev->next = ps->next;
1093
1094 /* FIXME, we can't conveniently deallocate the entries in the
1095 partial_symbol lists (global_psymbols/static_psymbols) that
1096 this psymtab points to. These just take up space until all
1097 the psymtabs are reclaimed. Ditto the dependencies list and
1098 filename, which are all in the psymbol_obstack. */
1099
1100 /* We need to cashier any psymtab that has this one as a dependency... */
1101again:
30875e1c 1102 for (ps = pst->objfile->psymtabs; ps; ps = ps->next) {
9d199712
JG
1103 for (i = 0; i < ps->number_of_dependencies; i++) {
1104 if (ps->dependencies[i] == pst) {
1105 cashier_psymtab (ps);
1106 goto again; /* Must restart, chain has been munged. */
1107 }
1108 }
1109 }
1110 }
1111}
1112
1113/* If a symtab or psymtab for filename NAME is found, free it along
1114 with any dependent breakpoints, displays, etc.
1115 Used when loading new versions of object modules with the "add-file"
1116 command. This is only called on the top-level symtab or psymtab's name;
1117 it is not called for subsidiary files such as .h files.
1118
1119 Return value is 1 if we blew away the environment, 0 if not.
30875e1c 1120 FIXME. The return valu appears to never be used.
9d199712
JG
1121
1122 FIXME. I think this is not the best way to do this. We should
1123 work on being gentler to the environment while still cleaning up
1124 all stray pointers into the freed symtab. */
1125
1126int
1127free_named_symtabs (name)
1128 char *name;
1129{
1130 register struct symtab *s;
1131 register struct symtab *prev;
1132 register struct partial_symtab *ps;
9d199712
JG
1133 struct blockvector *bv;
1134 int blewit = 0;
1135
30875e1c
SG
1136#if 0
1137 /* FIXME: With the new method of each objfile having it's own
1138 psymtab list, this function needs serious rethinking. In particular,
1139 why was it ever necessary to toss psymtabs with specific compilation
1140 unit filenames, as opposed to all psymtabs from a particular symbol
1141 file. */
1142
61a7292f
SG
1143 /* We only wack things if the symbol-reload switch is set. */
1144 if (!symbol_reloading)
1145 return 0;
1146
d11c44f1
JG
1147 /* Some symbol formats have trouble providing file names... */
1148 if (name == 0 || *name == '\0')
1149 return 0;
1150
9d199712
JG
1151 /* Look for a psymtab with the specified name. */
1152
1153again2:
1154 for (ps = partial_symtab_list; ps; ps = ps->next) {
1155 if (!strcmp (name, ps->filename)) {
1156 cashier_psymtab (ps); /* Blow it away...and its little dog, too. */
1157 goto again2; /* Must restart, chain has been munged */
1158 }
1159 }
1160
1161 /* Look for a symtab with the specified name. */
1162
1163 for (s = symtab_list; s; s = s->next)
1164 {
1165 if (!strcmp (name, s->filename))
1166 break;
1167 prev = s;
1168 }
1169
1170 if (s)
1171 {
1172 if (s == symtab_list)
1173 symtab_list = s->next;
1174 else
1175 prev->next = s->next;
1176
1177 /* For now, queue a delete for all breakpoints, displays, etc., whether
1178 or not they depend on the symtab being freed. This should be
1179 changed so that only those data structures affected are deleted. */
1180
1181 /* But don't delete anything if the symtab is empty.
1182 This test is necessary due to a bug in "dbxread.c" that
1183 causes empty symtabs to be created for N_SO symbols that
1184 contain the pathname of the object file. (This problem
1185 has been fixed in GDB 3.9x). */
1186
c9bd6710
JG
1187 bv = BLOCKVECTOR (s);
1188 if (BLOCKVECTOR_NBLOCKS (bv) > 2
9d199712
JG
1189 || BLOCK_NSYMS (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK))
1190 || BLOCK_NSYMS (BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK)))
1191 {
1192 complain (&oldsyms_complaint, name);
1193
1194 clear_symtab_users_queued++;
1195 make_cleanup (clear_symtab_users_once, 0);
1196 blewit = 1;
1197 } else {
1198 complain (&empty_symtab_complaint, name);
1199 }
1200
1201 free_symtab (s);
1202 }
1203 else
d8ce1326
JG
1204 {
1205 /* It is still possible that some breakpoints will be affected
1206 even though no symtab was found, since the file might have
1207 been compiled without debugging, and hence not be associated
1208 with a symtab. In order to handle this correctly, we would need
1209 to keep a list of text address ranges for undebuggable files.
1210 For now, we do nothing, since this is a fairly obscure case. */
1211 ;
1212 }
9d199712 1213
30875e1c 1214 /* FIXME, what about the minimal symbol table? */
9d199712 1215 return blewit;
30875e1c
SG
1216#else
1217 return (0);
1218#endif
9d199712
JG
1219}
1220\f
d4ea2aba
PB
1221/* Allocate and partially fill a partial symtab. It will be
1222 completely filled at the end of the symbol list.
1223
1224 SYMFILE_NAME is the name of the symbol-file we are reading from, and ADDR
1225 is the address relative to which its symbols are (incremental) or 0
1226 (normal). */
1227
1228
1229struct partial_symtab *
1230start_psymtab_common (objfile, addr,
1231 filename, textlow, global_syms, static_syms)
1232 struct objfile *objfile;
1233 CORE_ADDR addr;
1234 char *filename;
1235 CORE_ADDR textlow;
1236 struct partial_symbol *global_syms;
1237 struct partial_symbol *static_syms;
1238{
30875e1c
SG
1239 struct partial_symtab *psymtab;
1240
1241 psymtab = allocate_psymtab (filename, objfile);
1242 psymtab -> addr = addr;
1243 psymtab -> textlow = textlow;
1244 psymtab -> texthigh = psymtab -> textlow; /* default */
1245 psymtab -> globals_offset = global_syms - objfile -> global_psymbols.list;
1246 psymtab -> statics_offset = static_syms - objfile -> static_psymbols.list;
1247 return (psymtab);
7d9884b9
JG
1248}
1249
7d9884b9 1250\f
bd5635a1
RP
1251void
1252_initialize_symfile ()
1253{
1254
1255 add_com ("symbol-file", class_files, symbol_file_command,
30875e1c 1256 "Load symbol table from executable file FILE.\n\
bd5635a1
RP
1257The `file' command can also load symbol tables, as well as setting the file\n\
1258to execute.");
1259
e74d7b43 1260 add_com ("add-symbol-file", class_files, add_symbol_file_command,
bd5635a1
RP
1261 "Load the symbols from FILE, assuming FILE has been dynamically loaded.\n\
1262The second argument provides the starting address of the file's text.");
1263
1264 add_com ("load", class_files, load_command,
1265 "Dynamically load FILE into the running program, and record its symbols\n\
1266for access from GDB.");
1267
1268 add_show_from_set
4369a140 1269 (add_set_cmd ("complaints", class_support, var_zinteger,
bd5635a1
RP
1270 (char *)&stop_whining,
1271 "Set max number of complaints about incorrect symbols.",
1272 &setlist),
1273 &showlist);
1274
61a7292f
SG
1275 add_show_from_set
1276 (add_set_cmd ("symbol-reloading", class_support, var_boolean,
1277 (char *)&symbol_reloading,
1278 "Set dynamic symbol table reloading multiple times in one run.",
1279 &setlist),
1280 &showlist);
1281
bd5635a1 1282}
This page took 0.177078 seconds and 4 git commands to generate.