* section.c (_bfd_std_section): Rename from std_section.
[deliverable/binutils-gdb.git] / gdb / buildsym.h
CommitLineData
c906108c 1/* Build symbol tables in GDB's internal format.
28e7fd62 2 Copyright (C) 1986-2013 Free Software Foundation, Inc.
c906108c 3
c5aa993b
JM
4 This file is part of GDB.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
a9762ec7 8 the Free Software Foundation; either version 3 of the License, or
c5aa993b
JM
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
a9762ec7 17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
18
19#if !defined (BUILDSYM_H)
20#define BUILDSYM_H 1
21
da3331ec
AC
22struct objfile;
23struct symbol;
801e3a5b 24struct addrmap;
da3331ec 25
c906108c
SS
26/* This module provides definitions used for creating and adding to
27 the symbol table. These routines are called from various symbol-
28 file-reading routines.
29
30 They originated in dbxread.c of gdb-4.2, and were split out to
31 make xcoffread.c more maintainable by sharing code.
32
33 Variables declared in this file can be defined by #define-ing the
34 name EXTERN to null. It is used to declare variables that are
35 normally extern, but which get defined in a single module using
36 this technique. */
37
fe898f56 38struct block;
93eed41f 39struct pending_block;
fe898f56 40
c906108c
SS
41#ifndef EXTERN
42#define EXTERN extern
43#endif
44
45#define HASHSIZE 127 /* Size of things hashed via
0e2de366 46 hashname(). */
c906108c
SS
47
48/* Name of source file whose symbol data we are now processing. This
0e2de366
MS
49 comes from a symbol of type N_SO for stabs. For Dwarf it comes
50 from the DW_AT_name attribute of a DW_TAG_compile_unit DIE. */
c906108c
SS
51
52EXTERN char *last_source_file;
53
54/* Core address of start of text of current source file. This too
92b5c263
DE
55 comes from the N_SO symbol. For Dwarf it typically comes from the
56 DW_AT_low_pc attribute of a DW_TAG_compile_unit DIE. */
c906108c
SS
57
58EXTERN CORE_ADDR last_source_start_addr;
59
60/* The list of sub-source-files within the current individual
61 compilation. Each file gets its own symtab with its own linetable
62 and associated info, but they all share one blockvector. */
63
64struct subfile
65 {
66 struct subfile *next;
67 char *name;
68 char *dirname;
69 struct linetable *line_vector;
70 int line_vector_length;
71 enum language language;
554d387d
TT
72 const char *producer;
73 const char *debugformat;
cb1df416 74 struct symtab *symtab;
c906108c
SS
75 };
76
c906108c
SS
77EXTERN struct subfile *current_subfile;
78
79/* Global variable which, when set, indicates that we are processing a
80 .o file compiled with gcc */
81
82EXTERN unsigned char processing_gcc_compilation;
83
84/* When set, we are processing a .o file compiled by sun acc. This is
85 misnamed; it refers to all stabs-in-elf implementations which use
86 N_UNDF the way Sun does, including Solaris gcc. Hopefully all
87 stabs-in-elf implementations ever invented will choose to be
88 compatible. */
89
90EXTERN unsigned char processing_acc_compilation;
91
c906108c
SS
92/* Count symbols as they are processed, for error messages. */
93
94EXTERN unsigned int symnum;
95
96/* Record the symbols defined for each context in a list. We don't
97 create a struct block for the context until we know how long to
98 make it. */
99
100#define PENDINGSIZE 100
101
102struct pending
103 {
104 struct pending *next;
105 int nsyms;
106 struct symbol *symbol[PENDINGSIZE];
107 };
108
109/* Here are the three lists that symbols are put on. */
110
111/* static at top level, and types */
112
113EXTERN struct pending *file_symbols;
114
115/* global functions and variables */
116
117EXTERN struct pending *global_symbols;
118
119/* everything local to lexical context */
120
121EXTERN struct pending *local_symbols;
122
27aa8d6a
SW
123/* "using" directives local to lexical context. */
124
125EXTERN struct using_direct *using_directives;
126
c906108c
SS
127/* Stack representing unclosed lexical contexts (that will become
128 blocks, eventually). */
129
130struct context_stack
131 {
132 /* Outer locals at the time we entered */
133
134 struct pending *locals;
135
27aa8d6a
SW
136 /* Pending using directives at the time we entered. */
137
138 struct using_direct *using_directives;
139
c906108c
SS
140 /* Pointer into blocklist as of entry */
141
142 struct pending_block *old_blocks;
143
144 /* Name of function, if any, defining context */
145
146 struct symbol *name;
147
148 /* PC where this context starts */
149
150 CORE_ADDR start_addr;
151
0e2de366 152 /* Temp slot for exception handling. */
c906108c
SS
153
154 CORE_ADDR end_addr;
155
156 /* For error-checking matching push/pop */
157
158 int depth;
159
160 };
161
162EXTERN struct context_stack *context_stack;
163
164/* Index of first unused entry in context stack. */
165
166EXTERN int context_stack_depth;
167
168/* Currently allocated size of context stack. */
169
170EXTERN int context_stack_size;
171
921e78cf
JB
172/* Non-zero if the context stack is empty. */
173#define outermost_context_p() (context_stack_depth == 0)
174
c906108c
SS
175/* Nonzero if within a function (so symbols should be local, if
176 nothing says specifically). */
177
178EXTERN int within_function;
179
c906108c
SS
180\f
181
182struct subfile_stack
183 {
184 struct subfile_stack *next;
185 char *name;
186 };
187
188EXTERN struct subfile_stack *subfile_stack;
189
190#define next_symbol_text(objfile) (*next_symbol_text_func)(objfile)
191
0e2de366 192/* Function to invoke get the next symbol. Return the symbol name. */
c906108c
SS
193
194EXTERN char *(*next_symbol_text_func) (struct objfile *);
195
196/* Vector of types defined so far, indexed by their type numbers.
197 Used for both stabs and coff. (In newer sun systems, dbx uses a
198 pair of numbers in parens, as in "(SUBFILENUM,NUMWITHINSUBFILE)".
199 Then these numbers must be translated through the type_translations
200 hash table to get the index into the type vector.) */
201
202EXTERN struct type **type_vector;
203
204/* Number of elements allocated for type_vector currently. */
205
206EXTERN int type_vector_length;
207
208/* Initial size of type vector. Is realloc'd larger if needed, and
209 realloc'd down to the size actually used, when completed. */
210
211#define INITIAL_TYPE_VECTOR_LENGTH 160
212
213extern void add_symbol_to_list (struct symbol *symbol,
214 struct pending **listhead);
215
216extern struct symbol *find_symbol_in_list (struct pending *list,
217 char *name, int length);
218
801e3a5b
JB
219extern struct block *finish_block (struct symbol *symbol,
220 struct pending **listhead,
221 struct pending_block *old_blocks,
222 CORE_ADDR start, CORE_ADDR end,
223 struct objfile *objfile);
224
225extern void record_block_range (struct block *,
226 CORE_ADDR start, CORE_ADDR end_inclusive);
c906108c 227
bde58177 228extern void really_free_pendings (void *dummy);
c906108c 229
72b9f47f 230extern void start_subfile (const char *name, const char *dirname);
c906108c
SS
231
232extern void patch_subfile_names (struct subfile *subfile, char *name);
233
234extern void push_subfile (void);
235
236extern char *pop_subfile (void);
237
4359dff1
JK
238extern struct block *end_symtab_get_static_block (CORE_ADDR end_addr,
239 struct objfile *objfile,
36586728
TT
240 int expandable,
241 int required);
4359dff1
JK
242
243extern struct symtab *end_symtab_from_static_block (struct block *static_block,
244 struct objfile *objfile,
245 int section,
246 int expandable);
247
c906108c
SS
248extern struct symtab *end_symtab (CORE_ADDR end_addr,
249 struct objfile *objfile, int section);
250
6d30eef8
DE
251extern struct symtab *end_expandable_symtab (CORE_ADDR end_addr,
252 struct objfile *objfile,
253 int section);
254
255extern void augment_type_symtab (struct objfile *objfile,
256 struct symtab *primary_symtab);
257
c906108c
SS
258/* Defined in stabsread.c. */
259
260extern void scan_file_globals (struct objfile *objfile);
261
262extern void buildsym_new_init (void);
263
264extern void buildsym_init (void);
265
266extern struct context_stack *push_context (int desc, CORE_ADDR valu);
267
0c5e171a
KD
268extern struct context_stack *pop_context (void);
269
c906108c
SS
270extern void record_line (struct subfile *subfile, int line, CORE_ADDR pc);
271
272extern void start_symtab (char *name, char *dirname, CORE_ADDR start_addr);
273
6d30eef8
DE
274extern void restart_symtab (CORE_ADDR start_addr);
275
0d5cff50 276extern int hashname (const char *name);
c906108c
SS
277
278extern void free_pending_blocks (void);
279
554d387d
TT
280/* Record the name of the debug format in the current pending symbol
281 table. FORMAT must be a string with a lifetime at least as long as
282 the symtab's objfile. */
283
284extern void record_debugformat (const char *format);
285
286/* Record the name of the debuginfo producer (usually the compiler) in
287 the current pending symbol table. PRODUCER must be a string with a
288 lifetime at least as long as the symtab's objfile. */
c906108c 289
303b6f5d
DJ
290extern void record_producer (const char *producer);
291
c906108c
SS
292extern void merge_symbol_lists (struct pending **srclist,
293 struct pending **targetlist);
294
99d9066e 295/* The macro table for the compilation unit whose symbols we're
0e2de366
MS
296 currently reading. All the symtabs for this CU will point to
297 this. */
99d9066e
JB
298EXTERN struct macro_table *pending_macros;
299
c906108c
SS
300#undef EXTERN
301
302#endif /* defined (BUILDSYM_H) */
This page took 0.78775 seconds and 4 git commands to generate.