1 /* Generic symbol file reading for the GNU debugger, GDB.
3 Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
4 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006
5 Free Software Foundation, Inc.
7 Contributed by Cygnus Support, using pieces from other GDB modules.
9 This file is part of GDB.
11 This program is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 2 of the License, or
14 (at your option) any later version.
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
21 You should have received a copy of the GNU General Public License
22 along with this program; if not, write to the Free Software
23 Foundation, Inc., 51 Franklin Street, Fifth Floor,
24 Boston, MA 02110-1301, USA. */
38 #include "breakpoint.h"
40 #include "complaints.h"
42 #include "inferior.h" /* for write_pc */
43 #include "filenames.h" /* for DOSish file names */
44 #include "gdb-stabs.h"
45 #include "gdb_obstack.h"
46 #include "completer.h"
49 #include "readline/readline.h"
50 #include "gdb_assert.h"
54 #include "parser-defs.h"
56 #include <sys/types.h>
58 #include "gdb_string.h"
65 int (*deprecated_ui_load_progress_hook
) (const char *section
, unsigned long num
);
66 void (*deprecated_show_load_progress
) (const char *section
,
67 unsigned long section_sent
,
68 unsigned long section_size
,
69 unsigned long total_sent
,
70 unsigned long total_size
);
71 void (*deprecated_pre_add_symbol_hook
) (const char *);
72 void (*deprecated_post_add_symbol_hook
) (void);
73 void (*deprecated_target_new_objfile_hook
) (struct objfile
*);
75 static void clear_symtab_users_cleanup (void *ignore
);
77 /* Global variables owned by this file */
78 int readnow_symbol_files
; /* Read full symbols immediately */
80 /* External variables and functions referenced. */
82 extern void report_transfer_performance (unsigned long, time_t, time_t);
84 /* Functions this file defines */
87 static int simple_read_overlay_region_table (void);
88 static void simple_free_overlay_region_table (void);
91 static void set_initial_language (void);
93 static void load_command (char *, int);
95 static void symbol_file_add_main_1 (char *args
, int from_tty
, int flags
);
97 static void add_symbol_file_command (char *, int);
99 static void add_shared_symbol_files_command (char *, int);
101 static void reread_separate_symbols (struct objfile
*objfile
);
103 static void cashier_psymtab (struct partial_symtab
*);
105 bfd
*symfile_bfd_open (char *);
107 int get_section_index (struct objfile
*, char *);
109 static void find_sym_fns (struct objfile
*);
111 static void decrement_reading_symtab (void *);
113 static void overlay_invalidate_all (void);
115 static int overlay_is_mapped (struct obj_section
*);
117 void list_overlays_command (char *, int);
119 void map_overlay_command (char *, int);
121 void unmap_overlay_command (char *, int);
123 static void overlay_auto_command (char *, int);
125 static void overlay_manual_command (char *, int);
127 static void overlay_off_command (char *, int);
129 static void overlay_load_command (char *, int);
131 static void overlay_command (char *, int);
133 static void simple_free_overlay_table (void);
135 static void read_target_long_array (CORE_ADDR
, unsigned int *, int);
137 static int simple_read_overlay_table (void);
139 static int simple_overlay_update_1 (struct obj_section
*);
141 static void add_filename_language (char *ext
, enum language lang
);
143 static void info_ext_lang_command (char *args
, int from_tty
);
145 static char *find_separate_debug_file (struct objfile
*objfile
);
147 static void init_filename_language_table (void);
149 void _initialize_symfile (void);
151 /* List of all available sym_fns. On gdb startup, each object file reader
152 calls add_symtab_fns() to register information on each format it is
155 static struct sym_fns
*symtab_fns
= NULL
;
157 /* Flag for whether user will be reloading symbols multiple times.
158 Defaults to ON for VxWorks, otherwise OFF. */
160 #ifdef SYMBOL_RELOADING_DEFAULT
161 int symbol_reloading
= SYMBOL_RELOADING_DEFAULT
;
163 int symbol_reloading
= 0;
166 show_symbol_reloading (struct ui_file
*file
, int from_tty
,
167 struct cmd_list_element
*c
, const char *value
)
169 fprintf_filtered (file
, _("\
170 Dynamic symbol table reloading multiple times in one run is %s.\n"),
175 /* If non-zero, shared library symbols will be added automatically
176 when the inferior is created, new libraries are loaded, or when
177 attaching to the inferior. This is almost always what users will
178 want to have happen; but for very large programs, the startup time
179 will be excessive, and so if this is a problem, the user can clear
180 this flag and then add the shared library symbols as needed. Note
181 that there is a potential for confusion, since if the shared
182 library symbols are not loaded, commands like "info fun" will *not*
183 report all the functions that are actually present. */
185 int auto_solib_add
= 1;
187 /* For systems that support it, a threshold size in megabytes. If
188 automatically adding a new library's symbol table to those already
189 known to the debugger would cause the total shared library symbol
190 size to exceed this threshhold, then the shlib's symbols are not
191 added. The threshold is ignored if the user explicitly asks for a
192 shlib to be added, such as when using the "sharedlibrary"
195 int auto_solib_limit
;
198 /* This compares two partial symbols by names, using strcmp_iw_ordered
199 for the comparison. */
202 compare_psymbols (const void *s1p
, const void *s2p
)
204 struct partial_symbol
*const *s1
= s1p
;
205 struct partial_symbol
*const *s2
= s2p
;
207 return strcmp_iw_ordered (SYMBOL_SEARCH_NAME (*s1
),
208 SYMBOL_SEARCH_NAME (*s2
));
212 sort_pst_symbols (struct partial_symtab
*pst
)
214 /* Sort the global list; don't sort the static list */
216 qsort (pst
->objfile
->global_psymbols
.list
+ pst
->globals_offset
,
217 pst
->n_global_syms
, sizeof (struct partial_symbol
*),
221 /* Make a null terminated copy of the string at PTR with SIZE characters in
222 the obstack pointed to by OBSTACKP . Returns the address of the copy.
223 Note that the string at PTR does not have to be null terminated, I.E. it
224 may be part of a larger string and we are only saving a substring. */
227 obsavestring (const char *ptr
, int size
, struct obstack
*obstackp
)
229 char *p
= (char *) obstack_alloc (obstackp
, size
+ 1);
230 /* Open-coded memcpy--saves function call time. These strings are usually
231 short. FIXME: Is this really still true with a compiler that can
234 const char *p1
= ptr
;
236 const char *end
= ptr
+ size
;
244 /* Concatenate strings S1, S2 and S3; return the new string. Space is found
245 in the obstack pointed to by OBSTACKP. */
248 obconcat (struct obstack
*obstackp
, const char *s1
, const char *s2
,
251 int len
= strlen (s1
) + strlen (s2
) + strlen (s3
) + 1;
252 char *val
= (char *) obstack_alloc (obstackp
, len
);
259 /* True if we are nested inside psymtab_to_symtab. */
261 int currently_reading_symtab
= 0;
264 decrement_reading_symtab (void *dummy
)
266 currently_reading_symtab
--;
269 /* Get the symbol table that corresponds to a partial_symtab.
270 This is fast after the first time you do it. In fact, there
271 is an even faster macro PSYMTAB_TO_SYMTAB that does the fast
275 psymtab_to_symtab (struct partial_symtab
*pst
)
277 /* If it's been looked up before, return it. */
281 /* If it has not yet been read in, read it. */
284 struct cleanup
*back_to
= make_cleanup (decrement_reading_symtab
, NULL
);
285 currently_reading_symtab
++;
286 (*pst
->read_symtab
) (pst
);
287 do_cleanups (back_to
);
293 /* Remember the lowest-addressed loadable section we've seen.
294 This function is called via bfd_map_over_sections.
296 In case of equal vmas, the section with the largest size becomes the
297 lowest-addressed loadable section.
299 If the vmas and sizes are equal, the last section is considered the
300 lowest-addressed loadable section. */
303 find_lowest_section (bfd
*abfd
, asection
*sect
, void *obj
)
305 asection
**lowest
= (asection
**) obj
;
307 if (0 == (bfd_get_section_flags (abfd
, sect
) & SEC_LOAD
))
310 *lowest
= sect
; /* First loadable section */
311 else if (bfd_section_vma (abfd
, *lowest
) > bfd_section_vma (abfd
, sect
))
312 *lowest
= sect
; /* A lower loadable section */
313 else if (bfd_section_vma (abfd
, *lowest
) == bfd_section_vma (abfd
, sect
)
314 && (bfd_section_size (abfd
, (*lowest
))
315 <= bfd_section_size (abfd
, sect
)))
319 /* Create a new section_addr_info, with room for NUM_SECTIONS. */
321 struct section_addr_info
*
322 alloc_section_addr_info (size_t num_sections
)
324 struct section_addr_info
*sap
;
327 size
= (sizeof (struct section_addr_info
)
328 + sizeof (struct other_sections
) * (num_sections
- 1));
329 sap
= (struct section_addr_info
*) xmalloc (size
);
330 memset (sap
, 0, size
);
331 sap
->num_sections
= num_sections
;
337 /* Return a freshly allocated copy of ADDRS. The section names, if
338 any, are also freshly allocated copies of those in ADDRS. */
339 struct section_addr_info
*
340 copy_section_addr_info (struct section_addr_info
*addrs
)
342 struct section_addr_info
*copy
343 = alloc_section_addr_info (addrs
->num_sections
);
346 copy
->num_sections
= addrs
->num_sections
;
347 for (i
= 0; i
< addrs
->num_sections
; i
++)
349 copy
->other
[i
].addr
= addrs
->other
[i
].addr
;
350 if (addrs
->other
[i
].name
)
351 copy
->other
[i
].name
= xstrdup (addrs
->other
[i
].name
);
353 copy
->other
[i
].name
= NULL
;
354 copy
->other
[i
].sectindex
= addrs
->other
[i
].sectindex
;
362 /* Build (allocate and populate) a section_addr_info struct from
363 an existing section table. */
365 extern struct section_addr_info
*
366 build_section_addr_info_from_section_table (const struct section_table
*start
,
367 const struct section_table
*end
)
369 struct section_addr_info
*sap
;
370 const struct section_table
*stp
;
373 sap
= alloc_section_addr_info (end
- start
);
375 for (stp
= start
, oidx
= 0; stp
!= end
; stp
++)
377 if (bfd_get_section_flags (stp
->bfd
,
378 stp
->the_bfd_section
) & (SEC_ALLOC
| SEC_LOAD
)
379 && oidx
< end
- start
)
381 sap
->other
[oidx
].addr
= stp
->addr
;
382 sap
->other
[oidx
].name
383 = xstrdup (bfd_section_name (stp
->bfd
, stp
->the_bfd_section
));
384 sap
->other
[oidx
].sectindex
= stp
->the_bfd_section
->index
;
393 /* Free all memory allocated by build_section_addr_info_from_section_table. */
396 free_section_addr_info (struct section_addr_info
*sap
)
400 for (idx
= 0; idx
< sap
->num_sections
; idx
++)
401 if (sap
->other
[idx
].name
)
402 xfree (sap
->other
[idx
].name
);
407 /* Initialize OBJFILE's sect_index_* members. */
409 init_objfile_sect_indices (struct objfile
*objfile
)
414 sect
= bfd_get_section_by_name (objfile
->obfd
, ".text");
416 objfile
->sect_index_text
= sect
->index
;
418 sect
= bfd_get_section_by_name (objfile
->obfd
, ".data");
420 objfile
->sect_index_data
= sect
->index
;
422 sect
= bfd_get_section_by_name (objfile
->obfd
, ".bss");
424 objfile
->sect_index_bss
= sect
->index
;
426 sect
= bfd_get_section_by_name (objfile
->obfd
, ".rodata");
428 objfile
->sect_index_rodata
= sect
->index
;
430 /* This is where things get really weird... We MUST have valid
431 indices for the various sect_index_* members or gdb will abort.
432 So if for example, there is no ".text" section, we have to
433 accomodate that. Except when explicitly adding symbol files at
434 some address, section_offsets contains nothing but zeros, so it
435 doesn't matter which slot in section_offsets the individual
436 sect_index_* members index into. So if they are all zero, it is
437 safe to just point all the currently uninitialized indices to the
440 for (i
= 0; i
< objfile
->num_sections
; i
++)
442 if (ANOFFSET (objfile
->section_offsets
, i
) != 0)
447 if (i
== objfile
->num_sections
)
449 if (objfile
->sect_index_text
== -1)
450 objfile
->sect_index_text
= 0;
451 if (objfile
->sect_index_data
== -1)
452 objfile
->sect_index_data
= 0;
453 if (objfile
->sect_index_bss
== -1)
454 objfile
->sect_index_bss
= 0;
455 if (objfile
->sect_index_rodata
== -1)
456 objfile
->sect_index_rodata
= 0;
460 /* The arguments to place_section. */
462 struct place_section_arg
464 struct section_offsets
*offsets
;
468 /* Find a unique offset to use for loadable section SECT if
469 the user did not provide an offset. */
472 place_section (bfd
*abfd
, asection
*sect
, void *obj
)
474 struct place_section_arg
*arg
= obj
;
475 CORE_ADDR
*offsets
= arg
->offsets
->offsets
, start_addr
;
477 ULONGEST align
= ((ULONGEST
) 1) << bfd_get_section_alignment (abfd
, sect
);
479 /* We are only interested in loadable sections. */
480 if ((bfd_get_section_flags (abfd
, sect
) & SEC_LOAD
) == 0)
483 /* If the user specified an offset, honor it. */
484 if (offsets
[sect
->index
] != 0)
487 /* Otherwise, let's try to find a place for the section. */
488 start_addr
= (arg
->lowest
+ align
- 1) & -align
;
495 for (cur_sec
= abfd
->sections
; cur_sec
!= NULL
; cur_sec
= cur_sec
->next
)
497 int indx
= cur_sec
->index
;
498 CORE_ADDR cur_offset
;
500 /* We don't need to compare against ourself. */
504 /* We can only conflict with loadable sections. */
505 if ((bfd_get_section_flags (abfd
, cur_sec
) & SEC_LOAD
) == 0)
508 /* We do not expect this to happen; just ignore sections in a
509 relocatable file with an assigned VMA. */
510 if (bfd_section_vma (abfd
, cur_sec
) != 0)
513 /* If the section offset is 0, either the section has not been placed
514 yet, or it was the lowest section placed (in which case LOWEST
515 will be past its end). */
516 if (offsets
[indx
] == 0)
519 /* If this section would overlap us, then we must move up. */
520 if (start_addr
+ bfd_get_section_size (sect
) > offsets
[indx
]
521 && start_addr
< offsets
[indx
] + bfd_get_section_size (cur_sec
))
523 start_addr
= offsets
[indx
] + bfd_get_section_size (cur_sec
);
524 start_addr
= (start_addr
+ align
- 1) & -align
;
529 /* Otherwise, we appear to be OK. So far. */
534 offsets
[sect
->index
] = start_addr
;
535 arg
->lowest
= start_addr
+ bfd_get_section_size (sect
);
537 exec_set_section_address (bfd_get_filename (abfd
), sect
->index
, start_addr
);
540 /* Parse the user's idea of an offset for dynamic linking, into our idea
541 of how to represent it for fast symbol reading. This is the default
542 version of the sym_fns.sym_offsets function for symbol readers that
543 don't need to do anything special. It allocates a section_offsets table
544 for the objectfile OBJFILE and stuffs ADDR into all of the offsets. */
547 default_symfile_offsets (struct objfile
*objfile
,
548 struct section_addr_info
*addrs
)
552 objfile
->num_sections
= bfd_count_sections (objfile
->obfd
);
553 objfile
->section_offsets
= (struct section_offsets
*)
554 obstack_alloc (&objfile
->objfile_obstack
,
555 SIZEOF_N_SECTION_OFFSETS (objfile
->num_sections
));
556 memset (objfile
->section_offsets
, 0,
557 SIZEOF_N_SECTION_OFFSETS (objfile
->num_sections
));
559 /* Now calculate offsets for section that were specified by the
561 for (i
= 0; i
< addrs
->num_sections
&& addrs
->other
[i
].name
; i
++)
563 struct other_sections
*osp
;
565 osp
= &addrs
->other
[i
] ;
569 /* Record all sections in offsets */
570 /* The section_offsets in the objfile are here filled in using
572 (objfile
->section_offsets
)->offsets
[osp
->sectindex
] = osp
->addr
;
575 /* For relocatable files, all loadable sections will start at zero.
576 The zero is meaningless, so try to pick arbitrary addresses such
577 that no loadable sections overlap. This algorithm is quadratic,
578 but the number of sections in a single object file is generally
580 if ((bfd_get_file_flags (objfile
->obfd
) & (EXEC_P
| DYNAMIC
)) == 0)
582 struct place_section_arg arg
;
583 arg
.offsets
= objfile
->section_offsets
;
585 bfd_map_over_sections (objfile
->obfd
, place_section
, &arg
);
588 /* Remember the bfd indexes for the .text, .data, .bss and
590 init_objfile_sect_indices (objfile
);
594 /* Process a symbol file, as either the main file or as a dynamically
597 OBJFILE is where the symbols are to be read from.
599 ADDRS is the list of section load addresses. If the user has given
600 an 'add-symbol-file' command, then this is the list of offsets and
601 addresses he or she provided as arguments to the command; or, if
602 we're handling a shared library, these are the actual addresses the
603 sections are loaded at, according to the inferior's dynamic linker
604 (as gleaned by GDB's shared library code). We convert each address
605 into an offset from the section VMA's as it appears in the object
606 file, and then call the file's sym_offsets function to convert this
607 into a format-specific offset table --- a `struct section_offsets'.
608 If ADDRS is non-zero, OFFSETS must be zero.
610 OFFSETS is a table of section offsets already in the right
611 format-specific representation. NUM_OFFSETS is the number of
612 elements present in OFFSETS->offsets. If OFFSETS is non-zero, we
613 assume this is the proper table the call to sym_offsets described
614 above would produce. Instead of calling sym_offsets, we just dump
615 it right into objfile->section_offsets. (When we're re-reading
616 symbols from an objfile, we don't have the original load address
617 list any more; all we have is the section offset table.) If
618 OFFSETS is non-zero, ADDRS must be zero.
620 MAINLINE is nonzero if this is the main symbol file, or zero if
621 it's an extra symbol file such as dynamically loaded code.
623 VERBO is nonzero if the caller has printed a verbose message about
624 the symbol reading (and complaints can be more terse about it). */
627 syms_from_objfile (struct objfile
*objfile
,
628 struct section_addr_info
*addrs
,
629 struct section_offsets
*offsets
,
634 struct section_addr_info
*local_addr
= NULL
;
635 struct cleanup
*old_chain
;
637 gdb_assert (! (addrs
&& offsets
));
639 init_entry_point_info (objfile
);
640 find_sym_fns (objfile
);
642 if (objfile
->sf
== NULL
)
643 return; /* No symbols. */
645 /* Make sure that partially constructed symbol tables will be cleaned up
646 if an error occurs during symbol reading. */
647 old_chain
= make_cleanup_free_objfile (objfile
);
649 /* If ADDRS and OFFSETS are both NULL, put together a dummy address
650 list. We now establish the convention that an addr of zero means
651 no load address was specified. */
652 if (! addrs
&& ! offsets
)
655 = alloc_section_addr_info (bfd_count_sections (objfile
->obfd
));
656 make_cleanup (xfree
, local_addr
);
660 /* Now either addrs or offsets is non-zero. */
664 /* We will modify the main symbol table, make sure that all its users
665 will be cleaned up if an error occurs during symbol reading. */
666 make_cleanup (clear_symtab_users_cleanup
, 0 /*ignore*/);
668 /* Since no error yet, throw away the old symbol table. */
670 if (symfile_objfile
!= NULL
)
672 free_objfile (symfile_objfile
);
673 symfile_objfile
= NULL
;
676 /* Currently we keep symbols from the add-symbol-file command.
677 If the user wants to get rid of them, they should do "symbol-file"
678 without arguments first. Not sure this is the best behavior
681 (*objfile
->sf
->sym_new_init
) (objfile
);
684 /* Convert addr into an offset rather than an absolute address.
685 We find the lowest address of a loaded segment in the objfile,
686 and assume that <addr> is where that got loaded.
688 We no longer warn if the lowest section is not a text segment (as
689 happens for the PA64 port. */
690 if (!mainline
&& addrs
&& addrs
->other
[0].name
)
692 asection
*lower_sect
;
694 CORE_ADDR lower_offset
;
697 /* Find lowest loadable section to be used as starting point for
698 continguous sections. FIXME!! won't work without call to find
699 .text first, but this assumes text is lowest section. */
700 lower_sect
= bfd_get_section_by_name (objfile
->obfd
, ".text");
701 if (lower_sect
== NULL
)
702 bfd_map_over_sections (objfile
->obfd
, find_lowest_section
,
704 if (lower_sect
== NULL
)
705 warning (_("no loadable sections found in added symbol-file %s"),
708 if ((bfd_get_section_flags (objfile
->obfd
, lower_sect
) & SEC_CODE
) == 0)
709 warning (_("Lowest section in %s is %s at %s"),
711 bfd_section_name (objfile
->obfd
, lower_sect
),
712 paddr (bfd_section_vma (objfile
->obfd
, lower_sect
)));
713 if (lower_sect
!= NULL
)
714 lower_offset
= bfd_section_vma (objfile
->obfd
, lower_sect
);
718 /* Calculate offsets for the loadable sections.
719 FIXME! Sections must be in order of increasing loadable section
720 so that contiguous sections can use the lower-offset!!!
722 Adjust offsets if the segments are not contiguous.
723 If the section is contiguous, its offset should be set to
724 the offset of the highest loadable section lower than it
725 (the loadable section directly below it in memory).
726 this_offset = lower_offset = lower_addr - lower_orig_addr */
728 for (i
= 0; i
< addrs
->num_sections
&& addrs
->other
[i
].name
; i
++)
730 if (addrs
->other
[i
].addr
!= 0)
732 sect
= bfd_get_section_by_name (objfile
->obfd
,
733 addrs
->other
[i
].name
);
737 -= bfd_section_vma (objfile
->obfd
, sect
);
738 lower_offset
= addrs
->other
[i
].addr
;
739 /* This is the index used by BFD. */
740 addrs
->other
[i
].sectindex
= sect
->index
;
744 warning (_("section %s not found in %s"),
745 addrs
->other
[i
].name
,
747 addrs
->other
[i
].addr
= 0;
751 addrs
->other
[i
].addr
= lower_offset
;
755 /* Initialize symbol reading routines for this objfile, allow complaints to
756 appear for this new file, and record how verbose to be, then do the
757 initial symbol reading for this file. */
759 (*objfile
->sf
->sym_init
) (objfile
);
760 clear_complaints (&symfile_complaints
, 1, verbo
);
763 (*objfile
->sf
->sym_offsets
) (objfile
, addrs
);
766 size_t size
= SIZEOF_N_SECTION_OFFSETS (num_offsets
);
768 /* Just copy in the offset table directly as given to us. */
769 objfile
->num_sections
= num_offsets
;
770 objfile
->section_offsets
771 = ((struct section_offsets
*)
772 obstack_alloc (&objfile
->objfile_obstack
, size
));
773 memcpy (objfile
->section_offsets
, offsets
, size
);
775 init_objfile_sect_indices (objfile
);
778 #ifndef DEPRECATED_IBM6000_TARGET
779 /* This is a SVR4/SunOS specific hack, I think. In any event, it
780 screws RS/6000. sym_offsets should be doing this sort of thing,
781 because it knows the mapping between bfd sections and
783 /* This is a hack. As far as I can tell, section offsets are not
784 target dependent. They are all set to addr with a couple of
785 exceptions. The exceptions are sysvr4 shared libraries, whose
786 offsets are kept in solib structures anyway and rs6000 xcoff
787 which handles shared libraries in a completely unique way.
789 Section offsets are built similarly, except that they are built
790 by adding addr in all cases because there is no clear mapping
791 from section_offsets into actual sections. Note that solib.c
792 has a different algorithm for finding section offsets.
794 These should probably all be collapsed into some target
795 independent form of shared library support. FIXME. */
799 struct obj_section
*s
;
801 /* Map section offsets in "addr" back to the object's
802 sections by comparing the section names with bfd's
803 section names. Then adjust the section address by
804 the offset. */ /* for gdb/13815 */
806 ALL_OBJFILE_OSECTIONS (objfile
, s
)
808 CORE_ADDR s_addr
= 0;
812 !s_addr
&& i
< addrs
->num_sections
&& addrs
->other
[i
].name
;
814 if (strcmp (bfd_section_name (s
->objfile
->obfd
,
816 addrs
->other
[i
].name
) == 0)
817 s_addr
= addrs
->other
[i
].addr
; /* end added for gdb/13815 */
819 s
->addr
-= s
->offset
;
821 s
->endaddr
-= s
->offset
;
822 s
->endaddr
+= s_addr
;
826 #endif /* not DEPRECATED_IBM6000_TARGET */
828 (*objfile
->sf
->sym_read
) (objfile
, mainline
);
830 /* Don't allow char * to have a typename (else would get caddr_t).
831 Ditto void *. FIXME: Check whether this is now done by all the
832 symbol readers themselves (many of them now do), and if so remove
835 TYPE_NAME (lookup_pointer_type (builtin_type_char
)) = 0;
836 TYPE_NAME (lookup_pointer_type (builtin_type_void
)) = 0;
838 /* Mark the objfile has having had initial symbol read attempted. Note
839 that this does not mean we found any symbols... */
841 objfile
->flags
|= OBJF_SYMS
;
843 /* Discard cleanups as symbol reading was successful. */
845 discard_cleanups (old_chain
);
848 /* Perform required actions after either reading in the initial
849 symbols for a new objfile, or mapping in the symbols from a reusable
853 new_symfile_objfile (struct objfile
*objfile
, int mainline
, int verbo
)
856 /* If this is the main symbol file we have to clean up all users of the
857 old main symbol file. Otherwise it is sufficient to fixup all the
858 breakpoints that may have been redefined by this symbol file. */
861 /* OK, make it the "real" symbol file. */
862 symfile_objfile
= objfile
;
864 clear_symtab_users ();
868 breakpoint_re_set ();
871 /* We're done reading the symbol file; finish off complaints. */
872 clear_complaints (&symfile_complaints
, 0, verbo
);
875 /* Process a symbol file, as either the main file or as a dynamically
878 ABFD is a BFD already open on the file, as from symfile_bfd_open.
879 This BFD will be closed on error, and is always consumed by this function.
881 FROM_TTY says how verbose to be.
883 MAINLINE specifies whether this is the main symbol file, or whether
884 it's an extra symbol file such as dynamically loaded code.
886 ADDRS, OFFSETS, and NUM_OFFSETS are as described for
887 syms_from_objfile, above. ADDRS is ignored when MAINLINE is
890 Upon success, returns a pointer to the objfile that was added.
891 Upon failure, jumps back to command level (never returns). */
892 static struct objfile
*
893 symbol_file_add_with_addrs_or_offsets (bfd
*abfd
, int from_tty
,
894 struct section_addr_info
*addrs
,
895 struct section_offsets
*offsets
,
897 int mainline
, int flags
)
899 struct objfile
*objfile
;
900 struct partial_symtab
*psymtab
;
902 struct section_addr_info
*orig_addrs
= NULL
;
903 struct cleanup
*my_cleanups
;
904 const char *name
= bfd_get_filename (abfd
);
906 my_cleanups
= make_cleanup_bfd_close (abfd
);
908 /* Give user a chance to burp if we'd be
909 interactively wiping out any existing symbols. */
911 if ((have_full_symbols () || have_partial_symbols ())
914 && !query ("Load new symbol table from \"%s\"? ", name
))
915 error (_("Not confirmed."));
917 objfile
= allocate_objfile (abfd
, flags
);
918 discard_cleanups (my_cleanups
);
922 orig_addrs
= copy_section_addr_info (addrs
);
923 make_cleanup_free_section_addr_info (orig_addrs
);
926 /* We either created a new mapped symbol table, mapped an existing
927 symbol table file which has not had initial symbol reading
928 performed, or need to read an unmapped symbol table. */
929 if (from_tty
|| info_verbose
)
931 if (deprecated_pre_add_symbol_hook
)
932 deprecated_pre_add_symbol_hook (name
);
935 printf_unfiltered (_("Reading symbols from %s..."), name
);
937 gdb_flush (gdb_stdout
);
940 syms_from_objfile (objfile
, addrs
, offsets
, num_offsets
,
943 /* We now have at least a partial symbol table. Check to see if the
944 user requested that all symbols be read on initial access via either
945 the gdb startup command line or on a per symbol file basis. Expand
946 all partial symbol tables for this objfile if so. */
948 if ((flags
& OBJF_READNOW
) || readnow_symbol_files
)
950 if (from_tty
|| info_verbose
)
952 printf_unfiltered (_("expanding to full symbols..."));
954 gdb_flush (gdb_stdout
);
957 for (psymtab
= objfile
->psymtabs
;
959 psymtab
= psymtab
->next
)
961 psymtab_to_symtab (psymtab
);
965 debugfile
= find_separate_debug_file (objfile
);
970 objfile
->separate_debug_objfile
971 = symbol_file_add (debugfile
, from_tty
, orig_addrs
, 0, flags
);
975 objfile
->separate_debug_objfile
976 = symbol_file_add (debugfile
, from_tty
, NULL
, 0, flags
);
978 objfile
->separate_debug_objfile
->separate_debug_objfile_backlink
981 /* Put the separate debug object before the normal one, this is so that
982 usage of the ALL_OBJFILES_SAFE macro will stay safe. */
983 put_objfile_before (objfile
->separate_debug_objfile
, objfile
);
988 if (!have_partial_symbols () && !have_full_symbols ())
991 printf_filtered (_("(no debugging symbols found)"));
992 if (from_tty
|| info_verbose
)
993 printf_filtered ("...");
995 printf_filtered ("\n");
999 if (from_tty
|| info_verbose
)
1001 if (deprecated_post_add_symbol_hook
)
1002 deprecated_post_add_symbol_hook ();
1005 printf_unfiltered (_("done.\n"));
1009 /* We print some messages regardless of whether 'from_tty ||
1010 info_verbose' is true, so make sure they go out at the right
1012 gdb_flush (gdb_stdout
);
1014 do_cleanups (my_cleanups
);
1016 if (objfile
->sf
== NULL
)
1017 return objfile
; /* No symbols. */
1019 new_symfile_objfile (objfile
, mainline
, from_tty
);
1021 if (deprecated_target_new_objfile_hook
)
1022 deprecated_target_new_objfile_hook (objfile
);
1024 bfd_cache_close_all ();
1029 /* Process the symbol file ABFD, as either the main file or as a
1030 dynamically loaded file.
1032 See symbol_file_add_with_addrs_or_offsets's comments for
1035 symbol_file_add_from_bfd (bfd
*abfd
, int from_tty
,
1036 struct section_addr_info
*addrs
,
1037 int mainline
, int flags
)
1039 return symbol_file_add_with_addrs_or_offsets (abfd
,
1040 from_tty
, addrs
, 0, 0,
1045 /* Process a symbol file, as either the main file or as a dynamically
1046 loaded file. See symbol_file_add_with_addrs_or_offsets's comments
1049 symbol_file_add (char *name
, int from_tty
, struct section_addr_info
*addrs
,
1050 int mainline
, int flags
)
1052 return symbol_file_add_from_bfd (symfile_bfd_open (name
), from_tty
,
1053 addrs
, mainline
, flags
);
1057 /* Call symbol_file_add() with default values and update whatever is
1058 affected by the loading of a new main().
1059 Used when the file is supplied in the gdb command line
1060 and by some targets with special loading requirements.
1061 The auxiliary function, symbol_file_add_main_1(), has the flags
1062 argument for the switches that can only be specified in the symbol_file
1066 symbol_file_add_main (char *args
, int from_tty
)
1068 symbol_file_add_main_1 (args
, from_tty
, 0);
1072 symbol_file_add_main_1 (char *args
, int from_tty
, int flags
)
1074 symbol_file_add (args
, from_tty
, NULL
, 1, flags
);
1076 /* Getting new symbols may change our opinion about
1077 what is frameless. */
1078 reinit_frame_cache ();
1080 set_initial_language ();
1084 symbol_file_clear (int from_tty
)
1086 if ((have_full_symbols () || have_partial_symbols ())
1089 ? !query (_("Discard symbol table from `%s'? "),
1090 symfile_objfile
->name
)
1091 : !query (_("Discard symbol table? "))))
1092 error (_("Not confirmed."));
1093 free_all_objfiles ();
1095 /* solib descriptors may have handles to objfiles. Since their
1096 storage has just been released, we'd better wipe the solib
1097 descriptors as well.
1099 #if defined(SOLIB_RESTART)
1103 symfile_objfile
= NULL
;
1105 printf_unfiltered (_("No symbol file now.\n"));
1109 get_debug_link_info (struct objfile
*objfile
, unsigned long *crc32_out
)
1112 bfd_size_type debuglink_size
;
1113 unsigned long crc32
;
1118 sect
= bfd_get_section_by_name (objfile
->obfd
, ".gnu_debuglink");
1123 debuglink_size
= bfd_section_size (objfile
->obfd
, sect
);
1125 contents
= xmalloc (debuglink_size
);
1126 bfd_get_section_contents (objfile
->obfd
, sect
, contents
,
1127 (file_ptr
)0, (bfd_size_type
)debuglink_size
);
1129 /* Crc value is stored after the filename, aligned up to 4 bytes. */
1130 crc_offset
= strlen (contents
) + 1;
1131 crc_offset
= (crc_offset
+ 3) & ~3;
1133 crc32
= bfd_get_32 (objfile
->obfd
, (bfd_byte
*) (contents
+ crc_offset
));
1140 separate_debug_file_exists (const char *name
, unsigned long crc
)
1142 unsigned long file_crc
= 0;
1144 gdb_byte buffer
[8*1024];
1147 fd
= open (name
, O_RDONLY
| O_BINARY
);
1151 while ((count
= read (fd
, buffer
, sizeof (buffer
))) > 0)
1152 file_crc
= gnu_debuglink_crc32 (file_crc
, buffer
, count
);
1156 return crc
== file_crc
;
1159 static char *debug_file_directory
= NULL
;
1161 show_debug_file_directory (struct ui_file
*file
, int from_tty
,
1162 struct cmd_list_element
*c
, const char *value
)
1164 fprintf_filtered (file
, _("\
1165 The directory where separate debug symbols are searched for is \"%s\".\n"),
1169 #if ! defined (DEBUG_SUBDIRECTORY)
1170 #define DEBUG_SUBDIRECTORY ".debug"
1174 find_separate_debug_file (struct objfile
*objfile
)
1181 bfd_size_type debuglink_size
;
1182 unsigned long crc32
;
1185 basename
= get_debug_link_info (objfile
, &crc32
);
1187 if (basename
== NULL
)
1190 dir
= xstrdup (objfile
->name
);
1192 /* Strip off the final filename part, leaving the directory name,
1193 followed by a slash. Objfile names should always be absolute and
1194 tilde-expanded, so there should always be a slash in there
1196 for (i
= strlen(dir
) - 1; i
>= 0; i
--)
1198 if (IS_DIR_SEPARATOR (dir
[i
]))
1201 gdb_assert (i
>= 0 && IS_DIR_SEPARATOR (dir
[i
]));
1204 debugfile
= alloca (strlen (debug_file_directory
) + 1
1206 + strlen (DEBUG_SUBDIRECTORY
)
1211 /* First try in the same directory as the original file. */
1212 strcpy (debugfile
, dir
);
1213 strcat (debugfile
, basename
);
1215 if (separate_debug_file_exists (debugfile
, crc32
))
1219 return xstrdup (debugfile
);
1222 /* Then try in the subdirectory named DEBUG_SUBDIRECTORY. */
1223 strcpy (debugfile
, dir
);
1224 strcat (debugfile
, DEBUG_SUBDIRECTORY
);
1225 strcat (debugfile
, "/");
1226 strcat (debugfile
, basename
);
1228 if (separate_debug_file_exists (debugfile
, crc32
))
1232 return xstrdup (debugfile
);
1235 /* Then try in the global debugfile directory. */
1236 strcpy (debugfile
, debug_file_directory
);
1237 strcat (debugfile
, "/");
1238 strcat (debugfile
, dir
);
1239 strcat (debugfile
, basename
);
1241 if (separate_debug_file_exists (debugfile
, crc32
))
1245 return xstrdup (debugfile
);
1254 /* This is the symbol-file command. Read the file, analyze its
1255 symbols, and add a struct symtab to a symtab list. The syntax of
1256 the command is rather bizarre:
1258 1. The function buildargv implements various quoting conventions
1259 which are undocumented and have little or nothing in common with
1260 the way things are quoted (or not quoted) elsewhere in GDB.
1262 2. Options are used, which are not generally used in GDB (perhaps
1263 "set mapped on", "set readnow on" would be better)
1265 3. The order of options matters, which is contrary to GNU
1266 conventions (because it is confusing and inconvenient). */
1269 symbol_file_command (char *args
, int from_tty
)
1275 symbol_file_clear (from_tty
);
1279 char **argv
= buildargv (args
);
1280 int flags
= OBJF_USERLOADED
;
1281 struct cleanup
*cleanups
;
1287 cleanups
= make_cleanup_freeargv (argv
);
1288 while (*argv
!= NULL
)
1290 if (strcmp (*argv
, "-readnow") == 0)
1291 flags
|= OBJF_READNOW
;
1292 else if (**argv
== '-')
1293 error (_("unknown option `%s'"), *argv
);
1296 symbol_file_add_main_1 (*argv
, from_tty
, flags
);
1304 error (_("no symbol file name was specified"));
1306 do_cleanups (cleanups
);
1310 /* Set the initial language.
1312 FIXME: A better solution would be to record the language in the
1313 psymtab when reading partial symbols, and then use it (if known) to
1314 set the language. This would be a win for formats that encode the
1315 language in an easily discoverable place, such as DWARF. For
1316 stabs, we can jump through hoops looking for specially named
1317 symbols or try to intuit the language from the specific type of
1318 stabs we find, but we can't do that until later when we read in
1322 set_initial_language (void)
1324 struct partial_symtab
*pst
;
1325 enum language lang
= language_unknown
;
1327 pst
= find_main_psymtab ();
1330 if (pst
->filename
!= NULL
)
1331 lang
= deduce_language_from_filename (pst
->filename
);
1333 if (lang
== language_unknown
)
1335 /* Make C the default language */
1339 set_language (lang
);
1340 expected_language
= current_language
; /* Don't warn the user. */
1344 /* Open the file specified by NAME and hand it off to BFD for
1345 preliminary analysis. Return a newly initialized bfd *, which
1346 includes a newly malloc'd` copy of NAME (tilde-expanded and made
1347 absolute). In case of trouble, error() is called. */
1350 symfile_bfd_open (char *name
)
1354 char *absolute_name
;
1356 name
= tilde_expand (name
); /* Returns 1st new malloc'd copy. */
1358 /* Look down path for it, allocate 2nd new malloc'd copy. */
1359 desc
= openp (getenv ("PATH"), OPF_TRY_CWD_FIRST
, name
,
1360 O_RDONLY
| O_BINARY
, 0, &absolute_name
);
1361 #if defined(__GO32__) || defined(_WIN32) || defined (__CYGWIN__)
1364 char *exename
= alloca (strlen (name
) + 5);
1365 strcat (strcpy (exename
, name
), ".exe");
1366 desc
= openp (getenv ("PATH"), OPF_TRY_CWD_FIRST
, exename
,
1367 O_RDONLY
| O_BINARY
, 0, &absolute_name
);
1372 make_cleanup (xfree
, name
);
1373 perror_with_name (name
);
1376 /* Free 1st new malloc'd copy, but keep the 2nd malloc'd copy in
1377 bfd. It'll be freed in free_objfile(). */
1379 name
= absolute_name
;
1381 sym_bfd
= bfd_fopen (name
, gnutarget
, FOPEN_RB
, desc
);
1385 make_cleanup (xfree
, name
);
1386 error (_("\"%s\": can't open to read symbols: %s."), name
,
1387 bfd_errmsg (bfd_get_error ()));
1389 bfd_set_cacheable (sym_bfd
, 1);
1391 if (!bfd_check_format (sym_bfd
, bfd_object
))
1393 /* FIXME: should be checking for errors from bfd_close (for one
1394 thing, on error it does not free all the storage associated
1396 bfd_close (sym_bfd
); /* This also closes desc. */
1397 make_cleanup (xfree
, name
);
1398 error (_("\"%s\": can't read symbols: %s."), name
,
1399 bfd_errmsg (bfd_get_error ()));
1405 /* Return the section index for SECTION_NAME on OBJFILE. Return -1 if
1406 the section was not found. */
1409 get_section_index (struct objfile
*objfile
, char *section_name
)
1411 asection
*sect
= bfd_get_section_by_name (objfile
->obfd
, section_name
);
1419 /* Link SF into the global symtab_fns list. Called on startup by the
1420 _initialize routine in each object file format reader, to register
1421 information about each format the the reader is prepared to
1425 add_symtab_fns (struct sym_fns
*sf
)
1427 sf
->next
= symtab_fns
;
1431 /* Initialize OBJFILE to read symbols from its associated BFD. It
1432 either returns or calls error(). The result is an initialized
1433 struct sym_fns in the objfile structure, that contains cached
1434 information about the symbol file. */
1437 find_sym_fns (struct objfile
*objfile
)
1440 enum bfd_flavour our_flavour
= bfd_get_flavour (objfile
->obfd
);
1441 char *our_target
= bfd_get_target (objfile
->obfd
);
1443 if (our_flavour
== bfd_target_srec_flavour
1444 || our_flavour
== bfd_target_ihex_flavour
1445 || our_flavour
== bfd_target_tekhex_flavour
)
1446 return; /* No symbols. */
1448 for (sf
= symtab_fns
; sf
!= NULL
; sf
= sf
->next
)
1450 if (our_flavour
== sf
->sym_flavour
)
1457 error (_("I'm sorry, Dave, I can't do that. Symbol format `%s' unknown."),
1458 bfd_get_target (objfile
->obfd
));
1462 /* This function runs the load command of our current target. */
1465 load_command (char *arg
, int from_tty
)
1472 parg
= arg
= get_exec_file (1);
1474 /* Count how many \ " ' tab space there are in the name. */
1475 while ((parg
= strpbrk (parg
, "\\\"'\t ")))
1483 /* We need to quote this string so buildargv can pull it apart. */
1484 char *temp
= xmalloc (strlen (arg
) + count
+ 1 );
1488 make_cleanup (xfree
, temp
);
1491 while ((parg
= strpbrk (parg
, "\\\"'\t ")))
1493 strncpy (ptemp
, prev
, parg
- prev
);
1494 ptemp
+= parg
- prev
;
1498 strcpy (ptemp
, prev
);
1504 /* The user might be reloading because the binary has changed. Take
1505 this opportunity to check. */
1506 reopen_exec_file ();
1509 target_load (arg
, from_tty
);
1511 /* After re-loading the executable, we don't really know which
1512 overlays are mapped any more. */
1513 overlay_cache_invalid
= 1;
1516 /* This version of "load" should be usable for any target. Currently
1517 it is just used for remote targets, not inftarg.c or core files,
1518 on the theory that only in that case is it useful.
1520 Avoiding xmodem and the like seems like a win (a) because we don't have
1521 to worry about finding it, and (b) On VMS, fork() is very slow and so
1522 we don't want to run a subprocess. On the other hand, I'm not sure how
1523 performance compares. */
1525 static int validate_download
= 0;
1527 /* Callback service function for generic_load (bfd_map_over_sections). */
1530 add_section_size_callback (bfd
*abfd
, asection
*asec
, void *data
)
1532 bfd_size_type
*sum
= data
;
1534 *sum
+= bfd_get_section_size (asec
);
1537 /* Opaque data for load_section_callback. */
1538 struct load_section_data
{
1539 unsigned long load_offset
;
1540 struct load_progress_data
*progress_data
;
1541 VEC(memory_write_request_s
) *requests
;
1544 /* Opaque data for load_progress. */
1545 struct load_progress_data
{
1546 /* Cumulative data. */
1547 unsigned long write_count
;
1548 unsigned long data_count
;
1549 bfd_size_type total_size
;
1552 /* Opaque data for load_progress for a single section. */
1553 struct load_progress_section_data
{
1554 struct load_progress_data
*cumulative
;
1556 /* Per-section data. */
1557 const char *section_name
;
1558 ULONGEST section_sent
;
1559 ULONGEST section_size
;
1564 /* Target write callback routine for progress reporting. */
1567 load_progress (ULONGEST bytes
, void *untyped_arg
)
1569 struct load_progress_section_data
*args
= untyped_arg
;
1570 struct load_progress_data
*totals
;
1573 /* Writing padding data. No easy way to get at the cumulative
1574 stats, so just ignore this. */
1577 totals
= args
->cumulative
;
1579 if (bytes
== 0 && args
->section_sent
== 0)
1581 /* The write is just starting. Let the user know we've started
1583 ui_out_message (uiout
, 0, "Loading section %s, size 0x%s lma 0x%s\n",
1584 args
->section_name
, paddr_nz (args
->section_size
),
1585 paddr_nz (args
->lma
));
1589 if (validate_download
)
1591 /* Broken memories and broken monitors manifest themselves here
1592 when bring new computers to life. This doubles already slow
1594 /* NOTE: cagney/1999-10-18: A more efficient implementation
1595 might add a verify_memory() method to the target vector and
1596 then use that. remote.c could implement that method using
1597 the ``qCRC'' packet. */
1598 gdb_byte
*check
= xmalloc (bytes
);
1599 struct cleanup
*verify_cleanups
= make_cleanup (xfree
, check
);
1601 if (target_read_memory (args
->lma
, check
, bytes
) != 0)
1602 error (_("Download verify read failed at 0x%s"),
1604 if (memcmp (args
->buffer
, check
, bytes
) != 0)
1605 error (_("Download verify compare failed at 0x%s"),
1607 do_cleanups (verify_cleanups
);
1609 totals
->data_count
+= bytes
;
1611 args
->buffer
+= bytes
;
1612 totals
->write_count
+= 1;
1613 args
->section_sent
+= bytes
;
1615 || (deprecated_ui_load_progress_hook
!= NULL
1616 && deprecated_ui_load_progress_hook (args
->section_name
,
1617 args
->section_sent
)))
1618 error (_("Canceled the download"));
1620 if (deprecated_show_load_progress
!= NULL
)
1621 deprecated_show_load_progress (args
->section_name
,
1625 totals
->total_size
);
1628 /* Callback service function for generic_load (bfd_map_over_sections). */
1631 load_section_callback (bfd
*abfd
, asection
*asec
, void *data
)
1633 struct memory_write_request
*new_request
;
1634 struct load_section_data
*args
= data
;
1635 struct load_progress_section_data
*section_data
;
1636 bfd_size_type size
= bfd_get_section_size (asec
);
1638 const char *sect_name
= bfd_get_section_name (abfd
, asec
);
1640 if ((bfd_get_section_flags (abfd
, asec
) & SEC_LOAD
) == 0)
1646 new_request
= VEC_safe_push (memory_write_request_s
,
1647 args
->requests
, NULL
);
1648 memset (new_request
, 0, sizeof (struct memory_write_request
));
1649 section_data
= xcalloc (1, sizeof (struct load_progress_section_data
));
1650 new_request
->begin
= bfd_section_lma (abfd
, asec
) + args
->load_offset
;
1651 new_request
->end
= new_request
->begin
+ size
; /* FIXME Should size be in instead? */
1652 new_request
->data
= xmalloc (size
);
1653 new_request
->baton
= section_data
;
1655 buffer
= new_request
->data
;
1657 section_data
->cumulative
= args
->progress_data
;
1658 section_data
->section_name
= sect_name
;
1659 section_data
->section_size
= size
;
1660 section_data
->lma
= new_request
->begin
;
1661 section_data
->buffer
= buffer
;
1663 bfd_get_section_contents (abfd
, asec
, buffer
, 0, size
);
1666 /* Clean up an entire memory request vector, including load
1667 data and progress records. */
1670 clear_memory_write_data (void *arg
)
1672 VEC(memory_write_request_s
) **vec_p
= arg
;
1673 VEC(memory_write_request_s
) *vec
= *vec_p
;
1675 struct memory_write_request
*mr
;
1677 for (i
= 0; VEC_iterate (memory_write_request_s
, vec
, i
, mr
); ++i
)
1682 VEC_free (memory_write_request_s
, vec
);
1686 generic_load (char *args
, int from_tty
)
1689 struct timeval start_time
, end_time
;
1691 struct cleanup
*old_cleanups
= make_cleanup (null_cleanup
, 0);
1692 struct load_section_data cbdata
;
1693 struct load_progress_data total_progress
;
1698 memset (&cbdata
, 0, sizeof (cbdata
));
1699 memset (&total_progress
, 0, sizeof (total_progress
));
1700 cbdata
.progress_data
= &total_progress
;
1702 make_cleanup (clear_memory_write_data
, &cbdata
.requests
);
1704 argv
= buildargv (args
);
1709 make_cleanup_freeargv (argv
);
1711 filename
= tilde_expand (argv
[0]);
1712 make_cleanup (xfree
, filename
);
1714 if (argv
[1] != NULL
)
1718 cbdata
.load_offset
= strtoul (argv
[1], &endptr
, 0);
1720 /* If the last word was not a valid number then
1721 treat it as a file name with spaces in. */
1722 if (argv
[1] == endptr
)
1723 error (_("Invalid download offset:%s."), argv
[1]);
1725 if (argv
[2] != NULL
)
1726 error (_("Too many parameters."));
1729 /* Open the file for loading. */
1730 loadfile_bfd
= bfd_openr (filename
, gnutarget
);
1731 if (loadfile_bfd
== NULL
)
1733 perror_with_name (filename
);
1737 /* FIXME: should be checking for errors from bfd_close (for one thing,
1738 on error it does not free all the storage associated with the
1740 make_cleanup_bfd_close (loadfile_bfd
);
1742 if (!bfd_check_format (loadfile_bfd
, bfd_object
))
1744 error (_("\"%s\" is not an object file: %s"), filename
,
1745 bfd_errmsg (bfd_get_error ()));
1748 bfd_map_over_sections (loadfile_bfd
, add_section_size_callback
,
1749 (void *) &total_progress
.total_size
);
1751 bfd_map_over_sections (loadfile_bfd
, load_section_callback
, &cbdata
);
1753 gettimeofday (&start_time
, NULL
);
1755 if (target_write_memory_blocks (cbdata
.requests
, flash_discard
,
1756 load_progress
) != 0)
1757 error (_("Load failed"));
1759 gettimeofday (&end_time
, NULL
);
1761 entry
= bfd_get_start_address (loadfile_bfd
);
1762 ui_out_text (uiout
, "Start address ");
1763 ui_out_field_fmt (uiout
, "address", "0x%s", paddr_nz (entry
));
1764 ui_out_text (uiout
, ", load size ");
1765 ui_out_field_fmt (uiout
, "load-size", "%lu", total_progress
.data_count
);
1766 ui_out_text (uiout
, "\n");
1767 /* We were doing this in remote-mips.c, I suspect it is right
1768 for other targets too. */
1771 /* FIXME: are we supposed to call symbol_file_add or not? According
1772 to a comment from remote-mips.c (where a call to symbol_file_add
1773 was commented out), making the call confuses GDB if more than one
1774 file is loaded in. Some targets do (e.g., remote-vx.c) but
1775 others don't (or didn't - perhaps they have all been deleted). */
1777 print_transfer_performance (gdb_stdout
, total_progress
.data_count
,
1778 total_progress
.write_count
,
1779 &start_time
, &end_time
);
1781 do_cleanups (old_cleanups
);
1784 /* Report how fast the transfer went. */
1786 /* DEPRECATED: cagney/1999-10-18: report_transfer_performance is being
1787 replaced by print_transfer_performance (with a very different
1788 function signature). */
1791 report_transfer_performance (unsigned long data_count
, time_t start_time
,
1794 struct timeval start
, end
;
1796 start
.tv_sec
= start_time
;
1798 end
.tv_sec
= end_time
;
1801 print_transfer_performance (gdb_stdout
, data_count
, 0, &start
, &end
);
1805 print_transfer_performance (struct ui_file
*stream
,
1806 unsigned long data_count
,
1807 unsigned long write_count
,
1808 const struct timeval
*start_time
,
1809 const struct timeval
*end_time
)
1811 unsigned long time_count
;
1813 /* Compute the elapsed time in milliseconds, as a tradeoff between
1814 accuracy and overflow. */
1815 time_count
= (end_time
->tv_sec
- start_time
->tv_sec
) * 1000;
1816 time_count
+= (end_time
->tv_usec
- start_time
->tv_usec
) / 1000;
1818 ui_out_text (uiout
, "Transfer rate: ");
1821 ui_out_field_fmt (uiout
, "transfer-rate", "%lu",
1822 1000 * (data_count
* 8) / time_count
);
1823 ui_out_text (uiout
, " bits/sec");
1827 ui_out_field_fmt (uiout
, "transferred-bits", "%lu", (data_count
* 8));
1828 ui_out_text (uiout
, " bits in <1 sec");
1830 if (write_count
> 0)
1832 ui_out_text (uiout
, ", ");
1833 ui_out_field_fmt (uiout
, "write-rate", "%lu", data_count
/ write_count
);
1834 ui_out_text (uiout
, " bytes/write");
1836 ui_out_text (uiout
, ".\n");
1839 /* This function allows the addition of incrementally linked object files.
1840 It does not modify any state in the target, only in the debugger. */
1841 /* Note: ezannoni 2000-04-13 This function/command used to have a
1842 special case syntax for the rombug target (Rombug is the boot
1843 monitor for Microware's OS-9 / OS-9000, see remote-os9k.c). In the
1844 rombug case, the user doesn't need to supply a text address,
1845 instead a call to target_link() (in target.c) would supply the
1846 value to use. We are now discontinuing this type of ad hoc syntax. */
1849 add_symbol_file_command (char *args
, int from_tty
)
1851 char *filename
= NULL
;
1852 int flags
= OBJF_USERLOADED
;
1854 int expecting_option
= 0;
1855 int section_index
= 0;
1859 int expecting_sec_name
= 0;
1860 int expecting_sec_addr
= 0;
1869 struct section_addr_info
*section_addrs
;
1870 struct sect_opt
*sect_opts
= NULL
;
1871 size_t num_sect_opts
= 0;
1872 struct cleanup
*my_cleanups
= make_cleanup (null_cleanup
, NULL
);
1875 sect_opts
= (struct sect_opt
*) xmalloc (num_sect_opts
1876 * sizeof (struct sect_opt
));
1881 error (_("add-symbol-file takes a file name and an address"));
1883 argv
= buildargv (args
);
1884 make_cleanup_freeargv (argv
);
1889 for (arg
= argv
[0], argcnt
= 0; arg
!= NULL
; arg
= argv
[++argcnt
])
1891 /* Process the argument. */
1894 /* The first argument is the file name. */
1895 filename
= tilde_expand (arg
);
1896 make_cleanup (xfree
, filename
);
1901 /* The second argument is always the text address at which
1902 to load the program. */
1903 sect_opts
[section_index
].name
= ".text";
1904 sect_opts
[section_index
].value
= arg
;
1905 if (++section_index
>= num_sect_opts
)
1908 sect_opts
= ((struct sect_opt
*)
1909 xrealloc (sect_opts
,
1911 * sizeof (struct sect_opt
)));
1916 /* It's an option (starting with '-') or it's an argument
1921 if (strcmp (arg
, "-readnow") == 0)
1922 flags
|= OBJF_READNOW
;
1923 else if (strcmp (arg
, "-s") == 0)
1925 expecting_sec_name
= 1;
1926 expecting_sec_addr
= 1;
1931 if (expecting_sec_name
)
1933 sect_opts
[section_index
].name
= arg
;
1934 expecting_sec_name
= 0;
1937 if (expecting_sec_addr
)
1939 sect_opts
[section_index
].value
= arg
;
1940 expecting_sec_addr
= 0;
1941 if (++section_index
>= num_sect_opts
)
1944 sect_opts
= ((struct sect_opt
*)
1945 xrealloc (sect_opts
,
1947 * sizeof (struct sect_opt
)));
1951 error (_("USAGE: add-symbol-file <filename> <textaddress> [-mapped] [-readnow] [-s <secname> <addr>]*"));
1956 /* This command takes at least two arguments. The first one is a
1957 filename, and the second is the address where this file has been
1958 loaded. Abort now if this address hasn't been provided by the
1960 if (section_index
< 1)
1961 error (_("The address where %s has been loaded is missing"), filename
);
1963 /* Print the prompt for the query below. And save the arguments into
1964 a sect_addr_info structure to be passed around to other
1965 functions. We have to split this up into separate print
1966 statements because hex_string returns a local static
1969 printf_unfiltered (_("add symbol table from file \"%s\" at\n"), filename
);
1970 section_addrs
= alloc_section_addr_info (section_index
);
1971 make_cleanup (xfree
, section_addrs
);
1972 for (i
= 0; i
< section_index
; i
++)
1975 char *val
= sect_opts
[i
].value
;
1976 char *sec
= sect_opts
[i
].name
;
1978 addr
= parse_and_eval_address (val
);
1980 /* Here we store the section offsets in the order they were
1981 entered on the command line. */
1982 section_addrs
->other
[sec_num
].name
= sec
;
1983 section_addrs
->other
[sec_num
].addr
= addr
;
1984 printf_unfiltered ("\t%s_addr = %s\n",
1985 sec
, hex_string ((unsigned long)addr
));
1988 /* The object's sections are initialized when a
1989 call is made to build_objfile_section_table (objfile).
1990 This happens in reread_symbols.
1991 At this point, we don't know what file type this is,
1992 so we can't determine what section names are valid. */
1995 if (from_tty
&& (!query ("%s", "")))
1996 error (_("Not confirmed."));
1998 symbol_file_add (filename
, from_tty
, section_addrs
, 0, flags
);
2000 /* Getting new symbols may change our opinion about what is
2002 reinit_frame_cache ();
2003 do_cleanups (my_cleanups
);
2007 add_shared_symbol_files_command (char *args
, int from_tty
)
2009 #ifdef ADD_SHARED_SYMBOL_FILES
2010 ADD_SHARED_SYMBOL_FILES (args
, from_tty
);
2012 error (_("This command is not available in this configuration of GDB."));
2016 /* Re-read symbols if a symbol-file has changed. */
2018 reread_symbols (void)
2020 struct objfile
*objfile
;
2023 struct stat new_statbuf
;
2026 /* With the addition of shared libraries, this should be modified,
2027 the load time should be saved in the partial symbol tables, since
2028 different tables may come from different source files. FIXME.
2029 This routine should then walk down each partial symbol table
2030 and see if the symbol table that it originates from has been changed */
2032 for (objfile
= object_files
; objfile
; objfile
= objfile
->next
)
2036 #ifdef DEPRECATED_IBM6000_TARGET
2037 /* If this object is from a shared library, then you should
2038 stat on the library name, not member name. */
2040 if (objfile
->obfd
->my_archive
)
2041 res
= stat (objfile
->obfd
->my_archive
->filename
, &new_statbuf
);
2044 res
= stat (objfile
->name
, &new_statbuf
);
2047 /* FIXME, should use print_sys_errmsg but it's not filtered. */
2048 printf_unfiltered (_("`%s' has disappeared; keeping its symbols.\n"),
2052 new_modtime
= new_statbuf
.st_mtime
;
2053 if (new_modtime
!= objfile
->mtime
)
2055 struct cleanup
*old_cleanups
;
2056 struct section_offsets
*offsets
;
2058 char *obfd_filename
;
2060 printf_unfiltered (_("`%s' has changed; re-reading symbols.\n"),
2063 /* There are various functions like symbol_file_add,
2064 symfile_bfd_open, syms_from_objfile, etc., which might
2065 appear to do what we want. But they have various other
2066 effects which we *don't* want. So we just do stuff
2067 ourselves. We don't worry about mapped files (for one thing,
2068 any mapped file will be out of date). */
2070 /* If we get an error, blow away this objfile (not sure if
2071 that is the correct response for things like shared
2073 old_cleanups
= make_cleanup_free_objfile (objfile
);
2074 /* We need to do this whenever any symbols go away. */
2075 make_cleanup (clear_symtab_users_cleanup
, 0 /*ignore*/);
2077 /* Clean up any state BFD has sitting around. We don't need
2078 to close the descriptor but BFD lacks a way of closing the
2079 BFD without closing the descriptor. */
2080 obfd_filename
= bfd_get_filename (objfile
->obfd
);
2081 if (!bfd_close (objfile
->obfd
))
2082 error (_("Can't close BFD for %s: %s"), objfile
->name
,
2083 bfd_errmsg (bfd_get_error ()));
2084 objfile
->obfd
= bfd_openr (obfd_filename
, gnutarget
);
2085 if (objfile
->obfd
== NULL
)
2086 error (_("Can't open %s to read symbols."), objfile
->name
);
2087 /* bfd_openr sets cacheable to true, which is what we want. */
2088 if (!bfd_check_format (objfile
->obfd
, bfd_object
))
2089 error (_("Can't read symbols from %s: %s."), objfile
->name
,
2090 bfd_errmsg (bfd_get_error ()));
2092 /* Save the offsets, we will nuke them with the rest of the
2094 num_offsets
= objfile
->num_sections
;
2095 offsets
= ((struct section_offsets
*)
2096 alloca (SIZEOF_N_SECTION_OFFSETS (num_offsets
)));
2097 memcpy (offsets
, objfile
->section_offsets
,
2098 SIZEOF_N_SECTION_OFFSETS (num_offsets
));
2100 /* Remove any references to this objfile in the global
2102 preserve_values (objfile
);
2104 /* Nuke all the state that we will re-read. Much of the following
2105 code which sets things to NULL really is necessary to tell
2106 other parts of GDB that there is nothing currently there. */
2108 /* FIXME: Do we have to free a whole linked list, or is this
2110 if (objfile
->global_psymbols
.list
)
2111 xfree (objfile
->global_psymbols
.list
);
2112 memset (&objfile
->global_psymbols
, 0,
2113 sizeof (objfile
->global_psymbols
));
2114 if (objfile
->static_psymbols
.list
)
2115 xfree (objfile
->static_psymbols
.list
);
2116 memset (&objfile
->static_psymbols
, 0,
2117 sizeof (objfile
->static_psymbols
));
2119 /* Free the obstacks for non-reusable objfiles */
2120 bcache_xfree (objfile
->psymbol_cache
);
2121 objfile
->psymbol_cache
= bcache_xmalloc ();
2122 bcache_xfree (objfile
->macro_cache
);
2123 objfile
->macro_cache
= bcache_xmalloc ();
2124 if (objfile
->demangled_names_hash
!= NULL
)
2126 htab_delete (objfile
->demangled_names_hash
);
2127 objfile
->demangled_names_hash
= NULL
;
2129 obstack_free (&objfile
->objfile_obstack
, 0);
2130 objfile
->sections
= NULL
;
2131 objfile
->symtabs
= NULL
;
2132 objfile
->psymtabs
= NULL
;
2133 objfile
->free_psymtabs
= NULL
;
2134 objfile
->cp_namespace_symtab
= NULL
;
2135 objfile
->msymbols
= NULL
;
2136 objfile
->deprecated_sym_private
= NULL
;
2137 objfile
->minimal_symbol_count
= 0;
2138 memset (&objfile
->msymbol_hash
, 0,
2139 sizeof (objfile
->msymbol_hash
));
2140 memset (&objfile
->msymbol_demangled_hash
, 0,
2141 sizeof (objfile
->msymbol_demangled_hash
));
2142 objfile
->fundamental_types
= NULL
;
2143 clear_objfile_data (objfile
);
2144 if (objfile
->sf
!= NULL
)
2146 (*objfile
->sf
->sym_finish
) (objfile
);
2149 /* We never make this a mapped file. */
2151 objfile
->psymbol_cache
= bcache_xmalloc ();
2152 objfile
->macro_cache
= bcache_xmalloc ();
2153 /* obstack_init also initializes the obstack so it is
2154 empty. We could use obstack_specify_allocation but
2155 gdb_obstack.h specifies the alloc/dealloc
2157 obstack_init (&objfile
->objfile_obstack
);
2158 if (build_objfile_section_table (objfile
))
2160 error (_("Can't find the file sections in `%s': %s"),
2161 objfile
->name
, bfd_errmsg (bfd_get_error ()));
2163 terminate_minimal_symbol_table (objfile
);
2165 /* We use the same section offsets as from last time. I'm not
2166 sure whether that is always correct for shared libraries. */
2167 objfile
->section_offsets
= (struct section_offsets
*)
2168 obstack_alloc (&objfile
->objfile_obstack
,
2169 SIZEOF_N_SECTION_OFFSETS (num_offsets
));
2170 memcpy (objfile
->section_offsets
, offsets
,
2171 SIZEOF_N_SECTION_OFFSETS (num_offsets
));
2172 objfile
->num_sections
= num_offsets
;
2174 /* What the hell is sym_new_init for, anyway? The concept of
2175 distinguishing between the main file and additional files
2176 in this way seems rather dubious. */
2177 if (objfile
== symfile_objfile
)
2179 (*objfile
->sf
->sym_new_init
) (objfile
);
2182 (*objfile
->sf
->sym_init
) (objfile
);
2183 clear_complaints (&symfile_complaints
, 1, 1);
2184 /* The "mainline" parameter is a hideous hack; I think leaving it
2185 zero is OK since dbxread.c also does what it needs to do if
2186 objfile->global_psymbols.size is 0. */
2187 (*objfile
->sf
->sym_read
) (objfile
, 0);
2188 if (!have_partial_symbols () && !have_full_symbols ())
2191 printf_unfiltered (_("(no debugging symbols found)\n"));
2194 objfile
->flags
|= OBJF_SYMS
;
2196 /* We're done reading the symbol file; finish off complaints. */
2197 clear_complaints (&symfile_complaints
, 0, 1);
2199 /* Getting new symbols may change our opinion about what is
2202 reinit_frame_cache ();
2204 /* Discard cleanups as symbol reading was successful. */
2205 discard_cleanups (old_cleanups
);
2207 /* If the mtime has changed between the time we set new_modtime
2208 and now, we *want* this to be out of date, so don't call stat
2210 objfile
->mtime
= new_modtime
;
2212 reread_separate_symbols (objfile
);
2219 clear_symtab_users ();
2220 /* At least one objfile has changed, so we can consider that
2221 the executable we're debugging has changed too. */
2222 observer_notify_executable_changed (NULL
);
2228 /* Handle separate debug info for OBJFILE, which has just been
2230 - If we had separate debug info before, but now we don't, get rid
2231 of the separated objfile.
2232 - If we didn't have separated debug info before, but now we do,
2233 read in the new separated debug info file.
2234 - If the debug link points to a different file, toss the old one
2235 and read the new one.
2236 This function does *not* handle the case where objfile is still
2237 using the same separate debug info file, but that file's timestamp
2238 has changed. That case should be handled by the loop in
2239 reread_symbols already. */
2241 reread_separate_symbols (struct objfile
*objfile
)
2244 unsigned long crc32
;
2246 /* Does the updated objfile's debug info live in a
2248 debug_file
= find_separate_debug_file (objfile
);
2250 if (objfile
->separate_debug_objfile
)
2252 /* There are two cases where we need to get rid of
2253 the old separated debug info objfile:
2254 - if the new primary objfile doesn't have
2255 separated debug info, or
2256 - if the new primary objfile has separate debug
2257 info, but it's under a different filename.
2259 If the old and new objfiles both have separate
2260 debug info, under the same filename, then we're
2261 okay --- if the separated file's contents have
2262 changed, we will have caught that when we
2263 visited it in this function's outermost
2266 || strcmp (debug_file
, objfile
->separate_debug_objfile
->name
) != 0)
2267 free_objfile (objfile
->separate_debug_objfile
);
2270 /* If the new objfile has separate debug info, and we
2271 haven't loaded it already, do so now. */
2273 && ! objfile
->separate_debug_objfile
)
2275 /* Use the same section offset table as objfile itself.
2276 Preserve the flags from objfile that make sense. */
2277 objfile
->separate_debug_objfile
2278 = (symbol_file_add_with_addrs_or_offsets
2279 (symfile_bfd_open (debug_file
),
2280 info_verbose
, /* from_tty: Don't override the default. */
2281 0, /* No addr table. */
2282 objfile
->section_offsets
, objfile
->num_sections
,
2283 0, /* Not mainline. See comments about this above. */
2284 objfile
->flags
& (OBJF_REORDERED
| OBJF_SHARED
| OBJF_READNOW
2285 | OBJF_USERLOADED
)));
2286 objfile
->separate_debug_objfile
->separate_debug_objfile_backlink
2302 static filename_language
*filename_language_table
;
2303 static int fl_table_size
, fl_table_next
;
2306 add_filename_language (char *ext
, enum language lang
)
2308 if (fl_table_next
>= fl_table_size
)
2310 fl_table_size
+= 10;
2311 filename_language_table
=
2312 xrealloc (filename_language_table
,
2313 fl_table_size
* sizeof (*filename_language_table
));
2316 filename_language_table
[fl_table_next
].ext
= xstrdup (ext
);
2317 filename_language_table
[fl_table_next
].lang
= lang
;
2321 static char *ext_args
;
2323 show_ext_args (struct ui_file
*file
, int from_tty
,
2324 struct cmd_list_element
*c
, const char *value
)
2326 fprintf_filtered (file
, _("\
2327 Mapping between filename extension and source language is \"%s\".\n"),
2332 set_ext_lang_command (char *args
, int from_tty
, struct cmd_list_element
*e
)
2335 char *cp
= ext_args
;
2338 /* First arg is filename extension, starting with '.' */
2340 error (_("'%s': Filename extension must begin with '.'"), ext_args
);
2342 /* Find end of first arg. */
2343 while (*cp
&& !isspace (*cp
))
2347 error (_("'%s': two arguments required -- filename extension and language"),
2350 /* Null-terminate first arg */
2353 /* Find beginning of second arg, which should be a source language. */
2354 while (*cp
&& isspace (*cp
))
2358 error (_("'%s': two arguments required -- filename extension and language"),
2361 /* Lookup the language from among those we know. */
2362 lang
= language_enum (cp
);
2364 /* Now lookup the filename extension: do we already know it? */
2365 for (i
= 0; i
< fl_table_next
; i
++)
2366 if (0 == strcmp (ext_args
, filename_language_table
[i
].ext
))
2369 if (i
>= fl_table_next
)
2371 /* new file extension */
2372 add_filename_language (ext_args
, lang
);
2376 /* redefining a previously known filename extension */
2379 /* query ("Really make files of type %s '%s'?", */
2380 /* ext_args, language_str (lang)); */
2382 xfree (filename_language_table
[i
].ext
);
2383 filename_language_table
[i
].ext
= xstrdup (ext_args
);
2384 filename_language_table
[i
].lang
= lang
;
2389 info_ext_lang_command (char *args
, int from_tty
)
2393 printf_filtered (_("Filename extensions and the languages they represent:"));
2394 printf_filtered ("\n\n");
2395 for (i
= 0; i
< fl_table_next
; i
++)
2396 printf_filtered ("\t%s\t- %s\n",
2397 filename_language_table
[i
].ext
,
2398 language_str (filename_language_table
[i
].lang
));
2402 init_filename_language_table (void)
2404 if (fl_table_size
== 0) /* protect against repetition */
2408 filename_language_table
=
2409 xmalloc (fl_table_size
* sizeof (*filename_language_table
));
2410 add_filename_language (".c", language_c
);
2411 add_filename_language (".C", language_cplus
);
2412 add_filename_language (".cc", language_cplus
);
2413 add_filename_language (".cp", language_cplus
);
2414 add_filename_language (".cpp", language_cplus
);
2415 add_filename_language (".cxx", language_cplus
);
2416 add_filename_language (".c++", language_cplus
);
2417 add_filename_language (".java", language_java
);
2418 add_filename_language (".class", language_java
);
2419 add_filename_language (".m", language_objc
);
2420 add_filename_language (".f", language_fortran
);
2421 add_filename_language (".F", language_fortran
);
2422 add_filename_language (".s", language_asm
);
2423 add_filename_language (".S", language_asm
);
2424 add_filename_language (".pas", language_pascal
);
2425 add_filename_language (".p", language_pascal
);
2426 add_filename_language (".pp", language_pascal
);
2427 add_filename_language (".adb", language_ada
);
2428 add_filename_language (".ads", language_ada
);
2429 add_filename_language (".a", language_ada
);
2430 add_filename_language (".ada", language_ada
);
2435 deduce_language_from_filename (char *filename
)
2440 if (filename
!= NULL
)
2441 if ((cp
= strrchr (filename
, '.')) != NULL
)
2442 for (i
= 0; i
< fl_table_next
; i
++)
2443 if (strcmp (cp
, filename_language_table
[i
].ext
) == 0)
2444 return filename_language_table
[i
].lang
;
2446 return language_unknown
;
2451 Allocate and partly initialize a new symbol table. Return a pointer
2452 to it. error() if no space.
2454 Caller must set these fields:
2460 possibly free_named_symtabs (symtab->filename);
2464 allocate_symtab (char *filename
, struct objfile
*objfile
)
2466 struct symtab
*symtab
;
2468 symtab
= (struct symtab
*)
2469 obstack_alloc (&objfile
->objfile_obstack
, sizeof (struct symtab
));
2470 memset (symtab
, 0, sizeof (*symtab
));
2471 symtab
->filename
= obsavestring (filename
, strlen (filename
),
2472 &objfile
->objfile_obstack
);
2473 symtab
->fullname
= NULL
;
2474 symtab
->language
= deduce_language_from_filename (filename
);
2475 symtab
->debugformat
= obsavestring ("unknown", 7,
2476 &objfile
->objfile_obstack
);
2478 /* Hook it to the objfile it comes from */
2480 symtab
->objfile
= objfile
;
2481 symtab
->next
= objfile
->symtabs
;
2482 objfile
->symtabs
= symtab
;
2484 /* FIXME: This should go away. It is only defined for the Z8000,
2485 and the Z8000 definition of this macro doesn't have anything to
2486 do with the now-nonexistent EXTRA_SYMTAB_INFO macro, it's just
2487 here for convenience. */
2488 #ifdef INIT_EXTRA_SYMTAB_INFO
2489 INIT_EXTRA_SYMTAB_INFO (symtab
);
2495 struct partial_symtab
*
2496 allocate_psymtab (char *filename
, struct objfile
*objfile
)
2498 struct partial_symtab
*psymtab
;
2500 if (objfile
->free_psymtabs
)
2502 psymtab
= objfile
->free_psymtabs
;
2503 objfile
->free_psymtabs
= psymtab
->next
;
2506 psymtab
= (struct partial_symtab
*)
2507 obstack_alloc (&objfile
->objfile_obstack
,
2508 sizeof (struct partial_symtab
));
2510 memset (psymtab
, 0, sizeof (struct partial_symtab
));
2511 psymtab
->filename
= obsavestring (filename
, strlen (filename
),
2512 &objfile
->objfile_obstack
);
2513 psymtab
->symtab
= NULL
;
2515 /* Prepend it to the psymtab list for the objfile it belongs to.
2516 Psymtabs are searched in most recent inserted -> least recent
2519 psymtab
->objfile
= objfile
;
2520 psymtab
->next
= objfile
->psymtabs
;
2521 objfile
->psymtabs
= psymtab
;
2524 struct partial_symtab
**prev_pst
;
2525 psymtab
->objfile
= objfile
;
2526 psymtab
->next
= NULL
;
2527 prev_pst
= &(objfile
->psymtabs
);
2528 while ((*prev_pst
) != NULL
)
2529 prev_pst
= &((*prev_pst
)->next
);
2530 (*prev_pst
) = psymtab
;
2538 discard_psymtab (struct partial_symtab
*pst
)
2540 struct partial_symtab
**prev_pst
;
2543 Empty psymtabs happen as a result of header files which don't
2544 have any symbols in them. There can be a lot of them. But this
2545 check is wrong, in that a psymtab with N_SLINE entries but
2546 nothing else is not empty, but we don't realize that. Fixing
2547 that without slowing things down might be tricky. */
2549 /* First, snip it out of the psymtab chain */
2551 prev_pst
= &(pst
->objfile
->psymtabs
);
2552 while ((*prev_pst
) != pst
)
2553 prev_pst
= &((*prev_pst
)->next
);
2554 (*prev_pst
) = pst
->next
;
2556 /* Next, put it on a free list for recycling */
2558 pst
->next
= pst
->objfile
->free_psymtabs
;
2559 pst
->objfile
->free_psymtabs
= pst
;
2563 /* Reset all data structures in gdb which may contain references to symbol
2567 clear_symtab_users (void)
2569 /* Someday, we should do better than this, by only blowing away
2570 the things that really need to be blown. */
2572 /* Clear the "current" symtab first, because it is no longer valid.
2573 breakpoint_re_set may try to access the current symtab. */
2574 clear_current_source_symtab_and_line ();
2577 breakpoint_re_set ();
2578 set_default_breakpoint (0, 0, 0, 0);
2579 clear_pc_function_cache ();
2580 if (deprecated_target_new_objfile_hook
)
2581 deprecated_target_new_objfile_hook (NULL
);
2583 /* Clear globals which might have pointed into a removed objfile.
2584 FIXME: It's not clear which of these are supposed to persist
2585 between expressions and which ought to be reset each time. */
2586 expression_context_block
= NULL
;
2587 innermost_block
= NULL
;
2591 clear_symtab_users_cleanup (void *ignore
)
2593 clear_symtab_users ();
2596 /* clear_symtab_users_once:
2598 This function is run after symbol reading, or from a cleanup.
2599 If an old symbol table was obsoleted, the old symbol table
2600 has been blown away, but the other GDB data structures that may
2601 reference it have not yet been cleared or re-directed. (The old
2602 symtab was zapped, and the cleanup queued, in free_named_symtab()
2605 This function can be queued N times as a cleanup, or called
2606 directly; it will do all the work the first time, and then will be a
2607 no-op until the next time it is queued. This works by bumping a
2608 counter at queueing time. Much later when the cleanup is run, or at
2609 the end of symbol processing (in case the cleanup is discarded), if
2610 the queued count is greater than the "done-count", we do the work
2611 and set the done-count to the queued count. If the queued count is
2612 less than or equal to the done-count, we just ignore the call. This
2613 is needed because reading a single .o file will often replace many
2614 symtabs (one per .h file, for example), and we don't want to reset
2615 the breakpoints N times in the user's face.
2617 The reason we both queue a cleanup, and call it directly after symbol
2618 reading, is because the cleanup protects us in case of errors, but is
2619 discarded if symbol reading is successful. */
2622 /* FIXME: As free_named_symtabs is currently a big noop this function
2623 is no longer needed. */
2624 static void clear_symtab_users_once (void);
2626 static int clear_symtab_users_queued
;
2627 static int clear_symtab_users_done
;
2630 clear_symtab_users_once (void)
2632 /* Enforce once-per-`do_cleanups'-semantics */
2633 if (clear_symtab_users_queued
<= clear_symtab_users_done
)
2635 clear_symtab_users_done
= clear_symtab_users_queued
;
2637 clear_symtab_users ();
2641 /* Delete the specified psymtab, and any others that reference it. */
2644 cashier_psymtab (struct partial_symtab
*pst
)
2646 struct partial_symtab
*ps
, *pprev
= NULL
;
2649 /* Find its previous psymtab in the chain */
2650 for (ps
= pst
->objfile
->psymtabs
; ps
; ps
= ps
->next
)
2659 /* Unhook it from the chain. */
2660 if (ps
== pst
->objfile
->psymtabs
)
2661 pst
->objfile
->psymtabs
= ps
->next
;
2663 pprev
->next
= ps
->next
;
2665 /* FIXME, we can't conveniently deallocate the entries in the
2666 partial_symbol lists (global_psymbols/static_psymbols) that
2667 this psymtab points to. These just take up space until all
2668 the psymtabs are reclaimed. Ditto the dependencies list and
2669 filename, which are all in the objfile_obstack. */
2671 /* We need to cashier any psymtab that has this one as a dependency... */
2673 for (ps
= pst
->objfile
->psymtabs
; ps
; ps
= ps
->next
)
2675 for (i
= 0; i
< ps
->number_of_dependencies
; i
++)
2677 if (ps
->dependencies
[i
] == pst
)
2679 cashier_psymtab (ps
);
2680 goto again
; /* Must restart, chain has been munged. */
2687 /* If a symtab or psymtab for filename NAME is found, free it along
2688 with any dependent breakpoints, displays, etc.
2689 Used when loading new versions of object modules with the "add-file"
2690 command. This is only called on the top-level symtab or psymtab's name;
2691 it is not called for subsidiary files such as .h files.
2693 Return value is 1 if we blew away the environment, 0 if not.
2694 FIXME. The return value appears to never be used.
2696 FIXME. I think this is not the best way to do this. We should
2697 work on being gentler to the environment while still cleaning up
2698 all stray pointers into the freed symtab. */
2701 free_named_symtabs (char *name
)
2704 /* FIXME: With the new method of each objfile having it's own
2705 psymtab list, this function needs serious rethinking. In particular,
2706 why was it ever necessary to toss psymtabs with specific compilation
2707 unit filenames, as opposed to all psymtabs from a particular symbol
2709 Well, the answer is that some systems permit reloading of particular
2710 compilation units. We want to blow away any old info about these
2711 compilation units, regardless of which objfiles they arrived in. --gnu. */
2714 struct symtab
*prev
;
2715 struct partial_symtab
*ps
;
2716 struct blockvector
*bv
;
2719 /* We only wack things if the symbol-reload switch is set. */
2720 if (!symbol_reloading
)
2723 /* Some symbol formats have trouble providing file names... */
2724 if (name
== 0 || *name
== '\0')
2727 /* Look for a psymtab with the specified name. */
2730 for (ps
= partial_symtab_list
; ps
; ps
= ps
->next
)
2732 if (strcmp (name
, ps
->filename
) == 0)
2734 cashier_psymtab (ps
); /* Blow it away...and its little dog, too. */
2735 goto again2
; /* Must restart, chain has been munged */
2739 /* Look for a symtab with the specified name. */
2741 for (s
= symtab_list
; s
; s
= s
->next
)
2743 if (strcmp (name
, s
->filename
) == 0)
2750 if (s
== symtab_list
)
2751 symtab_list
= s
->next
;
2753 prev
->next
= s
->next
;
2755 /* For now, queue a delete for all breakpoints, displays, etc., whether
2756 or not they depend on the symtab being freed. This should be
2757 changed so that only those data structures affected are deleted. */
2759 /* But don't delete anything if the symtab is empty.
2760 This test is necessary due to a bug in "dbxread.c" that
2761 causes empty symtabs to be created for N_SO symbols that
2762 contain the pathname of the object file. (This problem
2763 has been fixed in GDB 3.9x). */
2765 bv
= BLOCKVECTOR (s
);
2766 if (BLOCKVECTOR_NBLOCKS (bv
) > 2
2767 || BLOCK_NSYMS (BLOCKVECTOR_BLOCK (bv
, GLOBAL_BLOCK
))
2768 || BLOCK_NSYMS (BLOCKVECTOR_BLOCK (bv
, STATIC_BLOCK
)))
2770 complaint (&symfile_complaints
, _("Replacing old symbols for `%s'"),
2772 clear_symtab_users_queued
++;
2773 make_cleanup (clear_symtab_users_once
, 0);
2777 complaint (&symfile_complaints
, _("Empty symbol table found for `%s'"),
2784 /* It is still possible that some breakpoints will be affected
2785 even though no symtab was found, since the file might have
2786 been compiled without debugging, and hence not be associated
2787 with a symtab. In order to handle this correctly, we would need
2788 to keep a list of text address ranges for undebuggable files.
2789 For now, we do nothing, since this is a fairly obscure case. */
2793 /* FIXME, what about the minimal symbol table? */
2800 /* Allocate and partially fill a partial symtab. It will be
2801 completely filled at the end of the symbol list.
2803 FILENAME is the name of the symbol-file we are reading from. */
2805 struct partial_symtab
*
2806 start_psymtab_common (struct objfile
*objfile
,
2807 struct section_offsets
*section_offsets
, char *filename
,
2808 CORE_ADDR textlow
, struct partial_symbol
**global_syms
,
2809 struct partial_symbol
**static_syms
)
2811 struct partial_symtab
*psymtab
;
2813 psymtab
= allocate_psymtab (filename
, objfile
);
2814 psymtab
->section_offsets
= section_offsets
;
2815 psymtab
->textlow
= textlow
;
2816 psymtab
->texthigh
= psymtab
->textlow
; /* default */
2817 psymtab
->globals_offset
= global_syms
- objfile
->global_psymbols
.list
;
2818 psymtab
->statics_offset
= static_syms
- objfile
->static_psymbols
.list
;
2822 /* Add a symbol with a long value to a psymtab.
2823 Since one arg is a struct, we pass in a ptr and deref it (sigh).
2824 Return the partial symbol that has been added. */
2826 /* NOTE: carlton/2003-09-11: The reason why we return the partial
2827 symbol is so that callers can get access to the symbol's demangled
2828 name, which they don't have any cheap way to determine otherwise.
2829 (Currenly, dwarf2read.c is the only file who uses that information,
2830 though it's possible that other readers might in the future.)
2831 Elena wasn't thrilled about that, and I don't blame her, but we
2832 couldn't come up with a better way to get that information. If
2833 it's needed in other situations, we could consider breaking up
2834 SYMBOL_SET_NAMES to provide access to the demangled name lookup
2837 const struct partial_symbol
*
2838 add_psymbol_to_list (char *name
, int namelength
, domain_enum domain
,
2839 enum address_class
class,
2840 struct psymbol_allocation_list
*list
, long val
, /* Value as a long */
2841 CORE_ADDR coreaddr
, /* Value as a CORE_ADDR */
2842 enum language language
, struct objfile
*objfile
)
2844 struct partial_symbol
*psym
;
2845 char *buf
= alloca (namelength
+ 1);
2846 /* psymbol is static so that there will be no uninitialized gaps in the
2847 structure which might contain random data, causing cache misses in
2849 static struct partial_symbol psymbol
;
2851 /* Create local copy of the partial symbol */
2852 memcpy (buf
, name
, namelength
);
2853 buf
[namelength
] = '\0';
2854 /* val and coreaddr are mutually exclusive, one of them *will* be zero */
2857 SYMBOL_VALUE (&psymbol
) = val
;
2861 SYMBOL_VALUE_ADDRESS (&psymbol
) = coreaddr
;
2863 SYMBOL_SECTION (&psymbol
) = 0;
2864 SYMBOL_LANGUAGE (&psymbol
) = language
;
2865 PSYMBOL_DOMAIN (&psymbol
) = domain
;
2866 PSYMBOL_CLASS (&psymbol
) = class;
2868 SYMBOL_SET_NAMES (&psymbol
, buf
, namelength
, objfile
);
2870 /* Stash the partial symbol away in the cache */
2871 psym
= deprecated_bcache (&psymbol
, sizeof (struct partial_symbol
),
2872 objfile
->psymbol_cache
);
2874 /* Save pointer to partial symbol in psymtab, growing symtab if needed. */
2875 if (list
->next
>= list
->list
+ list
->size
)
2877 extend_psymbol_list (list
, objfile
);
2879 *list
->next
++ = psym
;
2880 OBJSTAT (objfile
, n_psyms
++);
2885 /* Add a symbol with a long value to a psymtab. This differs from
2886 * add_psymbol_to_list above in taking both a mangled and a demangled
2890 add_psymbol_with_dem_name_to_list (char *name
, int namelength
, char *dem_name
,
2891 int dem_namelength
, domain_enum domain
,
2892 enum address_class
class,
2893 struct psymbol_allocation_list
*list
, long val
, /* Value as a long */
2894 CORE_ADDR coreaddr
, /* Value as a CORE_ADDR */
2895 enum language language
,
2896 struct objfile
*objfile
)
2898 struct partial_symbol
*psym
;
2899 char *buf
= alloca (namelength
+ 1);
2900 /* psymbol is static so that there will be no uninitialized gaps in the
2901 structure which might contain random data, causing cache misses in
2903 static struct partial_symbol psymbol
;
2905 /* Create local copy of the partial symbol */
2907 memcpy (buf
, name
, namelength
);
2908 buf
[namelength
] = '\0';
2909 DEPRECATED_SYMBOL_NAME (&psymbol
) = deprecated_bcache (buf
, namelength
+ 1,
2910 objfile
->psymbol_cache
);
2912 buf
= alloca (dem_namelength
+ 1);
2913 memcpy (buf
, dem_name
, dem_namelength
);
2914 buf
[dem_namelength
] = '\0';
2919 case language_cplus
:
2920 SYMBOL_CPLUS_DEMANGLED_NAME (&psymbol
) =
2921 deprecated_bcache (buf
, dem_namelength
+ 1, objfile
->psymbol_cache
);
2923 /* FIXME What should be done for the default case? Ignoring for now. */
2926 /* val and coreaddr are mutually exclusive, one of them *will* be zero */
2929 SYMBOL_VALUE (&psymbol
) = val
;
2933 SYMBOL_VALUE_ADDRESS (&psymbol
) = coreaddr
;
2935 SYMBOL_SECTION (&psymbol
) = 0;
2936 SYMBOL_LANGUAGE (&psymbol
) = language
;
2937 PSYMBOL_DOMAIN (&psymbol
) = domain
;
2938 PSYMBOL_CLASS (&psymbol
) = class;
2939 SYMBOL_INIT_LANGUAGE_SPECIFIC (&psymbol
, language
);
2941 /* Stash the partial symbol away in the cache */
2942 psym
= deprecated_bcache (&psymbol
, sizeof (struct partial_symbol
),
2943 objfile
->psymbol_cache
);
2945 /* Save pointer to partial symbol in psymtab, growing symtab if needed. */
2946 if (list
->next
>= list
->list
+ list
->size
)
2948 extend_psymbol_list (list
, objfile
);
2950 *list
->next
++ = psym
;
2951 OBJSTAT (objfile
, n_psyms
++);
2954 /* Initialize storage for partial symbols. */
2957 init_psymbol_list (struct objfile
*objfile
, int total_symbols
)
2959 /* Free any previously allocated psymbol lists. */
2961 if (objfile
->global_psymbols
.list
)
2963 xfree (objfile
->global_psymbols
.list
);
2965 if (objfile
->static_psymbols
.list
)
2967 xfree (objfile
->static_psymbols
.list
);
2970 /* Current best guess is that approximately a twentieth
2971 of the total symbols (in a debugging file) are global or static
2974 objfile
->global_psymbols
.size
= total_symbols
/ 10;
2975 objfile
->static_psymbols
.size
= total_symbols
/ 10;
2977 if (objfile
->global_psymbols
.size
> 0)
2979 objfile
->global_psymbols
.next
=
2980 objfile
->global_psymbols
.list
= (struct partial_symbol
**)
2981 xmalloc ((objfile
->global_psymbols
.size
2982 * sizeof (struct partial_symbol
*)));
2984 if (objfile
->static_psymbols
.size
> 0)
2986 objfile
->static_psymbols
.next
=
2987 objfile
->static_psymbols
.list
= (struct partial_symbol
**)
2988 xmalloc ((objfile
->static_psymbols
.size
2989 * sizeof (struct partial_symbol
*)));
2994 The following code implements an abstraction for debugging overlay sections.
2996 The target model is as follows:
2997 1) The gnu linker will permit multiple sections to be mapped into the
2998 same VMA, each with its own unique LMA (or load address).
2999 2) It is assumed that some runtime mechanism exists for mapping the
3000 sections, one by one, from the load address into the VMA address.
3001 3) This code provides a mechanism for gdb to keep track of which
3002 sections should be considered to be mapped from the VMA to the LMA.
3003 This information is used for symbol lookup, and memory read/write.
3004 For instance, if a section has been mapped then its contents
3005 should be read from the VMA, otherwise from the LMA.
3007 Two levels of debugger support for overlays are available. One is
3008 "manual", in which the debugger relies on the user to tell it which
3009 overlays are currently mapped. This level of support is
3010 implemented entirely in the core debugger, and the information about
3011 whether a section is mapped is kept in the objfile->obj_section table.
3013 The second level of support is "automatic", and is only available if
3014 the target-specific code provides functionality to read the target's
3015 overlay mapping table, and translate its contents for the debugger
3016 (by updating the mapped state information in the obj_section tables).
3018 The interface is as follows:
3020 overlay map <name> -- tell gdb to consider this section mapped
3021 overlay unmap <name> -- tell gdb to consider this section unmapped
3022 overlay list -- list the sections that GDB thinks are mapped
3023 overlay read-target -- get the target's state of what's mapped
3024 overlay off/manual/auto -- set overlay debugging state
3025 Functional interface:
3026 find_pc_mapped_section(pc): if the pc is in the range of a mapped
3027 section, return that section.
3028 find_pc_overlay(pc): find any overlay section that contains
3029 the pc, either in its VMA or its LMA
3030 overlay_is_mapped(sect): true if overlay is marked as mapped
3031 section_is_overlay(sect): true if section's VMA != LMA
3032 pc_in_mapped_range(pc,sec): true if pc belongs to section's VMA
3033 pc_in_unmapped_range(...): true if pc belongs to section's LMA
3034 sections_overlap(sec1, sec2): true if mapped sec1 and sec2 ranges overlap
3035 overlay_mapped_address(...): map an address from section's LMA to VMA
3036 overlay_unmapped_address(...): map an address from section's VMA to LMA
3037 symbol_overlayed_address(...): Return a "current" address for symbol:
3038 either in VMA or LMA depending on whether
3039 the symbol's section is currently mapped
3042 /* Overlay debugging state: */
3044 enum overlay_debugging_state overlay_debugging
= ovly_off
;
3045 int overlay_cache_invalid
= 0; /* True if need to refresh mapped state */
3047 /* Target vector for refreshing overlay mapped state */
3048 static void simple_overlay_update (struct obj_section
*);
3049 void (*target_overlay_update
) (struct obj_section
*) = simple_overlay_update
;
3051 /* Function: section_is_overlay (SECTION)
3052 Returns true if SECTION has VMA not equal to LMA, ie.
3053 SECTION is loaded at an address different from where it will "run". */
3056 section_is_overlay (asection
*section
)
3058 /* FIXME: need bfd *, so we can use bfd_section_lma methods. */
3060 if (overlay_debugging
)
3061 if (section
&& section
->lma
!= 0 &&
3062 section
->vma
!= section
->lma
)
3068 /* Function: overlay_invalidate_all (void)
3069 Invalidate the mapped state of all overlay sections (mark it as stale). */
3072 overlay_invalidate_all (void)
3074 struct objfile
*objfile
;
3075 struct obj_section
*sect
;
3077 ALL_OBJSECTIONS (objfile
, sect
)
3078 if (section_is_overlay (sect
->the_bfd_section
))
3079 sect
->ovly_mapped
= -1;
3082 /* Function: overlay_is_mapped (SECTION)
3083 Returns true if section is an overlay, and is currently mapped.
3084 Private: public access is thru function section_is_mapped.
3086 Access to the ovly_mapped flag is restricted to this function, so
3087 that we can do automatic update. If the global flag
3088 OVERLAY_CACHE_INVALID is set (by wait_for_inferior), then call
3089 overlay_invalidate_all. If the mapped state of the particular
3090 section is stale, then call TARGET_OVERLAY_UPDATE to refresh it. */
3093 overlay_is_mapped (struct obj_section
*osect
)
3095 if (osect
== 0 || !section_is_overlay (osect
->the_bfd_section
))
3098 switch (overlay_debugging
)
3102 return 0; /* overlay debugging off */
3103 case ovly_auto
: /* overlay debugging automatic */
3104 /* Unles there is a target_overlay_update function,
3105 there's really nothing useful to do here (can't really go auto) */
3106 if (target_overlay_update
)
3108 if (overlay_cache_invalid
)
3110 overlay_invalidate_all ();
3111 overlay_cache_invalid
= 0;
3113 if (osect
->ovly_mapped
== -1)
3114 (*target_overlay_update
) (osect
);
3116 /* fall thru to manual case */
3117 case ovly_on
: /* overlay debugging manual */
3118 return osect
->ovly_mapped
== 1;
3122 /* Function: section_is_mapped
3123 Returns true if section is an overlay, and is currently mapped. */
3126 section_is_mapped (asection
*section
)
3128 struct objfile
*objfile
;
3129 struct obj_section
*osect
;
3131 if (overlay_debugging
)
3132 if (section
&& section_is_overlay (section
))
3133 ALL_OBJSECTIONS (objfile
, osect
)
3134 if (osect
->the_bfd_section
== section
)
3135 return overlay_is_mapped (osect
);
3140 /* Function: pc_in_unmapped_range
3141 If PC falls into the lma range of SECTION, return true, else false. */
3144 pc_in_unmapped_range (CORE_ADDR pc
, asection
*section
)
3146 /* FIXME: need bfd *, so we can use bfd_section_lma methods. */
3150 if (overlay_debugging
)
3151 if (section
&& section_is_overlay (section
))
3153 size
= bfd_get_section_size (section
);
3154 if (section
->lma
<= pc
&& pc
< section
->lma
+ size
)
3160 /* Function: pc_in_mapped_range
3161 If PC falls into the vma range of SECTION, return true, else false. */
3164 pc_in_mapped_range (CORE_ADDR pc
, asection
*section
)
3166 /* FIXME: need bfd *, so we can use bfd_section_vma methods. */
3170 if (overlay_debugging
)
3171 if (section
&& section_is_overlay (section
))
3173 size
= bfd_get_section_size (section
);
3174 if (section
->vma
<= pc
&& pc
< section
->vma
+ size
)
3181 /* Return true if the mapped ranges of sections A and B overlap, false
3184 sections_overlap (asection
*a
, asection
*b
)
3186 /* FIXME: need bfd *, so we can use bfd_section_vma methods. */
3188 CORE_ADDR a_start
= a
->vma
;
3189 CORE_ADDR a_end
= a
->vma
+ bfd_get_section_size (a
);
3190 CORE_ADDR b_start
= b
->vma
;
3191 CORE_ADDR b_end
= b
->vma
+ bfd_get_section_size (b
);
3193 return (a_start
< b_end
&& b_start
< a_end
);
3196 /* Function: overlay_unmapped_address (PC, SECTION)
3197 Returns the address corresponding to PC in the unmapped (load) range.
3198 May be the same as PC. */
3201 overlay_unmapped_address (CORE_ADDR pc
, asection
*section
)
3203 /* FIXME: need bfd *, so we can use bfd_section_lma methods. */
3205 if (overlay_debugging
)
3206 if (section
&& section_is_overlay (section
) &&
3207 pc_in_mapped_range (pc
, section
))
3208 return pc
+ section
->lma
- section
->vma
;
3213 /* Function: overlay_mapped_address (PC, SECTION)
3214 Returns the address corresponding to PC in the mapped (runtime) range.
3215 May be the same as PC. */
3218 overlay_mapped_address (CORE_ADDR pc
, asection
*section
)
3220 /* FIXME: need bfd *, so we can use bfd_section_vma methods. */
3222 if (overlay_debugging
)
3223 if (section
&& section_is_overlay (section
) &&
3224 pc_in_unmapped_range (pc
, section
))
3225 return pc
+ section
->vma
- section
->lma
;
3231 /* Function: symbol_overlayed_address
3232 Return one of two addresses (relative to the VMA or to the LMA),
3233 depending on whether the section is mapped or not. */
3236 symbol_overlayed_address (CORE_ADDR address
, asection
*section
)
3238 if (overlay_debugging
)
3240 /* If the symbol has no section, just return its regular address. */
3243 /* If the symbol's section is not an overlay, just return its address */
3244 if (!section_is_overlay (section
))
3246 /* If the symbol's section is mapped, just return its address */
3247 if (section_is_mapped (section
))
3250 * HOWEVER: if the symbol is in an overlay section which is NOT mapped,
3251 * then return its LOADED address rather than its vma address!!
3253 return overlay_unmapped_address (address
, section
);
3258 /* Function: find_pc_overlay (PC)
3259 Return the best-match overlay section for PC:
3260 If PC matches a mapped overlay section's VMA, return that section.
3261 Else if PC matches an unmapped section's VMA, return that section.
3262 Else if PC matches an unmapped section's LMA, return that section. */
3265 find_pc_overlay (CORE_ADDR pc
)
3267 struct objfile
*objfile
;
3268 struct obj_section
*osect
, *best_match
= NULL
;
3270 if (overlay_debugging
)
3271 ALL_OBJSECTIONS (objfile
, osect
)
3272 if (section_is_overlay (osect
->the_bfd_section
))
3274 if (pc_in_mapped_range (pc
, osect
->the_bfd_section
))
3276 if (overlay_is_mapped (osect
))
3277 return osect
->the_bfd_section
;
3281 else if (pc_in_unmapped_range (pc
, osect
->the_bfd_section
))
3284 return best_match
? best_match
->the_bfd_section
: NULL
;
3287 /* Function: find_pc_mapped_section (PC)
3288 If PC falls into the VMA address range of an overlay section that is
3289 currently marked as MAPPED, return that section. Else return NULL. */
3292 find_pc_mapped_section (CORE_ADDR pc
)
3294 struct objfile
*objfile
;
3295 struct obj_section
*osect
;
3297 if (overlay_debugging
)
3298 ALL_OBJSECTIONS (objfile
, osect
)
3299 if (pc_in_mapped_range (pc
, osect
->the_bfd_section
) &&
3300 overlay_is_mapped (osect
))
3301 return osect
->the_bfd_section
;
3306 /* Function: list_overlays_command
3307 Print a list of mapped sections and their PC ranges */
3310 list_overlays_command (char *args
, int from_tty
)
3313 struct objfile
*objfile
;
3314 struct obj_section
*osect
;
3316 if (overlay_debugging
)
3317 ALL_OBJSECTIONS (objfile
, osect
)
3318 if (overlay_is_mapped (osect
))
3324 vma
= bfd_section_vma (objfile
->obfd
, osect
->the_bfd_section
);
3325 lma
= bfd_section_lma (objfile
->obfd
, osect
->the_bfd_section
);
3326 size
= bfd_get_section_size (osect
->the_bfd_section
);
3327 name
= bfd_section_name (objfile
->obfd
, osect
->the_bfd_section
);
3329 printf_filtered ("Section %s, loaded at ", name
);
3330 deprecated_print_address_numeric (lma
, 1, gdb_stdout
);
3331 puts_filtered (" - ");
3332 deprecated_print_address_numeric (lma
+ size
, 1, gdb_stdout
);
3333 printf_filtered (", mapped at ");
3334 deprecated_print_address_numeric (vma
, 1, gdb_stdout
);
3335 puts_filtered (" - ");
3336 deprecated_print_address_numeric (vma
+ size
, 1, gdb_stdout
);
3337 puts_filtered ("\n");
3342 printf_filtered (_("No sections are mapped.\n"));
3345 /* Function: map_overlay_command
3346 Mark the named section as mapped (ie. residing at its VMA address). */
3349 map_overlay_command (char *args
, int from_tty
)
3351 struct objfile
*objfile
, *objfile2
;
3352 struct obj_section
*sec
, *sec2
;
3355 if (!overlay_debugging
)
3357 Overlay debugging not enabled. Use either the 'overlay auto' or\n\
3358 the 'overlay manual' command."));
3360 if (args
== 0 || *args
== 0)
3361 error (_("Argument required: name of an overlay section"));
3363 /* First, find a section matching the user supplied argument */
3364 ALL_OBJSECTIONS (objfile
, sec
)
3365 if (!strcmp (bfd_section_name (objfile
->obfd
, sec
->the_bfd_section
), args
))
3367 /* Now, check to see if the section is an overlay. */
3368 bfdsec
= sec
->the_bfd_section
;
3369 if (!section_is_overlay (bfdsec
))
3370 continue; /* not an overlay section */
3372 /* Mark the overlay as "mapped" */
3373 sec
->ovly_mapped
= 1;
3375 /* Next, make a pass and unmap any sections that are
3376 overlapped by this new section: */
3377 ALL_OBJSECTIONS (objfile2
, sec2
)
3378 if (sec2
->ovly_mapped
3380 && sec
->the_bfd_section
!= sec2
->the_bfd_section
3381 && sections_overlap (sec
->the_bfd_section
,
3382 sec2
->the_bfd_section
))
3385 printf_unfiltered (_("Note: section %s unmapped by overlap\n"),
3386 bfd_section_name (objfile
->obfd
,
3387 sec2
->the_bfd_section
));
3388 sec2
->ovly_mapped
= 0; /* sec2 overlaps sec: unmap sec2 */
3392 error (_("No overlay section called %s"), args
);
3395 /* Function: unmap_overlay_command
3396 Mark the overlay section as unmapped
3397 (ie. resident in its LMA address range, rather than the VMA range). */
3400 unmap_overlay_command (char *args
, int from_tty
)
3402 struct objfile
*objfile
;
3403 struct obj_section
*sec
;
3405 if (!overlay_debugging
)
3407 Overlay debugging not enabled. Use either the 'overlay auto' or\n\
3408 the 'overlay manual' command."));
3410 if (args
== 0 || *args
== 0)
3411 error (_("Argument required: name of an overlay section"));
3413 /* First, find a section matching the user supplied argument */
3414 ALL_OBJSECTIONS (objfile
, sec
)
3415 if (!strcmp (bfd_section_name (objfile
->obfd
, sec
->the_bfd_section
), args
))
3417 if (!sec
->ovly_mapped
)
3418 error (_("Section %s is not mapped"), args
);
3419 sec
->ovly_mapped
= 0;
3422 error (_("No overlay section called %s"), args
);
3425 /* Function: overlay_auto_command
3426 A utility command to turn on overlay debugging.
3427 Possibly this should be done via a set/show command. */
3430 overlay_auto_command (char *args
, int from_tty
)
3432 overlay_debugging
= ovly_auto
;
3433 enable_overlay_breakpoints ();
3435 printf_unfiltered (_("Automatic overlay debugging enabled."));
3438 /* Function: overlay_manual_command
3439 A utility command to turn on overlay debugging.
3440 Possibly this should be done via a set/show command. */
3443 overlay_manual_command (char *args
, int from_tty
)
3445 overlay_debugging
= ovly_on
;
3446 disable_overlay_breakpoints ();
3448 printf_unfiltered (_("Overlay debugging enabled."));
3451 /* Function: overlay_off_command
3452 A utility command to turn on overlay debugging.
3453 Possibly this should be done via a set/show command. */
3456 overlay_off_command (char *args
, int from_tty
)
3458 overlay_debugging
= ovly_off
;
3459 disable_overlay_breakpoints ();
3461 printf_unfiltered (_("Overlay debugging disabled."));
3465 overlay_load_command (char *args
, int from_tty
)
3467 if (target_overlay_update
)
3468 (*target_overlay_update
) (NULL
);
3470 error (_("This target does not know how to read its overlay state."));
3473 /* Function: overlay_command
3474 A place-holder for a mis-typed command */
3476 /* Command list chain containing all defined "overlay" subcommands. */
3477 struct cmd_list_element
*overlaylist
;
3480 overlay_command (char *args
, int from_tty
)
3483 ("\"overlay\" must be followed by the name of an overlay command.\n");
3484 help_list (overlaylist
, "overlay ", -1, gdb_stdout
);
3488 /* Target Overlays for the "Simplest" overlay manager:
3490 This is GDB's default target overlay layer. It works with the
3491 minimal overlay manager supplied as an example by Cygnus. The
3492 entry point is via a function pointer "target_overlay_update",
3493 so targets that use a different runtime overlay manager can
3494 substitute their own overlay_update function and take over the
3497 The overlay_update function pokes around in the target's data structures
3498 to see what overlays are mapped, and updates GDB's overlay mapping with
3501 In this simple implementation, the target data structures are as follows:
3502 unsigned _novlys; /# number of overlay sections #/
3503 unsigned _ovly_table[_novlys][4] = {
3504 {VMA, SIZE, LMA, MAPPED}, /# one entry per overlay section #/
3505 {..., ..., ..., ...},
3507 unsigned _novly_regions; /# number of overlay regions #/
3508 unsigned _ovly_region_table[_novly_regions][3] = {
3509 {VMA, SIZE, MAPPED_TO_LMA}, /# one entry per overlay region #/
3512 These functions will attempt to update GDB's mappedness state in the
3513 symbol section table, based on the target's mappedness state.
3515 To do this, we keep a cached copy of the target's _ovly_table, and
3516 attempt to detect when the cached copy is invalidated. The main
3517 entry point is "simple_overlay_update(SECT), which looks up SECT in
3518 the cached table and re-reads only the entry for that section from
3519 the target (whenever possible).
3522 /* Cached, dynamically allocated copies of the target data structures: */
3523 static unsigned (*cache_ovly_table
)[4] = 0;
3525 static unsigned (*cache_ovly_region_table
)[3] = 0;
3527 static unsigned cache_novlys
= 0;
3529 static unsigned cache_novly_regions
= 0;
3531 static CORE_ADDR cache_ovly_table_base
= 0;
3533 static CORE_ADDR cache_ovly_region_table_base
= 0;
3537 VMA
, SIZE
, LMA
, MAPPED
3539 #define TARGET_LONG_BYTES (TARGET_LONG_BIT / TARGET_CHAR_BIT)
3541 /* Throw away the cached copy of _ovly_table */
3543 simple_free_overlay_table (void)
3545 if (cache_ovly_table
)
3546 xfree (cache_ovly_table
);
3548 cache_ovly_table
= NULL
;
3549 cache_ovly_table_base
= 0;
3553 /* Throw away the cached copy of _ovly_region_table */
3555 simple_free_overlay_region_table (void)
3557 if (cache_ovly_region_table
)
3558 xfree (cache_ovly_region_table
);
3559 cache_novly_regions
= 0;
3560 cache_ovly_region_table
= NULL
;
3561 cache_ovly_region_table_base
= 0;
3565 /* Read an array of ints from the target into a local buffer.
3566 Convert to host order. int LEN is number of ints */
3568 read_target_long_array (CORE_ADDR memaddr
, unsigned int *myaddr
, int len
)
3570 /* FIXME (alloca): Not safe if array is very large. */
3571 gdb_byte
*buf
= alloca (len
* TARGET_LONG_BYTES
);
3574 read_memory (memaddr
, buf
, len
* TARGET_LONG_BYTES
);
3575 for (i
= 0; i
< len
; i
++)
3576 myaddr
[i
] = extract_unsigned_integer (TARGET_LONG_BYTES
* i
+ buf
,
3580 /* Find and grab a copy of the target _ovly_table
3581 (and _novlys, which is needed for the table's size) */
3583 simple_read_overlay_table (void)
3585 struct minimal_symbol
*novlys_msym
, *ovly_table_msym
;
3587 simple_free_overlay_table ();
3588 novlys_msym
= lookup_minimal_symbol ("_novlys", NULL
, NULL
);
3591 error (_("Error reading inferior's overlay table: "
3592 "couldn't find `_novlys' variable\n"
3593 "in inferior. Use `overlay manual' mode."));
3597 ovly_table_msym
= lookup_minimal_symbol ("_ovly_table", NULL
, NULL
);
3598 if (! ovly_table_msym
)
3600 error (_("Error reading inferior's overlay table: couldn't find "
3601 "`_ovly_table' array\n"
3602 "in inferior. Use `overlay manual' mode."));
3606 cache_novlys
= read_memory_integer (SYMBOL_VALUE_ADDRESS (novlys_msym
), 4);
3608 = (void *) xmalloc (cache_novlys
* sizeof (*cache_ovly_table
));
3609 cache_ovly_table_base
= SYMBOL_VALUE_ADDRESS (ovly_table_msym
);
3610 read_target_long_array (cache_ovly_table_base
,
3611 (unsigned int *) cache_ovly_table
,
3614 return 1; /* SUCCESS */
3618 /* Find and grab a copy of the target _ovly_region_table
3619 (and _novly_regions, which is needed for the table's size) */
3621 simple_read_overlay_region_table (void)
3623 struct minimal_symbol
*msym
;
3625 simple_free_overlay_region_table ();
3626 msym
= lookup_minimal_symbol ("_novly_regions", NULL
, NULL
);
3628 cache_novly_regions
= read_memory_integer (SYMBOL_VALUE_ADDRESS (msym
), 4);
3630 return 0; /* failure */
3631 cache_ovly_region_table
= (void *) xmalloc (cache_novly_regions
* 12);
3632 if (cache_ovly_region_table
!= NULL
)
3634 msym
= lookup_minimal_symbol ("_ovly_region_table", NULL
, NULL
);
3637 cache_ovly_region_table_base
= SYMBOL_VALUE_ADDRESS (msym
);
3638 read_target_long_array (cache_ovly_region_table_base
,
3639 (unsigned int *) cache_ovly_region_table
,
3640 cache_novly_regions
* 3);
3643 return 0; /* failure */
3646 return 0; /* failure */
3647 return 1; /* SUCCESS */
3651 /* Function: simple_overlay_update_1
3652 A helper function for simple_overlay_update. Assuming a cached copy
3653 of _ovly_table exists, look through it to find an entry whose vma,
3654 lma and size match those of OSECT. Re-read the entry and make sure
3655 it still matches OSECT (else the table may no longer be valid).
3656 Set OSECT's mapped state to match the entry. Return: 1 for
3657 success, 0 for failure. */
3660 simple_overlay_update_1 (struct obj_section
*osect
)
3663 bfd
*obfd
= osect
->objfile
->obfd
;
3664 asection
*bsect
= osect
->the_bfd_section
;
3666 size
= bfd_get_section_size (osect
->the_bfd_section
);
3667 for (i
= 0; i
< cache_novlys
; i
++)
3668 if (cache_ovly_table
[i
][VMA
] == bfd_section_vma (obfd
, bsect
)
3669 && cache_ovly_table
[i
][LMA
] == bfd_section_lma (obfd
, bsect
)
3670 /* && cache_ovly_table[i][SIZE] == size */ )
3672 read_target_long_array (cache_ovly_table_base
+ i
* TARGET_LONG_BYTES
,
3673 (unsigned int *) cache_ovly_table
[i
], 4);
3674 if (cache_ovly_table
[i
][VMA
] == bfd_section_vma (obfd
, bsect
)
3675 && cache_ovly_table
[i
][LMA
] == bfd_section_lma (obfd
, bsect
)
3676 /* && cache_ovly_table[i][SIZE] == size */ )
3678 osect
->ovly_mapped
= cache_ovly_table
[i
][MAPPED
];
3681 else /* Warning! Warning! Target's ovly table has changed! */
3687 /* Function: simple_overlay_update
3688 If OSECT is NULL, then update all sections' mapped state
3689 (after re-reading the entire target _ovly_table).
3690 If OSECT is non-NULL, then try to find a matching entry in the
3691 cached ovly_table and update only OSECT's mapped state.
3692 If a cached entry can't be found or the cache isn't valid, then
3693 re-read the entire cache, and go ahead and update all sections. */
3696 simple_overlay_update (struct obj_section
*osect
)
3698 struct objfile
*objfile
;
3700 /* Were we given an osect to look up? NULL means do all of them. */
3702 /* Have we got a cached copy of the target's overlay table? */
3703 if (cache_ovly_table
!= NULL
)
3704 /* Does its cached location match what's currently in the symtab? */
3705 if (cache_ovly_table_base
==
3706 SYMBOL_VALUE_ADDRESS (lookup_minimal_symbol ("_ovly_table", NULL
, NULL
)))
3707 /* Then go ahead and try to look up this single section in the cache */
3708 if (simple_overlay_update_1 (osect
))
3709 /* Found it! We're done. */
3712 /* Cached table no good: need to read the entire table anew.
3713 Or else we want all the sections, in which case it's actually
3714 more efficient to read the whole table in one block anyway. */
3716 if (! simple_read_overlay_table ())
3719 /* Now may as well update all sections, even if only one was requested. */
3720 ALL_OBJSECTIONS (objfile
, osect
)
3721 if (section_is_overlay (osect
->the_bfd_section
))
3724 bfd
*obfd
= osect
->objfile
->obfd
;
3725 asection
*bsect
= osect
->the_bfd_section
;
3727 size
= bfd_get_section_size (bsect
);
3728 for (i
= 0; i
< cache_novlys
; i
++)
3729 if (cache_ovly_table
[i
][VMA
] == bfd_section_vma (obfd
, bsect
)
3730 && cache_ovly_table
[i
][LMA
] == bfd_section_lma (obfd
, bsect
)
3731 /* && cache_ovly_table[i][SIZE] == size */ )
3732 { /* obj_section matches i'th entry in ovly_table */
3733 osect
->ovly_mapped
= cache_ovly_table
[i
][MAPPED
];
3734 break; /* finished with inner for loop: break out */
3739 /* Set the output sections and output offsets for section SECTP in
3740 ABFD. The relocation code in BFD will read these offsets, so we
3741 need to be sure they're initialized. We map each section to itself,
3742 with no offset; this means that SECTP->vma will be honored. */
3745 symfile_dummy_outputs (bfd
*abfd
, asection
*sectp
, void *dummy
)
3747 sectp
->output_section
= sectp
;
3748 sectp
->output_offset
= 0;
3751 /* Relocate the contents of a debug section SECTP in ABFD. The
3752 contents are stored in BUF if it is non-NULL, or returned in a
3753 malloc'd buffer otherwise.
3755 For some platforms and debug info formats, shared libraries contain
3756 relocations against the debug sections (particularly for DWARF-2;
3757 one affected platform is PowerPC GNU/Linux, although it depends on
3758 the version of the linker in use). Also, ELF object files naturally
3759 have unresolved relocations for their debug sections. We need to apply
3760 the relocations in order to get the locations of symbols correct. */
3763 symfile_relocate_debug_section (bfd
*abfd
, asection
*sectp
, bfd_byte
*buf
)
3765 /* We're only interested in debugging sections with relocation
3767 if ((sectp
->flags
& SEC_RELOC
) == 0)
3769 if ((sectp
->flags
& SEC_DEBUGGING
) == 0)
3772 /* We will handle section offsets properly elsewhere, so relocate as if
3773 all sections begin at 0. */
3774 bfd_map_over_sections (abfd
, symfile_dummy_outputs
, NULL
);
3776 return bfd_simple_get_relocated_section_contents (abfd
, sectp
, buf
, NULL
);
3780 _initialize_symfile (void)
3782 struct cmd_list_element
*c
;
3784 c
= add_cmd ("symbol-file", class_files
, symbol_file_command
, _("\
3785 Load symbol table from executable file FILE.\n\
3786 The `file' command can also load symbol tables, as well as setting the file\n\
3787 to execute."), &cmdlist
);
3788 set_cmd_completer (c
, filename_completer
);
3790 c
= add_cmd ("add-symbol-file", class_files
, add_symbol_file_command
, _("\
3791 Load symbols from FILE, assuming FILE has been dynamically loaded.\n\
3792 Usage: add-symbol-file FILE ADDR [-s <SECT> <SECT_ADDR> -s <SECT> <SECT_ADDR> ...]\n\
3793 ADDR is the starting address of the file's text.\n\
3794 The optional arguments are section-name section-address pairs and\n\
3795 should be specified if the data and bss segments are not contiguous\n\
3796 with the text. SECT is a section name to be loaded at SECT_ADDR."),
3798 set_cmd_completer (c
, filename_completer
);
3800 c
= add_cmd ("add-shared-symbol-files", class_files
,
3801 add_shared_symbol_files_command
, _("\
3802 Load the symbols from shared objects in the dynamic linker's link map."),
3804 c
= add_alias_cmd ("assf", "add-shared-symbol-files", class_files
, 1,
3807 c
= add_cmd ("load", class_files
, load_command
, _("\
3808 Dynamically load FILE into the running program, and record its symbols\n\
3809 for access from GDB.\n\
3810 A load OFFSET may also be given."), &cmdlist
);
3811 set_cmd_completer (c
, filename_completer
);
3813 add_setshow_boolean_cmd ("symbol-reloading", class_support
,
3814 &symbol_reloading
, _("\
3815 Set dynamic symbol table reloading multiple times in one run."), _("\
3816 Show dynamic symbol table reloading multiple times in one run."), NULL
,
3818 show_symbol_reloading
,
3819 &setlist
, &showlist
);
3821 add_prefix_cmd ("overlay", class_support
, overlay_command
,
3822 _("Commands for debugging overlays."), &overlaylist
,
3823 "overlay ", 0, &cmdlist
);
3825 add_com_alias ("ovly", "overlay", class_alias
, 1);
3826 add_com_alias ("ov", "overlay", class_alias
, 1);
3828 add_cmd ("map-overlay", class_support
, map_overlay_command
,
3829 _("Assert that an overlay section is mapped."), &overlaylist
);
3831 add_cmd ("unmap-overlay", class_support
, unmap_overlay_command
,
3832 _("Assert that an overlay section is unmapped."), &overlaylist
);
3834 add_cmd ("list-overlays", class_support
, list_overlays_command
,
3835 _("List mappings of overlay sections."), &overlaylist
);
3837 add_cmd ("manual", class_support
, overlay_manual_command
,
3838 _("Enable overlay debugging."), &overlaylist
);
3839 add_cmd ("off", class_support
, overlay_off_command
,
3840 _("Disable overlay debugging."), &overlaylist
);
3841 add_cmd ("auto", class_support
, overlay_auto_command
,
3842 _("Enable automatic overlay debugging."), &overlaylist
);
3843 add_cmd ("load-target", class_support
, overlay_load_command
,
3844 _("Read the overlay mapping state from the target."), &overlaylist
);
3846 /* Filename extension to source language lookup table: */
3847 init_filename_language_table ();
3848 add_setshow_string_noescape_cmd ("extension-language", class_files
,
3850 Set mapping between filename extension and source language."), _("\
3851 Show mapping between filename extension and source language."), _("\
3852 Usage: set extension-language .foo bar"),
3853 set_ext_lang_command
,
3855 &setlist
, &showlist
);
3857 add_info ("extensions", info_ext_lang_command
,
3858 _("All filename extensions associated with a source language."));
3860 debug_file_directory
= xstrdup (DEBUGDIR
);
3861 add_setshow_optional_filename_cmd ("debug-file-directory", class_support
,
3862 &debug_file_directory
, _("\
3863 Set the directory where separate debug symbols are searched for."), _("\
3864 Show the directory where separate debug symbols are searched for."), _("\
3865 Separate debug symbols are first searched for in the same\n\
3866 directory as the binary, then in the `" DEBUG_SUBDIRECTORY
"' subdirectory,\n\
3867 and lastly at the path of the directory of the binary with\n\
3868 the global debug-file directory prepended."),
3870 show_debug_file_directory
,
3871 &setlist
, &showlist
);