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