]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/symtab.h
GDB copyright headers update after running GDB's copyright.py script.
[thirdparty/binutils-gdb.git] / gdb / symtab.h
CommitLineData
c906108c 1/* Symbol table definitions for GDB.
1bac305b 2
618f726f 3 Copyright (C) 1986-2016 Free Software Foundation, Inc.
c906108c 4
c5aa993b 5 This file is part of GDB.
c906108c 6
c5aa993b
JM
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
a9762ec7 9 the Free Software Foundation; either version 3 of the License, or
c5aa993b 10 (at your option) any later version.
c906108c 11
c5aa993b
JM
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.
c906108c 16
c5aa993b 17 You should have received a copy of the GNU General Public License
a9762ec7 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
19
20#if !defined (SYMTAB_H)
21#define SYMTAB_H 1
22
f8eba3c6 23#include "vec.h"
49c4e619 24#include "gdb_vecs.h"
2f68a895 25#include "gdbtypes.h"
8d297bbf 26#include "common/enum-flags.h"
f8eba3c6 27
5f8a3188 28/* Opaque declarations. */
da3331ec
AC
29struct ui_file;
30struct frame_info;
31struct symbol;
5f8a3188 32struct obstack;
6a2f5abf 33struct objfile;
fe898f56
DC
34struct block;
35struct blockvector;
4c2df51b
DJ
36struct axs_value;
37struct agent_expr;
6c95b8df 38struct program_space;
66a17cb6 39struct language_defn;
55aa24fb 40struct probe;
4357ac6c 41struct common_block;
06096720
AB
42struct obj_section;
43struct cmd_list_element;
c906108c 44
a7f19c79
MC
45/* Some of the structures in this file are space critical.
46 The space-critical structures are:
47
48 struct general_symbol_info
49 struct symbol
50 struct partial_symbol
51
5bccb4d1 52 These structures are laid out to encourage good packing.
a7f19c79
MC
53 They use ENUM_BITFIELD and short int fields, and they order the
54 structure members so that fields less than a word are next
c378eb4e 55 to each other so they can be packed together. */
a7f19c79
MC
56
57/* Rearranged: used ENUM_BITFIELD and rearranged field order in
58 all the space critical structures (plus struct minimal_symbol).
59 Memory usage dropped from 99360768 bytes to 90001408 bytes.
60 I measured this with before-and-after tests of
61 "HEAD-old-gdb -readnow HEAD-old-gdb" and
62 "HEAD-new-gdb -readnow HEAD-old-gdb" on native i686-pc-linux-gnu,
63 red hat linux 8, with LD_LIBRARY_PATH=/usr/lib/debug,
64 typing "maint space 1" at the first command prompt.
65
66 Here is another measurement (from andrew c):
67 # no /usr/lib/debug, just plain glibc, like a normal user
68 gdb HEAD-old-gdb
69 (gdb) break internal_error
70 (gdb) run
71 (gdb) maint internal-error
72 (gdb) backtrace
73 (gdb) maint space 1
74
75 gdb gdb_6_0_branch 2003-08-19 space used: 8896512
76 gdb HEAD 2003-08-19 space used: 8904704
77 gdb HEAD 2003-08-21 space used: 8396800 (+symtab.h)
78 gdb HEAD 2003-08-21 space used: 8265728 (+gdbtypes.h)
79
80 The third line shows the savings from the optimizations in symtab.h.
81 The fourth line shows the savings from the optimizations in
82 gdbtypes.h. Both optimizations are in gdb HEAD now.
83
84 --chastain 2003-08-21 */
85
c906108c
SS
86/* Define a structure for the information that is common to all symbol types,
87 including minimal symbols, partial symbols, and full symbols. In a
88 multilanguage environment, some language specific information may need to
c378eb4e 89 be recorded along with each symbol. */
c906108c 90
c378eb4e 91/* This structure is space critical. See space comments at the top. */
c906108c
SS
92
93struct general_symbol_info
17c5ed2c 94{
22abf04a 95 /* Name of the symbol. This is a required field. Storage for the
4a146b47
EZ
96 name is allocated on the objfile_obstack for the associated
97 objfile. For languages like C++ that make a distinction between
98 the mangled name and demangled name, this is the mangled
99 name. */
c906108c 100
0d5cff50 101 const char *name;
c906108c 102
17c5ed2c
DC
103 /* Value of the symbol. Which member of this union to use, and what
104 it means, depends on what kind of symbol this is and its
105 SYMBOL_CLASS. See comments there for more details. All of these
106 are in host byte order (though what they point to might be in
107 target byte order, e.g. LOC_CONST_BYTES). */
c906108c 108
17c5ed2c
DC
109 union
110 {
12df843f 111 LONGEST ivalue;
c906108c 112
3977b71f 113 const struct block *block;
c906108c 114
d47a1bc1 115 const gdb_byte *bytes;
c906108c 116
17c5ed2c 117 CORE_ADDR address;
c906108c 118
5a352474 119 /* A common block. Used with LOC_COMMON_BLOCK. */
4357ac6c 120
17a40b44 121 const struct common_block *common_block;
4357ac6c 122
c378eb4e 123 /* For opaque typedef struct chain. */
c906108c 124
17c5ed2c
DC
125 struct symbol *chain;
126 }
127 value;
c906108c 128
17c5ed2c 129 /* Since one and only one language can apply, wrap the language specific
29df156d 130 information inside a union. */
c906108c 131
17c5ed2c
DC
132 union
133 {
f85f34ed
TT
134 /* A pointer to an obstack that can be used for storage associated
135 with this symbol. This is only used by Ada, and only when the
136 'ada_mangled' field is zero. */
137 struct obstack *obstack;
138
afa16725 139 /* This is used by languages which wish to store a demangled name.
7c5fdd25 140 currently used by Ada, C++, Java, and Objective C. */
615b3f62 141 const char *demangled_name;
17c5ed2c
DC
142 }
143 language_specific;
c5aa993b 144
17c5ed2c
DC
145 /* Record the source code language that applies to this symbol.
146 This is used to select one of the fields from the language specific
c378eb4e 147 union above. */
c5aa993b 148
51cdc993 149 ENUM_BITFIELD(language) language : LANGUAGE_BITS;
c5aa993b 150
a04a15f5 151 /* This is only used by Ada. If set, then the 'demangled_name' field
f85f34ed
TT
152 of language_specific is valid. Otherwise, the 'obstack' field is
153 valid. */
154 unsigned int ada_mangled : 1;
155
17c5ed2c
DC
156 /* Which section is this symbol in? This is an index into
157 section_offsets for this objfile. Negative means that the symbol
e27d198c 158 does not get relocated relative to a section. */
c5aa993b 159
17c5ed2c 160 short section;
17c5ed2c 161};
c906108c 162
cfc594ee
TT
163extern void symbol_set_demangled_name (struct general_symbol_info *,
164 const char *,
ccde22c0 165 struct obstack *);
b250c185 166
0d5cff50
DE
167extern const char *symbol_get_demangled_name
168 (const struct general_symbol_info *);
b250c185 169
714835d5 170extern CORE_ADDR symbol_overlayed_address (CORE_ADDR, struct obj_section *);
c906108c 171
88cda038 172/* Note that all the following SYMBOL_* macros are used with the
efd66ac6
TT
173 SYMBOL argument being either a partial symbol or
174 a full symbol. Both types have a ginfo field. In particular
33e5013e 175 the SYMBOL_SET_LANGUAGE, SYMBOL_DEMANGLED_NAME, etc.
d6350901 176 macros cannot be entirely substituted by
88cda038
EZ
177 functions, unless the callers are changed to pass in the ginfo
178 field only, instead of the SYMBOL parameter. */
179
c906108c
SS
180#define SYMBOL_VALUE(symbol) (symbol)->ginfo.value.ivalue
181#define SYMBOL_VALUE_ADDRESS(symbol) (symbol)->ginfo.value.address
182#define SYMBOL_VALUE_BYTES(symbol) (symbol)->ginfo.value.bytes
4357ac6c 183#define SYMBOL_VALUE_COMMON_BLOCK(symbol) (symbol)->ginfo.value.common_block
c906108c
SS
184#define SYMBOL_BLOCK_VALUE(symbol) (symbol)->ginfo.value.block
185#define SYMBOL_VALUE_CHAIN(symbol) (symbol)->ginfo.value.chain
186#define SYMBOL_LANGUAGE(symbol) (symbol)->ginfo.language
187#define SYMBOL_SECTION(symbol) (symbol)->ginfo.section
e27d198c
TT
188#define SYMBOL_OBJ_SECTION(objfile, symbol) \
189 (((symbol)->ginfo.section >= 0) \
190 ? (&(((objfile)->sections)[(symbol)->ginfo.section])) \
191 : NULL)
c906108c 192
89aad1f9 193/* Initializes the language dependent portion of a symbol
c378eb4e 194 depending upon the language for the symbol. */
f85f34ed
TT
195#define SYMBOL_SET_LANGUAGE(symbol,language,obstack) \
196 (symbol_set_language (&(symbol)->ginfo, (language), (obstack)))
33e5013e 197extern void symbol_set_language (struct general_symbol_info *symbol,
f85f34ed
TT
198 enum language language,
199 struct obstack *obstack);
c906108c 200
3567439c
DJ
201/* Set just the linkage name of a symbol; do not try to demangle
202 it. Used for constructs which do not have a mangled name,
203 e.g. struct tags. Unlike SYMBOL_SET_NAMES, linkage_name must
1c9e8358
TT
204 be terminated and either already on the objfile's obstack or
205 permanently allocated. */
3567439c
DJ
206#define SYMBOL_SET_LINKAGE_NAME(symbol,linkage_name) \
207 (symbol)->ginfo.name = (linkage_name)
208
209/* Set the linkage and natural names of a symbol, by demangling
210 the linkage name. */
04a679b8
TT
211#define SYMBOL_SET_NAMES(symbol,linkage_name,len,copy_name,objfile) \
212 symbol_set_names (&(symbol)->ginfo, linkage_name, len, copy_name, objfile)
2de7ced7 213extern void symbol_set_names (struct general_symbol_info *symbol,
04a679b8 214 const char *linkage_name, int len, int copy_name,
2de7ced7
DJ
215 struct objfile *objfile);
216
22abf04a
DC
217/* Now come lots of name accessor macros. Short version as to when to
218 use which: Use SYMBOL_NATURAL_NAME to refer to the name of the
219 symbol in the original source code. Use SYMBOL_LINKAGE_NAME if you
220 want to know what the linker thinks the symbol's name is. Use
221 SYMBOL_PRINT_NAME for output. Use SYMBOL_DEMANGLED_NAME if you
222 specifically need to know whether SYMBOL_NATURAL_NAME and
3567439c 223 SYMBOL_LINKAGE_NAME are different. */
22abf04a
DC
224
225/* Return SYMBOL's "natural" name, i.e. the name that it was called in
226 the original source code. In languages like C++ where symbols may
227 be mangled for ease of manipulation by the linker, this is the
228 demangled name. */
229
230#define SYMBOL_NATURAL_NAME(symbol) \
231 (symbol_natural_name (&(symbol)->ginfo))
0d5cff50
DE
232extern const char *symbol_natural_name
233 (const struct general_symbol_info *symbol);
22abf04a
DC
234
235/* Return SYMBOL's name from the point of view of the linker. In
236 languages like C++ where symbols may be mangled for ease of
237 manipulation by the linker, this is the mangled name; otherwise,
3567439c 238 it's the same as SYMBOL_NATURAL_NAME. */
22abf04a
DC
239
240#define SYMBOL_LINKAGE_NAME(symbol) (symbol)->ginfo.name
241
9cc0d196 242/* Return the demangled name for a symbol based on the language for
c378eb4e 243 that symbol. If no demangled name exists, return NULL. */
9cc0d196
EZ
244#define SYMBOL_DEMANGLED_NAME(symbol) \
245 (symbol_demangled_name (&(symbol)->ginfo))
0d5cff50
DE
246extern const char *symbol_demangled_name
247 (const struct general_symbol_info *symbol);
c906108c 248
de5ad195
DC
249/* Macro that returns a version of the name of a symbol that is
250 suitable for output. In C++ this is the "demangled" form of the
251 name if demangle is on and the "mangled" form of the name if
252 demangle is off. In other languages this is just the symbol name.
253 The result should never be NULL. Don't use this for internal
50f182aa
DE
254 purposes (e.g. storing in a hashtable): it's only suitable for output.
255
256 N.B. symbol may be anything with a ginfo member,
257 e.g., struct symbol or struct minimal_symbol. */
de5ad195
DC
258
259#define SYMBOL_PRINT_NAME(symbol) \
22abf04a 260 (demangle ? SYMBOL_NATURAL_NAME (symbol) : SYMBOL_LINKAGE_NAME (symbol))
50f182aa 261extern int demangle;
c906108c 262
c378eb4e 263/* Macro that returns the name to be used when sorting and searching symbols.
91101fe5 264 In C++ and Java, we search for the demangled form of a name,
4725b721
PH
265 and so sort symbols accordingly. In Ada, however, we search by mangled
266 name. If there is no distinct demangled name, then SYMBOL_SEARCH_NAME
c378eb4e 267 returns the same value (same pointer) as SYMBOL_LINKAGE_NAME. */
4725b721
PH
268#define SYMBOL_SEARCH_NAME(symbol) \
269 (symbol_search_name (&(symbol)->ginfo))
0d5cff50 270extern const char *symbol_search_name (const struct general_symbol_info *);
4725b721 271
e9111bf7
DE
272/* Return non-zero if NAME matches the "search" name of SYMBOL.
273 Whitespace and trailing parentheses are ignored.
274 See strcmp_iw for details about its behavior. */
4725b721
PH
275#define SYMBOL_MATCHES_SEARCH_NAME(symbol, name) \
276 (strcmp_iw (SYMBOL_SEARCH_NAME (symbol), (name)) == 0)
277
87193939
MC
278/* Classification types for a minimal symbol. These should be taken as
279 "advisory only", since if gdb can't easily figure out a
280 classification it simply selects mst_unknown. It may also have to
281 guess when it can't figure out which is a better match between two
282 types (mst_data versus mst_bss) for example. Since the minimal
283 symbol info is sometimes derived from the BFD library's view of a
c378eb4e 284 file, we need to live with what information bfd supplies. */
87193939
MC
285
286enum minimal_symbol_type
287{
288 mst_unknown = 0, /* Unknown type, the default */
289 mst_text, /* Generally executable instructions */
0875794a
JK
290 mst_text_gnu_ifunc, /* Executable code returning address
291 of executable code */
292 mst_slot_got_plt, /* GOT entries for .plt sections */
87193939
MC
293 mst_data, /* Generally initialized data */
294 mst_bss, /* Generally uninitialized data */
295 mst_abs, /* Generally absolute (nonrelocatable) */
296 /* GDB uses mst_solib_trampoline for the start address of a shared
297 library trampoline entry. Breakpoints for shared library functions
298 are put there if the shared library is not yet loaded.
299 After the shared library is loaded, lookup_minimal_symbol will
300 prefer the minimal symbol from the shared library (usually
301 a mst_text symbol) over the mst_solib_trampoline symbol, and the
302 breakpoints will be moved to their true address in the shared
303 library via breakpoint_re_set. */
304 mst_solib_trampoline, /* Shared library trampoline code */
305 /* For the mst_file* types, the names are only guaranteed to be unique
306 within a given .o file. */
307 mst_file_text, /* Static version of mst_text */
308 mst_file_data, /* Static version of mst_data */
51cdc993
DE
309 mst_file_bss, /* Static version of mst_bss */
310 nr_minsym_types
87193939
MC
311};
312
51cdc993
DE
313/* The number of enum minimal_symbol_type values, with some padding for
314 reasonable growth. */
315#define MINSYM_TYPE_BITS 4
316gdb_static_assert (nr_minsym_types <= (1 << MINSYM_TYPE_BITS));
317
c906108c
SS
318/* Define a simple structure used to hold some very basic information about
319 all defined global symbols (text, data, bss, abs, etc). The only required
320 information is the general_symbol_info.
321
322 In many cases, even if a file was compiled with no special options for
323 debugging at all, as long as was not stripped it will contain sufficient
324 information to build a useful minimal symbol table using this structure.
325 Even when a file contains enough debugging information to build a full
326 symbol table, these minimal symbols are still useful for quickly mapping
327 between names and addresses, and vice versa. They are also sometimes
c378eb4e 328 used to figure out what full symbol table entries need to be read in. */
c906108c
SS
329
330struct minimal_symbol
17c5ed2c 331{
c906108c 332
17c5ed2c 333 /* The general symbol info required for all types of symbols.
c906108c 334
17c5ed2c
DC
335 The SYMBOL_VALUE_ADDRESS contains the address that this symbol
336 corresponds to. */
c906108c 337
efd66ac6 338 struct general_symbol_info mginfo;
c906108c 339
8763cede 340 /* Size of this symbol. dbx_end_psymtab in dbxread.c uses this
f594e5e9
MC
341 information to calculate the end of the partial symtab based on the
342 address of the last symbol plus the size of the last symbol. */
343
344 unsigned long size;
345
17c5ed2c 346 /* Which source file is this symbol in? Only relevant for mst_file_*. */
04aba065 347 const char *filename;
c906108c 348
87193939 349 /* Classification type for this minimal symbol. */
17c5ed2c 350
51cdc993 351 ENUM_BITFIELD(minimal_symbol_type) type : MINSYM_TYPE_BITS;
17c5ed2c 352
422d65e7
DE
353 /* Non-zero if this symbol was created by gdb.
354 Such symbols do not appear in the output of "info var|fun". */
355 unsigned int created_by_gdb : 1;
356
b887350f
TT
357 /* Two flag bits provided for the use of the target. */
358 unsigned int target_flag_1 : 1;
359 unsigned int target_flag_2 : 1;
360
d9eaeb59
JB
361 /* Nonzero iff the size of the minimal symbol has been set.
362 Symbol size information can sometimes not be determined, because
363 the object file format may not carry that piece of information. */
364 unsigned int has_size : 1;
365
17c5ed2c
DC
366 /* Minimal symbols with the same hash key are kept on a linked
367 list. This is the link. */
368
369 struct minimal_symbol *hash_next;
370
371 /* Minimal symbols are stored in two different hash tables. This is
372 the `next' pointer for the demangled hash table. */
373
374 struct minimal_symbol *demangled_hash_next;
375};
c906108c 376
b887350f
TT
377#define MSYMBOL_TARGET_FLAG_1(msymbol) (msymbol)->target_flag_1
378#define MSYMBOL_TARGET_FLAG_2(msymbol) (msymbol)->target_flag_2
d9eaeb59
JB
379#define MSYMBOL_SIZE(msymbol) ((msymbol)->size + 0)
380#define SET_MSYMBOL_SIZE(msymbol, sz) \
381 do \
382 { \
383 (msymbol)->size = sz; \
384 (msymbol)->has_size = 1; \
385 } while (0)
386#define MSYMBOL_HAS_SIZE(msymbol) ((msymbol)->has_size + 0)
c906108c 387#define MSYMBOL_TYPE(msymbol) (msymbol)->type
c906108c 388
efd66ac6 389#define MSYMBOL_VALUE(symbol) (symbol)->mginfo.value.ivalue
77e371c0
TT
390/* The unrelocated address of the minimal symbol. */
391#define MSYMBOL_VALUE_RAW_ADDRESS(symbol) ((symbol)->mginfo.value.address + 0)
2273f0ac
TT
392/* The relocated address of the minimal symbol, using the section
393 offsets from OBJFILE. */
77e371c0
TT
394#define MSYMBOL_VALUE_ADDRESS(objfile, symbol) \
395 ((symbol)->mginfo.value.address \
2273f0ac 396 + ANOFFSET ((objfile)->section_offsets, ((symbol)->mginfo.section)))
77e371c0
TT
397/* For a bound minsym, we can easily compute the address directly. */
398#define BMSYMBOL_VALUE_ADDRESS(symbol) \
399 MSYMBOL_VALUE_ADDRESS ((symbol).objfile, (symbol).minsym)
400#define SET_MSYMBOL_VALUE_ADDRESS(symbol, new_value) \
40c1a007 401 ((symbol)->mginfo.value.address = (new_value))
efd66ac6
TT
402#define MSYMBOL_VALUE_BYTES(symbol) (symbol)->mginfo.value.bytes
403#define MSYMBOL_BLOCK_VALUE(symbol) (symbol)->mginfo.value.block
404#define MSYMBOL_VALUE_CHAIN(symbol) (symbol)->mginfo.value.chain
405#define MSYMBOL_LANGUAGE(symbol) (symbol)->mginfo.language
406#define MSYMBOL_SECTION(symbol) (symbol)->mginfo.section
407#define MSYMBOL_OBJ_SECTION(objfile, symbol) \
408 (((symbol)->mginfo.section >= 0) \
409 ? (&(((objfile)->sections)[(symbol)->mginfo.section])) \
410 : NULL)
411
412#define MSYMBOL_NATURAL_NAME(symbol) \
413 (symbol_natural_name (&(symbol)->mginfo))
414#define MSYMBOL_LINKAGE_NAME(symbol) (symbol)->mginfo.name
415#define MSYMBOL_PRINT_NAME(symbol) \
416 (demangle ? MSYMBOL_NATURAL_NAME (symbol) : MSYMBOL_LINKAGE_NAME (symbol))
417#define MSYMBOL_DEMANGLED_NAME(symbol) \
418 (symbol_demangled_name (&(symbol)->mginfo))
419#define MSYMBOL_SET_LANGUAGE(symbol,language,obstack) \
420 (symbol_set_language (&(symbol)->mginfo, (language), (obstack)))
421#define MSYMBOL_SEARCH_NAME(symbol) \
422 (symbol_search_name (&(symbol)->mginfo))
423#define MSYMBOL_MATCHES_SEARCH_NAME(symbol, name) \
424 (strcmp_iw (MSYMBOL_SEARCH_NAME (symbol), (name)) == 0)
425#define MSYMBOL_SET_NAMES(symbol,linkage_name,len,copy_name,objfile) \
426 symbol_set_names (&(symbol)->mginfo, linkage_name, len, copy_name, objfile)
427
c35384fb
TT
428#include "minsyms.h"
429
c906108c 430\f
c5aa993b 431
c906108c
SS
432/* Represent one symbol name; a variable, constant, function or typedef. */
433
176620f1 434/* Different name domains for symbols. Looking up a symbol specifies a
c378eb4e 435 domain and ignores symbol definitions in other name domains. */
c906108c 436
87193939 437typedef enum domain_enum_tag
17c5ed2c 438{
176620f1 439 /* UNDEF_DOMAIN is used when a domain has not been discovered or
17c5ed2c 440 none of the following apply. This usually indicates an error either
c378eb4e 441 in the symbol information or in gdb's handling of symbols. */
c906108c 442
176620f1 443 UNDEF_DOMAIN,
c906108c 444
176620f1 445 /* VAR_DOMAIN is the usual domain. In C, this contains variables,
c378eb4e 446 function names, typedef names and enum type values. */
c906108c 447
176620f1 448 VAR_DOMAIN,
c906108c 449
176620f1 450 /* STRUCT_DOMAIN is used in C to hold struct, union and enum type names.
17c5ed2c 451 Thus, if `struct foo' is used in a C program, it produces a symbol named
c378eb4e 452 `foo' in the STRUCT_DOMAIN. */
c906108c 453
176620f1 454 STRUCT_DOMAIN,
c906108c 455
530e8392
KB
456 /* MODULE_DOMAIN is used in Fortran to hold module type names. */
457
458 MODULE_DOMAIN,
459
0f5238ed 460 /* LABEL_DOMAIN may be used for names of labels (for gotos). */
c906108c 461
4357ac6c
TT
462 LABEL_DOMAIN,
463
5a352474
JK
464 /* Fortran common blocks. Their naming must be separate from VAR_DOMAIN.
465 They also always use LOC_COMMON_BLOCK. */
51cdc993
DE
466 COMMON_BLOCK_DOMAIN,
467
468 /* This must remain last. */
469 NR_DOMAINS
8903c50d 470} domain_enum;
c906108c 471
c01feb36
DE
472/* The number of bits in a symbol used to represent the domain. */
473
51cdc993
DE
474#define SYMBOL_DOMAIN_BITS 3
475gdb_static_assert (NR_DOMAINS <= (1 << SYMBOL_DOMAIN_BITS));
c01feb36 476
20c681d1
DE
477extern const char *domain_name (domain_enum);
478
e8930875
JK
479/* Searching domains, used for `search_symbols'. Element numbers are
480 hardcoded in GDB, check all enum uses before changing it. */
c906108c 481
8903c50d
TT
482enum search_domain
483{
bd2e94ce
TT
484 /* Everything in VAR_DOMAIN minus FUNCTIONS_DOMAIN and
485 TYPES_DOMAIN. */
e8930875 486 VARIABLES_DOMAIN = 0,
c906108c 487
c378eb4e 488 /* All functions -- for some reason not methods, though. */
e8930875 489 FUNCTIONS_DOMAIN = 1,
c906108c 490
17c5ed2c 491 /* All defined types */
e8930875 492 TYPES_DOMAIN = 2,
7b08b9eb
JK
493
494 /* Any type. */
495 ALL_DOMAIN = 3
8903c50d 496};
c906108c 497
20c681d1
DE
498extern const char *search_domain_name (enum search_domain);
499
c906108c
SS
500/* An address-class says where to find the value of a symbol. */
501
502enum address_class
17c5ed2c 503{
c378eb4e 504 /* Not used; catches errors. */
c5aa993b 505
17c5ed2c 506 LOC_UNDEF,
c906108c 507
c378eb4e 508 /* Value is constant int SYMBOL_VALUE, host byteorder. */
c906108c 509
17c5ed2c 510 LOC_CONST,
c906108c 511
c378eb4e 512 /* Value is at fixed address SYMBOL_VALUE_ADDRESS. */
c906108c 513
17c5ed2c 514 LOC_STATIC,
c906108c 515
768a979c
UW
516 /* Value is in register. SYMBOL_VALUE is the register number
517 in the original debug format. SYMBOL_REGISTER_OPS holds a
518 function that can be called to transform this into the
519 actual register number this represents in a specific target
520 architecture (gdbarch).
2a2d4dc3
AS
521
522 For some symbol formats (stabs, for some compilers at least),
523 the compiler generates two symbols, an argument and a register.
524 In some cases we combine them to a single LOC_REGISTER in symbol
525 reading, but currently not for all cases (e.g. it's passed on the
526 stack and then loaded into a register). */
c906108c 527
17c5ed2c 528 LOC_REGISTER,
c906108c 529
17c5ed2c 530 /* It's an argument; the value is at SYMBOL_VALUE offset in arglist. */
c906108c 531
17c5ed2c 532 LOC_ARG,
c906108c 533
17c5ed2c 534 /* Value address is at SYMBOL_VALUE offset in arglist. */
c906108c 535
17c5ed2c 536 LOC_REF_ARG,
c906108c 537
2a2d4dc3 538 /* Value is in specified register. Just like LOC_REGISTER except the
17c5ed2c 539 register holds the address of the argument instead of the argument
c378eb4e 540 itself. This is currently used for the passing of structs and unions
17c5ed2c
DC
541 on sparc and hppa. It is also used for call by reference where the
542 address is in a register, at least by mipsread.c. */
c906108c 543
17c5ed2c 544 LOC_REGPARM_ADDR,
c906108c 545
17c5ed2c 546 /* Value is a local variable at SYMBOL_VALUE offset in stack frame. */
c906108c 547
17c5ed2c 548 LOC_LOCAL,
c906108c 549
176620f1
EZ
550 /* Value not used; definition in SYMBOL_TYPE. Symbols in the domain
551 STRUCT_DOMAIN all have this class. */
c906108c 552
17c5ed2c 553 LOC_TYPEDEF,
c906108c 554
c378eb4e 555 /* Value is address SYMBOL_VALUE_ADDRESS in the code. */
c906108c 556
17c5ed2c 557 LOC_LABEL,
c906108c 558
17c5ed2c
DC
559 /* In a symbol table, value is SYMBOL_BLOCK_VALUE of a `struct block'.
560 In a partial symbol table, SYMBOL_VALUE_ADDRESS is the start address
c378eb4e 561 of the block. Function names have this class. */
c906108c 562
17c5ed2c 563 LOC_BLOCK,
c906108c 564
17c5ed2c
DC
565 /* Value is a constant byte-sequence pointed to by SYMBOL_VALUE_BYTES, in
566 target byte order. */
c906108c 567
17c5ed2c 568 LOC_CONST_BYTES,
c906108c 569
17c5ed2c
DC
570 /* Value is at fixed address, but the address of the variable has
571 to be determined from the minimal symbol table whenever the
572 variable is referenced.
573 This happens if debugging information for a global symbol is
574 emitted and the corresponding minimal symbol is defined
575 in another object file or runtime common storage.
576 The linker might even remove the minimal symbol if the global
577 symbol is never referenced, in which case the symbol remains
de40b933
JK
578 unresolved.
579
580 GDB would normally find the symbol in the minimal symbol table if it will
581 not find it in the full symbol table. But a reference to an external
582 symbol in a local block shadowing other definition requires full symbol
583 without possibly having its address available for LOC_STATIC. Testcase
5382cfab
PW
584 is provided as `gdb.dwarf2/dw2-unresolved.exp'.
585
586 This is also used for thread local storage (TLS) variables. In this case,
587 the address of the TLS variable must be determined when the variable is
588 referenced, from the MSYMBOL_VALUE_RAW_ADDRESS, which is the offset
589 of the TLS variable in the thread local storage of the shared
590 library/object. */
c906108c 591
17c5ed2c 592 LOC_UNRESOLVED,
c906108c 593
17c5ed2c
DC
594 /* The variable does not actually exist in the program.
595 The value is ignored. */
c906108c 596
17c5ed2c 597 LOC_OPTIMIZED_OUT,
c906108c 598
4c2df51b 599 /* The variable's address is computed by a set of location
768a979c 600 functions (see "struct symbol_computed_ops" below). */
4c2df51b 601 LOC_COMPUTED,
5a352474
JK
602
603 /* The variable uses general_symbol_info->value->common_block field.
604 It also always uses COMMON_BLOCK_DOMAIN. */
605 LOC_COMMON_BLOCK,
f1e6e072
TT
606
607 /* Not used, just notes the boundary of the enum. */
608 LOC_FINAL_VALUE
4c2df51b
DJ
609};
610
51cdc993
DE
611/* The number of bits needed for values in enum address_class, with some
612 padding for reasonable growth, and room for run-time registered address
613 classes. See symtab.c:MAX_SYMBOL_IMPLS.
614 This is a #define so that we can have a assertion elsewhere to
615 verify that we have reserved enough space for synthetic address
616 classes. */
617#define SYMBOL_ACLASS_BITS 5
618gdb_static_assert (LOC_FINAL_VALUE <= (1 << SYMBOL_ACLASS_BITS));
619
768a979c 620/* The methods needed to implement LOC_COMPUTED. These methods can
a67af2b9
AC
621 use the symbol's .aux_value for additional per-symbol information.
622
623 At present this is only used to implement location expressions. */
624
768a979c 625struct symbol_computed_ops
4c2df51b
DJ
626{
627
628 /* Return the value of the variable SYMBOL, relative to the stack
629 frame FRAME. If the variable has been optimized out, return
630 zero.
631
632 Iff `read_needs_frame (SYMBOL)' is zero, then FRAME may be zero. */
633
634 struct value *(*read_variable) (struct symbol * symbol,
635 struct frame_info * frame);
636
e18b2753
JK
637 /* Read variable SYMBOL like read_variable at (callee) FRAME's function
638 entry. SYMBOL should be a function parameter, otherwise
639 NO_ENTRY_VALUE_ERROR will be thrown. */
640 struct value *(*read_variable_at_entry) (struct symbol *symbol,
641 struct frame_info *frame);
642
4c2df51b
DJ
643 /* Return non-zero if we need a frame to find the value of the SYMBOL. */
644 int (*read_needs_frame) (struct symbol * symbol);
645
646 /* Write to STREAM a natural-language description of the location of
08922a10
SS
647 SYMBOL, in the context of ADDR. */
648 void (*describe_location) (struct symbol * symbol, CORE_ADDR addr,
649 struct ui_file * stream);
4c2df51b 650
f1e6e072
TT
651 /* Non-zero if this symbol's address computation is dependent on PC. */
652 unsigned char location_has_loclist;
653
4c2df51b
DJ
654 /* Tracepoint support. Append bytecodes to the tracepoint agent
655 expression AX that push the address of the object SYMBOL. Set
656 VALUE appropriately. Note --- for objects in registers, this
657 needn't emit any code; as long as it sets VALUE properly, then
658 the caller will generate the right code in the process of
659 treating this as an lvalue or rvalue. */
660
505e835d
UW
661 void (*tracepoint_var_ref) (struct symbol *symbol, struct gdbarch *gdbarch,
662 struct agent_expr *ax, struct axs_value *value);
bb2ec1b3
TT
663
664 /* Generate C code to compute the location of SYMBOL. The C code is
665 emitted to STREAM. GDBARCH is the current architecture and PC is
666 the PC at which SYMBOL's location should be evaluated.
667 REGISTERS_USED is a vector indexed by register number; the
668 generator function should set an element in this vector if the
669 corresponding register is needed by the location computation.
670 The generated C code must assign the location to a local
671 variable; this variable's name is RESULT_NAME. */
672
673 void (*generate_c_location) (struct symbol *symbol, struct ui_file *stream,
674 struct gdbarch *gdbarch,
675 unsigned char *registers_used,
676 CORE_ADDR pc, const char *result_name);
677
17c5ed2c 678};
c906108c 679
f1e6e072
TT
680/* The methods needed to implement LOC_BLOCK for inferior functions.
681 These methods can use the symbol's .aux_value for additional
682 per-symbol information. */
683
684struct symbol_block_ops
685{
686 /* Fill in *START and *LENGTH with DWARF block data of function
687 FRAMEFUNC valid for inferior context address PC. Set *LENGTH to
688 zero if such location is not valid for PC; *START is left
689 uninitialized in such case. */
690 void (*find_frame_base_location) (struct symbol *framefunc, CORE_ADDR pc,
691 const gdb_byte **start, size_t *length);
63e43d3a
PMR
692
693 /* Return the frame base address. FRAME is the frame for which we want to
694 compute the base address while FRAMEFUNC is the symbol for the
695 corresponding function. Return 0 on failure (FRAMEFUNC may not hold the
696 information we need).
697
698 This method is designed to work with static links (nested functions
699 handling). Static links are function properties whose evaluation returns
700 the frame base address for the enclosing frame. However, there are
701 multiple definitions for "frame base": the content of the frame base
702 register, the CFA as defined by DWARF unwinding information, ...
703
704 So this specific method is supposed to compute the frame base address such
705 as for nested fuctions, the static link computes the same address. For
706 instance, considering DWARF debugging information, the static link is
707 computed with DW_AT_static_link and this method must be used to compute
708 the corresponding DW_AT_frame_base attribute. */
709 CORE_ADDR (*get_frame_base) (struct symbol *framefunc,
710 struct frame_info *frame);
f1e6e072
TT
711};
712
768a979c
UW
713/* Functions used with LOC_REGISTER and LOC_REGPARM_ADDR. */
714
715struct symbol_register_ops
716{
717 int (*register_number) (struct symbol *symbol, struct gdbarch *gdbarch);
718};
719
f1e6e072
TT
720/* Objects of this type are used to find the address class and the
721 various computed ops vectors of a symbol. */
722
723struct symbol_impl
724{
725 enum address_class aclass;
726
727 /* Used with LOC_COMPUTED. */
728 const struct symbol_computed_ops *ops_computed;
729
730 /* Used with LOC_BLOCK. */
731 const struct symbol_block_ops *ops_block;
732
733 /* Used with LOC_REGISTER and LOC_REGPARM_ADDR. */
734 const struct symbol_register_ops *ops_register;
735};
736
c378eb4e 737/* This structure is space critical. See space comments at the top. */
a7f19c79 738
c906108c 739struct symbol
17c5ed2c 740{
c906108c 741
c378eb4e 742 /* The general symbol info required for all types of symbols. */
c906108c 743
17c5ed2c 744 struct general_symbol_info ginfo;
c906108c 745
17c5ed2c 746 /* Data type of value */
c906108c 747
17c5ed2c 748 struct type *type;
c906108c 749
1994afbf 750 /* The owner of this symbol.
e2ada9cb 751 Which one to use is defined by symbol.is_objfile_owned. */
1994afbf
DE
752
753 union
754 {
755 /* The symbol table containing this symbol. This is the file associated
756 with LINE. It can be NULL during symbols read-in but it is never NULL
757 during normal operation. */
758 struct symtab *symtab;
759
760 /* For types defined by the architecture. */
761 struct gdbarch *arch;
762 } owner;
cb1df416 763
176620f1 764 /* Domain code. */
c906108c 765
c01feb36 766 ENUM_BITFIELD(domain_enum_tag) domain : SYMBOL_DOMAIN_BITS;
c906108c 767
f1e6e072
TT
768 /* Address class. This holds an index into the 'symbol_impls'
769 table. The actual enum address_class value is stored there,
770 alongside any per-class ops vectors. */
c906108c 771
f1e6e072 772 unsigned int aclass_index : SYMBOL_ACLASS_BITS;
c906108c 773
1994afbf
DE
774 /* If non-zero then symbol is objfile-owned, use owner.symtab.
775 Otherwise symbol is arch-owned, use owner.arch. */
776
777 unsigned int is_objfile_owned : 1;
778
2a2d4dc3
AS
779 /* Whether this is an argument. */
780
781 unsigned is_argument : 1;
782
edb3359d
DJ
783 /* Whether this is an inlined function (class LOC_BLOCK only). */
784 unsigned is_inlined : 1;
785
34eaf542
TT
786 /* True if this is a C++ function symbol with template arguments.
787 In this case the symbol is really a "struct template_symbol". */
788 unsigned is_cplus_template_function : 1;
789
edb3359d
DJ
790 /* Line number of this symbol's definition, except for inlined
791 functions. For an inlined function (class LOC_BLOCK and
792 SYMBOL_INLINED set) this is the line number of the function's call
793 site. Inlined function symbols are not definitions, and they are
794 never found by symbol table lookup.
1994afbf 795 If this symbol is arch-owned, LINE shall be zero.
edb3359d
DJ
796
797 FIXME: Should we really make the assumption that nobody will try
798 to debug files longer than 64K lines? What about machine
799 generated programs? */
c906108c 800
17c5ed2c 801 unsigned short line;
c906108c 802
10f4ecb8
UW
803 /* An arbitrary data pointer, allowing symbol readers to record
804 additional information on a per-symbol basis. Note that this data
805 must be allocated using the same obstack as the symbol itself. */
1cd36e54
DE
806 /* So far it is only used by:
807 LOC_COMPUTED: to find the location information
808 LOC_BLOCK (DWARF2 function): information used internally by the
809 DWARF 2 code --- specifically, the location expression for the frame
10f4ecb8
UW
810 base for this function. */
811 /* FIXME drow/2003-02-21: For the LOC_BLOCK case, it might be better
812 to add a magic symbol to the block containing this information,
813 or to have a generic debug info annotation slot for symbols. */
814
815 void *aux_value;
c906108c 816
17c5ed2c
DC
817 struct symbol *hash_next;
818};
c906108c 819
d12307c1
PMR
820/* Several lookup functions return both a symbol and the block in which the
821 symbol is found. This structure is used in these cases. */
822
823struct block_symbol
824{
825 /* The symbol that was found, or NULL if no symbol was found. */
826 struct symbol *symbol;
827
828 /* If SYMBOL is not NULL, then this is the block in which the symbol is
829 defined. */
830 const struct block *block;
831};
832
f1e6e072 833extern const struct symbol_impl *symbol_impls;
c906108c 834
b6b80672
PA
835/* For convenience. All fields are NULL. This means "there is no
836 symbol". */
837extern const struct block_symbol null_block_symbol;
838
1994afbf
DE
839/* Note: There is no accessor macro for symbol.owner because it is
840 "private". */
841
176620f1 842#define SYMBOL_DOMAIN(symbol) (symbol)->domain
f1e6e072
TT
843#define SYMBOL_IMPL(symbol) (symbol_impls[(symbol)->aclass_index])
844#define SYMBOL_ACLASS_INDEX(symbol) (symbol)->aclass_index
845#define SYMBOL_CLASS(symbol) (SYMBOL_IMPL (symbol).aclass)
1994afbf 846#define SYMBOL_OBJFILE_OWNED(symbol) ((symbol)->is_objfile_owned)
2a2d4dc3 847#define SYMBOL_IS_ARGUMENT(symbol) (symbol)->is_argument
edb3359d 848#define SYMBOL_INLINED(symbol) (symbol)->is_inlined
34eaf542
TT
849#define SYMBOL_IS_CPLUS_TEMPLATE_FUNCTION(symbol) \
850 (symbol)->is_cplus_template_function
c906108c
SS
851#define SYMBOL_TYPE(symbol) (symbol)->type
852#define SYMBOL_LINE(symbol) (symbol)->line
f1e6e072
TT
853#define SYMBOL_COMPUTED_OPS(symbol) (SYMBOL_IMPL (symbol).ops_computed)
854#define SYMBOL_BLOCK_OPS(symbol) (SYMBOL_IMPL (symbol).ops_block)
855#define SYMBOL_REGISTER_OPS(symbol) (SYMBOL_IMPL (symbol).ops_register)
10f4ecb8 856#define SYMBOL_LOCATION_BATON(symbol) (symbol)->aux_value
34eaf542 857
f1e6e072
TT
858extern int register_symbol_computed_impl (enum address_class,
859 const struct symbol_computed_ops *);
860
861extern int register_symbol_block_impl (enum address_class aclass,
862 const struct symbol_block_ops *ops);
863
864extern int register_symbol_register_impl (enum address_class,
865 const struct symbol_register_ops *);
866
08be3fe3
DE
867/* Return the OBJFILE of SYMBOL.
868 It is an error to call this if symbol.is_objfile_owned is false, which
869 only happens for architecture-provided types. */
870
871extern struct objfile *symbol_objfile (const struct symbol *symbol);
872
873/* Return the ARCH of SYMBOL. */
874
875extern struct gdbarch *symbol_arch (const struct symbol *symbol);
876
877/* Return the SYMTAB of SYMBOL.
878 It is an error to call this if symbol.is_objfile_owned is false, which
879 only happens for architecture-provided types. */
880
881extern struct symtab *symbol_symtab (const struct symbol *symbol);
882
883/* Set the symtab of SYMBOL to SYMTAB.
884 It is an error to call this if symbol.is_objfile_owned is false, which
885 only happens for architecture-provided types. */
886
887extern void symbol_set_symtab (struct symbol *symbol, struct symtab *symtab);
888
34eaf542
TT
889/* An instance of this type is used to represent a C++ template
890 function. It includes a "struct symbol" as a kind of base class;
891 users downcast to "struct template_symbol *" when needed. A symbol
892 is really of this type iff SYMBOL_IS_CPLUS_TEMPLATE_FUNCTION is
893 true. */
894
895struct template_symbol
896{
897 /* The base class. */
898 struct symbol base;
899
900 /* The number of template arguments. */
901 int n_template_arguments;
902
903 /* The template arguments. This is an array with
904 N_TEMPLATE_ARGUMENTS elements. */
905 struct symbol **template_arguments;
906};
907
c906108c 908\f
c906108c
SS
909/* Each item represents a line-->pc (or the reverse) mapping. This is
910 somewhat more wasteful of space than one might wish, but since only
911 the files which are actually debugged are read in to core, we don't
912 waste much space. */
913
914struct linetable_entry
17c5ed2c
DC
915{
916 int line;
917 CORE_ADDR pc;
918};
c906108c
SS
919
920/* The order of entries in the linetable is significant. They should
921 be sorted by increasing values of the pc field. If there is more than
922 one entry for a given pc, then I'm not sure what should happen (and
923 I not sure whether we currently handle it the best way).
924
925 Example: a C for statement generally looks like this
926
c5aa993b
JM
927 10 0x100 - for the init/test part of a for stmt.
928 20 0x200
929 30 0x300
930 10 0x400 - for the increment part of a for stmt.
c906108c 931
e8717518
FF
932 If an entry has a line number of zero, it marks the start of a PC
933 range for which no line number information is available. It is
934 acceptable, though wasteful of table space, for such a range to be
935 zero length. */
c906108c
SS
936
937struct linetable
17c5ed2c
DC
938{
939 int nitems;
c906108c 940
17c5ed2c
DC
941 /* Actually NITEMS elements. If you don't like this use of the
942 `struct hack', you can shove it up your ANSI (seriously, if the
943 committee tells us how to do it, we can probably go along). */
944 struct linetable_entry item[1];
945};
c906108c 946
c906108c
SS
947/* How to relocate the symbols from each section in a symbol file.
948 Each struct contains an array of offsets.
949 The ordering and meaning of the offsets is file-type-dependent;
950 typically it is indexed by section numbers or symbol types or
951 something like that.
952
953 To give us flexibility in changing the internal representation
954 of these offsets, the ANOFFSET macro must be used to insert and
955 extract offset values in the struct. */
956
957struct section_offsets
17c5ed2c 958{
c378eb4e 959 CORE_ADDR offsets[1]; /* As many as needed. */
17c5ed2c 960};
c906108c 961
a4c8257b 962#define ANOFFSET(secoff, whichone) \
3e43a32a
MS
963 ((whichone == -1) \
964 ? (internal_error (__FILE__, __LINE__, \
965 _("Section index is uninitialized")), -1) \
966 : secoff->offsets[whichone])
c906108c 967
b29c9944
JB
968/* The size of a section_offsets table for N sections. */
969#define SIZEOF_N_SECTION_OFFSETS(n) \
c906108c 970 (sizeof (struct section_offsets) \
b29c9944
JB
971 + sizeof (((struct section_offsets *) 0)->offsets) * ((n)-1))
972
c378eb4e 973/* Each source file or header is represented by a struct symtab.
43f3e411 974 The name "symtab" is historical, another name for it is "filetab".
c906108c
SS
975 These objects are chained through the `next' field. */
976
977struct symtab
17c5ed2c 978{
b7236fbe
DE
979 /* Unordered chain of all filetabs in the compunit, with the exception
980 that the "main" source file is the first entry in the list. */
c906108c 981
17c5ed2c 982 struct symtab *next;
c906108c 983
43f3e411 984 /* Backlink to containing compunit symtab. */
c906108c 985
43f3e411 986 struct compunit_symtab *compunit_symtab;
c906108c 987
17c5ed2c
DC
988 /* Table mapping core addresses to line numbers for this file.
989 Can be NULL if none. Never shared between different symtabs. */
c906108c 990
17c5ed2c 991 struct linetable *linetable;
c906108c 992
4e04028d 993 /* Name of this source file. This pointer is never NULL. */
c906108c 994
21ea9eec 995 const char *filename;
c906108c 996
17c5ed2c 997 /* Total number of lines found in source file. */
c906108c 998
17c5ed2c 999 int nlines;
c906108c 1000
17c5ed2c
DC
1001 /* line_charpos[N] is the position of the (N-1)th line of the
1002 source file. "position" means something we can lseek() to; it
1003 is not guaranteed to be useful any other way. */
c906108c 1004
17c5ed2c 1005 int *line_charpos;
c906108c 1006
17c5ed2c 1007 /* Language of this source file. */
c906108c 1008
17c5ed2c 1009 enum language language;
c906108c 1010
43f3e411
DE
1011 /* Full name of file as found by searching the source path.
1012 NULL if not yet known. */
1013
1014 char *fullname;
1015};
1016
1017#define SYMTAB_COMPUNIT(symtab) ((symtab)->compunit_symtab)
1018#define SYMTAB_LINETABLE(symtab) ((symtab)->linetable)
1019#define SYMTAB_LANGUAGE(symtab) ((symtab)->language)
1020#define SYMTAB_BLOCKVECTOR(symtab) \
1021 COMPUNIT_BLOCKVECTOR (SYMTAB_COMPUNIT (symtab))
1022#define SYMTAB_OBJFILE(symtab) \
1023 COMPUNIT_OBJFILE (SYMTAB_COMPUNIT (symtab))
1024#define SYMTAB_PSPACE(symtab) (SYMTAB_OBJFILE (symtab)->pspace)
1025#define SYMTAB_DIRNAME(symtab) \
1026 COMPUNIT_DIRNAME (SYMTAB_COMPUNIT (symtab))
1027
1028typedef struct symtab *symtab_ptr;
1029DEF_VEC_P (symtab_ptr);
1030
1031/* Compunit symtabs contain the actual "symbol table", aka blockvector, as well
1032 as the list of all source files (what gdb has historically associated with
1033 the term "symtab").
1034 Additional information is recorded here that is common to all symtabs in a
1035 compilation unit (DWARF or otherwise).
1036
1037 Example:
1038 For the case of a program built out of these files:
1039
1040 foo.c
1041 foo1.h
1042 foo2.h
1043 bar.c
1044 foo1.h
1045 bar.h
1046
1047 This is recorded as:
1048
1049 objfile -> foo.c(cu) -> bar.c(cu) -> NULL
1050 | |
1051 v v
1052 foo.c bar.c
1053 | |
1054 v v
1055 foo1.h foo1.h
1056 | |
1057 v v
1058 foo2.h bar.h
1059 | |
1060 v v
1061 NULL NULL
1062
1063 where "foo.c(cu)" and "bar.c(cu)" are struct compunit_symtab objects,
1064 and the files foo.c, etc. are struct symtab objects. */
1065
1066struct compunit_symtab
1067{
1068 /* Unordered chain of all compunit symtabs of this objfile. */
1069 struct compunit_symtab *next;
1070
1071 /* Object file from which this symtab information was read. */
1072 struct objfile *objfile;
1073
1074 /* Name of the symtab.
1075 This is *not* intended to be a usable filename, and is
1076 for debugging purposes only. */
1077 const char *name;
1078
1079 /* Unordered list of file symtabs, except that by convention the "main"
1080 source file (e.g., .c, .cc) is guaranteed to be first.
1081 Each symtab is a file, either the "main" source file (e.g., .c, .cc)
1082 or header (e.g., .h). */
1083 struct symtab *filetabs;
1084
1085 /* Last entry in FILETABS list.
1086 Subfiles are added to the end of the list so they accumulate in order,
1087 with the main source subfile living at the front.
1088 The main reason is so that the main source file symtab is at the head
1089 of the list, and the rest appear in order for debugging convenience. */
1090 struct symtab *last_filetab;
1091
1092 /* Non-NULL string that identifies the format of the debugging information,
1093 such as "stabs", "dwarf 1", "dwarf 2", "coff", etc. This is mostly useful
17c5ed2c 1094 for automated testing of gdb but may also be information that is
c378eb4e 1095 useful to the user. */
554d387d 1096 const char *debugformat;
c906108c 1097
43f3e411 1098 /* String of producer version information, or NULL if we don't know. */
554d387d 1099 const char *producer;
c906108c 1100
43f3e411
DE
1101 /* Directory in which it was compiled, or NULL if we don't know. */
1102 const char *dirname;
c906108c 1103
43f3e411
DE
1104 /* List of all symbol scope blocks for this symtab. It is shared among
1105 all symtabs in a given compilation unit. */
1106 const struct blockvector *blockvector;
c906108c 1107
43f3e411
DE
1108 /* Section in objfile->section_offsets for the blockvector and
1109 the linetable. Probably always SECT_OFF_TEXT. */
1110 int block_line_section;
c906108c 1111
43f3e411
DE
1112 /* Symtab has been compiled with both optimizations and debug info so that
1113 GDB may stop skipping prologues as variables locations are valid already
1114 at function entry points. */
1115 unsigned int locations_valid : 1;
c906108c 1116
43f3e411
DE
1117 /* DWARF unwinder for this CU is valid even for epilogues (PC at the return
1118 instruction). This is supported by GCC since 4.5.0. */
1119 unsigned int epilogue_unwind_valid : 1;
8e3b41a9 1120
43f3e411 1121 /* struct call_site entries for this compilation unit or NULL. */
8e3b41a9 1122 htab_t call_site_htab;
b5b04b5b 1123
43f3e411
DE
1124 /* The macro table for this symtab. Like the blockvector, this
1125 is shared between different symtabs in a given compilation unit.
1126 It's debatable whether it *should* be shared among all the symtabs in
1127 the given compilation unit, but it currently is. */
1128 struct macro_table *macro_table;
1129
b5b04b5b 1130 /* If non-NULL, then this points to a NULL-terminated vector of
43f3e411
DE
1131 included compunits. When searching the static or global
1132 block of this compunit, the corresponding block of all
1133 included compunits will also be searched. Note that this
b5b04b5b
TT
1134 list must be flattened -- the symbol reader is responsible for
1135 ensuring that this vector contains the transitive closure of all
43f3e411
DE
1136 included compunits. */
1137 struct compunit_symtab **includes;
b5b04b5b 1138
43f3e411
DE
1139 /* If this is an included compunit, this points to one includer
1140 of the table. This user is considered the canonical compunit
1141 containing this one. An included compunit may itself be
b5b04b5b 1142 included by another. */
43f3e411 1143 struct compunit_symtab *user;
17c5ed2c 1144};
c906108c 1145
43f3e411
DE
1146#define COMPUNIT_OBJFILE(cust) ((cust)->objfile)
1147#define COMPUNIT_FILETABS(cust) ((cust)->filetabs)
1148#define COMPUNIT_DEBUGFORMAT(cust) ((cust)->debugformat)
1149#define COMPUNIT_PRODUCER(cust) ((cust)->producer)
1150#define COMPUNIT_DIRNAME(cust) ((cust)->dirname)
1151#define COMPUNIT_BLOCKVECTOR(cust) ((cust)->blockvector)
1152#define COMPUNIT_BLOCK_LINE_SECTION(cust) ((cust)->block_line_section)
1153#define COMPUNIT_LOCATIONS_VALID(cust) ((cust)->locations_valid)
1154#define COMPUNIT_EPILOGUE_UNWIND_VALID(cust) ((cust)->epilogue_unwind_valid)
1155#define COMPUNIT_CALL_SITE_HTAB(cust) ((cust)->call_site_htab)
1156#define COMPUNIT_MACRO_TABLE(cust) ((cust)->macro_table)
ec94af83 1157
43f3e411 1158/* Iterate over all file tables (struct symtab) within a compunit. */
db0fec5c 1159
43f3e411
DE
1160#define ALL_COMPUNIT_FILETABS(cu, s) \
1161 for ((s) = (cu) -> filetabs; (s) != NULL; (s) = (s) -> next)
1162
1163/* Return the primary symtab of CUST. */
1164
1165extern struct symtab *
1166 compunit_primary_filetab (const struct compunit_symtab *cust);
1167
1168/* Return the language of CUST. */
1169
1170extern enum language compunit_language (const struct compunit_symtab *cust);
1171
1172typedef struct compunit_symtab *compunit_symtab_ptr;
1173DEF_VEC_P (compunit_symtab_ptr);
ec94af83 1174
c906108c 1175\f
c5aa993b 1176
c906108c 1177/* The virtual function table is now an array of structures which have the
a960f249 1178 form { int16 offset, delta; void *pfn; }.
c906108c
SS
1179
1180 In normal virtual function tables, OFFSET is unused.
1181 DELTA is the amount which is added to the apparent object's base
1182 address in order to point to the actual object to which the
1183 virtual function should be applied.
1184 PFN is a pointer to the virtual function.
1185
c378eb4e 1186 Note that this macro is g++ specific (FIXME). */
c5aa993b 1187
c906108c
SS
1188#define VTBL_FNADDR_OFFSET 2
1189
c378eb4e 1190/* External variables and functions for the objects described above. */
c906108c 1191
c378eb4e 1192/* True if we are nested inside psymtab_to_symtab. */
c906108c
SS
1193
1194extern int currently_reading_symtab;
1195
c906108c
SS
1196/* symtab.c lookup functions */
1197
7fc830e2
MK
1198extern const char multiple_symbols_ask[];
1199extern const char multiple_symbols_all[];
1200extern const char multiple_symbols_cancel[];
717d2f5a
JB
1201
1202const char *multiple_symbols_select_mode (void);
1203
4186eb54
KS
1204int symbol_matches_domain (enum language symbol_language,
1205 domain_enum symbol_domain,
1206 domain_enum domain);
1207
c378eb4e 1208/* lookup a symbol table by source file name. */
c906108c 1209
1f8cc6db 1210extern struct symtab *lookup_symtab (const char *);
c906108c 1211
1993b719
TT
1212/* An object of this type is passed as the 'is_a_field_of_this'
1213 argument to lookup_symbol and lookup_symbol_in_language. */
1214
1215struct field_of_this_result
1216{
1217 /* The type in which the field was found. If this is NULL then the
1218 symbol was not found in 'this'. If non-NULL, then one of the
1219 other fields will be non-NULL as well. */
1220
1221 struct type *type;
1222
1223 /* If the symbol was found as an ordinary field of 'this', then this
1224 is non-NULL and points to the particular field. */
1225
1226 struct field *field;
1227
cf901d3b 1228 /* If the symbol was found as a function field of 'this', then this
1993b719
TT
1229 is non-NULL and points to the particular field. */
1230
1231 struct fn_fieldlist *fn_field;
1232};
1233
cf901d3b
DE
1234/* Find the definition for a specified symbol name NAME
1235 in domain DOMAIN in language LANGUAGE, visible from lexical block BLOCK
1236 if non-NULL or from global/static blocks if BLOCK is NULL.
1237 Returns the struct symbol pointer, or NULL if no symbol is found.
1238 C++: if IS_A_FIELD_OF_THIS is non-NULL on entry, check to see if
1239 NAME is a field of the current implied argument `this'. If so fill in the
1240 fields of IS_A_FIELD_OF_THIS, otherwise the fields are set to NULL.
cf901d3b 1241 The symbol's section is fixed up if necessary. */
53c5240f 1242
d12307c1
PMR
1243extern struct block_symbol
1244 lookup_symbol_in_language (const char *,
1245 const struct block *,
1246 const domain_enum,
1247 enum language,
1248 struct field_of_this_result *);
53c5240f 1249
cf901d3b 1250/* Same as lookup_symbol_in_language, but using the current language. */
c906108c 1251
d12307c1
PMR
1252extern struct block_symbol lookup_symbol (const char *,
1253 const struct block *,
1254 const domain_enum,
1255 struct field_of_this_result *);
c906108c 1256
5f9a71c3 1257/* A default version of lookup_symbol_nonlocal for use by languages
cf901d3b
DE
1258 that can't think of anything better to do.
1259 This implements the C lookup rules. */
5f9a71c3 1260
d12307c1 1261extern struct block_symbol
f606139a
DE
1262 basic_lookup_symbol_nonlocal (const struct language_defn *langdef,
1263 const char *,
1264 const struct block *,
1265 const domain_enum);
5f9a71c3
DC
1266
1267/* Some helper functions for languages that need to write their own
1268 lookup_symbol_nonlocal functions. */
1269
1270/* Lookup a symbol in the static block associated to BLOCK, if there
cf901d3b 1271 is one; do nothing if BLOCK is NULL or a global block.
d12307c1 1272 Upon success fixes up the symbol's section if necessary. */
5f9a71c3 1273
d12307c1
PMR
1274extern struct block_symbol
1275 lookup_symbol_in_static_block (const char *name,
1276 const struct block *block,
1277 const domain_enum domain);
5f9a71c3 1278
08724ab7 1279/* Search all static file-level symbols for NAME from DOMAIN.
d12307c1 1280 Upon success fixes up the symbol's section if necessary. */
08724ab7 1281
d12307c1
PMR
1282extern struct block_symbol lookup_static_symbol (const char *name,
1283 const domain_enum domain);
08724ab7 1284
cf901d3b 1285/* Lookup a symbol in all files' global blocks.
67be31e5
DE
1286
1287 If BLOCK is non-NULL then it is used for two things:
1288 1) If a target-specific lookup routine for libraries exists, then use the
1289 routine for the objfile of BLOCK, and
1290 2) The objfile of BLOCK is used to assist in determining the search order
1291 if the target requires it.
1292 See gdbarch_iterate_over_objfiles_in_search_order.
1293
d12307c1 1294 Upon success fixes up the symbol's section if necessary. */
5f9a71c3 1295
d12307c1
PMR
1296extern struct block_symbol
1297 lookup_global_symbol (const char *name,
1298 const struct block *block,
1299 const domain_enum domain);
5f9a71c3 1300
d1a2d36d 1301/* Lookup a symbol in block BLOCK.
d12307c1 1302 Upon success fixes up the symbol's section if necessary. */
5f9a71c3 1303
d12307c1
PMR
1304extern struct symbol *
1305 lookup_symbol_in_block (const char *name,
1306 const struct block *block,
1307 const domain_enum domain);
5f9a71c3 1308
cf901d3b
DE
1309/* Look up the `this' symbol for LANG in BLOCK. Return the symbol if
1310 found, or NULL if not found. */
1311
d12307c1
PMR
1312extern struct block_symbol
1313 lookup_language_this (const struct language_defn *lang,
1314 const struct block *block);
66a17cb6 1315
cf901d3b 1316/* Lookup a [struct, union, enum] by name, within a specified block. */
c906108c 1317
270140bd 1318extern struct type *lookup_struct (const char *, const struct block *);
c906108c 1319
270140bd 1320extern struct type *lookup_union (const char *, const struct block *);
c906108c 1321
270140bd 1322extern struct type *lookup_enum (const char *, const struct block *);
c906108c 1323
c906108c
SS
1324/* from blockframe.c: */
1325
c378eb4e 1326/* lookup the function symbol corresponding to the address. */
c906108c 1327
a14ed312 1328extern struct symbol *find_pc_function (CORE_ADDR);
c906108c 1329
c378eb4e 1330/* lookup the function corresponding to the address and section. */
c906108c 1331
714835d5 1332extern struct symbol *find_pc_sect_function (CORE_ADDR, struct obj_section *);
c5aa993b 1333
2c02bd72 1334extern int find_pc_partial_function_gnu_ifunc (CORE_ADDR pc, const char **name,
11c81455
JK
1335 CORE_ADDR *address,
1336 CORE_ADDR *endaddr,
1337 int *is_gnu_ifunc_p);
1338
c378eb4e 1339/* lookup function from address, return name, start addr and end addr. */
c906108c 1340
2c02bd72 1341extern int find_pc_partial_function (CORE_ADDR, const char **, CORE_ADDR *,
570b8f7c 1342 CORE_ADDR *);
c906108c 1343
a14ed312 1344extern void clear_pc_function_cache (void);
c906108c 1345
2097ae25 1346/* Expand symtab containing PC, SECTION if not already expanded. */
c906108c 1347
2097ae25 1348extern void expand_symtab_containing_pc (CORE_ADDR, struct obj_section *);
c906108c 1349
c378eb4e 1350/* lookup full symbol table by address. */
c906108c 1351
43f3e411 1352extern struct compunit_symtab *find_pc_compunit_symtab (CORE_ADDR);
c906108c 1353
c378eb4e 1354/* lookup full symbol table by address and section. */
c906108c 1355
43f3e411
DE
1356extern struct compunit_symtab *
1357 find_pc_sect_compunit_symtab (CORE_ADDR, struct obj_section *);
c906108c 1358
a14ed312 1359extern int find_pc_line_pc_range (CORE_ADDR, CORE_ADDR *, CORE_ADDR *);
c906108c 1360
a14ed312 1361extern void reread_symbols (void);
c906108c 1362
cf901d3b
DE
1363/* Look up a type named NAME in STRUCT_DOMAIN in the current language.
1364 The type returned must not be opaque -- i.e., must have at least one field
1365 defined. */
1366
a14ed312 1367extern struct type *lookup_transparent_type (const char *);
c906108c 1368
cf901d3b 1369extern struct type *basic_lookup_transparent_type (const char *);
c906108c 1370
c378eb4e 1371/* Macro for name of symbol to indicate a file compiled with gcc. */
c906108c
SS
1372#ifndef GCC_COMPILED_FLAG_SYMBOL
1373#define GCC_COMPILED_FLAG_SYMBOL "gcc_compiled."
1374#endif
1375
c378eb4e 1376/* Macro for name of symbol to indicate a file compiled with gcc2. */
c906108c
SS
1377#ifndef GCC2_COMPILED_FLAG_SYMBOL
1378#define GCC2_COMPILED_FLAG_SYMBOL "gcc2_compiled."
1379#endif
1380
0875794a
JK
1381extern int in_gnu_ifunc_stub (CORE_ADDR pc);
1382
07be84bf
JK
1383/* Functions for resolving STT_GNU_IFUNC symbols which are implemented only
1384 for ELF symbol files. */
1385
1386struct gnu_ifunc_fns
1387{
1388 /* See elf_gnu_ifunc_resolve_addr for its real implementation. */
1389 CORE_ADDR (*gnu_ifunc_resolve_addr) (struct gdbarch *gdbarch, CORE_ADDR pc);
1390
1391 /* See elf_gnu_ifunc_resolve_name for its real implementation. */
1392 int (*gnu_ifunc_resolve_name) (const char *function_name,
1393 CORE_ADDR *function_address_p);
0e30163f
JK
1394
1395 /* See elf_gnu_ifunc_resolver_stop for its real implementation. */
1396 void (*gnu_ifunc_resolver_stop) (struct breakpoint *b);
1397
1398 /* See elf_gnu_ifunc_resolver_return_stop for its real implementation. */
1399 void (*gnu_ifunc_resolver_return_stop) (struct breakpoint *b);
07be84bf
JK
1400};
1401
1402#define gnu_ifunc_resolve_addr gnu_ifunc_fns_p->gnu_ifunc_resolve_addr
1403#define gnu_ifunc_resolve_name gnu_ifunc_fns_p->gnu_ifunc_resolve_name
0e30163f
JK
1404#define gnu_ifunc_resolver_stop gnu_ifunc_fns_p->gnu_ifunc_resolver_stop
1405#define gnu_ifunc_resolver_return_stop \
1406 gnu_ifunc_fns_p->gnu_ifunc_resolver_return_stop
07be84bf
JK
1407
1408extern const struct gnu_ifunc_fns *gnu_ifunc_fns_p;
1409
52f729a7 1410extern CORE_ADDR find_solib_trampoline_target (struct frame_info *, CORE_ADDR);
c906108c 1411
c906108c 1412struct symtab_and_line
17c5ed2c 1413{
6c95b8df
PA
1414 /* The program space of this sal. */
1415 struct program_space *pspace;
1416
17c5ed2c 1417 struct symtab *symtab;
714835d5 1418 struct obj_section *section;
17c5ed2c
DC
1419 /* Line number. Line numbers start at 1 and proceed through symtab->nlines.
1420 0 is never a valid line number; it is used to indicate that line number
1421 information is not available. */
1422 int line;
1423
1424 CORE_ADDR pc;
1425 CORE_ADDR end;
ed0616c6
VP
1426 int explicit_pc;
1427 int explicit_line;
55aa24fb
SDJ
1428
1429 /* The probe associated with this symtab_and_line. */
1430 struct probe *probe;
729662a5
TT
1431 /* If PROBE is not NULL, then this is the objfile in which the probe
1432 originated. */
1433 struct objfile *objfile;
17c5ed2c 1434};
c906108c 1435
fe39c653 1436extern void init_sal (struct symtab_and_line *sal);
c906108c
SS
1437
1438struct symtabs_and_lines
17c5ed2c
DC
1439{
1440 struct symtab_and_line *sals;
1441 int nelts;
1442};
c5aa993b 1443\f
c906108c 1444
c906108c
SS
1445/* Given a pc value, return line number it is in. Second arg nonzero means
1446 if pc is on the boundary use the previous statement's line number. */
1447
a14ed312 1448extern struct symtab_and_line find_pc_line (CORE_ADDR, int);
c906108c 1449
c378eb4e 1450/* Same function, but specify a section as well as an address. */
c906108c 1451
714835d5
UW
1452extern struct symtab_and_line find_pc_sect_line (CORE_ADDR,
1453 struct obj_section *, int);
c906108c 1454
34248c3a
DE
1455/* Wrapper around find_pc_line to just return the symtab. */
1456
1457extern struct symtab *find_pc_line_symtab (CORE_ADDR);
1458
c906108c
SS
1459/* Given a symtab and line number, return the pc there. */
1460
a14ed312 1461extern int find_line_pc (struct symtab *, int, CORE_ADDR *);
c906108c 1462
570b8f7c
AC
1463extern int find_line_pc_range (struct symtab_and_line, CORE_ADDR *,
1464 CORE_ADDR *);
c906108c 1465
a14ed312 1466extern void resolve_sal_pc (struct symtab_and_line *);
c906108c 1467
f176c4b5 1468/* solib.c */
c906108c 1469
a14ed312 1470extern void clear_solib (void);
c906108c 1471
c906108c
SS
1472/* source.c */
1473
a14ed312 1474extern int identify_source_line (struct symtab *, int, int, CORE_ADDR);
c906108c 1475
dfaae886
MM
1476/* Flags passed as 4th argument to print_source_lines. */
1477
8d297bbf 1478enum print_source_lines_flag
dfaae886
MM
1479 {
1480 /* Do not print an error message. */
4cd29721
MM
1481 PRINT_SOURCE_LINES_NOERROR = (1 << 0),
1482
1483 /* Print the filename in front of the source lines. */
1484 PRINT_SOURCE_LINES_FILENAME = (1 << 1)
dfaae886 1485 };
8d297bbf 1486DEF_ENUM_FLAGS_TYPE (enum print_source_lines_flag, print_source_lines_flags);
dfaae886
MM
1487
1488extern void print_source_lines (struct symtab *, int, int,
8d297bbf 1489 print_source_lines_flags);
c906108c 1490
00174a86 1491extern void forget_cached_source_info_for_objfile (struct objfile *);
a14ed312 1492extern void forget_cached_source_info (void);
c906108c 1493
a14ed312 1494extern void select_source_symtab (struct symtab *);
c906108c 1495
49c4e619 1496extern VEC (char_ptr) *default_make_symbol_completion_list_break_on
6f937416 1497 (const char *text, const char *word, const char *break_on,
2f68a895 1498 enum type_code code);
6f937416
PA
1499extern VEC (char_ptr) *default_make_symbol_completion_list (const char *,
1500 const char *,
2f68a895 1501 enum type_code);
6f937416
PA
1502extern VEC (char_ptr) *make_symbol_completion_list (const char *, const char *);
1503extern VEC (char_ptr) *make_symbol_completion_type (const char *, const char *,
2f68a895 1504 enum type_code);
49c4e619 1505extern VEC (char_ptr) *make_symbol_completion_list_fn (struct cmd_list_element *,
6f937416
PA
1506 const char *,
1507 const char *);
c906108c 1508
6f937416
PA
1509extern VEC (char_ptr) *make_file_symbol_completion_list (const char *,
1510 const char *,
1511 const char *);
c94fdfd0 1512
6f937416
PA
1513extern VEC (char_ptr) *make_source_files_completion_list (const char *,
1514 const char *);
c94fdfd0 1515
c906108c
SS
1516/* symtab.c */
1517
714835d5 1518int matching_obj_sections (struct obj_section *, struct obj_section *);
94277a38 1519
50641945
FN
1520extern struct symtab *find_line_symtab (struct symtab *, int, int *, int *);
1521
17c5ed2c
DC
1522extern struct symtab_and_line find_function_start_sal (struct symbol *sym,
1523 int);
50641945 1524
059acae7
UW
1525extern void skip_prologue_sal (struct symtab_and_line *);
1526
c906108c
SS
1527/* symtab.c */
1528
d80b854b
UW
1529extern CORE_ADDR skip_prologue_using_sal (struct gdbarch *gdbarch,
1530 CORE_ADDR func_addr);
634aa483 1531
a14ed312
KB
1532extern struct symbol *fixup_symbol_section (struct symbol *,
1533 struct objfile *);
c906108c
SS
1534
1535/* Symbol searching */
5c04624b
DE
1536/* Note: struct symbol_search, search_symbols, et.al. are declared here,
1537 instead of making them local to symtab.c, for gdbtk's sake. */
c906108c
SS
1538
1539/* When using search_symbols, a list of the following structs is returned.
c378eb4e 1540 Callers must free the search list using free_search_symbols! */
c906108c 1541struct symbol_search
17c5ed2c 1542{
c378eb4e
MS
1543 /* The block in which the match was found. Could be, for example,
1544 STATIC_BLOCK or GLOBAL_BLOCK. */
17c5ed2c 1545 int block;
c906108c 1546
17c5ed2c 1547 /* Information describing what was found.
c906108c 1548
d01060f0 1549 If symbol is NOT NULL, then information was found for this match. */
17c5ed2c 1550 struct symbol *symbol;
c906108c 1551
17c5ed2c 1552 /* If msymbol is non-null, then a match was made on something for
c378eb4e 1553 which only minimal_symbols exist. */
7c7b6655 1554 struct bound_minimal_symbol msymbol;
c906108c 1555
c378eb4e 1556 /* A link to the next match, or NULL for the end. */
17c5ed2c
DC
1557 struct symbol_search *next;
1558};
c906108c 1559
96142726
TT
1560extern void search_symbols (const char *, enum search_domain, int,
1561 const char **, struct symbol_search **);
a14ed312 1562extern void free_search_symbols (struct symbol_search *);
17c5ed2c 1563extern struct cleanup *make_cleanup_free_search_symbols (struct symbol_search
b52109bc 1564 **);
c906108c 1565
51cc5b07
AC
1566/* The name of the ``main'' function.
1567 FIXME: cagney/2001-03-20: Can't make main_name() const since some
1568 of the calling code currently assumes that the string isn't
c378eb4e 1569 const. */
17c5ed2c 1570extern /*const */ char *main_name (void);
9e6c82ad 1571extern enum language main_language (void);
51cc5b07 1572
cf901d3b
DE
1573/* Lookup symbol NAME from DOMAIN in MAIN_OBJFILE's global blocks.
1574 This searches MAIN_OBJFILE as well as any associated separate debug info
1575 objfiles of MAIN_OBJFILE.
d12307c1 1576 Upon success fixes up the symbol's section if necessary. */
cf901d3b 1577
d12307c1 1578extern struct block_symbol
efad9b6a 1579 lookup_global_symbol_from_objfile (struct objfile *main_objfile,
cf901d3b
DE
1580 const char *name,
1581 const domain_enum domain);
3a40aaa0 1582
a6c727b2
DJ
1583/* Return 1 if the supplied producer string matches the ARM RealView
1584 compiler (armcc). */
1585int producer_is_realview (const char *producer);
3a40aaa0 1586
ccefe4c4
TT
1587void fixup_section (struct general_symbol_info *ginfo,
1588 CORE_ADDR addr, struct objfile *objfile);
1589
cf901d3b
DE
1590/* Look up objfile containing BLOCK. */
1591
c0201579
JK
1592struct objfile *lookup_objfile_from_block (const struct block *block);
1593
db0fec5c 1594extern unsigned int symtab_create_debug;
45cfd468 1595
cc485e62
DE
1596extern unsigned int symbol_lookup_debug;
1597
c011a4f4
DE
1598extern int basenames_may_differ;
1599
4aac40c8 1600int compare_filenames_for_search (const char *filename,
b57a636e 1601 const char *search_name);
4aac40c8 1602
f8eba3c6 1603int iterate_over_some_symtabs (const char *name,
f8eba3c6
TT
1604 const char *real_path,
1605 int (*callback) (struct symtab *symtab,
1606 void *data),
1607 void *data,
43f3e411
DE
1608 struct compunit_symtab *first,
1609 struct compunit_symtab *after_last);
f8eba3c6
TT
1610
1611void iterate_over_symtabs (const char *name,
1612 int (*callback) (struct symtab *symtab,
1613 void *data),
1614 void *data);
1615
f8eba3c6
TT
1616VEC (CORE_ADDR) *find_pcs_for_symtab_line (struct symtab *symtab, int line,
1617 struct linetable_entry **best_entry);
1618
8e704927
GB
1619/* Callback for LA_ITERATE_OVER_SYMBOLS. The callback will be called
1620 once per matching symbol SYM, with DATA being the argument of the
1621 same name that was passed to LA_ITERATE_OVER_SYMBOLS. The callback
1622 should return nonzero to indicate that LA_ITERATE_OVER_SYMBOLS
1623 should continue iterating, or zero to indicate that the iteration
1624 should end. */
1625
1626typedef int (symbol_found_callback_ftype) (struct symbol *sym, void *data);
1627
f8eba3c6
TT
1628void iterate_over_symbols (const struct block *block, const char *name,
1629 const domain_enum domain,
8e704927 1630 symbol_found_callback_ftype *callback,
f8eba3c6
TT
1631 void *data);
1632
1633struct cleanup *demangle_for_lookup (const char *name, enum language lang,
1634 const char **result_name);
1635
e623cf5d
TT
1636struct symbol *allocate_symbol (struct objfile *);
1637
38bf1463 1638void initialize_objfile_symbol (struct symbol *);
e623cf5d
TT
1639
1640struct template_symbol *allocate_template_symbol (struct objfile *);
1641
c906108c 1642#endif /* !defined(SYMTAB_H) */