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