]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/symtab.h
gdb: remove COMPUNIT_DIRNAME macro, add getter/setter
[thirdparty/binutils-gdb.git] / gdb / symtab.h
CommitLineData
c906108c 1/* Symbol table definitions for GDB.
1bac305b 2
4a94e368 3 Copyright (C) 1986-2022 Free Software Foundation, Inc.
c906108c 4
c5aa993b 5 This file is part of GDB.
c906108c 6
c5aa993b
JM
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
a9762ec7 9 the Free Software Foundation; either version 3 of the License, or
c5aa993b 10 (at your option) any later version.
c906108c 11
c5aa993b
JM
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
c906108c 16
c5aa993b 17 You should have received a copy of the GNU General Public License
a9762ec7 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
19
20#if !defined (SYMTAB_H)
21#define SYMTAB_H 1
22
a014b87a 23#include <array>
67d89901 24#include <vector>
b5ec771e 25#include <string>
c2512106 26#include <set>
268a13a5 27#include "gdbsupport/gdb_vecs.h"
2f68a895 28#include "gdbtypes.h"
bf31fd38 29#include "gdbsupport/gdb_obstack.h"
d322d6d6 30#include "gdbsupport/gdb_regex.h"
268a13a5
TT
31#include "gdbsupport/enum-flags.h"
32#include "gdbsupport/function-view.h"
33#include "gdbsupport/gdb_optional.h"
31edb802 34#include "gdbsupport/gdb_string_view.h"
268a13a5 35#include "gdbsupport/next-iterator.h"
9be25986 36#include "gdbsupport/iterator-range.h"
eb3ff9a5 37#include "completer.h"
f10ffa41 38#include "gdb-demangle.h"
f8eba3c6 39
5f8a3188 40/* Opaque declarations. */
da3331ec
AC
41struct ui_file;
42struct frame_info;
43struct symbol;
5f8a3188 44struct obstack;
6a2f5abf 45struct objfile;
fe898f56
DC
46struct block;
47struct blockvector;
4c2df51b
DJ
48struct axs_value;
49struct agent_expr;
6c95b8df 50struct program_space;
66a17cb6 51struct language_defn;
4357ac6c 52struct common_block;
06096720
AB
53struct obj_section;
54struct cmd_list_element;
935676c9 55class probe;
b5ec771e
PA
56struct lookup_name_info;
57
58/* How to match a lookup name against a symbol search name. */
59enum class symbol_name_match_type
60{
61 /* Wild matching. Matches unqualified symbol names in all
62 namespace/module/packages, etc. */
63 WILD,
64
65 /* Full matching. The lookup name indicates a fully-qualified name,
66 and only matches symbol search names in the specified
67 namespace/module/package. */
68 FULL,
69
de63c46b
PA
70 /* Search name matching. This is like FULL, but the search name did
71 not come from the user; instead it is already a search name
987012b8 72 retrieved from a search_name () call.
de63c46b
PA
73 For Ada, this avoids re-encoding an already-encoded search name
74 (which would potentially incorrectly lowercase letters in the
75 linkage/search name that should remain uppercase). For C++, it
76 avoids trying to demangle a name we already know is
77 demangled. */
78 SEARCH_NAME,
79
b5ec771e
PA
80 /* Expression matching. The same as FULL matching in most
81 languages. The same as WILD matching in Ada. */
82 EXPRESSION,
83};
84
85/* Hash the given symbol search name according to LANGUAGE's
86 rules. */
87extern unsigned int search_name_hash (enum language language,
88 const char *search_name);
89
90/* Ada-specific bits of a lookup_name_info object. This is lazily
91 constructed on demand. */
92
93class ada_lookup_name_info final
94{
95 public:
96 /* Construct. */
97 explicit ada_lookup_name_info (const lookup_name_info &lookup_name);
98
99 /* Compare SYMBOL_SEARCH_NAME with our lookup name, using MATCH_TYPE
100 as name match type. Returns true if there's a match, false
101 otherwise. If non-NULL, store the matching results in MATCH. */
102 bool matches (const char *symbol_search_name,
103 symbol_name_match_type match_type,
a207cff2 104 completion_match_result *comp_match_res) const;
b5ec771e
PA
105
106 /* The Ada-encoded lookup name. */
107 const std::string &lookup_name () const
108 { return m_encoded_name; }
109
110 /* Return true if we're supposed to be doing a wild match look
111 up. */
112 bool wild_match_p () const
113 { return m_wild_match_p; }
114
115 /* Return true if we're looking up a name inside package
116 Standard. */
117 bool standard_p () const
118 { return m_standard_p; }
119
c63d3e8d
PA
120 /* Return true if doing a verbatim match. */
121 bool verbatim_p () const
122 { return m_verbatim_p; }
123
124private:
b5ec771e
PA
125 /* The Ada-encoded lookup name. */
126 std::string m_encoded_name;
127
128 /* Whether the user-provided lookup name was Ada encoded. If so,
129 then return encoded names in the 'matches' method's 'completion
130 match result' output. */
131 bool m_encoded_p : 1;
132
133 /* True if really doing wild matching. Even if the user requests
134 wild matching, some cases require full matching. */
135 bool m_wild_match_p : 1;
136
137 /* True if doing a verbatim match. This is true if the decoded
138 version of the symbol name is wrapped in '<'/'>'. This is an
139 escape hatch users can use to look up symbols the Ada encoding
140 does not understand. */
141 bool m_verbatim_p : 1;
142
143 /* True if the user specified a symbol name that is inside package
144 Standard. Symbol names inside package Standard are handled
145 specially. We always do a non-wild match of the symbol name
146 without the "standard__" prefix, and only search static and
147 global symbols. This was primarily introduced in order to allow
148 the user to specifically access the standard exceptions using,
149 for instance, Standard.Constraint_Error when Constraint_Error is
150 ambiguous (due to the user defining its own Constraint_Error
151 entity inside its program). */
152 bool m_standard_p : 1;
153};
154
155/* Language-specific bits of a lookup_name_info object, for languages
156 that do name searching using demangled names (C++/D/Go). This is
157 lazily constructed on demand. */
158
159struct demangle_for_lookup_info final
160{
161public:
162 demangle_for_lookup_info (const lookup_name_info &lookup_name,
163 language lang);
164
165 /* The demangled lookup name. */
166 const std::string &lookup_name () const
167 { return m_demangled_name; }
168
169private:
170 /* The demangled lookup name. */
171 std::string m_demangled_name;
172};
173
174/* Object that aggregates all information related to a symbol lookup
175 name. I.e., the name that is matched against the symbol's search
176 name. Caches per-language information so that it doesn't require
177 recomputing it for every symbol comparison, like for example the
178 Ada encoded name and the symbol's name hash for a given language.
179 The object is conceptually immutable once constructed, and thus has
180 no setters. This is to prevent some code path from tweaking some
181 property of the lookup name for some local reason and accidentally
182 altering the results of any continuing search(es).
183 lookup_name_info objects are generally passed around as a const
184 reference to reinforce that. (They're not passed around by value
185 because they're not small.) */
186class lookup_name_info final
187{
188 public:
e0802d59
TT
189 /* We delete this overload so that the callers are required to
190 explicitly handle the lifetime of the name. */
191 lookup_name_info (std::string &&name,
192 symbol_name_match_type match_type,
193 bool completion_mode = false,
194 bool ignore_parameters = false) = delete;
195
196 /* This overload requires that NAME have a lifetime at least as long
197 as the lifetime of this object. */
198 lookup_name_info (const std::string &name,
199 symbol_name_match_type match_type,
200 bool completion_mode = false,
201 bool ignore_parameters = false)
202 : m_match_type (match_type),
203 m_completion_mode (completion_mode),
204 m_ignore_parameters (ignore_parameters),
205 m_name (name)
206 {}
207
208 /* This overload requires that NAME have a lifetime at least as long
209 as the lifetime of this object. */
210 lookup_name_info (const char *name,
b5ec771e 211 symbol_name_match_type match_type,
c62446b1
PA
212 bool completion_mode = false,
213 bool ignore_parameters = false)
b5ec771e
PA
214 : m_match_type (match_type),
215 m_completion_mode (completion_mode),
c62446b1 216 m_ignore_parameters (ignore_parameters),
e0802d59 217 m_name (name)
b5ec771e
PA
218 {}
219
220 /* Getters. See description of each corresponding field. */
221 symbol_name_match_type match_type () const { return m_match_type; }
222 bool completion_mode () const { return m_completion_mode; }
e0802d59 223 gdb::string_view name () const { return m_name; }
c62446b1
PA
224 const bool ignore_parameters () const { return m_ignore_parameters; }
225
e0802d59
TT
226 /* Like the "name" method but guarantees that the returned string is
227 \0-terminated. */
228 const char *c_str () const
229 {
230 /* Actually this is always guaranteed due to how the class is
231 constructed. */
232 return m_name.data ();
233 }
234
c62446b1
PA
235 /* Return a version of this lookup name that is usable with
236 comparisons against symbols have no parameter info, such as
237 psymbols and GDB index symbols. */
238 lookup_name_info make_ignore_params () const
239 {
e0802d59 240 return lookup_name_info (c_str (), m_match_type, m_completion_mode,
c62446b1
PA
241 true /* ignore params */);
242 }
b5ec771e
PA
243
244 /* Get the search name hash for searches in language LANG. */
245 unsigned int search_name_hash (language lang) const
246 {
247 /* Only compute each language's hash once. */
248 if (!m_demangled_hashes_p[lang])
249 {
250 m_demangled_hashes[lang]
e0802d59 251 = ::search_name_hash (lang, language_lookup_name (lang));
b5ec771e
PA
252 m_demangled_hashes_p[lang] = true;
253 }
254 return m_demangled_hashes[lang];
255 }
256
257 /* Get the search name for searches in language LANG. */
e0802d59 258 const char *language_lookup_name (language lang) const
b5ec771e
PA
259 {
260 switch (lang)
261 {
262 case language_ada:
e0802d59 263 return ada ().lookup_name ().c_str ();
b5ec771e 264 case language_cplus:
e0802d59 265 return cplus ().lookup_name ().c_str ();
b5ec771e 266 case language_d:
e0802d59 267 return d ().lookup_name ().c_str ();
b5ec771e 268 case language_go:
e0802d59 269 return go ().lookup_name ().c_str ();
b5ec771e 270 default:
e0802d59 271 return m_name.data ();
b5ec771e
PA
272 }
273 }
274
275 /* Get the Ada-specific lookup info. */
276 const ada_lookup_name_info &ada () const
277 {
278 maybe_init (m_ada);
279 return *m_ada;
280 }
281
282 /* Get the C++-specific lookup info. */
283 const demangle_for_lookup_info &cplus () const
284 {
285 maybe_init (m_cplus, language_cplus);
286 return *m_cplus;
287 }
288
289 /* Get the D-specific lookup info. */
290 const demangle_for_lookup_info &d () const
291 {
292 maybe_init (m_d, language_d);
293 return *m_d;
294 }
295
296 /* Get the Go-specific lookup info. */
297 const demangle_for_lookup_info &go () const
298 {
299 maybe_init (m_go, language_go);
300 return *m_go;
301 }
302
303 /* Get a reference to a lookup_name_info object that matches any
304 symbol name. */
305 static const lookup_name_info &match_any ();
306
307private:
308 /* Initialize FIELD, if not initialized yet. */
309 template<typename Field, typename... Args>
310 void maybe_init (Field &field, Args&&... args) const
311 {
312 if (!field)
313 field.emplace (*this, std::forward<Args> (args)...);
314 }
315
316 /* The lookup info as passed to the ctor. */
317 symbol_name_match_type m_match_type;
318 bool m_completion_mode;
c62446b1 319 bool m_ignore_parameters;
e0802d59 320 gdb::string_view m_name;
b5ec771e
PA
321
322 /* Language-specific info. These fields are filled lazily the first
323 time a lookup is done in the corresponding language. They're
324 mutable because lookup_name_info objects are typically passed
325 around by const reference (see intro), and they're conceptually
326 "cache" that can always be reconstructed from the non-mutable
327 fields. */
328 mutable gdb::optional<ada_lookup_name_info> m_ada;
329 mutable gdb::optional<demangle_for_lookup_info> m_cplus;
330 mutable gdb::optional<demangle_for_lookup_info> m_d;
331 mutable gdb::optional<demangle_for_lookup_info> m_go;
332
333 /* The demangled hashes. Stored in an array with one entry for each
334 possible language. The second array records whether we've
335 already computed the each language's hash. (These are separate
336 arrays instead of a single array of optional<unsigned> to avoid
337 alignment padding). */
338 mutable std::array<unsigned int, nr_languages> m_demangled_hashes;
339 mutable std::array<bool, nr_languages> m_demangled_hashes_p {};
340};
341
342/* Comparison function for completion symbol lookup.
343
344 Returns true if the symbol name matches against LOOKUP_NAME.
345
346 SYMBOL_SEARCH_NAME should be a symbol's "search" name.
347
a207cff2
PA
348 On success and if non-NULL, COMP_MATCH_RES->match is set to point
349 to the symbol name as should be presented to the user as a
350 completion match list element. In most languages, this is the same
351 as the symbol's search name, but in some, like Ada, the display
352 name is dynamically computed within the comparison routine.
353
354 Also, on success and if non-NULL, COMP_MATCH_RES->match_for_lcd
355 points the part of SYMBOL_SEARCH_NAME that was considered to match
356 LOOKUP_NAME. E.g., in C++, in linespec/wild mode, if the symbol is
357 "foo::function()" and LOOKUP_NAME is "function(", MATCH_FOR_LCD
358 points to "function()" inside SYMBOL_SEARCH_NAME. */
b5ec771e
PA
359typedef bool (symbol_name_matcher_ftype)
360 (const char *symbol_search_name,
361 const lookup_name_info &lookup_name,
a207cff2 362 completion_match_result *comp_match_res);
c906108c 363
a7f19c79
MC
364/* Some of the structures in this file are space critical.
365 The space-critical structures are:
366
367 struct general_symbol_info
368 struct symbol
369 struct partial_symbol
370
5bccb4d1 371 These structures are laid out to encourage good packing.
a7f19c79
MC
372 They use ENUM_BITFIELD and short int fields, and they order the
373 structure members so that fields less than a word are next
c378eb4e 374 to each other so they can be packed together. */
a7f19c79
MC
375
376/* Rearranged: used ENUM_BITFIELD and rearranged field order in
377 all the space critical structures (plus struct minimal_symbol).
378 Memory usage dropped from 99360768 bytes to 90001408 bytes.
379 I measured this with before-and-after tests of
380 "HEAD-old-gdb -readnow HEAD-old-gdb" and
381 "HEAD-new-gdb -readnow HEAD-old-gdb" on native i686-pc-linux-gnu,
382 red hat linux 8, with LD_LIBRARY_PATH=/usr/lib/debug,
383 typing "maint space 1" at the first command prompt.
384
385 Here is another measurement (from andrew c):
386 # no /usr/lib/debug, just plain glibc, like a normal user
387 gdb HEAD-old-gdb
388 (gdb) break internal_error
389 (gdb) run
390 (gdb) maint internal-error
391 (gdb) backtrace
392 (gdb) maint space 1
393
394 gdb gdb_6_0_branch 2003-08-19 space used: 8896512
395 gdb HEAD 2003-08-19 space used: 8904704
396 gdb HEAD 2003-08-21 space used: 8396800 (+symtab.h)
397 gdb HEAD 2003-08-21 space used: 8265728 (+gdbtypes.h)
398
399 The third line shows the savings from the optimizations in symtab.h.
400 The fourth line shows the savings from the optimizations in
401 gdbtypes.h. Both optimizations are in gdb HEAD now.
402
403 --chastain 2003-08-21 */
404
c906108c
SS
405/* Define a structure for the information that is common to all symbol types,
406 including minimal symbols, partial symbols, and full symbols. In a
407 multilanguage environment, some language specific information may need to
c378eb4e 408 be recorded along with each symbol. */
c906108c 409
c378eb4e 410/* This structure is space critical. See space comments at the top. */
c906108c
SS
411
412struct general_symbol_info
17c5ed2c 413{
c9d95fa3
CB
414 /* Short version as to when to use which name accessor:
415 Use natural_name () to refer to the name of the symbol in the original
416 source code. Use linkage_name () if you want to know what the linker
417 thinks the symbol's name is. Use print_name () for output. Use
418 demangled_name () if you specifically need to know whether natural_name ()
419 and linkage_name () are different. */
420
421 const char *linkage_name () const
4d4eaa30 422 { return m_name; }
c9d95fa3
CB
423
424 /* Return SYMBOL's "natural" name, i.e. the name that it was called in
425 the original source code. In languages like C++ where symbols may
426 be mangled for ease of manipulation by the linker, this is the
427 demangled name. */
428 const char *natural_name () const;
429
430 /* Returns a version of the name of a symbol that is
431 suitable for output. In C++ this is the "demangled" form of the
432 name if demangle is on and the "mangled" form of the name if
433 demangle is off. In other languages this is just the symbol name.
434 The result should never be NULL. Don't use this for internal
435 purposes (e.g. storing in a hashtable): it's only suitable for output. */
436 const char *print_name () const
437 { return demangle ? natural_name () : linkage_name (); }
438
439 /* Return the demangled name for a symbol based on the language for
440 that symbol. If no demangled name exists, return NULL. */
441 const char *demangled_name () const;
442
443 /* Returns the name to be used when sorting and searching symbols.
444 In C++, we search for the demangled form of a name,
445 and so sort symbols accordingly. In Ada, however, we search by mangled
446 name. If there is no distinct demangled name, then this
447 returns the same value (same pointer) as linkage_name (). */
448 const char *search_name () const;
449
43678b0a
CB
450 /* Set just the linkage name of a symbol; do not try to demangle
451 it. Used for constructs which do not have a mangled name,
4d4eaa30 452 e.g. struct tags. Unlike compute_and_set_names, linkage_name must
43678b0a
CB
453 be terminated and either already on the objfile's obstack or
454 permanently allocated. */
455 void set_linkage_name (const char *linkage_name)
4d4eaa30 456 { m_name = linkage_name; }
43678b0a 457
ff985671
TT
458 /* Set the demangled name of this symbol to NAME. NAME must be
459 already correctly allocated. If the symbol's language is Ada,
460 then the name is ignored and the obstack is set. */
461 void set_demangled_name (const char *name, struct obstack *obstack);
462
c1b5c1eb
CB
463 enum language language () const
464 { return m_language; }
465
d3ecddab
CB
466 /* Initializes the language dependent portion of a symbol
467 depending upon the language for the symbol. */
468 void set_language (enum language language, struct obstack *obstack);
469
4d4eaa30
CB
470 /* Set the linkage and natural names of a symbol, by demangling
471 the linkage name. If linkage_name may not be nullterminated,
472 copy_name must be set to true. */
473 void compute_and_set_names (gdb::string_view linkage_name, bool copy_name,
474 struct objfile_per_bfd_storage *per_bfd,
475 gdb::optional<hashval_t> hash
dda83cd7 476 = gdb::optional<hashval_t> ());
4d4eaa30 477
22abf04a 478 /* Name of the symbol. This is a required field. Storage for the
4a146b47
EZ
479 name is allocated on the objfile_obstack for the associated
480 objfile. For languages like C++ that make a distinction between
481 the mangled name and demangled name, this is the mangled
482 name. */
c906108c 483
4d4eaa30 484 const char *m_name;
c906108c 485
17c5ed2c
DC
486 /* Value of the symbol. Which member of this union to use, and what
487 it means, depends on what kind of symbol this is and its
488 SYMBOL_CLASS. See comments there for more details. All of these
489 are in host byte order (though what they point to might be in
490 target byte order, e.g. LOC_CONST_BYTES). */
c906108c 491
17c5ed2c
DC
492 union
493 {
12df843f 494 LONGEST ivalue;
c906108c 495
3977b71f 496 const struct block *block;
c906108c 497
d47a1bc1 498 const gdb_byte *bytes;
c906108c 499
17c5ed2c 500 CORE_ADDR address;
c906108c 501
5a352474 502 /* A common block. Used with LOC_COMMON_BLOCK. */
4357ac6c 503
17a40b44 504 const struct common_block *common_block;
4357ac6c 505
c378eb4e 506 /* For opaque typedef struct chain. */
c906108c 507
17c5ed2c
DC
508 struct symbol *chain;
509 }
510 value;
c906108c 511
17c5ed2c 512 /* Since one and only one language can apply, wrap the language specific
29df156d 513 information inside a union. */
c906108c 514
17c5ed2c
DC
515 union
516 {
f85f34ed
TT
517 /* A pointer to an obstack that can be used for storage associated
518 with this symbol. This is only used by Ada, and only when the
519 'ada_mangled' field is zero. */
520 struct obstack *obstack;
521
afa16725 522 /* This is used by languages which wish to store a demangled name.
9c37b5ae 523 currently used by Ada, C++, and Objective C. */
615b3f62 524 const char *demangled_name;
17c5ed2c
DC
525 }
526 language_specific;
c5aa993b 527
17c5ed2c
DC
528 /* Record the source code language that applies to this symbol.
529 This is used to select one of the fields from the language specific
c378eb4e 530 union above. */
c5aa993b 531
c1b5c1eb 532 ENUM_BITFIELD(language) m_language : LANGUAGE_BITS;
c5aa993b 533
a04a15f5 534 /* This is only used by Ada. If set, then the 'demangled_name' field
f85f34ed
TT
535 of language_specific is valid. Otherwise, the 'obstack' field is
536 valid. */
537 unsigned int ada_mangled : 1;
538
17c5ed2c
DC
539 /* Which section is this symbol in? This is an index into
540 section_offsets for this objfile. Negative means that the symbol
e27d198c 541 does not get relocated relative to a section. */
c5aa993b 542
a52d653e
AB
543 short m_section;
544
545 /* Set the index into the obj_section list (within the containing
546 objfile) for the section that contains this symbol. See M_SECTION
547 for more details. */
548
549 void set_section_index (short idx)
550 { m_section = idx; }
551
552 /* Return the index into the obj_section list (within the containing
553 objfile) for the section that contains this symbol. See M_SECTION
554 for more details. */
555
556 short section_index () const
557 { return m_section; }
ebbc3a7d
AB
558
559 /* Return the obj_section from OBJFILE for this symbol. The symbol
560 returned is based on the SECTION member variable, and can be nullptr
561 if SECTION is negative. */
562
563 struct obj_section *obj_section (const struct objfile *objfile) const;
17c5ed2c 564};
c906108c 565
714835d5 566extern CORE_ADDR symbol_overlayed_address (CORE_ADDR, struct obj_section *);
c906108c 567
4b610737
TT
568/* Return the address of SYM. The MAYBE_COPIED flag must be set on
569 SYM. If SYM appears in the main program's minimal symbols, then
570 that minsym's address is returned; otherwise, SYM's address is
571 returned. This should generally only be used via the
572 SYMBOL_VALUE_ADDRESS macro. */
573
574extern CORE_ADDR get_symbol_address (const struct symbol *sym);
575
468c0cbb 576/* Note that these macros only work with symbol, not partial_symbol. */
88cda038 577
468c0cbb 578#define SYMBOL_VALUE(symbol) (symbol)->value.ivalue
4b610737
TT
579#define SYMBOL_VALUE_ADDRESS(symbol) \
580 (((symbol)->maybe_copied) ? get_symbol_address (symbol) \
468c0cbb 581 : ((symbol)->value.address))
38583298 582#define SET_SYMBOL_VALUE_ADDRESS(symbol, new_value) \
468c0cbb
CB
583 ((symbol)->value.address = (new_value))
584#define SYMBOL_VALUE_BYTES(symbol) (symbol)->value.bytes
585#define SYMBOL_VALUE_COMMON_BLOCK(symbol) (symbol)->value.common_block
586#define SYMBOL_BLOCK_VALUE(symbol) (symbol)->value.block
587#define SYMBOL_VALUE_CHAIN(symbol) (symbol)->value.chain
c906108c 588
d55c9a68
TT
589/* Try to determine the demangled name for a symbol, based on the
590 language of that symbol. If the language is set to language_auto,
591 it will attempt to find any demangling algorithm that works and
592 then set the language appropriately. The returned name is allocated
593 by the demangler and should be xfree'd. */
594
3456e70c
TT
595extern gdb::unique_xmalloc_ptr<char> symbol_find_demangled_name
596 (struct general_symbol_info *gsymbol, const char *mangled);
d55c9a68 597
b5ec771e
PA
598/* Return true if NAME matches the "search" name of SYMBOL, according
599 to the symbol's language. */
600#define SYMBOL_MATCHES_SEARCH_NAME(symbol, name) \
468c0cbb 601 symbol_matches_search_name ((symbol), (name))
b5ec771e
PA
602
603/* Helper for SYMBOL_MATCHES_SEARCH_NAME that works with both symbols
604 and psymbols. */
605extern bool symbol_matches_search_name
606 (const struct general_symbol_info *gsymbol,
607 const lookup_name_info &name);
4725b721 608
5ffa0793
PA
609/* Compute the hash of the given symbol search name of a symbol of
610 language LANGUAGE. */
611extern unsigned int search_name_hash (enum language language,
612 const char *search_name);
613
87193939
MC
614/* Classification types for a minimal symbol. These should be taken as
615 "advisory only", since if gdb can't easily figure out a
616 classification it simply selects mst_unknown. It may also have to
617 guess when it can't figure out which is a better match between two
618 types (mst_data versus mst_bss) for example. Since the minimal
619 symbol info is sometimes derived from the BFD library's view of a
c378eb4e 620 file, we need to live with what information bfd supplies. */
87193939
MC
621
622enum minimal_symbol_type
623{
624 mst_unknown = 0, /* Unknown type, the default */
625 mst_text, /* Generally executable instructions */
f50776aa
PA
626
627 /* A GNU ifunc symbol, in the .text section. GDB uses to know
628 whether the user is setting a breakpoint on a GNU ifunc function,
629 and thus GDB needs to actually set the breakpoint on the target
630 function. It is also used to know whether the program stepped
631 into an ifunc resolver -- the resolver may get a separate
632 symbol/alias under a different name, but it'll have the same
633 address as the ifunc symbol. */
634 mst_text_gnu_ifunc, /* Executable code returning address
635 of executable code */
636
637 /* A GNU ifunc function descriptor symbol, in a data section
638 (typically ".opd"). Seen on architectures that use function
639 descriptors, like PPC64/ELFv1. In this case, this symbol's value
640 is the address of the descriptor. There'll be a corresponding
641 mst_text_gnu_ifunc synthetic symbol for the text/entry
642 address. */
643 mst_data_gnu_ifunc, /* Executable code returning address
0875794a 644 of executable code */
f50776aa 645
0875794a 646 mst_slot_got_plt, /* GOT entries for .plt sections */
87193939
MC
647 mst_data, /* Generally initialized data */
648 mst_bss, /* Generally uninitialized data */
649 mst_abs, /* Generally absolute (nonrelocatable) */
650 /* GDB uses mst_solib_trampoline for the start address of a shared
651 library trampoline entry. Breakpoints for shared library functions
652 are put there if the shared library is not yet loaded.
653 After the shared library is loaded, lookup_minimal_symbol will
654 prefer the minimal symbol from the shared library (usually
655 a mst_text symbol) over the mst_solib_trampoline symbol, and the
656 breakpoints will be moved to their true address in the shared
657 library via breakpoint_re_set. */
658 mst_solib_trampoline, /* Shared library trampoline code */
659 /* For the mst_file* types, the names are only guaranteed to be unique
660 within a given .o file. */
661 mst_file_text, /* Static version of mst_text */
662 mst_file_data, /* Static version of mst_data */
51cdc993
DE
663 mst_file_bss, /* Static version of mst_bss */
664 nr_minsym_types
87193939
MC
665};
666
51cdc993
DE
667/* The number of enum minimal_symbol_type values, with some padding for
668 reasonable growth. */
669#define MINSYM_TYPE_BITS 4
670gdb_static_assert (nr_minsym_types <= (1 << MINSYM_TYPE_BITS));
671
c906108c
SS
672/* Define a simple structure used to hold some very basic information about
673 all defined global symbols (text, data, bss, abs, etc). The only required
674 information is the general_symbol_info.
675
676 In many cases, even if a file was compiled with no special options for
677 debugging at all, as long as was not stripped it will contain sufficient
678 information to build a useful minimal symbol table using this structure.
679 Even when a file contains enough debugging information to build a full
680 symbol table, these minimal symbols are still useful for quickly mapping
681 between names and addresses, and vice versa. They are also sometimes
c378eb4e 682 used to figure out what full symbol table entries need to be read in. */
c906108c 683
eefba3da 684struct minimal_symbol : public general_symbol_info
17c5ed2c 685{
8763cede 686 /* Size of this symbol. dbx_end_psymtab in dbxread.c uses this
f594e5e9
MC
687 information to calculate the end of the partial symtab based on the
688 address of the last symbol plus the size of the last symbol. */
689
690 unsigned long size;
691
17c5ed2c 692 /* Which source file is this symbol in? Only relevant for mst_file_*. */
04aba065 693 const char *filename;
c906108c 694
87193939 695 /* Classification type for this minimal symbol. */
17c5ed2c 696
51cdc993 697 ENUM_BITFIELD(minimal_symbol_type) type : MINSYM_TYPE_BITS;
17c5ed2c 698
422d65e7
DE
699 /* Non-zero if this symbol was created by gdb.
700 Such symbols do not appear in the output of "info var|fun". */
701 unsigned int created_by_gdb : 1;
702
b887350f
TT
703 /* Two flag bits provided for the use of the target. */
704 unsigned int target_flag_1 : 1;
705 unsigned int target_flag_2 : 1;
706
d9eaeb59
JB
707 /* Nonzero iff the size of the minimal symbol has been set.
708 Symbol size information can sometimes not be determined, because
709 the object file format may not carry that piece of information. */
710 unsigned int has_size : 1;
711
4b610737
TT
712 /* For data symbols only, if this is set, then the symbol might be
713 subject to copy relocation. In this case, a minimal symbol
714 matching the symbol's linkage name is first looked for in the
715 main objfile. If found, then that address is used; otherwise the
716 address in this symbol is used. */
717
718 unsigned maybe_copied : 1;
719
5a79c107
TT
720 /* Non-zero if this symbol ever had its demangled name set (even if
721 it was set to NULL). */
722 unsigned int name_set : 1;
723
17c5ed2c
DC
724 /* Minimal symbols with the same hash key are kept on a linked
725 list. This is the link. */
726
727 struct minimal_symbol *hash_next;
728
729 /* Minimal symbols are stored in two different hash tables. This is
730 the `next' pointer for the demangled hash table. */
731
732 struct minimal_symbol *demangled_hash_next;
1ed9f74e 733
eefba3da 734 /* True if this symbol is of some data type. */
1ed9f74e
PW
735
736 bool data_p () const;
737
738 /* True if MSYMBOL is of some text type. */
739
740 bool text_p () const;
17c5ed2c 741};
c906108c 742
4b610737
TT
743/* Return the address of MINSYM, which comes from OBJF. The
744 MAYBE_COPIED flag must be set on MINSYM. If MINSYM appears in the
745 main program's minimal symbols, then that minsym's address is
746 returned; otherwise, MINSYM's address is returned. This should
747 generally only be used via the MSYMBOL_VALUE_ADDRESS macro. */
748
749extern CORE_ADDR get_msymbol_address (struct objfile *objf,
750 const struct minimal_symbol *minsym);
751
b887350f
TT
752#define MSYMBOL_TARGET_FLAG_1(msymbol) (msymbol)->target_flag_1
753#define MSYMBOL_TARGET_FLAG_2(msymbol) (msymbol)->target_flag_2
d9eaeb59
JB
754#define MSYMBOL_SIZE(msymbol) ((msymbol)->size + 0)
755#define SET_MSYMBOL_SIZE(msymbol, sz) \
756 do \
757 { \
758 (msymbol)->size = sz; \
759 (msymbol)->has_size = 1; \
760 } while (0)
761#define MSYMBOL_HAS_SIZE(msymbol) ((msymbol)->has_size + 0)
c906108c 762#define MSYMBOL_TYPE(msymbol) (msymbol)->type
c906108c 763
eefba3da 764#define MSYMBOL_VALUE(symbol) (symbol)->value.ivalue
77e371c0 765/* The unrelocated address of the minimal symbol. */
eefba3da 766#define MSYMBOL_VALUE_RAW_ADDRESS(symbol) ((symbol)->value.address + 0)
2273f0ac
TT
767/* The relocated address of the minimal symbol, using the section
768 offsets from OBJFILE. */
77e371c0 769#define MSYMBOL_VALUE_ADDRESS(objfile, symbol) \
4b610737
TT
770 (((symbol)->maybe_copied) ? get_msymbol_address (objfile, symbol) \
771 : ((symbol)->value.address \
a52d653e 772 + (objfile)->section_offsets[(symbol)->section_index ()]))
77e371c0
TT
773/* For a bound minsym, we can easily compute the address directly. */
774#define BMSYMBOL_VALUE_ADDRESS(symbol) \
775 MSYMBOL_VALUE_ADDRESS ((symbol).objfile, (symbol).minsym)
776#define SET_MSYMBOL_VALUE_ADDRESS(symbol, new_value) \
eefba3da
TT
777 ((symbol)->value.address = (new_value))
778#define MSYMBOL_VALUE_BYTES(symbol) (symbol)->value.bytes
779#define MSYMBOL_BLOCK_VALUE(symbol) (symbol)->value.block
780#define MSYMBOL_VALUE_CHAIN(symbol) (symbol)->value.chain
efd66ac6 781
c35384fb
TT
782#include "minsyms.h"
783
c906108c 784\f
c5aa993b 785
c906108c
SS
786/* Represent one symbol name; a variable, constant, function or typedef. */
787
176620f1 788/* Different name domains for symbols. Looking up a symbol specifies a
c378eb4e 789 domain and ignores symbol definitions in other name domains. */
c906108c 790
87193939 791typedef enum domain_enum_tag
17c5ed2c 792{
176620f1 793 /* UNDEF_DOMAIN is used when a domain has not been discovered or
17c5ed2c 794 none of the following apply. This usually indicates an error either
c378eb4e 795 in the symbol information or in gdb's handling of symbols. */
c906108c 796
176620f1 797 UNDEF_DOMAIN,
c906108c 798
176620f1 799 /* VAR_DOMAIN is the usual domain. In C, this contains variables,
c378eb4e 800 function names, typedef names and enum type values. */
c906108c 801
176620f1 802 VAR_DOMAIN,
c906108c 803
176620f1 804 /* STRUCT_DOMAIN is used in C to hold struct, union and enum type names.
17c5ed2c 805 Thus, if `struct foo' is used in a C program, it produces a symbol named
c378eb4e 806 `foo' in the STRUCT_DOMAIN. */
c906108c 807
176620f1 808 STRUCT_DOMAIN,
c906108c 809
530e8392
KB
810 /* MODULE_DOMAIN is used in Fortran to hold module type names. */
811
812 MODULE_DOMAIN,
813
0f5238ed 814 /* LABEL_DOMAIN may be used for names of labels (for gotos). */
c906108c 815
4357ac6c
TT
816 LABEL_DOMAIN,
817
5a352474
JK
818 /* Fortran common blocks. Their naming must be separate from VAR_DOMAIN.
819 They also always use LOC_COMMON_BLOCK. */
51cdc993
DE
820 COMMON_BLOCK_DOMAIN,
821
822 /* This must remain last. */
823 NR_DOMAINS
8903c50d 824} domain_enum;
c906108c 825
c01feb36
DE
826/* The number of bits in a symbol used to represent the domain. */
827
51cdc993
DE
828#define SYMBOL_DOMAIN_BITS 3
829gdb_static_assert (NR_DOMAINS <= (1 << SYMBOL_DOMAIN_BITS));
c01feb36 830
20c681d1
DE
831extern const char *domain_name (domain_enum);
832
470c0b1c 833/* Searching domains, used when searching for symbols. Element numbers are
e8930875 834 hardcoded in GDB, check all enum uses before changing it. */
c906108c 835
8903c50d
TT
836enum search_domain
837{
bd2e94ce
TT
838 /* Everything in VAR_DOMAIN minus FUNCTIONS_DOMAIN and
839 TYPES_DOMAIN. */
e8930875 840 VARIABLES_DOMAIN = 0,
c906108c 841
c378eb4e 842 /* All functions -- for some reason not methods, though. */
e8930875 843 FUNCTIONS_DOMAIN = 1,
c906108c 844
17c5ed2c 845 /* All defined types */
e8930875 846 TYPES_DOMAIN = 2,
7b08b9eb 847
59c35742
AB
848 /* All modules. */
849 MODULES_DOMAIN = 3,
850
7b08b9eb 851 /* Any type. */
59c35742 852 ALL_DOMAIN = 4
8903c50d 853};
c906108c 854
20c681d1
DE
855extern const char *search_domain_name (enum search_domain);
856
c906108c
SS
857/* An address-class says where to find the value of a symbol. */
858
859enum address_class
17c5ed2c 860{
c378eb4e 861 /* Not used; catches errors. */
c5aa993b 862
17c5ed2c 863 LOC_UNDEF,
c906108c 864
c378eb4e 865 /* Value is constant int SYMBOL_VALUE, host byteorder. */
c906108c 866
17c5ed2c 867 LOC_CONST,
c906108c 868
c378eb4e 869 /* Value is at fixed address SYMBOL_VALUE_ADDRESS. */
c906108c 870
17c5ed2c 871 LOC_STATIC,
c906108c 872
768a979c
UW
873 /* Value is in register. SYMBOL_VALUE is the register number
874 in the original debug format. SYMBOL_REGISTER_OPS holds a
875 function that can be called to transform this into the
876 actual register number this represents in a specific target
877 architecture (gdbarch).
2a2d4dc3
AS
878
879 For some symbol formats (stabs, for some compilers at least),
880 the compiler generates two symbols, an argument and a register.
881 In some cases we combine them to a single LOC_REGISTER in symbol
882 reading, but currently not for all cases (e.g. it's passed on the
883 stack and then loaded into a register). */
c906108c 884
17c5ed2c 885 LOC_REGISTER,
c906108c 886
17c5ed2c 887 /* It's an argument; the value is at SYMBOL_VALUE offset in arglist. */
c906108c 888
17c5ed2c 889 LOC_ARG,
c906108c 890
17c5ed2c 891 /* Value address is at SYMBOL_VALUE offset in arglist. */
c906108c 892
17c5ed2c 893 LOC_REF_ARG,
c906108c 894
2a2d4dc3 895 /* Value is in specified register. Just like LOC_REGISTER except the
17c5ed2c 896 register holds the address of the argument instead of the argument
c378eb4e 897 itself. This is currently used for the passing of structs and unions
17c5ed2c
DC
898 on sparc and hppa. It is also used for call by reference where the
899 address is in a register, at least by mipsread.c. */
c906108c 900
17c5ed2c 901 LOC_REGPARM_ADDR,
c906108c 902
17c5ed2c 903 /* Value is a local variable at SYMBOL_VALUE offset in stack frame. */
c906108c 904
17c5ed2c 905 LOC_LOCAL,
c906108c 906
176620f1
EZ
907 /* Value not used; definition in SYMBOL_TYPE. Symbols in the domain
908 STRUCT_DOMAIN all have this class. */
c906108c 909
17c5ed2c 910 LOC_TYPEDEF,
c906108c 911
c378eb4e 912 /* Value is address SYMBOL_VALUE_ADDRESS in the code. */
c906108c 913
17c5ed2c 914 LOC_LABEL,
c906108c 915
17c5ed2c
DC
916 /* In a symbol table, value is SYMBOL_BLOCK_VALUE of a `struct block'.
917 In a partial symbol table, SYMBOL_VALUE_ADDRESS is the start address
c378eb4e 918 of the block. Function names have this class. */
c906108c 919
17c5ed2c 920 LOC_BLOCK,
c906108c 921
17c5ed2c
DC
922 /* Value is a constant byte-sequence pointed to by SYMBOL_VALUE_BYTES, in
923 target byte order. */
c906108c 924
17c5ed2c 925 LOC_CONST_BYTES,
c906108c 926
17c5ed2c
DC
927 /* Value is at fixed address, but the address of the variable has
928 to be determined from the minimal symbol table whenever the
929 variable is referenced.
930 This happens if debugging information for a global symbol is
931 emitted and the corresponding minimal symbol is defined
932 in another object file or runtime common storage.
933 The linker might even remove the minimal symbol if the global
934 symbol is never referenced, in which case the symbol remains
de40b933
JK
935 unresolved.
936
937 GDB would normally find the symbol in the minimal symbol table if it will
938 not find it in the full symbol table. But a reference to an external
939 symbol in a local block shadowing other definition requires full symbol
940 without possibly having its address available for LOC_STATIC. Testcase
5382cfab
PW
941 is provided as `gdb.dwarf2/dw2-unresolved.exp'.
942
943 This is also used for thread local storage (TLS) variables. In this case,
944 the address of the TLS variable must be determined when the variable is
945 referenced, from the MSYMBOL_VALUE_RAW_ADDRESS, which is the offset
946 of the TLS variable in the thread local storage of the shared
947 library/object. */
c906108c 948
17c5ed2c 949 LOC_UNRESOLVED,
c906108c 950
17c5ed2c
DC
951 /* The variable does not actually exist in the program.
952 The value is ignored. */
c906108c 953
17c5ed2c 954 LOC_OPTIMIZED_OUT,
c906108c 955
4c2df51b 956 /* The variable's address is computed by a set of location
768a979c 957 functions (see "struct symbol_computed_ops" below). */
4c2df51b 958 LOC_COMPUTED,
5a352474
JK
959
960 /* The variable uses general_symbol_info->value->common_block field.
961 It also always uses COMMON_BLOCK_DOMAIN. */
962 LOC_COMMON_BLOCK,
f1e6e072
TT
963
964 /* Not used, just notes the boundary of the enum. */
965 LOC_FINAL_VALUE
4c2df51b
DJ
966};
967
51cdc993
DE
968/* The number of bits needed for values in enum address_class, with some
969 padding for reasonable growth, and room for run-time registered address
970 classes. See symtab.c:MAX_SYMBOL_IMPLS.
971 This is a #define so that we can have a assertion elsewhere to
972 verify that we have reserved enough space for synthetic address
973 classes. */
974#define SYMBOL_ACLASS_BITS 5
975gdb_static_assert (LOC_FINAL_VALUE <= (1 << SYMBOL_ACLASS_BITS));
976
768a979c 977/* The methods needed to implement LOC_COMPUTED. These methods can
a67af2b9
AC
978 use the symbol's .aux_value for additional per-symbol information.
979
980 At present this is only used to implement location expressions. */
981
768a979c 982struct symbol_computed_ops
4c2df51b
DJ
983{
984
985 /* Return the value of the variable SYMBOL, relative to the stack
986 frame FRAME. If the variable has been optimized out, return
987 zero.
988
0b31a4bc
TT
989 Iff `read_needs_frame (SYMBOL)' is not SYMBOL_NEEDS_FRAME, then
990 FRAME may be zero. */
4c2df51b
DJ
991
992 struct value *(*read_variable) (struct symbol * symbol,
993 struct frame_info * frame);
994
e18b2753
JK
995 /* Read variable SYMBOL like read_variable at (callee) FRAME's function
996 entry. SYMBOL should be a function parameter, otherwise
997 NO_ENTRY_VALUE_ERROR will be thrown. */
998 struct value *(*read_variable_at_entry) (struct symbol *symbol,
999 struct frame_info *frame);
1000
0b31a4bc
TT
1001 /* Find the "symbol_needs_kind" value for the given symbol. This
1002 value determines whether reading the symbol needs memory (e.g., a
1003 global variable), just registers (a thread-local), or a frame (a
1004 local variable). */
1005 enum symbol_needs_kind (*get_symbol_read_needs) (struct symbol * symbol);
4c2df51b
DJ
1006
1007 /* Write to STREAM a natural-language description of the location of
08922a10
SS
1008 SYMBOL, in the context of ADDR. */
1009 void (*describe_location) (struct symbol * symbol, CORE_ADDR addr,
1010 struct ui_file * stream);
4c2df51b 1011
f1e6e072
TT
1012 /* Non-zero if this symbol's address computation is dependent on PC. */
1013 unsigned char location_has_loclist;
1014
4c2df51b
DJ
1015 /* Tracepoint support. Append bytecodes to the tracepoint agent
1016 expression AX that push the address of the object SYMBOL. Set
1017 VALUE appropriately. Note --- for objects in registers, this
1018 needn't emit any code; as long as it sets VALUE properly, then
1019 the caller will generate the right code in the process of
1020 treating this as an lvalue or rvalue. */
1021
40f4af28
SM
1022 void (*tracepoint_var_ref) (struct symbol *symbol, struct agent_expr *ax,
1023 struct axs_value *value);
bb2ec1b3
TT
1024
1025 /* Generate C code to compute the location of SYMBOL. The C code is
1026 emitted to STREAM. GDBARCH is the current architecture and PC is
1027 the PC at which SYMBOL's location should be evaluated.
1028 REGISTERS_USED is a vector indexed by register number; the
1029 generator function should set an element in this vector if the
1030 corresponding register is needed by the location computation.
1031 The generated C code must assign the location to a local
1032 variable; this variable's name is RESULT_NAME. */
1033
d82b3862 1034 void (*generate_c_location) (struct symbol *symbol, string_file *stream,
bb2ec1b3 1035 struct gdbarch *gdbarch,
3637a558 1036 std::vector<bool> &registers_used,
bb2ec1b3
TT
1037 CORE_ADDR pc, const char *result_name);
1038
17c5ed2c 1039};
c906108c 1040
f1e6e072
TT
1041/* The methods needed to implement LOC_BLOCK for inferior functions.
1042 These methods can use the symbol's .aux_value for additional
1043 per-symbol information. */
1044
1045struct symbol_block_ops
1046{
1047 /* Fill in *START and *LENGTH with DWARF block data of function
1048 FRAMEFUNC valid for inferior context address PC. Set *LENGTH to
1049 zero if such location is not valid for PC; *START is left
1050 uninitialized in such case. */
1051 void (*find_frame_base_location) (struct symbol *framefunc, CORE_ADDR pc,
1052 const gdb_byte **start, size_t *length);
63e43d3a
PMR
1053
1054 /* Return the frame base address. FRAME is the frame for which we want to
1055 compute the base address while FRAMEFUNC is the symbol for the
1056 corresponding function. Return 0 on failure (FRAMEFUNC may not hold the
1057 information we need).
1058
1059 This method is designed to work with static links (nested functions
1060 handling). Static links are function properties whose evaluation returns
1061 the frame base address for the enclosing frame. However, there are
1062 multiple definitions for "frame base": the content of the frame base
1063 register, the CFA as defined by DWARF unwinding information, ...
1064
1065 So this specific method is supposed to compute the frame base address such
30baf67b 1066 as for nested functions, the static link computes the same address. For
63e43d3a
PMR
1067 instance, considering DWARF debugging information, the static link is
1068 computed with DW_AT_static_link and this method must be used to compute
1069 the corresponding DW_AT_frame_base attribute. */
1070 CORE_ADDR (*get_frame_base) (struct symbol *framefunc,
1071 struct frame_info *frame);
f1e6e072
TT
1072};
1073
768a979c
UW
1074/* Functions used with LOC_REGISTER and LOC_REGPARM_ADDR. */
1075
1076struct symbol_register_ops
1077{
1078 int (*register_number) (struct symbol *symbol, struct gdbarch *gdbarch);
1079};
1080
f1e6e072
TT
1081/* Objects of this type are used to find the address class and the
1082 various computed ops vectors of a symbol. */
1083
1084struct symbol_impl
1085{
1086 enum address_class aclass;
1087
1088 /* Used with LOC_COMPUTED. */
1089 const struct symbol_computed_ops *ops_computed;
1090
1091 /* Used with LOC_BLOCK. */
1092 const struct symbol_block_ops *ops_block;
1093
1094 /* Used with LOC_REGISTER and LOC_REGPARM_ADDR. */
1095 const struct symbol_register_ops *ops_register;
1096};
1097
cf724bc9
TT
1098/* struct symbol has some subclasses. This enum is used to
1099 differentiate between them. */
1100
1101enum symbol_subclass_kind
1102{
1103 /* Plain struct symbol. */
1104 SYMBOL_NONE,
1105
1106 /* struct template_symbol. */
1107 SYMBOL_TEMPLATE,
1108
1109 /* struct rust_vtable_symbol. */
1110 SYMBOL_RUST_VTABLE
1111};
1112
c378eb4e 1113/* This structure is space critical. See space comments at the top. */
a7f19c79 1114
468c0cbb 1115struct symbol : public general_symbol_info, public allocate_on_obstack
17c5ed2c 1116{
468c0cbb
CB
1117 symbol ()
1118 /* Class-initialization of bitfields is only allowed in C++20. */
1119 : domain (UNDEF_DOMAIN),
1120 aclass_index (0),
8c14c3a3 1121 is_objfile_owned (1),
468c0cbb
CB
1122 is_argument (0),
1123 is_inlined (0),
1124 maybe_copied (0),
2c71f639
TV
1125 subclass (SYMBOL_NONE),
1126 artificial (false)
468c0cbb
CB
1127 {
1128 /* We can't use an initializer list for members of a base class, and
dda83cd7 1129 general_symbol_info needs to stay a POD type. */
4d4eaa30 1130 m_name = nullptr;
468c0cbb
CB
1131 value.ivalue = 0;
1132 language_specific.obstack = nullptr;
c1b5c1eb 1133 m_language = language_unknown;
468c0cbb 1134 ada_mangled = 0;
a52d653e 1135 m_section = -1;
6edc43ec 1136 /* GCC 4.8.5 (on CentOS 7) does not correctly compile class-
dda83cd7 1137 initialization of unions, so we initialize it manually here. */
6edc43ec 1138 owner.symtab = nullptr;
468c0cbb 1139 }
c906108c 1140
8c14c3a3 1141 symbol (const symbol &) = default;
1b453aed 1142 symbol &operator= (const symbol &) = default;
8c14c3a3 1143
17c5ed2c 1144 /* Data type of value */
c906108c 1145
468c0cbb 1146 struct type *type = nullptr;
c906108c 1147
1994afbf 1148 /* The owner of this symbol.
e2ada9cb 1149 Which one to use is defined by symbol.is_objfile_owned. */
1994afbf
DE
1150
1151 union
1152 {
1153 /* The symbol table containing this symbol. This is the file associated
1154 with LINE. It can be NULL during symbols read-in but it is never NULL
1155 during normal operation. */
6edc43ec 1156 struct symtab *symtab;
1994afbf
DE
1157
1158 /* For types defined by the architecture. */
1159 struct gdbarch *arch;
1160 } owner;
cb1df416 1161
176620f1 1162 /* Domain code. */
c906108c 1163
c01feb36 1164 ENUM_BITFIELD(domain_enum_tag) domain : SYMBOL_DOMAIN_BITS;
c906108c 1165
f1e6e072
TT
1166 /* Address class. This holds an index into the 'symbol_impls'
1167 table. The actual enum address_class value is stored there,
1168 alongside any per-class ops vectors. */
c906108c 1169
f1e6e072 1170 unsigned int aclass_index : SYMBOL_ACLASS_BITS;
c906108c 1171
1994afbf 1172 /* If non-zero then symbol is objfile-owned, use owner.symtab.
468c0cbb 1173 Otherwise symbol is arch-owned, use owner.arch. */
1994afbf
DE
1174
1175 unsigned int is_objfile_owned : 1;
1176
2a2d4dc3
AS
1177 /* Whether this is an argument. */
1178
1179 unsigned is_argument : 1;
1180
edb3359d
DJ
1181 /* Whether this is an inlined function (class LOC_BLOCK only). */
1182 unsigned is_inlined : 1;
1183
4b610737
TT
1184 /* For LOC_STATIC only, if this is set, then the symbol might be
1185 subject to copy relocation. In this case, a minimal symbol
1186 matching the symbol's linkage name is first looked for in the
1187 main objfile. If found, then that address is used; otherwise the
1188 address in this symbol is used. */
1189
1190 unsigned maybe_copied : 1;
1191
cf724bc9 1192 /* The concrete type of this symbol. */
71a3c369 1193
cf724bc9 1194 ENUM_BITFIELD (symbol_subclass_kind) subclass : 2;
71a3c369 1195
2c71f639
TV
1196 /* Whether this symbol is artificial. */
1197
1198 bool artificial : 1;
1199
edb3359d
DJ
1200 /* Line number of this symbol's definition, except for inlined
1201 functions. For an inlined function (class LOC_BLOCK and
1202 SYMBOL_INLINED set) this is the line number of the function's call
1203 site. Inlined function symbols are not definitions, and they are
1204 never found by symbol table lookup.
1994afbf 1205 If this symbol is arch-owned, LINE shall be zero.
edb3359d
DJ
1206
1207 FIXME: Should we really make the assumption that nobody will try
1208 to debug files longer than 64K lines? What about machine
1209 generated programs? */
c906108c 1210
468c0cbb 1211 unsigned short line = 0;
c906108c 1212
10f4ecb8
UW
1213 /* An arbitrary data pointer, allowing symbol readers to record
1214 additional information on a per-symbol basis. Note that this data
1215 must be allocated using the same obstack as the symbol itself. */
1cd36e54
DE
1216 /* So far it is only used by:
1217 LOC_COMPUTED: to find the location information
1218 LOC_BLOCK (DWARF2 function): information used internally by the
1219 DWARF 2 code --- specifically, the location expression for the frame
10f4ecb8
UW
1220 base for this function. */
1221 /* FIXME drow/2003-02-21: For the LOC_BLOCK case, it might be better
1222 to add a magic symbol to the block containing this information,
1223 or to have a generic debug info annotation slot for symbols. */
1224
468c0cbb 1225 void *aux_value = nullptr;
c906108c 1226
468c0cbb 1227 struct symbol *hash_next = nullptr;
17c5ed2c 1228};
c906108c 1229
d12307c1
PMR
1230/* Several lookup functions return both a symbol and the block in which the
1231 symbol is found. This structure is used in these cases. */
1232
1233struct block_symbol
1234{
1235 /* The symbol that was found, or NULL if no symbol was found. */
1236 struct symbol *symbol;
1237
1238 /* If SYMBOL is not NULL, then this is the block in which the symbol is
1239 defined. */
1240 const struct block *block;
1241};
1242
f1e6e072 1243extern const struct symbol_impl *symbol_impls;
c906108c 1244
1994afbf
DE
1245/* Note: There is no accessor macro for symbol.owner because it is
1246 "private". */
1247
176620f1 1248#define SYMBOL_DOMAIN(symbol) (symbol)->domain
f1e6e072
TT
1249#define SYMBOL_IMPL(symbol) (symbol_impls[(symbol)->aclass_index])
1250#define SYMBOL_ACLASS_INDEX(symbol) (symbol)->aclass_index
1251#define SYMBOL_CLASS(symbol) (SYMBOL_IMPL (symbol).aclass)
1994afbf 1252#define SYMBOL_OBJFILE_OWNED(symbol) ((symbol)->is_objfile_owned)
2a2d4dc3 1253#define SYMBOL_IS_ARGUMENT(symbol) (symbol)->is_argument
edb3359d 1254#define SYMBOL_INLINED(symbol) (symbol)->is_inlined
34eaf542 1255#define SYMBOL_IS_CPLUS_TEMPLATE_FUNCTION(symbol) \
cf724bc9 1256 (((symbol)->subclass) == SYMBOL_TEMPLATE)
c906108c
SS
1257#define SYMBOL_TYPE(symbol) (symbol)->type
1258#define SYMBOL_LINE(symbol) (symbol)->line
f1e6e072
TT
1259#define SYMBOL_COMPUTED_OPS(symbol) (SYMBOL_IMPL (symbol).ops_computed)
1260#define SYMBOL_BLOCK_OPS(symbol) (SYMBOL_IMPL (symbol).ops_block)
1261#define SYMBOL_REGISTER_OPS(symbol) (SYMBOL_IMPL (symbol).ops_register)
10f4ecb8 1262#define SYMBOL_LOCATION_BATON(symbol) (symbol)->aux_value
34eaf542 1263
f1e6e072
TT
1264extern int register_symbol_computed_impl (enum address_class,
1265 const struct symbol_computed_ops *);
1266
1267extern int register_symbol_block_impl (enum address_class aclass,
1268 const struct symbol_block_ops *ops);
1269
1270extern int register_symbol_register_impl (enum address_class,
1271 const struct symbol_register_ops *);
1272
08be3fe3
DE
1273/* Return the OBJFILE of SYMBOL.
1274 It is an error to call this if symbol.is_objfile_owned is false, which
1275 only happens for architecture-provided types. */
1276
1277extern struct objfile *symbol_objfile (const struct symbol *symbol);
1278
1279/* Return the ARCH of SYMBOL. */
1280
1281extern struct gdbarch *symbol_arch (const struct symbol *symbol);
1282
1283/* Return the SYMTAB of SYMBOL.
1284 It is an error to call this if symbol.is_objfile_owned is false, which
1285 only happens for architecture-provided types. */
1286
1287extern struct symtab *symbol_symtab (const struct symbol *symbol);
1288
1289/* Set the symtab of SYMBOL to SYMTAB.
1290 It is an error to call this if symbol.is_objfile_owned is false, which
1291 only happens for architecture-provided types. */
1292
1293extern void symbol_set_symtab (struct symbol *symbol, struct symtab *symtab);
1294
34eaf542 1295/* An instance of this type is used to represent a C++ template
68e745e3
TT
1296 function. A symbol is really of this type iff
1297 SYMBOL_IS_CPLUS_TEMPLATE_FUNCTION is true. */
34eaf542 1298
68e745e3 1299struct template_symbol : public symbol
34eaf542 1300{
34eaf542 1301 /* The number of template arguments. */
468c0cbb 1302 int n_template_arguments = 0;
34eaf542
TT
1303
1304 /* The template arguments. This is an array with
1305 N_TEMPLATE_ARGUMENTS elements. */
468c0cbb 1306 struct symbol **template_arguments = nullptr;
34eaf542
TT
1307};
1308
71a3c369
TT
1309/* A symbol that represents a Rust virtual table object. */
1310
1311struct rust_vtable_symbol : public symbol
1312{
1313 /* The concrete type for which this vtable was created; that is, in
1314 "impl Trait for Type", this is "Type". */
468c0cbb 1315 struct type *concrete_type = nullptr;
71a3c369
TT
1316};
1317
c906108c 1318\f
c906108c
SS
1319/* Each item represents a line-->pc (or the reverse) mapping. This is
1320 somewhat more wasteful of space than one might wish, but since only
1321 the files which are actually debugged are read in to core, we don't
1322 waste much space. */
1323
1324struct linetable_entry
17c5ed2c 1325{
8c95582d 1326 /* The line number for this entry. */
17c5ed2c 1327 int line;
8c95582d
AB
1328
1329 /* True if this PC is a good location to place a breakpoint for LINE. */
1330 unsigned is_stmt : 1;
1331
1332 /* The address for this entry. */
17c5ed2c
DC
1333 CORE_ADDR pc;
1334};
c906108c
SS
1335
1336/* The order of entries in the linetable is significant. They should
1337 be sorted by increasing values of the pc field. If there is more than
1338 one entry for a given pc, then I'm not sure what should happen (and
1339 I not sure whether we currently handle it the best way).
1340
1341 Example: a C for statement generally looks like this
1342
c5aa993b
JM
1343 10 0x100 - for the init/test part of a for stmt.
1344 20 0x200
1345 30 0x300
1346 10 0x400 - for the increment part of a for stmt.
c906108c 1347
e8717518
FF
1348 If an entry has a line number of zero, it marks the start of a PC
1349 range for which no line number information is available. It is
1350 acceptable, though wasteful of table space, for such a range to be
1351 zero length. */
c906108c
SS
1352
1353struct linetable
17c5ed2c
DC
1354{
1355 int nitems;
c906108c 1356
17c5ed2c
DC
1357 /* Actually NITEMS elements. If you don't like this use of the
1358 `struct hack', you can shove it up your ANSI (seriously, if the
1359 committee tells us how to do it, we can probably go along). */
1360 struct linetable_entry item[1];
1361};
c906108c 1362
c906108c 1363/* How to relocate the symbols from each section in a symbol file.
c906108c
SS
1364 The ordering and meaning of the offsets is file-type-dependent;
1365 typically it is indexed by section numbers or symbol types or
6a053cb1 1366 something like that. */
c906108c 1367
6a053cb1 1368typedef std::vector<CORE_ADDR> section_offsets;
b29c9944 1369
c378eb4e 1370/* Each source file or header is represented by a struct symtab.
43f3e411 1371 The name "symtab" is historical, another name for it is "filetab".
c906108c
SS
1372 These objects are chained through the `next' field. */
1373
1374struct symtab
17c5ed2c 1375{
b7236fbe
DE
1376 /* Unordered chain of all filetabs in the compunit, with the exception
1377 that the "main" source file is the first entry in the list. */
c906108c 1378
17c5ed2c 1379 struct symtab *next;
c906108c 1380
43f3e411 1381 /* Backlink to containing compunit symtab. */
c906108c 1382
43f3e411 1383 struct compunit_symtab *compunit_symtab;
c906108c 1384
17c5ed2c
DC
1385 /* Table mapping core addresses to line numbers for this file.
1386 Can be NULL if none. Never shared between different symtabs. */
c906108c 1387
17c5ed2c 1388 struct linetable *linetable;
c906108c 1389
4e04028d 1390 /* Name of this source file. This pointer is never NULL. */
c906108c 1391
21ea9eec 1392 const char *filename;
c906108c 1393
17c5ed2c 1394 /* Language of this source file. */
c906108c 1395
17c5ed2c 1396 enum language language;
c906108c 1397
43f3e411
DE
1398 /* Full name of file as found by searching the source path.
1399 NULL if not yet known. */
1400
1401 char *fullname;
1402};
1403
102cc235
SM
1404/* A range adapter to allowing iterating over all the file tables in a list. */
1405
1406using symtab_range = next_range<symtab>;
1407
43f3e411
DE
1408#define SYMTAB_COMPUNIT(symtab) ((symtab)->compunit_symtab)
1409#define SYMTAB_LINETABLE(symtab) ((symtab)->linetable)
1410#define SYMTAB_LANGUAGE(symtab) ((symtab)->language)
1411#define SYMTAB_BLOCKVECTOR(symtab) \
1412 COMPUNIT_BLOCKVECTOR (SYMTAB_COMPUNIT (symtab))
1413#define SYMTAB_OBJFILE(symtab) \
9821f3fa 1414 (SYMTAB_COMPUNIT (symtab)->objfile ())
43f3e411 1415#define SYMTAB_PSPACE(symtab) (SYMTAB_OBJFILE (symtab)->pspace)
0d9acb45 1416#define SYMTAB_DIRNAME(symtab) (SYMTAB_COMPUNIT (symtab)->dirname ())
43f3e411 1417
43f3e411
DE
1418/* Compunit symtabs contain the actual "symbol table", aka blockvector, as well
1419 as the list of all source files (what gdb has historically associated with
1420 the term "symtab").
1421 Additional information is recorded here that is common to all symtabs in a
1422 compilation unit (DWARF or otherwise).
1423
1424 Example:
1425 For the case of a program built out of these files:
1426
1427 foo.c
1428 foo1.h
1429 foo2.h
1430 bar.c
1431 foo1.h
1432 bar.h
1433
1434 This is recorded as:
1435
1436 objfile -> foo.c(cu) -> bar.c(cu) -> NULL
dda83cd7
SM
1437 | |
1438 v v
1439 foo.c bar.c
1440 | |
1441 v v
1442 foo1.h foo1.h
1443 | |
1444 v v
1445 foo2.h bar.h
1446 | |
1447 v v
1448 NULL NULL
43f3e411
DE
1449
1450 where "foo.c(cu)" and "bar.c(cu)" are struct compunit_symtab objects,
1451 and the files foo.c, etc. are struct symtab objects. */
1452
1453struct compunit_symtab
1454{
f1f58f10
SM
1455 struct objfile *objfile () const
1456 {
1457 return m_objfile;
1458 }
1459
1460 void set_objfile (struct objfile *objfile)
1461 {
1462 m_objfile = objfile;
1463 }
1464
102cc235
SM
1465 symtab_range filetabs () const
1466 {
1467 return symtab_range (m_filetabs);
1468 }
1469
43b49762
SM
1470 void add_filetab (symtab *filetab)
1471 {
102cc235 1472 if (m_filetabs == nullptr)
43b49762 1473 {
102cc235
SM
1474 m_filetabs = filetab;
1475 m_last_filetab = filetab;
43b49762
SM
1476 }
1477 else
1478 {
102cc235
SM
1479 m_last_filetab->next = filetab;
1480 m_last_filetab = filetab;
43b49762
SM
1481 }
1482 }
1483
422f1ea2
SM
1484 const char *debugformat () const
1485 {
1486 return m_debugformat;
1487 }
1488
1489 void set_debugformat (const char *debugformat)
1490 {
1491 m_debugformat = debugformat;
1492 }
1493
ab5f850e
SM
1494 const char *producer () const
1495 {
1496 return m_producer;
1497 }
1498
1499 void set_producer (const char *producer)
1500 {
1501 m_producer = producer;
1502 }
1503
0d9acb45
SM
1504 const char *dirname () const
1505 {
1506 return m_dirname;
1507 }
1508
1509 void set_dirname (const char *dirname)
1510 {
1511 m_dirname = dirname;
1512 }
1513
36664835
SM
1514 /* Make PRIMARY_FILETAB the primary filetab of this compunit symtab.
1515
1516 PRIMARY_FILETAB must already be a filetab of this compunit symtab. */
1517
1518 void set_primary_filetab (symtab *primary_filetab);
1519
0b17a4f7
SM
1520 /* Return the primary filetab of the compunit. */
1521 symtab *primary_filetab () const;
1522
b625c770
SM
1523 /* Set m_call_site_htab. */
1524 void set_call_site_htab (htab_t call_site_htab);
1525
1526 /* Find call_site info for PC. */
1527 call_site *find_call_site (CORE_ADDR pc) const;
1528
43f3e411
DE
1529 /* Unordered chain of all compunit symtabs of this objfile. */
1530 struct compunit_symtab *next;
1531
1532 /* Object file from which this symtab information was read. */
f1f58f10 1533 struct objfile *m_objfile;
43f3e411
DE
1534
1535 /* Name of the symtab.
1536 This is *not* intended to be a usable filename, and is
1537 for debugging purposes only. */
1538 const char *name;
1539
1540 /* Unordered list of file symtabs, except that by convention the "main"
1541 source file (e.g., .c, .cc) is guaranteed to be first.
1542 Each symtab is a file, either the "main" source file (e.g., .c, .cc)
1543 or header (e.g., .h). */
102cc235 1544 symtab *m_filetabs;
43f3e411
DE
1545
1546 /* Last entry in FILETABS list.
1547 Subfiles are added to the end of the list so they accumulate in order,
1548 with the main source subfile living at the front.
1549 The main reason is so that the main source file symtab is at the head
1550 of the list, and the rest appear in order for debugging convenience. */
102cc235 1551 symtab *m_last_filetab;
43f3e411
DE
1552
1553 /* Non-NULL string that identifies the format of the debugging information,
1554 such as "stabs", "dwarf 1", "dwarf 2", "coff", etc. This is mostly useful
17c5ed2c 1555 for automated testing of gdb but may also be information that is
c378eb4e 1556 useful to the user. */
422f1ea2 1557 const char *m_debugformat;
c906108c 1558
43f3e411 1559 /* String of producer version information, or NULL if we don't know. */
ab5f850e 1560 const char *m_producer;
c906108c 1561
43f3e411 1562 /* Directory in which it was compiled, or NULL if we don't know. */
0d9acb45 1563 const char *m_dirname;
c906108c 1564
43f3e411
DE
1565 /* List of all symbol scope blocks for this symtab. It is shared among
1566 all symtabs in a given compilation unit. */
1567 const struct blockvector *blockvector;
c906108c 1568
43f3e411
DE
1569 /* Section in objfile->section_offsets for the blockvector and
1570 the linetable. Probably always SECT_OFF_TEXT. */
1571 int block_line_section;
c906108c 1572
43f3e411
DE
1573 /* Symtab has been compiled with both optimizations and debug info so that
1574 GDB may stop skipping prologues as variables locations are valid already
1575 at function entry points. */
1576 unsigned int locations_valid : 1;
c906108c 1577
43f3e411
DE
1578 /* DWARF unwinder for this CU is valid even for epilogues (PC at the return
1579 instruction). This is supported by GCC since 4.5.0. */
1580 unsigned int epilogue_unwind_valid : 1;
8e3b41a9 1581
43f3e411 1582 /* struct call_site entries for this compilation unit or NULL. */
b625c770 1583 htab_t m_call_site_htab;
b5b04b5b 1584
43f3e411
DE
1585 /* The macro table for this symtab. Like the blockvector, this
1586 is shared between different symtabs in a given compilation unit.
1587 It's debatable whether it *should* be shared among all the symtabs in
1588 the given compilation unit, but it currently is. */
1589 struct macro_table *macro_table;
1590
b5b04b5b 1591 /* If non-NULL, then this points to a NULL-terminated vector of
43f3e411
DE
1592 included compunits. When searching the static or global
1593 block of this compunit, the corresponding block of all
1594 included compunits will also be searched. Note that this
b5b04b5b
TT
1595 list must be flattened -- the symbol reader is responsible for
1596 ensuring that this vector contains the transitive closure of all
43f3e411
DE
1597 included compunits. */
1598 struct compunit_symtab **includes;
b5b04b5b 1599
43f3e411
DE
1600 /* If this is an included compunit, this points to one includer
1601 of the table. This user is considered the canonical compunit
1602 containing this one. An included compunit may itself be
b5b04b5b 1603 included by another. */
43f3e411 1604 struct compunit_symtab *user;
17c5ed2c 1605};
c906108c 1606
9be25986
SM
1607using compunit_symtab_range = next_range<compunit_symtab>;
1608
43f3e411
DE
1609#define COMPUNIT_BLOCKVECTOR(cust) ((cust)->blockvector)
1610#define COMPUNIT_BLOCK_LINE_SECTION(cust) ((cust)->block_line_section)
1611#define COMPUNIT_LOCATIONS_VALID(cust) ((cust)->locations_valid)
1612#define COMPUNIT_EPILOGUE_UNWIND_VALID(cust) ((cust)->epilogue_unwind_valid)
43f3e411 1613#define COMPUNIT_MACRO_TABLE(cust) ((cust)->macro_table)
ec94af83 1614
43f3e411
DE
1615/* Return the language of CUST. */
1616
1617extern enum language compunit_language (const struct compunit_symtab *cust);
1618
7b1eff95
TV
1619/* Return true if this symtab is the "main" symtab of its compunit_symtab. */
1620
1621static inline bool
1622is_main_symtab_of_compunit_symtab (struct symtab *symtab)
1623{
510860f2 1624 return symtab == SYMTAB_COMPUNIT (symtab)->primary_filetab ();
7b1eff95 1625}
c906108c 1626\f
c5aa993b 1627
c906108c 1628/* The virtual function table is now an array of structures which have the
a960f249 1629 form { int16 offset, delta; void *pfn; }.
c906108c
SS
1630
1631 In normal virtual function tables, OFFSET is unused.
1632 DELTA is the amount which is added to the apparent object's base
1633 address in order to point to the actual object to which the
1634 virtual function should be applied.
1635 PFN is a pointer to the virtual function.
1636
c378eb4e 1637 Note that this macro is g++ specific (FIXME). */
c5aa993b 1638
c906108c
SS
1639#define VTBL_FNADDR_OFFSET 2
1640
c378eb4e 1641/* External variables and functions for the objects described above. */
c906108c 1642
c378eb4e 1643/* True if we are nested inside psymtab_to_symtab. */
c906108c
SS
1644
1645extern int currently_reading_symtab;
1646
c906108c
SS
1647/* symtab.c lookup functions */
1648
7fc830e2
MK
1649extern const char multiple_symbols_ask[];
1650extern const char multiple_symbols_all[];
1651extern const char multiple_symbols_cancel[];
717d2f5a
JB
1652
1653const char *multiple_symbols_select_mode (void);
1654
ececd218
CB
1655bool symbol_matches_domain (enum language symbol_language,
1656 domain_enum symbol_domain,
1657 domain_enum domain);
4186eb54 1658
c378eb4e 1659/* lookup a symbol table by source file name. */
c906108c 1660
1f8cc6db 1661extern struct symtab *lookup_symtab (const char *);
c906108c 1662
1993b719
TT
1663/* An object of this type is passed as the 'is_a_field_of_this'
1664 argument to lookup_symbol and lookup_symbol_in_language. */
1665
1666struct field_of_this_result
1667{
1668 /* The type in which the field was found. If this is NULL then the
1669 symbol was not found in 'this'. If non-NULL, then one of the
1670 other fields will be non-NULL as well. */
1671
1672 struct type *type;
1673
1674 /* If the symbol was found as an ordinary field of 'this', then this
1675 is non-NULL and points to the particular field. */
1676
1677 struct field *field;
1678
cf901d3b 1679 /* If the symbol was found as a function field of 'this', then this
1993b719
TT
1680 is non-NULL and points to the particular field. */
1681
1682 struct fn_fieldlist *fn_field;
1683};
1684
cf901d3b
DE
1685/* Find the definition for a specified symbol name NAME
1686 in domain DOMAIN in language LANGUAGE, visible from lexical block BLOCK
1687 if non-NULL or from global/static blocks if BLOCK is NULL.
1688 Returns the struct symbol pointer, or NULL if no symbol is found.
1689 C++: if IS_A_FIELD_OF_THIS is non-NULL on entry, check to see if
1690 NAME is a field of the current implied argument `this'. If so fill in the
1691 fields of IS_A_FIELD_OF_THIS, otherwise the fields are set to NULL.
cf901d3b 1692 The symbol's section is fixed up if necessary. */
53c5240f 1693
d12307c1
PMR
1694extern struct block_symbol
1695 lookup_symbol_in_language (const char *,
1696 const struct block *,
1697 const domain_enum,
1698 enum language,
1699 struct field_of_this_result *);
53c5240f 1700
cf901d3b 1701/* Same as lookup_symbol_in_language, but using the current language. */
c906108c 1702
d12307c1
PMR
1703extern struct block_symbol lookup_symbol (const char *,
1704 const struct block *,
1705 const domain_enum,
1706 struct field_of_this_result *);
c906108c 1707
de63c46b
PA
1708/* Find the definition for a specified symbol search name in domain
1709 DOMAIN, visible from lexical block BLOCK if non-NULL or from
1710 global/static blocks if BLOCK is NULL. The passed-in search name
1711 should not come from the user; instead it should already be a
987012b8 1712 search name as retrieved from a search_name () call. See definition of
de63c46b
PA
1713 symbol_name_match_type::SEARCH_NAME. Returns the struct symbol
1714 pointer, or NULL if no symbol is found. The symbol's section is
1715 fixed up if necessary. */
1716
1717extern struct block_symbol lookup_symbol_search_name (const char *search_name,
1718 const struct block *block,
1719 domain_enum domain);
1720
5f9a71c3
DC
1721/* Some helper functions for languages that need to write their own
1722 lookup_symbol_nonlocal functions. */
1723
1724/* Lookup a symbol in the static block associated to BLOCK, if there
cf901d3b 1725 is one; do nothing if BLOCK is NULL or a global block.
d12307c1 1726 Upon success fixes up the symbol's section if necessary. */
5f9a71c3 1727
d12307c1
PMR
1728extern struct block_symbol
1729 lookup_symbol_in_static_block (const char *name,
1730 const struct block *block,
1731 const domain_enum domain);
5f9a71c3 1732
08724ab7 1733/* Search all static file-level symbols for NAME from DOMAIN.
d12307c1 1734 Upon success fixes up the symbol's section if necessary. */
08724ab7 1735
d12307c1
PMR
1736extern struct block_symbol lookup_static_symbol (const char *name,
1737 const domain_enum domain);
08724ab7 1738
cf901d3b 1739/* Lookup a symbol in all files' global blocks.
67be31e5
DE
1740
1741 If BLOCK is non-NULL then it is used for two things:
1742 1) If a target-specific lookup routine for libraries exists, then use the
1743 routine for the objfile of BLOCK, and
1744 2) The objfile of BLOCK is used to assist in determining the search order
1745 if the target requires it.
1746 See gdbarch_iterate_over_objfiles_in_search_order.
1747
d12307c1 1748 Upon success fixes up the symbol's section if necessary. */
5f9a71c3 1749
d12307c1
PMR
1750extern struct block_symbol
1751 lookup_global_symbol (const char *name,
1752 const struct block *block,
1753 const domain_enum domain);
5f9a71c3 1754
d1a2d36d 1755/* Lookup a symbol in block BLOCK.
d12307c1 1756 Upon success fixes up the symbol's section if necessary. */
5f9a71c3 1757
d12307c1
PMR
1758extern struct symbol *
1759 lookup_symbol_in_block (const char *name,
de63c46b 1760 symbol_name_match_type match_type,
d12307c1
PMR
1761 const struct block *block,
1762 const domain_enum domain);
5f9a71c3 1763
cf901d3b
DE
1764/* Look up the `this' symbol for LANG in BLOCK. Return the symbol if
1765 found, or NULL if not found. */
1766
d12307c1
PMR
1767extern struct block_symbol
1768 lookup_language_this (const struct language_defn *lang,
1769 const struct block *block);
66a17cb6 1770
cf901d3b 1771/* Lookup a [struct, union, enum] by name, within a specified block. */
c906108c 1772
270140bd 1773extern struct type *lookup_struct (const char *, const struct block *);
c906108c 1774
270140bd 1775extern struct type *lookup_union (const char *, const struct block *);
c906108c 1776
270140bd 1777extern struct type *lookup_enum (const char *, const struct block *);
c906108c 1778
c906108c
SS
1779/* from blockframe.c: */
1780
cd2bb709
PA
1781/* lookup the function symbol corresponding to the address. The
1782 return value will not be an inlined function; the containing
1783 function will be returned instead. */
c906108c 1784
a14ed312 1785extern struct symbol *find_pc_function (CORE_ADDR);
c906108c 1786
cd2bb709
PA
1787/* lookup the function corresponding to the address and section. The
1788 return value will not be an inlined function; the containing
1789 function will be returned instead. */
c906108c 1790
714835d5 1791extern struct symbol *find_pc_sect_function (CORE_ADDR, struct obj_section *);
c5aa993b 1792
cd2bb709
PA
1793/* lookup the function symbol corresponding to the address and
1794 section. The return value will be the closest enclosing function,
1795 which might be an inline function. */
1796
1797extern struct symbol *find_pc_sect_containing_function
1798 (CORE_ADDR pc, struct obj_section *section);
1799
71a3c369
TT
1800/* Find the symbol at the given address. Returns NULL if no symbol
1801 found. Only exact matches for ADDRESS are considered. */
1802
1803extern struct symbol *find_symbol_at_address (CORE_ADDR);
1804
fc811edd
KB
1805/* Finds the "function" (text symbol) that is smaller than PC but
1806 greatest of all of the potential text symbols in SECTION. Sets
1807 *NAME and/or *ADDRESS conditionally if that pointer is non-null.
1808 If ENDADDR is non-null, then set *ENDADDR to be the end of the
1809 function (exclusive). If the optional parameter BLOCK is non-null,
1810 then set *BLOCK to the address of the block corresponding to the
1811 function symbol, if such a symbol could be found during the lookup;
1812 nullptr is used as a return value for *BLOCK if no block is found.
1813 This function either succeeds or fails (not halfway succeeds). If
1814 it succeeds, it sets *NAME, *ADDRESS, and *ENDADDR to real
ececd218
CB
1815 information and returns true. If it fails, it sets *NAME, *ADDRESS
1816 and *ENDADDR to zero and returns false.
fc811edd
KB
1817
1818 If the function in question occupies non-contiguous ranges,
1819 *ADDRESS and *ENDADDR are (subject to the conditions noted above) set
1820 to the start and end of the range in which PC is found. Thus
1821 *ADDRESS <= PC < *ENDADDR with no intervening gaps (in which ranges
1822 from other functions might be found).
1823
1824 This property allows find_pc_partial_function to be used (as it had
1825 been prior to the introduction of non-contiguous range support) by
1826 various tdep files for finding a start address and limit address
1827 for prologue analysis. This still isn't ideal, however, because we
1828 probably shouldn't be doing prologue analysis (in which
1829 instructions are scanned to determine frame size and stack layout)
1830 for any range that doesn't contain the entry pc. Moreover, a good
1831 argument can be made that prologue analysis ought to be performed
1832 starting from the entry pc even when PC is within some other range.
1833 This might suggest that *ADDRESS and *ENDADDR ought to be set to the
1834 limits of the entry pc range, but that will cause the
1835 *ADDRESS <= PC < *ENDADDR condition to be violated; many of the
59adbf5d
KB
1836 callers of find_pc_partial_function expect this condition to hold.
1837
1838 Callers which require the start and/or end addresses for the range
1839 containing the entry pc should instead call
1840 find_function_entry_range_from_pc. */
fc811edd 1841
ececd218
CB
1842extern bool find_pc_partial_function (CORE_ADDR pc, const char **name,
1843 CORE_ADDR *address, CORE_ADDR *endaddr,
1844 const struct block **block = nullptr);
c906108c 1845
f75a0693
AB
1846/* Like find_pc_partial_function, above, but returns the underlying
1847 general_symbol_info (rather than the name) as an out parameter. */
1848
1849extern bool find_pc_partial_function_sym
1850 (CORE_ADDR pc, const general_symbol_info **sym,
1851 CORE_ADDR *address, CORE_ADDR *endaddr,
1852 const struct block **block = nullptr);
1853
59adbf5d
KB
1854/* Like find_pc_partial_function, above, but *ADDRESS and *ENDADDR are
1855 set to start and end addresses of the range containing the entry pc.
1856
1857 Note that it is not necessarily the case that (for non-NULL ADDRESS
1858 and ENDADDR arguments) the *ADDRESS <= PC < *ENDADDR condition will
1859 hold.
1860
1861 See comment for find_pc_partial_function, above, for further
1862 explanation. */
1863
1864extern bool find_function_entry_range_from_pc (CORE_ADDR pc,
1865 const char **name,
1866 CORE_ADDR *address,
1867 CORE_ADDR *endaddr);
1868
8388016d
PA
1869/* Return the type of a function with its first instruction exactly at
1870 the PC address. Return NULL otherwise. */
1871
1872extern struct type *find_function_type (CORE_ADDR pc);
1873
1874/* See if we can figure out the function's actual type from the type
1875 that the resolver returns. RESOLVER_FUNADDR is the address of the
1876 ifunc resolver. */
1877
1878extern struct type *find_gnu_ifunc_target_type (CORE_ADDR resolver_funaddr);
1879
ca31ab1d
PA
1880/* Find the GNU ifunc minimal symbol that matches SYM. */
1881extern bound_minimal_symbol find_gnu_ifunc (const symbol *sym);
1882
a14ed312 1883extern void clear_pc_function_cache (void);
c906108c 1884
2097ae25 1885/* Expand symtab containing PC, SECTION if not already expanded. */
c906108c 1886
2097ae25 1887extern void expand_symtab_containing_pc (CORE_ADDR, struct obj_section *);
c906108c 1888
c378eb4e 1889/* lookup full symbol table by address. */
c906108c 1890
43f3e411 1891extern struct compunit_symtab *find_pc_compunit_symtab (CORE_ADDR);
c906108c 1892
c378eb4e 1893/* lookup full symbol table by address and section. */
c906108c 1894
43f3e411
DE
1895extern struct compunit_symtab *
1896 find_pc_sect_compunit_symtab (CORE_ADDR, struct obj_section *);
c906108c 1897
ececd218 1898extern bool find_pc_line_pc_range (CORE_ADDR, CORE_ADDR *, CORE_ADDR *);
c906108c 1899
9dec38d3 1900extern void reread_symbols (int from_tty);
c906108c 1901
cf901d3b
DE
1902/* Look up a type named NAME in STRUCT_DOMAIN in the current language.
1903 The type returned must not be opaque -- i.e., must have at least one field
1904 defined. */
1905
a14ed312 1906extern struct type *lookup_transparent_type (const char *);
c906108c 1907
cf901d3b 1908extern struct type *basic_lookup_transparent_type (const char *);
c906108c 1909
c378eb4e 1910/* Macro for name of symbol to indicate a file compiled with gcc. */
c906108c
SS
1911#ifndef GCC_COMPILED_FLAG_SYMBOL
1912#define GCC_COMPILED_FLAG_SYMBOL "gcc_compiled."
1913#endif
1914
c378eb4e 1915/* Macro for name of symbol to indicate a file compiled with gcc2. */
c906108c
SS
1916#ifndef GCC2_COMPILED_FLAG_SYMBOL
1917#define GCC2_COMPILED_FLAG_SYMBOL "gcc2_compiled."
1918#endif
1919
ececd218 1920extern bool in_gnu_ifunc_stub (CORE_ADDR pc);
0875794a 1921
07be84bf
JK
1922/* Functions for resolving STT_GNU_IFUNC symbols which are implemented only
1923 for ELF symbol files. */
1924
1925struct gnu_ifunc_fns
1926{
1927 /* See elf_gnu_ifunc_resolve_addr for its real implementation. */
1928 CORE_ADDR (*gnu_ifunc_resolve_addr) (struct gdbarch *gdbarch, CORE_ADDR pc);
1929
1930 /* See elf_gnu_ifunc_resolve_name for its real implementation. */
ececd218 1931 bool (*gnu_ifunc_resolve_name) (const char *function_name,
07be84bf 1932 CORE_ADDR *function_address_p);
0e30163f
JK
1933
1934 /* See elf_gnu_ifunc_resolver_stop for its real implementation. */
1935 void (*gnu_ifunc_resolver_stop) (struct breakpoint *b);
1936
1937 /* See elf_gnu_ifunc_resolver_return_stop for its real implementation. */
1938 void (*gnu_ifunc_resolver_return_stop) (struct breakpoint *b);
07be84bf
JK
1939};
1940
1941#define gnu_ifunc_resolve_addr gnu_ifunc_fns_p->gnu_ifunc_resolve_addr
1942#define gnu_ifunc_resolve_name gnu_ifunc_fns_p->gnu_ifunc_resolve_name
0e30163f
JK
1943#define gnu_ifunc_resolver_stop gnu_ifunc_fns_p->gnu_ifunc_resolver_stop
1944#define gnu_ifunc_resolver_return_stop \
1945 gnu_ifunc_fns_p->gnu_ifunc_resolver_return_stop
07be84bf
JK
1946
1947extern const struct gnu_ifunc_fns *gnu_ifunc_fns_p;
1948
52f729a7 1949extern CORE_ADDR find_solib_trampoline_target (struct frame_info *, CORE_ADDR);
c906108c 1950
c906108c 1951struct symtab_and_line
17c5ed2c 1952{
6c95b8df 1953 /* The program space of this sal. */
51abb421 1954 struct program_space *pspace = NULL;
6c95b8df 1955
51abb421 1956 struct symtab *symtab = NULL;
06871ae8 1957 struct symbol *symbol = NULL;
51abb421 1958 struct obj_section *section = NULL;
3467ec66 1959 struct minimal_symbol *msymbol = NULL;
17c5ed2c
DC
1960 /* Line number. Line numbers start at 1 and proceed through symtab->nlines.
1961 0 is never a valid line number; it is used to indicate that line number
1962 information is not available. */
51abb421 1963 int line = 0;
17c5ed2c 1964
51abb421
PA
1965 CORE_ADDR pc = 0;
1966 CORE_ADDR end = 0;
1967 bool explicit_pc = false;
1968 bool explicit_line = false;
55aa24fb 1969
8c95582d
AB
1970 /* If the line number information is valid, then this indicates if this
1971 line table entry had the is-stmt flag set or not. */
1972 bool is_stmt = false;
1973
55aa24fb 1974 /* The probe associated with this symtab_and_line. */
935676c9 1975 probe *prob = NULL;
729662a5
TT
1976 /* If PROBE is not NULL, then this is the objfile in which the probe
1977 originated. */
51abb421 1978 struct objfile *objfile = NULL;
17c5ed2c 1979};
c906108c 1980
c5aa993b 1981\f
c906108c 1982
c906108c
SS
1983/* Given a pc value, return line number it is in. Second arg nonzero means
1984 if pc is on the boundary use the previous statement's line number. */
1985
a14ed312 1986extern struct symtab_and_line find_pc_line (CORE_ADDR, int);
c906108c 1987
c378eb4e 1988/* Same function, but specify a section as well as an address. */
c906108c 1989
714835d5
UW
1990extern struct symtab_and_line find_pc_sect_line (CORE_ADDR,
1991 struct obj_section *, int);
c906108c 1992
34248c3a
DE
1993/* Wrapper around find_pc_line to just return the symtab. */
1994
1995extern struct symtab *find_pc_line_symtab (CORE_ADDR);
1996
c906108c
SS
1997/* Given a symtab and line number, return the pc there. */
1998
ececd218 1999extern bool find_line_pc (struct symtab *, int, CORE_ADDR *);
c906108c 2000
ececd218
CB
2001extern bool find_line_pc_range (struct symtab_and_line, CORE_ADDR *,
2002 CORE_ADDR *);
c906108c 2003
a14ed312 2004extern void resolve_sal_pc (struct symtab_and_line *);
c906108c 2005
f176c4b5 2006/* solib.c */
c906108c 2007
a14ed312 2008extern void clear_solib (void);
c906108c 2009
c6756f62
PA
2010/* The reason we're calling into a completion match list collector
2011 function. */
2012enum class complete_symbol_mode
2013 {
2014 /* Completing an expression. */
2015 EXPRESSION,
2016
2017 /* Completing a linespec. */
2018 LINESPEC,
2019 };
2020
eb3ff9a5
PA
2021extern void default_collect_symbol_completion_matches_break_on
2022 (completion_tracker &tracker,
c6756f62 2023 complete_symbol_mode mode,
b5ec771e 2024 symbol_name_match_type name_match_type,
eb3ff9a5 2025 const char *text, const char *word, const char *break_on,
2f68a895 2026 enum type_code code);
b5ec771e
PA
2027extern void collect_symbol_completion_matches
2028 (completion_tracker &tracker,
2029 complete_symbol_mode mode,
2030 symbol_name_match_type name_match_type,
2031 const char *, const char *);
eb3ff9a5
PA
2032extern void collect_symbol_completion_matches_type (completion_tracker &tracker,
2033 const char *, const char *,
2f68a895 2034 enum type_code);
c906108c 2035
b5ec771e
PA
2036extern void collect_file_symbol_completion_matches
2037 (completion_tracker &tracker,
2038 complete_symbol_mode,
2039 symbol_name_match_type name_match_type,
2040 const char *, const char *, const char *);
c94fdfd0 2041
eb3ff9a5
PA
2042extern completion_list
2043 make_source_files_completion_list (const char *, const char *);
c94fdfd0 2044
f9d67a22
PA
2045/* Return whether SYM is a function/method, as opposed to a data symbol. */
2046
2047extern bool symbol_is_function_or_method (symbol *sym);
2048
2049/* Return whether MSYMBOL is a function/method, as opposed to a data
2050 symbol */
2051
2052extern bool symbol_is_function_or_method (minimal_symbol *msymbol);
2053
2054/* Return whether SYM should be skipped in completion mode MODE. In
2055 linespec mode, we're only interested in functions/methods. */
2056
2057template<typename Symbol>
2058static bool
2059completion_skip_symbol (complete_symbol_mode mode, Symbol *sym)
2060{
2061 return (mode == complete_symbol_mode::LINESPEC
2062 && !symbol_is_function_or_method (sym));
2063}
2064
c906108c
SS
2065/* symtab.c */
2066
ececd218 2067bool matching_obj_sections (struct obj_section *, struct obj_section *);
94277a38 2068
ececd218 2069extern struct symtab *find_line_symtab (struct symtab *, int, int *, bool *);
50641945 2070
42ddae10
PA
2071/* Given a function symbol SYM, find the symtab and line for the start
2072 of the function. If FUNFIRSTLINE is true, we want the first line
2073 of real code inside the function. */
2074extern symtab_and_line find_function_start_sal (symbol *sym, bool
2075 funfirstline);
2076
2077/* Same, but start with a function address/section instead of a
2078 symbol. */
2079extern symtab_and_line find_function_start_sal (CORE_ADDR func_addr,
2080 obj_section *section,
2081 bool funfirstline);
50641945 2082
059acae7
UW
2083extern void skip_prologue_sal (struct symtab_and_line *);
2084
c906108c
SS
2085/* symtab.c */
2086
d80b854b
UW
2087extern CORE_ADDR skip_prologue_using_sal (struct gdbarch *gdbarch,
2088 CORE_ADDR func_addr);
634aa483 2089
a14ed312
KB
2090extern struct symbol *fixup_symbol_section (struct symbol *,
2091 struct objfile *);
c906108c 2092
bf223d3e
PA
2093/* If MSYMBOL is an text symbol, look for a function debug symbol with
2094 the same address. Returns NULL if not found. This is necessary in
2095 case a function is an alias to some other function, because debug
2096 information is only emitted for the alias target function's
2097 definition, not for the alias. */
2098extern symbol *find_function_alias_target (bound_minimal_symbol msymbol);
2099
c906108c
SS
2100/* Symbol searching */
2101
470c0b1c
AB
2102/* When using the symbol_searcher struct to search for symbols, a vector of
2103 the following structs is returned. */
c906108c 2104struct symbol_search
17c5ed2c 2105{
b9c04fb2
TT
2106 symbol_search (int block_, struct symbol *symbol_)
2107 : block (block_),
2108 symbol (symbol_)
2109 {
2110 msymbol.minsym = nullptr;
2111 msymbol.objfile = nullptr;
2112 }
2113
2114 symbol_search (int block_, struct minimal_symbol *minsym,
2115 struct objfile *objfile)
2116 : block (block_),
2117 symbol (nullptr)
2118 {
2119 msymbol.minsym = minsym;
2120 msymbol.objfile = objfile;
2121 }
2122
2123 bool operator< (const symbol_search &other) const
2124 {
2125 return compare_search_syms (*this, other) < 0;
2126 }
2127
2128 bool operator== (const symbol_search &other) const
2129 {
2130 return compare_search_syms (*this, other) == 0;
2131 }
2132
c378eb4e
MS
2133 /* The block in which the match was found. Could be, for example,
2134 STATIC_BLOCK or GLOBAL_BLOCK. */
17c5ed2c 2135 int block;
c906108c 2136
17c5ed2c 2137 /* Information describing what was found.
c906108c 2138
d01060f0 2139 If symbol is NOT NULL, then information was found for this match. */
17c5ed2c 2140 struct symbol *symbol;
c906108c 2141
17c5ed2c 2142 /* If msymbol is non-null, then a match was made on something for
c378eb4e 2143 which only minimal_symbols exist. */
7c7b6655 2144 struct bound_minimal_symbol msymbol;
c906108c 2145
b9c04fb2
TT
2146private:
2147
2148 static int compare_search_syms (const symbol_search &sym_a,
2149 const symbol_search &sym_b);
17c5ed2c 2150};
c906108c 2151
470c0b1c
AB
2152/* In order to search for global symbols of a particular kind matching
2153 particular regular expressions, create an instance of this structure and
2154 call the SEARCH member function. */
2155class global_symbol_searcher
2156{
2157public:
2158
2159 /* Constructor. */
2160 global_symbol_searcher (enum search_domain kind,
2161 const char *symbol_name_regexp)
2162 : m_kind (kind),
2163 m_symbol_name_regexp (symbol_name_regexp)
2164 {
2165 /* The symbol searching is designed to only find one kind of thing. */
2166 gdb_assert (m_kind != ALL_DOMAIN);
2167 }
2168
2169 /* Set the optional regexp that matches against the symbol type. */
2170 void set_symbol_type_regexp (const char *regexp)
2171 {
2172 m_symbol_type_regexp = regexp;
2173 }
2174
2175 /* Set the flag to exclude minsyms from the search results. */
2176 void set_exclude_minsyms (bool exclude_minsyms)
2177 {
2178 m_exclude_minsyms = exclude_minsyms;
2179 }
2180
c2512106
AB
2181 /* Set the maximum number of search results to be returned. */
2182 void set_max_search_results (size_t max_search_results)
2183 {
2184 m_max_search_results = max_search_results;
2185 }
2186
470c0b1c
AB
2187 /* Search the symbols from all objfiles in the current program space
2188 looking for matches as defined by the current state of this object.
2189
2190 Within each file the results are sorted locally; each symtab's global
2191 and static blocks are separately alphabetized. Duplicate entries are
2192 removed. */
2193 std::vector<symbol_search> search () const;
2194
2195 /* The set of source files to search in for matching symbols. This is
2196 currently public so that it can be populated after this object has
2197 been constructed. */
2198 std::vector<const char *> filenames;
2199
2200private:
2201 /* The kind of symbols are we searching for.
2202 VARIABLES_DOMAIN - Search all symbols, excluding functions, type
dda83cd7 2203 names, and constants (enums).
470c0b1c
AB
2204 FUNCTIONS_DOMAIN - Search all functions..
2205 TYPES_DOMAIN - Search all type names.
2206 MODULES_DOMAIN - Search all Fortran modules.
2207 ALL_DOMAIN - Not valid for this function. */
2208 enum search_domain m_kind;
2209
2210 /* Regular expression to match against the symbol name. */
2211 const char *m_symbol_name_regexp = nullptr;
2212
2213 /* Regular expression to match against the symbol type. */
2214 const char *m_symbol_type_regexp = nullptr;
2215
2216 /* When this flag is false then minsyms that match M_SYMBOL_REGEXP will
2217 be included in the results, otherwise they are excluded. */
2218 bool m_exclude_minsyms = false;
f97a63c5 2219
c2512106
AB
2220 /* Maximum number of search results. We currently impose a hard limit
2221 of SIZE_MAX, there is no "unlimited". */
2222 size_t m_max_search_results = SIZE_MAX;
2223
f97a63c5
AB
2224 /* Expand symtabs in OBJFILE that match PREG, are of type M_KIND. Return
2225 true if any msymbols were seen that we should later consider adding to
2226 the results list. */
2227 bool expand_symtabs (objfile *objfile,
2228 const gdb::optional<compiled_regex> &preg) const;
2229
2230 /* Add symbols from symtabs in OBJFILE that match PREG, and TREG, and are
c2512106
AB
2231 of type M_KIND, to the results set RESULTS_SET. Return false if we
2232 stop adding results early due to having already found too many results
2233 (based on M_MAX_SEARCH_RESULTS limit), otherwise return true.
2234 Returning true does not indicate that any results were added, just
2235 that we didn't _not_ add a result due to reaching MAX_SEARCH_RESULTS. */
2236 bool add_matching_symbols (objfile *objfile,
f97a63c5
AB
2237 const gdb::optional<compiled_regex> &preg,
2238 const gdb::optional<compiled_regex> &treg,
c2512106
AB
2239 std::set<symbol_search> *result_set) const;
2240
2241 /* Add msymbols from OBJFILE that match PREG and M_KIND, to the results
2242 vector RESULTS. Return false if we stop adding results early due to
2243 having already found too many results (based on max search results
2244 limit M_MAX_SEARCH_RESULTS), otherwise return true. Returning true
2245 does not indicate that any results were added, just that we didn't
2246 _not_ add a result due to reaching MAX_SEARCH_RESULTS. */
2247 bool add_matching_msymbols (objfile *objfile,
f97a63c5
AB
2248 const gdb::optional<compiled_regex> &preg,
2249 std::vector<symbol_search> *results) const;
2250
2251 /* Return true if MSYMBOL is of type KIND. */
2252 static bool is_suitable_msymbol (const enum search_domain kind,
2253 const minimal_symbol *msymbol);
470c0b1c 2254};
165f8965
AB
2255
2256/* When searching for Fortran symbols within modules (functions/variables)
2257 we return a vector of this type. The first item in the pair is the
2258 module symbol, and the second item is the symbol for the function or
2259 variable we found. */
2260typedef std::pair<symbol_search, symbol_search> module_symbol_search;
2261
2262/* Searches the symbols to find function and variables symbols (depending
2263 on KIND) within Fortran modules. The MODULE_REGEXP matches against the
2264 name of the module, REGEXP matches against the name of the symbol within
2265 the module, and TYPE_REGEXP matches against the type of the symbol
2266 within the module. */
2267extern std::vector<module_symbol_search> search_module_symbols
2268 (const char *module_regexp, const char *regexp,
2269 const char *type_regexp, search_domain kind);
2270
5f512a7d
AB
2271/* Convert a global or static symbol SYM (based on BLOCK, which should be
2272 either GLOBAL_BLOCK or STATIC_BLOCK) into a string for use in 'info'
2273 type commands (e.g. 'info variables', 'info functions', etc). KIND is
2274 the type of symbol that was searched for which gave us SYM. */
2275
2276extern std::string symbol_to_info_string (struct symbol *sym, int block,
2277 enum search_domain kind);
2278
12615cba
PW
2279extern bool treg_matches_sym_type_name (const compiled_regex &treg,
2280 const struct symbol *sym);
c906108c 2281
cd215b2e
TT
2282/* The name of the ``main'' function. */
2283extern const char *main_name ();
9e6c82ad 2284extern enum language main_language (void);
51cc5b07 2285
442853af
CB
2286/* Lookup symbol NAME from DOMAIN in MAIN_OBJFILE's global or static blocks,
2287 as specified by BLOCK_INDEX.
cf901d3b
DE
2288 This searches MAIN_OBJFILE as well as any associated separate debug info
2289 objfiles of MAIN_OBJFILE.
442853af 2290 BLOCK_INDEX can be GLOBAL_BLOCK or STATIC_BLOCK.
d12307c1 2291 Upon success fixes up the symbol's section if necessary. */
cf901d3b 2292
d12307c1 2293extern struct block_symbol
efad9b6a 2294 lookup_global_symbol_from_objfile (struct objfile *main_objfile,
442853af 2295 enum block_enum block_index,
cf901d3b
DE
2296 const char *name,
2297 const domain_enum domain);
3a40aaa0 2298
a6c727b2
DJ
2299/* Return 1 if the supplied producer string matches the ARM RealView
2300 compiler (armcc). */
ececd218 2301bool producer_is_realview (const char *producer);
3a40aaa0 2302
ccefe4c4
TT
2303void fixup_section (struct general_symbol_info *ginfo,
2304 CORE_ADDR addr, struct objfile *objfile);
2305
db0fec5c 2306extern unsigned int symtab_create_debug;
45cfd468 2307
cc485e62
DE
2308extern unsigned int symbol_lookup_debug;
2309
491144b5 2310extern bool basenames_may_differ;
c011a4f4 2311
ececd218
CB
2312bool compare_filenames_for_search (const char *filename,
2313 const char *search_name);
4aac40c8 2314
ececd218
CB
2315bool compare_glob_filenames_for_search (const char *filename,
2316 const char *search_name);
cce0e923 2317
14bc53a8
PA
2318bool iterate_over_some_symtabs (const char *name,
2319 const char *real_path,
2320 struct compunit_symtab *first,
2321 struct compunit_symtab *after_last,
2322 gdb::function_view<bool (symtab *)> callback);
f8eba3c6
TT
2323
2324void iterate_over_symtabs (const char *name,
14bc53a8
PA
2325 gdb::function_view<bool (symtab *)> callback);
2326
f8eba3c6 2327
67d89901
TT
2328std::vector<CORE_ADDR> find_pcs_for_symtab_line
2329 (struct symtab *symtab, int line, struct linetable_entry **best_entry);
f8eba3c6 2330
14bc53a8
PA
2331/* Prototype for callbacks for LA_ITERATE_OVER_SYMBOLS. The callback
2332 is called once per matching symbol SYM. The callback should return
2333 true to indicate that LA_ITERATE_OVER_SYMBOLS should continue
2334 iterating, or false to indicate that the iteration should end. */
8e704927 2335
7e41c8db 2336typedef bool (symbol_found_callback_ftype) (struct block_symbol *bsym);
8e704927 2337
6969f124
TT
2338/* Iterate over the symbols named NAME, matching DOMAIN, in BLOCK.
2339
2340 For each symbol that matches, CALLBACK is called. The symbol is
2341 passed to the callback.
2342
2343 If CALLBACK returns false, the iteration ends and this function
2344 returns false. Otherwise, the search continues, and the function
2345 eventually returns true. */
2346
2347bool iterate_over_symbols (const struct block *block,
b5ec771e 2348 const lookup_name_info &name,
f8eba3c6 2349 const domain_enum domain,
14bc53a8 2350 gdb::function_view<symbol_found_callback_ftype> callback);
f8eba3c6 2351
6a3dbf1b
TT
2352/* Like iterate_over_symbols, but if all calls to CALLBACK return
2353 true, then calls CALLBACK one additional time with a block_symbol
2354 that has a valid block but a NULL symbol. */
2355
2356bool iterate_over_symbols_terminated
2357 (const struct block *block,
2358 const lookup_name_info &name,
2359 const domain_enum domain,
2360 gdb::function_view<symbol_found_callback_ftype> callback);
2361
2f408ecb
PA
2362/* Storage type used by demangle_for_lookup. demangle_for_lookup
2363 either returns a const char * pointer that points to either of the
2364 fields of this type, or a pointer to the input NAME. This is done
596dc4ad
TT
2365 this way to avoid depending on the precise details of the storage
2366 for the string. */
2f408ecb
PA
2367class demangle_result_storage
2368{
2369public:
2370
596dc4ad
TT
2371 /* Swap the malloc storage to STR, and return a pointer to the
2372 beginning of the new string. */
2373 const char *set_malloc_ptr (gdb::unique_xmalloc_ptr<char> &&str)
2f408ecb 2374 {
596dc4ad
TT
2375 m_malloc = std::move (str);
2376 return m_malloc.get ();
2f408ecb
PA
2377 }
2378
2379 /* Set the malloc storage to now point at PTR. Any previous malloc
2380 storage is released. */
2381 const char *set_malloc_ptr (char *ptr)
2382 {
2383 m_malloc.reset (ptr);
2384 return ptr;
2385 }
2386
2387private:
2388
2389 /* The storage. */
2f408ecb
PA
2390 gdb::unique_xmalloc_ptr<char> m_malloc;
2391};
2392
2393const char *
2394 demangle_for_lookup (const char *name, enum language lang,
2395 demangle_result_storage &storage);
f8eba3c6 2396
b5ec771e
PA
2397/* Test to see if the symbol of language SYMBOL_LANGUAGE specified by
2398 SYMNAME (which is already demangled for C++ symbols) matches
2399 SYM_TEXT in the first SYM_TEXT_LEN characters. If so, add it to
e08bd6c5
PA
2400 the current completion list and return true. Otherwise, return
2401 false. */
2402bool completion_list_add_name (completion_tracker &tracker,
b5ec771e
PA
2403 language symbol_language,
2404 const char *symname,
2405 const lookup_name_info &lookup_name,
b5ec771e
PA
2406 const char *text, const char *word);
2407
fcaad03c
KS
2408/* A simple symbol searching class. */
2409
2410class symbol_searcher
2411{
2412public:
2413 /* Returns the symbols found for the search. */
2414 const std::vector<block_symbol> &
2415 matching_symbols () const
2416 {
2417 return m_symbols;
2418 }
2419
2420 /* Returns the minimal symbols found for the search. */
2421 const std::vector<bound_minimal_symbol> &
2422 matching_msymbols () const
2423 {
2424 return m_minimal_symbols;
2425 }
2426
2427 /* Search for all symbols named NAME in LANGUAGE with DOMAIN, restricting
2428 search to FILE_SYMTABS and SEARCH_PSPACE, both of which may be NULL
2429 to search all symtabs and program spaces. */
2430 void find_all_symbols (const std::string &name,
2431 const struct language_defn *language,
2432 enum search_domain search_domain,
2433 std::vector<symtab *> *search_symtabs,
2434 struct program_space *search_pspace);
2435
2436 /* Reset this object to perform another search. */
2437 void reset ()
2438 {
2439 m_symbols.clear ();
2440 m_minimal_symbols.clear ();
2441 }
2442
2443private:
2444 /* Matching debug symbols. */
2445 std::vector<block_symbol> m_symbols;
2446
2447 /* Matching non-debug symbols. */
2448 std::vector<bound_minimal_symbol> m_minimal_symbols;
2449};
2450
0e350a05
AB
2451/* Class used to encapsulate the filename filtering for the "info sources"
2452 command. */
2453
2454struct info_sources_filter
2455{
2456 /* If filename filtering is being used (see M_C_REGEXP) then which part
2457 of the filename is being filtered against? */
2458 enum class match_on
2459 {
2460 /* Match against the full filename. */
2461 FULLNAME,
2462
2463 /* Match only against the directory part of the full filename. */
2464 DIRNAME,
2465
2466 /* Match only against the basename part of the full filename. */
2467 BASENAME
2468 };
2469
2470 /* Create a filter of MATCH_TYPE using regular expression REGEXP. If
2471 REGEXP is nullptr then all files will match the filter and MATCH_TYPE
2472 is ignored.
2473
2474 The string pointed too by REGEXP must remain live and unchanged for
2475 this lifetime of this object as the object only retains a copy of the
2476 pointer. */
2477 info_sources_filter (match_on match_type, const char *regexp);
2478
2479 DISABLE_COPY_AND_ASSIGN (info_sources_filter);
2480
2481 /* Does FULLNAME match the filter defined by this object, return true if
2482 it does, otherwise, return false. If there is no filtering defined
2483 then this function will always return true. */
2484 bool matches (const char *fullname) const;
2485
0e350a05
AB
2486private:
2487
2488 /* The type of filtering in place. */
2489 match_on m_match_type;
2490
2491 /* Points to the original regexp used to create this filter. */
2492 const char *m_regexp;
2493
2494 /* A compiled version of M_REGEXP. This object is only given a value if
2495 M_REGEXP is not nullptr and is not the empty string. */
2496 gdb::optional<compiled_regex> m_c_regexp;
2497};
2498
2499/* Perform the core of the 'info sources' command.
2500
2501 FILTER is used to perform regular expression based filtering on the
2502 source files that will be displayed.
2503
2504 Output is written to UIOUT in CLI or MI style as appropriate. */
2505
2506extern void info_sources_worker (struct ui_out *uiout,
1fb1ce02 2507 bool group_by_objfile,
0e350a05
AB
2508 const info_sources_filter &filter);
2509
c906108c 2510#endif /* !defined(SYMTAB_H) */