import gdb-1999-08-30 snapshot
[binutils-gdb.git] / gdb / symfile.c
1 /* Generic symbol file reading for the GNU debugger, GDB.
2 Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1998
3 Free Software Foundation, Inc.
4 Contributed by Cygnus Support, using pieces from other GDB modules.
5
6 This file is part of GDB.
7
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.
12
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.
17
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,
21 Boston, MA 02111-1307, USA. */
22
23 #include "defs.h"
24 #include "symtab.h"
25 #include "gdbtypes.h"
26 #include "gdbcore.h"
27 #include "frame.h"
28 #include "target.h"
29 #include "value.h"
30 #include "symfile.h"
31 #include "objfiles.h"
32 #include "gdbcmd.h"
33 #include "breakpoint.h"
34 #include "language.h"
35 #include "complaints.h"
36 #include "demangle.h"
37 #include "inferior.h" /* for write_pc */
38 #include "gdb-stabs.h"
39 #include "obstack.h"
40
41 #include <assert.h>
42 #include <sys/types.h>
43 #include <fcntl.h>
44 #include "gdb_string.h"
45 #include "gdb_stat.h"
46 #include <ctype.h>
47 #include <time.h>
48
49 #ifndef O_BINARY
50 #define O_BINARY 0
51 #endif
52
53 #ifdef HPUXHPPA
54
55 /* Some HP-UX related globals to clear when a new "main"
56 symbol file is loaded. HP-specific. */
57
58 extern int hp_som_som_object_present;
59 extern int hp_cxx_exception_support_initialized;
60 #define RESET_HP_UX_GLOBALS() do {\
61 hp_som_som_object_present = 0; /* indicates HP-compiled code */ \
62 hp_cxx_exception_support_initialized = 0; /* must reinitialize exception stuff */ \
63 } while (0)
64 #endif
65
66 int (*ui_load_progress_hook) PARAMS ((char *, unsigned long));
67 void (*pre_add_symbol_hook) PARAMS ((char *));
68 void (*post_add_symbol_hook) PARAMS ((void));
69
70 /* Global variables owned by this file */
71 int readnow_symbol_files; /* Read full symbols immediately */
72
73 struct complaint oldsyms_complaint =
74 {
75 "Replacing old symbols for `%s'", 0, 0
76 };
77
78 struct complaint empty_symtab_complaint =
79 {
80 "Empty symbol table found for `%s'", 0, 0
81 };
82
83 /* External variables and functions referenced. */
84
85 extern int info_verbose;
86
87 extern void report_transfer_performance PARAMS ((unsigned long,
88 time_t, time_t));
89
90 /* Functions this file defines */
91
92 #if 0
93 static int simple_read_overlay_region_table PARAMS ((void));
94 static void simple_free_overlay_region_table PARAMS ((void));
95 #endif
96
97 static void set_initial_language PARAMS ((void));
98
99 static void load_command PARAMS ((char *, int));
100
101 static void add_symbol_file_command PARAMS ((char *, int));
102
103 static void add_shared_symbol_files_command PARAMS ((char *, int));
104
105 static void cashier_psymtab PARAMS ((struct partial_symtab *));
106
107 static int compare_psymbols PARAMS ((const void *, const void *));
108
109 static int compare_symbols PARAMS ((const void *, const void *));
110
111 bfd *symfile_bfd_open PARAMS ((char *));
112
113 static void find_sym_fns PARAMS ((struct objfile *));
114
115 static void decrement_reading_symtab PARAMS ((void *));
116
117 static void overlay_invalidate_all PARAMS ((void));
118
119 static int overlay_is_mapped PARAMS ((struct obj_section *));
120
121 void list_overlays_command PARAMS ((char *, int));
122
123 void map_overlay_command PARAMS ((char *, int));
124
125 void unmap_overlay_command PARAMS ((char *, int));
126
127 static void overlay_auto_command PARAMS ((char *, int));
128
129 static void overlay_manual_command PARAMS ((char *, int));
130
131 static void overlay_off_command PARAMS ((char *, int));
132
133 static void overlay_load_command PARAMS ((char *, int));
134
135 static void overlay_command PARAMS ((char *, int));
136
137 static void simple_free_overlay_table PARAMS ((void));
138
139 static void read_target_long_array PARAMS ((CORE_ADDR, unsigned int *, int));
140
141 static int simple_read_overlay_table PARAMS ((void));
142
143 static int simple_overlay_update_1 PARAMS ((struct obj_section *));
144
145 static void add_filename_language PARAMS ((char *ext, enum language lang));
146
147 static void set_ext_lang_command PARAMS ((char *args, int from_tty));
148
149 static void info_ext_lang_command PARAMS ((char *args, int from_tty));
150
151 static void init_filename_language_table PARAMS ((void));
152
153 void _initialize_symfile PARAMS ((void));
154
155 /* List of all available sym_fns. On gdb startup, each object file reader
156 calls add_symtab_fns() to register information on each format it is
157 prepared to read. */
158
159 static struct sym_fns *symtab_fns = NULL;
160
161 /* Flag for whether user will be reloading symbols multiple times.
162 Defaults to ON for VxWorks, otherwise OFF. */
163
164 #ifdef SYMBOL_RELOADING_DEFAULT
165 int symbol_reloading = SYMBOL_RELOADING_DEFAULT;
166 #else
167 int symbol_reloading = 0;
168 #endif
169
170 /* If non-zero, then on HP-UX (i.e., platforms that use somsolib.c),
171 this variable is interpreted as a threshhold. If adding a new
172 library's symbol table to those already known to the debugger would
173 exceed this threshhold, then the shlib's symbols are not added.
174
175 If non-zero on other platforms, shared library symbols will be added
176 automatically when the inferior is created, new libraries are loaded,
177 or when attaching to the inferior. This is almost always what users
178 will want to have happen; but for very large programs, the startup
179 time will be excessive, and so if this is a problem, the user can
180 clear this flag and then add the shared library symbols as needed.
181 Note that there is a potential for confusion, since if the shared
182 library symbols are not loaded, commands like "info fun" will *not*
183 report all the functions that are actually present.
184
185 Note that HP-UX interprets this variable to mean, "threshhold size
186 in megabytes, where zero means never add". Other platforms interpret
187 this variable to mean, "always add if non-zero, never add if zero."
188 */
189
190 int auto_solib_add = 1;
191 \f
192
193 /* Since this function is called from within qsort, in an ANSI environment
194 it must conform to the prototype for qsort, which specifies that the
195 comparison function takes two "void *" pointers. */
196
197 static int
198 compare_symbols (s1p, s2p)
199 const PTR s1p;
200 const PTR s2p;
201 {
202 register struct symbol **s1, **s2;
203
204 s1 = (struct symbol **) s1p;
205 s2 = (struct symbol **) s2p;
206
207 return (STRCMP (SYMBOL_NAME (*s1), SYMBOL_NAME (*s2)));
208 }
209
210 /*
211
212 LOCAL FUNCTION
213
214 compare_psymbols -- compare two partial symbols by name
215
216 DESCRIPTION
217
218 Given pointers to pointers to two partial symbol table entries,
219 compare them by name and return -N, 0, or +N (ala strcmp).
220 Typically used by sorting routines like qsort().
221
222 NOTES
223
224 Does direct compare of first two characters before punting
225 and passing to strcmp for longer compares. Note that the
226 original version had a bug whereby two null strings or two
227 identically named one character strings would return the
228 comparison of memory following the null byte.
229
230 */
231
232 static int
233 compare_psymbols (s1p, s2p)
234 const PTR s1p;
235 const PTR s2p;
236 {
237 register char *st1 = SYMBOL_NAME (*(struct partial_symbol **) s1p);
238 register char *st2 = SYMBOL_NAME (*(struct partial_symbol **) s2p);
239
240 if ((st1[0] - st2[0]) || !st1[0])
241 {
242 return (st1[0] - st2[0]);
243 }
244 else if ((st1[1] - st2[1]) || !st1[1])
245 {
246 return (st1[1] - st2[1]);
247 }
248 else
249 {
250 /* Note: I replaced the STRCMP line (commented out below)
251 * with a simpler "strcmp()" which compares the 2 strings
252 * from the beginning. (STRCMP is a macro which first compares
253 * the initial characters, then falls back on strcmp).
254 * The reason is that the STRCMP line was tickling a C compiler
255 * bug on HP-UX 10.30, which is avoided with the simpler
256 * code. The performance gain from the more complicated code
257 * is negligible, given that we have already checked the
258 * initial 2 characters above. I reported the compiler bug,
259 * and once it is fixed the original line can be put back. RT
260 */
261 /* return ( STRCMP (st1 + 2, st2 + 2)); */
262 return (strcmp (st1, st2));
263 }
264 }
265
266 void
267 sort_pst_symbols (pst)
268 struct partial_symtab *pst;
269 {
270 /* Sort the global list; don't sort the static list */
271
272 qsort (pst->objfile->global_psymbols.list + pst->globals_offset,
273 pst->n_global_syms, sizeof (struct partial_symbol *),
274 compare_psymbols);
275 }
276
277 /* Call sort_block_syms to sort alphabetically the symbols of one block. */
278
279 void
280 sort_block_syms (b)
281 register struct block *b;
282 {
283 qsort (&BLOCK_SYM (b, 0), BLOCK_NSYMS (b),
284 sizeof (struct symbol *), compare_symbols);
285 }
286
287 /* Call sort_symtab_syms to sort alphabetically
288 the symbols of each block of one symtab. */
289
290 void
291 sort_symtab_syms (s)
292 register struct symtab *s;
293 {
294 register struct blockvector *bv;
295 int nbl;
296 int i;
297 register struct block *b;
298
299 if (s == 0)
300 return;
301 bv = BLOCKVECTOR (s);
302 nbl = BLOCKVECTOR_NBLOCKS (bv);
303 for (i = 0; i < nbl; i++)
304 {
305 b = BLOCKVECTOR_BLOCK (bv, i);
306 if (BLOCK_SHOULD_SORT (b))
307 sort_block_syms (b);
308 }
309 }
310
311 /* Make a null terminated copy of the string at PTR with SIZE characters in
312 the obstack pointed to by OBSTACKP . Returns the address of the copy.
313 Note that the string at PTR does not have to be null terminated, I.E. it
314 may be part of a larger string and we are only saving a substring. */
315
316 char *
317 obsavestring (ptr, size, obstackp)
318 char *ptr;
319 int size;
320 struct obstack *obstackp;
321 {
322 register char *p = (char *) obstack_alloc (obstackp, size + 1);
323 /* Open-coded memcpy--saves function call time. These strings are usually
324 short. FIXME: Is this really still true with a compiler that can
325 inline memcpy? */
326 {
327 register char *p1 = ptr;
328 register char *p2 = p;
329 char *end = ptr + size;
330 while (p1 != end)
331 *p2++ = *p1++;
332 }
333 p[size] = 0;
334 return p;
335 }
336
337 /* Concatenate strings S1, S2 and S3; return the new string. Space is found
338 in the obstack pointed to by OBSTACKP. */
339
340 char *
341 obconcat (obstackp, s1, s2, s3)
342 struct obstack *obstackp;
343 const char *s1, *s2, *s3;
344 {
345 register int len = strlen (s1) + strlen (s2) + strlen (s3) + 1;
346 register char *val = (char *) obstack_alloc (obstackp, len);
347 strcpy (val, s1);
348 strcat (val, s2);
349 strcat (val, s3);
350 return val;
351 }
352
353 /* True if we are nested inside psymtab_to_symtab. */
354
355 int currently_reading_symtab = 0;
356
357 static void
358 decrement_reading_symtab (dummy)
359 void *dummy;
360 {
361 currently_reading_symtab--;
362 }
363
364 /* Get the symbol table that corresponds to a partial_symtab.
365 This is fast after the first time you do it. In fact, there
366 is an even faster macro PSYMTAB_TO_SYMTAB that does the fast
367 case inline. */
368
369 struct symtab *
370 psymtab_to_symtab (pst)
371 register struct partial_symtab *pst;
372 {
373 /* If it's been looked up before, return it. */
374 if (pst->symtab)
375 return pst->symtab;
376
377 /* If it has not yet been read in, read it. */
378 if (!pst->readin)
379 {
380 struct cleanup *back_to = make_cleanup (decrement_reading_symtab, NULL);
381 currently_reading_symtab++;
382 (*pst->read_symtab) (pst);
383 do_cleanups (back_to);
384 }
385
386 return pst->symtab;
387 }
388
389 /* Initialize entry point information for this objfile. */
390
391 void
392 init_entry_point_info (objfile)
393 struct objfile *objfile;
394 {
395 /* Save startup file's range of PC addresses to help blockframe.c
396 decide where the bottom of the stack is. */
397
398 if (bfd_get_file_flags (objfile->obfd) & EXEC_P)
399 {
400 /* Executable file -- record its entry point so we'll recognize
401 the startup file because it contains the entry point. */
402 objfile->ei.entry_point = bfd_get_start_address (objfile->obfd);
403 }
404 else
405 {
406 /* Examination of non-executable.o files. Short-circuit this stuff. */
407 objfile->ei.entry_point = INVALID_ENTRY_POINT;
408 }
409 objfile->ei.entry_file_lowpc = INVALID_ENTRY_LOWPC;
410 objfile->ei.entry_file_highpc = INVALID_ENTRY_HIGHPC;
411 objfile->ei.entry_func_lowpc = INVALID_ENTRY_LOWPC;
412 objfile->ei.entry_func_highpc = INVALID_ENTRY_HIGHPC;
413 objfile->ei.main_func_lowpc = INVALID_ENTRY_LOWPC;
414 objfile->ei.main_func_highpc = INVALID_ENTRY_HIGHPC;
415 }
416
417 /* Get current entry point address. */
418
419 CORE_ADDR
420 entry_point_address ()
421 {
422 return symfile_objfile ? symfile_objfile->ei.entry_point : 0;
423 }
424
425 /* Remember the lowest-addressed loadable section we've seen.
426 This function is called via bfd_map_over_sections.
427
428 In case of equal vmas, the section with the largest size becomes the
429 lowest-addressed loadable section.
430
431 If the vmas and sizes are equal, the last section is considered the
432 lowest-addressed loadable section. */
433
434 void
435 find_lowest_section (abfd, sect, obj)
436 bfd *abfd;
437 asection *sect;
438 PTR obj;
439 {
440 asection **lowest = (asection **) obj;
441
442 if (0 == (bfd_get_section_flags (abfd, sect) & SEC_LOAD))
443 return;
444 if (!*lowest)
445 *lowest = sect; /* First loadable section */
446 else if (bfd_section_vma (abfd, *lowest) > bfd_section_vma (abfd, sect))
447 *lowest = sect; /* A lower loadable section */
448 else if (bfd_section_vma (abfd, *lowest) == bfd_section_vma (abfd, sect)
449 && (bfd_section_size (abfd, (*lowest))
450 <= bfd_section_size (abfd, sect)))
451 *lowest = sect;
452 }
453
454 /* Parse the user's idea of an offset for dynamic linking, into our idea
455 of how to represent it for fast symbol reading. This is the default
456 version of the sym_fns.sym_offsets function for symbol readers that
457 don't need to do anything special. It allocates a section_offsets table
458 for the objectfile OBJFILE and stuffs ADDR into all of the offsets. */
459
460 struct section_offsets *
461 default_symfile_offsets (objfile, addr)
462 struct objfile *objfile;
463 CORE_ADDR addr;
464 {
465 struct section_offsets *section_offsets;
466 int i;
467
468 objfile->num_sections = SECT_OFF_MAX;
469 section_offsets = (struct section_offsets *)
470 obstack_alloc (&objfile->psymbol_obstack, SIZEOF_SECTION_OFFSETS);
471 memset (section_offsets, 0, SIZEOF_SECTION_OFFSETS);
472
473 for (i = 0; i < SECT_OFF_MAX; i++)
474 ANOFFSET (section_offsets, i) = addr;
475
476 return section_offsets;
477 }
478
479
480 /* Process a symbol file, as either the main file or as a dynamically
481 loaded file.
482
483 OBJFILE is where the symbols are to be read from.
484
485 ADDR is the address where the text segment was loaded, unless the
486 objfile is the main symbol file, in which case it is zero.
487
488 MAINLINE is nonzero if this is the main symbol file, or zero if
489 it's an extra symbol file such as dynamically loaded code.
490
491 VERBO is nonzero if the caller has printed a verbose message about
492 the symbol reading (and complaints can be more terse about it). */
493
494 void
495 syms_from_objfile (objfile, addr, mainline, verbo)
496 struct objfile *objfile;
497 CORE_ADDR addr;
498 int mainline;
499 int verbo;
500 {
501 struct section_offsets *section_offsets;
502 asection *lowest_sect;
503 struct cleanup *old_chain;
504
505 init_entry_point_info (objfile);
506 find_sym_fns (objfile);
507
508 /* Make sure that partially constructed symbol tables will be cleaned up
509 if an error occurs during symbol reading. */
510 old_chain = make_cleanup ((make_cleanup_func) free_objfile, objfile);
511
512 if (mainline)
513 {
514 /* We will modify the main symbol table, make sure that all its users
515 will be cleaned up if an error occurs during symbol reading. */
516 make_cleanup ((make_cleanup_func) clear_symtab_users, 0);
517
518 /* Since no error yet, throw away the old symbol table. */
519
520 if (symfile_objfile != NULL)
521 {
522 free_objfile (symfile_objfile);
523 symfile_objfile = NULL;
524 }
525
526 /* Currently we keep symbols from the add-symbol-file command.
527 If the user wants to get rid of them, they should do "symbol-file"
528 without arguments first. Not sure this is the best behavior
529 (PR 2207). */
530
531 (*objfile->sf->sym_new_init) (objfile);
532 }
533
534 /* Convert addr into an offset rather than an absolute address.
535 We find the lowest address of a loaded segment in the objfile,
536 and assume that <addr> is where that got loaded.
537
538 We no longer warn if the lowest section is not a text segment (as
539 happens for the PA64 port. */
540 if (mainline)
541 {
542 addr = 0; /* No offset from objfile addresses. */
543 }
544 else
545 {
546 lowest_sect = bfd_get_section_by_name (objfile->obfd, ".text");
547 if (lowest_sect == NULL)
548 bfd_map_over_sections (objfile->obfd, find_lowest_section,
549 (PTR) &lowest_sect);
550
551 if (lowest_sect == NULL)
552 warning ("no loadable sections found in added symbol-file %s",
553 objfile->name);
554
555 if (lowest_sect)
556 addr -= bfd_section_vma (objfile->obfd, lowest_sect);
557 }
558
559 /* Initialize symbol reading routines for this objfile, allow complaints to
560 appear for this new file, and record how verbose to be, then do the
561 initial symbol reading for this file. */
562
563 (*objfile->sf->sym_init) (objfile);
564 clear_complaints (1, verbo);
565
566 section_offsets = (*objfile->sf->sym_offsets) (objfile, addr);
567 objfile->section_offsets = section_offsets;
568
569 #ifndef IBM6000_TARGET
570 /* This is a SVR4/SunOS specific hack, I think. In any event, it
571 screws RS/6000. sym_offsets should be doing this sort of thing,
572 because it knows the mapping between bfd sections and
573 section_offsets. */
574 /* This is a hack. As far as I can tell, section offsets are not
575 target dependent. They are all set to addr with a couple of
576 exceptions. The exceptions are sysvr4 shared libraries, whose
577 offsets are kept in solib structures anyway and rs6000 xcoff
578 which handles shared libraries in a completely unique way.
579
580 Section offsets are built similarly, except that they are built
581 by adding addr in all cases because there is no clear mapping
582 from section_offsets into actual sections. Note that solib.c
583 has a different algorithm for finding section offsets.
584
585 These should probably all be collapsed into some target
586 independent form of shared library support. FIXME. */
587
588 if (addr)
589 {
590 struct obj_section *s;
591
592 ALL_OBJFILE_OSECTIONS (objfile, s)
593 {
594 s->addr -= s->offset;
595 s->addr += addr;
596 s->endaddr -= s->offset;
597 s->endaddr += addr;
598 s->offset += addr;
599 }
600 }
601 #endif /* not IBM6000_TARGET */
602
603 (*objfile->sf->sym_read) (objfile, mainline);
604
605 if (!have_partial_symbols () && !have_full_symbols ())
606 {
607 wrap_here ("");
608 printf_filtered ("(no debugging symbols found)...");
609 wrap_here ("");
610 }
611
612 /* Don't allow char * to have a typename (else would get caddr_t).
613 Ditto void *. FIXME: Check whether this is now done by all the
614 symbol readers themselves (many of them now do), and if so remove
615 it from here. */
616
617 TYPE_NAME (lookup_pointer_type (builtin_type_char)) = 0;
618 TYPE_NAME (lookup_pointer_type (builtin_type_void)) = 0;
619
620 /* Mark the objfile has having had initial symbol read attempted. Note
621 that this does not mean we found any symbols... */
622
623 objfile->flags |= OBJF_SYMS;
624
625 /* Discard cleanups as symbol reading was successful. */
626
627 discard_cleanups (old_chain);
628
629 /* Call this after reading in a new symbol table to give target
630 dependant code a crack at the new symbols. For instance, this
631 could be used to update the values of target-specific symbols GDB
632 needs to keep track of (such as _sigtramp, or whatever). */
633
634 TARGET_SYMFILE_POSTREAD (objfile);
635 }
636
637 /* Perform required actions after either reading in the initial
638 symbols for a new objfile, or mapping in the symbols from a reusable
639 objfile. */
640
641 void
642 new_symfile_objfile (objfile, mainline, verbo)
643 struct objfile *objfile;
644 int mainline;
645 int verbo;
646 {
647
648 /* If this is the main symbol file we have to clean up all users of the
649 old main symbol file. Otherwise it is sufficient to fixup all the
650 breakpoints that may have been redefined by this symbol file. */
651 if (mainline)
652 {
653 /* OK, make it the "real" symbol file. */
654 symfile_objfile = objfile;
655
656 clear_symtab_users ();
657 }
658 else
659 {
660 breakpoint_re_set ();
661 }
662
663 /* We're done reading the symbol file; finish off complaints. */
664 clear_complaints (0, verbo);
665 }
666
667 /* Process a symbol file, as either the main file or as a dynamically
668 loaded file.
669
670 NAME is the file name (which will be tilde-expanded and made
671 absolute herein) (but we don't free or modify NAME itself).
672 FROM_TTY says how verbose to be. MAINLINE specifies whether this
673 is the main symbol file, or whether it's an extra symbol file such
674 as dynamically loaded code. If !mainline, ADDR is the address
675 where the text segment was loaded.
676
677 USER_LOADED is TRUE if the add-symbol-file command was how this
678 symbol file came to be processed.
679
680 IS_SOLIB is TRUE if this symbol file represents a solib, as discovered
681 by the target's implementation of the solib package.
682
683 Upon success, returns a pointer to the objfile that was added.
684 Upon failure, jumps back to command level (never returns). */
685
686 struct objfile *
687 symbol_file_add (name, from_tty, addr, mainline, mapped, readnow, user_loaded, is_solib)
688 char *name;
689 int from_tty;
690 CORE_ADDR addr;
691 int mainline;
692 int mapped;
693 int readnow;
694 int user_loaded;
695 int is_solib;
696 {
697 struct objfile *objfile;
698 struct partial_symtab *psymtab;
699 bfd *abfd;
700
701 /* Open a bfd for the file, and give user a chance to burp if we'd be
702 interactively wiping out any existing symbols. */
703
704 abfd = symfile_bfd_open (name);
705
706 if ((have_full_symbols () || have_partial_symbols ())
707 && mainline
708 && from_tty
709 && !query ("Load new symbol table from \"%s\"? ", name))
710 error ("Not confirmed.");
711
712 objfile = allocate_objfile (abfd, mapped, user_loaded, is_solib);
713
714 /* If the objfile uses a mapped symbol file, and we have a psymtab for
715 it, then skip reading any symbols at this time. */
716
717 if ((objfile->flags & OBJF_MAPPED) && (objfile->flags & OBJF_SYMS))
718 {
719 /* We mapped in an existing symbol table file that already has had
720 initial symbol reading performed, so we can skip that part. Notify
721 the user that instead of reading the symbols, they have been mapped.
722 */
723 if (from_tty || info_verbose)
724 {
725 printf_filtered ("Mapped symbols for %s...", name);
726 wrap_here ("");
727 gdb_flush (gdb_stdout);
728 }
729 init_entry_point_info (objfile);
730 find_sym_fns (objfile);
731 }
732 else
733 {
734 /* We either created a new mapped symbol table, mapped an existing
735 symbol table file which has not had initial symbol reading
736 performed, or need to read an unmapped symbol table. */
737 if (from_tty || info_verbose)
738 {
739 if (pre_add_symbol_hook)
740 pre_add_symbol_hook (name);
741 else
742 {
743 printf_filtered ("Reading symbols from %s...", name);
744 wrap_here ("");
745 gdb_flush (gdb_stdout);
746 }
747 }
748 syms_from_objfile (objfile, addr, mainline, from_tty);
749 }
750
751 /* We now have at least a partial symbol table. Check to see if the
752 user requested that all symbols be read on initial access via either
753 the gdb startup command line or on a per symbol file basis. Expand
754 all partial symbol tables for this objfile if so. */
755
756 if (readnow || readnow_symbol_files)
757 {
758 if (from_tty || info_verbose)
759 {
760 printf_filtered ("expanding to full symbols...");
761 wrap_here ("");
762 gdb_flush (gdb_stdout);
763 }
764
765 for (psymtab = objfile->psymtabs;
766 psymtab != NULL;
767 psymtab = psymtab->next)
768 {
769 psymtab_to_symtab (psymtab);
770 }
771 }
772
773 if (from_tty || info_verbose)
774 {
775 if (post_add_symbol_hook)
776 post_add_symbol_hook ();
777 else
778 {
779 printf_filtered ("done.\n");
780 gdb_flush (gdb_stdout);
781 }
782 }
783
784 new_symfile_objfile (objfile, mainline, from_tty);
785
786 target_new_objfile (objfile);
787
788 return (objfile);
789 }
790
791 /* This is the symbol-file command. Read the file, analyze its
792 symbols, and add a struct symtab to a symtab list. The syntax of
793 the command is rather bizarre--(1) buildargv implements various
794 quoting conventions which are undocumented and have little or
795 nothing in common with the way things are quoted (or not quoted)
796 elsewhere in GDB, (2) options are used, which are not generally
797 used in GDB (perhaps "set mapped on", "set readnow on" would be
798 better), (3) the order of options matters, which is contrary to GNU
799 conventions (because it is confusing and inconvenient). */
800
801 void
802 symbol_file_command (args, from_tty)
803 char *args;
804 int from_tty;
805 {
806 char **argv;
807 char *name = NULL;
808 CORE_ADDR text_relocation = 0; /* text_relocation */
809 struct cleanup *cleanups;
810 int mapped = 0;
811 int readnow = 0;
812
813 dont_repeat ();
814
815 if (args == NULL)
816 {
817 if ((have_full_symbols () || have_partial_symbols ())
818 && from_tty
819 && !query ("Discard symbol table from `%s'? ",
820 symfile_objfile->name))
821 error ("Not confirmed.");
822 free_all_objfiles ();
823
824 /* solib descriptors may have handles to objfiles. Since their
825 storage has just been released, we'd better wipe the solib
826 descriptors as well.
827 */
828 #if defined(SOLIB_RESTART)
829 SOLIB_RESTART ();
830 #endif
831
832 symfile_objfile = NULL;
833 if (from_tty)
834 {
835 printf_unfiltered ("No symbol file now.\n");
836 }
837 #ifdef HPUXHPPA
838 RESET_HP_UX_GLOBALS ();
839 #endif
840 }
841 else
842 {
843 if ((argv = buildargv (args)) == NULL)
844 {
845 nomem (0);
846 }
847 cleanups = make_cleanup_freeargv (argv);
848 while (*argv != NULL)
849 {
850 if (STREQ (*argv, "-mapped"))
851 {
852 mapped = 1;
853 }
854 else if (STREQ (*argv, "-readnow"))
855 {
856 readnow = 1;
857 }
858 else if (**argv == '-')
859 {
860 error ("unknown option `%s'", *argv);
861 }
862 else
863 {
864 char *p;
865
866 name = *argv;
867
868 /* this is for rombug remote only, to get the text relocation by
869 using link command */
870 p = strrchr (name, '/');
871 if (p != NULL)
872 p++;
873 else
874 p = name;
875
876 target_link (p, &text_relocation);
877
878 if (text_relocation == (CORE_ADDR) 0)
879 return;
880 else if (text_relocation == (CORE_ADDR) -1)
881 {
882 symbol_file_add (name, from_tty, (CORE_ADDR) 0,
883 1, mapped, readnow, 1, 0);
884 #ifdef HPUXHPPA
885 RESET_HP_UX_GLOBALS ();
886 #endif
887 }
888 else
889 symbol_file_add (name, from_tty, (CORE_ADDR) text_relocation,
890 0, mapped, readnow, 1, 0);
891
892 /* Getting new symbols may change our opinion about what is
893 frameless. */
894 reinit_frame_cache ();
895
896 set_initial_language ();
897 }
898 argv++;
899 }
900
901 if (name == NULL)
902 {
903 error ("no symbol file name was specified");
904 }
905 TUIDO (((TuiOpaqueFuncPtr) tuiDisplayMainFunction));
906 do_cleanups (cleanups);
907 }
908 }
909
910 /* Set the initial language.
911
912 A better solution would be to record the language in the psymtab when reading
913 partial symbols, and then use it (if known) to set the language. This would
914 be a win for formats that encode the language in an easily discoverable place,
915 such as DWARF. For stabs, we can jump through hoops looking for specially
916 named symbols or try to intuit the language from the specific type of stabs
917 we find, but we can't do that until later when we read in full symbols.
918 FIXME. */
919
920 static void
921 set_initial_language ()
922 {
923 struct partial_symtab *pst;
924 enum language lang = language_unknown;
925
926 pst = find_main_psymtab ();
927 if (pst != NULL)
928 {
929 if (pst->filename != NULL)
930 {
931 lang = deduce_language_from_filename (pst->filename);
932 }
933 if (lang == language_unknown)
934 {
935 /* Make C the default language */
936 lang = language_c;
937 }
938 set_language (lang);
939 expected_language = current_language; /* Don't warn the user */
940 }
941 }
942
943 /* Open file specified by NAME and hand it off to BFD for preliminary
944 analysis. Result is a newly initialized bfd *, which includes a newly
945 malloc'd` copy of NAME (tilde-expanded and made absolute).
946 In case of trouble, error() is called. */
947
948 bfd *
949 symfile_bfd_open (name)
950 char *name;
951 {
952 bfd *sym_bfd;
953 int desc;
954 char *absolute_name;
955
956
957
958 name = tilde_expand (name); /* Returns 1st new malloc'd copy */
959
960 /* Look down path for it, allocate 2nd new malloc'd copy. */
961 desc = openp (getenv ("PATH"), 1, name, O_RDONLY | O_BINARY, 0, &absolute_name);
962 #if defined(__GO32__) || defined(_WIN32)
963 if (desc < 0)
964 {
965 char *exename = alloca (strlen (name) + 5);
966 strcat (strcpy (exename, name), ".exe");
967 desc = openp (getenv ("PATH"), 1, exename, O_RDONLY | O_BINARY,
968 0, &absolute_name);
969 }
970 #endif
971 if (desc < 0)
972 {
973 make_cleanup (free, name);
974 perror_with_name (name);
975 }
976 free (name); /* Free 1st new malloc'd copy */
977 name = absolute_name; /* Keep 2nd malloc'd copy in bfd */
978 /* It'll be freed in free_objfile(). */
979
980 sym_bfd = bfd_fdopenr (name, gnutarget, desc);
981 if (!sym_bfd)
982 {
983 close (desc);
984 make_cleanup (free, name);
985 error ("\"%s\": can't open to read symbols: %s.", name,
986 bfd_errmsg (bfd_get_error ()));
987 }
988 sym_bfd->cacheable = true;
989
990 if (!bfd_check_format (sym_bfd, bfd_object))
991 {
992 /* FIXME: should be checking for errors from bfd_close (for one thing,
993 on error it does not free all the storage associated with the
994 bfd). */
995 bfd_close (sym_bfd); /* This also closes desc */
996 make_cleanup (free, name);
997 error ("\"%s\": can't read symbols: %s.", name,
998 bfd_errmsg (bfd_get_error ()));
999 }
1000 return (sym_bfd);
1001 }
1002
1003 /* Link a new symtab_fns into the global symtab_fns list. Called on gdb
1004 startup by the _initialize routine in each object file format reader,
1005 to register information about each format the the reader is prepared
1006 to handle. */
1007
1008 void
1009 add_symtab_fns (sf)
1010 struct sym_fns *sf;
1011 {
1012 sf->next = symtab_fns;
1013 symtab_fns = sf;
1014 }
1015
1016
1017 /* Initialize to read symbols from the symbol file sym_bfd. It either
1018 returns or calls error(). The result is an initialized struct sym_fns
1019 in the objfile structure, that contains cached information about the
1020 symbol file. */
1021
1022 static void
1023 find_sym_fns (objfile)
1024 struct objfile *objfile;
1025 {
1026 struct sym_fns *sf;
1027 enum bfd_flavour our_flavour = bfd_get_flavour (objfile->obfd);
1028 char *our_target = bfd_get_target (objfile->obfd);
1029
1030 /* Special kludge for RS/6000 and PowerMac. See xcoffread.c. */
1031 if (STREQ (our_target, "aixcoff-rs6000") ||
1032 STREQ (our_target, "xcoff-powermac"))
1033 our_flavour = (enum bfd_flavour) -1;
1034
1035 /* Special kludge for apollo. See dstread.c. */
1036 if (STREQN (our_target, "apollo", 6))
1037 our_flavour = (enum bfd_flavour) -2;
1038
1039 for (sf = symtab_fns; sf != NULL; sf = sf->next)
1040 {
1041 if (our_flavour == sf->sym_flavour)
1042 {
1043 objfile->sf = sf;
1044 return;
1045 }
1046 }
1047 error ("I'm sorry, Dave, I can't do that. Symbol format `%s' unknown.",
1048 bfd_get_target (objfile->obfd));
1049 }
1050 \f
1051 /* This function runs the load command of our current target. */
1052
1053 static void
1054 load_command (arg, from_tty)
1055 char *arg;
1056 int from_tty;
1057 {
1058 if (arg == NULL)
1059 arg = get_exec_file (1);
1060 target_load (arg, from_tty);
1061 }
1062
1063 /* This version of "load" should be usable for any target. Currently
1064 it is just used for remote targets, not inftarg.c or core files,
1065 on the theory that only in that case is it useful.
1066
1067 Avoiding xmodem and the like seems like a win (a) because we don't have
1068 to worry about finding it, and (b) On VMS, fork() is very slow and so
1069 we don't want to run a subprocess. On the other hand, I'm not sure how
1070 performance compares. */
1071 #define GENERIC_LOAD_CHUNK 256
1072 #define VALIDATE_DOWNLOAD 0
1073 void
1074 generic_load (filename, from_tty)
1075 char *filename;
1076 int from_tty;
1077 {
1078 struct cleanup *old_cleanups;
1079 asection *s;
1080 bfd *loadfile_bfd;
1081 time_t start_time, end_time; /* Start and end times of download */
1082 unsigned long data_count = 0; /* Number of bytes transferred to memory */
1083 int n;
1084 unsigned long load_offset = 0; /* offset to add to vma for each section */
1085 char buf[GENERIC_LOAD_CHUNK + 8];
1086 #if VALIDATE_DOWNLOAD
1087 char verify_buffer[GENERIC_LOAD_CHUNK + 8];
1088 #endif
1089
1090 /* enable user to specify address for downloading as 2nd arg to load */
1091 n = sscanf (filename, "%s 0x%lx", buf, &load_offset);
1092 if (n > 1)
1093 filename = buf;
1094 else
1095 load_offset = 0;
1096
1097 loadfile_bfd = bfd_openr (filename, gnutarget);
1098 if (loadfile_bfd == NULL)
1099 {
1100 perror_with_name (filename);
1101 return;
1102 }
1103 /* FIXME: should be checking for errors from bfd_close (for one thing,
1104 on error it does not free all the storage associated with the
1105 bfd). */
1106 old_cleanups = make_cleanup ((make_cleanup_func) bfd_close, loadfile_bfd);
1107
1108 if (!bfd_check_format (loadfile_bfd, bfd_object))
1109 {
1110 error ("\"%s\" is not an object file: %s", filename,
1111 bfd_errmsg (bfd_get_error ()));
1112 }
1113
1114 start_time = time (NULL);
1115
1116 for (s = loadfile_bfd->sections; s; s = s->next)
1117 {
1118 if (s->flags & SEC_LOAD)
1119 {
1120 bfd_size_type size;
1121
1122 size = bfd_get_section_size_before_reloc (s);
1123 if (size > 0)
1124 {
1125 char *buffer;
1126 struct cleanup *old_chain;
1127 bfd_vma lma;
1128 unsigned long l = size;
1129 int err;
1130 char *sect;
1131 unsigned long sent;
1132 unsigned long len;
1133
1134 l = l > GENERIC_LOAD_CHUNK ? GENERIC_LOAD_CHUNK : l;
1135
1136 buffer = xmalloc (size);
1137 old_chain = make_cleanup (free, buffer);
1138
1139 lma = s->lma;
1140 lma += load_offset;
1141
1142 /* Is this really necessary? I guess it gives the user something
1143 to look at during a long download. */
1144 printf_filtered ("Loading section %s, size 0x%lx lma ",
1145 bfd_get_section_name (loadfile_bfd, s),
1146 (unsigned long) size);
1147 print_address_numeric (lma, 1, gdb_stdout);
1148 printf_filtered ("\n");
1149
1150 bfd_get_section_contents (loadfile_bfd, s, buffer, 0, size);
1151
1152 sect = (char *) bfd_get_section_name (loadfile_bfd, s);
1153 sent = 0;
1154 do
1155 {
1156 len = (size - sent) < l ? (size - sent) : l;
1157 sent += len;
1158 err = target_write_memory (lma, buffer, len);
1159 if (ui_load_progress_hook)
1160 if (ui_load_progress_hook (sect, sent))
1161 error ("Canceled the download");
1162 #if VALIDATE_DOWNLOAD
1163 /* Broken memories and broken monitors manifest themselves
1164 here when bring new computers to life.
1165 This doubles already slow downloads.
1166 */
1167 if (err)
1168 break;
1169 {
1170 target_read_memory (lma, verify_buffer, len);
1171 if (0 != bcmp (buffer, verify_buffer, len))
1172 error ("Download verify failed at %08x",
1173 (unsigned long) lma);
1174 }
1175
1176 #endif
1177 data_count += len;
1178 lma += len;
1179 buffer += len;
1180 } /* od */
1181 while (err == 0 && sent < size);
1182
1183 if (err != 0)
1184 error ("Memory access error while loading section %s.",
1185 bfd_get_section_name (loadfile_bfd, s));
1186
1187 do_cleanups (old_chain);
1188 }
1189 }
1190 }
1191
1192 end_time = time (NULL);
1193 {
1194 unsigned long entry;
1195 entry = bfd_get_start_address (loadfile_bfd);
1196 printf_filtered ("Start address 0x%lx , load size %d\n", entry, data_count);
1197 /* We were doing this in remote-mips.c, I suspect it is right
1198 for other targets too. */
1199 write_pc (entry);
1200 }
1201
1202 /* FIXME: are we supposed to call symbol_file_add or not? According to
1203 a comment from remote-mips.c (where a call to symbol_file_add was
1204 commented out), making the call confuses GDB if more than one file is
1205 loaded in. remote-nindy.c had no call to symbol_file_add, but remote-vx.c
1206 does. */
1207
1208 report_transfer_performance (data_count, start_time, end_time);
1209
1210 do_cleanups (old_cleanups);
1211 }
1212
1213 /* Report how fast the transfer went. */
1214
1215 void
1216 report_transfer_performance (data_count, start_time, end_time)
1217 unsigned long data_count;
1218 time_t start_time, end_time;
1219 {
1220 printf_filtered ("Transfer rate: ");
1221 if (end_time != start_time)
1222 printf_filtered ("%d bits/sec",
1223 (data_count * 8) / (end_time - start_time));
1224 else
1225 printf_filtered ("%d bits in <1 sec", (data_count * 8));
1226 printf_filtered (".\n");
1227 }
1228
1229 /* This function allows the addition of incrementally linked object files.
1230 It does not modify any state in the target, only in the debugger. */
1231
1232 /* ARGSUSED */
1233 static void
1234 add_symbol_file_command (args, from_tty)
1235 char *args;
1236 int from_tty;
1237 {
1238 char *name = NULL;
1239 CORE_ADDR text_addr;
1240 char *arg;
1241 int readnow = 0;
1242 int mapped = 0;
1243
1244 dont_repeat ();
1245
1246 if (args == NULL)
1247 {
1248 error ("add-symbol-file takes a file name and an address");
1249 }
1250
1251 /* Make a copy of the string that we can safely write into. */
1252
1253 args = strdup (args);
1254 make_cleanup (free, args);
1255
1256 /* Pick off any -option args and the file name. */
1257
1258 while ((*args != '\000') && (name == NULL))
1259 {
1260 while (isspace (*args))
1261 {
1262 args++;
1263 }
1264 arg = args;
1265 while ((*args != '\000') && !isspace (*args))
1266 {
1267 args++;
1268 }
1269 if (*args != '\000')
1270 {
1271 *args++ = '\000';
1272 }
1273 if (*arg != '-')
1274 {
1275 name = arg;
1276 }
1277 else if (STREQ (arg, "-mapped"))
1278 {
1279 mapped = 1;
1280 }
1281 else if (STREQ (arg, "-readnow"))
1282 {
1283 readnow = 1;
1284 }
1285 else
1286 {
1287 error ("unknown option `%s'", arg);
1288 }
1289 }
1290
1291 /* After picking off any options and the file name, args should be
1292 left pointing at the remainder of the command line, which should
1293 be the address expression to evaluate. */
1294
1295 if (name == NULL)
1296 {
1297 error ("add-symbol-file takes a file name");
1298 }
1299 name = tilde_expand (name);
1300 make_cleanup (free, name);
1301
1302 if (*args != '\000')
1303 {
1304 text_addr = parse_and_eval_address (args);
1305 }
1306 else
1307 {
1308 target_link (name, &text_addr);
1309 if (text_addr == (CORE_ADDR) -1)
1310 error ("Don't know how to get text start location for this file");
1311 }
1312
1313 /* FIXME-32x64: Assumes text_addr fits in a long. */
1314 if ((from_tty)
1315 && (!query ("add symbol table from file \"%s\" at text_addr = %s?\n",
1316 name, local_hex_string ((unsigned long) text_addr))))
1317 error ("Not confirmed.");
1318
1319 symbol_file_add (name, from_tty, text_addr, 0, mapped, readnow,
1320 1, /* user_loaded */
1321 0); /* We'll guess it's ! is_solib */
1322
1323 /* Getting new symbols may change our opinion about what is
1324 frameless. */
1325 reinit_frame_cache ();
1326 }
1327 \f
1328 static void
1329 add_shared_symbol_files_command (args, from_tty)
1330 char *args;
1331 int from_tty;
1332 {
1333 #ifdef ADD_SHARED_SYMBOL_FILES
1334 ADD_SHARED_SYMBOL_FILES (args, from_tty);
1335 #else
1336 error ("This command is not available in this configuration of GDB.");
1337 #endif
1338 }
1339 \f
1340 /* Re-read symbols if a symbol-file has changed. */
1341 void
1342 reread_symbols ()
1343 {
1344 struct objfile *objfile;
1345 long new_modtime;
1346 int reread_one = 0;
1347 struct stat new_statbuf;
1348 int res;
1349
1350 /* With the addition of shared libraries, this should be modified,
1351 the load time should be saved in the partial symbol tables, since
1352 different tables may come from different source files. FIXME.
1353 This routine should then walk down each partial symbol table
1354 and see if the symbol table that it originates from has been changed */
1355
1356 for (objfile = object_files; objfile; objfile = objfile->next)
1357 {
1358 if (objfile->obfd)
1359 {
1360 #ifdef IBM6000_TARGET
1361 /* If this object is from a shared library, then you should
1362 stat on the library name, not member name. */
1363
1364 if (objfile->obfd->my_archive)
1365 res = stat (objfile->obfd->my_archive->filename, &new_statbuf);
1366 else
1367 #endif
1368 res = stat (objfile->name, &new_statbuf);
1369 if (res != 0)
1370 {
1371 /* FIXME, should use print_sys_errmsg but it's not filtered. */
1372 printf_filtered ("`%s' has disappeared; keeping its symbols.\n",
1373 objfile->name);
1374 continue;
1375 }
1376 new_modtime = new_statbuf.st_mtime;
1377 if (new_modtime != objfile->mtime)
1378 {
1379 struct cleanup *old_cleanups;
1380 struct section_offsets *offsets;
1381 int num_offsets;
1382 int section_offsets_size;
1383 char *obfd_filename;
1384
1385 printf_filtered ("`%s' has changed; re-reading symbols.\n",
1386 objfile->name);
1387
1388 /* There are various functions like symbol_file_add,
1389 symfile_bfd_open, syms_from_objfile, etc., which might
1390 appear to do what we want. But they have various other
1391 effects which we *don't* want. So we just do stuff
1392 ourselves. We don't worry about mapped files (for one thing,
1393 any mapped file will be out of date). */
1394
1395 /* If we get an error, blow away this objfile (not sure if
1396 that is the correct response for things like shared
1397 libraries). */
1398 old_cleanups = make_cleanup ((make_cleanup_func) free_objfile,
1399 objfile);
1400 /* We need to do this whenever any symbols go away. */
1401 make_cleanup ((make_cleanup_func) clear_symtab_users, 0);
1402
1403 /* Clean up any state BFD has sitting around. We don't need
1404 to close the descriptor but BFD lacks a way of closing the
1405 BFD without closing the descriptor. */
1406 obfd_filename = bfd_get_filename (objfile->obfd);
1407 if (!bfd_close (objfile->obfd))
1408 error ("Can't close BFD for %s: %s", objfile->name,
1409 bfd_errmsg (bfd_get_error ()));
1410 objfile->obfd = bfd_openr (obfd_filename, gnutarget);
1411 if (objfile->obfd == NULL)
1412 error ("Can't open %s to read symbols.", objfile->name);
1413 /* bfd_openr sets cacheable to true, which is what we want. */
1414 if (!bfd_check_format (objfile->obfd, bfd_object))
1415 error ("Can't read symbols from %s: %s.", objfile->name,
1416 bfd_errmsg (bfd_get_error ()));
1417
1418 /* Save the offsets, we will nuke them with the rest of the
1419 psymbol_obstack. */
1420 num_offsets = objfile->num_sections;
1421 section_offsets_size =
1422 sizeof (struct section_offsets)
1423 + sizeof (objfile->section_offsets->offsets) * num_offsets;
1424 offsets = (struct section_offsets *) alloca (section_offsets_size);
1425 memcpy (offsets, objfile->section_offsets, section_offsets_size);
1426
1427 /* Nuke all the state that we will re-read. Much of the following
1428 code which sets things to NULL really is necessary to tell
1429 other parts of GDB that there is nothing currently there. */
1430
1431 /* FIXME: Do we have to free a whole linked list, or is this
1432 enough? */
1433 if (objfile->global_psymbols.list)
1434 mfree (objfile->md, objfile->global_psymbols.list);
1435 memset (&objfile->global_psymbols, 0,
1436 sizeof (objfile->global_psymbols));
1437 if (objfile->static_psymbols.list)
1438 mfree (objfile->md, objfile->static_psymbols.list);
1439 memset (&objfile->static_psymbols, 0,
1440 sizeof (objfile->static_psymbols));
1441
1442 /* Free the obstacks for non-reusable objfiles */
1443 obstack_free (&objfile->psymbol_cache.cache, 0);
1444 memset (&objfile->psymbol_cache, 0,
1445 sizeof (objfile->psymbol_cache));
1446 obstack_free (&objfile->psymbol_obstack, 0);
1447 obstack_free (&objfile->symbol_obstack, 0);
1448 obstack_free (&objfile->type_obstack, 0);
1449 objfile->sections = NULL;
1450 objfile->symtabs = NULL;
1451 objfile->psymtabs = NULL;
1452 objfile->free_psymtabs = NULL;
1453 objfile->msymbols = NULL;
1454 objfile->minimal_symbol_count = 0;
1455 objfile->fundamental_types = NULL;
1456 if (objfile->sf != NULL)
1457 {
1458 (*objfile->sf->sym_finish) (objfile);
1459 }
1460
1461 /* We never make this a mapped file. */
1462 objfile->md = NULL;
1463 /* obstack_specify_allocation also initializes the obstack so
1464 it is empty. */
1465 obstack_specify_allocation (&objfile->psymbol_cache.cache, 0, 0,
1466 xmalloc, free);
1467 obstack_specify_allocation (&objfile->psymbol_obstack, 0, 0,
1468 xmalloc, free);
1469 obstack_specify_allocation (&objfile->symbol_obstack, 0, 0,
1470 xmalloc, free);
1471 obstack_specify_allocation (&objfile->type_obstack, 0, 0,
1472 xmalloc, free);
1473 if (build_objfile_section_table (objfile))
1474 {
1475 error ("Can't find the file sections in `%s': %s",
1476 objfile->name, bfd_errmsg (bfd_get_error ()));
1477 }
1478
1479 /* We use the same section offsets as from last time. I'm not
1480 sure whether that is always correct for shared libraries. */
1481 objfile->section_offsets = (struct section_offsets *)
1482 obstack_alloc (&objfile->psymbol_obstack, section_offsets_size);
1483 memcpy (objfile->section_offsets, offsets, section_offsets_size);
1484 objfile->num_sections = num_offsets;
1485
1486 /* What the hell is sym_new_init for, anyway? The concept of
1487 distinguishing between the main file and additional files
1488 in this way seems rather dubious. */
1489 if (objfile == symfile_objfile)
1490 {
1491 (*objfile->sf->sym_new_init) (objfile);
1492 #ifdef HPUXHPPA
1493 RESET_HP_UX_GLOBALS ();
1494 #endif
1495 }
1496
1497 (*objfile->sf->sym_init) (objfile);
1498 clear_complaints (1, 1);
1499 /* The "mainline" parameter is a hideous hack; I think leaving it
1500 zero is OK since dbxread.c also does what it needs to do if
1501 objfile->global_psymbols.size is 0. */
1502 (*objfile->sf->sym_read) (objfile, 0);
1503 if (!have_partial_symbols () && !have_full_symbols ())
1504 {
1505 wrap_here ("");
1506 printf_filtered ("(no debugging symbols found)\n");
1507 wrap_here ("");
1508 }
1509 objfile->flags |= OBJF_SYMS;
1510
1511 /* We're done reading the symbol file; finish off complaints. */
1512 clear_complaints (0, 1);
1513
1514 /* Getting new symbols may change our opinion about what is
1515 frameless. */
1516
1517 reinit_frame_cache ();
1518
1519 /* Discard cleanups as symbol reading was successful. */
1520 discard_cleanups (old_cleanups);
1521
1522 /* If the mtime has changed between the time we set new_modtime
1523 and now, we *want* this to be out of date, so don't call stat
1524 again now. */
1525 objfile->mtime = new_modtime;
1526 reread_one = 1;
1527
1528 /* Call this after reading in a new symbol table to give target
1529 dependant code a crack at the new symbols. For instance, this
1530 could be used to update the values of target-specific symbols GDB
1531 needs to keep track of (such as _sigtramp, or whatever). */
1532
1533 TARGET_SYMFILE_POSTREAD (objfile);
1534 }
1535 }
1536 }
1537
1538 if (reread_one)
1539 clear_symtab_users ();
1540 }
1541 \f
1542
1543
1544 typedef struct
1545 {
1546 char *ext;
1547 enum language lang;
1548 }
1549 filename_language;
1550
1551 static filename_language *filename_language_table;
1552 static int fl_table_size, fl_table_next;
1553
1554 static void
1555 add_filename_language (ext, lang)
1556 char *ext;
1557 enum language lang;
1558 {
1559 if (fl_table_next >= fl_table_size)
1560 {
1561 fl_table_size += 10;
1562 filename_language_table = realloc (filename_language_table,
1563 fl_table_size);
1564 }
1565
1566 filename_language_table[fl_table_next].ext = strsave (ext);
1567 filename_language_table[fl_table_next].lang = lang;
1568 fl_table_next++;
1569 }
1570
1571 static char *ext_args;
1572
1573 static void
1574 set_ext_lang_command (args, from_tty)
1575 char *args;
1576 int from_tty;
1577 {
1578 int i;
1579 char *cp = ext_args;
1580 enum language lang;
1581
1582 /* First arg is filename extension, starting with '.' */
1583 if (*cp != '.')
1584 error ("'%s': Filename extension must begin with '.'", ext_args);
1585
1586 /* Find end of first arg. */
1587 while (*cp && !isspace (*cp))
1588 cp++;
1589
1590 if (*cp == '\0')
1591 error ("'%s': two arguments required -- filename extension and language",
1592 ext_args);
1593
1594 /* Null-terminate first arg */
1595 *cp++ = '\0';
1596
1597 /* Find beginning of second arg, which should be a source language. */
1598 while (*cp && isspace (*cp))
1599 cp++;
1600
1601 if (*cp == '\0')
1602 error ("'%s': two arguments required -- filename extension and language",
1603 ext_args);
1604
1605 /* Lookup the language from among those we know. */
1606 lang = language_enum (cp);
1607
1608 /* Now lookup the filename extension: do we already know it? */
1609 for (i = 0; i < fl_table_next; i++)
1610 if (0 == strcmp (ext_args, filename_language_table[i].ext))
1611 break;
1612
1613 if (i >= fl_table_next)
1614 {
1615 /* new file extension */
1616 add_filename_language (ext_args, lang);
1617 }
1618 else
1619 {
1620 /* redefining a previously known filename extension */
1621
1622 /* if (from_tty) */
1623 /* query ("Really make files of type %s '%s'?", */
1624 /* ext_args, language_str (lang)); */
1625
1626 free (filename_language_table[i].ext);
1627 filename_language_table[i].ext = strsave (ext_args);
1628 filename_language_table[i].lang = lang;
1629 }
1630 }
1631
1632 static void
1633 info_ext_lang_command (args, from_tty)
1634 char *args;
1635 int from_tty;
1636 {
1637 int i;
1638
1639 printf_filtered ("Filename extensions and the languages they represent:");
1640 printf_filtered ("\n\n");
1641 for (i = 0; i < fl_table_next; i++)
1642 printf_filtered ("\t%s\t- %s\n",
1643 filename_language_table[i].ext,
1644 language_str (filename_language_table[i].lang));
1645 }
1646
1647 static void
1648 init_filename_language_table ()
1649 {
1650 if (fl_table_size == 0) /* protect against repetition */
1651 {
1652 fl_table_size = 20;
1653 fl_table_next = 0;
1654 filename_language_table =
1655 xmalloc (fl_table_size * sizeof (*filename_language_table));
1656 add_filename_language (".c", language_c);
1657 add_filename_language (".C", language_cplus);
1658 add_filename_language (".cc", language_cplus);
1659 add_filename_language (".cp", language_cplus);
1660 add_filename_language (".cpp", language_cplus);
1661 add_filename_language (".cxx", language_cplus);
1662 add_filename_language (".c++", language_cplus);
1663 add_filename_language (".java", language_java);
1664 add_filename_language (".class", language_java);
1665 add_filename_language (".ch", language_chill);
1666 add_filename_language (".c186", language_chill);
1667 add_filename_language (".c286", language_chill);
1668 add_filename_language (".f", language_fortran);
1669 add_filename_language (".F", language_fortran);
1670 add_filename_language (".s", language_asm);
1671 add_filename_language (".S", language_asm);
1672 }
1673 }
1674
1675 enum language
1676 deduce_language_from_filename (filename)
1677 char *filename;
1678 {
1679 int i;
1680 char *cp;
1681
1682 if (filename != NULL)
1683 if ((cp = strrchr (filename, '.')) != NULL)
1684 for (i = 0; i < fl_table_next; i++)
1685 if (strcmp (cp, filename_language_table[i].ext) == 0)
1686 return filename_language_table[i].lang;
1687
1688 return language_unknown;
1689 }
1690 \f
1691 /* allocate_symtab:
1692
1693 Allocate and partly initialize a new symbol table. Return a pointer
1694 to it. error() if no space.
1695
1696 Caller must set these fields:
1697 LINETABLE(symtab)
1698 symtab->blockvector
1699 symtab->dirname
1700 symtab->free_code
1701 symtab->free_ptr
1702 possibly free_named_symtabs (symtab->filename);
1703 */
1704
1705 struct symtab *
1706 allocate_symtab (filename, objfile)
1707 char *filename;
1708 struct objfile *objfile;
1709 {
1710 register struct symtab *symtab;
1711
1712 symtab = (struct symtab *)
1713 obstack_alloc (&objfile->symbol_obstack, sizeof (struct symtab));
1714 memset (symtab, 0, sizeof (*symtab));
1715 symtab->filename = obsavestring (filename, strlen (filename),
1716 &objfile->symbol_obstack);
1717 symtab->fullname = NULL;
1718 symtab->language = deduce_language_from_filename (filename);
1719 symtab->debugformat = obsavestring ("unknown", 7,
1720 &objfile->symbol_obstack);
1721
1722 /* Hook it to the objfile it comes from */
1723
1724 symtab->objfile = objfile;
1725 symtab->next = objfile->symtabs;
1726 objfile->symtabs = symtab;
1727
1728 /* FIXME: This should go away. It is only defined for the Z8000,
1729 and the Z8000 definition of this macro doesn't have anything to
1730 do with the now-nonexistent EXTRA_SYMTAB_INFO macro, it's just
1731 here for convenience. */
1732 #ifdef INIT_EXTRA_SYMTAB_INFO
1733 INIT_EXTRA_SYMTAB_INFO (symtab);
1734 #endif
1735
1736 return (symtab);
1737 }
1738
1739 struct partial_symtab *
1740 allocate_psymtab (filename, objfile)
1741 char *filename;
1742 struct objfile *objfile;
1743 {
1744 struct partial_symtab *psymtab;
1745
1746 if (objfile->free_psymtabs)
1747 {
1748 psymtab = objfile->free_psymtabs;
1749 objfile->free_psymtabs = psymtab->next;
1750 }
1751 else
1752 psymtab = (struct partial_symtab *)
1753 obstack_alloc (&objfile->psymbol_obstack,
1754 sizeof (struct partial_symtab));
1755
1756 memset (psymtab, 0, sizeof (struct partial_symtab));
1757 psymtab->filename = obsavestring (filename, strlen (filename),
1758 &objfile->psymbol_obstack);
1759 psymtab->symtab = NULL;
1760
1761 /* Prepend it to the psymtab list for the objfile it belongs to.
1762 Psymtabs are searched in most recent inserted -> least recent
1763 inserted order. */
1764
1765 psymtab->objfile = objfile;
1766 psymtab->next = objfile->psymtabs;
1767 objfile->psymtabs = psymtab;
1768 #if 0
1769 {
1770 struct partial_symtab **prev_pst;
1771 psymtab->objfile = objfile;
1772 psymtab->next = NULL;
1773 prev_pst = &(objfile->psymtabs);
1774 while ((*prev_pst) != NULL)
1775 prev_pst = &((*prev_pst)->next);
1776 (*prev_pst) = psymtab;
1777 }
1778 #endif
1779
1780 return (psymtab);
1781 }
1782
1783 void
1784 discard_psymtab (pst)
1785 struct partial_symtab *pst;
1786 {
1787 struct partial_symtab **prev_pst;
1788
1789 /* From dbxread.c:
1790 Empty psymtabs happen as a result of header files which don't
1791 have any symbols in them. There can be a lot of them. But this
1792 check is wrong, in that a psymtab with N_SLINE entries but
1793 nothing else is not empty, but we don't realize that. Fixing
1794 that without slowing things down might be tricky. */
1795
1796 /* First, snip it out of the psymtab chain */
1797
1798 prev_pst = &(pst->objfile->psymtabs);
1799 while ((*prev_pst) != pst)
1800 prev_pst = &((*prev_pst)->next);
1801 (*prev_pst) = pst->next;
1802
1803 /* Next, put it on a free list for recycling */
1804
1805 pst->next = pst->objfile->free_psymtabs;
1806 pst->objfile->free_psymtabs = pst;
1807 }
1808 \f
1809
1810 /* Reset all data structures in gdb which may contain references to symbol
1811 table data. */
1812
1813 void
1814 clear_symtab_users ()
1815 {
1816 /* Someday, we should do better than this, by only blowing away
1817 the things that really need to be blown. */
1818 clear_value_history ();
1819 clear_displays ();
1820 clear_internalvars ();
1821 breakpoint_re_set ();
1822 set_default_breakpoint (0, 0, 0, 0);
1823 current_source_symtab = 0;
1824 current_source_line = 0;
1825 clear_pc_function_cache ();
1826 target_new_objfile (NULL);
1827 }
1828
1829 /* clear_symtab_users_once:
1830
1831 This function is run after symbol reading, or from a cleanup.
1832 If an old symbol table was obsoleted, the old symbol table
1833 has been blown away, but the other GDB data structures that may
1834 reference it have not yet been cleared or re-directed. (The old
1835 symtab was zapped, and the cleanup queued, in free_named_symtab()
1836 below.)
1837
1838 This function can be queued N times as a cleanup, or called
1839 directly; it will do all the work the first time, and then will be a
1840 no-op until the next time it is queued. This works by bumping a
1841 counter at queueing time. Much later when the cleanup is run, or at
1842 the end of symbol processing (in case the cleanup is discarded), if
1843 the queued count is greater than the "done-count", we do the work
1844 and set the done-count to the queued count. If the queued count is
1845 less than or equal to the done-count, we just ignore the call. This
1846 is needed because reading a single .o file will often replace many
1847 symtabs (one per .h file, for example), and we don't want to reset
1848 the breakpoints N times in the user's face.
1849
1850 The reason we both queue a cleanup, and call it directly after symbol
1851 reading, is because the cleanup protects us in case of errors, but is
1852 discarded if symbol reading is successful. */
1853
1854 #if 0
1855 /* FIXME: As free_named_symtabs is currently a big noop this function
1856 is no longer needed. */
1857 static void
1858 clear_symtab_users_once PARAMS ((void));
1859
1860 static int clear_symtab_users_queued;
1861 static int clear_symtab_users_done;
1862
1863 static void
1864 clear_symtab_users_once ()
1865 {
1866 /* Enforce once-per-`do_cleanups'-semantics */
1867 if (clear_symtab_users_queued <= clear_symtab_users_done)
1868 return;
1869 clear_symtab_users_done = clear_symtab_users_queued;
1870
1871 clear_symtab_users ();
1872 }
1873 #endif
1874
1875 /* Delete the specified psymtab, and any others that reference it. */
1876
1877 static void
1878 cashier_psymtab (pst)
1879 struct partial_symtab *pst;
1880 {
1881 struct partial_symtab *ps, *pprev = NULL;
1882 int i;
1883
1884 /* Find its previous psymtab in the chain */
1885 for (ps = pst->objfile->psymtabs; ps; ps = ps->next)
1886 {
1887 if (ps == pst)
1888 break;
1889 pprev = ps;
1890 }
1891
1892 if (ps)
1893 {
1894 /* Unhook it from the chain. */
1895 if (ps == pst->objfile->psymtabs)
1896 pst->objfile->psymtabs = ps->next;
1897 else
1898 pprev->next = ps->next;
1899
1900 /* FIXME, we can't conveniently deallocate the entries in the
1901 partial_symbol lists (global_psymbols/static_psymbols) that
1902 this psymtab points to. These just take up space until all
1903 the psymtabs are reclaimed. Ditto the dependencies list and
1904 filename, which are all in the psymbol_obstack. */
1905
1906 /* We need to cashier any psymtab that has this one as a dependency... */
1907 again:
1908 for (ps = pst->objfile->psymtabs; ps; ps = ps->next)
1909 {
1910 for (i = 0; i < ps->number_of_dependencies; i++)
1911 {
1912 if (ps->dependencies[i] == pst)
1913 {
1914 cashier_psymtab (ps);
1915 goto again; /* Must restart, chain has been munged. */
1916 }
1917 }
1918 }
1919 }
1920 }
1921
1922 /* If a symtab or psymtab for filename NAME is found, free it along
1923 with any dependent breakpoints, displays, etc.
1924 Used when loading new versions of object modules with the "add-file"
1925 command. This is only called on the top-level symtab or psymtab's name;
1926 it is not called for subsidiary files such as .h files.
1927
1928 Return value is 1 if we blew away the environment, 0 if not.
1929 FIXME. The return valu appears to never be used.
1930
1931 FIXME. I think this is not the best way to do this. We should
1932 work on being gentler to the environment while still cleaning up
1933 all stray pointers into the freed symtab. */
1934
1935 int
1936 free_named_symtabs (name)
1937 char *name;
1938 {
1939 #if 0
1940 /* FIXME: With the new method of each objfile having it's own
1941 psymtab list, this function needs serious rethinking. In particular,
1942 why was it ever necessary to toss psymtabs with specific compilation
1943 unit filenames, as opposed to all psymtabs from a particular symbol
1944 file? -- fnf
1945 Well, the answer is that some systems permit reloading of particular
1946 compilation units. We want to blow away any old info about these
1947 compilation units, regardless of which objfiles they arrived in. --gnu. */
1948
1949 register struct symtab *s;
1950 register struct symtab *prev;
1951 register struct partial_symtab *ps;
1952 struct blockvector *bv;
1953 int blewit = 0;
1954
1955 /* We only wack things if the symbol-reload switch is set. */
1956 if (!symbol_reloading)
1957 return 0;
1958
1959 /* Some symbol formats have trouble providing file names... */
1960 if (name == 0 || *name == '\0')
1961 return 0;
1962
1963 /* Look for a psymtab with the specified name. */
1964
1965 again2:
1966 for (ps = partial_symtab_list; ps; ps = ps->next)
1967 {
1968 if (STREQ (name, ps->filename))
1969 {
1970 cashier_psymtab (ps); /* Blow it away...and its little dog, too. */
1971 goto again2; /* Must restart, chain has been munged */
1972 }
1973 }
1974
1975 /* Look for a symtab with the specified name. */
1976
1977 for (s = symtab_list; s; s = s->next)
1978 {
1979 if (STREQ (name, s->filename))
1980 break;
1981 prev = s;
1982 }
1983
1984 if (s)
1985 {
1986 if (s == symtab_list)
1987 symtab_list = s->next;
1988 else
1989 prev->next = s->next;
1990
1991 /* For now, queue a delete for all breakpoints, displays, etc., whether
1992 or not they depend on the symtab being freed. This should be
1993 changed so that only those data structures affected are deleted. */
1994
1995 /* But don't delete anything if the symtab is empty.
1996 This test is necessary due to a bug in "dbxread.c" that
1997 causes empty symtabs to be created for N_SO symbols that
1998 contain the pathname of the object file. (This problem
1999 has been fixed in GDB 3.9x). */
2000
2001 bv = BLOCKVECTOR (s);
2002 if (BLOCKVECTOR_NBLOCKS (bv) > 2
2003 || BLOCK_NSYMS (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK))
2004 || BLOCK_NSYMS (BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK)))
2005 {
2006 complain (&oldsyms_complaint, name);
2007
2008 clear_symtab_users_queued++;
2009 make_cleanup (clear_symtab_users_once, 0);
2010 blewit = 1;
2011 }
2012 else
2013 {
2014 complain (&empty_symtab_complaint, name);
2015 }
2016
2017 free_symtab (s);
2018 }
2019 else
2020 {
2021 /* It is still possible that some breakpoints will be affected
2022 even though no symtab was found, since the file might have
2023 been compiled without debugging, and hence not be associated
2024 with a symtab. In order to handle this correctly, we would need
2025 to keep a list of text address ranges for undebuggable files.
2026 For now, we do nothing, since this is a fairly obscure case. */
2027 ;
2028 }
2029
2030 /* FIXME, what about the minimal symbol table? */
2031 return blewit;
2032 #else
2033 return (0);
2034 #endif
2035 }
2036 \f
2037 /* Allocate and partially fill a partial symtab. It will be
2038 completely filled at the end of the symbol list.
2039
2040 SYMFILE_NAME is the name of the symbol-file we are reading from, and ADDR
2041 is the address relative to which its symbols are (incremental) or 0
2042 (normal). */
2043
2044
2045 struct partial_symtab *
2046 start_psymtab_common (objfile, section_offsets,
2047 filename, textlow, global_syms, static_syms)
2048 struct objfile *objfile;
2049 struct section_offsets *section_offsets;
2050 char *filename;
2051 CORE_ADDR textlow;
2052 struct partial_symbol **global_syms;
2053 struct partial_symbol **static_syms;
2054 {
2055 struct partial_symtab *psymtab;
2056
2057 psymtab = allocate_psymtab (filename, objfile);
2058 psymtab->section_offsets = section_offsets;
2059 psymtab->textlow = textlow;
2060 psymtab->texthigh = psymtab->textlow; /* default */
2061 psymtab->globals_offset = global_syms - objfile->global_psymbols.list;
2062 psymtab->statics_offset = static_syms - objfile->static_psymbols.list;
2063 return (psymtab);
2064 }
2065 \f
2066 /* Add a symbol with a long value to a psymtab.
2067 Since one arg is a struct, we pass in a ptr and deref it (sigh). */
2068
2069 void
2070 add_psymbol_to_list (name, namelength, namespace, class, list, val, coreaddr,
2071 language, objfile)
2072 char *name;
2073 int namelength;
2074 namespace_enum namespace;
2075 enum address_class class;
2076 struct psymbol_allocation_list *list;
2077 long val; /* Value as a long */
2078 CORE_ADDR coreaddr; /* Value as a CORE_ADDR */
2079 enum language language;
2080 struct objfile *objfile;
2081 {
2082 register struct partial_symbol *psym;
2083 char *buf = alloca (namelength + 1);
2084 /* psymbol is static so that there will be no uninitialized gaps in the
2085 structure which might contain random data, causing cache misses in
2086 bcache. */
2087 static struct partial_symbol psymbol;
2088
2089 /* Create local copy of the partial symbol */
2090 memcpy (buf, name, namelength);
2091 buf[namelength] = '\0';
2092 SYMBOL_NAME (&psymbol) = bcache (buf, namelength + 1, &objfile->psymbol_cache);
2093 /* val and coreaddr are mutually exclusive, one of them *will* be zero */
2094 if (val != 0)
2095 {
2096 SYMBOL_VALUE (&psymbol) = val;
2097 }
2098 else
2099 {
2100 SYMBOL_VALUE_ADDRESS (&psymbol) = coreaddr;
2101 }
2102 SYMBOL_SECTION (&psymbol) = 0;
2103 SYMBOL_LANGUAGE (&psymbol) = language;
2104 PSYMBOL_NAMESPACE (&psymbol) = namespace;
2105 PSYMBOL_CLASS (&psymbol) = class;
2106 SYMBOL_INIT_LANGUAGE_SPECIFIC (&psymbol, language);
2107
2108 /* Stash the partial symbol away in the cache */
2109 psym = bcache (&psymbol, sizeof (struct partial_symbol), &objfile->psymbol_cache);
2110
2111 /* Save pointer to partial symbol in psymtab, growing symtab if needed. */
2112 if (list->next >= list->list + list->size)
2113 {
2114 extend_psymbol_list (list, objfile);
2115 }
2116 *list->next++ = psym;
2117 OBJSTAT (objfile, n_psyms++);
2118 }
2119
2120 /* Add a symbol with a long value to a psymtab. This differs from
2121 * add_psymbol_to_list above in taking both a mangled and a demangled
2122 * name. */
2123
2124 void
2125 add_psymbol_with_dem_name_to_list (name, namelength, dem_name, dem_namelength,
2126 namespace, class, list, val, coreaddr, language, objfile)
2127 char *name;
2128 int namelength;
2129 char *dem_name;
2130 int dem_namelength;
2131 namespace_enum namespace;
2132 enum address_class class;
2133 struct psymbol_allocation_list *list;
2134 long val; /* Value as a long */
2135 CORE_ADDR coreaddr; /* Value as a CORE_ADDR */
2136 enum language language;
2137 struct objfile *objfile;
2138 {
2139 register struct partial_symbol *psym;
2140 char *buf = alloca (namelength + 1);
2141 /* psymbol is static so that there will be no uninitialized gaps in the
2142 structure which might contain random data, causing cache misses in
2143 bcache. */
2144 static struct partial_symbol psymbol;
2145
2146 /* Create local copy of the partial symbol */
2147
2148 memcpy (buf, name, namelength);
2149 buf[namelength] = '\0';
2150 SYMBOL_NAME (&psymbol) = bcache (buf, namelength + 1, &objfile->psymbol_cache);
2151
2152 buf = alloca (dem_namelength + 1);
2153 memcpy (buf, dem_name, dem_namelength);
2154 buf[dem_namelength] = '\0';
2155
2156 switch (language)
2157 {
2158 case language_c:
2159 case language_cplus:
2160 SYMBOL_CPLUS_DEMANGLED_NAME (&psymbol) =
2161 bcache (buf, dem_namelength + 1, &objfile->psymbol_cache);
2162 break;
2163 case language_chill:
2164 SYMBOL_CHILL_DEMANGLED_NAME (&psymbol) =
2165 bcache (buf, dem_namelength + 1, &objfile->psymbol_cache);
2166
2167 /* FIXME What should be done for the default case? Ignoring for now. */
2168 }
2169
2170 /* val and coreaddr are mutually exclusive, one of them *will* be zero */
2171 if (val != 0)
2172 {
2173 SYMBOL_VALUE (&psymbol) = val;
2174 }
2175 else
2176 {
2177 SYMBOL_VALUE_ADDRESS (&psymbol) = coreaddr;
2178 }
2179 SYMBOL_SECTION (&psymbol) = 0;
2180 SYMBOL_LANGUAGE (&psymbol) = language;
2181 PSYMBOL_NAMESPACE (&psymbol) = namespace;
2182 PSYMBOL_CLASS (&psymbol) = class;
2183 SYMBOL_INIT_LANGUAGE_SPECIFIC (&psymbol, language);
2184
2185 /* Stash the partial symbol away in the cache */
2186 psym = bcache (&psymbol, sizeof (struct partial_symbol), &objfile->psymbol_cache);
2187
2188 /* Save pointer to partial symbol in psymtab, growing symtab if needed. */
2189 if (list->next >= list->list + list->size)
2190 {
2191 extend_psymbol_list (list, objfile);
2192 }
2193 *list->next++ = psym;
2194 OBJSTAT (objfile, n_psyms++);
2195 }
2196
2197 /* Initialize storage for partial symbols. */
2198
2199 void
2200 init_psymbol_list (objfile, total_symbols)
2201 struct objfile *objfile;
2202 int total_symbols;
2203 {
2204 /* Free any previously allocated psymbol lists. */
2205
2206 if (objfile->global_psymbols.list)
2207 {
2208 mfree (objfile->md, (PTR) objfile->global_psymbols.list);
2209 }
2210 if (objfile->static_psymbols.list)
2211 {
2212 mfree (objfile->md, (PTR) objfile->static_psymbols.list);
2213 }
2214
2215 /* Current best guess is that approximately a twentieth
2216 of the total symbols (in a debugging file) are global or static
2217 oriented symbols */
2218
2219 objfile->global_psymbols.size = total_symbols / 10;
2220 objfile->static_psymbols.size = total_symbols / 10;
2221
2222 if (objfile->global_psymbols.size > 0)
2223 {
2224 objfile->global_psymbols.next =
2225 objfile->global_psymbols.list = (struct partial_symbol **)
2226 xmmalloc (objfile->md, (objfile->global_psymbols.size
2227 * sizeof (struct partial_symbol *)));
2228 }
2229 if (objfile->static_psymbols.size > 0)
2230 {
2231 objfile->static_psymbols.next =
2232 objfile->static_psymbols.list = (struct partial_symbol **)
2233 xmmalloc (objfile->md, (objfile->static_psymbols.size
2234 * sizeof (struct partial_symbol *)));
2235 }
2236 }
2237
2238 /* OVERLAYS:
2239 The following code implements an abstraction for debugging overlay sections.
2240
2241 The target model is as follows:
2242 1) The gnu linker will permit multiple sections to be mapped into the
2243 same VMA, each with its own unique LMA (or load address).
2244 2) It is assumed that some runtime mechanism exists for mapping the
2245 sections, one by one, from the load address into the VMA address.
2246 3) This code provides a mechanism for gdb to keep track of which
2247 sections should be considered to be mapped from the VMA to the LMA.
2248 This information is used for symbol lookup, and memory read/write.
2249 For instance, if a section has been mapped then its contents
2250 should be read from the VMA, otherwise from the LMA.
2251
2252 Two levels of debugger support for overlays are available. One is
2253 "manual", in which the debugger relies on the user to tell it which
2254 overlays are currently mapped. This level of support is
2255 implemented entirely in the core debugger, and the information about
2256 whether a section is mapped is kept in the objfile->obj_section table.
2257
2258 The second level of support is "automatic", and is only available if
2259 the target-specific code provides functionality to read the target's
2260 overlay mapping table, and translate its contents for the debugger
2261 (by updating the mapped state information in the obj_section tables).
2262
2263 The interface is as follows:
2264 User commands:
2265 overlay map <name> -- tell gdb to consider this section mapped
2266 overlay unmap <name> -- tell gdb to consider this section unmapped
2267 overlay list -- list the sections that GDB thinks are mapped
2268 overlay read-target -- get the target's state of what's mapped
2269 overlay off/manual/auto -- set overlay debugging state
2270 Functional interface:
2271 find_pc_mapped_section(pc): if the pc is in the range of a mapped
2272 section, return that section.
2273 find_pc_overlay(pc): find any overlay section that contains
2274 the pc, either in its VMA or its LMA
2275 overlay_is_mapped(sect): true if overlay is marked as mapped
2276 section_is_overlay(sect): true if section's VMA != LMA
2277 pc_in_mapped_range(pc,sec): true if pc belongs to section's VMA
2278 pc_in_unmapped_range(...): true if pc belongs to section's LMA
2279 overlay_mapped_address(...): map an address from section's LMA to VMA
2280 overlay_unmapped_address(...): map an address from section's VMA to LMA
2281 symbol_overlayed_address(...): Return a "current" address for symbol:
2282 either in VMA or LMA depending on whether
2283 the symbol's section is currently mapped
2284 */
2285
2286 /* Overlay debugging state: */
2287
2288 int overlay_debugging = 0; /* 0 == off, 1 == manual, -1 == auto */
2289 int overlay_cache_invalid = 0; /* True if need to refresh mapped state */
2290
2291 /* Target vector for refreshing overlay mapped state */
2292 static void simple_overlay_update PARAMS ((struct obj_section *));
2293 void (*target_overlay_update) PARAMS ((struct obj_section *))
2294 = simple_overlay_update;
2295
2296 /* Function: section_is_overlay (SECTION)
2297 Returns true if SECTION has VMA not equal to LMA, ie.
2298 SECTION is loaded at an address different from where it will "run". */
2299
2300 int
2301 section_is_overlay (section)
2302 asection *section;
2303 {
2304 if (overlay_debugging)
2305 if (section && section->lma != 0 &&
2306 section->vma != section->lma)
2307 return 1;
2308
2309 return 0;
2310 }
2311
2312 /* Function: overlay_invalidate_all (void)
2313 Invalidate the mapped state of all overlay sections (mark it as stale). */
2314
2315 static void
2316 overlay_invalidate_all ()
2317 {
2318 struct objfile *objfile;
2319 struct obj_section *sect;
2320
2321 ALL_OBJSECTIONS (objfile, sect)
2322 if (section_is_overlay (sect->the_bfd_section))
2323 sect->ovly_mapped = -1;
2324 }
2325
2326 /* Function: overlay_is_mapped (SECTION)
2327 Returns true if section is an overlay, and is currently mapped.
2328 Private: public access is thru function section_is_mapped.
2329
2330 Access to the ovly_mapped flag is restricted to this function, so
2331 that we can do automatic update. If the global flag
2332 OVERLAY_CACHE_INVALID is set (by wait_for_inferior), then call
2333 overlay_invalidate_all. If the mapped state of the particular
2334 section is stale, then call TARGET_OVERLAY_UPDATE to refresh it. */
2335
2336 static int
2337 overlay_is_mapped (osect)
2338 struct obj_section *osect;
2339 {
2340 if (osect == 0 || !section_is_overlay (osect->the_bfd_section))
2341 return 0;
2342
2343 switch (overlay_debugging)
2344 {
2345 default:
2346 case 0:
2347 return 0; /* overlay debugging off */
2348 case -1: /* overlay debugging automatic */
2349 /* Unles there is a target_overlay_update function,
2350 there's really nothing useful to do here (can't really go auto) */
2351 if (target_overlay_update)
2352 {
2353 if (overlay_cache_invalid)
2354 {
2355 overlay_invalidate_all ();
2356 overlay_cache_invalid = 0;
2357 }
2358 if (osect->ovly_mapped == -1)
2359 (*target_overlay_update) (osect);
2360 }
2361 /* fall thru to manual case */
2362 case 1: /* overlay debugging manual */
2363 return osect->ovly_mapped == 1;
2364 }
2365 }
2366
2367 /* Function: section_is_mapped
2368 Returns true if section is an overlay, and is currently mapped. */
2369
2370 int
2371 section_is_mapped (section)
2372 asection *section;
2373 {
2374 struct objfile *objfile;
2375 struct obj_section *osect;
2376
2377 if (overlay_debugging)
2378 if (section && section_is_overlay (section))
2379 ALL_OBJSECTIONS (objfile, osect)
2380 if (osect->the_bfd_section == section)
2381 return overlay_is_mapped (osect);
2382
2383 return 0;
2384 }
2385
2386 /* Function: pc_in_unmapped_range
2387 If PC falls into the lma range of SECTION, return true, else false. */
2388
2389 CORE_ADDR
2390 pc_in_unmapped_range (pc, section)
2391 CORE_ADDR pc;
2392 asection *section;
2393 {
2394 int size;
2395
2396 if (overlay_debugging)
2397 if (section && section_is_overlay (section))
2398 {
2399 size = bfd_get_section_size_before_reloc (section);
2400 if (section->lma <= pc && pc < section->lma + size)
2401 return 1;
2402 }
2403 return 0;
2404 }
2405
2406 /* Function: pc_in_mapped_range
2407 If PC falls into the vma range of SECTION, return true, else false. */
2408
2409 CORE_ADDR
2410 pc_in_mapped_range (pc, section)
2411 CORE_ADDR pc;
2412 asection *section;
2413 {
2414 int size;
2415
2416 if (overlay_debugging)
2417 if (section && section_is_overlay (section))
2418 {
2419 size = bfd_get_section_size_before_reloc (section);
2420 if (section->vma <= pc && pc < section->vma + size)
2421 return 1;
2422 }
2423 return 0;
2424 }
2425
2426 /* Function: overlay_unmapped_address (PC, SECTION)
2427 Returns the address corresponding to PC in the unmapped (load) range.
2428 May be the same as PC. */
2429
2430 CORE_ADDR
2431 overlay_unmapped_address (pc, section)
2432 CORE_ADDR pc;
2433 asection *section;
2434 {
2435 if (overlay_debugging)
2436 if (section && section_is_overlay (section) &&
2437 pc_in_mapped_range (pc, section))
2438 return pc + section->lma - section->vma;
2439
2440 return pc;
2441 }
2442
2443 /* Function: overlay_mapped_address (PC, SECTION)
2444 Returns the address corresponding to PC in the mapped (runtime) range.
2445 May be the same as PC. */
2446
2447 CORE_ADDR
2448 overlay_mapped_address (pc, section)
2449 CORE_ADDR pc;
2450 asection *section;
2451 {
2452 if (overlay_debugging)
2453 if (section && section_is_overlay (section) &&
2454 pc_in_unmapped_range (pc, section))
2455 return pc + section->vma - section->lma;
2456
2457 return pc;
2458 }
2459
2460
2461 /* Function: symbol_overlayed_address
2462 Return one of two addresses (relative to the VMA or to the LMA),
2463 depending on whether the section is mapped or not. */
2464
2465 CORE_ADDR
2466 symbol_overlayed_address (address, section)
2467 CORE_ADDR address;
2468 asection *section;
2469 {
2470 if (overlay_debugging)
2471 {
2472 /* If the symbol has no section, just return its regular address. */
2473 if (section == 0)
2474 return address;
2475 /* If the symbol's section is not an overlay, just return its address */
2476 if (!section_is_overlay (section))
2477 return address;
2478 /* If the symbol's section is mapped, just return its address */
2479 if (section_is_mapped (section))
2480 return address;
2481 /*
2482 * HOWEVER: if the symbol is in an overlay section which is NOT mapped,
2483 * then return its LOADED address rather than its vma address!!
2484 */
2485 return overlay_unmapped_address (address, section);
2486 }
2487 return address;
2488 }
2489
2490 /* Function: find_pc_overlay (PC)
2491 Return the best-match overlay section for PC:
2492 If PC matches a mapped overlay section's VMA, return that section.
2493 Else if PC matches an unmapped section's VMA, return that section.
2494 Else if PC matches an unmapped section's LMA, return that section. */
2495
2496 asection *
2497 find_pc_overlay (pc)
2498 CORE_ADDR pc;
2499 {
2500 struct objfile *objfile;
2501 struct obj_section *osect, *best_match = NULL;
2502
2503 if (overlay_debugging)
2504 ALL_OBJSECTIONS (objfile, osect)
2505 if (section_is_overlay (osect->the_bfd_section))
2506 {
2507 if (pc_in_mapped_range (pc, osect->the_bfd_section))
2508 {
2509 if (overlay_is_mapped (osect))
2510 return osect->the_bfd_section;
2511 else
2512 best_match = osect;
2513 }
2514 else if (pc_in_unmapped_range (pc, osect->the_bfd_section))
2515 best_match = osect;
2516 }
2517 return best_match ? best_match->the_bfd_section : NULL;
2518 }
2519
2520 /* Function: find_pc_mapped_section (PC)
2521 If PC falls into the VMA address range of an overlay section that is
2522 currently marked as MAPPED, return that section. Else return NULL. */
2523
2524 asection *
2525 find_pc_mapped_section (pc)
2526 CORE_ADDR pc;
2527 {
2528 struct objfile *objfile;
2529 struct obj_section *osect;
2530
2531 if (overlay_debugging)
2532 ALL_OBJSECTIONS (objfile, osect)
2533 if (pc_in_mapped_range (pc, osect->the_bfd_section) &&
2534 overlay_is_mapped (osect))
2535 return osect->the_bfd_section;
2536
2537 return NULL;
2538 }
2539
2540 /* Function: list_overlays_command
2541 Print a list of mapped sections and their PC ranges */
2542
2543 void
2544 list_overlays_command (args, from_tty)
2545 char *args;
2546 int from_tty;
2547 {
2548 int nmapped = 0;
2549 struct objfile *objfile;
2550 struct obj_section *osect;
2551
2552 if (overlay_debugging)
2553 ALL_OBJSECTIONS (objfile, osect)
2554 if (overlay_is_mapped (osect))
2555 {
2556 const char *name;
2557 bfd_vma lma, vma;
2558 int size;
2559
2560 vma = bfd_section_vma (objfile->obfd, osect->the_bfd_section);
2561 lma = bfd_section_lma (objfile->obfd, osect->the_bfd_section);
2562 size = bfd_get_section_size_before_reloc (osect->the_bfd_section);
2563 name = bfd_section_name (objfile->obfd, osect->the_bfd_section);
2564
2565 printf_filtered ("Section %s, loaded at ", name);
2566 print_address_numeric (lma, 1, gdb_stdout);
2567 puts_filtered (" - ");
2568 print_address_numeric (lma + size, 1, gdb_stdout);
2569 printf_filtered (", mapped at ");
2570 print_address_numeric (vma, 1, gdb_stdout);
2571 puts_filtered (" - ");
2572 print_address_numeric (vma + size, 1, gdb_stdout);
2573 puts_filtered ("\n");
2574
2575 nmapped++;
2576 }
2577 if (nmapped == 0)
2578 printf_filtered ("No sections are mapped.\n");
2579 }
2580
2581 /* Function: map_overlay_command
2582 Mark the named section as mapped (ie. residing at its VMA address). */
2583
2584 void
2585 map_overlay_command (args, from_tty)
2586 char *args;
2587 int from_tty;
2588 {
2589 struct objfile *objfile, *objfile2;
2590 struct obj_section *sec, *sec2;
2591 asection *bfdsec;
2592
2593 if (!overlay_debugging)
2594 error ("Overlay debugging not enabled. Use the 'OVERLAY ON' command.");
2595
2596 if (args == 0 || *args == 0)
2597 error ("Argument required: name of an overlay section");
2598
2599 /* First, find a section matching the user supplied argument */
2600 ALL_OBJSECTIONS (objfile, sec)
2601 if (!strcmp (bfd_section_name (objfile->obfd, sec->the_bfd_section), args))
2602 {
2603 /* Now, check to see if the section is an overlay. */
2604 bfdsec = sec->the_bfd_section;
2605 if (!section_is_overlay (bfdsec))
2606 continue; /* not an overlay section */
2607
2608 /* Mark the overlay as "mapped" */
2609 sec->ovly_mapped = 1;
2610
2611 /* Next, make a pass and unmap any sections that are
2612 overlapped by this new section: */
2613 ALL_OBJSECTIONS (objfile2, sec2)
2614 if (sec2->ovly_mapped &&
2615 sec != sec2 &&
2616 sec->the_bfd_section != sec2->the_bfd_section &&
2617 (pc_in_mapped_range (sec2->addr, sec->the_bfd_section) ||
2618 pc_in_mapped_range (sec2->endaddr, sec->the_bfd_section)))
2619 {
2620 if (info_verbose)
2621 printf_filtered ("Note: section %s unmapped by overlap\n",
2622 bfd_section_name (objfile->obfd,
2623 sec2->the_bfd_section));
2624 sec2->ovly_mapped = 0; /* sec2 overlaps sec: unmap sec2 */
2625 }
2626 return;
2627 }
2628 error ("No overlay section called %s", args);
2629 }
2630
2631 /* Function: unmap_overlay_command
2632 Mark the overlay section as unmapped
2633 (ie. resident in its LMA address range, rather than the VMA range). */
2634
2635 void
2636 unmap_overlay_command (args, from_tty)
2637 char *args;
2638 int from_tty;
2639 {
2640 struct objfile *objfile;
2641 struct obj_section *sec;
2642
2643 if (!overlay_debugging)
2644 error ("Overlay debugging not enabled. Use the 'OVERLAY ON' command.");
2645
2646 if (args == 0 || *args == 0)
2647 error ("Argument required: name of an overlay section");
2648
2649 /* First, find a section matching the user supplied argument */
2650 ALL_OBJSECTIONS (objfile, sec)
2651 if (!strcmp (bfd_section_name (objfile->obfd, sec->the_bfd_section), args))
2652 {
2653 if (!sec->ovly_mapped)
2654 error ("Section %s is not mapped", args);
2655 sec->ovly_mapped = 0;
2656 return;
2657 }
2658 error ("No overlay section called %s", args);
2659 }
2660
2661 /* Function: overlay_auto_command
2662 A utility command to turn on overlay debugging.
2663 Possibly this should be done via a set/show command. */
2664
2665 static void
2666 overlay_auto_command (args, from_tty)
2667 char *args;
2668 int from_tty;
2669 {
2670 overlay_debugging = -1;
2671 if (info_verbose)
2672 printf_filtered ("Automatic overlay debugging enabled.");
2673 }
2674
2675 /* Function: overlay_manual_command
2676 A utility command to turn on overlay debugging.
2677 Possibly this should be done via a set/show command. */
2678
2679 static void
2680 overlay_manual_command (args, from_tty)
2681 char *args;
2682 int from_tty;
2683 {
2684 overlay_debugging = 1;
2685 if (info_verbose)
2686 printf_filtered ("Overlay debugging enabled.");
2687 }
2688
2689 /* Function: overlay_off_command
2690 A utility command to turn on overlay debugging.
2691 Possibly this should be done via a set/show command. */
2692
2693 static void
2694 overlay_off_command (args, from_tty)
2695 char *args;
2696 int from_tty;
2697 {
2698 overlay_debugging = 0;
2699 if (info_verbose)
2700 printf_filtered ("Overlay debugging disabled.");
2701 }
2702
2703 static void
2704 overlay_load_command (args, from_tty)
2705 char *args;
2706 int from_tty;
2707 {
2708 if (target_overlay_update)
2709 (*target_overlay_update) (NULL);
2710 else
2711 error ("This target does not know how to read its overlay state.");
2712 }
2713
2714 /* Function: overlay_command
2715 A place-holder for a mis-typed command */
2716
2717 /* Command list chain containing all defined "overlay" subcommands. */
2718 struct cmd_list_element *overlaylist;
2719
2720 static void
2721 overlay_command (args, from_tty)
2722 char *args;
2723 int from_tty;
2724 {
2725 printf_unfiltered
2726 ("\"overlay\" must be followed by the name of an overlay command.\n");
2727 help_list (overlaylist, "overlay ", -1, gdb_stdout);
2728 }
2729
2730
2731 /* Target Overlays for the "Simplest" overlay manager:
2732
2733 This is GDB's default target overlay layer. It works with the
2734 minimal overlay manager supplied as an example by Cygnus. The
2735 entry point is via a function pointer "target_overlay_update",
2736 so targets that use a different runtime overlay manager can
2737 substitute their own overlay_update function and take over the
2738 function pointer.
2739
2740 The overlay_update function pokes around in the target's data structures
2741 to see what overlays are mapped, and updates GDB's overlay mapping with
2742 this information.
2743
2744 In this simple implementation, the target data structures are as follows:
2745 unsigned _novlys; /# number of overlay sections #/
2746 unsigned _ovly_table[_novlys][4] = {
2747 {VMA, SIZE, LMA, MAPPED}, /# one entry per overlay section #/
2748 {..., ..., ..., ...},
2749 }
2750 unsigned _novly_regions; /# number of overlay regions #/
2751 unsigned _ovly_region_table[_novly_regions][3] = {
2752 {VMA, SIZE, MAPPED_TO_LMA}, /# one entry per overlay region #/
2753 {..., ..., ...},
2754 }
2755 These functions will attempt to update GDB's mappedness state in the
2756 symbol section table, based on the target's mappedness state.
2757
2758 To do this, we keep a cached copy of the target's _ovly_table, and
2759 attempt to detect when the cached copy is invalidated. The main
2760 entry point is "simple_overlay_update(SECT), which looks up SECT in
2761 the cached table and re-reads only the entry for that section from
2762 the target (whenever possible).
2763 */
2764
2765 /* Cached, dynamically allocated copies of the target data structures: */
2766 static unsigned (*cache_ovly_table)[4] = 0;
2767 #if 0
2768 static unsigned (*cache_ovly_region_table)[3] = 0;
2769 #endif
2770 static unsigned cache_novlys = 0;
2771 #if 0
2772 static unsigned cache_novly_regions = 0;
2773 #endif
2774 static CORE_ADDR cache_ovly_table_base = 0;
2775 #if 0
2776 static CORE_ADDR cache_ovly_region_table_base = 0;
2777 #endif
2778 enum ovly_index
2779 {
2780 VMA, SIZE, LMA, MAPPED
2781 };
2782 #define TARGET_LONG_BYTES (TARGET_LONG_BIT / TARGET_CHAR_BIT)
2783
2784 /* Throw away the cached copy of _ovly_table */
2785 static void
2786 simple_free_overlay_table ()
2787 {
2788 if (cache_ovly_table)
2789 free (cache_ovly_table);
2790 cache_novlys = 0;
2791 cache_ovly_table = NULL;
2792 cache_ovly_table_base = 0;
2793 }
2794
2795 #if 0
2796 /* Throw away the cached copy of _ovly_region_table */
2797 static void
2798 simple_free_overlay_region_table ()
2799 {
2800 if (cache_ovly_region_table)
2801 free (cache_ovly_region_table);
2802 cache_novly_regions = 0;
2803 cache_ovly_region_table = NULL;
2804 cache_ovly_region_table_base = 0;
2805 }
2806 #endif
2807
2808 /* Read an array of ints from the target into a local buffer.
2809 Convert to host order. int LEN is number of ints */
2810 static void
2811 read_target_long_array (memaddr, myaddr, len)
2812 CORE_ADDR memaddr;
2813 unsigned int *myaddr;
2814 int len;
2815 {
2816 char *buf = alloca (len * TARGET_LONG_BYTES);
2817 int i;
2818
2819 read_memory (memaddr, buf, len * TARGET_LONG_BYTES);
2820 for (i = 0; i < len; i++)
2821 myaddr[i] = extract_unsigned_integer (TARGET_LONG_BYTES * i + buf,
2822 TARGET_LONG_BYTES);
2823 }
2824
2825 /* Find and grab a copy of the target _ovly_table
2826 (and _novlys, which is needed for the table's size) */
2827 static int
2828 simple_read_overlay_table ()
2829 {
2830 struct minimal_symbol *msym;
2831
2832 simple_free_overlay_table ();
2833 msym = lookup_minimal_symbol ("_novlys", 0, 0);
2834 if (msym != NULL)
2835 cache_novlys = read_memory_integer (SYMBOL_VALUE_ADDRESS (msym), 4);
2836 else
2837 return 0; /* failure */
2838 cache_ovly_table = (void *) xmalloc (cache_novlys * sizeof (*cache_ovly_table));
2839 if (cache_ovly_table != NULL)
2840 {
2841 msym = lookup_minimal_symbol ("_ovly_table", 0, 0);
2842 if (msym != NULL)
2843 {
2844 cache_ovly_table_base = SYMBOL_VALUE_ADDRESS (msym);
2845 read_target_long_array (cache_ovly_table_base,
2846 (int *) cache_ovly_table,
2847 cache_novlys * 4);
2848 }
2849 else
2850 return 0; /* failure */
2851 }
2852 else
2853 return 0; /* failure */
2854 return 1; /* SUCCESS */
2855 }
2856
2857 #if 0
2858 /* Find and grab a copy of the target _ovly_region_table
2859 (and _novly_regions, which is needed for the table's size) */
2860 static int
2861 simple_read_overlay_region_table ()
2862 {
2863 struct minimal_symbol *msym;
2864
2865 simple_free_overlay_region_table ();
2866 msym = lookup_minimal_symbol ("_novly_regions", 0, 0);
2867 if (msym != NULL)
2868 cache_novly_regions = read_memory_integer (SYMBOL_VALUE_ADDRESS (msym), 4);
2869 else
2870 return 0; /* failure */
2871 cache_ovly_region_table = (void *) xmalloc (cache_novly_regions * 12);
2872 if (cache_ovly_region_table != NULL)
2873 {
2874 msym = lookup_minimal_symbol ("_ovly_region_table", 0, 0);
2875 if (msym != NULL)
2876 {
2877 cache_ovly_region_table_base = SYMBOL_VALUE_ADDRESS (msym);
2878 read_target_long_array (cache_ovly_region_table_base,
2879 (int *) cache_ovly_region_table,
2880 cache_novly_regions * 3);
2881 }
2882 else
2883 return 0; /* failure */
2884 }
2885 else
2886 return 0; /* failure */
2887 return 1; /* SUCCESS */
2888 }
2889 #endif
2890
2891 /* Function: simple_overlay_update_1
2892 A helper function for simple_overlay_update. Assuming a cached copy
2893 of _ovly_table exists, look through it to find an entry whose vma,
2894 lma and size match those of OSECT. Re-read the entry and make sure
2895 it still matches OSECT (else the table may no longer be valid).
2896 Set OSECT's mapped state to match the entry. Return: 1 for
2897 success, 0 for failure. */
2898
2899 static int
2900 simple_overlay_update_1 (osect)
2901 struct obj_section *osect;
2902 {
2903 int i, size;
2904
2905 size = bfd_get_section_size_before_reloc (osect->the_bfd_section);
2906 for (i = 0; i < cache_novlys; i++)
2907 if (cache_ovly_table[i][VMA] == osect->the_bfd_section->vma &&
2908 cache_ovly_table[i][LMA] == osect->the_bfd_section->lma /* &&
2909 cache_ovly_table[i][SIZE] == size */ )
2910 {
2911 read_target_long_array (cache_ovly_table_base + i * TARGET_LONG_BYTES,
2912 (int *) cache_ovly_table[i], 4);
2913 if (cache_ovly_table[i][VMA] == osect->the_bfd_section->vma &&
2914 cache_ovly_table[i][LMA] == osect->the_bfd_section->lma /* &&
2915 cache_ovly_table[i][SIZE] == size */ )
2916 {
2917 osect->ovly_mapped = cache_ovly_table[i][MAPPED];
2918 return 1;
2919 }
2920 else /* Warning! Warning! Target's ovly table has changed! */
2921 return 0;
2922 }
2923 return 0;
2924 }
2925
2926 /* Function: simple_overlay_update
2927 If OSECT is NULL, then update all sections' mapped state
2928 (after re-reading the entire target _ovly_table).
2929 If OSECT is non-NULL, then try to find a matching entry in the
2930 cached ovly_table and update only OSECT's mapped state.
2931 If a cached entry can't be found or the cache isn't valid, then
2932 re-read the entire cache, and go ahead and update all sections. */
2933
2934 static void
2935 simple_overlay_update (osect)
2936 struct obj_section *osect;
2937 {
2938 struct objfile *objfile;
2939
2940 /* Were we given an osect to look up? NULL means do all of them. */
2941 if (osect)
2942 /* Have we got a cached copy of the target's overlay table? */
2943 if (cache_ovly_table != NULL)
2944 /* Does its cached location match what's currently in the symtab? */
2945 if (cache_ovly_table_base ==
2946 SYMBOL_VALUE_ADDRESS (lookup_minimal_symbol ("_ovly_table", 0, 0)))
2947 /* Then go ahead and try to look up this single section in the cache */
2948 if (simple_overlay_update_1 (osect))
2949 /* Found it! We're done. */
2950 return;
2951
2952 /* Cached table no good: need to read the entire table anew.
2953 Or else we want all the sections, in which case it's actually
2954 more efficient to read the whole table in one block anyway. */
2955
2956 if (simple_read_overlay_table () == 0) /* read failed? No table? */
2957 {
2958 warning ("Failed to read the target overlay mapping table.");
2959 return;
2960 }
2961 /* Now may as well update all sections, even if only one was requested. */
2962 ALL_OBJSECTIONS (objfile, osect)
2963 if (section_is_overlay (osect->the_bfd_section))
2964 {
2965 int i, size;
2966
2967 size = bfd_get_section_size_before_reloc (osect->the_bfd_section);
2968 for (i = 0; i < cache_novlys; i++)
2969 if (cache_ovly_table[i][VMA] == osect->the_bfd_section->vma &&
2970 cache_ovly_table[i][LMA] == osect->the_bfd_section->lma /* &&
2971 cache_ovly_table[i][SIZE] == size */ )
2972 { /* obj_section matches i'th entry in ovly_table */
2973 osect->ovly_mapped = cache_ovly_table[i][MAPPED];
2974 break; /* finished with inner for loop: break out */
2975 }
2976 }
2977 }
2978
2979
2980 void
2981 _initialize_symfile ()
2982 {
2983 struct cmd_list_element *c;
2984
2985 c = add_cmd ("symbol-file", class_files, symbol_file_command,
2986 "Load symbol table from executable file FILE.\n\
2987 The `file' command can also load symbol tables, as well as setting the file\n\
2988 to execute.", &cmdlist);
2989 c->completer = filename_completer;
2990
2991 c = add_cmd ("add-symbol-file", class_files, add_symbol_file_command,
2992 "Usage: add-symbol-file FILE ADDR\n\
2993 Load the symbols from FILE, assuming FILE has been dynamically loaded.\n\
2994 ADDR is the starting address of the file's text.",
2995 &cmdlist);
2996 c->completer = filename_completer;
2997
2998 c = add_cmd ("add-shared-symbol-files", class_files,
2999 add_shared_symbol_files_command,
3000 "Load the symbols from shared objects in the dynamic linker's link map.",
3001 &cmdlist);
3002 c = add_alias_cmd ("assf", "add-shared-symbol-files", class_files, 1,
3003 &cmdlist);
3004
3005 c = add_cmd ("load", class_files, load_command,
3006 "Dynamically load FILE into the running program, and record its symbols\n\
3007 for access from GDB.", &cmdlist);
3008 c->completer = filename_completer;
3009
3010 add_show_from_set
3011 (add_set_cmd ("symbol-reloading", class_support, var_boolean,
3012 (char *) &symbol_reloading,
3013 "Set dynamic symbol table reloading multiple times in one run.",
3014 &setlist),
3015 &showlist);
3016
3017 add_prefix_cmd ("overlay", class_support, overlay_command,
3018 "Commands for debugging overlays.", &overlaylist,
3019 "overlay ", 0, &cmdlist);
3020
3021 add_com_alias ("ovly", "overlay", class_alias, 1);
3022 add_com_alias ("ov", "overlay", class_alias, 1);
3023
3024 add_cmd ("map-overlay", class_support, map_overlay_command,
3025 "Assert that an overlay section is mapped.", &overlaylist);
3026
3027 add_cmd ("unmap-overlay", class_support, unmap_overlay_command,
3028 "Assert that an overlay section is unmapped.", &overlaylist);
3029
3030 add_cmd ("list-overlays", class_support, list_overlays_command,
3031 "List mappings of overlay sections.", &overlaylist);
3032
3033 add_cmd ("manual", class_support, overlay_manual_command,
3034 "Enable overlay debugging.", &overlaylist);
3035 add_cmd ("off", class_support, overlay_off_command,
3036 "Disable overlay debugging.", &overlaylist);
3037 add_cmd ("auto", class_support, overlay_auto_command,
3038 "Enable automatic overlay debugging.", &overlaylist);
3039 add_cmd ("load-target", class_support, overlay_load_command,
3040 "Read the overlay mapping state from the target.", &overlaylist);
3041
3042 /* Filename extension to source language lookup table: */
3043 init_filename_language_table ();
3044 c = add_set_cmd ("extension-language", class_files, var_string_noescape,
3045 (char *) &ext_args,
3046 "Set mapping between filename extension and source language.\n\
3047 Usage: set extension-language .foo bar",
3048 &setlist);
3049 c->function.cfunc = set_ext_lang_command;
3050
3051 add_info ("extensions", info_ext_lang_command,
3052 "All filename extensions associated with a source language.");
3053 }