1 /* Generic symbol file reading for the GNU debugger, GDB.
2 Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996
3 Free Software Foundation, Inc.
4 Contributed by Cygnus Support, using pieces from other GDB modules.
6 This file is part of GDB.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
32 #include "breakpoint.h"
34 #include "complaints.h"
36 #include "inferior.h" /* for write_pc */
37 #include "gdb-stabs.h"
41 #include <sys/types.h>
43 #include "gdb_string.h"
55 /* Global variables owned by this file */
56 int readnow_symbol_files; /* Read full symbols immediately */
58 struct complaint oldsyms_complaint = {
59 "Replacing old symbols for `%s'", 0, 0
62 struct complaint empty_symtab_complaint = {
63 "Empty symbol table found for `%s'", 0, 0
66 /* External variables and functions referenced. */
68 extern int info_verbose;
70 extern void report_transfer_performance PARAMS ((unsigned long,
73 /* Functions this file defines */
75 static void set_initial_language PARAMS ((void));
77 static void load_command PARAMS ((char *, int));
79 static void add_symbol_file_command PARAMS ((char *, int));
81 static void add_shared_symbol_files_command PARAMS ((char *, int));
83 static void cashier_psymtab PARAMS ((struct partial_symtab *));
85 static int compare_psymbols PARAMS ((const void *, const void *));
87 static int compare_symbols PARAMS ((const void *, const void *));
89 static bfd *symfile_bfd_open PARAMS ((char *));
91 static void find_sym_fns PARAMS ((struct objfile *));
93 /* List of all available sym_fns. On gdb startup, each object file reader
94 calls add_symtab_fns() to register information on each format it is
97 static struct sym_fns *symtab_fns = NULL;
99 /* Flag for whether user will be reloading symbols multiple times.
100 Defaults to ON for VxWorks, otherwise OFF. */
102 #ifdef SYMBOL_RELOADING_DEFAULT
103 int symbol_reloading = SYMBOL_RELOADING_DEFAULT;
105 int symbol_reloading = 0;
108 /* If true, then shared library symbols will be added automatically
109 when the inferior is created, new libraries are loaded, or when
110 attaching to the inferior. This is almost always what users
111 will want to have happen; but for very large programs, the startup
112 time will be excessive, and so if this is a problem, the user can
113 clear this flag and then add the shared library symbols as needed.
114 Note that there is a potential for confusion, since if the shared
115 library symbols are not loaded, commands like "info fun" will *not*
116 report all the functions that are actually present. */
118 int auto_solib_add = 1;
121 /* Since this function is called from within qsort, in an ANSI environment
122 it must conform to the prototype for qsort, which specifies that the
123 comparison function takes two "void *" pointers. */
126 compare_symbols (s1p, s2p)
130 register struct symbol **s1, **s2;
132 s1 = (struct symbol **) s1p;
133 s2 = (struct symbol **) s2p;
135 return (STRCMP (SYMBOL_NAME (*s1), SYMBOL_NAME (*s2)));
142 compare_psymbols -- compare two partial symbols by name
146 Given pointers to pointers to two partial symbol table entries,
147 compare them by name and return -N, 0, or +N (ala strcmp).
148 Typically used by sorting routines like qsort().
152 Does direct compare of first two characters before punting
153 and passing to strcmp for longer compares. Note that the
154 original version had a bug whereby two null strings or two
155 identically named one character strings would return the
156 comparison of memory following the null byte.
161 compare_psymbols (s1p, s2p)
165 register char *st1 = SYMBOL_NAME (*(struct partial_symbol **) s1p);
166 register char *st2 = SYMBOL_NAME (*(struct partial_symbol **) s2p);
168 if ((st1[0] - st2[0]) || !st1[0])
170 return (st1[0] - st2[0]);
172 else if ((st1[1] - st2[1]) || !st1[1])
174 return (st1[1] - st2[1]);
178 return (STRCMP (st1 + 2, st2 + 2));
183 sort_pst_symbols (pst)
184 struct partial_symtab *pst;
186 /* Sort the global list; don't sort the static list */
188 qsort (pst -> objfile -> global_psymbols.list + pst -> globals_offset,
189 pst -> n_global_syms, sizeof (struct partial_symbol *),
193 /* Call sort_block_syms to sort alphabetically the symbols of one block. */
197 register struct block *b;
199 qsort (&BLOCK_SYM (b, 0), BLOCK_NSYMS (b),
200 sizeof (struct symbol *), compare_symbols);
203 /* Call sort_symtab_syms to sort alphabetically
204 the symbols of each block of one symtab. */
208 register struct symtab *s;
210 register struct blockvector *bv;
213 register struct block *b;
217 bv = BLOCKVECTOR (s);
218 nbl = BLOCKVECTOR_NBLOCKS (bv);
219 for (i = 0; i < nbl; i++)
221 b = BLOCKVECTOR_BLOCK (bv, i);
222 if (BLOCK_SHOULD_SORT (b))
227 /* Make a null terminated copy of the string at PTR with SIZE characters in
228 the obstack pointed to by OBSTACKP . Returns the address of the copy.
229 Note that the string at PTR does not have to be null terminated, I.E. it
230 may be part of a larger string and we are only saving a substring. */
233 obsavestring (ptr, size, obstackp)
236 struct obstack *obstackp;
238 register char *p = (char *) obstack_alloc (obstackp, size + 1);
239 /* Open-coded memcpy--saves function call time. These strings are usually
240 short. FIXME: Is this really still true with a compiler that can
243 register char *p1 = ptr;
244 register char *p2 = p;
245 char *end = ptr + size;
253 /* Concatenate strings S1, S2 and S3; return the new string. Space is found
254 in the obstack pointed to by OBSTACKP. */
257 obconcat (obstackp, s1, s2, s3)
258 struct obstack *obstackp;
259 const char *s1, *s2, *s3;
261 register int len = strlen (s1) + strlen (s2) + strlen (s3) + 1;
262 register char *val = (char *) obstack_alloc (obstackp, len);
269 /* True if we are nested inside psymtab_to_symtab. */
271 int currently_reading_symtab = 0;
274 decrement_reading_symtab (dummy)
277 currently_reading_symtab--;
280 /* Get the symbol table that corresponds to a partial_symtab.
281 This is fast after the first time you do it. In fact, there
282 is an even faster macro PSYMTAB_TO_SYMTAB that does the fast
286 psymtab_to_symtab (pst)
287 register struct partial_symtab *pst;
289 /* If it's been looked up before, return it. */
293 /* If it has not yet been read in, read it. */
296 struct cleanup *back_to = make_cleanup (decrement_reading_symtab, NULL);
297 currently_reading_symtab++;
298 (*pst->read_symtab) (pst);
299 do_cleanups (back_to);
305 /* Initialize entry point information for this objfile. */
308 init_entry_point_info (objfile)
309 struct objfile *objfile;
311 /* Save startup file's range of PC addresses to help blockframe.c
312 decide where the bottom of the stack is. */
314 if (bfd_get_file_flags (objfile -> obfd) & EXEC_P)
316 /* Executable file -- record its entry point so we'll recognize
317 the startup file because it contains the entry point. */
318 objfile -> ei.entry_point = bfd_get_start_address (objfile -> obfd);
322 /* Examination of non-executable.o files. Short-circuit this stuff. */
323 objfile -> ei.entry_point = INVALID_ENTRY_POINT;
325 objfile -> ei.entry_file_lowpc = INVALID_ENTRY_LOWPC;
326 objfile -> ei.entry_file_highpc = INVALID_ENTRY_HIGHPC;
327 objfile -> ei.entry_func_lowpc = INVALID_ENTRY_LOWPC;
328 objfile -> ei.entry_func_highpc = INVALID_ENTRY_HIGHPC;
329 objfile -> ei.main_func_lowpc = INVALID_ENTRY_LOWPC;
330 objfile -> ei.main_func_highpc = INVALID_ENTRY_HIGHPC;
333 /* Get current entry point address. */
336 entry_point_address()
338 return symfile_objfile ? symfile_objfile->ei.entry_point : 0;
341 /* Remember the lowest-addressed loadable section we've seen.
342 This function is called via bfd_map_over_sections.
344 In case of equal vmas, the section with the largest size becomes the
345 lowest-addressed loadable section.
347 If the vmas and sizes are equal, the last section is considered the
348 lowest-addressed loadable section. */
351 find_lowest_section (abfd, sect, obj)
356 asection **lowest = (asection **)obj;
358 if (0 == (bfd_get_section_flags (abfd, sect) & SEC_LOAD))
361 *lowest = sect; /* First loadable section */
362 else if (bfd_section_vma (abfd, *lowest) > bfd_section_vma (abfd, sect))
363 *lowest = sect; /* A lower loadable section */
364 else if (bfd_section_vma (abfd, *lowest) == bfd_section_vma (abfd, sect)
365 && (bfd_section_size (abfd, (*lowest))
366 <= bfd_section_size (abfd, sect)))
370 /* Parse the user's idea of an offset for dynamic linking, into our idea
371 of how to represent it for fast symbol reading. This is the default
372 version of the sym_fns.sym_offsets function for symbol readers that
373 don't need to do anything special. It allocates a section_offsets table
374 for the objectfile OBJFILE and stuffs ADDR into all of the offsets. */
376 struct section_offsets *
377 default_symfile_offsets (objfile, addr)
378 struct objfile *objfile;
381 struct section_offsets *section_offsets;
384 objfile->num_sections = SECT_OFF_MAX;
385 section_offsets = (struct section_offsets *)
386 obstack_alloc (&objfile -> psymbol_obstack, SIZEOF_SECTION_OFFSETS);
388 for (i = 0; i < SECT_OFF_MAX; i++)
389 ANOFFSET (section_offsets, i) = addr;
391 return section_offsets;
395 /* Process a symbol file, as either the main file or as a dynamically
398 NAME is the file name (which will be tilde-expanded and made
399 absolute herein) (but we don't free or modify NAME itself).
400 FROM_TTY says how verbose to be. MAINLINE specifies whether this
401 is the main symbol file, or whether it's an extra symbol file such
402 as dynamically loaded code. If !mainline, ADDR is the address
403 where the text segment was loaded. If VERBO, the caller has printed
404 a verbose message about the symbol reading (and complaints can be
405 more terse about it). */
408 syms_from_objfile (objfile, addr, mainline, verbo)
409 struct objfile *objfile;
414 struct section_offsets *section_offsets;
415 asection *lowest_sect;
416 struct cleanup *old_chain;
418 init_entry_point_info (objfile);
419 find_sym_fns (objfile);
421 /* Make sure that partially constructed symbol tables will be cleaned up
422 if an error occurs during symbol reading. */
423 old_chain = make_cleanup (free_objfile, objfile);
427 /* We will modify the main symbol table, make sure that all its users
428 will be cleaned up if an error occurs during symbol reading. */
429 make_cleanup (clear_symtab_users, 0);
431 /* Since no error yet, throw away the old symbol table. */
433 if (symfile_objfile != NULL)
435 free_objfile (symfile_objfile);
436 symfile_objfile = NULL;
439 /* Currently we keep symbols from the add-symbol-file command.
440 If the user wants to get rid of them, they should do "symbol-file"
441 without arguments first. Not sure this is the best behavior
444 (*objfile -> sf -> sym_new_init) (objfile);
447 /* Convert addr into an offset rather than an absolute address.
448 We find the lowest address of a loaded segment in the objfile,
449 and assume that <addr> is where that got loaded. Due to historical
450 precedent, we warn if that doesn't happen to be a text segment. */
454 addr = 0; /* No offset from objfile addresses. */
458 lowest_sect = bfd_get_section_by_name (objfile->obfd, ".text");
459 if (lowest_sect == NULL)
460 bfd_map_over_sections (objfile->obfd, find_lowest_section,
463 if (lowest_sect == NULL)
464 warning ("no loadable sections found in added symbol-file %s",
466 else if ((bfd_get_section_flags (objfile->obfd, lowest_sect) & SEC_CODE)
468 /* FIXME-32x64--assumes bfd_vma fits in long. */
469 warning ("Lowest section in %s is %s at 0x%lx",
471 bfd_section_name (objfile->obfd, lowest_sect),
472 (unsigned long) bfd_section_vma (objfile->obfd, lowest_sect));
475 addr -= bfd_section_vma (objfile->obfd, lowest_sect);
478 /* Initialize symbol reading routines for this objfile, allow complaints to
479 appear for this new file, and record how verbose to be, then do the
480 initial symbol reading for this file. */
482 (*objfile -> sf -> sym_init) (objfile);
483 clear_complaints (1, verbo);
485 section_offsets = (*objfile -> sf -> sym_offsets) (objfile, addr);
486 objfile->section_offsets = section_offsets;
488 #ifndef IBM6000_TARGET
489 /* This is a SVR4/SunOS specific hack, I think. In any event, it
490 screws RS/6000. sym_offsets should be doing this sort of thing,
491 because it knows the mapping between bfd sections and
493 /* This is a hack. As far as I can tell, section offsets are not
494 target dependent. They are all set to addr with a couple of
495 exceptions. The exceptions are sysvr4 shared libraries, whose
496 offsets are kept in solib structures anyway and rs6000 xcoff
497 which handles shared libraries in a completely unique way.
499 Section offsets are built similarly, except that they are built
500 by adding addr in all cases because there is no clear mapping
501 from section_offsets into actual sections. Note that solib.c
502 has a different algorythm for finding section offsets.
504 These should probably all be collapsed into some target
505 independent form of shared library support. FIXME. */
509 struct obj_section *s;
511 for (s = objfile->sections; s < objfile->sections_end; ++s)
513 s->addr -= s->offset;
515 s->endaddr -= s->offset;
520 #endif /* not IBM6000_TARGET */
522 (*objfile -> sf -> sym_read) (objfile, section_offsets, mainline);
524 if (!have_partial_symbols () && !have_full_symbols ())
527 printf_filtered ("(no debugging symbols found)...");
531 /* Don't allow char * to have a typename (else would get caddr_t).
532 Ditto void *. FIXME: Check whether this is now done by all the
533 symbol readers themselves (many of them now do), and if so remove
536 TYPE_NAME (lookup_pointer_type (builtin_type_char)) = 0;
537 TYPE_NAME (lookup_pointer_type (builtin_type_void)) = 0;
539 /* Mark the objfile has having had initial symbol read attempted. Note
540 that this does not mean we found any symbols... */
542 objfile -> flags |= OBJF_SYMS;
544 /* Discard cleanups as symbol reading was successful. */
546 discard_cleanups (old_chain);
548 /* Call this after reading in a new symbol table to give target dependant code
549 a crack at the new symbols. For instance, this could be used to update the
550 values of target-specific symbols GDB needs to keep track of (such as
551 _sigtramp, or whatever). */
553 TARGET_SYMFILE_POSTREAD (objfile);
556 /* Perform required actions after either reading in the initial
557 symbols for a new objfile, or mapping in the symbols from a reusable
561 new_symfile_objfile (objfile, mainline, verbo)
562 struct objfile *objfile;
567 /* If this is the main symbol file we have to clean up all users of the
568 old main symbol file. Otherwise it is sufficient to fixup all the
569 breakpoints that may have been redefined by this symbol file. */
572 /* OK, make it the "real" symbol file. */
573 symfile_objfile = objfile;
575 clear_symtab_users ();
579 breakpoint_re_set ();
582 /* We're done reading the symbol file; finish off complaints. */
583 clear_complaints (0, verbo);
586 /* Process a symbol file, as either the main file or as a dynamically
589 NAME is the file name (which will be tilde-expanded and made
590 absolute herein) (but we don't free or modify NAME itself).
591 FROM_TTY says how verbose to be. MAINLINE specifies whether this
592 is the main symbol file, or whether it's an extra symbol file such
593 as dynamically loaded code. If !mainline, ADDR is the address
594 where the text segment was loaded.
596 Upon success, returns a pointer to the objfile that was added.
597 Upon failure, jumps back to command level (never returns). */
600 symbol_file_add (name, from_tty, addr, mainline, mapped, readnow)
608 struct objfile *objfile;
609 struct partial_symtab *psymtab;
612 /* Open a bfd for the file, and give user a chance to burp if we'd be
613 interactively wiping out any existing symbols. */
615 abfd = symfile_bfd_open (name);
617 if ((have_full_symbols () || have_partial_symbols ())
620 && !query ("Load new symbol table from \"%s\"? ", name))
621 error ("Not confirmed.");
623 objfile = allocate_objfile (abfd, mapped);
625 /* If the objfile uses a mapped symbol file, and we have a psymtab for
626 it, then skip reading any symbols at this time. */
628 if ((objfile -> flags & OBJF_MAPPED) && (objfile -> flags & OBJF_SYMS))
630 /* We mapped in an existing symbol table file that already has had
631 initial symbol reading performed, so we can skip that part. Notify
632 the user that instead of reading the symbols, they have been mapped.
634 if (from_tty || info_verbose)
636 printf_filtered ("Mapped symbols for %s...", name);
638 gdb_flush (gdb_stdout);
640 init_entry_point_info (objfile);
641 find_sym_fns (objfile);
645 /* We either created a new mapped symbol table, mapped an existing
646 symbol table file which has not had initial symbol reading
647 performed, or need to read an unmapped symbol table. */
648 if (from_tty || info_verbose)
650 printf_filtered ("Reading symbols from %s...", name);
652 gdb_flush (gdb_stdout);
654 syms_from_objfile (objfile, addr, mainline, from_tty);
657 /* We now have at least a partial symbol table. Check to see if the
658 user requested that all symbols be read on initial access via either
659 the gdb startup command line or on a per symbol file basis. Expand
660 all partial symbol tables for this objfile if so. */
662 if (readnow || readnow_symbol_files)
664 if (from_tty || info_verbose)
666 printf_filtered ("expanding to full symbols...");
668 gdb_flush (gdb_stdout);
671 for (psymtab = objfile -> psymtabs;
673 psymtab = psymtab -> next)
675 psymtab_to_symtab (psymtab);
679 if (from_tty || info_verbose)
681 printf_filtered ("done.\n");
682 gdb_flush (gdb_stdout);
685 new_symfile_objfile (objfile, mainline, from_tty);
687 target_new_objfile (objfile);
692 /* This is the symbol-file command. Read the file, analyze its
693 symbols, and add a struct symtab to a symtab list. The syntax of
694 the command is rather bizarre--(1) buildargv implements various
695 quoting conventions which are undocumented and have little or
696 nothing in common with the way things are quoted (or not quoted)
697 elsewhere in GDB, (2) options are used, which are not generally
698 used in GDB (perhaps "set mapped on", "set readnow on" would be
699 better), (3) the order of options matters, which is contrary to GNU
700 conventions (because it is confusing and inconvenient). */
703 symbol_file_command (args, from_tty)
709 CORE_ADDR text_relocation = 0; /* text_relocation */
710 struct cleanup *cleanups;
718 if ((have_full_symbols () || have_partial_symbols ())
720 && !query ("Discard symbol table from `%s'? ",
721 symfile_objfile -> name))
722 error ("Not confirmed.");
723 free_all_objfiles ();
724 symfile_objfile = NULL;
727 printf_unfiltered ("No symbol file now.\n");
732 if ((argv = buildargv (args)) == NULL)
736 cleanups = make_cleanup (freeargv, (char *) argv);
737 while (*argv != NULL)
739 if (STREQ (*argv, "-mapped"))
743 else if (STREQ (*argv, "-readnow"))
747 else if (**argv == '-')
749 error ("unknown option `%s'", *argv);
757 /* this is for rombug remote only, to get the text relocation by
758 using link command */
759 p = strrchr(name, '/');
763 target_link(p, &text_relocation);
765 if (text_relocation == (CORE_ADDR)0)
767 else if (text_relocation == (CORE_ADDR)-1)
768 symbol_file_add (name, from_tty, (CORE_ADDR)0, 1, mapped,
771 symbol_file_add (name, from_tty, (CORE_ADDR)text_relocation,
774 /* Getting new symbols may change our opinion about what is
776 reinit_frame_cache ();
778 set_initial_language ();
785 error ("no symbol file name was specified");
787 do_cleanups (cleanups);
791 /* Set the initial language.
793 A better solution would be to record the language in the psymtab when reading
794 partial symbols, and then use it (if known) to set the language. This would
795 be a win for formats that encode the language in an easily discoverable place,
796 such as DWARF. For stabs, we can jump through hoops looking for specially
797 named symbols or try to intuit the language from the specific type of stabs
798 we find, but we can't do that until later when we read in full symbols.
802 set_initial_language ()
804 struct partial_symtab *pst;
805 enum language lang = language_unknown;
807 pst = find_main_psymtab ();
810 if (pst -> filename != NULL)
812 lang = deduce_language_from_filename (pst -> filename);
814 if (lang == language_unknown)
816 /* Make C the default language */
820 expected_language = current_language; /* Don't warn the user */
824 /* Open file specified by NAME and hand it off to BFD for preliminary
825 analysis. Result is a newly initialized bfd *, which includes a newly
826 malloc'd` copy of NAME (tilde-expanded and made absolute).
827 In case of trouble, error() is called. */
830 symfile_bfd_open (name)
837 name = tilde_expand (name); /* Returns 1st new malloc'd copy */
839 /* Look down path for it, allocate 2nd new malloc'd copy. */
840 desc = openp (getenv ("PATH"), 1, name, O_RDONLY | O_BINARY, 0, &absolute_name);
841 #if defined(__GO32__) || defined(__WIN32__)
844 char *exename = alloca (strlen (name) + 5);
845 strcat (strcpy (exename, name), ".exe");
846 desc = openp (getenv ("PATH"), 1, exename, O_RDONLY | O_BINARY,
852 make_cleanup (free, name);
853 perror_with_name (name);
855 free (name); /* Free 1st new malloc'd copy */
856 name = absolute_name; /* Keep 2nd malloc'd copy in bfd */
857 /* It'll be freed in free_objfile(). */
859 sym_bfd = bfd_fdopenr (name, gnutarget, desc);
863 make_cleanup (free, name);
864 error ("\"%s\": can't open to read symbols: %s.", name,
865 bfd_errmsg (bfd_get_error ()));
867 sym_bfd->cacheable = true;
869 if (!bfd_check_format (sym_bfd, bfd_object))
871 /* FIXME: should be checking for errors from bfd_close (for one thing,
872 on error it does not free all the storage associated with the
874 bfd_close (sym_bfd); /* This also closes desc */
875 make_cleanup (free, name);
876 error ("\"%s\": can't read symbols: %s.", name,
877 bfd_errmsg (bfd_get_error ()));
883 /* Link a new symtab_fns into the global symtab_fns list. Called on gdb
884 startup by the _initialize routine in each object file format reader,
885 to register information about each format the the reader is prepared
892 sf->next = symtab_fns;
897 /* Initialize to read symbols from the symbol file sym_bfd. It either
898 returns or calls error(). The result is an initialized struct sym_fns
899 in the objfile structure, that contains cached information about the
903 find_sym_fns (objfile)
904 struct objfile *objfile;
907 enum bfd_flavour our_flavour = bfd_get_flavour (objfile -> obfd);
908 char *our_target = bfd_get_target (objfile -> obfd);
910 /* Special kludge for RS/6000 and PowerMac. See xcoffread.c. */
911 if (STREQ (our_target, "aixcoff-rs6000") ||
912 STREQ (our_target, "xcoff-powermac"))
913 our_flavour = (enum bfd_flavour)-1;
915 /* Special kludge for apollo. See dstread.c. */
916 if (STREQN (our_target, "apollo", 6))
917 our_flavour = (enum bfd_flavour)-2;
919 for (sf = symtab_fns; sf != NULL; sf = sf -> next)
921 if (our_flavour == sf -> sym_flavour)
927 error ("I'm sorry, Dave, I can't do that. Symbol format `%s' unknown.",
928 bfd_get_target (objfile -> obfd));
931 /* This function runs the load command of our current target. */
934 load_command (arg, from_tty)
939 arg = get_exec_file (1);
940 target_load (arg, from_tty);
943 /* This version of "load" should be usable for any target. Currently
944 it is just used for remote targets, not inftarg.c or core files,
945 on the theory that only in that case is it useful.
947 Avoiding xmodem and the like seems like a win (a) because we don't have
948 to worry about finding it, and (b) On VMS, fork() is very slow and so
949 we don't want to run a subprocess. On the other hand, I'm not sure how
950 performance compares. */
952 generic_load (filename, from_tty)
956 struct cleanup *old_cleanups;
959 time_t start_time, end_time; /* Start and end times of download */
960 unsigned long data_count = 0; /* Number of bytes transferred to memory */
962 unsigned long load_offset = 0; /* offset to add to vma for each section */
965 /* enable user to specify address for downloading as 2nd arg to load */
966 n = sscanf(filename, "%s 0x%x", buf, &load_offset);
972 loadfile_bfd = bfd_openr (filename, gnutarget);
973 if (loadfile_bfd == NULL)
975 perror_with_name (filename);
978 /* FIXME: should be checking for errors from bfd_close (for one thing,
979 on error it does not free all the storage associated with the
981 old_cleanups = make_cleanup (bfd_close, loadfile_bfd);
983 if (!bfd_check_format (loadfile_bfd, bfd_object))
985 error ("\"%s\" is not an object file: %s", filename,
986 bfd_errmsg (bfd_get_error ()));
989 start_time = time (NULL);
991 for (s = loadfile_bfd->sections; s; s = s->next)
993 if (s->flags & SEC_LOAD)
997 size = bfd_get_section_size_before_reloc (s);
1001 struct cleanup *old_chain;
1006 buffer = xmalloc (size);
1007 old_chain = make_cleanup (free, buffer);
1009 vma = bfd_get_section_vma (loadfile_bfd, s);
1012 /* Is this really necessary? I guess it gives the user something
1013 to look at during a long download. */
1014 printf_filtered ("Loading section %s, size 0x%lx vma ",
1015 bfd_get_section_name (loadfile_bfd, s),
1016 (unsigned long) size);
1017 print_address_numeric (vma, 1, gdb_stdout);
1018 printf_filtered ("\n");
1020 bfd_get_section_contents (loadfile_bfd, s, buffer, 0, size);
1022 target_write_memory (vma, buffer, size);
1024 do_cleanups (old_chain);
1029 end_time = time (NULL);
1031 printf_filtered ("Start address 0x%lx\n", loadfile_bfd->start_address);
1033 /* We were doing this in remote-mips.c, I suspect it is right
1034 for other targets too. */
1035 write_pc (loadfile_bfd->start_address);
1037 /* FIXME: are we supposed to call symbol_file_add or not? According to
1038 a comment from remote-mips.c (where a call to symbol_file_add was
1039 commented out), making the call confuses GDB if more than one file is
1040 loaded in. remote-nindy.c had no call to symbol_file_add, but remote-vx.c
1043 report_transfer_performance (data_count, start_time, end_time);
1045 do_cleanups (old_cleanups);
1048 /* Report how fast the transfer went. */
1051 report_transfer_performance (data_count, start_time, end_time)
1052 unsigned long data_count;
1053 time_t start_time, end_time;
1055 printf_filtered ("Transfer rate: ");
1056 if (end_time != start_time)
1057 printf_filtered ("%d bits/sec",
1058 (data_count * 8) / (end_time - start_time));
1060 printf_filtered ("%d bits in <1 sec", (data_count * 8));
1061 printf_filtered (".\n");
1064 /* This function allows the addition of incrementally linked object files.
1065 It does not modify any state in the target, only in the debugger. */
1069 add_symbol_file_command (args, from_tty)
1074 CORE_ADDR text_addr;
1083 error ("add-symbol-file takes a file name and an address");
1086 /* Make a copy of the string that we can safely write into. */
1088 args = strdup (args);
1089 make_cleanup (free, args);
1091 /* Pick off any -option args and the file name. */
1093 while ((*args != '\000') && (name == NULL))
1095 while (isspace (*args)) {args++;}
1097 while ((*args != '\000') && !isspace (*args)) {args++;}
1098 if (*args != '\000')
1106 else if (STREQ (arg, "-mapped"))
1110 else if (STREQ (arg, "-readnow"))
1116 error ("unknown option `%s'", arg);
1120 /* After picking off any options and the file name, args should be
1121 left pointing at the remainder of the command line, which should
1122 be the address expression to evaluate. */
1126 error ("add-symbol-file takes a file name");
1128 name = tilde_expand (name);
1129 make_cleanup (free, name);
1131 if (*args != '\000')
1133 text_addr = parse_and_eval_address (args);
1137 target_link(name, &text_addr);
1138 if (text_addr == (CORE_ADDR)-1)
1139 error("Don't know how to get text start location for this file");
1142 /* FIXME-32x64: Assumes text_addr fits in a long. */
1143 if (!query ("add symbol table from file \"%s\" at text_addr = %s?\n",
1144 name, local_hex_string ((unsigned long)text_addr)))
1145 error ("Not confirmed.");
1147 symbol_file_add (name, 0, text_addr, 0, mapped, readnow);
1149 /* Getting new symbols may change our opinion about what is
1151 reinit_frame_cache ();
1155 add_shared_symbol_files_command (args, from_tty)
1159 #ifdef ADD_SHARED_SYMBOL_FILES
1160 ADD_SHARED_SYMBOL_FILES (args, from_tty);
1162 error ("This command is not available in this configuration of GDB.");
1166 /* Re-read symbols if a symbol-file has changed. */
1170 struct objfile *objfile;
1173 struct stat new_statbuf;
1176 /* With the addition of shared libraries, this should be modified,
1177 the load time should be saved in the partial symbol tables, since
1178 different tables may come from different source files. FIXME.
1179 This routine should then walk down each partial symbol table
1180 and see if the symbol table that it originates from has been changed */
1182 for (objfile = object_files; objfile; objfile = objfile->next) {
1183 if (objfile->obfd) {
1184 #ifdef IBM6000_TARGET
1185 /* If this object is from a shared library, then you should
1186 stat on the library name, not member name. */
1188 if (objfile->obfd->my_archive)
1189 res = stat (objfile->obfd->my_archive->filename, &new_statbuf);
1192 res = stat (objfile->name, &new_statbuf);
1194 /* FIXME, should use print_sys_errmsg but it's not filtered. */
1195 printf_filtered ("`%s' has disappeared; keeping its symbols.\n",
1199 new_modtime = new_statbuf.st_mtime;
1200 if (new_modtime != objfile->mtime)
1202 struct cleanup *old_cleanups;
1203 struct section_offsets *offsets;
1205 int section_offsets_size;
1206 char *obfd_filename;
1208 printf_filtered ("`%s' has changed; re-reading symbols.\n",
1211 /* There are various functions like symbol_file_add,
1212 symfile_bfd_open, syms_from_objfile, etc., which might
1213 appear to do what we want. But they have various other
1214 effects which we *don't* want. So we just do stuff
1215 ourselves. We don't worry about mapped files (for one thing,
1216 any mapped file will be out of date). */
1218 /* If we get an error, blow away this objfile (not sure if
1219 that is the correct response for things like shared
1221 old_cleanups = make_cleanup (free_objfile, objfile);
1222 /* We need to do this whenever any symbols go away. */
1223 make_cleanup (clear_symtab_users, 0);
1225 /* Clean up any state BFD has sitting around. We don't need
1226 to close the descriptor but BFD lacks a way of closing the
1227 BFD without closing the descriptor. */
1228 obfd_filename = bfd_get_filename (objfile->obfd);
1229 if (!bfd_close (objfile->obfd))
1230 error ("Can't close BFD for %s: %s", objfile->name,
1231 bfd_errmsg (bfd_get_error ()));
1232 objfile->obfd = bfd_openr (obfd_filename, gnutarget);
1233 if (objfile->obfd == NULL)
1234 error ("Can't open %s to read symbols.", objfile->name);
1235 /* bfd_openr sets cacheable to true, which is what we want. */
1236 if (!bfd_check_format (objfile->obfd, bfd_object))
1237 error ("Can't read symbols from %s: %s.", objfile->name,
1238 bfd_errmsg (bfd_get_error ()));
1240 /* Save the offsets, we will nuke them with the rest of the
1242 num_offsets = objfile->num_sections;
1243 section_offsets_size =
1244 sizeof (struct section_offsets)
1245 + sizeof (objfile->section_offsets->offsets) * num_offsets;
1246 offsets = (struct section_offsets *) alloca (section_offsets_size);
1247 memcpy (offsets, objfile->section_offsets, section_offsets_size);
1249 /* Nuke all the state that we will re-read. Much of the following
1250 code which sets things to NULL really is necessary to tell
1251 other parts of GDB that there is nothing currently there. */
1253 /* FIXME: Do we have to free a whole linked list, or is this
1255 if (objfile->global_psymbols.list)
1256 mfree (objfile->md, objfile->global_psymbols.list);
1257 memset (&objfile -> global_psymbols, 0,
1258 sizeof (objfile -> global_psymbols));
1259 if (objfile->static_psymbols.list)
1260 mfree (objfile->md, objfile->static_psymbols.list);
1261 memset (&objfile -> static_psymbols, 0,
1262 sizeof (objfile -> static_psymbols));
1264 /* Free the obstacks for non-reusable objfiles */
1265 obstack_free (&objfile -> psymbol_cache.cache, 0);
1266 memset (&objfile -> psymbol_cache, 0,
1267 sizeof (objfile -> psymbol_cache));
1268 obstack_free (&objfile -> psymbol_obstack, 0);
1269 obstack_free (&objfile -> symbol_obstack, 0);
1270 obstack_free (&objfile -> type_obstack, 0);
1271 objfile->sections = NULL;
1272 objfile->symtabs = NULL;
1273 objfile->psymtabs = NULL;
1274 objfile->free_psymtabs = NULL;
1275 objfile->msymbols = NULL;
1276 objfile->minimal_symbol_count= 0;
1277 objfile->fundamental_types = NULL;
1278 if (objfile -> sf != NULL)
1280 (*objfile -> sf -> sym_finish) (objfile);
1283 /* We never make this a mapped file. */
1284 objfile -> md = NULL;
1285 /* obstack_specify_allocation also initializes the obstack so
1287 obstack_specify_allocation (&objfile -> psymbol_cache.cache, 0, 0,
1289 obstack_specify_allocation (&objfile -> psymbol_obstack, 0, 0,
1291 obstack_specify_allocation (&objfile -> symbol_obstack, 0, 0,
1293 obstack_specify_allocation (&objfile -> type_obstack, 0, 0,
1295 if (build_objfile_section_table (objfile))
1297 error ("Can't find the file sections in `%s': %s",
1298 objfile -> name, bfd_errmsg (bfd_get_error ()));
1301 /* We use the same section offsets as from last time. I'm not
1302 sure whether that is always correct for shared libraries. */
1303 objfile->section_offsets = (struct section_offsets *)
1304 obstack_alloc (&objfile -> psymbol_obstack, section_offsets_size);
1305 memcpy (objfile->section_offsets, offsets, section_offsets_size);
1306 objfile->num_sections = num_offsets;
1308 /* What the hell is sym_new_init for, anyway? The concept of
1309 distinguishing between the main file and additional files
1310 in this way seems rather dubious. */
1311 if (objfile == symfile_objfile)
1312 (*objfile->sf->sym_new_init) (objfile);
1314 (*objfile->sf->sym_init) (objfile);
1315 clear_complaints (1, 1);
1316 /* The "mainline" parameter is a hideous hack; I think leaving it
1317 zero is OK since dbxread.c also does what it needs to do if
1318 objfile->global_psymbols.size is 0. */
1319 (*objfile->sf->sym_read) (objfile, objfile->section_offsets, 0);
1320 if (!have_partial_symbols () && !have_full_symbols ())
1323 printf_filtered ("(no debugging symbols found)\n");
1326 objfile -> flags |= OBJF_SYMS;
1328 /* We're done reading the symbol file; finish off complaints. */
1329 clear_complaints (0, 1);
1331 /* Getting new symbols may change our opinion about what is
1334 reinit_frame_cache ();
1336 /* Discard cleanups as symbol reading was successful. */
1337 discard_cleanups (old_cleanups);
1339 /* If the mtime has changed between the time we set new_modtime
1340 and now, we *want* this to be out of date, so don't call stat
1342 objfile->mtime = new_modtime;
1345 /* Call this after reading in a new symbol table to give target
1346 dependant code a crack at the new symbols. For instance, this
1347 could be used to update the values of target-specific symbols GDB
1348 needs to keep track of (such as _sigtramp, or whatever). */
1350 TARGET_SYMFILE_POSTREAD (objfile);
1356 clear_symtab_users ();
1361 deduce_language_from_filename (filename)
1368 else if (0 == (c = strrchr (filename, '.')))
1369 ; /* Get default. */
1370 else if (STREQ (c, ".c"))
1372 else if (STREQ (c, ".cc") || STREQ (c, ".C") || STREQ (c, ".cxx")
1373 || STREQ (c, ".cpp") || STREQ (c, ".cp") || STREQ (c, ".c++"))
1374 return language_cplus;
1375 else if (STREQ (c, ".ch") || STREQ (c, ".c186") || STREQ (c, ".c286"))
1376 return language_chill;
1377 else if (STREQ (c, ".f") || STREQ (c, ".F"))
1378 return language_fortran;
1379 else if (STREQ (c, ".mod"))
1381 else if (STREQ (c, ".s") || STREQ (c, ".S"))
1382 return language_asm;
1384 return language_unknown; /* default */
1389 Allocate and partly initialize a new symbol table. Return a pointer
1390 to it. error() if no space.
1392 Caller must set these fields:
1398 initialize any EXTRA_SYMTAB_INFO
1399 possibly free_named_symtabs (symtab->filename);
1403 allocate_symtab (filename, objfile)
1405 struct objfile *objfile;
1407 register struct symtab *symtab;
1409 symtab = (struct symtab *)
1410 obstack_alloc (&objfile -> symbol_obstack, sizeof (struct symtab));
1411 memset (symtab, 0, sizeof (*symtab));
1412 symtab -> filename = obsavestring (filename, strlen (filename),
1413 &objfile -> symbol_obstack);
1414 symtab -> fullname = NULL;
1415 symtab -> language = deduce_language_from_filename (filename);
1417 /* Hook it to the objfile it comes from */
1419 symtab -> objfile = objfile;
1420 symtab -> next = objfile -> symtabs;
1421 objfile -> symtabs = symtab;
1423 #ifdef INIT_EXTRA_SYMTAB_INFO
1424 INIT_EXTRA_SYMTAB_INFO (symtab);
1430 struct partial_symtab *
1431 allocate_psymtab (filename, objfile)
1433 struct objfile *objfile;
1435 struct partial_symtab *psymtab;
1437 if (objfile -> free_psymtabs)
1439 psymtab = objfile -> free_psymtabs;
1440 objfile -> free_psymtabs = psymtab -> next;
1443 psymtab = (struct partial_symtab *)
1444 obstack_alloc (&objfile -> psymbol_obstack,
1445 sizeof (struct partial_symtab));
1447 memset (psymtab, 0, sizeof (struct partial_symtab));
1448 psymtab -> filename = obsavestring (filename, strlen (filename),
1449 &objfile -> psymbol_obstack);
1450 psymtab -> symtab = NULL;
1452 /* Hook it to the objfile it comes from */
1454 psymtab -> objfile = objfile;
1455 psymtab -> next = objfile -> psymtabs;
1456 objfile -> psymtabs = psymtab;
1462 /* Reset all data structures in gdb which may contain references to symbol
1466 clear_symtab_users ()
1468 /* Someday, we should do better than this, by only blowing away
1469 the things that really need to be blown. */
1470 clear_value_history ();
1472 clear_internalvars ();
1473 breakpoint_re_set ();
1474 set_default_breakpoint (0, 0, 0, 0);
1475 current_source_symtab = 0;
1476 current_source_line = 0;
1477 clear_pc_function_cache ();
1478 target_new_objfile (NULL);
1481 /* clear_symtab_users_once:
1483 This function is run after symbol reading, or from a cleanup.
1484 If an old symbol table was obsoleted, the old symbol table
1485 has been blown away, but the other GDB data structures that may
1486 reference it have not yet been cleared or re-directed. (The old
1487 symtab was zapped, and the cleanup queued, in free_named_symtab()
1490 This function can be queued N times as a cleanup, or called
1491 directly; it will do all the work the first time, and then will be a
1492 no-op until the next time it is queued. This works by bumping a
1493 counter at queueing time. Much later when the cleanup is run, or at
1494 the end of symbol processing (in case the cleanup is discarded), if
1495 the queued count is greater than the "done-count", we do the work
1496 and set the done-count to the queued count. If the queued count is
1497 less than or equal to the done-count, we just ignore the call. This
1498 is needed because reading a single .o file will often replace many
1499 symtabs (one per .h file, for example), and we don't want to reset
1500 the breakpoints N times in the user's face.
1502 The reason we both queue a cleanup, and call it directly after symbol
1503 reading, is because the cleanup protects us in case of errors, but is
1504 discarded if symbol reading is successful. */
1507 /* FIXME: As free_named_symtabs is currently a big noop this function
1508 is no longer needed. */
1510 clear_symtab_users_once PARAMS ((void));
1512 static int clear_symtab_users_queued;
1513 static int clear_symtab_users_done;
1516 clear_symtab_users_once ()
1518 /* Enforce once-per-`do_cleanups'-semantics */
1519 if (clear_symtab_users_queued <= clear_symtab_users_done)
1521 clear_symtab_users_done = clear_symtab_users_queued;
1523 clear_symtab_users ();
1527 /* Delete the specified psymtab, and any others that reference it. */
1530 cashier_psymtab (pst)
1531 struct partial_symtab *pst;
1533 struct partial_symtab *ps, *pprev = NULL;
1536 /* Find its previous psymtab in the chain */
1537 for (ps = pst->objfile->psymtabs; ps; ps = ps->next) {
1544 /* Unhook it from the chain. */
1545 if (ps == pst->objfile->psymtabs)
1546 pst->objfile->psymtabs = ps->next;
1548 pprev->next = ps->next;
1550 /* FIXME, we can't conveniently deallocate the entries in the
1551 partial_symbol lists (global_psymbols/static_psymbols) that
1552 this psymtab points to. These just take up space until all
1553 the psymtabs are reclaimed. Ditto the dependencies list and
1554 filename, which are all in the psymbol_obstack. */
1556 /* We need to cashier any psymtab that has this one as a dependency... */
1558 for (ps = pst->objfile->psymtabs; ps; ps = ps->next) {
1559 for (i = 0; i < ps->number_of_dependencies; i++) {
1560 if (ps->dependencies[i] == pst) {
1561 cashier_psymtab (ps);
1562 goto again; /* Must restart, chain has been munged. */
1569 /* If a symtab or psymtab for filename NAME is found, free it along
1570 with any dependent breakpoints, displays, etc.
1571 Used when loading new versions of object modules with the "add-file"
1572 command. This is only called on the top-level symtab or psymtab's name;
1573 it is not called for subsidiary files such as .h files.
1575 Return value is 1 if we blew away the environment, 0 if not.
1576 FIXME. The return valu appears to never be used.
1578 FIXME. I think this is not the best way to do this. We should
1579 work on being gentler to the environment while still cleaning up
1580 all stray pointers into the freed symtab. */
1583 free_named_symtabs (name)
1587 /* FIXME: With the new method of each objfile having it's own
1588 psymtab list, this function needs serious rethinking. In particular,
1589 why was it ever necessary to toss psymtabs with specific compilation
1590 unit filenames, as opposed to all psymtabs from a particular symbol
1592 Well, the answer is that some systems permit reloading of particular
1593 compilation units. We want to blow away any old info about these
1594 compilation units, regardless of which objfiles they arrived in. --gnu. */
1596 register struct symtab *s;
1597 register struct symtab *prev;
1598 register struct partial_symtab *ps;
1599 struct blockvector *bv;
1602 /* We only wack things if the symbol-reload switch is set. */
1603 if (!symbol_reloading)
1606 /* Some symbol formats have trouble providing file names... */
1607 if (name == 0 || *name == '\0')
1610 /* Look for a psymtab with the specified name. */
1613 for (ps = partial_symtab_list; ps; ps = ps->next) {
1614 if (STREQ (name, ps->filename)) {
1615 cashier_psymtab (ps); /* Blow it away...and its little dog, too. */
1616 goto again2; /* Must restart, chain has been munged */
1620 /* Look for a symtab with the specified name. */
1622 for (s = symtab_list; s; s = s->next)
1624 if (STREQ (name, s->filename))
1631 if (s == symtab_list)
1632 symtab_list = s->next;
1634 prev->next = s->next;
1636 /* For now, queue a delete for all breakpoints, displays, etc., whether
1637 or not they depend on the symtab being freed. This should be
1638 changed so that only those data structures affected are deleted. */
1640 /* But don't delete anything if the symtab is empty.
1641 This test is necessary due to a bug in "dbxread.c" that
1642 causes empty symtabs to be created for N_SO symbols that
1643 contain the pathname of the object file. (This problem
1644 has been fixed in GDB 3.9x). */
1646 bv = BLOCKVECTOR (s);
1647 if (BLOCKVECTOR_NBLOCKS (bv) > 2
1648 || BLOCK_NSYMS (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK))
1649 || BLOCK_NSYMS (BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK)))
1651 complain (&oldsyms_complaint, name);
1653 clear_symtab_users_queued++;
1654 make_cleanup (clear_symtab_users_once, 0);
1657 complain (&empty_symtab_complaint, name);
1664 /* It is still possible that some breakpoints will be affected
1665 even though no symtab was found, since the file might have
1666 been compiled without debugging, and hence not be associated
1667 with a symtab. In order to handle this correctly, we would need
1668 to keep a list of text address ranges for undebuggable files.
1669 For now, we do nothing, since this is a fairly obscure case. */
1673 /* FIXME, what about the minimal symbol table? */
1680 /* Allocate and partially fill a partial symtab. It will be
1681 completely filled at the end of the symbol list.
1683 SYMFILE_NAME is the name of the symbol-file we are reading from, and ADDR
1684 is the address relative to which its symbols are (incremental) or 0
1688 struct partial_symtab *
1689 start_psymtab_common (objfile, section_offsets,
1690 filename, textlow, global_syms, static_syms)
1691 struct objfile *objfile;
1692 struct section_offsets *section_offsets;
1695 struct partial_symbol **global_syms;
1696 struct partial_symbol **static_syms;
1698 struct partial_symtab *psymtab;
1700 psymtab = allocate_psymtab (filename, objfile);
1701 psymtab -> section_offsets = section_offsets;
1702 psymtab -> textlow = textlow;
1703 psymtab -> texthigh = psymtab -> textlow; /* default */
1704 psymtab -> globals_offset = global_syms - objfile -> global_psymbols.list;
1705 psymtab -> statics_offset = static_syms - objfile -> static_psymbols.list;
1709 /* Add a symbol with a long value to a psymtab.
1710 Since one arg is a struct, we pass in a ptr and deref it (sigh). */
1713 add_psymbol_to_list (name, namelength, namespace, class, list, val, coreaddr,
1717 namespace_enum namespace;
1718 enum address_class class;
1719 struct psymbol_allocation_list *list;
1720 long val; /* Value as a long */
1721 CORE_ADDR coreaddr; /* Value as a CORE_ADDR */
1722 enum language language;
1723 struct objfile *objfile;
1725 register struct partial_symbol *psym;
1726 char *buf = alloca (namelength + 1);
1727 /* psymbol is static so that there will be no uninitialized gaps in the
1728 structure which might contain random data, causing cache misses in
1730 static struct partial_symbol psymbol;
1732 /* Create local copy of the partial symbol */
1733 memcpy (buf, name, namelength);
1734 buf[namelength] = '\0';
1735 SYMBOL_NAME (&psymbol) = bcache (buf, namelength + 1, &objfile->psymbol_cache);
1736 /* val and coreaddr are mutually exclusive, one of them *will* be zero */
1739 SYMBOL_VALUE (&psymbol) = val;
1743 SYMBOL_VALUE_ADDRESS (&psymbol) = coreaddr;
1745 SYMBOL_SECTION (&psymbol) = 0;
1746 SYMBOL_LANGUAGE (&psymbol) = language;
1747 PSYMBOL_NAMESPACE (&psymbol) = namespace;
1748 PSYMBOL_CLASS (&psymbol) = class;
1749 SYMBOL_INIT_LANGUAGE_SPECIFIC (&psymbol, language);
1751 /* Stash the partial symbol away in the cache */
1752 psym = bcache (&psymbol, sizeof (struct partial_symbol), &objfile->psymbol_cache);
1754 /* Save pointer to partial symbol in psymtab, growing symtab if needed. */
1755 if (list->next >= list->list + list->size)
1757 extend_psymbol_list (list, objfile);
1759 *list->next++ = psym;
1760 OBJSTAT (objfile, n_psyms++);
1763 /* Initialize storage for partial symbols. */
1766 init_psymbol_list (objfile, total_symbols)
1767 struct objfile *objfile;
1770 /* Free any previously allocated psymbol lists. */
1772 if (objfile -> global_psymbols.list)
1774 mfree (objfile -> md, (PTR)objfile -> global_psymbols.list);
1776 if (objfile -> static_psymbols.list)
1778 mfree (objfile -> md, (PTR)objfile -> static_psymbols.list);
1781 /* Current best guess is that approximately a twentieth
1782 of the total symbols (in a debugging file) are global or static
1785 objfile -> global_psymbols.size = total_symbols / 10;
1786 objfile -> static_psymbols.size = total_symbols / 10;
1787 objfile -> global_psymbols.next =
1788 objfile -> global_psymbols.list = (struct partial_symbol **)
1789 xmmalloc (objfile -> md, objfile -> global_psymbols.size
1790 * sizeof (struct partial_symbol *));
1791 objfile -> static_psymbols.next =
1792 objfile -> static_psymbols.list = (struct partial_symbol **)
1793 xmmalloc (objfile -> md, objfile -> static_psymbols.size
1794 * sizeof (struct partial_symbol *));
1798 _initialize_symfile ()
1800 struct cmd_list_element *c;
1802 c = add_cmd ("symbol-file", class_files, symbol_file_command,
1803 "Load symbol table from executable file FILE.\n\
1804 The `file' command can also load symbol tables, as well as setting the file\n\
1805 to execute.", &cmdlist);
1806 c->completer = filename_completer;
1808 c = add_cmd ("add-symbol-file", class_files, add_symbol_file_command,
1809 "Usage: add-symbol-file FILE ADDR\n\
1810 Load the symbols from FILE, assuming FILE has been dynamically loaded.\n\
1811 ADDR is the starting address of the file's text.",
1813 c->completer = filename_completer;
1815 c = add_cmd ("add-shared-symbol-files", class_files,
1816 add_shared_symbol_files_command,
1817 "Load the symbols from shared objects in the dynamic linker's link map.",
1819 c = add_alias_cmd ("assf", "add-shared-symbol-files", class_files, 1,
1822 c = add_cmd ("load", class_files, load_command,
1823 "Dynamically load FILE into the running program, and record its symbols\n\
1824 for access from GDB.", &cmdlist);
1825 c->completer = filename_completer;
1828 (add_set_cmd ("symbol-reloading", class_support, var_boolean,
1829 (char *)&symbol_reloading,
1830 "Set dynamic symbol table reloading multiple times in one run.",