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