Update copyright year range in all GDB files
[external/binutils.git] / gdb / symtab.h
1 /* Symbol table definitions for GDB.
2
3    Copyright (C) 1986-2018 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 <array>
24 #include <vector>
25 #include <string>
26 #include "gdb_vecs.h"
27 #include "gdbtypes.h"
28 #include "common/enum-flags.h"
29 #include "common/function-view.h"
30 #include "common/gdb_optional.h"
31 #include "completer.h"
32
33 /* Opaque declarations.  */
34 struct ui_file;
35 struct frame_info;
36 struct symbol;
37 struct obstack;
38 struct objfile;
39 struct block;
40 struct blockvector;
41 struct axs_value;
42 struct agent_expr;
43 struct program_space;
44 struct language_defn;
45 struct common_block;
46 struct obj_section;
47 struct cmd_list_element;
48 class probe;
49 struct lookup_name_info;
50
51 /* How to match a lookup name against a symbol search name.  */
52 enum class symbol_name_match_type
53 {
54   /* Wild matching.  Matches unqualified symbol names in all
55      namespace/module/packages, etc.  */
56   WILD,
57
58   /* Full matching.  The lookup name indicates a fully-qualified name,
59      and only matches symbol search names in the specified
60      namespace/module/package.  */
61   FULL,
62
63   /* Expression matching.  The same as FULL matching in most
64      languages.  The same as WILD matching in Ada.  */
65   EXPRESSION,
66 };
67
68 /* Hash the given symbol search name according to LANGUAGE's
69    rules.  */
70 extern unsigned int search_name_hash (enum language language,
71                                       const char *search_name);
72
73 /* Ada-specific bits of a lookup_name_info object.  This is lazily
74    constructed on demand.  */
75
76 class ada_lookup_name_info final
77 {
78  public:
79   /* Construct.  */
80   explicit ada_lookup_name_info (const lookup_name_info &lookup_name);
81
82   /* Compare SYMBOL_SEARCH_NAME with our lookup name, using MATCH_TYPE
83      as name match type.  Returns true if there's a match, false
84      otherwise.  If non-NULL, store the matching results in MATCH.  */
85   bool matches (const char *symbol_search_name,
86                 symbol_name_match_type match_type,
87                 completion_match_result *comp_match_res) const;
88
89   /* The Ada-encoded lookup name.  */
90   const std::string &lookup_name () const
91   { return m_encoded_name; }
92
93   /* Return true if we're supposed to be doing a wild match look
94      up.  */
95   bool wild_match_p () const
96   { return m_wild_match_p; }
97
98   /* Return true if we're looking up a name inside package
99      Standard.  */
100   bool standard_p () const
101   { return m_standard_p; }
102
103  private:
104   /* The Ada-encoded lookup name.  */
105   std::string m_encoded_name;
106
107   /* Whether the user-provided lookup name was Ada encoded.  If so,
108      then return encoded names in the 'matches' method's 'completion
109      match result' output.  */
110   bool m_encoded_p : 1;
111
112   /* True if really doing wild matching.  Even if the user requests
113      wild matching, some cases require full matching.  */
114   bool m_wild_match_p : 1;
115
116   /* True if doing a verbatim match.  This is true if the decoded
117      version of the symbol name is wrapped in '<'/'>'.  This is an
118      escape hatch users can use to look up symbols the Ada encoding
119      does not understand.  */
120   bool m_verbatim_p : 1;
121
122    /* True if the user specified a symbol name that is inside package
123       Standard.  Symbol names inside package Standard are handled
124       specially.  We always do a non-wild match of the symbol name
125       without the "standard__" prefix, and only search static and
126       global symbols.  This was primarily introduced in order to allow
127       the user to specifically access the standard exceptions using,
128       for instance, Standard.Constraint_Error when Constraint_Error is
129       ambiguous (due to the user defining its own Constraint_Error
130       entity inside its program).  */
131   bool m_standard_p : 1;
132 };
133
134 /* Language-specific bits of a lookup_name_info object, for languages
135    that do name searching using demangled names (C++/D/Go).  This is
136    lazily constructed on demand.  */
137
138 struct demangle_for_lookup_info final
139 {
140 public:
141   demangle_for_lookup_info (const lookup_name_info &lookup_name,
142                             language lang);
143
144   /* The demangled lookup name.  */
145   const std::string &lookup_name () const
146   { return m_demangled_name; }
147
148 private:
149   /* The demangled lookup name.  */
150   std::string m_demangled_name;
151 };
152
153 /* Object that aggregates all information related to a symbol lookup
154    name.  I.e., the name that is matched against the symbol's search
155    name.  Caches per-language information so that it doesn't require
156    recomputing it for every symbol comparison, like for example the
157    Ada encoded name and the symbol's name hash for a given language.
158    The object is conceptually immutable once constructed, and thus has
159    no setters.  This is to prevent some code path from tweaking some
160    property of the lookup name for some local reason and accidentally
161    altering the results of any continuing search(es).
162    lookup_name_info objects are generally passed around as a const
163    reference to reinforce that.  (They're not passed around by value
164    because they're not small.)  */
165 class lookup_name_info final
166 {
167  public:
168   /* Create a new object.  */
169   lookup_name_info (std::string name,
170                     symbol_name_match_type match_type,
171                     bool completion_mode = false,
172                     bool ignore_parameters = false)
173     : m_match_type (match_type),
174       m_completion_mode (completion_mode),
175       m_ignore_parameters (ignore_parameters),
176       m_name (std::move (name))
177   {}
178
179   /* Getters.  See description of each corresponding field.  */
180   symbol_name_match_type match_type () const { return m_match_type; }
181   bool completion_mode () const { return m_completion_mode; }
182   const std::string &name () const { return m_name; }
183   const bool ignore_parameters () const { return m_ignore_parameters; }
184
185   /* Return a version of this lookup name that is usable with
186      comparisons against symbols have no parameter info, such as
187      psymbols and GDB index symbols.  */
188   lookup_name_info make_ignore_params () const
189   {
190     return lookup_name_info (m_name, m_match_type, m_completion_mode,
191                              true /* ignore params */);
192   }
193
194   /* Get the search name hash for searches in language LANG.  */
195   unsigned int search_name_hash (language lang) const
196   {
197     /* Only compute each language's hash once.  */
198     if (!m_demangled_hashes_p[lang])
199       {
200         m_demangled_hashes[lang]
201           = ::search_name_hash (lang, language_lookup_name (lang).c_str ());
202         m_demangled_hashes_p[lang] = true;
203       }
204     return m_demangled_hashes[lang];
205   }
206
207   /* Get the search name for searches in language LANG.  */
208   const std::string &language_lookup_name (language lang) const
209   {
210     switch (lang)
211       {
212       case language_ada:
213         return ada ().lookup_name ();
214       case language_cplus:
215         return cplus ().lookup_name ();
216       case language_d:
217         return d ().lookup_name ();
218       case language_go:
219         return go ().lookup_name ();
220       default:
221         return m_name;
222       }
223   }
224
225   /* Get the Ada-specific lookup info.  */
226   const ada_lookup_name_info &ada () const
227   {
228     maybe_init (m_ada);
229     return *m_ada;
230   }
231
232   /* Get the C++-specific lookup info.  */
233   const demangle_for_lookup_info &cplus () const
234   {
235     maybe_init (m_cplus, language_cplus);
236     return *m_cplus;
237   }
238
239   /* Get the D-specific lookup info.  */
240   const demangle_for_lookup_info &d () const
241   {
242     maybe_init (m_d, language_d);
243     return *m_d;
244   }
245
246   /* Get the Go-specific lookup info.  */
247   const demangle_for_lookup_info &go () const
248   {
249     maybe_init (m_go, language_go);
250     return *m_go;
251   }
252
253   /* Get a reference to a lookup_name_info object that matches any
254      symbol name.  */
255   static const lookup_name_info &match_any ();
256
257 private:
258   /* Initialize FIELD, if not initialized yet.  */
259   template<typename Field, typename... Args>
260   void maybe_init (Field &field, Args&&... args) const
261   {
262     if (!field)
263       field.emplace (*this, std::forward<Args> (args)...);
264   }
265
266   /* The lookup info as passed to the ctor.  */
267   symbol_name_match_type m_match_type;
268   bool m_completion_mode;
269   bool m_ignore_parameters;
270   std::string m_name;
271
272   /* Language-specific info.  These fields are filled lazily the first
273      time a lookup is done in the corresponding language.  They're
274      mutable because lookup_name_info objects are typically passed
275      around by const reference (see intro), and they're conceptually
276      "cache" that can always be reconstructed from the non-mutable
277      fields.  */
278   mutable gdb::optional<ada_lookup_name_info> m_ada;
279   mutable gdb::optional<demangle_for_lookup_info> m_cplus;
280   mutable gdb::optional<demangle_for_lookup_info> m_d;
281   mutable gdb::optional<demangle_for_lookup_info> m_go;
282
283   /* The demangled hashes.  Stored in an array with one entry for each
284      possible language.  The second array records whether we've
285      already computed the each language's hash.  (These are separate
286      arrays instead of a single array of optional<unsigned> to avoid
287      alignment padding).  */
288   mutable std::array<unsigned int, nr_languages> m_demangled_hashes;
289   mutable std::array<bool, nr_languages> m_demangled_hashes_p {};
290 };
291
292 /* Comparison function for completion symbol lookup.
293
294    Returns true if the symbol name matches against LOOKUP_NAME.
295
296    SYMBOL_SEARCH_NAME should be a symbol's "search" name.
297
298    On success and if non-NULL, COMP_MATCH_RES->match is set to point
299    to the symbol name as should be presented to the user as a
300    completion match list element.  In most languages, this is the same
301    as the symbol's search name, but in some, like Ada, the display
302    name is dynamically computed within the comparison routine.
303
304    Also, on success and if non-NULL, COMP_MATCH_RES->match_for_lcd
305    points the part of SYMBOL_SEARCH_NAME that was considered to match
306    LOOKUP_NAME.  E.g., in C++, in linespec/wild mode, if the symbol is
307    "foo::function()" and LOOKUP_NAME is "function(", MATCH_FOR_LCD
308    points to "function()" inside SYMBOL_SEARCH_NAME.  */
309 typedef bool (symbol_name_matcher_ftype)
310   (const char *symbol_search_name,
311    const lookup_name_info &lookup_name,
312    completion_match_result *comp_match_res);
313
314 /* Some of the structures in this file are space critical.
315    The space-critical structures are:
316
317      struct general_symbol_info
318      struct symbol
319      struct partial_symbol
320
321    These structures are laid out to encourage good packing.
322    They use ENUM_BITFIELD and short int fields, and they order the
323    structure members so that fields less than a word are next
324    to each other so they can be packed together.  */
325
326 /* Rearranged: used ENUM_BITFIELD and rearranged field order in
327    all the space critical structures (plus struct minimal_symbol).
328    Memory usage dropped from 99360768 bytes to 90001408 bytes.
329    I measured this with before-and-after tests of
330    "HEAD-old-gdb -readnow HEAD-old-gdb" and
331    "HEAD-new-gdb -readnow HEAD-old-gdb" on native i686-pc-linux-gnu,
332    red hat linux 8, with LD_LIBRARY_PATH=/usr/lib/debug,
333    typing "maint space 1" at the first command prompt.
334
335    Here is another measurement (from andrew c):
336      # no /usr/lib/debug, just plain glibc, like a normal user
337      gdb HEAD-old-gdb
338      (gdb) break internal_error
339      (gdb) run
340      (gdb) maint internal-error
341      (gdb) backtrace
342      (gdb) maint space 1
343
344    gdb gdb_6_0_branch  2003-08-19  space used: 8896512
345    gdb HEAD            2003-08-19  space used: 8904704
346    gdb HEAD            2003-08-21  space used: 8396800 (+symtab.h)
347    gdb HEAD            2003-08-21  space used: 8265728 (+gdbtypes.h)
348
349    The third line shows the savings from the optimizations in symtab.h.
350    The fourth line shows the savings from the optimizations in
351    gdbtypes.h.  Both optimizations are in gdb HEAD now.
352
353    --chastain 2003-08-21  */
354
355 /* Define a structure for the information that is common to all symbol types,
356    including minimal symbols, partial symbols, and full symbols.  In a
357    multilanguage environment, some language specific information may need to
358    be recorded along with each symbol.  */
359
360 /* This structure is space critical.  See space comments at the top.  */
361
362 struct general_symbol_info
363 {
364   /* Name of the symbol.  This is a required field.  Storage for the
365      name is allocated on the objfile_obstack for the associated
366      objfile.  For languages like C++ that make a distinction between
367      the mangled name and demangled name, this is the mangled
368      name.  */
369
370   const char *name;
371
372   /* Value of the symbol.  Which member of this union to use, and what
373      it means, depends on what kind of symbol this is and its
374      SYMBOL_CLASS.  See comments there for more details.  All of these
375      are in host byte order (though what they point to might be in
376      target byte order, e.g. LOC_CONST_BYTES).  */
377
378   union
379   {
380     LONGEST ivalue;
381
382     const struct block *block;
383
384     const gdb_byte *bytes;
385
386     CORE_ADDR address;
387
388     /* A common block.  Used with LOC_COMMON_BLOCK.  */
389
390     const struct common_block *common_block;
391
392     /* For opaque typedef struct chain.  */
393
394     struct symbol *chain;
395   }
396   value;
397
398   /* Since one and only one language can apply, wrap the language specific
399      information inside a union.  */
400
401   union
402   {
403     /* A pointer to an obstack that can be used for storage associated
404        with this symbol.  This is only used by Ada, and only when the
405        'ada_mangled' field is zero.  */
406     struct obstack *obstack;
407
408     /* This is used by languages which wish to store a demangled name.
409        currently used by Ada, C++, and Objective C.  */
410     const char *demangled_name;
411   }
412   language_specific;
413
414   /* Record the source code language that applies to this symbol.
415      This is used to select one of the fields from the language specific
416      union above.  */
417
418   ENUM_BITFIELD(language) language : LANGUAGE_BITS;
419
420   /* This is only used by Ada.  If set, then the 'demangled_name' field
421      of language_specific is valid.  Otherwise, the 'obstack' field is
422      valid.  */
423   unsigned int ada_mangled : 1;
424
425   /* Which section is this symbol in?  This is an index into
426      section_offsets for this objfile.  Negative means that the symbol
427      does not get relocated relative to a section.  */
428
429   short section;
430 };
431
432 extern void symbol_set_demangled_name (struct general_symbol_info *,
433                                        const char *,
434                                        struct obstack *);
435
436 extern const char *symbol_get_demangled_name
437   (const struct general_symbol_info *);
438
439 extern CORE_ADDR symbol_overlayed_address (CORE_ADDR, struct obj_section *);
440
441 /* Note that all the following SYMBOL_* macros are used with the
442    SYMBOL argument being either a partial symbol or
443    a full symbol.  Both types have a ginfo field.  In particular
444    the SYMBOL_SET_LANGUAGE, SYMBOL_DEMANGLED_NAME, etc.
445    macros cannot be entirely substituted by
446    functions, unless the callers are changed to pass in the ginfo
447    field only, instead of the SYMBOL parameter.  */
448
449 #define SYMBOL_VALUE(symbol)            (symbol)->ginfo.value.ivalue
450 #define SYMBOL_VALUE_ADDRESS(symbol)    (symbol)->ginfo.value.address
451 #define SYMBOL_VALUE_BYTES(symbol)      (symbol)->ginfo.value.bytes
452 #define SYMBOL_VALUE_COMMON_BLOCK(symbol) (symbol)->ginfo.value.common_block
453 #define SYMBOL_BLOCK_VALUE(symbol)      (symbol)->ginfo.value.block
454 #define SYMBOL_VALUE_CHAIN(symbol)      (symbol)->ginfo.value.chain
455 #define SYMBOL_LANGUAGE(symbol)         (symbol)->ginfo.language
456 #define SYMBOL_SECTION(symbol)          (symbol)->ginfo.section
457 #define SYMBOL_OBJ_SECTION(objfile, symbol)                     \
458   (((symbol)->ginfo.section >= 0)                               \
459    ? (&(((objfile)->sections)[(symbol)->ginfo.section]))        \
460    : NULL)
461
462 /* Initializes the language dependent portion of a symbol
463    depending upon the language for the symbol.  */
464 #define SYMBOL_SET_LANGUAGE(symbol,language,obstack)    \
465   (symbol_set_language (&(symbol)->ginfo, (language), (obstack)))
466 extern void symbol_set_language (struct general_symbol_info *symbol,
467                                  enum language language,
468                                  struct obstack *obstack);
469
470 /* Set just the linkage name of a symbol; do not try to demangle
471    it.  Used for constructs which do not have a mangled name,
472    e.g. struct tags.  Unlike SYMBOL_SET_NAMES, linkage_name must
473    be terminated and either already on the objfile's obstack or
474    permanently allocated.  */
475 #define SYMBOL_SET_LINKAGE_NAME(symbol,linkage_name) \
476   (symbol)->ginfo.name = (linkage_name)
477
478 /* Set the linkage and natural names of a symbol, by demangling
479    the linkage name.  */
480 #define SYMBOL_SET_NAMES(symbol,linkage_name,len,copy_name,objfile)     \
481   symbol_set_names (&(symbol)->ginfo, linkage_name, len, copy_name, objfile)
482 extern void symbol_set_names (struct general_symbol_info *symbol,
483                               const char *linkage_name, int len, int copy_name,
484                               struct objfile *objfile);
485
486 /* Now come lots of name accessor macros.  Short version as to when to
487    use which: Use SYMBOL_NATURAL_NAME to refer to the name of the
488    symbol in the original source code.  Use SYMBOL_LINKAGE_NAME if you
489    want to know what the linker thinks the symbol's name is.  Use
490    SYMBOL_PRINT_NAME for output.  Use SYMBOL_DEMANGLED_NAME if you
491    specifically need to know whether SYMBOL_NATURAL_NAME and
492    SYMBOL_LINKAGE_NAME are different.  */
493
494 /* Return SYMBOL's "natural" name, i.e. the name that it was called in
495    the original source code.  In languages like C++ where symbols may
496    be mangled for ease of manipulation by the linker, this is the
497    demangled name.  */
498
499 #define SYMBOL_NATURAL_NAME(symbol) \
500   (symbol_natural_name (&(symbol)->ginfo))
501 extern const char *symbol_natural_name
502   (const struct general_symbol_info *symbol);
503
504 /* Return SYMBOL's name from the point of view of the linker.  In
505    languages like C++ where symbols may be mangled for ease of
506    manipulation by the linker, this is the mangled name; otherwise,
507    it's the same as SYMBOL_NATURAL_NAME.  */
508
509 #define SYMBOL_LINKAGE_NAME(symbol)     (symbol)->ginfo.name
510
511 /* Return the demangled name for a symbol based on the language for
512    that symbol.  If no demangled name exists, return NULL.  */
513 #define SYMBOL_DEMANGLED_NAME(symbol) \
514   (symbol_demangled_name (&(symbol)->ginfo))
515 extern const char *symbol_demangled_name
516   (const struct general_symbol_info *symbol);
517
518 /* Macro that returns a version of the name of a symbol that is
519    suitable for output.  In C++ this is the "demangled" form of the
520    name if demangle is on and the "mangled" form of the name if
521    demangle is off.  In other languages this is just the symbol name.
522    The result should never be NULL.  Don't use this for internal
523    purposes (e.g. storing in a hashtable): it's only suitable for output.
524
525    N.B. symbol may be anything with a ginfo member,
526    e.g., struct symbol or struct minimal_symbol.  */
527
528 #define SYMBOL_PRINT_NAME(symbol)                                       \
529   (demangle ? SYMBOL_NATURAL_NAME (symbol) : SYMBOL_LINKAGE_NAME (symbol))
530 extern int demangle;
531
532 /* Macro that returns the name to be used when sorting and searching symbols.
533    In C++, we search for the demangled form of a name,
534    and so sort symbols accordingly.  In Ada, however, we search by mangled
535    name.  If there is no distinct demangled name, then SYMBOL_SEARCH_NAME
536    returns the same value (same pointer) as SYMBOL_LINKAGE_NAME.  */
537 #define SYMBOL_SEARCH_NAME(symbol)                                       \
538    (symbol_search_name (&(symbol)->ginfo))
539 extern const char *symbol_search_name (const struct general_symbol_info *ginfo);
540
541 /* Return true if NAME matches the "search" name of SYMBOL, according
542    to the symbol's language.  */
543 #define SYMBOL_MATCHES_SEARCH_NAME(symbol, name)                       \
544   symbol_matches_search_name (&(symbol)->ginfo, (name))
545
546 /* Helper for SYMBOL_MATCHES_SEARCH_NAME that works with both symbols
547    and psymbols.  */
548 extern bool symbol_matches_search_name
549   (const struct general_symbol_info *gsymbol,
550    const lookup_name_info &name);
551
552 /* Compute the hash of the given symbol search name of a symbol of
553    language LANGUAGE.  */
554 extern unsigned int search_name_hash (enum language language,
555                                       const char *search_name);
556
557 /* Classification types for a minimal symbol.  These should be taken as
558    "advisory only", since if gdb can't easily figure out a
559    classification it simply selects mst_unknown.  It may also have to
560    guess when it can't figure out which is a better match between two
561    types (mst_data versus mst_bss) for example.  Since the minimal
562    symbol info is sometimes derived from the BFD library's view of a
563    file, we need to live with what information bfd supplies.  */
564
565 enum minimal_symbol_type
566 {
567   mst_unknown = 0,              /* Unknown type, the default */
568   mst_text,                     /* Generally executable instructions */
569   mst_text_gnu_ifunc,           /* Executable code returning address
570                                    of executable code */
571   mst_slot_got_plt,             /* GOT entries for .plt sections */
572   mst_data,                     /* Generally initialized data */
573   mst_bss,                      /* Generally uninitialized data */
574   mst_abs,                      /* Generally absolute (nonrelocatable) */
575   /* GDB uses mst_solib_trampoline for the start address of a shared
576      library trampoline entry.  Breakpoints for shared library functions
577      are put there if the shared library is not yet loaded.
578      After the shared library is loaded, lookup_minimal_symbol will
579      prefer the minimal symbol from the shared library (usually
580      a mst_text symbol) over the mst_solib_trampoline symbol, and the
581      breakpoints will be moved to their true address in the shared
582      library via breakpoint_re_set.  */
583   mst_solib_trampoline,         /* Shared library trampoline code */
584   /* For the mst_file* types, the names are only guaranteed to be unique
585      within a given .o file.  */
586   mst_file_text,                /* Static version of mst_text */
587   mst_file_data,                /* Static version of mst_data */
588   mst_file_bss,                 /* Static version of mst_bss */
589   nr_minsym_types
590 };
591
592 /* The number of enum minimal_symbol_type values, with some padding for
593    reasonable growth.  */
594 #define MINSYM_TYPE_BITS 4
595 gdb_static_assert (nr_minsym_types <= (1 << MINSYM_TYPE_BITS));
596
597 /* Define a simple structure used to hold some very basic information about
598    all defined global symbols (text, data, bss, abs, etc).  The only required
599    information is the general_symbol_info.
600
601    In many cases, even if a file was compiled with no special options for
602    debugging at all, as long as was not stripped it will contain sufficient
603    information to build a useful minimal symbol table using this structure.
604    Even when a file contains enough debugging information to build a full
605    symbol table, these minimal symbols are still useful for quickly mapping
606    between names and addresses, and vice versa.  They are also sometimes
607    used to figure out what full symbol table entries need to be read in.  */
608
609 struct minimal_symbol
610 {
611
612   /* The general symbol info required for all types of symbols.
613
614      The SYMBOL_VALUE_ADDRESS contains the address that this symbol
615      corresponds to.  */
616
617   struct general_symbol_info mginfo;
618
619   /* Size of this symbol.  dbx_end_psymtab in dbxread.c uses this
620      information to calculate the end of the partial symtab based on the
621      address of the last symbol plus the size of the last symbol.  */
622
623   unsigned long size;
624
625   /* Which source file is this symbol in?  Only relevant for mst_file_*.  */
626   const char *filename;
627
628   /* Classification type for this minimal symbol.  */
629
630   ENUM_BITFIELD(minimal_symbol_type) type : MINSYM_TYPE_BITS;
631
632   /* Non-zero if this symbol was created by gdb.
633      Such symbols do not appear in the output of "info var|fun".  */
634   unsigned int created_by_gdb : 1;
635
636   /* Two flag bits provided for the use of the target.  */
637   unsigned int target_flag_1 : 1;
638   unsigned int target_flag_2 : 1;
639
640   /* Nonzero iff the size of the minimal symbol has been set.
641      Symbol size information can sometimes not be determined, because
642      the object file format may not carry that piece of information.  */
643   unsigned int has_size : 1;
644
645   /* Minimal symbols with the same hash key are kept on a linked
646      list.  This is the link.  */
647
648   struct minimal_symbol *hash_next;
649
650   /* Minimal symbols are stored in two different hash tables.  This is
651      the `next' pointer for the demangled hash table.  */
652
653   struct minimal_symbol *demangled_hash_next;
654 };
655
656 #define MSYMBOL_TARGET_FLAG_1(msymbol)  (msymbol)->target_flag_1
657 #define MSYMBOL_TARGET_FLAG_2(msymbol)  (msymbol)->target_flag_2
658 #define MSYMBOL_SIZE(msymbol)           ((msymbol)->size + 0)
659 #define SET_MSYMBOL_SIZE(msymbol, sz)           \
660   do                                            \
661     {                                           \
662       (msymbol)->size = sz;                     \
663       (msymbol)->has_size = 1;                  \
664     } while (0)
665 #define MSYMBOL_HAS_SIZE(msymbol)       ((msymbol)->has_size + 0)
666 #define MSYMBOL_TYPE(msymbol)           (msymbol)->type
667
668 #define MSYMBOL_VALUE(symbol)           (symbol)->mginfo.value.ivalue
669 /* The unrelocated address of the minimal symbol.  */
670 #define MSYMBOL_VALUE_RAW_ADDRESS(symbol) ((symbol)->mginfo.value.address + 0)
671 /* The relocated address of the minimal symbol, using the section
672    offsets from OBJFILE.  */
673 #define MSYMBOL_VALUE_ADDRESS(objfile, symbol)                          \
674   ((symbol)->mginfo.value.address                                       \
675    + ANOFFSET ((objfile)->section_offsets, ((symbol)->mginfo.section)))
676 /* For a bound minsym, we can easily compute the address directly.  */
677 #define BMSYMBOL_VALUE_ADDRESS(symbol) \
678   MSYMBOL_VALUE_ADDRESS ((symbol).objfile, (symbol).minsym)
679 #define SET_MSYMBOL_VALUE_ADDRESS(symbol, new_value)    \
680   ((symbol)->mginfo.value.address = (new_value))
681 #define MSYMBOL_VALUE_BYTES(symbol)     (symbol)->mginfo.value.bytes
682 #define MSYMBOL_BLOCK_VALUE(symbol)     (symbol)->mginfo.value.block
683 #define MSYMBOL_VALUE_CHAIN(symbol)     (symbol)->mginfo.value.chain
684 #define MSYMBOL_LANGUAGE(symbol)        (symbol)->mginfo.language
685 #define MSYMBOL_SECTION(symbol)         (symbol)->mginfo.section
686 #define MSYMBOL_OBJ_SECTION(objfile, symbol)                    \
687   (((symbol)->mginfo.section >= 0)                              \
688    ? (&(((objfile)->sections)[(symbol)->mginfo.section]))       \
689    : NULL)
690
691 #define MSYMBOL_NATURAL_NAME(symbol) \
692   (symbol_natural_name (&(symbol)->mginfo))
693 #define MSYMBOL_LINKAGE_NAME(symbol)    (symbol)->mginfo.name
694 #define MSYMBOL_PRINT_NAME(symbol)                                      \
695   (demangle ? MSYMBOL_NATURAL_NAME (symbol) : MSYMBOL_LINKAGE_NAME (symbol))
696 #define MSYMBOL_DEMANGLED_NAME(symbol) \
697   (symbol_demangled_name (&(symbol)->mginfo))
698 #define MSYMBOL_SET_LANGUAGE(symbol,language,obstack)   \
699   (symbol_set_language (&(symbol)->mginfo, (language), (obstack)))
700 #define MSYMBOL_SEARCH_NAME(symbol)                                      \
701    (symbol_search_name (&(symbol)->mginfo))
702 #define MSYMBOL_SET_NAMES(symbol,linkage_name,len,copy_name,objfile)    \
703   symbol_set_names (&(symbol)->mginfo, linkage_name, len, copy_name, objfile)
704
705 #include "minsyms.h"
706
707 \f
708
709 /* Represent one symbol name; a variable, constant, function or typedef.  */
710
711 /* Different name domains for symbols.  Looking up a symbol specifies a
712    domain and ignores symbol definitions in other name domains.  */
713
714 typedef enum domain_enum_tag
715 {
716   /* UNDEF_DOMAIN is used when a domain has not been discovered or
717      none of the following apply.  This usually indicates an error either
718      in the symbol information or in gdb's handling of symbols.  */
719
720   UNDEF_DOMAIN,
721
722   /* VAR_DOMAIN is the usual domain.  In C, this contains variables,
723      function names, typedef names and enum type values.  */
724
725   VAR_DOMAIN,
726
727   /* STRUCT_DOMAIN is used in C to hold struct, union and enum type names.
728      Thus, if `struct foo' is used in a C program, it produces a symbol named
729      `foo' in the STRUCT_DOMAIN.  */
730
731   STRUCT_DOMAIN,
732
733   /* MODULE_DOMAIN is used in Fortran to hold module type names.  */
734
735   MODULE_DOMAIN,
736
737   /* LABEL_DOMAIN may be used for names of labels (for gotos).  */
738
739   LABEL_DOMAIN,
740
741   /* Fortran common blocks.  Their naming must be separate from VAR_DOMAIN.
742      They also always use LOC_COMMON_BLOCK.  */
743   COMMON_BLOCK_DOMAIN,
744
745   /* This must remain last.  */
746   NR_DOMAINS
747 } domain_enum;
748
749 /* The number of bits in a symbol used to represent the domain.  */
750
751 #define SYMBOL_DOMAIN_BITS 3
752 gdb_static_assert (NR_DOMAINS <= (1 << SYMBOL_DOMAIN_BITS));
753
754 extern const char *domain_name (domain_enum);
755
756 /* Searching domains, used for `search_symbols'.  Element numbers are
757    hardcoded in GDB, check all enum uses before changing it.  */
758
759 enum search_domain
760 {
761   /* Everything in VAR_DOMAIN minus FUNCTIONS_DOMAIN and
762      TYPES_DOMAIN.  */
763   VARIABLES_DOMAIN = 0,
764
765   /* All functions -- for some reason not methods, though.  */
766   FUNCTIONS_DOMAIN = 1,
767
768   /* All defined types */
769   TYPES_DOMAIN = 2,
770
771   /* Any type.  */
772   ALL_DOMAIN = 3
773 };
774
775 extern const char *search_domain_name (enum search_domain);
776
777 /* An address-class says where to find the value of a symbol.  */
778
779 enum address_class
780 {
781   /* Not used; catches errors.  */
782
783   LOC_UNDEF,
784
785   /* Value is constant int SYMBOL_VALUE, host byteorder.  */
786
787   LOC_CONST,
788
789   /* Value is at fixed address SYMBOL_VALUE_ADDRESS.  */
790
791   LOC_STATIC,
792
793   /* Value is in register.  SYMBOL_VALUE is the register number
794      in the original debug format.  SYMBOL_REGISTER_OPS holds a
795      function that can be called to transform this into the
796      actual register number this represents in a specific target
797      architecture (gdbarch).
798
799      For some symbol formats (stabs, for some compilers at least),
800      the compiler generates two symbols, an argument and a register.
801      In some cases we combine them to a single LOC_REGISTER in symbol
802      reading, but currently not for all cases (e.g. it's passed on the
803      stack and then loaded into a register).  */
804
805   LOC_REGISTER,
806
807   /* It's an argument; the value is at SYMBOL_VALUE offset in arglist.  */
808
809   LOC_ARG,
810
811   /* Value address is at SYMBOL_VALUE offset in arglist.  */
812
813   LOC_REF_ARG,
814
815   /* Value is in specified register.  Just like LOC_REGISTER except the
816      register holds the address of the argument instead of the argument
817      itself.  This is currently used for the passing of structs and unions
818      on sparc and hppa.  It is also used for call by reference where the
819      address is in a register, at least by mipsread.c.  */
820
821   LOC_REGPARM_ADDR,
822
823   /* Value is a local variable at SYMBOL_VALUE offset in stack frame.  */
824
825   LOC_LOCAL,
826
827   /* Value not used; definition in SYMBOL_TYPE.  Symbols in the domain
828      STRUCT_DOMAIN all have this class.  */
829
830   LOC_TYPEDEF,
831
832   /* Value is address SYMBOL_VALUE_ADDRESS in the code.  */
833
834   LOC_LABEL,
835
836   /* In a symbol table, value is SYMBOL_BLOCK_VALUE of a `struct block'.
837      In a partial symbol table, SYMBOL_VALUE_ADDRESS is the start address
838      of the block.  Function names have this class.  */
839
840   LOC_BLOCK,
841
842   /* Value is a constant byte-sequence pointed to by SYMBOL_VALUE_BYTES, in
843      target byte order.  */
844
845   LOC_CONST_BYTES,
846
847   /* Value is at fixed address, but the address of the variable has
848      to be determined from the minimal symbol table whenever the
849      variable is referenced.
850      This happens if debugging information for a global symbol is
851      emitted and the corresponding minimal symbol is defined
852      in another object file or runtime common storage.
853      The linker might even remove the minimal symbol if the global
854      symbol is never referenced, in which case the symbol remains
855      unresolved.
856      
857      GDB would normally find the symbol in the minimal symbol table if it will
858      not find it in the full symbol table.  But a reference to an external
859      symbol in a local block shadowing other definition requires full symbol
860      without possibly having its address available for LOC_STATIC.  Testcase
861      is provided as `gdb.dwarf2/dw2-unresolved.exp'.
862
863      This is also used for thread local storage (TLS) variables.  In this case,
864      the address of the TLS variable must be determined when the variable is
865      referenced, from the MSYMBOL_VALUE_RAW_ADDRESS, which is the offset
866      of the TLS variable in the thread local storage of the shared
867      library/object.  */
868
869   LOC_UNRESOLVED,
870
871   /* The variable does not actually exist in the program.
872      The value is ignored.  */
873
874   LOC_OPTIMIZED_OUT,
875
876   /* The variable's address is computed by a set of location
877      functions (see "struct symbol_computed_ops" below).  */
878   LOC_COMPUTED,
879
880   /* The variable uses general_symbol_info->value->common_block field.
881      It also always uses COMMON_BLOCK_DOMAIN.  */
882   LOC_COMMON_BLOCK,
883
884   /* Not used, just notes the boundary of the enum.  */
885   LOC_FINAL_VALUE
886 };
887
888 /* The number of bits needed for values in enum address_class, with some
889    padding for reasonable growth, and room for run-time registered address
890    classes. See symtab.c:MAX_SYMBOL_IMPLS.
891    This is a #define so that we can have a assertion elsewhere to
892    verify that we have reserved enough space for synthetic address
893    classes.  */
894 #define SYMBOL_ACLASS_BITS 5
895 gdb_static_assert (LOC_FINAL_VALUE <= (1 << SYMBOL_ACLASS_BITS));
896
897 /* The methods needed to implement LOC_COMPUTED.  These methods can
898    use the symbol's .aux_value for additional per-symbol information.
899
900    At present this is only used to implement location expressions.  */
901
902 struct symbol_computed_ops
903 {
904
905   /* Return the value of the variable SYMBOL, relative to the stack
906      frame FRAME.  If the variable has been optimized out, return
907      zero.
908
909      Iff `read_needs_frame (SYMBOL)' is not SYMBOL_NEEDS_FRAME, then
910      FRAME may be zero.  */
911
912   struct value *(*read_variable) (struct symbol * symbol,
913                                   struct frame_info * frame);
914
915   /* Read variable SYMBOL like read_variable at (callee) FRAME's function
916      entry.  SYMBOL should be a function parameter, otherwise
917      NO_ENTRY_VALUE_ERROR will be thrown.  */
918   struct value *(*read_variable_at_entry) (struct symbol *symbol,
919                                            struct frame_info *frame);
920
921   /* Find the "symbol_needs_kind" value for the given symbol.  This
922      value determines whether reading the symbol needs memory (e.g., a
923      global variable), just registers (a thread-local), or a frame (a
924      local variable).  */
925   enum symbol_needs_kind (*get_symbol_read_needs) (struct symbol * symbol);
926
927   /* Write to STREAM a natural-language description of the location of
928      SYMBOL, in the context of ADDR.  */
929   void (*describe_location) (struct symbol * symbol, CORE_ADDR addr,
930                              struct ui_file * stream);
931
932   /* Non-zero if this symbol's address computation is dependent on PC.  */
933   unsigned char location_has_loclist;
934
935   /* Tracepoint support.  Append bytecodes to the tracepoint agent
936      expression AX that push the address of the object SYMBOL.  Set
937      VALUE appropriately.  Note --- for objects in registers, this
938      needn't emit any code; as long as it sets VALUE properly, then
939      the caller will generate the right code in the process of
940      treating this as an lvalue or rvalue.  */
941
942   void (*tracepoint_var_ref) (struct symbol *symbol, struct agent_expr *ax,
943                               struct axs_value *value);
944
945   /* Generate C code to compute the location of SYMBOL.  The C code is
946      emitted to STREAM.  GDBARCH is the current architecture and PC is
947      the PC at which SYMBOL's location should be evaluated.
948      REGISTERS_USED is a vector indexed by register number; the
949      generator function should set an element in this vector if the
950      corresponding register is needed by the location computation.
951      The generated C code must assign the location to a local
952      variable; this variable's name is RESULT_NAME.  */
953
954   void (*generate_c_location) (struct symbol *symbol, string_file &stream,
955                                struct gdbarch *gdbarch,
956                                unsigned char *registers_used,
957                                CORE_ADDR pc, const char *result_name);
958
959 };
960
961 /* The methods needed to implement LOC_BLOCK for inferior functions.
962    These methods can use the symbol's .aux_value for additional
963    per-symbol information.  */
964
965 struct symbol_block_ops
966 {
967   /* Fill in *START and *LENGTH with DWARF block data of function
968      FRAMEFUNC valid for inferior context address PC.  Set *LENGTH to
969      zero if such location is not valid for PC; *START is left
970      uninitialized in such case.  */
971   void (*find_frame_base_location) (struct symbol *framefunc, CORE_ADDR pc,
972                                     const gdb_byte **start, size_t *length);
973
974   /* Return the frame base address.  FRAME is the frame for which we want to
975      compute the base address while FRAMEFUNC is the symbol for the
976      corresponding function.  Return 0 on failure (FRAMEFUNC may not hold the
977      information we need).
978
979      This method is designed to work with static links (nested functions
980      handling).  Static links are function properties whose evaluation returns
981      the frame base address for the enclosing frame.  However, there are
982      multiple definitions for "frame base": the content of the frame base
983      register, the CFA as defined by DWARF unwinding information, ...
984
985      So this specific method is supposed to compute the frame base address such
986      as for nested fuctions, the static link computes the same address.  For
987      instance, considering DWARF debugging information, the static link is
988      computed with DW_AT_static_link and this method must be used to compute
989      the corresponding DW_AT_frame_base attribute.  */
990   CORE_ADDR (*get_frame_base) (struct symbol *framefunc,
991                                struct frame_info *frame);
992 };
993
994 /* Functions used with LOC_REGISTER and LOC_REGPARM_ADDR.  */
995
996 struct symbol_register_ops
997 {
998   int (*register_number) (struct symbol *symbol, struct gdbarch *gdbarch);
999 };
1000
1001 /* Objects of this type are used to find the address class and the
1002    various computed ops vectors of a symbol.  */
1003
1004 struct symbol_impl
1005 {
1006   enum address_class aclass;
1007
1008   /* Used with LOC_COMPUTED.  */
1009   const struct symbol_computed_ops *ops_computed;
1010
1011   /* Used with LOC_BLOCK.  */
1012   const struct symbol_block_ops *ops_block;
1013
1014   /* Used with LOC_REGISTER and LOC_REGPARM_ADDR.  */
1015   const struct symbol_register_ops *ops_register;
1016 };
1017
1018 /* struct symbol has some subclasses.  This enum is used to
1019    differentiate between them.  */
1020
1021 enum symbol_subclass_kind
1022 {
1023   /* Plain struct symbol.  */
1024   SYMBOL_NONE,
1025
1026   /* struct template_symbol.  */
1027   SYMBOL_TEMPLATE,
1028
1029   /* struct rust_vtable_symbol.  */
1030   SYMBOL_RUST_VTABLE
1031 };
1032
1033 /* This structure is space critical.  See space comments at the top.  */
1034
1035 struct symbol
1036 {
1037
1038   /* The general symbol info required for all types of symbols.  */
1039
1040   struct general_symbol_info ginfo;
1041
1042   /* Data type of value */
1043
1044   struct type *type;
1045
1046   /* The owner of this symbol.
1047      Which one to use is defined by symbol.is_objfile_owned.  */
1048
1049   union
1050   {
1051     /* The symbol table containing this symbol.  This is the file associated
1052        with LINE.  It can be NULL during symbols read-in but it is never NULL
1053        during normal operation.  */
1054     struct symtab *symtab;
1055
1056     /* For types defined by the architecture.  */
1057     struct gdbarch *arch;
1058   } owner;
1059
1060   /* Domain code.  */
1061
1062   ENUM_BITFIELD(domain_enum_tag) domain : SYMBOL_DOMAIN_BITS;
1063
1064   /* Address class.  This holds an index into the 'symbol_impls'
1065      table.  The actual enum address_class value is stored there,
1066      alongside any per-class ops vectors.  */
1067
1068   unsigned int aclass_index : SYMBOL_ACLASS_BITS;
1069
1070   /* If non-zero then symbol is objfile-owned, use owner.symtab.
1071      Otherwise symbol is arch-owned, use owner.arch.  */
1072
1073   unsigned int is_objfile_owned : 1;
1074
1075   /* Whether this is an argument.  */
1076
1077   unsigned is_argument : 1;
1078
1079   /* Whether this is an inlined function (class LOC_BLOCK only).  */
1080   unsigned is_inlined : 1;
1081
1082   /* The concrete type of this symbol.  */
1083
1084   ENUM_BITFIELD (symbol_subclass_kind) subclass : 2;
1085
1086   /* Line number of this symbol's definition, except for inlined
1087      functions.  For an inlined function (class LOC_BLOCK and
1088      SYMBOL_INLINED set) this is the line number of the function's call
1089      site.  Inlined function symbols are not definitions, and they are
1090      never found by symbol table lookup.
1091      If this symbol is arch-owned, LINE shall be zero.
1092
1093      FIXME: Should we really make the assumption that nobody will try
1094      to debug files longer than 64K lines?  What about machine
1095      generated programs?  */
1096
1097   unsigned short line;
1098
1099   /* An arbitrary data pointer, allowing symbol readers to record
1100      additional information on a per-symbol basis.  Note that this data
1101      must be allocated using the same obstack as the symbol itself.  */
1102   /* So far it is only used by:
1103      LOC_COMPUTED: to find the location information
1104      LOC_BLOCK (DWARF2 function): information used internally by the
1105      DWARF 2 code --- specifically, the location expression for the frame
1106      base for this function.  */
1107   /* FIXME drow/2003-02-21: For the LOC_BLOCK case, it might be better
1108      to add a magic symbol to the block containing this information,
1109      or to have a generic debug info annotation slot for symbols.  */
1110
1111   void *aux_value;
1112
1113   struct symbol *hash_next;
1114 };
1115
1116 /* Several lookup functions return both a symbol and the block in which the
1117    symbol is found.  This structure is used in these cases.  */
1118
1119 struct block_symbol
1120 {
1121   /* The symbol that was found, or NULL if no symbol was found.  */
1122   struct symbol *symbol;
1123
1124   /* If SYMBOL is not NULL, then this is the block in which the symbol is
1125      defined.  */
1126   const struct block *block;
1127 };
1128
1129 extern const struct symbol_impl *symbol_impls;
1130
1131 /* For convenience.  All fields are NULL.  This means "there is no
1132    symbol".  */
1133 extern const struct block_symbol null_block_symbol;
1134
1135 /* Note: There is no accessor macro for symbol.owner because it is
1136    "private".  */
1137
1138 #define SYMBOL_DOMAIN(symbol)   (symbol)->domain
1139 #define SYMBOL_IMPL(symbol)             (symbol_impls[(symbol)->aclass_index])
1140 #define SYMBOL_ACLASS_INDEX(symbol)     (symbol)->aclass_index
1141 #define SYMBOL_CLASS(symbol)            (SYMBOL_IMPL (symbol).aclass)
1142 #define SYMBOL_OBJFILE_OWNED(symbol)    ((symbol)->is_objfile_owned)
1143 #define SYMBOL_IS_ARGUMENT(symbol)      (symbol)->is_argument
1144 #define SYMBOL_INLINED(symbol)          (symbol)->is_inlined
1145 #define SYMBOL_IS_CPLUS_TEMPLATE_FUNCTION(symbol) \
1146   (((symbol)->subclass) == SYMBOL_TEMPLATE)
1147 #define SYMBOL_TYPE(symbol)             (symbol)->type
1148 #define SYMBOL_LINE(symbol)             (symbol)->line
1149 #define SYMBOL_COMPUTED_OPS(symbol)     (SYMBOL_IMPL (symbol).ops_computed)
1150 #define SYMBOL_BLOCK_OPS(symbol)        (SYMBOL_IMPL (symbol).ops_block)
1151 #define SYMBOL_REGISTER_OPS(symbol)     (SYMBOL_IMPL (symbol).ops_register)
1152 #define SYMBOL_LOCATION_BATON(symbol)   (symbol)->aux_value
1153
1154 extern int register_symbol_computed_impl (enum address_class,
1155                                           const struct symbol_computed_ops *);
1156
1157 extern int register_symbol_block_impl (enum address_class aclass,
1158                                        const struct symbol_block_ops *ops);
1159
1160 extern int register_symbol_register_impl (enum address_class,
1161                                           const struct symbol_register_ops *);
1162
1163 /* Return the OBJFILE of SYMBOL.
1164    It is an error to call this if symbol.is_objfile_owned is false, which
1165    only happens for architecture-provided types.  */
1166
1167 extern struct objfile *symbol_objfile (const struct symbol *symbol);
1168
1169 /* Return the ARCH of SYMBOL.  */
1170
1171 extern struct gdbarch *symbol_arch (const struct symbol *symbol);
1172
1173 /* Return the SYMTAB of SYMBOL.
1174    It is an error to call this if symbol.is_objfile_owned is false, which
1175    only happens for architecture-provided types.  */
1176
1177 extern struct symtab *symbol_symtab (const struct symbol *symbol);
1178
1179 /* Set the symtab of SYMBOL to SYMTAB.
1180    It is an error to call this if symbol.is_objfile_owned is false, which
1181    only happens for architecture-provided types.  */
1182
1183 extern void symbol_set_symtab (struct symbol *symbol, struct symtab *symtab);
1184
1185 /* An instance of this type is used to represent a C++ template
1186    function.  A symbol is really of this type iff
1187    SYMBOL_IS_CPLUS_TEMPLATE_FUNCTION is true.  */
1188
1189 struct template_symbol : public symbol
1190 {
1191   /* The number of template arguments.  */
1192   int n_template_arguments;
1193
1194   /* The template arguments.  This is an array with
1195      N_TEMPLATE_ARGUMENTS elements.  */
1196   struct symbol **template_arguments;
1197 };
1198
1199 /* A symbol that represents a Rust virtual table object.  */
1200
1201 struct rust_vtable_symbol : public symbol
1202 {
1203   /* The concrete type for which this vtable was created; that is, in
1204      "impl Trait for Type", this is "Type".  */
1205   struct type *concrete_type;
1206 };
1207
1208 \f
1209 /* Each item represents a line-->pc (or the reverse) mapping.  This is
1210    somewhat more wasteful of space than one might wish, but since only
1211    the files which are actually debugged are read in to core, we don't
1212    waste much space.  */
1213
1214 struct linetable_entry
1215 {
1216   int line;
1217   CORE_ADDR pc;
1218 };
1219
1220 /* The order of entries in the linetable is significant.  They should
1221    be sorted by increasing values of the pc field.  If there is more than
1222    one entry for a given pc, then I'm not sure what should happen (and
1223    I not sure whether we currently handle it the best way).
1224
1225    Example: a C for statement generally looks like this
1226
1227    10   0x100   - for the init/test part of a for stmt.
1228    20   0x200
1229    30   0x300
1230    10   0x400   - for the increment part of a for stmt.
1231
1232    If an entry has a line number of zero, it marks the start of a PC
1233    range for which no line number information is available.  It is
1234    acceptable, though wasteful of table space, for such a range to be
1235    zero length.  */
1236
1237 struct linetable
1238 {
1239   int nitems;
1240
1241   /* Actually NITEMS elements.  If you don't like this use of the
1242      `struct hack', you can shove it up your ANSI (seriously, if the
1243      committee tells us how to do it, we can probably go along).  */
1244   struct linetable_entry item[1];
1245 };
1246
1247 /* How to relocate the symbols from each section in a symbol file.
1248    Each struct contains an array of offsets.
1249    The ordering and meaning of the offsets is file-type-dependent;
1250    typically it is indexed by section numbers or symbol types or
1251    something like that.
1252
1253    To give us flexibility in changing the internal representation
1254    of these offsets, the ANOFFSET macro must be used to insert and
1255    extract offset values in the struct.  */
1256
1257 struct section_offsets
1258 {
1259   CORE_ADDR offsets[1];         /* As many as needed.  */
1260 };
1261
1262 #define ANOFFSET(secoff, whichone) \
1263   ((whichone == -1)                       \
1264    ? (internal_error (__FILE__, __LINE__, \
1265                       _("Section index is uninitialized")), -1) \
1266    : secoff->offsets[whichone])
1267
1268 /* The size of a section_offsets table for N sections.  */
1269 #define SIZEOF_N_SECTION_OFFSETS(n) \
1270   (sizeof (struct section_offsets) \
1271    + sizeof (((struct section_offsets *) 0)->offsets) * ((n)-1))
1272
1273 /* Each source file or header is represented by a struct symtab.
1274    The name "symtab" is historical, another name for it is "filetab".
1275    These objects are chained through the `next' field.  */
1276
1277 struct symtab
1278 {
1279   /* Unordered chain of all filetabs in the compunit,  with the exception
1280      that the "main" source file is the first entry in the list.  */
1281
1282   struct symtab *next;
1283
1284   /* Backlink to containing compunit symtab.  */
1285
1286   struct compunit_symtab *compunit_symtab;
1287
1288   /* Table mapping core addresses to line numbers for this file.
1289      Can be NULL if none.  Never shared between different symtabs.  */
1290
1291   struct linetable *linetable;
1292
1293   /* Name of this source file.  This pointer is never NULL.  */
1294
1295   const char *filename;
1296
1297   /* Total number of lines found in source file.  */
1298
1299   int nlines;
1300
1301   /* line_charpos[N] is the position of the (N-1)th line of the
1302      source file.  "position" means something we can lseek() to; it
1303      is not guaranteed to be useful any other way.  */
1304
1305   int *line_charpos;
1306
1307   /* Language of this source file.  */
1308
1309   enum language language;
1310
1311   /* Full name of file as found by searching the source path.
1312      NULL if not yet known.  */
1313
1314   char *fullname;
1315 };
1316
1317 #define SYMTAB_COMPUNIT(symtab) ((symtab)->compunit_symtab)
1318 #define SYMTAB_LINETABLE(symtab) ((symtab)->linetable)
1319 #define SYMTAB_LANGUAGE(symtab) ((symtab)->language)
1320 #define SYMTAB_BLOCKVECTOR(symtab) \
1321   COMPUNIT_BLOCKVECTOR (SYMTAB_COMPUNIT (symtab))
1322 #define SYMTAB_OBJFILE(symtab) \
1323   COMPUNIT_OBJFILE (SYMTAB_COMPUNIT (symtab))
1324 #define SYMTAB_PSPACE(symtab) (SYMTAB_OBJFILE (symtab)->pspace)
1325 #define SYMTAB_DIRNAME(symtab) \
1326   COMPUNIT_DIRNAME (SYMTAB_COMPUNIT (symtab))
1327
1328 typedef struct symtab *symtab_ptr;
1329 DEF_VEC_P (symtab_ptr);
1330
1331 /* Compunit symtabs contain the actual "symbol table", aka blockvector, as well
1332    as the list of all source files (what gdb has historically associated with
1333    the term "symtab").
1334    Additional information is recorded here that is common to all symtabs in a
1335    compilation unit (DWARF or otherwise).
1336
1337    Example:
1338    For the case of a program built out of these files:
1339
1340    foo.c
1341      foo1.h
1342      foo2.h
1343    bar.c
1344      foo1.h
1345      bar.h
1346
1347    This is recorded as:
1348
1349    objfile -> foo.c(cu) -> bar.c(cu) -> NULL
1350                 |            |
1351                 v            v
1352               foo.c        bar.c
1353                 |            |
1354                 v            v
1355               foo1.h       foo1.h
1356                 |            |
1357                 v            v
1358               foo2.h       bar.h
1359                 |            |
1360                 v            v
1361                NULL         NULL
1362
1363    where "foo.c(cu)" and "bar.c(cu)" are struct compunit_symtab objects,
1364    and the files foo.c, etc. are struct symtab objects.  */
1365
1366 struct compunit_symtab
1367 {
1368   /* Unordered chain of all compunit symtabs of this objfile.  */
1369   struct compunit_symtab *next;
1370
1371   /* Object file from which this symtab information was read.  */
1372   struct objfile *objfile;
1373
1374   /* Name of the symtab.
1375      This is *not* intended to be a usable filename, and is
1376      for debugging purposes only.  */
1377   const char *name;
1378
1379   /* Unordered list of file symtabs, except that by convention the "main"
1380      source file (e.g., .c, .cc) is guaranteed to be first.
1381      Each symtab is a file, either the "main" source file (e.g., .c, .cc)
1382      or header (e.g., .h).  */
1383   struct symtab *filetabs;
1384
1385   /* Last entry in FILETABS list.
1386      Subfiles are added to the end of the list so they accumulate in order,
1387      with the main source subfile living at the front.
1388      The main reason is so that the main source file symtab is at the head
1389      of the list, and the rest appear in order for debugging convenience.  */
1390   struct symtab *last_filetab;
1391
1392   /* Non-NULL string that identifies the format of the debugging information,
1393      such as "stabs", "dwarf 1", "dwarf 2", "coff", etc.  This is mostly useful
1394      for automated testing of gdb but may also be information that is
1395      useful to the user.  */
1396   const char *debugformat;
1397
1398   /* String of producer version information, or NULL if we don't know.  */
1399   const char *producer;
1400
1401   /* Directory in which it was compiled, or NULL if we don't know.  */
1402   const char *dirname;
1403
1404   /* List of all symbol scope blocks for this symtab.  It is shared among
1405      all symtabs in a given compilation unit.  */
1406   const struct blockvector *blockvector;
1407
1408   /* Section in objfile->section_offsets for the blockvector and
1409      the linetable.  Probably always SECT_OFF_TEXT.  */
1410   int block_line_section;
1411
1412   /* Symtab has been compiled with both optimizations and debug info so that
1413      GDB may stop skipping prologues as variables locations are valid already
1414      at function entry points.  */
1415   unsigned int locations_valid : 1;
1416
1417   /* DWARF unwinder for this CU is valid even for epilogues (PC at the return
1418      instruction).  This is supported by GCC since 4.5.0.  */
1419   unsigned int epilogue_unwind_valid : 1;
1420
1421   /* struct call_site entries for this compilation unit or NULL.  */
1422   htab_t call_site_htab;
1423
1424   /* The macro table for this symtab.  Like the blockvector, this
1425      is shared between different symtabs in a given compilation unit.
1426      It's debatable whether it *should* be shared among all the symtabs in
1427      the given compilation unit, but it currently is.  */
1428   struct macro_table *macro_table;
1429
1430   /* If non-NULL, then this points to a NULL-terminated vector of
1431      included compunits.  When searching the static or global
1432      block of this compunit, the corresponding block of all
1433      included compunits will also be searched.  Note that this
1434      list must be flattened -- the symbol reader is responsible for
1435      ensuring that this vector contains the transitive closure of all
1436      included compunits.  */
1437   struct compunit_symtab **includes;
1438
1439   /* If this is an included compunit, this points to one includer
1440      of the table.  This user is considered the canonical compunit
1441      containing this one.  An included compunit may itself be
1442      included by another.  */
1443   struct compunit_symtab *user;
1444 };
1445
1446 #define COMPUNIT_OBJFILE(cust) ((cust)->objfile)
1447 #define COMPUNIT_FILETABS(cust) ((cust)->filetabs)
1448 #define COMPUNIT_DEBUGFORMAT(cust) ((cust)->debugformat)
1449 #define COMPUNIT_PRODUCER(cust) ((cust)->producer)
1450 #define COMPUNIT_DIRNAME(cust) ((cust)->dirname)
1451 #define COMPUNIT_BLOCKVECTOR(cust) ((cust)->blockvector)
1452 #define COMPUNIT_BLOCK_LINE_SECTION(cust) ((cust)->block_line_section)
1453 #define COMPUNIT_LOCATIONS_VALID(cust) ((cust)->locations_valid)
1454 #define COMPUNIT_EPILOGUE_UNWIND_VALID(cust) ((cust)->epilogue_unwind_valid)
1455 #define COMPUNIT_CALL_SITE_HTAB(cust) ((cust)->call_site_htab)
1456 #define COMPUNIT_MACRO_TABLE(cust) ((cust)->macro_table)
1457
1458 /* Iterate over all file tables (struct symtab) within a compunit.  */
1459
1460 #define ALL_COMPUNIT_FILETABS(cu, s) \
1461   for ((s) = (cu) -> filetabs; (s) != NULL; (s) = (s) -> next)
1462
1463 /* Return the primary symtab of CUST.  */
1464
1465 extern struct symtab *
1466   compunit_primary_filetab (const struct compunit_symtab *cust);
1467
1468 /* Return the language of CUST.  */
1469
1470 extern enum language compunit_language (const struct compunit_symtab *cust);
1471
1472 typedef struct compunit_symtab *compunit_symtab_ptr;
1473 DEF_VEC_P (compunit_symtab_ptr);
1474
1475 \f
1476
1477 /* The virtual function table is now an array of structures which have the
1478    form { int16 offset, delta; void *pfn; }. 
1479
1480    In normal virtual function tables, OFFSET is unused.
1481    DELTA is the amount which is added to the apparent object's base
1482    address in order to point to the actual object to which the
1483    virtual function should be applied.
1484    PFN is a pointer to the virtual function.
1485
1486    Note that this macro is g++ specific (FIXME).  */
1487
1488 #define VTBL_FNADDR_OFFSET 2
1489
1490 /* External variables and functions for the objects described above.  */
1491
1492 /* True if we are nested inside psymtab_to_symtab.  */
1493
1494 extern int currently_reading_symtab;
1495
1496 /* symtab.c lookup functions */
1497
1498 extern const char multiple_symbols_ask[];
1499 extern const char multiple_symbols_all[];
1500 extern const char multiple_symbols_cancel[];
1501
1502 const char *multiple_symbols_select_mode (void);
1503
1504 int symbol_matches_domain (enum language symbol_language, 
1505                            domain_enum symbol_domain,
1506                            domain_enum domain);
1507
1508 /* lookup a symbol table by source file name.  */
1509
1510 extern struct symtab *lookup_symtab (const char *);
1511
1512 /* An object of this type is passed as the 'is_a_field_of_this'
1513    argument to lookup_symbol and lookup_symbol_in_language.  */
1514
1515 struct field_of_this_result
1516 {
1517   /* The type in which the field was found.  If this is NULL then the
1518      symbol was not found in 'this'.  If non-NULL, then one of the
1519      other fields will be non-NULL as well.  */
1520
1521   struct type *type;
1522
1523   /* If the symbol was found as an ordinary field of 'this', then this
1524      is non-NULL and points to the particular field.  */
1525
1526   struct field *field;
1527
1528   /* If the symbol was found as a function field of 'this', then this
1529      is non-NULL and points to the particular field.  */
1530
1531   struct fn_fieldlist *fn_field;
1532 };
1533
1534 /* Find the definition for a specified symbol name NAME
1535    in domain DOMAIN in language LANGUAGE, visible from lexical block BLOCK
1536    if non-NULL or from global/static blocks if BLOCK is NULL.
1537    Returns the struct symbol pointer, or NULL if no symbol is found.
1538    C++: if IS_A_FIELD_OF_THIS is non-NULL on entry, check to see if
1539    NAME is a field of the current implied argument `this'.  If so fill in the
1540    fields of IS_A_FIELD_OF_THIS, otherwise the fields are set to NULL.
1541    The symbol's section is fixed up if necessary.  */
1542
1543 extern struct block_symbol
1544   lookup_symbol_in_language (const char *,
1545                              const struct block *,
1546                              const domain_enum,
1547                              enum language,
1548                              struct field_of_this_result *);
1549
1550 /* Same as lookup_symbol_in_language, but using the current language.  */
1551
1552 extern struct block_symbol lookup_symbol (const char *,
1553                                           const struct block *,
1554                                           const domain_enum,
1555                                           struct field_of_this_result *);
1556
1557 /* A default version of lookup_symbol_nonlocal for use by languages
1558    that can't think of anything better to do.
1559    This implements the C lookup rules.  */
1560
1561 extern struct block_symbol
1562   basic_lookup_symbol_nonlocal (const struct language_defn *langdef,
1563                                 const char *,
1564                                 const struct block *,
1565                                 const domain_enum);
1566
1567 /* Some helper functions for languages that need to write their own
1568    lookup_symbol_nonlocal functions.  */
1569
1570 /* Lookup a symbol in the static block associated to BLOCK, if there
1571    is one; do nothing if BLOCK is NULL or a global block.
1572    Upon success fixes up the symbol's section if necessary.  */
1573
1574 extern struct block_symbol
1575   lookup_symbol_in_static_block (const char *name,
1576                                  const struct block *block,
1577                                  const domain_enum domain);
1578
1579 /* Search all static file-level symbols for NAME from DOMAIN.
1580    Upon success fixes up the symbol's section if necessary.  */
1581
1582 extern struct block_symbol lookup_static_symbol (const char *name,
1583                                                  const domain_enum domain);
1584
1585 /* Lookup a symbol in all files' global blocks.
1586
1587    If BLOCK is non-NULL then it is used for two things:
1588    1) If a target-specific lookup routine for libraries exists, then use the
1589       routine for the objfile of BLOCK, and
1590    2) The objfile of BLOCK is used to assist in determining the search order
1591       if the target requires it.
1592       See gdbarch_iterate_over_objfiles_in_search_order.
1593
1594    Upon success fixes up the symbol's section if necessary.  */
1595
1596 extern struct block_symbol
1597   lookup_global_symbol (const char *name,
1598                         const struct block *block,
1599                         const domain_enum domain);
1600
1601 /* Lookup a symbol in block BLOCK.
1602    Upon success fixes up the symbol's section if necessary.  */
1603
1604 extern struct symbol *
1605   lookup_symbol_in_block (const char *name,
1606                           const struct block *block,
1607                           const domain_enum domain);
1608
1609 /* Look up the `this' symbol for LANG in BLOCK.  Return the symbol if
1610    found, or NULL if not found.  */
1611
1612 extern struct block_symbol
1613   lookup_language_this (const struct language_defn *lang,
1614                         const struct block *block);
1615
1616 /* Lookup a [struct, union, enum] by name, within a specified block.  */
1617
1618 extern struct type *lookup_struct (const char *, const struct block *);
1619
1620 extern struct type *lookup_union (const char *, const struct block *);
1621
1622 extern struct type *lookup_enum (const char *, const struct block *);
1623
1624 /* from blockframe.c: */
1625
1626 /* lookup the function symbol corresponding to the address.  */
1627
1628 extern struct symbol *find_pc_function (CORE_ADDR);
1629
1630 /* lookup the function corresponding to the address and section.  */
1631
1632 extern struct symbol *find_pc_sect_function (CORE_ADDR, struct obj_section *);
1633
1634 /* Find the symbol at the given address.  Returns NULL if no symbol
1635    found.  Only exact matches for ADDRESS are considered.  */
1636
1637 extern struct symbol *find_symbol_at_address (CORE_ADDR);
1638
1639 extern int find_pc_partial_function_gnu_ifunc (CORE_ADDR pc, const char **name,
1640                                                CORE_ADDR *address,
1641                                                CORE_ADDR *endaddr,
1642                                                int *is_gnu_ifunc_p);
1643
1644 /* lookup function from address, return name, start addr and end addr.  */
1645
1646 extern int find_pc_partial_function (CORE_ADDR, const char **, CORE_ADDR *,
1647                                      CORE_ADDR *);
1648
1649 extern void clear_pc_function_cache (void);
1650
1651 /* Expand symtab containing PC, SECTION if not already expanded.  */
1652
1653 extern void expand_symtab_containing_pc (CORE_ADDR, struct obj_section *);
1654
1655 /* lookup full symbol table by address.  */
1656
1657 extern struct compunit_symtab *find_pc_compunit_symtab (CORE_ADDR);
1658
1659 /* lookup full symbol table by address and section.  */
1660
1661 extern struct compunit_symtab *
1662   find_pc_sect_compunit_symtab (CORE_ADDR, struct obj_section *);
1663
1664 extern int find_pc_line_pc_range (CORE_ADDR, CORE_ADDR *, CORE_ADDR *);
1665
1666 extern void reread_symbols (void);
1667
1668 /* Look up a type named NAME in STRUCT_DOMAIN in the current language.
1669    The type returned must not be opaque -- i.e., must have at least one field
1670    defined.  */
1671
1672 extern struct type *lookup_transparent_type (const char *);
1673
1674 extern struct type *basic_lookup_transparent_type (const char *);
1675
1676 /* Macro for name of symbol to indicate a file compiled with gcc.  */
1677 #ifndef GCC_COMPILED_FLAG_SYMBOL
1678 #define GCC_COMPILED_FLAG_SYMBOL "gcc_compiled."
1679 #endif
1680
1681 /* Macro for name of symbol to indicate a file compiled with gcc2.  */
1682 #ifndef GCC2_COMPILED_FLAG_SYMBOL
1683 #define GCC2_COMPILED_FLAG_SYMBOL "gcc2_compiled."
1684 #endif
1685
1686 extern int in_gnu_ifunc_stub (CORE_ADDR pc);
1687
1688 /* Functions for resolving STT_GNU_IFUNC symbols which are implemented only
1689    for ELF symbol files.  */
1690
1691 struct gnu_ifunc_fns
1692 {
1693   /* See elf_gnu_ifunc_resolve_addr for its real implementation.  */
1694   CORE_ADDR (*gnu_ifunc_resolve_addr) (struct gdbarch *gdbarch, CORE_ADDR pc);
1695
1696   /* See elf_gnu_ifunc_resolve_name for its real implementation.  */
1697   int (*gnu_ifunc_resolve_name) (const char *function_name,
1698                                  CORE_ADDR *function_address_p);
1699
1700   /* See elf_gnu_ifunc_resolver_stop for its real implementation.  */
1701   void (*gnu_ifunc_resolver_stop) (struct breakpoint *b);
1702
1703   /* See elf_gnu_ifunc_resolver_return_stop for its real implementation.  */
1704   void (*gnu_ifunc_resolver_return_stop) (struct breakpoint *b);
1705 };
1706
1707 #define gnu_ifunc_resolve_addr gnu_ifunc_fns_p->gnu_ifunc_resolve_addr
1708 #define gnu_ifunc_resolve_name gnu_ifunc_fns_p->gnu_ifunc_resolve_name
1709 #define gnu_ifunc_resolver_stop gnu_ifunc_fns_p->gnu_ifunc_resolver_stop
1710 #define gnu_ifunc_resolver_return_stop \
1711   gnu_ifunc_fns_p->gnu_ifunc_resolver_return_stop
1712
1713 extern const struct gnu_ifunc_fns *gnu_ifunc_fns_p;
1714
1715 extern CORE_ADDR find_solib_trampoline_target (struct frame_info *, CORE_ADDR);
1716
1717 struct symtab_and_line
1718 {
1719   /* The program space of this sal.  */
1720   struct program_space *pspace = NULL;
1721
1722   struct symtab *symtab = NULL;
1723   struct symbol *symbol = NULL;
1724   struct obj_section *section = NULL;
1725   /* Line number.  Line numbers start at 1 and proceed through symtab->nlines.
1726      0 is never a valid line number; it is used to indicate that line number
1727      information is not available.  */
1728   int line = 0;
1729
1730   CORE_ADDR pc = 0;
1731   CORE_ADDR end = 0;
1732   bool explicit_pc = false;
1733   bool explicit_line = false;
1734
1735   /* The probe associated with this symtab_and_line.  */
1736   probe *prob = NULL;
1737   /* If PROBE is not NULL, then this is the objfile in which the probe
1738      originated.  */
1739   struct objfile *objfile = NULL;
1740 };
1741
1742 \f
1743
1744 /* Given a pc value, return line number it is in.  Second arg nonzero means
1745    if pc is on the boundary use the previous statement's line number.  */
1746
1747 extern struct symtab_and_line find_pc_line (CORE_ADDR, int);
1748
1749 /* Same function, but specify a section as well as an address.  */
1750
1751 extern struct symtab_and_line find_pc_sect_line (CORE_ADDR,
1752                                                  struct obj_section *, int);
1753
1754 /* Wrapper around find_pc_line to just return the symtab.  */
1755
1756 extern struct symtab *find_pc_line_symtab (CORE_ADDR);
1757
1758 /* Given a symtab and line number, return the pc there.  */
1759
1760 extern int find_line_pc (struct symtab *, int, CORE_ADDR *);
1761
1762 extern int find_line_pc_range (struct symtab_and_line, CORE_ADDR *,
1763                                CORE_ADDR *);
1764
1765 extern void resolve_sal_pc (struct symtab_and_line *);
1766
1767 /* solib.c */
1768
1769 extern void clear_solib (void);
1770
1771 /* source.c */
1772
1773 extern int identify_source_line (struct symtab *, int, int, CORE_ADDR);
1774
1775 /* Flags passed as 4th argument to print_source_lines.  */
1776
1777 enum print_source_lines_flag
1778   {
1779     /* Do not print an error message.  */
1780     PRINT_SOURCE_LINES_NOERROR = (1 << 0),
1781
1782     /* Print the filename in front of the source lines.  */
1783     PRINT_SOURCE_LINES_FILENAME = (1 << 1)
1784   };
1785 DEF_ENUM_FLAGS_TYPE (enum print_source_lines_flag, print_source_lines_flags);
1786
1787 extern void print_source_lines (struct symtab *, int, int,
1788                                 print_source_lines_flags);
1789
1790 extern void forget_cached_source_info_for_objfile (struct objfile *);
1791 extern void forget_cached_source_info (void);
1792
1793 extern void select_source_symtab (struct symtab *);
1794
1795 /* The reason we're calling into a completion match list collector
1796    function.  */
1797 enum class complete_symbol_mode
1798   {
1799     /* Completing an expression.  */
1800     EXPRESSION,
1801
1802     /* Completing a linespec.  */
1803     LINESPEC,
1804   };
1805
1806 extern void default_collect_symbol_completion_matches_break_on
1807   (completion_tracker &tracker,
1808    complete_symbol_mode mode,
1809    symbol_name_match_type name_match_type,
1810    const char *text, const char *word, const char *break_on,
1811    enum type_code code);
1812 extern void default_collect_symbol_completion_matches
1813   (completion_tracker &tracker,
1814    complete_symbol_mode,
1815    symbol_name_match_type name_match_type,
1816    const char *,
1817    const char *,
1818    enum type_code);
1819 extern void collect_symbol_completion_matches
1820   (completion_tracker &tracker,
1821    complete_symbol_mode mode,
1822    symbol_name_match_type name_match_type,
1823    const char *, const char *);
1824 extern void collect_symbol_completion_matches_type (completion_tracker &tracker,
1825                                                     const char *, const char *,
1826                                                     enum type_code);
1827
1828 extern void collect_file_symbol_completion_matches
1829   (completion_tracker &tracker,
1830    complete_symbol_mode,
1831    symbol_name_match_type name_match_type,
1832    const char *, const char *, const char *);
1833
1834 extern completion_list
1835   make_source_files_completion_list (const char *, const char *);
1836
1837 /* Return whether SYM is a function/method, as opposed to a data symbol.  */
1838
1839 extern bool symbol_is_function_or_method (symbol *sym);
1840
1841 /* Return whether MSYMBOL is a function/method, as opposed to a data
1842    symbol */
1843
1844 extern bool symbol_is_function_or_method (minimal_symbol *msymbol);
1845
1846 /* Return whether SYM should be skipped in completion mode MODE.  In
1847    linespec mode, we're only interested in functions/methods.  */
1848
1849 template<typename Symbol>
1850 static bool
1851 completion_skip_symbol (complete_symbol_mode mode, Symbol *sym)
1852 {
1853   return (mode == complete_symbol_mode::LINESPEC
1854           && !symbol_is_function_or_method (sym));
1855 }
1856
1857 /* symtab.c */
1858
1859 int matching_obj_sections (struct obj_section *, struct obj_section *);
1860
1861 extern struct symtab *find_line_symtab (struct symtab *, int, int *, int *);
1862
1863 extern struct symtab_and_line find_function_start_sal (struct symbol *sym,
1864                                                        int);
1865
1866 extern void skip_prologue_sal (struct symtab_and_line *);
1867
1868 /* symtab.c */
1869
1870 extern CORE_ADDR skip_prologue_using_sal (struct gdbarch *gdbarch,
1871                                           CORE_ADDR func_addr);
1872
1873 extern struct symbol *fixup_symbol_section (struct symbol *,
1874                                             struct objfile *);
1875
1876 /* If MSYMBOL is an text symbol, look for a function debug symbol with
1877    the same address.  Returns NULL if not found.  This is necessary in
1878    case a function is an alias to some other function, because debug
1879    information is only emitted for the alias target function's
1880    definition, not for the alias.  */
1881 extern symbol *find_function_alias_target (bound_minimal_symbol msymbol);
1882
1883 /* Symbol searching */
1884 /* Note: struct symbol_search, search_symbols, et.al. are declared here,
1885    instead of making them local to symtab.c, for gdbtk's sake.  */
1886
1887 /* When using search_symbols, a vector of the following structs is
1888    returned.  */
1889 struct symbol_search
1890 {
1891   symbol_search (int block_, struct symbol *symbol_)
1892     : block (block_),
1893       symbol (symbol_)
1894   {
1895     msymbol.minsym = nullptr;
1896     msymbol.objfile = nullptr;
1897   }
1898
1899   symbol_search (int block_, struct minimal_symbol *minsym,
1900                  struct objfile *objfile)
1901     : block (block_),
1902       symbol (nullptr)
1903   {
1904     msymbol.minsym = minsym;
1905     msymbol.objfile = objfile;
1906   }
1907
1908   bool operator< (const symbol_search &other) const
1909   {
1910     return compare_search_syms (*this, other) < 0;
1911   }
1912
1913   bool operator== (const symbol_search &other) const
1914   {
1915     return compare_search_syms (*this, other) == 0;
1916   }
1917
1918   /* The block in which the match was found.  Could be, for example,
1919      STATIC_BLOCK or GLOBAL_BLOCK.  */
1920   int block;
1921
1922   /* Information describing what was found.
1923
1924      If symbol is NOT NULL, then information was found for this match.  */
1925   struct symbol *symbol;
1926
1927   /* If msymbol is non-null, then a match was made on something for
1928      which only minimal_symbols exist.  */
1929   struct bound_minimal_symbol msymbol;
1930
1931 private:
1932
1933   static int compare_search_syms (const symbol_search &sym_a,
1934                                   const symbol_search &sym_b);
1935 };
1936
1937 extern std::vector<symbol_search> search_symbols (const char *,
1938                                                   enum search_domain, int,
1939                                                   const char **);
1940
1941 /* The name of the ``main'' function.
1942    FIXME: cagney/2001-03-20: Can't make main_name() const since some
1943    of the calling code currently assumes that the string isn't
1944    const.  */
1945 extern /*const */ char *main_name (void);
1946 extern enum language main_language (void);
1947
1948 /* Lookup symbol NAME from DOMAIN in MAIN_OBJFILE's global blocks.
1949    This searches MAIN_OBJFILE as well as any associated separate debug info
1950    objfiles of MAIN_OBJFILE.
1951    Upon success fixes up the symbol's section if necessary.  */
1952
1953 extern struct block_symbol
1954   lookup_global_symbol_from_objfile (struct objfile *main_objfile,
1955                                      const char *name,
1956                                      const domain_enum domain);
1957
1958 /* Return 1 if the supplied producer string matches the ARM RealView
1959    compiler (armcc).  */
1960 int producer_is_realview (const char *producer);
1961
1962 void fixup_section (struct general_symbol_info *ginfo,
1963                     CORE_ADDR addr, struct objfile *objfile);
1964
1965 /* Look up objfile containing BLOCK.  */
1966
1967 struct objfile *lookup_objfile_from_block (const struct block *block);
1968
1969 extern unsigned int symtab_create_debug;
1970
1971 extern unsigned int symbol_lookup_debug;
1972
1973 extern int basenames_may_differ;
1974
1975 int compare_filenames_for_search (const char *filename,
1976                                   const char *search_name);
1977
1978 int compare_glob_filenames_for_search (const char *filename,
1979                                        const char *search_name);
1980
1981 bool iterate_over_some_symtabs (const char *name,
1982                                 const char *real_path,
1983                                 struct compunit_symtab *first,
1984                                 struct compunit_symtab *after_last,
1985                                 gdb::function_view<bool (symtab *)> callback);
1986
1987 void iterate_over_symtabs (const char *name,
1988                            gdb::function_view<bool (symtab *)> callback);
1989
1990
1991 std::vector<CORE_ADDR> find_pcs_for_symtab_line
1992     (struct symtab *symtab, int line, struct linetable_entry **best_entry);
1993
1994 /* Prototype for callbacks for LA_ITERATE_OVER_SYMBOLS.  The callback
1995    is called once per matching symbol SYM.  The callback should return
1996    true to indicate that LA_ITERATE_OVER_SYMBOLS should continue
1997    iterating, or false to indicate that the iteration should end.  */
1998
1999 typedef bool (symbol_found_callback_ftype) (symbol *sym);
2000
2001 void iterate_over_symbols (const struct block *block,
2002                            const lookup_name_info &name,
2003                            const domain_enum domain,
2004                            gdb::function_view<symbol_found_callback_ftype> callback);
2005
2006 /* Storage type used by demangle_for_lookup.  demangle_for_lookup
2007    either returns a const char * pointer that points to either of the
2008    fields of this type, or a pointer to the input NAME.  This is done
2009    this way because the underlying functions that demangle_for_lookup
2010    calls either return a std::string (e.g., cp_canonicalize_string) or
2011    a malloc'ed buffer (libiberty's demangled), and we want to avoid
2012    unnecessary reallocation/string copying.  */
2013 class demangle_result_storage
2014 {
2015 public:
2016
2017   /* Swap the std::string storage with STR, and return a pointer to
2018      the beginning of the new string.  */
2019   const char *swap_string (std::string &str)
2020   {
2021     std::swap (m_string, str);
2022     return m_string.c_str ();
2023   }
2024
2025   /* Set the malloc storage to now point at PTR.  Any previous malloc
2026      storage is released.  */
2027   const char *set_malloc_ptr (char *ptr)
2028   {
2029     m_malloc.reset (ptr);
2030     return ptr;
2031   }
2032
2033 private:
2034
2035   /* The storage.  */
2036   std::string m_string;
2037   gdb::unique_xmalloc_ptr<char> m_malloc;
2038 };
2039
2040 const char *
2041   demangle_for_lookup (const char *name, enum language lang,
2042                        demangle_result_storage &storage);
2043
2044 struct symbol *allocate_symbol (struct objfile *);
2045
2046 void initialize_objfile_symbol (struct symbol *);
2047
2048 struct template_symbol *allocate_template_symbol (struct objfile *);
2049
2050 /* Test to see if the symbol of language SYMBOL_LANGUAGE specified by
2051    SYMNAME (which is already demangled for C++ symbols) matches
2052    SYM_TEXT in the first SYM_TEXT_LEN characters.  If so, add it to
2053    the current completion list.  */
2054 void completion_list_add_name (completion_tracker &tracker,
2055                                language symbol_language,
2056                                const char *symname,
2057                                const lookup_name_info &lookup_name,
2058                                const char *text, const char *word);
2059
2060 #endif /* !defined(SYMTAB_H) */