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