]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/symtab.h
Type-safe wrapper for enum flags
[thirdparty/binutils-gdb.git] / gdb / symtab.h
1 /* Symbol table definitions for GDB.
2
3 Copyright (C) 1986-2015 Free Software Foundation, Inc.
4
5 This file is part of GDB.
6
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
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
11
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.
16
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19
20 #if !defined (SYMTAB_H)
21 #define SYMTAB_H 1
22
23 #include "vec.h"
24 #include "gdb_vecs.h"
25 #include "gdbtypes.h"
26 #include "common/enum-flags.h"
27
28 /* Opaque declarations. */
29 struct ui_file;
30 struct frame_info;
31 struct symbol;
32 struct obstack;
33 struct objfile;
34 struct block;
35 struct blockvector;
36 struct axs_value;
37 struct agent_expr;
38 struct program_space;
39 struct language_defn;
40 struct probe;
41 struct common_block;
42 struct obj_section;
43 struct cmd_list_element;
44
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
52 These structures are laid out to encourage good packing.
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
55 to each other so they can be packed together. */
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
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
89 be recorded along with each symbol. */
90
91 /* This structure is space critical. See space comments at the top. */
92
93 struct general_symbol_info
94 {
95 /* Name of the symbol. This is a required field. Storage for the
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. */
100
101 const char *name;
102
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). */
108
109 union
110 {
111 LONGEST ivalue;
112
113 const struct block *block;
114
115 const gdb_byte *bytes;
116
117 CORE_ADDR address;
118
119 /* A common block. Used with LOC_COMMON_BLOCK. */
120
121 const struct common_block *common_block;
122
123 /* For opaque typedef struct chain. */
124
125 struct symbol *chain;
126 }
127 value;
128
129 /* Since one and only one language can apply, wrap the language specific
130 information inside a union. */
131
132 union
133 {
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
139 /* This is used by languages which wish to store a demangled name.
140 currently used by Ada, C++, Java, and Objective C. */
141 const char *demangled_name;
142 }
143 language_specific;
144
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
147 union above. */
148
149 ENUM_BITFIELD(language) language : LANGUAGE_BITS;
150
151 /* This is only used by Ada. If set, then the 'demangled_name' field
152 of language_specific is valid. Otherwise, the 'obstack' field is
153 valid. */
154 unsigned int ada_mangled : 1;
155
156 /* Which section is this symbol in? This is an index into
157 section_offsets for this objfile. Negative means that the symbol
158 does not get relocated relative to a section. */
159
160 short section;
161 };
162
163 extern void symbol_set_demangled_name (struct general_symbol_info *,
164 const char *,
165 struct obstack *);
166
167 extern const char *symbol_get_demangled_name
168 (const struct general_symbol_info *);
169
170 extern CORE_ADDR symbol_overlayed_address (CORE_ADDR, struct obj_section *);
171
172 /* Note that all the following SYMBOL_* macros are used with the
173 SYMBOL argument being either a partial symbol or
174 a full symbol. Both types have a ginfo field. In particular
175 the SYMBOL_SET_LANGUAGE, SYMBOL_DEMANGLED_NAME, etc.
176 macros cannot be entirely substituted by
177 functions, unless the callers are changed to pass in the ginfo
178 field only, instead of the SYMBOL parameter. */
179
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
183 #define SYMBOL_VALUE_COMMON_BLOCK(symbol) (symbol)->ginfo.value.common_block
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
188 #define SYMBOL_OBJ_SECTION(objfile, symbol) \
189 (((symbol)->ginfo.section >= 0) \
190 ? (&(((objfile)->sections)[(symbol)->ginfo.section])) \
191 : NULL)
192
193 /* Initializes the language dependent portion of a symbol
194 depending upon the language for the symbol. */
195 #define SYMBOL_SET_LANGUAGE(symbol,language,obstack) \
196 (symbol_set_language (&(symbol)->ginfo, (language), (obstack)))
197 extern void symbol_set_language (struct general_symbol_info *symbol,
198 enum language language,
199 struct obstack *obstack);
200
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
204 be terminated and either already on the objfile's obstack or
205 permanently allocated. */
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. */
211 #define SYMBOL_SET_NAMES(symbol,linkage_name,len,copy_name,objfile) \
212 symbol_set_names (&(symbol)->ginfo, linkage_name, len, copy_name, objfile)
213 extern void symbol_set_names (struct general_symbol_info *symbol,
214 const char *linkage_name, int len, int copy_name,
215 struct objfile *objfile);
216
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
223 SYMBOL_LINKAGE_NAME are different. */
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))
232 extern const char *symbol_natural_name
233 (const struct general_symbol_info *symbol);
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,
238 it's the same as SYMBOL_NATURAL_NAME. */
239
240 #define SYMBOL_LINKAGE_NAME(symbol) (symbol)->ginfo.name
241
242 /* Return the demangled name for a symbol based on the language for
243 that symbol. If no demangled name exists, return NULL. */
244 #define SYMBOL_DEMANGLED_NAME(symbol) \
245 (symbol_demangled_name (&(symbol)->ginfo))
246 extern const char *symbol_demangled_name
247 (const struct general_symbol_info *symbol);
248
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
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. */
258
259 #define SYMBOL_PRINT_NAME(symbol) \
260 (demangle ? SYMBOL_NATURAL_NAME (symbol) : SYMBOL_LINKAGE_NAME (symbol))
261 extern int demangle;
262
263 /* Macro that returns the name to be used when sorting and searching symbols.
264 In C++ and Java, we search for the demangled form of a name,
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
267 returns the same value (same pointer) as SYMBOL_LINKAGE_NAME. */
268 #define SYMBOL_SEARCH_NAME(symbol) \
269 (symbol_search_name (&(symbol)->ginfo))
270 extern const char *symbol_search_name (const struct general_symbol_info *);
271
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. */
275 #define SYMBOL_MATCHES_SEARCH_NAME(symbol, name) \
276 (strcmp_iw (SYMBOL_SEARCH_NAME (symbol), (name)) == 0)
277
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
284 file, we need to live with what information bfd supplies. */
285
286 enum minimal_symbol_type
287 {
288 mst_unknown = 0, /* Unknown type, the default */
289 mst_text, /* Generally executable instructions */
290 mst_text_gnu_ifunc, /* Executable code returning address
291 of executable code */
292 mst_slot_got_plt, /* GOT entries for .plt sections */
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 */
309 mst_file_bss, /* Static version of mst_bss */
310 nr_minsym_types
311 };
312
313 /* The number of enum minimal_symbol_type values, with some padding for
314 reasonable growth. */
315 #define MINSYM_TYPE_BITS 4
316 gdb_static_assert (nr_minsym_types <= (1 << MINSYM_TYPE_BITS));
317
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
328 used to figure out what full symbol table entries need to be read in. */
329
330 struct minimal_symbol
331 {
332
333 /* The general symbol info required for all types of symbols.
334
335 The SYMBOL_VALUE_ADDRESS contains the address that this symbol
336 corresponds to. */
337
338 struct general_symbol_info mginfo;
339
340 /* Size of this symbol. dbx_end_psymtab in dbxread.c uses this
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
346 /* Which source file is this symbol in? Only relevant for mst_file_*. */
347 const char *filename;
348
349 /* Classification type for this minimal symbol. */
350
351 ENUM_BITFIELD(minimal_symbol_type) type : MINSYM_TYPE_BITS;
352
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
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
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
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 };
376
377 #define MSYMBOL_TARGET_FLAG_1(msymbol) (msymbol)->target_flag_1
378 #define MSYMBOL_TARGET_FLAG_2(msymbol) (msymbol)->target_flag_2
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)
387 #define MSYMBOL_TYPE(msymbol) (msymbol)->type
388
389 #define MSYMBOL_VALUE(symbol) (symbol)->mginfo.value.ivalue
390 /* The unrelocated address of the minimal symbol. */
391 #define MSYMBOL_VALUE_RAW_ADDRESS(symbol) ((symbol)->mginfo.value.address + 0)
392 /* The relocated address of the minimal symbol, using the section
393 offsets from OBJFILE. */
394 #define MSYMBOL_VALUE_ADDRESS(objfile, symbol) \
395 ((symbol)->mginfo.value.address \
396 + ANOFFSET ((objfile)->section_offsets, ((symbol)->mginfo.section)))
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) \
401 ((symbol)->mginfo.value.address = (new_value))
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
428 #include "minsyms.h"
429
430 \f
431
432 /* Represent one symbol name; a variable, constant, function or typedef. */
433
434 /* Different name domains for symbols. Looking up a symbol specifies a
435 domain and ignores symbol definitions in other name domains. */
436
437 typedef enum domain_enum_tag
438 {
439 /* UNDEF_DOMAIN is used when a domain has not been discovered or
440 none of the following apply. This usually indicates an error either
441 in the symbol information or in gdb's handling of symbols. */
442
443 UNDEF_DOMAIN,
444
445 /* VAR_DOMAIN is the usual domain. In C, this contains variables,
446 function names, typedef names and enum type values. */
447
448 VAR_DOMAIN,
449
450 /* STRUCT_DOMAIN is used in C to hold struct, union and enum type names.
451 Thus, if `struct foo' is used in a C program, it produces a symbol named
452 `foo' in the STRUCT_DOMAIN. */
453
454 STRUCT_DOMAIN,
455
456 /* MODULE_DOMAIN is used in Fortran to hold module type names. */
457
458 MODULE_DOMAIN,
459
460 /* LABEL_DOMAIN may be used for names of labels (for gotos). */
461
462 LABEL_DOMAIN,
463
464 /* Fortran common blocks. Their naming must be separate from VAR_DOMAIN.
465 They also always use LOC_COMMON_BLOCK. */
466 COMMON_BLOCK_DOMAIN,
467
468 /* This must remain last. */
469 NR_DOMAINS
470 } domain_enum;
471
472 /* The number of bits in a symbol used to represent the domain. */
473
474 #define SYMBOL_DOMAIN_BITS 3
475 gdb_static_assert (NR_DOMAINS <= (1 << SYMBOL_DOMAIN_BITS));
476
477 extern const char *domain_name (domain_enum);
478
479 /* Searching domains, used for `search_symbols'. Element numbers are
480 hardcoded in GDB, check all enum uses before changing it. */
481
482 enum search_domain
483 {
484 /* Everything in VAR_DOMAIN minus FUNCTIONS_DOMAIN and
485 TYPES_DOMAIN. */
486 VARIABLES_DOMAIN = 0,
487
488 /* All functions -- for some reason not methods, though. */
489 FUNCTIONS_DOMAIN = 1,
490
491 /* All defined types */
492 TYPES_DOMAIN = 2,
493
494 /* Any type. */
495 ALL_DOMAIN = 3
496 };
497
498 extern const char *search_domain_name (enum search_domain);
499
500 /* An address-class says where to find the value of a symbol. */
501
502 enum address_class
503 {
504 /* Not used; catches errors. */
505
506 LOC_UNDEF,
507
508 /* Value is constant int SYMBOL_VALUE, host byteorder. */
509
510 LOC_CONST,
511
512 /* Value is at fixed address SYMBOL_VALUE_ADDRESS. */
513
514 LOC_STATIC,
515
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).
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). */
527
528 LOC_REGISTER,
529
530 /* It's an argument; the value is at SYMBOL_VALUE offset in arglist. */
531
532 LOC_ARG,
533
534 /* Value address is at SYMBOL_VALUE offset in arglist. */
535
536 LOC_REF_ARG,
537
538 /* Value is in specified register. Just like LOC_REGISTER except the
539 register holds the address of the argument instead of the argument
540 itself. This is currently used for the passing of structs and unions
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. */
543
544 LOC_REGPARM_ADDR,
545
546 /* Value is a local variable at SYMBOL_VALUE offset in stack frame. */
547
548 LOC_LOCAL,
549
550 /* Value not used; definition in SYMBOL_TYPE. Symbols in the domain
551 STRUCT_DOMAIN all have this class. */
552
553 LOC_TYPEDEF,
554
555 /* Value is address SYMBOL_VALUE_ADDRESS in the code. */
556
557 LOC_LABEL,
558
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
561 of the block. Function names have this class. */
562
563 LOC_BLOCK,
564
565 /* Value is a constant byte-sequence pointed to by SYMBOL_VALUE_BYTES, in
566 target byte order. */
567
568 LOC_CONST_BYTES,
569
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
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
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. */
591
592 LOC_UNRESOLVED,
593
594 /* The variable does not actually exist in the program.
595 The value is ignored. */
596
597 LOC_OPTIMIZED_OUT,
598
599 /* The variable's address is computed by a set of location
600 functions (see "struct symbol_computed_ops" below). */
601 LOC_COMPUTED,
602
603 /* The variable uses general_symbol_info->value->common_block field.
604 It also always uses COMMON_BLOCK_DOMAIN. */
605 LOC_COMMON_BLOCK,
606
607 /* Not used, just notes the boundary of the enum. */
608 LOC_FINAL_VALUE
609 };
610
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
618 gdb_static_assert (LOC_FINAL_VALUE <= (1 << SYMBOL_ACLASS_BITS));
619
620 /* The methods needed to implement LOC_COMPUTED. These methods can
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
625 struct symbol_computed_ops
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
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
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
647 SYMBOL, in the context of ADDR. */
648 void (*describe_location) (struct symbol * symbol, CORE_ADDR addr,
649 struct ui_file * stream);
650
651 /* Non-zero if this symbol's address computation is dependent on PC. */
652 unsigned char location_has_loclist;
653
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
661 void (*tracepoint_var_ref) (struct symbol *symbol, struct gdbarch *gdbarch,
662 struct agent_expr *ax, struct axs_value *value);
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
678 };
679
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
684 struct 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);
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);
711 };
712
713 /* Functions used with LOC_REGISTER and LOC_REGPARM_ADDR. */
714
715 struct symbol_register_ops
716 {
717 int (*register_number) (struct symbol *symbol, struct gdbarch *gdbarch);
718 };
719
720 /* Objects of this type are used to find the address class and the
721 various computed ops vectors of a symbol. */
722
723 struct 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
737 /* This structure is space critical. See space comments at the top. */
738
739 struct symbol
740 {
741
742 /* The general symbol info required for all types of symbols. */
743
744 struct general_symbol_info ginfo;
745
746 /* Data type of value */
747
748 struct type *type;
749
750 /* The owner of this symbol.
751 Which one to use is defined by symbol.is_objfile_owned. */
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;
763
764 /* Domain code. */
765
766 ENUM_BITFIELD(domain_enum_tag) domain : SYMBOL_DOMAIN_BITS;
767
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. */
771
772 unsigned int aclass_index : SYMBOL_ACLASS_BITS;
773
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
779 /* Whether this is an argument. */
780
781 unsigned is_argument : 1;
782
783 /* Whether this is an inlined function (class LOC_BLOCK only). */
784 unsigned is_inlined : 1;
785
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
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.
795 If this symbol is arch-owned, LINE shall be zero.
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? */
800
801 unsigned short line;
802
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. */
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
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;
816
817 struct symbol *hash_next;
818 };
819
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
823 struct 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
833 extern const struct symbol_impl *symbol_impls;
834
835 /* Note: There is no accessor macro for symbol.owner because it is
836 "private". */
837
838 #define SYMBOL_DOMAIN(symbol) (symbol)->domain
839 #define SYMBOL_IMPL(symbol) (symbol_impls[(symbol)->aclass_index])
840 #define SYMBOL_ACLASS_INDEX(symbol) (symbol)->aclass_index
841 #define SYMBOL_CLASS(symbol) (SYMBOL_IMPL (symbol).aclass)
842 #define SYMBOL_OBJFILE_OWNED(symbol) ((symbol)->is_objfile_owned)
843 #define SYMBOL_IS_ARGUMENT(symbol) (symbol)->is_argument
844 #define SYMBOL_INLINED(symbol) (symbol)->is_inlined
845 #define SYMBOL_IS_CPLUS_TEMPLATE_FUNCTION(symbol) \
846 (symbol)->is_cplus_template_function
847 #define SYMBOL_TYPE(symbol) (symbol)->type
848 #define SYMBOL_LINE(symbol) (symbol)->line
849 #define SYMBOL_COMPUTED_OPS(symbol) (SYMBOL_IMPL (symbol).ops_computed)
850 #define SYMBOL_BLOCK_OPS(symbol) (SYMBOL_IMPL (symbol).ops_block)
851 #define SYMBOL_REGISTER_OPS(symbol) (SYMBOL_IMPL (symbol).ops_register)
852 #define SYMBOL_LOCATION_BATON(symbol) (symbol)->aux_value
853
854 extern int register_symbol_computed_impl (enum address_class,
855 const struct symbol_computed_ops *);
856
857 extern int register_symbol_block_impl (enum address_class aclass,
858 const struct symbol_block_ops *ops);
859
860 extern int register_symbol_register_impl (enum address_class,
861 const struct symbol_register_ops *);
862
863 /* Return the OBJFILE of SYMBOL.
864 It is an error to call this if symbol.is_objfile_owned is false, which
865 only happens for architecture-provided types. */
866
867 extern struct objfile *symbol_objfile (const struct symbol *symbol);
868
869 /* Return the ARCH of SYMBOL. */
870
871 extern struct gdbarch *symbol_arch (const struct symbol *symbol);
872
873 /* Return the SYMTAB of SYMBOL.
874 It is an error to call this if symbol.is_objfile_owned is false, which
875 only happens for architecture-provided types. */
876
877 extern struct symtab *symbol_symtab (const struct symbol *symbol);
878
879 /* Set the symtab of SYMBOL to SYMTAB.
880 It is an error to call this if symbol.is_objfile_owned is false, which
881 only happens for architecture-provided types. */
882
883 extern void symbol_set_symtab (struct symbol *symbol, struct symtab *symtab);
884
885 /* An instance of this type is used to represent a C++ template
886 function. It includes a "struct symbol" as a kind of base class;
887 users downcast to "struct template_symbol *" when needed. A symbol
888 is really of this type iff SYMBOL_IS_CPLUS_TEMPLATE_FUNCTION is
889 true. */
890
891 struct template_symbol
892 {
893 /* The base class. */
894 struct symbol base;
895
896 /* The number of template arguments. */
897 int n_template_arguments;
898
899 /* The template arguments. This is an array with
900 N_TEMPLATE_ARGUMENTS elements. */
901 struct symbol **template_arguments;
902 };
903
904 \f
905 /* Each item represents a line-->pc (or the reverse) mapping. This is
906 somewhat more wasteful of space than one might wish, but since only
907 the files which are actually debugged are read in to core, we don't
908 waste much space. */
909
910 struct linetable_entry
911 {
912 int line;
913 CORE_ADDR pc;
914 };
915
916 /* The order of entries in the linetable is significant. They should
917 be sorted by increasing values of the pc field. If there is more than
918 one entry for a given pc, then I'm not sure what should happen (and
919 I not sure whether we currently handle it the best way).
920
921 Example: a C for statement generally looks like this
922
923 10 0x100 - for the init/test part of a for stmt.
924 20 0x200
925 30 0x300
926 10 0x400 - for the increment part of a for stmt.
927
928 If an entry has a line number of zero, it marks the start of a PC
929 range for which no line number information is available. It is
930 acceptable, though wasteful of table space, for such a range to be
931 zero length. */
932
933 struct linetable
934 {
935 int nitems;
936
937 /* Actually NITEMS elements. If you don't like this use of the
938 `struct hack', you can shove it up your ANSI (seriously, if the
939 committee tells us how to do it, we can probably go along). */
940 struct linetable_entry item[1];
941 };
942
943 /* How to relocate the symbols from each section in a symbol file.
944 Each struct contains an array of offsets.
945 The ordering and meaning of the offsets is file-type-dependent;
946 typically it is indexed by section numbers or symbol types or
947 something like that.
948
949 To give us flexibility in changing the internal representation
950 of these offsets, the ANOFFSET macro must be used to insert and
951 extract offset values in the struct. */
952
953 struct section_offsets
954 {
955 CORE_ADDR offsets[1]; /* As many as needed. */
956 };
957
958 #define ANOFFSET(secoff, whichone) \
959 ((whichone == -1) \
960 ? (internal_error (__FILE__, __LINE__, \
961 _("Section index is uninitialized")), -1) \
962 : secoff->offsets[whichone])
963
964 /* The size of a section_offsets table for N sections. */
965 #define SIZEOF_N_SECTION_OFFSETS(n) \
966 (sizeof (struct section_offsets) \
967 + sizeof (((struct section_offsets *) 0)->offsets) * ((n)-1))
968
969 /* Each source file or header is represented by a struct symtab.
970 The name "symtab" is historical, another name for it is "filetab".
971 These objects are chained through the `next' field. */
972
973 struct symtab
974 {
975 /* Unordered chain of all filetabs in the compunit, with the exception
976 that the "main" source file is the first entry in the list. */
977
978 struct symtab *next;
979
980 /* Backlink to containing compunit symtab. */
981
982 struct compunit_symtab *compunit_symtab;
983
984 /* Table mapping core addresses to line numbers for this file.
985 Can be NULL if none. Never shared between different symtabs. */
986
987 struct linetable *linetable;
988
989 /* Name of this source file. This pointer is never NULL. */
990
991 const char *filename;
992
993 /* Total number of lines found in source file. */
994
995 int nlines;
996
997 /* line_charpos[N] is the position of the (N-1)th line of the
998 source file. "position" means something we can lseek() to; it
999 is not guaranteed to be useful any other way. */
1000
1001 int *line_charpos;
1002
1003 /* Language of this source file. */
1004
1005 enum language language;
1006
1007 /* Full name of file as found by searching the source path.
1008 NULL if not yet known. */
1009
1010 char *fullname;
1011 };
1012
1013 #define SYMTAB_COMPUNIT(symtab) ((symtab)->compunit_symtab)
1014 #define SYMTAB_LINETABLE(symtab) ((symtab)->linetable)
1015 #define SYMTAB_LANGUAGE(symtab) ((symtab)->language)
1016 #define SYMTAB_BLOCKVECTOR(symtab) \
1017 COMPUNIT_BLOCKVECTOR (SYMTAB_COMPUNIT (symtab))
1018 #define SYMTAB_OBJFILE(symtab) \
1019 COMPUNIT_OBJFILE (SYMTAB_COMPUNIT (symtab))
1020 #define SYMTAB_PSPACE(symtab) (SYMTAB_OBJFILE (symtab)->pspace)
1021 #define SYMTAB_DIRNAME(symtab) \
1022 COMPUNIT_DIRNAME (SYMTAB_COMPUNIT (symtab))
1023
1024 typedef struct symtab *symtab_ptr;
1025 DEF_VEC_P (symtab_ptr);
1026
1027 /* Compunit symtabs contain the actual "symbol table", aka blockvector, as well
1028 as the list of all source files (what gdb has historically associated with
1029 the term "symtab").
1030 Additional information is recorded here that is common to all symtabs in a
1031 compilation unit (DWARF or otherwise).
1032
1033 Example:
1034 For the case of a program built out of these files:
1035
1036 foo.c
1037 foo1.h
1038 foo2.h
1039 bar.c
1040 foo1.h
1041 bar.h
1042
1043 This is recorded as:
1044
1045 objfile -> foo.c(cu) -> bar.c(cu) -> NULL
1046 | |
1047 v v
1048 foo.c bar.c
1049 | |
1050 v v
1051 foo1.h foo1.h
1052 | |
1053 v v
1054 foo2.h bar.h
1055 | |
1056 v v
1057 NULL NULL
1058
1059 where "foo.c(cu)" and "bar.c(cu)" are struct compunit_symtab objects,
1060 and the files foo.c, etc. are struct symtab objects. */
1061
1062 struct compunit_symtab
1063 {
1064 /* Unordered chain of all compunit symtabs of this objfile. */
1065 struct compunit_symtab *next;
1066
1067 /* Object file from which this symtab information was read. */
1068 struct objfile *objfile;
1069
1070 /* Name of the symtab.
1071 This is *not* intended to be a usable filename, and is
1072 for debugging purposes only. */
1073 const char *name;
1074
1075 /* Unordered list of file symtabs, except that by convention the "main"
1076 source file (e.g., .c, .cc) is guaranteed to be first.
1077 Each symtab is a file, either the "main" source file (e.g., .c, .cc)
1078 or header (e.g., .h). */
1079 struct symtab *filetabs;
1080
1081 /* Last entry in FILETABS list.
1082 Subfiles are added to the end of the list so they accumulate in order,
1083 with the main source subfile living at the front.
1084 The main reason is so that the main source file symtab is at the head
1085 of the list, and the rest appear in order for debugging convenience. */
1086 struct symtab *last_filetab;
1087
1088 /* Non-NULL string that identifies the format of the debugging information,
1089 such as "stabs", "dwarf 1", "dwarf 2", "coff", etc. This is mostly useful
1090 for automated testing of gdb but may also be information that is
1091 useful to the user. */
1092 const char *debugformat;
1093
1094 /* String of producer version information, or NULL if we don't know. */
1095 const char *producer;
1096
1097 /* Directory in which it was compiled, or NULL if we don't know. */
1098 const char *dirname;
1099
1100 /* List of all symbol scope blocks for this symtab. It is shared among
1101 all symtabs in a given compilation unit. */
1102 const struct blockvector *blockvector;
1103
1104 /* Section in objfile->section_offsets for the blockvector and
1105 the linetable. Probably always SECT_OFF_TEXT. */
1106 int block_line_section;
1107
1108 /* Symtab has been compiled with both optimizations and debug info so that
1109 GDB may stop skipping prologues as variables locations are valid already
1110 at function entry points. */
1111 unsigned int locations_valid : 1;
1112
1113 /* DWARF unwinder for this CU is valid even for epilogues (PC at the return
1114 instruction). This is supported by GCC since 4.5.0. */
1115 unsigned int epilogue_unwind_valid : 1;
1116
1117 /* struct call_site entries for this compilation unit or NULL. */
1118 htab_t call_site_htab;
1119
1120 /* The macro table for this symtab. Like the blockvector, this
1121 is shared between different symtabs in a given compilation unit.
1122 It's debatable whether it *should* be shared among all the symtabs in
1123 the given compilation unit, but it currently is. */
1124 struct macro_table *macro_table;
1125
1126 /* If non-NULL, then this points to a NULL-terminated vector of
1127 included compunits. When searching the static or global
1128 block of this compunit, the corresponding block of all
1129 included compunits will also be searched. Note that this
1130 list must be flattened -- the symbol reader is responsible for
1131 ensuring that this vector contains the transitive closure of all
1132 included compunits. */
1133 struct compunit_symtab **includes;
1134
1135 /* If this is an included compunit, this points to one includer
1136 of the table. This user is considered the canonical compunit
1137 containing this one. An included compunit may itself be
1138 included by another. */
1139 struct compunit_symtab *user;
1140 };
1141
1142 #define COMPUNIT_OBJFILE(cust) ((cust)->objfile)
1143 #define COMPUNIT_FILETABS(cust) ((cust)->filetabs)
1144 #define COMPUNIT_DEBUGFORMAT(cust) ((cust)->debugformat)
1145 #define COMPUNIT_PRODUCER(cust) ((cust)->producer)
1146 #define COMPUNIT_DIRNAME(cust) ((cust)->dirname)
1147 #define COMPUNIT_BLOCKVECTOR(cust) ((cust)->blockvector)
1148 #define COMPUNIT_BLOCK_LINE_SECTION(cust) ((cust)->block_line_section)
1149 #define COMPUNIT_LOCATIONS_VALID(cust) ((cust)->locations_valid)
1150 #define COMPUNIT_EPILOGUE_UNWIND_VALID(cust) ((cust)->epilogue_unwind_valid)
1151 #define COMPUNIT_CALL_SITE_HTAB(cust) ((cust)->call_site_htab)
1152 #define COMPUNIT_MACRO_TABLE(cust) ((cust)->macro_table)
1153
1154 /* Iterate over all file tables (struct symtab) within a compunit. */
1155
1156 #define ALL_COMPUNIT_FILETABS(cu, s) \
1157 for ((s) = (cu) -> filetabs; (s) != NULL; (s) = (s) -> next)
1158
1159 /* Return the primary symtab of CUST. */
1160
1161 extern struct symtab *
1162 compunit_primary_filetab (const struct compunit_symtab *cust);
1163
1164 /* Return the language of CUST. */
1165
1166 extern enum language compunit_language (const struct compunit_symtab *cust);
1167
1168 typedef struct compunit_symtab *compunit_symtab_ptr;
1169 DEF_VEC_P (compunit_symtab_ptr);
1170
1171 \f
1172
1173 /* The virtual function table is now an array of structures which have the
1174 form { int16 offset, delta; void *pfn; }.
1175
1176 In normal virtual function tables, OFFSET is unused.
1177 DELTA is the amount which is added to the apparent object's base
1178 address in order to point to the actual object to which the
1179 virtual function should be applied.
1180 PFN is a pointer to the virtual function.
1181
1182 Note that this macro is g++ specific (FIXME). */
1183
1184 #define VTBL_FNADDR_OFFSET 2
1185
1186 /* External variables and functions for the objects described above. */
1187
1188 /* True if we are nested inside psymtab_to_symtab. */
1189
1190 extern int currently_reading_symtab;
1191
1192 /* symtab.c lookup functions */
1193
1194 extern const char multiple_symbols_ask[];
1195 extern const char multiple_symbols_all[];
1196 extern const char multiple_symbols_cancel[];
1197
1198 const char *multiple_symbols_select_mode (void);
1199
1200 int symbol_matches_domain (enum language symbol_language,
1201 domain_enum symbol_domain,
1202 domain_enum domain);
1203
1204 /* lookup a symbol table by source file name. */
1205
1206 extern struct symtab *lookup_symtab (const char *);
1207
1208 /* An object of this type is passed as the 'is_a_field_of_this'
1209 argument to lookup_symbol and lookup_symbol_in_language. */
1210
1211 struct field_of_this_result
1212 {
1213 /* The type in which the field was found. If this is NULL then the
1214 symbol was not found in 'this'. If non-NULL, then one of the
1215 other fields will be non-NULL as well. */
1216
1217 struct type *type;
1218
1219 /* If the symbol was found as an ordinary field of 'this', then this
1220 is non-NULL and points to the particular field. */
1221
1222 struct field *field;
1223
1224 /* If the symbol was found as a function field of 'this', then this
1225 is non-NULL and points to the particular field. */
1226
1227 struct fn_fieldlist *fn_field;
1228 };
1229
1230 /* Find the definition for a specified symbol name NAME
1231 in domain DOMAIN in language LANGUAGE, visible from lexical block BLOCK
1232 if non-NULL or from global/static blocks if BLOCK is NULL.
1233 Returns the struct symbol pointer, or NULL if no symbol is found.
1234 C++: if IS_A_FIELD_OF_THIS is non-NULL on entry, check to see if
1235 NAME is a field of the current implied argument `this'. If so fill in the
1236 fields of IS_A_FIELD_OF_THIS, otherwise the fields are set to NULL.
1237 The symbol's section is fixed up if necessary. */
1238
1239 extern struct block_symbol
1240 lookup_symbol_in_language (const char *,
1241 const struct block *,
1242 const domain_enum,
1243 enum language,
1244 struct field_of_this_result *);
1245
1246 /* Same as lookup_symbol_in_language, but using the current language. */
1247
1248 extern struct block_symbol lookup_symbol (const char *,
1249 const struct block *,
1250 const domain_enum,
1251 struct field_of_this_result *);
1252
1253 /* A default version of lookup_symbol_nonlocal for use by languages
1254 that can't think of anything better to do.
1255 This implements the C lookup rules. */
1256
1257 extern struct block_symbol
1258 basic_lookup_symbol_nonlocal (const struct language_defn *langdef,
1259 const char *,
1260 const struct block *,
1261 const domain_enum);
1262
1263 /* Some helper functions for languages that need to write their own
1264 lookup_symbol_nonlocal functions. */
1265
1266 /* Lookup a symbol in the static block associated to BLOCK, if there
1267 is one; do nothing if BLOCK is NULL or a global block.
1268 Upon success fixes up the symbol's section if necessary. */
1269
1270 extern struct block_symbol
1271 lookup_symbol_in_static_block (const char *name,
1272 const struct block *block,
1273 const domain_enum domain);
1274
1275 /* Search all static file-level symbols for NAME from DOMAIN.
1276 Upon success fixes up the symbol's section if necessary. */
1277
1278 extern struct block_symbol lookup_static_symbol (const char *name,
1279 const domain_enum domain);
1280
1281 /* Lookup a symbol in all files' global blocks.
1282
1283 If BLOCK is non-NULL then it is used for two things:
1284 1) If a target-specific lookup routine for libraries exists, then use the
1285 routine for the objfile of BLOCK, and
1286 2) The objfile of BLOCK is used to assist in determining the search order
1287 if the target requires it.
1288 See gdbarch_iterate_over_objfiles_in_search_order.
1289
1290 Upon success fixes up the symbol's section if necessary. */
1291
1292 extern struct block_symbol
1293 lookup_global_symbol (const char *name,
1294 const struct block *block,
1295 const domain_enum domain);
1296
1297 /* Lookup a symbol in block BLOCK.
1298 Upon success fixes up the symbol's section if necessary. */
1299
1300 extern struct symbol *
1301 lookup_symbol_in_block (const char *name,
1302 const struct block *block,
1303 const domain_enum domain);
1304
1305 /* Look up the `this' symbol for LANG in BLOCK. Return the symbol if
1306 found, or NULL if not found. */
1307
1308 extern struct block_symbol
1309 lookup_language_this (const struct language_defn *lang,
1310 const struct block *block);
1311
1312 /* Lookup a [struct, union, enum] by name, within a specified block. */
1313
1314 extern struct type *lookup_struct (const char *, const struct block *);
1315
1316 extern struct type *lookup_union (const char *, const struct block *);
1317
1318 extern struct type *lookup_enum (const char *, const struct block *);
1319
1320 /* from blockframe.c: */
1321
1322 /* lookup the function symbol corresponding to the address. */
1323
1324 extern struct symbol *find_pc_function (CORE_ADDR);
1325
1326 /* lookup the function corresponding to the address and section. */
1327
1328 extern struct symbol *find_pc_sect_function (CORE_ADDR, struct obj_section *);
1329
1330 extern int find_pc_partial_function_gnu_ifunc (CORE_ADDR pc, const char **name,
1331 CORE_ADDR *address,
1332 CORE_ADDR *endaddr,
1333 int *is_gnu_ifunc_p);
1334
1335 /* lookup function from address, return name, start addr and end addr. */
1336
1337 extern int find_pc_partial_function (CORE_ADDR, const char **, CORE_ADDR *,
1338 CORE_ADDR *);
1339
1340 extern void clear_pc_function_cache (void);
1341
1342 /* Expand symtab containing PC, SECTION if not already expanded. */
1343
1344 extern void expand_symtab_containing_pc (CORE_ADDR, struct obj_section *);
1345
1346 /* lookup full symbol table by address. */
1347
1348 extern struct compunit_symtab *find_pc_compunit_symtab (CORE_ADDR);
1349
1350 /* lookup full symbol table by address and section. */
1351
1352 extern struct compunit_symtab *
1353 find_pc_sect_compunit_symtab (CORE_ADDR, struct obj_section *);
1354
1355 extern int find_pc_line_pc_range (CORE_ADDR, CORE_ADDR *, CORE_ADDR *);
1356
1357 extern void reread_symbols (void);
1358
1359 /* Look up a type named NAME in STRUCT_DOMAIN in the current language.
1360 The type returned must not be opaque -- i.e., must have at least one field
1361 defined. */
1362
1363 extern struct type *lookup_transparent_type (const char *);
1364
1365 extern struct type *basic_lookup_transparent_type (const char *);
1366
1367 /* Macro for name of symbol to indicate a file compiled with gcc. */
1368 #ifndef GCC_COMPILED_FLAG_SYMBOL
1369 #define GCC_COMPILED_FLAG_SYMBOL "gcc_compiled."
1370 #endif
1371
1372 /* Macro for name of symbol to indicate a file compiled with gcc2. */
1373 #ifndef GCC2_COMPILED_FLAG_SYMBOL
1374 #define GCC2_COMPILED_FLAG_SYMBOL "gcc2_compiled."
1375 #endif
1376
1377 extern int in_gnu_ifunc_stub (CORE_ADDR pc);
1378
1379 /* Functions for resolving STT_GNU_IFUNC symbols which are implemented only
1380 for ELF symbol files. */
1381
1382 struct gnu_ifunc_fns
1383 {
1384 /* See elf_gnu_ifunc_resolve_addr for its real implementation. */
1385 CORE_ADDR (*gnu_ifunc_resolve_addr) (struct gdbarch *gdbarch, CORE_ADDR pc);
1386
1387 /* See elf_gnu_ifunc_resolve_name for its real implementation. */
1388 int (*gnu_ifunc_resolve_name) (const char *function_name,
1389 CORE_ADDR *function_address_p);
1390
1391 /* See elf_gnu_ifunc_resolver_stop for its real implementation. */
1392 void (*gnu_ifunc_resolver_stop) (struct breakpoint *b);
1393
1394 /* See elf_gnu_ifunc_resolver_return_stop for its real implementation. */
1395 void (*gnu_ifunc_resolver_return_stop) (struct breakpoint *b);
1396 };
1397
1398 #define gnu_ifunc_resolve_addr gnu_ifunc_fns_p->gnu_ifunc_resolve_addr
1399 #define gnu_ifunc_resolve_name gnu_ifunc_fns_p->gnu_ifunc_resolve_name
1400 #define gnu_ifunc_resolver_stop gnu_ifunc_fns_p->gnu_ifunc_resolver_stop
1401 #define gnu_ifunc_resolver_return_stop \
1402 gnu_ifunc_fns_p->gnu_ifunc_resolver_return_stop
1403
1404 extern const struct gnu_ifunc_fns *gnu_ifunc_fns_p;
1405
1406 extern CORE_ADDR find_solib_trampoline_target (struct frame_info *, CORE_ADDR);
1407
1408 struct symtab_and_line
1409 {
1410 /* The program space of this sal. */
1411 struct program_space *pspace;
1412
1413 struct symtab *symtab;
1414 struct obj_section *section;
1415 /* Line number. Line numbers start at 1 and proceed through symtab->nlines.
1416 0 is never a valid line number; it is used to indicate that line number
1417 information is not available. */
1418 int line;
1419
1420 CORE_ADDR pc;
1421 CORE_ADDR end;
1422 int explicit_pc;
1423 int explicit_line;
1424
1425 /* The probe associated with this symtab_and_line. */
1426 struct probe *probe;
1427 /* If PROBE is not NULL, then this is the objfile in which the probe
1428 originated. */
1429 struct objfile *objfile;
1430 };
1431
1432 extern void init_sal (struct symtab_and_line *sal);
1433
1434 struct symtabs_and_lines
1435 {
1436 struct symtab_and_line *sals;
1437 int nelts;
1438 };
1439 \f
1440
1441 /* Given a pc value, return line number it is in. Second arg nonzero means
1442 if pc is on the boundary use the previous statement's line number. */
1443
1444 extern struct symtab_and_line find_pc_line (CORE_ADDR, int);
1445
1446 /* Same function, but specify a section as well as an address. */
1447
1448 extern struct symtab_and_line find_pc_sect_line (CORE_ADDR,
1449 struct obj_section *, int);
1450
1451 /* Wrapper around find_pc_line to just return the symtab. */
1452
1453 extern struct symtab *find_pc_line_symtab (CORE_ADDR);
1454
1455 /* Given a symtab and line number, return the pc there. */
1456
1457 extern int find_line_pc (struct symtab *, int, CORE_ADDR *);
1458
1459 extern int find_line_pc_range (struct symtab_and_line, CORE_ADDR *,
1460 CORE_ADDR *);
1461
1462 extern void resolve_sal_pc (struct symtab_and_line *);
1463
1464 /* solib.c */
1465
1466 extern void clear_solib (void);
1467
1468 /* source.c */
1469
1470 extern int identify_source_line (struct symtab *, int, int, CORE_ADDR);
1471
1472 /* Flags passed as 4th argument to print_source_lines. */
1473
1474 enum print_source_lines_flag
1475 {
1476 /* Do not print an error message. */
1477 PRINT_SOURCE_LINES_NOERROR = (1 << 0),
1478
1479 /* Print the filename in front of the source lines. */
1480 PRINT_SOURCE_LINES_FILENAME = (1 << 1)
1481 };
1482 DEF_ENUM_FLAGS_TYPE (enum print_source_lines_flag, print_source_lines_flags);
1483
1484 extern void print_source_lines (struct symtab *, int, int,
1485 print_source_lines_flags);
1486
1487 extern void forget_cached_source_info_for_objfile (struct objfile *);
1488 extern void forget_cached_source_info (void);
1489
1490 extern void select_source_symtab (struct symtab *);
1491
1492 extern VEC (char_ptr) *default_make_symbol_completion_list_break_on
1493 (const char *text, const char *word, const char *break_on,
1494 enum type_code code);
1495 extern VEC (char_ptr) *default_make_symbol_completion_list (const char *,
1496 const char *,
1497 enum type_code);
1498 extern VEC (char_ptr) *make_symbol_completion_list (const char *, const char *);
1499 extern VEC (char_ptr) *make_symbol_completion_type (const char *, const char *,
1500 enum type_code);
1501 extern VEC (char_ptr) *make_symbol_completion_list_fn (struct cmd_list_element *,
1502 const char *,
1503 const char *);
1504
1505 extern VEC (char_ptr) *make_file_symbol_completion_list (const char *,
1506 const char *,
1507 const char *);
1508
1509 extern VEC (char_ptr) *make_source_files_completion_list (const char *,
1510 const char *);
1511
1512 /* symtab.c */
1513
1514 int matching_obj_sections (struct obj_section *, struct obj_section *);
1515
1516 extern struct symtab *find_line_symtab (struct symtab *, int, int *, int *);
1517
1518 extern struct symtab_and_line find_function_start_sal (struct symbol *sym,
1519 int);
1520
1521 extern void skip_prologue_sal (struct symtab_and_line *);
1522
1523 /* symtab.c */
1524
1525 extern CORE_ADDR skip_prologue_using_sal (struct gdbarch *gdbarch,
1526 CORE_ADDR func_addr);
1527
1528 extern struct symbol *fixup_symbol_section (struct symbol *,
1529 struct objfile *);
1530
1531 /* Symbol searching */
1532 /* Note: struct symbol_search, search_symbols, et.al. are declared here,
1533 instead of making them local to symtab.c, for gdbtk's sake. */
1534
1535 /* When using search_symbols, a list of the following structs is returned.
1536 Callers must free the search list using free_search_symbols! */
1537 struct symbol_search
1538 {
1539 /* The block in which the match was found. Could be, for example,
1540 STATIC_BLOCK or GLOBAL_BLOCK. */
1541 int block;
1542
1543 /* Information describing what was found.
1544
1545 If symbol is NOT NULL, then information was found for this match. */
1546 struct symbol *symbol;
1547
1548 /* If msymbol is non-null, then a match was made on something for
1549 which only minimal_symbols exist. */
1550 struct bound_minimal_symbol msymbol;
1551
1552 /* A link to the next match, or NULL for the end. */
1553 struct symbol_search *next;
1554 };
1555
1556 extern void search_symbols (const char *, enum search_domain, int,
1557 const char **, struct symbol_search **);
1558 extern void free_search_symbols (struct symbol_search *);
1559 extern struct cleanup *make_cleanup_free_search_symbols (struct symbol_search
1560 **);
1561
1562 /* The name of the ``main'' function.
1563 FIXME: cagney/2001-03-20: Can't make main_name() const since some
1564 of the calling code currently assumes that the string isn't
1565 const. */
1566 extern /*const */ char *main_name (void);
1567 extern enum language main_language (void);
1568
1569 /* Lookup symbol NAME from DOMAIN in MAIN_OBJFILE's global blocks.
1570 This searches MAIN_OBJFILE as well as any associated separate debug info
1571 objfiles of MAIN_OBJFILE.
1572 Upon success fixes up the symbol's section if necessary. */
1573
1574 extern struct block_symbol
1575 lookup_global_symbol_from_objfile (struct objfile *main_objfile,
1576 const char *name,
1577 const domain_enum domain);
1578
1579 /* Return 1 if the supplied producer string matches the ARM RealView
1580 compiler (armcc). */
1581 int producer_is_realview (const char *producer);
1582
1583 void fixup_section (struct general_symbol_info *ginfo,
1584 CORE_ADDR addr, struct objfile *objfile);
1585
1586 /* Look up objfile containing BLOCK. */
1587
1588 struct objfile *lookup_objfile_from_block (const struct block *block);
1589
1590 extern unsigned int symtab_create_debug;
1591
1592 extern unsigned int symbol_lookup_debug;
1593
1594 extern int basenames_may_differ;
1595
1596 int compare_filenames_for_search (const char *filename,
1597 const char *search_name);
1598
1599 int iterate_over_some_symtabs (const char *name,
1600 const char *real_path,
1601 int (*callback) (struct symtab *symtab,
1602 void *data),
1603 void *data,
1604 struct compunit_symtab *first,
1605 struct compunit_symtab *after_last);
1606
1607 void iterate_over_symtabs (const char *name,
1608 int (*callback) (struct symtab *symtab,
1609 void *data),
1610 void *data);
1611
1612 DEF_VEC_I (CORE_ADDR);
1613
1614 VEC (CORE_ADDR) *find_pcs_for_symtab_line (struct symtab *symtab, int line,
1615 struct linetable_entry **best_entry);
1616
1617 /* Callback for LA_ITERATE_OVER_SYMBOLS. The callback will be called
1618 once per matching symbol SYM, with DATA being the argument of the
1619 same name that was passed to LA_ITERATE_OVER_SYMBOLS. The callback
1620 should return nonzero to indicate that LA_ITERATE_OVER_SYMBOLS
1621 should continue iterating, or zero to indicate that the iteration
1622 should end. */
1623
1624 typedef int (symbol_found_callback_ftype) (struct symbol *sym, void *data);
1625
1626 void iterate_over_symbols (const struct block *block, const char *name,
1627 const domain_enum domain,
1628 symbol_found_callback_ftype *callback,
1629 void *data);
1630
1631 struct cleanup *demangle_for_lookup (const char *name, enum language lang,
1632 const char **result_name);
1633
1634 struct symbol *allocate_symbol (struct objfile *);
1635
1636 void initialize_objfile_symbol (struct symbol *);
1637
1638 struct template_symbol *allocate_template_symbol (struct objfile *);
1639
1640 #endif /* !defined(SYMTAB_H) */