* signame.c: Include defs.h and param.h.
[deliverable/binutils-gdb.git] / gdb / symfile.c
CommitLineData
bd5635a1
RP
1/* Generic symbol file reading for the GNU debugger, GDB.
2 Copyright 1990, 1991 Free Software Foundation, Inc.
3 Contributed by Cygnus Support, using pieces from other GDB modules.
4
5This file is part of GDB.
6
7GDB is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation; either version 1, or (at your option)
10any later version.
11
12GDB is distributed in the hope that it will be useful,
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
18along with GDB; see the file COPYING. If not, write to
19the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
20
21#include <stdio.h>
22#include "defs.h"
23#include "symtab.h"
24#include "param.h"
25#include "gdbcore.h"
26#include "frame.h"
27#include "target.h"
28#include "value.h"
29#include "symfile.h"
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
41extern int info_verbose;
42
43extern int close ();
44extern void qsort ();
45extern char *getenv ();
46
47/* Functions this file defines */
48static bfd *symfile_open();
49static struct sym_fns *symfile_init();
9d199712 50static void clear_symtab_users_once();
bd5635a1
RP
51
52/* List of all available sym_fns. */
53
54struct sym_fns *symtab_fns = NULL;
55
56/* Saves the sym_fns of the current symbol table, so we can call
57 the right sym_discard function when we free it. */
58
59static struct sym_fns *symfile_fns;
60
61/* Allocate an obstack to hold objects that should be freed
62 when we load a new symbol table.
63 This includes the symbols made by dbxread
64 and the types that are not permanent. */
65
66struct obstack obstack1;
67
68struct obstack *symbol_obstack = &obstack1;
69
70/* This obstack will be used for partial_symbol objects. It can
71 probably actually be the same as the symbol_obstack above, but I'd
72 like to keep them seperate for now. If I want to later, I'll
73 replace one with the other. */
74
75struct obstack obstack2;
76
77struct obstack *psymbol_obstack = &obstack2;
78
79/* File name symbols were loaded from. */
80
81char *symfile = 0;
82
83/* The modification date of the file when they were loaded. */
84
85int symfile_mtime = 0;
86
87/* Structures with which to manage partial symbol allocation. */
88
89struct psymbol_allocation_list global_psymbols = {0}, static_psymbols = {0};
90
91/* Structure to manage complaints about symbol file contents. */
92
93struct complaint complaint_root[1] = {
94 {(char *)0, 0, complaint_root},
95};
96
9d199712
JG
97/* Some actual complaints. */
98
99struct complaint oldsyms_complaint = {
100 "Replacing old symbols for `%s'", 0, 0 };
101
102struct complaint empty_symtab_complaint = {
103 "Empty symbol table found for `%s'", 0, 0 };
104
bd5635a1
RP
105\f
106/* In the following sort, we always make sure that
107 register debug symbol declarations always come before regular
108 debug symbol declarations (as might happen when parameters are
109 then put into registers by the compiler). */
110
111static int
112compare_symbols (s1, s2)
113 struct symbol **s1, **s2;
114{
115 register int namediff;
116
117 /* Compare the initial characters. */
118 namediff = SYMBOL_NAME (*s1)[0] - SYMBOL_NAME (*s2)[0];
119 if (namediff != 0) return namediff;
120
121 /* If they match, compare the rest of the names. */
122 namediff = strcmp (SYMBOL_NAME (*s1), SYMBOL_NAME (*s2));
123 if (namediff != 0) return namediff;
124
125 /* For symbols of the same name, registers should come first. */
126 return ((SYMBOL_CLASS (*s2) == LOC_REGISTER)
127 - (SYMBOL_CLASS (*s1) == LOC_REGISTER));
128}
129
130/* Call sort_block_syms to sort alphabetically the symbols of one block. */
131
132void
133sort_block_syms (b)
134 register struct block *b;
135{
136 qsort (&BLOCK_SYM (b, 0), BLOCK_NSYMS (b),
137 sizeof (struct symbol *), compare_symbols);
138}
139
140/* Call sort_symtab_syms to sort alphabetically
141 the symbols of each block of one symtab. */
142
143void
144sort_symtab_syms (s)
145 register struct symtab *s;
146{
147 register struct blockvector *bv = BLOCKVECTOR (s);
148 int nbl = BLOCKVECTOR_NBLOCKS (bv);
149 int i;
150 register struct block *b;
151
152 for (i = 0; i < nbl; i++)
153 {
154 b = BLOCKVECTOR_BLOCK (bv, i);
155 if (BLOCK_SHOULD_SORT (b))
156 sort_block_syms (b);
157 }
158}
159
160void
161sort_all_symtab_syms ()
162{
163 register struct symtab *s;
164
165 for (s = symtab_list; s; s = s->next)
166 {
167 sort_symtab_syms (s);
168 }
169}
170
171/* Make a copy of the string at PTR with SIZE characters in the symbol obstack
172 (and add a null character at the end in the copy).
173 Returns the address of the copy. */
174
175char *
176obsavestring (ptr, size)
177 char *ptr;
178 int size;
179{
180 register char *p = (char *) obstack_alloc (symbol_obstack, size + 1);
181 /* Open-coded bcopy--saves function call time.
182 These strings are usually short. */
183 {
184 register char *p1 = ptr;
185 register char *p2 = p;
186 char *end = ptr + size;
187 while (p1 != end)
188 *p2++ = *p1++;
189 }
190 p[size] = 0;
191 return p;
192}
193
194/* Concatenate strings S1, S2 and S3; return the new string.
195 Space is found in the symbol_obstack. */
196
197char *
198obconcat (s1, s2, s3)
199 char *s1, *s2, *s3;
200{
201 register int len = strlen (s1) + strlen (s2) + strlen (s3) + 1;
202 register char *val = (char *) obstack_alloc (symbol_obstack, len);
203 strcpy (val, s1);
204 strcat (val, s2);
205 strcat (val, s3);
206 return val;
207}
208\f
209/* Accumulate the misc functions in bunches of 127.
210 At the end, copy them all into one newly allocated structure. */
211
212#define MISC_BUNCH_SIZE 127
213
214struct misc_bunch
215{
216 struct misc_bunch *next;
217 struct misc_function contents[MISC_BUNCH_SIZE];
218};
219
220/* Bunch currently being filled up.
221 The next field points to chain of filled bunches. */
222
223static struct misc_bunch *misc_bunch;
224
225/* Number of slots filled in current bunch. */
226
227static int misc_bunch_index;
228
229/* Total number of misc functions recorded so far. */
230
231static int misc_count;
232
233void
234init_misc_bunches ()
235{
236 misc_count = 0;
237 misc_bunch = 0;
238 misc_bunch_index = MISC_BUNCH_SIZE;
239}
240
241void
242prim_record_misc_function (name, address, misc_type)
243 char *name;
244 CORE_ADDR address;
245 enum misc_function_type misc_type;
246{
247 register struct misc_bunch *new;
248
249 if (misc_bunch_index == MISC_BUNCH_SIZE)
250 {
251 new = (struct misc_bunch *) xmalloc (sizeof (struct misc_bunch));
252 misc_bunch_index = 0;
253 new->next = misc_bunch;
254 misc_bunch = new;
255 }
256 misc_bunch->contents[misc_bunch_index].name = name;
257 misc_bunch->contents[misc_bunch_index].address = address;
258 misc_bunch->contents[misc_bunch_index].type = misc_type;
259 misc_bunch->contents[misc_bunch_index].misc_info = 0;
260 misc_bunch_index++;
261 misc_count++;
262}
263
264static int
265compare_misc_functions (fn1, fn2)
266 struct misc_function *fn1, *fn2;
267{
268 /* Return a signed result based on unsigned comparisons
269 so that we sort into unsigned numeric order. */
270 if (fn1->address < fn2->address)
271 return -1;
272 if (fn1->address > fn2->address)
273 return 1;
274 return 0;
275}
276
277/* ARGSUSED */
278void
279discard_misc_bunches (foo)
280 int foo;
281{
282 register struct misc_bunch *next;
283
284 while (misc_bunch)
285 {
286 next = misc_bunch->next;
287 free (misc_bunch);
288 misc_bunch = next;
289 }
290}
291
292/* INCLINK nonzero means bunches are from an incrementally-linked file.
293 Add them to the existing bunches.
294 Otherwise INCLINK is zero, and we start from scratch. */
295void
296condense_misc_bunches (inclink)
297 int inclink;
298{
299 register int i, j;
300 register struct misc_bunch *bunch;
301
302 if (inclink)
303 {
304 misc_function_vector
305 = (struct misc_function *)
306 xrealloc (misc_function_vector, (misc_count + misc_function_count)
307 * sizeof (struct misc_function));
308 j = misc_function_count;
309 }
310 else
311 {
312 misc_function_vector
313 = (struct misc_function *)
314 xmalloc (misc_count * sizeof (struct misc_function));
315 j = 0;
316 }
317
318 bunch = misc_bunch;
319 while (bunch)
320 {
321 for (i = 0; i < misc_bunch_index; i++, j++)
322 {
323 misc_function_vector[j] = bunch->contents[i];
324#ifdef NAMES_HAVE_UNDERSCORE
325 if (misc_function_vector[j].name[0] == '_')
326 misc_function_vector[j].name++;
327#endif
328 }
329 bunch = bunch->next;
330 misc_bunch_index = MISC_BUNCH_SIZE;
331 }
332
333 if (misc_function_count + misc_count != j) /* DEBUG */
334 printf_filtered ("Function counts are off! %d + %d != %d\n",
335 misc_function_count, misc_count, j);
336
337 misc_function_count = j;
338
339 /* Sort the misc functions by address. */
340
341 qsort (misc_function_vector, misc_function_count,
342 sizeof (struct misc_function),
343 compare_misc_functions);
344}
345
346
347/* Get the symbol table that corresponds to a partial_symtab.
348 This is fast after the first time you do it. In fact, there
349 is an even faster macro PSYMTAB_TO_SYMTAB that does the fast
350 case inline. */
351
352struct symtab *
353psymtab_to_symtab (pst)
354 register struct partial_symtab *pst;
355{
356 register struct symtab *result;
357
358 /* If it's been looked up before, return it. */
359 if (pst->symtab)
360 return pst->symtab;
361
362 /* If it has not yet been read in, read it. */
363 if (!pst->readin)
364 {
365 (*pst->read_symtab) (pst);
366 }
367
368 /* Search through list for correct name. */
369 for (result = symtab_list; result; result = result->next)
370 if (!strcmp (result->filename, pst->filename))
371 {
372 pst->symtab = result; /* Remember where it was. */
373 return result;
374 }
375
376 return 0;
377}
378
379/* Process a symbol file, as either the main file or as a dynamically
380 loaded file.
381
b3fdaf3d
JK
382 NAME is the file name (which will be tilde-expanded and made
383 absolute herein) (but we don't free or modify NAME itself).
384 FROM_TTY says how verbose to be. MAINLINE specifies whether this
385 is the main symbol file, or whether it's an extra symbol file such
386 as dynamically loaded code. If !mainline, ADDR is the address
bd5635a1
RP
387 where the text segment was loaded. */
388
389void
390symbol_file_add (name, from_tty, addr, mainline)
391 char *name;
392 int from_tty;
393 CORE_ADDR addr;
394 int mainline;
395{
396 bfd *sym_bfd;
397 asection *text_sect;
398 struct sym_fns *sf;
399 char *realname;
400
401 sym_bfd = symfile_open (name);
402
403 entry_point = bfd_get_start_address (sym_bfd);
404
405 if (mainline)
406 symfile_mtime = bfd_get_mtime (sym_bfd);
407
408 /* There is a distinction between having no symbol table
409 (we refuse to read the file, leaving the old set of symbols around)
410 and having no debugging symbols in your symbol table (we read
411 the file and end up with a mostly empty symbol table). */
412
413 if (!(bfd_get_file_flags (sym_bfd) & HAS_SYMS))
414 {
415 error ("%s has no symbol-table", name);
416 }
417
418 if ((symtab_list || partial_symtab_list)
419 && mainline
420 && from_tty
421 && !query ("Load new symbol table from \"%s\"? ", name))
422 error ("Not confirmed.");
423
424 if (from_tty)
425 {
0ef6f019
JG
426 printf_filtered ("Reading symbol data from %s...", name);
427 wrap_here ("");
bd5635a1
RP
428 fflush (stdout);
429 }
430
431 sf = symfile_init (sym_bfd);
432 realname = bfd_get_filename (sym_bfd);
433 realname = savestring (realname, strlen (realname));
434 /* FIXME, this probably creates a storage leak... */
435
436 if (mainline)
437 {
438 /* Since no error yet, throw away the old symbol table. */
439
440 if (symfile)
441 free (symfile);
442 symfile = 0;
443 free_all_symtabs ();
444 free_all_psymtabs ();
445
446 (*sf->sym_new_init) ();
447
448 /* For mainline, caller didn't know the specified address of the
449 text section. We fix that here. */
450 text_sect = bfd_get_section_by_name (sym_bfd, ".text");
451 addr = bfd_section_vma (sym_bfd, text_sect);
452 }
453
454 clear_complaints(); /* Allow complaints to appear for this new file. */
455
456 (*sf->sym_read) (sf, addr, mainline);
457
458 /* Don't allow char * to have a typename (else would get caddr_t.) */
459 /* Ditto void *. FIXME should do this for all the builtin types. */
460
461 TYPE_NAME (lookup_pointer_type (builtin_type_char)) = 0;
462 TYPE_NAME (lookup_pointer_type (builtin_type_void)) = 0;
463
464 if (mainline)
465 {
466 /* OK, make it the "real" symbol file. */
467 symfile = realname;
468 symfile_fns = sf;
469 }
470
0ef6f019
JG
471 /* If we have wiped out any old symbol tables, clean up. */
472 clear_symtab_users_once ();
473
bd5635a1
RP
474 if (from_tty)
475 {
0ef6f019 476 printf_filtered ("done.\n");
bd5635a1
RP
477 fflush (stdout);
478 }
479}
480
481/* This is the symbol-file command. Read the file, analyze its symbols,
482 and add a struct symtab to symtab_list. */
483
484void
485symbol_file_command (name, from_tty)
486 char *name;
487 int from_tty;
488{
489
490 dont_repeat ();
491
492 if (name == 0)
493 {
494 if ((symtab_list || partial_symtab_list)
495 && from_tty
496 && !query ("Discard symbol table from `%s'? ", symfile))
497 error ("Not confirmed.");
498 if (symfile)
499 free (symfile);
500 symfile = 0;
501 free_all_symtabs ();
502 free_all_psymtabs ();
503 /* FIXME, this does not account for the main file and subsequent
504 files (shared libs, dynloads, etc) having different formats.
505 It only calls the cleanup routine for the main file's format. */
0ef6f019
JG
506 if (symfile_fns) {
507 (*symfile_fns->sym_new_init) ();
508 free (symfile_fns);
509 symfile_fns = 0;
510 }
bd5635a1
RP
511 return;
512 }
513
2403f49b
JK
514 /* Getting new symbols may change our opinion about what is
515 frameless. */
516 reinit_frame_cache ();
517
bd5635a1
RP
518 symbol_file_add (name, from_tty, (CORE_ADDR)0, 1);
519}
520
521/* Open NAME and hand it off to BFD for preliminary analysis. Result
522 is a BFD *, which includes a new copy of NAME dynamically allocated
523 (which will be freed by the cleanup chain). In case of trouble,
524 error() is called. */
525
526static bfd *
527symfile_open (name)
528 char *name;
529{
530 bfd *sym_bfd;
531 int desc;
532 char *absolute_name;
533
534 name = tilde_expand (name);
535 make_cleanup (free, name);
536
537 desc = openp (getenv ("PATH"), 1, name, O_RDONLY, 0, &absolute_name);
538 if (desc < 0)
539 perror_with_name (name);
540 else
541 {
542 make_cleanup (free, absolute_name);
543 name = absolute_name;
544 }
545
546 sym_bfd = bfd_fdopenr (name, NULL, desc);
547 if (!sym_bfd)
548 {
549 close (desc);
550 error ("Could not open `%s' to read symbols: %s",
551 name, bfd_errmsg (bfd_error));
552 }
553 make_cleanup (bfd_close, sym_bfd);
554
555 if (!bfd_check_format (sym_bfd, bfd_object))
556 error ("\"%s\": can't read symbols: %s.",
557 name, bfd_errmsg (bfd_error));
558
559 return sym_bfd;
560}
561
562/* Link a new symtab_fns into the global symtab_fns list.
563 Called by various _initialize routines. */
564
565void
566add_symtab_fns (sf)
567 struct sym_fns *sf;
568{
569 sf->next = symtab_fns;
570 symtab_fns = sf;
571}
572
573
574/* Initialize to read symbols from the symbol file sym_bfd. It either
575 returns or calls error(). The result is a malloc'd struct sym_fns
576 that contains cached information about the symbol file. */
577
578static struct sym_fns *
579symfile_init (sym_bfd)
580 bfd *sym_bfd;
581{
582 struct sym_fns *sf, *sf2;
583
584 for (sf = symtab_fns; sf != NULL; sf = sf->next)
585 {
586 if (!strncmp (bfd_get_target (sym_bfd), sf->sym_name, sf->sym_namelen))
587 {
588 sf2 = (struct sym_fns *)xmalloc (sizeof (*sf2));
589 /* FIXME, who frees this? */
590 *sf2 = *sf;
591 sf2->sym_bfd = sym_bfd;
592 sf2->sym_private = 0; /* Not alloc'd yet */
593 (*sf2->sym_init) (sf2);
594 return sf2;
595 }
596 }
597 error ("I'm sorry, Dave, I can't do that. Symbol format unknown.");
598}
599\f
600/* This function runs the load command of our current target. */
601
602void
603load_command (arg, from_tty)
604 char *arg;
605 int from_tty;
606{
607 target_load (arg, from_tty);
608}
609
610/* This function runs the add_syms command of our current target. */
611
612void
e74d7b43 613add_symbol_file_command (args, from_tty)
bd5635a1
RP
614 char *args;
615 int from_tty;
616{
2403f49b
JK
617 /* Getting new symbols may change our opinion about what is
618 frameless. */
619 reinit_frame_cache ();
620
bd5635a1
RP
621 target_add_syms (args, from_tty);
622}
623
624/* This function allows the addition of incrementally linked object files. */
625
626void
627add_syms_addr_command (arg_string, from_tty)
628 char* arg_string;
629 int from_tty;
630{
631 char *name;
632 CORE_ADDR text_addr;
633
634 if (arg_string == 0)
e74d7b43 635 error ("add-symbol-file takes a file name and an address");
bd5635a1
RP
636
637 arg_string = tilde_expand (arg_string);
638 make_cleanup (free, arg_string);
639
640 for( ; *arg_string == ' '; arg_string++ );
641 name = arg_string;
642 for( ; *arg_string && *arg_string != ' ' ; arg_string++ );
643 *arg_string++ = (char) 0;
644
645 if (name[0] == 0)
e74d7b43 646 error ("add-symbol-file takes a file name and an address");
bd5635a1
RP
647
648 text_addr = parse_and_eval_address (arg_string);
649
650 dont_repeat ();
651
652 if (!query ("add symbol table from file \"%s\" at text_addr = 0x%x\n",
653 name, text_addr))
654 error ("Not confirmed.");
655
656 symbol_file_add (name, 0, text_addr, 0);
657}
658\f
659/* Re-read symbols if the symbol-file has changed. */
660void
661reread_symbols ()
662{
663 struct stat symstat;
664
665 /* With the addition of shared libraries, this should be modified,
666 the load time should be saved in the partial symbol tables, since
667 different tables may come from different source files. FIXME.
668 This routine should then walk down each partial symbol table
669 and see if the symbol table that it originates from has been changed
670 */
671
672 if (stat (symfile, &symstat) < 0)
673 /* Can't read symbol-file. Assume it is up to date. */
674 return;
675
676 if (symstat.st_mtime > symfile_mtime)
677 {
678 printf_filtered ("Symbol file has changed; re-reading symbols.\n");
679 symbol_file_command (symfile, 0);
680 breakpoint_re_set ();
681 }
682}
683
bd5635a1
RP
684/* This function is really horrible, but to avoid it, there would need
685 to be more filling in of forward references. */
7cc43879 686void
bd5635a1
RP
687fill_in_vptr_fieldno (type)
688 struct type *type;
689{
bd5635a1 690 if (TYPE_VPTR_FIELDNO (type) < 0)
7cc43879
JK
691 {
692 int i;
693 for (i = 1; i < TYPE_N_BASECLASSES (type); i++)
694 {
695 fill_in_vptr_fieldno (TYPE_BASECLASS (type, i));
696 if (TYPE_VPTR_FIELDNO (TYPE_BASECLASS (type, i)) >= 0)
697 {
698 TYPE_VPTR_FIELDNO (type)
699 = TYPE_VPTR_FIELDNO (TYPE_BASECLASS (type, i));
700 TYPE_VPTR_BASETYPE (type)
701 = TYPE_VPTR_BASETYPE (TYPE_BASECLASS (type, i));
702 break;
703 }
704 }
705 }
bd5635a1
RP
706}
707\f
708/* Functions to handle complaints during symbol reading. */
709
710/* How many complaints about a particular thing should be printed before
711 we stop whining about it? */
712
713static unsigned stop_whining = 1;
714
715/* Print a complaint about the input symbols, and link the complaint block
716 into a chain for later handling. Result is 1 if the complaint was
717 printed, 0 if it was suppressed. */
718
719int
720complain (complaint, val)
721 struct complaint *complaint;
722 char *val;
723{
724 complaint->counter++;
725 if (complaint->next == 0) {
726 complaint->next = complaint_root->next;
727 complaint_root->next = complaint;
728 }
729 if (complaint->counter > stop_whining)
730 return 0;
731 wrap_here ("");
732 if (!info_verbose) {
733 puts_filtered ("During symbol reading...");
734 }
735 printf_filtered (complaint->message, val);
736 puts_filtered ("...");
737 wrap_here("");
738 if (!info_verbose)
739 puts_filtered ("\n");
740 return 1;
741}
742
743/* Clear out all complaint counters that have ever been incremented. */
744
745void
746clear_complaints ()
747{
748 struct complaint *p;
749
750 for (p = complaint_root->next; p != complaint_root; p = p->next)
751 p->counter = 0;
752}
753\f
9d199712
JG
754/* clear_symtab_users_once:
755
756 This function is run after symbol reading, or from a cleanup.
757 If an old symbol table was obsoleted, the old symbol table
758 has been blown away, but the other GDB data structures that may
759 reference it have not yet been cleared or re-directed. (The old
760 symtab was zapped, and the cleanup queued, in free_named_symtab()
761 below.)
762
763 This function can be queued N times as a cleanup, or called
764 directly; it will do all the work the first time, and then will be a
765 no-op until the next time it is queued. This works by bumping a
766 counter at queueing time. Much later when the cleanup is run, or at
767 the end of symbol processing (in case the cleanup is discarded), if
768 the queued count is greater than the "done-count", we do the work
769 and set the done-count to the queued count. If the queued count is
770 less than or equal to the done-count, we just ignore the call. This
771 is needed because reading a single .o file will often replace many
772 symtabs (one per .h file, for example), and we don't want to reset
773 the breakpoints N times in the user's face.
774
775 The reason we both queue a cleanup, and call it directly after symbol
776 reading, is because the cleanup protects us in case of errors, but is
777 discarded if symbol reading is successful. */
778
779static int clear_symtab_users_queued;
780static int clear_symtab_users_done;
781
782static void
783clear_symtab_users_once ()
784{
785 /* Enforce once-per-`do_cleanups'-semantics */
786 if (clear_symtab_users_queued <= clear_symtab_users_done)
787 return;
788 clear_symtab_users_done = clear_symtab_users_queued;
789
790 printf ("Resetting debugger state after updating old symbol tables\n");
791
792 /* Someday, we should do better than this, by only blowing away
793 the things that really need to be blown. */
794 clear_value_history ();
795 clear_displays ();
796 clear_internalvars ();
797 breakpoint_re_set ();
798 set_default_breakpoint (0, 0, 0, 0);
799 current_source_symtab = 0;
800}
801
802/* Delete the specified psymtab, and any others that reference it. */
803
804cashier_psymtab (pst)
805 struct partial_symtab *pst;
806{
807 struct partial_symtab *ps, *pprev;
808 int i;
809
810 /* Find its previous psymtab in the chain */
811 for (ps = partial_symtab_list; ps; ps = ps->next) {
812 if (ps == pst)
813 break;
814 pprev = ps;
815 }
816
817 if (ps) {
818 /* Unhook it from the chain. */
819 if (ps == partial_symtab_list)
820 partial_symtab_list = ps->next;
821 else
822 pprev->next = ps->next;
823
824 /* FIXME, we can't conveniently deallocate the entries in the
825 partial_symbol lists (global_psymbols/static_psymbols) that
826 this psymtab points to. These just take up space until all
827 the psymtabs are reclaimed. Ditto the dependencies list and
828 filename, which are all in the psymbol_obstack. */
829
830 /* We need to cashier any psymtab that has this one as a dependency... */
831again:
832 for (ps = partial_symtab_list; ps; ps = ps->next) {
833 for (i = 0; i < ps->number_of_dependencies; i++) {
834 if (ps->dependencies[i] == pst) {
835 cashier_psymtab (ps);
836 goto again; /* Must restart, chain has been munged. */
837 }
838 }
839 }
840 }
841}
842
843/* If a symtab or psymtab for filename NAME is found, free it along
844 with any dependent breakpoints, displays, etc.
845 Used when loading new versions of object modules with the "add-file"
846 command. This is only called on the top-level symtab or psymtab's name;
847 it is not called for subsidiary files such as .h files.
848
849 Return value is 1 if we blew away the environment, 0 if not.
850
851 FIXME. I think this is not the best way to do this. We should
852 work on being gentler to the environment while still cleaning up
853 all stray pointers into the freed symtab. */
854
855int
856free_named_symtabs (name)
857 char *name;
858{
859 register struct symtab *s;
860 register struct symtab *prev;
861 register struct partial_symtab *ps;
862 register struct partial_symtab *pprev;
863 struct blockvector *bv;
864 int blewit = 0;
865
866 /* Look for a psymtab with the specified name. */
867
868again2:
869 for (ps = partial_symtab_list; ps; ps = ps->next) {
870 if (!strcmp (name, ps->filename)) {
871 cashier_psymtab (ps); /* Blow it away...and its little dog, too. */
872 goto again2; /* Must restart, chain has been munged */
873 }
874 }
875
876 /* Look for a symtab with the specified name. */
877
878 for (s = symtab_list; s; s = s->next)
879 {
880 if (!strcmp (name, s->filename))
881 break;
882 prev = s;
883 }
884
885 if (s)
886 {
887 if (s == symtab_list)
888 symtab_list = s->next;
889 else
890 prev->next = s->next;
891
892 /* For now, queue a delete for all breakpoints, displays, etc., whether
893 or not they depend on the symtab being freed. This should be
894 changed so that only those data structures affected are deleted. */
895
896 /* But don't delete anything if the symtab is empty.
897 This test is necessary due to a bug in "dbxread.c" that
898 causes empty symtabs to be created for N_SO symbols that
899 contain the pathname of the object file. (This problem
900 has been fixed in GDB 3.9x). */
901
902 bv = BLOCKLIST (s);
903 if (BLOCKLIST_NBLOCKS (bv) > 2
904 || BLOCK_NSYMS (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK))
905 || BLOCK_NSYMS (BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK)))
906 {
907 complain (&oldsyms_complaint, name);
908
909 clear_symtab_users_queued++;
910 make_cleanup (clear_symtab_users_once, 0);
911 blewit = 1;
912 } else {
913 complain (&empty_symtab_complaint, name);
914 }
915
916 free_symtab (s);
917 }
918 else
919 /* It is still possible that some breakpoints will be affected
920 even though no symtab was found, since the file might have
921 been compiled without debugging, and hence not be associated
922 with a symtab. In order to handle this correctly, we would need
923 to keep a list of text address ranges for undebuggable files.
924 For now, we do nothing, since this is a fairly obscure case. */
925 ;
926
927 /* FIXME, what about the misc function vector? */
928 return blewit;
929}
930\f
bd5635a1
RP
931void
932_initialize_symfile ()
933{
934
935 add_com ("symbol-file", class_files, symbol_file_command,
936 "Load symbol table from executable file FILE.\n\
937The `file' command can also load symbol tables, as well as setting the file\n\
938to execute.");
939
e74d7b43 940 add_com ("add-symbol-file", class_files, add_symbol_file_command,
bd5635a1
RP
941 "Load the symbols from FILE, assuming FILE has been dynamically loaded.\n\
942The second argument provides the starting address of the file's text.");
943
944 add_com ("load", class_files, load_command,
945 "Dynamically load FILE into the running program, and record its symbols\n\
946for access from GDB.");
947
948 add_show_from_set
949 (add_set_cmd ("complaints", class_support, var_uinteger,
950 (char *)&stop_whining,
951 "Set max number of complaints about incorrect symbols.",
952 &setlist),
953 &showlist);
954
955 obstack_init (symbol_obstack);
956 obstack_init (psymbol_obstack);
957}
This page took 0.096362 seconds and 4 git commands to generate.