1999-04-16 03:35:26 +02:00
|
|
|
|
/* Definitions for symbol file management in GDB.
|
2002-07-12 17:23:10 +02:00
|
|
|
|
|
2007-01-09 18:59:20 +01:00
|
|
|
|
Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
|
2008-01-01 23:53:26 +01:00
|
|
|
|
2002, 2003, 2004, 2007, 2008 Free Software Foundation, Inc.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
This file is part of GDB.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
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
|
2007-08-23 20:08:50 +02:00
|
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
1999-07-07 22:19:36 +02:00
|
|
|
|
(at your option) any later version.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
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.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
You should have received a copy of the GNU General Public License
|
2007-08-23 20:08:50 +02:00
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
#if !defined (OBJFILES_H)
|
|
|
|
|
#define OBJFILES_H
|
|
|
|
|
|
2002-08-05 18:17:41 +02:00
|
|
|
|
#include "gdb_obstack.h" /* For obstack internals. */
|
|
|
|
|
#include "symfile.h" /* For struct psymbol_allocation_list */
|
|
|
|
|
|
2002-07-12 17:23:10 +02:00
|
|
|
|
struct bcache;
|
2003-02-04 19:07:01 +01:00
|
|
|
|
struct htab;
|
2003-09-11 David Carlton <carlton@kealia.com>
* gdbtypes.h: Add TYPE_CODE_NAMESPACE.
* gdbtypes.c (init_type): Handle TYPE_CODE_NAMESPACE.
(recursive_dump_type): Ditto.
* printcmd.c (print_formatted): Ditto.
* typeprint.c (print_type_scalar): Ditto.
* c-typeprint.c (c_type_print_varspec_prefix): Ditto.
(c_type_print_varspec_suffix, c_type_print_base): Ditto.
* cp-support.h: Declare cp_check_possible_namespace_symbols,
maint_cplus_cmd_list.
* cp-support.c: Make maint_cplus_cmd_list extern.
* cp-namespace.c: Include objfiles.h, gdbtypes.h, dictionary.h,
command.h.
(lookup_symbol_file): Look in possible namespace blocks when
appropriate.
(initialize_namespace_symtab): New.
(get_possible_namespace_block, free_namespace_block)
(check_possible_namespace_symbols)
(check_possible_namespace_symbols_loop)
(check_one_possible_namespace_symbol)
(lookup_possible_namespace_symbol, maintenance_cplus_namespace)
(_initialize_cp_namespace): Ditto.
* block.h: Declare allocate_block.
* block.c (allocate_block): New.
* jv-lang.c (get_java_class_symtab): Allocate blocks via
allocate_block.
* symfile.h: Update declaration of add_psymbol_to_list.
* symfile.c (add_psymbol_to_list): Return the partial symbol in
question.
* dwarf2read.c (dwarf2_build_psymtabs_hard): Add argument to
scan_partial_symbols_call.
(scan_partial_symbols): Add NAMESPACE argument; update calls to
helper functions.
(add_partial_symbol): If necessary, scan mangled names for names
of namespaces.
(add_partial_namespace): Add NAMESPACE argument; generate partial
symbols associated to namespaces.
(add_partial_enumeration): Add NAMESPACE argument.
(new_symbol): Allow namespace syms.
(read_namespace): Generate namespace syms.
* objfiles.h: Add opaque declaration of struct symtab.
(struct objfile): Add cp_namespace_symtab member.
* objfiles.c (allocate_objfile): Set
objfile->cp_namespace_symtab.
* Makefile.in (cp-namespace.o): Depend on objfiles_h, gdbtypes_h,
dictionary_h, command_h.
2003-09-11 David Carlton <carlton@kealia.com>
* gdb.c++/namespace.exp: Add tests for namespace types.
* gdb.c++/maint.exp (test_help): Test 'help maint cp namespace'.
(test_namespace): New.
2003-09-11 21:49:20 +02:00
|
|
|
|
struct symtab;
|
2003-09-14 04:04:44 +02:00
|
|
|
|
struct objfile_data;
|
2002-06-29 00:09:11 +02:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
/* This structure maintains information on a per-objfile basis about the
|
|
|
|
|
"entry point" of the objfile, and the scope within which the entry point
|
|
|
|
|
exists. It is possible that gdb will see more than one objfile that is
|
|
|
|
|
executable, each with its own entry point.
|
|
|
|
|
|
|
|
|
|
For example, for dynamically linked executables in SVR4, the dynamic linker
|
|
|
|
|
code is contained within the shared C library, which is actually executable
|
|
|
|
|
and is run by the kernel first when an exec is done of a user executable
|
|
|
|
|
that is dynamically linked. The dynamic linker within the shared C library
|
|
|
|
|
then maps in the various program segments in the user executable and jumps
|
|
|
|
|
to the user executable's recorded entry point, as if the call had been made
|
|
|
|
|
directly by the kernel.
|
|
|
|
|
|
2004-05-07 16:29:34 +02:00
|
|
|
|
The traditional gdb method of using this info was to use the
|
|
|
|
|
recorded entry point to set the entry-file's lowpc and highpc from
|
2003-09-12 20:40:18 +02:00
|
|
|
|
the debugging information, where these values are the starting
|
|
|
|
|
address (inclusive) and ending address (exclusive) of the
|
|
|
|
|
instruction space in the executable which correspond to the
|
|
|
|
|
"startup file", I.E. crt0.o in most cases. This file is assumed to
|
|
|
|
|
be a startup file and frames with pc's inside it are treated as
|
|
|
|
|
nonexistent. Setting these variables is necessary so that
|
|
|
|
|
backtraces do not fly off the bottom of the stack.
|
|
|
|
|
|
|
|
|
|
NOTE: cagney/2003-09-09: It turns out that this "traditional"
|
|
|
|
|
method doesn't work. Corinna writes: ``It turns out that the call
|
2004-04-30 22:44:59 +02:00
|
|
|
|
to test for "inside entry file" destroys a meaningful backtrace
|
2003-09-12 20:40:18 +02:00
|
|
|
|
under some conditions. E. g. the backtrace tests in the asm-source
|
|
|
|
|
testcase are broken for some targets. In this test the functions
|
|
|
|
|
are all implemented as part of one file and the testcase is not
|
|
|
|
|
necessarily linked with a start file (depending on the target).
|
|
|
|
|
What happens is, that the first frame is printed normaly and
|
|
|
|
|
following frames are treated as being inside the enttry file then.
|
|
|
|
|
This way, only the #0 frame is printed in the backtrace output.''
|
|
|
|
|
Ref "frame.c" "NOTE: vinschen/2003-04-01".
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
Gdb also supports an alternate method to avoid running off the bottom
|
|
|
|
|
of the stack.
|
|
|
|
|
|
|
|
|
|
There are two frames that are "special", the frame for the function
|
|
|
|
|
containing the process entry point, since it has no predecessor frame,
|
|
|
|
|
and the frame for the function containing the user code entry point
|
|
|
|
|
(the main() function), since all the predecessor frames are for the
|
|
|
|
|
process startup code. Since we have no guarantee that the linked
|
|
|
|
|
in startup modules have any debugging information that gdb can use,
|
|
|
|
|
we need to avoid following frame pointers back into frames that might
|
|
|
|
|
have been built in the startup code, as we might get hopelessly
|
|
|
|
|
confused. However, we almost always have debugging information
|
|
|
|
|
available for main().
|
|
|
|
|
|
2003-03-24 04:54:51 +01:00
|
|
|
|
These variables are used to save the range of PC values which are
|
|
|
|
|
valid within the main() function and within the function containing
|
|
|
|
|
the process entry point. If we always consider the frame for
|
|
|
|
|
main() as the outermost frame when debugging user code, and the
|
|
|
|
|
frame for the process entry point function as the outermost frame
|
|
|
|
|
when debugging startup code, then all we have to do is have
|
|
|
|
|
DEPRECATED_FRAME_CHAIN_VALID return false whenever a frame's
|
|
|
|
|
current PC is within the range specified by these variables. In
|
|
|
|
|
essence, we set "ceilings" in the frame chain beyond which we will
|
1999-04-16 03:35:26 +02:00
|
|
|
|
not proceed when following the frame chain back up the stack.
|
|
|
|
|
|
|
|
|
|
A nice side effect is that we can still debug startup code without
|
|
|
|
|
running off the end of the frame chain, assuming that we have usable
|
|
|
|
|
debugging information in the startup modules, and if we choose to not
|
|
|
|
|
use the block at main, or can't find it for some reason, everything
|
|
|
|
|
still works as before. And if we have no startup code debugging
|
|
|
|
|
information but we do have usable information for main(), backtraces
|
2004-02-04 17:34:51 +01:00
|
|
|
|
from user code don't go wandering off into the startup code. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
struct entry_info
|
1999-07-07 22:19:36 +02:00
|
|
|
|
{
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
/* The value we should use for this objects entry point.
|
|
|
|
|
The illegal/unknown value needs to be something other than 0, ~0
|
|
|
|
|
for instance, which is much less likely than 0. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
CORE_ADDR entry_point;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
#define INVALID_ENTRY_POINT (~0) /* ~0 will not be in any file, we hope. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
};
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
/* Sections in an objfile.
|
|
|
|
|
|
|
|
|
|
It is strange that we have both this notion of "sections"
|
|
|
|
|
and the one used by section_offsets. Section as used
|
|
|
|
|
here, (currently at least) means a BFD section, and the sections
|
|
|
|
|
are set up from the BFD sections in allocate_objfile.
|
|
|
|
|
|
|
|
|
|
The sections in section_offsets have their meaning determined by
|
|
|
|
|
the symbol format, and they are set up by the sym_offsets function
|
|
|
|
|
for that symbol file format.
|
|
|
|
|
|
|
|
|
|
I'm not sure this could or should be changed, however. */
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
struct obj_section
|
|
|
|
|
{
|
|
|
|
|
CORE_ADDR addr; /* lowest address in section */
|
|
|
|
|
CORE_ADDR endaddr; /* 1+highest address in section */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
/* This field is being used for nefarious purposes by syms_from_objfile.
|
|
|
|
|
It is said to be redundant with section_offsets; it's not really being
|
|
|
|
|
used that way, however, it's some sort of hack I don't understand
|
|
|
|
|
and am not going to try to eliminate (yet, anyway). FIXME.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
It was documented as "offset between (end)addr and actual memory
|
|
|
|
|
addresses", but that's not true; addr & endaddr are actual memory
|
|
|
|
|
addresses. */
|
|
|
|
|
CORE_ADDR offset;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2003-11-06 03:52:28 +01:00
|
|
|
|
struct bfd_section *the_bfd_section; /* BFD section pointer */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
/* Objfile this section is part of. */
|
|
|
|
|
struct objfile *objfile;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
/* True if this "overlay section" is mapped into an "overlay region". */
|
|
|
|
|
int ovly_mapped;
|
|
|
|
|
};
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* The "objstats" structure provides a place for gdb to record some
|
|
|
|
|
interesting information about its internal state at runtime, on a
|
|
|
|
|
per objfile basis, such as information about the number of symbols
|
|
|
|
|
read, size of string table (if any), etc. */
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
struct objstats
|
|
|
|
|
{
|
|
|
|
|
int n_minsyms; /* Number of minimal symbols read */
|
|
|
|
|
int n_psyms; /* Number of partial symbols read */
|
|
|
|
|
int n_syms; /* Number of full symbols read */
|
|
|
|
|
int n_stabs; /* Number of ".stabs" read (if applicable) */
|
|
|
|
|
int n_types; /* Number of types */
|
|
|
|
|
int sz_strtab; /* Size of stringtable, (if applicable) */
|
|
|
|
|
};
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
#define OBJSTAT(objfile, expr) (objfile -> stats.expr)
|
|
|
|
|
#define OBJSTATS struct objstats stats
|
2000-05-28 03:12:42 +02:00
|
|
|
|
extern void print_objfile_statistics (void);
|
|
|
|
|
extern void print_symbol_bcache_statistics (void);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2000-03-07 05:33:52 +01:00
|
|
|
|
/* Number of entries in the minimal symbol hash table. */
|
2001-10-12 21:07:07 +02:00
|
|
|
|
#define MINIMAL_SYMBOL_HASH_SIZE 2039
|
2000-03-07 05:33:52 +01:00
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
/* Master structure for keeping track of each file from which
|
|
|
|
|
gdb reads symbols. There are several ways these get allocated: 1.
|
|
|
|
|
The main symbol file, symfile_objfile, set by the symbol-file command,
|
|
|
|
|
2. Additional symbol files added by the add-symbol-file command,
|
|
|
|
|
3. Shared library objfiles, added by ADD_SOLIB, 4. symbol files
|
|
|
|
|
for modules that were loaded when GDB attached to a remote system
|
|
|
|
|
(see remote-vx.c). */
|
|
|
|
|
|
|
|
|
|
struct objfile
|
1999-07-07 22:19:36 +02:00
|
|
|
|
{
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
/* All struct objfile's are chained together by their next pointers.
|
|
|
|
|
The global variable "object_files" points to the first link in this
|
|
|
|
|
chain.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
FIXME: There is a problem here if the objfile is reusable, and if
|
|
|
|
|
multiple users are to be supported. The problem is that the objfile
|
|
|
|
|
list is linked through a member of the objfile struct itself, which
|
|
|
|
|
is only valid for one gdb process. The list implementation needs to
|
|
|
|
|
be changed to something like:
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
struct list {struct list *next; struct objfile *objfile};
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
where the list structure is completely maintained separately within
|
|
|
|
|
each gdb process. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
struct objfile *next;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2003-01-30 00:46:39 +01:00
|
|
|
|
/* The object file's name, tilde-expanded and absolute.
|
|
|
|
|
Malloc'd; free it if you free this struct. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
char *name;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
/* Some flag bits for this objfile. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
unsigned short flags;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
/* Each objfile points to a linked list of symtabs derived from this file,
|
|
|
|
|
one symtab structure for each compilation unit (source file). Each link
|
|
|
|
|
in the symtab list contains a backpointer to this objfile. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
struct symtab *symtabs;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
/* Each objfile points to a linked list of partial symtabs derived from
|
|
|
|
|
this file, one partial symtab structure for each compilation unit
|
|
|
|
|
(source file). */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
struct partial_symtab *psymtabs;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
/* List of freed partial symtabs, available for re-use */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
struct partial_symtab *free_psymtabs;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
/* The object file's BFD. Can be null if the objfile contains only
|
|
|
|
|
minimal symbols, e.g. the run time common symbols for SunOS4. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
bfd *obfd;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
/* The modification timestamp of the object file, as of the last time
|
|
|
|
|
we read its symbols. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
long mtime;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2004-02-07 Elena Zannoni <ezannoni@redhat.com>
* objfiles.h (struct objfile): Add objfile_obstack field.
Remove type_obstack field.
* dwarf2read.c (dwarf2_add_field,dwarf2_add_member_fn,
read_structure_scope read_enumeration, new_symbol): Replace
type_obstack with objfile_obstack.
* dwarfread.c (struct_type, enum_type): Ditto.
* gdbtypes.c (alloc_type, alloc_type_instance, init_type)
(lookup_fundamental_type): Ditto.
* gdbtypes.h (TYPE_ALLOC): Ditto.
* hpread.c (hpread_read_enum_type, hpread_read_function_type)
(hpread_read_doc_function_type, hpread_read_struct_type)
(fix_static_member_physnames, hpread_read_array_type)
(hpread_read_subrange_type, hpread_type_lookup): Ditto.
* jv-lang.c (java_lookup_class, type_from_class, type_from_class)
(java_link_class_type): Ditto.
* mdebugread.c (parse_type): Ditto.
* objfiles.c (allocate_objfile, free_objfile): Ditto.
* solib-sunos.c (solib_add_common_symbols): Ditto.
* stabsread.c (define_symbol, read_type, read_member_functions,
read_cpp_abbrev, read_one_struct_field): Ditto.
* symfile.c (reread_symbols): Ditto.
* symmisc.c (print_objfile_statistics): Ditto.
2004-02-07 17:57:55 +01:00
|
|
|
|
/* Obstack to hold objects that should be freed when we load a new symbol
|
|
|
|
|
table from this object file. */
|
|
|
|
|
|
|
|
|
|
struct obstack objfile_obstack;
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
/* A byte cache where we can stash arbitrary "chunks" of bytes that
|
|
|
|
|
will not change. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2002-07-12 17:23:10 +02:00
|
|
|
|
struct bcache *psymbol_cache; /* Byte cache for partial syms */
|
|
|
|
|
struct bcache *macro_cache; /* Byte cache for macros */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2003-02-04 19:07:01 +01:00
|
|
|
|
/* Hash table for mapping symbol names to demangled names. Each
|
|
|
|
|
entry in the hash table is actually two consecutive strings,
|
|
|
|
|
both null-terminated; the first one is a mangled or linkage
|
|
|
|
|
name, and the second is the demangled name or just a zero byte
|
|
|
|
|
if the name doesn't demangle. */
|
|
|
|
|
struct htab *demangled_names_hash;
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
/* Vectors of all partial symbols read in from file. The actual data
|
2004-02-07 Elena Zannoni <ezannoni@redhat.com>
* dbxread.c (dbx_symfile_init, start_psymtab, end_psymtab,
coffstab_build_psymtabs, elfstab_build_psymtabs)
(stabsect_build_psymtabs): Replace psymbol_obstack with
objfile_obstack.
* dwarf2-frame.c (decode_frame_entry_1): Ditto.
* dwarf2read.c (dwarf2_build_psymtabs_hard, dwarf2_read_section):
Ditto.
* dwarfread.c (scan_compilation_units): Ditto.
* elfread.c (elfstab_offset_sections): Ditto.
* hppa-tdep.c (read_unwind_info): Ditto.
* hpread.c (hpread_build_psymtabs, hpread_start_psymtab)
(hpread_end_psymtab): Ditto.
* mdebugread.c (mdebug_build_psymtabs, add_pending)
(parse_partial_symbols, new_psymtab, elfmdebug_build_psymtabs):
Ditto.
* mips-tdep.c (non_heuristic_proc_desc): Ditto.
* objfiles.c (add_to_objfile_sections)
(build_objfile_section_table): Ditto.
(allocate_objfile): Remove init of psymbol_obstack.
(free_objfile): Remove freeing of psymbol_obstack.
* objfiles.h (struct objfile): Remove field
psymbol_obstack. Update comments.
* pa64solib.c (pa64_solib_add_solib_objfile): Replace
psymbol_obstack with objfile_obstack.
* solib-sunos.c (allocate_rt_common_objfile): Remove init of
psymbol_obstack.
* somread.c (som_symfile_offsets, init_import_symbols)
(init_export_symbols): Replace psymbol_obstack with
objfile_obstack.
* somsolib.c (som_solib_add_solib_objfile): Ditto.
* symfile.c (default_symfile_offsets, syms_from_objfile)
(reread_symbols): Remove freeing and init of psymbol_obstack.
(cashier_psymtab): Update comment.
* symmisc.c (print_objfile_statistics): Don't report stats for
psymbol obstack.
* symtab.h (struct general_symbol_info, struct partial_symtab):
Update comments.
* xcoffread.c (xcoff_start_psymtab, xcoff_end_psymtab, swap_sym)
(xcoff_symfile_offsets): Replace psymbol_obstack with
objfile_obstack.
2004-02-07 19:29:54 +01:00
|
|
|
|
is stored in the objfile_obstack. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
struct psymbol_allocation_list global_psymbols;
|
|
|
|
|
struct psymbol_allocation_list static_psymbols;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
/* Each file contains a pointer to an array of minimal symbols for all
|
|
|
|
|
global symbols that are defined within the file. The array is terminated
|
|
|
|
|
by a "null symbol", one that has a NULL pointer for the name and a zero
|
|
|
|
|
value for the address. This makes it easy to walk through the array
|
|
|
|
|
when passed a pointer to somewhere in the middle of it. There is also
|
|
|
|
|
a count of the number of symbols, which does not include the terminating
|
|
|
|
|
null symbol. The array itself, as well as all the data that it points
|
2004-02-07 Elena Zannoni <ezannoni@redhat.com>
* buildsym.c (free_pending_blocks, finish_block)
(record_pending_block, make_blockvector, end_symtab): Replace
symbol_obstack with objfile_obstack.
* coffread.c (process_coff_symbol, coff_read_struct_type)
(coff_read_enum_type): Ditto.
* cp-namespace.c (initialize_namespace_symtab)
(check_one_possible_namespace_symbol): Ditto.
* dwarf2read.c (new_symbol, dwarf2_const_value, macro_start_file)
(dwarf2_symbol_mark_computed): Ditto.
* dwarfread.c (enum_type, new_symbol, synthesize_typedef): Ditto.
* elfread.c (elf_symtab_read): Ditto.
* hpread.c (hpread_symfile_init, hpread_symfile_init)
(hpread_read_enum_type, hpread_read_function_type)
(hpread_read_doc_function_type, hpread_process_one_debug_symbol):
Ditto.
* jv-lang.c (get_java_class_symtab, add_class_symbol)
(java_link_class_type): Ditto.
* mdebugread.c (parse_symbol, psymtab_to_symtab_1, new_symtab)
(new_symbol): Ditto.
* minsyms.c (install_minimal_symbols): Ditto.
* objfiles.c (allocate_objfile): Remove init of symbol_obstack.
(terminate_minimal_symbol_table): Replace symbol_obstack with
objfile_obstack.
(free_objfile): Remove freeing of symbol_obstack.
* objfiles.h: Remove symbol_obstack field.
* pa64solib.c (add_to_solist): Replace symbol_obstack with
objfile_obstack.
* solib-sunos.c (allocate_rt_common_objfile): Remove init of
symbol_obstack.
(solib_add_common_symbols): Replace symbol_obstack with
objfile_obstack.
* somsolib.c (som_solib_add): Ditto.
* stabsread.c (patch_block_stabs, define_symbol, read_enum_type)
(common_block_start, common_block_end): Ditto.
* symfile.c (reread_symbols): Remove freeing and init of
symbol_obstack.
(allocate_symtab): Rename symbol_obstack to objfile_obstack.
* symfile.h: Update comment.
* symmisc.c (print_objfile_statistics): Remove symbol_obstack
stats printing.
* symtab.c (symbol_set_names): Replace symbol_obstack with
objfile_obstack.
* symtab.h (struct general_symbol_info, struct minimal_symbol):
Update comments.
* xcoffread.c (read_xcoff_symtab, SYMBOL_DUP, SYMNAME_ALLOC)
(init_stringtab, xcoff_initial_scan): Replace symbol_obstack with
objfile_obstack.
2004-02-08 00:13:47 +01:00
|
|
|
|
to, should be allocated on the objfile_obstack for this file. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
struct minimal_symbol *msymbols;
|
|
|
|
|
int minimal_symbol_count;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2000-03-07 05:33:52 +01:00
|
|
|
|
/* This is a hash table used to index the minimal symbols by name. */
|
|
|
|
|
|
|
|
|
|
struct minimal_symbol *msymbol_hash[MINIMAL_SYMBOL_HASH_SIZE];
|
|
|
|
|
|
|
|
|
|
/* This hash table is used to index the minimal symbols by their
|
|
|
|
|
demangled names. */
|
|
|
|
|
|
|
|
|
|
struct minimal_symbol *msymbol_demangled_hash[MINIMAL_SYMBOL_HASH_SIZE];
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
/* The mmalloc() malloc-descriptor for this objfile if we are using
|
|
|
|
|
the memory mapped malloc() package to manage storage for this objfile's
|
|
|
|
|
data. NULL if we are not. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2003-01-18 Andrew Cagney <ac131313@redhat.com>
* ada-valprint.c: Eliminate PTR.
* breakpoint.c, corelow.c, cris-tdep.c, dbxread.c: Ditto.
* defs.h, dve3900-rom.c, dwarf2read.c, dwarfread.c: Ditto.
* exec.c, hppa-tdep.c, hpread.c, infcmd.c, mdebugread.c: Ditto.
* objfiles.c, objfiles.h, ocd.c, remote-es.c: Ditto.
* remote-mips.c, remote-sds.c, remote-vx.c: Ditto.
* solib-svr4.c, solib.c, stack.c, symfile.c, symfile.h: Ditto.
* symmisc.c, v850ice.c, xcoffread.c, cli/cli-script.c: Ditto.
2003-01-18 16:55:53 +01:00
|
|
|
|
void *md;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
/* The file descriptor that was used to obtain the mmalloc descriptor
|
|
|
|
|
for this objfile. If we call mmalloc_detach with the malloc descriptor
|
|
|
|
|
we should then close this file descriptor. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
int mmfd;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
/* Structure which keeps track of functions that manipulate objfile's
|
|
|
|
|
of the same type as this objfile. I.E. the function to read partial
|
|
|
|
|
symbols for example. Note that this structure is in statically
|
|
|
|
|
allocated memory, and is shared by all objfiles that use the
|
|
|
|
|
object module reader of this type. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
struct sym_fns *sf;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
/* The per-objfile information about the entry point, the scope (file/func)
|
|
|
|
|
containing the entry point, and the scope of the user's main() func. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
struct entry_info ei;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
/* Information about stabs. Will be filled in with a dbx_symfile_info
|
|
|
|
|
struct by those readers that need it. */
|
2004-10-23 18:18:09 +02:00
|
|
|
|
/* NOTE: cagney/2004-10-23: This has been replaced by per-objfile
|
|
|
|
|
data points implemented using "data" and "num_data" below. For
|
|
|
|
|
an example of how to use this replacement, see "objfile_data"
|
|
|
|
|
in "mips-tdep.c". */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2004-10-23 18:18:09 +02:00
|
|
|
|
struct dbx_symfile_info *deprecated_sym_stab_info;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
/* Hook for information for use by the symbol reader (currently used
|
|
|
|
|
for information shared by sym_init and sym_read). It is
|
|
|
|
|
typically a pointer to malloc'd memory. The symbol reader's finish
|
|
|
|
|
function is responsible for freeing the memory thusly allocated. */
|
2004-10-23 18:18:09 +02:00
|
|
|
|
/* NOTE: cagney/2004-10-23: This has been replaced by per-objfile
|
|
|
|
|
data points implemented using "data" and "num_data" below. For
|
|
|
|
|
an example of how to use this replacement, see "objfile_data"
|
|
|
|
|
in "mips-tdep.c". */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2004-10-23 18:18:09 +02:00
|
|
|
|
void *deprecated_sym_private;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
/* Hook for target-architecture-specific information. This must
|
|
|
|
|
point to memory allocated on one of the obstacks in this objfile,
|
|
|
|
|
so that it gets freed automatically when reading a new object
|
|
|
|
|
file. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2004-10-23 18:18:09 +02:00
|
|
|
|
void *deprecated_obj_private;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2003-08-22 00:35:33 +02:00
|
|
|
|
/* Per objfile data-pointers required by other GDB modules. */
|
|
|
|
|
/* FIXME: kettenis/20030711: This mechanism could replace
|
2004-10-23 18:18:09 +02:00
|
|
|
|
deprecated_sym_stab_info, deprecated_sym_private and
|
|
|
|
|
deprecated_obj_private entirely. */
|
2003-08-22 00:35:33 +02:00
|
|
|
|
|
|
|
|
|
void **data;
|
|
|
|
|
unsigned num_data;
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
/* Set of relocation offsets to apply to each section.
|
2004-02-07 Elena Zannoni <ezannoni@redhat.com>
* dbxread.c (dbx_symfile_init, start_psymtab, end_psymtab,
coffstab_build_psymtabs, elfstab_build_psymtabs)
(stabsect_build_psymtabs): Replace psymbol_obstack with
objfile_obstack.
* dwarf2-frame.c (decode_frame_entry_1): Ditto.
* dwarf2read.c (dwarf2_build_psymtabs_hard, dwarf2_read_section):
Ditto.
* dwarfread.c (scan_compilation_units): Ditto.
* elfread.c (elfstab_offset_sections): Ditto.
* hppa-tdep.c (read_unwind_info): Ditto.
* hpread.c (hpread_build_psymtabs, hpread_start_psymtab)
(hpread_end_psymtab): Ditto.
* mdebugread.c (mdebug_build_psymtabs, add_pending)
(parse_partial_symbols, new_psymtab, elfmdebug_build_psymtabs):
Ditto.
* mips-tdep.c (non_heuristic_proc_desc): Ditto.
* objfiles.c (add_to_objfile_sections)
(build_objfile_section_table): Ditto.
(allocate_objfile): Remove init of psymbol_obstack.
(free_objfile): Remove freeing of psymbol_obstack.
* objfiles.h (struct objfile): Remove field
psymbol_obstack. Update comments.
* pa64solib.c (pa64_solib_add_solib_objfile): Replace
psymbol_obstack with objfile_obstack.
* solib-sunos.c (allocate_rt_common_objfile): Remove init of
psymbol_obstack.
* somread.c (som_symfile_offsets, init_import_symbols)
(init_export_symbols): Replace psymbol_obstack with
objfile_obstack.
* somsolib.c (som_solib_add_solib_objfile): Ditto.
* symfile.c (default_symfile_offsets, syms_from_objfile)
(reread_symbols): Remove freeing and init of psymbol_obstack.
(cashier_psymtab): Update comment.
* symmisc.c (print_objfile_statistics): Don't report stats for
psymbol obstack.
* symtab.h (struct general_symbol_info, struct partial_symtab):
Update comments.
* xcoffread.c (xcoff_start_psymtab, xcoff_end_psymtab, swap_sym)
(xcoff_symfile_offsets): Replace psymbol_obstack with
objfile_obstack.
2004-02-07 19:29:54 +01:00
|
|
|
|
Currently on the objfile_obstack (which makes no sense, but I'm
|
1999-07-07 22:19:36 +02:00
|
|
|
|
not sure it's harming anything).
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
These offsets indicate that all symbols (including partial and
|
|
|
|
|
minimal symbols) which have been read have been relocated by this
|
|
|
|
|
much. Symbols which are yet to be read need to be relocated by
|
|
|
|
|
it. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
struct section_offsets *section_offsets;
|
|
|
|
|
int num_sections;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* objfiles.h (SECT_OFF_DATA, SECT_OFF_TEXT, SECT_OFF_BSS,
SECT_OFF_RODATA): Define as functions of OBJFILE. Add
sect_index_text, sect_index_data, sect_index_rodata,
sect_index_bss to objfile structure.
* gdb-stabs.h (SECT_OFF_DATA, SECT_OFF_TEXT, SECT_OFF_BSS,
SECT_OFF_RODATA): Remove.
* objfiles.c (allocate_objfile): Initialize
sect_index_{text,data,bss,rodata} to -1, for error detection.
* symfile.c (default_symfile_offsets): Initialize
sect_index_{text,data,bss,rodata} from bfd information.
* xcoffread.c (xcoff_symfile_offsets): Ditto.
* somread.c (som_symfile_offsets): Initialize
sect_index_{text,data,bss,rodata}.
* coffread.c, dbxread.c, elfread.c, hp-psymtab-read.c,
hp-symtab-read.c, hpread.c, mdebugread.c, minsyms.c,
mipsread.c, objfiles.c, os9kread.c, pa64solib.c, partial-stab.h,
remote-os9k.c, remote-vx.c, remote.c, rs6000-nat.c, somsolib.c,
stabsread.c, symfile.c, xcoffread.c:
Update use of SECT_OFF_{TEXT,DATA,BSS,RODATA} to depend on the
current objfile.
* xcoffread.c: Add new field objfile to find_targ_sec_arg.
2000-05-04 18:52:34 +02:00
|
|
|
|
/* Indexes in the section_offsets array. These are initialized by the
|
|
|
|
|
*_symfile_offsets() family of functions (som_symfile_offsets,
|
|
|
|
|
xcoff_symfile_offsets, default_symfile_offsets). In theory they
|
|
|
|
|
should correspond to the section indexes used by bfd for the
|
|
|
|
|
current objfile. The exception to this for the time being is the
|
|
|
|
|
SOM version. */
|
|
|
|
|
|
|
|
|
|
int sect_index_text;
|
|
|
|
|
int sect_index_data;
|
|
|
|
|
int sect_index_bss;
|
|
|
|
|
int sect_index_rodata;
|
|
|
|
|
|
1999-08-09 23:36:23 +02:00
|
|
|
|
/* These pointers are used to locate the section table, which
|
1999-11-02 05:44:47 +01:00
|
|
|
|
among other things, is used to map pc addresses into sections.
|
1999-08-09 23:36:23 +02:00
|
|
|
|
SECTIONS points to the first entry in the table, and
|
|
|
|
|
SECTIONS_END points to the first location past the last entry
|
|
|
|
|
in the table. Currently the table is stored on the
|
2004-02-07 Elena Zannoni <ezannoni@redhat.com>
* dbxread.c (dbx_symfile_init, start_psymtab, end_psymtab,
coffstab_build_psymtabs, elfstab_build_psymtabs)
(stabsect_build_psymtabs): Replace psymbol_obstack with
objfile_obstack.
* dwarf2-frame.c (decode_frame_entry_1): Ditto.
* dwarf2read.c (dwarf2_build_psymtabs_hard, dwarf2_read_section):
Ditto.
* dwarfread.c (scan_compilation_units): Ditto.
* elfread.c (elfstab_offset_sections): Ditto.
* hppa-tdep.c (read_unwind_info): Ditto.
* hpread.c (hpread_build_psymtabs, hpread_start_psymtab)
(hpread_end_psymtab): Ditto.
* mdebugread.c (mdebug_build_psymtabs, add_pending)
(parse_partial_symbols, new_psymtab, elfmdebug_build_psymtabs):
Ditto.
* mips-tdep.c (non_heuristic_proc_desc): Ditto.
* objfiles.c (add_to_objfile_sections)
(build_objfile_section_table): Ditto.
(allocate_objfile): Remove init of psymbol_obstack.
(free_objfile): Remove freeing of psymbol_obstack.
* objfiles.h (struct objfile): Remove field
psymbol_obstack. Update comments.
* pa64solib.c (pa64_solib_add_solib_objfile): Replace
psymbol_obstack with objfile_obstack.
* solib-sunos.c (allocate_rt_common_objfile): Remove init of
psymbol_obstack.
* somread.c (som_symfile_offsets, init_import_symbols)
(init_export_symbols): Replace psymbol_obstack with
objfile_obstack.
* somsolib.c (som_solib_add_solib_objfile): Ditto.
* symfile.c (default_symfile_offsets, syms_from_objfile)
(reread_symbols): Remove freeing and init of psymbol_obstack.
(cashier_psymtab): Update comment.
* symmisc.c (print_objfile_statistics): Don't report stats for
psymbol obstack.
* symtab.h (struct general_symbol_info, struct partial_symtab):
Update comments.
* xcoffread.c (xcoff_start_psymtab, xcoff_end_psymtab, swap_sym)
(xcoff_symfile_offsets): Replace psymbol_obstack with
objfile_obstack.
2004-02-07 19:29:54 +01:00
|
|
|
|
objfile_obstack (which makes no sense, but I'm not sure it's
|
1999-08-09 23:36:23 +02:00
|
|
|
|
harming anything). */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
struct obj_section
|
|
|
|
|
*sections, *sections_end;
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
gdb/ChangeLog:
2003-01-23 Alexander Larsson <alexl@redhat.com>
Jim Blandy <jimb@redhat.com>
Add support for executables whose debug info has been separated
out into a separate file, leaving only a link behind.
* objfiles.h (struct objfile): New fields: separate_debug_objfile
and separate_debug_objfile_backlink.
(put_objfile_before): New declaration.
* symfile.c: #include "filenames.h".
(symbol_file_add_with_addrs_or_offsets): If this objfile has its
debug info in a separate file, read that, too. Save the addrs
argument, so we can use it again to read the separated debug info;
syms_from_objfile modifies the table we pass it.
(reread_symbols): After re-reading an objfile, call
reread_separate_symbols to refresh its separate debug info
objfile, if it has one.
(reread_separate_symbols, find_separate_debug_file,
get_debug_link_info, separate_debug_file_exists): New functions.
(debug_file_directory): New global var.
(_initialize_symfile): Initialize debug_file_directory, and
provide the new `set debug-file-directory' command to let the user
change it.
* objfiles.c (free_objfile): If this objfile has its debug info in
a separate objfile, free that one too. If this is itself a
separate debug info objfile, clear our parent's backlink.
(put_objfile_before): New function.
* utils.c (gnu_debuglink_crc32): New function.
* defs.h (gnu_debuglink_crc32): New declaration.
* Makefile.in (symfile.o): Note dependency on "filenames.h".
* configure.in: Handle --with-separate-debug-dir config option.
* acinclude.m4 (AC_DEFINE_DIR): New macro.
* acconfig.h (DEBUGDIR): New macro.
* configure, aclocal.m4, config.in: Regenerated.
gdb/doc/ChangeLog:
2003-01-23 Jim Blandy <jimb@redhat.com>
* gdb.texinfo (Separate Debug Files): New section.
2003-01-24 00:03:32 +01:00
|
|
|
|
/* Link to objfile that contains the debug symbols for this one.
|
|
|
|
|
One is loaded if this file has an debug link to an existing
|
|
|
|
|
debug file with the right checksum */
|
|
|
|
|
struct objfile *separate_debug_objfile;
|
|
|
|
|
|
|
|
|
|
/* If this is a separate debug object, this is used as a link to the
|
|
|
|
|
actual executable objfile. */
|
|
|
|
|
struct objfile *separate_debug_objfile_backlink;
|
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
/* Place to stash various statistics about this objfile */
|
|
|
|
|
OBJSTATS;
|
2003-09-11 David Carlton <carlton@kealia.com>
* gdbtypes.h: Add TYPE_CODE_NAMESPACE.
* gdbtypes.c (init_type): Handle TYPE_CODE_NAMESPACE.
(recursive_dump_type): Ditto.
* printcmd.c (print_formatted): Ditto.
* typeprint.c (print_type_scalar): Ditto.
* c-typeprint.c (c_type_print_varspec_prefix): Ditto.
(c_type_print_varspec_suffix, c_type_print_base): Ditto.
* cp-support.h: Declare cp_check_possible_namespace_symbols,
maint_cplus_cmd_list.
* cp-support.c: Make maint_cplus_cmd_list extern.
* cp-namespace.c: Include objfiles.h, gdbtypes.h, dictionary.h,
command.h.
(lookup_symbol_file): Look in possible namespace blocks when
appropriate.
(initialize_namespace_symtab): New.
(get_possible_namespace_block, free_namespace_block)
(check_possible_namespace_symbols)
(check_possible_namespace_symbols_loop)
(check_one_possible_namespace_symbol)
(lookup_possible_namespace_symbol, maintenance_cplus_namespace)
(_initialize_cp_namespace): Ditto.
* block.h: Declare allocate_block.
* block.c (allocate_block): New.
* jv-lang.c (get_java_class_symtab): Allocate blocks via
allocate_block.
* symfile.h: Update declaration of add_psymbol_to_list.
* symfile.c (add_psymbol_to_list): Return the partial symbol in
question.
* dwarf2read.c (dwarf2_build_psymtabs_hard): Add argument to
scan_partial_symbols_call.
(scan_partial_symbols): Add NAMESPACE argument; update calls to
helper functions.
(add_partial_symbol): If necessary, scan mangled names for names
of namespaces.
(add_partial_namespace): Add NAMESPACE argument; generate partial
symbols associated to namespaces.
(add_partial_enumeration): Add NAMESPACE argument.
(new_symbol): Allow namespace syms.
(read_namespace): Generate namespace syms.
* objfiles.h: Add opaque declaration of struct symtab.
(struct objfile): Add cp_namespace_symtab member.
* objfiles.c (allocate_objfile): Set
objfile->cp_namespace_symtab.
* Makefile.in (cp-namespace.o): Depend on objfiles_h, gdbtypes_h,
dictionary_h, command_h.
2003-09-11 David Carlton <carlton@kealia.com>
* gdb.c++/namespace.exp: Add tests for namespace types.
* gdb.c++/maint.exp (test_help): Test 'help maint cp namespace'.
(test_namespace): New.
2003-09-11 21:49:20 +02:00
|
|
|
|
|
|
|
|
|
/* A symtab that the C++ code uses to stash special symbols
|
|
|
|
|
associated to namespaces. */
|
|
|
|
|
|
|
|
|
|
/* FIXME/carlton-2003-06-27: Delete this in a few years once
|
|
|
|
|
"possible namespace symbols" go away. */
|
|
|
|
|
struct symtab *cp_namespace_symtab;
|
1999-07-07 22:19:36 +02:00
|
|
|
|
};
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
/* Defines for the objfile flag word. */
|
|
|
|
|
|
|
|
|
|
/* When using mapped/remapped predigested gdb symbol information, we need
|
|
|
|
|
a flag that indicates that we have previously done an initial symbol
|
|
|
|
|
table read from this particular objfile. We can't just look for the
|
|
|
|
|
absence of any of the three symbol tables (msymbols, psymtab, symtab)
|
|
|
|
|
because if the file has no symbols for example, none of these will
|
|
|
|
|
exist. */
|
|
|
|
|
|
|
|
|
|
#define OBJF_SYMS (1 << 1) /* Have tried to read symbols */
|
|
|
|
|
|
|
|
|
|
/* When an object file has its functions reordered (currently Irix-5.2
|
|
|
|
|
shared libraries exhibit this behaviour), we will need an expensive
|
|
|
|
|
algorithm to locate a partial symtab or symtab via an address.
|
|
|
|
|
To avoid this penalty for normal object files, we use this flag,
|
|
|
|
|
whose setting is determined upon symbol table read in. */
|
|
|
|
|
|
|
|
|
|
#define OBJF_REORDERED (1 << 2) /* Functions are reordered */
|
1999-07-07 22:19:36 +02:00
|
|
|
|
|
1999-10-12 06:37:53 +02:00
|
|
|
|
/* Distinguish between an objfile for a shared library and a "vanilla"
|
|
|
|
|
objfile. (If not set, the objfile may still actually be a solib.
|
|
|
|
|
This can happen if the user created the objfile by using the
|
|
|
|
|
add-symbol-file command. GDB doesn't in that situation actually
|
|
|
|
|
check whether the file is a solib. Rather, the target's
|
|
|
|
|
implementation of the solib interface is responsible for setting
|
|
|
|
|
this flag when noticing solibs used by an inferior.) */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
#define OBJF_SHARED (1 << 3) /* From a shared library */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
1999-10-06 01:13:56 +02:00
|
|
|
|
/* User requested that this objfile be read in it's entirety. */
|
|
|
|
|
|
|
|
|
|
#define OBJF_READNOW (1 << 4) /* Immediate full read */
|
|
|
|
|
|
1999-10-12 06:37:53 +02:00
|
|
|
|
/* This objfile was created because the user explicitly caused it
|
|
|
|
|
(e.g., used the add-symbol-file command). This bit offers a way
|
|
|
|
|
for run_command to remove old objfile entries which are no longer
|
|
|
|
|
valid (i.e., are associated with an old inferior), but to preserve
|
|
|
|
|
ones that the user explicitly loaded via the add-symbol-file
|
|
|
|
|
command. */
|
|
|
|
|
|
|
|
|
|
#define OBJF_USERLOADED (1 << 5) /* User loaded */
|
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
/* The object file that the main symbol table was loaded from (e.g. the
|
|
|
|
|
argument to the "symbol-file" or "file" command). */
|
|
|
|
|
|
|
|
|
|
extern struct objfile *symfile_objfile;
|
|
|
|
|
|
|
|
|
|
/* The object file that contains the runtime common minimal symbols
|
|
|
|
|
for SunOS4. Note that this objfile has no associated BFD. */
|
|
|
|
|
|
|
|
|
|
extern struct objfile *rt_common_objfile;
|
|
|
|
|
|
2004-02-07 Elena Zannoni <ezannoni@redhat.com>
* objfiles.h (struct objfile): Add objfile_obstack field.
Remove type_obstack field.
* dwarf2read.c (dwarf2_add_field,dwarf2_add_member_fn,
read_structure_scope read_enumeration, new_symbol): Replace
type_obstack with objfile_obstack.
* dwarfread.c (struct_type, enum_type): Ditto.
* gdbtypes.c (alloc_type, alloc_type_instance, init_type)
(lookup_fundamental_type): Ditto.
* gdbtypes.h (TYPE_ALLOC): Ditto.
* hpread.c (hpread_read_enum_type, hpread_read_function_type)
(hpread_read_doc_function_type, hpread_read_struct_type)
(fix_static_member_physnames, hpread_read_array_type)
(hpread_read_subrange_type, hpread_type_lookup): Ditto.
* jv-lang.c (java_lookup_class, type_from_class, type_from_class)
(java_link_class_type): Ditto.
* mdebugread.c (parse_type): Ditto.
* objfiles.c (allocate_objfile, free_objfile): Ditto.
* solib-sunos.c (solib_add_common_symbols): Ditto.
* stabsread.c (define_symbol, read_type, read_member_functions,
read_cpp_abbrev, read_one_struct_field): Ditto.
* symfile.c (reread_symbols): Ditto.
* symmisc.c (print_objfile_statistics): Ditto.
2004-02-07 17:57:55 +01:00
|
|
|
|
/* When we need to allocate a new type, we need to know which objfile_obstack
|
1999-04-16 03:35:26 +02:00
|
|
|
|
to allocate the type on, since there is one for each objfile. The places
|
|
|
|
|
where types are allocated are deeply buried in function call hierarchies
|
|
|
|
|
which know nothing about objfiles, so rather than trying to pass a
|
|
|
|
|
particular objfile down to them, we just do an end run around them and
|
|
|
|
|
set current_objfile to be whatever objfile we expect to be using at the
|
|
|
|
|
time types are being allocated. For instance, when we start reading
|
|
|
|
|
symbols for a particular objfile, we set current_objfile to point to that
|
|
|
|
|
objfile, and when we are done, we set it back to NULL, to ensure that we
|
|
|
|
|
never put a type someplace other than where we are expecting to put it.
|
|
|
|
|
FIXME: Maybe we should review the entire type handling system and
|
|
|
|
|
see if there is a better way to avoid this problem. */
|
|
|
|
|
|
|
|
|
|
extern struct objfile *current_objfile;
|
|
|
|
|
|
|
|
|
|
/* All known objfiles are kept in a linked list. This points to the
|
|
|
|
|
root of this list. */
|
|
|
|
|
|
|
|
|
|
extern struct objfile *object_files;
|
|
|
|
|
|
|
|
|
|
/* Declarations for functions defined in objfiles.c */
|
|
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
|
extern struct objfile *allocate_objfile (bfd *, int);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2004-02-14 Elena Zannoni <ezannoni@redhat.com>
* symfile.c (init_entry_point_info, entry_point_address): Move
from here...
* objfiles.c (init_entry_point_info, entry_point_address):..to
here.
* symfile.h (init_entry_point_info, entry_point_address): Remove
prototypes.
* objfiles.h (init_entry_point_info, entry_point_address):Add
prototypes.
* cris-tdep.c: Remove include of symfile.h. Add include of
objfiles.h.
* infcall.c: Ditto.
* mcore-tdep.c: Ditto.
* mn10300-tdep.c: Ditto.
* sh64-tdep.c: Ditto.
* v850-tdep.c: Ditto.
* arm-tdep.c: Remove include of symfile.h.
* blockframe.c: Ditto.
* coffread.c: Ditto.
* dbxread.c: Ditto.
* dwarf2read.c: Ditto.
* dwarfread.c: Ditto.
* frv-tdep.c: Ditto.
* ia64-tdep.c: Ditto.
* mdebugread.c: Ditto.
* mipsread.c: Ditto.
* rs6000-tdep.c: Ditto.
* s390-tdep.c: Ditto.
* sh-tdep.c: Ditto.
* xstormy16-tdep.c: Ditto.
* gdbarch.sh: Remove include of symfile.h.
* gdbarch.c: Regenerate.
* solib-irix.c (enable_break): Use entry_point_address().
Add comment about include file.
* xcoffread.c: Add comment about include file.
* Makefile.in (arm-tdep.o, blockframe.o, coffread.o, cris-tdep.o)
(dbxread.o, dwarf2read.o, dwarfread.o, frv-tdep.o, gdbarch.o)
(ia64-tdep.o, infcall.o, mcore-tdep.o, mdebugread.o, mipsread.o)
(mn10300-tdep.o, rs6000-nat.o, s390-tdep.o, sh64-tdep.o)
(sh-tdep.o, v850-tdep.o, xstormy16-tdep.o): Update dependencies.
2004-02-14 16:46:33 +01:00
|
|
|
|
extern void init_entry_point_info (struct objfile *);
|
|
|
|
|
|
|
|
|
|
extern CORE_ADDR entry_point_address (void);
|
|
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
|
extern int build_objfile_section_table (struct objfile *);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2003-02-03 21:39:41 +01:00
|
|
|
|
extern void terminate_minimal_symbol_table (struct objfile *objfile);
|
|
|
|
|
|
gdb/ChangeLog:
2003-01-23 Alexander Larsson <alexl@redhat.com>
Jim Blandy <jimb@redhat.com>
Add support for executables whose debug info has been separated
out into a separate file, leaving only a link behind.
* objfiles.h (struct objfile): New fields: separate_debug_objfile
and separate_debug_objfile_backlink.
(put_objfile_before): New declaration.
* symfile.c: #include "filenames.h".
(symbol_file_add_with_addrs_or_offsets): If this objfile has its
debug info in a separate file, read that, too. Save the addrs
argument, so we can use it again to read the separated debug info;
syms_from_objfile modifies the table we pass it.
(reread_symbols): After re-reading an objfile, call
reread_separate_symbols to refresh its separate debug info
objfile, if it has one.
(reread_separate_symbols, find_separate_debug_file,
get_debug_link_info, separate_debug_file_exists): New functions.
(debug_file_directory): New global var.
(_initialize_symfile): Initialize debug_file_directory, and
provide the new `set debug-file-directory' command to let the user
change it.
* objfiles.c (free_objfile): If this objfile has its debug info in
a separate objfile, free that one too. If this is itself a
separate debug info objfile, clear our parent's backlink.
(put_objfile_before): New function.
* utils.c (gnu_debuglink_crc32): New function.
* defs.h (gnu_debuglink_crc32): New declaration.
* Makefile.in (symfile.o): Note dependency on "filenames.h".
* configure.in: Handle --with-separate-debug-dir config option.
* acinclude.m4 (AC_DEFINE_DIR): New macro.
* acconfig.h (DEBUGDIR): New macro.
* configure, aclocal.m4, config.in: Regenerated.
gdb/doc/ChangeLog:
2003-01-23 Jim Blandy <jimb@redhat.com>
* gdb.texinfo (Separate Debug Files): New section.
2003-01-24 00:03:32 +01:00
|
|
|
|
extern void put_objfile_before (struct objfile *, struct objfile *);
|
|
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
|
extern void objfile_to_front (struct objfile *);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
|
extern void unlink_objfile (struct objfile *);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
|
extern void free_objfile (struct objfile *);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2000-05-22 11:02:23 +02:00
|
|
|
|
extern struct cleanup *make_cleanup_free_objfile (struct objfile *);
|
|
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
|
extern void free_all_objfiles (void);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
|
extern void objfile_relocate (struct objfile *, struct section_offsets *);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
|
extern int have_partial_symbols (void);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
|
extern int have_full_symbols (void);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
/* This operation deletes all objfile entries that represent solibs that
|
|
|
|
|
weren't explicitly loaded by the user, via e.g., the add-symbol-file
|
|
|
|
|
command.
|
1999-07-07 22:19:36 +02:00
|
|
|
|
*/
|
2000-05-28 03:12:42 +02:00
|
|
|
|
extern void objfile_purge_solibs (void);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
/* Functions for dealing with the minimal symbol table, really a misc
|
|
|
|
|
address<->symbol mapping for things we don't have debug symbols for. */
|
|
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
|
extern int have_minimal_symbols (void);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
|
extern struct obj_section *find_pc_section (CORE_ADDR pc);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
|
extern struct obj_section *find_pc_sect_section (CORE_ADDR pc,
|
|
|
|
|
asection * section);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2000-05-28 03:12:42 +02:00
|
|
|
|
extern int in_plt_section (CORE_ADDR, char *);
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
2003-08-22 00:35:33 +02:00
|
|
|
|
/* Keep a registry of per-objfile data-pointers required by other GDB
|
|
|
|
|
modules. */
|
|
|
|
|
|
|
|
|
|
extern const struct objfile_data *register_objfile_data (void);
|
2003-10-29 19:29:07 +01:00
|
|
|
|
extern void clear_objfile_data (struct objfile *objfile);
|
2003-08-22 00:35:33 +02:00
|
|
|
|
extern void set_objfile_data (struct objfile *objfile,
|
|
|
|
|
const struct objfile_data *data, void *value);
|
|
|
|
|
extern void *objfile_data (struct objfile *objfile,
|
|
|
|
|
const struct objfile_data *data);
|
|
|
|
|
|
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
/* Traverse all object files. ALL_OBJFILES_SAFE works even if you delete
|
|
|
|
|
the objfile during the traversal. */
|
|
|
|
|
|
|
|
|
|
#define ALL_OBJFILES(obj) \
|
|
|
|
|
for ((obj) = object_files; (obj) != NULL; (obj) = (obj)->next)
|
|
|
|
|
|
|
|
|
|
#define ALL_OBJFILES_SAFE(obj,nxt) \
|
|
|
|
|
for ((obj) = object_files; \
|
|
|
|
|
(obj) != NULL? ((nxt)=(obj)->next,1) :0; \
|
|
|
|
|
(obj) = (nxt))
|
|
|
|
|
|
|
|
|
|
/* Traverse all symtabs in one objfile. */
|
|
|
|
|
|
|
|
|
|
#define ALL_OBJFILE_SYMTABS(objfile, s) \
|
|
|
|
|
for ((s) = (objfile) -> symtabs; (s) != NULL; (s) = (s) -> next)
|
|
|
|
|
|
|
|
|
|
/* Traverse all psymtabs in one objfile. */
|
|
|
|
|
|
|
|
|
|
#define ALL_OBJFILE_PSYMTABS(objfile, p) \
|
|
|
|
|
for ((p) = (objfile) -> psymtabs; (p) != NULL; (p) = (p) -> next)
|
|
|
|
|
|
|
|
|
|
/* Traverse all minimal symbols in one objfile. */
|
|
|
|
|
|
|
|
|
|
#define ALL_OBJFILE_MSYMBOLS(objfile, m) \
|
2003-02-25 David Carlton <carlton@math.stanford.edu>
* symtab.h (SYMBOL_NATURAL_NAME): New macro.
(SYMBOL_LINKAGE_NAME): Ditto.
(SYMBOL_PRINT_NAME): Use SYMBOL_NATURAL_NAME and
SYMBOL_LINKAGE_NAME.
(struct general_symbol_info): Expand comment.
(DEPRECATED_SYMBOL_NAME): Rename from SYMBOL_NAME.
(SYMBOL_MATCHES_NAME): Use DEPRECATED_SYMBOL_NAME.
(SYMBOL_MATCHES_REGEXP): Ditto.
* symtab.c (symbol_natural_name): New function.
* objfiles.h: Replace all uses of SYMBOL_NAME by
DEPRECATED_SYMBOL_NAME.
* xcoffread.c, valops.c, typeprint.c, tracepoint.c: Ditto.
* symtab.c, symmisc.c, symfile.c, stack.c, stabsread.c: Ditto.
* somsolib.c, sol-thread.c, rs6000-tdep.c, p-valprint.c: Ditto.
* printcmd.c, objfiles.c, objc-lang.c, mipsread.c: Ditto.
* minsyms.c, mdebugread.c, linespec.c, jv-lang.c: Ditto.
* i386-tdep.c, i386-linux-tdep.c, hpread.c, hppa-tdep.c: Ditto.
* gnu-v2-abi.c, f-valprint.c, findvar.c, expprint.c: Ditto.
* dwarfread.c, dwarf2read.c, dbxread.c, c-valprint.c: Ditto.
* cp-valprint.c, coffread.c, buildsym.c, breakpoint.c: Ditto.
* blockframe.c, ax-gdb.c, arm-linux-tdep.c, ada-lang.c: Ditto.
* ada-exp.y: Ditto.
* ada-exp.y: Update copyright.
* sol-thread.c, mipsread.c, jv-lang.c, f-valprint.c: Ditto.
* cp-valprint.c: Ditto.
2003-02-25 David Carlton <carlton@math.stanford.edu>
* generic/gdbtk.h: Replace all instances of SYMBOL_NAME by
DEPRECATED_SYMBOL_NAME.
* generic/gdbtk-stack.c, generic/gdbtk-cmds.c: Ditto.
* generic/gdbtk-stack.c, generic/gdbtk-cmds.c: Update copyright.
2003-02-25 David Carlton <carlton@math.stanford.edu>
* mi-cmd-stack.c: Replace all instances of SYMBOL_NAME with
DEPRECATED_SYMBOL_NAME. Update copyright.
2003-02-25 22:36:23 +01:00
|
|
|
|
for ((m) = (objfile) -> msymbols; DEPRECATED_SYMBOL_NAME(m) != NULL; (m)++)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
/* Traverse all symtabs in all objfiles. */
|
|
|
|
|
|
|
|
|
|
#define ALL_SYMTABS(objfile, s) \
|
|
|
|
|
ALL_OBJFILES (objfile) \
|
|
|
|
|
ALL_OBJFILE_SYMTABS (objfile, s)
|
|
|
|
|
|
2007-01-21 17:55:49 +01:00
|
|
|
|
/* Traverse all symtabs in all objfiles, skipping included files
|
|
|
|
|
(which share a blockvector with their primary symtab). */
|
|
|
|
|
|
|
|
|
|
#define ALL_PRIMARY_SYMTABS(objfile, s) \
|
|
|
|
|
ALL_OBJFILES (objfile) \
|
|
|
|
|
ALL_OBJFILE_SYMTABS (objfile, s) \
|
|
|
|
|
if ((s)->primary)
|
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
|
/* Traverse all psymtabs in all objfiles. */
|
|
|
|
|
|
|
|
|
|
#define ALL_PSYMTABS(objfile, p) \
|
|
|
|
|
ALL_OBJFILES (objfile) \
|
|
|
|
|
ALL_OBJFILE_PSYMTABS (objfile, p)
|
|
|
|
|
|
|
|
|
|
/* Traverse all minimal symbols in all objfiles. */
|
|
|
|
|
|
|
|
|
|
#define ALL_MSYMBOLS(objfile, m) \
|
|
|
|
|
ALL_OBJFILES (objfile) \
|
2003-02-03 21:39:41 +01:00
|
|
|
|
ALL_OBJFILE_MSYMBOLS (objfile, m)
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
|
|
#define ALL_OBJFILE_OSECTIONS(objfile, osect) \
|
|
|
|
|
for (osect = objfile->sections; osect < objfile->sections_end; osect++)
|
|
|
|
|
|
|
|
|
|
#define ALL_OBJSECTIONS(objfile, osect) \
|
|
|
|
|
ALL_OBJFILES (objfile) \
|
|
|
|
|
ALL_OBJFILE_OSECTIONS (objfile, osect)
|
|
|
|
|
|
Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* objfiles.h (SECT_OFF_DATA, SECT_OFF_TEXT, SECT_OFF_BSS,
SECT_OFF_RODATA): Define as functions of OBJFILE. Add
sect_index_text, sect_index_data, sect_index_rodata,
sect_index_bss to objfile structure.
* gdb-stabs.h (SECT_OFF_DATA, SECT_OFF_TEXT, SECT_OFF_BSS,
SECT_OFF_RODATA): Remove.
* objfiles.c (allocate_objfile): Initialize
sect_index_{text,data,bss,rodata} to -1, for error detection.
* symfile.c (default_symfile_offsets): Initialize
sect_index_{text,data,bss,rodata} from bfd information.
* xcoffread.c (xcoff_symfile_offsets): Ditto.
* somread.c (som_symfile_offsets): Initialize
sect_index_{text,data,bss,rodata}.
* coffread.c, dbxread.c, elfread.c, hp-psymtab-read.c,
hp-symtab-read.c, hpread.c, mdebugread.c, minsyms.c,
mipsread.c, objfiles.c, os9kread.c, pa64solib.c, partial-stab.h,
remote-os9k.c, remote-vx.c, remote.c, rs6000-nat.c, somsolib.c,
stabsread.c, symfile.c, xcoffread.c:
Update use of SECT_OFF_{TEXT,DATA,BSS,RODATA} to depend on the
current objfile.
* xcoffread.c: Add new field objfile to find_targ_sec_arg.
2000-05-04 18:52:34 +02:00
|
|
|
|
#define SECT_OFF_DATA(objfile) \
|
2001-02-08 07:03:54 +01:00
|
|
|
|
((objfile->sect_index_data == -1) \
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up error_no_arg, query, perror_with_name, complaint, and
internal_error.
* breakpoint.c, cp-abi.c, cp-namespace.c, cp-support.c: Update.
* cris-tdep.c, dbxread.c, dictionary.c, dsrec.c: Update.
* dummy-frame.c, dve3900-rom.c, dwarf2-frame.c, dwarf2expr.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, event-loop.c: Update.
* exceptions.c, exec.c, f-lang.c, findvar.c, fork-child.c: Update.
* frame-unwind.c, frame.c, frv-linux-tdep.c, frv-tdep.c: Update.
* gdb_assert.h, gdbarch.c, gdbtypes.c, gnu-nat.c: Update.
* go32-nat.c, hppa-tdep.c, hppabsd-nat.c, hpread.c: Update.
* i386-linux-nat.c, i386-nat.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386fbsd-nat.c, inf-ptrace.c, inf-ttrace.c, infcall.c: Update.
* infcmd.c, inflow.c, infptrace.c, infrun.c, inftarg.c: Update.
* interps.c, language.c, linespec.c, linux-nat.c: Update.
* m32r-linux-nat.c, m68k-tdep.c, m68kbsd-nat.c: Update.
* m68klinux-nat.c, m88kbsd-nat.c, macroexp.c, macroscope.c: Update.
* macrotab.c, maint.c, mdebugread.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mips64obsd-nat.c: Update.
* mipsnbsd-nat.c, mn10300-tdep.c, monitor.c, nto-procfs.c: Update.
* objc-lang.c, objfiles.c, objfiles.h, ocd.c, osabi.c: Update.
* parse.c, ppc-bdm.c, ppc-linux-nat.c, ppc-sysv-tdep.c: Update.
* ppcnbsd-nat.c, ppcobsd-nat.c, printcmd.c, procfs.c: Update.
* regcache.c, reggroups.c, remote-e7000.c, remote-mips.c: Update.
* remote-rdp.c, remote-sds.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote.c, rs6000-nat.c, rs6000-tdep.c: Update.
* s390-nat.c, s390-tdep.c, sentinel-frame.c, serial.c: Update.
* sh-tdep.c, sh3-rom.c, sh64-tdep.c, shnbsd-nat.c: Update.
* solib-aix5.c, solib-svr4.c, solib.c, source.c: Update.
* sparc-nat.c, stabsread.c, stack.c, symfile.c, symtab.c: Update.
* symtab.h, target.c, tracepoint.c, ui-file.c, ui-out.c: Update.
* utils.c, valops.c, valprint.c, vax-nat.c, vaxbsd-nat.c: Update.
* win32-nat.c, xcoffread.c, xstormy16-tdep.c: Update.
* cli/cli-cmds.c, cli/cli-logging.c, cli/cli-script.c: Update.
* cli/cli-setshow.c, mi/mi-cmd-break.c, mi/mi-cmds.c: Update.
* mi/mi-console.c, mi/mi-getopt.c, mi/mi-out.c: Update.
* tui/tui-file.c, tui/tui-interp.c: Update.
2005-02-11 19:13:55 +01:00
|
|
|
|
? (internal_error (__FILE__, __LINE__, _("sect_index_data not initialized")), -1) \
|
2001-02-08 07:03:54 +01:00
|
|
|
|
: objfile->sect_index_data)
|
Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* objfiles.h (SECT_OFF_DATA, SECT_OFF_TEXT, SECT_OFF_BSS,
SECT_OFF_RODATA): Define as functions of OBJFILE. Add
sect_index_text, sect_index_data, sect_index_rodata,
sect_index_bss to objfile structure.
* gdb-stabs.h (SECT_OFF_DATA, SECT_OFF_TEXT, SECT_OFF_BSS,
SECT_OFF_RODATA): Remove.
* objfiles.c (allocate_objfile): Initialize
sect_index_{text,data,bss,rodata} to -1, for error detection.
* symfile.c (default_symfile_offsets): Initialize
sect_index_{text,data,bss,rodata} from bfd information.
* xcoffread.c (xcoff_symfile_offsets): Ditto.
* somread.c (som_symfile_offsets): Initialize
sect_index_{text,data,bss,rodata}.
* coffread.c, dbxread.c, elfread.c, hp-psymtab-read.c,
hp-symtab-read.c, hpread.c, mdebugread.c, minsyms.c,
mipsread.c, objfiles.c, os9kread.c, pa64solib.c, partial-stab.h,
remote-os9k.c, remote-vx.c, remote.c, rs6000-nat.c, somsolib.c,
stabsread.c, symfile.c, xcoffread.c:
Update use of SECT_OFF_{TEXT,DATA,BSS,RODATA} to depend on the
current objfile.
* xcoffread.c: Add new field objfile to find_targ_sec_arg.
2000-05-04 18:52:34 +02:00
|
|
|
|
|
|
|
|
|
#define SECT_OFF_RODATA(objfile) \
|
2001-02-08 07:03:54 +01:00
|
|
|
|
((objfile->sect_index_rodata == -1) \
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up error_no_arg, query, perror_with_name, complaint, and
internal_error.
* breakpoint.c, cp-abi.c, cp-namespace.c, cp-support.c: Update.
* cris-tdep.c, dbxread.c, dictionary.c, dsrec.c: Update.
* dummy-frame.c, dve3900-rom.c, dwarf2-frame.c, dwarf2expr.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, event-loop.c: Update.
* exceptions.c, exec.c, f-lang.c, findvar.c, fork-child.c: Update.
* frame-unwind.c, frame.c, frv-linux-tdep.c, frv-tdep.c: Update.
* gdb_assert.h, gdbarch.c, gdbtypes.c, gnu-nat.c: Update.
* go32-nat.c, hppa-tdep.c, hppabsd-nat.c, hpread.c: Update.
* i386-linux-nat.c, i386-nat.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386fbsd-nat.c, inf-ptrace.c, inf-ttrace.c, infcall.c: Update.
* infcmd.c, inflow.c, infptrace.c, infrun.c, inftarg.c: Update.
* interps.c, language.c, linespec.c, linux-nat.c: Update.
* m32r-linux-nat.c, m68k-tdep.c, m68kbsd-nat.c: Update.
* m68klinux-nat.c, m88kbsd-nat.c, macroexp.c, macroscope.c: Update.
* macrotab.c, maint.c, mdebugread.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mips64obsd-nat.c: Update.
* mipsnbsd-nat.c, mn10300-tdep.c, monitor.c, nto-procfs.c: Update.
* objc-lang.c, objfiles.c, objfiles.h, ocd.c, osabi.c: Update.
* parse.c, ppc-bdm.c, ppc-linux-nat.c, ppc-sysv-tdep.c: Update.
* ppcnbsd-nat.c, ppcobsd-nat.c, printcmd.c, procfs.c: Update.
* regcache.c, reggroups.c, remote-e7000.c, remote-mips.c: Update.
* remote-rdp.c, remote-sds.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote.c, rs6000-nat.c, rs6000-tdep.c: Update.
* s390-nat.c, s390-tdep.c, sentinel-frame.c, serial.c: Update.
* sh-tdep.c, sh3-rom.c, sh64-tdep.c, shnbsd-nat.c: Update.
* solib-aix5.c, solib-svr4.c, solib.c, source.c: Update.
* sparc-nat.c, stabsread.c, stack.c, symfile.c, symtab.c: Update.
* symtab.h, target.c, tracepoint.c, ui-file.c, ui-out.c: Update.
* utils.c, valops.c, valprint.c, vax-nat.c, vaxbsd-nat.c: Update.
* win32-nat.c, xcoffread.c, xstormy16-tdep.c: Update.
* cli/cli-cmds.c, cli/cli-logging.c, cli/cli-script.c: Update.
* cli/cli-setshow.c, mi/mi-cmd-break.c, mi/mi-cmds.c: Update.
* mi/mi-console.c, mi/mi-getopt.c, mi/mi-out.c: Update.
* tui/tui-file.c, tui/tui-interp.c: Update.
2005-02-11 19:13:55 +01:00
|
|
|
|
? (internal_error (__FILE__, __LINE__, _("sect_index_rodata not initialized")), -1) \
|
2001-02-08 07:03:54 +01:00
|
|
|
|
: objfile->sect_index_rodata)
|
Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* objfiles.h (SECT_OFF_DATA, SECT_OFF_TEXT, SECT_OFF_BSS,
SECT_OFF_RODATA): Define as functions of OBJFILE. Add
sect_index_text, sect_index_data, sect_index_rodata,
sect_index_bss to objfile structure.
* gdb-stabs.h (SECT_OFF_DATA, SECT_OFF_TEXT, SECT_OFF_BSS,
SECT_OFF_RODATA): Remove.
* objfiles.c (allocate_objfile): Initialize
sect_index_{text,data,bss,rodata} to -1, for error detection.
* symfile.c (default_symfile_offsets): Initialize
sect_index_{text,data,bss,rodata} from bfd information.
* xcoffread.c (xcoff_symfile_offsets): Ditto.
* somread.c (som_symfile_offsets): Initialize
sect_index_{text,data,bss,rodata}.
* coffread.c, dbxread.c, elfread.c, hp-psymtab-read.c,
hp-symtab-read.c, hpread.c, mdebugread.c, minsyms.c,
mipsread.c, objfiles.c, os9kread.c, pa64solib.c, partial-stab.h,
remote-os9k.c, remote-vx.c, remote.c, rs6000-nat.c, somsolib.c,
stabsread.c, symfile.c, xcoffread.c:
Update use of SECT_OFF_{TEXT,DATA,BSS,RODATA} to depend on the
current objfile.
* xcoffread.c: Add new field objfile to find_targ_sec_arg.
2000-05-04 18:52:34 +02:00
|
|
|
|
|
|
|
|
|
#define SECT_OFF_TEXT(objfile) \
|
2001-02-08 07:03:54 +01:00
|
|
|
|
((objfile->sect_index_text == -1) \
|
2005-02-11 Andrew Cagney <cagney@gnu.org>
Mark up error_no_arg, query, perror_with_name, complaint, and
internal_error.
* breakpoint.c, cp-abi.c, cp-namespace.c, cp-support.c: Update.
* cris-tdep.c, dbxread.c, dictionary.c, dsrec.c: Update.
* dummy-frame.c, dve3900-rom.c, dwarf2-frame.c, dwarf2expr.c: Update.
* dwarf2read.c, dwarfread.c, elfread.c, event-loop.c: Update.
* exceptions.c, exec.c, f-lang.c, findvar.c, fork-child.c: Update.
* frame-unwind.c, frame.c, frv-linux-tdep.c, frv-tdep.c: Update.
* gdb_assert.h, gdbarch.c, gdbtypes.c, gnu-nat.c: Update.
* go32-nat.c, hppa-tdep.c, hppabsd-nat.c, hpread.c: Update.
* i386-linux-nat.c, i386-nat.c, i386-tdep.c, i386bsd-nat.c: Update.
* i386fbsd-nat.c, inf-ptrace.c, inf-ttrace.c, infcall.c: Update.
* infcmd.c, inflow.c, infptrace.c, infrun.c, inftarg.c: Update.
* interps.c, language.c, linespec.c, linux-nat.c: Update.
* m32r-linux-nat.c, m68k-tdep.c, m68kbsd-nat.c: Update.
* m68klinux-nat.c, m88kbsd-nat.c, macroexp.c, macroscope.c: Update.
* macrotab.c, maint.c, mdebugread.c, memattr.c: Update.
* mips-linux-tdep.c, mips-tdep.c, mips64obsd-nat.c: Update.
* mipsnbsd-nat.c, mn10300-tdep.c, monitor.c, nto-procfs.c: Update.
* objc-lang.c, objfiles.c, objfiles.h, ocd.c, osabi.c: Update.
* parse.c, ppc-bdm.c, ppc-linux-nat.c, ppc-sysv-tdep.c: Update.
* ppcnbsd-nat.c, ppcobsd-nat.c, printcmd.c, procfs.c: Update.
* regcache.c, reggroups.c, remote-e7000.c, remote-mips.c: Update.
* remote-rdp.c, remote-sds.c, remote-sim.c, remote-st.c: Update.
* remote-utils.c, remote.c, rs6000-nat.c, rs6000-tdep.c: Update.
* s390-nat.c, s390-tdep.c, sentinel-frame.c, serial.c: Update.
* sh-tdep.c, sh3-rom.c, sh64-tdep.c, shnbsd-nat.c: Update.
* solib-aix5.c, solib-svr4.c, solib.c, source.c: Update.
* sparc-nat.c, stabsread.c, stack.c, symfile.c, symtab.c: Update.
* symtab.h, target.c, tracepoint.c, ui-file.c, ui-out.c: Update.
* utils.c, valops.c, valprint.c, vax-nat.c, vaxbsd-nat.c: Update.
* win32-nat.c, xcoffread.c, xstormy16-tdep.c: Update.
* cli/cli-cmds.c, cli/cli-logging.c, cli/cli-script.c: Update.
* cli/cli-setshow.c, mi/mi-cmd-break.c, mi/mi-cmds.c: Update.
* mi/mi-console.c, mi/mi-getopt.c, mi/mi-out.c: Update.
* tui/tui-file.c, tui/tui-interp.c: Update.
2005-02-11 19:13:55 +01:00
|
|
|
|
? (internal_error (__FILE__, __LINE__, _("sect_index_text not initialized")), -1) \
|
2001-02-08 07:03:54 +01:00
|
|
|
|
: objfile->sect_index_text)
|
Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* objfiles.h (SECT_OFF_DATA, SECT_OFF_TEXT, SECT_OFF_BSS,
SECT_OFF_RODATA): Define as functions of OBJFILE. Add
sect_index_text, sect_index_data, sect_index_rodata,
sect_index_bss to objfile structure.
* gdb-stabs.h (SECT_OFF_DATA, SECT_OFF_TEXT, SECT_OFF_BSS,
SECT_OFF_RODATA): Remove.
* objfiles.c (allocate_objfile): Initialize
sect_index_{text,data,bss,rodata} to -1, for error detection.
* symfile.c (default_symfile_offsets): Initialize
sect_index_{text,data,bss,rodata} from bfd information.
* xcoffread.c (xcoff_symfile_offsets): Ditto.
* somread.c (som_symfile_offsets): Initialize
sect_index_{text,data,bss,rodata}.
* coffread.c, dbxread.c, elfread.c, hp-psymtab-read.c,
hp-symtab-read.c, hpread.c, mdebugread.c, minsyms.c,
mipsread.c, objfiles.c, os9kread.c, pa64solib.c, partial-stab.h,
remote-os9k.c, remote-vx.c, remote.c, rs6000-nat.c, somsolib.c,
stabsread.c, symfile.c, xcoffread.c:
Update use of SECT_OFF_{TEXT,DATA,BSS,RODATA} to depend on the
current objfile.
* xcoffread.c: Add new field objfile to find_targ_sec_arg.
2000-05-04 18:52:34 +02:00
|
|
|
|
|
2000-08-07 17:02:48 +02:00
|
|
|
|
/* Sometimes the .bss section is missing from the objfile, so we don't
|
|
|
|
|
want to die here. Let the users of SECT_OFF_BSS deal with an
|
|
|
|
|
uninitialized section index. */
|
|
|
|
|
#define SECT_OFF_BSS(objfile) (objfile)->sect_index_bss
|
Elena Zannoni <ezannoni@kwikemart.cygnus.com>
* objfiles.h (SECT_OFF_DATA, SECT_OFF_TEXT, SECT_OFF_BSS,
SECT_OFF_RODATA): Define as functions of OBJFILE. Add
sect_index_text, sect_index_data, sect_index_rodata,
sect_index_bss to objfile structure.
* gdb-stabs.h (SECT_OFF_DATA, SECT_OFF_TEXT, SECT_OFF_BSS,
SECT_OFF_RODATA): Remove.
* objfiles.c (allocate_objfile): Initialize
sect_index_{text,data,bss,rodata} to -1, for error detection.
* symfile.c (default_symfile_offsets): Initialize
sect_index_{text,data,bss,rodata} from bfd information.
* xcoffread.c (xcoff_symfile_offsets): Ditto.
* somread.c (som_symfile_offsets): Initialize
sect_index_{text,data,bss,rodata}.
* coffread.c, dbxread.c, elfread.c, hp-psymtab-read.c,
hp-symtab-read.c, hpread.c, mdebugread.c, minsyms.c,
mipsread.c, objfiles.c, os9kread.c, pa64solib.c, partial-stab.h,
remote-os9k.c, remote-vx.c, remote.c, rs6000-nat.c, somsolib.c,
stabsread.c, symfile.c, xcoffread.c:
Update use of SECT_OFF_{TEXT,DATA,BSS,RODATA} to depend on the
current objfile.
* xcoffread.c: Add new field objfile to find_targ_sec_arg.
2000-05-04 18:52:34 +02:00
|
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
|
#endif /* !defined (OBJFILES_H) */
|