Remove unused variables in ia64*tdep.c
[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
67EXTERN struct subfile *current_subfile;
68
c906108c
SS
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
75struct 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
86EXTERN struct pending *file_symbols;
87
88/* global functions and variables */
89
90EXTERN struct pending *global_symbols;
91
92/* everything local to lexical context */
93
94EXTERN struct pending *local_symbols;
95
c906108c
SS
96/* Stack representing unclosed lexical contexts (that will become
97 blocks, eventually). */
98
99struct context_stack
100 {
101 /* Outer locals at the time we entered */
102
103 struct pending *locals;
104
27aa8d6a
SW
105 /* Pending using directives at the time we entered. */
106
22cee43f 107 struct using_direct *local_using_directives;
27aa8d6a 108
c906108c
SS
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
63e43d3a
PMR
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
c906108c
SS
122 /* PC where this context starts */
123
124 CORE_ADDR start_addr;
125
0e2de366 126 /* Temp slot for exception handling. */
c906108c
SS
127
128 CORE_ADDR end_addr;
129
130 /* For error-checking matching push/pop */
131
132 int depth;
133
134 };
135
136EXTERN struct context_stack *context_stack;
137
138/* Index of first unused entry in context stack. */
139
140EXTERN int context_stack_depth;
141
921e78cf
JB
142/* Non-zero if the context stack is empty. */
143#define outermost_context_p() (context_stack_depth == 0)
144
252a6764
DE
145/* The type of the record_line function. */
146typedef void (record_line_ftype) (struct subfile *subfile, int line,
147 CORE_ADDR pc);
148
c906108c
SS
149\f
150
c906108c
SS
151extern void add_symbol_to_list (struct symbol *symbol,
152 struct pending **listhead);
153
154extern struct symbol *find_symbol_in_list (struct pending *list,
155 char *name, int length);
156
801e3a5b 157extern struct block *finish_block (struct symbol *symbol,
63e43d3a
PMR
158 struct pending **listhead,
159 struct pending_block *old_blocks,
160 const struct dynamic_prop *static_link,
161 CORE_ADDR start,
162 CORE_ADDR end);
801e3a5b
JB
163
164extern void record_block_range (struct block *,
165 CORE_ADDR start, CORE_ADDR end_inclusive);
c906108c 166
33c7c59d
TT
167class scoped_free_pendings
168{
169public:
170
652788a7 171 scoped_free_pendings ();
33c7c59d
TT
172 ~scoped_free_pendings ();
173
174 DISABLE_COPY_AND_ASSIGN (scoped_free_pendings);
175};
c906108c 176
4d663531 177extern void start_subfile (const char *name);
c906108c 178
a121b7c1 179extern void patch_subfile_names (struct subfile *subfile, const char *name);
c906108c 180
8419ee53 181extern void push_subfile ();
c906108c 182
8419ee53 183extern const char *pop_subfile ();
c906108c 184
4359dff1 185extern struct block *end_symtab_get_static_block (CORE_ADDR end_addr,
36586728
TT
186 int expandable,
187 int required);
4359dff1 188
43f3e411
DE
189extern struct compunit_symtab *
190 end_symtab_from_static_block (struct block *static_block,
191 int section, int expandable);
4359dff1 192
43f3e411 193extern struct compunit_symtab *end_symtab (CORE_ADDR end_addr, int section);
c906108c 194
43f3e411
DE
195extern struct compunit_symtab *end_expandable_symtab (CORE_ADDR end_addr,
196 int section);
6d30eef8 197
0ab9ce85 198extern void augment_type_symtab (void);
6d30eef8 199
2c722d18 200extern void buildsym_init ();
c906108c
SS
201
202extern struct context_stack *push_context (int desc, CORE_ADDR valu);
203
0c5e171a
KD
204extern struct context_stack *pop_context (void);
205
252a6764 206extern record_line_ftype record_line;
c906108c 207
43f3e411
DE
208extern struct compunit_symtab *start_symtab (struct objfile *objfile,
209 const char *name,
210 const char *comp_dir,
5ffa0793
PA
211 CORE_ADDR start_addr,
212 enum language language);
c906108c 213
0ab9ce85
DE
214extern void restart_symtab (struct compunit_symtab *cust,
215 const char *name, CORE_ADDR start_addr);
6d30eef8 216
554d387d
TT
217/* Record the name of the debug format in the current pending symbol
218 table. FORMAT must be a string with a lifetime at least as long as
219 the symtab's objfile. */
220
221extern void record_debugformat (const char *format);
222
223/* Record the name of the debuginfo producer (usually the compiler) in
224 the current pending symbol table. PRODUCER must be a string with a
225 lifetime at least as long as the symtab's objfile. */
c906108c 226
303b6f5d
DJ
227extern void record_producer (const char *producer);
228
46212e0b
TT
229/* Set the name of the last source file. NAME is copied by this
230 function. */
231
232extern void set_last_source_file (const char *name);
233
234/* Fetch the name of the last source file. */
235
236extern const char *get_last_source_file (void);
237
43f3e411
DE
238/* Return the compunit symtab object.
239 It is only valid to call this between calls to start_symtab and the
240 end_symtab* functions. */
241
242extern struct compunit_symtab *buildsym_compunit_symtab (void);
243
244/* Return the macro table.
245 Initialize it if this is the first use.
246 It is only valid to call this between calls to start_symtab and the
247 end_symtab* functions. */
fc474241 248
43f3e411 249extern struct macro_table *get_macro_table (void);
99d9066e 250
2c99ee5c
TT
251/* Set the last source start address. Can only be used between
252 start_symtab and end_symtab* calls. */
253
254extern void set_last_source_start_addr (CORE_ADDR addr);
255
256/* Get the last source start address. Can only be used between
257 start_symtab and end_symtab* calls. */
258
259extern CORE_ADDR get_last_source_start_addr ();
260
6cccc9a8
TT
261/* Return the local using directives. */
262
263extern struct using_direct **get_local_using_directives ();
264
265/* Set the list of local using directives. */
266
267extern void set_local_using_directives (struct using_direct *new_local);
268
269/* Return the global using directives. */
270
271extern struct using_direct **get_global_using_directives ();
272
c906108c
SS
273#undef EXTERN
274
275#endif /* defined (BUILDSYM_H) */
This page took 4.380888 seconds and 4 git commands to generate.