Move the context stack to buildsym_compunit
[external/binutils.git] / gdb / buildsym.h
1 /* Build symbol tables in GDB's internal format.
2    Copyright (C) 1986-2018 Free Software Foundation, Inc.
3
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
8    the Free Software Foundation; either version 3 of the License, or
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
17    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
18
19 #if !defined (BUILDSYM_H)
20 #define BUILDSYM_H 1
21
22 struct objfile;
23 struct symbol;
24 struct addrmap;
25 struct compunit_symtab;
26 enum language;
27
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
40 struct block;
41 struct pending_block;
42
43 struct dynamic_prop;
44
45 #ifndef EXTERN
46 #define EXTERN extern
47 #endif
48
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
53 struct subfile
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 };
66
67 EXTERN struct subfile *current_subfile;
68
69 /* Record the symbols defined for each context in a list.  We don't
70    create a struct block for the context until we know how long to
71    make it.  */
72
73 #define PENDINGSIZE 100
74
75 struct pending
76   {
77     struct pending *next;
78     int nsyms;
79     struct symbol *symbol[PENDINGSIZE];
80   };
81
82 /* Here are the three lists that symbols are put on.  */
83
84 /* static at top level, and types */
85
86 EXTERN struct pending *file_symbols;
87
88 /* global functions and variables */
89
90 EXTERN struct pending *global_symbols;
91
92 /* everything local to lexical context */
93
94 EXTERN struct pending *local_symbols;
95
96 /* Stack representing unclosed lexical contexts (that will become
97    blocks, eventually).  */
98
99 struct context_stack
100   {
101     /* Outer locals at the time we entered */
102
103     struct pending *locals;
104
105     /* Pending using directives at the time we entered.  */
106
107     struct using_direct *local_using_directives;
108
109     /* Pointer into blocklist as of entry */
110
111     struct pending_block *old_blocks;
112
113     /* Name of function, if any, defining context */
114
115     struct symbol *name;
116
117     /* Expression that computes the frame base of the lexically enclosing
118        function, if any.  NULL otherwise.  */
119
120     struct dynamic_prop *static_link;
121
122     /* PC where this context starts */
123
124     CORE_ADDR start_addr;
125
126     /* Temp slot for exception handling.  */
127
128     CORE_ADDR end_addr;
129
130     /* For error-checking matching push/pop */
131
132     int depth;
133
134   };
135
136 /* The type of the record_line function.  */
137 typedef void (record_line_ftype) (struct subfile *subfile, int line,
138                                   CORE_ADDR pc);
139
140 \f
141
142 extern void add_symbol_to_list (struct symbol *symbol,
143                                 struct pending **listhead);
144
145 extern struct symbol *find_symbol_in_list (struct pending *list,
146                                            char *name, int length);
147
148 extern struct block *finish_block (struct symbol *symbol,
149                                    struct pending **listhead,
150                                    struct pending_block *old_blocks,
151                                    const struct dynamic_prop *static_link,
152                                    CORE_ADDR start,
153                                    CORE_ADDR end);
154
155 extern void record_block_range (struct block *,
156                                 CORE_ADDR start, CORE_ADDR end_inclusive);
157
158 class scoped_free_pendings
159 {
160 public:
161
162   scoped_free_pendings ();
163   ~scoped_free_pendings ();
164
165   DISABLE_COPY_AND_ASSIGN (scoped_free_pendings);
166 };
167
168 extern void start_subfile (const char *name);
169
170 extern void patch_subfile_names (struct subfile *subfile, const char *name);
171
172 extern void push_subfile ();
173
174 extern const char *pop_subfile ();
175
176 extern struct block *end_symtab_get_static_block (CORE_ADDR end_addr,
177                                                   int expandable,
178                                                   int required);
179
180 extern struct compunit_symtab *
181   end_symtab_from_static_block (struct block *static_block,
182                                 int section, int expandable);
183
184 extern struct compunit_symtab *end_symtab (CORE_ADDR end_addr, int section);
185
186 extern struct compunit_symtab *end_expandable_symtab (CORE_ADDR end_addr,
187                                                       int section);
188
189 extern void augment_type_symtab (void);
190
191 extern void buildsym_init ();
192
193 extern struct context_stack *push_context (int desc, CORE_ADDR valu);
194
195 extern struct context_stack pop_context ();
196
197 extern record_line_ftype record_line;
198
199 extern struct compunit_symtab *start_symtab (struct objfile *objfile,
200                                              const char *name,
201                                              const char *comp_dir,
202                                              CORE_ADDR start_addr,
203                                              enum language language);
204
205 extern void restart_symtab (struct compunit_symtab *cust,
206                             const char *name, CORE_ADDR start_addr);
207
208 /* Record the name of the debug format in the current pending symbol
209    table.  FORMAT must be a string with a lifetime at least as long as
210    the symtab's objfile.  */
211
212 extern void record_debugformat (const char *format);
213
214 /* Record the name of the debuginfo producer (usually the compiler) in
215    the current pending symbol table.  PRODUCER must be a string with a
216    lifetime at least as long as the symtab's objfile.  */
217
218 extern void record_producer (const char *producer);
219
220 /* Set the name of the last source file.  NAME is copied by this
221    function.  */
222
223 extern void set_last_source_file (const char *name);
224
225 /* Fetch the name of the last source file.  */
226
227 extern const char *get_last_source_file (void);
228
229 /* Return the compunit symtab object.
230    It is only valid to call this between calls to start_symtab and the
231    end_symtab* functions.  */
232
233 extern struct compunit_symtab *buildsym_compunit_symtab (void);
234
235 /* Return the macro table.
236    Initialize it if this is the first use.
237    It is only valid to call this between calls to start_symtab and the
238    end_symtab* functions.  */
239
240 extern struct macro_table *get_macro_table (void);
241
242 /* Set the last source start address.  Can only be used between
243    start_symtab and end_symtab* calls.  */
244
245 extern void set_last_source_start_addr (CORE_ADDR addr);
246
247 /* Get the last source start address.  Can only be used between
248    start_symtab and end_symtab* calls.  */
249
250 extern CORE_ADDR get_last_source_start_addr ();
251
252 /* Return the local using directives.  */
253
254 extern struct using_direct **get_local_using_directives ();
255
256 /* Set the list of local using directives.  */
257
258 extern void set_local_using_directives (struct using_direct *new_local);
259
260 /* Return the global using directives.  */
261
262 extern struct using_direct **get_global_using_directives ();
263
264 /* True if the context stack is empty.  */
265
266 extern bool outermost_context_p ();
267
268 /* Return the top of the context stack, or nullptr if there is an
269    entry.  */
270
271 extern struct context_stack *get_current_context_stack ();
272
273 /* Return the context stack depth.  */
274
275 extern int get_context_stack_depth ();
276
277 #undef EXTERN
278
279 #endif /* defined (BUILDSYM_H) */