]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/symtab.c
[gdb/contrib] Improve words extraction in words.sh script
[thirdparty/binutils-gdb.git] / gdb / symtab.c
CommitLineData
c906108c 1/* Symbol table lookup for the GNU debugger, GDB.
8926118c 2
42a4f53d 3 Copyright (C) 1986-2019 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#include "defs.h"
21#include "symtab.h"
22#include "gdbtypes.h"
23#include "gdbcore.h"
24#include "frame.h"
25#include "target.h"
26#include "value.h"
27#include "symfile.h"
28#include "objfiles.h"
29#include "gdbcmd.h"
88987551 30#include "gdb_regex.h"
c906108c
SS
31#include "expression.h"
32#include "language.h"
33#include "demangle.h"
34#include "inferior.h"
0378c332 35#include "source.h"
a7fdf62f 36#include "filenames.h" /* for FILENAME_CMP */
1bae87b9 37#include "objc-lang.h"
6aecb9c2 38#include "d-lang.h"
1f8173e6 39#include "ada-lang.h"
a766d390 40#include "go-lang.h"
cd6c7346 41#include "p-lang.h"
ff013f42 42#include "addrmap.h"
529480d0 43#include "cli/cli-utils.h"
1ed9f74e 44#include "cli/cli-style.h"
cce0e923 45#include "fnmatch.h"
2de7ced7 46#include "hashtab.h"
12615cba 47#include "typeprint.h"
2de7ced7 48
04ea0df1 49#include "gdb_obstack.h"
fe898f56 50#include "block.h"
de4f826b 51#include "dictionary.h"
c906108c
SS
52
53#include <sys/types.h>
54#include <fcntl.h>
53ce3c39 55#include <sys/stat.h>
c906108c 56#include <ctype.h>
015a42b4 57#include "cp-abi.h"
71c25dea 58#include "cp-support.h"
76727919 59#include "observable.h"
3a40aaa0 60#include "solist.h"
9a044a89
TT
61#include "macrotab.h"
62#include "macroscope.h"
c906108c 63
270140bd 64#include "parser-defs.h"
ef0b411a 65#include "completer.h"
5ed8105e 66#include "progspace-and-thread.h"
268a13a5 67#include "gdbsupport/gdb_optional.h"
bbf2f4df 68#include "filename-seen-cache.h"
46a62268 69#include "arch-utils.h"
b9c04fb2 70#include <algorithm>
7bb43059 71#include "gdbsupport/gdb_string_view.h"
268a13a5 72#include "gdbsupport/pathstuff.h"
1a6ff1a9 73#include "gdbsupport/common-utils.h"
ccefe4c4 74
ff6c39cf 75/* Forward declarations for local functions. */
c906108c 76
0b39b52e 77static void rbreak_command (const char *, int);
c906108c 78
f8eba3c6 79static int find_line_common (struct linetable *, int, int *, int);
c906108c 80
d12307c1
PMR
81static struct block_symbol
82 lookup_symbol_aux (const char *name,
de63c46b 83 symbol_name_match_type match_type,
d12307c1
PMR
84 const struct block *block,
85 const domain_enum domain,
86 enum language language,
87 struct field_of_this_result *);
fba7f19c 88
e4051eeb 89static
d12307c1 90struct block_symbol lookup_local_symbol (const char *name,
de63c46b 91 symbol_name_match_type match_type,
d12307c1
PMR
92 const struct block *block,
93 const domain_enum domain,
94 enum language language);
8155455b 95
d12307c1 96static struct block_symbol
c32e6a04
CB
97 lookup_symbol_in_objfile (struct objfile *objfile,
98 enum block_enum block_index,
fe2a438d 99 const char *name, const domain_enum domain);
c906108c 100
32ac0d11
TT
101/* Type of the data stored on the program space. */
102
103struct main_info
104{
a32ad8c5
TT
105 main_info () = default;
106
107 ~main_info ()
108 {
109 xfree (name_of_main);
110 }
111
32ac0d11
TT
112 /* Name of "main". */
113
a32ad8c5 114 char *name_of_main = nullptr;
32ac0d11
TT
115
116 /* Language of "main". */
117
a32ad8c5 118 enum language language_of_main = language_unknown;
32ac0d11
TT
119};
120
a32ad8c5
TT
121/* Program space key for finding name and language of "main". */
122
123static const program_space_key<main_info> main_progspace_key;
124
f57d2163
DE
125/* The default symbol cache size.
126 There is no extra cpu cost for large N (except when flushing the cache,
127 which is rare). The value here is just a first attempt. A better default
128 value may be higher or lower. A prime number can make up for a bad hash
129 computation, so that's why the number is what it is. */
130#define DEFAULT_SYMBOL_CACHE_SIZE 1021
131
132/* The maximum symbol cache size.
133 There's no method to the decision of what value to use here, other than
134 there's no point in allowing a user typo to make gdb consume all memory. */
135#define MAX_SYMBOL_CACHE_SIZE (1024*1024)
136
137/* symbol_cache_lookup returns this if a previous lookup failed to find the
138 symbol in any objfile. */
d12307c1
PMR
139#define SYMBOL_LOOKUP_FAILED \
140 ((struct block_symbol) {(struct symbol *) 1, NULL})
141#define SYMBOL_LOOKUP_FAILED_P(SIB) (SIB.symbol == (struct symbol *) 1)
f57d2163
DE
142
143/* Recording lookups that don't find the symbol is just as important, if not
144 more so, than recording found symbols. */
145
146enum symbol_cache_slot_state
147{
148 SYMBOL_SLOT_UNUSED,
149 SYMBOL_SLOT_NOT_FOUND,
150 SYMBOL_SLOT_FOUND
151};
152
52059ffd
TT
153struct symbol_cache_slot
154{
155 enum symbol_cache_slot_state state;
156
157 /* The objfile that was current when the symbol was looked up.
158 This is only needed for global blocks, but for simplicity's sake
159 we allocate the space for both. If data shows the extra space used
160 for static blocks is a problem, we can split things up then.
161
162 Global blocks need cache lookup to include the objfile context because
163 we need to account for gdbarch_iterate_over_objfiles_in_search_order
164 which can traverse objfiles in, effectively, any order, depending on
165 the current objfile, thus affecting which symbol is found. Normally,
166 only the current objfile is searched first, and then the rest are
167 searched in recorded order; but putting cache lookup inside
168 gdbarch_iterate_over_objfiles_in_search_order would be awkward.
169 Instead we just make the current objfile part of the context of
170 cache lookup. This means we can record the same symbol multiple times,
171 each with a different "current objfile" that was in effect when the
172 lookup was saved in the cache, but cache space is pretty cheap. */
173 const struct objfile *objfile_context;
174
175 union
176 {
d12307c1 177 struct block_symbol found;
52059ffd
TT
178 struct
179 {
180 char *name;
181 domain_enum domain;
182 } not_found;
183 } value;
184};
185
f57d2163
DE
186/* Symbols don't specify global vs static block.
187 So keep them in separate caches. */
188
189struct block_symbol_cache
190{
191 unsigned int hits;
192 unsigned int misses;
193 unsigned int collisions;
194
195 /* SYMBOLS is a variable length array of this size.
196 One can imagine that in general one cache (global/static) should be a
197 fraction of the size of the other, but there's no data at the moment
198 on which to decide. */
199 unsigned int size;
200
52059ffd 201 struct symbol_cache_slot symbols[1];
f57d2163
DE
202};
203
204/* The symbol cache.
205
206 Searching for symbols in the static and global blocks over multiple objfiles
207 again and again can be slow, as can searching very big objfiles. This is a
208 simple cache to improve symbol lookup performance, which is critical to
209 overall gdb performance.
210
211 Symbols are hashed on the name, its domain, and block.
212 They are also hashed on their objfile for objfile-specific lookups. */
213
214struct symbol_cache
215{
3017b94d
TT
216 symbol_cache () = default;
217
218 ~symbol_cache ()
219 {
220 xfree (global_symbols);
221 xfree (static_symbols);
222 }
223
224 struct block_symbol_cache *global_symbols = nullptr;
225 struct block_symbol_cache *static_symbols = nullptr;
f57d2163
DE
226};
227
3017b94d
TT
228/* Program space key for finding its symbol cache. */
229
230static const program_space_key<symbol_cache> symbol_cache_key;
231
45cfd468 232/* When non-zero, print debugging messages related to symtab creation. */
db0fec5c 233unsigned int symtab_create_debug = 0;
45cfd468 234
cc485e62
DE
235/* When non-zero, print debugging messages related to symbol lookup. */
236unsigned int symbol_lookup_debug = 0;
237
f57d2163
DE
238/* The size of the cache is staged here. */
239static unsigned int new_symbol_cache_size = DEFAULT_SYMBOL_CACHE_SIZE;
240
241/* The current value of the symbol cache size.
242 This is saved so that if the user enters a value too big we can restore
243 the original value from here. */
244static unsigned int symbol_cache_size = DEFAULT_SYMBOL_CACHE_SIZE;
245
491144b5 246/* True if a file may be known by two different basenames.
c011a4f4
DE
247 This is the uncommon case, and significantly slows down gdb.
248 Default set to "off" to not slow down the common case. */
491144b5 249bool basenames_may_differ = false;
c011a4f4 250
717d2f5a
JB
251/* Allow the user to configure the debugger behavior with respect
252 to multiple-choice menus when more than one symbol matches during
253 a symbol lookup. */
254
7fc830e2
MK
255const char multiple_symbols_ask[] = "ask";
256const char multiple_symbols_all[] = "all";
257const char multiple_symbols_cancel[] = "cancel";
40478521 258static const char *const multiple_symbols_modes[] =
717d2f5a
JB
259{
260 multiple_symbols_ask,
261 multiple_symbols_all,
262 multiple_symbols_cancel,
263 NULL
264};
265static const char *multiple_symbols_mode = multiple_symbols_all;
266
267/* Read-only accessor to AUTO_SELECT_MODE. */
268
269const char *
270multiple_symbols_select_mode (void)
271{
272 return multiple_symbols_mode;
273}
274
20c681d1
DE
275/* Return the name of a domain_enum. */
276
277const char *
278domain_name (domain_enum e)
279{
280 switch (e)
281 {
282 case UNDEF_DOMAIN: return "UNDEF_DOMAIN";
283 case VAR_DOMAIN: return "VAR_DOMAIN";
284 case STRUCT_DOMAIN: return "STRUCT_DOMAIN";
540feddf 285 case MODULE_DOMAIN: return "MODULE_DOMAIN";
20c681d1
DE
286 case LABEL_DOMAIN: return "LABEL_DOMAIN";
287 case COMMON_BLOCK_DOMAIN: return "COMMON_BLOCK_DOMAIN";
288 default: gdb_assert_not_reached ("bad domain_enum");
289 }
290}
291
292/* Return the name of a search_domain . */
293
294const char *
295search_domain_name (enum search_domain e)
296{
297 switch (e)
298 {
299 case VARIABLES_DOMAIN: return "VARIABLES_DOMAIN";
300 case FUNCTIONS_DOMAIN: return "FUNCTIONS_DOMAIN";
301 case TYPES_DOMAIN: return "TYPES_DOMAIN";
59c35742 302 case MODULES_DOMAIN: return "MODULES_DOMAIN";
20c681d1
DE
303 case ALL_DOMAIN: return "ALL_DOMAIN";
304 default: gdb_assert_not_reached ("bad search_domain");
305 }
306}
307
43f3e411 308/* See symtab.h. */
db0fec5c 309
43f3e411
DE
310struct symtab *
311compunit_primary_filetab (const struct compunit_symtab *cust)
db0fec5c 312{
43f3e411 313 gdb_assert (COMPUNIT_FILETABS (cust) != NULL);
db0fec5c 314
43f3e411
DE
315 /* The primary file symtab is the first one in the list. */
316 return COMPUNIT_FILETABS (cust);
317}
318
319/* See symtab.h. */
320
321enum language
322compunit_language (const struct compunit_symtab *cust)
323{
324 struct symtab *symtab = compunit_primary_filetab (cust);
325
326/* The language of the compunit symtab is the language of its primary
327 source file. */
328 return SYMTAB_LANGUAGE (symtab);
db0fec5c
DE
329}
330
1ed9f74e
PW
331/* See symtab.h. */
332
333bool
334minimal_symbol::data_p () const
335{
336 return type == mst_data
337 || type == mst_bss
338 || type == mst_abs
339 || type == mst_file_data
340 || type == mst_file_bss;
341}
342
343/* See symtab.h. */
344
345bool
346minimal_symbol::text_p () const
347{
348 return type == mst_text
349 || type == mst_text_gnu_ifunc
350 || type == mst_data_gnu_ifunc
351 || type == mst_slot_got_plt
352 || type == mst_solib_trampoline
353 || type == mst_file_text;
354}
355
4aac40c8
TT
356/* See whether FILENAME matches SEARCH_NAME using the rule that we
357 advertise to the user. (The manual's description of linespecs
af529f8f
JK
358 describes what we advertise). Returns true if they match, false
359 otherwise. */
4aac40c8 360
ececd218 361bool
b57a636e 362compare_filenames_for_search (const char *filename, const char *search_name)
4aac40c8
TT
363{
364 int len = strlen (filename);
b57a636e 365 size_t search_len = strlen (search_name);
4aac40c8
TT
366
367 if (len < search_len)
ececd218 368 return false;
4aac40c8
TT
369
370 /* The tail of FILENAME must match. */
371 if (FILENAME_CMP (filename + len - search_len, search_name) != 0)
ececd218 372 return false;
4aac40c8
TT
373
374 /* Either the names must completely match, or the character
375 preceding the trailing SEARCH_NAME segment of FILENAME must be a
d84fca2c
JK
376 directory separator.
377
af529f8f
JK
378 The check !IS_ABSOLUTE_PATH ensures SEARCH_NAME "/dir/file.c"
379 cannot match FILENAME "/path//dir/file.c" - as user has requested
380 absolute path. The sama applies for "c:\file.c" possibly
381 incorrectly hypothetically matching "d:\dir\c:\file.c".
382
d84fca2c
JK
383 The HAS_DRIVE_SPEC purpose is to make FILENAME "c:file.c"
384 compatible with SEARCH_NAME "file.c". In such case a compiler had
385 to put the "c:file.c" name into debug info. Such compatibility
386 works only on GDB built for DOS host. */
4aac40c8 387 return (len == search_len
af529f8f
JK
388 || (!IS_ABSOLUTE_PATH (search_name)
389 && IS_DIR_SEPARATOR (filename[len - search_len - 1]))
4aac40c8
TT
390 || (HAS_DRIVE_SPEC (filename)
391 && STRIP_DRIVE_SPEC (filename) == &filename[len - search_len]));
392}
393
cce0e923
DE
394/* Same as compare_filenames_for_search, but for glob-style patterns.
395 Heads up on the order of the arguments. They match the order of
396 compare_filenames_for_search, but it's the opposite of the order of
397 arguments to gdb_filename_fnmatch. */
398
ececd218 399bool
cce0e923
DE
400compare_glob_filenames_for_search (const char *filename,
401 const char *search_name)
402{
403 /* We rely on the property of glob-style patterns with FNM_FILE_NAME that
404 all /s have to be explicitly specified. */
405 int file_path_elements = count_path_elements (filename);
406 int search_path_elements = count_path_elements (search_name);
407
408 if (search_path_elements > file_path_elements)
ececd218 409 return false;
cce0e923
DE
410
411 if (IS_ABSOLUTE_PATH (search_name))
412 {
413 return (search_path_elements == file_path_elements
414 && gdb_filename_fnmatch (search_name, filename,
415 FNM_FILE_NAME | FNM_NOESCAPE) == 0);
416 }
417
418 {
419 const char *file_to_compare
420 = strip_leading_path_elements (filename,
421 file_path_elements - search_path_elements);
422
423 return gdb_filename_fnmatch (search_name, file_to_compare,
424 FNM_FILE_NAME | FNM_NOESCAPE) == 0;
425 }
426}
427
f8eba3c6
TT
428/* Check for a symtab of a specific name by searching some symtabs.
429 This is a helper function for callbacks of iterate_over_symtabs.
c906108c 430
b2d23133
DE
431 If NAME is not absolute, then REAL_PATH is NULL
432 If NAME is absolute, then REAL_PATH is the gdb_realpath form of NAME.
433
14bc53a8
PA
434 The return value, NAME, REAL_PATH and CALLBACK are identical to the
435 `map_symtabs_matching_filename' method of quick_symbol_functions.
f8eba3c6 436
43f3e411
DE
437 FIRST and AFTER_LAST indicate the range of compunit symtabs to search.
438 Each symtab within the specified compunit symtab is also searched.
439 AFTER_LAST is one past the last compunit symtab to search; NULL means to
f8eba3c6
TT
440 search until the end of the list. */
441
14bc53a8 442bool
f8eba3c6 443iterate_over_some_symtabs (const char *name,
f8eba3c6 444 const char *real_path,
43f3e411 445 struct compunit_symtab *first,
14bc53a8
PA
446 struct compunit_symtab *after_last,
447 gdb::function_view<bool (symtab *)> callback)
c906108c 448{
43f3e411 449 struct compunit_symtab *cust;
c011a4f4 450 const char* base_name = lbasename (name);
1f84b619 451
43f3e411 452 for (cust = first; cust != NULL && cust != after_last; cust = cust->next)
f079a2e5 453 {
5accd1a0 454 for (symtab *s : compunit_filetabs (cust))
a94e8645 455 {
43f3e411
DE
456 if (compare_filenames_for_search (s->filename, name))
457 {
14bc53a8
PA
458 if (callback (s))
459 return true;
43f3e411
DE
460 continue;
461 }
a94e8645 462
43f3e411
DE
463 /* Before we invoke realpath, which can get expensive when many
464 files are involved, do a quick comparison of the basenames. */
465 if (! basenames_may_differ
466 && FILENAME_CMP (base_name, lbasename (s->filename)) != 0)
467 continue;
a94e8645 468
43f3e411 469 if (compare_filenames_for_search (symtab_to_fullname (s), name))
a94e8645 470 {
14bc53a8
PA
471 if (callback (s))
472 return true;
a94e8645
DE
473 continue;
474 }
43f3e411
DE
475
476 /* If the user gave us an absolute path, try to find the file in
477 this symtab and use its absolute path. */
478 if (real_path != NULL)
479 {
480 const char *fullname = symtab_to_fullname (s);
481
482 gdb_assert (IS_ABSOLUTE_PATH (real_path));
483 gdb_assert (IS_ABSOLUTE_PATH (name));
7e785608
TV
484 gdb::unique_xmalloc_ptr<char> fullname_real_path
485 = gdb_realpath (fullname);
486 fullname = fullname_real_path.get ();
43f3e411
DE
487 if (FILENAME_CMP (real_path, fullname) == 0)
488 {
14bc53a8
PA
489 if (callback (s))
490 return true;
43f3e411
DE
491 continue;
492 }
493 }
a94e8645 494 }
f8eba3c6 495 }
58d370e0 496
14bc53a8 497 return false;
f8eba3c6
TT
498}
499
500/* Check for a symtab of a specific name; first in symtabs, then in
501 psymtabs. *If* there is no '/' in the name, a match after a '/'
502 in the symtab filename will also work.
503
14bc53a8
PA
504 Calls CALLBACK with each symtab that is found. If CALLBACK returns
505 true, the search stops. */
f8eba3c6
TT
506
507void
508iterate_over_symtabs (const char *name,
14bc53a8 509 gdb::function_view<bool (symtab *)> callback)
f8eba3c6 510{
14bc53a8 511 gdb::unique_xmalloc_ptr<char> real_path;
f8eba3c6
TT
512
513 /* Here we are interested in canonicalizing an absolute path, not
514 absolutizing a relative path. */
515 if (IS_ABSOLUTE_PATH (name))
516 {
14278e1f 517 real_path = gdb_realpath (name);
14bc53a8 518 gdb_assert (IS_ABSOLUTE_PATH (real_path.get ()));
f8eba3c6
TT
519 }
520
2030c079 521 for (objfile *objfile : current_program_space->objfiles ())
14bc53a8
PA
522 {
523 if (iterate_over_some_symtabs (name, real_path.get (),
524 objfile->compunit_symtabs, NULL,
525 callback))
f8eba3c6 526 return;
14bc53a8 527 }
f8eba3c6 528
c906108c
SS
529 /* Same search rules as above apply here, but now we look thru the
530 psymtabs. */
531
2030c079 532 for (objfile *objfile : current_program_space->objfiles ())
14bc53a8
PA
533 {
534 if (objfile->sf
535 && objfile->sf->qf->map_symtabs_matching_filename (objfile,
536 name,
537 real_path.get (),
538 callback))
f8eba3c6 539 return;
14bc53a8 540 }
c906108c 541}
f8eba3c6
TT
542
543/* A wrapper for iterate_over_symtabs that returns the first matching
544 symtab, or NULL. */
545
546struct symtab *
547lookup_symtab (const char *name)
548{
549 struct symtab *result = NULL;
550
14bc53a8
PA
551 iterate_over_symtabs (name, [&] (symtab *symtab)
552 {
553 result = symtab;
554 return true;
555 });
556
f8eba3c6
TT
557 return result;
558}
559
c906108c
SS
560\f
561/* Mangle a GDB method stub type. This actually reassembles the pieces of the
562 full method name, which consist of the class name (from T), the unadorned
563 method name from METHOD_ID, and the signature for the specific overload,
c378eb4e 564 specified by SIGNATURE_ID. Note that this function is g++ specific. */
c906108c
SS
565
566char *
fba45db2 567gdb_mangle_name (struct type *type, int method_id, int signature_id)
c906108c
SS
568{
569 int mangled_name_len;
570 char *mangled_name;
571 struct fn_field *f = TYPE_FN_FIELDLIST1 (type, method_id);
572 struct fn_field *method = &f[signature_id];
0d5cff50 573 const char *field_name = TYPE_FN_FIELDLIST_NAME (type, method_id);
1d06ead6 574 const char *physname = TYPE_FN_FIELD_PHYSNAME (f, signature_id);
a737d952 575 const char *newname = TYPE_NAME (type);
c906108c
SS
576
577 /* Does the form of physname indicate that it is the full mangled name
578 of a constructor (not just the args)? */
579 int is_full_physname_constructor;
580
581 int is_constructor;
015a42b4 582 int is_destructor = is_destructor_name (physname);
c906108c 583 /* Need a new type prefix. */
e6a959d6
PA
584 const char *const_prefix = method->is_const ? "C" : "";
585 const char *volatile_prefix = method->is_volatile ? "V" : "";
c906108c
SS
586 char buf[20];
587 int len = (newname == NULL ? 0 : strlen (newname));
588
43630227
PS
589 /* Nothing to do if physname already contains a fully mangled v3 abi name
590 or an operator name. */
591 if ((physname[0] == '_' && physname[1] == 'Z')
592 || is_operator_name (field_name))
235d1e03
EZ
593 return xstrdup (physname);
594
015a42b4 595 is_full_physname_constructor = is_constructor_name (physname);
c906108c 596
3e43a32a
MS
597 is_constructor = is_full_physname_constructor
598 || (newname && strcmp (field_name, newname) == 0);
c906108c
SS
599
600 if (!is_destructor)
61012eef 601 is_destructor = (startswith (physname, "__dt"));
c906108c
SS
602
603 if (is_destructor || is_full_physname_constructor)
604 {
c5aa993b
JM
605 mangled_name = (char *) xmalloc (strlen (physname) + 1);
606 strcpy (mangled_name, physname);
c906108c
SS
607 return mangled_name;
608 }
609
610 if (len == 0)
611 {
8c042590 612 xsnprintf (buf, sizeof (buf), "__%s%s", const_prefix, volatile_prefix);
c906108c
SS
613 }
614 else if (physname[0] == 't' || physname[0] == 'Q')
615 {
616 /* The physname for template and qualified methods already includes
c5aa993b 617 the class name. */
8c042590 618 xsnprintf (buf, sizeof (buf), "__%s%s", const_prefix, volatile_prefix);
c906108c
SS
619 newname = NULL;
620 len = 0;
621 }
622 else
623 {
8c042590
PM
624 xsnprintf (buf, sizeof (buf), "__%s%s%d", const_prefix,
625 volatile_prefix, len);
c906108c
SS
626 }
627 mangled_name_len = ((is_constructor ? 0 : strlen (field_name))
235d1e03 628 + strlen (buf) + len + strlen (physname) + 1);
c906108c 629
433759f7
MS
630 mangled_name = (char *) xmalloc (mangled_name_len);
631 if (is_constructor)
632 mangled_name[0] = '\0';
633 else
634 strcpy (mangled_name, field_name);
635
c906108c
SS
636 strcat (mangled_name, buf);
637 /* If the class doesn't have a name, i.e. newname NULL, then we just
638 mangle it using 0 for the length of the class. Thus it gets mangled
c378eb4e 639 as something starting with `::' rather than `classname::'. */
c906108c
SS
640 if (newname != NULL)
641 strcat (mangled_name, newname);
642
643 strcat (mangled_name, physname);
644 return (mangled_name);
645}
12af6855 646
b250c185 647/* Set the demangled name of GSYMBOL to NAME. NAME must be already
7c5fdd25 648 correctly allocated. */
eca864fe 649
b250c185
SW
650void
651symbol_set_demangled_name (struct general_symbol_info *gsymbol,
cfc594ee 652 const char *name,
ccde22c0 653 struct obstack *obstack)
b250c185 654{
7c5fdd25 655 if (gsymbol->language == language_ada)
f85f34ed
TT
656 {
657 if (name == NULL)
658 {
659 gsymbol->ada_mangled = 0;
660 gsymbol->language_specific.obstack = obstack;
661 }
662 else
663 {
664 gsymbol->ada_mangled = 1;
615b3f62 665 gsymbol->language_specific.demangled_name = name;
f85f34ed
TT
666 }
667 }
29df156d 668 else
615b3f62 669 gsymbol->language_specific.demangled_name = name;
b250c185
SW
670}
671
672/* Return the demangled name of GSYMBOL. */
eca864fe 673
0d5cff50 674const char *
b250c185
SW
675symbol_get_demangled_name (const struct general_symbol_info *gsymbol)
676{
7c5fdd25 677 if (gsymbol->language == language_ada)
f85f34ed
TT
678 {
679 if (!gsymbol->ada_mangled)
680 return NULL;
681 /* Fall through. */
682 }
683
615b3f62 684 return gsymbol->language_specific.demangled_name;
b250c185
SW
685}
686
12af6855 687\f
89aad1f9 688/* Initialize the language dependent portion of a symbol
c378eb4e 689 depending upon the language for the symbol. */
eca864fe 690
89aad1f9 691void
33e5013e 692symbol_set_language (struct general_symbol_info *gsymbol,
f85f34ed
TT
693 enum language language,
694 struct obstack *obstack)
89aad1f9
EZ
695{
696 gsymbol->language = language;
7c5fdd25
DE
697 if (gsymbol->language == language_cplus
698 || gsymbol->language == language_d
a766d390 699 || gsymbol->language == language_go
f55ee35c
JK
700 || gsymbol->language == language_objc
701 || gsymbol->language == language_fortran)
89aad1f9 702 {
f85f34ed
TT
703 symbol_set_demangled_name (gsymbol, NULL, obstack);
704 }
705 else if (gsymbol->language == language_ada)
706 {
707 gdb_assert (gsymbol->ada_mangled == 0);
708 gsymbol->language_specific.obstack = obstack;
89aad1f9 709 }
89aad1f9
EZ
710 else
711 {
712 memset (&gsymbol->language_specific, 0,
713 sizeof (gsymbol->language_specific));
714 }
715}
716
2de7ced7
DJ
717/* Functions to initialize a symbol's mangled name. */
718
04a679b8
TT
719/* Objects of this type are stored in the demangled name hash table. */
720struct demangled_name_entry
721{
3a494279
CB
722 demangled_name_entry (gdb::string_view mangled_name)
723 : mangled (mangled_name) {}
724
7bb43059 725 gdb::string_view mangled;
403772ef 726 enum language language;
5396ae17 727 gdb::unique_xmalloc_ptr<char> demangled;
04a679b8
TT
728};
729
730/* Hash function for the demangled name hash. */
eca864fe 731
04a679b8
TT
732static hashval_t
733hash_demangled_name_entry (const void *data)
734{
19ba03f4
SM
735 const struct demangled_name_entry *e
736 = (const struct demangled_name_entry *) data;
433759f7 737
1a6ff1a9 738 return fast_hash (e->mangled.data (), e->mangled.length ());
04a679b8
TT
739}
740
741/* Equality function for the demangled name hash. */
eca864fe 742
04a679b8
TT
743static int
744eq_demangled_name_entry (const void *a, const void *b)
745{
19ba03f4
SM
746 const struct demangled_name_entry *da
747 = (const struct demangled_name_entry *) a;
748 const struct demangled_name_entry *db
749 = (const struct demangled_name_entry *) b;
433759f7 750
7bb43059 751 return da->mangled == db->mangled;
04a679b8
TT
752}
753
3a494279
CB
754static void
755free_demangled_name_entry (void *data)
756{
757 struct demangled_name_entry *e
758 = (struct demangled_name_entry *) data;
759
760 e->~demangled_name_entry();
761}
762
2de7ced7
DJ
763/* Create the hash table used for demangled names. Each hash entry is
764 a pair of strings; one for the mangled name and one for the demangled
765 name. The entry is hashed via just the mangled name. */
766
767static void
0f14768a 768create_demangled_names_hash (struct objfile_per_bfd_storage *per_bfd)
2de7ced7
DJ
769{
770 /* Choose 256 as the starting size of the hash table, somewhat arbitrarily.
9af17804 771 The hash table code will round this up to the next prime number.
2de7ced7
DJ
772 Choosing a much larger table size wastes memory, and saves only about
773 1% in symbol reading. */
774
db92718b 775 per_bfd->demangled_names_hash.reset (htab_create_alloc
04a679b8 776 (256, hash_demangled_name_entry, eq_demangled_name_entry,
3a494279 777 free_demangled_name_entry, xcalloc, xfree));
2de7ced7 778}
12af6855 779
2de7ced7 780/* Try to determine the demangled name for a symbol, based on the
12af6855
JB
781 language of that symbol. If the language is set to language_auto,
782 it will attempt to find any demangling algorithm that works and
2de7ced7
DJ
783 then set the language appropriately. The returned name is allocated
784 by the demangler and should be xfree'd. */
12af6855 785
2de7ced7
DJ
786static char *
787symbol_find_demangled_name (struct general_symbol_info *gsymbol,
788 const char *mangled)
12af6855 789{
12af6855 790 char *demangled = NULL;
8b302db8 791 int i;
12af6855
JB
792
793 if (gsymbol->language == language_unknown)
794 gsymbol->language = language_auto;
1bae87b9 795
8b302db8 796 if (gsymbol->language != language_auto)
1bae87b9 797 {
8b302db8
TT
798 const struct language_defn *lang = language_def (gsymbol->language);
799
800 language_sniff_from_mangled_name (lang, mangled, &demangled);
801 return demangled;
6aecb9c2 802 }
8b302db8
TT
803
804 for (i = language_unknown; i < nr_languages; ++i)
a766d390 805 {
8b302db8
TT
806 enum language l = (enum language) i;
807 const struct language_defn *lang = language_def (l);
808
809 if (language_sniff_from_mangled_name (lang, mangled, &demangled))
a766d390 810 {
8b302db8 811 gsymbol->language = l;
a766d390
DE
812 return demangled;
813 }
814 }
815
2de7ced7
DJ
816 return NULL;
817}
818
980cae7a 819/* Set both the mangled and demangled (if any) names for GSYMBOL based
04a679b8
TT
820 on LINKAGE_NAME and LEN. Ordinarily, NAME is copied onto the
821 objfile's obstack; but if COPY_NAME is 0 and if NAME is
822 NUL-terminated, then this function assumes that NAME is already
823 correctly saved (either permanently or with a lifetime tied to the
824 objfile), and it will not be copied.
825
826 The hash table corresponding to OBJFILE is used, and the memory
84a1243b 827 comes from the per-BFD storage_obstack. LINKAGE_NAME is copied,
04a679b8 828 so the pointer can be discarded after calling this function. */
2de7ced7
DJ
829
830void
831symbol_set_names (struct general_symbol_info *gsymbol,
31edb802 832 gdb::string_view linkage_name, bool copy_name,
1d94a5a3 833 struct objfile_per_bfd_storage *per_bfd)
2de7ced7 834{
04a679b8 835 struct demangled_name_entry **slot;
2de7ced7 836
b06ead72
JB
837 if (gsymbol->language == language_ada)
838 {
839 /* In Ada, we do the symbol lookups using the mangled name, so
9c37b5ae 840 we can save some space by not storing the demangled name. */
92174eea 841 if (!copy_name)
31edb802 842 gsymbol->name = linkage_name.data ();
04a679b8
TT
843 else
844 {
224c3ddb 845 char *name = (char *) obstack_alloc (&per_bfd->storage_obstack,
31edb802 846 linkage_name.length () + 1);
0d5cff50 847
31edb802
CB
848 memcpy (name, linkage_name.data (), linkage_name.length ());
849 name[linkage_name.length ()] = '\0';
0d5cff50 850 gsymbol->name = name;
04a679b8 851 }
84a1243b 852 symbol_set_demangled_name (gsymbol, NULL, &per_bfd->storage_obstack);
b06ead72
JB
853
854 return;
855 }
856
84a1243b 857 if (per_bfd->demangled_names_hash == NULL)
0f14768a 858 create_demangled_names_hash (per_bfd);
04a679b8 859
31edb802 860 struct demangled_name_entry entry (linkage_name);
04a679b8 861 slot = ((struct demangled_name_entry **)
db92718b 862 htab_find_slot (per_bfd->demangled_names_hash.get (),
04a679b8 863 &entry, INSERT));
2de7ced7
DJ
864
865 /* If this name is not in the hash table, add it. */
a766d390
DE
866 if (*slot == NULL
867 /* A C version of the symbol may have already snuck into the table.
868 This happens to, e.g., main.init (__go_init_main). Cope. */
5396ae17 869 || (gsymbol->language == language_go && (*slot)->demangled == nullptr))
2de7ced7 870 {
0c921b21
CB
871 /* A 0-terminated copy of the linkage name. Callers must set COPY_NAME
872 to true if the string might not be nullterminated. We have to make
873 this copy because demangling needs a nullterminated string. */
31edb802 874 gdb::string_view linkage_name_copy;
0c921b21
CB
875 if (copy_name)
876 {
31edb802
CB
877 char *alloc_name = (char *) alloca (linkage_name.length () + 1);
878 memcpy (alloc_name, linkage_name.data (), linkage_name.length ());
879 alloc_name[linkage_name.length ()] = '\0';
0c921b21 880
31edb802
CB
881 linkage_name_copy = gdb::string_view (alloc_name,
882 linkage_name.length ());
0c921b21
CB
883 }
884 else
885 linkage_name_copy = linkage_name;
886
5396ae17 887 gdb::unique_xmalloc_ptr<char> demangled_name_ptr
31edb802 888 (symbol_find_demangled_name (gsymbol, linkage_name_copy.data ()));
2de7ced7 889
04a679b8 890 /* Suppose we have demangled_name==NULL, copy_name==0, and
9c37b5ae 891 linkage_name_copy==linkage_name. In this case, we already have the
04a679b8
TT
892 mangled name saved, and we don't have a demangled name. So,
893 you might think we could save a little space by not recording
894 this in the hash table at all.
5396ae17 895
04a679b8
TT
896 It turns out that it is actually important to still save such
897 an entry in the hash table, because storing this name gives
705b5767 898 us better bcache hit rates for partial symbols. */
0c921b21 899 if (!copy_name)
04a679b8 900 {
224c3ddb
SM
901 *slot
902 = ((struct demangled_name_entry *)
903 obstack_alloc (&per_bfd->storage_obstack,
5396ae17 904 sizeof (demangled_name_entry)));
31edb802 905 new (*slot) demangled_name_entry (linkage_name);
04a679b8
TT
906 }
907 else
908 {
909 /* If we must copy the mangled name, put it directly after
5396ae17 910 the struct so we can have a single allocation. */
224c3ddb
SM
911 *slot
912 = ((struct demangled_name_entry *)
913 obstack_alloc (&per_bfd->storage_obstack,
31edb802
CB
914 sizeof (demangled_name_entry)
915 + linkage_name.length () + 1));
5396ae17 916 char *mangled_ptr = reinterpret_cast<char *> (*slot + 1);
31edb802
CB
917 memcpy (mangled_ptr, linkage_name.data (), linkage_name.length ());
918 mangled_ptr [linkage_name.length ()] = '\0';
3a494279 919 new (*slot) demangled_name_entry
31edb802 920 (gdb::string_view (mangled_ptr, linkage_name.length ()));
04a679b8 921 }
5396ae17 922 (*slot)->demangled = std::move (demangled_name_ptr);
e99f9db0 923 (*slot)->language = gsymbol->language;
2de7ced7 924 }
e99f9db0
TV
925 else if (gsymbol->language == language_unknown
926 || gsymbol->language == language_auto)
927 gsymbol->language = (*slot)->language;
2de7ced7 928
7bb43059 929 gsymbol->name = (*slot)->mangled.data ();
5396ae17
CB
930 if ((*slot)->demangled != nullptr)
931 symbol_set_demangled_name (gsymbol, (*slot)->demangled.get (),
84a1243b 932 &per_bfd->storage_obstack);
2de7ced7 933 else
84a1243b 934 symbol_set_demangled_name (gsymbol, NULL, &per_bfd->storage_obstack);
2de7ced7
DJ
935}
936
22abf04a
DC
937/* Return the source code name of a symbol. In languages where
938 demangling is necessary, this is the demangled name. */
939
0d5cff50 940const char *
22abf04a
DC
941symbol_natural_name (const struct general_symbol_info *gsymbol)
942{
9af17804 943 switch (gsymbol->language)
22abf04a 944 {
1f8173e6 945 case language_cplus:
6aecb9c2 946 case language_d:
a766d390 947 case language_go:
1f8173e6 948 case language_objc:
f55ee35c 949 case language_fortran:
b250c185
SW
950 if (symbol_get_demangled_name (gsymbol) != NULL)
951 return symbol_get_demangled_name (gsymbol);
1f8173e6
PH
952 break;
953 case language_ada:
f85f34ed 954 return ada_decode_symbol (gsymbol);
1f8173e6
PH
955 default:
956 break;
22abf04a 957 }
1f8173e6 958 return gsymbol->name;
22abf04a
DC
959}
960
9cc0d196 961/* Return the demangled name for a symbol based on the language for
c378eb4e 962 that symbol. If no demangled name exists, return NULL. */
eca864fe 963
0d5cff50 964const char *
df8a16a1 965symbol_demangled_name (const struct general_symbol_info *gsymbol)
9cc0d196 966{
c6e5ee5e
SDJ
967 const char *dem_name = NULL;
968
9af17804 969 switch (gsymbol->language)
1f8173e6
PH
970 {
971 case language_cplus:
6aecb9c2 972 case language_d:
a766d390 973 case language_go:
1f8173e6 974 case language_objc:
f55ee35c 975 case language_fortran:
c6e5ee5e 976 dem_name = symbol_get_demangled_name (gsymbol);
1f8173e6
PH
977 break;
978 case language_ada:
f85f34ed 979 dem_name = ada_decode_symbol (gsymbol);
1f8173e6
PH
980 break;
981 default:
982 break;
983 }
c6e5ee5e 984 return dem_name;
9cc0d196 985}
fe39c653 986
4725b721
PH
987/* Return the search name of a symbol---generally the demangled or
988 linkage name of the symbol, depending on how it will be searched for.
9af17804 989 If there is no distinct demangled name, then returns the same value
c378eb4e 990 (same pointer) as SYMBOL_LINKAGE_NAME. */
eca864fe 991
0d5cff50 992const char *
fc062ac6
JB
993symbol_search_name (const struct general_symbol_info *gsymbol)
994{
1f8173e6
PH
995 if (gsymbol->language == language_ada)
996 return gsymbol->name;
997 else
998 return symbol_natural_name (gsymbol);
4725b721 999}
b5ec771e
PA
1000
1001/* See symtab.h. */
1002
1003bool
1004symbol_matches_search_name (const struct general_symbol_info *gsymbol,
1005 const lookup_name_info &name)
1006{
1007 symbol_name_matcher_ftype *name_match
618daa93 1008 = get_symbol_name_matcher (language_def (gsymbol->language), name);
b5ec771e
PA
1009 return name_match (symbol_search_name (gsymbol), name, NULL);
1010}
1011
c906108c
SS
1012\f
1013
ececd218 1014/* Return true if the two sections are the same, or if they could
94277a38
DJ
1015 plausibly be copies of each other, one in an original object
1016 file and another in a separated debug file. */
1017
ececd218 1018bool
714835d5
UW
1019matching_obj_sections (struct obj_section *obj_first,
1020 struct obj_section *obj_second)
94277a38 1021{
714835d5
UW
1022 asection *first = obj_first? obj_first->the_bfd_section : NULL;
1023 asection *second = obj_second? obj_second->the_bfd_section : NULL;
94277a38
DJ
1024
1025 /* If they're the same section, then they match. */
1026 if (first == second)
ececd218 1027 return true;
94277a38
DJ
1028
1029 /* If either is NULL, give up. */
1030 if (first == NULL || second == NULL)
ececd218 1031 return false;
94277a38
DJ
1032
1033 /* This doesn't apply to absolute symbols. */
1034 if (first->owner == NULL || second->owner == NULL)
ececd218 1035 return false;
94277a38
DJ
1036
1037 /* If they're in the same object file, they must be different sections. */
1038 if (first->owner == second->owner)
ececd218 1039 return false;
94277a38
DJ
1040
1041 /* Check whether the two sections are potentially corresponding. They must
1042 have the same size, address, and name. We can't compare section indexes,
1043 which would be more reliable, because some sections may have been
1044 stripped. */
fd361982 1045 if (bfd_section_size (first) != bfd_section_size (second))
ececd218 1046 return false;
94277a38 1047
818f79f6 1048 /* In-memory addresses may start at a different offset, relativize them. */
fd361982
AM
1049 if (bfd_section_vma (first) - bfd_get_start_address (first->owner)
1050 != bfd_section_vma (second) - bfd_get_start_address (second->owner))
ececd218 1051 return false;
94277a38 1052
fd361982
AM
1053 if (bfd_section_name (first) == NULL
1054 || bfd_section_name (second) == NULL
1055 || strcmp (bfd_section_name (first), bfd_section_name (second)) != 0)
ececd218 1056 return false;
94277a38
DJ
1057
1058 /* Otherwise check that they are in corresponding objfiles. */
1059
9d7c67bf 1060 struct objfile *obj = NULL;
2030c079 1061 for (objfile *objfile : current_program_space->objfiles ())
aed57c53
TT
1062 if (objfile->obfd == first->owner)
1063 {
1064 obj = objfile;
1065 break;
1066 }
94277a38
DJ
1067 gdb_assert (obj != NULL);
1068
1069 if (obj->separate_debug_objfile != NULL
1070 && obj->separate_debug_objfile->obfd == second->owner)
ececd218 1071 return true;
94277a38
DJ
1072 if (obj->separate_debug_objfile_backlink != NULL
1073 && obj->separate_debug_objfile_backlink->obfd == second->owner)
ececd218 1074 return true;
94277a38 1075
ececd218 1076 return false;
94277a38 1077}
c5aa993b 1078
2097ae25
DE
1079/* See symtab.h. */
1080
1081void
1082expand_symtab_containing_pc (CORE_ADDR pc, struct obj_section *section)
c906108c 1083{
77e371c0 1084 struct bound_minimal_symbol msymbol;
8a48e967
DJ
1085
1086 /* If we know that this is not a text address, return failure. This is
1087 necessary because we loop based on texthigh and textlow, which do
1088 not include the data ranges. */
77e371c0 1089 msymbol = lookup_minimal_symbol_by_pc_section (pc, section);
1ed9f74e 1090 if (msymbol.minsym && msymbol.minsym->data_p ())
2097ae25 1091 return;
c906108c 1092
2030c079 1093 for (objfile *objfile : current_program_space->objfiles ())
aed57c53
TT
1094 {
1095 struct compunit_symtab *cust = NULL;
433759f7 1096
aed57c53
TT
1097 if (objfile->sf)
1098 cust = objfile->sf->qf->find_pc_sect_compunit_symtab (objfile, msymbol,
1099 pc, section, 0);
1100 if (cust)
1101 return;
1102 }
c906108c 1103}
c906108c 1104\f
f57d2163
DE
1105/* Hash function for the symbol cache. */
1106
1107static unsigned int
1108hash_symbol_entry (const struct objfile *objfile_context,
1109 const char *name, domain_enum domain)
1110{
1111 unsigned int hash = (uintptr_t) objfile_context;
1112
1113 if (name != NULL)
1114 hash += htab_hash_string (name);
1115
2c26b84f
DE
1116 /* Because of symbol_matches_domain we need VAR_DOMAIN and STRUCT_DOMAIN
1117 to map to the same slot. */
1118 if (domain == STRUCT_DOMAIN)
1119 hash += VAR_DOMAIN * 7;
1120 else
1121 hash += domain * 7;
f57d2163
DE
1122
1123 return hash;
1124}
1125
1126/* Equality function for the symbol cache. */
1127
1128static int
1129eq_symbol_entry (const struct symbol_cache_slot *slot,
1130 const struct objfile *objfile_context,
1131 const char *name, domain_enum domain)
1132{
1133 const char *slot_name;
1134 domain_enum slot_domain;
1135
1136 if (slot->state == SYMBOL_SLOT_UNUSED)
1137 return 0;
1138
1139 if (slot->objfile_context != objfile_context)
1140 return 0;
1141
1142 if (slot->state == SYMBOL_SLOT_NOT_FOUND)
1143 {
1144 slot_name = slot->value.not_found.name;
1145 slot_domain = slot->value.not_found.domain;
1146 }
1147 else
1148 {
d12307c1
PMR
1149 slot_name = SYMBOL_SEARCH_NAME (slot->value.found.symbol);
1150 slot_domain = SYMBOL_DOMAIN (slot->value.found.symbol);
f57d2163
DE
1151 }
1152
1153 /* NULL names match. */
1154 if (slot_name == NULL && name == NULL)
1155 {
1156 /* But there's no point in calling symbol_matches_domain in the
1157 SYMBOL_SLOT_FOUND case. */
1158 if (slot_domain != domain)
1159 return 0;
1160 }
1161 else if (slot_name != NULL && name != NULL)
1162 {
b5ec771e
PA
1163 /* It's important that we use the same comparison that was done
1164 the first time through. If the slot records a found symbol,
1165 then this means using the symbol name comparison function of
1166 the symbol's language with SYMBOL_SEARCH_NAME. See
1167 dictionary.c. It also means using symbol_matches_domain for
1168 found symbols. See block.c.
f57d2163
DE
1169
1170 If the slot records a not-found symbol, then require a precise match.
1171 We could still be lax with whitespace like strcmp_iw though. */
1172
1173 if (slot->state == SYMBOL_SLOT_NOT_FOUND)
1174 {
1175 if (strcmp (slot_name, name) != 0)
1176 return 0;
1177 if (slot_domain != domain)
1178 return 0;
1179 }
1180 else
1181 {
d12307c1 1182 struct symbol *sym = slot->value.found.symbol;
b5ec771e 1183 lookup_name_info lookup_name (name, symbol_name_match_type::FULL);
f57d2163 1184
b5ec771e 1185 if (!SYMBOL_MATCHES_SEARCH_NAME (sym, lookup_name))
f57d2163 1186 return 0;
b5ec771e 1187
f57d2163
DE
1188 if (!symbol_matches_domain (SYMBOL_LANGUAGE (sym),
1189 slot_domain, domain))
1190 return 0;
1191 }
1192 }
1193 else
1194 {
1195 /* Only one name is NULL. */
1196 return 0;
1197 }
1198
1199 return 1;
1200}
1201
1202/* Given a cache of size SIZE, return the size of the struct (with variable
1203 length array) in bytes. */
1204
1205static size_t
1206symbol_cache_byte_size (unsigned int size)
1207{
1208 return (sizeof (struct block_symbol_cache)
1209 + ((size - 1) * sizeof (struct symbol_cache_slot)));
1210}
1211
1212/* Resize CACHE. */
1213
1214static void
1215resize_symbol_cache (struct symbol_cache *cache, unsigned int new_size)
1216{
1217 /* If there's no change in size, don't do anything.
1218 All caches have the same size, so we can just compare with the size
1219 of the global symbols cache. */
1220 if ((cache->global_symbols != NULL
1221 && cache->global_symbols->size == new_size)
1222 || (cache->global_symbols == NULL
1223 && new_size == 0))
1224 return;
1225
1226 xfree (cache->global_symbols);
1227 xfree (cache->static_symbols);
1228
1229 if (new_size == 0)
1230 {
1231 cache->global_symbols = NULL;
1232 cache->static_symbols = NULL;
1233 }
1234 else
1235 {
1236 size_t total_size = symbol_cache_byte_size (new_size);
1237
224c3ddb
SM
1238 cache->global_symbols
1239 = (struct block_symbol_cache *) xcalloc (1, total_size);
1240 cache->static_symbols
1241 = (struct block_symbol_cache *) xcalloc (1, total_size);
f57d2163
DE
1242 cache->global_symbols->size = new_size;
1243 cache->static_symbols->size = new_size;
1244 }
1245}
1246
f57d2163
DE
1247/* Return the symbol cache of PSPACE.
1248 Create one if it doesn't exist yet. */
1249
1250static struct symbol_cache *
1251get_symbol_cache (struct program_space *pspace)
1252{
3017b94d 1253 struct symbol_cache *cache = symbol_cache_key.get (pspace);
f57d2163
DE
1254
1255 if (cache == NULL)
1256 {
3017b94d
TT
1257 cache = symbol_cache_key.emplace (pspace);
1258 resize_symbol_cache (cache, symbol_cache_size);
f57d2163
DE
1259 }
1260
1261 return cache;
1262}
1263
f57d2163
DE
1264/* Set the size of the symbol cache in all program spaces. */
1265
1266static void
1267set_symbol_cache_size (unsigned int new_size)
1268{
1269 struct program_space *pspace;
1270
1271 ALL_PSPACES (pspace)
1272 {
3017b94d 1273 struct symbol_cache *cache = symbol_cache_key.get (pspace);
f57d2163
DE
1274
1275 /* The pspace could have been created but not have a cache yet. */
1276 if (cache != NULL)
1277 resize_symbol_cache (cache, new_size);
1278 }
1279}
1280
1281/* Called when symbol-cache-size is set. */
1282
1283static void
eb4c3f4a 1284set_symbol_cache_size_handler (const char *args, int from_tty,
f57d2163
DE
1285 struct cmd_list_element *c)
1286{
1287 if (new_symbol_cache_size > MAX_SYMBOL_CACHE_SIZE)
1288 {
1289 /* Restore the previous value.
1290 This is the value the "show" command prints. */
1291 new_symbol_cache_size = symbol_cache_size;
1292
1293 error (_("Symbol cache size is too large, max is %u."),
1294 MAX_SYMBOL_CACHE_SIZE);
1295 }
1296 symbol_cache_size = new_symbol_cache_size;
1297
1298 set_symbol_cache_size (symbol_cache_size);
1299}
1300
1301/* Lookup symbol NAME,DOMAIN in BLOCK in the symbol cache of PSPACE.
1302 OBJFILE_CONTEXT is the current objfile, which may be NULL.
1303 The result is the symbol if found, SYMBOL_LOOKUP_FAILED if a previous lookup
1304 failed (and thus this one will too), or NULL if the symbol is not present
1305 in the cache.
d0509ba4
CB
1306 *BSC_PTR and *SLOT_PTR are set to the cache and slot of the symbol, which
1307 can be used to save the result of a full lookup attempt. */
f57d2163 1308
d12307c1 1309static struct block_symbol
f57d2163 1310symbol_cache_lookup (struct symbol_cache *cache,
ddbcedf5 1311 struct objfile *objfile_context, enum block_enum block,
f57d2163
DE
1312 const char *name, domain_enum domain,
1313 struct block_symbol_cache **bsc_ptr,
1314 struct symbol_cache_slot **slot_ptr)
1315{
1316 struct block_symbol_cache *bsc;
1317 unsigned int hash;
1318 struct symbol_cache_slot *slot;
1319
1320 if (block == GLOBAL_BLOCK)
1321 bsc = cache->global_symbols;
1322 else
1323 bsc = cache->static_symbols;
1324 if (bsc == NULL)
1325 {
1326 *bsc_ptr = NULL;
1327 *slot_ptr = NULL;
6640a367 1328 return {};
f57d2163
DE
1329 }
1330
1331 hash = hash_symbol_entry (objfile_context, name, domain);
1332 slot = bsc->symbols + hash % bsc->size;
f57d2163 1333
d0509ba4
CB
1334 *bsc_ptr = bsc;
1335 *slot_ptr = slot;
1336
f57d2163
DE
1337 if (eq_symbol_entry (slot, objfile_context, name, domain))
1338 {
1339 if (symbol_lookup_debug)
1340 fprintf_unfiltered (gdb_stdlog,
1341 "%s block symbol cache hit%s for %s, %s\n",
1342 block == GLOBAL_BLOCK ? "Global" : "Static",
1343 slot->state == SYMBOL_SLOT_NOT_FOUND
1344 ? " (not found)" : "",
1345 name, domain_name (domain));
1346 ++bsc->hits;
1347 if (slot->state == SYMBOL_SLOT_NOT_FOUND)
1348 return SYMBOL_LOOKUP_FAILED;
1349 return slot->value.found;
1350 }
1351
2c26b84f
DE
1352 /* Symbol is not present in the cache. */
1353
f57d2163
DE
1354 if (symbol_lookup_debug)
1355 {
1356 fprintf_unfiltered (gdb_stdlog,
1357 "%s block symbol cache miss for %s, %s\n",
1358 block == GLOBAL_BLOCK ? "Global" : "Static",
1359 name, domain_name (domain));
1360 }
1361 ++bsc->misses;
6640a367 1362 return {};
f57d2163
DE
1363}
1364
1365/* Clear out SLOT. */
1366
1367static void
1368symbol_cache_clear_slot (struct symbol_cache_slot *slot)
1369{
1370 if (slot->state == SYMBOL_SLOT_NOT_FOUND)
1371 xfree (slot->value.not_found.name);
1372 slot->state = SYMBOL_SLOT_UNUSED;
1373}
1374
1375/* Mark SYMBOL as found in SLOT.
1376 OBJFILE_CONTEXT is the current objfile when the lookup was done, or NULL
1377 if it's not needed to distinguish lookups (STATIC_BLOCK). It is *not*
1378 necessarily the objfile the symbol was found in. */
1379
1380static void
1381symbol_cache_mark_found (struct block_symbol_cache *bsc,
1382 struct symbol_cache_slot *slot,
1383 struct objfile *objfile_context,
d12307c1
PMR
1384 struct symbol *symbol,
1385 const struct block *block)
f57d2163
DE
1386{
1387 if (bsc == NULL)
1388 return;
1389 if (slot->state != SYMBOL_SLOT_UNUSED)
1390 {
1391 ++bsc->collisions;
1392 symbol_cache_clear_slot (slot);
1393 }
1394 slot->state = SYMBOL_SLOT_FOUND;
1395 slot->objfile_context = objfile_context;
d12307c1
PMR
1396 slot->value.found.symbol = symbol;
1397 slot->value.found.block = block;
f57d2163
DE
1398}
1399
1400/* Mark symbol NAME, DOMAIN as not found in SLOT.
1401 OBJFILE_CONTEXT is the current objfile when the lookup was done, or NULL
1402 if it's not needed to distinguish lookups (STATIC_BLOCK). */
1403
1404static void
1405symbol_cache_mark_not_found (struct block_symbol_cache *bsc,
1406 struct symbol_cache_slot *slot,
1407 struct objfile *objfile_context,
1408 const char *name, domain_enum domain)
1409{
1410 if (bsc == NULL)
1411 return;
1412 if (slot->state != SYMBOL_SLOT_UNUSED)
1413 {
1414 ++bsc->collisions;
1415 symbol_cache_clear_slot (slot);
1416 }
1417 slot->state = SYMBOL_SLOT_NOT_FOUND;
1418 slot->objfile_context = objfile_context;
1419 slot->value.not_found.name = xstrdup (name);
1420 slot->value.not_found.domain = domain;
1421}
1422
1423/* Flush the symbol cache of PSPACE. */
1424
1425static void
1426symbol_cache_flush (struct program_space *pspace)
1427{
3017b94d 1428 struct symbol_cache *cache = symbol_cache_key.get (pspace);
f57d2163 1429 int pass;
f57d2163
DE
1430
1431 if (cache == NULL)
1432 return;
1433 if (cache->global_symbols == NULL)
1434 {
1435 gdb_assert (symbol_cache_size == 0);
1436 gdb_assert (cache->static_symbols == NULL);
1437 return;
1438 }
1439
1440 /* If the cache is untouched since the last flush, early exit.
1441 This is important for performance during the startup of a program linked
1442 with 100s (or 1000s) of shared libraries. */
1443 if (cache->global_symbols->misses == 0
1444 && cache->static_symbols->misses == 0)
1445 return;
1446
1447 gdb_assert (cache->global_symbols->size == symbol_cache_size);
1448 gdb_assert (cache->static_symbols->size == symbol_cache_size);
1449
1450 for (pass = 0; pass < 2; ++pass)
1451 {
1452 struct block_symbol_cache *bsc
1453 = pass == 0 ? cache->global_symbols : cache->static_symbols;
1454 unsigned int i;
1455
1456 for (i = 0; i < bsc->size; ++i)
1457 symbol_cache_clear_slot (&bsc->symbols[i]);
1458 }
1459
1460 cache->global_symbols->hits = 0;
1461 cache->global_symbols->misses = 0;
1462 cache->global_symbols->collisions = 0;
1463 cache->static_symbols->hits = 0;
1464 cache->static_symbols->misses = 0;
1465 cache->static_symbols->collisions = 0;
1466}
1467
1468/* Dump CACHE. */
1469
1470static void
1471symbol_cache_dump (const struct symbol_cache *cache)
1472{
1473 int pass;
1474
1475 if (cache->global_symbols == NULL)
1476 {
1477 printf_filtered (" <disabled>\n");
1478 return;
1479 }
1480
1481 for (pass = 0; pass < 2; ++pass)
1482 {
1483 const struct block_symbol_cache *bsc
1484 = pass == 0 ? cache->global_symbols : cache->static_symbols;
1485 unsigned int i;
1486
1487 if (pass == 0)
1488 printf_filtered ("Global symbols:\n");
1489 else
1490 printf_filtered ("Static symbols:\n");
1491
1492 for (i = 0; i < bsc->size; ++i)
1493 {
1494 const struct symbol_cache_slot *slot = &bsc->symbols[i];
1495
1496 QUIT;
1497
1498 switch (slot->state)
1499 {
1500 case SYMBOL_SLOT_UNUSED:
1501 break;
1502 case SYMBOL_SLOT_NOT_FOUND:
2c26b84f 1503 printf_filtered (" [%4u] = %s, %s %s (not found)\n", i,
f57d2163 1504 host_address_to_string (slot->objfile_context),
2c26b84f
DE
1505 slot->value.not_found.name,
1506 domain_name (slot->value.not_found.domain));
f57d2163
DE
1507 break;
1508 case SYMBOL_SLOT_FOUND:
d12307c1
PMR
1509 {
1510 struct symbol *found = slot->value.found.symbol;
1511 const struct objfile *context = slot->objfile_context;
1512
1513 printf_filtered (" [%4u] = %s, %s %s\n", i,
1514 host_address_to_string (context),
1515 SYMBOL_PRINT_NAME (found),
1516 domain_name (SYMBOL_DOMAIN (found)));
1517 break;
1518 }
f57d2163
DE
1519 }
1520 }
1521 }
1522}
1523
1524/* The "mt print symbol-cache" command. */
1525
1526static void
510e5e56 1527maintenance_print_symbol_cache (const char *args, int from_tty)
f57d2163
DE
1528{
1529 struct program_space *pspace;
1530
1531 ALL_PSPACES (pspace)
1532 {
1533 struct symbol_cache *cache;
1534
1535 printf_filtered (_("Symbol cache for pspace %d\n%s:\n"),
1536 pspace->num,
1537 pspace->symfile_object_file != NULL
1538 ? objfile_name (pspace->symfile_object_file)
1539 : "(no object file)");
1540
1541 /* If the cache hasn't been created yet, avoid creating one. */
3017b94d 1542 cache = symbol_cache_key.get (pspace);
f57d2163
DE
1543 if (cache == NULL)
1544 printf_filtered (" <empty>\n");
1545 else
1546 symbol_cache_dump (cache);
1547 }
1548}
1549
1550/* The "mt flush-symbol-cache" command. */
1551
1552static void
510e5e56 1553maintenance_flush_symbol_cache (const char *args, int from_tty)
f57d2163
DE
1554{
1555 struct program_space *pspace;
1556
1557 ALL_PSPACES (pspace)
1558 {
1559 symbol_cache_flush (pspace);
1560 }
1561}
1562
1563/* Print usage statistics of CACHE. */
1564
1565static void
1566symbol_cache_stats (struct symbol_cache *cache)
1567{
1568 int pass;
1569
1570 if (cache->global_symbols == NULL)
1571 {
1572 printf_filtered (" <disabled>\n");
1573 return;
1574 }
1575
1576 for (pass = 0; pass < 2; ++pass)
1577 {
1578 const struct block_symbol_cache *bsc
1579 = pass == 0 ? cache->global_symbols : cache->static_symbols;
1580
1581 QUIT;
1582
1583 if (pass == 0)
1584 printf_filtered ("Global block cache stats:\n");
1585 else
1586 printf_filtered ("Static block cache stats:\n");
1587
1588 printf_filtered (" size: %u\n", bsc->size);
1589 printf_filtered (" hits: %u\n", bsc->hits);
1590 printf_filtered (" misses: %u\n", bsc->misses);
1591 printf_filtered (" collisions: %u\n", bsc->collisions);
1592 }
1593}
1594
1595/* The "mt print symbol-cache-statistics" command. */
1596
1597static void
510e5e56 1598maintenance_print_symbol_cache_statistics (const char *args, int from_tty)
f57d2163
DE
1599{
1600 struct program_space *pspace;
1601
1602 ALL_PSPACES (pspace)
1603 {
1604 struct symbol_cache *cache;
1605
1606 printf_filtered (_("Symbol cache statistics for pspace %d\n%s:\n"),
1607 pspace->num,
1608 pspace->symfile_object_file != NULL
1609 ? objfile_name (pspace->symfile_object_file)
1610 : "(no object file)");
1611
1612 /* If the cache hasn't been created yet, avoid creating one. */
3017b94d 1613 cache = symbol_cache_key.get (pspace);
f57d2163
DE
1614 if (cache == NULL)
1615 printf_filtered (" empty, no stats available\n");
1616 else
1617 symbol_cache_stats (cache);
1618 }
1619}
1620
1621/* This module's 'new_objfile' observer. */
1622
1623static void
1624symtab_new_objfile_observer (struct objfile *objfile)
1625{
1626 /* Ideally we'd use OBJFILE->pspace, but OBJFILE may be NULL. */
1627 symbol_cache_flush (current_program_space);
1628}
1629
1630/* This module's 'free_objfile' observer. */
1631
1632static void
1633symtab_free_objfile_observer (struct objfile *objfile)
1634{
1635 symbol_cache_flush (objfile->pspace);
1636}
1637\f
c906108c
SS
1638/* Debug symbols usually don't have section information. We need to dig that
1639 out of the minimal symbols and stash that in the debug symbol. */
1640
ccefe4c4 1641void
907fc202
UW
1642fixup_section (struct general_symbol_info *ginfo,
1643 CORE_ADDR addr, struct objfile *objfile)
c906108c
SS
1644{
1645 struct minimal_symbol *msym;
c906108c 1646
bccdca4a
UW
1647 /* First, check whether a minimal symbol with the same name exists
1648 and points to the same address. The address check is required
1649 e.g. on PowerPC64, where the minimal symbol for a function will
1650 point to the function descriptor, while the debug symbol will
1651 point to the actual function code. */
907fc202
UW
1652 msym = lookup_minimal_symbol_by_pc_name (addr, ginfo->name, objfile);
1653 if (msym)
efd66ac6 1654 ginfo->section = MSYMBOL_SECTION (msym);
907fc202 1655 else
19e2d14b
KB
1656 {
1657 /* Static, function-local variables do appear in the linker
1658 (minimal) symbols, but are frequently given names that won't
1659 be found via lookup_minimal_symbol(). E.g., it has been
1660 observed in frv-uclinux (ELF) executables that a static,
1661 function-local variable named "foo" might appear in the
1662 linker symbols as "foo.6" or "foo.3". Thus, there is no
1663 point in attempting to extend the lookup-by-name mechanism to
1664 handle this case due to the fact that there can be multiple
1665 names.
9af17804 1666
19e2d14b
KB
1667 So, instead, search the section table when lookup by name has
1668 failed. The ``addr'' and ``endaddr'' fields may have already
1669 been relocated. If so, the relocation offset (i.e. the
1670 ANOFFSET value) needs to be subtracted from these values when
1671 performing the comparison. We unconditionally subtract it,
1672 because, when no relocation has been performed, the ANOFFSET
1673 value will simply be zero.
9af17804 1674
19e2d14b
KB
1675 The address of the symbol whose section we're fixing up HAS
1676 NOT BEEN adjusted (relocated) yet. It can't have been since
1677 the section isn't yet known and knowing the section is
1678 necessary in order to add the correct relocation value. In
1679 other words, we wouldn't even be in this function (attempting
1680 to compute the section) if it were already known.
1681
1682 Note that it is possible to search the minimal symbols
1683 (subtracting the relocation value if necessary) to find the
1684 matching minimal symbol, but this is overkill and much less
1685 efficient. It is not necessary to find the matching minimal
9af17804
DE
1686 symbol, only its section.
1687
19e2d14b
KB
1688 Note that this technique (of doing a section table search)
1689 can fail when unrelocated section addresses overlap. For
1690 this reason, we still attempt a lookup by name prior to doing
1691 a search of the section table. */
9af17804 1692
19e2d14b 1693 struct obj_section *s;
e27d198c 1694 int fallback = -1;
433759f7 1695
19e2d14b
KB
1696 ALL_OBJFILE_OSECTIONS (objfile, s)
1697 {
65cf3563 1698 int idx = s - objfile->sections;
19e2d14b
KB
1699 CORE_ADDR offset = ANOFFSET (objfile->section_offsets, idx);
1700
e27d198c
TT
1701 if (fallback == -1)
1702 fallback = idx;
1703
f1f6aadf
PA
1704 if (obj_section_addr (s) - offset <= addr
1705 && addr < obj_section_endaddr (s) - offset)
19e2d14b 1706 {
19e2d14b
KB
1707 ginfo->section = idx;
1708 return;
1709 }
1710 }
e27d198c
TT
1711
1712 /* If we didn't find the section, assume it is in the first
1713 section. If there is no allocated section, then it hardly
1714 matters what we pick, so just pick zero. */
1715 if (fallback == -1)
1716 ginfo->section = 0;
1717 else
1718 ginfo->section = fallback;
19e2d14b 1719 }
c906108c
SS
1720}
1721
1722struct symbol *
fba45db2 1723fixup_symbol_section (struct symbol *sym, struct objfile *objfile)
c906108c 1724{
907fc202
UW
1725 CORE_ADDR addr;
1726
c906108c
SS
1727 if (!sym)
1728 return NULL;
1729
1994afbf
DE
1730 if (!SYMBOL_OBJFILE_OWNED (sym))
1731 return sym;
1732
907fc202
UW
1733 /* We either have an OBJFILE, or we can get at it from the sym's
1734 symtab. Anything else is a bug. */
08be3fe3 1735 gdb_assert (objfile || symbol_symtab (sym));
907fc202
UW
1736
1737 if (objfile == NULL)
08be3fe3 1738 objfile = symbol_objfile (sym);
907fc202 1739
e27d198c
TT
1740 if (SYMBOL_OBJ_SECTION (objfile, sym))
1741 return sym;
1742
907fc202
UW
1743 /* We should have an objfile by now. */
1744 gdb_assert (objfile);
1745
1746 switch (SYMBOL_CLASS (sym))
1747 {
1748 case LOC_STATIC:
1749 case LOC_LABEL:
907fc202
UW
1750 addr = SYMBOL_VALUE_ADDRESS (sym);
1751 break;
1752 case LOC_BLOCK:
2b1ffcfd 1753 addr = BLOCK_ENTRY_PC (SYMBOL_BLOCK_VALUE (sym));
907fc202
UW
1754 break;
1755
1756 default:
1757 /* Nothing else will be listed in the minsyms -- no use looking
1758 it up. */
1759 return sym;
1760 }
1761
468c0cbb 1762 fixup_section (sym, addr, objfile);
c906108c
SS
1763
1764 return sym;
1765}
1766
b5ec771e
PA
1767/* See symtab.h. */
1768
1769demangle_for_lookup_info::demangle_for_lookup_info
1770 (const lookup_name_info &lookup_name, language lang)
1771{
1772 demangle_result_storage storage;
1773
c62446b1
PA
1774 if (lookup_name.ignore_parameters () && lang == language_cplus)
1775 {
1776 gdb::unique_xmalloc_ptr<char> without_params
1777 = cp_remove_params_if_any (lookup_name.name ().c_str (),
1778 lookup_name.completion_mode ());
1779
1780 if (without_params != NULL)
1781 {
de63c46b
PA
1782 if (lookup_name.match_type () != symbol_name_match_type::SEARCH_NAME)
1783 m_demangled_name = demangle_for_lookup (without_params.get (),
1784 lang, storage);
c62446b1
PA
1785 return;
1786 }
1787 }
1788
de63c46b
PA
1789 if (lookup_name.match_type () == symbol_name_match_type::SEARCH_NAME)
1790 m_demangled_name = lookup_name.name ();
1791 else
1792 m_demangled_name = demangle_for_lookup (lookup_name.name ().c_str (),
1793 lang, storage);
b5ec771e
PA
1794}
1795
1796/* See symtab.h. */
1797
1798const lookup_name_info &
1799lookup_name_info::match_any ()
1800{
1801 /* Lookup any symbol that "" would complete. I.e., this matches all
1802 symbol names. */
1803 static const lookup_name_info lookup_name ({}, symbol_name_match_type::FULL,
1804 true);
1805
1806 return lookup_name;
1807}
1808
f8eba3c6 1809/* Compute the demangled form of NAME as used by the various symbol
2f408ecb
PA
1810 lookup functions. The result can either be the input NAME
1811 directly, or a pointer to a buffer owned by the STORAGE object.
f8eba3c6 1812
2f408ecb 1813 For Ada, this function just returns NAME, unmodified.
f8eba3c6
TT
1814 Normally, Ada symbol lookups are performed using the encoded name
1815 rather than the demangled name, and so it might seem to make sense
1816 for this function to return an encoded version of NAME.
1817 Unfortunately, we cannot do this, because this function is used in
1818 circumstances where it is not appropriate to try to encode NAME.
1819 For instance, when displaying the frame info, we demangle the name
1820 of each parameter, and then perform a symbol lookup inside our
1821 function using that demangled name. In Ada, certain functions
1822 have internally-generated parameters whose name contain uppercase
1823 characters. Encoding those name would result in those uppercase
1824 characters to become lowercase, and thus cause the symbol lookup
1825 to fail. */
c906108c 1826
2f408ecb 1827const char *
f8eba3c6 1828demangle_for_lookup (const char *name, enum language lang,
2f408ecb 1829 demangle_result_storage &storage)
c906108c 1830{
9c37b5ae 1831 /* If we are using C++, D, or Go, demangle the name before doing a
c378eb4e 1832 lookup, so we can always binary search. */
53c5240f 1833 if (lang == language_cplus)
729051e6 1834 {
2f408ecb
PA
1835 char *demangled_name = gdb_demangle (name, DMGL_ANSI | DMGL_PARAMS);
1836 if (demangled_name != NULL)
1837 return storage.set_malloc_ptr (demangled_name);
1838
1839 /* If we were given a non-mangled name, canonicalize it
1840 according to the language (so far only for C++). */
1841 std::string canon = cp_canonicalize_string (name);
1842 if (!canon.empty ())
1843 return storage.swap_string (canon);
729051e6 1844 }
6aecb9c2
JB
1845 else if (lang == language_d)
1846 {
2f408ecb
PA
1847 char *demangled_name = d_demangle (name, 0);
1848 if (demangled_name != NULL)
1849 return storage.set_malloc_ptr (demangled_name);
6aecb9c2 1850 }
a766d390
DE
1851 else if (lang == language_go)
1852 {
2f408ecb
PA
1853 char *demangled_name = go_demangle (name, 0);
1854 if (demangled_name != NULL)
1855 return storage.set_malloc_ptr (demangled_name);
a766d390 1856 }
729051e6 1857
2f408ecb 1858 return name;
f8eba3c6
TT
1859}
1860
5ffa0793
PA
1861/* See symtab.h. */
1862
1863unsigned int
1864search_name_hash (enum language language, const char *search_name)
1865{
1866 return language_def (language)->la_search_name_hash (search_name);
1867}
1868
cf901d3b 1869/* See symtab.h.
f8eba3c6 1870
cf901d3b 1871 This function (or rather its subordinates) have a bunch of loops and
7e082072
DE
1872 it would seem to be attractive to put in some QUIT's (though I'm not really
1873 sure whether it can run long enough to be really important). But there
f8eba3c6 1874 are a few calls for which it would appear to be bad news to quit
7e082072 1875 out of here: e.g., find_proc_desc in alpha-mdebug-tdep.c. (Note
f8eba3c6
TT
1876 that there is C++ code below which can error(), but that probably
1877 doesn't affect these calls since they are looking for a known
1878 variable and thus can probably assume it will never hit the C++
1879 code). */
1880
d12307c1 1881struct block_symbol
f8eba3c6
TT
1882lookup_symbol_in_language (const char *name, const struct block *block,
1883 const domain_enum domain, enum language lang,
1993b719 1884 struct field_of_this_result *is_a_field_of_this)
f8eba3c6 1885{
2f408ecb
PA
1886 demangle_result_storage storage;
1887 const char *modified_name = demangle_for_lookup (name, lang, storage);
f8eba3c6 1888
de63c46b
PA
1889 return lookup_symbol_aux (modified_name,
1890 symbol_name_match_type::FULL,
1891 block, domain, lang,
2f408ecb 1892 is_a_field_of_this);
fba7f19c
EZ
1893}
1894
cf901d3b 1895/* See symtab.h. */
53c5240f 1896
d12307c1 1897struct block_symbol
53c5240f 1898lookup_symbol (const char *name, const struct block *block,
1993b719
TT
1899 domain_enum domain,
1900 struct field_of_this_result *is_a_field_of_this)
53c5240f
PA
1901{
1902 return lookup_symbol_in_language (name, block, domain,
1903 current_language->la_language,
2570f2b7 1904 is_a_field_of_this);
53c5240f
PA
1905}
1906
cf901d3b 1907/* See symtab.h. */
66a17cb6 1908
de63c46b
PA
1909struct block_symbol
1910lookup_symbol_search_name (const char *search_name, const struct block *block,
1911 domain_enum domain)
1912{
1913 return lookup_symbol_aux (search_name, symbol_name_match_type::SEARCH_NAME,
1914 block, domain, language_asm, NULL);
1915}
1916
1917/* See symtab.h. */
1918
d12307c1 1919struct block_symbol
66a17cb6
TT
1920lookup_language_this (const struct language_defn *lang,
1921 const struct block *block)
1922{
1923 if (lang->la_name_of_this == NULL || block == NULL)
6640a367 1924 return {};
66a17cb6 1925
cc485e62
DE
1926 if (symbol_lookup_debug > 1)
1927 {
1928 struct objfile *objfile = lookup_objfile_from_block (block);
1929
1930 fprintf_unfiltered (gdb_stdlog,
1931 "lookup_language_this (%s, %s (objfile %s))",
1932 lang->la_name, host_address_to_string (block),
1933 objfile_debug_name (objfile));
1934 }
1935
03de6823 1936 while (block)
66a17cb6
TT
1937 {
1938 struct symbol *sym;
1939
de63c46b
PA
1940 sym = block_lookup_symbol (block, lang->la_name_of_this,
1941 symbol_name_match_type::SEARCH_NAME,
1942 VAR_DOMAIN);
66a17cb6 1943 if (sym != NULL)
f149aabd 1944 {
cc485e62
DE
1945 if (symbol_lookup_debug > 1)
1946 {
1947 fprintf_unfiltered (gdb_stdlog, " = %s (%s, block %s)\n",
1948 SYMBOL_PRINT_NAME (sym),
1949 host_address_to_string (sym),
1950 host_address_to_string (block));
1951 }
d12307c1 1952 return (struct block_symbol) {sym, block};
f149aabd 1953 }
66a17cb6 1954 if (BLOCK_FUNCTION (block))
03de6823 1955 break;
66a17cb6
TT
1956 block = BLOCK_SUPERBLOCK (block);
1957 }
03de6823 1958
cc485e62
DE
1959 if (symbol_lookup_debug > 1)
1960 fprintf_unfiltered (gdb_stdlog, " = NULL\n");
6640a367 1961 return {};
66a17cb6
TT
1962}
1963
2dc3df72
TT
1964/* Given TYPE, a structure/union,
1965 return 1 if the component named NAME from the ultimate target
1966 structure/union is defined, otherwise, return 0. */
1967
1968static int
1993b719
TT
1969check_field (struct type *type, const char *name,
1970 struct field_of_this_result *is_a_field_of_this)
2dc3df72
TT
1971{
1972 int i;
1973
1974 /* The type may be a stub. */
f168693b 1975 type = check_typedef (type);
2dc3df72
TT
1976
1977 for (i = TYPE_NFIELDS (type) - 1; i >= TYPE_N_BASECLASSES (type); i--)
1978 {
1979 const char *t_field_name = TYPE_FIELD_NAME (type, i);
1980
1981 if (t_field_name && (strcmp_iw (t_field_name, name) == 0))
1993b719
TT
1982 {
1983 is_a_field_of_this->type = type;
1984 is_a_field_of_this->field = &TYPE_FIELD (type, i);
1985 return 1;
1986 }
2dc3df72
TT
1987 }
1988
1989 /* C++: If it was not found as a data field, then try to return it
1990 as a pointer to a method. */
1991
1992 for (i = TYPE_NFN_FIELDS (type) - 1; i >= 0; --i)
1993 {
1994 if (strcmp_iw (TYPE_FN_FIELDLIST_NAME (type, i), name) == 0)
1993b719
TT
1995 {
1996 is_a_field_of_this->type = type;
1997 is_a_field_of_this->fn_field = &TYPE_FN_FIELDLIST (type, i);
1998 return 1;
1999 }
2dc3df72
TT
2000 }
2001
2002 for (i = TYPE_N_BASECLASSES (type) - 1; i >= 0; i--)
1993b719 2003 if (check_field (TYPE_BASECLASS (type, i), name, is_a_field_of_this))
2dc3df72
TT
2004 return 1;
2005
2006 return 0;
2007}
2008
53c5240f 2009/* Behave like lookup_symbol except that NAME is the natural name
7e082072 2010 (e.g., demangled name) of the symbol that we're looking for. */
5ad1c190 2011
d12307c1 2012static struct block_symbol
de63c46b
PA
2013lookup_symbol_aux (const char *name, symbol_name_match_type match_type,
2014 const struct block *block,
94af9270 2015 const domain_enum domain, enum language language,
1993b719 2016 struct field_of_this_result *is_a_field_of_this)
fba7f19c 2017{
d12307c1 2018 struct block_symbol result;
53c5240f 2019 const struct language_defn *langdef;
406bc4de 2020
cc485e62
DE
2021 if (symbol_lookup_debug)
2022 {
2023 struct objfile *objfile = lookup_objfile_from_block (block);
2024
2025 fprintf_unfiltered (gdb_stdlog,
2026 "lookup_symbol_aux (%s, %s (objfile %s), %s, %s)\n",
2027 name, host_address_to_string (block),
2028 objfile != NULL
2029 ? objfile_debug_name (objfile) : "NULL",
2030 domain_name (domain), language_str (language));
2031 }
2032
9a146a11
EZ
2033 /* Make sure we do something sensible with is_a_field_of_this, since
2034 the callers that set this parameter to some non-null value will
1993b719
TT
2035 certainly use it later. If we don't set it, the contents of
2036 is_a_field_of_this are undefined. */
9a146a11 2037 if (is_a_field_of_this != NULL)
1993b719 2038 memset (is_a_field_of_this, 0, sizeof (*is_a_field_of_this));
9a146a11 2039
e4051eeb
DC
2040 /* Search specified block and its superiors. Don't search
2041 STATIC_BLOCK or GLOBAL_BLOCK. */
c906108c 2042
de63c46b 2043 result = lookup_local_symbol (name, match_type, block, domain, language);
d12307c1 2044 if (result.symbol != NULL)
cc485e62
DE
2045 {
2046 if (symbol_lookup_debug)
2047 {
2048 fprintf_unfiltered (gdb_stdlog, "lookup_symbol_aux (...) = %s\n",
d12307c1 2049 host_address_to_string (result.symbol));
cc485e62 2050 }
d12307c1 2051 return result;
cc485e62 2052 }
c906108c 2053
53c5240f 2054 /* If requested to do so by the caller and if appropriate for LANGUAGE,
13387711 2055 check to see if NAME is a field of `this'. */
53c5240f
PA
2056
2057 langdef = language_def (language);
5f9a71c3 2058
6592e36f
TT
2059 /* Don't do this check if we are searching for a struct. It will
2060 not be found by check_field, but will be found by other
2061 means. */
2062 if (is_a_field_of_this != NULL && domain != STRUCT_DOMAIN)
c906108c 2063 {
d12307c1 2064 result = lookup_language_this (langdef, block);
2b2d9e11 2065
d12307c1 2066 if (result.symbol)
c906108c 2067 {
d12307c1 2068 struct type *t = result.symbol->type;
9af17804 2069
2b2d9e11
VP
2070 /* I'm not really sure that type of this can ever
2071 be typedefed; just be safe. */
f168693b 2072 t = check_typedef (t);
aa006118 2073 if (TYPE_CODE (t) == TYPE_CODE_PTR || TYPE_IS_REFERENCE (t))
2b2d9e11 2074 t = TYPE_TARGET_TYPE (t);
9af17804 2075
2b2d9e11
VP
2076 if (TYPE_CODE (t) != TYPE_CODE_STRUCT
2077 && TYPE_CODE (t) != TYPE_CODE_UNION)
9af17804 2078 error (_("Internal error: `%s' is not an aggregate"),
2b2d9e11 2079 langdef->la_name_of_this);
9af17804 2080
1993b719 2081 if (check_field (t, name, is_a_field_of_this))
cc485e62
DE
2082 {
2083 if (symbol_lookup_debug)
2084 {
2085 fprintf_unfiltered (gdb_stdlog,
2086 "lookup_symbol_aux (...) = NULL\n");
2087 }
6640a367 2088 return {};
cc485e62 2089 }
c906108c
SS
2090 }
2091 }
2092
53c5240f 2093 /* Now do whatever is appropriate for LANGUAGE to look
774b6a14 2094 up static and global variables. */
c906108c 2095
d12307c1
PMR
2096 result = langdef->la_lookup_symbol_nonlocal (langdef, name, block, domain);
2097 if (result.symbol != NULL)
cc485e62
DE
2098 {
2099 if (symbol_lookup_debug)
2100 {
2101 fprintf_unfiltered (gdb_stdlog, "lookup_symbol_aux (...) = %s\n",
d12307c1 2102 host_address_to_string (result.symbol));
cc485e62 2103 }
d12307c1 2104 return result;
cc485e62 2105 }
c906108c 2106
774b6a14
TT
2107 /* Now search all static file-level symbols. Not strictly correct,
2108 but more useful than an error. */
41f62f39 2109
d12307c1 2110 result = lookup_static_symbol (name, domain);
cc485e62
DE
2111 if (symbol_lookup_debug)
2112 {
2113 fprintf_unfiltered (gdb_stdlog, "lookup_symbol_aux (...) = %s\n",
d12307c1
PMR
2114 result.symbol != NULL
2115 ? host_address_to_string (result.symbol)
2116 : "NULL");
cc485e62 2117 }
d12307c1 2118 return result;
41f62f39
JK
2119}
2120
e4051eeb 2121/* Check to see if the symbol is defined in BLOCK or its superiors.
89a9d1b1 2122 Don't search STATIC_BLOCK or GLOBAL_BLOCK. */
8155455b 2123
d12307c1 2124static struct block_symbol
de63c46b
PA
2125lookup_local_symbol (const char *name,
2126 symbol_name_match_type match_type,
2127 const struct block *block,
74016e12
DE
2128 const domain_enum domain,
2129 enum language language)
8155455b
DC
2130{
2131 struct symbol *sym;
89a9d1b1 2132 const struct block *static_block = block_static_block (block);
13387711
SW
2133 const char *scope = block_scope (block);
2134
e4051eeb
DC
2135 /* Check if either no block is specified or it's a global block. */
2136
89a9d1b1 2137 if (static_block == NULL)
6640a367 2138 return {};
e4051eeb 2139
89a9d1b1 2140 while (block != static_block)
f61e8913 2141 {
de63c46b 2142 sym = lookup_symbol_in_block (name, match_type, block, domain);
f61e8913 2143 if (sym != NULL)
d12307c1 2144 return (struct block_symbol) {sym, block};
edb3359d 2145
f55ee35c 2146 if (language == language_cplus || language == language_fortran)
13387711 2147 {
b926417a 2148 struct block_symbol blocksym
d12307c1
PMR
2149 = cp_lookup_symbol_imports_or_template (scope, name, block,
2150 domain);
2151
b926417a
TT
2152 if (blocksym.symbol != NULL)
2153 return blocksym;
13387711
SW
2154 }
2155
edb3359d
DJ
2156 if (BLOCK_FUNCTION (block) != NULL && block_inlined_p (block))
2157 break;
f61e8913
DC
2158 block = BLOCK_SUPERBLOCK (block);
2159 }
2160
3aee438b 2161 /* We've reached the end of the function without finding a result. */
e4051eeb 2162
6640a367 2163 return {};
f61e8913
DC
2164}
2165
cf901d3b 2166/* See symtab.h. */
3a40aaa0 2167
c0201579 2168struct objfile *
3a40aaa0
UW
2169lookup_objfile_from_block (const struct block *block)
2170{
3a40aaa0
UW
2171 if (block == NULL)
2172 return NULL;
2173
2174 block = block_global_block (block);
43f3e411 2175 /* Look through all blockvectors. */
2030c079 2176 for (objfile *obj : current_program_space->objfiles ())
d8aeb77f 2177 {
b669c953 2178 for (compunit_symtab *cust : obj->compunits ())
d8aeb77f
TT
2179 if (block == BLOCKVECTOR_BLOCK (COMPUNIT_BLOCKVECTOR (cust),
2180 GLOBAL_BLOCK))
2181 {
2182 if (obj->separate_debug_objfile_backlink)
2183 obj = obj->separate_debug_objfile_backlink;
61f0d762 2184
d8aeb77f
TT
2185 return obj;
2186 }
2187 }
3a40aaa0
UW
2188
2189 return NULL;
2190}
2191
cf901d3b 2192/* See symtab.h. */
f61e8913 2193
5f9a71c3 2194struct symbol *
de63c46b
PA
2195lookup_symbol_in_block (const char *name, symbol_name_match_type match_type,
2196 const struct block *block,
d1a2d36d 2197 const domain_enum domain)
f61e8913
DC
2198{
2199 struct symbol *sym;
f61e8913 2200
cc485e62
DE
2201 if (symbol_lookup_debug > 1)
2202 {
2203 struct objfile *objfile = lookup_objfile_from_block (block);
2204
2205 fprintf_unfiltered (gdb_stdlog,
2206 "lookup_symbol_in_block (%s, %s (objfile %s), %s)",
2207 name, host_address_to_string (block),
2208 objfile_debug_name (objfile),
2209 domain_name (domain));
2210 }
2211
de63c46b 2212 sym = block_lookup_symbol (block, name, match_type, domain);
f61e8913 2213 if (sym)
8155455b 2214 {
cc485e62
DE
2215 if (symbol_lookup_debug > 1)
2216 {
2217 fprintf_unfiltered (gdb_stdlog, " = %s\n",
2218 host_address_to_string (sym));
2219 }
21b556f4 2220 return fixup_symbol_section (sym, NULL);
8155455b
DC
2221 }
2222
cc485e62
DE
2223 if (symbol_lookup_debug > 1)
2224 fprintf_unfiltered (gdb_stdlog, " = NULL\n");
8155455b
DC
2225 return NULL;
2226}
2227
cf901d3b 2228/* See symtab.h. */
3a40aaa0 2229
d12307c1 2230struct block_symbol
efad9b6a 2231lookup_global_symbol_from_objfile (struct objfile *main_objfile,
442853af 2232 enum block_enum block_index,
3a40aaa0 2233 const char *name,
21b556f4 2234 const domain_enum domain)
3a40aaa0 2235{
442853af
CB
2236 gdb_assert (block_index == GLOBAL_BLOCK || block_index == STATIC_BLOCK);
2237
bde09ab7 2238 for (objfile *objfile : main_objfile->separate_debug_objfiles ())
15d123c9 2239 {
d12307c1 2240 struct block_symbol result
442853af 2241 = lookup_symbol_in_objfile (objfile, block_index, name, domain);
15d123c9 2242
442853af 2243 if (result.symbol != nullptr)
d12307c1 2244 return result;
15d123c9 2245 }
56e3f43c 2246
6640a367 2247 return {};
3a40aaa0
UW
2248}
2249
19630284
JB
2250/* Check to see if the symbol is defined in one of the OBJFILE's
2251 symtabs. BLOCK_INDEX should be either GLOBAL_BLOCK or STATIC_BLOCK,
8155455b
DC
2252 depending on whether or not we want to search global symbols or
2253 static symbols. */
2254
d12307c1 2255static struct block_symbol
c32e6a04
CB
2256lookup_symbol_in_objfile_symtabs (struct objfile *objfile,
2257 enum block_enum block_index, const char *name,
2258 const domain_enum domain)
19630284 2259{
ba715d7f
JK
2260 gdb_assert (block_index == GLOBAL_BLOCK || block_index == STATIC_BLOCK);
2261
cc485e62
DE
2262 if (symbol_lookup_debug > 1)
2263 {
2264 fprintf_unfiltered (gdb_stdlog,
2265 "lookup_symbol_in_objfile_symtabs (%s, %s, %s, %s)",
2266 objfile_debug_name (objfile),
2267 block_index == GLOBAL_BLOCK
2268 ? "GLOBAL_BLOCK" : "STATIC_BLOCK",
2269 name, domain_name (domain));
2270 }
2271
b669c953 2272 for (compunit_symtab *cust : objfile->compunits ())
a743abeb 2273 {
43f3e411
DE
2274 const struct blockvector *bv;
2275 const struct block *block;
d12307c1 2276 struct block_symbol result;
43f3e411
DE
2277
2278 bv = COMPUNIT_BLOCKVECTOR (cust);
a743abeb 2279 block = BLOCKVECTOR_BLOCK (bv, block_index);
d12307c1
PMR
2280 result.symbol = block_lookup_symbol_primary (block, name, domain);
2281 result.block = block;
2282 if (result.symbol != NULL)
a743abeb 2283 {
cc485e62
DE
2284 if (symbol_lookup_debug > 1)
2285 {
2286 fprintf_unfiltered (gdb_stdlog, " = %s (block %s)\n",
d12307c1 2287 host_address_to_string (result.symbol),
cc485e62
DE
2288 host_address_to_string (block));
2289 }
d12307c1
PMR
2290 result.symbol = fixup_symbol_section (result.symbol, objfile);
2291 return result;
2292
a743abeb
DE
2293 }
2294 }
19630284 2295
cc485e62
DE
2296 if (symbol_lookup_debug > 1)
2297 fprintf_unfiltered (gdb_stdlog, " = NULL\n");
6640a367 2298 return {};
19630284
JB
2299}
2300
74016e12 2301/* Wrapper around lookup_symbol_in_objfile_symtabs for search_symbols.
422d65e7 2302 Look up LINKAGE_NAME in DOMAIN in the global and static blocks of OBJFILE
01465b56
DE
2303 and all associated separate debug objfiles.
2304
2305 Normally we only look in OBJFILE, and not any separate debug objfiles
2306 because the outer loop will cause them to be searched too. This case is
2307 different. Here we're called from search_symbols where it will only
6471e7d2 2308 call us for the objfile that contains a matching minsym. */
422d65e7 2309
d12307c1 2310static struct block_symbol
422d65e7
DE
2311lookup_symbol_in_objfile_from_linkage_name (struct objfile *objfile,
2312 const char *linkage_name,
2313 domain_enum domain)
2314{
2315 enum language lang = current_language->la_language;
e9ad22ee 2316 struct objfile *main_objfile;
422d65e7 2317
2f408ecb
PA
2318 demangle_result_storage storage;
2319 const char *modified_name = demangle_for_lookup (linkage_name, lang, storage);
2320
422d65e7
DE
2321 if (objfile->separate_debug_objfile_backlink)
2322 main_objfile = objfile->separate_debug_objfile_backlink;
2323 else
2324 main_objfile = objfile;
2325
bde09ab7 2326 for (::objfile *cur_objfile : main_objfile->separate_debug_objfiles ())
422d65e7 2327 {
d12307c1
PMR
2328 struct block_symbol result;
2329
2330 result = lookup_symbol_in_objfile_symtabs (cur_objfile, GLOBAL_BLOCK,
2331 modified_name, domain);
2332 if (result.symbol == NULL)
2333 result = lookup_symbol_in_objfile_symtabs (cur_objfile, STATIC_BLOCK,
2334 modified_name, domain);
2335 if (result.symbol != NULL)
2f408ecb 2336 return result;
422d65e7
DE
2337 }
2338
6640a367 2339 return {};
422d65e7
DE
2340}
2341
08c23b0d
TT
2342/* A helper function that throws an exception when a symbol was found
2343 in a psymtab but not in a symtab. */
2344
2345static void ATTRIBUTE_NORETURN
ddbcedf5 2346error_in_psymtab_expansion (enum block_enum block_index, const char *name,
43f3e411 2347 struct compunit_symtab *cust)
08c23b0d
TT
2348{
2349 error (_("\
2350Internal: %s symbol `%s' found in %s psymtab but not in symtab.\n\
2351%s may be an inlined function, or may be a template function\n \
2352(if a template, try specifying an instantiation: %s<type>)."),
f88cb4b6 2353 block_index == GLOBAL_BLOCK ? "global" : "static",
43f3e411
DE
2354 name,
2355 symtab_to_filename_for_display (compunit_primary_filetab (cust)),
2356 name, name);
08c23b0d
TT
2357}
2358
74016e12
DE
2359/* A helper function for various lookup routines that interfaces with
2360 the "quick" symbol table functions. */
8155455b 2361
d12307c1 2362static struct block_symbol
ddbcedf5
CB
2363lookup_symbol_via_quick_fns (struct objfile *objfile,
2364 enum block_enum block_index, const char *name,
2365 const domain_enum domain)
8155455b 2366{
43f3e411 2367 struct compunit_symtab *cust;
346d1dfe 2368 const struct blockvector *bv;
8155455b 2369 const struct block *block;
d12307c1 2370 struct block_symbol result;
8155455b 2371
ccefe4c4 2372 if (!objfile->sf)
6640a367 2373 return {};
cc485e62
DE
2374
2375 if (symbol_lookup_debug > 1)
2376 {
2377 fprintf_unfiltered (gdb_stdlog,
2378 "lookup_symbol_via_quick_fns (%s, %s, %s, %s)\n",
2379 objfile_debug_name (objfile),
2380 block_index == GLOBAL_BLOCK
2381 ? "GLOBAL_BLOCK" : "STATIC_BLOCK",
2382 name, domain_name (domain));
2383 }
2384
43f3e411
DE
2385 cust = objfile->sf->qf->lookup_symbol (objfile, block_index, name, domain);
2386 if (cust == NULL)
cc485e62
DE
2387 {
2388 if (symbol_lookup_debug > 1)
2389 {
2390 fprintf_unfiltered (gdb_stdlog,
2391 "lookup_symbol_via_quick_fns (...) = NULL\n");
2392 }
6640a367 2393 return {};
cc485e62 2394 }
8155455b 2395
43f3e411 2396 bv = COMPUNIT_BLOCKVECTOR (cust);
f88cb4b6 2397 block = BLOCKVECTOR_BLOCK (bv, block_index);
de63c46b
PA
2398 result.symbol = block_lookup_symbol (block, name,
2399 symbol_name_match_type::FULL, domain);
d12307c1 2400 if (result.symbol == NULL)
43f3e411 2401 error_in_psymtab_expansion (block_index, name, cust);
cc485e62
DE
2402
2403 if (symbol_lookup_debug > 1)
2404 {
2405 fprintf_unfiltered (gdb_stdlog,
2406 "lookup_symbol_via_quick_fns (...) = %s (block %s)\n",
d12307c1 2407 host_address_to_string (result.symbol),
cc485e62
DE
2408 host_address_to_string (block));
2409 }
2410
d12307c1
PMR
2411 result.symbol = fixup_symbol_section (result.symbol, objfile);
2412 result.block = block;
2413 return result;
8155455b
DC
2414}
2415
cf901d3b 2416/* See symtab.h. */
5f9a71c3 2417
d12307c1 2418struct block_symbol
f606139a
DE
2419basic_lookup_symbol_nonlocal (const struct language_defn *langdef,
2420 const char *name,
5f9a71c3 2421 const struct block *block,
21b556f4 2422 const domain_enum domain)
5f9a71c3 2423{
d12307c1 2424 struct block_symbol result;
5f9a71c3 2425
d9060ba6
DE
2426 /* NOTE: dje/2014-10-26: The lookup in all objfiles search could skip
2427 the current objfile. Searching the current objfile first is useful
2428 for both matching user expectations as well as performance. */
2429
d12307c1
PMR
2430 result = lookup_symbol_in_static_block (name, block, domain);
2431 if (result.symbol != NULL)
2432 return result;
5f9a71c3 2433
1994afbf
DE
2434 /* If we didn't find a definition for a builtin type in the static block,
2435 search for it now. This is actually the right thing to do and can be
2436 a massive performance win. E.g., when debugging a program with lots of
2437 shared libraries we could search all of them only to find out the
2438 builtin type isn't defined in any of them. This is common for types
2439 like "void". */
2440 if (domain == VAR_DOMAIN)
2441 {
2442 struct gdbarch *gdbarch;
2443
2444 if (block == NULL)
2445 gdbarch = target_gdbarch ();
2446 else
2447 gdbarch = block_gdbarch (block);
d12307c1
PMR
2448 result.symbol = language_lookup_primitive_type_as_symbol (langdef,
2449 gdbarch, name);
2450 result.block = NULL;
2451 if (result.symbol != NULL)
2452 return result;
1994afbf
DE
2453 }
2454
08724ab7 2455 return lookup_global_symbol (name, block, domain);
5f9a71c3
DC
2456}
2457
cf901d3b 2458/* See symtab.h. */
5f9a71c3 2459
d12307c1 2460struct block_symbol
24d864bb
DE
2461lookup_symbol_in_static_block (const char *name,
2462 const struct block *block,
2463 const domain_enum domain)
5f9a71c3
DC
2464{
2465 const struct block *static_block = block_static_block (block);
cc485e62 2466 struct symbol *sym;
5f9a71c3 2467
cc485e62 2468 if (static_block == NULL)
6640a367 2469 return {};
cc485e62
DE
2470
2471 if (symbol_lookup_debug)
2472 {
2473 struct objfile *objfile = lookup_objfile_from_block (static_block);
2474
2475 fprintf_unfiltered (gdb_stdlog,
2476 "lookup_symbol_in_static_block (%s, %s (objfile %s),"
2477 " %s)\n",
2478 name,
2479 host_address_to_string (block),
2480 objfile_debug_name (objfile),
2481 domain_name (domain));
2482 }
2483
de63c46b
PA
2484 sym = lookup_symbol_in_block (name,
2485 symbol_name_match_type::FULL,
2486 static_block, domain);
cc485e62
DE
2487 if (symbol_lookup_debug)
2488 {
2489 fprintf_unfiltered (gdb_stdlog,
2490 "lookup_symbol_in_static_block (...) = %s\n",
2491 sym != NULL ? host_address_to_string (sym) : "NULL");
2492 }
d12307c1 2493 return (struct block_symbol) {sym, static_block};
5f9a71c3
DC
2494}
2495
af3768e9
DE
2496/* Perform the standard symbol lookup of NAME in OBJFILE:
2497 1) First search expanded symtabs, and if not found
2498 2) Search the "quick" symtabs (partial or .gdb_index).
2499 BLOCK_INDEX is one of GLOBAL_BLOCK or STATIC_BLOCK. */
2500
d12307c1 2501static struct block_symbol
c32e6a04 2502lookup_symbol_in_objfile (struct objfile *objfile, enum block_enum block_index,
af3768e9
DE
2503 const char *name, const domain_enum domain)
2504{
d12307c1 2505 struct block_symbol result;
af3768e9 2506
c32e6a04
CB
2507 gdb_assert (block_index == GLOBAL_BLOCK || block_index == STATIC_BLOCK);
2508
cc485e62
DE
2509 if (symbol_lookup_debug)
2510 {
2511 fprintf_unfiltered (gdb_stdlog,
2512 "lookup_symbol_in_objfile (%s, %s, %s, %s)\n",
2513 objfile_debug_name (objfile),
2514 block_index == GLOBAL_BLOCK
2515 ? "GLOBAL_BLOCK" : "STATIC_BLOCK",
2516 name, domain_name (domain));
2517 }
2518
af3768e9
DE
2519 result = lookup_symbol_in_objfile_symtabs (objfile, block_index,
2520 name, domain);
d12307c1 2521 if (result.symbol != NULL)
af3768e9 2522 {
cc485e62
DE
2523 if (symbol_lookup_debug)
2524 {
2525 fprintf_unfiltered (gdb_stdlog,
2526 "lookup_symbol_in_objfile (...) = %s"
2527 " (in symtabs)\n",
d12307c1 2528 host_address_to_string (result.symbol));
cc485e62
DE
2529 }
2530 return result;
af3768e9
DE
2531 }
2532
cc485e62
DE
2533 result = lookup_symbol_via_quick_fns (objfile, block_index,
2534 name, domain);
2535 if (symbol_lookup_debug)
2536 {
2537 fprintf_unfiltered (gdb_stdlog,
2538 "lookup_symbol_in_objfile (...) = %s%s\n",
d12307c1
PMR
2539 result.symbol != NULL
2540 ? host_address_to_string (result.symbol)
cc485e62 2541 : "NULL",
d12307c1 2542 result.symbol != NULL ? " (via quick fns)" : "");
cc485e62 2543 }
af3768e9
DE
2544 return result;
2545}
2546
19630284
JB
2547/* Private data to be used with lookup_symbol_global_iterator_cb. */
2548
9aa55206 2549struct global_or_static_sym_lookup_data
19630284
JB
2550{
2551 /* The name of the symbol we are searching for. */
2552 const char *name;
2553
2554 /* The domain to use for our search. */
2555 domain_enum domain;
2556
9aa55206
CB
2557 /* The block index in which to search. */
2558 enum block_enum block_index;
2559
19630284 2560 /* The field where the callback should store the symbol if found.
d12307c1
PMR
2561 It should be initialized to {NULL, NULL} before the search is started. */
2562 struct block_symbol result;
19630284
JB
2563};
2564
2565/* A callback function for gdbarch_iterate_over_objfiles_in_search_order.
9aa55206
CB
2566 It searches by name for a symbol in the block given by BLOCK_INDEX of the
2567 given OBJFILE. The arguments for the search are passed via CB_DATA, which
2568 in reality is a pointer to struct global_or_static_sym_lookup_data. */
19630284
JB
2569
2570static int
9aa55206
CB
2571lookup_symbol_global_or_static_iterator_cb (struct objfile *objfile,
2572 void *cb_data)
19630284 2573{
9aa55206
CB
2574 struct global_or_static_sym_lookup_data *data =
2575 (struct global_or_static_sym_lookup_data *) cb_data;
19630284 2576
d12307c1
PMR
2577 gdb_assert (data->result.symbol == NULL
2578 && data->result.block == NULL);
19630284 2579
9aa55206 2580 data->result = lookup_symbol_in_objfile (objfile, data->block_index,
af3768e9 2581 data->name, data->domain);
19630284
JB
2582
2583 /* If we found a match, tell the iterator to stop. Otherwise,
2584 keep going. */
d12307c1 2585 return (data->result.symbol != NULL);
19630284
JB
2586}
2587
9aa55206
CB
2588/* This function contains the common code of lookup_{global,static}_symbol.
2589 OBJFILE is only used if BLOCK_INDEX is GLOBAL_SCOPE, in which case it is
2590 the objfile to start the lookup in. */
5f9a71c3 2591
9aa55206
CB
2592static struct block_symbol
2593lookup_global_or_static_symbol (const char *name,
2594 enum block_enum block_index,
2595 struct objfile *objfile,
2596 const domain_enum domain)
5f9a71c3 2597{
f57d2163 2598 struct symbol_cache *cache = get_symbol_cache (current_program_space);
d12307c1 2599 struct block_symbol result;
9aa55206 2600 struct global_or_static_sym_lookup_data lookup_data;
f57d2163
DE
2601 struct block_symbol_cache *bsc;
2602 struct symbol_cache_slot *slot;
b2fb95e0 2603
9aa55206
CB
2604 gdb_assert (block_index == GLOBAL_BLOCK || block_index == STATIC_BLOCK);
2605 gdb_assert (objfile == nullptr || block_index == GLOBAL_BLOCK);
f57d2163
DE
2606
2607 /* First see if we can find the symbol in the cache.
2608 This works because we use the current objfile to qualify the lookup. */
9aa55206 2609 result = symbol_cache_lookup (cache, objfile, block_index, name, domain,
d12307c1
PMR
2610 &bsc, &slot);
2611 if (result.symbol != NULL)
f57d2163 2612 {
d12307c1 2613 if (SYMBOL_LOOKUP_FAILED_P (result))
6640a367 2614 return {};
d12307c1 2615 return result;
f57d2163
DE
2616 }
2617
626ca2c0 2618 /* Do a global search (of global blocks, heh). */
d12307c1 2619 if (result.symbol == NULL)
f57d2163
DE
2620 {
2621 memset (&lookup_data, 0, sizeof (lookup_data));
2622 lookup_data.name = name;
9aa55206 2623 lookup_data.block_index = block_index;
f57d2163
DE
2624 lookup_data.domain = domain;
2625 gdbarch_iterate_over_objfiles_in_search_order
2626 (objfile != NULL ? get_objfile_arch (objfile) : target_gdbarch (),
9aa55206 2627 lookup_symbol_global_or_static_iterator_cb, &lookup_data, objfile);
d12307c1 2628 result = lookup_data.result;
f57d2163 2629 }
6a3ca067 2630
d12307c1
PMR
2631 if (result.symbol != NULL)
2632 symbol_cache_mark_found (bsc, slot, objfile, result.symbol, result.block);
f57d2163
DE
2633 else
2634 symbol_cache_mark_not_found (bsc, slot, objfile, name, domain);
2635
d12307c1 2636 return result;
5f9a71c3
DC
2637}
2638
9aa55206
CB
2639/* See symtab.h. */
2640
2641struct block_symbol
2642lookup_static_symbol (const char *name, const domain_enum domain)
2643{
2644 return lookup_global_or_static_symbol (name, STATIC_BLOCK, nullptr, domain);
2645}
2646
2647/* See symtab.h. */
2648
2649struct block_symbol
2650lookup_global_symbol (const char *name,
2651 const struct block *block,
2652 const domain_enum domain)
2653{
d3d32391
AB
2654 /* If a block was passed in, we want to search the corresponding
2655 global block first. This yields "more expected" behavior, and is
2656 needed to support 'FILENAME'::VARIABLE lookups. */
2657 const struct block *global_block = block_global_block (block);
2658 if (global_block != nullptr)
2659 {
2660 symbol *sym = lookup_symbol_in_block (name,
2661 symbol_name_match_type::FULL,
2662 global_block, domain);
2663 if (sym != nullptr)
2664 return { sym, global_block };
2665 }
2666
9aa55206
CB
2667 struct objfile *objfile = lookup_objfile_from_block (block);
2668 return lookup_global_or_static_symbol (name, GLOBAL_BLOCK, objfile, domain);
2669}
2670
ececd218 2671bool
4186eb54
KS
2672symbol_matches_domain (enum language symbol_language,
2673 domain_enum symbol_domain,
2674 domain_enum domain)
2675{
2676 /* For C++ "struct foo { ... }" also defines a typedef for "foo".
4186eb54
KS
2677 Similarly, any Ada type declaration implicitly defines a typedef. */
2678 if (symbol_language == language_cplus
2679 || symbol_language == language_d
65547233
TT
2680 || symbol_language == language_ada
2681 || symbol_language == language_rust)
4186eb54
KS
2682 {
2683 if ((domain == VAR_DOMAIN || domain == STRUCT_DOMAIN)
2684 && symbol_domain == STRUCT_DOMAIN)
ececd218 2685 return true;
4186eb54
KS
2686 }
2687 /* For all other languages, strict match is required. */
2688 return (symbol_domain == domain);
2689}
2690
cf901d3b 2691/* See symtab.h. */
c906108c 2692
ccefe4c4
TT
2693struct type *
2694lookup_transparent_type (const char *name)
c906108c 2695{
ccefe4c4
TT
2696 return current_language->la_lookup_transparent_type (name);
2697}
9af17804 2698
ccefe4c4
TT
2699/* A helper for basic_lookup_transparent_type that interfaces with the
2700 "quick" symbol table functions. */
357e46e7 2701
ccefe4c4 2702static struct type *
ddbcedf5
CB
2703basic_lookup_transparent_type_quick (struct objfile *objfile,
2704 enum block_enum block_index,
ccefe4c4
TT
2705 const char *name)
2706{
43f3e411 2707 struct compunit_symtab *cust;
346d1dfe 2708 const struct blockvector *bv;
582942f4 2709 const struct block *block;
ccefe4c4 2710 struct symbol *sym;
c906108c 2711
ccefe4c4
TT
2712 if (!objfile->sf)
2713 return NULL;
43f3e411
DE
2714 cust = objfile->sf->qf->lookup_symbol (objfile, block_index, name,
2715 STRUCT_DOMAIN);
2716 if (cust == NULL)
ccefe4c4 2717 return NULL;
c906108c 2718
43f3e411 2719 bv = COMPUNIT_BLOCKVECTOR (cust);
f88cb4b6 2720 block = BLOCKVECTOR_BLOCK (bv, block_index);
b2e2f908
DE
2721 sym = block_find_symbol (block, name, STRUCT_DOMAIN,
2722 block_find_non_opaque_type, NULL);
2723 if (sym == NULL)
43f3e411 2724 error_in_psymtab_expansion (block_index, name, cust);
b2e2f908
DE
2725 gdb_assert (!TYPE_IS_OPAQUE (SYMBOL_TYPE (sym)));
2726 return SYMBOL_TYPE (sym);
2727}
08c23b0d 2728
b2e2f908
DE
2729/* Subroutine of basic_lookup_transparent_type to simplify it.
2730 Look up the non-opaque definition of NAME in BLOCK_INDEX of OBJFILE.
2731 BLOCK_INDEX is either GLOBAL_BLOCK or STATIC_BLOCK. */
2732
2733static struct type *
ddbcedf5
CB
2734basic_lookup_transparent_type_1 (struct objfile *objfile,
2735 enum block_enum block_index,
b2e2f908
DE
2736 const char *name)
2737{
b2e2f908
DE
2738 const struct blockvector *bv;
2739 const struct block *block;
2740 const struct symbol *sym;
2741
b669c953 2742 for (compunit_symtab *cust : objfile->compunits ())
b2e2f908
DE
2743 {
2744 bv = COMPUNIT_BLOCKVECTOR (cust);
2745 block = BLOCKVECTOR_BLOCK (bv, block_index);
2746 sym = block_find_symbol (block, name, STRUCT_DOMAIN,
2747 block_find_non_opaque_type, NULL);
2748 if (sym != NULL)
2749 {
2750 gdb_assert (!TYPE_IS_OPAQUE (SYMBOL_TYPE (sym)));
2751 return SYMBOL_TYPE (sym);
2752 }
2753 }
c906108c 2754
ccefe4c4 2755 return NULL;
b368761e 2756}
c906108c 2757
b368761e
DC
2758/* The standard implementation of lookup_transparent_type. This code
2759 was modeled on lookup_symbol -- the parts not relevant to looking
2760 up types were just left out. In particular it's assumed here that
cf901d3b 2761 types are available in STRUCT_DOMAIN and only in file-static or
b368761e 2762 global blocks. */
c906108c
SS
2763
2764struct type *
b368761e 2765basic_lookup_transparent_type (const char *name)
c906108c 2766{
ccefe4c4 2767 struct type *t;
c906108c
SS
2768
2769 /* Now search all the global symbols. Do the symtab's first, then
c378eb4e 2770 check the psymtab's. If a psymtab indicates the existence
c906108c
SS
2771 of the desired name as a global, then do psymtab-to-symtab
2772 conversion on the fly and return the found symbol. */
c5aa993b 2773
2030c079 2774 for (objfile *objfile : current_program_space->objfiles ())
aed57c53
TT
2775 {
2776 t = basic_lookup_transparent_type_1 (objfile, GLOBAL_BLOCK, name);
2777 if (t)
2778 return t;
2779 }
c906108c 2780
2030c079 2781 for (objfile *objfile : current_program_space->objfiles ())
aed57c53
TT
2782 {
2783 t = basic_lookup_transparent_type_quick (objfile, GLOBAL_BLOCK, name);
2784 if (t)
2785 return t;
2786 }
c906108c
SS
2787
2788 /* Now search the static file-level symbols.
2789 Not strictly correct, but more useful than an error.
2790 Do the symtab's first, then
c378eb4e 2791 check the psymtab's. If a psymtab indicates the existence
c906108c 2792 of the desired name as a file-level static, then do psymtab-to-symtab
c378eb4e 2793 conversion on the fly and return the found symbol. */
c906108c 2794
2030c079 2795 for (objfile *objfile : current_program_space->objfiles ())
aed57c53
TT
2796 {
2797 t = basic_lookup_transparent_type_1 (objfile, STATIC_BLOCK, name);
2798 if (t)
2799 return t;
2800 }
c906108c 2801
2030c079 2802 for (objfile *objfile : current_program_space->objfiles ())
aed57c53
TT
2803 {
2804 t = basic_lookup_transparent_type_quick (objfile, STATIC_BLOCK, name);
2805 if (t)
2806 return t;
2807 }
ccefe4c4 2808
c906108c
SS
2809 return (struct type *) 0;
2810}
2811
6969f124 2812/* See symtab.h. */
f8eba3c6 2813
6969f124 2814bool
b5ec771e
PA
2815iterate_over_symbols (const struct block *block,
2816 const lookup_name_info &name,
f8eba3c6 2817 const domain_enum domain,
14bc53a8 2818 gdb::function_view<symbol_found_callback_ftype> callback)
f8eba3c6 2819{
4eeaa230
DE
2820 struct block_iterator iter;
2821 struct symbol *sym;
f8eba3c6 2822
358d6ab3 2823 ALL_BLOCK_SYMBOLS_WITH_NAME (block, name, iter, sym)
4eeaa230 2824 {
4186eb54
KS
2825 if (symbol_matches_domain (SYMBOL_LANGUAGE (sym),
2826 SYMBOL_DOMAIN (sym), domain))
f8eba3c6 2827 {
7e41c8db
KS
2828 struct block_symbol block_sym = {sym, block};
2829
2830 if (!callback (&block_sym))
6969f124 2831 return false;
f8eba3c6 2832 }
f8eba3c6 2833 }
6969f124 2834 return true;
f8eba3c6
TT
2835}
2836
6a3dbf1b
TT
2837/* See symtab.h. */
2838
2839bool
2840iterate_over_symbols_terminated
2841 (const struct block *block,
2842 const lookup_name_info &name,
2843 const domain_enum domain,
2844 gdb::function_view<symbol_found_callback_ftype> callback)
2845{
2846 if (!iterate_over_symbols (block, name, domain, callback))
2847 return false;
2848 struct block_symbol block_sym = {nullptr, block};
2849 return callback (&block_sym);
2850}
2851
43f3e411
DE
2852/* Find the compunit symtab associated with PC and SECTION.
2853 This will read in debug info as necessary. */
c906108c 2854
43f3e411
DE
2855struct compunit_symtab *
2856find_pc_sect_compunit_symtab (CORE_ADDR pc, struct obj_section *section)
c906108c 2857{
43f3e411 2858 struct compunit_symtab *best_cust = NULL;
c906108c 2859 CORE_ADDR distance = 0;
77e371c0 2860 struct bound_minimal_symbol msymbol;
8a48e967
DJ
2861
2862 /* If we know that this is not a text address, return failure. This is
2863 necessary because we loop based on the block's high and low code
2864 addresses, which do not include the data ranges, and because
2865 we call find_pc_sect_psymtab which has a similar restriction based
2866 on the partial_symtab's texthigh and textlow. */
77e371c0 2867 msymbol = lookup_minimal_symbol_by_pc_section (pc, section);
1ed9f74e 2868 if (msymbol.minsym && msymbol.minsym->data_p ())
8a48e967 2869 return NULL;
c906108c
SS
2870
2871 /* Search all symtabs for the one whose file contains our address, and which
2872 is the smallest of all the ones containing the address. This is designed
2873 to deal with a case like symtab a is at 0x1000-0x2000 and 0x3000-0x4000
2874 and symtab b is at 0x2000-0x3000. So the GLOBAL_BLOCK for a is from
2875 0x1000-0x4000, but for address 0x2345 we want to return symtab b.
2876
2877 This happens for native ecoff format, where code from included files
c378eb4e 2878 gets its own symtab. The symtab for the included file should have
c906108c
SS
2879 been read in already via the dependency mechanism.
2880 It might be swifter to create several symtabs with the same name
2881 like xcoff does (I'm not sure).
2882
2883 It also happens for objfiles that have their functions reordered.
2884 For these, the symtab we are looking for is not necessarily read in. */
2885
2030c079 2886 for (objfile *obj_file : current_program_space->objfiles ())
d8aeb77f 2887 {
b669c953 2888 for (compunit_symtab *cust : obj_file->compunits ())
d8aeb77f 2889 {
582942f4 2890 const struct block *b;
d8aeb77f 2891 const struct blockvector *bv;
43f3e411 2892
d8aeb77f
TT
2893 bv = COMPUNIT_BLOCKVECTOR (cust);
2894 b = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
c906108c 2895
d8aeb77f
TT
2896 if (BLOCK_START (b) <= pc
2897 && BLOCK_END (b) > pc
2898 && (distance == 0
2899 || BLOCK_END (b) - BLOCK_START (b) < distance))
2900 {
2901 /* For an objfile that has its functions reordered,
2902 find_pc_psymtab will find the proper partial symbol table
2903 and we simply return its corresponding symtab. */
2904 /* In order to better support objfiles that contain both
2905 stabs and coff debugging info, we continue on if a psymtab
2906 can't be found. */
2907 if ((obj_file->flags & OBJF_REORDERED) && obj_file->sf)
2908 {
2909 struct compunit_symtab *result;
2910
2911 result
2912 = obj_file->sf->qf->find_pc_sect_compunit_symtab (obj_file,
2913 msymbol,
2914 pc,
2915 section,
2916 0);
2917 if (result != NULL)
2918 return result;
2919 }
2920 if (section != 0)
2921 {
2922 struct block_iterator iter;
2923 struct symbol *sym = NULL;
c906108c 2924
d8aeb77f
TT
2925 ALL_BLOCK_SYMBOLS (b, iter, sym)
2926 {
2927 fixup_symbol_section (sym, obj_file);
2928 if (matching_obj_sections (SYMBOL_OBJ_SECTION (obj_file,
2929 sym),
2930 section))
2931 break;
2932 }
2933 if (sym == NULL)
2934 continue; /* No symbol in this symtab matches
2935 section. */
2936 }
2937 distance = BLOCK_END (b) - BLOCK_START (b);
2938 best_cust = cust;
2939 }
2940 }
2941 }
c906108c 2942
43f3e411
DE
2943 if (best_cust != NULL)
2944 return best_cust;
c906108c 2945
072cabfe
DE
2946 /* Not found in symtabs, search the "quick" symtabs (e.g. psymtabs). */
2947
2030c079 2948 for (objfile *objf : current_program_space->objfiles ())
aed57c53
TT
2949 {
2950 struct compunit_symtab *result;
2951
2952 if (!objf->sf)
2953 continue;
2954 result = objf->sf->qf->find_pc_sect_compunit_symtab (objf,
2955 msymbol,
2956 pc, section,
2957 1);
2958 if (result != NULL)
2959 return result;
2960 }
ccefe4c4
TT
2961
2962 return NULL;
c906108c
SS
2963}
2964
43f3e411
DE
2965/* Find the compunit symtab associated with PC.
2966 This will read in debug info as necessary.
2967 Backward compatibility, no section. */
c906108c 2968
43f3e411
DE
2969struct compunit_symtab *
2970find_pc_compunit_symtab (CORE_ADDR pc)
c906108c 2971{
43f3e411 2972 return find_pc_sect_compunit_symtab (pc, find_pc_mapped_section (pc));
c906108c 2973}
71a3c369
TT
2974
2975/* See symtab.h. */
2976
2977struct symbol *
2978find_symbol_at_address (CORE_ADDR address)
2979{
2030c079 2980 for (objfile *objfile : current_program_space->objfiles ())
aed57c53
TT
2981 {
2982 if (objfile->sf == NULL
2983 || objfile->sf->qf->find_compunit_symtab_by_address == NULL)
2984 continue;
71a3c369 2985
aed57c53
TT
2986 struct compunit_symtab *symtab
2987 = objfile->sf->qf->find_compunit_symtab_by_address (objfile, address);
2988 if (symtab != NULL)
2989 {
2990 const struct blockvector *bv = COMPUNIT_BLOCKVECTOR (symtab);
71a3c369 2991
aed57c53 2992 for (int i = GLOBAL_BLOCK; i <= STATIC_BLOCK; ++i)
71a3c369 2993 {
582942f4 2994 const struct block *b = BLOCKVECTOR_BLOCK (bv, i);
aed57c53
TT
2995 struct block_iterator iter;
2996 struct symbol *sym;
2997
2998 ALL_BLOCK_SYMBOLS (b, iter, sym)
2999 {
3000 if (SYMBOL_CLASS (sym) == LOC_STATIC
3001 && SYMBOL_VALUE_ADDRESS (sym) == address)
3002 return sym;
3003 }
71a3c369 3004 }
aed57c53
TT
3005 }
3006 }
71a3c369
TT
3007
3008 return NULL;
3009}
3010
c906108c 3011\f
c5aa993b 3012
7e73cedf 3013/* Find the source file and line number for a given PC value and SECTION.
c906108c
SS
3014 Return a structure containing a symtab pointer, a line number,
3015 and a pc range for the entire source line.
3016 The value's .pc field is NOT the specified pc.
3017 NOTCURRENT nonzero means, if specified pc is on a line boundary,
3018 use the line that ends there. Otherwise, in that case, the line
3019 that begins there is used. */
3020
3021/* The big complication here is that a line may start in one file, and end just
3022 before the start of another file. This usually occurs when you #include
3023 code in the middle of a subroutine. To properly find the end of a line's PC
3024 range, we must search all symtabs associated with this compilation unit, and
3025 find the one whose first PC is closer than that of the next line in this
3026 symtab. */
3027
c906108c 3028struct symtab_and_line
714835d5 3029find_pc_sect_line (CORE_ADDR pc, struct obj_section *section, int notcurrent)
c906108c 3030{
43f3e411 3031 struct compunit_symtab *cust;
52f0bd74
AC
3032 struct linetable *l;
3033 int len;
52f0bd74 3034 struct linetable_entry *item;
346d1dfe 3035 const struct blockvector *bv;
7cbd4a93 3036 struct bound_minimal_symbol msymbol;
c906108c
SS
3037
3038 /* Info on best line seen so far, and where it starts, and its file. */
3039
3040 struct linetable_entry *best = NULL;
3041 CORE_ADDR best_end = 0;
3042 struct symtab *best_symtab = 0;
3043
3044 /* Store here the first line number
3045 of a file which contains the line at the smallest pc after PC.
3046 If we don't find a line whose range contains PC,
3047 we will use a line one less than this,
3048 with a range from the start of that file to the first line's pc. */
3049 struct linetable_entry *alt = NULL;
c906108c
SS
3050
3051 /* Info on best line seen in this file. */
3052
3053 struct linetable_entry *prev;
3054
3055 /* If this pc is not from the current frame,
3056 it is the address of the end of a call instruction.
3057 Quite likely that is the start of the following statement.
3058 But what we want is the statement containing the instruction.
3059 Fudge the pc to make sure we get that. */
3060
b77b1eb7
JB
3061 /* It's tempting to assume that, if we can't find debugging info for
3062 any function enclosing PC, that we shouldn't search for line
3063 number info, either. However, GAS can emit line number info for
3064 assembly files --- very helpful when debugging hand-written
3065 assembly code. In such a case, we'd have no debug info for the
3066 function, but we would have line info. */
648f4f79 3067
c906108c
SS
3068 if (notcurrent)
3069 pc -= 1;
3070
c5aa993b 3071 /* elz: added this because this function returned the wrong
c906108c 3072 information if the pc belongs to a stub (import/export)
c378eb4e 3073 to call a shlib function. This stub would be anywhere between
9af17804 3074 two functions in the target, and the line info was erroneously
c378eb4e
MS
3075 taken to be the one of the line before the pc. */
3076
c906108c 3077 /* RT: Further explanation:
c5aa993b 3078
c906108c
SS
3079 * We have stubs (trampolines) inserted between procedures.
3080 *
3081 * Example: "shr1" exists in a shared library, and a "shr1" stub also
3082 * exists in the main image.
3083 *
3084 * In the minimal symbol table, we have a bunch of symbols
c378eb4e 3085 * sorted by start address. The stubs are marked as "trampoline",
c906108c
SS
3086 * the others appear as text. E.g.:
3087 *
9af17804 3088 * Minimal symbol table for main image
c906108c
SS
3089 * main: code for main (text symbol)
3090 * shr1: stub (trampoline symbol)
3091 * foo: code for foo (text symbol)
3092 * ...
3093 * Minimal symbol table for "shr1" image:
3094 * ...
3095 * shr1: code for shr1 (text symbol)
3096 * ...
3097 *
3098 * So the code below is trying to detect if we are in the stub
3099 * ("shr1" stub), and if so, find the real code ("shr1" trampoline),
3100 * and if found, do the symbolization from the real-code address
3101 * rather than the stub address.
3102 *
3103 * Assumptions being made about the minimal symbol table:
3104 * 1. lookup_minimal_symbol_by_pc() will return a trampoline only
c378eb4e 3105 * if we're really in the trampoline.s If we're beyond it (say
9af17804 3106 * we're in "foo" in the above example), it'll have a closer
c906108c
SS
3107 * symbol (the "foo" text symbol for example) and will not
3108 * return the trampoline.
3109 * 2. lookup_minimal_symbol_text() will find a real text symbol
3110 * corresponding to the trampoline, and whose address will
c378eb4e 3111 * be different than the trampoline address. I put in a sanity
c906108c
SS
3112 * check for the address being the same, to avoid an
3113 * infinite recursion.
3114 */
c5aa993b 3115 msymbol = lookup_minimal_symbol_by_pc (pc);
7cbd4a93
TT
3116 if (msymbol.minsym != NULL)
3117 if (MSYMBOL_TYPE (msymbol.minsym) == mst_solib_trampoline)
c5aa993b 3118 {
77e371c0 3119 struct bound_minimal_symbol mfunsym
efd66ac6 3120 = lookup_minimal_symbol_text (MSYMBOL_LINKAGE_NAME (msymbol.minsym),
77e371c0
TT
3121 NULL);
3122
3123 if (mfunsym.minsym == NULL)
c5aa993b
JM
3124 /* I eliminated this warning since it is coming out
3125 * in the following situation:
3126 * gdb shmain // test program with shared libraries
3127 * (gdb) break shr1 // function in shared lib
3128 * Warning: In stub for ...
9af17804 3129 * In the above situation, the shared lib is not loaded yet,
c5aa993b
JM
3130 * so of course we can't find the real func/line info,
3131 * but the "break" still works, and the warning is annoying.
c378eb4e 3132 * So I commented out the warning. RT */
3e43a32a 3133 /* warning ("In stub for %s; unable to find real function/line info",
c378eb4e
MS
3134 SYMBOL_LINKAGE_NAME (msymbol)); */
3135 ;
c5aa993b 3136 /* fall through */
77e371c0
TT
3137 else if (BMSYMBOL_VALUE_ADDRESS (mfunsym)
3138 == BMSYMBOL_VALUE_ADDRESS (msymbol))
c5aa993b 3139 /* Avoid infinite recursion */
c378eb4e 3140 /* See above comment about why warning is commented out. */
3e43a32a 3141 /* warning ("In stub for %s; unable to find real function/line info",
c378eb4e
MS
3142 SYMBOL_LINKAGE_NAME (msymbol)); */
3143 ;
c5aa993b
JM
3144 /* fall through */
3145 else
77e371c0 3146 return find_pc_line (BMSYMBOL_VALUE_ADDRESS (mfunsym), 0);
c5aa993b 3147 }
c906108c 3148
51abb421
PA
3149 symtab_and_line val;
3150 val.pspace = current_program_space;
c906108c 3151
43f3e411
DE
3152 cust = find_pc_sect_compunit_symtab (pc, section);
3153 if (cust == NULL)
c906108c 3154 {
c378eb4e 3155 /* If no symbol information, return previous pc. */
c906108c
SS
3156 if (notcurrent)
3157 pc++;
3158 val.pc = pc;
3159 return val;
3160 }
3161
43f3e411 3162 bv = COMPUNIT_BLOCKVECTOR (cust);
c906108c
SS
3163
3164 /* Look at all the symtabs that share this blockvector.
3165 They all have the same apriori range, that we found was right;
3166 but they have different line tables. */
3167
5accd1a0 3168 for (symtab *iter_s : compunit_filetabs (cust))
c906108c
SS
3169 {
3170 /* Find the best line in this symtab. */
43f3e411 3171 l = SYMTAB_LINETABLE (iter_s);
c906108c 3172 if (!l)
c5aa993b 3173 continue;
c906108c
SS
3174 len = l->nitems;
3175 if (len <= 0)
3176 {
3177 /* I think len can be zero if the symtab lacks line numbers
3178 (e.g. gcc -g1). (Either that or the LINETABLE is NULL;
3179 I'm not sure which, and maybe it depends on the symbol
3180 reader). */
3181 continue;
3182 }
3183
3184 prev = NULL;
c378eb4e 3185 item = l->item; /* Get first line info. */
c906108c
SS
3186
3187 /* Is this file's first line closer than the first lines of other files?
c5aa993b 3188 If so, record this file, and its first line, as best alternate. */
c906108c 3189 if (item->pc > pc && (!alt || item->pc < alt->pc))
c656bca5 3190 alt = item;
c906108c 3191
b926417a 3192 auto pc_compare = [](const CORE_ADDR & comp_pc,
7cbe16e9
SR
3193 const struct linetable_entry & lhs)->bool
3194 {
b926417a 3195 return comp_pc < lhs.pc;
7cbe16e9 3196 };
c906108c 3197
7cbe16e9
SR
3198 struct linetable_entry *first = item;
3199 struct linetable_entry *last = item + len;
3200 item = std::upper_bound (first, last, pc, pc_compare);
3201 if (item != first)
3202 prev = item - 1; /* Found a matching item. */
c906108c
SS
3203
3204 /* At this point, prev points at the line whose start addr is <= pc, and
c5aa993b
JM
3205 item points at the next line. If we ran off the end of the linetable
3206 (pc >= start of the last line), then prev == item. If pc < start of
3207 the first line, prev will not be set. */
c906108c
SS
3208
3209 /* Is this file's best line closer than the best in the other files?
083ae935
DJ
3210 If so, record this file, and its best line, as best so far. Don't
3211 save prev if it represents the end of a function (i.e. line number
3212 0) instead of a real line. */
c906108c 3213
083ae935 3214 if (prev && prev->line && (!best || prev->pc > best->pc))
c906108c
SS
3215 {
3216 best = prev;
43f3e411 3217 best_symtab = iter_s;
25d53da1
KB
3218
3219 /* Discard BEST_END if it's before the PC of the current BEST. */
3220 if (best_end <= best->pc)
3221 best_end = 0;
c906108c 3222 }
25d53da1
KB
3223
3224 /* If another line (denoted by ITEM) is in the linetable and its
7cbe16e9 3225 PC is after BEST's PC, but before the current BEST_END, then
25d53da1 3226 use ITEM's PC as the new best_end. */
4ee89e90 3227 if (best && item < last && item->pc > best->pc
7cbe16e9 3228 && (best_end == 0 || best_end > item->pc))
25d53da1 3229 best_end = item->pc;
c906108c
SS
3230 }
3231
3232 if (!best_symtab)
3233 {
e86e87f7
DJ
3234 /* If we didn't find any line number info, just return zeros.
3235 We used to return alt->line - 1 here, but that could be
3236 anywhere; if we don't have line number info for this PC,
3237 don't make some up. */
3238 val.pc = pc;
c906108c 3239 }
e8717518
FF
3240 else if (best->line == 0)
3241 {
3242 /* If our best fit is in a range of PC's for which no line
3243 number info is available (line number is zero) then we didn't
c378eb4e 3244 find any valid line information. */
e8717518
FF
3245 val.pc = pc;
3246 }
c906108c
SS
3247 else
3248 {
3249 val.symtab = best_symtab;
3250 val.line = best->line;
3251 val.pc = best->pc;
3252 if (best_end && (!alt || best_end < alt->pc))
3253 val.end = best_end;
3254 else if (alt)
3255 val.end = alt->pc;
3256 else
3257 val.end = BLOCK_END (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK));
3258 }
3259 val.section = section;
3260 return val;
3261}
3262
c378eb4e 3263/* Backward compatibility (no section). */
c906108c
SS
3264
3265struct symtab_and_line
fba45db2 3266find_pc_line (CORE_ADDR pc, int notcurrent)
c906108c 3267{
714835d5 3268 struct obj_section *section;
c906108c
SS
3269
3270 section = find_pc_overlay (pc);
3271 if (pc_in_unmapped_range (pc, section))
3272 pc = overlay_mapped_address (pc, section);
3273 return find_pc_sect_line (pc, section, notcurrent);
3274}
34248c3a
DE
3275
3276/* See symtab.h. */
3277
3278struct symtab *
3279find_pc_line_symtab (CORE_ADDR pc)
3280{
3281 struct symtab_and_line sal;
3282
3283 /* This always passes zero for NOTCURRENT to find_pc_line.
3284 There are currently no callers that ever pass non-zero. */
3285 sal = find_pc_line (pc, 0);
3286 return sal.symtab;
3287}
c906108c 3288\f
c906108c
SS
3289/* Find line number LINE in any symtab whose name is the same as
3290 SYMTAB.
3291
3292 If found, return the symtab that contains the linetable in which it was
3293 found, set *INDEX to the index in the linetable of the best entry
ececd218 3294 found, and set *EXACT_MATCH to true if the value returned is an
c906108c
SS
3295 exact match.
3296
3297 If not found, return NULL. */
3298
50641945 3299struct symtab *
5accd1a0 3300find_line_symtab (struct symtab *sym_tab, int line,
ececd218 3301 int *index, bool *exact_match)
c906108c 3302{
6f43c46f 3303 int exact = 0; /* Initialized here to avoid a compiler warning. */
c906108c
SS
3304
3305 /* BEST_INDEX and BEST_LINETABLE identify the smallest linenumber > LINE
3306 so far seen. */
3307
3308 int best_index;
3309 struct linetable *best_linetable;
3310 struct symtab *best_symtab;
3311
3312 /* First try looking it up in the given symtab. */
5accd1a0
TT
3313 best_linetable = SYMTAB_LINETABLE (sym_tab);
3314 best_symtab = sym_tab;
f8eba3c6 3315 best_index = find_line_common (best_linetable, line, &exact, 0);
c906108c
SS
3316 if (best_index < 0 || !exact)
3317 {
3318 /* Didn't find an exact match. So we better keep looking for
c5aa993b
JM
3319 another symtab with the same name. In the case of xcoff,
3320 multiple csects for one source file (produced by IBM's FORTRAN
3321 compiler) produce multiple symtabs (this is unavoidable
3322 assuming csects can be at arbitrary places in memory and that
3323 the GLOBAL_BLOCK of a symtab has a begin and end address). */
c906108c
SS
3324
3325 /* BEST is the smallest linenumber > LINE so far seen,
c5aa993b
JM
3326 or 0 if none has been seen so far.
3327 BEST_INDEX and BEST_LINETABLE identify the item for it. */
c906108c
SS
3328 int best;
3329
c906108c
SS
3330 if (best_index >= 0)
3331 best = best_linetable->item[best_index].line;
3332 else
3333 best = 0;
3334
2030c079 3335 for (objfile *objfile : current_program_space->objfiles ())
aed57c53
TT
3336 {
3337 if (objfile->sf)
3338 objfile->sf->qf->expand_symtabs_with_fullname
5accd1a0 3339 (objfile, symtab_to_fullname (sym_tab));
aed57c53 3340 }
51432cca 3341
2030c079 3342 for (objfile *objfile : current_program_space->objfiles ())
8b31193a 3343 {
b669c953 3344 for (compunit_symtab *cu : objfile->compunits ())
8b31193a
TT
3345 {
3346 for (symtab *s : compunit_filetabs (cu))
3347 {
3348 struct linetable *l;
3349 int ind;
3350
3351 if (FILENAME_CMP (sym_tab->filename, s->filename) != 0)
3352 continue;
3353 if (FILENAME_CMP (symtab_to_fullname (sym_tab),
3354 symtab_to_fullname (s)) != 0)
3355 continue;
3356 l = SYMTAB_LINETABLE (s);
3357 ind = find_line_common (l, line, &exact, 0);
3358 if (ind >= 0)
3359 {
3360 if (exact)
3361 {
3362 best_index = ind;
3363 best_linetable = l;
3364 best_symtab = s;
3365 goto done;
3366 }
3367 if (best == 0 || l->item[ind].line < best)
3368 {
3369 best = l->item[ind].line;
3370 best_index = ind;
3371 best_linetable = l;
3372 best_symtab = s;
3373 }
3374 }
3375 }
3376 }
3377 }
c906108c 3378 }
c5aa993b 3379done:
c906108c
SS
3380 if (best_index < 0)
3381 return NULL;
3382
3383 if (index)
3384 *index = best_index;
3385 if (exact_match)
ececd218 3386 *exact_match = (exact != 0);
c906108c
SS
3387
3388 return best_symtab;
3389}
f8eba3c6
TT
3390
3391/* Given SYMTAB, returns all the PCs function in the symtab that
67d89901
TT
3392 exactly match LINE. Returns an empty vector if there are no exact
3393 matches, but updates BEST_ITEM in this case. */
f8eba3c6 3394
67d89901 3395std::vector<CORE_ADDR>
f8eba3c6
TT
3396find_pcs_for_symtab_line (struct symtab *symtab, int line,
3397 struct linetable_entry **best_item)
3398{
c656bca5 3399 int start = 0;
67d89901 3400 std::vector<CORE_ADDR> result;
f8eba3c6
TT
3401
3402 /* First, collect all the PCs that are at this line. */
3403 while (1)
3404 {
3405 int was_exact;
3406 int idx;
3407
8435453b
DE
3408 idx = find_line_common (SYMTAB_LINETABLE (symtab), line, &was_exact,
3409 start);
f8eba3c6
TT
3410 if (idx < 0)
3411 break;
3412
3413 if (!was_exact)
3414 {
8435453b 3415 struct linetable_entry *item = &SYMTAB_LINETABLE (symtab)->item[idx];
f8eba3c6
TT
3416
3417 if (*best_item == NULL || item->line < (*best_item)->line)
3418 *best_item = item;
3419
3420 break;
3421 }
3422
67d89901 3423 result.push_back (SYMTAB_LINETABLE (symtab)->item[idx].pc);
f8eba3c6
TT
3424 start = idx + 1;
3425 }
3426
3427 return result;
3428}
3429
c906108c
SS
3430\f
3431/* Set the PC value for a given source file and line number and return true.
ececd218 3432 Returns false for invalid line number (and sets the PC to 0).
c906108c
SS
3433 The source file is specified with a struct symtab. */
3434
ececd218 3435bool
fba45db2 3436find_line_pc (struct symtab *symtab, int line, CORE_ADDR *pc)
c906108c
SS
3437{
3438 struct linetable *l;
3439 int ind;
3440
3441 *pc = 0;
3442 if (symtab == 0)
ececd218 3443 return false;
c906108c
SS
3444
3445 symtab = find_line_symtab (symtab, line, &ind, NULL);
3446 if (symtab != NULL)
3447 {
8435453b 3448 l = SYMTAB_LINETABLE (symtab);
c906108c 3449 *pc = l->item[ind].pc;
ececd218 3450 return true;
c906108c
SS
3451 }
3452 else
ececd218 3453 return false;
c906108c
SS
3454}
3455
3456/* Find the range of pc values in a line.
3457 Store the starting pc of the line into *STARTPTR
3458 and the ending pc (start of next line) into *ENDPTR.
ececd218
CB
3459 Returns true to indicate success.
3460 Returns false if could not find the specified line. */
c906108c 3461
ececd218 3462bool
fba45db2
KB
3463find_line_pc_range (struct symtab_and_line sal, CORE_ADDR *startptr,
3464 CORE_ADDR *endptr)
c906108c
SS
3465{
3466 CORE_ADDR startaddr;
3467 struct symtab_and_line found_sal;
3468
3469 startaddr = sal.pc;
c5aa993b 3470 if (startaddr == 0 && !find_line_pc (sal.symtab, sal.line, &startaddr))
ececd218 3471 return false;
c906108c
SS
3472
3473 /* This whole function is based on address. For example, if line 10 has
3474 two parts, one from 0x100 to 0x200 and one from 0x300 to 0x400, then
3475 "info line *0x123" should say the line goes from 0x100 to 0x200
3476 and "info line *0x355" should say the line goes from 0x300 to 0x400.
3477 This also insures that we never give a range like "starts at 0x134
3478 and ends at 0x12c". */
3479
3480 found_sal = find_pc_sect_line (startaddr, sal.section, 0);
3481 if (found_sal.line != sal.line)
3482 {
3483 /* The specified line (sal) has zero bytes. */
3484 *startptr = found_sal.pc;
3485 *endptr = found_sal.pc;
3486 }
3487 else
3488 {
3489 *startptr = found_sal.pc;
3490 *endptr = found_sal.end;
3491 }
ececd218 3492 return true;
c906108c
SS
3493}
3494
3495/* Given a line table and a line number, return the index into the line
3496 table for the pc of the nearest line whose number is >= the specified one.
3497 Return -1 if none is found. The value is >= 0 if it is an index.
f8eba3c6 3498 START is the index at which to start searching the line table.
c906108c
SS
3499
3500 Set *EXACT_MATCH nonzero if the value returned is an exact match. */
3501
3502static int
aa1ee363 3503find_line_common (struct linetable *l, int lineno,
f8eba3c6 3504 int *exact_match, int start)
c906108c 3505{
52f0bd74
AC
3506 int i;
3507 int len;
c906108c
SS
3508
3509 /* BEST is the smallest linenumber > LINENO so far seen,
3510 or 0 if none has been seen so far.
3511 BEST_INDEX identifies the item for it. */
3512
3513 int best_index = -1;
3514 int best = 0;
3515
b7589f7d
DJ
3516 *exact_match = 0;
3517
c906108c
SS
3518 if (lineno <= 0)
3519 return -1;
3520 if (l == 0)
3521 return -1;
3522
3523 len = l->nitems;
f8eba3c6 3524 for (i = start; i < len; i++)
c906108c 3525 {
aa1ee363 3526 struct linetable_entry *item = &(l->item[i]);
c906108c
SS
3527
3528 if (item->line == lineno)
3529 {
3530 /* Return the first (lowest address) entry which matches. */
3531 *exact_match = 1;
3532 return i;
3533 }
3534
3535 if (item->line > lineno && (best == 0 || item->line < best))
3536 {
3537 best = item->line;
3538 best_index = i;
3539 }
3540 }
3541
3542 /* If we got here, we didn't get an exact match. */
c906108c
SS
3543 return best_index;
3544}
3545
ececd218 3546bool
fba45db2 3547find_pc_line_pc_range (CORE_ADDR pc, CORE_ADDR *startptr, CORE_ADDR *endptr)
c906108c
SS
3548{
3549 struct symtab_and_line sal;
433759f7 3550
c906108c
SS
3551 sal = find_pc_line (pc, 0);
3552 *startptr = sal.pc;
3553 *endptr = sal.end;
3554 return sal.symtab != 0;
3555}
3556
cd2bb709
PA
3557/* Helper for find_function_start_sal. Does most of the work, except
3558 setting the sal's symbol. */
aab2f208 3559
cd2bb709
PA
3560static symtab_and_line
3561find_function_start_sal_1 (CORE_ADDR func_addr, obj_section *section,
3562 bool funfirstline)
aab2f208 3563{
42ddae10 3564 symtab_and_line sal = find_pc_sect_line (func_addr, section, 0);
aab2f208 3565
6e22494e
JK
3566 if (funfirstline && sal.symtab != NULL
3567 && (COMPUNIT_LOCATIONS_VALID (SYMTAB_COMPUNIT (sal.symtab))
3568 || SYMTAB_LANGUAGE (sal.symtab) == language_asm))
3569 {
42ddae10 3570 struct gdbarch *gdbarch = get_objfile_arch (SYMTAB_OBJFILE (sal.symtab));
141c5cc4 3571
42ddae10 3572 sal.pc = func_addr;
141c5cc4
JK
3573 if (gdbarch_skip_entrypoint_p (gdbarch))
3574 sal.pc = gdbarch_skip_entrypoint (gdbarch, sal.pc);
6e22494e
JK
3575 return sal;
3576 }
3577
aab2f208 3578 /* We always should have a line for the function start address.
42ddae10 3579 If we don't, something is odd. Create a plain SAL referring
aab2f208
DE
3580 just the PC and hope that skip_prologue_sal (if requested)
3581 can find a line number for after the prologue. */
42ddae10 3582 if (sal.pc < func_addr)
aab2f208 3583 {
51abb421 3584 sal = {};
aab2f208 3585 sal.pspace = current_program_space;
42ddae10 3586 sal.pc = func_addr;
08be3fe3 3587 sal.section = section;
aab2f208
DE
3588 }
3589
3590 if (funfirstline)
3591 skip_prologue_sal (&sal);
3592
3593 return sal;
3594}
3595
42ddae10
PA
3596/* See symtab.h. */
3597
cd2bb709
PA
3598symtab_and_line
3599find_function_start_sal (CORE_ADDR func_addr, obj_section *section,
3600 bool funfirstline)
3601{
3602 symtab_and_line sal
3603 = find_function_start_sal_1 (func_addr, section, funfirstline);
3604
3605 /* find_function_start_sal_1 does a linetable search, so it finds
3606 the symtab and linenumber, but not a symbol. Fill in the
3607 function symbol too. */
3608 sal.symbol = find_pc_sect_containing_function (sal.pc, sal.section);
3609
3610 return sal;
3611}
3612
3613/* See symtab.h. */
3614
42ddae10
PA
3615symtab_and_line
3616find_function_start_sal (symbol *sym, bool funfirstline)
3617{
3618 fixup_symbol_section (sym, NULL);
3619 symtab_and_line sal
2b1ffcfd 3620 = find_function_start_sal_1 (BLOCK_ENTRY_PC (SYMBOL_BLOCK_VALUE (sym)),
cd2bb709
PA
3621 SYMBOL_OBJ_SECTION (symbol_objfile (sym), sym),
3622 funfirstline);
42ddae10
PA
3623 sal.symbol = sym;
3624 return sal;
3625}
3626
3627
8c7a1ee8
EZ
3628/* Given a function start address FUNC_ADDR and SYMTAB, find the first
3629 address for that function that has an entry in SYMTAB's line info
3630 table. If such an entry cannot be found, return FUNC_ADDR
3631 unaltered. */
eca864fe 3632
70221824 3633static CORE_ADDR
8c7a1ee8
EZ
3634skip_prologue_using_lineinfo (CORE_ADDR func_addr, struct symtab *symtab)
3635{
3636 CORE_ADDR func_start, func_end;
3637 struct linetable *l;
952a6d41 3638 int i;
8c7a1ee8
EZ
3639
3640 /* Give up if this symbol has no lineinfo table. */
8435453b 3641 l = SYMTAB_LINETABLE (symtab);
8c7a1ee8
EZ
3642 if (l == NULL)
3643 return func_addr;
3644
3645 /* Get the range for the function's PC values, or give up if we
3646 cannot, for some reason. */
3647 if (!find_pc_partial_function (func_addr, NULL, &func_start, &func_end))
3648 return func_addr;
3649
3650 /* Linetable entries are ordered by PC values, see the commentary in
3651 symtab.h where `struct linetable' is defined. Thus, the first
3652 entry whose PC is in the range [FUNC_START..FUNC_END[ is the
3653 address we are looking for. */
3654 for (i = 0; i < l->nitems; i++)
3655 {
3656 struct linetable_entry *item = &(l->item[i]);
3657
3658 /* Don't use line numbers of zero, they mark special entries in
3659 the table. See the commentary on symtab.h before the
3660 definition of struct linetable. */
3661 if (item->line > 0 && func_start <= item->pc && item->pc < func_end)
3662 return item->pc;
3663 }
3664
3665 return func_addr;
3666}
3667
059acae7
UW
3668/* Adjust SAL to the first instruction past the function prologue.
3669 If the PC was explicitly specified, the SAL is not changed.
5b0e2db4
AB
3670 If the line number was explicitly specified then the SAL can still be
3671 updated, unless the language for SAL is assembler, in which case the SAL
3672 will be left unchanged.
3673 If SAL is already past the prologue, then do nothing. */
eca864fe 3674
059acae7
UW
3675void
3676skip_prologue_sal (struct symtab_and_line *sal)
3677{
3678 struct symbol *sym;
3679 struct symtab_and_line start_sal;
8be455d7 3680 CORE_ADDR pc, saved_pc;
059acae7
UW
3681 struct obj_section *section;
3682 const char *name;
3683 struct objfile *objfile;
3684 struct gdbarch *gdbarch;
3977b71f 3685 const struct block *b, *function_block;
8be455d7 3686 int force_skip, skip;
c906108c 3687
a4b411d6 3688 /* Do not change the SAL if PC was specified explicitly. */
059acae7
UW
3689 if (sal->explicit_pc)
3690 return;
6c95b8df 3691
5b0e2db4
AB
3692 /* In assembly code, if the user asks for a specific line then we should
3693 not adjust the SAL. The user already has instruction level
3694 visibility in this case, so selecting a line other than one requested
3695 is likely to be the wrong choice. */
3696 if (sal->symtab != nullptr
3697 && sal->explicit_line
3698 && SYMTAB_LANGUAGE (sal->symtab) == language_asm)
3699 return;
3700
5ed8105e
PA
3701 scoped_restore_current_pspace_and_thread restore_pspace_thread;
3702
059acae7 3703 switch_to_program_space_and_thread (sal->pspace);
6c95b8df 3704
059acae7
UW
3705 sym = find_pc_sect_function (sal->pc, sal->section);
3706 if (sym != NULL)
bccdca4a 3707 {
059acae7
UW
3708 fixup_symbol_section (sym, NULL);
3709
08be3fe3 3710 objfile = symbol_objfile (sym);
2b1ffcfd 3711 pc = BLOCK_ENTRY_PC (SYMBOL_BLOCK_VALUE (sym));
08be3fe3 3712 section = SYMBOL_OBJ_SECTION (objfile, sym);
059acae7 3713 name = SYMBOL_LINKAGE_NAME (sym);
c906108c 3714 }
059acae7
UW
3715 else
3716 {
7c7b6655
TT
3717 struct bound_minimal_symbol msymbol
3718 = lookup_minimal_symbol_by_pc_section (sal->pc, sal->section);
433759f7 3719
7c7b6655 3720 if (msymbol.minsym == NULL)
5ed8105e 3721 return;
059acae7 3722
7c7b6655 3723 objfile = msymbol.objfile;
77e371c0 3724 pc = BMSYMBOL_VALUE_ADDRESS (msymbol);
efd66ac6
TT
3725 section = MSYMBOL_OBJ_SECTION (objfile, msymbol.minsym);
3726 name = MSYMBOL_LINKAGE_NAME (msymbol.minsym);
059acae7
UW
3727 }
3728
3729 gdbarch = get_objfile_arch (objfile);
3730
8be455d7
JK
3731 /* Process the prologue in two passes. In the first pass try to skip the
3732 prologue (SKIP is true) and verify there is a real need for it (indicated
3733 by FORCE_SKIP). If no such reason was found run a second pass where the
3734 prologue is not skipped (SKIP is false). */
059acae7 3735
8be455d7
JK
3736 skip = 1;
3737 force_skip = 1;
059acae7 3738
8be455d7
JK
3739 /* Be conservative - allow direct PC (without skipping prologue) only if we
3740 have proven the CU (Compilation Unit) supports it. sal->SYMTAB does not
3741 have to be set by the caller so we use SYM instead. */
08be3fe3
DE
3742 if (sym != NULL
3743 && COMPUNIT_LOCATIONS_VALID (SYMTAB_COMPUNIT (symbol_symtab (sym))))
8be455d7 3744 force_skip = 0;
059acae7 3745
8be455d7
JK
3746 saved_pc = pc;
3747 do
c906108c 3748 {
8be455d7 3749 pc = saved_pc;
4309257c 3750
8be455d7
JK
3751 /* If the function is in an unmapped overlay, use its unmapped LMA address,
3752 so that gdbarch_skip_prologue has something unique to work on. */
3753 if (section_is_overlay (section) && !section_is_mapped (section))
3754 pc = overlay_unmapped_address (pc, section);
3755
3756 /* Skip "first line" of function (which is actually its prologue). */
3757 pc += gdbarch_deprecated_function_start_offset (gdbarch);
591a12a1
UW
3758 if (gdbarch_skip_entrypoint_p (gdbarch))
3759 pc = gdbarch_skip_entrypoint (gdbarch, pc);
8be455d7 3760 if (skip)
46a62268 3761 pc = gdbarch_skip_prologue_noexcept (gdbarch, pc);
8be455d7
JK
3762
3763 /* For overlays, map pc back into its mapped VMA range. */
3764 pc = overlay_mapped_address (pc, section);
3765
3766 /* Calculate line number. */
059acae7 3767 start_sal = find_pc_sect_line (pc, section, 0);
8be455d7
JK
3768
3769 /* Check if gdbarch_skip_prologue left us in mid-line, and the next
3770 line is still part of the same function. */
3771 if (skip && start_sal.pc != pc
2b1ffcfd 3772 && (sym ? (BLOCK_ENTRY_PC (SYMBOL_BLOCK_VALUE (sym)) <= start_sal.end
b1d96efd 3773 && start_sal.end < BLOCK_END (SYMBOL_BLOCK_VALUE (sym)))
7cbd4a93
TT
3774 : (lookup_minimal_symbol_by_pc_section (start_sal.end, section).minsym
3775 == lookup_minimal_symbol_by_pc_section (pc, section).minsym)))
8be455d7
JK
3776 {
3777 /* First pc of next line */
3778 pc = start_sal.end;
3779 /* Recalculate the line number (might not be N+1). */
3780 start_sal = find_pc_sect_line (pc, section, 0);
3781 }
3782
3783 /* On targets with executable formats that don't have a concept of
3784 constructors (ELF with .init has, PE doesn't), gcc emits a call
3785 to `__main' in `main' between the prologue and before user
3786 code. */
3787 if (gdbarch_skip_main_prologue_p (gdbarch)
7ccffd7c 3788 && name && strcmp_iw (name, "main") == 0)
8be455d7
JK
3789 {
3790 pc = gdbarch_skip_main_prologue (gdbarch, pc);
3791 /* Recalculate the line number (might not be N+1). */
3792 start_sal = find_pc_sect_line (pc, section, 0);
3793 force_skip = 1;
3794 }
4309257c 3795 }
8be455d7 3796 while (!force_skip && skip--);
4309257c 3797
8c7a1ee8
EZ
3798 /* If we still don't have a valid source line, try to find the first
3799 PC in the lineinfo table that belongs to the same function. This
3800 happens with COFF debug info, which does not seem to have an
3801 entry in lineinfo table for the code after the prologue which has
3802 no direct relation to source. For example, this was found to be
3803 the case with the DJGPP target using "gcc -gcoff" when the
3804 compiler inserted code after the prologue to make sure the stack
3805 is aligned. */
8be455d7 3806 if (!force_skip && sym && start_sal.symtab == NULL)
8c7a1ee8 3807 {
08be3fe3 3808 pc = skip_prologue_using_lineinfo (pc, symbol_symtab (sym));
8c7a1ee8 3809 /* Recalculate the line number. */
059acae7 3810 start_sal = find_pc_sect_line (pc, section, 0);
8c7a1ee8
EZ
3811 }
3812
059acae7
UW
3813 /* If we're already past the prologue, leave SAL unchanged. Otherwise
3814 forward SAL to the end of the prologue. */
3815 if (sal->pc >= pc)
3816 return;
3817
3818 sal->pc = pc;
3819 sal->section = section;
059acae7
UW
3820 sal->symtab = start_sal.symtab;
3821 sal->line = start_sal.line;
3822 sal->end = start_sal.end;
c906108c 3823
edb3359d
DJ
3824 /* Check if we are now inside an inlined function. If we can,
3825 use the call site of the function instead. */
059acae7 3826 b = block_for_pc_sect (sal->pc, sal->section);
edb3359d
DJ
3827 function_block = NULL;
3828 while (b != NULL)
3829 {
3830 if (BLOCK_FUNCTION (b) != NULL && block_inlined_p (b))
3831 function_block = b;
3832 else if (BLOCK_FUNCTION (b) != NULL)
3833 break;
3834 b = BLOCK_SUPERBLOCK (b);
3835 }
3836 if (function_block != NULL
3837 && SYMBOL_LINE (BLOCK_FUNCTION (function_block)) != 0)
3838 {
059acae7 3839 sal->line = SYMBOL_LINE (BLOCK_FUNCTION (function_block));
08be3fe3 3840 sal->symtab = symbol_symtab (BLOCK_FUNCTION (function_block));
edb3359d 3841 }
c906108c 3842}
50641945 3843
f1f58506
DE
3844/* Given PC at the function's start address, attempt to find the
3845 prologue end using SAL information. Return zero if the skip fails.
3846
3847 A non-optimized prologue traditionally has one SAL for the function
3848 and a second for the function body. A single line function has
3849 them both pointing at the same line.
3850
3851 An optimized prologue is similar but the prologue may contain
3852 instructions (SALs) from the instruction body. Need to skip those
3853 while not getting into the function body.
3854
3855 The functions end point and an increasing SAL line are used as
3856 indicators of the prologue's endpoint.
3857
3858 This code is based on the function refine_prologue_limit
3859 (found in ia64). */
3860
3861CORE_ADDR
3862skip_prologue_using_sal (struct gdbarch *gdbarch, CORE_ADDR func_addr)
3863{
3864 struct symtab_and_line prologue_sal;
3865 CORE_ADDR start_pc;
3866 CORE_ADDR end_pc;
3867 const struct block *bl;
3868
3869 /* Get an initial range for the function. */
3870 find_pc_partial_function (func_addr, NULL, &start_pc, &end_pc);
3871 start_pc += gdbarch_deprecated_function_start_offset (gdbarch);
3872
3873 prologue_sal = find_pc_line (start_pc, 0);
3874 if (prologue_sal.line != 0)
3875 {
3876 /* For languages other than assembly, treat two consecutive line
3877 entries at the same address as a zero-instruction prologue.
3878 The GNU assembler emits separate line notes for each instruction
3879 in a multi-instruction macro, but compilers generally will not
3880 do this. */
3881 if (prologue_sal.symtab->language != language_asm)
3882 {
8435453b 3883 struct linetable *linetable = SYMTAB_LINETABLE (prologue_sal.symtab);
f1f58506
DE
3884 int idx = 0;
3885
3886 /* Skip any earlier lines, and any end-of-sequence marker
3887 from a previous function. */
3888 while (linetable->item[idx].pc != prologue_sal.pc
3889 || linetable->item[idx].line == 0)
3890 idx++;
3891
3892 if (idx+1 < linetable->nitems
3893 && linetable->item[idx+1].line != 0
3894 && linetable->item[idx+1].pc == start_pc)
3895 return start_pc;
3896 }
3897
3898 /* If there is only one sal that covers the entire function,
3899 then it is probably a single line function, like
3900 "foo(){}". */
3901 if (prologue_sal.end >= end_pc)
3902 return 0;
3903
3904 while (prologue_sal.end < end_pc)
3905 {
3906 struct symtab_and_line sal;
3907
3908 sal = find_pc_line (prologue_sal.end, 0);
3909 if (sal.line == 0)
3910 break;
3911 /* Assume that a consecutive SAL for the same (or larger)
3912 line mark the prologue -> body transition. */
3913 if (sal.line >= prologue_sal.line)
3914 break;
3915 /* Likewise if we are in a different symtab altogether
3916 (e.g. within a file included via #include).  */
3917 if (sal.symtab != prologue_sal.symtab)
3918 break;
3919
3920 /* The line number is smaller. Check that it's from the
3921 same function, not something inlined. If it's inlined,
3922 then there is no point comparing the line numbers. */
3923 bl = block_for_pc (prologue_sal.end);
3924 while (bl)
3925 {
3926 if (block_inlined_p (bl))
3927 break;
3928 if (BLOCK_FUNCTION (bl))
3929 {
3930 bl = NULL;
3931 break;
3932 }
3933 bl = BLOCK_SUPERBLOCK (bl);
3934 }
3935 if (bl != NULL)
3936 break;
3937
3938 /* The case in which compiler's optimizer/scheduler has
3939 moved instructions into the prologue. We look ahead in
3940 the function looking for address ranges whose
3941 corresponding line number is less the first one that we
3942 found for the function. This is more conservative then
3943 refine_prologue_limit which scans a large number of SALs
3944 looking for any in the prologue. */
3945 prologue_sal = sal;
3946 }
3947 }
3948
3949 if (prologue_sal.end < end_pc)
3950 /* Return the end of this line, or zero if we could not find a
3951 line. */
3952 return prologue_sal.end;
3953 else
3954 /* Don't return END_PC, which is past the end of the function. */
3955 return prologue_sal.pc;
3956}
bf223d3e
PA
3957
3958/* See symtab.h. */
3959
3960symbol *
3961find_function_alias_target (bound_minimal_symbol msymbol)
3962{
4024cf2b
PA
3963 CORE_ADDR func_addr;
3964 if (!msymbol_is_function (msymbol.objfile, msymbol.minsym, &func_addr))
bf223d3e
PA
3965 return NULL;
3966
4024cf2b 3967 symbol *sym = find_pc_function (func_addr);
bf223d3e
PA
3968 if (sym != NULL
3969 && SYMBOL_CLASS (sym) == LOC_BLOCK
2b1ffcfd 3970 && BLOCK_ENTRY_PC (SYMBOL_BLOCK_VALUE (sym)) == func_addr)
bf223d3e
PA
3971 return sym;
3972
3973 return NULL;
3974}
3975
f1f58506 3976\f
c906108c
SS
3977/* If P is of the form "operator[ \t]+..." where `...' is
3978 some legitimate operator text, return a pointer to the
3979 beginning of the substring of the operator text.
3980 Otherwise, return "". */
eca864fe 3981
96142726
TT
3982static const char *
3983operator_chars (const char *p, const char **end)
c906108c
SS
3984{
3985 *end = "";
8090b426 3986 if (!startswith (p, CP_OPERATOR_STR))
c906108c 3987 return *end;
8090b426 3988 p += CP_OPERATOR_LEN;
c906108c
SS
3989
3990 /* Don't get faked out by `operator' being part of a longer
3991 identifier. */
c5aa993b 3992 if (isalpha (*p) || *p == '_' || *p == '$' || *p == '\0')
c906108c
SS
3993 return *end;
3994
3995 /* Allow some whitespace between `operator' and the operator symbol. */
3996 while (*p == ' ' || *p == '\t')
3997 p++;
3998
c378eb4e 3999 /* Recognize 'operator TYPENAME'. */
c906108c 4000
c5aa993b 4001 if (isalpha (*p) || *p == '_' || *p == '$')
c906108c 4002 {
96142726 4003 const char *q = p + 1;
433759f7 4004
c5aa993b 4005 while (isalnum (*q) || *q == '_' || *q == '$')
c906108c
SS
4006 q++;
4007 *end = q;
4008 return p;
4009 }
4010
53e8ad3d
MS
4011 while (*p)
4012 switch (*p)
4013 {
4014 case '\\': /* regexp quoting */
4015 if (p[1] == '*')
4016 {
3e43a32a 4017 if (p[2] == '=') /* 'operator\*=' */
53e8ad3d
MS
4018 *end = p + 3;
4019 else /* 'operator\*' */
4020 *end = p + 2;
4021 return p;
4022 }
4023 else if (p[1] == '[')
4024 {
4025 if (p[2] == ']')
3e43a32a
MS
4026 error (_("mismatched quoting on brackets, "
4027 "try 'operator\\[\\]'"));
53e8ad3d
MS
4028 else if (p[2] == '\\' && p[3] == ']')
4029 {
4030 *end = p + 4; /* 'operator\[\]' */
4031 return p;
4032 }
4033 else
8a3fe4f8 4034 error (_("nothing is allowed between '[' and ']'"));
53e8ad3d 4035 }
9af17804 4036 else
53e8ad3d 4037 {
85102364 4038 /* Gratuitous quote: skip it and move on. */
53e8ad3d
MS
4039 p++;
4040 continue;
4041 }
4042 break;
4043 case '!':
4044 case '=':
4045 case '*':
4046 case '/':
4047 case '%':
4048 case '^':
4049 if (p[1] == '=')
4050 *end = p + 2;
4051 else
4052 *end = p + 1;
4053 return p;
4054 case '<':
4055 case '>':
4056 case '+':
4057 case '-':
4058 case '&':
4059 case '|':
4060 if (p[0] == '-' && p[1] == '>')
4061 {
c378eb4e 4062 /* Struct pointer member operator 'operator->'. */
53e8ad3d
MS
4063 if (p[2] == '*')
4064 {
4065 *end = p + 3; /* 'operator->*' */
4066 return p;
4067 }
4068 else if (p[2] == '\\')
4069 {
4070 *end = p + 4; /* Hopefully 'operator->\*' */
4071 return p;
4072 }
4073 else
4074 {
4075 *end = p + 2; /* 'operator->' */
4076 return p;
4077 }
4078 }
4079 if (p[1] == '=' || p[1] == p[0])
4080 *end = p + 2;
4081 else
4082 *end = p + 1;
4083 return p;
4084 case '~':
4085 case ',':
c5aa993b 4086 *end = p + 1;
53e8ad3d
MS
4087 return p;
4088 case '(':
4089 if (p[1] != ')')
3e43a32a
MS
4090 error (_("`operator ()' must be specified "
4091 "without whitespace in `()'"));
c5aa993b 4092 *end = p + 2;
53e8ad3d
MS
4093 return p;
4094 case '?':
4095 if (p[1] != ':')
3e43a32a
MS
4096 error (_("`operator ?:' must be specified "
4097 "without whitespace in `?:'"));
53e8ad3d
MS
4098 *end = p + 2;
4099 return p;
4100 case '[':
4101 if (p[1] != ']')
3e43a32a
MS
4102 error (_("`operator []' must be specified "
4103 "without whitespace in `[]'"));
53e8ad3d
MS
4104 *end = p + 2;
4105 return p;
4106 default:
8a3fe4f8 4107 error (_("`operator %s' not supported"), p);
53e8ad3d
MS
4108 break;
4109 }
4110
c906108c
SS
4111 *end = "";
4112 return *end;
4113}
c906108c 4114\f
c5aa993b 4115
28cd9371
PW
4116/* What part to match in a file name. */
4117
4118struct filename_partial_match_opts
4119{
4120 /* Only match the directory name part. */
491144b5 4121 bool dirname = false;
28cd9371
PW
4122
4123 /* Only match the basename part. */
491144b5 4124 bool basename = false;
28cd9371
PW
4125};
4126
9fdc877b
DE
4127/* Data structure to maintain printing state for output_source_filename. */
4128
4129struct output_source_filename_data
4130{
28cd9371
PW
4131 /* Output only filenames matching REGEXP. */
4132 std::string regexp;
4133 gdb::optional<compiled_regex> c_regexp;
4134 /* Possibly only match a part of the filename. */
4135 filename_partial_match_opts partial_match;
4136
4137
9fdc877b
DE
4138 /* Cache of what we've seen so far. */
4139 struct filename_seen_cache *filename_seen_cache;
4140
4141 /* Flag of whether we're printing the first one. */
4142 int first;
4143};
4144
c94fdfd0 4145/* Slave routine for sources_info. Force line breaks at ,'s.
9fdc877b
DE
4146 NAME is the name to print.
4147 DATA contains the state for printing and watching for duplicates. */
eca864fe 4148
c94fdfd0 4149static void
9fdc877b
DE
4150output_source_filename (const char *name,
4151 struct output_source_filename_data *data)
c94fdfd0
EZ
4152{
4153 /* Since a single source file can result in several partial symbol
4154 tables, we need to avoid printing it more than once. Note: if
4155 some of the psymtabs are read in and some are not, it gets
4156 printed both under "Source files for which symbols have been
4157 read" and "Source files for which symbols will be read in on
4158 demand". I consider this a reasonable way to deal with the
4159 situation. I'm not sure whether this can also happen for
4160 symtabs; it doesn't hurt to check. */
4161
4162 /* Was NAME already seen? */
bbf2f4df 4163 if (data->filename_seen_cache->seen (name))
c94fdfd0
EZ
4164 {
4165 /* Yes; don't print it again. */
4166 return;
4167 }
9fdc877b 4168
28cd9371
PW
4169 /* Does it match data->regexp? */
4170 if (data->c_regexp.has_value ())
4171 {
4172 const char *to_match;
4173 std::string dirname;
4174
4175 if (data->partial_match.dirname)
4176 {
4177 dirname = ldirname (name);
4178 to_match = dirname.c_str ();
4179 }
4180 else if (data->partial_match.basename)
4181 to_match = lbasename (name);
4182 else
4183 to_match = name;
4184
4185 if (data->c_regexp->exec (to_match, 0, NULL, 0) != 0)
4186 return;
4187 }
4188
4189 /* Print it and reset *FIRST. */
9fdc877b
DE
4190 if (! data->first)
4191 printf_filtered (", ");
4192 data->first = 0;
c906108c
SS
4193
4194 wrap_here ("");
1ed9f74e 4195 fputs_styled (name, file_name_style.style (), gdb_stdout);
c5aa993b 4196}
c906108c 4197
ccefe4c4 4198/* A callback for map_partial_symbol_filenames. */
eca864fe 4199
ccefe4c4 4200static void
533a737e 4201output_partial_symbol_filename (const char *filename, const char *fullname,
ccefe4c4
TT
4202 void *data)
4203{
19ba03f4
SM
4204 output_source_filename (fullname ? fullname : filename,
4205 (struct output_source_filename_data *) data);
ccefe4c4
TT
4206}
4207
28cd9371
PW
4208using isrc_flag_option_def
4209 = gdb::option::flag_option_def<filename_partial_match_opts>;
4210
4211static const gdb::option::option_def info_sources_option_defs[] = {
4212
4213 isrc_flag_option_def {
4214 "dirname",
4215 [] (filename_partial_match_opts *opts) { return &opts->dirname; },
4216 N_("Show only the files having a dirname matching REGEXP."),
4217 },
4218
4219 isrc_flag_option_def {
4220 "basename",
4221 [] (filename_partial_match_opts *opts) { return &opts->basename; },
4222 N_("Show only the files having a basename matching REGEXP."),
4223 },
4224
4225};
4226
4227/* Create an option_def_group for the "info sources" options, with
4228 ISRC_OPTS as context. */
4229
4230static inline gdb::option::option_def_group
4231make_info_sources_options_def_group (filename_partial_match_opts *isrc_opts)
4232{
4233 return {{info_sources_option_defs}, isrc_opts};
4234}
4235
4236/* Prints the header message for the source files that will be printed
4237 with the matching info present in DATA. SYMBOL_MSG is a message
4238 that tells what will or has been done with the symbols of the
4239 matching source files. */
4240
c906108c 4241static void
28cd9371
PW
4242print_info_sources_header (const char *symbol_msg,
4243 const struct output_source_filename_data *data)
4244{
4245 puts_filtered (symbol_msg);
4246 if (!data->regexp.empty ())
4247 {
4248 if (data->partial_match.dirname)
4249 printf_filtered (_("(dirname matching regular expression \"%s\")"),
4250 data->regexp.c_str ());
4251 else if (data->partial_match.basename)
4252 printf_filtered (_("(basename matching regular expression \"%s\")"),
4253 data->regexp.c_str ());
4254 else
4255 printf_filtered (_("(filename matching regular expression \"%s\")"),
4256 data->regexp.c_str ());
4257 }
4258 puts_filtered ("\n");
4259}
4260
4261/* Completer for "info sources". */
4262
4263static void
4264info_sources_command_completer (cmd_list_element *ignore,
4265 completion_tracker &tracker,
4266 const char *text, const char *word)
4267{
4268 const auto group = make_info_sources_options_def_group (nullptr);
4269 if (gdb::option::complete_options
4270 (tracker, &text, gdb::option::PROCESS_OPTIONS_UNKNOWN_IS_OPERAND, group))
4271 return;
4272}
4273
4274static void
4275info_sources_command (const char *args, int from_tty)
c906108c 4276{
9fdc877b 4277 struct output_source_filename_data data;
c5aa993b 4278
c906108c
SS
4279 if (!have_full_symbols () && !have_partial_symbols ())
4280 {
8a3fe4f8 4281 error (_("No symbol table is loaded. Use the \"file\" command."));
c906108c 4282 }
c5aa993b 4283
bbf2f4df
PA
4284 filename_seen_cache filenames_seen;
4285
28cd9371
PW
4286 auto group = make_info_sources_options_def_group (&data.partial_match);
4287
4288 gdb::option::process_options
4289 (&args, gdb::option::PROCESS_OPTIONS_UNKNOWN_IS_ERROR, group);
9fdc877b 4290
28cd9371
PW
4291 if (args != NULL && *args != '\000')
4292 data.regexp = args;
c906108c 4293
28cd9371 4294 data.filename_seen_cache = &filenames_seen;
9fdc877b 4295 data.first = 1;
28cd9371
PW
4296
4297 if (data.partial_match.dirname && data.partial_match.basename)
4298 error (_("You cannot give both -basename and -dirname to 'info sources'."));
4299 if ((data.partial_match.dirname || data.partial_match.basename)
4300 && data.regexp.empty ())
4301 error (_("Missing REGEXP for 'info sources'."));
4302
4303 if (data.regexp.empty ())
4304 data.c_regexp.reset ();
4305 else
4306 {
4307 int cflags = REG_NOSUB;
4308#ifdef HAVE_CASE_INSENSITIVE_FILE_SYSTEM
4309 cflags |= REG_ICASE;
4310#endif
4311 data.c_regexp.emplace (data.regexp.c_str (), cflags,
4312 _("Invalid regexp"));
4313 }
4314
4315 print_info_sources_header
4316 (_("Source files for which symbols have been read in:\n"), &data);
4317
2030c079 4318 for (objfile *objfile : current_program_space->objfiles ())
8b31193a 4319 {
b669c953 4320 for (compunit_symtab *cu : objfile->compunits ())
8b31193a
TT
4321 {
4322 for (symtab *s : compunit_filetabs (cu))
4323 {
4324 const char *fullname = symtab_to_fullname (s);
433759f7 4325
8b31193a
TT
4326 output_source_filename (fullname, &data);
4327 }
4328 }
4329 }
c906108c 4330 printf_filtered ("\n\n");
c5aa993b 4331
28cd9371
PW
4332 print_info_sources_header
4333 (_("Source files for which symbols will be read in on demand:\n"), &data);
c906108c 4334
bbf2f4df 4335 filenames_seen.clear ();
9fdc877b 4336 data.first = 1;
bb4142cf
DE
4337 map_symbol_filenames (output_partial_symbol_filename, &data,
4338 1 /*need_fullname*/);
c906108c
SS
4339 printf_filtered ("\n");
4340}
4341
fbd9ab74
JK
4342/* Compare FILE against all the NFILES entries of FILES. If BASENAMES is
4343 non-zero compare only lbasename of FILES. */
4344
c906108c 4345static int
96142726 4346file_matches (const char *file, const char *files[], int nfiles, int basenames)
c906108c
SS
4347{
4348 int i;
4349
4350 if (file != NULL && nfiles != 0)
4351 {
4352 for (i = 0; i < nfiles; i++)
c5aa993b 4353 {
fbd9ab74
JK
4354 if (compare_filenames_for_search (file, (basenames
4355 ? lbasename (files[i])
4356 : files[i])))
c5aa993b
JM
4357 return 1;
4358 }
c906108c
SS
4359 }
4360 else if (nfiles == 0)
4361 return 1;
4362 return 0;
4363}
4364
b52109bc 4365/* Helper function for sort_search_symbols_remove_dups and qsort. Can only
434d2d4f 4366 sort symbols, not minimal symbols. */
eca864fe 4367
b9c04fb2
TT
4368int
4369symbol_search::compare_search_syms (const symbol_search &sym_a,
4370 const symbol_search &sym_b)
434d2d4f 4371{
b52109bc
DE
4372 int c;
4373
b9c04fb2
TT
4374 c = FILENAME_CMP (symbol_symtab (sym_a.symbol)->filename,
4375 symbol_symtab (sym_b.symbol)->filename);
b52109bc
DE
4376 if (c != 0)
4377 return c;
434d2d4f 4378
b9c04fb2
TT
4379 if (sym_a.block != sym_b.block)
4380 return sym_a.block - sym_b.block;
b52109bc 4381
b9c04fb2
TT
4382 return strcmp (SYMBOL_PRINT_NAME (sym_a.symbol),
4383 SYMBOL_PRINT_NAME (sym_b.symbol));
434d2d4f
DJ
4384}
4385
12615cba
PW
4386/* Returns true if the type_name of symbol_type of SYM matches TREG.
4387 If SYM has no symbol_type or symbol_name, returns false. */
4388
4389bool
4390treg_matches_sym_type_name (const compiled_regex &treg,
4391 const struct symbol *sym)
4392{
4393 struct type *sym_type;
4394 std::string printed_sym_type_name;
4395
4396 if (symbol_lookup_debug > 1)
4397 {
4398 fprintf_unfiltered (gdb_stdlog,
4399 "treg_matches_sym_type_name\n sym %s\n",
4400 SYMBOL_NATURAL_NAME (sym));
4401 }
4402
4403 sym_type = SYMBOL_TYPE (sym);
4404 if (sym_type == NULL)
4405 return false;
4406
43d397ca
PW
4407 {
4408 scoped_switch_to_sym_language_if_auto l (sym);
12615cba 4409
12615cba 4410 printed_sym_type_name = type_to_string (sym_type);
43d397ca
PW
4411 }
4412
12615cba
PW
4413
4414 if (symbol_lookup_debug > 1)
4415 {
4416 fprintf_unfiltered (gdb_stdlog,
4417 " sym_type_name %s\n",
4418 printed_sym_type_name.c_str ());
4419 }
4420
4421
4422 if (printed_sym_type_name.empty ())
4423 return false;
4424
4425 return treg.exec (printed_sym_type_name.c_str (), 0, NULL, 0) == 0;
4426}
4427
4428
b9c04fb2 4429/* Sort the symbols in RESULT and remove duplicates. */
b52109bc
DE
4430
4431static void
b9c04fb2 4432sort_search_symbols_remove_dups (std::vector<symbol_search> *result)
434d2d4f 4433{
b9c04fb2
TT
4434 std::sort (result->begin (), result->end ());
4435 result->erase (std::unique (result->begin (), result->end ()),
4436 result->end ());
434d2d4f 4437}
5bd98722 4438
c906108c 4439/* Search the symbol table for matches to the regular expression REGEXP,
b9c04fb2 4440 returning the results.
c906108c
SS
4441
4442 Only symbols of KIND are searched:
e8930875 4443 VARIABLES_DOMAIN - search all symbols, excluding functions, type names,
12615cba
PW
4444 and constants (enums).
4445 if T_REGEXP is not NULL, only returns var that have
4446 a type matching regular expression T_REGEXP.
176620f1
EZ
4447 FUNCTIONS_DOMAIN - search all functions
4448 TYPES_DOMAIN - search all type names
7b08b9eb 4449 ALL_DOMAIN - an internal error for this function
c906108c 4450
b52109bc
DE
4451 Within each file the results are sorted locally; each symtab's global and
4452 static blocks are separately alphabetized.
4acfdd20
AB
4453 Duplicate entries are removed.
4454
4455 When EXCLUDE_MINSYMS is false then matching minsyms are also returned,
4456 otherwise they are excluded. */
c378eb4e 4457
b9c04fb2 4458std::vector<symbol_search>
96142726 4459search_symbols (const char *regexp, enum search_domain kind,
12615cba 4460 const char *t_regexp,
4acfdd20
AB
4461 int nfiles, const char *files[],
4462 bool exclude_minsyms)
c906108c 4463{
346d1dfe 4464 const struct blockvector *bv;
582942f4 4465 const struct block *b;
52f0bd74 4466 int i = 0;
8157b174 4467 struct block_iterator iter;
52f0bd74 4468 struct symbol *sym;
c906108c 4469 int found_misc = 0;
bc043ef3 4470 static const enum minimal_symbol_type types[]
eb86c5e2 4471 = {mst_data, mst_text, mst_unknown};
bc043ef3 4472 static const enum minimal_symbol_type types2[]
eb86c5e2 4473 = {mst_bss, mst_file_text, mst_unknown};
bc043ef3 4474 static const enum minimal_symbol_type types3[]
eb86c5e2 4475 = {mst_file_data, mst_solib_trampoline, mst_unknown};
bc043ef3 4476 static const enum minimal_symbol_type types4[]
eb86c5e2 4477 = {mst_file_bss, mst_text_gnu_ifunc, mst_unknown};
c906108c
SS
4478 enum minimal_symbol_type ourtype;
4479 enum minimal_symbol_type ourtype2;
4480 enum minimal_symbol_type ourtype3;
4481 enum minimal_symbol_type ourtype4;
b9c04fb2 4482 std::vector<symbol_search> result;
2d7cc5c7 4483 gdb::optional<compiled_regex> preg;
12615cba 4484 gdb::optional<compiled_regex> treg;
c906108c 4485
59c35742 4486 gdb_assert (kind != ALL_DOMAIN);
e8930875 4487
8903c50d
TT
4488 ourtype = types[kind];
4489 ourtype2 = types2[kind];
4490 ourtype3 = types3[kind];
4491 ourtype4 = types4[kind];
c906108c 4492
c906108c
SS
4493 if (regexp != NULL)
4494 {
4495 /* Make sure spacing is right for C++ operators.
4496 This is just a courtesy to make the matching less sensitive
4497 to how many spaces the user leaves between 'operator'
c378eb4e 4498 and <TYPENAME> or <OPERATOR>. */
96142726
TT
4499 const char *opend;
4500 const char *opname = operator_chars (regexp, &opend);
433759f7 4501
c906108c 4502 if (*opname)
c5aa993b 4503 {
3e43a32a
MS
4504 int fix = -1; /* -1 means ok; otherwise number of
4505 spaces needed. */
433759f7 4506
c5aa993b
JM
4507 if (isalpha (*opname) || *opname == '_' || *opname == '$')
4508 {
c378eb4e 4509 /* There should 1 space between 'operator' and 'TYPENAME'. */
c5aa993b
JM
4510 if (opname[-1] != ' ' || opname[-2] == ' ')
4511 fix = 1;
4512 }
4513 else
4514 {
c378eb4e 4515 /* There should 0 spaces between 'operator' and 'OPERATOR'. */
c5aa993b
JM
4516 if (opname[-1] == ' ')
4517 fix = 0;
4518 }
c378eb4e 4519 /* If wrong number of spaces, fix it. */
c5aa993b
JM
4520 if (fix >= 0)
4521 {
045f55a6 4522 char *tmp = (char *) alloca (8 + fix + strlen (opname) + 1);
433759f7 4523
c5aa993b
JM
4524 sprintf (tmp, "operator%.*s%s", fix, " ", opname);
4525 regexp = tmp;
4526 }
4527 }
4528
2d7cc5c7
PA
4529 int cflags = REG_NOSUB | (case_sensitivity == case_sensitive_off
4530 ? REG_ICASE : 0);
4531 preg.emplace (regexp, cflags, _("Invalid regexp"));
c906108c
SS
4532 }
4533
12615cba
PW
4534 if (t_regexp != NULL)
4535 {
4536 int cflags = REG_NOSUB | (case_sensitivity == case_sensitive_off
4537 ? REG_ICASE : 0);
4538 treg.emplace (t_regexp, cflags, _("Invalid regexp"));
4539 }
4540
c906108c
SS
4541 /* Search through the partial symtabs *first* for all symbols
4542 matching the regexp. That way we don't have to reproduce all of
c378eb4e 4543 the machinery below. */
14bc53a8
PA
4544 expand_symtabs_matching ([&] (const char *filename, bool basenames)
4545 {
4546 return file_matches (filename, files, nfiles,
4547 basenames);
4548 },
b5ec771e 4549 lookup_name_info::match_any (),
14bc53a8
PA
4550 [&] (const char *symname)
4551 {
12615cba
PW
4552 return (!preg.has_value ()
4553 || preg->exec (symname,
4554 0, NULL, 0) == 0);
14bc53a8
PA
4555 },
4556 NULL,
4557 kind);
c906108c
SS
4558
4559 /* Here, we search through the minimal symbol tables for functions
4560 and variables that match, and force their symbols to be read.
4561 This is in particular necessary for demangled variable names,
4562 which are no longer put into the partial symbol tables.
4563 The symbol will then be found during the scan of symtabs below.
4564
4565 For functions, find_pc_symtab should succeed if we have debug info
422d65e7
DE
4566 for the function, for variables we have to call
4567 lookup_symbol_in_objfile_from_linkage_name to determine if the variable
4568 has debug info.
c906108c 4569 If the lookup fails, set found_misc so that we will rescan to print
422d65e7
DE
4570 any matching symbols without debug info.
4571 We only search the objfile the msymbol came from, we no longer search
4572 all objfiles. In large programs (1000s of shared libs) searching all
4573 objfiles is not worth the pain. */
c906108c 4574
176620f1 4575 if (nfiles == 0 && (kind == VARIABLES_DOMAIN || kind == FUNCTIONS_DOMAIN))
c906108c 4576 {
2030c079 4577 for (objfile *objfile : current_program_space->objfiles ())
5325b9bf 4578 {
7932255d 4579 for (minimal_symbol *msymbol : objfile->msymbols ())
5325b9bf
TT
4580 {
4581 QUIT;
89295b4d 4582
5325b9bf
TT
4583 if (msymbol->created_by_gdb)
4584 continue;
422d65e7 4585
5325b9bf
TT
4586 if (MSYMBOL_TYPE (msymbol) == ourtype
4587 || MSYMBOL_TYPE (msymbol) == ourtype2
4588 || MSYMBOL_TYPE (msymbol) == ourtype3
4589 || MSYMBOL_TYPE (msymbol) == ourtype4)
4590 {
4591 if (!preg.has_value ()
4592 || preg->exec (MSYMBOL_NATURAL_NAME (msymbol), 0,
4593 NULL, 0) == 0)
4594 {
4595 /* Note: An important side-effect of these
4596 lookup functions is to expand the symbol
4597 table if msymbol is found, for the benefit of
d8aeb77f 4598 the next loop on compunits. */
5325b9bf
TT
4599 if (kind == FUNCTIONS_DOMAIN
4600 ? (find_pc_compunit_symtab
4601 (MSYMBOL_VALUE_ADDRESS (objfile, msymbol))
4602 == NULL)
4603 : (lookup_symbol_in_objfile_from_linkage_name
4604 (objfile, MSYMBOL_LINKAGE_NAME (msymbol),
4605 VAR_DOMAIN)
4606 .symbol == NULL))
4607 found_misc = 1;
4608 }
4609 }
4610 }
4611 }
c906108c
SS
4612 }
4613
2030c079 4614 for (objfile *objfile : current_program_space->objfiles ())
d8aeb77f 4615 {
b669c953 4616 for (compunit_symtab *cust : objfile->compunits ())
d8aeb77f
TT
4617 {
4618 bv = COMPUNIT_BLOCKVECTOR (cust);
4619 for (i = GLOBAL_BLOCK; i <= STATIC_BLOCK; i++)
4620 {
4621 b = BLOCKVECTOR_BLOCK (bv, i);
4622 ALL_BLOCK_SYMBOLS (b, iter, sym)
4623 {
4624 struct symtab *real_symtab = symbol_symtab (sym);
4625
4626 QUIT;
4627
4628 /* Check first sole REAL_SYMTAB->FILENAME. It does
4629 not need to be a substring of symtab_to_fullname as
4630 it may contain "./" etc. */
4631 if ((file_matches (real_symtab->filename, files, nfiles, 0)
4632 || ((basenames_may_differ
4633 || file_matches (lbasename (real_symtab->filename),
4634 files, nfiles, 1))
4635 && file_matches (symtab_to_fullname (real_symtab),
4636 files, nfiles, 0)))
4637 && ((!preg.has_value ()
4638 || preg->exec (SYMBOL_NATURAL_NAME (sym), 0,
4639 NULL, 0) == 0)
4640 && ((kind == VARIABLES_DOMAIN
4641 && SYMBOL_CLASS (sym) != LOC_TYPEDEF
4642 && SYMBOL_CLASS (sym) != LOC_UNRESOLVED
4643 && SYMBOL_CLASS (sym) != LOC_BLOCK
4644 /* LOC_CONST can be used for more than
4645 just enums, e.g., c++ static const
4646 members. We only want to skip enums
4647 here. */
4648 && !(SYMBOL_CLASS (sym) == LOC_CONST
4649 && (TYPE_CODE (SYMBOL_TYPE (sym))
4650 == TYPE_CODE_ENUM))
4651 && (!treg.has_value ()
4652 || treg_matches_sym_type_name (*treg, sym)))
4653 || (kind == FUNCTIONS_DOMAIN
4654 && SYMBOL_CLASS (sym) == LOC_BLOCK
4655 && (!treg.has_value ()
4656 || treg_matches_sym_type_name (*treg,
4657 sym)))
4658 || (kind == TYPES_DOMAIN
d8f27c60 4659 && SYMBOL_CLASS (sym) == LOC_TYPEDEF
59c35742
AB
4660 && SYMBOL_DOMAIN (sym) != MODULE_DOMAIN)
4661 || (kind == MODULES_DOMAIN
4662 && SYMBOL_DOMAIN (sym) == MODULE_DOMAIN
4663 && SYMBOL_LINE (sym) != 0))))
d8aeb77f
TT
4664 {
4665 /* match */
4666 result.emplace_back (i, sym);
4667 }
4668 }
4669 }
4670 }
4671 }
c906108c 4672
b9c04fb2
TT
4673 if (!result.empty ())
4674 sort_search_symbols_remove_dups (&result);
b52109bc 4675
c906108c 4676 /* If there are no eyes, avoid all contact. I mean, if there are
a8462bbf
PW
4677 no debug symbols, then add matching minsyms. But if the user wants
4678 to see symbols matching a type regexp, then never give a minimal symbol,
4679 as we assume that a minimal symbol does not have a type. */
c906108c 4680
a8462bbf 4681 if ((found_misc || (nfiles == 0 && kind != FUNCTIONS_DOMAIN))
4acfdd20 4682 && !exclude_minsyms
a8462bbf 4683 && !treg.has_value ())
c906108c 4684 {
2030c079 4685 for (objfile *objfile : current_program_space->objfiles ())
5325b9bf 4686 {
7932255d 4687 for (minimal_symbol *msymbol : objfile->msymbols ())
5325b9bf
TT
4688 {
4689 QUIT;
89295b4d 4690
5325b9bf
TT
4691 if (msymbol->created_by_gdb)
4692 continue;
422d65e7 4693
5325b9bf
TT
4694 if (MSYMBOL_TYPE (msymbol) == ourtype
4695 || MSYMBOL_TYPE (msymbol) == ourtype2
4696 || MSYMBOL_TYPE (msymbol) == ourtype3
4697 || MSYMBOL_TYPE (msymbol) == ourtype4)
4698 {
4699 if (!preg.has_value ()
4700 || preg->exec (MSYMBOL_NATURAL_NAME (msymbol), 0,
4701 NULL, 0) == 0)
4702 {
4703 /* For functions we can do a quick check of whether the
4704 symbol might be found via find_pc_symtab. */
4705 if (kind != FUNCTIONS_DOMAIN
4706 || (find_pc_compunit_symtab
4707 (MSYMBOL_VALUE_ADDRESS (objfile, msymbol))
4708 == NULL))
4709 {
4710 if (lookup_symbol_in_objfile_from_linkage_name
4711 (objfile, MSYMBOL_LINKAGE_NAME (msymbol),
4712 VAR_DOMAIN)
4713 .symbol == NULL)
4714 {
4715 /* match */
4716 result.emplace_back (i, msymbol, objfile);
4717 }
4718 }
4719 }
4720 }
4721 }
4722 }
c906108c
SS
4723 }
4724
b9c04fb2 4725 return result;
c906108c
SS
4726}
4727
4728/* Helper function for symtab_symbol_info, this function uses
4729 the data returned from search_symbols() to print information
c7dcbf88
AA
4730 regarding the match to gdb_stdout. If LAST is not NULL,
4731 print file and line number information for the symbol as
4732 well. Skip printing the filename if it matches LAST. */
c378eb4e 4733
c906108c 4734static void
8903c50d 4735print_symbol_info (enum search_domain kind,
d01060f0 4736 struct symbol *sym,
05cba821 4737 int block, const char *last)
c906108c 4738{
43d397ca 4739 scoped_switch_to_sym_language_if_auto l (sym);
08be3fe3 4740 struct symtab *s = symbol_symtab (sym);
05cba821 4741
c7dcbf88 4742 if (last != NULL)
c906108c 4743 {
c7dcbf88 4744 const char *s_filename = symtab_to_filename_for_display (s);
c906108c 4745
c7dcbf88
AA
4746 if (filename_cmp (last, s_filename) != 0)
4747 {
6a831f06
PA
4748 printf_filtered (_("\nFile %ps:\n"),
4749 styled_string (file_name_style.style (),
4750 s_filename));
c7dcbf88
AA
4751 }
4752
4753 if (SYMBOL_LINE (sym) != 0)
4754 printf_filtered ("%d:\t", SYMBOL_LINE (sym));
4755 else
4756 puts_filtered ("\t");
4757 }
b744723f 4758
176620f1 4759 if (kind != TYPES_DOMAIN && block == STATIC_BLOCK)
c906108c 4760 printf_filtered ("static ");
c5aa993b 4761
c378eb4e 4762 /* Typedef that is not a C++ class. */
176620f1
EZ
4763 if (kind == TYPES_DOMAIN
4764 && SYMBOL_DOMAIN (sym) != STRUCT_DOMAIN)
eb86c5e2
AB
4765 {
4766 /* FIXME: For C (and C++) we end up with a difference in output here
4767 between how a typedef is printed, and non-typedefs are printed.
4768 The TYPEDEF_PRINT code places a ";" at the end in an attempt to
4769 appear C-like, while TYPE_PRINT doesn't.
4770
4771 For the struct printing case below, things are worse, we force
4772 printing of the ";" in this function, which is going to be wrong
4773 for languages that don't require a ";" between statements. */
4774 if (TYPE_CODE (SYMBOL_TYPE (sym)) == TYPE_CODE_TYPEDEF)
4775 typedef_print (SYMBOL_TYPE (sym), sym, gdb_stdout);
4776 else
e1709896
AB
4777 type_print (SYMBOL_TYPE (sym), "", gdb_stdout, -1);
4778 printf_filtered ("\n");
eb86c5e2 4779 }
c378eb4e 4780 /* variable, func, or typedef-that-is-c++-class. */
d50bd42b
DE
4781 else if (kind < TYPES_DOMAIN
4782 || (kind == TYPES_DOMAIN
4783 && SYMBOL_DOMAIN (sym) == STRUCT_DOMAIN))
c906108c
SS
4784 {
4785 type_print (SYMBOL_TYPE (sym),
c5aa993b 4786 (SYMBOL_CLASS (sym) == LOC_TYPEDEF
de5ad195 4787 ? "" : SYMBOL_PRINT_NAME (sym)),
c5aa993b 4788 gdb_stdout, 0);
c906108c
SS
4789
4790 printf_filtered (";\n");
4791 }
59c35742
AB
4792 /* Printing of modules is currently done here, maybe at some future
4793 point we might want a language specific method to print the module
4794 symbol so that we can customise the output more. */
4795 else if (kind == MODULES_DOMAIN)
4796 printf_filtered ("%s\n", SYMBOL_PRINT_NAME (sym));
c906108c
SS
4797}
4798
4799/* This help function for symtab_symbol_info() prints information
c378eb4e
MS
4800 for non-debugging symbols to gdb_stdout. */
4801
c906108c 4802static void
7c7b6655 4803print_msymbol_info (struct bound_minimal_symbol msymbol)
c906108c 4804{
7c7b6655 4805 struct gdbarch *gdbarch = get_objfile_arch (msymbol.objfile);
3ac4495a
MS
4806 char *tmp;
4807
d80b854b 4808 if (gdbarch_addr_bit (gdbarch) <= 32)
77e371c0 4809 tmp = hex_string_custom (BMSYMBOL_VALUE_ADDRESS (msymbol)
bb599908
PH
4810 & (CORE_ADDR) 0xffffffff,
4811 8);
3ac4495a 4812 else
77e371c0 4813 tmp = hex_string_custom (BMSYMBOL_VALUE_ADDRESS (msymbol),
bb599908 4814 16);
6a831f06
PA
4815
4816 ui_file_style sym_style = (msymbol.minsym->text_p ()
4817 ? function_name_style.style ()
4818 : ui_file_style ());
4819
4820 printf_filtered (_("%ps %ps\n"),
4821 styled_string (address_style.style (), tmp),
4822 styled_string (sym_style,
4823 MSYMBOL_PRINT_NAME (msymbol.minsym)));
c906108c
SS
4824}
4825
4826/* This is the guts of the commands "info functions", "info types", and
c378eb4e 4827 "info variables". It calls search_symbols to find all matches and then
c906108c 4828 print_[m]symbol_info to print out some useful information about the
c378eb4e
MS
4829 matches. */
4830
c906108c 4831static void
4acfdd20 4832symtab_symbol_info (bool quiet, bool exclude_minsyms,
12615cba
PW
4833 const char *regexp, enum search_domain kind,
4834 const char *t_regexp, int from_tty)
c906108c 4835{
bc043ef3 4836 static const char * const classnames[] =
59c35742 4837 {"variable", "function", "type", "module"};
c7dcbf88 4838 const char *last_filename = "";
c906108c
SS
4839 int first = 1;
4840
59c35742 4841 gdb_assert (kind != ALL_DOMAIN);
e8930875 4842
b16507e0
AB
4843 if (regexp != nullptr && *regexp == '\0')
4844 regexp = nullptr;
4845
c378eb4e 4846 /* Must make sure that if we're interrupted, symbols gets freed. */
12615cba 4847 std::vector<symbol_search> symbols = search_symbols (regexp, kind,
4acfdd20
AB
4848 t_regexp, 0, NULL,
4849 exclude_minsyms);
c906108c 4850
12615cba
PW
4851 if (!quiet)
4852 {
4853 if (regexp != NULL)
4854 {
4855 if (t_regexp != NULL)
4856 printf_filtered
4857 (_("All %ss matching regular expression \"%s\""
0c95f9ed 4858 " with type matching regular expression \"%s\":\n"),
12615cba
PW
4859 classnames[kind], regexp, t_regexp);
4860 else
4861 printf_filtered (_("All %ss matching regular expression \"%s\":\n"),
4862 classnames[kind], regexp);
4863 }
4864 else
4865 {
4866 if (t_regexp != NULL)
4867 printf_filtered
4868 (_("All defined %ss"
0c95f9ed 4869 " with type matching regular expression \"%s\" :\n"),
12615cba
PW
4870 classnames[kind], t_regexp);
4871 else
4872 printf_filtered (_("All defined %ss:\n"), classnames[kind]);
4873 }
4874 }
c906108c 4875
b9c04fb2 4876 for (const symbol_search &p : symbols)
c906108c
SS
4877 {
4878 QUIT;
4879
b9c04fb2 4880 if (p.msymbol.minsym != NULL)
c5aa993b
JM
4881 {
4882 if (first)
4883 {
12615cba
PW
4884 if (!quiet)
4885 printf_filtered (_("\nNon-debugging symbols:\n"));
c5aa993b
JM
4886 first = 0;
4887 }
b9c04fb2 4888 print_msymbol_info (p.msymbol);
c5aa993b 4889 }
c906108c 4890 else
c5aa993b
JM
4891 {
4892 print_symbol_info (kind,
b9c04fb2
TT
4893 p.symbol,
4894 p.block,
c5aa993b 4895 last_filename);
d01060f0 4896 last_filename
b9c04fb2 4897 = symtab_to_filename_for_display (symbol_symtab (p.symbol));
c5aa993b 4898 }
c906108c 4899 }
c906108c
SS
4900}
4901
4acfdd20
AB
4902/* Structure to hold the values of the options used by the 'info variables'
4903 and 'info functions' commands. These correspond to the -q, -t, and -n
4904 options. */
4905
4906struct info_print_options
4907{
491144b5
CB
4908 bool quiet = false;
4909 bool exclude_minsyms = false;
4acfdd20
AB
4910 char *type_regexp = nullptr;
4911
4912 ~info_print_options ()
4913 {
4914 xfree (type_regexp);
4915 }
4916};
4917
4918/* The options used by the 'info variables' and 'info functions'
4919 commands. */
4920
4921static const gdb::option::option_def info_print_options_defs[] = {
4922 gdb::option::boolean_option_def<info_print_options> {
4923 "q",
4924 [] (info_print_options *opt) { return &opt->quiet; },
4925 nullptr, /* show_cmd_cb */
4926 nullptr /* set_doc */
4927 },
4928
4929 gdb::option::boolean_option_def<info_print_options> {
4930 "n",
4931 [] (info_print_options *opt) { return &opt->exclude_minsyms; },
4932 nullptr, /* show_cmd_cb */
4933 nullptr /* set_doc */
4934 },
4935
4936 gdb::option::string_option_def<info_print_options> {
4937 "t",
4938 [] (info_print_options *opt) { return &opt->type_regexp; },
4939 nullptr, /* show_cmd_cb */
4940 nullptr /* set_doc */
4941 }
4942};
4943
4944/* Returns the option group used by 'info variables' and 'info
4945 functions'. */
4946
4947static gdb::option::option_def_group
4948make_info_print_options_def_group (info_print_options *opts)
4949{
4950 return {{info_print_options_defs}, opts};
4951}
4952
4953/* Command completer for 'info variables' and 'info functions'. */
4954
4955static void
4956info_print_command_completer (struct cmd_list_element *ignore,
4957 completion_tracker &tracker,
4958 const char *text, const char * /* word */)
4959{
4960 const auto group
4961 = make_info_print_options_def_group (nullptr);
4962 if (gdb::option::complete_options
4963 (tracker, &text, gdb::option::PROCESS_OPTIONS_UNKNOWN_IS_OPERAND, group))
4964 return;
4965
4966 const char *word = advance_to_expression_complete_word_point (tracker, text);
4967 symbol_completer (ignore, tracker, text, word);
4968}
4969
b16507e0
AB
4970/* Implement the 'info variables' command. */
4971
0b39b52e 4972static void
12615cba 4973info_variables_command (const char *args, int from_tty)
0b39b52e 4974{
b16507e0 4975 info_print_options opts;
4acfdd20
AB
4976 auto grp = make_info_print_options_def_group (&opts);
4977 gdb::option::process_options
4978 (&args, gdb::option::PROCESS_OPTIONS_UNKNOWN_IS_OPERAND, grp);
4979 if (args != nullptr && *args == '\0')
4980 args = nullptr;
b16507e0 4981
4acfdd20 4982 symtab_symbol_info (opts.quiet, opts.exclude_minsyms, args, VARIABLES_DOMAIN,
b16507e0 4983 opts.type_regexp, from_tty);
0b39b52e
TT
4984}
4985
b16507e0 4986/* Implement the 'info functions' command. */
12615cba 4987
c906108c 4988static void
12615cba 4989info_functions_command (const char *args, int from_tty)
c906108c 4990{
b16507e0 4991 info_print_options opts;
4acfdd20
AB
4992 auto grp = make_info_print_options_def_group (&opts);
4993 gdb::option::process_options
4994 (&args, gdb::option::PROCESS_OPTIONS_UNKNOWN_IS_OPERAND, grp);
4995 if (args != nullptr && *args == '\0')
4996 args = nullptr;
b16507e0 4997
4acfdd20
AB
4998 symtab_symbol_info (opts.quiet, opts.exclude_minsyms, args,
4999 FUNCTIONS_DOMAIN, opts.type_regexp, from_tty);
c906108c
SS
5000}
5001
a8eab7c6
AB
5002/* Holds the -q option for the 'info types' command. */
5003
5004struct info_types_options
5005{
491144b5 5006 bool quiet = false;
a8eab7c6
AB
5007};
5008
5009/* The options used by the 'info types' command. */
5010
5011static const gdb::option::option_def info_types_options_defs[] = {
5012 gdb::option::boolean_option_def<info_types_options> {
5013 "q",
5014 [] (info_types_options *opt) { return &opt->quiet; },
5015 nullptr, /* show_cmd_cb */
5016 nullptr /* set_doc */
5017 }
5018};
5019
5020/* Returns the option group used by 'info types'. */
5021
5022static gdb::option::option_def_group
5023make_info_types_options_def_group (info_types_options *opts)
5024{
5025 return {{info_types_options_defs}, opts};
5026}
5027
5028/* Implement the 'info types' command. */
357e46e7 5029
c906108c 5030static void
a8eab7c6 5031info_types_command (const char *args, int from_tty)
c906108c 5032{
a8eab7c6
AB
5033 info_types_options opts;
5034
5035 auto grp = make_info_types_options_def_group (&opts);
5036 gdb::option::process_options
5037 (&args, gdb::option::PROCESS_OPTIONS_UNKNOWN_IS_OPERAND, grp);
5038 if (args != nullptr && *args == '\0')
5039 args = nullptr;
4acfdd20 5040 symtab_symbol_info (opts.quiet, false, args, TYPES_DOMAIN, NULL, from_tty);
a8eab7c6
AB
5041}
5042
5043/* Command completer for 'info types' command. */
5044
5045static void
5046info_types_command_completer (struct cmd_list_element *ignore,
5047 completion_tracker &tracker,
5048 const char *text, const char * /* word */)
5049{
5050 const auto group
5051 = make_info_types_options_def_group (nullptr);
5052 if (gdb::option::complete_options
5053 (tracker, &text, gdb::option::PROCESS_OPTIONS_UNKNOWN_IS_OPERAND, group))
5054 return;
5055
5056 const char *word = advance_to_expression_complete_word_point (tracker, text);
5057 symbol_completer (ignore, tracker, text, word);
c906108c
SS
5058}
5059
59c35742
AB
5060/* Implement the 'info modules' command. */
5061
5062static void
5063info_modules_command (const char *args, int from_tty)
5064{
5065 info_types_options opts;
5066
5067 auto grp = make_info_types_options_def_group (&opts);
5068 gdb::option::process_options
5069 (&args, gdb::option::PROCESS_OPTIONS_UNKNOWN_IS_OPERAND, grp);
5070 if (args != nullptr && *args == '\0')
5071 args = nullptr;
5072 symtab_symbol_info (opts.quiet, true, args, MODULES_DOMAIN, NULL,
5073 from_tty);
5074}
5075
c378eb4e 5076/* Breakpoint all functions matching regular expression. */
8926118c 5077
8b93c638 5078void
fba45db2 5079rbreak_command_wrapper (char *regexp, int from_tty)
8b93c638
JM
5080{
5081 rbreak_command (regexp, from_tty);
5082}
8926118c 5083
c906108c 5084static void
0b39b52e 5085rbreak_command (const char *regexp, int from_tty)
c906108c 5086{
c80049d3 5087 std::string string;
96142726
TT
5088 const char **files = NULL;
5089 const char *file_name;
8bd10a10 5090 int nfiles = 0;
c906108c 5091
8bd10a10
CM
5092 if (regexp)
5093 {
0b39b52e 5094 const char *colon = strchr (regexp, ':');
433759f7 5095
8bd10a10
CM
5096 if (colon && *(colon + 1) != ':')
5097 {
5098 int colon_index;
96142726 5099 char *local_name;
8bd10a10
CM
5100
5101 colon_index = colon - regexp;
224c3ddb 5102 local_name = (char *) alloca (colon_index + 1);
96142726
TT
5103 memcpy (local_name, regexp, colon_index);
5104 local_name[colon_index--] = 0;
5105 while (isspace (local_name[colon_index]))
5106 local_name[colon_index--] = 0;
5107 file_name = local_name;
8bd10a10
CM
5108 files = &file_name;
5109 nfiles = 1;
529480d0 5110 regexp = skip_spaces (colon + 1);
8bd10a10
CM
5111 }
5112 }
5113
b9c04fb2
TT
5114 std::vector<symbol_search> symbols = search_symbols (regexp,
5115 FUNCTIONS_DOMAIN,
12615cba 5116 NULL,
4acfdd20
AB
5117 nfiles, files,
5118 false);
c906108c 5119
c80049d3 5120 scoped_rbreak_breakpoints finalize;
b9c04fb2 5121 for (const symbol_search &p : symbols)
c906108c 5122 {
b9c04fb2 5123 if (p.msymbol.minsym == NULL)
c5aa993b 5124 {
b9c04fb2 5125 struct symtab *symtab = symbol_symtab (p.symbol);
d01060f0 5126 const char *fullname = symtab_to_fullname (symtab);
05cba821 5127
c80049d3
TT
5128 string = string_printf ("%s:'%s'", fullname,
5129 SYMBOL_LINKAGE_NAME (p.symbol));
5130 break_command (&string[0], from_tty);
c7dcbf88 5131 print_symbol_info (FUNCTIONS_DOMAIN, p.symbol, p.block, NULL);
c5aa993b 5132 }
c906108c 5133 else
c5aa993b 5134 {
c80049d3
TT
5135 string = string_printf ("'%s'",
5136 MSYMBOL_LINKAGE_NAME (p.msymbol.minsym));
6214f497 5137
c80049d3 5138 break_command (&string[0], from_tty);
c5aa993b 5139 printf_filtered ("<function, no debug info> %s;\n",
b9c04fb2 5140 MSYMBOL_PRINT_NAME (p.msymbol.minsym));
c5aa993b 5141 }
c906108c 5142 }
c906108c 5143}
c906108c 5144\f
c5aa993b 5145
c62446b1 5146/* Evaluate if SYMNAME matches LOOKUP_NAME. */
1976171a
JK
5147
5148static int
c62446b1 5149compare_symbol_name (const char *symbol_name, language symbol_language,
b5ec771e 5150 const lookup_name_info &lookup_name,
b5ec771e
PA
5151 completion_match_result &match_res)
5152{
d4c2a405 5153 const language_defn *lang = language_def (symbol_language);
1976171a 5154
b5ec771e 5155 symbol_name_matcher_ftype *name_match
618daa93 5156 = get_symbol_name_matcher (lang, lookup_name);
1976171a 5157
a207cff2 5158 return name_match (symbol_name, lookup_name, &match_res);
1976171a
JK
5159}
5160
b5ec771e 5161/* See symtab.h. */
c906108c 5162
b5ec771e 5163void
eb3ff9a5 5164completion_list_add_name (completion_tracker &tracker,
b5ec771e 5165 language symbol_language,
eb3ff9a5 5166 const char *symname,
b5ec771e 5167 const lookup_name_info &lookup_name,
0d5cff50 5168 const char *text, const char *word)
c906108c 5169{
b5ec771e
PA
5170 completion_match_result &match_res
5171 = tracker.reset_completion_match_result ();
5172
c378eb4e 5173 /* Clip symbols that cannot match. */
c62446b1 5174 if (!compare_symbol_name (symname, symbol_language, lookup_name, match_res))
1976171a 5175 return;
c906108c 5176
b5ec771e
PA
5177 /* Refresh SYMNAME from the match string. It's potentially
5178 different depending on language. (E.g., on Ada, the match may be
5179 the encoded symbol name wrapped in "<>"). */
5180 symname = match_res.match.match ();
5181 gdb_assert (symname != NULL);
5182
c906108c 5183 /* We have a match for a completion, so add SYMNAME to the current list
c378eb4e 5184 of matches. Note that the name is moved to freshly malloc'd space. */
c906108c
SS
5185
5186 {
60a20c19
PA
5187 gdb::unique_xmalloc_ptr<char> completion
5188 = make_completion_match_str (symname, text, word);
ef0b411a 5189
a207cff2
PA
5190 /* Here we pass the match-for-lcd object to add_completion. Some
5191 languages match the user text against substrings of symbol
5192 names in some cases. E.g., in C++, "b push_ba" completes to
5193 "std::vector::push_back", "std::string::push_back", etc., and
5194 in this case we want the completion lowest common denominator
5195 to be "push_back" instead of "std::". */
5196 tracker.add_completion (std::move (completion),
a22ecf70 5197 &match_res.match_for_lcd, text, word);
c906108c
SS
5198 }
5199}
5200
6da67eb1
PA
5201/* completion_list_add_name wrapper for struct symbol. */
5202
5203static void
eb3ff9a5
PA
5204completion_list_add_symbol (completion_tracker &tracker,
5205 symbol *sym,
b5ec771e 5206 const lookup_name_info &lookup_name,
6da67eb1
PA
5207 const char *text, const char *word)
5208{
b5ec771e
PA
5209 completion_list_add_name (tracker, SYMBOL_LANGUAGE (sym),
5210 SYMBOL_NATURAL_NAME (sym),
1b026119 5211 lookup_name, text, word);
6da67eb1
PA
5212}
5213
5214/* completion_list_add_name wrapper for struct minimal_symbol. */
5215
5216static void
eb3ff9a5
PA
5217completion_list_add_msymbol (completion_tracker &tracker,
5218 minimal_symbol *sym,
b5ec771e 5219 const lookup_name_info &lookup_name,
6da67eb1
PA
5220 const char *text, const char *word)
5221{
b5ec771e
PA
5222 completion_list_add_name (tracker, MSYMBOL_LANGUAGE (sym),
5223 MSYMBOL_NATURAL_NAME (sym),
1b026119 5224 lookup_name, text, word);
6da67eb1
PA
5225}
5226
b5ec771e 5227
69636828
AF
5228/* ObjC: In case we are completing on a selector, look as the msymbol
5229 again and feed all the selectors into the mill. */
5230
5231static void
eb3ff9a5
PA
5232completion_list_objc_symbol (completion_tracker &tracker,
5233 struct minimal_symbol *msymbol,
b5ec771e 5234 const lookup_name_info &lookup_name,
0d5cff50 5235 const char *text, const char *word)
69636828
AF
5236{
5237 static char *tmp = NULL;
5238 static unsigned int tmplen = 0;
9af17804 5239
0d5cff50 5240 const char *method, *category, *selector;
69636828 5241 char *tmp2 = NULL;
9af17804 5242
efd66ac6 5243 method = MSYMBOL_NATURAL_NAME (msymbol);
69636828
AF
5244
5245 /* Is it a method? */
5246 if ((method[0] != '-') && (method[0] != '+'))
5247 return;
5248
1b026119 5249 if (text[0] == '[')
69636828 5250 /* Complete on shortened method method. */
b5ec771e
PA
5251 completion_list_add_name (tracker, language_objc,
5252 method + 1,
5253 lookup_name,
1b026119 5254 text, word);
9af17804 5255
69636828
AF
5256 while ((strlen (method) + 1) >= tmplen)
5257 {
5258 if (tmplen == 0)
5259 tmplen = 1024;
5260 else
5261 tmplen *= 2;
224c3ddb 5262 tmp = (char *) xrealloc (tmp, tmplen);
69636828
AF
5263 }
5264 selector = strchr (method, ' ');
5265 if (selector != NULL)
5266 selector++;
9af17804 5267
69636828 5268 category = strchr (method, '(');
9af17804 5269
69636828
AF
5270 if ((category != NULL) && (selector != NULL))
5271 {
5272 memcpy (tmp, method, (category - method));
5273 tmp[category - method] = ' ';
5274 memcpy (tmp + (category - method) + 1, selector, strlen (selector) + 1);
b5ec771e 5275 completion_list_add_name (tracker, language_objc, tmp,
1b026119
PA
5276 lookup_name, text, word);
5277 if (text[0] == '[')
b5ec771e 5278 completion_list_add_name (tracker, language_objc, tmp + 1,
1b026119 5279 lookup_name, text, word);
69636828 5280 }
9af17804 5281
69636828
AF
5282 if (selector != NULL)
5283 {
5284 /* Complete on selector only. */
5285 strcpy (tmp, selector);
5286 tmp2 = strchr (tmp, ']');
5287 if (tmp2 != NULL)
5288 *tmp2 = '\0';
9af17804 5289
b5ec771e 5290 completion_list_add_name (tracker, language_objc, tmp,
1b026119 5291 lookup_name, text, word);
69636828
AF
5292 }
5293}
5294
5295/* Break the non-quoted text based on the characters which are in
c378eb4e 5296 symbols. FIXME: This should probably be language-specific. */
69636828 5297
6f937416
PA
5298static const char *
5299language_search_unquoted_string (const char *text, const char *p)
69636828
AF
5300{
5301 for (; p > text; --p)
5302 {
5303 if (isalnum (p[-1]) || p[-1] == '_' || p[-1] == '\0')
5304 continue;
5305 else
5306 {
5307 if ((current_language->la_language == language_objc))
5308 {
c378eb4e 5309 if (p[-1] == ':') /* Might be part of a method name. */
69636828
AF
5310 continue;
5311 else if (p[-1] == '[' && (p[-2] == '-' || p[-2] == '+'))
c378eb4e 5312 p -= 2; /* Beginning of a method name. */
69636828 5313 else if (p[-1] == ' ' || p[-1] == '(' || p[-1] == ')')
c378eb4e 5314 { /* Might be part of a method name. */
6f937416 5315 const char *t = p;
69636828
AF
5316
5317 /* Seeing a ' ' or a '(' is not conclusive evidence
5318 that we are in the middle of a method name. However,
5319 finding "-[" or "+[" should be pretty un-ambiguous.
5320 Unfortunately we have to find it now to decide. */
5321
5322 while (t > text)
5323 if (isalnum (t[-1]) || t[-1] == '_' ||
5324 t[-1] == ' ' || t[-1] == ':' ||
5325 t[-1] == '(' || t[-1] == ')')
5326 --t;
5327 else
5328 break;
5329
5330 if (t[-1] == '[' && (t[-2] == '-' || t[-2] == '+'))
c378eb4e
MS
5331 p = t - 2; /* Method name detected. */
5332 /* Else we leave with p unchanged. */
69636828
AF
5333 }
5334 }
5335 break;
5336 }
5337 }
5338 return p;
5339}
5340
edb3359d 5341static void
eb3ff9a5
PA
5342completion_list_add_fields (completion_tracker &tracker,
5343 struct symbol *sym,
b5ec771e 5344 const lookup_name_info &lookup_name,
eb3ff9a5 5345 const char *text, const char *word)
edb3359d
DJ
5346{
5347 if (SYMBOL_CLASS (sym) == LOC_TYPEDEF)
5348 {
5349 struct type *t = SYMBOL_TYPE (sym);
5350 enum type_code c = TYPE_CODE (t);
5351 int j;
5352
5353 if (c == TYPE_CODE_UNION || c == TYPE_CODE_STRUCT)
5354 for (j = TYPE_N_BASECLASSES (t); j < TYPE_NFIELDS (t); j++)
5355 if (TYPE_FIELD_NAME (t, j))
b5ec771e
PA
5356 completion_list_add_name (tracker, SYMBOL_LANGUAGE (sym),
5357 TYPE_FIELD_NAME (t, j),
1b026119 5358 lookup_name, text, word);
edb3359d
DJ
5359 }
5360}
5361
f9d67a22
PA
5362/* See symtab.h. */
5363
5364bool
5365symbol_is_function_or_method (symbol *sym)
5366{
5367 switch (TYPE_CODE (SYMBOL_TYPE (sym)))
5368 {
5369 case TYPE_CODE_FUNC:
5370 case TYPE_CODE_METHOD:
5371 return true;
5372 default:
5373 return false;
5374 }
5375}
5376
5377/* See symtab.h. */
5378
5379bool
5380symbol_is_function_or_method (minimal_symbol *msymbol)
5381{
5382 switch (MSYMBOL_TYPE (msymbol))
5383 {
5384 case mst_text:
5385 case mst_text_gnu_ifunc:
5386 case mst_solib_trampoline:
5387 case mst_file_text:
5388 return true;
5389 default:
5390 return false;
5391 }
5392}
5393
ca31ab1d
PA
5394/* See symtab.h. */
5395
5396bound_minimal_symbol
5397find_gnu_ifunc (const symbol *sym)
5398{
5399 if (SYMBOL_CLASS (sym) != LOC_BLOCK)
5400 return {};
5401
5402 lookup_name_info lookup_name (SYMBOL_SEARCH_NAME (sym),
5403 symbol_name_match_type::SEARCH_NAME);
5404 struct objfile *objfile = symbol_objfile (sym);
5405
2b1ffcfd 5406 CORE_ADDR address = BLOCK_ENTRY_PC (SYMBOL_BLOCK_VALUE (sym));
ca31ab1d
PA
5407 minimal_symbol *ifunc = NULL;
5408
5409 iterate_over_minimal_symbols (objfile, lookup_name,
5410 [&] (minimal_symbol *minsym)
5411 {
5412 if (MSYMBOL_TYPE (minsym) == mst_text_gnu_ifunc
f50776aa 5413 || MSYMBOL_TYPE (minsym) == mst_data_gnu_ifunc)
ca31ab1d 5414 {
f50776aa
PA
5415 CORE_ADDR msym_addr = MSYMBOL_VALUE_ADDRESS (objfile, minsym);
5416 if (MSYMBOL_TYPE (minsym) == mst_data_gnu_ifunc)
5417 {
5418 struct gdbarch *gdbarch = get_objfile_arch (objfile);
8b88a78e
PA
5419 msym_addr
5420 = gdbarch_convert_from_func_ptr_addr (gdbarch,
5421 msym_addr,
5422 current_top_target ());
f50776aa
PA
5423 }
5424 if (msym_addr == address)
5425 {
5426 ifunc = minsym;
5427 return true;
5428 }
ca31ab1d
PA
5429 }
5430 return false;
5431 });
5432
5433 if (ifunc != NULL)
5434 return {ifunc, objfile};
5435 return {};
5436}
5437
e11c72c7
GB
5438/* Add matching symbols from SYMTAB to the current completion list. */
5439
5440static void
5441add_symtab_completions (struct compunit_symtab *cust,
eb3ff9a5 5442 completion_tracker &tracker,
f9d67a22 5443 complete_symbol_mode mode,
b5ec771e 5444 const lookup_name_info &lookup_name,
e11c72c7
GB
5445 const char *text, const char *word,
5446 enum type_code code)
5447{
5448 struct symbol *sym;
5449 const struct block *b;
5450 struct block_iterator iter;
5451 int i;
5452
ff6fa247
GB
5453 if (cust == NULL)
5454 return;
5455
e11c72c7
GB
5456 for (i = GLOBAL_BLOCK; i <= STATIC_BLOCK; i++)
5457 {
5458 QUIT;
5459 b = BLOCKVECTOR_BLOCK (COMPUNIT_BLOCKVECTOR (cust), i);
5460 ALL_BLOCK_SYMBOLS (b, iter, sym)
5461 {
f9d67a22
PA
5462 if (completion_skip_symbol (mode, sym))
5463 continue;
5464
e11c72c7
GB
5465 if (code == TYPE_CODE_UNDEF
5466 || (SYMBOL_DOMAIN (sym) == STRUCT_DOMAIN
5467 && TYPE_CODE (SYMBOL_TYPE (sym)) == code))
eb3ff9a5 5468 completion_list_add_symbol (tracker, sym,
b5ec771e 5469 lookup_name,
e11c72c7
GB
5470 text, word);
5471 }
5472 }
5473}
5474
eb3ff9a5
PA
5475void
5476default_collect_symbol_completion_matches_break_on
b5ec771e
PA
5477 (completion_tracker &tracker, complete_symbol_mode mode,
5478 symbol_name_match_type name_match_type,
eb3ff9a5
PA
5479 const char *text, const char *word,
5480 const char *break_on, enum type_code code)
c906108c 5481{
41d27058
JB
5482 /* Problem: All of the symbols have to be copied because readline
5483 frees them. I'm not going to worry about this; hopefully there
5484 won't be that many. */
5485
de4f826b 5486 struct symbol *sym;
3977b71f 5487 const struct block *b;
edb3359d 5488 const struct block *surrounding_static_block, *surrounding_global_block;
8157b174 5489 struct block_iterator iter;
c906108c 5490 /* The symbol we are completing on. Points in same buffer as text. */
6f937416 5491 const char *sym_text;
c906108c 5492
41d27058 5493 /* Now look for the symbol we are supposed to complete on. */
c6756f62
PA
5494 if (mode == complete_symbol_mode::LINESPEC)
5495 sym_text = text;
5496 else
c906108c 5497 {
6f937416 5498 const char *p;
c906108c 5499 char quote_found;
6f937416 5500 const char *quote_pos = NULL;
c906108c
SS
5501
5502 /* First see if this is a quoted string. */
5503 quote_found = '\0';
5504 for (p = text; *p != '\0'; ++p)
5505 {
5506 if (quote_found != '\0')
5507 {
5508 if (*p == quote_found)
5509 /* Found close quote. */
5510 quote_found = '\0';
5511 else if (*p == '\\' && p[1] == quote_found)
5512 /* A backslash followed by the quote character
c5aa993b 5513 doesn't end the string. */
c906108c
SS
5514 ++p;
5515 }
5516 else if (*p == '\'' || *p == '"')
5517 {
5518 quote_found = *p;
5519 quote_pos = p;
5520 }
5521 }
5522 if (quote_found == '\'')
5523 /* A string within single quotes can be a symbol, so complete on it. */
5524 sym_text = quote_pos + 1;
5525 else if (quote_found == '"')
5526 /* A double-quoted string is never a symbol, nor does it make sense
c5aa993b 5527 to complete it any other way. */
c94fdfd0 5528 {
ef0b411a 5529 return;
c94fdfd0 5530 }
c906108c
SS
5531 else
5532 {
5533 /* It is not a quoted string. Break it based on the characters
5534 which are in symbols. */
5535 while (p > text)
5536 {
95699ff0 5537 if (isalnum (p[-1]) || p[-1] == '_' || p[-1] == '\0'
f55ee35c 5538 || p[-1] == ':' || strchr (break_on, p[-1]) != NULL)
c906108c
SS
5539 --p;
5540 else
5541 break;
5542 }
5543 sym_text = p;
5544 }
5545 }
5546
1b026119 5547 lookup_name_info lookup_name (sym_text, name_match_type, true);
b5ec771e 5548
c906108c
SS
5549 /* At this point scan through the misc symbol vectors and add each
5550 symbol you find to the list. Eventually we want to ignore
5551 anything that isn't a text symbol (everything else will be
e11c72c7 5552 handled by the psymtab code below). */
c906108c 5553
2f68a895
TT
5554 if (code == TYPE_CODE_UNDEF)
5555 {
2030c079 5556 for (objfile *objfile : current_program_space->objfiles ())
2f68a895 5557 {
7932255d 5558 for (minimal_symbol *msymbol : objfile->msymbols ())
5325b9bf
TT
5559 {
5560 QUIT;
9af17804 5561
5325b9bf
TT
5562 if (completion_skip_symbol (mode, msymbol))
5563 continue;
f9d67a22 5564
5325b9bf
TT
5565 completion_list_add_msymbol (tracker, msymbol, lookup_name,
5566 sym_text, word);
eb3ff9a5 5567
5325b9bf
TT
5568 completion_list_objc_symbol (tracker, msymbol, lookup_name,
5569 sym_text, word);
5570 }
2f68a895
TT
5571 }
5572 }
c906108c 5573
e11c72c7 5574 /* Add completions for all currently loaded symbol tables. */
2030c079 5575 for (objfile *objfile : current_program_space->objfiles ())
d8aeb77f 5576 {
b669c953 5577 for (compunit_symtab *cust : objfile->compunits ())
d8aeb77f
TT
5578 add_symtab_completions (cust, tracker, mode, lookup_name,
5579 sym_text, word, code);
5580 }
e11c72c7 5581
14bc53a8
PA
5582 /* Look through the partial symtabs for all symbols which begin by
5583 matching SYM_TEXT. Expand all CUs that you find to the list. */
5584 expand_symtabs_matching (NULL,
b5ec771e
PA
5585 lookup_name,
5586 NULL,
14bc53a8
PA
5587 [&] (compunit_symtab *symtab) /* expansion notify */
5588 {
5589 add_symtab_completions (symtab,
f9d67a22 5590 tracker, mode, lookup_name,
1b026119 5591 sym_text, word, code);
14bc53a8
PA
5592 },
5593 ALL_DOMAIN);
e11c72c7 5594
c906108c 5595 /* Search upwards from currently selected frame (so that we can
edb3359d
DJ
5596 complete on local vars). Also catch fields of types defined in
5597 this places which match our text string. Only complete on types
c378eb4e 5598 visible from current context. */
edb3359d
DJ
5599
5600 b = get_selected_block (0);
5601 surrounding_static_block = block_static_block (b);
5602 surrounding_global_block = block_global_block (b);
5603 if (surrounding_static_block != NULL)
5604 while (b != surrounding_static_block)
5605 {
5606 QUIT;
c906108c 5607
edb3359d
DJ
5608 ALL_BLOCK_SYMBOLS (b, iter, sym)
5609 {
2f68a895
TT
5610 if (code == TYPE_CODE_UNDEF)
5611 {
b5ec771e 5612 completion_list_add_symbol (tracker, sym, lookup_name,
1b026119 5613 sym_text, word);
b5ec771e 5614 completion_list_add_fields (tracker, sym, lookup_name,
1b026119 5615 sym_text, word);
2f68a895
TT
5616 }
5617 else if (SYMBOL_DOMAIN (sym) == STRUCT_DOMAIN
5618 && TYPE_CODE (SYMBOL_TYPE (sym)) == code)
b5ec771e 5619 completion_list_add_symbol (tracker, sym, lookup_name,
1b026119 5620 sym_text, word);
edb3359d 5621 }
c5aa993b 5622
edb3359d
DJ
5623 /* Stop when we encounter an enclosing function. Do not stop for
5624 non-inlined functions - the locals of the enclosing function
5625 are in scope for a nested function. */
5626 if (BLOCK_FUNCTION (b) != NULL && block_inlined_p (b))
5627 break;
5628 b = BLOCK_SUPERBLOCK (b);
5629 }
c906108c 5630
edb3359d 5631 /* Add fields from the file's types; symbols will be added below. */
c906108c 5632
2f68a895
TT
5633 if (code == TYPE_CODE_UNDEF)
5634 {
5635 if (surrounding_static_block != NULL)
5636 ALL_BLOCK_SYMBOLS (surrounding_static_block, iter, sym)
b5ec771e 5637 completion_list_add_fields (tracker, sym, lookup_name,
1b026119 5638 sym_text, word);
edb3359d 5639
2f68a895
TT
5640 if (surrounding_global_block != NULL)
5641 ALL_BLOCK_SYMBOLS (surrounding_global_block, iter, sym)
b5ec771e 5642 completion_list_add_fields (tracker, sym, lookup_name,
1b026119 5643 sym_text, word);
2f68a895 5644 }
c906108c 5645
2f68a895
TT
5646 /* Skip macros if we are completing a struct tag -- arguable but
5647 usually what is expected. */
5648 if (current_language->la_macro_expansion == macro_expansion_c
5649 && code == TYPE_CODE_UNDEF)
9a044a89 5650 {
f6c2623e 5651 gdb::unique_xmalloc_ptr<struct macro_scope> scope;
9a044a89 5652
14bc53a8
PA
5653 /* This adds a macro's name to the current completion list. */
5654 auto add_macro_name = [&] (const char *macro_name,
5655 const macro_definition *,
5656 macro_source_file *,
5657 int)
5658 {
1b026119
PA
5659 completion_list_add_name (tracker, language_c, macro_name,
5660 lookup_name, sym_text, word);
14bc53a8
PA
5661 };
5662
9a044a89
TT
5663 /* Add any macros visible in the default scope. Note that this
5664 may yield the occasional wrong result, because an expression
5665 might be evaluated in a scope other than the default. For
5666 example, if the user types "break file:line if <TAB>", the
5667 resulting expression will be evaluated at "file:line" -- but
5668 at there does not seem to be a way to detect this at
5669 completion time. */
5670 scope = default_macro_scope ();
5671 if (scope)
f6c2623e
TT
5672 macro_for_each_in_scope (scope->file, scope->line,
5673 add_macro_name);
9a044a89
TT
5674
5675 /* User-defined macros are always visible. */
14bc53a8 5676 macro_for_each (macro_user_macros, add_macro_name);
9a044a89 5677 }
ef0b411a
GB
5678}
5679
eb3ff9a5
PA
5680void
5681default_collect_symbol_completion_matches (completion_tracker &tracker,
c6756f62 5682 complete_symbol_mode mode,
b5ec771e 5683 symbol_name_match_type name_match_type,
eb3ff9a5
PA
5684 const char *text, const char *word,
5685 enum type_code code)
f55ee35c 5686{
c6756f62 5687 return default_collect_symbol_completion_matches_break_on (tracker, mode,
b5ec771e 5688 name_match_type,
eb3ff9a5
PA
5689 text, word, "",
5690 code);
f55ee35c
JK
5691}
5692
eb3ff9a5
PA
5693/* Collect all symbols (regardless of class) which begin by matching
5694 TEXT. */
41d27058 5695
eb3ff9a5
PA
5696void
5697collect_symbol_completion_matches (completion_tracker &tracker,
c6756f62 5698 complete_symbol_mode mode,
b5ec771e 5699 symbol_name_match_type name_match_type,
eb3ff9a5 5700 const char *text, const char *word)
41d27058 5701{
c6756f62 5702 current_language->la_collect_symbol_completion_matches (tracker, mode,
b5ec771e 5703 name_match_type,
eb3ff9a5
PA
5704 text, word,
5705 TYPE_CODE_UNDEF);
2f68a895
TT
5706}
5707
eb3ff9a5
PA
5708/* Like collect_symbol_completion_matches, but only collect
5709 STRUCT_DOMAIN symbols whose type code is CODE. */
2f68a895 5710
eb3ff9a5
PA
5711void
5712collect_symbol_completion_matches_type (completion_tracker &tracker,
5713 const char *text, const char *word,
5714 enum type_code code)
2f68a895 5715{
c6756f62 5716 complete_symbol_mode mode = complete_symbol_mode::EXPRESSION;
b5ec771e 5717 symbol_name_match_type name_match_type = symbol_name_match_type::EXPRESSION;
c6756f62 5718
2f68a895
TT
5719 gdb_assert (code == TYPE_CODE_UNION
5720 || code == TYPE_CODE_STRUCT
2f68a895 5721 || code == TYPE_CODE_ENUM);
c6756f62 5722 current_language->la_collect_symbol_completion_matches (tracker, mode,
b5ec771e 5723 name_match_type,
eb3ff9a5 5724 text, word, code);
41d27058
JB
5725}
5726
eb3ff9a5
PA
5727/* Like collect_symbol_completion_matches, but collects a list of
5728 symbols defined in all source files named SRCFILE. */
c94fdfd0 5729
eb3ff9a5
PA
5730void
5731collect_file_symbol_completion_matches (completion_tracker &tracker,
c6756f62 5732 complete_symbol_mode mode,
b5ec771e 5733 symbol_name_match_type name_match_type,
eb3ff9a5
PA
5734 const char *text, const char *word,
5735 const char *srcfile)
c94fdfd0 5736{
c94fdfd0 5737 /* The symbol we are completing on. Points in same buffer as text. */
6f937416 5738 const char *sym_text;
c94fdfd0
EZ
5739
5740 /* Now look for the symbol we are supposed to complete on.
5741 FIXME: This should be language-specific. */
c6756f62
PA
5742 if (mode == complete_symbol_mode::LINESPEC)
5743 sym_text = text;
5744 else
c94fdfd0 5745 {
6f937416 5746 const char *p;
c94fdfd0 5747 char quote_found;
6f937416 5748 const char *quote_pos = NULL;
c94fdfd0
EZ
5749
5750 /* First see if this is a quoted string. */
5751 quote_found = '\0';
5752 for (p = text; *p != '\0'; ++p)
5753 {
5754 if (quote_found != '\0')
5755 {
5756 if (*p == quote_found)
5757 /* Found close quote. */
5758 quote_found = '\0';
5759 else if (*p == '\\' && p[1] == quote_found)
5760 /* A backslash followed by the quote character
5761 doesn't end the string. */
5762 ++p;
5763 }
5764 else if (*p == '\'' || *p == '"')
5765 {
5766 quote_found = *p;
5767 quote_pos = p;
5768 }
5769 }
5770 if (quote_found == '\'')
5771 /* A string within single quotes can be a symbol, so complete on it. */
5772 sym_text = quote_pos + 1;
5773 else if (quote_found == '"')
5774 /* A double-quoted string is never a symbol, nor does it make sense
5775 to complete it any other way. */
5776 {
eb3ff9a5 5777 return;
c94fdfd0
EZ
5778 }
5779 else
5780 {
69636828
AF
5781 /* Not a quoted string. */
5782 sym_text = language_search_unquoted_string (text, p);
c94fdfd0
EZ
5783 }
5784 }
5785
1b026119 5786 lookup_name_info lookup_name (sym_text, name_match_type, true);
b5ec771e 5787
8f14146e
PA
5788 /* Go through symtabs for SRCFILE and check the externs and statics
5789 for symbols which match. */
5790 iterate_over_symtabs (srcfile, [&] (symtab *s)
c94fdfd0 5791 {
8f14146e 5792 add_symtab_completions (SYMTAB_COMPUNIT (s),
f9d67a22 5793 tracker, mode, lookup_name,
1b026119 5794 sym_text, word, TYPE_CODE_UNDEF);
8f14146e
PA
5795 return false;
5796 });
e27852be
DE
5797}
5798
c94fdfd0
EZ
5799/* A helper function for make_source_files_completion_list. It adds
5800 another file name to a list of possible completions, growing the
5801 list as necessary. */
5802
5803static void
6f937416 5804add_filename_to_list (const char *fname, const char *text, const char *word,
eb3ff9a5 5805 completion_list *list)
c94fdfd0 5806{
60a20c19 5807 list->emplace_back (make_completion_match_str (fname, text, word));
c94fdfd0
EZ
5808}
5809
5810static int
5811not_interesting_fname (const char *fname)
5812{
5813 static const char *illegal_aliens[] = {
5814 "_globals_", /* inserted by coff_symtab_read */
5815 NULL
5816 };
5817 int i;
5818
5819 for (i = 0; illegal_aliens[i]; i++)
5820 {
0ba1096a 5821 if (filename_cmp (fname, illegal_aliens[i]) == 0)
c94fdfd0
EZ
5822 return 1;
5823 }
5824 return 0;
5825}
5826
ccefe4c4
TT
5827/* An object of this type is passed as the user_data argument to
5828 map_partial_symbol_filenames. */
5829struct add_partial_filename_data
5830{
9fdc877b 5831 struct filename_seen_cache *filename_seen_cache;
6f937416
PA
5832 const char *text;
5833 const char *word;
ccefe4c4 5834 int text_len;
eb3ff9a5 5835 completion_list *list;
ccefe4c4
TT
5836};
5837
5838/* A callback for map_partial_symbol_filenames. */
eca864fe 5839
ccefe4c4 5840static void
2837d59e 5841maybe_add_partial_symtab_filename (const char *filename, const char *fullname,
ccefe4c4
TT
5842 void *user_data)
5843{
19ba03f4
SM
5844 struct add_partial_filename_data *data
5845 = (struct add_partial_filename_data *) user_data;
ccefe4c4
TT
5846
5847 if (not_interesting_fname (filename))
5848 return;
bbf2f4df 5849 if (!data->filename_seen_cache->seen (filename)
0ba1096a 5850 && filename_ncmp (filename, data->text, data->text_len) == 0)
ccefe4c4
TT
5851 {
5852 /* This file matches for a completion; add it to the
5853 current list of matches. */
49c4e619 5854 add_filename_to_list (filename, data->text, data->word, data->list);
ccefe4c4
TT
5855 }
5856 else
5857 {
5858 const char *base_name = lbasename (filename);
433759f7 5859
ccefe4c4 5860 if (base_name != filename
bbf2f4df 5861 && !data->filename_seen_cache->seen (base_name)
0ba1096a 5862 && filename_ncmp (base_name, data->text, data->text_len) == 0)
49c4e619 5863 add_filename_to_list (base_name, data->text, data->word, data->list);
ccefe4c4
TT
5864 }
5865}
5866
eb3ff9a5 5867/* Return a list of all source files whose names begin with matching
49c4e619 5868 TEXT. The file names are looked up in the symbol tables of this
eb3ff9a5 5869 program. */
c94fdfd0 5870
eb3ff9a5 5871completion_list
6f937416 5872make_source_files_completion_list (const char *text, const char *word)
c94fdfd0 5873{
c94fdfd0 5874 size_t text_len = strlen (text);
eb3ff9a5 5875 completion_list list;
31889e00 5876 const char *base_name;
ccefe4c4 5877 struct add_partial_filename_data datum;
c94fdfd0 5878
c94fdfd0
EZ
5879 if (!have_full_symbols () && !have_partial_symbols ())
5880 return list;
5881
bbf2f4df 5882 filename_seen_cache filenames_seen;
9fdc877b 5883
2030c079 5884 for (objfile *objfile : current_program_space->objfiles ())
c94fdfd0 5885 {
b669c953 5886 for (compunit_symtab *cu : objfile->compunits ())
c94fdfd0 5887 {
8b31193a
TT
5888 for (symtab *s : compunit_filetabs (cu))
5889 {
5890 if (not_interesting_fname (s->filename))
5891 continue;
5892 if (!filenames_seen.seen (s->filename)
5893 && filename_ncmp (s->filename, text, text_len) == 0)
5894 {
5895 /* This file matches for a completion; add it to the current
5896 list of matches. */
5897 add_filename_to_list (s->filename, text, word, &list);
5898 }
5899 else
5900 {
5901 /* NOTE: We allow the user to type a base name when the
5902 debug info records leading directories, but not the other
5903 way around. This is what subroutines of breakpoint
5904 command do when they parse file names. */
5905 base_name = lbasename (s->filename);
5906 if (base_name != s->filename
5907 && !filenames_seen.seen (base_name)
5908 && filename_ncmp (base_name, text, text_len) == 0)
5909 add_filename_to_list (base_name, text, word, &list);
5910 }
5911 }
c94fdfd0
EZ
5912 }
5913 }
5914
bbf2f4df 5915 datum.filename_seen_cache = &filenames_seen;
ccefe4c4
TT
5916 datum.text = text;
5917 datum.word = word;
5918 datum.text_len = text_len;
5919 datum.list = &list;
bb4142cf
DE
5920 map_symbol_filenames (maybe_add_partial_symtab_filename, &datum,
5921 0 /*need_fullname*/);
9fdc877b 5922
c94fdfd0
EZ
5923 return list;
5924}
c906108c 5925\f
51cc5b07 5926/* Track MAIN */
32ac0d11
TT
5927
5928/* Return the "main_info" object for the current program space. If
5929 the object has not yet been created, create it and fill in some
5930 default values. */
5931
5932static struct main_info *
5933get_main_info (void)
5934{
a32ad8c5 5935 struct main_info *info = main_progspace_key.get (current_program_space);
32ac0d11
TT
5936
5937 if (info == NULL)
5938 {
3d548a53
TT
5939 /* It may seem strange to store the main name in the progspace
5940 and also in whatever objfile happens to see a main name in
5941 its debug info. The reason for this is mainly historical:
5942 gdb returned "main" as the name even if no function named
5943 "main" was defined the program; and this approach lets us
5944 keep compatibility. */
a32ad8c5 5945 info = main_progspace_key.emplace (current_program_space);
32ac0d11
TT
5946 }
5947
5948 return info;
5949}
5950
3d548a53 5951static void
9e6c82ad 5952set_main_name (const char *name, enum language lang)
51cc5b07 5953{
32ac0d11
TT
5954 struct main_info *info = get_main_info ();
5955
5956 if (info->name_of_main != NULL)
51cc5b07 5957 {
32ac0d11
TT
5958 xfree (info->name_of_main);
5959 info->name_of_main = NULL;
5960 info->language_of_main = language_unknown;
51cc5b07
AC
5961 }
5962 if (name != NULL)
5963 {
32ac0d11
TT
5964 info->name_of_main = xstrdup (name);
5965 info->language_of_main = lang;
51cc5b07
AC
5966 }
5967}
5968
ea53e89f
JB
5969/* Deduce the name of the main procedure, and set NAME_OF_MAIN
5970 accordingly. */
5971
5972static void
5973find_main_name (void)
5974{
cd6c7346 5975 const char *new_main_name;
3d548a53
TT
5976
5977 /* First check the objfiles to see whether a debuginfo reader has
5978 picked up the appropriate main name. Historically the main name
5979 was found in a more or less random way; this approach instead
5980 relies on the order of objfile creation -- which still isn't
5981 guaranteed to get the correct answer, but is just probably more
5982 accurate. */
2030c079 5983 for (objfile *objfile : current_program_space->objfiles ())
aed57c53
TT
5984 {
5985 if (objfile->per_bfd->name_of_main != NULL)
5986 {
5987 set_main_name (objfile->per_bfd->name_of_main,
5988 objfile->per_bfd->language_of_main);
5989 return;
5990 }
5991 }
ea53e89f
JB
5992
5993 /* Try to see if the main procedure is in Ada. */
5994 /* FIXME: brobecker/2005-03-07: Another way of doing this would
5995 be to add a new method in the language vector, and call this
5996 method for each language until one of them returns a non-empty
5997 name. This would allow us to remove this hard-coded call to
5998 an Ada function. It is not clear that this is a better approach
5999 at this point, because all methods need to be written in a way
c378eb4e 6000 such that false positives never be returned. For instance, it is
ea53e89f
JB
6001 important that a method does not return a wrong name for the main
6002 procedure if the main procedure is actually written in a different
6003 language. It is easy to guaranty this with Ada, since we use a
6004 special symbol generated only when the main in Ada to find the name
c378eb4e 6005 of the main procedure. It is difficult however to see how this can
ea53e89f
JB
6006 be guarantied for languages such as C, for instance. This suggests
6007 that order of call for these methods becomes important, which means
6008 a more complicated approach. */
6009 new_main_name = ada_main_name ();
6010 if (new_main_name != NULL)
9af17804 6011 {
9e6c82ad 6012 set_main_name (new_main_name, language_ada);
ea53e89f
JB
6013 return;
6014 }
6015
63778547
IB
6016 new_main_name = d_main_name ();
6017 if (new_main_name != NULL)
6018 {
6019 set_main_name (new_main_name, language_d);
6020 return;
6021 }
6022
a766d390
DE
6023 new_main_name = go_main_name ();
6024 if (new_main_name != NULL)
6025 {
9e6c82ad 6026 set_main_name (new_main_name, language_go);
a766d390
DE
6027 return;
6028 }
6029
cd6c7346
PM
6030 new_main_name = pascal_main_name ();
6031 if (new_main_name != NULL)
9af17804 6032 {
9e6c82ad 6033 set_main_name (new_main_name, language_pascal);
cd6c7346
PM
6034 return;
6035 }
6036
ea53e89f
JB
6037 /* The languages above didn't identify the name of the main procedure.
6038 Fallback to "main". */
9e6c82ad 6039 set_main_name ("main", language_unknown);
ea53e89f
JB
6040}
6041
cd215b2e
TT
6042/* See symtab.h. */
6043
6044const char *
6045main_name ()
51cc5b07 6046{
32ac0d11
TT
6047 struct main_info *info = get_main_info ();
6048
6049 if (info->name_of_main == NULL)
ea53e89f
JB
6050 find_main_name ();
6051
32ac0d11 6052 return info->name_of_main;
51cc5b07
AC
6053}
6054
9e6c82ad
TT
6055/* Return the language of the main function. If it is not known,
6056 return language_unknown. */
6057
6058enum language
6059main_language (void)
6060{
32ac0d11
TT
6061 struct main_info *info = get_main_info ();
6062
6063 if (info->name_of_main == NULL)
6064 find_main_name ();
6065
6066 return info->language_of_main;
9e6c82ad
TT
6067}
6068
ea53e89f
JB
6069/* Handle ``executable_changed'' events for the symtab module. */
6070
6071static void
781b42b0 6072symtab_observer_executable_changed (void)
ea53e89f
JB
6073{
6074 /* NAME_OF_MAIN may no longer be the same, so reset it for now. */
9e6c82ad 6075 set_main_name (NULL, language_unknown);
ea53e89f 6076}
51cc5b07 6077
a6c727b2
DJ
6078/* Return 1 if the supplied producer string matches the ARM RealView
6079 compiler (armcc). */
6080
ececd218 6081bool
a6c727b2
DJ
6082producer_is_realview (const char *producer)
6083{
6084 static const char *const arm_idents[] = {
6085 "ARM C Compiler, ADS",
6086 "Thumb C Compiler, ADS",
6087 "ARM C++ Compiler, ADS",
6088 "Thumb C++ Compiler, ADS",
6089 "ARM/Thumb C/C++ Compiler, RVCT",
6090 "ARM C/C++ Compiler, RVCT"
6091 };
6092 int i;
6093
6094 if (producer == NULL)
ececd218 6095 return false;
a6c727b2
DJ
6096
6097 for (i = 0; i < ARRAY_SIZE (arm_idents); i++)
61012eef 6098 if (startswith (producer, arm_idents[i]))
ececd218 6099 return true;
a6c727b2 6100
ececd218 6101 return false;
a6c727b2 6102}
ed0616c6 6103
f1e6e072
TT
6104\f
6105
6106/* The next index to hand out in response to a registration request. */
6107
6108static int next_aclass_value = LOC_FINAL_VALUE;
6109
6110/* The maximum number of "aclass" registrations we support. This is
6111 constant for convenience. */
6112#define MAX_SYMBOL_IMPLS (LOC_FINAL_VALUE + 10)
6113
6114/* The objects representing the various "aclass" values. The elements
6115 from 0 up to LOC_FINAL_VALUE-1 represent themselves, and subsequent
6116 elements are those registered at gdb initialization time. */
6117
6118static struct symbol_impl symbol_impl[MAX_SYMBOL_IMPLS];
6119
6120/* The globally visible pointer. This is separate from 'symbol_impl'
6121 so that it can be const. */
6122
6123const struct symbol_impl *symbol_impls = &symbol_impl[0];
6124
6125/* Make sure we saved enough room in struct symbol. */
6126
6127gdb_static_assert (MAX_SYMBOL_IMPLS <= (1 << SYMBOL_ACLASS_BITS));
6128
6129/* Register a computed symbol type. ACLASS must be LOC_COMPUTED. OPS
6130 is the ops vector associated with this index. This returns the new
6131 index, which should be used as the aclass_index field for symbols
6132 of this type. */
6133
6134int
6135register_symbol_computed_impl (enum address_class aclass,
6136 const struct symbol_computed_ops *ops)
6137{
6138 int result = next_aclass_value++;
6139
6140 gdb_assert (aclass == LOC_COMPUTED);
6141 gdb_assert (result < MAX_SYMBOL_IMPLS);
6142 symbol_impl[result].aclass = aclass;
6143 symbol_impl[result].ops_computed = ops;
6144
24d6c2a0
TT
6145 /* Sanity check OPS. */
6146 gdb_assert (ops != NULL);
6147 gdb_assert (ops->tracepoint_var_ref != NULL);
6148 gdb_assert (ops->describe_location != NULL);
0b31a4bc 6149 gdb_assert (ops->get_symbol_read_needs != NULL);
24d6c2a0
TT
6150 gdb_assert (ops->read_variable != NULL);
6151
f1e6e072
TT
6152 return result;
6153}
6154
6155/* Register a function with frame base type. ACLASS must be LOC_BLOCK.
6156 OPS is the ops vector associated with this index. This returns the
6157 new index, which should be used as the aclass_index field for symbols
6158 of this type. */
6159
6160int
6161register_symbol_block_impl (enum address_class aclass,
6162 const struct symbol_block_ops *ops)
6163{
6164 int result = next_aclass_value++;
6165
6166 gdb_assert (aclass == LOC_BLOCK);
6167 gdb_assert (result < MAX_SYMBOL_IMPLS);
6168 symbol_impl[result].aclass = aclass;
6169 symbol_impl[result].ops_block = ops;
6170
6171 /* Sanity check OPS. */
6172 gdb_assert (ops != NULL);
6173 gdb_assert (ops->find_frame_base_location != NULL);
6174
6175 return result;
6176}
6177
6178/* Register a register symbol type. ACLASS must be LOC_REGISTER or
6179 LOC_REGPARM_ADDR. OPS is the register ops vector associated with
6180 this index. This returns the new index, which should be used as
6181 the aclass_index field for symbols of this type. */
6182
6183int
6184register_symbol_register_impl (enum address_class aclass,
6185 const struct symbol_register_ops *ops)
6186{
6187 int result = next_aclass_value++;
6188
6189 gdb_assert (aclass == LOC_REGISTER || aclass == LOC_REGPARM_ADDR);
6190 gdb_assert (result < MAX_SYMBOL_IMPLS);
6191 symbol_impl[result].aclass = aclass;
6192 symbol_impl[result].ops_register = ops;
6193
6194 return result;
6195}
6196
6197/* Initialize elements of 'symbol_impl' for the constants in enum
6198 address_class. */
6199
6200static void
6201initialize_ordinary_address_classes (void)
6202{
6203 int i;
6204
6205 for (i = 0; i < LOC_FINAL_VALUE; ++i)
aead7601 6206 symbol_impl[i].aclass = (enum address_class) i;
f1e6e072
TT
6207}
6208
6209\f
6210
1994afbf 6211/* Initialize the symbol SYM, and mark it as being owned by an objfile. */
e623cf5d
TT
6212
6213void
38bf1463 6214initialize_objfile_symbol (struct symbol *sym)
e623cf5d 6215{
468c0cbb
CB
6216 SYMBOL_OBJFILE_OWNED (sym) = 1;
6217 SYMBOL_SECTION (sym) = -1;
e623cf5d
TT
6218}
6219
6220/* Allocate and initialize a new 'struct symbol' on OBJFILE's
6221 obstack. */
6222
6223struct symbol *
6224allocate_symbol (struct objfile *objfile)
6225{
468c0cbb 6226 struct symbol *result = new (&objfile->objfile_obstack) symbol ();
e623cf5d 6227
468c0cbb 6228 initialize_objfile_symbol (result);
e623cf5d
TT
6229
6230 return result;
6231}
6232
6233/* Allocate and initialize a new 'struct template_symbol' on OBJFILE's
6234 obstack. */
6235
6236struct template_symbol *
6237allocate_template_symbol (struct objfile *objfile)
6238{
6239 struct template_symbol *result;
6240
468c0cbb
CB
6241 result = new (&objfile->objfile_obstack) template_symbol ();
6242 initialize_objfile_symbol (result);
e623cf5d
TT
6243
6244 return result;
6245}
6246
08be3fe3
DE
6247/* See symtab.h. */
6248
6249struct objfile *
6250symbol_objfile (const struct symbol *symbol)
6251{
1994afbf
DE
6252 gdb_assert (SYMBOL_OBJFILE_OWNED (symbol));
6253 return SYMTAB_OBJFILE (symbol->owner.symtab);
08be3fe3
DE
6254}
6255
6256/* See symtab.h. */
6257
6258struct gdbarch *
6259symbol_arch (const struct symbol *symbol)
6260{
1994afbf
DE
6261 if (!SYMBOL_OBJFILE_OWNED (symbol))
6262 return symbol->owner.arch;
6263 return get_objfile_arch (SYMTAB_OBJFILE (symbol->owner.symtab));
08be3fe3
DE
6264}
6265
6266/* See symtab.h. */
6267
6268struct symtab *
6269symbol_symtab (const struct symbol *symbol)
6270{
1994afbf
DE
6271 gdb_assert (SYMBOL_OBJFILE_OWNED (symbol));
6272 return symbol->owner.symtab;
08be3fe3
DE
6273}
6274
6275/* See symtab.h. */
6276
6277void
6278symbol_set_symtab (struct symbol *symbol, struct symtab *symtab)
6279{
1994afbf
DE
6280 gdb_assert (SYMBOL_OBJFILE_OWNED (symbol));
6281 symbol->owner.symtab = symtab;
08be3fe3
DE
6282}
6283
4b610737
TT
6284/* See symtab.h. */
6285
6286CORE_ADDR
6287get_symbol_address (const struct symbol *sym)
6288{
6289 gdb_assert (sym->maybe_copied);
6290 gdb_assert (SYMBOL_CLASS (sym) == LOC_STATIC);
6291
6292 const char *linkage_name = SYMBOL_LINKAGE_NAME (sym);
6293
6294 for (objfile *objfile : current_program_space->objfiles ())
6295 {
6296 bound_minimal_symbol minsym
6297 = lookup_minimal_symbol_linkage (linkage_name, objfile);
6298 if (minsym.minsym != nullptr)
6299 return BMSYMBOL_VALUE_ADDRESS (minsym);
6300 }
468c0cbb 6301 return sym->value.address;
4b610737
TT
6302}
6303
6304/* See symtab.h. */
6305
6306CORE_ADDR
6307get_msymbol_address (struct objfile *objf, const struct minimal_symbol *minsym)
6308{
6309 gdb_assert (minsym->maybe_copied);
6310 gdb_assert ((objf->flags & OBJF_MAINLINE) == 0);
6311
6312 const char *linkage_name = MSYMBOL_LINKAGE_NAME (minsym);
6313
6314 for (objfile *objfile : current_program_space->objfiles ())
6315 {
6316 if ((objfile->flags & OBJF_MAINLINE) != 0)
6317 {
6318 bound_minimal_symbol found
6319 = lookup_minimal_symbol_linkage (linkage_name, objfile);
6320 if (found.minsym != nullptr)
6321 return BMSYMBOL_VALUE_ADDRESS (found);
6322 }
6323 }
6324 return (minsym->value.address
6325 + ANOFFSET (objf->section_offsets, minsym->section));
6326}
6327
e623cf5d
TT
6328\f
6329
165f8965
AB
6330/* Hold the sub-commands of 'info module'. */
6331
6332static struct cmd_list_element *info_module_cmdlist = NULL;
6333
6334/* Implement the 'info module' command, just displays some help text for
6335 the available sub-commands. */
6336
6337static void
6338info_module_command (const char *args, int from_tty)
6339{
6340 help_list (info_module_cmdlist, "info module ", class_info, gdb_stdout);
6341}
6342
6343/* See symtab.h. */
6344
6345std::vector<module_symbol_search>
6346search_module_symbols (const char *module_regexp, const char *regexp,
6347 const char *type_regexp, search_domain kind)
6348{
6349 std::vector<module_symbol_search> results;
6350
6351 /* Search for all modules matching MODULE_REGEXP. */
6352 std::vector<symbol_search> modules = search_symbols (module_regexp,
6353 MODULES_DOMAIN,
6354 NULL, 0, NULL,
6355 true);
6356
6357 /* Now search for all symbols of the required KIND matching the required
6358 regular expressions. We figure out which ones are in which modules
6359 below. */
6360 std::vector<symbol_search> symbols = search_symbols (regexp, kind,
6361 type_regexp, 0,
6362 NULL, true);
6363
6364 /* Now iterate over all MODULES, checking to see which items from
6365 SYMBOLS are in each module. */
6366 for (const symbol_search &p : modules)
6367 {
6368 QUIT;
6369
6370 /* This is a module. */
6371 gdb_assert (p.symbol != nullptr);
6372
6373 std::string prefix = SYMBOL_PRINT_NAME (p.symbol);
6374 prefix += "::";
6375
6376 for (const symbol_search &q : symbols)
6377 {
6378 if (q.symbol == nullptr)
6379 continue;
6380
6381 if (strncmp (SYMBOL_PRINT_NAME (q.symbol), prefix.c_str (),
6382 prefix.size ()) != 0)
6383 continue;
6384
6385 results.push_back ({p, q});
6386 }
6387 }
6388
6389 return results;
6390}
6391
6392/* Implement the core of both 'info module functions' and 'info module
6393 variables'. */
6394
6395static void
6396info_module_subcommand (bool quiet, const char *module_regexp,
6397 const char *regexp, const char *type_regexp,
6398 search_domain kind)
6399{
6400 /* Print a header line. Don't build the header line bit by bit as this
6401 prevents internationalisation. */
6402 if (!quiet)
6403 {
6404 if (module_regexp == nullptr)
6405 {
6406 if (type_regexp == nullptr)
6407 {
6408 if (regexp == nullptr)
6409 printf_filtered ((kind == VARIABLES_DOMAIN
6410 ? _("All variables in all modules:")
6411 : _("All functions in all modules:")));
6412 else
6413 printf_filtered
6414 ((kind == VARIABLES_DOMAIN
6415 ? _("All variables matching regular expression"
6416 " \"%s\" in all modules:")
6417 : _("All functions matching regular expression"
6418 " \"%s\" in all modules:")),
6419 regexp);
6420 }
6421 else
6422 {
6423 if (regexp == nullptr)
6424 printf_filtered
6425 ((kind == VARIABLES_DOMAIN
6426 ? _("All variables with type matching regular "
6427 "expression \"%s\" in all modules:")
6428 : _("All functions with type matching regular "
6429 "expression \"%s\" in all modules:")),
6430 type_regexp);
6431 else
6432 printf_filtered
6433 ((kind == VARIABLES_DOMAIN
6434 ? _("All variables matching regular expression "
6435 "\"%s\",\n\twith type matching regular "
6436 "expression \"%s\" in all modules:")
6437 : _("All functions matching regular expression "
6438 "\"%s\",\n\twith type matching regular "
6439 "expression \"%s\" in all modules:")),
6440 regexp, type_regexp);
6441 }
6442 }
6443 else
6444 {
6445 if (type_regexp == nullptr)
6446 {
6447 if (regexp == nullptr)
6448 printf_filtered
6449 ((kind == VARIABLES_DOMAIN
6450 ? _("All variables in all modules matching regular "
6451 "expression \"%s\":")
6452 : _("All functions in all modules matching regular "
6453 "expression \"%s\":")),
6454 module_regexp);
6455 else
6456 printf_filtered
6457 ((kind == VARIABLES_DOMAIN
6458 ? _("All variables matching regular expression "
6459 "\"%s\",\n\tin all modules matching regular "
6460 "expression \"%s\":")
6461 : _("All functions matching regular expression "
6462 "\"%s\",\n\tin all modules matching regular "
6463 "expression \"%s\":")),
6464 regexp, module_regexp);
6465 }
6466 else
6467 {
6468 if (regexp == nullptr)
6469 printf_filtered
6470 ((kind == VARIABLES_DOMAIN
6471 ? _("All variables with type matching regular "
6472 "expression \"%s\"\n\tin all modules matching "
6473 "regular expression \"%s\":")
6474 : _("All functions with type matching regular "
6475 "expression \"%s\"\n\tin all modules matching "
6476 "regular expression \"%s\":")),
6477 type_regexp, module_regexp);
6478 else
6479 printf_filtered
6480 ((kind == VARIABLES_DOMAIN
6481 ? _("All variables matching regular expression "
6482 "\"%s\",\n\twith type matching regular expression "
6483 "\"%s\",\n\tin all modules matching regular "
6484 "expression \"%s\":")
6485 : _("All functions matching regular expression "
6486 "\"%s\",\n\twith type matching regular expression "
6487 "\"%s\",\n\tin all modules matching regular "
6488 "expression \"%s\":")),
6489 regexp, type_regexp, module_regexp);
6490 }
6491 }
6492 printf_filtered ("\n");
6493 }
6494
6495 /* Find all symbols of type KIND matching the given regular expressions
6496 along with the symbols for the modules in which those symbols
6497 reside. */
6498 std::vector<module_symbol_search> module_symbols
6499 = search_module_symbols (module_regexp, regexp, type_regexp, kind);
6500
6501 std::sort (module_symbols.begin (), module_symbols.end (),
6502 [] (const module_symbol_search &a, const module_symbol_search &b)
6503 {
6504 if (a.first < b.first)
6505 return true;
6506 else if (a.first == b.first)
6507 return a.second < b.second;
6508 else
6509 return false;
6510 });
6511
6512 const char *last_filename = "";
6513 const symbol *last_module_symbol = nullptr;
6514 for (const module_symbol_search &ms : module_symbols)
6515 {
6516 const symbol_search &p = ms.first;
6517 const symbol_search &q = ms.second;
6518
6519 gdb_assert (q.symbol != nullptr);
6520
6521 if (last_module_symbol != p.symbol)
6522 {
6523 printf_filtered ("\n");
6524 printf_filtered (_("Module \"%s\":\n"),
6525 SYMBOL_PRINT_NAME (p.symbol));
6526 last_module_symbol = p.symbol;
6527 last_filename = "";
6528 }
6529
6530 print_symbol_info (FUNCTIONS_DOMAIN, q.symbol, q.block,
6531 last_filename);
6532 last_filename
6533 = symtab_to_filename_for_display (symbol_symtab (q.symbol));
6534 }
6535}
6536
6537/* Hold the option values for the 'info module .....' sub-commands. */
6538
6539struct info_modules_var_func_options
6540{
6541 bool quiet = false;
6542 char *type_regexp = nullptr;
6543 char *module_regexp = nullptr;
6544
6545 ~info_modules_var_func_options ()
6546 {
6547 xfree (type_regexp);
6548 xfree (module_regexp);
6549 }
6550};
6551
6552/* The options used by 'info module variables' and 'info module functions'
6553 commands. */
6554
6555static const gdb::option::option_def info_modules_var_func_options_defs [] = {
6556 gdb::option::boolean_option_def<info_modules_var_func_options> {
6557 "q",
6558 [] (info_modules_var_func_options *opt) { return &opt->quiet; },
6559 nullptr, /* show_cmd_cb */
6560 nullptr /* set_doc */
6561 },
6562
6563 gdb::option::string_option_def<info_modules_var_func_options> {
6564 "t",
6565 [] (info_modules_var_func_options *opt) { return &opt->type_regexp; },
6566 nullptr, /* show_cmd_cb */
6567 nullptr /* set_doc */
6568 },
6569
6570 gdb::option::string_option_def<info_modules_var_func_options> {
6571 "m",
6572 [] (info_modules_var_func_options *opt) { return &opt->module_regexp; },
6573 nullptr, /* show_cmd_cb */
6574 nullptr /* set_doc */
6575 }
6576};
6577
6578/* Return the option group used by the 'info module ...' sub-commands. */
6579
6580static inline gdb::option::option_def_group
6581make_info_modules_var_func_options_def_group
6582 (info_modules_var_func_options *opts)
6583{
6584 return {{info_modules_var_func_options_defs}, opts};
6585}
6586
6587/* Implements the 'info module functions' command. */
6588
6589static void
6590info_module_functions_command (const char *args, int from_tty)
6591{
6592 info_modules_var_func_options opts;
6593 auto grp = make_info_modules_var_func_options_def_group (&opts);
6594 gdb::option::process_options
6595 (&args, gdb::option::PROCESS_OPTIONS_UNKNOWN_IS_OPERAND, grp);
6596 if (args != nullptr && *args == '\0')
6597 args = nullptr;
6598
6599 info_module_subcommand (opts.quiet, opts.module_regexp, args,
6600 opts.type_regexp, FUNCTIONS_DOMAIN);
6601}
6602
6603/* Implements the 'info module variables' command. */
6604
6605static void
6606info_module_variables_command (const char *args, int from_tty)
6607{
6608 info_modules_var_func_options opts;
6609 auto grp = make_info_modules_var_func_options_def_group (&opts);
6610 gdb::option::process_options
6611 (&args, gdb::option::PROCESS_OPTIONS_UNKNOWN_IS_OPERAND, grp);
6612 if (args != nullptr && *args == '\0')
6613 args = nullptr;
6614
6615 info_module_subcommand (opts.quiet, opts.module_regexp, args,
6616 opts.type_regexp, VARIABLES_DOMAIN);
6617}
6618
6619/* Command completer for 'info module ...' sub-commands. */
6620
6621static void
6622info_module_var_func_command_completer (struct cmd_list_element *ignore,
6623 completion_tracker &tracker,
6624 const char *text,
6625 const char * /* word */)
6626{
6627
6628 const auto group = make_info_modules_var_func_options_def_group (nullptr);
6629 if (gdb::option::complete_options
6630 (tracker, &text, gdb::option::PROCESS_OPTIONS_UNKNOWN_IS_OPERAND, group))
6631 return;
6632
6633 const char *word = advance_to_expression_complete_word_point (tracker, text);
6634 symbol_completer (ignore, tracker, text, word);
6635}
6636
6637\f
6638
c906108c 6639void
fba45db2 6640_initialize_symtab (void)
c906108c 6641{
60cfcb20
AB
6642 cmd_list_element *c;
6643
f1e6e072
TT
6644 initialize_ordinary_address_classes ();
6645
60cfcb20
AB
6646 c = add_info ("variables", info_variables_command,
6647 info_print_args_help (_("\
12615cba 6648All global and static variable names or those matching REGEXPs.\n\
4acfdd20 6649Usage: info variables [-q] [-n] [-t TYPEREGEXP] [NAMEREGEXP]\n\
12615cba 6650Prints the global and static variables.\n"),
4acfdd20
AB
6651 _("global and static variables"),
6652 true));
60cfcb20 6653 set_cmd_completer_handle_brkchars (c, info_print_command_completer);
c906108c 6654 if (dbx_commands)
60cfcb20
AB
6655 {
6656 c = add_com ("whereis", class_info, info_variables_command,
6657 info_print_args_help (_("\
12615cba 6658All global and static variable names, or those matching REGEXPs.\n\
4acfdd20 6659Usage: whereis [-q] [-n] [-t TYPEREGEXP] [NAMEREGEXP]\n\
12615cba 6660Prints the global and static variables.\n"),
4acfdd20
AB
6661 _("global and static variables"),
6662 true));
60cfcb20
AB
6663 set_cmd_completer_handle_brkchars (c, info_print_command_completer);
6664 }
c906108c 6665
60cfcb20
AB
6666 c = add_info ("functions", info_functions_command,
6667 info_print_args_help (_("\
12615cba 6668All function names or those matching REGEXPs.\n\
4acfdd20 6669Usage: info functions [-q] [-n] [-t TYPEREGEXP] [NAMEREGEXP]\n\
12615cba 6670Prints the functions.\n"),
4acfdd20
AB
6671 _("functions"),
6672 true));
60cfcb20 6673 set_cmd_completer_handle_brkchars (c, info_print_command_completer);
c906108c 6674
a8eab7c6
AB
6675 c = add_info ("types", info_types_command, _("\
6676All type names, or those matching REGEXP.\n\
6677Usage: info types [-q] [REGEXP]\n\
6678Print information about all types matching REGEXP, or all types if no\n\
6679REGEXP is given. The optional flag -q disables printing of headers."));
6680 set_cmd_completer_handle_brkchars (c, info_types_command_completer);
c906108c 6681
28cd9371
PW
6682 const auto info_sources_opts = make_info_sources_options_def_group (nullptr);
6683
6684 static std::string info_sources_help
6685 = gdb::option::build_help (_("\
6686All source files in the program or those matching REGEXP.\n\
6687Usage: info sources [OPTION]... [REGEXP]\n\
6688By default, REGEXP is used to match anywhere in the filename.\n\
6689\n\
6690Options:\n\
6691%OPTIONS%"),
6692 info_sources_opts);
6693
6694 c = add_info ("sources", info_sources_command, info_sources_help.c_str ());
6695 set_cmd_completer_handle_brkchars (c, info_sources_command_completer);
c906108c 6696
59c35742
AB
6697 c = add_info ("modules", info_modules_command,
6698 _("All module names, or those matching REGEXP."));
6699 set_cmd_completer_handle_brkchars (c, info_types_command_completer);
6700
165f8965
AB
6701 add_prefix_cmd ("module", class_info, info_module_command, _("\
6702Print information about modules."),
6703 &info_module_cmdlist, "info module ",
6704 0, &infolist);
6705
6706 c = add_cmd ("functions", class_info, info_module_functions_command, _("\
6707Display functions arranged by modules.\n\
6708Usage: info module functions [-q] [-m MODREGEXP] [-t TYPEREGEXP] [REGEXP]\n\
6709Print a summary of all functions within each Fortran module, grouped by\n\
6710module and file. For each function the line on which the function is\n\
6711defined is given along with the type signature and name of the function.\n\
6712\n\
6713If REGEXP is provided then only functions whose name matches REGEXP are\n\
6714listed. If MODREGEXP is provided then only functions in modules matching\n\
6715MODREGEXP are listed. If TYPEREGEXP is given then only functions whose\n\
6716type signature matches TYPEREGEXP are listed.\n\
6717\n\
6718The -q flag suppresses printing some header information."),
6719 &info_module_cmdlist);
6720 set_cmd_completer_handle_brkchars
6721 (c, info_module_var_func_command_completer);
6722
6723 c = add_cmd ("variables", class_info, info_module_variables_command, _("\
6724Display variables arranged by modules.\n\
6725Usage: info module variables [-q] [-m MODREGEXP] [-t TYPEREGEXP] [REGEXP]\n\
6726Print a summary of all variables within each Fortran module, grouped by\n\
6727module and file. For each variable the line on which the variable is\n\
6728defined is given along with the type and name of the variable.\n\
6729\n\
6730If REGEXP is provided then only variables whose name matches REGEXP are\n\
6731listed. If MODREGEXP is provided then only variables in modules matching\n\
6732MODREGEXP are listed. If TYPEREGEXP is given then only variables whose\n\
6733type matches TYPEREGEXP are listed.\n\
6734\n\
6735The -q flag suppresses printing some header information."),
6736 &info_module_cmdlist);
6737 set_cmd_completer_handle_brkchars
6738 (c, info_module_var_func_command_completer);
6739
c906108c 6740 add_com ("rbreak", class_breakpoint, rbreak_command,
1bedd215 6741 _("Set a breakpoint for all functions matching REGEXP."));
c906108c 6742
717d2f5a
JB
6743 add_setshow_enum_cmd ("multiple-symbols", no_class,
6744 multiple_symbols_modes, &multiple_symbols_mode,
6745 _("\
590042fc 6746Set how the debugger handles ambiguities in expressions."), _("\
717d2f5a
JB
6747Show how the debugger handles ambiguities in expressions."), _("\
6748Valid values are \"ask\", \"all\", \"cancel\", and the default is \"all\"."),
6749 NULL, NULL, &setlist, &showlist);
6750
c011a4f4
DE
6751 add_setshow_boolean_cmd ("basenames-may-differ", class_obscure,
6752 &basenames_may_differ, _("\
6753Set whether a source file may have multiple base names."), _("\
6754Show whether a source file may have multiple base names."), _("\
6755(A \"base name\" is the name of a file with the directory part removed.\n\
6756Example: The base name of \"/home/user/hello.c\" is \"hello.c\".)\n\
6757If set, GDB will canonicalize file names (e.g., expand symlinks)\n\
6758before comparing them. Canonicalization is an expensive operation,\n\
6759but it allows the same file be known by more than one base name.\n\
6760If not set (the default), all source files are assumed to have just\n\
6761one base name, and gdb will do file name comparisons more efficiently."),
6762 NULL, NULL,
6763 &setlist, &showlist);
6764
db0fec5c
DE
6765 add_setshow_zuinteger_cmd ("symtab-create", no_class, &symtab_create_debug,
6766 _("Set debugging of symbol table creation."),
6767 _("Show debugging of symbol table creation."), _("\
6768When enabled (non-zero), debugging messages are printed when building\n\
6769symbol tables. A value of 1 (one) normally provides enough information.\n\
6770A value greater than 1 provides more verbose information."),
6771 NULL,
6772 NULL,
6773 &setdebuglist, &showdebuglist);
45cfd468 6774
cc485e62
DE
6775 add_setshow_zuinteger_cmd ("symbol-lookup", no_class, &symbol_lookup_debug,
6776 _("\
6777Set debugging of symbol lookup."), _("\
6778Show debugging of symbol lookup."), _("\
6779When enabled (non-zero), symbol lookups are logged."),
6780 NULL, NULL,
6781 &setdebuglist, &showdebuglist);
6782
f57d2163
DE
6783 add_setshow_zuinteger_cmd ("symbol-cache-size", no_class,
6784 &new_symbol_cache_size,
6785 _("Set the size of the symbol cache."),
6786 _("Show the size of the symbol cache."), _("\
6787The size of the symbol cache.\n\
6788If zero then the symbol cache is disabled."),
6789 set_symbol_cache_size_handler, NULL,
6790 &maintenance_set_cmdlist,
6791 &maintenance_show_cmdlist);
6792
6793 add_cmd ("symbol-cache", class_maintenance, maintenance_print_symbol_cache,
6794 _("Dump the symbol cache for each program space."),
6795 &maintenanceprintlist);
6796
6797 add_cmd ("symbol-cache-statistics", class_maintenance,
6798 maintenance_print_symbol_cache_statistics,
6799 _("Print symbol cache statistics for each program space."),
6800 &maintenanceprintlist);
6801
6802 add_cmd ("flush-symbol-cache", class_maintenance,
6803 maintenance_flush_symbol_cache,
6804 _("Flush the symbol cache for each program space."),
6805 &maintenancelist);
6806
76727919
TT
6807 gdb::observers::executable_changed.attach (symtab_observer_executable_changed);
6808 gdb::observers::new_objfile.attach (symtab_new_objfile_observer);
6809 gdb::observers::free_objfile.attach (symtab_free_objfile_observer);
c906108c 6810}