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