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