Remove parameter from record_pending_block
[deliverable/binutils-gdb.git] / gdb / buildsym.h
CommitLineData
c906108c 1/* Build symbol tables in GDB's internal format.
e2882c85 2 Copyright (C) 1986-2018 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;
43f3e411 25struct compunit_symtab;
5ffa0793 26enum language;
da3331ec 27
c906108c
SS
28/* This module provides definitions used for creating and adding to
29 the symbol table. These routines are called from various symbol-
30 file-reading routines.
31
32 They originated in dbxread.c of gdb-4.2, and were split out to
b80a981d 33 make xcoffread.c more maintainable by sharing code. */
c906108c 34
fe898f56 35struct block;
93eed41f 36struct pending_block;
fe898f56 37
63e43d3a
PMR
38struct dynamic_prop;
39
c906108c
SS
40/* The list of sub-source-files within the current individual
41 compilation. Each file gets its own symtab with its own linetable
42 and associated info, but they all share one blockvector. */
43
44struct subfile
43f3e411
DE
45{
46 struct subfile *next;
47 /* Space for this is malloc'd. */
48 char *name;
49 /* Space for this is malloc'd. */
50 struct linetable *line_vector;
51 int line_vector_length;
52 /* The "containing" compunit. */
53 struct buildsym_compunit *buildsym_compunit;
54 enum language language;
55 struct symtab *symtab;
56};
c906108c 57
c906108c
SS
58/* Record the symbols defined for each context in a list. We don't
59 create a struct block for the context until we know how long to
60 make it. */
61
62#define PENDINGSIZE 100
63
64struct pending
65 {
66 struct pending *next;
67 int nsyms;
68 struct symbol *symbol[PENDINGSIZE];
69 };
70
c906108c
SS
71/* Stack representing unclosed lexical contexts (that will become
72 blocks, eventually). */
73
74struct context_stack
75 {
76 /* Outer locals at the time we entered */
77
78 struct pending *locals;
79
27aa8d6a
SW
80 /* Pending using directives at the time we entered. */
81
22cee43f 82 struct using_direct *local_using_directives;
27aa8d6a 83
c906108c
SS
84 /* Pointer into blocklist as of entry */
85
86 struct pending_block *old_blocks;
87
88 /* Name of function, if any, defining context */
89
90 struct symbol *name;
91
63e43d3a
PMR
92 /* Expression that computes the frame base of the lexically enclosing
93 function, if any. NULL otherwise. */
94
95 struct dynamic_prop *static_link;
96
c906108c
SS
97 /* PC where this context starts */
98
99 CORE_ADDR start_addr;
100
0e2de366 101 /* Temp slot for exception handling. */
c906108c
SS
102
103 CORE_ADDR end_addr;
104
105 /* For error-checking matching push/pop */
106
107 int depth;
108
109 };
110
252a6764
DE
111/* The type of the record_line function. */
112typedef void (record_line_ftype) (struct subfile *subfile, int line,
113 CORE_ADDR pc);
114
c906108c
SS
115\f
116
c906108c
SS
117extern void add_symbol_to_list (struct symbol *symbol,
118 struct pending **listhead);
119
120extern struct symbol *find_symbol_in_list (struct pending *list,
121 char *name, int length);
122
801e3a5b 123extern struct block *finish_block (struct symbol *symbol,
63e43d3a
PMR
124 struct pending_block *old_blocks,
125 const struct dynamic_prop *static_link,
126 CORE_ADDR start,
127 CORE_ADDR end);
801e3a5b
JB
128
129extern void record_block_range (struct block *,
130 CORE_ADDR start, CORE_ADDR end_inclusive);
c906108c 131
33c7c59d
TT
132class scoped_free_pendings
133{
134public:
135
5ac04550 136 scoped_free_pendings () = default;
33c7c59d
TT
137 ~scoped_free_pendings ();
138
139 DISABLE_COPY_AND_ASSIGN (scoped_free_pendings);
140};
c906108c 141
4d663531 142extern void start_subfile (const char *name);
c906108c 143
a121b7c1 144extern void patch_subfile_names (struct subfile *subfile, const char *name);
c906108c 145
8419ee53 146extern void push_subfile ();
c906108c 147
8419ee53 148extern const char *pop_subfile ();
c906108c 149
4359dff1 150extern struct block *end_symtab_get_static_block (CORE_ADDR end_addr,
36586728
TT
151 int expandable,
152 int required);
4359dff1 153
43f3e411
DE
154extern struct compunit_symtab *
155 end_symtab_from_static_block (struct block *static_block,
156 int section, int expandable);
4359dff1 157
43f3e411 158extern struct compunit_symtab *end_symtab (CORE_ADDR end_addr, int section);
c906108c 159
43f3e411
DE
160extern struct compunit_symtab *end_expandable_symtab (CORE_ADDR end_addr,
161 int section);
6d30eef8 162
0ab9ce85 163extern void augment_type_symtab (void);
6d30eef8 164
c906108c
SS
165extern struct context_stack *push_context (int desc, CORE_ADDR valu);
166
a60f3166 167extern struct context_stack pop_context ();
0c5e171a 168
252a6764 169extern record_line_ftype record_line;
c906108c 170
43f3e411
DE
171extern struct compunit_symtab *start_symtab (struct objfile *objfile,
172 const char *name,
173 const char *comp_dir,
5ffa0793
PA
174 CORE_ADDR start_addr,
175 enum language language);
c906108c 176
0ab9ce85
DE
177extern void restart_symtab (struct compunit_symtab *cust,
178 const char *name, CORE_ADDR start_addr);
6d30eef8 179
554d387d
TT
180/* Record the name of the debug format in the current pending symbol
181 table. FORMAT must be a string with a lifetime at least as long as
182 the symtab's objfile. */
183
184extern void record_debugformat (const char *format);
185
186/* Record the name of the debuginfo producer (usually the compiler) in
187 the current pending symbol table. PRODUCER must be a string with a
188 lifetime at least as long as the symtab's objfile. */
c906108c 189
303b6f5d
DJ
190extern void record_producer (const char *producer);
191
46212e0b
TT
192/* Set the name of the last source file. NAME is copied by this
193 function. */
194
195extern void set_last_source_file (const char *name);
196
197/* Fetch the name of the last source file. */
198
199extern const char *get_last_source_file (void);
200
43f3e411
DE
201/* Return the compunit symtab object.
202 It is only valid to call this between calls to start_symtab and the
203 end_symtab* functions. */
204
205extern struct compunit_symtab *buildsym_compunit_symtab (void);
206
207/* Return the macro table.
208 Initialize it if this is the first use.
209 It is only valid to call this between calls to start_symtab and the
210 end_symtab* functions. */
fc474241 211
43f3e411 212extern struct macro_table *get_macro_table (void);
99d9066e 213
2c99ee5c
TT
214/* Set the last source start address. Can only be used between
215 start_symtab and end_symtab* calls. */
216
217extern void set_last_source_start_addr (CORE_ADDR addr);
218
219/* Get the last source start address. Can only be used between
220 start_symtab and end_symtab* calls. */
221
222extern CORE_ADDR get_last_source_start_addr ();
223
6cccc9a8
TT
224/* Return the local using directives. */
225
226extern struct using_direct **get_local_using_directives ();
227
228/* Set the list of local using directives. */
229
230extern void set_local_using_directives (struct using_direct *new_local);
231
232/* Return the global using directives. */
233
234extern struct using_direct **get_global_using_directives ();
235
a60f3166
TT
236/* True if the context stack is empty. */
237
238extern bool outermost_context_p ();
239
240/* Return the top of the context stack, or nullptr if there is an
241 entry. */
242
243extern struct context_stack *get_current_context_stack ();
244
245/* Return the context stack depth. */
246
247extern int get_context_stack_depth ();
248
3c65e5b3
TT
249/* Return the current subfile. */
250
251extern struct subfile *get_current_subfile ();
252
e148f09d
TT
253/* Return the local symbol list. */
254
255extern struct pending **get_local_symbols ();
256
257/* Return the file symbol list. */
258
259extern struct pending **get_file_symbols ();
260
261/* Return the global symbol list. */
262
263extern struct pending **get_global_symbols ();
264
c906108c 265#endif /* defined (BUILDSYM_H) */
This page took 3.888245 seconds and 4 git commands to generate.