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