1 /* Generic symbol file reading for the GNU debugger, GDB.
3 Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
4 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
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 3 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, see <http://www.gnu.org/licenses/>. */
36 #include "breakpoint.h"
38 #include "complaints.h"
40 #include "inferior.h" /* for write_pc */
41 #include "filenames.h" /* for DOSish file names */
42 #include "gdb-stabs.h"
43 #include "gdb_obstack.h"
44 #include "completer.h"
47 #include "readline/readline.h"
48 #include "gdb_assert.h"
52 #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);
74 static void clear_symtab_users_cleanup (void *ignore
);
76 /* Global variables owned by this file */
77 int readnow_symbol_files
; /* Read full symbols immediately */
79 /* External variables and functions referenced. */
81 extern void report_transfer_performance (unsigned long, time_t, time_t);
83 /* Functions this file defines */
86 static int simple_read_overlay_region_table (void);
87 static void simple_free_overlay_region_table (void);
90 static void load_command (char *, int);
92 static void symbol_file_add_main_1 (char *args
, int from_tty
, int flags
);
94 static void add_symbol_file_command (char *, int);
96 static void add_shared_symbol_files_command (char *, int);
98 static void reread_separate_symbols (struct objfile
*objfile
);
100 static void cashier_psymtab (struct partial_symtab
*);
102 bfd
*symfile_bfd_open (char *);
104 int get_section_index (struct objfile
*, char *);
106 static struct sym_fns
*find_sym_fns (bfd
*);
108 static void decrement_reading_symtab (void *);
110 static void overlay_invalidate_all (void);
112 static int overlay_is_mapped (struct obj_section
*);
114 void list_overlays_command (char *, int);
116 void map_overlay_command (char *, int);
118 void unmap_overlay_command (char *, int);
120 static void overlay_auto_command (char *, int);
122 static void overlay_manual_command (char *, int);
124 static void overlay_off_command (char *, int);
126 static void overlay_load_command (char *, int);
128 static void overlay_command (char *, int);
130 static void simple_free_overlay_table (void);
132 static void read_target_long_array (CORE_ADDR
, unsigned int *, int);
134 static int simple_read_overlay_table (void);
136 static int simple_overlay_update_1 (struct obj_section
*);
138 static void add_filename_language (char *ext
, enum language lang
);
140 static void info_ext_lang_command (char *args
, int from_tty
);
142 static char *find_separate_debug_file (struct objfile
*objfile
);
144 static void init_filename_language_table (void);
146 static void symfile_find_segment_sections (struct objfile
*objfile
);
148 void _initialize_symfile (void);
150 /* List of all available sym_fns. On gdb startup, each object file reader
151 calls add_symtab_fns() to register information on each format it is
154 static struct sym_fns
*symtab_fns
= NULL
;
156 /* Flag for whether user will be reloading symbols multiple times.
157 Defaults to ON for VxWorks, otherwise OFF. */
159 #ifdef SYMBOL_RELOADING_DEFAULT
160 int symbol_reloading
= SYMBOL_RELOADING_DEFAULT
;
162 int symbol_reloading
= 0;
165 show_symbol_reloading (struct ui_file
*file
, int from_tty
,
166 struct cmd_list_element
*c
, const char *value
)
168 fprintf_filtered (file
, _("\
169 Dynamic symbol table reloading multiple times in one run is %s.\n"),
174 /* If non-zero, shared library symbols will be added automatically
175 when the inferior is created, new libraries are loaded, or when
176 attaching to the inferior. This is almost always what users will
177 want to have happen; but for very large programs, the startup time
178 will be excessive, and so if this is a problem, the user can clear
179 this flag and then add the shared library symbols as needed. Note
180 that there is a potential for confusion, since if the shared
181 library symbols are not loaded, commands like "info fun" will *not*
182 report all the functions that are actually present. */
184 int auto_solib_add
= 1;
186 /* For systems that support it, a threshold size in megabytes. If
187 automatically adding a new library's symbol table to those already
188 known to the debugger would cause the total shared library symbol
189 size to exceed this threshhold, then the shlib's symbols are not
190 added. The threshold is ignored if the user explicitly asks for a
191 shlib to be added, such as when using the "sharedlibrary"
194 int auto_solib_limit
;
197 /* This compares two partial symbols by names, using strcmp_iw_ordered
198 for the comparison. */
201 compare_psymbols (const void *s1p
, const void *s2p
)
203 struct partial_symbol
*const *s1
= s1p
;
204 struct partial_symbol
*const *s2
= s2p
;
206 return strcmp_iw_ordered (SYMBOL_SEARCH_NAME (*s1
),
207 SYMBOL_SEARCH_NAME (*s2
));
211 sort_pst_symbols (struct partial_symtab
*pst
)
213 /* Sort the global list; don't sort the static list */
215 qsort (pst
->objfile
->global_psymbols
.list
+ pst
->globals_offset
,
216 pst
->n_global_syms
, sizeof (struct partial_symbol
*),
220 /* Make a null terminated copy of the string at PTR with SIZE characters in
221 the obstack pointed to by OBSTACKP . Returns the address of the copy.
222 Note that the string at PTR does not have to be null terminated, I.E. it
223 may be part of a larger string and we are only saving a substring. */
226 obsavestring (const char *ptr
, int size
, struct obstack
*obstackp
)
228 char *p
= (char *) obstack_alloc (obstackp
, size
+ 1);
229 /* Open-coded memcpy--saves function call time. These strings are usually
230 short. FIXME: Is this really still true with a compiler that can
233 const char *p1
= ptr
;
235 const char *end
= ptr
+ size
;
243 /* Concatenate strings S1, S2 and S3; return the new string. Space is found
244 in the obstack pointed to by OBSTACKP. */
247 obconcat (struct obstack
*obstackp
, const char *s1
, const char *s2
,
250 int len
= strlen (s1
) + strlen (s2
) + strlen (s3
) + 1;
251 char *val
= (char *) obstack_alloc (obstackp
, len
);
258 /* True if we are nested inside psymtab_to_symtab. */
260 int currently_reading_symtab
= 0;
263 decrement_reading_symtab (void *dummy
)
265 currently_reading_symtab
--;
268 /* Get the symbol table that corresponds to a partial_symtab.
269 This is fast after the first time you do it. In fact, there
270 is an even faster macro PSYMTAB_TO_SYMTAB that does the fast
274 psymtab_to_symtab (struct partial_symtab
*pst
)
276 /* If it's been looked up before, return it. */
280 /* If it has not yet been read in, read it. */
283 struct cleanup
*back_to
= make_cleanup (decrement_reading_symtab
, NULL
);
284 currently_reading_symtab
++;
285 (*pst
->read_symtab
) (pst
);
286 do_cleanups (back_to
);
292 /* Remember the lowest-addressed loadable section we've seen.
293 This function is called via bfd_map_over_sections.
295 In case of equal vmas, the section with the largest size becomes the
296 lowest-addressed loadable section.
298 If the vmas and sizes are equal, the last section is considered the
299 lowest-addressed loadable section. */
302 find_lowest_section (bfd
*abfd
, asection
*sect
, void *obj
)
304 asection
**lowest
= (asection
**) obj
;
306 if (0 == (bfd_get_section_flags (abfd
, sect
) & SEC_LOAD
))
309 *lowest
= sect
; /* First loadable section */
310 else if (bfd_section_vma (abfd
, *lowest
) > bfd_section_vma (abfd
, sect
))
311 *lowest
= sect
; /* A lower loadable section */
312 else if (bfd_section_vma (abfd
, *lowest
) == bfd_section_vma (abfd
, sect
)
313 && (bfd_section_size (abfd
, (*lowest
))
314 <= bfd_section_size (abfd
, sect
)))
318 /* Create a new section_addr_info, with room for NUM_SECTIONS. */
320 struct section_addr_info
*
321 alloc_section_addr_info (size_t num_sections
)
323 struct section_addr_info
*sap
;
326 size
= (sizeof (struct section_addr_info
)
327 + sizeof (struct other_sections
) * (num_sections
- 1));
328 sap
= (struct section_addr_info
*) xmalloc (size
);
329 memset (sap
, 0, size
);
330 sap
->num_sections
= num_sections
;
336 /* Return a freshly allocated copy of ADDRS. The section names, if
337 any, are also freshly allocated copies of those in ADDRS. */
338 struct section_addr_info
*
339 copy_section_addr_info (struct section_addr_info
*addrs
)
341 struct section_addr_info
*copy
342 = alloc_section_addr_info (addrs
->num_sections
);
345 copy
->num_sections
= addrs
->num_sections
;
346 for (i
= 0; i
< addrs
->num_sections
; i
++)
348 copy
->other
[i
].addr
= addrs
->other
[i
].addr
;
349 if (addrs
->other
[i
].name
)
350 copy
->other
[i
].name
= xstrdup (addrs
->other
[i
].name
);
352 copy
->other
[i
].name
= NULL
;
353 copy
->other
[i
].sectindex
= addrs
->other
[i
].sectindex
;
361 /* Build (allocate and populate) a section_addr_info struct from
362 an existing section table. */
364 extern struct section_addr_info
*
365 build_section_addr_info_from_section_table (const struct section_table
*start
,
366 const struct section_table
*end
)
368 struct section_addr_info
*sap
;
369 const struct section_table
*stp
;
372 sap
= alloc_section_addr_info (end
- start
);
374 for (stp
= start
, oidx
= 0; stp
!= end
; stp
++)
376 if (bfd_get_section_flags (stp
->bfd
,
377 stp
->the_bfd_section
) & (SEC_ALLOC
| SEC_LOAD
)
378 && oidx
< end
- start
)
380 sap
->other
[oidx
].addr
= stp
->addr
;
381 sap
->other
[oidx
].name
382 = xstrdup (bfd_section_name (stp
->bfd
, stp
->the_bfd_section
));
383 sap
->other
[oidx
].sectindex
= stp
->the_bfd_section
->index
;
392 /* Free all memory allocated by build_section_addr_info_from_section_table. */
395 free_section_addr_info (struct section_addr_info
*sap
)
399 for (idx
= 0; idx
< sap
->num_sections
; idx
++)
400 if (sap
->other
[idx
].name
)
401 xfree (sap
->other
[idx
].name
);
406 /* Initialize OBJFILE's sect_index_* members. */
408 init_objfile_sect_indices (struct objfile
*objfile
)
413 sect
= bfd_get_section_by_name (objfile
->obfd
, ".text");
415 objfile
->sect_index_text
= sect
->index
;
417 sect
= bfd_get_section_by_name (objfile
->obfd
, ".data");
419 objfile
->sect_index_data
= sect
->index
;
421 sect
= bfd_get_section_by_name (objfile
->obfd
, ".bss");
423 objfile
->sect_index_bss
= sect
->index
;
425 sect
= bfd_get_section_by_name (objfile
->obfd
, ".rodata");
427 objfile
->sect_index_rodata
= sect
->index
;
429 /* This is where things get really weird... We MUST have valid
430 indices for the various sect_index_* members or gdb will abort.
431 So if for example, there is no ".text" section, we have to
432 accomodate that. First, check for a file with the standard
433 one or two segments. */
435 symfile_find_segment_sections (objfile
);
437 /* Except when explicitly adding symbol files at some address,
438 section_offsets contains nothing but zeros, so it doesn't matter
439 which slot in section_offsets the individual sect_index_* members
440 index into. So if they are all zero, it is safe to just point
441 all the currently uninitialized indices to the first slot. But
442 beware: if this is the main executable, it may be relocated
443 later, e.g. by the remote qOffsets packet, and then this will
444 be wrong! That's why we try segments first. */
446 for (i
= 0; i
< objfile
->num_sections
; i
++)
448 if (ANOFFSET (objfile
->section_offsets
, i
) != 0)
453 if (i
== objfile
->num_sections
)
455 if (objfile
->sect_index_text
== -1)
456 objfile
->sect_index_text
= 0;
457 if (objfile
->sect_index_data
== -1)
458 objfile
->sect_index_data
= 0;
459 if (objfile
->sect_index_bss
== -1)
460 objfile
->sect_index_bss
= 0;
461 if (objfile
->sect_index_rodata
== -1)
462 objfile
->sect_index_rodata
= 0;
466 /* The arguments to place_section. */
468 struct place_section_arg
470 struct section_offsets
*offsets
;
474 /* Find a unique offset to use for loadable section SECT if
475 the user did not provide an offset. */
478 place_section (bfd
*abfd
, asection
*sect
, void *obj
)
480 struct place_section_arg
*arg
= obj
;
481 CORE_ADDR
*offsets
= arg
->offsets
->offsets
, start_addr
;
483 ULONGEST align
= ((ULONGEST
) 1) << bfd_get_section_alignment (abfd
, sect
);
485 /* We are only interested in allocated sections. */
486 if ((bfd_get_section_flags (abfd
, sect
) & SEC_ALLOC
) == 0)
489 /* If the user specified an offset, honor it. */
490 if (offsets
[sect
->index
] != 0)
493 /* Otherwise, let's try to find a place for the section. */
494 start_addr
= (arg
->lowest
+ align
- 1) & -align
;
501 for (cur_sec
= abfd
->sections
; cur_sec
!= NULL
; cur_sec
= cur_sec
->next
)
503 int indx
= cur_sec
->index
;
504 CORE_ADDR cur_offset
;
506 /* We don't need to compare against ourself. */
510 /* We can only conflict with allocated sections. */
511 if ((bfd_get_section_flags (abfd
, cur_sec
) & SEC_ALLOC
) == 0)
514 /* If the section offset is 0, either the section has not been placed
515 yet, or it was the lowest section placed (in which case LOWEST
516 will be past its end). */
517 if (offsets
[indx
] == 0)
520 /* If this section would overlap us, then we must move up. */
521 if (start_addr
+ bfd_get_section_size (sect
) > offsets
[indx
]
522 && start_addr
< offsets
[indx
] + bfd_get_section_size (cur_sec
))
524 start_addr
= offsets
[indx
] + bfd_get_section_size (cur_sec
);
525 start_addr
= (start_addr
+ align
- 1) & -align
;
530 /* Otherwise, we appear to be OK. So far. */
535 offsets
[sect
->index
] = start_addr
;
536 arg
->lowest
= start_addr
+ bfd_get_section_size (sect
);
538 exec_set_section_address (bfd_get_filename (abfd
), sect
->index
, start_addr
);
541 /* Parse the user's idea of an offset for dynamic linking, into our idea
542 of how to represent it for fast symbol reading. This is the default
543 version of the sym_fns.sym_offsets function for symbol readers that
544 don't need to do anything special. It allocates a section_offsets table
545 for the objectfile OBJFILE and stuffs ADDR into all of the offsets. */
548 default_symfile_offsets (struct objfile
*objfile
,
549 struct section_addr_info
*addrs
)
553 objfile
->num_sections
= bfd_count_sections (objfile
->obfd
);
554 objfile
->section_offsets
= (struct section_offsets
*)
555 obstack_alloc (&objfile
->objfile_obstack
,
556 SIZEOF_N_SECTION_OFFSETS (objfile
->num_sections
));
557 memset (objfile
->section_offsets
, 0,
558 SIZEOF_N_SECTION_OFFSETS (objfile
->num_sections
));
560 /* Now calculate offsets for section that were specified by the
562 for (i
= 0; i
< addrs
->num_sections
&& addrs
->other
[i
].name
; i
++)
564 struct other_sections
*osp
;
566 osp
= &addrs
->other
[i
] ;
570 /* Record all sections in offsets */
571 /* The section_offsets in the objfile are here filled in using
573 (objfile
->section_offsets
)->offsets
[osp
->sectindex
] = osp
->addr
;
576 /* For relocatable files, all loadable sections will start at zero.
577 The zero is meaningless, so try to pick arbitrary addresses such
578 that no loadable sections overlap. This algorithm is quadratic,
579 but the number of sections in a single object file is generally
581 if ((bfd_get_file_flags (objfile
->obfd
) & (EXEC_P
| DYNAMIC
)) == 0)
583 struct place_section_arg arg
;
584 bfd
*abfd
= objfile
->obfd
;
586 CORE_ADDR lowest
= 0;
588 for (cur_sec
= abfd
->sections
; cur_sec
!= NULL
; cur_sec
= cur_sec
->next
)
589 /* We do not expect this to happen; just skip this step if the
590 relocatable file has a section with an assigned VMA. */
591 if (bfd_section_vma (abfd
, cur_sec
) != 0)
596 CORE_ADDR
*offsets
= objfile
->section_offsets
->offsets
;
598 /* Pick non-overlapping offsets for sections the user did not
600 arg
.offsets
= objfile
->section_offsets
;
602 bfd_map_over_sections (objfile
->obfd
, place_section
, &arg
);
604 /* Correctly filling in the section offsets is not quite
605 enough. Relocatable files have two properties that
606 (most) shared objects do not:
608 - Their debug information will contain relocations. Some
609 shared libraries do also, but many do not, so this can not
612 - If there are multiple code sections they will be loaded
613 at different relative addresses in memory than they are
614 in the objfile, since all sections in the file will start
617 Because GDB has very limited ability to map from an
618 address in debug info to the correct code section,
619 it relies on adding SECT_OFF_TEXT to things which might be
620 code. If we clear all the section offsets, and set the
621 section VMAs instead, then symfile_relocate_debug_section
622 will return meaningful debug information pointing at the
625 GDB has too many different data structures for section
626 addresses - a bfd, objfile, and so_list all have section
627 tables, as does exec_ops. Some of these could probably
630 for (cur_sec
= abfd
->sections
; cur_sec
!= NULL
;
631 cur_sec
= cur_sec
->next
)
633 if ((bfd_get_section_flags (abfd
, cur_sec
) & SEC_ALLOC
) == 0)
636 bfd_set_section_vma (abfd
, cur_sec
, offsets
[cur_sec
->index
]);
637 offsets
[cur_sec
->index
] = 0;
642 /* Remember the bfd indexes for the .text, .data, .bss and
644 init_objfile_sect_indices (objfile
);
648 /* Divide the file into segments, which are individual relocatable units.
649 This is the default version of the sym_fns.sym_segments function for
650 symbol readers that do not have an explicit representation of segments.
651 It assumes that object files do not have segments, and fully linked
652 files have a single segment. */
654 struct symfile_segment_data
*
655 default_symfile_segments (bfd
*abfd
)
659 struct symfile_segment_data
*data
;
662 /* Relocatable files contain enough information to position each
663 loadable section independently; they should not be relocated
665 if ((bfd_get_file_flags (abfd
) & (EXEC_P
| DYNAMIC
)) == 0)
668 /* Make sure there is at least one loadable section in the file. */
669 for (sect
= abfd
->sections
; sect
!= NULL
; sect
= sect
->next
)
671 if ((bfd_get_section_flags (abfd
, sect
) & SEC_ALLOC
) == 0)
679 low
= bfd_get_section_vma (abfd
, sect
);
680 high
= low
+ bfd_get_section_size (sect
);
682 data
= XZALLOC (struct symfile_segment_data
);
683 data
->num_segments
= 1;
684 data
->segment_bases
= XCALLOC (1, CORE_ADDR
);
685 data
->segment_sizes
= XCALLOC (1, CORE_ADDR
);
687 num_sections
= bfd_count_sections (abfd
);
688 data
->segment_info
= XCALLOC (num_sections
, int);
690 for (i
= 0, sect
= abfd
->sections
; sect
!= NULL
; i
++, sect
= sect
->next
)
694 if ((bfd_get_section_flags (abfd
, sect
) & SEC_ALLOC
) == 0)
697 vma
= bfd_get_section_vma (abfd
, sect
);
700 if (vma
+ bfd_get_section_size (sect
) > high
)
701 high
= vma
+ bfd_get_section_size (sect
);
703 data
->segment_info
[i
] = 1;
706 data
->segment_bases
[0] = low
;
707 data
->segment_sizes
[0] = high
- low
;
712 /* Process a symbol file, as either the main file or as a dynamically
715 OBJFILE is where the symbols are to be read from.
717 ADDRS is the list of section load addresses. If the user has given
718 an 'add-symbol-file' command, then this is the list of offsets and
719 addresses he or she provided as arguments to the command; or, if
720 we're handling a shared library, these are the actual addresses the
721 sections are loaded at, according to the inferior's dynamic linker
722 (as gleaned by GDB's shared library code). We convert each address
723 into an offset from the section VMA's as it appears in the object
724 file, and then call the file's sym_offsets function to convert this
725 into a format-specific offset table --- a `struct section_offsets'.
726 If ADDRS is non-zero, OFFSETS must be zero.
728 OFFSETS is a table of section offsets already in the right
729 format-specific representation. NUM_OFFSETS is the number of
730 elements present in OFFSETS->offsets. If OFFSETS is non-zero, we
731 assume this is the proper table the call to sym_offsets described
732 above would produce. Instead of calling sym_offsets, we just dump
733 it right into objfile->section_offsets. (When we're re-reading
734 symbols from an objfile, we don't have the original load address
735 list any more; all we have is the section offset table.) If
736 OFFSETS is non-zero, ADDRS must be zero.
738 MAINLINE is nonzero if this is the main symbol file, or zero if
739 it's an extra symbol file such as dynamically loaded code.
741 VERBO is nonzero if the caller has printed a verbose message about
742 the symbol reading (and complaints can be more terse about it). */
745 syms_from_objfile (struct objfile
*objfile
,
746 struct section_addr_info
*addrs
,
747 struct section_offsets
*offsets
,
752 struct section_addr_info
*local_addr
= NULL
;
753 struct cleanup
*old_chain
;
755 gdb_assert (! (addrs
&& offsets
));
757 init_entry_point_info (objfile
);
758 objfile
->sf
= find_sym_fns (objfile
->obfd
);
760 if (objfile
->sf
== NULL
)
761 return; /* No symbols. */
763 /* Make sure that partially constructed symbol tables will be cleaned up
764 if an error occurs during symbol reading. */
765 old_chain
= make_cleanup_free_objfile (objfile
);
767 /* If ADDRS and OFFSETS are both NULL, put together a dummy address
768 list. We now establish the convention that an addr of zero means
769 no load address was specified. */
770 if (! addrs
&& ! offsets
)
773 = alloc_section_addr_info (bfd_count_sections (objfile
->obfd
));
774 make_cleanup (xfree
, local_addr
);
778 /* Now either addrs or offsets is non-zero. */
782 /* We will modify the main symbol table, make sure that all its users
783 will be cleaned up if an error occurs during symbol reading. */
784 make_cleanup (clear_symtab_users_cleanup
, 0 /*ignore*/);
786 /* Since no error yet, throw away the old symbol table. */
788 if (symfile_objfile
!= NULL
)
790 free_objfile (symfile_objfile
);
791 symfile_objfile
= NULL
;
794 /* Currently we keep symbols from the add-symbol-file command.
795 If the user wants to get rid of them, they should do "symbol-file"
796 without arguments first. Not sure this is the best behavior
799 (*objfile
->sf
->sym_new_init
) (objfile
);
802 /* Convert addr into an offset rather than an absolute address.
803 We find the lowest address of a loaded segment in the objfile,
804 and assume that <addr> is where that got loaded.
806 We no longer warn if the lowest section is not a text segment (as
807 happens for the PA64 port. */
808 if (!mainline
&& addrs
&& addrs
->other
[0].name
)
810 asection
*lower_sect
;
812 CORE_ADDR lower_offset
;
815 /* Find lowest loadable section to be used as starting point for
816 continguous sections. FIXME!! won't work without call to find
817 .text first, but this assumes text is lowest section. */
818 lower_sect
= bfd_get_section_by_name (objfile
->obfd
, ".text");
819 if (lower_sect
== NULL
)
820 bfd_map_over_sections (objfile
->obfd
, find_lowest_section
,
822 if (lower_sect
== NULL
)
823 warning (_("no loadable sections found in added symbol-file %s"),
826 if ((bfd_get_section_flags (objfile
->obfd
, lower_sect
) & SEC_CODE
) == 0)
827 warning (_("Lowest section in %s is %s at %s"),
829 bfd_section_name (objfile
->obfd
, lower_sect
),
830 paddr (bfd_section_vma (objfile
->obfd
, lower_sect
)));
831 if (lower_sect
!= NULL
)
832 lower_offset
= bfd_section_vma (objfile
->obfd
, lower_sect
);
836 /* Calculate offsets for the loadable sections.
837 FIXME! Sections must be in order of increasing loadable section
838 so that contiguous sections can use the lower-offset!!!
840 Adjust offsets if the segments are not contiguous.
841 If the section is contiguous, its offset should be set to
842 the offset of the highest loadable section lower than it
843 (the loadable section directly below it in memory).
844 this_offset = lower_offset = lower_addr - lower_orig_addr */
846 for (i
= 0; i
< addrs
->num_sections
&& addrs
->other
[i
].name
; i
++)
848 if (addrs
->other
[i
].addr
!= 0)
850 sect
= bfd_get_section_by_name (objfile
->obfd
,
851 addrs
->other
[i
].name
);
855 -= bfd_section_vma (objfile
->obfd
, sect
);
856 lower_offset
= addrs
->other
[i
].addr
;
857 /* This is the index used by BFD. */
858 addrs
->other
[i
].sectindex
= sect
->index
;
862 warning (_("section %s not found in %s"),
863 addrs
->other
[i
].name
,
865 addrs
->other
[i
].addr
= 0;
869 addrs
->other
[i
].addr
= lower_offset
;
873 /* Initialize symbol reading routines for this objfile, allow complaints to
874 appear for this new file, and record how verbose to be, then do the
875 initial symbol reading for this file. */
877 (*objfile
->sf
->sym_init
) (objfile
);
878 clear_complaints (&symfile_complaints
, 1, verbo
);
881 (*objfile
->sf
->sym_offsets
) (objfile
, addrs
);
884 size_t size
= SIZEOF_N_SECTION_OFFSETS (num_offsets
);
886 /* Just copy in the offset table directly as given to us. */
887 objfile
->num_sections
= num_offsets
;
888 objfile
->section_offsets
889 = ((struct section_offsets
*)
890 obstack_alloc (&objfile
->objfile_obstack
, size
));
891 memcpy (objfile
->section_offsets
, offsets
, size
);
893 init_objfile_sect_indices (objfile
);
896 #ifndef DEPRECATED_IBM6000_TARGET
897 /* This is a SVR4/SunOS specific hack, I think. In any event, it
898 screws RS/6000. sym_offsets should be doing this sort of thing,
899 because it knows the mapping between bfd sections and
901 /* This is a hack. As far as I can tell, section offsets are not
902 target dependent. They are all set to addr with a couple of
903 exceptions. The exceptions are sysvr4 shared libraries, whose
904 offsets are kept in solib structures anyway and rs6000 xcoff
905 which handles shared libraries in a completely unique way.
907 Section offsets are built similarly, except that they are built
908 by adding addr in all cases because there is no clear mapping
909 from section_offsets into actual sections. Note that solib.c
910 has a different algorithm for finding section offsets.
912 These should probably all be collapsed into some target
913 independent form of shared library support. FIXME. */
917 struct obj_section
*s
;
919 /* Map section offsets in "addr" back to the object's
920 sections by comparing the section names with bfd's
921 section names. Then adjust the section address by
922 the offset. */ /* for gdb/13815 */
924 ALL_OBJFILE_OSECTIONS (objfile
, s
)
926 CORE_ADDR s_addr
= 0;
930 !s_addr
&& i
< addrs
->num_sections
&& addrs
->other
[i
].name
;
932 if (strcmp (bfd_section_name (s
->objfile
->obfd
,
934 addrs
->other
[i
].name
) == 0)
935 s_addr
= addrs
->other
[i
].addr
; /* end added for gdb/13815 */
937 s
->addr
-= s
->offset
;
939 s
->endaddr
-= s
->offset
;
940 s
->endaddr
+= s_addr
;
944 #endif /* not DEPRECATED_IBM6000_TARGET */
946 (*objfile
->sf
->sym_read
) (objfile
, mainline
);
948 /* Don't allow char * to have a typename (else would get caddr_t).
949 Ditto void *. FIXME: Check whether this is now done by all the
950 symbol readers themselves (many of them now do), and if so remove
953 TYPE_NAME (lookup_pointer_type (builtin_type_char
)) = 0;
954 TYPE_NAME (lookup_pointer_type (builtin_type_void
)) = 0;
956 /* Mark the objfile has having had initial symbol read attempted. Note
957 that this does not mean we found any symbols... */
959 objfile
->flags
|= OBJF_SYMS
;
961 /* Discard cleanups as symbol reading was successful. */
963 discard_cleanups (old_chain
);
966 /* Perform required actions after either reading in the initial
967 symbols for a new objfile, or mapping in the symbols from a reusable
971 new_symfile_objfile (struct objfile
*objfile
, int mainline
, int verbo
)
974 /* If this is the main symbol file we have to clean up all users of the
975 old main symbol file. Otherwise it is sufficient to fixup all the
976 breakpoints that may have been redefined by this symbol file. */
979 /* OK, make it the "real" symbol file. */
980 symfile_objfile
= objfile
;
982 clear_symtab_users ();
986 breakpoint_re_set ();
989 /* We're done reading the symbol file; finish off complaints. */
990 clear_complaints (&symfile_complaints
, 0, verbo
);
993 /* Process a symbol file, as either the main file or as a dynamically
996 ABFD is a BFD already open on the file, as from symfile_bfd_open.
997 This BFD will be closed on error, and is always consumed by this function.
999 FROM_TTY says how verbose to be.
1001 MAINLINE specifies whether this is the main symbol file, or whether
1002 it's an extra symbol file such as dynamically loaded code.
1004 ADDRS, OFFSETS, and NUM_OFFSETS are as described for
1005 syms_from_objfile, above. ADDRS is ignored when MAINLINE is
1008 Upon success, returns a pointer to the objfile that was added.
1009 Upon failure, jumps back to command level (never returns). */
1010 static struct objfile
*
1011 symbol_file_add_with_addrs_or_offsets (bfd
*abfd
, int from_tty
,
1012 struct section_addr_info
*addrs
,
1013 struct section_offsets
*offsets
,
1015 int mainline
, int flags
)
1017 struct objfile
*objfile
;
1018 struct partial_symtab
*psymtab
;
1019 char *debugfile
= NULL
;
1020 struct section_addr_info
*orig_addrs
= NULL
;
1021 struct cleanup
*my_cleanups
;
1022 const char *name
= bfd_get_filename (abfd
);
1024 my_cleanups
= make_cleanup_bfd_close (abfd
);
1026 /* Give user a chance to burp if we'd be
1027 interactively wiping out any existing symbols. */
1029 if ((have_full_symbols () || have_partial_symbols ())
1032 && !query ("Load new symbol table from \"%s\"? ", name
))
1033 error (_("Not confirmed."));
1035 objfile
= allocate_objfile (abfd
, flags
);
1036 discard_cleanups (my_cleanups
);
1040 orig_addrs
= copy_section_addr_info (addrs
);
1041 make_cleanup_free_section_addr_info (orig_addrs
);
1044 /* We either created a new mapped symbol table, mapped an existing
1045 symbol table file which has not had initial symbol reading
1046 performed, or need to read an unmapped symbol table. */
1047 if (from_tty
|| info_verbose
)
1049 if (deprecated_pre_add_symbol_hook
)
1050 deprecated_pre_add_symbol_hook (name
);
1053 printf_unfiltered (_("Reading symbols from %s..."), name
);
1055 gdb_flush (gdb_stdout
);
1058 syms_from_objfile (objfile
, addrs
, offsets
, num_offsets
,
1059 mainline
, from_tty
);
1061 /* We now have at least a partial symbol table. Check to see if the
1062 user requested that all symbols be read on initial access via either
1063 the gdb startup command line or on a per symbol file basis. Expand
1064 all partial symbol tables for this objfile if so. */
1066 if ((flags
& OBJF_READNOW
) || readnow_symbol_files
)
1068 if (from_tty
|| info_verbose
)
1070 printf_unfiltered (_("expanding to full symbols..."));
1072 gdb_flush (gdb_stdout
);
1075 for (psymtab
= objfile
->psymtabs
;
1077 psymtab
= psymtab
->next
)
1079 psymtab_to_symtab (psymtab
);
1083 /* If the file has its own symbol tables it has no separate debug info.
1084 `.dynsym'/`.symtab' go to MSYMBOLS, `.debug_info' goes to SYMTABS/PSYMTABS.
1085 `.gnu_debuglink' may no longer be present with `.note.gnu.build-id'. */
1086 if (objfile
->psymtabs
== NULL
)
1087 debugfile
= find_separate_debug_file (objfile
);
1092 objfile
->separate_debug_objfile
1093 = symbol_file_add (debugfile
, from_tty
, orig_addrs
, 0, flags
);
1097 objfile
->separate_debug_objfile
1098 = symbol_file_add (debugfile
, from_tty
, NULL
, 0, flags
);
1100 objfile
->separate_debug_objfile
->separate_debug_objfile_backlink
1103 /* Put the separate debug object before the normal one, this is so that
1104 usage of the ALL_OBJFILES_SAFE macro will stay safe. */
1105 put_objfile_before (objfile
->separate_debug_objfile
, objfile
);
1110 if (!have_partial_symbols () && !have_full_symbols ())
1113 printf_filtered (_("(no debugging symbols found)"));
1114 if (from_tty
|| info_verbose
)
1115 printf_filtered ("...");
1117 printf_filtered ("\n");
1121 if (from_tty
|| info_verbose
)
1123 if (deprecated_post_add_symbol_hook
)
1124 deprecated_post_add_symbol_hook ();
1127 printf_unfiltered (_("done.\n"));
1131 /* We print some messages regardless of whether 'from_tty ||
1132 info_verbose' is true, so make sure they go out at the right
1134 gdb_flush (gdb_stdout
);
1136 do_cleanups (my_cleanups
);
1138 if (objfile
->sf
== NULL
)
1139 return objfile
; /* No symbols. */
1141 new_symfile_objfile (objfile
, mainline
, from_tty
);
1143 observer_notify_new_objfile (objfile
);
1145 bfd_cache_close_all ();
1150 /* Process the symbol file ABFD, as either the main file or as a
1151 dynamically loaded file.
1153 See symbol_file_add_with_addrs_or_offsets's comments for
1156 symbol_file_add_from_bfd (bfd
*abfd
, int from_tty
,
1157 struct section_addr_info
*addrs
,
1158 int mainline
, int flags
)
1160 return symbol_file_add_with_addrs_or_offsets (abfd
,
1161 from_tty
, addrs
, 0, 0,
1166 /* Process a symbol file, as either the main file or as a dynamically
1167 loaded file. See symbol_file_add_with_addrs_or_offsets's comments
1170 symbol_file_add (char *name
, int from_tty
, struct section_addr_info
*addrs
,
1171 int mainline
, int flags
)
1173 return symbol_file_add_from_bfd (symfile_bfd_open (name
), from_tty
,
1174 addrs
, mainline
, flags
);
1178 /* Call symbol_file_add() with default values and update whatever is
1179 affected by the loading of a new main().
1180 Used when the file is supplied in the gdb command line
1181 and by some targets with special loading requirements.
1182 The auxiliary function, symbol_file_add_main_1(), has the flags
1183 argument for the switches that can only be specified in the symbol_file
1187 symbol_file_add_main (char *args
, int from_tty
)
1189 symbol_file_add_main_1 (args
, from_tty
, 0);
1193 symbol_file_add_main_1 (char *args
, int from_tty
, int flags
)
1195 symbol_file_add (args
, from_tty
, NULL
, 1, flags
);
1197 /* Getting new symbols may change our opinion about
1198 what is frameless. */
1199 reinit_frame_cache ();
1201 set_initial_language ();
1205 symbol_file_clear (int from_tty
)
1207 if ((have_full_symbols () || have_partial_symbols ())
1210 ? !query (_("Discard symbol table from `%s'? "),
1211 symfile_objfile
->name
)
1212 : !query (_("Discard symbol table? "))))
1213 error (_("Not confirmed."));
1214 free_all_objfiles ();
1216 /* solib descriptors may have handles to objfiles. Since their
1217 storage has just been released, we'd better wipe the solib
1218 descriptors as well.
1220 #if defined(SOLIB_RESTART)
1224 symfile_objfile
= NULL
;
1226 printf_unfiltered (_("No symbol file now.\n"));
1235 /* Locate NT_GNU_BUILD_ID from ABFD and return its content. */
1237 static struct build_id
*
1238 build_id_bfd_get (bfd
*abfd
)
1240 struct build_id
*retval
;
1242 if (!bfd_check_format (abfd
, bfd_object
)
1243 || bfd_get_flavour (abfd
) != bfd_target_elf_flavour
1244 || elf_tdata (abfd
)->build_id
== NULL
)
1247 retval
= xmalloc (sizeof *retval
- 1 + elf_tdata (abfd
)->build_id_size
);
1248 retval
->size
= elf_tdata (abfd
)->build_id_size
;
1249 memcpy (retval
->data
, elf_tdata (abfd
)->build_id
, retval
->size
);
1254 /* Return if FILENAME has NT_GNU_BUILD_ID matching the CHECK value. */
1257 build_id_verify (const char *filename
, struct build_id
*check
)
1260 struct build_id
*found
= NULL
;
1263 /* We expect to be silent on the non-existing files. */
1264 abfd
= bfd_openr (filename
, gnutarget
);
1268 found
= build_id_bfd_get (abfd
);
1271 warning (_("File \"%s\" has no build-id, file skipped"), filename
);
1272 else if (found
->size
!= check
->size
1273 || memcmp (found
->data
, check
->data
, found
->size
) != 0)
1274 warning (_("File \"%s\" has a different build-id, file skipped"), filename
);
1278 if (!bfd_close (abfd
))
1279 warning (_("cannot close \"%s\": %s"), filename
,
1280 bfd_errmsg (bfd_get_error ()));
1285 build_id_to_debug_filename (struct build_id
*build_id
)
1287 char *link
, *s
, *retval
= NULL
;
1288 gdb_byte
*data
= build_id
->data
;
1289 size_t size
= build_id
->size
;
1291 /* DEBUG_FILE_DIRECTORY/.build-id/ab/cdef */
1292 link
= xmalloc (strlen (debug_file_directory
) + (sizeof "/.build-id/" - 1) + 1
1293 + 2 * size
+ (sizeof ".debug" - 1) + 1);
1294 s
= link
+ sprintf (link
, "%s/.build-id/", debug_file_directory
);
1298 s
+= sprintf (s
, "%02x", (unsigned) *data
++);
1303 s
+= sprintf (s
, "%02x", (unsigned) *data
++);
1304 strcpy (s
, ".debug");
1306 /* lrealpath() is expensive even for the usually non-existent files. */
1307 if (access (link
, F_OK
) == 0)
1308 retval
= lrealpath (link
);
1311 if (retval
!= NULL
&& !build_id_verify (retval
, build_id
))
1321 get_debug_link_info (struct objfile
*objfile
, unsigned long *crc32_out
)
1324 bfd_size_type debuglink_size
;
1325 unsigned long crc32
;
1330 sect
= bfd_get_section_by_name (objfile
->obfd
, ".gnu_debuglink");
1335 debuglink_size
= bfd_section_size (objfile
->obfd
, sect
);
1337 contents
= xmalloc (debuglink_size
);
1338 bfd_get_section_contents (objfile
->obfd
, sect
, contents
,
1339 (file_ptr
)0, (bfd_size_type
)debuglink_size
);
1341 /* Crc value is stored after the filename, aligned up to 4 bytes. */
1342 crc_offset
= strlen (contents
) + 1;
1343 crc_offset
= (crc_offset
+ 3) & ~3;
1345 crc32
= bfd_get_32 (objfile
->obfd
, (bfd_byte
*) (contents
+ crc_offset
));
1352 separate_debug_file_exists (const char *name
, unsigned long crc
)
1354 unsigned long file_crc
= 0;
1356 gdb_byte buffer
[8*1024];
1359 fd
= open (name
, O_RDONLY
| O_BINARY
);
1363 while ((count
= read (fd
, buffer
, sizeof (buffer
))) > 0)
1364 file_crc
= gnu_debuglink_crc32 (file_crc
, buffer
, count
);
1368 return crc
== file_crc
;
1371 char *debug_file_directory
= NULL
;
1373 show_debug_file_directory (struct ui_file
*file
, int from_tty
,
1374 struct cmd_list_element
*c
, const char *value
)
1376 fprintf_filtered (file
, _("\
1377 The directory where separate debug symbols are searched for is \"%s\".\n"),
1381 #if ! defined (DEBUG_SUBDIRECTORY)
1382 #define DEBUG_SUBDIRECTORY ".debug"
1386 find_separate_debug_file (struct objfile
*objfile
)
1394 bfd_size_type debuglink_size
;
1395 unsigned long crc32
;
1397 struct build_id
*build_id
;
1399 build_id
= build_id_bfd_get (objfile
->obfd
);
1400 if (build_id
!= NULL
)
1402 char *build_id_name
;
1404 build_id_name
= build_id_to_debug_filename (build_id
);
1406 /* Prevent looping on a stripped .debug file. */
1407 if (build_id_name
!= NULL
&& strcmp (build_id_name
, objfile
->name
) == 0)
1409 warning (_("\"%s\": separate debug info file has no debug info"),
1411 xfree (build_id_name
);
1413 else if (build_id_name
!= NULL
)
1414 return build_id_name
;
1417 basename
= get_debug_link_info (objfile
, &crc32
);
1419 if (basename
== NULL
)
1422 dir
= xstrdup (objfile
->name
);
1424 /* Strip off the final filename part, leaving the directory name,
1425 followed by a slash. Objfile names should always be absolute and
1426 tilde-expanded, so there should always be a slash in there
1428 for (i
= strlen(dir
) - 1; i
>= 0; i
--)
1430 if (IS_DIR_SEPARATOR (dir
[i
]))
1433 gdb_assert (i
>= 0 && IS_DIR_SEPARATOR (dir
[i
]));
1436 debugfile
= alloca (strlen (debug_file_directory
) + 1
1438 + strlen (DEBUG_SUBDIRECTORY
)
1443 /* First try in the same directory as the original file. */
1444 strcpy (debugfile
, dir
);
1445 strcat (debugfile
, basename
);
1447 if (separate_debug_file_exists (debugfile
, crc32
))
1451 return xstrdup (debugfile
);
1454 /* Then try in the subdirectory named DEBUG_SUBDIRECTORY. */
1455 strcpy (debugfile
, dir
);
1456 strcat (debugfile
, DEBUG_SUBDIRECTORY
);
1457 strcat (debugfile
, "/");
1458 strcat (debugfile
, basename
);
1460 if (separate_debug_file_exists (debugfile
, crc32
))
1464 return xstrdup (debugfile
);
1467 /* Then try in the global debugfile directory. */
1468 strcpy (debugfile
, debug_file_directory
);
1469 strcat (debugfile
, "/");
1470 strcat (debugfile
, dir
);
1471 strcat (debugfile
, basename
);
1473 if (separate_debug_file_exists (debugfile
, crc32
))
1477 return xstrdup (debugfile
);
1480 /* If the file is in the sysroot, try using its base path in the
1481 global debugfile directory. */
1482 canon_name
= lrealpath (dir
);
1484 && strncmp (canon_name
, gdb_sysroot
, strlen (gdb_sysroot
)) == 0
1485 && IS_DIR_SEPARATOR (canon_name
[strlen (gdb_sysroot
)]))
1487 strcpy (debugfile
, debug_file_directory
);
1488 strcat (debugfile
, canon_name
+ strlen (gdb_sysroot
));
1489 strcat (debugfile
, "/");
1490 strcat (debugfile
, basename
);
1492 if (separate_debug_file_exists (debugfile
, crc32
))
1497 return xstrdup (debugfile
);
1510 /* This is the symbol-file command. Read the file, analyze its
1511 symbols, and add a struct symtab to a symtab list. The syntax of
1512 the command is rather bizarre:
1514 1. The function buildargv implements various quoting conventions
1515 which are undocumented and have little or nothing in common with
1516 the way things are quoted (or not quoted) elsewhere in GDB.
1518 2. Options are used, which are not generally used in GDB (perhaps
1519 "set mapped on", "set readnow on" would be better)
1521 3. The order of options matters, which is contrary to GNU
1522 conventions (because it is confusing and inconvenient). */
1525 symbol_file_command (char *args
, int from_tty
)
1531 symbol_file_clear (from_tty
);
1535 char **argv
= buildargv (args
);
1536 int flags
= OBJF_USERLOADED
;
1537 struct cleanup
*cleanups
;
1543 cleanups
= make_cleanup_freeargv (argv
);
1544 while (*argv
!= NULL
)
1546 if (strcmp (*argv
, "-readnow") == 0)
1547 flags
|= OBJF_READNOW
;
1548 else if (**argv
== '-')
1549 error (_("unknown option `%s'"), *argv
);
1552 symbol_file_add_main_1 (*argv
, from_tty
, flags
);
1560 error (_("no symbol file name was specified"));
1562 do_cleanups (cleanups
);
1566 /* Set the initial language.
1568 FIXME: A better solution would be to record the language in the
1569 psymtab when reading partial symbols, and then use it (if known) to
1570 set the language. This would be a win for formats that encode the
1571 language in an easily discoverable place, such as DWARF. For
1572 stabs, we can jump through hoops looking for specially named
1573 symbols or try to intuit the language from the specific type of
1574 stabs we find, but we can't do that until later when we read in
1578 set_initial_language (void)
1580 struct partial_symtab
*pst
;
1581 enum language lang
= language_unknown
;
1583 pst
= find_main_psymtab ();
1586 if (pst
->filename
!= NULL
)
1587 lang
= deduce_language_from_filename (pst
->filename
);
1589 if (lang
== language_unknown
)
1591 /* Make C the default language */
1595 set_language (lang
);
1596 expected_language
= current_language
; /* Don't warn the user. */
1600 /* Open the file specified by NAME and hand it off to BFD for
1601 preliminary analysis. Return a newly initialized bfd *, which
1602 includes a newly malloc'd` copy of NAME (tilde-expanded and made
1603 absolute). In case of trouble, error() is called. */
1606 symfile_bfd_open (char *name
)
1610 char *absolute_name
;
1612 name
= tilde_expand (name
); /* Returns 1st new malloc'd copy. */
1614 /* Look down path for it, allocate 2nd new malloc'd copy. */
1615 desc
= openp (getenv ("PATH"), OPF_TRY_CWD_FIRST
, name
,
1616 O_RDONLY
| O_BINARY
, 0, &absolute_name
);
1617 #if defined(__GO32__) || defined(_WIN32) || defined (__CYGWIN__)
1620 char *exename
= alloca (strlen (name
) + 5);
1621 strcat (strcpy (exename
, name
), ".exe");
1622 desc
= openp (getenv ("PATH"), OPF_TRY_CWD_FIRST
, exename
,
1623 O_RDONLY
| O_BINARY
, 0, &absolute_name
);
1628 make_cleanup (xfree
, name
);
1629 perror_with_name (name
);
1632 /* Free 1st new malloc'd copy, but keep the 2nd malloc'd copy in
1633 bfd. It'll be freed in free_objfile(). */
1635 name
= absolute_name
;
1637 sym_bfd
= bfd_fopen (name
, gnutarget
, FOPEN_RB
, desc
);
1641 make_cleanup (xfree
, name
);
1642 error (_("\"%s\": can't open to read symbols: %s."), name
,
1643 bfd_errmsg (bfd_get_error ()));
1645 bfd_set_cacheable (sym_bfd
, 1);
1647 if (!bfd_check_format (sym_bfd
, bfd_object
))
1649 /* FIXME: should be checking for errors from bfd_close (for one
1650 thing, on error it does not free all the storage associated
1652 bfd_close (sym_bfd
); /* This also closes desc. */
1653 make_cleanup (xfree
, name
);
1654 error (_("\"%s\": can't read symbols: %s."), name
,
1655 bfd_errmsg (bfd_get_error ()));
1661 /* Return the section index for SECTION_NAME on OBJFILE. Return -1 if
1662 the section was not found. */
1665 get_section_index (struct objfile
*objfile
, char *section_name
)
1667 asection
*sect
= bfd_get_section_by_name (objfile
->obfd
, section_name
);
1675 /* Link SF into the global symtab_fns list. Called on startup by the
1676 _initialize routine in each object file format reader, to register
1677 information about each format the the reader is prepared to
1681 add_symtab_fns (struct sym_fns
*sf
)
1683 sf
->next
= symtab_fns
;
1687 /* Initialize OBJFILE to read symbols from its associated BFD. It
1688 either returns or calls error(). The result is an initialized
1689 struct sym_fns in the objfile structure, that contains cached
1690 information about the symbol file. */
1692 static struct sym_fns
*
1693 find_sym_fns (bfd
*abfd
)
1696 enum bfd_flavour our_flavour
= bfd_get_flavour (abfd
);
1698 if (our_flavour
== bfd_target_srec_flavour
1699 || our_flavour
== bfd_target_ihex_flavour
1700 || our_flavour
== bfd_target_tekhex_flavour
)
1701 return NULL
; /* No symbols. */
1703 for (sf
= symtab_fns
; sf
!= NULL
; sf
= sf
->next
)
1704 if (our_flavour
== sf
->sym_flavour
)
1707 error (_("I'm sorry, Dave, I can't do that. Symbol format `%s' unknown."),
1708 bfd_get_target (abfd
));
1712 /* This function runs the load command of our current target. */
1715 load_command (char *arg
, int from_tty
)
1722 parg
= arg
= get_exec_file (1);
1724 /* Count how many \ " ' tab space there are in the name. */
1725 while ((parg
= strpbrk (parg
, "\\\"'\t ")))
1733 /* We need to quote this string so buildargv can pull it apart. */
1734 char *temp
= xmalloc (strlen (arg
) + count
+ 1 );
1738 make_cleanup (xfree
, temp
);
1741 while ((parg
= strpbrk (parg
, "\\\"'\t ")))
1743 strncpy (ptemp
, prev
, parg
- prev
);
1744 ptemp
+= parg
- prev
;
1748 strcpy (ptemp
, prev
);
1754 /* The user might be reloading because the binary has changed. Take
1755 this opportunity to check. */
1756 reopen_exec_file ();
1759 target_load (arg
, from_tty
);
1761 /* After re-loading the executable, we don't really know which
1762 overlays are mapped any more. */
1763 overlay_cache_invalid
= 1;
1766 /* This version of "load" should be usable for any target. Currently
1767 it is just used for remote targets, not inftarg.c or core files,
1768 on the theory that only in that case is it useful.
1770 Avoiding xmodem and the like seems like a win (a) because we don't have
1771 to worry about finding it, and (b) On VMS, fork() is very slow and so
1772 we don't want to run a subprocess. On the other hand, I'm not sure how
1773 performance compares. */
1775 static int validate_download
= 0;
1777 /* Callback service function for generic_load (bfd_map_over_sections). */
1780 add_section_size_callback (bfd
*abfd
, asection
*asec
, void *data
)
1782 bfd_size_type
*sum
= data
;
1784 *sum
+= bfd_get_section_size (asec
);
1787 /* Opaque data for load_section_callback. */
1788 struct load_section_data
{
1789 unsigned long load_offset
;
1790 struct load_progress_data
*progress_data
;
1791 VEC(memory_write_request_s
) *requests
;
1794 /* Opaque data for load_progress. */
1795 struct load_progress_data
{
1796 /* Cumulative data. */
1797 unsigned long write_count
;
1798 unsigned long data_count
;
1799 bfd_size_type total_size
;
1802 /* Opaque data for load_progress for a single section. */
1803 struct load_progress_section_data
{
1804 struct load_progress_data
*cumulative
;
1806 /* Per-section data. */
1807 const char *section_name
;
1808 ULONGEST section_sent
;
1809 ULONGEST section_size
;
1814 /* Target write callback routine for progress reporting. */
1817 load_progress (ULONGEST bytes
, void *untyped_arg
)
1819 struct load_progress_section_data
*args
= untyped_arg
;
1820 struct load_progress_data
*totals
;
1823 /* Writing padding data. No easy way to get at the cumulative
1824 stats, so just ignore this. */
1827 totals
= args
->cumulative
;
1829 if (bytes
== 0 && args
->section_sent
== 0)
1831 /* The write is just starting. Let the user know we've started
1833 ui_out_message (uiout
, 0, "Loading section %s, size 0x%s lma 0x%s\n",
1834 args
->section_name
, paddr_nz (args
->section_size
),
1835 paddr_nz (args
->lma
));
1839 if (validate_download
)
1841 /* Broken memories and broken monitors manifest themselves here
1842 when bring new computers to life. This doubles already slow
1844 /* NOTE: cagney/1999-10-18: A more efficient implementation
1845 might add a verify_memory() method to the target vector and
1846 then use that. remote.c could implement that method using
1847 the ``qCRC'' packet. */
1848 gdb_byte
*check
= xmalloc (bytes
);
1849 struct cleanup
*verify_cleanups
= make_cleanup (xfree
, check
);
1851 if (target_read_memory (args
->lma
, check
, bytes
) != 0)
1852 error (_("Download verify read failed at 0x%s"),
1854 if (memcmp (args
->buffer
, check
, bytes
) != 0)
1855 error (_("Download verify compare failed at 0x%s"),
1857 do_cleanups (verify_cleanups
);
1859 totals
->data_count
+= bytes
;
1861 args
->buffer
+= bytes
;
1862 totals
->write_count
+= 1;
1863 args
->section_sent
+= bytes
;
1865 || (deprecated_ui_load_progress_hook
!= NULL
1866 && deprecated_ui_load_progress_hook (args
->section_name
,
1867 args
->section_sent
)))
1868 error (_("Canceled the download"));
1870 if (deprecated_show_load_progress
!= NULL
)
1871 deprecated_show_load_progress (args
->section_name
,
1875 totals
->total_size
);
1878 /* Callback service function for generic_load (bfd_map_over_sections). */
1881 load_section_callback (bfd
*abfd
, asection
*asec
, void *data
)
1883 struct memory_write_request
*new_request
;
1884 struct load_section_data
*args
= data
;
1885 struct load_progress_section_data
*section_data
;
1886 bfd_size_type size
= bfd_get_section_size (asec
);
1888 const char *sect_name
= bfd_get_section_name (abfd
, asec
);
1890 if ((bfd_get_section_flags (abfd
, asec
) & SEC_LOAD
) == 0)
1896 new_request
= VEC_safe_push (memory_write_request_s
,
1897 args
->requests
, NULL
);
1898 memset (new_request
, 0, sizeof (struct memory_write_request
));
1899 section_data
= xcalloc (1, sizeof (struct load_progress_section_data
));
1900 new_request
->begin
= bfd_section_lma (abfd
, asec
) + args
->load_offset
;
1901 new_request
->end
= new_request
->begin
+ size
; /* FIXME Should size be in instead? */
1902 new_request
->data
= xmalloc (size
);
1903 new_request
->baton
= section_data
;
1905 buffer
= new_request
->data
;
1907 section_data
->cumulative
= args
->progress_data
;
1908 section_data
->section_name
= sect_name
;
1909 section_data
->section_size
= size
;
1910 section_data
->lma
= new_request
->begin
;
1911 section_data
->buffer
= buffer
;
1913 bfd_get_section_contents (abfd
, asec
, buffer
, 0, size
);
1916 /* Clean up an entire memory request vector, including load
1917 data and progress records. */
1920 clear_memory_write_data (void *arg
)
1922 VEC(memory_write_request_s
) **vec_p
= arg
;
1923 VEC(memory_write_request_s
) *vec
= *vec_p
;
1925 struct memory_write_request
*mr
;
1927 for (i
= 0; VEC_iterate (memory_write_request_s
, vec
, i
, mr
); ++i
)
1932 VEC_free (memory_write_request_s
, vec
);
1936 generic_load (char *args
, int from_tty
)
1939 struct timeval start_time
, end_time
;
1941 struct cleanup
*old_cleanups
= make_cleanup (null_cleanup
, 0);
1942 struct load_section_data cbdata
;
1943 struct load_progress_data total_progress
;
1948 memset (&cbdata
, 0, sizeof (cbdata
));
1949 memset (&total_progress
, 0, sizeof (total_progress
));
1950 cbdata
.progress_data
= &total_progress
;
1952 make_cleanup (clear_memory_write_data
, &cbdata
.requests
);
1954 argv
= buildargv (args
);
1959 make_cleanup_freeargv (argv
);
1961 filename
= tilde_expand (argv
[0]);
1962 make_cleanup (xfree
, filename
);
1964 if (argv
[1] != NULL
)
1968 cbdata
.load_offset
= strtoul (argv
[1], &endptr
, 0);
1970 /* If the last word was not a valid number then
1971 treat it as a file name with spaces in. */
1972 if (argv
[1] == endptr
)
1973 error (_("Invalid download offset:%s."), argv
[1]);
1975 if (argv
[2] != NULL
)
1976 error (_("Too many parameters."));
1979 /* Open the file for loading. */
1980 loadfile_bfd
= bfd_openr (filename
, gnutarget
);
1981 if (loadfile_bfd
== NULL
)
1983 perror_with_name (filename
);
1987 /* FIXME: should be checking for errors from bfd_close (for one thing,
1988 on error it does not free all the storage associated with the
1990 make_cleanup_bfd_close (loadfile_bfd
);
1992 if (!bfd_check_format (loadfile_bfd
, bfd_object
))
1994 error (_("\"%s\" is not an object file: %s"), filename
,
1995 bfd_errmsg (bfd_get_error ()));
1998 bfd_map_over_sections (loadfile_bfd
, add_section_size_callback
,
1999 (void *) &total_progress
.total_size
);
2001 bfd_map_over_sections (loadfile_bfd
, load_section_callback
, &cbdata
);
2003 gettimeofday (&start_time
, NULL
);
2005 if (target_write_memory_blocks (cbdata
.requests
, flash_discard
,
2006 load_progress
) != 0)
2007 error (_("Load failed"));
2009 gettimeofday (&end_time
, NULL
);
2011 entry
= bfd_get_start_address (loadfile_bfd
);
2012 ui_out_text (uiout
, "Start address ");
2013 ui_out_field_fmt (uiout
, "address", "0x%s", paddr_nz (entry
));
2014 ui_out_text (uiout
, ", load size ");
2015 ui_out_field_fmt (uiout
, "load-size", "%lu", total_progress
.data_count
);
2016 ui_out_text (uiout
, "\n");
2017 /* We were doing this in remote-mips.c, I suspect it is right
2018 for other targets too. */
2021 /* FIXME: are we supposed to call symbol_file_add or not? According
2022 to a comment from remote-mips.c (where a call to symbol_file_add
2023 was commented out), making the call confuses GDB if more than one
2024 file is loaded in. Some targets do (e.g., remote-vx.c) but
2025 others don't (or didn't - perhaps they have all been deleted). */
2027 print_transfer_performance (gdb_stdout
, total_progress
.data_count
,
2028 total_progress
.write_count
,
2029 &start_time
, &end_time
);
2031 do_cleanups (old_cleanups
);
2034 /* Report how fast the transfer went. */
2036 /* DEPRECATED: cagney/1999-10-18: report_transfer_performance is being
2037 replaced by print_transfer_performance (with a very different
2038 function signature). */
2041 report_transfer_performance (unsigned long data_count
, time_t start_time
,
2044 struct timeval start
, end
;
2046 start
.tv_sec
= start_time
;
2048 end
.tv_sec
= end_time
;
2051 print_transfer_performance (gdb_stdout
, data_count
, 0, &start
, &end
);
2055 print_transfer_performance (struct ui_file
*stream
,
2056 unsigned long data_count
,
2057 unsigned long write_count
,
2058 const struct timeval
*start_time
,
2059 const struct timeval
*end_time
)
2061 ULONGEST time_count
;
2063 /* Compute the elapsed time in milliseconds, as a tradeoff between
2064 accuracy and overflow. */
2065 time_count
= (end_time
->tv_sec
- start_time
->tv_sec
) * 1000;
2066 time_count
+= (end_time
->tv_usec
- start_time
->tv_usec
) / 1000;
2068 ui_out_text (uiout
, "Transfer rate: ");
2071 unsigned long rate
= ((ULONGEST
) data_count
* 1000) / time_count
;
2073 if (ui_out_is_mi_like_p (uiout
))
2075 ui_out_field_fmt (uiout
, "transfer-rate", "%lu", rate
* 8);
2076 ui_out_text (uiout
, " bits/sec");
2078 else if (rate
< 1024)
2080 ui_out_field_fmt (uiout
, "transfer-rate", "%lu", rate
);
2081 ui_out_text (uiout
, " bytes/sec");
2085 ui_out_field_fmt (uiout
, "transfer-rate", "%lu", rate
/ 1024);
2086 ui_out_text (uiout
, " KB/sec");
2091 ui_out_field_fmt (uiout
, "transferred-bits", "%lu", (data_count
* 8));
2092 ui_out_text (uiout
, " bits in <1 sec");
2094 if (write_count
> 0)
2096 ui_out_text (uiout
, ", ");
2097 ui_out_field_fmt (uiout
, "write-rate", "%lu", data_count
/ write_count
);
2098 ui_out_text (uiout
, " bytes/write");
2100 ui_out_text (uiout
, ".\n");
2103 /* This function allows the addition of incrementally linked object files.
2104 It does not modify any state in the target, only in the debugger. */
2105 /* Note: ezannoni 2000-04-13 This function/command used to have a
2106 special case syntax for the rombug target (Rombug is the boot
2107 monitor for Microware's OS-9 / OS-9000, see remote-os9k.c). In the
2108 rombug case, the user doesn't need to supply a text address,
2109 instead a call to target_link() (in target.c) would supply the
2110 value to use. We are now discontinuing this type of ad hoc syntax. */
2113 add_symbol_file_command (char *args
, int from_tty
)
2115 char *filename
= NULL
;
2116 int flags
= OBJF_USERLOADED
;
2118 int expecting_option
= 0;
2119 int section_index
= 0;
2123 int expecting_sec_name
= 0;
2124 int expecting_sec_addr
= 0;
2133 struct section_addr_info
*section_addrs
;
2134 struct sect_opt
*sect_opts
= NULL
;
2135 size_t num_sect_opts
= 0;
2136 struct cleanup
*my_cleanups
= make_cleanup (null_cleanup
, NULL
);
2139 sect_opts
= (struct sect_opt
*) xmalloc (num_sect_opts
2140 * sizeof (struct sect_opt
));
2145 error (_("add-symbol-file takes a file name and an address"));
2147 argv
= buildargv (args
);
2148 make_cleanup_freeargv (argv
);
2153 for (arg
= argv
[0], argcnt
= 0; arg
!= NULL
; arg
= argv
[++argcnt
])
2155 /* Process the argument. */
2158 /* The first argument is the file name. */
2159 filename
= tilde_expand (arg
);
2160 make_cleanup (xfree
, filename
);
2165 /* The second argument is always the text address at which
2166 to load the program. */
2167 sect_opts
[section_index
].name
= ".text";
2168 sect_opts
[section_index
].value
= arg
;
2169 if (++section_index
>= num_sect_opts
)
2172 sect_opts
= ((struct sect_opt
*)
2173 xrealloc (sect_opts
,
2175 * sizeof (struct sect_opt
)));
2180 /* It's an option (starting with '-') or it's an argument
2185 if (strcmp (arg
, "-readnow") == 0)
2186 flags
|= OBJF_READNOW
;
2187 else if (strcmp (arg
, "-s") == 0)
2189 expecting_sec_name
= 1;
2190 expecting_sec_addr
= 1;
2195 if (expecting_sec_name
)
2197 sect_opts
[section_index
].name
= arg
;
2198 expecting_sec_name
= 0;
2201 if (expecting_sec_addr
)
2203 sect_opts
[section_index
].value
= arg
;
2204 expecting_sec_addr
= 0;
2205 if (++section_index
>= num_sect_opts
)
2208 sect_opts
= ((struct sect_opt
*)
2209 xrealloc (sect_opts
,
2211 * sizeof (struct sect_opt
)));
2215 error (_("USAGE: add-symbol-file <filename> <textaddress> [-mapped] [-readnow] [-s <secname> <addr>]*"));
2220 /* This command takes at least two arguments. The first one is a
2221 filename, and the second is the address where this file has been
2222 loaded. Abort now if this address hasn't been provided by the
2224 if (section_index
< 1)
2225 error (_("The address where %s has been loaded is missing"), filename
);
2227 /* Print the prompt for the query below. And save the arguments into
2228 a sect_addr_info structure to be passed around to other
2229 functions. We have to split this up into separate print
2230 statements because hex_string returns a local static
2233 printf_unfiltered (_("add symbol table from file \"%s\" at\n"), filename
);
2234 section_addrs
= alloc_section_addr_info (section_index
);
2235 make_cleanup (xfree
, section_addrs
);
2236 for (i
= 0; i
< section_index
; i
++)
2239 char *val
= sect_opts
[i
].value
;
2240 char *sec
= sect_opts
[i
].name
;
2242 addr
= parse_and_eval_address (val
);
2244 /* Here we store the section offsets in the order they were
2245 entered on the command line. */
2246 section_addrs
->other
[sec_num
].name
= sec
;
2247 section_addrs
->other
[sec_num
].addr
= addr
;
2248 printf_unfiltered ("\t%s_addr = %s\n",
2249 sec
, hex_string ((unsigned long)addr
));
2252 /* The object's sections are initialized when a
2253 call is made to build_objfile_section_table (objfile).
2254 This happens in reread_symbols.
2255 At this point, we don't know what file type this is,
2256 so we can't determine what section names are valid. */
2259 if (from_tty
&& (!query ("%s", "")))
2260 error (_("Not confirmed."));
2262 symbol_file_add (filename
, from_tty
, section_addrs
, 0, flags
);
2264 /* Getting new symbols may change our opinion about what is
2266 reinit_frame_cache ();
2267 do_cleanups (my_cleanups
);
2271 add_shared_symbol_files_command (char *args
, int from_tty
)
2273 #ifdef ADD_SHARED_SYMBOL_FILES
2274 ADD_SHARED_SYMBOL_FILES (args
, from_tty
);
2276 error (_("This command is not available in this configuration of GDB."));
2280 /* Re-read symbols if a symbol-file has changed. */
2282 reread_symbols (void)
2284 struct objfile
*objfile
;
2287 struct stat new_statbuf
;
2290 /* With the addition of shared libraries, this should be modified,
2291 the load time should be saved in the partial symbol tables, since
2292 different tables may come from different source files. FIXME.
2293 This routine should then walk down each partial symbol table
2294 and see if the symbol table that it originates from has been changed */
2296 for (objfile
= object_files
; objfile
; objfile
= objfile
->next
)
2300 #ifdef DEPRECATED_IBM6000_TARGET
2301 /* If this object is from a shared library, then you should
2302 stat on the library name, not member name. */
2304 if (objfile
->obfd
->my_archive
)
2305 res
= stat (objfile
->obfd
->my_archive
->filename
, &new_statbuf
);
2308 res
= stat (objfile
->name
, &new_statbuf
);
2311 /* FIXME, should use print_sys_errmsg but it's not filtered. */
2312 printf_unfiltered (_("`%s' has disappeared; keeping its symbols.\n"),
2316 new_modtime
= new_statbuf
.st_mtime
;
2317 if (new_modtime
!= objfile
->mtime
)
2319 struct cleanup
*old_cleanups
;
2320 struct section_offsets
*offsets
;
2322 char *obfd_filename
;
2324 printf_unfiltered (_("`%s' has changed; re-reading symbols.\n"),
2327 /* There are various functions like symbol_file_add,
2328 symfile_bfd_open, syms_from_objfile, etc., which might
2329 appear to do what we want. But they have various other
2330 effects which we *don't* want. So we just do stuff
2331 ourselves. We don't worry about mapped files (for one thing,
2332 any mapped file will be out of date). */
2334 /* If we get an error, blow away this objfile (not sure if
2335 that is the correct response for things like shared
2337 old_cleanups
= make_cleanup_free_objfile (objfile
);
2338 /* We need to do this whenever any symbols go away. */
2339 make_cleanup (clear_symtab_users_cleanup
, 0 /*ignore*/);
2341 /* Clean up any state BFD has sitting around. We don't need
2342 to close the descriptor but BFD lacks a way of closing the
2343 BFD without closing the descriptor. */
2344 obfd_filename
= bfd_get_filename (objfile
->obfd
);
2345 if (!bfd_close (objfile
->obfd
))
2346 error (_("Can't close BFD for %s: %s"), objfile
->name
,
2347 bfd_errmsg (bfd_get_error ()));
2348 objfile
->obfd
= bfd_openr (obfd_filename
, gnutarget
);
2349 if (objfile
->obfd
== NULL
)
2350 error (_("Can't open %s to read symbols."), objfile
->name
);
2351 /* bfd_openr sets cacheable to true, which is what we want. */
2352 if (!bfd_check_format (objfile
->obfd
, bfd_object
))
2353 error (_("Can't read symbols from %s: %s."), objfile
->name
,
2354 bfd_errmsg (bfd_get_error ()));
2356 /* Save the offsets, we will nuke them with the rest of the
2358 num_offsets
= objfile
->num_sections
;
2359 offsets
= ((struct section_offsets
*)
2360 alloca (SIZEOF_N_SECTION_OFFSETS (num_offsets
)));
2361 memcpy (offsets
, objfile
->section_offsets
,
2362 SIZEOF_N_SECTION_OFFSETS (num_offsets
));
2364 /* Remove any references to this objfile in the global
2366 preserve_values (objfile
);
2368 /* Nuke all the state that we will re-read. Much of the following
2369 code which sets things to NULL really is necessary to tell
2370 other parts of GDB that there is nothing currently there. */
2372 /* FIXME: Do we have to free a whole linked list, or is this
2374 if (objfile
->global_psymbols
.list
)
2375 xfree (objfile
->global_psymbols
.list
);
2376 memset (&objfile
->global_psymbols
, 0,
2377 sizeof (objfile
->global_psymbols
));
2378 if (objfile
->static_psymbols
.list
)
2379 xfree (objfile
->static_psymbols
.list
);
2380 memset (&objfile
->static_psymbols
, 0,
2381 sizeof (objfile
->static_psymbols
));
2383 /* Free the obstacks for non-reusable objfiles */
2384 bcache_xfree (objfile
->psymbol_cache
);
2385 objfile
->psymbol_cache
= bcache_xmalloc ();
2386 bcache_xfree (objfile
->macro_cache
);
2387 objfile
->macro_cache
= bcache_xmalloc ();
2388 if (objfile
->demangled_names_hash
!= NULL
)
2390 htab_delete (objfile
->demangled_names_hash
);
2391 objfile
->demangled_names_hash
= NULL
;
2393 obstack_free (&objfile
->objfile_obstack
, 0);
2394 objfile
->sections
= NULL
;
2395 objfile
->symtabs
= NULL
;
2396 objfile
->psymtabs
= NULL
;
2397 objfile
->free_psymtabs
= NULL
;
2398 objfile
->cp_namespace_symtab
= NULL
;
2399 objfile
->msymbols
= NULL
;
2400 objfile
->deprecated_sym_private
= NULL
;
2401 objfile
->minimal_symbol_count
= 0;
2402 memset (&objfile
->msymbol_hash
, 0,
2403 sizeof (objfile
->msymbol_hash
));
2404 memset (&objfile
->msymbol_demangled_hash
, 0,
2405 sizeof (objfile
->msymbol_demangled_hash
));
2406 clear_objfile_data (objfile
);
2407 if (objfile
->sf
!= NULL
)
2409 (*objfile
->sf
->sym_finish
) (objfile
);
2412 /* We never make this a mapped file. */
2414 objfile
->psymbol_cache
= bcache_xmalloc ();
2415 objfile
->macro_cache
= bcache_xmalloc ();
2416 /* obstack_init also initializes the obstack so it is
2417 empty. We could use obstack_specify_allocation but
2418 gdb_obstack.h specifies the alloc/dealloc
2420 obstack_init (&objfile
->objfile_obstack
);
2421 if (build_objfile_section_table (objfile
))
2423 error (_("Can't find the file sections in `%s': %s"),
2424 objfile
->name
, bfd_errmsg (bfd_get_error ()));
2426 terminate_minimal_symbol_table (objfile
);
2428 /* We use the same section offsets as from last time. I'm not
2429 sure whether that is always correct for shared libraries. */
2430 objfile
->section_offsets
= (struct section_offsets
*)
2431 obstack_alloc (&objfile
->objfile_obstack
,
2432 SIZEOF_N_SECTION_OFFSETS (num_offsets
));
2433 memcpy (objfile
->section_offsets
, offsets
,
2434 SIZEOF_N_SECTION_OFFSETS (num_offsets
));
2435 objfile
->num_sections
= num_offsets
;
2437 /* What the hell is sym_new_init for, anyway? The concept of
2438 distinguishing between the main file and additional files
2439 in this way seems rather dubious. */
2440 if (objfile
== symfile_objfile
)
2442 (*objfile
->sf
->sym_new_init
) (objfile
);
2445 (*objfile
->sf
->sym_init
) (objfile
);
2446 clear_complaints (&symfile_complaints
, 1, 1);
2447 /* The "mainline" parameter is a hideous hack; I think leaving it
2448 zero is OK since dbxread.c also does what it needs to do if
2449 objfile->global_psymbols.size is 0. */
2450 (*objfile
->sf
->sym_read
) (objfile
, 0);
2451 if (!have_partial_symbols () && !have_full_symbols ())
2454 printf_unfiltered (_("(no debugging symbols found)\n"));
2457 objfile
->flags
|= OBJF_SYMS
;
2459 /* We're done reading the symbol file; finish off complaints. */
2460 clear_complaints (&symfile_complaints
, 0, 1);
2462 /* Getting new symbols may change our opinion about what is
2465 reinit_frame_cache ();
2467 /* Discard cleanups as symbol reading was successful. */
2468 discard_cleanups (old_cleanups
);
2470 /* If the mtime has changed between the time we set new_modtime
2471 and now, we *want* this to be out of date, so don't call stat
2473 objfile
->mtime
= new_modtime
;
2475 reread_separate_symbols (objfile
);
2482 clear_symtab_users ();
2483 /* At least one objfile has changed, so we can consider that
2484 the executable we're debugging has changed too. */
2485 observer_notify_executable_changed (NULL
);
2491 /* Handle separate debug info for OBJFILE, which has just been
2493 - If we had separate debug info before, but now we don't, get rid
2494 of the separated objfile.
2495 - If we didn't have separated debug info before, but now we do,
2496 read in the new separated debug info file.
2497 - If the debug link points to a different file, toss the old one
2498 and read the new one.
2499 This function does *not* handle the case where objfile is still
2500 using the same separate debug info file, but that file's timestamp
2501 has changed. That case should be handled by the loop in
2502 reread_symbols already. */
2504 reread_separate_symbols (struct objfile
*objfile
)
2507 unsigned long crc32
;
2509 /* Does the updated objfile's debug info live in a
2511 debug_file
= find_separate_debug_file (objfile
);
2513 if (objfile
->separate_debug_objfile
)
2515 /* There are two cases where we need to get rid of
2516 the old separated debug info objfile:
2517 - if the new primary objfile doesn't have
2518 separated debug info, or
2519 - if the new primary objfile has separate debug
2520 info, but it's under a different filename.
2522 If the old and new objfiles both have separate
2523 debug info, under the same filename, then we're
2524 okay --- if the separated file's contents have
2525 changed, we will have caught that when we
2526 visited it in this function's outermost
2529 || strcmp (debug_file
, objfile
->separate_debug_objfile
->name
) != 0)
2530 free_objfile (objfile
->separate_debug_objfile
);
2533 /* If the new objfile has separate debug info, and we
2534 haven't loaded it already, do so now. */
2536 && ! objfile
->separate_debug_objfile
)
2538 /* Use the same section offset table as objfile itself.
2539 Preserve the flags from objfile that make sense. */
2540 objfile
->separate_debug_objfile
2541 = (symbol_file_add_with_addrs_or_offsets
2542 (symfile_bfd_open (debug_file
),
2543 info_verbose
, /* from_tty: Don't override the default. */
2544 0, /* No addr table. */
2545 objfile
->section_offsets
, objfile
->num_sections
,
2546 0, /* Not mainline. See comments about this above. */
2547 objfile
->flags
& (OBJF_REORDERED
| OBJF_SHARED
| OBJF_READNOW
2548 | OBJF_USERLOADED
)));
2549 objfile
->separate_debug_objfile
->separate_debug_objfile_backlink
2567 static filename_language
*filename_language_table
;
2568 static int fl_table_size
, fl_table_next
;
2571 add_filename_language (char *ext
, enum language lang
)
2573 if (fl_table_next
>= fl_table_size
)
2575 fl_table_size
+= 10;
2576 filename_language_table
=
2577 xrealloc (filename_language_table
,
2578 fl_table_size
* sizeof (*filename_language_table
));
2581 filename_language_table
[fl_table_next
].ext
= xstrdup (ext
);
2582 filename_language_table
[fl_table_next
].lang
= lang
;
2586 static char *ext_args
;
2588 show_ext_args (struct ui_file
*file
, int from_tty
,
2589 struct cmd_list_element
*c
, const char *value
)
2591 fprintf_filtered (file
, _("\
2592 Mapping between filename extension and source language is \"%s\".\n"),
2597 set_ext_lang_command (char *args
, int from_tty
, struct cmd_list_element
*e
)
2600 char *cp
= ext_args
;
2603 /* First arg is filename extension, starting with '.' */
2605 error (_("'%s': Filename extension must begin with '.'"), ext_args
);
2607 /* Find end of first arg. */
2608 while (*cp
&& !isspace (*cp
))
2612 error (_("'%s': two arguments required -- filename extension and language"),
2615 /* Null-terminate first arg */
2618 /* Find beginning of second arg, which should be a source language. */
2619 while (*cp
&& isspace (*cp
))
2623 error (_("'%s': two arguments required -- filename extension and language"),
2626 /* Lookup the language from among those we know. */
2627 lang
= language_enum (cp
);
2629 /* Now lookup the filename extension: do we already know it? */
2630 for (i
= 0; i
< fl_table_next
; i
++)
2631 if (0 == strcmp (ext_args
, filename_language_table
[i
].ext
))
2634 if (i
>= fl_table_next
)
2636 /* new file extension */
2637 add_filename_language (ext_args
, lang
);
2641 /* redefining a previously known filename extension */
2644 /* query ("Really make files of type %s '%s'?", */
2645 /* ext_args, language_str (lang)); */
2647 xfree (filename_language_table
[i
].ext
);
2648 filename_language_table
[i
].ext
= xstrdup (ext_args
);
2649 filename_language_table
[i
].lang
= lang
;
2654 info_ext_lang_command (char *args
, int from_tty
)
2658 printf_filtered (_("Filename extensions and the languages they represent:"));
2659 printf_filtered ("\n\n");
2660 for (i
= 0; i
< fl_table_next
; i
++)
2661 printf_filtered ("\t%s\t- %s\n",
2662 filename_language_table
[i
].ext
,
2663 language_str (filename_language_table
[i
].lang
));
2667 init_filename_language_table (void)
2669 if (fl_table_size
== 0) /* protect against repetition */
2673 filename_language_table
=
2674 xmalloc (fl_table_size
* sizeof (*filename_language_table
));
2675 add_filename_language (".c", language_c
);
2676 add_filename_language (".C", language_cplus
);
2677 add_filename_language (".cc", language_cplus
);
2678 add_filename_language (".cp", language_cplus
);
2679 add_filename_language (".cpp", language_cplus
);
2680 add_filename_language (".cxx", language_cplus
);
2681 add_filename_language (".c++", language_cplus
);
2682 add_filename_language (".java", language_java
);
2683 add_filename_language (".class", language_java
);
2684 add_filename_language (".m", language_objc
);
2685 add_filename_language (".f", language_fortran
);
2686 add_filename_language (".F", language_fortran
);
2687 add_filename_language (".s", language_asm
);
2688 add_filename_language (".sx", language_asm
);
2689 add_filename_language (".S", language_asm
);
2690 add_filename_language (".pas", language_pascal
);
2691 add_filename_language (".p", language_pascal
);
2692 add_filename_language (".pp", language_pascal
);
2693 add_filename_language (".adb", language_ada
);
2694 add_filename_language (".ads", language_ada
);
2695 add_filename_language (".a", language_ada
);
2696 add_filename_language (".ada", language_ada
);
2701 deduce_language_from_filename (char *filename
)
2706 if (filename
!= NULL
)
2707 if ((cp
= strrchr (filename
, '.')) != NULL
)
2708 for (i
= 0; i
< fl_table_next
; i
++)
2709 if (strcmp (cp
, filename_language_table
[i
].ext
) == 0)
2710 return filename_language_table
[i
].lang
;
2712 return language_unknown
;
2717 Allocate and partly initialize a new symbol table. Return a pointer
2718 to it. error() if no space.
2720 Caller must set these fields:
2726 possibly free_named_symtabs (symtab->filename);
2730 allocate_symtab (char *filename
, struct objfile
*objfile
)
2732 struct symtab
*symtab
;
2734 symtab
= (struct symtab
*)
2735 obstack_alloc (&objfile
->objfile_obstack
, sizeof (struct symtab
));
2736 memset (symtab
, 0, sizeof (*symtab
));
2737 symtab
->filename
= obsavestring (filename
, strlen (filename
),
2738 &objfile
->objfile_obstack
);
2739 symtab
->fullname
= NULL
;
2740 symtab
->language
= deduce_language_from_filename (filename
);
2741 symtab
->debugformat
= obsavestring ("unknown", 7,
2742 &objfile
->objfile_obstack
);
2744 /* Hook it to the objfile it comes from */
2746 symtab
->objfile
= objfile
;
2747 symtab
->next
= objfile
->symtabs
;
2748 objfile
->symtabs
= symtab
;
2753 struct partial_symtab
*
2754 allocate_psymtab (char *filename
, struct objfile
*objfile
)
2756 struct partial_symtab
*psymtab
;
2758 if (objfile
->free_psymtabs
)
2760 psymtab
= objfile
->free_psymtabs
;
2761 objfile
->free_psymtabs
= psymtab
->next
;
2764 psymtab
= (struct partial_symtab
*)
2765 obstack_alloc (&objfile
->objfile_obstack
,
2766 sizeof (struct partial_symtab
));
2768 memset (psymtab
, 0, sizeof (struct partial_symtab
));
2769 psymtab
->filename
= obsavestring (filename
, strlen (filename
),
2770 &objfile
->objfile_obstack
);
2771 psymtab
->symtab
= NULL
;
2773 /* Prepend it to the psymtab list for the objfile it belongs to.
2774 Psymtabs are searched in most recent inserted -> least recent
2777 psymtab
->objfile
= objfile
;
2778 psymtab
->next
= objfile
->psymtabs
;
2779 objfile
->psymtabs
= psymtab
;
2782 struct partial_symtab
**prev_pst
;
2783 psymtab
->objfile
= objfile
;
2784 psymtab
->next
= NULL
;
2785 prev_pst
= &(objfile
->psymtabs
);
2786 while ((*prev_pst
) != NULL
)
2787 prev_pst
= &((*prev_pst
)->next
);
2788 (*prev_pst
) = psymtab
;
2796 discard_psymtab (struct partial_symtab
*pst
)
2798 struct partial_symtab
**prev_pst
;
2801 Empty psymtabs happen as a result of header files which don't
2802 have any symbols in them. There can be a lot of them. But this
2803 check is wrong, in that a psymtab with N_SLINE entries but
2804 nothing else is not empty, but we don't realize that. Fixing
2805 that without slowing things down might be tricky. */
2807 /* First, snip it out of the psymtab chain */
2809 prev_pst
= &(pst
->objfile
->psymtabs
);
2810 while ((*prev_pst
) != pst
)
2811 prev_pst
= &((*prev_pst
)->next
);
2812 (*prev_pst
) = pst
->next
;
2814 /* Next, put it on a free list for recycling */
2816 pst
->next
= pst
->objfile
->free_psymtabs
;
2817 pst
->objfile
->free_psymtabs
= pst
;
2821 /* Reset all data structures in gdb which may contain references to symbol
2825 clear_symtab_users (void)
2827 /* Someday, we should do better than this, by only blowing away
2828 the things that really need to be blown. */
2830 /* Clear the "current" symtab first, because it is no longer valid.
2831 breakpoint_re_set may try to access the current symtab. */
2832 clear_current_source_symtab_and_line ();
2835 breakpoint_re_set ();
2836 set_default_breakpoint (0, 0, 0, 0);
2837 clear_pc_function_cache ();
2838 observer_notify_new_objfile (NULL
);
2840 /* Clear globals which might have pointed into a removed objfile.
2841 FIXME: It's not clear which of these are supposed to persist
2842 between expressions and which ought to be reset each time. */
2843 expression_context_block
= NULL
;
2844 innermost_block
= NULL
;
2846 /* Varobj may refer to old symbols, perform a cleanup. */
2847 varobj_invalidate ();
2852 clear_symtab_users_cleanup (void *ignore
)
2854 clear_symtab_users ();
2857 /* clear_symtab_users_once:
2859 This function is run after symbol reading, or from a cleanup.
2860 If an old symbol table was obsoleted, the old symbol table
2861 has been blown away, but the other GDB data structures that may
2862 reference it have not yet been cleared or re-directed. (The old
2863 symtab was zapped, and the cleanup queued, in free_named_symtab()
2866 This function can be queued N times as a cleanup, or called
2867 directly; it will do all the work the first time, and then will be a
2868 no-op until the next time it is queued. This works by bumping a
2869 counter at queueing time. Much later when the cleanup is run, or at
2870 the end of symbol processing (in case the cleanup is discarded), if
2871 the queued count is greater than the "done-count", we do the work
2872 and set the done-count to the queued count. If the queued count is
2873 less than or equal to the done-count, we just ignore the call. This
2874 is needed because reading a single .o file will often replace many
2875 symtabs (one per .h file, for example), and we don't want to reset
2876 the breakpoints N times in the user's face.
2878 The reason we both queue a cleanup, and call it directly after symbol
2879 reading, is because the cleanup protects us in case of errors, but is
2880 discarded if symbol reading is successful. */
2883 /* FIXME: As free_named_symtabs is currently a big noop this function
2884 is no longer needed. */
2885 static void clear_symtab_users_once (void);
2887 static int clear_symtab_users_queued
;
2888 static int clear_symtab_users_done
;
2891 clear_symtab_users_once (void)
2893 /* Enforce once-per-`do_cleanups'-semantics */
2894 if (clear_symtab_users_queued
<= clear_symtab_users_done
)
2896 clear_symtab_users_done
= clear_symtab_users_queued
;
2898 clear_symtab_users ();
2902 /* Delete the specified psymtab, and any others that reference it. */
2905 cashier_psymtab (struct partial_symtab
*pst
)
2907 struct partial_symtab
*ps
, *pprev
= NULL
;
2910 /* Find its previous psymtab in the chain */
2911 for (ps
= pst
->objfile
->psymtabs
; ps
; ps
= ps
->next
)
2920 /* Unhook it from the chain. */
2921 if (ps
== pst
->objfile
->psymtabs
)
2922 pst
->objfile
->psymtabs
= ps
->next
;
2924 pprev
->next
= ps
->next
;
2926 /* FIXME, we can't conveniently deallocate the entries in the
2927 partial_symbol lists (global_psymbols/static_psymbols) that
2928 this psymtab points to. These just take up space until all
2929 the psymtabs are reclaimed. Ditto the dependencies list and
2930 filename, which are all in the objfile_obstack. */
2932 /* We need to cashier any psymtab that has this one as a dependency... */
2934 for (ps
= pst
->objfile
->psymtabs
; ps
; ps
= ps
->next
)
2936 for (i
= 0; i
< ps
->number_of_dependencies
; i
++)
2938 if (ps
->dependencies
[i
] == pst
)
2940 cashier_psymtab (ps
);
2941 goto again
; /* Must restart, chain has been munged. */
2948 /* If a symtab or psymtab for filename NAME is found, free it along
2949 with any dependent breakpoints, displays, etc.
2950 Used when loading new versions of object modules with the "add-file"
2951 command. This is only called on the top-level symtab or psymtab's name;
2952 it is not called for subsidiary files such as .h files.
2954 Return value is 1 if we blew away the environment, 0 if not.
2955 FIXME. The return value appears to never be used.
2957 FIXME. I think this is not the best way to do this. We should
2958 work on being gentler to the environment while still cleaning up
2959 all stray pointers into the freed symtab. */
2962 free_named_symtabs (char *name
)
2965 /* FIXME: With the new method of each objfile having it's own
2966 psymtab list, this function needs serious rethinking. In particular,
2967 why was it ever necessary to toss psymtabs with specific compilation
2968 unit filenames, as opposed to all psymtabs from a particular symbol
2970 Well, the answer is that some systems permit reloading of particular
2971 compilation units. We want to blow away any old info about these
2972 compilation units, regardless of which objfiles they arrived in. --gnu. */
2975 struct symtab
*prev
;
2976 struct partial_symtab
*ps
;
2977 struct blockvector
*bv
;
2980 /* We only wack things if the symbol-reload switch is set. */
2981 if (!symbol_reloading
)
2984 /* Some symbol formats have trouble providing file names... */
2985 if (name
== 0 || *name
== '\0')
2988 /* Look for a psymtab with the specified name. */
2991 for (ps
= partial_symtab_list
; ps
; ps
= ps
->next
)
2993 if (strcmp (name
, ps
->filename
) == 0)
2995 cashier_psymtab (ps
); /* Blow it away...and its little dog, too. */
2996 goto again2
; /* Must restart, chain has been munged */
3000 /* Look for a symtab with the specified name. */
3002 for (s
= symtab_list
; s
; s
= s
->next
)
3004 if (strcmp (name
, s
->filename
) == 0)
3011 if (s
== symtab_list
)
3012 symtab_list
= s
->next
;
3014 prev
->next
= s
->next
;
3016 /* For now, queue a delete for all breakpoints, displays, etc., whether
3017 or not they depend on the symtab being freed. This should be
3018 changed so that only those data structures affected are deleted. */
3020 /* But don't delete anything if the symtab is empty.
3021 This test is necessary due to a bug in "dbxread.c" that
3022 causes empty symtabs to be created for N_SO symbols that
3023 contain the pathname of the object file. (This problem
3024 has been fixed in GDB 3.9x). */
3026 bv
= BLOCKVECTOR (s
);
3027 if (BLOCKVECTOR_NBLOCKS (bv
) > 2
3028 || BLOCK_NSYMS (BLOCKVECTOR_BLOCK (bv
, GLOBAL_BLOCK
))
3029 || BLOCK_NSYMS (BLOCKVECTOR_BLOCK (bv
, STATIC_BLOCK
)))
3031 complaint (&symfile_complaints
, _("Replacing old symbols for `%s'"),
3033 clear_symtab_users_queued
++;
3034 make_cleanup (clear_symtab_users_once
, 0);
3038 complaint (&symfile_complaints
, _("Empty symbol table found for `%s'"),
3045 /* It is still possible that some breakpoints will be affected
3046 even though no symtab was found, since the file might have
3047 been compiled without debugging, and hence not be associated
3048 with a symtab. In order to handle this correctly, we would need
3049 to keep a list of text address ranges for undebuggable files.
3050 For now, we do nothing, since this is a fairly obscure case. */
3054 /* FIXME, what about the minimal symbol table? */
3061 /* Allocate and partially fill a partial symtab. It will be
3062 completely filled at the end of the symbol list.
3064 FILENAME is the name of the symbol-file we are reading from. */
3066 struct partial_symtab
*
3067 start_psymtab_common (struct objfile
*objfile
,
3068 struct section_offsets
*section_offsets
, char *filename
,
3069 CORE_ADDR textlow
, struct partial_symbol
**global_syms
,
3070 struct partial_symbol
**static_syms
)
3072 struct partial_symtab
*psymtab
;
3074 psymtab
= allocate_psymtab (filename
, objfile
);
3075 psymtab
->section_offsets
= section_offsets
;
3076 psymtab
->textlow
= textlow
;
3077 psymtab
->texthigh
= psymtab
->textlow
; /* default */
3078 psymtab
->globals_offset
= global_syms
- objfile
->global_psymbols
.list
;
3079 psymtab
->statics_offset
= static_syms
- objfile
->static_psymbols
.list
;
3083 /* Add a symbol with a long value to a psymtab.
3084 Since one arg is a struct, we pass in a ptr and deref it (sigh).
3085 Return the partial symbol that has been added. */
3087 /* NOTE: carlton/2003-09-11: The reason why we return the partial
3088 symbol is so that callers can get access to the symbol's demangled
3089 name, which they don't have any cheap way to determine otherwise.
3090 (Currenly, dwarf2read.c is the only file who uses that information,
3091 though it's possible that other readers might in the future.)
3092 Elena wasn't thrilled about that, and I don't blame her, but we
3093 couldn't come up with a better way to get that information. If
3094 it's needed in other situations, we could consider breaking up
3095 SYMBOL_SET_NAMES to provide access to the demangled name lookup
3098 const struct partial_symbol
*
3099 add_psymbol_to_list (char *name
, int namelength
, domain_enum domain
,
3100 enum address_class
class,
3101 struct psymbol_allocation_list
*list
, long val
, /* Value as a long */
3102 CORE_ADDR coreaddr
, /* Value as a CORE_ADDR */
3103 enum language language
, struct objfile
*objfile
)
3105 struct partial_symbol
*psym
;
3106 char *buf
= alloca (namelength
+ 1);
3107 /* psymbol is static so that there will be no uninitialized gaps in the
3108 structure which might contain random data, causing cache misses in
3110 static struct partial_symbol psymbol
;
3112 /* Create local copy of the partial symbol */
3113 memcpy (buf
, name
, namelength
);
3114 buf
[namelength
] = '\0';
3115 /* val and coreaddr are mutually exclusive, one of them *will* be zero */
3118 SYMBOL_VALUE (&psymbol
) = val
;
3122 SYMBOL_VALUE_ADDRESS (&psymbol
) = coreaddr
;
3124 SYMBOL_SECTION (&psymbol
) = 0;
3125 SYMBOL_LANGUAGE (&psymbol
) = language
;
3126 PSYMBOL_DOMAIN (&psymbol
) = domain
;
3127 PSYMBOL_CLASS (&psymbol
) = class;
3129 SYMBOL_SET_NAMES (&psymbol
, buf
, namelength
, objfile
);
3131 /* Stash the partial symbol away in the cache */
3132 psym
= deprecated_bcache (&psymbol
, sizeof (struct partial_symbol
),
3133 objfile
->psymbol_cache
);
3135 /* Save pointer to partial symbol in psymtab, growing symtab if needed. */
3136 if (list
->next
>= list
->list
+ list
->size
)
3138 extend_psymbol_list (list
, objfile
);
3140 *list
->next
++ = psym
;
3141 OBJSTAT (objfile
, n_psyms
++);
3146 /* Initialize storage for partial symbols. */
3149 init_psymbol_list (struct objfile
*objfile
, int total_symbols
)
3151 /* Free any previously allocated psymbol lists. */
3153 if (objfile
->global_psymbols
.list
)
3155 xfree (objfile
->global_psymbols
.list
);
3157 if (objfile
->static_psymbols
.list
)
3159 xfree (objfile
->static_psymbols
.list
);
3162 /* Current best guess is that approximately a twentieth
3163 of the total symbols (in a debugging file) are global or static
3166 objfile
->global_psymbols
.size
= total_symbols
/ 10;
3167 objfile
->static_psymbols
.size
= total_symbols
/ 10;
3169 if (objfile
->global_psymbols
.size
> 0)
3171 objfile
->global_psymbols
.next
=
3172 objfile
->global_psymbols
.list
= (struct partial_symbol
**)
3173 xmalloc ((objfile
->global_psymbols
.size
3174 * sizeof (struct partial_symbol
*)));
3176 if (objfile
->static_psymbols
.size
> 0)
3178 objfile
->static_psymbols
.next
=
3179 objfile
->static_psymbols
.list
= (struct partial_symbol
**)
3180 xmalloc ((objfile
->static_psymbols
.size
3181 * sizeof (struct partial_symbol
*)));
3186 The following code implements an abstraction for debugging overlay sections.
3188 The target model is as follows:
3189 1) The gnu linker will permit multiple sections to be mapped into the
3190 same VMA, each with its own unique LMA (or load address).
3191 2) It is assumed that some runtime mechanism exists for mapping the
3192 sections, one by one, from the load address into the VMA address.
3193 3) This code provides a mechanism for gdb to keep track of which
3194 sections should be considered to be mapped from the VMA to the LMA.
3195 This information is used for symbol lookup, and memory read/write.
3196 For instance, if a section has been mapped then its contents
3197 should be read from the VMA, otherwise from the LMA.
3199 Two levels of debugger support for overlays are available. One is
3200 "manual", in which the debugger relies on the user to tell it which
3201 overlays are currently mapped. This level of support is
3202 implemented entirely in the core debugger, and the information about
3203 whether a section is mapped is kept in the objfile->obj_section table.
3205 The second level of support is "automatic", and is only available if
3206 the target-specific code provides functionality to read the target's
3207 overlay mapping table, and translate its contents for the debugger
3208 (by updating the mapped state information in the obj_section tables).
3210 The interface is as follows:
3212 overlay map <name> -- tell gdb to consider this section mapped
3213 overlay unmap <name> -- tell gdb to consider this section unmapped
3214 overlay list -- list the sections that GDB thinks are mapped
3215 overlay read-target -- get the target's state of what's mapped
3216 overlay off/manual/auto -- set overlay debugging state
3217 Functional interface:
3218 find_pc_mapped_section(pc): if the pc is in the range of a mapped
3219 section, return that section.
3220 find_pc_overlay(pc): find any overlay section that contains
3221 the pc, either in its VMA or its LMA
3222 overlay_is_mapped(sect): true if overlay is marked as mapped
3223 section_is_overlay(sect): true if section's VMA != LMA
3224 pc_in_mapped_range(pc,sec): true if pc belongs to section's VMA
3225 pc_in_unmapped_range(...): true if pc belongs to section's LMA
3226 sections_overlap(sec1, sec2): true if mapped sec1 and sec2 ranges overlap
3227 overlay_mapped_address(...): map an address from section's LMA to VMA
3228 overlay_unmapped_address(...): map an address from section's VMA to LMA
3229 symbol_overlayed_address(...): Return a "current" address for symbol:
3230 either in VMA or LMA depending on whether
3231 the symbol's section is currently mapped
3234 /* Overlay debugging state: */
3236 enum overlay_debugging_state overlay_debugging
= ovly_off
;
3237 int overlay_cache_invalid
= 0; /* True if need to refresh mapped state */
3239 /* Function: section_is_overlay (SECTION)
3240 Returns true if SECTION has VMA not equal to LMA, ie.
3241 SECTION is loaded at an address different from where it will "run". */
3244 section_is_overlay (asection
*section
)
3246 /* FIXME: need bfd *, so we can use bfd_section_lma methods. */
3248 if (overlay_debugging
)
3249 if (section
&& section
->lma
!= 0 &&
3250 section
->vma
!= section
->lma
)
3256 /* Function: overlay_invalidate_all (void)
3257 Invalidate the mapped state of all overlay sections (mark it as stale). */
3260 overlay_invalidate_all (void)
3262 struct objfile
*objfile
;
3263 struct obj_section
*sect
;
3265 ALL_OBJSECTIONS (objfile
, sect
)
3266 if (section_is_overlay (sect
->the_bfd_section
))
3267 sect
->ovly_mapped
= -1;
3270 /* Function: overlay_is_mapped (SECTION)
3271 Returns true if section is an overlay, and is currently mapped.
3272 Private: public access is thru function section_is_mapped.
3274 Access to the ovly_mapped flag is restricted to this function, so
3275 that we can do automatic update. If the global flag
3276 OVERLAY_CACHE_INVALID is set (by wait_for_inferior), then call
3277 overlay_invalidate_all. If the mapped state of the particular
3278 section is stale, then call TARGET_OVERLAY_UPDATE to refresh it. */
3281 overlay_is_mapped (struct obj_section
*osect
)
3283 if (osect
== 0 || !section_is_overlay (osect
->the_bfd_section
))
3286 switch (overlay_debugging
)
3290 return 0; /* overlay debugging off */
3291 case ovly_auto
: /* overlay debugging automatic */
3292 /* Unles there is a gdbarch_overlay_update function,
3293 there's really nothing useful to do here (can't really go auto) */
3294 if (gdbarch_overlay_update_p (current_gdbarch
))
3296 if (overlay_cache_invalid
)
3298 overlay_invalidate_all ();
3299 overlay_cache_invalid
= 0;
3301 if (osect
->ovly_mapped
== -1)
3302 gdbarch_overlay_update (current_gdbarch
, osect
);
3304 /* fall thru to manual case */
3305 case ovly_on
: /* overlay debugging manual */
3306 return osect
->ovly_mapped
== 1;
3310 /* Function: section_is_mapped
3311 Returns true if section is an overlay, and is currently mapped. */
3314 section_is_mapped (asection
*section
)
3316 struct objfile
*objfile
;
3317 struct obj_section
*osect
;
3319 if (overlay_debugging
)
3320 if (section
&& section_is_overlay (section
))
3321 ALL_OBJSECTIONS (objfile
, osect
)
3322 if (osect
->the_bfd_section
== section
)
3323 return overlay_is_mapped (osect
);
3328 /* Function: pc_in_unmapped_range
3329 If PC falls into the lma range of SECTION, return true, else false. */
3332 pc_in_unmapped_range (CORE_ADDR pc
, asection
*section
)
3334 /* FIXME: need bfd *, so we can use bfd_section_lma methods. */
3338 if (overlay_debugging
)
3339 if (section
&& section_is_overlay (section
))
3341 size
= bfd_get_section_size (section
);
3342 if (section
->lma
<= pc
&& pc
< section
->lma
+ size
)
3348 /* Function: pc_in_mapped_range
3349 If PC falls into the vma range of SECTION, return true, else false. */
3352 pc_in_mapped_range (CORE_ADDR pc
, asection
*section
)
3354 /* FIXME: need bfd *, so we can use bfd_section_vma methods. */
3358 if (overlay_debugging
)
3359 if (section
&& section_is_overlay (section
))
3361 size
= bfd_get_section_size (section
);
3362 if (section
->vma
<= pc
&& pc
< section
->vma
+ size
)
3369 /* Return true if the mapped ranges of sections A and B overlap, false
3372 sections_overlap (asection
*a
, asection
*b
)
3374 /* FIXME: need bfd *, so we can use bfd_section_vma methods. */
3376 CORE_ADDR a_start
= a
->vma
;
3377 CORE_ADDR a_end
= a
->vma
+ bfd_get_section_size (a
);
3378 CORE_ADDR b_start
= b
->vma
;
3379 CORE_ADDR b_end
= b
->vma
+ bfd_get_section_size (b
);
3381 return (a_start
< b_end
&& b_start
< a_end
);
3384 /* Function: overlay_unmapped_address (PC, SECTION)
3385 Returns the address corresponding to PC in the unmapped (load) range.
3386 May be the same as PC. */
3389 overlay_unmapped_address (CORE_ADDR pc
, asection
*section
)
3391 /* FIXME: need bfd *, so we can use bfd_section_lma methods. */
3393 if (overlay_debugging
)
3394 if (section
&& section_is_overlay (section
) &&
3395 pc_in_mapped_range (pc
, section
))
3396 return pc
+ section
->lma
- section
->vma
;
3401 /* Function: overlay_mapped_address (PC, SECTION)
3402 Returns the address corresponding to PC in the mapped (runtime) range.
3403 May be the same as PC. */
3406 overlay_mapped_address (CORE_ADDR pc
, asection
*section
)
3408 /* FIXME: need bfd *, so we can use bfd_section_vma methods. */
3410 if (overlay_debugging
)
3411 if (section
&& section_is_overlay (section
) &&
3412 pc_in_unmapped_range (pc
, section
))
3413 return pc
+ section
->vma
- section
->lma
;
3419 /* Function: symbol_overlayed_address
3420 Return one of two addresses (relative to the VMA or to the LMA),
3421 depending on whether the section is mapped or not. */
3424 symbol_overlayed_address (CORE_ADDR address
, asection
*section
)
3426 if (overlay_debugging
)
3428 /* If the symbol has no section, just return its regular address. */
3431 /* If the symbol's section is not an overlay, just return its address */
3432 if (!section_is_overlay (section
))
3434 /* If the symbol's section is mapped, just return its address */
3435 if (section_is_mapped (section
))
3438 * HOWEVER: if the symbol is in an overlay section which is NOT mapped,
3439 * then return its LOADED address rather than its vma address!!
3441 return overlay_unmapped_address (address
, section
);
3446 /* Function: find_pc_overlay (PC)
3447 Return the best-match overlay section for PC:
3448 If PC matches a mapped overlay section's VMA, return that section.
3449 Else if PC matches an unmapped section's VMA, return that section.
3450 Else if PC matches an unmapped section's LMA, return that section. */
3453 find_pc_overlay (CORE_ADDR pc
)
3455 struct objfile
*objfile
;
3456 struct obj_section
*osect
, *best_match
= NULL
;
3458 if (overlay_debugging
)
3459 ALL_OBJSECTIONS (objfile
, osect
)
3460 if (section_is_overlay (osect
->the_bfd_section
))
3462 if (pc_in_mapped_range (pc
, osect
->the_bfd_section
))
3464 if (overlay_is_mapped (osect
))
3465 return osect
->the_bfd_section
;
3469 else if (pc_in_unmapped_range (pc
, osect
->the_bfd_section
))
3472 return best_match
? best_match
->the_bfd_section
: NULL
;
3475 /* Function: find_pc_mapped_section (PC)
3476 If PC falls into the VMA address range of an overlay section that is
3477 currently marked as MAPPED, return that section. Else return NULL. */
3480 find_pc_mapped_section (CORE_ADDR pc
)
3482 struct objfile
*objfile
;
3483 struct obj_section
*osect
;
3485 if (overlay_debugging
)
3486 ALL_OBJSECTIONS (objfile
, osect
)
3487 if (pc_in_mapped_range (pc
, osect
->the_bfd_section
) &&
3488 overlay_is_mapped (osect
))
3489 return osect
->the_bfd_section
;
3494 /* Function: list_overlays_command
3495 Print a list of mapped sections and their PC ranges */
3498 list_overlays_command (char *args
, int from_tty
)
3501 struct objfile
*objfile
;
3502 struct obj_section
*osect
;
3504 if (overlay_debugging
)
3505 ALL_OBJSECTIONS (objfile
, osect
)
3506 if (overlay_is_mapped (osect
))
3512 vma
= bfd_section_vma (objfile
->obfd
, osect
->the_bfd_section
);
3513 lma
= bfd_section_lma (objfile
->obfd
, osect
->the_bfd_section
);
3514 size
= bfd_get_section_size (osect
->the_bfd_section
);
3515 name
= bfd_section_name (objfile
->obfd
, osect
->the_bfd_section
);
3517 printf_filtered ("Section %s, loaded at ", name
);
3518 fputs_filtered (paddress (lma
), gdb_stdout
);
3519 puts_filtered (" - ");
3520 fputs_filtered (paddress (lma
+ size
), gdb_stdout
);
3521 printf_filtered (", mapped at ");
3522 fputs_filtered (paddress (vma
), gdb_stdout
);
3523 puts_filtered (" - ");
3524 fputs_filtered (paddress (vma
+ size
), gdb_stdout
);
3525 puts_filtered ("\n");
3530 printf_filtered (_("No sections are mapped.\n"));
3533 /* Function: map_overlay_command
3534 Mark the named section as mapped (ie. residing at its VMA address). */
3537 map_overlay_command (char *args
, int from_tty
)
3539 struct objfile
*objfile
, *objfile2
;
3540 struct obj_section
*sec
, *sec2
;
3543 if (!overlay_debugging
)
3545 Overlay debugging not enabled. Use either the 'overlay auto' or\n\
3546 the 'overlay manual' command."));
3548 if (args
== 0 || *args
== 0)
3549 error (_("Argument required: name of an overlay section"));
3551 /* First, find a section matching the user supplied argument */
3552 ALL_OBJSECTIONS (objfile
, sec
)
3553 if (!strcmp (bfd_section_name (objfile
->obfd
, sec
->the_bfd_section
), args
))
3555 /* Now, check to see if the section is an overlay. */
3556 bfdsec
= sec
->the_bfd_section
;
3557 if (!section_is_overlay (bfdsec
))
3558 continue; /* not an overlay section */
3560 /* Mark the overlay as "mapped" */
3561 sec
->ovly_mapped
= 1;
3563 /* Next, make a pass and unmap any sections that are
3564 overlapped by this new section: */
3565 ALL_OBJSECTIONS (objfile2
, sec2
)
3566 if (sec2
->ovly_mapped
3568 && sec
->the_bfd_section
!= sec2
->the_bfd_section
3569 && sections_overlap (sec
->the_bfd_section
,
3570 sec2
->the_bfd_section
))
3573 printf_unfiltered (_("Note: section %s unmapped by overlap\n"),
3574 bfd_section_name (objfile
->obfd
,
3575 sec2
->the_bfd_section
));
3576 sec2
->ovly_mapped
= 0; /* sec2 overlaps sec: unmap sec2 */
3580 error (_("No overlay section called %s"), args
);
3583 /* Function: unmap_overlay_command
3584 Mark the overlay section as unmapped
3585 (ie. resident in its LMA address range, rather than the VMA range). */
3588 unmap_overlay_command (char *args
, int from_tty
)
3590 struct objfile
*objfile
;
3591 struct obj_section
*sec
;
3593 if (!overlay_debugging
)
3595 Overlay debugging not enabled. Use either the 'overlay auto' or\n\
3596 the 'overlay manual' command."));
3598 if (args
== 0 || *args
== 0)
3599 error (_("Argument required: name of an overlay section"));
3601 /* First, find a section matching the user supplied argument */
3602 ALL_OBJSECTIONS (objfile
, sec
)
3603 if (!strcmp (bfd_section_name (objfile
->obfd
, sec
->the_bfd_section
), args
))
3605 if (!sec
->ovly_mapped
)
3606 error (_("Section %s is not mapped"), args
);
3607 sec
->ovly_mapped
= 0;
3610 error (_("No overlay section called %s"), args
);
3613 /* Function: overlay_auto_command
3614 A utility command to turn on overlay debugging.
3615 Possibly this should be done via a set/show command. */
3618 overlay_auto_command (char *args
, int from_tty
)
3620 overlay_debugging
= ovly_auto
;
3621 enable_overlay_breakpoints ();
3623 printf_unfiltered (_("Automatic overlay debugging enabled."));
3626 /* Function: overlay_manual_command
3627 A utility command to turn on overlay debugging.
3628 Possibly this should be done via a set/show command. */
3631 overlay_manual_command (char *args
, int from_tty
)
3633 overlay_debugging
= ovly_on
;
3634 disable_overlay_breakpoints ();
3636 printf_unfiltered (_("Overlay debugging enabled."));
3639 /* Function: overlay_off_command
3640 A utility command to turn on overlay debugging.
3641 Possibly this should be done via a set/show command. */
3644 overlay_off_command (char *args
, int from_tty
)
3646 overlay_debugging
= ovly_off
;
3647 disable_overlay_breakpoints ();
3649 printf_unfiltered (_("Overlay debugging disabled."));
3653 overlay_load_command (char *args
, int from_tty
)
3655 if (gdbarch_overlay_update_p (current_gdbarch
))
3656 gdbarch_overlay_update (current_gdbarch
, NULL
);
3658 error (_("This target does not know how to read its overlay state."));
3661 /* Function: overlay_command
3662 A place-holder for a mis-typed command */
3664 /* Command list chain containing all defined "overlay" subcommands. */
3665 struct cmd_list_element
*overlaylist
;
3668 overlay_command (char *args
, int from_tty
)
3671 ("\"overlay\" must be followed by the name of an overlay command.\n");
3672 help_list (overlaylist
, "overlay ", -1, gdb_stdout
);
3676 /* Target Overlays for the "Simplest" overlay manager:
3678 This is GDB's default target overlay layer. It works with the
3679 minimal overlay manager supplied as an example by Cygnus. The
3680 entry point is via a function pointer "gdbarch_overlay_update",
3681 so targets that use a different runtime overlay manager can
3682 substitute their own overlay_update function and take over the
3685 The overlay_update function pokes around in the target's data structures
3686 to see what overlays are mapped, and updates GDB's overlay mapping with
3689 In this simple implementation, the target data structures are as follows:
3690 unsigned _novlys; /# number of overlay sections #/
3691 unsigned _ovly_table[_novlys][4] = {
3692 {VMA, SIZE, LMA, MAPPED}, /# one entry per overlay section #/
3693 {..., ..., ..., ...},
3695 unsigned _novly_regions; /# number of overlay regions #/
3696 unsigned _ovly_region_table[_novly_regions][3] = {
3697 {VMA, SIZE, MAPPED_TO_LMA}, /# one entry per overlay region #/
3700 These functions will attempt to update GDB's mappedness state in the
3701 symbol section table, based on the target's mappedness state.
3703 To do this, we keep a cached copy of the target's _ovly_table, and
3704 attempt to detect when the cached copy is invalidated. The main
3705 entry point is "simple_overlay_update(SECT), which looks up SECT in
3706 the cached table and re-reads only the entry for that section from
3707 the target (whenever possible).
3710 /* Cached, dynamically allocated copies of the target data structures: */
3711 static unsigned (*cache_ovly_table
)[4] = 0;
3713 static unsigned (*cache_ovly_region_table
)[3] = 0;
3715 static unsigned cache_novlys
= 0;
3717 static unsigned cache_novly_regions
= 0;
3719 static CORE_ADDR cache_ovly_table_base
= 0;
3721 static CORE_ADDR cache_ovly_region_table_base
= 0;
3725 VMA
, SIZE
, LMA
, MAPPED
3727 #define TARGET_LONG_BYTES (gdbarch_long_bit (current_gdbarch) \
3730 /* Throw away the cached copy of _ovly_table */
3732 simple_free_overlay_table (void)
3734 if (cache_ovly_table
)
3735 xfree (cache_ovly_table
);
3737 cache_ovly_table
= NULL
;
3738 cache_ovly_table_base
= 0;
3742 /* Throw away the cached copy of _ovly_region_table */
3744 simple_free_overlay_region_table (void)
3746 if (cache_ovly_region_table
)
3747 xfree (cache_ovly_region_table
);
3748 cache_novly_regions
= 0;
3749 cache_ovly_region_table
= NULL
;
3750 cache_ovly_region_table_base
= 0;
3754 /* Read an array of ints from the target into a local buffer.
3755 Convert to host order. int LEN is number of ints */
3757 read_target_long_array (CORE_ADDR memaddr
, unsigned int *myaddr
, int len
)
3759 /* FIXME (alloca): Not safe if array is very large. */
3760 gdb_byte
*buf
= alloca (len
* TARGET_LONG_BYTES
);
3763 read_memory (memaddr
, buf
, len
* TARGET_LONG_BYTES
);
3764 for (i
= 0; i
< len
; i
++)
3765 myaddr
[i
] = extract_unsigned_integer (TARGET_LONG_BYTES
* i
+ buf
,
3769 /* Find and grab a copy of the target _ovly_table
3770 (and _novlys, which is needed for the table's size) */
3772 simple_read_overlay_table (void)
3774 struct minimal_symbol
*novlys_msym
, *ovly_table_msym
;
3776 simple_free_overlay_table ();
3777 novlys_msym
= lookup_minimal_symbol ("_novlys", NULL
, NULL
);
3780 error (_("Error reading inferior's overlay table: "
3781 "couldn't find `_novlys' variable\n"
3782 "in inferior. Use `overlay manual' mode."));
3786 ovly_table_msym
= lookup_minimal_symbol ("_ovly_table", NULL
, NULL
);
3787 if (! ovly_table_msym
)
3789 error (_("Error reading inferior's overlay table: couldn't find "
3790 "`_ovly_table' array\n"
3791 "in inferior. Use `overlay manual' mode."));
3795 cache_novlys
= read_memory_integer (SYMBOL_VALUE_ADDRESS (novlys_msym
), 4);
3797 = (void *) xmalloc (cache_novlys
* sizeof (*cache_ovly_table
));
3798 cache_ovly_table_base
= SYMBOL_VALUE_ADDRESS (ovly_table_msym
);
3799 read_target_long_array (cache_ovly_table_base
,
3800 (unsigned int *) cache_ovly_table
,
3803 return 1; /* SUCCESS */
3807 /* Find and grab a copy of the target _ovly_region_table
3808 (and _novly_regions, which is needed for the table's size) */
3810 simple_read_overlay_region_table (void)
3812 struct minimal_symbol
*msym
;
3814 simple_free_overlay_region_table ();
3815 msym
= lookup_minimal_symbol ("_novly_regions", NULL
, NULL
);
3817 cache_novly_regions
= read_memory_integer (SYMBOL_VALUE_ADDRESS (msym
), 4);
3819 return 0; /* failure */
3820 cache_ovly_region_table
= (void *) xmalloc (cache_novly_regions
* 12);
3821 if (cache_ovly_region_table
!= NULL
)
3823 msym
= lookup_minimal_symbol ("_ovly_region_table", NULL
, NULL
);
3826 cache_ovly_region_table_base
= SYMBOL_VALUE_ADDRESS (msym
);
3827 read_target_long_array (cache_ovly_region_table_base
,
3828 (unsigned int *) cache_ovly_region_table
,
3829 cache_novly_regions
* 3);
3832 return 0; /* failure */
3835 return 0; /* failure */
3836 return 1; /* SUCCESS */
3840 /* Function: simple_overlay_update_1
3841 A helper function for simple_overlay_update. Assuming a cached copy
3842 of _ovly_table exists, look through it to find an entry whose vma,
3843 lma and size match those of OSECT. Re-read the entry and make sure
3844 it still matches OSECT (else the table may no longer be valid).
3845 Set OSECT's mapped state to match the entry. Return: 1 for
3846 success, 0 for failure. */
3849 simple_overlay_update_1 (struct obj_section
*osect
)
3852 bfd
*obfd
= osect
->objfile
->obfd
;
3853 asection
*bsect
= osect
->the_bfd_section
;
3855 size
= bfd_get_section_size (osect
->the_bfd_section
);
3856 for (i
= 0; i
< cache_novlys
; i
++)
3857 if (cache_ovly_table
[i
][VMA
] == bfd_section_vma (obfd
, bsect
)
3858 && cache_ovly_table
[i
][LMA
] == bfd_section_lma (obfd
, bsect
)
3859 /* && cache_ovly_table[i][SIZE] == size */ )
3861 read_target_long_array (cache_ovly_table_base
+ i
* TARGET_LONG_BYTES
,
3862 (unsigned int *) cache_ovly_table
[i
], 4);
3863 if (cache_ovly_table
[i
][VMA
] == bfd_section_vma (obfd
, bsect
)
3864 && cache_ovly_table
[i
][LMA
] == bfd_section_lma (obfd
, bsect
)
3865 /* && cache_ovly_table[i][SIZE] == size */ )
3867 osect
->ovly_mapped
= cache_ovly_table
[i
][MAPPED
];
3870 else /* Warning! Warning! Target's ovly table has changed! */
3876 /* Function: simple_overlay_update
3877 If OSECT is NULL, then update all sections' mapped state
3878 (after re-reading the entire target _ovly_table).
3879 If OSECT is non-NULL, then try to find a matching entry in the
3880 cached ovly_table and update only OSECT's mapped state.
3881 If a cached entry can't be found or the cache isn't valid, then
3882 re-read the entire cache, and go ahead and update all sections. */
3885 simple_overlay_update (struct obj_section
*osect
)
3887 struct objfile
*objfile
;
3889 /* Were we given an osect to look up? NULL means do all of them. */
3891 /* Have we got a cached copy of the target's overlay table? */
3892 if (cache_ovly_table
!= NULL
)
3893 /* Does its cached location match what's currently in the symtab? */
3894 if (cache_ovly_table_base
==
3895 SYMBOL_VALUE_ADDRESS (lookup_minimal_symbol ("_ovly_table", NULL
, NULL
)))
3896 /* Then go ahead and try to look up this single section in the cache */
3897 if (simple_overlay_update_1 (osect
))
3898 /* Found it! We're done. */
3901 /* Cached table no good: need to read the entire table anew.
3902 Or else we want all the sections, in which case it's actually
3903 more efficient to read the whole table in one block anyway. */
3905 if (! simple_read_overlay_table ())
3908 /* Now may as well update all sections, even if only one was requested. */
3909 ALL_OBJSECTIONS (objfile
, osect
)
3910 if (section_is_overlay (osect
->the_bfd_section
))
3913 bfd
*obfd
= osect
->objfile
->obfd
;
3914 asection
*bsect
= osect
->the_bfd_section
;
3916 size
= bfd_get_section_size (bsect
);
3917 for (i
= 0; i
< cache_novlys
; i
++)
3918 if (cache_ovly_table
[i
][VMA
] == bfd_section_vma (obfd
, bsect
)
3919 && cache_ovly_table
[i
][LMA
] == bfd_section_lma (obfd
, bsect
)
3920 /* && cache_ovly_table[i][SIZE] == size */ )
3921 { /* obj_section matches i'th entry in ovly_table */
3922 osect
->ovly_mapped
= cache_ovly_table
[i
][MAPPED
];
3923 break; /* finished with inner for loop: break out */
3928 /* Set the output sections and output offsets for section SECTP in
3929 ABFD. The relocation code in BFD will read these offsets, so we
3930 need to be sure they're initialized. We map each section to itself,
3931 with no offset; this means that SECTP->vma will be honored. */
3934 symfile_dummy_outputs (bfd
*abfd
, asection
*sectp
, void *dummy
)
3936 sectp
->output_section
= sectp
;
3937 sectp
->output_offset
= 0;
3940 /* Relocate the contents of a debug section SECTP in ABFD. The
3941 contents are stored in BUF if it is non-NULL, or returned in a
3942 malloc'd buffer otherwise.
3944 For some platforms and debug info formats, shared libraries contain
3945 relocations against the debug sections (particularly for DWARF-2;
3946 one affected platform is PowerPC GNU/Linux, although it depends on
3947 the version of the linker in use). Also, ELF object files naturally
3948 have unresolved relocations for their debug sections. We need to apply
3949 the relocations in order to get the locations of symbols correct. */
3952 symfile_relocate_debug_section (bfd
*abfd
, asection
*sectp
, bfd_byte
*buf
)
3954 /* We're only interested in debugging sections with relocation
3956 if ((sectp
->flags
& SEC_RELOC
) == 0)
3958 if ((sectp
->flags
& SEC_DEBUGGING
) == 0)
3961 /* We will handle section offsets properly elsewhere, so relocate as if
3962 all sections begin at 0. */
3963 bfd_map_over_sections (abfd
, symfile_dummy_outputs
, NULL
);
3965 return bfd_simple_get_relocated_section_contents (abfd
, sectp
, buf
, NULL
);
3968 struct symfile_segment_data
*
3969 get_symfile_segment_data (bfd
*abfd
)
3971 struct sym_fns
*sf
= find_sym_fns (abfd
);
3976 return sf
->sym_segments (abfd
);
3980 free_symfile_segment_data (struct symfile_segment_data
*data
)
3982 xfree (data
->segment_bases
);
3983 xfree (data
->segment_sizes
);
3984 xfree (data
->segment_info
);
3990 - DATA, containing segment addresses from the object file ABFD, and
3991 the mapping from ABFD's sections onto the segments that own them,
3993 - SEGMENT_BASES[0 .. NUM_SEGMENT_BASES - 1], holding the actual
3994 segment addresses reported by the target,
3995 store the appropriate offsets for each section in OFFSETS.
3997 If there are fewer entries in SEGMENT_BASES than there are segments
3998 in DATA, then apply SEGMENT_BASES' last entry to all the segments.
4000 If there are more, then verify that all the excess addresses are
4001 the same as the last legitimate one, and then ignore them. This
4002 allows "TextSeg=X;DataSeg=X" qOffset replies for files which have
4003 only a single segment. */
4005 symfile_map_offsets_to_segments (bfd
*abfd
, struct symfile_segment_data
*data
,
4006 struct section_offsets
*offsets
,
4007 int num_segment_bases
,
4008 const CORE_ADDR
*segment_bases
)
4013 /* It doesn't make sense to call this function unless you have some
4014 segment base addresses. */
4015 gdb_assert (segment_bases
> 0);
4017 /* If we do not have segment mappings for the object file, we
4018 can not relocate it by segments. */
4019 gdb_assert (data
!= NULL
);
4020 gdb_assert (data
->num_segments
> 0);
4022 /* Check any extra SEGMENT_BASES entries. */
4023 if (num_segment_bases
> data
->num_segments
)
4024 for (i
= data
->num_segments
; i
< num_segment_bases
; i
++)
4025 if (segment_bases
[i
] != segment_bases
[data
->num_segments
- 1])
4028 for (i
= 0, sect
= abfd
->sections
; sect
!= NULL
; i
++, sect
= sect
->next
)
4030 int which
= data
->segment_info
[i
];
4032 gdb_assert (0 <= which
&& which
<= data
->num_segments
);
4034 /* Don't bother computing offsets for sections that aren't
4035 loaded as part of any segment. */
4039 /* Use the last SEGMENT_BASES entry as the address of any extra
4040 segments mentioned in DATA->segment_info. */
4041 if (which
> num_segment_bases
)
4042 which
= num_segment_bases
;
4044 offsets
->offsets
[i
] = (segment_bases
[which
- 1]
4045 - data
->segment_bases
[which
- 1]);
4052 symfile_find_segment_sections (struct objfile
*objfile
)
4054 bfd
*abfd
= objfile
->obfd
;
4057 struct symfile_segment_data
*data
;
4059 data
= get_symfile_segment_data (objfile
->obfd
);
4063 if (data
->num_segments
!= 1 && data
->num_segments
!= 2)
4065 free_symfile_segment_data (data
);
4069 for (i
= 0, sect
= abfd
->sections
; sect
!= NULL
; i
++, sect
= sect
->next
)
4072 int which
= data
->segment_info
[i
];
4076 if (objfile
->sect_index_text
== -1)
4077 objfile
->sect_index_text
= sect
->index
;
4079 if (objfile
->sect_index_rodata
== -1)
4080 objfile
->sect_index_rodata
= sect
->index
;
4082 else if (which
== 2)
4084 if (objfile
->sect_index_data
== -1)
4085 objfile
->sect_index_data
= sect
->index
;
4087 if (objfile
->sect_index_bss
== -1)
4088 objfile
->sect_index_bss
= sect
->index
;
4092 free_symfile_segment_data (data
);
4096 _initialize_symfile (void)
4098 struct cmd_list_element
*c
;
4100 c
= add_cmd ("symbol-file", class_files
, symbol_file_command
, _("\
4101 Load symbol table from executable file FILE.\n\
4102 The `file' command can also load symbol tables, as well as setting the file\n\
4103 to execute."), &cmdlist
);
4104 set_cmd_completer (c
, filename_completer
);
4106 c
= add_cmd ("add-symbol-file", class_files
, add_symbol_file_command
, _("\
4107 Load symbols from FILE, assuming FILE has been dynamically loaded.\n\
4108 Usage: add-symbol-file FILE ADDR [-s <SECT> <SECT_ADDR> -s <SECT> <SECT_ADDR> ...]\n\
4109 ADDR is the starting address of the file's text.\n\
4110 The optional arguments are section-name section-address pairs and\n\
4111 should be specified if the data and bss segments are not contiguous\n\
4112 with the text. SECT is a section name to be loaded at SECT_ADDR."),
4114 set_cmd_completer (c
, filename_completer
);
4116 c
= add_cmd ("add-shared-symbol-files", class_files
,
4117 add_shared_symbol_files_command
, _("\
4118 Load the symbols from shared objects in the dynamic linker's link map."),
4120 c
= add_alias_cmd ("assf", "add-shared-symbol-files", class_files
, 1,
4123 c
= add_cmd ("load", class_files
, load_command
, _("\
4124 Dynamically load FILE into the running program, and record its symbols\n\
4125 for access from GDB.\n\
4126 A load OFFSET may also be given."), &cmdlist
);
4127 set_cmd_completer (c
, filename_completer
);
4129 add_setshow_boolean_cmd ("symbol-reloading", class_support
,
4130 &symbol_reloading
, _("\
4131 Set dynamic symbol table reloading multiple times in one run."), _("\
4132 Show dynamic symbol table reloading multiple times in one run."), NULL
,
4134 show_symbol_reloading
,
4135 &setlist
, &showlist
);
4137 add_prefix_cmd ("overlay", class_support
, overlay_command
,
4138 _("Commands for debugging overlays."), &overlaylist
,
4139 "overlay ", 0, &cmdlist
);
4141 add_com_alias ("ovly", "overlay", class_alias
, 1);
4142 add_com_alias ("ov", "overlay", class_alias
, 1);
4144 add_cmd ("map-overlay", class_support
, map_overlay_command
,
4145 _("Assert that an overlay section is mapped."), &overlaylist
);
4147 add_cmd ("unmap-overlay", class_support
, unmap_overlay_command
,
4148 _("Assert that an overlay section is unmapped."), &overlaylist
);
4150 add_cmd ("list-overlays", class_support
, list_overlays_command
,
4151 _("List mappings of overlay sections."), &overlaylist
);
4153 add_cmd ("manual", class_support
, overlay_manual_command
,
4154 _("Enable overlay debugging."), &overlaylist
);
4155 add_cmd ("off", class_support
, overlay_off_command
,
4156 _("Disable overlay debugging."), &overlaylist
);
4157 add_cmd ("auto", class_support
, overlay_auto_command
,
4158 _("Enable automatic overlay debugging."), &overlaylist
);
4159 add_cmd ("load-target", class_support
, overlay_load_command
,
4160 _("Read the overlay mapping state from the target."), &overlaylist
);
4162 /* Filename extension to source language lookup table: */
4163 init_filename_language_table ();
4164 add_setshow_string_noescape_cmd ("extension-language", class_files
,
4166 Set mapping between filename extension and source language."), _("\
4167 Show mapping between filename extension and source language."), _("\
4168 Usage: set extension-language .foo bar"),
4169 set_ext_lang_command
,
4171 &setlist
, &showlist
);
4173 add_info ("extensions", info_ext_lang_command
,
4174 _("All filename extensions associated with a source language."));
4176 add_setshow_optional_filename_cmd ("debug-file-directory", class_support
,
4177 &debug_file_directory
, _("\
4178 Set the directory where separate debug symbols are searched for."), _("\
4179 Show the directory where separate debug symbols are searched for."), _("\
4180 Separate debug symbols are first searched for in the same\n\
4181 directory as the binary, then in the `" DEBUG_SUBDIRECTORY
"' subdirectory,\n\
4182 and lastly at the path of the directory of the binary with\n\
4183 the global debug-file directory prepended."),
4185 show_debug_file_directory
,
4186 &setlist
, &showlist
);