Allow ARC target to be configured with --with-cpu=<cpu-name>.
[external/binutils.git] / gdb / symtab.h
1 /* Symbol table definitions for GDB.
2
3    Copyright (C) 1986-2016 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 /* For convenience.  All fields are NULL.  This means "there is no
836    symbol".  */
837 extern const struct block_symbol null_block_symbol;
838
839 /* Note: There is no accessor macro for symbol.owner because it is
840    "private".  */
841
842 #define SYMBOL_DOMAIN(symbol)   (symbol)->domain
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)
846 #define SYMBOL_OBJFILE_OWNED(symbol)    ((symbol)->is_objfile_owned)
847 #define SYMBOL_IS_ARGUMENT(symbol)      (symbol)->is_argument
848 #define SYMBOL_INLINED(symbol)          (symbol)->is_inlined
849 #define SYMBOL_IS_CPLUS_TEMPLATE_FUNCTION(symbol) \
850   (symbol)->is_cplus_template_function
851 #define SYMBOL_TYPE(symbol)             (symbol)->type
852 #define SYMBOL_LINE(symbol)             (symbol)->line
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)
856 #define SYMBOL_LOCATION_BATON(symbol)   (symbol)->aux_value
857
858 extern int register_symbol_computed_impl (enum address_class,
859                                           const struct symbol_computed_ops *);
860
861 extern int register_symbol_block_impl (enum address_class aclass,
862                                        const struct symbol_block_ops *ops);
863
864 extern int register_symbol_register_impl (enum address_class,
865                                           const struct symbol_register_ops *);
866
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
871 extern struct objfile *symbol_objfile (const struct symbol *symbol);
872
873 /* Return the ARCH of SYMBOL.  */
874
875 extern 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
881 extern 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
887 extern void symbol_set_symtab (struct symbol *symbol, struct symtab *symtab);
888
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
895 struct 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
908 \f
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
914 struct linetable_entry
915 {
916   int line;
917   CORE_ADDR pc;
918 };
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
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.
931
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.  */
936
937 struct linetable
938 {
939   int nitems;
940
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 };
946
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
957 struct section_offsets
958 {
959   CORE_ADDR offsets[1];         /* As many as needed.  */
960 };
961
962 #define ANOFFSET(secoff, whichone) \
963   ((whichone == -1)                       \
964    ? (internal_error (__FILE__, __LINE__, \
965                       _("Section index is uninitialized")), -1) \
966    : secoff->offsets[whichone])
967
968 /* The size of a section_offsets table for N sections.  */
969 #define SIZEOF_N_SECTION_OFFSETS(n) \
970   (sizeof (struct section_offsets) \
971    + sizeof (((struct section_offsets *) 0)->offsets) * ((n)-1))
972
973 /* Each source file or header is represented by a struct symtab.
974    The name "symtab" is historical, another name for it is "filetab".
975    These objects are chained through the `next' field.  */
976
977 struct symtab
978 {
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.  */
981
982   struct symtab *next;
983
984   /* Backlink to containing compunit symtab.  */
985
986   struct compunit_symtab *compunit_symtab;
987
988   /* Table mapping core addresses to line numbers for this file.
989      Can be NULL if none.  Never shared between different symtabs.  */
990
991   struct linetable *linetable;
992
993   /* Name of this source file.  This pointer is never NULL.  */
994
995   const char *filename;
996
997   /* Total number of lines found in source file.  */
998
999   int nlines;
1000
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.  */
1004
1005   int *line_charpos;
1006
1007   /* Language of this source file.  */
1008
1009   enum language language;
1010
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
1028 typedef struct symtab *symtab_ptr;
1029 DEF_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
1066 struct 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
1094      for automated testing of gdb but may also be information that is
1095      useful to the user.  */
1096   const char *debugformat;
1097
1098   /* String of producer version information, or NULL if we don't know.  */
1099   const char *producer;
1100
1101   /* Directory in which it was compiled, or NULL if we don't know.  */
1102   const char *dirname;
1103
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;
1107
1108   /* Section in objfile->section_offsets for the blockvector and
1109      the linetable.  Probably always SECT_OFF_TEXT.  */
1110   int block_line_section;
1111
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;
1116
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;
1120
1121   /* struct call_site entries for this compilation unit or NULL.  */
1122   htab_t call_site_htab;
1123
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
1130   /* If non-NULL, then this points to a NULL-terminated vector of
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
1134      list must be flattened -- the symbol reader is responsible for
1135      ensuring that this vector contains the transitive closure of all
1136      included compunits.  */
1137   struct compunit_symtab **includes;
1138
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
1142      included by another.  */
1143   struct compunit_symtab *user;
1144 };
1145
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)
1157
1158 /* Iterate over all file tables (struct symtab) within a compunit.  */
1159
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
1165 extern struct symtab *
1166   compunit_primary_filetab (const struct compunit_symtab *cust);
1167
1168 /* Return the language of CUST.  */
1169
1170 extern enum language compunit_language (const struct compunit_symtab *cust);
1171
1172 typedef struct compunit_symtab *compunit_symtab_ptr;
1173 DEF_VEC_P (compunit_symtab_ptr);
1174
1175 \f
1176
1177 /* The virtual function table is now an array of structures which have the
1178    form { int16 offset, delta; void *pfn; }. 
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
1186    Note that this macro is g++ specific (FIXME).  */
1187
1188 #define VTBL_FNADDR_OFFSET 2
1189
1190 /* External variables and functions for the objects described above.  */
1191
1192 /* True if we are nested inside psymtab_to_symtab.  */
1193
1194 extern int currently_reading_symtab;
1195
1196 /* symtab.c lookup functions */
1197
1198 extern const char multiple_symbols_ask[];
1199 extern const char multiple_symbols_all[];
1200 extern const char multiple_symbols_cancel[];
1201
1202 const char *multiple_symbols_select_mode (void);
1203
1204 int symbol_matches_domain (enum language symbol_language, 
1205                            domain_enum symbol_domain,
1206                            domain_enum domain);
1207
1208 /* lookup a symbol table by source file name.  */
1209
1210 extern struct symtab *lookup_symtab (const char *);
1211
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
1215 struct 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
1228   /* If the symbol was found as a function field of 'this', then this
1229      is non-NULL and points to the particular field.  */
1230
1231   struct fn_fieldlist *fn_field;
1232 };
1233
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.
1241    The symbol's section is fixed up if necessary.  */
1242
1243 extern 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 *);
1249
1250 /* Same as lookup_symbol_in_language, but using the current language.  */
1251
1252 extern struct block_symbol lookup_symbol (const char *,
1253                                           const struct block *,
1254                                           const domain_enum,
1255                                           struct field_of_this_result *);
1256
1257 /* A default version of lookup_symbol_nonlocal for use by languages
1258    that can't think of anything better to do.
1259    This implements the C lookup rules.  */
1260
1261 extern struct block_symbol
1262   basic_lookup_symbol_nonlocal (const struct language_defn *langdef,
1263                                 const char *,
1264                                 const struct block *,
1265                                 const domain_enum);
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
1271    is one; do nothing if BLOCK is NULL or a global block.
1272    Upon success fixes up the symbol's section if necessary.  */
1273
1274 extern struct block_symbol
1275   lookup_symbol_in_static_block (const char *name,
1276                                  const struct block *block,
1277                                  const domain_enum domain);
1278
1279 /* Search all static file-level symbols for NAME from DOMAIN.
1280    Upon success fixes up the symbol's section if necessary.  */
1281
1282 extern struct block_symbol lookup_static_symbol (const char *name,
1283                                                  const domain_enum domain);
1284
1285 /* Lookup a symbol in all files' global blocks.
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
1294    Upon success fixes up the symbol's section if necessary.  */
1295
1296 extern struct block_symbol
1297   lookup_global_symbol (const char *name,
1298                         const struct block *block,
1299                         const domain_enum domain);
1300
1301 /* Lookup a symbol in block BLOCK.
1302    Upon success fixes up the symbol's section if necessary.  */
1303
1304 extern struct symbol *
1305   lookup_symbol_in_block (const char *name,
1306                           const struct block *block,
1307                           const domain_enum domain);
1308
1309 /* Look up the `this' symbol for LANG in BLOCK.  Return the symbol if
1310    found, or NULL if not found.  */
1311
1312 extern struct block_symbol
1313   lookup_language_this (const struct language_defn *lang,
1314                         const struct block *block);
1315
1316 /* Lookup a [struct, union, enum] by name, within a specified block.  */
1317
1318 extern struct type *lookup_struct (const char *, const struct block *);
1319
1320 extern struct type *lookup_union (const char *, const struct block *);
1321
1322 extern struct type *lookup_enum (const char *, const struct block *);
1323
1324 /* from blockframe.c: */
1325
1326 /* lookup the function symbol corresponding to the address.  */
1327
1328 extern struct symbol *find_pc_function (CORE_ADDR);
1329
1330 /* lookup the function corresponding to the address and section.  */
1331
1332 extern struct symbol *find_pc_sect_function (CORE_ADDR, struct obj_section *);
1333
1334 extern int find_pc_partial_function_gnu_ifunc (CORE_ADDR pc, const char **name,
1335                                                CORE_ADDR *address,
1336                                                CORE_ADDR *endaddr,
1337                                                int *is_gnu_ifunc_p);
1338
1339 /* lookup function from address, return name, start addr and end addr.  */
1340
1341 extern int find_pc_partial_function (CORE_ADDR, const char **, CORE_ADDR *,
1342                                      CORE_ADDR *);
1343
1344 extern void clear_pc_function_cache (void);
1345
1346 /* Expand symtab containing PC, SECTION if not already expanded.  */
1347
1348 extern void expand_symtab_containing_pc (CORE_ADDR, struct obj_section *);
1349
1350 /* lookup full symbol table by address.  */
1351
1352 extern struct compunit_symtab *find_pc_compunit_symtab (CORE_ADDR);
1353
1354 /* lookup full symbol table by address and section.  */
1355
1356 extern struct compunit_symtab *
1357   find_pc_sect_compunit_symtab (CORE_ADDR, struct obj_section *);
1358
1359 extern int find_pc_line_pc_range (CORE_ADDR, CORE_ADDR *, CORE_ADDR *);
1360
1361 extern void reread_symbols (void);
1362
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
1367 extern struct type *lookup_transparent_type (const char *);
1368
1369 extern struct type *basic_lookup_transparent_type (const char *);
1370
1371 /* Macro for name of symbol to indicate a file compiled with gcc.  */
1372 #ifndef GCC_COMPILED_FLAG_SYMBOL
1373 #define GCC_COMPILED_FLAG_SYMBOL "gcc_compiled."
1374 #endif
1375
1376 /* Macro for name of symbol to indicate a file compiled with gcc2.  */
1377 #ifndef GCC2_COMPILED_FLAG_SYMBOL
1378 #define GCC2_COMPILED_FLAG_SYMBOL "gcc2_compiled."
1379 #endif
1380
1381 extern int in_gnu_ifunc_stub (CORE_ADDR pc);
1382
1383 /* Functions for resolving STT_GNU_IFUNC symbols which are implemented only
1384    for ELF symbol files.  */
1385
1386 struct 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);
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);
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
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
1407
1408 extern const struct gnu_ifunc_fns *gnu_ifunc_fns_p;
1409
1410 extern CORE_ADDR find_solib_trampoline_target (struct frame_info *, CORE_ADDR);
1411
1412 struct symtab_and_line
1413 {
1414   /* The program space of this sal.  */
1415   struct program_space *pspace;
1416
1417   struct symtab *symtab;
1418   struct obj_section *section;
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;
1426   int explicit_pc;
1427   int explicit_line;
1428
1429   /* The probe associated with this symtab_and_line.  */
1430   struct probe *probe;
1431   /* If PROBE is not NULL, then this is the objfile in which the probe
1432      originated.  */
1433   struct objfile *objfile;
1434 };
1435
1436 extern void init_sal (struct symtab_and_line *sal);
1437
1438 struct symtabs_and_lines
1439 {
1440   struct symtab_and_line *sals;
1441   int nelts;
1442 };
1443 \f
1444
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
1448 extern struct symtab_and_line find_pc_line (CORE_ADDR, int);
1449
1450 /* Same function, but specify a section as well as an address.  */
1451
1452 extern struct symtab_and_line find_pc_sect_line (CORE_ADDR,
1453                                                  struct obj_section *, int);
1454
1455 /* Wrapper around find_pc_line to just return the symtab.  */
1456
1457 extern struct symtab *find_pc_line_symtab (CORE_ADDR);
1458
1459 /* Given a symtab and line number, return the pc there.  */
1460
1461 extern int find_line_pc (struct symtab *, int, CORE_ADDR *);
1462
1463 extern int find_line_pc_range (struct symtab_and_line, CORE_ADDR *,
1464                                CORE_ADDR *);
1465
1466 extern void resolve_sal_pc (struct symtab_and_line *);
1467
1468 /* solib.c */
1469
1470 extern void clear_solib (void);
1471
1472 /* source.c */
1473
1474 extern int identify_source_line (struct symtab *, int, int, CORE_ADDR);
1475
1476 /* Flags passed as 4th argument to print_source_lines.  */
1477
1478 enum print_source_lines_flag
1479   {
1480     /* Do not print an error message.  */
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)
1485   };
1486 DEF_ENUM_FLAGS_TYPE (enum print_source_lines_flag, print_source_lines_flags);
1487
1488 extern void print_source_lines (struct symtab *, int, int,
1489                                 print_source_lines_flags);
1490
1491 extern void forget_cached_source_info_for_objfile (struct objfile *);
1492 extern void forget_cached_source_info (void);
1493
1494 extern void select_source_symtab (struct symtab *);
1495
1496 extern VEC (char_ptr) *default_make_symbol_completion_list_break_on
1497   (const char *text, const char *word, const char *break_on,
1498    enum type_code code);
1499 extern VEC (char_ptr) *default_make_symbol_completion_list (const char *,
1500                                                             const char *,
1501                                                             enum type_code);
1502 extern VEC (char_ptr) *make_symbol_completion_list (const char *, const char *);
1503 extern VEC (char_ptr) *make_symbol_completion_type (const char *, const char *,
1504                                                     enum type_code);
1505 extern VEC (char_ptr) *make_symbol_completion_list_fn (struct cmd_list_element *,
1506                                                        const char *,
1507                                                        const char *);
1508
1509 extern VEC (char_ptr) *make_file_symbol_completion_list (const char *,
1510                                                          const char *,
1511                                                          const char *);
1512
1513 extern VEC (char_ptr) *make_source_files_completion_list (const char *,
1514                                                           const char *);
1515
1516 /* symtab.c */
1517
1518 int matching_obj_sections (struct obj_section *, struct obj_section *);
1519
1520 extern struct symtab *find_line_symtab (struct symtab *, int, int *, int *);
1521
1522 extern struct symtab_and_line find_function_start_sal (struct symbol *sym,
1523                                                        int);
1524
1525 extern void skip_prologue_sal (struct symtab_and_line *);
1526
1527 /* symtab.c */
1528
1529 extern CORE_ADDR skip_prologue_using_sal (struct gdbarch *gdbarch,
1530                                           CORE_ADDR func_addr);
1531
1532 extern struct symbol *fixup_symbol_section (struct symbol *,
1533                                             struct objfile *);
1534
1535 /* Symbol searching */
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.  */
1538
1539 /* When using search_symbols, a list of the following structs is returned.
1540    Callers must free the search list using free_search_symbols!  */
1541 struct symbol_search
1542 {
1543   /* The block in which the match was found.  Could be, for example,
1544      STATIC_BLOCK or GLOBAL_BLOCK.  */
1545   int block;
1546
1547   /* Information describing what was found.
1548
1549      If symbol is NOT NULL, then information was found for this match.  */
1550   struct symbol *symbol;
1551
1552   /* If msymbol is non-null, then a match was made on something for
1553      which only minimal_symbols exist.  */
1554   struct bound_minimal_symbol msymbol;
1555
1556   /* A link to the next match, or NULL for the end.  */
1557   struct symbol_search *next;
1558 };
1559
1560 extern void search_symbols (const char *, enum search_domain, int,
1561                             const char **, struct symbol_search **);
1562 extern void free_search_symbols (struct symbol_search *);
1563 extern struct cleanup *make_cleanup_free_search_symbols (struct symbol_search
1564                                                          **);
1565
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
1569    const.  */
1570 extern /*const */ char *main_name (void);
1571 extern enum language main_language (void);
1572
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.
1576    Upon success fixes up the symbol's section if necessary.  */
1577
1578 extern struct block_symbol
1579   lookup_global_symbol_from_objfile (struct objfile *main_objfile,
1580                                      const char *name,
1581                                      const domain_enum domain);
1582
1583 /* Return 1 if the supplied producer string matches the ARM RealView
1584    compiler (armcc).  */
1585 int producer_is_realview (const char *producer);
1586
1587 void fixup_section (struct general_symbol_info *ginfo,
1588                     CORE_ADDR addr, struct objfile *objfile);
1589
1590 /* Look up objfile containing BLOCK.  */
1591
1592 struct objfile *lookup_objfile_from_block (const struct block *block);
1593
1594 extern unsigned int symtab_create_debug;
1595
1596 extern unsigned int symbol_lookup_debug;
1597
1598 extern int basenames_may_differ;
1599
1600 int compare_filenames_for_search (const char *filename,
1601                                   const char *search_name);
1602
1603 int compare_glob_filenames_for_search (const char *filename,
1604                                        const char *search_name);
1605
1606 int iterate_over_some_symtabs (const char *name,
1607                                const char *real_path,
1608                                int (*callback) (struct symtab *symtab,
1609                                                 void *data),
1610                                void *data,
1611                                struct compunit_symtab *first,
1612                                struct compunit_symtab *after_last);
1613
1614 void iterate_over_symtabs (const char *name,
1615                            int (*callback) (struct symtab *symtab,
1616                                             void *data),
1617                            void *data);
1618
1619 VEC (CORE_ADDR) *find_pcs_for_symtab_line (struct symtab *symtab, int line,
1620                                            struct linetable_entry **best_entry);
1621
1622 /* Callback for LA_ITERATE_OVER_SYMBOLS.  The callback will be called
1623    once per matching symbol SYM, with DATA being the argument of the
1624    same name that was passed to LA_ITERATE_OVER_SYMBOLS.  The callback
1625    should return nonzero to indicate that LA_ITERATE_OVER_SYMBOLS
1626    should continue iterating, or zero to indicate that the iteration
1627    should end.  */
1628
1629 typedef int (symbol_found_callback_ftype) (struct symbol *sym, void *data);
1630
1631 void iterate_over_symbols (const struct block *block, const char *name,
1632                            const domain_enum domain,
1633                            symbol_found_callback_ftype *callback,
1634                            void *data);
1635
1636 struct cleanup *demangle_for_lookup (const char *name, enum language lang,
1637                                      const char **result_name);
1638
1639 struct symbol *allocate_symbol (struct objfile *);
1640
1641 void initialize_objfile_symbol (struct symbol *);
1642
1643 struct template_symbol *allocate_template_symbol (struct objfile *);
1644
1645 #endif /* !defined(SYMTAB_H) */