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