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