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