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