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