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