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