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