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