* config/obj-coff.h (SF_ADJ_LNNOPTR): Define (non BFD_ASSEMBLER).
[deliverable/binutils-gdb.git] / gdb / symfile.h
CommitLineData
bd5635a1 1/* Definitions for reading symbol files into GDB.
14b22711
FF
2 Copyright (C) 1990, 1991, 1992, 1993, 1994, 1996
3 Free Software Foundation, Inc.
bd5635a1
RP
4
5This file is part of GDB.
6
2f068b0d 7This program is free software; you can redistribute it and/or modify
bd5635a1 8it under the terms of the GNU General Public License as published by
2f068b0d
FF
9the Free Software Foundation; either version 2 of the License, or
10(at your option) any later version.
bd5635a1 11
2f068b0d 12This program is distributed in the hope that it will be useful,
bd5635a1
RP
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
2f068b0d 18along with this program; if not, write to the Free Software
14b22711 19Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
bd5635a1 20
318bf84f
FF
21#if !defined (SYMFILE_H)
22#define SYMFILE_H
23
bd5635a1
RP
24/* This file requires that you first include "bfd.h". */
25
318bf84f
FF
26struct psymbol_allocation_list {
27 struct partial_symbol *list;
28 struct partial_symbol *next;
29 int size;
30};
31
80d68b1d
FF
32/* Structure to keep track of symbol reading functions for various
33 object file types. */
34
35struct sym_fns {
36
14b22711
FF
37 /* BFD flavour that we handle, or (as a special kludge, see xcoffread.c,
38 (enum bfd_flavour)-1 for xcoff). */
80d68b1d 39
14b22711 40 enum bfd_flavour sym_flavour;
80d68b1d
FF
41
42 /* Initializes anything that is global to the entire symbol table. It is
43 called during symbol_file_add, when we begin debugging an entirely new
44 program. */
45
46 void (*sym_new_init) PARAMS ((struct objfile *));
47
48 /* Reads any initial information from a symbol file, and initializes the
49 struct sym_fns SF in preparation for sym_read(). It is called every
50 time we read a symbol file for any reason. */
51
52 void (*sym_init) PARAMS ((struct objfile *));
53
54 /* sym_read (objfile, addr, mainline)
55 Reads a symbol file into a psymtab (or possibly a symtab).
51b80b00
FF
56 OBJFILE is the objfile struct for the file we are reading.
57 SECTION_OFFSETS
58 are the offset between the file's specified section addresses and
59 their true addresses in memory.
60 MAINLINE is 1 if this is the
80d68b1d
FF
61 main symbol table being read, and 0 if a secondary
62 symbol file (e.g. shared library or dynamically loaded file)
63 is being read. */
64
51b80b00 65 void (*sym_read) PARAMS ((struct objfile *, struct section_offsets *, int));
80d68b1d
FF
66
67 /* Called when we are finished with an objfile. Should do all cleanup
68 that is specific to the object file format for the particular objfile. */
69
70 void (*sym_finish) PARAMS ((struct objfile *));
71
51b80b00
FF
72 /* This function produces a file-dependent section_offsets structure,
73 allocated in the objfile's storage, and based on the parameter.
74 The parameter is currently a CORE_ADDR (FIXME!) for backward compatibility
75 with the higher levels of GDB. It should probably be changed to
76 a string, where NULL means the default, and others are parsed in a file
77 dependent way. The result of this function is handed in to sym_read. */
78
79 struct section_offsets *(*sym_offsets) PARAMS ((struct objfile *, CORE_ADDR));
80
80d68b1d
FF
81 /* Finds the next struct sym_fns. They are allocated and initialized
82 in whatever module implements the functions pointed to; an
83 initializer calls add_symtab_fns to add them to the global chain. */
84
85 struct sym_fns *next;
86
87};
88
318bf84f
FF
89extern void
90extend_psymbol_list PARAMS ((struct psymbol_allocation_list *,
91 struct objfile *));
7e258d18
PB
92
93/* Add any kind of symbol to a psymbol_allocation_list. */
94
2e4964ad 95#ifndef INLINE_ADD_PSYMBOL
14b22711
FF
96/* Default this to off for now, and probably eventually remove support for inlining via
97 macros. Real world tests show no performance improvements by inlining, and the macros
98 just make debugging gdb more complicated and make gdb larger by up to 150 Kb. */
99#define INLINE_ADD_PSYMBOL 0
2e4964ad
FF
100#endif
101
14b22711
FF
102#include "demangle.h"
103
2e4964ad
FF
104#if !INLINE_ADD_PSYMBOL
105
106/* Since one arg is a struct, we have to pass in a ptr and deref it (sigh) */
107
108#define ADD_PSYMBOL_TO_LIST(name, namelength, namespace, class, list, value, language, objfile) \
109 add_psymbol_to_list (name, namelength, namespace, class, &list, value, language, objfile)
110
111#define ADD_PSYMBOL_ADDR_TO_LIST(name, namelength, namespace, class, list, value, language, objfile) \
112 add_psymbol_addr_to_list (name, namelength, namespace, class, &list, value, language, objfile)
113
114#else /* !INLINE_ADD_PSYMBOL */
115
2e4964ad 116#define ADD_PSYMBOL_VT_TO_LIST(NAME,NAMELENGTH,NAMESPACE,CLASS,LIST,VALUE,VT,LANGUAGE, OBJFILE) \
7e258d18
PB
117 do { \
118 register struct partial_symbol *psym; \
119 if ((LIST).next >= (LIST).list + (LIST).size) \
2e4964ad 120 extend_psymbol_list (&(LIST),(OBJFILE)); \
7e258d18 121 psym = (LIST).next++; \
2e4964ad
FF
122 SYMBOL_NAME (psym) = \
123 (char *) obstack_alloc (&objfile->psymbol_obstack, \
124 (NAMELENGTH) + 1); \
318bf84f 125 memcpy (SYMBOL_NAME (psym), (NAME), (NAMELENGTH)); \
7e258d18
PB
126 SYMBOL_NAME (psym)[(NAMELENGTH)] = '\0'; \
127 SYMBOL_NAMESPACE (psym) = (NAMESPACE); \
14b22711 128 SYMBOL_SECTION (psym) = 0; \
2e4964ad 129 PSYMBOL_CLASS (psym) = (CLASS); \
7e258d18 130 VT (psym) = (VALUE); \
2e4964ad 131 SYMBOL_LANGUAGE (psym) = (LANGUAGE); \
14b22711
FF
132 SYMBOL_INIT_LANGUAGE_SPECIFIC (psym, LANGUAGE); \
133 OBJSTAT (objfile, n_psyms++); \
134 } while (0)
7e258d18 135
318bf84f
FF
136/* Add a symbol with an integer value to a psymtab. */
137
2e4964ad
FF
138#define ADD_PSYMBOL_TO_LIST(name, namelength, namespace, class, list, value, language, objfile) \
139 ADD_PSYMBOL_VT_TO_LIST (name, namelength, namespace, class, list, value, SYMBOL_VALUE, language, objfile)
318bf84f
FF
140
141/* Add a symbol with a CORE_ADDR value to a psymtab. */
142
2e4964ad
FF
143#define ADD_PSYMBOL_ADDR_TO_LIST(name, namelength, namespace, class, list, value, language, objfile)\
144 ADD_PSYMBOL_VT_TO_LIST (name, namelength, namespace, class, list, value, SYMBOL_VALUE_ADDRESS, language, objfile)
318bf84f 145
2e4964ad 146#endif /* INLINE_ADD_PSYMBOL */
318bf84f 147
14b22711 148extern void init_psymbol_list PARAMS ((struct objfile *, int));
bd5635a1 149
318bf84f
FF
150extern void
151sort_pst_symbols PARAMS ((struct partial_symtab *));
152
153extern struct symtab *
154allocate_symtab PARAMS ((char *, struct objfile *));
155
318bf84f
FF
156extern int
157free_named_symtabs PARAMS ((char *));
bd5635a1 158
318bf84f
FF
159extern void
160fill_in_vptr_fieldno PARAMS ((struct type *));
bd5635a1 161
318bf84f
FF
162extern void
163add_symtab_fns PARAMS ((struct sym_fns *));
164
51b80b00
FF
165extern void
166init_entry_point_info PARAMS ((struct objfile *));
167
318bf84f
FF
168extern void
169syms_from_objfile PARAMS ((struct objfile *, CORE_ADDR, int, int));
170
51b80b00
FF
171extern void
172new_symfile_objfile PARAMS ((struct objfile *, int, int));
173
318bf84f 174extern struct partial_symtab *
51b80b00
FF
175start_psymtab_common PARAMS ((struct objfile *, struct section_offsets *,
176 char *, CORE_ADDR,
318bf84f
FF
177 struct partial_symbol *,
178 struct partial_symbol *));
bd5635a1
RP
179
180/* Sorting your symbols for fast lookup or alphabetical printing. */
181
318bf84f
FF
182extern void
183sort_block_syms PARAMS ((struct block *));
184
185extern void
186sort_symtab_syms PARAMS ((struct symtab *));
187
bd5635a1
RP
188/* Make a copy of the string at PTR with SIZE characters in the symbol obstack
189 (and add a null character at the end in the copy).
190 Returns the address of the copy. */
191
318bf84f
FF
192extern char *
193obsavestring PARAMS ((char *, int, struct obstack *));
bd5635a1
RP
194
195/* Concatenate strings S1, S2 and S3; return the new string.
196 Space is found in the symbol_obstack. */
197
318bf84f
FF
198extern char *
199obconcat PARAMS ((struct obstack *obstackp, const char *, const char *,
200 const char *));
bd5635a1
RP
201
202 /* Variables */
203
14b22711
FF
204/* whether to auto load solibs at startup time: 0/1. */
205
206extern int auto_solib_add;
207
318bf84f
FF
208/* From symfile.c */
209
210extern struct partial_symtab *
211allocate_psymtab PARAMS ((char *, struct objfile *));
212
14b22711
FF
213/* Remote targets may wish to use this as their load function. */
214extern void generic_load PARAMS ((char *name, int from_tty));
215
51b80b00 216/* From dwarfread.c */
318bf84f 217
51b80b00
FF
218extern void
219dwarf_build_psymtabs PARAMS ((struct objfile *, struct section_offsets *, int,
220 file_ptr, unsigned int, file_ptr, unsigned int));
318bf84f 221
14b22711
FF
222/* From mdebugread.c */
223
224/* Hack to force structures to exist before use in parameter list. */
225struct ecoff_debug_hack
226{
227 struct ecoff_debug_swap *a;
228 struct ecoff_debug_info *b;
229};
230extern void
231mdebug_build_psymtabs PARAMS ((struct objfile *,
232 const struct ecoff_debug_swap *,
233 struct ecoff_debug_info *,
234 struct section_offsets *));
318bf84f 235
51b80b00 236extern void
14b22711
FF
237elfmdebug_build_psymtabs PARAMS ((struct objfile *,
238 const struct ecoff_debug_swap *,
239 asection *,
240 struct section_offsets *));
318bf84f 241
51b80b00 242/* From demangle.c */
318bf84f
FF
243
244extern void
51b80b00 245set_demangling_style PARAMS ((char *));
318bf84f
FF
246
247#endif /* !defined(SYMFILE_H) */
This page took 0.280795 seconds and 4 git commands to generate.