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