1992-02-22 02:46:16 +01:00
|
|
|
|
/* GDB routines for manipulating objfiles.
|
|
|
|
|
Copyright 1992 Free Software Foundation, Inc.
|
|
|
|
|
Contributed by Cygnus Support, using pieces from other GDB modules.
|
|
|
|
|
|
|
|
|
|
This file is part of GDB.
|
|
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
|
|
|
|
|
|
|
|
|
|
/* This file contains support routines for creating, manipulating, and
|
|
|
|
|
destroying objfile structures. */
|
|
|
|
|
|
|
|
|
|
#include "defs.h"
|
|
|
|
|
#include "bfd.h" /* Binary File Description */
|
|
|
|
|
#include "symtab.h"
|
|
|
|
|
#include "symfile.h"
|
1992-03-21 02:56:01 +01:00
|
|
|
|
#include "objfiles.h"
|
1993-09-21 23:21:35 +02:00
|
|
|
|
#include "gdb-stabs.h"
|
1993-09-30 22:27:16 +01:00
|
|
|
|
#include "target.h"
|
1992-02-22 02:46:16 +01:00
|
|
|
|
|
1992-03-15 02:09:14 +01:00
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
#include <fcntl.h>
|
1992-02-22 02:46:16 +01:00
|
|
|
|
#include <obstack.h>
|
|
|
|
|
|
1992-03-15 02:09:14 +01:00
|
|
|
|
/* Prototypes for local functions */
|
|
|
|
|
|
1992-04-18 04:30:28 +02:00
|
|
|
|
#if !defined(NO_MMALLOC) && defined(HAVE_MMAP)
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
open_existing_mapped_file PARAMS ((char *, long, int));
|
|
|
|
|
|
1992-03-15 02:09:14 +01:00
|
|
|
|
static int
|
1992-03-18 17:43:25 +01:00
|
|
|
|
open_mapped_file PARAMS ((char *filename, long mtime, int mapped));
|
1992-03-15 02:09:14 +01:00
|
|
|
|
|
|
|
|
|
static CORE_ADDR
|
|
|
|
|
map_to_address PARAMS ((void));
|
|
|
|
|
|
1992-04-18 04:30:28 +02:00
|
|
|
|
#endif /* !defined(NO_MMALLOC) && defined(HAVE_MMAP) */
|
|
|
|
|
|
|
|
|
|
/* Message to be printed before the error message, when an error occurs. */
|
|
|
|
|
|
|
|
|
|
extern char *error_pre_print;
|
|
|
|
|
|
1992-03-21 02:56:01 +01:00
|
|
|
|
/* Externally visible variables that are owned by this module.
|
|
|
|
|
See declarations in objfile.h for more info. */
|
1992-02-22 02:46:16 +01:00
|
|
|
|
|
|
|
|
|
struct objfile *object_files; /* Linked list of all objfiles */
|
1992-03-21 02:56:01 +01:00
|
|
|
|
struct objfile *current_objfile; /* For symbol file being read in */
|
|
|
|
|
struct objfile *symfile_objfile; /* Main symbol table loaded from */
|
|
|
|
|
|
1992-03-15 02:09:14 +01:00
|
|
|
|
int mapped_symbol_files; /* Try to use mapped symbol files */
|
1992-02-22 02:46:16 +01:00
|
|
|
|
|
1993-04-07 09:04:26 +02:00
|
|
|
|
/* Locate all mappable sections of a BFD file.
|
|
|
|
|
objfile_p_char is a char * to get it through
|
|
|
|
|
bfd_map_over_sections; we cast it back to its proper type. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
add_to_objfile_sections (abfd, asect, objfile_p_char)
|
|
|
|
|
bfd *abfd;
|
|
|
|
|
sec_ptr asect;
|
|
|
|
|
PTR objfile_p_char;
|
|
|
|
|
{
|
|
|
|
|
struct objfile *objfile = (struct objfile *) objfile_p_char;
|
|
|
|
|
struct obj_section section;
|
|
|
|
|
flagword aflag;
|
|
|
|
|
|
|
|
|
|
aflag = bfd_get_section_flags (abfd, asect);
|
1994-01-04 22:37:25 +01:00
|
|
|
|
if (!(aflag & SEC_ALLOC))
|
1993-04-07 09:04:26 +02:00
|
|
|
|
return;
|
|
|
|
|
if (0 == bfd_section_size (abfd, asect))
|
|
|
|
|
return;
|
|
|
|
|
section.offset = 0;
|
1993-04-22 22:42:37 +02:00
|
|
|
|
section.objfile = objfile;
|
* Makefile.in (TAGS): Use variables directly, rather than using
find, to locate TM_FILE, XM_FILE, and NAT_FILE. This is faster
and means that these filenames no longer need be unique across all
the config/* directories.
* configure.in: Put the config/*/ into TM_FILE, etc.
* m68k-stub.c (computeSignal): Return SIGFPE, not SIGURG, for chk
and trapv exceptions.
* target.h (struct section_table), objfiles.h (struct obj_section):
Change name of field sec_ptr to the_bfd_section. More mnemonic
and avoids the (sort of, for the ptx compiler) name clash with
the name of the typedef.
* exec.c, xcoffexec.c, sparc-tdep.c, rs6000-nat.c, osfsolib.c,
solib.c, irix5-nat.c, objfiles.c, remote.c: Change users.
* utils.c: Include readline.h.
* Makefile.in (utils.o): Add dependency.
* remote.c (getpkt): Add support for run-length encoding.
1994-03-19 19:49:50 +01:00
|
|
|
|
section.the_bfd_section = asect;
|
1993-04-07 09:04:26 +02:00
|
|
|
|
section.addr = bfd_section_vma (abfd, asect);
|
|
|
|
|
section.endaddr = section.addr + bfd_section_size (abfd, asect);
|
|
|
|
|
obstack_grow (&objfile->psymbol_obstack, §ion, sizeof(section));
|
Tue Sep 28 09:45:38 1993 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
* symmisc.c (print_symbol): Use %02x not %2x for LOC_CONST_BYTES.
Clean up problems with targets and hosts that have 64 bit longs
and pointers and 32 bit ints.
* breakpoint.c, buildsym.c, c-lang.c, c-valprint.c, ch-lang.c,
ch-valprint.c, core.c, cp-valprint.c, dbxread.c, exec.c,
expprint.c, gdbtypes.c, infcmd.c, language.c, language.h,
m2-lang.c, maint.c, mips-tdep.c, mipsread.c, partial-stab.h,
printcmd.c, remote-vx.c, solib.c, source.c, stack.c, symfile.c,
symmisc.c, symtab.c, valops.c, valprint.c, xcoffexec.c:
Change all printf formats from %x to %lx if outputting an address.
Change la_*_format to use long format.
local_hex_string, local_hex_string_custom now take an unsigned long
argument, change all callers.
* coffread.c (read_coff_symtab): Remove superfluous cast for
complaint output.
* dbxread.c (end_psymtab): Cast MSYMBOL_INFO to long, not int.
* findvar.c, value.h (write_register): Change register value to long.
* gdbtypes.h (struct type): Change `bitsize' to long as
TYPE_FIELD_STATIC_PHYSNAME uses this field as a pointer.
* inferior.h (struct inferior_status): Change type of stop_pc to
CORE_ADDR.
* language.h (local_octal_string, local_octal_string_custom):
Remove prototype, the functions are neither defined nor used.
* mipsread.c (parse_symbol): Use temporary variable for bitsize as
f->bitsize is a long now.
* objfiles.c (add_to_objfile_sections, build_objfile_section_table):
Use unsigned long casts instead of int for abusing sections_end
pointer as integer.
* stack.c (parse_frame_specification): Change type of `args' to
CORE_ADDR for SETUP_ARBITRARY_FRAME.
* printcmd.c (make_vasize): Allow redefinition via MAKEVA_SIZE.
* mipsread.c (parse_type): Alpha cc now supports the t->continued
bit, update algorithm to match the way the compiler uses it.
1993-09-28 18:43:25 +01:00
|
|
|
|
objfile->sections_end = (struct obj_section *) (((unsigned long) objfile->sections_end) + 1);
|
1993-04-07 09:04:26 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Builds a section table for OBJFILE.
|
* symfile.c (reread_symbols): When re-reading symbols, do all the
right operations ourself, rather than calling symbol_file_command.
If we re-read something, call clear_symtab_users not just
breakpoint_re_set.
* objfiles.h, objfiles.c (build_objfile_section_table): No longer
static.
* symfile.c (clear_symtab_users): Call clear_pc_function_cache.
* coffread.c, dbxread.c, elfread.c, mipsread.c, nlmread.c, paread.c
(*_symfile_offsets): Set objfile->num_sections.
* remote.c (remote_wait), symfile.c (syms_from_objfile):
Don't muck with objfile->num_sections now that all the symbol
readers set it.
* elfread.c: Clean up obsolete comment about handling only DWARF.
* paread.c: Remove comment about how we should use an "ordinary"
file format with an hppa suffix. There is nothing ordinary about SOM.
1993-10-30 21:21:19 +01:00
|
|
|
|
Returns 0 if OK, 1 on error (in which case bfd_error contains the
|
|
|
|
|
error). */
|
1993-04-07 09:04:26 +02:00
|
|
|
|
|
* symfile.c (reread_symbols): When re-reading symbols, do all the
right operations ourself, rather than calling symbol_file_command.
If we re-read something, call clear_symtab_users not just
breakpoint_re_set.
* objfiles.h, objfiles.c (build_objfile_section_table): No longer
static.
* symfile.c (clear_symtab_users): Call clear_pc_function_cache.
* coffread.c, dbxread.c, elfread.c, mipsread.c, nlmread.c, paread.c
(*_symfile_offsets): Set objfile->num_sections.
* remote.c (remote_wait), symfile.c (syms_from_objfile):
Don't muck with objfile->num_sections now that all the symbol
readers set it.
* elfread.c: Clean up obsolete comment about handling only DWARF.
* paread.c: Remove comment about how we should use an "ordinary"
file format with an hppa suffix. There is nothing ordinary about SOM.
1993-10-30 21:21:19 +01:00
|
|
|
|
int
|
1993-04-07 09:04:26 +02:00
|
|
|
|
build_objfile_section_table (objfile)
|
|
|
|
|
struct objfile *objfile;
|
|
|
|
|
{
|
1994-01-04 22:37:25 +01:00
|
|
|
|
/* objfile->sections can be already set when reading a mapped symbol
|
|
|
|
|
file. I believe that we do need to rebuild the section table in
|
|
|
|
|
this case (we rebuild other things derived from the bfd), but we
|
|
|
|
|
can't free the old one (it's in the psymbol_obstack). So we just
|
|
|
|
|
waste some memory. */
|
1993-04-07 09:04:26 +02:00
|
|
|
|
|
|
|
|
|
objfile->sections_end = 0;
|
|
|
|
|
bfd_map_over_sections (objfile->obfd, add_to_objfile_sections, (char *)objfile);
|
1993-04-13 17:31:29 +02:00
|
|
|
|
objfile->sections = (struct obj_section *)
|
|
|
|
|
obstack_finish (&objfile->psymbol_obstack);
|
Tue Sep 28 09:45:38 1993 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
* symmisc.c (print_symbol): Use %02x not %2x for LOC_CONST_BYTES.
Clean up problems with targets and hosts that have 64 bit longs
and pointers and 32 bit ints.
* breakpoint.c, buildsym.c, c-lang.c, c-valprint.c, ch-lang.c,
ch-valprint.c, core.c, cp-valprint.c, dbxread.c, exec.c,
expprint.c, gdbtypes.c, infcmd.c, language.c, language.h,
m2-lang.c, maint.c, mips-tdep.c, mipsread.c, partial-stab.h,
printcmd.c, remote-vx.c, solib.c, source.c, stack.c, symfile.c,
symmisc.c, symtab.c, valops.c, valprint.c, xcoffexec.c:
Change all printf formats from %x to %lx if outputting an address.
Change la_*_format to use long format.
local_hex_string, local_hex_string_custom now take an unsigned long
argument, change all callers.
* coffread.c (read_coff_symtab): Remove superfluous cast for
complaint output.
* dbxread.c (end_psymtab): Cast MSYMBOL_INFO to long, not int.
* findvar.c, value.h (write_register): Change register value to long.
* gdbtypes.h (struct type): Change `bitsize' to long as
TYPE_FIELD_STATIC_PHYSNAME uses this field as a pointer.
* inferior.h (struct inferior_status): Change type of stop_pc to
CORE_ADDR.
* language.h (local_octal_string, local_octal_string_custom):
Remove prototype, the functions are neither defined nor used.
* mipsread.c (parse_symbol): Use temporary variable for bitsize as
f->bitsize is a long now.
* objfiles.c (add_to_objfile_sections, build_objfile_section_table):
Use unsigned long casts instead of int for abusing sections_end
pointer as integer.
* stack.c (parse_frame_specification): Change type of `args' to
CORE_ADDR for SETUP_ARBITRARY_FRAME.
* printcmd.c (make_vasize): Allow redefinition via MAKEVA_SIZE.
* mipsread.c (parse_type): Alpha cc now supports the t->continued
bit, update algorithm to match the way the compiler uses it.
1993-09-28 18:43:25 +01:00
|
|
|
|
objfile->sections_end = objfile->sections + (unsigned long) objfile->sections_end;
|
1993-04-07 09:04:26 +02:00
|
|
|
|
return(0);
|
|
|
|
|
}
|
|
|
|
|
|
1992-03-18 17:43:25 +01:00
|
|
|
|
/* Given a pointer to an initialized bfd (ABFD) and a flag that indicates
|
|
|
|
|
whether or not an objfile is to be mapped (MAPPED), allocate a new objfile
|
|
|
|
|
struct, fill it in as best we can, link it into the list of all known
|
|
|
|
|
objfiles, and return a pointer to the new objfile struct. */
|
1992-02-22 02:46:16 +01:00
|
|
|
|
|
|
|
|
|
struct objfile *
|
1992-03-18 17:43:25 +01:00
|
|
|
|
allocate_objfile (abfd, mapped)
|
1992-02-22 02:46:16 +01:00
|
|
|
|
bfd *abfd;
|
1992-03-15 02:09:14 +01:00
|
|
|
|
int mapped;
|
1992-02-22 02:46:16 +01:00
|
|
|
|
{
|
1992-03-15 02:09:14 +01:00
|
|
|
|
struct objfile *objfile = NULL;
|
1994-09-03 02:32:08 +02:00
|
|
|
|
struct objfile *last_one = NULL;
|
1992-03-15 02:09:14 +01:00
|
|
|
|
|
|
|
|
|
mapped |= mapped_symbol_files;
|
|
|
|
|
|
|
|
|
|
#if !defined(NO_MMALLOC) && defined(HAVE_MMAP)
|
* Makefile.in (c-exp.tab.o): Remove notice about shift/reduce conflicts
which no longer occur.
gcc -Wall lint:
* findvar.c (symbol_read_needs_frame), corelow.c (ignore),
inflow.c (gdb_has_a_terminal): Make sure to return a value.
* regex.h: Declare re_set_syntax.
* printcmd.c: Include valprint.h.
* infcmd.c, exec.c, maint.c, core.c: Include language.h.
* maint.c: Include expression.h.
* infrun.c, fork-child.c, corelow.c, inflow.c: Include thread.h.
* inftarg.c: Include command.h.
* coredep.c: Include value.h.
* c-exp.y, m2-exp.y, ch-exp.y: Include bfd.h, symfile.h and objfiles.h.
* ch-typeprint.c: Include typeprint.h.
* ch-valprint.c: Include c-lang.h.
* nlmread.c: Include buildsym.h.
* environ.c: Include gdbcore.h. Only include defs.h once.
(set_in_environ): Cast const char * to char * when passing to
set_gnutarget.
Remove unused variables:
* printcmd.c (printf_command): args_to_vprintf.
* coffread.c (coff_symfile_init): strsection.
Move variables to within the #ifdefs where they are used:
* symtab.c (gdb_mangle_name): opname.
* inftarg.c (child_attach): pid and exec_file.
* inftarg.c (child_detach): siggnal.
* objfiles.c (allocate_objfile): mapto, md, and fd.
* objfiles.c (free_objfile): mmfd.
* infrun.c (wait_for_inferior): Include BPSTAT_WHAT_LAST in switch.
* infrun.c (wait_for_inferior): Remove unused same_pid label.
* inferior.h: Declare set_sigint_trap and clear_sigint_trap.
* parser-defs.h: Declare write_exp_elt_block.
* stabsread.h: Declare elfstab_offset_sections and
coffstab_build_psymtabs.
1993-10-21 21:41:50 +01:00
|
|
|
|
{
|
1992-03-15 02:09:14 +01:00
|
|
|
|
|
* Makefile.in (c-exp.tab.o): Remove notice about shift/reduce conflicts
which no longer occur.
gcc -Wall lint:
* findvar.c (symbol_read_needs_frame), corelow.c (ignore),
inflow.c (gdb_has_a_terminal): Make sure to return a value.
* regex.h: Declare re_set_syntax.
* printcmd.c: Include valprint.h.
* infcmd.c, exec.c, maint.c, core.c: Include language.h.
* maint.c: Include expression.h.
* infrun.c, fork-child.c, corelow.c, inflow.c: Include thread.h.
* inftarg.c: Include command.h.
* coredep.c: Include value.h.
* c-exp.y, m2-exp.y, ch-exp.y: Include bfd.h, symfile.h and objfiles.h.
* ch-typeprint.c: Include typeprint.h.
* ch-valprint.c: Include c-lang.h.
* nlmread.c: Include buildsym.h.
* environ.c: Include gdbcore.h. Only include defs.h once.
(set_in_environ): Cast const char * to char * when passing to
set_gnutarget.
Remove unused variables:
* printcmd.c (printf_command): args_to_vprintf.
* coffread.c (coff_symfile_init): strsection.
Move variables to within the #ifdefs where they are used:
* symtab.c (gdb_mangle_name): opname.
* inftarg.c (child_attach): pid and exec_file.
* inftarg.c (child_detach): siggnal.
* objfiles.c (allocate_objfile): mapto, md, and fd.
* objfiles.c (free_objfile): mmfd.
* infrun.c (wait_for_inferior): Include BPSTAT_WHAT_LAST in switch.
* infrun.c (wait_for_inferior): Remove unused same_pid label.
* inferior.h: Declare set_sigint_trap and clear_sigint_trap.
* parser-defs.h: Declare write_exp_elt_block.
* stabsread.h: Declare elfstab_offset_sections and
coffstab_build_psymtabs.
1993-10-21 21:41:50 +01:00
|
|
|
|
/* If we can support mapped symbol files, try to open/reopen the
|
|
|
|
|
mapped file that corresponds to the file from which we wish to
|
|
|
|
|
read symbols. If the objfile is to be mapped, we must malloc
|
|
|
|
|
the structure itself using the mmap version, and arrange that
|
|
|
|
|
all memory allocation for the objfile uses the mmap routines.
|
|
|
|
|
If we are reusing an existing mapped file, from which we get
|
|
|
|
|
our objfile pointer, we have to make sure that we update the
|
|
|
|
|
pointers to the alloc/free functions in the obstack, in case
|
|
|
|
|
these functions have moved within the current gdb. */
|
|
|
|
|
|
|
|
|
|
int fd;
|
|
|
|
|
|
|
|
|
|
fd = open_mapped_file (bfd_get_filename (abfd), bfd_get_mtime (abfd),
|
|
|
|
|
mapped);
|
|
|
|
|
if (fd >= 0)
|
|
|
|
|
{
|
|
|
|
|
CORE_ADDR mapto;
|
|
|
|
|
PTR md;
|
|
|
|
|
|
|
|
|
|
if (((mapto = map_to_address ()) == 0) ||
|
|
|
|
|
((md = mmalloc_attach (fd, (PTR) mapto)) == NULL))
|
|
|
|
|
{
|
|
|
|
|
close (fd);
|
|
|
|
|
}
|
|
|
|
|
else if ((objfile = (struct objfile *) mmalloc_getkey (md, 0)) != NULL)
|
|
|
|
|
{
|
|
|
|
|
/* Update memory corruption handler function addresses. */
|
|
|
|
|
init_malloc (md);
|
|
|
|
|
objfile -> md = md;
|
|
|
|
|
objfile -> mmfd = fd;
|
|
|
|
|
/* Update pointers to functions to *our* copies */
|
|
|
|
|
obstack_chunkfun (&objfile -> psymbol_obstack, xmmalloc);
|
|
|
|
|
obstack_freefun (&objfile -> psymbol_obstack, mfree);
|
|
|
|
|
obstack_chunkfun (&objfile -> symbol_obstack, xmmalloc);
|
|
|
|
|
obstack_freefun (&objfile -> symbol_obstack, mfree);
|
|
|
|
|
obstack_chunkfun (&objfile -> type_obstack, xmmalloc);
|
|
|
|
|
obstack_freefun (&objfile -> type_obstack, mfree);
|
|
|
|
|
/* If already in objfile list, unlink it. */
|
|
|
|
|
unlink_objfile (objfile);
|
|
|
|
|
/* Forget things specific to a particular gdb, may have changed. */
|
|
|
|
|
objfile -> sf = NULL;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/* Set up to detect internal memory corruption. MUST be
|
|
|
|
|
done before the first malloc. See comments in
|
|
|
|
|
init_malloc() and mmcheck(). */
|
|
|
|
|
|
|
|
|
|
init_malloc (md);
|
|
|
|
|
|
|
|
|
|
objfile = (struct objfile *)
|
|
|
|
|
xmmalloc (md, sizeof (struct objfile));
|
|
|
|
|
memset (objfile, 0, sizeof (struct objfile));
|
|
|
|
|
objfile -> md = md;
|
|
|
|
|
objfile -> mmfd = fd;
|
|
|
|
|
objfile -> flags |= OBJF_MAPPED;
|
|
|
|
|
mmalloc_setkey (objfile -> md, 0, objfile);
|
|
|
|
|
obstack_specify_allocation_with_arg (&objfile -> psymbol_obstack,
|
|
|
|
|
0, 0, xmmalloc, mfree,
|
|
|
|
|
objfile -> md);
|
|
|
|
|
obstack_specify_allocation_with_arg (&objfile -> symbol_obstack,
|
|
|
|
|
0, 0, xmmalloc, mfree,
|
|
|
|
|
objfile -> md);
|
|
|
|
|
obstack_specify_allocation_with_arg (&objfile -> type_obstack,
|
|
|
|
|
0, 0, xmmalloc, mfree,
|
|
|
|
|
objfile -> md);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (mapped && (objfile == NULL))
|
|
|
|
|
{
|
|
|
|
|
warning ("symbol table for '%s' will not be mapped",
|
|
|
|
|
bfd_get_filename (abfd));
|
|
|
|
|
}
|
|
|
|
|
}
|
1992-03-15 02:09:14 +01:00
|
|
|
|
#else /* defined(NO_MMALLOC) || !defined(HAVE_MMAP) */
|
1992-02-22 02:46:16 +01:00
|
|
|
|
|
1992-03-15 02:09:14 +01:00
|
|
|
|
if (mapped)
|
1992-02-22 02:46:16 +01:00
|
|
|
|
{
|
1992-03-15 02:09:14 +01:00
|
|
|
|
warning ("this version of gdb does not support mapped symbol tables.");
|
|
|
|
|
|
|
|
|
|
/* Turn off the global flag so we don't try to do mapped symbol tables
|
|
|
|
|
any more, which shuts up gdb unless the user specifically gives the
|
|
|
|
|
"mapped" keyword again. */
|
|
|
|
|
|
|
|
|
|
mapped_symbol_files = 0;
|
1992-02-22 02:46:16 +01:00
|
|
|
|
}
|
1992-03-15 02:09:14 +01:00
|
|
|
|
|
|
|
|
|
#endif /* !defined(NO_MMALLOC) && defined(HAVE_MMAP) */
|
|
|
|
|
|
|
|
|
|
/* If we don't support mapped symbol files, didn't ask for the file to be
|
|
|
|
|
mapped, or failed to open the mapped file for some reason, then revert
|
|
|
|
|
back to an unmapped objfile. */
|
|
|
|
|
|
|
|
|
|
if (objfile == NULL)
|
1992-02-22 02:46:16 +01:00
|
|
|
|
{
|
|
|
|
|
objfile = (struct objfile *) xmalloc (sizeof (struct objfile));
|
* breakpoint.c, buildsym.c, c-exp.y, coffread.c, command.c,
core.c, cplus-dem.c, dbxread.c, dwarfread.c, elfread.c, environ.c,
eval.c, findvar.c, gdbtypes.c, hppabsd-tdep.c, hppahpux-tdep.c,
i386-tdep.c, ieee-float.c, infcmd.c, inflow.c, infptrace.c,
infrun.c, m2-exp.y, mipsread.c, objfiles.c, parse.c, procfs.c,
putenv.c, remote-mm.c, remote-vx.c, solib.c, sparc-tdep.c,
sparc-xdep.c, stack.c, symfile.c, symtab.c, symtab.h, target.c,
tm-i386v.h, tm-sparc.h, utils.c, valarith.c, valops.c, valprint.c,
values.c, xcoffread.c:
Remove "(void)" casts from function calls where the return value
is ignored, in accordance with GNU coding standards.
1992-07-04 05:22:08 +02:00
|
|
|
|
memset (objfile, 0, sizeof (struct objfile));
|
1992-03-15 02:09:14 +01:00
|
|
|
|
objfile -> md = NULL;
|
1992-08-01 22:40:59 +02:00
|
|
|
|
obstack_specify_allocation (&objfile -> psymbol_obstack, 0, 0, xmalloc,
|
|
|
|
|
free);
|
|
|
|
|
obstack_specify_allocation (&objfile -> symbol_obstack, 0, 0, xmalloc,
|
|
|
|
|
free);
|
|
|
|
|
obstack_specify_allocation (&objfile -> type_obstack, 0, 0, xmalloc,
|
|
|
|
|
free);
|
1992-02-22 02:46:16 +01:00
|
|
|
|
}
|
|
|
|
|
|
1992-03-18 17:43:25 +01:00
|
|
|
|
/* Update the per-objfile information that comes from the bfd, ensuring
|
|
|
|
|
that any data that is reference is saved in the per-objfile data
|
|
|
|
|
region. */
|
1992-02-22 02:46:16 +01:00
|
|
|
|
|
|
|
|
|
objfile -> obfd = abfd;
|
1992-04-17 04:59:43 +02:00
|
|
|
|
if (objfile -> name != NULL)
|
|
|
|
|
{
|
|
|
|
|
mfree (objfile -> md, objfile -> name);
|
|
|
|
|
}
|
1992-03-18 17:43:25 +01:00
|
|
|
|
objfile -> name = mstrsave (objfile -> md, bfd_get_filename (abfd));
|
1992-02-22 02:46:16 +01:00
|
|
|
|
objfile -> mtime = bfd_get_mtime (abfd);
|
|
|
|
|
|
1993-04-07 09:04:26 +02:00
|
|
|
|
/* Build section table. */
|
|
|
|
|
|
|
|
|
|
if (build_objfile_section_table (objfile))
|
|
|
|
|
{
|
|
|
|
|
error ("Can't find the file sections in `%s': %s",
|
* corelow.c, exec.c, irix5-nat.c, mipsread.c, objfiles.c,
osfsolib.c, rs6000-nat.c, solib.c, symfile.c, utils.c,
xcoffexec.c: Use bfd_get_error and bfd_set_error and new error names.
1994-02-17 19:19:25 +01:00
|
|
|
|
objfile -> name, bfd_errmsg (bfd_get_error ()));
|
1993-04-07 09:04:26 +02:00
|
|
|
|
}
|
|
|
|
|
|
1994-09-03 02:32:08 +02:00
|
|
|
|
/* Add this file onto the tail of the linked list of other such files. */
|
1992-02-22 02:46:16 +01:00
|
|
|
|
|
1994-09-03 02:32:08 +02:00
|
|
|
|
objfile -> next = NULL;
|
|
|
|
|
if (object_files == NULL)
|
|
|
|
|
object_files = objfile;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
for (last_one = object_files;
|
|
|
|
|
last_one -> next;
|
|
|
|
|
last_one = last_one -> next);
|
|
|
|
|
last_one -> next = objfile;
|
|
|
|
|
}
|
1992-02-22 02:46:16 +01:00
|
|
|
|
return (objfile);
|
|
|
|
|
}
|
|
|
|
|
|
1994-10-20 06:15:46 +01:00
|
|
|
|
/* Put OBJFILE at the front of the list. */
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
objfile_to_front (objfile)
|
|
|
|
|
struct objfile *objfile;
|
|
|
|
|
{
|
|
|
|
|
struct objfile **objp;
|
|
|
|
|
for (objp = &object_files; *objp != NULL; objp = &((*objp)->next))
|
|
|
|
|
{
|
|
|
|
|
if (*objp == objfile)
|
|
|
|
|
{
|
|
|
|
|
/* Unhook it from where it is. */
|
|
|
|
|
*objp = objfile->next;
|
|
|
|
|
/* Put it in the front. */
|
|
|
|
|
objfile->next = object_files;
|
|
|
|
|
object_files = objfile;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1992-05-18 01:54:32 +02:00
|
|
|
|
/* Unlink OBJFILE from the list of known objfiles, if it is found in the
|
|
|
|
|
list.
|
|
|
|
|
|
|
|
|
|
It is not a bug, or error, to call this function if OBJFILE is not known
|
|
|
|
|
to be in the current list. This is done in the case of mapped objfiles,
|
|
|
|
|
for example, just to ensure that the mapped objfile doesn't appear twice
|
|
|
|
|
in the list. Since the list is threaded, linking in a mapped objfile
|
|
|
|
|
twice would create a circular list.
|
|
|
|
|
|
|
|
|
|
If OBJFILE turns out to be in the list, we zap it's NEXT pointer after
|
|
|
|
|
unlinking it, just to ensure that we have completely severed any linkages
|
|
|
|
|
between the OBJFILE and the list. */
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
unlink_objfile (objfile)
|
|
|
|
|
struct objfile *objfile;
|
|
|
|
|
{
|
|
|
|
|
struct objfile** objpp;
|
|
|
|
|
|
|
|
|
|
for (objpp = &object_files; *objpp != NULL; objpp = &((*objpp) -> next))
|
|
|
|
|
{
|
|
|
|
|
if (*objpp == objfile)
|
|
|
|
|
{
|
|
|
|
|
*objpp = (*objpp) -> next;
|
|
|
|
|
objfile -> next = NULL;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1992-02-22 02:46:16 +01:00
|
|
|
|
|
|
|
|
|
/* Destroy an objfile and all the symtabs and psymtabs under it. Note
|
|
|
|
|
that as much as possible is allocated on the symbol_obstack and
|
* coffread.c, mipsread.c, xcoffread.c, coffread.c, dbxread.c,
elfread.c (coff_symfile_finish): Add function, prototype, and
add to the xxxx_sym_fns struct for each file type. Also reformat
the xxxx_sym_fns vector to a standard format and add comments.
* coffread.c, mipsread.c, xcoffread.c, coffread.c, dbxread.c,
elfread.c (xxx_symfile_new_init, xxx_symfile_init, xxx_symfile_read):
Pass pointer to struct objfile rather than pointer to sym_fns.
Change references inside each function accordingly. Allocate any
symbol file specific info in the per-objfile memory region.
* dbxread.c (free_and_init_header_files): Break function into
free_header_files(), called from dbx_symfile_finish(), and
init_header_files(), called from dbx_new_init().
* dbxread.c (dbx_new_init): Move deallocation things to new
dbx_symfile_finish function.
* elfread.c (elf_new_init): Call buildsym_new_init().
* objfiles.c (free_objfile): Call the appropriate symfile_finish()
routine for the objfile before deallocating other stuff.
* sparc-tdep.c (get_longjmp_target): Cast target_read_memory arg.
* symfile.h: Move struct sym_fns to before struct objfile def.
Add sym_finish function pointer and change prototypes of other
function pointers to reflect passing struct objfile pointer rather
than struct sym_fns pointer.
* symfile.c: Remove now obsolete symtab_fns pointer.
* symfile.c (symfile_init): Renamed to find_sym_fns, and now only
locates the correct sym_fns struct for the given objfile.
* symfile.c (syms_from_objfile, symbol_file_add): Restructured
for better support of mapped symbol tables.
* symfile.c (symbol_file_command): Remove obsolete code using
symfile_fns.
* symfile.h: Remove duplicate declarations for symfile_objfile,
entry_point, and object_files.
* target.c (target_info): Compare symfile_objfile to NULL.
* xcoffread.c (aixcoff_new_init): Move deallocation stuff to
aixcoff_symfile_finish().
1992-03-19 22:57:15 +01:00
|
|
|
|
psymbol_obstack, so that the memory can be efficiently freed.
|
|
|
|
|
|
|
|
|
|
Things which we do NOT free because they are not in malloc'd memory
|
|
|
|
|
or not in memory specific to the objfile include:
|
|
|
|
|
|
|
|
|
|
objfile -> sf
|
|
|
|
|
|
1992-04-17 04:59:43 +02:00
|
|
|
|
FIXME: If the objfile is using reusable symbol information (via mmalloc),
|
|
|
|
|
then we need to take into account the fact that more than one process
|
|
|
|
|
may be using the symbol information at the same time (when mmalloc is
|
|
|
|
|
extended to support cooperative locking). When more than one process
|
|
|
|
|
is using the mapped symbol info, we need to be more careful about when
|
|
|
|
|
we free objects in the reusable area. */
|
1992-02-22 02:46:16 +01:00
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
free_objfile (objfile)
|
|
|
|
|
struct objfile *objfile;
|
|
|
|
|
{
|
1992-04-17 04:59:43 +02:00
|
|
|
|
/* First do any symbol file specific actions required when we are
|
|
|
|
|
finished with a particular symbol file. Note that if the objfile
|
|
|
|
|
is using reusable symbol information (via mmalloc) then each of
|
|
|
|
|
these routines is responsible for doing the correct thing, either
|
|
|
|
|
freeing things which are valid only during this particular gdb
|
|
|
|
|
execution, or leaving them to be reused during the next one. */
|
1992-02-22 02:46:16 +01:00
|
|
|
|
|
* coffread.c, mipsread.c, xcoffread.c, coffread.c, dbxread.c,
elfread.c (coff_symfile_finish): Add function, prototype, and
add to the xxxx_sym_fns struct for each file type. Also reformat
the xxxx_sym_fns vector to a standard format and add comments.
* coffread.c, mipsread.c, xcoffread.c, coffread.c, dbxread.c,
elfread.c (xxx_symfile_new_init, xxx_symfile_init, xxx_symfile_read):
Pass pointer to struct objfile rather than pointer to sym_fns.
Change references inside each function accordingly. Allocate any
symbol file specific info in the per-objfile memory region.
* dbxread.c (free_and_init_header_files): Break function into
free_header_files(), called from dbx_symfile_finish(), and
init_header_files(), called from dbx_new_init().
* dbxread.c (dbx_new_init): Move deallocation things to new
dbx_symfile_finish function.
* elfread.c (elf_new_init): Call buildsym_new_init().
* objfiles.c (free_objfile): Call the appropriate symfile_finish()
routine for the objfile before deallocating other stuff.
* sparc-tdep.c (get_longjmp_target): Cast target_read_memory arg.
* symfile.h: Move struct sym_fns to before struct objfile def.
Add sym_finish function pointer and change prototypes of other
function pointers to reflect passing struct objfile pointer rather
than struct sym_fns pointer.
* symfile.c: Remove now obsolete symtab_fns pointer.
* symfile.c (symfile_init): Renamed to find_sym_fns, and now only
locates the correct sym_fns struct for the given objfile.
* symfile.c (syms_from_objfile, symbol_file_add): Restructured
for better support of mapped symbol tables.
* symfile.c (symbol_file_command): Remove obsolete code using
symfile_fns.
* symfile.h: Remove duplicate declarations for symfile_objfile,
entry_point, and object_files.
* target.c (target_info): Compare symfile_objfile to NULL.
* xcoffread.c (aixcoff_new_init): Move deallocation stuff to
aixcoff_symfile_finish().
1992-03-19 22:57:15 +01:00
|
|
|
|
if (objfile -> sf != NULL)
|
|
|
|
|
{
|
|
|
|
|
(*objfile -> sf -> sym_finish) (objfile);
|
|
|
|
|
}
|
1992-04-17 04:59:43 +02:00
|
|
|
|
|
|
|
|
|
/* We always close the bfd. */
|
|
|
|
|
|
* coffread.c, mipsread.c, xcoffread.c, coffread.c, dbxread.c,
elfread.c (coff_symfile_finish): Add function, prototype, and
add to the xxxx_sym_fns struct for each file type. Also reformat
the xxxx_sym_fns vector to a standard format and add comments.
* coffread.c, mipsread.c, xcoffread.c, coffread.c, dbxread.c,
elfread.c (xxx_symfile_new_init, xxx_symfile_init, xxx_symfile_read):
Pass pointer to struct objfile rather than pointer to sym_fns.
Change references inside each function accordingly. Allocate any
symbol file specific info in the per-objfile memory region.
* dbxread.c (free_and_init_header_files): Break function into
free_header_files(), called from dbx_symfile_finish(), and
init_header_files(), called from dbx_new_init().
* dbxread.c (dbx_new_init): Move deallocation things to new
dbx_symfile_finish function.
* elfread.c (elf_new_init): Call buildsym_new_init().
* objfiles.c (free_objfile): Call the appropriate symfile_finish()
routine for the objfile before deallocating other stuff.
* sparc-tdep.c (get_longjmp_target): Cast target_read_memory arg.
* symfile.h: Move struct sym_fns to before struct objfile def.
Add sym_finish function pointer and change prototypes of other
function pointers to reflect passing struct objfile pointer rather
than struct sym_fns pointer.
* symfile.c: Remove now obsolete symtab_fns pointer.
* symfile.c (symfile_init): Renamed to find_sym_fns, and now only
locates the correct sym_fns struct for the given objfile.
* symfile.c (syms_from_objfile, symbol_file_add): Restructured
for better support of mapped symbol tables.
* symfile.c (symbol_file_command): Remove obsolete code using
symfile_fns.
* symfile.h: Remove duplicate declarations for symfile_objfile,
entry_point, and object_files.
* target.c (target_info): Compare symfile_objfile to NULL.
* xcoffread.c (aixcoff_new_init): Move deallocation stuff to
aixcoff_symfile_finish().
1992-03-19 22:57:15 +01:00
|
|
|
|
if (objfile -> obfd != NULL)
|
1992-02-22 02:46:16 +01:00
|
|
|
|
{
|
1992-06-13 09:24:30 +02:00
|
|
|
|
char *name = bfd_get_filename (objfile->obfd);
|
* symfile.c (reread_symbols): Include bfd_errmsg string in error
message if bfd_close fails.
* exec.c (exec_close), solib.c (clear_solib), corelow.c
(core_close), objfiles.c (free_objfile), irix5-nat.c
(clear_solib), osfsolib.c (clear_solib), remote-utils.c
(gr_load_image): Check for errors from bfd_close.
* solib.c (look_for_base), remote-utils.c (gr_load_image),
remote-udi.c (download), corelow.c (core_open), symfile.c
(symfile_bfd_open), symfile.c (generic_load): Add comment
regarding error from bfd_close.
* remote-udi.c (download), remote-utils.c (gr_load_image): Add
comment about bogus handling of errors from bfd_openr.
* exec.c (exec_close): Add comment regarding memory leak and
dangling reference to vp->name.
1994-10-15 19:28:35 +01:00
|
|
|
|
if (!bfd_close (objfile -> obfd))
|
|
|
|
|
warning ("cannot close \"%s\": %s",
|
|
|
|
|
name, bfd_errmsg (bfd_get_error ()));
|
1992-06-13 09:24:30 +02:00
|
|
|
|
free (name);
|
1992-02-22 02:46:16 +01:00
|
|
|
|
}
|
|
|
|
|
|
1992-04-17 04:59:43 +02:00
|
|
|
|
/* Remove it from the chain of all objfiles. */
|
1992-02-22 02:46:16 +01:00
|
|
|
|
|
1992-05-18 01:54:32 +02:00
|
|
|
|
unlink_objfile (objfile);
|
1992-02-22 02:46:16 +01:00
|
|
|
|
|
|
|
|
|
/* Before the symbol table code was redone to make it easier to
|
|
|
|
|
selectively load and remove information particular to a specific
|
|
|
|
|
linkage unit, gdb used to do these things whenever the monolithic
|
|
|
|
|
symbol table was blown away. How much still needs to be done
|
|
|
|
|
is unknown, but we play it safe for now and keep each action until
|
|
|
|
|
it is shown to be no longer needed. */
|
|
|
|
|
|
|
|
|
|
#if defined (CLEAR_SOLIB)
|
|
|
|
|
CLEAR_SOLIB ();
|
1993-09-30 22:27:16 +01:00
|
|
|
|
/* CLEAR_SOLIB closes the bfd's for any shared libraries. But
|
|
|
|
|
the to_sections for a core file might refer to those bfd's. So
|
|
|
|
|
detach any core file. */
|
|
|
|
|
{
|
|
|
|
|
struct target_ops *t = find_core_target ();
|
|
|
|
|
if (t != NULL)
|
|
|
|
|
(t->to_detach) (NULL, 0);
|
|
|
|
|
}
|
1992-02-22 02:46:16 +01:00
|
|
|
|
#endif
|
* symfile.c (reread_symbols): When re-reading symbols, do all the
right operations ourself, rather than calling symbol_file_command.
If we re-read something, call clear_symtab_users not just
breakpoint_re_set.
* objfiles.h, objfiles.c (build_objfile_section_table): No longer
static.
* symfile.c (clear_symtab_users): Call clear_pc_function_cache.
* coffread.c, dbxread.c, elfread.c, mipsread.c, nlmread.c, paread.c
(*_symfile_offsets): Set objfile->num_sections.
* remote.c (remote_wait), symfile.c (syms_from_objfile):
Don't muck with objfile->num_sections now that all the symbol
readers set it.
* elfread.c: Clean up obsolete comment about handling only DWARF.
* paread.c: Remove comment about how we should use an "ordinary"
file format with an hppa suffix. There is nothing ordinary about SOM.
1993-10-30 21:21:19 +01:00
|
|
|
|
/* I *think* all our callers call clear_symtab_users. If so, no need
|
|
|
|
|
to call this here. */
|
1992-02-22 02:46:16 +01:00
|
|
|
|
clear_pc_function_cache ();
|
|
|
|
|
|
1992-04-17 04:59:43 +02:00
|
|
|
|
/* The last thing we do is free the objfile struct itself for the
|
|
|
|
|
non-reusable case, or detach from the mapped file for the reusable
|
|
|
|
|
case. Note that the mmalloc_detach or the mfree is the last thing
|
|
|
|
|
we can do with this objfile. */
|
1992-02-22 02:46:16 +01:00
|
|
|
|
|
1992-05-06 23:16:11 +02:00
|
|
|
|
#if !defined(NO_MMALLOC) && defined(HAVE_MMAP)
|
|
|
|
|
|
1992-04-17 04:59:43 +02:00
|
|
|
|
if (objfile -> flags & OBJF_MAPPED)
|
|
|
|
|
{
|
|
|
|
|
/* Remember the fd so we can close it. We can't close it before
|
|
|
|
|
doing the detach, and after the detach the objfile is gone. */
|
* Makefile.in (c-exp.tab.o): Remove notice about shift/reduce conflicts
which no longer occur.
gcc -Wall lint:
* findvar.c (symbol_read_needs_frame), corelow.c (ignore),
inflow.c (gdb_has_a_terminal): Make sure to return a value.
* regex.h: Declare re_set_syntax.
* printcmd.c: Include valprint.h.
* infcmd.c, exec.c, maint.c, core.c: Include language.h.
* maint.c: Include expression.h.
* infrun.c, fork-child.c, corelow.c, inflow.c: Include thread.h.
* inftarg.c: Include command.h.
* coredep.c: Include value.h.
* c-exp.y, m2-exp.y, ch-exp.y: Include bfd.h, symfile.h and objfiles.h.
* ch-typeprint.c: Include typeprint.h.
* ch-valprint.c: Include c-lang.h.
* nlmread.c: Include buildsym.h.
* environ.c: Include gdbcore.h. Only include defs.h once.
(set_in_environ): Cast const char * to char * when passing to
set_gnutarget.
Remove unused variables:
* printcmd.c (printf_command): args_to_vprintf.
* coffread.c (coff_symfile_init): strsection.
Move variables to within the #ifdefs where they are used:
* symtab.c (gdb_mangle_name): opname.
* inftarg.c (child_attach): pid and exec_file.
* inftarg.c (child_detach): siggnal.
* objfiles.c (allocate_objfile): mapto, md, and fd.
* objfiles.c (free_objfile): mmfd.
* infrun.c (wait_for_inferior): Include BPSTAT_WHAT_LAST in switch.
* infrun.c (wait_for_inferior): Remove unused same_pid label.
* inferior.h: Declare set_sigint_trap and clear_sigint_trap.
* parser-defs.h: Declare write_exp_elt_block.
* stabsread.h: Declare elfstab_offset_sections and
coffstab_build_psymtabs.
1993-10-21 21:41:50 +01:00
|
|
|
|
int mmfd;
|
|
|
|
|
|
1992-04-17 04:59:43 +02:00
|
|
|
|
mmfd = objfile -> mmfd;
|
|
|
|
|
mmalloc_detach (objfile -> md);
|
1992-05-06 23:16:11 +02:00
|
|
|
|
objfile = NULL;
|
* breakpoint.c, buildsym.c, c-exp.y, coffread.c, command.c,
core.c, cplus-dem.c, dbxread.c, dwarfread.c, elfread.c, environ.c,
eval.c, findvar.c, gdbtypes.c, hppabsd-tdep.c, hppahpux-tdep.c,
i386-tdep.c, ieee-float.c, infcmd.c, inflow.c, infptrace.c,
infrun.c, m2-exp.y, mipsread.c, objfiles.c, parse.c, procfs.c,
putenv.c, remote-mm.c, remote-vx.c, solib.c, sparc-tdep.c,
sparc-xdep.c, stack.c, symfile.c, symtab.c, symtab.h, target.c,
tm-i386v.h, tm-sparc.h, utils.c, valarith.c, valops.c, valprint.c,
values.c, xcoffread.c:
Remove "(void)" casts from function calls where the return value
is ignored, in accordance with GNU coding standards.
1992-07-04 05:22:08 +02:00
|
|
|
|
close (mmfd);
|
1992-04-17 04:59:43 +02:00
|
|
|
|
}
|
1992-05-06 23:16:11 +02:00
|
|
|
|
|
|
|
|
|
#endif /* !defined(NO_MMALLOC) && defined(HAVE_MMAP) */
|
|
|
|
|
|
|
|
|
|
/* If we still have an objfile, then either we don't support reusable
|
|
|
|
|
objfiles or this one was not reusable. So free it normally. */
|
|
|
|
|
|
|
|
|
|
if (objfile != NULL)
|
1992-04-17 04:59:43 +02:00
|
|
|
|
{
|
|
|
|
|
if (objfile -> name != NULL)
|
|
|
|
|
{
|
|
|
|
|
mfree (objfile -> md, objfile -> name);
|
|
|
|
|
}
|
1992-06-13 09:24:30 +02:00
|
|
|
|
if (objfile->global_psymbols.list)
|
|
|
|
|
mfree (objfile->md, objfile->global_psymbols.list);
|
|
|
|
|
if (objfile->static_psymbols.list)
|
|
|
|
|
mfree (objfile->md, objfile->static_psymbols.list);
|
1992-04-17 04:59:43 +02:00
|
|
|
|
/* Free the obstacks for non-reusable objfiles */
|
|
|
|
|
obstack_free (&objfile -> psymbol_obstack, 0);
|
|
|
|
|
obstack_free (&objfile -> symbol_obstack, 0);
|
|
|
|
|
obstack_free (&objfile -> type_obstack, 0);
|
|
|
|
|
mfree (objfile -> md, objfile);
|
1992-05-06 23:16:11 +02:00
|
|
|
|
objfile = NULL;
|
1992-04-17 04:59:43 +02:00
|
|
|
|
}
|
1992-02-22 02:46:16 +01:00
|
|
|
|
}
|
|
|
|
|
|
1992-02-27 17:28:59 +01:00
|
|
|
|
|
1993-07-27 21:40:57 +02:00
|
|
|
|
/* Free all the object files at once and clean up their users. */
|
1992-02-27 17:28:59 +01:00
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
free_all_objfiles ()
|
|
|
|
|
{
|
|
|
|
|
struct objfile *objfile, *temp;
|
|
|
|
|
|
|
|
|
|
ALL_OBJFILES_SAFE (objfile, temp)
|
|
|
|
|
{
|
|
|
|
|
free_objfile (objfile);
|
|
|
|
|
}
|
1993-07-27 21:40:57 +02:00
|
|
|
|
clear_symtab_users ();
|
1992-02-27 17:28:59 +01:00
|
|
|
|
}
|
1993-03-26 15:59:43 +01:00
|
|
|
|
|
|
|
|
|
/* Relocate OBJFILE to NEW_OFFSETS. There should be OBJFILE->NUM_SECTIONS
|
|
|
|
|
entries in new_offsets. */
|
|
|
|
|
void
|
|
|
|
|
objfile_relocate (objfile, new_offsets)
|
|
|
|
|
struct objfile *objfile;
|
|
|
|
|
struct section_offsets *new_offsets;
|
|
|
|
|
{
|
|
|
|
|
struct section_offsets *delta = (struct section_offsets *) alloca
|
|
|
|
|
(sizeof (struct section_offsets)
|
|
|
|
|
+ objfile->num_sections * sizeof (delta->offsets));
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
int something_changed = 0;
|
|
|
|
|
for (i = 0; i < objfile->num_sections; ++i)
|
|
|
|
|
{
|
|
|
|
|
ANOFFSET (delta, i) =
|
|
|
|
|
ANOFFSET (new_offsets, i) - ANOFFSET (objfile->section_offsets, i);
|
|
|
|
|
if (ANOFFSET (delta, i) != 0)
|
|
|
|
|
something_changed = 1;
|
|
|
|
|
}
|
|
|
|
|
if (!something_changed)
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* OK, get all the symtabs. */
|
|
|
|
|
{
|
|
|
|
|
struct symtab *s;
|
|
|
|
|
|
1994-03-21 20:57:38 +01:00
|
|
|
|
ALL_OBJFILE_SYMTABS (objfile, s)
|
1993-03-26 15:59:43 +01:00
|
|
|
|
{
|
|
|
|
|
struct linetable *l;
|
|
|
|
|
struct blockvector *bv;
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
/* First the line table. */
|
|
|
|
|
l = LINETABLE (s);
|
|
|
|
|
if (l)
|
|
|
|
|
{
|
|
|
|
|
for (i = 0; i < l->nitems; ++i)
|
|
|
|
|
l->item[i].pc += ANOFFSET (delta, s->block_line_section);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Don't relocate a shared blockvector more than once. */
|
|
|
|
|
if (!s->primary)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
bv = BLOCKVECTOR (s);
|
|
|
|
|
for (i = 0; i < BLOCKVECTOR_NBLOCKS (bv); ++i)
|
|
|
|
|
{
|
|
|
|
|
struct block *b;
|
|
|
|
|
int j;
|
|
|
|
|
|
|
|
|
|
b = BLOCKVECTOR_BLOCK (bv, i);
|
|
|
|
|
BLOCK_START (b) += ANOFFSET (delta, s->block_line_section);
|
|
|
|
|
BLOCK_END (b) += ANOFFSET (delta, s->block_line_section);
|
|
|
|
|
|
|
|
|
|
for (j = 0; j < BLOCK_NSYMS (b); ++j)
|
|
|
|
|
{
|
|
|
|
|
struct symbol *sym = BLOCK_SYM (b, j);
|
|
|
|
|
/* The RS6000 code from which this was taken skipped
|
|
|
|
|
any symbols in STRUCT_NAMESPACE or UNDEF_NAMESPACE.
|
|
|
|
|
But I'm leaving out that test, on the theory that
|
|
|
|
|
they can't possibly pass the tests below. */
|
|
|
|
|
if ((SYMBOL_CLASS (sym) == LOC_LABEL
|
|
|
|
|
|| SYMBOL_CLASS (sym) == LOC_STATIC)
|
|
|
|
|
&& SYMBOL_SECTION (sym) >= 0)
|
|
|
|
|
{
|
|
|
|
|
SYMBOL_VALUE_ADDRESS (sym) +=
|
|
|
|
|
ANOFFSET (delta, SYMBOL_SECTION (sym));
|
|
|
|
|
}
|
1994-03-21 20:57:38 +01:00
|
|
|
|
#ifdef MIPS_EFI_SYMBOL_NAME
|
|
|
|
|
/* Relocate Extra Function Info for ecoff. */
|
|
|
|
|
|
|
|
|
|
else
|
|
|
|
|
if (SYMBOL_CLASS (sym) == LOC_CONST
|
|
|
|
|
&& SYMBOL_NAMESPACE (sym) == LABEL_NAMESPACE
|
|
|
|
|
&& STRCMP (SYMBOL_NAME (sym), MIPS_EFI_SYMBOL_NAME) == 0)
|
|
|
|
|
ecoff_relocate_efi (sym, ANOFFSET (delta, s->block_line_section));
|
|
|
|
|
#endif
|
1993-03-26 15:59:43 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1993-09-21 23:21:35 +02:00
|
|
|
|
{
|
|
|
|
|
struct partial_symtab *p;
|
|
|
|
|
|
|
|
|
|
ALL_OBJFILE_PSYMTABS (objfile, p)
|
|
|
|
|
{
|
1993-09-22 01:15:10 +02:00
|
|
|
|
/* FIXME: specific to symbol readers which use gdb-stabs.h.
|
|
|
|
|
We can only get away with it since objfile_relocate is only
|
|
|
|
|
used on XCOFF, which lacks psymtabs, and for gdb-stabs.h
|
|
|
|
|
targets. */
|
1993-09-21 23:21:35 +02:00
|
|
|
|
p->textlow += ANOFFSET (delta, SECT_OFF_TEXT);
|
|
|
|
|
p->texthigh += ANOFFSET (delta, SECT_OFF_TEXT);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
struct partial_symbol *psym;
|
|
|
|
|
|
|
|
|
|
for (psym = objfile->global_psymbols.list;
|
|
|
|
|
psym < objfile->global_psymbols.next;
|
|
|
|
|
psym++)
|
|
|
|
|
if (SYMBOL_SECTION (psym) >= 0)
|
|
|
|
|
SYMBOL_VALUE_ADDRESS (psym) += ANOFFSET (delta, SYMBOL_SECTION (psym));
|
|
|
|
|
for (psym = objfile->static_psymbols.list;
|
|
|
|
|
psym < objfile->static_psymbols.next;
|
|
|
|
|
psym++)
|
|
|
|
|
if (SYMBOL_SECTION (psym) >= 0)
|
|
|
|
|
SYMBOL_VALUE_ADDRESS (psym) += ANOFFSET (delta, SYMBOL_SECTION (psym));
|
|
|
|
|
}
|
|
|
|
|
|
1993-03-26 15:59:43 +01:00
|
|
|
|
{
|
|
|
|
|
struct minimal_symbol *msym;
|
|
|
|
|
ALL_OBJFILE_MSYMBOLS (objfile, msym)
|
1993-09-21 23:21:35 +02:00
|
|
|
|
if (SYMBOL_SECTION (msym) >= 0)
|
|
|
|
|
SYMBOL_VALUE_ADDRESS (msym) += ANOFFSET (delta, SYMBOL_SECTION (msym));
|
1993-03-26 15:59:43 +01:00
|
|
|
|
}
|
1994-10-20 06:15:46 +01:00
|
|
|
|
/* Relocating different sections by different amounts may cause the symbols
|
|
|
|
|
to be out of order. */
|
|
|
|
|
msymbols_sort (objfile);
|
1993-03-26 15:59:43 +01:00
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
for (i = 0; i < objfile->num_sections; ++i)
|
|
|
|
|
ANOFFSET (objfile->section_offsets, i) = ANOFFSET (new_offsets, i);
|
|
|
|
|
}
|
1994-03-21 20:57:38 +01:00
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
struct obj_section *s;
|
|
|
|
|
bfd *abfd;
|
|
|
|
|
|
1994-10-20 06:15:46 +01:00
|
|
|
|
abfd = objfile->obfd;
|
1994-03-21 20:57:38 +01:00
|
|
|
|
|
1994-10-20 06:15:46 +01:00
|
|
|
|
for (s = objfile->sections;
|
|
|
|
|
s < objfile->sections_end; ++s)
|
1994-03-21 20:57:38 +01:00
|
|
|
|
{
|
|
|
|
|
flagword flags;
|
|
|
|
|
|
|
|
|
|
flags = bfd_get_section_flags (abfd, s->the_bfd_section);
|
|
|
|
|
|
|
|
|
|
if (flags & SEC_CODE)
|
|
|
|
|
{
|
|
|
|
|
s->addr += ANOFFSET (delta, SECT_OFF_TEXT);
|
|
|
|
|
s->endaddr += ANOFFSET (delta, SECT_OFF_TEXT);
|
|
|
|
|
}
|
|
|
|
|
else if (flags & (SEC_DATA | SEC_LOAD))
|
|
|
|
|
{
|
|
|
|
|
s->addr += ANOFFSET (delta, SECT_OFF_DATA);
|
|
|
|
|
s->endaddr += ANOFFSET (delta, SECT_OFF_DATA);
|
|
|
|
|
}
|
|
|
|
|
else if (flags & SEC_ALLOC)
|
|
|
|
|
{
|
|
|
|
|
s->addr += ANOFFSET (delta, SECT_OFF_BSS);
|
|
|
|
|
s->endaddr += ANOFFSET (delta, SECT_OFF_BSS);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
1994-06-09 08:30:38 +02:00
|
|
|
|
|
|
|
|
|
if (objfile->ei.entry_point != ~0)
|
|
|
|
|
objfile->ei.entry_point += ANOFFSET (delta, SECT_OFF_TEXT);
|
|
|
|
|
|
|
|
|
|
if (objfile->ei.entry_func_lowpc != INVALID_ENTRY_LOWPC)
|
|
|
|
|
{
|
|
|
|
|
objfile->ei.entry_func_lowpc += ANOFFSET (delta, SECT_OFF_TEXT);
|
|
|
|
|
objfile->ei.entry_func_highpc += ANOFFSET (delta, SECT_OFF_TEXT);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (objfile->ei.entry_file_lowpc != INVALID_ENTRY_LOWPC)
|
|
|
|
|
{
|
|
|
|
|
objfile->ei.entry_file_lowpc += ANOFFSET (delta, SECT_OFF_TEXT);
|
|
|
|
|
objfile->ei.entry_file_highpc += ANOFFSET (delta, SECT_OFF_TEXT);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (objfile->ei.main_func_lowpc != INVALID_ENTRY_LOWPC)
|
|
|
|
|
{
|
|
|
|
|
objfile->ei.main_func_lowpc += ANOFFSET (delta, SECT_OFF_TEXT);
|
|
|
|
|
objfile->ei.main_func_highpc += ANOFFSET (delta, SECT_OFF_TEXT);
|
|
|
|
|
}
|
1993-03-26 15:59:43 +01:00
|
|
|
|
}
|
|
|
|
|
|
1992-02-22 02:46:16 +01:00
|
|
|
|
/* Many places in gdb want to test just to see if we have any partial
|
|
|
|
|
symbols available. This function returns zero if none are currently
|
|
|
|
|
available, nonzero otherwise. */
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
have_partial_symbols ()
|
|
|
|
|
{
|
|
|
|
|
struct objfile *ofp;
|
|
|
|
|
|
Create and use macros for iterating on symtabs, psymtabs, msymbols.
* minsyms.c (iterate_over_msymbols): Remove; clunky and slow.
* symfile.h, symtab.h (iterate_over_msymbols): Remove prototype
* coffread.c (coff_symfile_read): iterate_over_symtabs => ALL_SYMTABS.
(patch_opaque_types): Avoid dummy args and result.
* objfiles.c (have_partial_symbols, have_full_symbols,
have_minimal_symbols): explicit iteration => ALL_OBJFILES; simplify.
(iterate_over_objfiles, iterate_over_symtabs,
iterate_over_psymtabs): Remove, clunky and slow.
* objfiles.h: Replace iterate_over_* prototypes with ALL_SYMTABS,
ALL_PSYMTABS, and ALL_MSYMBOLS macros.
* symmisc.c (dump_symtab, dump_psymtab, dump_msymbols,
dump_objfile): Remove dummy args and results. Move filename
comparisons to callers.
(printsyms_command, printpsyms_command, printmsyms_command,
printobjfiles_command): iterate_over_* => ALL_*. Compare filenames.
* symtab.c (lookup_symtab_1, lookup_symtab, lookup_partial_symtab,
lookup_symbol, find_main_psymtab, find_pc_symtab, sources_info,
list_symbols, make_symbol_completion_list): Replace explicit
iteration with ALL_SYMTABS, ALL_PSYMTABS, or ALL_MSYMBOLS.
Eliminate Dijkstra flag crap, break out of loops with gotos.
(lookup_symtab_1): Protect '/' tests from short filenames.
(cplus_mangled_symbol): Move inline into lookup_symbol.
* xcoffexec.c (relocate_objfile_msymbols): Remove poor hack.
(relocate_minimal_symbol): Move inline to vmap_symtab.
(vmap_symtab): Replace iteration with ALL_OBJFILES,
iterate_over_msymbols with ALL_MSYMBOLS.
Misc cleanup prior to release.
* dwarfread.c (dwarf_build_psymtabs): Remove mainline test.
* mipsread.c (compare_symtabs, compare_psymtabs): Remove, unused.
* mipsread.c: Add prototypes for all static functions.
* symmisc.c (dump_symtab_lines, dump_symtabs, dump_last_symtab,
dump_blockvector, dump_block, dump_addrchass, dump_namespace,
dump_symbol, dump_type, dump_linetable, dump_strtbl): Remove, unused.
* xcoffread.c (dump_symtab_lines, dump_symtabs, dump_last_symtab,
dump_blockvector, dump_block, dump_addrchass, dump_namespace,
dump_symbol, dump_type, dump_linetable, dump_strtbl): Remove 2nd
unused copy!
* buildsym.c (define_symbol): Handle global register variables
(from Pierre Willard). Complain if register numbers are too large.
1992-03-30 01:17:36 +02:00
|
|
|
|
ALL_OBJFILES (ofp)
|
1992-02-22 02:46:16 +01:00
|
|
|
|
{
|
|
|
|
|
if (ofp -> psymtabs != NULL)
|
|
|
|
|
{
|
Create and use macros for iterating on symtabs, psymtabs, msymbols.
* minsyms.c (iterate_over_msymbols): Remove; clunky and slow.
* symfile.h, symtab.h (iterate_over_msymbols): Remove prototype
* coffread.c (coff_symfile_read): iterate_over_symtabs => ALL_SYMTABS.
(patch_opaque_types): Avoid dummy args and result.
* objfiles.c (have_partial_symbols, have_full_symbols,
have_minimal_symbols): explicit iteration => ALL_OBJFILES; simplify.
(iterate_over_objfiles, iterate_over_symtabs,
iterate_over_psymtabs): Remove, clunky and slow.
* objfiles.h: Replace iterate_over_* prototypes with ALL_SYMTABS,
ALL_PSYMTABS, and ALL_MSYMBOLS macros.
* symmisc.c (dump_symtab, dump_psymtab, dump_msymbols,
dump_objfile): Remove dummy args and results. Move filename
comparisons to callers.
(printsyms_command, printpsyms_command, printmsyms_command,
printobjfiles_command): iterate_over_* => ALL_*. Compare filenames.
* symtab.c (lookup_symtab_1, lookup_symtab, lookup_partial_symtab,
lookup_symbol, find_main_psymtab, find_pc_symtab, sources_info,
list_symbols, make_symbol_completion_list): Replace explicit
iteration with ALL_SYMTABS, ALL_PSYMTABS, or ALL_MSYMBOLS.
Eliminate Dijkstra flag crap, break out of loops with gotos.
(lookup_symtab_1): Protect '/' tests from short filenames.
(cplus_mangled_symbol): Move inline into lookup_symbol.
* xcoffexec.c (relocate_objfile_msymbols): Remove poor hack.
(relocate_minimal_symbol): Move inline to vmap_symtab.
(vmap_symtab): Replace iteration with ALL_OBJFILES,
iterate_over_msymbols with ALL_MSYMBOLS.
Misc cleanup prior to release.
* dwarfread.c (dwarf_build_psymtabs): Remove mainline test.
* mipsread.c (compare_symtabs, compare_psymtabs): Remove, unused.
* mipsread.c: Add prototypes for all static functions.
* symmisc.c (dump_symtab_lines, dump_symtabs, dump_last_symtab,
dump_blockvector, dump_block, dump_addrchass, dump_namespace,
dump_symbol, dump_type, dump_linetable, dump_strtbl): Remove, unused.
* xcoffread.c (dump_symtab_lines, dump_symtabs, dump_last_symtab,
dump_blockvector, dump_block, dump_addrchass, dump_namespace,
dump_symbol, dump_type, dump_linetable, dump_strtbl): Remove 2nd
unused copy!
* buildsym.c (define_symbol): Handle global register variables
(from Pierre Willard). Complain if register numbers are too large.
1992-03-30 01:17:36 +02:00
|
|
|
|
return 1;
|
1992-02-22 02:46:16 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
Create and use macros for iterating on symtabs, psymtabs, msymbols.
* minsyms.c (iterate_over_msymbols): Remove; clunky and slow.
* symfile.h, symtab.h (iterate_over_msymbols): Remove prototype
* coffread.c (coff_symfile_read): iterate_over_symtabs => ALL_SYMTABS.
(patch_opaque_types): Avoid dummy args and result.
* objfiles.c (have_partial_symbols, have_full_symbols,
have_minimal_symbols): explicit iteration => ALL_OBJFILES; simplify.
(iterate_over_objfiles, iterate_over_symtabs,
iterate_over_psymtabs): Remove, clunky and slow.
* objfiles.h: Replace iterate_over_* prototypes with ALL_SYMTABS,
ALL_PSYMTABS, and ALL_MSYMBOLS macros.
* symmisc.c (dump_symtab, dump_psymtab, dump_msymbols,
dump_objfile): Remove dummy args and results. Move filename
comparisons to callers.
(printsyms_command, printpsyms_command, printmsyms_command,
printobjfiles_command): iterate_over_* => ALL_*. Compare filenames.
* symtab.c (lookup_symtab_1, lookup_symtab, lookup_partial_symtab,
lookup_symbol, find_main_psymtab, find_pc_symtab, sources_info,
list_symbols, make_symbol_completion_list): Replace explicit
iteration with ALL_SYMTABS, ALL_PSYMTABS, or ALL_MSYMBOLS.
Eliminate Dijkstra flag crap, break out of loops with gotos.
(lookup_symtab_1): Protect '/' tests from short filenames.
(cplus_mangled_symbol): Move inline into lookup_symbol.
* xcoffexec.c (relocate_objfile_msymbols): Remove poor hack.
(relocate_minimal_symbol): Move inline to vmap_symtab.
(vmap_symtab): Replace iteration with ALL_OBJFILES,
iterate_over_msymbols with ALL_MSYMBOLS.
Misc cleanup prior to release.
* dwarfread.c (dwarf_build_psymtabs): Remove mainline test.
* mipsread.c (compare_symtabs, compare_psymtabs): Remove, unused.
* mipsread.c: Add prototypes for all static functions.
* symmisc.c (dump_symtab_lines, dump_symtabs, dump_last_symtab,
dump_blockvector, dump_block, dump_addrchass, dump_namespace,
dump_symbol, dump_type, dump_linetable, dump_strtbl): Remove, unused.
* xcoffread.c (dump_symtab_lines, dump_symtabs, dump_last_symtab,
dump_blockvector, dump_block, dump_addrchass, dump_namespace,
dump_symbol, dump_type, dump_linetable, dump_strtbl): Remove 2nd
unused copy!
* buildsym.c (define_symbol): Handle global register variables
(from Pierre Willard). Complain if register numbers are too large.
1992-03-30 01:17:36 +02:00
|
|
|
|
return 0;
|
1992-02-22 02:46:16 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Many places in gdb want to test just to see if we have any full
|
|
|
|
|
symbols available. This function returns zero if none are currently
|
|
|
|
|
available, nonzero otherwise. */
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
have_full_symbols ()
|
|
|
|
|
{
|
|
|
|
|
struct objfile *ofp;
|
|
|
|
|
|
Create and use macros for iterating on symtabs, psymtabs, msymbols.
* minsyms.c (iterate_over_msymbols): Remove; clunky and slow.
* symfile.h, symtab.h (iterate_over_msymbols): Remove prototype
* coffread.c (coff_symfile_read): iterate_over_symtabs => ALL_SYMTABS.
(patch_opaque_types): Avoid dummy args and result.
* objfiles.c (have_partial_symbols, have_full_symbols,
have_minimal_symbols): explicit iteration => ALL_OBJFILES; simplify.
(iterate_over_objfiles, iterate_over_symtabs,
iterate_over_psymtabs): Remove, clunky and slow.
* objfiles.h: Replace iterate_over_* prototypes with ALL_SYMTABS,
ALL_PSYMTABS, and ALL_MSYMBOLS macros.
* symmisc.c (dump_symtab, dump_psymtab, dump_msymbols,
dump_objfile): Remove dummy args and results. Move filename
comparisons to callers.
(printsyms_command, printpsyms_command, printmsyms_command,
printobjfiles_command): iterate_over_* => ALL_*. Compare filenames.
* symtab.c (lookup_symtab_1, lookup_symtab, lookup_partial_symtab,
lookup_symbol, find_main_psymtab, find_pc_symtab, sources_info,
list_symbols, make_symbol_completion_list): Replace explicit
iteration with ALL_SYMTABS, ALL_PSYMTABS, or ALL_MSYMBOLS.
Eliminate Dijkstra flag crap, break out of loops with gotos.
(lookup_symtab_1): Protect '/' tests from short filenames.
(cplus_mangled_symbol): Move inline into lookup_symbol.
* xcoffexec.c (relocate_objfile_msymbols): Remove poor hack.
(relocate_minimal_symbol): Move inline to vmap_symtab.
(vmap_symtab): Replace iteration with ALL_OBJFILES,
iterate_over_msymbols with ALL_MSYMBOLS.
Misc cleanup prior to release.
* dwarfread.c (dwarf_build_psymtabs): Remove mainline test.
* mipsread.c (compare_symtabs, compare_psymtabs): Remove, unused.
* mipsread.c: Add prototypes for all static functions.
* symmisc.c (dump_symtab_lines, dump_symtabs, dump_last_symtab,
dump_blockvector, dump_block, dump_addrchass, dump_namespace,
dump_symbol, dump_type, dump_linetable, dump_strtbl): Remove, unused.
* xcoffread.c (dump_symtab_lines, dump_symtabs, dump_last_symtab,
dump_blockvector, dump_block, dump_addrchass, dump_namespace,
dump_symbol, dump_type, dump_linetable, dump_strtbl): Remove 2nd
unused copy!
* buildsym.c (define_symbol): Handle global register variables
(from Pierre Willard). Complain if register numbers are too large.
1992-03-30 01:17:36 +02:00
|
|
|
|
ALL_OBJFILES (ofp)
|
1992-02-22 02:46:16 +01:00
|
|
|
|
{
|
|
|
|
|
if (ofp -> symtabs != NULL)
|
|
|
|
|
{
|
Create and use macros for iterating on symtabs, psymtabs, msymbols.
* minsyms.c (iterate_over_msymbols): Remove; clunky and slow.
* symfile.h, symtab.h (iterate_over_msymbols): Remove prototype
* coffread.c (coff_symfile_read): iterate_over_symtabs => ALL_SYMTABS.
(patch_opaque_types): Avoid dummy args and result.
* objfiles.c (have_partial_symbols, have_full_symbols,
have_minimal_symbols): explicit iteration => ALL_OBJFILES; simplify.
(iterate_over_objfiles, iterate_over_symtabs,
iterate_over_psymtabs): Remove, clunky and slow.
* objfiles.h: Replace iterate_over_* prototypes with ALL_SYMTABS,
ALL_PSYMTABS, and ALL_MSYMBOLS macros.
* symmisc.c (dump_symtab, dump_psymtab, dump_msymbols,
dump_objfile): Remove dummy args and results. Move filename
comparisons to callers.
(printsyms_command, printpsyms_command, printmsyms_command,
printobjfiles_command): iterate_over_* => ALL_*. Compare filenames.
* symtab.c (lookup_symtab_1, lookup_symtab, lookup_partial_symtab,
lookup_symbol, find_main_psymtab, find_pc_symtab, sources_info,
list_symbols, make_symbol_completion_list): Replace explicit
iteration with ALL_SYMTABS, ALL_PSYMTABS, or ALL_MSYMBOLS.
Eliminate Dijkstra flag crap, break out of loops with gotos.
(lookup_symtab_1): Protect '/' tests from short filenames.
(cplus_mangled_symbol): Move inline into lookup_symbol.
* xcoffexec.c (relocate_objfile_msymbols): Remove poor hack.
(relocate_minimal_symbol): Move inline to vmap_symtab.
(vmap_symtab): Replace iteration with ALL_OBJFILES,
iterate_over_msymbols with ALL_MSYMBOLS.
Misc cleanup prior to release.
* dwarfread.c (dwarf_build_psymtabs): Remove mainline test.
* mipsread.c (compare_symtabs, compare_psymtabs): Remove, unused.
* mipsread.c: Add prototypes for all static functions.
* symmisc.c (dump_symtab_lines, dump_symtabs, dump_last_symtab,
dump_blockvector, dump_block, dump_addrchass, dump_namespace,
dump_symbol, dump_type, dump_linetable, dump_strtbl): Remove, unused.
* xcoffread.c (dump_symtab_lines, dump_symtabs, dump_last_symtab,
dump_blockvector, dump_block, dump_addrchass, dump_namespace,
dump_symbol, dump_type, dump_linetable, dump_strtbl): Remove 2nd
unused copy!
* buildsym.c (define_symbol): Handle global register variables
(from Pierre Willard). Complain if register numbers are too large.
1992-03-30 01:17:36 +02:00
|
|
|
|
return 1;
|
1992-02-22 02:46:16 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
Create and use macros for iterating on symtabs, psymtabs, msymbols.
* minsyms.c (iterate_over_msymbols): Remove; clunky and slow.
* symfile.h, symtab.h (iterate_over_msymbols): Remove prototype
* coffread.c (coff_symfile_read): iterate_over_symtabs => ALL_SYMTABS.
(patch_opaque_types): Avoid dummy args and result.
* objfiles.c (have_partial_symbols, have_full_symbols,
have_minimal_symbols): explicit iteration => ALL_OBJFILES; simplify.
(iterate_over_objfiles, iterate_over_symtabs,
iterate_over_psymtabs): Remove, clunky and slow.
* objfiles.h: Replace iterate_over_* prototypes with ALL_SYMTABS,
ALL_PSYMTABS, and ALL_MSYMBOLS macros.
* symmisc.c (dump_symtab, dump_psymtab, dump_msymbols,
dump_objfile): Remove dummy args and results. Move filename
comparisons to callers.
(printsyms_command, printpsyms_command, printmsyms_command,
printobjfiles_command): iterate_over_* => ALL_*. Compare filenames.
* symtab.c (lookup_symtab_1, lookup_symtab, lookup_partial_symtab,
lookup_symbol, find_main_psymtab, find_pc_symtab, sources_info,
list_symbols, make_symbol_completion_list): Replace explicit
iteration with ALL_SYMTABS, ALL_PSYMTABS, or ALL_MSYMBOLS.
Eliminate Dijkstra flag crap, break out of loops with gotos.
(lookup_symtab_1): Protect '/' tests from short filenames.
(cplus_mangled_symbol): Move inline into lookup_symbol.
* xcoffexec.c (relocate_objfile_msymbols): Remove poor hack.
(relocate_minimal_symbol): Move inline to vmap_symtab.
(vmap_symtab): Replace iteration with ALL_OBJFILES,
iterate_over_msymbols with ALL_MSYMBOLS.
Misc cleanup prior to release.
* dwarfread.c (dwarf_build_psymtabs): Remove mainline test.
* mipsread.c (compare_symtabs, compare_psymtabs): Remove, unused.
* mipsread.c: Add prototypes for all static functions.
* symmisc.c (dump_symtab_lines, dump_symtabs, dump_last_symtab,
dump_blockvector, dump_block, dump_addrchass, dump_namespace,
dump_symbol, dump_type, dump_linetable, dump_strtbl): Remove, unused.
* xcoffread.c (dump_symtab_lines, dump_symtabs, dump_last_symtab,
dump_blockvector, dump_block, dump_addrchass, dump_namespace,
dump_symbol, dump_type, dump_linetable, dump_strtbl): Remove 2nd
unused copy!
* buildsym.c (define_symbol): Handle global register variables
(from Pierre Willard). Complain if register numbers are too large.
1992-03-30 01:17:36 +02:00
|
|
|
|
return 0;
|
1992-02-22 02:46:16 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Many places in gdb want to test just to see if we have any minimal
|
|
|
|
|
symbols available. This function returns zero if none are currently
|
|
|
|
|
available, nonzero otherwise. */
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
have_minimal_symbols ()
|
|
|
|
|
{
|
|
|
|
|
struct objfile *ofp;
|
|
|
|
|
|
Create and use macros for iterating on symtabs, psymtabs, msymbols.
* minsyms.c (iterate_over_msymbols): Remove; clunky and slow.
* symfile.h, symtab.h (iterate_over_msymbols): Remove prototype
* coffread.c (coff_symfile_read): iterate_over_symtabs => ALL_SYMTABS.
(patch_opaque_types): Avoid dummy args and result.
* objfiles.c (have_partial_symbols, have_full_symbols,
have_minimal_symbols): explicit iteration => ALL_OBJFILES; simplify.
(iterate_over_objfiles, iterate_over_symtabs,
iterate_over_psymtabs): Remove, clunky and slow.
* objfiles.h: Replace iterate_over_* prototypes with ALL_SYMTABS,
ALL_PSYMTABS, and ALL_MSYMBOLS macros.
* symmisc.c (dump_symtab, dump_psymtab, dump_msymbols,
dump_objfile): Remove dummy args and results. Move filename
comparisons to callers.
(printsyms_command, printpsyms_command, printmsyms_command,
printobjfiles_command): iterate_over_* => ALL_*. Compare filenames.
* symtab.c (lookup_symtab_1, lookup_symtab, lookup_partial_symtab,
lookup_symbol, find_main_psymtab, find_pc_symtab, sources_info,
list_symbols, make_symbol_completion_list): Replace explicit
iteration with ALL_SYMTABS, ALL_PSYMTABS, or ALL_MSYMBOLS.
Eliminate Dijkstra flag crap, break out of loops with gotos.
(lookup_symtab_1): Protect '/' tests from short filenames.
(cplus_mangled_symbol): Move inline into lookup_symbol.
* xcoffexec.c (relocate_objfile_msymbols): Remove poor hack.
(relocate_minimal_symbol): Move inline to vmap_symtab.
(vmap_symtab): Replace iteration with ALL_OBJFILES,
iterate_over_msymbols with ALL_MSYMBOLS.
Misc cleanup prior to release.
* dwarfread.c (dwarf_build_psymtabs): Remove mainline test.
* mipsread.c (compare_symtabs, compare_psymtabs): Remove, unused.
* mipsread.c: Add prototypes for all static functions.
* symmisc.c (dump_symtab_lines, dump_symtabs, dump_last_symtab,
dump_blockvector, dump_block, dump_addrchass, dump_namespace,
dump_symbol, dump_type, dump_linetable, dump_strtbl): Remove, unused.
* xcoffread.c (dump_symtab_lines, dump_symtabs, dump_last_symtab,
dump_blockvector, dump_block, dump_addrchass, dump_namespace,
dump_symbol, dump_type, dump_linetable, dump_strtbl): Remove 2nd
unused copy!
* buildsym.c (define_symbol): Handle global register variables
(from Pierre Willard). Complain if register numbers are too large.
1992-03-30 01:17:36 +02:00
|
|
|
|
ALL_OBJFILES (ofp)
|
1992-02-22 02:46:16 +01:00
|
|
|
|
{
|
|
|
|
|
if (ofp -> msymbols != NULL)
|
|
|
|
|
{
|
Create and use macros for iterating on symtabs, psymtabs, msymbols.
* minsyms.c (iterate_over_msymbols): Remove; clunky and slow.
* symfile.h, symtab.h (iterate_over_msymbols): Remove prototype
* coffread.c (coff_symfile_read): iterate_over_symtabs => ALL_SYMTABS.
(patch_opaque_types): Avoid dummy args and result.
* objfiles.c (have_partial_symbols, have_full_symbols,
have_minimal_symbols): explicit iteration => ALL_OBJFILES; simplify.
(iterate_over_objfiles, iterate_over_symtabs,
iterate_over_psymtabs): Remove, clunky and slow.
* objfiles.h: Replace iterate_over_* prototypes with ALL_SYMTABS,
ALL_PSYMTABS, and ALL_MSYMBOLS macros.
* symmisc.c (dump_symtab, dump_psymtab, dump_msymbols,
dump_objfile): Remove dummy args and results. Move filename
comparisons to callers.
(printsyms_command, printpsyms_command, printmsyms_command,
printobjfiles_command): iterate_over_* => ALL_*. Compare filenames.
* symtab.c (lookup_symtab_1, lookup_symtab, lookup_partial_symtab,
lookup_symbol, find_main_psymtab, find_pc_symtab, sources_info,
list_symbols, make_symbol_completion_list): Replace explicit
iteration with ALL_SYMTABS, ALL_PSYMTABS, or ALL_MSYMBOLS.
Eliminate Dijkstra flag crap, break out of loops with gotos.
(lookup_symtab_1): Protect '/' tests from short filenames.
(cplus_mangled_symbol): Move inline into lookup_symbol.
* xcoffexec.c (relocate_objfile_msymbols): Remove poor hack.
(relocate_minimal_symbol): Move inline to vmap_symtab.
(vmap_symtab): Replace iteration with ALL_OBJFILES,
iterate_over_msymbols with ALL_MSYMBOLS.
Misc cleanup prior to release.
* dwarfread.c (dwarf_build_psymtabs): Remove mainline test.
* mipsread.c (compare_symtabs, compare_psymtabs): Remove, unused.
* mipsread.c: Add prototypes for all static functions.
* symmisc.c (dump_symtab_lines, dump_symtabs, dump_last_symtab,
dump_blockvector, dump_block, dump_addrchass, dump_namespace,
dump_symbol, dump_type, dump_linetable, dump_strtbl): Remove, unused.
* xcoffread.c (dump_symtab_lines, dump_symtabs, dump_last_symtab,
dump_blockvector, dump_block, dump_addrchass, dump_namespace,
dump_symbol, dump_type, dump_linetable, dump_strtbl): Remove 2nd
unused copy!
* buildsym.c (define_symbol): Handle global register variables
(from Pierre Willard). Complain if register numbers are too large.
1992-03-30 01:17:36 +02:00
|
|
|
|
return 1;
|
1992-02-22 02:46:16 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
Create and use macros for iterating on symtabs, psymtabs, msymbols.
* minsyms.c (iterate_over_msymbols): Remove; clunky and slow.
* symfile.h, symtab.h (iterate_over_msymbols): Remove prototype
* coffread.c (coff_symfile_read): iterate_over_symtabs => ALL_SYMTABS.
(patch_opaque_types): Avoid dummy args and result.
* objfiles.c (have_partial_symbols, have_full_symbols,
have_minimal_symbols): explicit iteration => ALL_OBJFILES; simplify.
(iterate_over_objfiles, iterate_over_symtabs,
iterate_over_psymtabs): Remove, clunky and slow.
* objfiles.h: Replace iterate_over_* prototypes with ALL_SYMTABS,
ALL_PSYMTABS, and ALL_MSYMBOLS macros.
* symmisc.c (dump_symtab, dump_psymtab, dump_msymbols,
dump_objfile): Remove dummy args and results. Move filename
comparisons to callers.
(printsyms_command, printpsyms_command, printmsyms_command,
printobjfiles_command): iterate_over_* => ALL_*. Compare filenames.
* symtab.c (lookup_symtab_1, lookup_symtab, lookup_partial_symtab,
lookup_symbol, find_main_psymtab, find_pc_symtab, sources_info,
list_symbols, make_symbol_completion_list): Replace explicit
iteration with ALL_SYMTABS, ALL_PSYMTABS, or ALL_MSYMBOLS.
Eliminate Dijkstra flag crap, break out of loops with gotos.
(lookup_symtab_1): Protect '/' tests from short filenames.
(cplus_mangled_symbol): Move inline into lookup_symbol.
* xcoffexec.c (relocate_objfile_msymbols): Remove poor hack.
(relocate_minimal_symbol): Move inline to vmap_symtab.
(vmap_symtab): Replace iteration with ALL_OBJFILES,
iterate_over_msymbols with ALL_MSYMBOLS.
Misc cleanup prior to release.
* dwarfread.c (dwarf_build_psymtabs): Remove mainline test.
* mipsread.c (compare_symtabs, compare_psymtabs): Remove, unused.
* mipsread.c: Add prototypes for all static functions.
* symmisc.c (dump_symtab_lines, dump_symtabs, dump_last_symtab,
dump_blockvector, dump_block, dump_addrchass, dump_namespace,
dump_symbol, dump_type, dump_linetable, dump_strtbl): Remove, unused.
* xcoffread.c (dump_symtab_lines, dump_symtabs, dump_last_symtab,
dump_blockvector, dump_block, dump_addrchass, dump_namespace,
dump_symbol, dump_type, dump_linetable, dump_strtbl): Remove 2nd
unused copy!
* buildsym.c (define_symbol): Handle global register variables
(from Pierre Willard). Complain if register numbers are too large.
1992-03-30 01:17:36 +02:00
|
|
|
|
return 0;
|
1992-02-22 02:46:16 +01:00
|
|
|
|
}
|
|
|
|
|
|
1992-04-18 04:30:28 +02:00
|
|
|
|
#if !defined(NO_MMALLOC) && defined(HAVE_MMAP)
|
|
|
|
|
|
|
|
|
|
/* Given the name of a mapped symbol file in SYMSFILENAME, and the timestamp
|
|
|
|
|
of the corresponding symbol file in MTIME, try to open an existing file
|
|
|
|
|
with the name SYMSFILENAME and verify it is more recent than the base
|
|
|
|
|
file by checking it's timestamp against MTIME.
|
|
|
|
|
|
|
|
|
|
If SYMSFILENAME does not exist (or can't be stat'd), simply returns -1.
|
|
|
|
|
|
|
|
|
|
If SYMSFILENAME does exist, but is out of date, we check to see if the
|
|
|
|
|
user has specified creation of a mapped file. If so, we don't issue
|
|
|
|
|
any warning message because we will be creating a new mapped file anyway,
|
|
|
|
|
overwriting the old one. If not, then we issue a warning message so that
|
|
|
|
|
the user will know why we aren't using this existing mapped symbol file.
|
|
|
|
|
In either case, we return -1.
|
|
|
|
|
|
|
|
|
|
If SYMSFILENAME does exist and is not out of date, but can't be opened for
|
|
|
|
|
some reason, then prints an appropriate system error message and returns -1.
|
|
|
|
|
|
|
|
|
|
Otherwise, returns the open file descriptor. */
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
open_existing_mapped_file (symsfilename, mtime, mapped)
|
|
|
|
|
char *symsfilename;
|
|
|
|
|
long mtime;
|
|
|
|
|
int mapped;
|
|
|
|
|
{
|
|
|
|
|
int fd = -1;
|
|
|
|
|
struct stat sbuf;
|
|
|
|
|
|
|
|
|
|
if (stat (symsfilename, &sbuf) == 0)
|
|
|
|
|
{
|
|
|
|
|
if (sbuf.st_mtime < mtime)
|
|
|
|
|
{
|
|
|
|
|
if (!mapped)
|
|
|
|
|
{
|
1992-08-11 07:29:41 +02:00
|
|
|
|
warning ("mapped symbol file `%s' is out of date, ignored it",
|
|
|
|
|
symsfilename);
|
1992-04-18 04:30:28 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else if ((fd = open (symsfilename, O_RDWR)) < 0)
|
|
|
|
|
{
|
|
|
|
|
if (error_pre_print)
|
|
|
|
|
{
|
1993-11-01 23:25:23 +01:00
|
|
|
|
printf_unfiltered (error_pre_print);
|
1992-04-18 04:30:28 +02:00
|
|
|
|
}
|
|
|
|
|
print_sys_errmsg (symsfilename, errno);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return (fd);
|
|
|
|
|
}
|
|
|
|
|
|
1992-03-18 17:43:25 +01:00
|
|
|
|
/* Look for a mapped symbol file that corresponds to FILENAME and is more
|
1992-03-15 02:09:14 +01:00
|
|
|
|
recent than MTIME. If MAPPED is nonzero, the user has asked that gdb
|
1992-03-18 17:43:25 +01:00
|
|
|
|
use a mapped symbol file for this file, so create a new one if one does
|
|
|
|
|
not currently exist.
|
1992-03-15 02:09:14 +01:00
|
|
|
|
|
|
|
|
|
If found, then return an open file descriptor for the file, otherwise
|
|
|
|
|
return -1.
|
|
|
|
|
|
|
|
|
|
This routine is responsible for implementing the policy that generates
|
|
|
|
|
the name of the mapped symbol file from the name of a file containing
|
1992-04-18 04:30:28 +02:00
|
|
|
|
symbols that gdb would like to read. Currently this policy is to append
|
|
|
|
|
".syms" to the name of the file.
|
|
|
|
|
|
|
|
|
|
This routine is also responsible for implementing the policy that
|
|
|
|
|
determines where the mapped symbol file is found (the search path).
|
|
|
|
|
This policy is that when reading an existing mapped file, a file of
|
|
|
|
|
the correct name in the current directory takes precedence over a
|
|
|
|
|
file of the correct name in the same directory as the symbol file.
|
|
|
|
|
When creating a new mapped file, it is always created in the current
|
|
|
|
|
directory. This helps to minimize the chances of a user unknowingly
|
|
|
|
|
creating big mapped files in places like /bin and /usr/local/bin, and
|
|
|
|
|
allows a local copy to override a manually installed global copy (in
|
|
|
|
|
/bin for example). */
|
1992-03-15 02:09:14 +01:00
|
|
|
|
|
|
|
|
|
static int
|
1992-03-18 17:43:25 +01:00
|
|
|
|
open_mapped_file (filename, mtime, mapped)
|
|
|
|
|
char *filename;
|
1992-03-15 02:09:14 +01:00
|
|
|
|
long mtime;
|
|
|
|
|
int mapped;
|
|
|
|
|
{
|
|
|
|
|
int fd;
|
1992-04-18 04:30:28 +02:00
|
|
|
|
char *symsfilename;
|
1992-03-15 02:09:14 +01:00
|
|
|
|
|
1992-04-18 04:30:28 +02:00
|
|
|
|
/* First try to open an existing file in the current directory, and
|
|
|
|
|
then try the directory where the symbol file is located. */
|
1992-03-15 02:09:14 +01:00
|
|
|
|
|
1992-04-18 04:30:28 +02:00
|
|
|
|
symsfilename = concat ("./", basename (filename), ".syms", (char *) NULL);
|
|
|
|
|
if ((fd = open_existing_mapped_file (symsfilename, mtime, mapped)) < 0)
|
1992-03-15 02:09:14 +01:00
|
|
|
|
{
|
1992-04-18 04:30:28 +02:00
|
|
|
|
free (symsfilename);
|
|
|
|
|
symsfilename = concat (filename, ".syms", (char *) NULL);
|
|
|
|
|
fd = open_existing_mapped_file (symsfilename, mtime, mapped);
|
1992-03-15 02:09:14 +01:00
|
|
|
|
}
|
|
|
|
|
|
1992-04-18 04:30:28 +02:00
|
|
|
|
/* If we don't have an open file by now, then either the file does not
|
|
|
|
|
already exist, or the base file has changed since it was created. In
|
|
|
|
|
either case, if the user has specified use of a mapped file, then
|
|
|
|
|
create a new mapped file, truncating any existing one. If we can't
|
|
|
|
|
create one, print a system error message saying why we can't.
|
1992-03-15 02:09:14 +01:00
|
|
|
|
|
|
|
|
|
By default the file is rw for everyone, with the user's umask taking
|
|
|
|
|
care of turning off the permissions the user wants off. */
|
|
|
|
|
|
1992-04-18 04:30:28 +02:00
|
|
|
|
if ((fd < 0) && mapped)
|
1992-03-15 02:09:14 +01:00
|
|
|
|
{
|
1992-04-18 04:30:28 +02:00
|
|
|
|
free (symsfilename);
|
|
|
|
|
symsfilename = concat ("./", basename (filename), ".syms",
|
|
|
|
|
(char *) NULL);
|
|
|
|
|
if ((fd = open (symsfilename, O_RDWR | O_CREAT | O_TRUNC, 0666)) < 0)
|
|
|
|
|
{
|
|
|
|
|
if (error_pre_print)
|
|
|
|
|
{
|
1993-11-01 23:25:23 +01:00
|
|
|
|
printf_unfiltered (error_pre_print);
|
1992-04-18 04:30:28 +02:00
|
|
|
|
}
|
|
|
|
|
print_sys_errmsg (symsfilename, errno);
|
|
|
|
|
}
|
1992-03-15 02:09:14 +01:00
|
|
|
|
}
|
|
|
|
|
|
1992-04-18 04:30:28 +02:00
|
|
|
|
free (symsfilename);
|
1992-03-15 02:09:14 +01:00
|
|
|
|
return (fd);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Return the base address at which we would like the next objfile's
|
|
|
|
|
mapped data to start.
|
|
|
|
|
|
|
|
|
|
For now, we use the kludge that the configuration specifies a base
|
|
|
|
|
address to which it is safe to map the first mmalloc heap, and an
|
|
|
|
|
increment to add to this address for each successive heap. There are
|
|
|
|
|
a lot of issues to deal with here to make this work reasonably, including:
|
|
|
|
|
|
|
|
|
|
Avoid memory collisions with existing mapped address spaces
|
|
|
|
|
|
|
|
|
|
Reclaim address spaces when their mmalloc heaps are unmapped
|
|
|
|
|
|
|
|
|
|
When mmalloc heaps are shared between processes they have to be
|
|
|
|
|
mapped at the same addresses in each
|
|
|
|
|
|
|
|
|
|
Once created, a mmalloc heap that is to be mapped back in must be
|
|
|
|
|
mapped at the original address. I.E. each objfile will expect to
|
|
|
|
|
be remapped at it's original address. This becomes a problem if
|
|
|
|
|
the desired address is already in use.
|
|
|
|
|
|
|
|
|
|
etc, etc, etc.
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static CORE_ADDR
|
|
|
|
|
map_to_address ()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
#if defined(MMAP_BASE_ADDRESS) && defined (MMAP_INCREMENT)
|
|
|
|
|
|
|
|
|
|
static CORE_ADDR next = MMAP_BASE_ADDRESS;
|
|
|
|
|
CORE_ADDR mapto = next;
|
|
|
|
|
|
|
|
|
|
next += MMAP_INCREMENT;
|
|
|
|
|
return (mapto);
|
|
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
}
|
1992-04-18 04:30:28 +02:00
|
|
|
|
|
|
|
|
|
#endif /* !defined(NO_MMALLOC) && defined(HAVE_MMAP) */
|
1993-04-07 09:04:26 +02:00
|
|
|
|
|
|
|
|
|
/* Returns a section whose range includes PC or NULL if none found. */
|
|
|
|
|
|
1993-04-22 22:42:37 +02:00
|
|
|
|
struct obj_section *
|
1993-04-07 09:04:26 +02:00
|
|
|
|
find_pc_section(pc)
|
|
|
|
|
CORE_ADDR pc;
|
|
|
|
|
{
|
|
|
|
|
struct obj_section *s;
|
|
|
|
|
struct objfile *objfile;
|
|
|
|
|
|
|
|
|
|
ALL_OBJFILES (objfile)
|
|
|
|
|
for (s = objfile->sections; s < objfile->sections_end; ++s)
|
|
|
|
|
if (s->addr <= pc
|
|
|
|
|
&& pc < s->endaddr)
|
1993-04-22 22:42:37 +02:00
|
|
|
|
return(s);
|
1993-04-07 09:04:26 +02:00
|
|
|
|
|
|
|
|
|
return(NULL);
|
|
|
|
|
}
|
1994-04-01 10:50:03 +02:00
|
|
|
|
|
|
|
|
|
/* In SVR4, we recognize a trampoline by it's section name.
|
|
|
|
|
That is, if the pc is in a section named ".plt" then we are in
|
|
|
|
|
a trampoline. */
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
in_plt_section(pc, name)
|
|
|
|
|
CORE_ADDR pc;
|
|
|
|
|
char *name;
|
|
|
|
|
{
|
|
|
|
|
struct obj_section *s;
|
|
|
|
|
int retval = 0;
|
|
|
|
|
|
|
|
|
|
s = find_pc_section(pc);
|
|
|
|
|
|
|
|
|
|
retval = (s != NULL
|
|
|
|
|
&& s->the_bfd_section->name != NULL
|
|
|
|
|
&& STREQ (s->the_bfd_section->name, ".plt"));
|
|
|
|
|
return(retval);
|
|
|
|
|
}
|