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