2002-12-17 Andrew Cagney <ac131313@redhat.com>
[deliverable/binutils-gdb.git] / gdb / symtab.c
CommitLineData
c906108c 1/* Symbol table lookup for the GNU debugger, GDB.
8926118c
AC
2
3 Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
4 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002 Free Software
5 Foundation, Inc.
c906108c 6
c5aa993b 7 This file is part of GDB.
c906108c 8
c5aa993b
JM
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
c906108c 13
c5aa993b
JM
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
c906108c 18
c5aa993b
JM
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place - Suite 330,
22 Boston, MA 02111-1307, USA. */
c906108c
SS
23
24#include "defs.h"
25#include "symtab.h"
26#include "gdbtypes.h"
27#include "gdbcore.h"
28#include "frame.h"
29#include "target.h"
30#include "value.h"
31#include "symfile.h"
32#include "objfiles.h"
33#include "gdbcmd.h"
34#include "call-cmds.h"
88987551 35#include "gdb_regex.h"
c906108c
SS
36#include "expression.h"
37#include "language.h"
38#include "demangle.h"
39#include "inferior.h"
c5f0f3d0 40#include "linespec.h"
0378c332 41#include "source.h"
a7fdf62f 42#include "filenames.h" /* for FILENAME_CMP */
c906108c 43
04ea0df1 44#include "gdb_obstack.h"
c906108c
SS
45
46#include <sys/types.h>
47#include <fcntl.h>
48#include "gdb_string.h"
49#include "gdb_stat.h"
50#include <ctype.h>
015a42b4 51#include "cp-abi.h"
c906108c 52
c906108c
SS
53/* Prototypes for local functions */
54
a14ed312 55static void completion_list_add_name (char *, char *, int, char *, char *);
c906108c 56
a14ed312 57static void rbreak_command (char *, int);
c906108c 58
a14ed312 59static void types_info (char *, int);
c906108c 60
a14ed312 61static void functions_info (char *, int);
c906108c 62
a14ed312 63static void variables_info (char *, int);
c906108c 64
a14ed312 65static void sources_info (char *, int);
c906108c 66
a14ed312 67static void output_source_filename (char *, int *);
c906108c 68
a14ed312 69static int find_line_common (struct linetable *, int, int *);
c906108c 70
50641945
FN
71/* This one is used by linespec.c */
72
73char *operator_chars (char *p, char **end);
74
b37bcaa8
KB
75static struct partial_symbol *lookup_partial_symbol (struct partial_symtab *,
76 const char *, int,
77 namespace_enum);
c906108c 78
3121eff0
DJ
79static struct symbol *lookup_symbol_aux (const char *name,
80 const char *mangled_name,
81 const struct block *block,
82 const namespace_enum namespace,
83 int *is_a_field_of_this,
84 struct symtab **symtab);
fba7f19c 85
e4051eeb
DC
86static
87struct symbol *lookup_symbol_aux_local (const char *name,
88 const char *mangled_name,
89 const struct block *block,
90 const namespace_enum namespace,
91 struct symtab **symtab,
92 const struct block **static_block);
8155455b 93
f61e8913
DC
94static
95struct symbol *lookup_symbol_aux_block (const char *name,
96 const char *mangled_name,
97 const struct block *block,
98 const namespace_enum namespace,
99 struct symtab **symtab);
100
8155455b
DC
101static
102struct symbol *lookup_symbol_aux_symtabs (int block_index,
103 const char *name,
104 const char *mangled_name,
105 const namespace_enum namespace,
106 struct symtab **symtab);
107
108static
109struct symbol *lookup_symbol_aux_psymtabs (int block_index,
110 const char *name,
111 const char *mangled_name,
112 const namespace_enum namespace,
113 struct symtab **symtab);
fba7f19c 114
406bc4de
DC
115static
116struct symbol *lookup_symbol_aux_minsyms (const char *name,
117 const char *mangled_name,
118 const namespace_enum namespace,
119 int *is_a_field_of_this,
120 struct symtab **symtab,
121 int *force_return);
122
a14ed312 123static struct symbol *find_active_alias (struct symbol *sym, CORE_ADDR addr);
c906108c
SS
124
125/* This flag is used in hppa-tdep.c, and set in hp-symtab-read.c */
126/* Signals the presence of objects compiled by HP compilers */
127int hp_som_som_object_present = 0;
128
a14ed312 129static void fixup_section (struct general_symbol_info *, struct objfile *);
c906108c 130
a14ed312 131static int file_matches (char *, char **, int);
c906108c 132
a14ed312
KB
133static void print_symbol_info (namespace_enum,
134 struct symtab *, struct symbol *, int, char *);
c906108c 135
a14ed312 136static void print_msymbol_info (struct minimal_symbol *);
c906108c 137
a14ed312 138static void symtab_symbol_info (char *, namespace_enum, int);
c906108c 139
a14ed312 140static void overload_list_add_symbol (struct symbol *sym, char *oload_name);
392a587b 141
a14ed312 142void _initialize_symtab (void);
c906108c
SS
143
144/* */
145
146/* The single non-language-specific builtin type */
147struct type *builtin_type_error;
148
149/* Block in which the most recently searched-for symbol was found.
150 Might be better to make this a parameter to lookup_symbol and
151 value_of_this. */
152
153const struct block *block_found;
154
c906108c
SS
155/* Check for a symtab of a specific name; first in symtabs, then in
156 psymtabs. *If* there is no '/' in the name, a match after a '/'
157 in the symtab filename will also work. */
158
1b15f1fa
TT
159struct symtab *
160lookup_symtab (const char *name)
c906108c
SS
161{
162 register struct symtab *s;
163 register struct partial_symtab *ps;
c906108c 164 register struct objfile *objfile;
58d370e0 165 char *real_path = NULL;
f079a2e5 166 char *full_path = NULL;
58d370e0
TT
167
168 /* Here we are interested in canonicalizing an absolute path, not
169 absolutizing a relative path. */
170 if (IS_ABSOLUTE_PATH (name))
f079a2e5
JB
171 {
172 full_path = xfullpath (name);
173 make_cleanup (xfree, full_path);
174 real_path = gdb_realpath (name);
175 make_cleanup (xfree, real_path);
176 }
c906108c 177
c5aa993b 178got_symtab:
c906108c
SS
179
180 /* First, search for an exact match */
181
182 ALL_SYMTABS (objfile, s)
58d370e0 183 {
a7fdf62f 184 if (FILENAME_CMP (name, s->filename) == 0)
58d370e0 185 {
58d370e0
TT
186 return s;
187 }
f079a2e5 188
58d370e0
TT
189 /* If the user gave us an absolute path, try to find the file in
190 this symtab and use its absolute path. */
f079a2e5
JB
191
192 if (full_path != NULL)
193 {
194 const char *fp = symtab_to_filename (s);
195 if (FILENAME_CMP (full_path, fp) == 0)
196 {
197 return s;
198 }
199 }
200
58d370e0
TT
201 if (real_path != NULL)
202 {
25f1b008 203 char *rp = gdb_realpath (symtab_to_filename (s));
f079a2e5 204 make_cleanup (xfree, rp);
58d370e0
TT
205 if (FILENAME_CMP (real_path, rp) == 0)
206 {
58d370e0
TT
207 return s;
208 }
209 }
210 }
211
c906108c
SS
212 /* Now, search for a matching tail (only if name doesn't have any dirs) */
213
caadab2c 214 if (lbasename (name) == name)
c906108c 215 ALL_SYMTABS (objfile, s)
c5aa993b 216 {
31889e00 217 if (FILENAME_CMP (lbasename (s->filename), name) == 0)
c5aa993b
JM
218 return s;
219 }
c906108c
SS
220
221 /* Same search rules as above apply here, but now we look thru the
222 psymtabs. */
223
224 ps = lookup_partial_symtab (name);
225 if (!ps)
226 return (NULL);
227
c5aa993b 228 if (ps->readin)
c906108c 229 error ("Internal: readin %s pst for `%s' found when no symtab found.",
c5aa993b 230 ps->filename, name);
c906108c
SS
231
232 s = PSYMTAB_TO_SYMTAB (ps);
233
234 if (s)
235 return s;
236
237 /* At this point, we have located the psymtab for this file, but
238 the conversion to a symtab has failed. This usually happens
239 when we are looking up an include file. In this case,
240 PSYMTAB_TO_SYMTAB doesn't return a symtab, even though one has
241 been created. So, we need to run through the symtabs again in
242 order to find the file.
243 XXX - This is a crock, and should be fixed inside of the the
244 symbol parsing routines. */
245 goto got_symtab;
246}
247
c906108c
SS
248/* Lookup the partial symbol table of a source file named NAME.
249 *If* there is no '/' in the name, a match after a '/'
250 in the psymtab filename will also work. */
251
252struct partial_symtab *
1f8cc6db 253lookup_partial_symtab (const char *name)
c906108c
SS
254{
255 register struct partial_symtab *pst;
256 register struct objfile *objfile;
f079a2e5 257 char *full_path = NULL;
58d370e0
TT
258 char *real_path = NULL;
259
260 /* Here we are interested in canonicalizing an absolute path, not
261 absolutizing a relative path. */
262 if (IS_ABSOLUTE_PATH (name))
f079a2e5
JB
263 {
264 full_path = xfullpath (name);
265 make_cleanup (xfree, full_path);
266 real_path = gdb_realpath (name);
267 make_cleanup (xfree, real_path);
268 }
c5aa993b 269
c906108c 270 ALL_PSYMTABS (objfile, pst)
c5aa993b 271 {
a7fdf62f 272 if (FILENAME_CMP (name, pst->filename) == 0)
c5aa993b
JM
273 {
274 return (pst);
275 }
f079a2e5 276
58d370e0
TT
277 /* If the user gave us an absolute path, try to find the file in
278 this symtab and use its absolute path. */
f079a2e5 279 if (full_path != NULL)
58d370e0
TT
280 {
281 if (pst->fullname == NULL)
282 source_full_path_of (pst->filename, &pst->fullname);
283 if (pst->fullname != NULL
f079a2e5 284 && FILENAME_CMP (full_path, pst->fullname) == 0)
58d370e0 285 {
58d370e0
TT
286 return pst;
287 }
288 }
c906108c 289
f079a2e5
JB
290 if (real_path != NULL)
291 {
292 char *rp = NULL;
293 if (pst->fullname == NULL)
294 source_full_path_of (pst->filename, &pst->fullname);
295 if (pst->fullname != NULL)
296 {
297 rp = gdb_realpath (pst->fullname);
298 make_cleanup (xfree, rp);
299 }
300 if (rp != NULL && FILENAME_CMP (real_path, rp) == 0)
301 {
302 return pst;
303 }
304 }
305 }
58d370e0 306
c906108c
SS
307 /* Now, search for a matching tail (only if name doesn't have any dirs) */
308
caadab2c 309 if (lbasename (name) == name)
c906108c 310 ALL_PSYMTABS (objfile, pst)
c5aa993b 311 {
31889e00 312 if (FILENAME_CMP (lbasename (pst->filename), name) == 0)
c5aa993b
JM
313 return (pst);
314 }
c906108c
SS
315
316 return (NULL);
317}
318\f
319/* Mangle a GDB method stub type. This actually reassembles the pieces of the
320 full method name, which consist of the class name (from T), the unadorned
321 method name from METHOD_ID, and the signature for the specific overload,
322 specified by SIGNATURE_ID. Note that this function is g++ specific. */
323
324char *
fba45db2 325gdb_mangle_name (struct type *type, int method_id, int signature_id)
c906108c
SS
326{
327 int mangled_name_len;
328 char *mangled_name;
329 struct fn_field *f = TYPE_FN_FIELDLIST1 (type, method_id);
330 struct fn_field *method = &f[signature_id];
331 char *field_name = TYPE_FN_FIELDLIST_NAME (type, method_id);
332 char *physname = TYPE_FN_FIELD_PHYSNAME (f, signature_id);
333 char *newname = type_name_no_tag (type);
334
335 /* Does the form of physname indicate that it is the full mangled name
336 of a constructor (not just the args)? */
337 int is_full_physname_constructor;
338
339 int is_constructor;
015a42b4 340 int is_destructor = is_destructor_name (physname);
c906108c
SS
341 /* Need a new type prefix. */
342 char *const_prefix = method->is_const ? "C" : "";
343 char *volatile_prefix = method->is_volatile ? "V" : "";
344 char buf[20];
345 int len = (newname == NULL ? 0 : strlen (newname));
346
43630227
PS
347 /* Nothing to do if physname already contains a fully mangled v3 abi name
348 or an operator name. */
349 if ((physname[0] == '_' && physname[1] == 'Z')
350 || is_operator_name (field_name))
235d1e03
EZ
351 return xstrdup (physname);
352
015a42b4 353 is_full_physname_constructor = is_constructor_name (physname);
c906108c
SS
354
355 is_constructor =
c5aa993b 356 is_full_physname_constructor || (newname && STREQ (field_name, newname));
c906108c
SS
357
358 if (!is_destructor)
c5aa993b 359 is_destructor = (strncmp (physname, "__dt", 4) == 0);
c906108c
SS
360
361 if (is_destructor || is_full_physname_constructor)
362 {
c5aa993b
JM
363 mangled_name = (char *) xmalloc (strlen (physname) + 1);
364 strcpy (mangled_name, physname);
c906108c
SS
365 return mangled_name;
366 }
367
368 if (len == 0)
369 {
370 sprintf (buf, "__%s%s", const_prefix, volatile_prefix);
371 }
372 else if (physname[0] == 't' || physname[0] == 'Q')
373 {
374 /* The physname for template and qualified methods already includes
c5aa993b 375 the class name. */
c906108c
SS
376 sprintf (buf, "__%s%s", const_prefix, volatile_prefix);
377 newname = NULL;
378 len = 0;
379 }
380 else
381 {
382 sprintf (buf, "__%s%s%d", const_prefix, volatile_prefix, len);
383 }
384 mangled_name_len = ((is_constructor ? 0 : strlen (field_name))
235d1e03 385 + strlen (buf) + len + strlen (physname) + 1);
c906108c 386
c906108c 387 {
c5aa993b 388 mangled_name = (char *) xmalloc (mangled_name_len);
c906108c
SS
389 if (is_constructor)
390 mangled_name[0] = '\0';
391 else
392 strcpy (mangled_name, field_name);
393 }
394 strcat (mangled_name, buf);
395 /* If the class doesn't have a name, i.e. newname NULL, then we just
396 mangle it using 0 for the length of the class. Thus it gets mangled
c5aa993b 397 as something starting with `::' rather than `classname::'. */
c906108c
SS
398 if (newname != NULL)
399 strcat (mangled_name, newname);
400
401 strcat (mangled_name, physname);
402 return (mangled_name);
403}
12af6855
JB
404
405\f
89aad1f9
EZ
406/* Initialize the language dependent portion of a symbol
407 depending upon the language for the symbol. */
408void
409symbol_init_language_specific (struct general_symbol_info *gsymbol,
410 enum language language)
411{
412 gsymbol->language = language;
413 if (gsymbol->language == language_cplus
414 || gsymbol->language == language_java)
415 {
416 gsymbol->language_specific.cplus_specific.demangled_name = NULL;
417 }
418 else if (gsymbol->language == language_objc)
419 {
420 gsymbol->language_specific.objc_specific.demangled_name = NULL;
421 }
422 /* OBSOLETE else if (SYMBOL_LANGUAGE (symbol) == language_chill) */
423 /* OBSOLETE { */
424 /* OBSOLETE SYMBOL_CHILL_DEMANGLED_NAME (symbol) = NULL; */
425 /* OBSOLETE } */
426 else
427 {
428 memset (&gsymbol->language_specific, 0,
429 sizeof (gsymbol->language_specific));
430 }
431}
432
12af6855
JB
433/* Initialize a symbol's mangled name. */
434
435/* Try to initialize the demangled name for a symbol, based on the
436 language of that symbol. If the language is set to language_auto,
437 it will attempt to find any demangling algorithm that works and
438 then set the language appropriately. If no demangling of any kind
439 is found, the language is set back to language_unknown, so we can
440 avoid doing this work again the next time we encounter the symbol.
441 Any required space to store the name is obtained from the specified
442 obstack. */
443
444void
445symbol_init_demangled_name (struct general_symbol_info *gsymbol,
446 struct obstack *obstack)
447{
448 char *mangled = gsymbol->name;
449 char *demangled = NULL;
450
451 if (gsymbol->language == language_unknown)
452 gsymbol->language = language_auto;
453 if (gsymbol->language == language_cplus
454 || gsymbol->language == language_auto)
455 {
456 demangled =
457 cplus_demangle (gsymbol->name, DMGL_PARAMS | DMGL_ANSI);
458 if (demangled != NULL)
459 {
460 gsymbol->language = language_cplus;
461 gsymbol->language_specific.cplus_specific.demangled_name =
462 obsavestring (demangled, strlen (demangled), obstack);
463 xfree (demangled);
464 }
465 else
466 {
467 gsymbol->language_specific.cplus_specific.demangled_name = NULL;
468 }
469 }
470 if (gsymbol->language == language_java)
471 {
472 demangled =
473 cplus_demangle (gsymbol->name,
474 DMGL_PARAMS | DMGL_ANSI | DMGL_JAVA);
475 if (demangled != NULL)
476 {
477 gsymbol->language = language_java;
478 gsymbol->language_specific.cplus_specific.demangled_name =
479 obsavestring (demangled, strlen (demangled), obstack);
480 xfree (demangled);
481 }
482 else
483 {
484 gsymbol->language_specific.cplus_specific.demangled_name = NULL;
485 }
486 }
db034ac5
AC
487#if 0
488 /* OBSOLETE if (demangled == NULL */
489 /* OBSOLETE && (gsymbol->language == language_chill */
490 /* OBSOLETE || gsymbol->language == language_auto)) */
491 /* OBSOLETE { */
492 /* OBSOLETE demangled = */
493 /* OBSOLETE chill_demangle (gsymbol->name); */
494 /* OBSOLETE if (demangled != NULL) */
495 /* OBSOLETE { */
496 /* OBSOLETE gsymbol->language = language_chill; */
497 /* OBSOLETE gsymbol->language_specific.chill_specific.demangled_name = */
498 /* OBSOLETE obsavestring (demangled, strlen (demangled), obstack); */
499 /* OBSOLETE xfree (demangled); */
500 /* OBSOLETE } */
501 /* OBSOLETE else */
502 /* OBSOLETE { */
503 /* OBSOLETE gsymbol->language_specific.chill_specific.demangled_name = NULL; */
504 /* OBSOLETE } */
505 /* OBSOLETE } */
506#endif
12af6855
JB
507}
508
9cc0d196
EZ
509/* Return the demangled name for a symbol based on the language for
510 that symbol. If no demangled name exists, return NULL. */
511char *
512symbol_demangled_name (struct general_symbol_info *gsymbol)
513{
514 if (gsymbol->language == language_cplus
515 || gsymbol->language == language_java)
516 return gsymbol->language_specific.cplus_specific.demangled_name;
12af6855 517
9cc0d196
EZ
518 else if (gsymbol->language == language_objc)
519 return gsymbol->language_specific.objc_specific.demangled_name;
520
521 else
522 return NULL;
523
524 /* OBSOLETE (SYMBOL_LANGUAGE (symbol) == language_chill */
525 /* OBSOLETE ? SYMBOL_CHILL_DEMANGLED_NAME (symbol) */
526}
fe39c653
EZ
527
528/* Initialize the structure fields to zero values. */
529void
530init_sal (struct symtab_and_line *sal)
531{
532 sal->symtab = 0;
533 sal->section = 0;
534 sal->line = 0;
535 sal->pc = 0;
536 sal->end = 0;
537}
c906108c
SS
538\f
539
c5aa993b 540
c906108c
SS
541/* Find which partial symtab on contains PC and SECTION. Return 0 if none. */
542
543struct partial_symtab *
fba45db2 544find_pc_sect_psymtab (CORE_ADDR pc, asection *section)
c906108c
SS
545{
546 register struct partial_symtab *pst;
547 register struct objfile *objfile;
8a48e967
DJ
548 struct minimal_symbol *msymbol;
549
550 /* If we know that this is not a text address, return failure. This is
551 necessary because we loop based on texthigh and textlow, which do
552 not include the data ranges. */
553 msymbol = lookup_minimal_symbol_by_pc_section (pc, section);
554 if (msymbol
555 && (msymbol->type == mst_data
556 || msymbol->type == mst_bss
557 || msymbol->type == mst_abs
558 || msymbol->type == mst_file_data
559 || msymbol->type == mst_file_bss))
560 return NULL;
c906108c
SS
561
562 ALL_PSYMTABS (objfile, pst)
c5aa993b 563 {
c5aa993b 564 if (pc >= pst->textlow && pc < pst->texthigh)
c5aa993b 565 {
c5aa993b
JM
566 struct partial_symtab *tpst;
567
568 /* An objfile that has its functions reordered might have
569 many partial symbol tables containing the PC, but
570 we want the partial symbol table that contains the
571 function containing the PC. */
572 if (!(objfile->flags & OBJF_REORDERED) &&
573 section == 0) /* can't validate section this way */
574 return (pst);
575
c5aa993b
JM
576 if (msymbol == NULL)
577 return (pst);
578
579 for (tpst = pst; tpst != NULL; tpst = tpst->next)
580 {
c5aa993b 581 if (pc >= tpst->textlow && pc < tpst->texthigh)
c5aa993b
JM
582 {
583 struct partial_symbol *p;
c906108c 584
c5aa993b
JM
585 p = find_pc_sect_psymbol (tpst, pc, section);
586 if (p != NULL
587 && SYMBOL_VALUE_ADDRESS (p)
588 == SYMBOL_VALUE_ADDRESS (msymbol))
589 return (tpst);
590 }
591 }
592 return (pst);
593 }
594 }
c906108c
SS
595 return (NULL);
596}
597
598/* Find which partial symtab contains PC. Return 0 if none.
599 Backward compatibility, no section */
600
601struct partial_symtab *
fba45db2 602find_pc_psymtab (CORE_ADDR pc)
c906108c
SS
603{
604 return find_pc_sect_psymtab (pc, find_pc_mapped_section (pc));
605}
606
607/* Find which partial symbol within a psymtab matches PC and SECTION.
608 Return 0 if none. Check all psymtabs if PSYMTAB is 0. */
609
610struct partial_symbol *
fba45db2
KB
611find_pc_sect_psymbol (struct partial_symtab *psymtab, CORE_ADDR pc,
612 asection *section)
c906108c
SS
613{
614 struct partial_symbol *best = NULL, *p, **pp;
615 CORE_ADDR best_pc;
c5aa993b 616
c906108c
SS
617 if (!psymtab)
618 psymtab = find_pc_sect_psymtab (pc, section);
619 if (!psymtab)
620 return 0;
621
622 /* Cope with programs that start at address 0 */
623 best_pc = (psymtab->textlow != 0) ? psymtab->textlow - 1 : 0;
624
625 /* Search the global symbols as well as the static symbols, so that
626 find_pc_partial_function doesn't use a minimal symbol and thus
627 cache a bad endaddr. */
628 for (pp = psymtab->objfile->global_psymbols.list + psymtab->globals_offset;
c5aa993b
JM
629 (pp - (psymtab->objfile->global_psymbols.list + psymtab->globals_offset)
630 < psymtab->n_global_syms);
c906108c
SS
631 pp++)
632 {
633 p = *pp;
634 if (SYMBOL_NAMESPACE (p) == VAR_NAMESPACE
635 && SYMBOL_CLASS (p) == LOC_BLOCK
636 && pc >= SYMBOL_VALUE_ADDRESS (p)
637 && (SYMBOL_VALUE_ADDRESS (p) > best_pc
638 || (psymtab->textlow == 0
639 && best_pc == 0 && SYMBOL_VALUE_ADDRESS (p) == 0)))
640 {
c5aa993b 641 if (section) /* match on a specific section */
c906108c
SS
642 {
643 fixup_psymbol_section (p, psymtab->objfile);
644 if (SYMBOL_BFD_SECTION (p) != section)
645 continue;
646 }
647 best_pc = SYMBOL_VALUE_ADDRESS (p);
648 best = p;
649 }
650 }
651
652 for (pp = psymtab->objfile->static_psymbols.list + psymtab->statics_offset;
c5aa993b
JM
653 (pp - (psymtab->objfile->static_psymbols.list + psymtab->statics_offset)
654 < psymtab->n_static_syms);
c906108c
SS
655 pp++)
656 {
657 p = *pp;
658 if (SYMBOL_NAMESPACE (p) == VAR_NAMESPACE
659 && SYMBOL_CLASS (p) == LOC_BLOCK
660 && pc >= SYMBOL_VALUE_ADDRESS (p)
661 && (SYMBOL_VALUE_ADDRESS (p) > best_pc
c5aa993b 662 || (psymtab->textlow == 0
c906108c
SS
663 && best_pc == 0 && SYMBOL_VALUE_ADDRESS (p) == 0)))
664 {
c5aa993b 665 if (section) /* match on a specific section */
c906108c
SS
666 {
667 fixup_psymbol_section (p, psymtab->objfile);
668 if (SYMBOL_BFD_SECTION (p) != section)
669 continue;
670 }
671 best_pc = SYMBOL_VALUE_ADDRESS (p);
672 best = p;
673 }
674 }
675
676 return best;
677}
678
679/* Find which partial symbol within a psymtab matches PC. Return 0 if none.
680 Check all psymtabs if PSYMTAB is 0. Backwards compatibility, no section. */
681
682struct partial_symbol *
fba45db2 683find_pc_psymbol (struct partial_symtab *psymtab, CORE_ADDR pc)
c906108c
SS
684{
685 return find_pc_sect_psymbol (psymtab, pc, find_pc_mapped_section (pc));
686}
687\f
688/* Debug symbols usually don't have section information. We need to dig that
689 out of the minimal symbols and stash that in the debug symbol. */
690
691static void
fba45db2 692fixup_section (struct general_symbol_info *ginfo, struct objfile *objfile)
c906108c
SS
693{
694 struct minimal_symbol *msym;
695 msym = lookup_minimal_symbol (ginfo->name, NULL, objfile);
696
697 if (msym)
7a78d0ee
KB
698 {
699 ginfo->bfd_section = SYMBOL_BFD_SECTION (msym);
700 ginfo->section = SYMBOL_SECTION (msym);
701 }
c906108c
SS
702}
703
704struct symbol *
fba45db2 705fixup_symbol_section (struct symbol *sym, struct objfile *objfile)
c906108c
SS
706{
707 if (!sym)
708 return NULL;
709
710 if (SYMBOL_BFD_SECTION (sym))
711 return sym;
712
713 fixup_section (&sym->ginfo, objfile);
714
715 return sym;
716}
717
7a78d0ee 718struct partial_symbol *
fba45db2 719fixup_psymbol_section (struct partial_symbol *psym, struct objfile *objfile)
c906108c
SS
720{
721 if (!psym)
722 return NULL;
723
724 if (SYMBOL_BFD_SECTION (psym))
725 return psym;
726
727 fixup_section (&psym->ginfo, objfile);
728
729 return psym;
730}
731
732/* Find the definition for a specified symbol name NAME
733 in namespace NAMESPACE, visible from lexical block BLOCK.
734 Returns the struct symbol pointer, or zero if no symbol is found.
735 If SYMTAB is non-NULL, store the symbol table in which the
736 symbol was found there, or NULL if not found.
737 C++: if IS_A_FIELD_OF_THIS is nonzero on entry, check to see if
738 NAME is a field of the current implied argument `this'. If so set
739 *IS_A_FIELD_OF_THIS to 1, otherwise set it to zero.
740 BLOCK_FOUND is set to the block in which NAME is found (in the case of
741 a field of `this', value_of_this sets BLOCK_FOUND to the proper value.) */
742
743/* This function has a bunch of loops in it and it would seem to be
744 attractive to put in some QUIT's (though I'm not really sure
745 whether it can run long enough to be really important). But there
746 are a few calls for which it would appear to be bad news to quit
747 out of here: find_proc_desc in alpha-tdep.c and mips-tdep.c, and
748 nindy_frame_chain_valid in nindy-tdep.c. (Note that there is C++
749 code below which can error(), but that probably doesn't affect
750 these calls since they are looking for a known variable and thus
751 can probably assume it will never hit the C++ code). */
752
753struct symbol *
fba7f19c 754lookup_symbol (const char *name, const struct block *block,
fba45db2
KB
755 const namespace_enum namespace, int *is_a_field_of_this,
756 struct symtab **symtab)
c906108c 757{
729051e6
DJ
758 char *demangled_name = NULL;
759 const char *modified_name = NULL;
3121eff0 760 const char *mangled_name = NULL;
fba7f19c
EZ
761 int needtofreename = 0;
762 struct symbol *returnval;
c906108c 763
729051e6
DJ
764 modified_name = name;
765
766 /* If we are using C++ language, demangle the name before doing a lookup, so
767 we can always binary search. */
768 if (current_language->la_language == language_cplus)
769 {
770 demangled_name = cplus_demangle (name, DMGL_ANSI | DMGL_PARAMS);
771 if (demangled_name)
772 {
773 mangled_name = name;
774 modified_name = demangled_name;
775 needtofreename = 1;
776 }
777 }
778
63872f9d
JG
779 if (case_sensitivity == case_sensitive_off)
780 {
781 char *copy;
782 int len, i;
783
784 len = strlen (name);
785 copy = (char *) alloca (len + 1);
786 for (i= 0; i < len; i++)
787 copy[i] = tolower (name[i]);
788 copy[len] = 0;
fba7f19c 789 modified_name = copy;
63872f9d 790 }
fba7f19c 791
3121eff0
DJ
792 returnval = lookup_symbol_aux (modified_name, mangled_name, block,
793 namespace, is_a_field_of_this, symtab);
fba7f19c 794 if (needtofreename)
729051e6 795 xfree (demangled_name);
fba7f19c
EZ
796
797 return returnval;
798}
799
800static struct symbol *
3121eff0
DJ
801lookup_symbol_aux (const char *name, const char *mangled_name,
802 const struct block *block, const namespace_enum namespace,
803 int *is_a_field_of_this, struct symtab **symtab)
fba7f19c 804{
8155455b 805 struct symbol *sym;
e4051eeb 806 const struct block *static_block;
406bc4de
DC
807
808 /* FIXME: carlton/2002-11-05: This variable is here so that
809 lookup_symbol_aux will sometimes return NULL after receiving a
810 NULL return value from lookup_symbol_aux_minsyms, without
811 proceeding on to the partial symtab and static variable tests. I
812 suspect that that's a bad idea. */
813
814 int force_return;
63872f9d 815
e4051eeb
DC
816 /* Search specified block and its superiors. Don't search
817 STATIC_BLOCK or GLOBAL_BLOCK. */
c906108c 818
8155455b 819 sym = lookup_symbol_aux_local (name, mangled_name, block, namespace,
e4051eeb 820 symtab, &static_block);
8155455b
DC
821 if (sym != NULL)
822 return sym;
c906108c 823
8155455b
DC
824#if 0
825 /* NOTE: carlton/2002-11-05: At the time that this code was
826 #ifdeffed out, the value of 'block' was always NULL at this
827 point, hence the bemused comments below. */
c906108c
SS
828
829 /* FIXME: this code is never executed--block is always NULL at this
830 point. What is it trying to do, anyway? We already should have
831 checked the STATIC_BLOCK above (it is the superblock of top-level
832 blocks). Why is VAR_NAMESPACE special-cased? */
833 /* Don't need to mess with the psymtabs; if we have a block,
834 that file is read in. If we don't, then we deal later with
835 all the psymtab stuff that needs checking. */
836 /* Note (RT): The following never-executed code looks unnecessary to me also.
837 * If we change the code to use the original (passed-in)
838 * value of 'block', we could cause it to execute, but then what
839 * would it do? The STATIC_BLOCK of the symtab containing the passed-in
840 * 'block' was already searched by the above code. And the STATIC_BLOCK's
841 * of *other* symtabs (those files not containing 'block' lexically)
842 * should not contain 'block' address-wise. So we wouldn't expect this
843 * code to find any 'sym''s that were not found above. I vote for
844 * deleting the following paragraph of code.
845 */
846 if (namespace == VAR_NAMESPACE && block != NULL)
847 {
848 struct block *b;
849 /* Find the right symtab. */
850 ALL_SYMTABS (objfile, s)
c5aa993b
JM
851 {
852 bv = BLOCKVECTOR (s);
853 b = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
854 if (BLOCK_START (b) <= BLOCK_START (block)
855 && BLOCK_END (b) > BLOCK_START (block))
856 {
3121eff0 857 sym = lookup_block_symbol (b, name, mangled_name, VAR_NAMESPACE);
c5aa993b
JM
858 if (sym)
859 {
860 block_found = b;
861 if (symtab != NULL)
862 *symtab = s;
863 return fixup_symbol_section (sym, objfile);
864 }
865 }
866 }
c906108c 867 }
8155455b 868#endif /* 0 */
c906108c
SS
869
870 /* C++: If requested to do so by the caller,
871 check to see if NAME is a field of `this'. */
872 if (is_a_field_of_this)
873 {
874 struct value *v = value_of_this (0);
c5aa993b 875
c906108c
SS
876 *is_a_field_of_this = 0;
877 if (v && check_field (v, name))
878 {
879 *is_a_field_of_this = 1;
880 if (symtab != NULL)
881 *symtab = NULL;
882 return NULL;
883 }
884 }
885
e4051eeb
DC
886 /* If there's a static block to search, search it next. */
887
888 /* NOTE: carlton/2002-12-05: There is a question as to whether or
889 not it would be appropriate to search the current global block
890 here as well. (That's what this code used to do before the
891 is_a_field_of_this check was moved up.) On the one hand, it's
892 redundant with the lookup_symbol_aux_symtabs search that happens
893 next. On the other hand, if decode_line_1 is passed an argument
894 like filename:var, then the user presumably wants 'var' to be
895 searched for in filename. On the third hand, there shouldn't be
896 multiple global variables all of which are named 'var', and it's
897 not like decode_line_1 has ever restricted its search to only
898 global variables in a single filename. All in all, only
899 searching the static block here seems best: it's correct and it's
900 cleanest. */
901
902 /* NOTE: carlton/2002-12-05: There's also a possible performance
903 issue here: if you usually search for global symbols in the
904 current file, then it would be slightly better to search the
905 current global block before searching all the symtabs. But there
906 are other factors that have a much greater effect on performance
907 than that one, so I don't think we should worry about that for
908 now. */
909
910 if (static_block != NULL)
911 {
912 sym = lookup_symbol_aux_block (name, mangled_name, static_block,
913 namespace, symtab);
914 if (sym != NULL)
915 return sym;
916 }
917
c906108c
SS
918 /* Now search all global blocks. Do the symtab's first, then
919 check the psymtab's. If a psymtab indicates the existence
920 of the desired name as a global, then do psymtab-to-symtab
921 conversion on the fly and return the found symbol. */
c5aa993b 922
8155455b
DC
923 sym = lookup_symbol_aux_symtabs (GLOBAL_BLOCK, name, mangled_name,
924 namespace, symtab);
925 if (sym != NULL)
926 return sym;
c906108c
SS
927
928#ifndef HPUXHPPA
929
930 /* Check for the possibility of the symbol being a function or
931 a mangled variable that is stored in one of the minimal symbol tables.
932 Eventually, all global symbols might be resolved in this way. */
c5aa993b 933
406bc4de 934 force_return = 0;
c7612d53 935
406bc4de
DC
936 sym = lookup_symbol_aux_minsyms (name, mangled_name,
937 namespace, is_a_field_of_this,
938 symtab, &force_return);
939
940 if (sym != NULL || force_return == 1)
941 return sym;
c5aa993b 942
c906108c
SS
943#endif
944
8155455b
DC
945 sym = lookup_symbol_aux_psymtabs (GLOBAL_BLOCK, name, mangled_name,
946 namespace, symtab);
947 if (sym != NULL)
948 return sym;
c906108c 949
8155455b
DC
950 /* Now search all static file-level symbols. Not strictly correct,
951 but more useful than an error. Do the symtabs first, then check
952 the psymtabs. If a psymtab indicates the existence of the
953 desired name as a file-level static, then do psymtab-to-symtab
c906108c
SS
954 conversion on the fly and return the found symbol. */
955
8155455b
DC
956 sym = lookup_symbol_aux_symtabs (STATIC_BLOCK, name, mangled_name,
957 namespace, symtab);
958 if (sym != NULL)
959 return sym;
960
961 sym = lookup_symbol_aux_psymtabs (STATIC_BLOCK, name, mangled_name,
962 namespace, symtab);
963 if (sym != NULL)
964 return sym;
c906108c
SS
965
966#ifdef HPUXHPPA
967
968 /* Check for the possibility of the symbol being a function or
969 a global variable that is stored in one of the minimal symbol tables.
970 The "minimal symbol table" is built from linker-supplied info.
971
972 RT: I moved this check to last, after the complete search of
973 the global (p)symtab's and static (p)symtab's. For HP-generated
974 symbol tables, this check was causing a premature exit from
975 lookup_symbol with NULL return, and thus messing up symbol lookups
976 of things like "c::f". It seems to me a check of the minimal
977 symbol table ought to be a last resort in any case. I'm vaguely
978 worried about the comment below which talks about FORTRAN routines "foo_"
979 though... is it saying we need to do the "minsym" check before
980 the static check in this case?
981 */
c5aa993b 982
c906108c 983
406bc4de 984 force_return = 0;
c906108c 985
406bc4de
DC
986 sym = lookup_symbol_aux_minsyms (name, mangled_name,
987 namespace, is_a_field_of_this,
988 symtab, &force_return);
989
990 if (sym != NULL || force_return == 1)
991 return sym;
c906108c
SS
992
993#endif
994
995 if (symtab != NULL)
996 *symtab = NULL;
8155455b 997 return NULL;
c906108c 998}
8155455b 999
e4051eeb
DC
1000/* Check to see if the symbol is defined in BLOCK or its superiors.
1001 Don't search STATIC_BLOCK or GLOBAL_BLOCK. If we don't find a
1002 match, store the address of STATIC_BLOCK in static_block. */
8155455b
DC
1003
1004static struct symbol *
1005lookup_symbol_aux_local (const char *name, const char *mangled_name,
1006 const struct block *block,
1007 const namespace_enum namespace,
e4051eeb
DC
1008 struct symtab **symtab,
1009 const struct block **static_block)
8155455b
DC
1010{
1011 struct symbol *sym;
f61e8913 1012
e4051eeb
DC
1013 /* Check if either no block is specified or it's a global block. */
1014
1015 if (block == NULL || BLOCK_SUPERBLOCK (block) == NULL)
1016 {
1017 *static_block = NULL;
1018 return NULL;
1019 }
1020
1021 while (BLOCK_SUPERBLOCK (BLOCK_SUPERBLOCK (block)) != NULL)
f61e8913
DC
1022 {
1023 sym = lookup_symbol_aux_block (name, mangled_name, block, namespace,
1024 symtab);
1025 if (sym != NULL)
1026 return sym;
1027 block = BLOCK_SUPERBLOCK (block);
1028 }
1029
e4051eeb
DC
1030 /* We've reached the static block. */
1031
1032 *static_block = block;
f61e8913
DC
1033 return NULL;
1034}
1035
1036/* Look up a symbol in a block; if found, locate its symtab, fixup the
1037 symbol, and set block_found appropriately. */
1038
1039static struct symbol *
1040lookup_symbol_aux_block (const char *name, const char *mangled_name,
1041 const struct block *block,
1042 const namespace_enum namespace,
1043 struct symtab **symtab)
1044{
1045 struct symbol *sym;
8155455b
DC
1046 struct objfile *objfile = NULL;
1047 struct blockvector *bv;
1048 struct block *b;
1049 struct symtab *s = NULL;
f61e8913
DC
1050
1051 sym = lookup_block_symbol (block, name, mangled_name, namespace);
1052 if (sym)
8155455b 1053 {
f61e8913
DC
1054 block_found = block;
1055 if (symtab != NULL)
8155455b 1056 {
f61e8913
DC
1057 /* Search the list of symtabs for one which contains the
1058 address of the start of this block. */
1059 ALL_SYMTABS (objfile, s)
8155455b 1060 {
f61e8913
DC
1061 bv = BLOCKVECTOR (s);
1062 b = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
1063 if (BLOCK_START (b) <= BLOCK_START (block)
1064 && BLOCK_END (b) > BLOCK_START (block))
1065 goto found;
8155455b 1066 }
f61e8913
DC
1067 found:
1068 *symtab = s;
8155455b 1069 }
f61e8913
DC
1070
1071 return fixup_symbol_section (sym, objfile);
8155455b
DC
1072 }
1073
1074 return NULL;
1075}
1076
1077/* Check to see if the symbol is defined in one of the symtabs.
1078 BLOCK_INDEX should be either GLOBAL_BLOCK or STATIC_BLOCK,
1079 depending on whether or not we want to search global symbols or
1080 static symbols. */
1081
1082static struct symbol *
1083lookup_symbol_aux_symtabs (int block_index,
1084 const char *name, const char *mangled_name,
1085 const namespace_enum namespace,
1086 struct symtab **symtab)
1087{
1088 struct symbol *sym;
1089 struct objfile *objfile;
1090 struct blockvector *bv;
1091 const struct block *block;
1092 struct symtab *s;
1093
1094 ALL_SYMTABS (objfile, s)
1095 {
1096 bv = BLOCKVECTOR (s);
1097 block = BLOCKVECTOR_BLOCK (bv, block_index);
1098 sym = lookup_block_symbol (block, name, mangled_name, namespace);
1099 if (sym)
1100 {
1101 block_found = block;
1102 if (symtab != NULL)
1103 *symtab = s;
1104 return fixup_symbol_section (sym, objfile);
1105 }
1106 }
1107
1108 return NULL;
1109}
1110
1111/* Check to see if the symbol is defined in one of the partial
1112 symtabs. BLOCK_INDEX should be either GLOBAL_BLOCK or
1113 STATIC_BLOCK, depending on whether or not we want to search global
1114 symbols or static symbols. */
1115
1116static struct symbol *
1117lookup_symbol_aux_psymtabs (int block_index, const char *name,
1118 const char *mangled_name,
1119 const namespace_enum namespace,
1120 struct symtab **symtab)
1121{
1122 struct symbol *sym;
1123 struct objfile *objfile;
1124 struct blockvector *bv;
1125 const struct block *block;
1126 struct partial_symtab *ps;
1127 struct symtab *s;
1128 const int psymtab_index = (block_index == GLOBAL_BLOCK ? 1 : 0);
1129
1130 ALL_PSYMTABS (objfile, ps)
1131 {
1132 if (!ps->readin
1133 && lookup_partial_symbol (ps, name, psymtab_index, namespace))
1134 {
1135 s = PSYMTAB_TO_SYMTAB (ps);
1136 bv = BLOCKVECTOR (s);
1137 block = BLOCKVECTOR_BLOCK (bv, block_index);
1138 sym = lookup_block_symbol (block, name, mangled_name, namespace);
1139 if (!sym)
1140 {
1141 /* This shouldn't be necessary, but as a last resort try
1142 looking in the statics even though the psymtab claimed
1143 the symbol was global, or vice-versa. It's possible
1144 that the psymtab gets it wrong in some cases. */
1145
1146 /* FIXME: carlton/2002-09-30: Should we really do that?
1147 If that happens, isn't it likely to be a GDB error, in
1148 which case we should fix the GDB error rather than
1149 silently dealing with it here? So I'd vote for
1150 removing the check for the symbol in the other
1151 block. */
1152 block = BLOCKVECTOR_BLOCK (bv,
1153 block_index == GLOBAL_BLOCK ?
1154 STATIC_BLOCK : GLOBAL_BLOCK);
1155 sym = lookup_block_symbol (block, name, mangled_name, namespace);
1156 if (!sym)
1157 error ("Internal: %s symbol `%s' found in %s psymtab but not in symtab.\n%s may be an inlined function, or may be a template function\n(if a template, try specifying an instantiation: %s<type>).",
1158 block_index == GLOBAL_BLOCK ? "global" : "static",
1159 name, ps->filename, name, name);
1160 }
1161 if (symtab != NULL)
1162 *symtab = s;
1163 return fixup_symbol_section (sym, objfile);
1164 }
1165 }
1166
1167 return NULL;
1168}
1169
406bc4de
DC
1170/* Check for the possibility of the symbol being a function or a
1171 mangled variable that is stored in one of the minimal symbol
1172 tables. Eventually, all global symbols might be resolved in this
1173 way. */
1174
1175static struct symbol *
1176lookup_symbol_aux_minsyms (const char *name,
1177 const char *mangled_name,
1178 const namespace_enum namespace,
1179 int *is_a_field_of_this,
1180 struct symtab **symtab,
1181 int *force_return)
1182{
1183 struct symbol *sym;
1184 struct blockvector *bv;
1185 const struct block *block;
1186 struct minimal_symbol *msymbol;
1187 struct symtab *s;
1188
1189 if (namespace == VAR_NAMESPACE)
1190 {
1191 msymbol = lookup_minimal_symbol (name, NULL, NULL);
1192
1193 if (msymbol != NULL)
1194 {
1195 /* OK, we found a minimal symbol in spite of not finding any
1196 symbol. There are various possible explanations for
1197 this. One possibility is the symbol exists in code not
1198 compiled -g. Another possibility is that the 'psymtab'
1199 isn't doing its job. A third possibility, related to #2,
1200 is that we were confused by name-mangling. For instance,
1201 maybe the psymtab isn't doing its job because it only
1202 know about demangled names, but we were given a mangled
1203 name... */
1204
1205 /* We first use the address in the msymbol to try to locate
1206 the appropriate symtab. Note that find_pc_sect_symtab()
1207 has a side-effect of doing psymtab-to-symtab expansion,
1208 for the found symtab. */
1209 s = find_pc_sect_symtab (SYMBOL_VALUE_ADDRESS (msymbol),
1210 SYMBOL_BFD_SECTION (msymbol));
1211 if (s != NULL)
1212 {
1213 /* This is a function which has a symtab for its address. */
1214 bv = BLOCKVECTOR (s);
1215 block = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
1216
1217 /* This call used to pass `SYMBOL_NAME (msymbol)' as the
1218 `name' argument to lookup_block_symbol. But the name
1219 of a minimal symbol is always mangled, so that seems
1220 to be clearly the wrong thing to pass as the
1221 unmangled name. */
1222 sym =
1223 lookup_block_symbol (block, name, mangled_name, namespace);
1224 /* We kept static functions in minimal symbol table as well as
1225 in static scope. We want to find them in the symbol table. */
1226 if (!sym)
1227 {
1228 block = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
1229 sym = lookup_block_symbol (block, name,
1230 mangled_name, namespace);
1231 }
1232
1233 /* NOTE: carlton/2002-12-04: The following comment was
1234 taken from a time when two versions of this function
1235 were part of the body of lookup_symbol_aux: this
1236 comment was taken from the version of the function
1237 that was #ifdef HPUXHPPA, and the comment was right
1238 before the 'return NULL' part of lookup_symbol_aux.
1239 (Hence the "Fall through and return 0" comment.)
1240 Elena did some digging into the situation for
1241 Fortran, and she reports:
1242
1243 "I asked around (thanks to Jeff Knaggs), and I think
1244 the story for Fortran goes like this:
1245
1246 "Apparently, in older Fortrans, '_' was not part of
1247 the user namespace. g77 attached a final '_' to
1248 procedure names as the exported symbols for linkage
1249 (foo_) , but the symbols went in the debug info just
1250 like 'foo'. The rationale behind this is not
1251 completely clear, and maybe it was done to other
1252 symbols as well, not just procedures." */
1253
1254 /* If we get here with sym == 0, the symbol was
1255 found in the minimal symbol table
1256 but not in the symtab.
1257 Fall through and return 0 to use the msymbol
1258 definition of "foo_".
1259 (Note that outer code generally follows up a call
1260 to this routine with a call to lookup_minimal_symbol(),
1261 so a 0 return means we'll just flow into that other routine).
1262
1263 This happens for Fortran "foo_" symbols,
1264 which are "foo" in the symtab.
1265
1266 This can also happen if "asm" is used to make a
1267 regular symbol but not a debugging symbol, e.g.
1268 asm(".globl _main");
1269 asm("_main:");
1270 */
1271
1272 if (symtab != NULL && sym != NULL)
1273 *symtab = s;
1274 *force_return = 1;
1275 return fixup_symbol_section (sym, s->objfile);
1276 }
1277 else if (MSYMBOL_TYPE (msymbol) != mst_text
1278 && MSYMBOL_TYPE (msymbol) != mst_file_text
1279 && !STREQ (name, SYMBOL_NAME (msymbol)))
1280 {
1281 /* This is a mangled variable, look it up by its
1282 mangled name. */
1283 *force_return = 1;
1284 return lookup_symbol_aux (SYMBOL_NAME (msymbol), mangled_name,
1285 NULL, namespace, is_a_field_of_this,
1286 symtab);
1287 }
1288 }
1289 }
1290
1291 return NULL;
1292}
1293
c906108c
SS
1294/* Look, in partial_symtab PST, for symbol NAME. Check the global
1295 symbols if GLOBAL, the static symbols if not */
1296
1297static struct partial_symbol *
fba45db2
KB
1298lookup_partial_symbol (struct partial_symtab *pst, const char *name, int global,
1299 namespace_enum namespace)
c906108c 1300{
357e46e7 1301 struct partial_symbol *temp;
c906108c
SS
1302 struct partial_symbol **start, **psym;
1303 struct partial_symbol **top, **bottom, **center;
1304 int length = (global ? pst->n_global_syms : pst->n_static_syms);
1305 int do_linear_search = 1;
357e46e7 1306
c906108c
SS
1307 if (length == 0)
1308 {
1309 return (NULL);
1310 }
c906108c
SS
1311 start = (global ?
1312 pst->objfile->global_psymbols.list + pst->globals_offset :
c5aa993b 1313 pst->objfile->static_psymbols.list + pst->statics_offset);
357e46e7 1314
c5aa993b 1315 if (global) /* This means we can use a binary search. */
c906108c
SS
1316 {
1317 do_linear_search = 0;
1318
1319 /* Binary search. This search is guaranteed to end with center
1320 pointing at the earliest partial symbol with the correct
c5aa993b
JM
1321 name. At that point *all* partial symbols with that name
1322 will be checked against the correct namespace. */
c906108c
SS
1323
1324 bottom = start;
1325 top = start + length - 1;
1326 while (top > bottom)
1327 {
1328 center = bottom + (top - bottom) / 2;
1329 if (!(center < top))
e1e9e218 1330 internal_error (__FILE__, __LINE__, "failed internal consistency check");
c906108c 1331 if (!do_linear_search
357e46e7 1332 && (SYMBOL_LANGUAGE (*center) == language_java))
c906108c
SS
1333 {
1334 do_linear_search = 1;
1335 }
494b7ec9 1336 if (strcmp (SYMBOL_SOURCE_NAME (*center), name) >= 0)
c906108c
SS
1337 {
1338 top = center;
1339 }
1340 else
1341 {
1342 bottom = center + 1;
1343 }
1344 }
1345 if (!(top == bottom))
e1e9e218 1346 internal_error (__FILE__, __LINE__, "failed internal consistency check");
357e46e7
DB
1347
1348 /* djb - 2000-06-03 - Use SYMBOL_MATCHES_NAME, not a strcmp, so
1349 we don't have to force a linear search on C++. Probably holds true
1350 for JAVA as well, no way to check.*/
1351 while (SYMBOL_MATCHES_NAME (*top,name))
c906108c
SS
1352 {
1353 if (SYMBOL_NAMESPACE (*top) == namespace)
1354 {
357e46e7 1355 return (*top);
c906108c 1356 }
c5aa993b 1357 top++;
c906108c
SS
1358 }
1359 }
1360
1361 /* Can't use a binary search or else we found during the binary search that
1362 we should also do a linear search. */
1363
1364 if (do_linear_search)
357e46e7 1365 {
c906108c
SS
1366 for (psym = start; psym < start + length; psym++)
1367 {
1368 if (namespace == SYMBOL_NAMESPACE (*psym))
1369 {
1370 if (SYMBOL_MATCHES_NAME (*psym, name))
1371 {
1372 return (*psym);
1373 }
1374 }
1375 }
1376 }
1377
1378 return (NULL);
1379}
1380
1381/* Look up a type named NAME in the struct_namespace. The type returned
1382 must not be opaque -- i.e., must have at least one field defined
1383
1384 This code was modelled on lookup_symbol -- the parts not relevant to looking
1385 up types were just left out. In particular it's assumed here that types
1386 are available in struct_namespace and only at file-static or global blocks. */
1387
1388
1389struct type *
fba45db2 1390lookup_transparent_type (const char *name)
c906108c
SS
1391{
1392 register struct symbol *sym;
1393 register struct symtab *s = NULL;
1394 register struct partial_symtab *ps;
1395 struct blockvector *bv;
1396 register struct objfile *objfile;
1397 register struct block *block;
c906108c
SS
1398
1399 /* Now search all the global symbols. Do the symtab's first, then
1400 check the psymtab's. If a psymtab indicates the existence
1401 of the desired name as a global, then do psymtab-to-symtab
1402 conversion on the fly and return the found symbol. */
c5aa993b 1403
c906108c 1404 ALL_SYMTABS (objfile, s)
c5aa993b
JM
1405 {
1406 bv = BLOCKVECTOR (s);
1407 block = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
3121eff0 1408 sym = lookup_block_symbol (block, name, NULL, STRUCT_NAMESPACE);
c5aa993b
JM
1409 if (sym && !TYPE_IS_OPAQUE (SYMBOL_TYPE (sym)))
1410 {
1411 return SYMBOL_TYPE (sym);
1412 }
1413 }
c906108c
SS
1414
1415 ALL_PSYMTABS (objfile, ps)
c5aa993b
JM
1416 {
1417 if (!ps->readin && lookup_partial_symbol (ps, name, 1, STRUCT_NAMESPACE))
1418 {
1419 s = PSYMTAB_TO_SYMTAB (ps);
1420 bv = BLOCKVECTOR (s);
1421 block = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
3121eff0 1422 sym = lookup_block_symbol (block, name, NULL, STRUCT_NAMESPACE);
c5aa993b
JM
1423 if (!sym)
1424 {
1425 /* This shouldn't be necessary, but as a last resort
1426 * try looking in the statics even though the psymtab
1427 * claimed the symbol was global. It's possible that
1428 * the psymtab gets it wrong in some cases.
1429 */
1430 block = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
3121eff0 1431 sym = lookup_block_symbol (block, name, NULL, STRUCT_NAMESPACE);
c5aa993b
JM
1432 if (!sym)
1433 error ("Internal: global symbol `%s' found in %s psymtab but not in symtab.\n\
c906108c
SS
1434%s may be an inlined function, or may be a template function\n\
1435(if a template, try specifying an instantiation: %s<type>).",
c5aa993b
JM
1436 name, ps->filename, name, name);
1437 }
1438 if (!TYPE_IS_OPAQUE (SYMBOL_TYPE (sym)))
1439 return SYMBOL_TYPE (sym);
1440 }
1441 }
c906108c
SS
1442
1443 /* Now search the static file-level symbols.
1444 Not strictly correct, but more useful than an error.
1445 Do the symtab's first, then
1446 check the psymtab's. If a psymtab indicates the existence
1447 of the desired name as a file-level static, then do psymtab-to-symtab
1448 conversion on the fly and return the found symbol.
1449 */
1450
1451 ALL_SYMTABS (objfile, s)
c5aa993b
JM
1452 {
1453 bv = BLOCKVECTOR (s);
1454 block = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
3121eff0 1455 sym = lookup_block_symbol (block, name, NULL, STRUCT_NAMESPACE);
c5aa993b
JM
1456 if (sym && !TYPE_IS_OPAQUE (SYMBOL_TYPE (sym)))
1457 {
1458 return SYMBOL_TYPE (sym);
1459 }
1460 }
c906108c
SS
1461
1462 ALL_PSYMTABS (objfile, ps)
c5aa993b
JM
1463 {
1464 if (!ps->readin && lookup_partial_symbol (ps, name, 0, STRUCT_NAMESPACE))
1465 {
1466 s = PSYMTAB_TO_SYMTAB (ps);
1467 bv = BLOCKVECTOR (s);
1468 block = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
3121eff0 1469 sym = lookup_block_symbol (block, name, NULL, STRUCT_NAMESPACE);
c5aa993b
JM
1470 if (!sym)
1471 {
1472 /* This shouldn't be necessary, but as a last resort
1473 * try looking in the globals even though the psymtab
1474 * claimed the symbol was static. It's possible that
1475 * the psymtab gets it wrong in some cases.
1476 */
1477 block = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
3121eff0 1478 sym = lookup_block_symbol (block, name, NULL, STRUCT_NAMESPACE);
c5aa993b
JM
1479 if (!sym)
1480 error ("Internal: static symbol `%s' found in %s psymtab but not in symtab.\n\
c906108c
SS
1481%s may be an inlined function, or may be a template function\n\
1482(if a template, try specifying an instantiation: %s<type>).",
c5aa993b
JM
1483 name, ps->filename, name, name);
1484 }
1485 if (!TYPE_IS_OPAQUE (SYMBOL_TYPE (sym)))
1486 return SYMBOL_TYPE (sym);
1487 }
1488 }
c906108c
SS
1489 return (struct type *) 0;
1490}
1491
1492
1493/* Find the psymtab containing main(). */
1494/* FIXME: What about languages without main() or specially linked
1495 executables that have no main() ? */
1496
1497struct partial_symtab *
fba45db2 1498find_main_psymtab (void)
c906108c
SS
1499{
1500 register struct partial_symtab *pst;
1501 register struct objfile *objfile;
1502
1503 ALL_PSYMTABS (objfile, pst)
c5aa993b 1504 {
51cc5b07 1505 if (lookup_partial_symbol (pst, main_name (), 1, VAR_NAMESPACE))
c5aa993b
JM
1506 {
1507 return (pst);
1508 }
1509 }
c906108c
SS
1510 return (NULL);
1511}
1512
1513/* Search BLOCK for symbol NAME in NAMESPACE.
1514
1515 Note that if NAME is the demangled form of a C++ symbol, we will fail
1516 to find a match during the binary search of the non-encoded names, but
1517 for now we don't worry about the slight inefficiency of looking for
1518 a match we'll never find, since it will go pretty quick. Once the
1519 binary search terminates, we drop through and do a straight linear
1520 search on the symbols. Each symbol which is marked as being a C++
1521 symbol (language_cplus set) has both the encoded and non-encoded names
3121eff0
DJ
1522 tested for a match.
1523
1524 If MANGLED_NAME is non-NULL, verify that any symbol we find has this
1525 particular mangled name.
1526*/
c906108c
SS
1527
1528struct symbol *
fba45db2 1529lookup_block_symbol (register const struct block *block, const char *name,
3121eff0 1530 const char *mangled_name,
fba45db2 1531 const namespace_enum namespace)
c906108c
SS
1532{
1533 register int bot, top, inc;
1534 register struct symbol *sym;
1535 register struct symbol *sym_found = NULL;
1536 register int do_linear_search = 1;
1537
261397f8
DJ
1538 if (BLOCK_HASHTABLE (block))
1539 {
1540 unsigned int hash_index;
1541 hash_index = msymbol_hash_iw (name);
1542 hash_index = hash_index % BLOCK_BUCKETS (block);
1543 for (sym = BLOCK_BUCKET (block, hash_index); sym; sym = sym->hash_next)
1544 {
1545 if (SYMBOL_NAMESPACE (sym) == namespace
1546 && (mangled_name
1547 ? strcmp (SYMBOL_NAME (sym), mangled_name) == 0
1548 : SYMBOL_MATCHES_NAME (sym, name)))
1549 return sym;
1550 }
1551 return NULL;
1552 }
1553
c906108c
SS
1554 /* If the blocks's symbols were sorted, start with a binary search. */
1555
1556 if (BLOCK_SHOULD_SORT (block))
1557 {
1558 /* Reset the linear search flag so if the binary search fails, we
c5aa993b 1559 won't do the linear search once unless we find some reason to
fba7f19c 1560 do so */
c906108c
SS
1561
1562 do_linear_search = 0;
1563 top = BLOCK_NSYMS (block);
1564 bot = 0;
1565
1566 /* Advance BOT to not far before the first symbol whose name is NAME. */
1567
1568 while (1)
1569 {
1570 inc = (top - bot + 1);
1571 /* No need to keep binary searching for the last few bits worth. */
1572 if (inc < 4)
1573 {
1574 break;
1575 }
1576 inc = (inc >> 1) + bot;
1577 sym = BLOCK_SYM (block, inc);
fba7f19c 1578 if (!do_linear_search && (SYMBOL_LANGUAGE (sym) == language_java))
c906108c
SS
1579 {
1580 do_linear_search = 1;
1581 }
fba7f19c 1582 if (SYMBOL_SOURCE_NAME (sym)[0] < name[0])
c906108c
SS
1583 {
1584 bot = inc;
1585 }
fba7f19c 1586 else if (SYMBOL_SOURCE_NAME (sym)[0] > name[0])
c906108c
SS
1587 {
1588 top = inc;
1589 }
494b7ec9 1590 else if (strcmp (SYMBOL_SOURCE_NAME (sym), name) < 0)
c906108c
SS
1591 {
1592 bot = inc;
1593 }
1594 else
1595 {
1596 top = inc;
1597 }
1598 }
1599
1600 /* Now scan forward until we run out of symbols, find one whose
c5aa993b
JM
1601 name is greater than NAME, or find one we want. If there is
1602 more than one symbol with the right name and namespace, we
1603 return the first one; I believe it is now impossible for us
1604 to encounter two symbols with the same name and namespace
1605 here, because blocks containing argument symbols are no
3121eff0
DJ
1606 longer sorted. The exception is for C++, where multiple functions
1607 (cloned constructors / destructors, in particular) can have
1608 the same demangled name. So if we have a particular
1609 mangled name to match, try to do so. */
c906108c
SS
1610
1611 top = BLOCK_NSYMS (block);
1612 while (bot < top)
1613 {
1614 sym = BLOCK_SYM (block, bot);
3121eff0
DJ
1615 if (SYMBOL_NAMESPACE (sym) == namespace
1616 && (mangled_name
1617 ? strcmp (SYMBOL_NAME (sym), mangled_name) == 0
1618 : SYMBOL_MATCHES_NAME (sym, name)))
c9049fc9
MC
1619 {
1620 return sym;
1621 }
1ba7c32c
JM
1622 if (SYMBOL_SOURCE_NAME (sym)[0] > name[0])
1623 {
1624 break;
1625 }
c906108c
SS
1626 bot++;
1627 }
1628 }
1629
1630 /* Here if block isn't sorted, or we fail to find a match during the
1631 binary search above. If during the binary search above, we find a
8cc1c882 1632 symbol which is a Java symbol, then we have re-enabled the linear
c906108c
SS
1633 search flag which was reset when starting the binary search.
1634
1635 This loop is equivalent to the loop above, but hacked greatly for speed.
1636
1637 Note that parameter symbols do not always show up last in the
1638 list; this loop makes sure to take anything else other than
1639 parameter symbols first; it only uses parameter symbols as a
1640 last resort. Note that this only takes up extra computation
1641 time on a match. */
1642
1643 if (do_linear_search)
1644 {
1645 top = BLOCK_NSYMS (block);
1646 bot = 0;
1647 while (bot < top)
1648 {
1649 sym = BLOCK_SYM (block, bot);
3121eff0
DJ
1650 if (SYMBOL_NAMESPACE (sym) == namespace
1651 && (mangled_name
1652 ? strcmp (SYMBOL_NAME (sym), mangled_name) == 0
1653 : SYMBOL_MATCHES_NAME (sym, name)))
c906108c
SS
1654 {
1655 /* If SYM has aliases, then use any alias that is active
c5aa993b
JM
1656 at the current PC. If no alias is active at the current
1657 PC, then use the main symbol.
c906108c 1658
c5aa993b 1659 ?!? Is checking the current pc correct? Is this routine
a0b3c4fd
JM
1660 ever called to look up a symbol from another context?
1661
1662 FIXME: No, it's not correct. If someone sets a
1663 conditional breakpoint at an address, then the
1664 breakpoint's `struct expression' should refer to the
1665 `struct symbol' appropriate for the breakpoint's
1666 address, which may not be the PC.
1667
1668 Even if it were never called from another context,
1669 it's totally bizarre for lookup_symbol's behavior to
1670 depend on the value of the inferior's current PC. We
1671 should pass in the appropriate PC as well as the
1672 block. The interface to lookup_symbol should change
1673 to require the caller to provide a PC. */
1674
c5aa993b
JM
1675 if (SYMBOL_ALIASES (sym))
1676 sym = find_active_alias (sym, read_pc ());
c906108c
SS
1677
1678 sym_found = sym;
1679 if (SYMBOL_CLASS (sym) != LOC_ARG &&
1680 SYMBOL_CLASS (sym) != LOC_LOCAL_ARG &&
1681 SYMBOL_CLASS (sym) != LOC_REF_ARG &&
1682 SYMBOL_CLASS (sym) != LOC_REGPARM &&
1683 SYMBOL_CLASS (sym) != LOC_REGPARM_ADDR &&
1684 SYMBOL_CLASS (sym) != LOC_BASEREG_ARG)
1685 {
1686 break;
1687 }
1688 }
1689 bot++;
1690 }
1691 }
1692 return (sym_found); /* Will be NULL if not found. */
1693}
1694
1695/* Given a main symbol SYM and ADDR, search through the alias
1696 list to determine if an alias is active at ADDR and return
1697 the active alias.
1698
1699 If no alias is active, then return SYM. */
1700
1701static struct symbol *
fba45db2 1702find_active_alias (struct symbol *sym, CORE_ADDR addr)
c906108c
SS
1703{
1704 struct range_list *r;
1705 struct alias_list *aliases;
1706
1707 /* If we have aliases, check them first. */
1708 aliases = SYMBOL_ALIASES (sym);
1709
1710 while (aliases)
1711 {
1712 if (!SYMBOL_RANGES (aliases->sym))
c5aa993b 1713 return aliases->sym;
c906108c
SS
1714 for (r = SYMBOL_RANGES (aliases->sym); r; r = r->next)
1715 {
1716 if (r->start <= addr && r->end > addr)
1717 return aliases->sym;
1718 }
1719 aliases = aliases->next;
1720 }
1721
1722 /* Nothing found, return the main symbol. */
1723 return sym;
1724}
c906108c 1725\f
c5aa993b 1726
c906108c
SS
1727/* Return the symbol for the function which contains a specified
1728 lexical block, described by a struct block BL. */
1729
1730struct symbol *
fba45db2 1731block_function (struct block *bl)
c906108c
SS
1732{
1733 while (BLOCK_FUNCTION (bl) == 0 && BLOCK_SUPERBLOCK (bl) != 0)
1734 bl = BLOCK_SUPERBLOCK (bl);
1735
1736 return BLOCK_FUNCTION (bl);
1737}
1738
1739/* Find the symtab associated with PC and SECTION. Look through the
1740 psymtabs and read in another symtab if necessary. */
1741
1742struct symtab *
fba45db2 1743find_pc_sect_symtab (CORE_ADDR pc, asection *section)
c906108c
SS
1744{
1745 register struct block *b;
1746 struct blockvector *bv;
1747 register struct symtab *s = NULL;
1748 register struct symtab *best_s = NULL;
1749 register struct partial_symtab *ps;
1750 register struct objfile *objfile;
1751 CORE_ADDR distance = 0;
8a48e967
DJ
1752 struct minimal_symbol *msymbol;
1753
1754 /* If we know that this is not a text address, return failure. This is
1755 necessary because we loop based on the block's high and low code
1756 addresses, which do not include the data ranges, and because
1757 we call find_pc_sect_psymtab which has a similar restriction based
1758 on the partial_symtab's texthigh and textlow. */
1759 msymbol = lookup_minimal_symbol_by_pc_section (pc, section);
1760 if (msymbol
1761 && (msymbol->type == mst_data
1762 || msymbol->type == mst_bss
1763 || msymbol->type == mst_abs
1764 || msymbol->type == mst_file_data
1765 || msymbol->type == mst_file_bss))
1766 return NULL;
c906108c
SS
1767
1768 /* Search all symtabs for the one whose file contains our address, and which
1769 is the smallest of all the ones containing the address. This is designed
1770 to deal with a case like symtab a is at 0x1000-0x2000 and 0x3000-0x4000
1771 and symtab b is at 0x2000-0x3000. So the GLOBAL_BLOCK for a is from
1772 0x1000-0x4000, but for address 0x2345 we want to return symtab b.
1773
1774 This happens for native ecoff format, where code from included files
1775 gets its own symtab. The symtab for the included file should have
1776 been read in already via the dependency mechanism.
1777 It might be swifter to create several symtabs with the same name
1778 like xcoff does (I'm not sure).
1779
1780 It also happens for objfiles that have their functions reordered.
1781 For these, the symtab we are looking for is not necessarily read in. */
1782
1783 ALL_SYMTABS (objfile, s)
c5aa993b
JM
1784 {
1785 bv = BLOCKVECTOR (s);
1786 b = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
c906108c 1787
c5aa993b 1788 if (BLOCK_START (b) <= pc
c5aa993b 1789 && BLOCK_END (b) > pc
c5aa993b
JM
1790 && (distance == 0
1791 || BLOCK_END (b) - BLOCK_START (b) < distance))
1792 {
1793 /* For an objfile that has its functions reordered,
1794 find_pc_psymtab will find the proper partial symbol table
1795 and we simply return its corresponding symtab. */
1796 /* In order to better support objfiles that contain both
1797 stabs and coff debugging info, we continue on if a psymtab
1798 can't be found. */
1799 if ((objfile->flags & OBJF_REORDERED) && objfile->psymtabs)
1800 {
1801 ps = find_pc_sect_psymtab (pc, section);
1802 if (ps)
1803 return PSYMTAB_TO_SYMTAB (ps);
1804 }
1805 if (section != 0)
1806 {
1807 int i;
261397f8 1808 struct symbol *sym = NULL;
c906108c 1809
261397f8 1810 ALL_BLOCK_SYMBOLS (b, i, sym)
c5aa993b 1811 {
261397f8
DJ
1812 fixup_symbol_section (sym, objfile);
1813 if (section == SYMBOL_BFD_SECTION (sym))
c5aa993b
JM
1814 break;
1815 }
261397f8 1816 if ((i >= BLOCK_BUCKETS (b)) && (sym == NULL))
c5aa993b
JM
1817 continue; /* no symbol in this symtab matches section */
1818 }
1819 distance = BLOCK_END (b) - BLOCK_START (b);
1820 best_s = s;
1821 }
1822 }
c906108c
SS
1823
1824 if (best_s != NULL)
c5aa993b 1825 return (best_s);
c906108c
SS
1826
1827 s = NULL;
1828 ps = find_pc_sect_psymtab (pc, section);
1829 if (ps)
1830 {
1831 if (ps->readin)
1832 /* Might want to error() here (in case symtab is corrupt and
1833 will cause a core dump), but maybe we can successfully
1834 continue, so let's not. */
c906108c 1835 warning ("\
d730266b
AC
1836(Internal error: pc 0x%s in read in psymtab, but not in symtab.)\n",
1837 paddr_nz (pc));
c906108c
SS
1838 s = PSYMTAB_TO_SYMTAB (ps);
1839 }
1840 return (s);
1841}
1842
1843/* Find the symtab associated with PC. Look through the psymtabs and
1844 read in another symtab if necessary. Backward compatibility, no section */
1845
1846struct symtab *
fba45db2 1847find_pc_symtab (CORE_ADDR pc)
c906108c
SS
1848{
1849 return find_pc_sect_symtab (pc, find_pc_mapped_section (pc));
1850}
c906108c 1851\f
c5aa993b 1852
7e73cedf 1853/* Find the source file and line number for a given PC value and SECTION.
c906108c
SS
1854 Return a structure containing a symtab pointer, a line number,
1855 and a pc range for the entire source line.
1856 The value's .pc field is NOT the specified pc.
1857 NOTCURRENT nonzero means, if specified pc is on a line boundary,
1858 use the line that ends there. Otherwise, in that case, the line
1859 that begins there is used. */
1860
1861/* The big complication here is that a line may start in one file, and end just
1862 before the start of another file. This usually occurs when you #include
1863 code in the middle of a subroutine. To properly find the end of a line's PC
1864 range, we must search all symtabs associated with this compilation unit, and
1865 find the one whose first PC is closer than that of the next line in this
1866 symtab. */
1867
1868/* If it's worth the effort, we could be using a binary search. */
1869
1870struct symtab_and_line
fba45db2 1871find_pc_sect_line (CORE_ADDR pc, struct sec *section, int notcurrent)
c906108c
SS
1872{
1873 struct symtab *s;
1874 register struct linetable *l;
1875 register int len;
1876 register int i;
1877 register struct linetable_entry *item;
1878 struct symtab_and_line val;
1879 struct blockvector *bv;
1880 struct minimal_symbol *msymbol;
1881 struct minimal_symbol *mfunsym;
1882
1883 /* Info on best line seen so far, and where it starts, and its file. */
1884
1885 struct linetable_entry *best = NULL;
1886 CORE_ADDR best_end = 0;
1887 struct symtab *best_symtab = 0;
1888
1889 /* Store here the first line number
1890 of a file which contains the line at the smallest pc after PC.
1891 If we don't find a line whose range contains PC,
1892 we will use a line one less than this,
1893 with a range from the start of that file to the first line's pc. */
1894 struct linetable_entry *alt = NULL;
1895 struct symtab *alt_symtab = 0;
1896
1897 /* Info on best line seen in this file. */
1898
1899 struct linetable_entry *prev;
1900
1901 /* If this pc is not from the current frame,
1902 it is the address of the end of a call instruction.
1903 Quite likely that is the start of the following statement.
1904 But what we want is the statement containing the instruction.
1905 Fudge the pc to make sure we get that. */
1906
fe39c653 1907 init_sal (&val); /* initialize to zeroes */
c906108c 1908
b77b1eb7
JB
1909 /* It's tempting to assume that, if we can't find debugging info for
1910 any function enclosing PC, that we shouldn't search for line
1911 number info, either. However, GAS can emit line number info for
1912 assembly files --- very helpful when debugging hand-written
1913 assembly code. In such a case, we'd have no debug info for the
1914 function, but we would have line info. */
648f4f79 1915
c906108c
SS
1916 if (notcurrent)
1917 pc -= 1;
1918
c5aa993b 1919 /* elz: added this because this function returned the wrong
c906108c
SS
1920 information if the pc belongs to a stub (import/export)
1921 to call a shlib function. This stub would be anywhere between
1922 two functions in the target, and the line info was erroneously
1923 taken to be the one of the line before the pc.
c5aa993b 1924 */
c906108c 1925 /* RT: Further explanation:
c5aa993b 1926
c906108c
SS
1927 * We have stubs (trampolines) inserted between procedures.
1928 *
1929 * Example: "shr1" exists in a shared library, and a "shr1" stub also
1930 * exists in the main image.
1931 *
1932 * In the minimal symbol table, we have a bunch of symbols
1933 * sorted by start address. The stubs are marked as "trampoline",
1934 * the others appear as text. E.g.:
1935 *
1936 * Minimal symbol table for main image
1937 * main: code for main (text symbol)
1938 * shr1: stub (trampoline symbol)
1939 * foo: code for foo (text symbol)
1940 * ...
1941 * Minimal symbol table for "shr1" image:
1942 * ...
1943 * shr1: code for shr1 (text symbol)
1944 * ...
1945 *
1946 * So the code below is trying to detect if we are in the stub
1947 * ("shr1" stub), and if so, find the real code ("shr1" trampoline),
1948 * and if found, do the symbolization from the real-code address
1949 * rather than the stub address.
1950 *
1951 * Assumptions being made about the minimal symbol table:
1952 * 1. lookup_minimal_symbol_by_pc() will return a trampoline only
1953 * if we're really in the trampoline. If we're beyond it (say
1954 * we're in "foo" in the above example), it'll have a closer
1955 * symbol (the "foo" text symbol for example) and will not
1956 * return the trampoline.
1957 * 2. lookup_minimal_symbol_text() will find a real text symbol
1958 * corresponding to the trampoline, and whose address will
1959 * be different than the trampoline address. I put in a sanity
1960 * check for the address being the same, to avoid an
1961 * infinite recursion.
1962 */
c5aa993b
JM
1963 msymbol = lookup_minimal_symbol_by_pc (pc);
1964 if (msymbol != NULL)
c906108c 1965 if (MSYMBOL_TYPE (msymbol) == mst_solib_trampoline)
c5aa993b
JM
1966 {
1967 mfunsym = lookup_minimal_symbol_text (SYMBOL_NAME (msymbol), NULL, NULL);
1968 if (mfunsym == NULL)
1969 /* I eliminated this warning since it is coming out
1970 * in the following situation:
1971 * gdb shmain // test program with shared libraries
1972 * (gdb) break shr1 // function in shared lib
1973 * Warning: In stub for ...
1974 * In the above situation, the shared lib is not loaded yet,
1975 * so of course we can't find the real func/line info,
1976 * but the "break" still works, and the warning is annoying.
1977 * So I commented out the warning. RT */
1978 /* warning ("In stub for %s; unable to find real function/line info", SYMBOL_NAME(msymbol)) */ ;
1979 /* fall through */
1980 else if (SYMBOL_VALUE (mfunsym) == SYMBOL_VALUE (msymbol))
1981 /* Avoid infinite recursion */
1982 /* See above comment about why warning is commented out */
1983 /* warning ("In stub for %s; unable to find real function/line info", SYMBOL_NAME(msymbol)) */ ;
1984 /* fall through */
1985 else
1986 return find_pc_line (SYMBOL_VALUE (mfunsym), 0);
1987 }
c906108c
SS
1988
1989
1990 s = find_pc_sect_symtab (pc, section);
1991 if (!s)
1992 {
1993 /* if no symbol information, return previous pc */
1994 if (notcurrent)
1995 pc++;
1996 val.pc = pc;
1997 return val;
1998 }
1999
2000 bv = BLOCKVECTOR (s);
2001
2002 /* Look at all the symtabs that share this blockvector.
2003 They all have the same apriori range, that we found was right;
2004 but they have different line tables. */
2005
2006 for (; s && BLOCKVECTOR (s) == bv; s = s->next)
2007 {
2008 /* Find the best line in this symtab. */
2009 l = LINETABLE (s);
2010 if (!l)
c5aa993b 2011 continue;
c906108c
SS
2012 len = l->nitems;
2013 if (len <= 0)
2014 {
2015 /* I think len can be zero if the symtab lacks line numbers
2016 (e.g. gcc -g1). (Either that or the LINETABLE is NULL;
2017 I'm not sure which, and maybe it depends on the symbol
2018 reader). */
2019 continue;
2020 }
2021
2022 prev = NULL;
2023 item = l->item; /* Get first line info */
2024
2025 /* Is this file's first line closer than the first lines of other files?
c5aa993b 2026 If so, record this file, and its first line, as best alternate. */
c906108c
SS
2027 if (item->pc > pc && (!alt || item->pc < alt->pc))
2028 {
2029 alt = item;
2030 alt_symtab = s;
2031 }
2032
2033 for (i = 0; i < len; i++, item++)
2034 {
2035 /* Leave prev pointing to the linetable entry for the last line
2036 that started at or before PC. */
2037 if (item->pc > pc)
2038 break;
2039
2040 prev = item;
2041 }
2042
2043 /* At this point, prev points at the line whose start addr is <= pc, and
c5aa993b
JM
2044 item points at the next line. If we ran off the end of the linetable
2045 (pc >= start of the last line), then prev == item. If pc < start of
2046 the first line, prev will not be set. */
c906108c
SS
2047
2048 /* Is this file's best line closer than the best in the other files?
c5aa993b 2049 If so, record this file, and its best line, as best so far. */
c906108c
SS
2050
2051 if (prev && (!best || prev->pc > best->pc))
2052 {
2053 best = prev;
2054 best_symtab = s;
25d53da1
KB
2055
2056 /* Discard BEST_END if it's before the PC of the current BEST. */
2057 if (best_end <= best->pc)
2058 best_end = 0;
c906108c 2059 }
25d53da1
KB
2060
2061 /* If another line (denoted by ITEM) is in the linetable and its
2062 PC is after BEST's PC, but before the current BEST_END, then
2063 use ITEM's PC as the new best_end. */
2064 if (best && i < len && item->pc > best->pc
2065 && (best_end == 0 || best_end > item->pc))
2066 best_end = item->pc;
c906108c
SS
2067 }
2068
2069 if (!best_symtab)
2070 {
2071 if (!alt_symtab)
2072 { /* If we didn't find any line # info, just
2073 return zeros. */
2074 val.pc = pc;
2075 }
2076 else
2077 {
2078 val.symtab = alt_symtab;
2079 val.line = alt->line - 1;
2080
2081 /* Don't return line 0, that means that we didn't find the line. */
c5aa993b
JM
2082 if (val.line == 0)
2083 ++val.line;
c906108c
SS
2084
2085 val.pc = BLOCK_END (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK));
2086 val.end = alt->pc;
2087 }
2088 }
e8717518
FF
2089 else if (best->line == 0)
2090 {
2091 /* If our best fit is in a range of PC's for which no line
2092 number info is available (line number is zero) then we didn't
2093 find any valid line information. */
2094 val.pc = pc;
2095 }
c906108c
SS
2096 else
2097 {
2098 val.symtab = best_symtab;
2099 val.line = best->line;
2100 val.pc = best->pc;
2101 if (best_end && (!alt || best_end < alt->pc))
2102 val.end = best_end;
2103 else if (alt)
2104 val.end = alt->pc;
2105 else
2106 val.end = BLOCK_END (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK));
2107 }
2108 val.section = section;
2109 return val;
2110}
2111
2112/* Backward compatibility (no section) */
2113
2114struct symtab_and_line
fba45db2 2115find_pc_line (CORE_ADDR pc, int notcurrent)
c906108c 2116{
c5aa993b 2117 asection *section;
c906108c
SS
2118
2119 section = find_pc_overlay (pc);
2120 if (pc_in_unmapped_range (pc, section))
2121 pc = overlay_mapped_address (pc, section);
2122 return find_pc_sect_line (pc, section, notcurrent);
2123}
c906108c 2124\f
c906108c
SS
2125/* Find line number LINE in any symtab whose name is the same as
2126 SYMTAB.
2127
2128 If found, return the symtab that contains the linetable in which it was
2129 found, set *INDEX to the index in the linetable of the best entry
2130 found, and set *EXACT_MATCH nonzero if the value returned is an
2131 exact match.
2132
2133 If not found, return NULL. */
2134
50641945 2135struct symtab *
fba45db2 2136find_line_symtab (struct symtab *symtab, int line, int *index, int *exact_match)
c906108c
SS
2137{
2138 int exact;
2139
2140 /* BEST_INDEX and BEST_LINETABLE identify the smallest linenumber > LINE
2141 so far seen. */
2142
2143 int best_index;
2144 struct linetable *best_linetable;
2145 struct symtab *best_symtab;
2146
2147 /* First try looking it up in the given symtab. */
2148 best_linetable = LINETABLE (symtab);
2149 best_symtab = symtab;
2150 best_index = find_line_common (best_linetable, line, &exact);
2151 if (best_index < 0 || !exact)
2152 {
2153 /* Didn't find an exact match. So we better keep looking for
c5aa993b
JM
2154 another symtab with the same name. In the case of xcoff,
2155 multiple csects for one source file (produced by IBM's FORTRAN
2156 compiler) produce multiple symtabs (this is unavoidable
2157 assuming csects can be at arbitrary places in memory and that
2158 the GLOBAL_BLOCK of a symtab has a begin and end address). */
c906108c
SS
2159
2160 /* BEST is the smallest linenumber > LINE so far seen,
c5aa993b
JM
2161 or 0 if none has been seen so far.
2162 BEST_INDEX and BEST_LINETABLE identify the item for it. */
c906108c
SS
2163 int best;
2164
2165 struct objfile *objfile;
2166 struct symtab *s;
2167
2168 if (best_index >= 0)
2169 best = best_linetable->item[best_index].line;
2170 else
2171 best = 0;
2172
2173 ALL_SYMTABS (objfile, s)
c5aa993b
JM
2174 {
2175 struct linetable *l;
2176 int ind;
c906108c 2177
c5aa993b
JM
2178 if (!STREQ (symtab->filename, s->filename))
2179 continue;
2180 l = LINETABLE (s);
2181 ind = find_line_common (l, line, &exact);
2182 if (ind >= 0)
2183 {
2184 if (exact)
2185 {
2186 best_index = ind;
2187 best_linetable = l;
2188 best_symtab = s;
2189 goto done;
2190 }
2191 if (best == 0 || l->item[ind].line < best)
2192 {
2193 best = l->item[ind].line;
2194 best_index = ind;
2195 best_linetable = l;
2196 best_symtab = s;
2197 }
2198 }
2199 }
c906108c 2200 }
c5aa993b 2201done:
c906108c
SS
2202 if (best_index < 0)
2203 return NULL;
2204
2205 if (index)
2206 *index = best_index;
2207 if (exact_match)
2208 *exact_match = exact;
2209
2210 return best_symtab;
2211}
2212\f
2213/* Set the PC value for a given source file and line number and return true.
2214 Returns zero for invalid line number (and sets the PC to 0).
2215 The source file is specified with a struct symtab. */
2216
2217int
fba45db2 2218find_line_pc (struct symtab *symtab, int line, CORE_ADDR *pc)
c906108c
SS
2219{
2220 struct linetable *l;
2221 int ind;
2222
2223 *pc = 0;
2224 if (symtab == 0)
2225 return 0;
2226
2227 symtab = find_line_symtab (symtab, line, &ind, NULL);
2228 if (symtab != NULL)
2229 {
2230 l = LINETABLE (symtab);
2231 *pc = l->item[ind].pc;
2232 return 1;
2233 }
2234 else
2235 return 0;
2236}
2237
2238/* Find the range of pc values in a line.
2239 Store the starting pc of the line into *STARTPTR
2240 and the ending pc (start of next line) into *ENDPTR.
2241 Returns 1 to indicate success.
2242 Returns 0 if could not find the specified line. */
2243
2244int
fba45db2
KB
2245find_line_pc_range (struct symtab_and_line sal, CORE_ADDR *startptr,
2246 CORE_ADDR *endptr)
c906108c
SS
2247{
2248 CORE_ADDR startaddr;
2249 struct symtab_and_line found_sal;
2250
2251 startaddr = sal.pc;
c5aa993b 2252 if (startaddr == 0 && !find_line_pc (sal.symtab, sal.line, &startaddr))
c906108c
SS
2253 return 0;
2254
2255 /* This whole function is based on address. For example, if line 10 has
2256 two parts, one from 0x100 to 0x200 and one from 0x300 to 0x400, then
2257 "info line *0x123" should say the line goes from 0x100 to 0x200
2258 and "info line *0x355" should say the line goes from 0x300 to 0x400.
2259 This also insures that we never give a range like "starts at 0x134
2260 and ends at 0x12c". */
2261
2262 found_sal = find_pc_sect_line (startaddr, sal.section, 0);
2263 if (found_sal.line != sal.line)
2264 {
2265 /* The specified line (sal) has zero bytes. */
2266 *startptr = found_sal.pc;
2267 *endptr = found_sal.pc;
2268 }
2269 else
2270 {
2271 *startptr = found_sal.pc;
2272 *endptr = found_sal.end;
2273 }
2274 return 1;
2275}
2276
2277/* Given a line table and a line number, return the index into the line
2278 table for the pc of the nearest line whose number is >= the specified one.
2279 Return -1 if none is found. The value is >= 0 if it is an index.
2280
2281 Set *EXACT_MATCH nonzero if the value returned is an exact match. */
2282
2283static int
fba45db2
KB
2284find_line_common (register struct linetable *l, register int lineno,
2285 int *exact_match)
c906108c
SS
2286{
2287 register int i;
2288 register int len;
2289
2290 /* BEST is the smallest linenumber > LINENO so far seen,
2291 or 0 if none has been seen so far.
2292 BEST_INDEX identifies the item for it. */
2293
2294 int best_index = -1;
2295 int best = 0;
2296
2297 if (lineno <= 0)
2298 return -1;
2299 if (l == 0)
2300 return -1;
2301
2302 len = l->nitems;
2303 for (i = 0; i < len; i++)
2304 {
2305 register struct linetable_entry *item = &(l->item[i]);
2306
2307 if (item->line == lineno)
2308 {
2309 /* Return the first (lowest address) entry which matches. */
2310 *exact_match = 1;
2311 return i;
2312 }
2313
2314 if (item->line > lineno && (best == 0 || item->line < best))
2315 {
2316 best = item->line;
2317 best_index = i;
2318 }
2319 }
2320
2321 /* If we got here, we didn't get an exact match. */
2322
2323 *exact_match = 0;
2324 return best_index;
2325}
2326
2327int
fba45db2 2328find_pc_line_pc_range (CORE_ADDR pc, CORE_ADDR *startptr, CORE_ADDR *endptr)
c906108c
SS
2329{
2330 struct symtab_and_line sal;
2331 sal = find_pc_line (pc, 0);
2332 *startptr = sal.pc;
2333 *endptr = sal.end;
2334 return sal.symtab != 0;
2335}
2336
2337/* Given a function symbol SYM, find the symtab and line for the start
2338 of the function.
2339 If the argument FUNFIRSTLINE is nonzero, we want the first line
2340 of real code inside the function. */
2341
50641945 2342struct symtab_and_line
fba45db2 2343find_function_start_sal (struct symbol *sym, int funfirstline)
c906108c
SS
2344{
2345 CORE_ADDR pc;
2346 struct symtab_and_line sal;
2347
2348 pc = BLOCK_START (SYMBOL_BLOCK_VALUE (sym));
2349 fixup_symbol_section (sym, NULL);
2350 if (funfirstline)
c5aa993b 2351 { /* skip "first line" of function (which is actually its prologue) */
c906108c
SS
2352 asection *section = SYMBOL_BFD_SECTION (sym);
2353 /* If function is in an unmapped overlay, use its unmapped LMA
c5aa993b 2354 address, so that SKIP_PROLOGUE has something unique to work on */
c906108c
SS
2355 if (section_is_overlay (section) &&
2356 !section_is_mapped (section))
2357 pc = overlay_unmapped_address (pc, section);
2358
2359 pc += FUNCTION_START_OFFSET;
b83266a0 2360 pc = SKIP_PROLOGUE (pc);
c906108c
SS
2361
2362 /* For overlays, map pc back into its mapped VMA range */
2363 pc = overlay_mapped_address (pc, section);
2364 }
2365 sal = find_pc_sect_line (pc, SYMBOL_BFD_SECTION (sym), 0);
2366
2367#ifdef PROLOGUE_FIRSTLINE_OVERLAP
2368 /* Convex: no need to suppress code on first line, if any */
2369 sal.pc = pc;
2370#else
2371 /* Check if SKIP_PROLOGUE left us in mid-line, and the next
2372 line is still part of the same function. */
2373 if (sal.pc != pc
2374 && BLOCK_START (SYMBOL_BLOCK_VALUE (sym)) <= sal.end
2375 && sal.end < BLOCK_END (SYMBOL_BLOCK_VALUE (sym)))
2376 {
2377 /* First pc of next line */
2378 pc = sal.end;
2379 /* Recalculate the line number (might not be N+1). */
2380 sal = find_pc_sect_line (pc, SYMBOL_BFD_SECTION (sym), 0);
2381 }
2382 sal.pc = pc;
2383#endif
2384
2385 return sal;
2386}
50641945 2387
c906108c
SS
2388/* If P is of the form "operator[ \t]+..." where `...' is
2389 some legitimate operator text, return a pointer to the
2390 beginning of the substring of the operator text.
2391 Otherwise, return "". */
2392char *
fba45db2 2393operator_chars (char *p, char **end)
c906108c
SS
2394{
2395 *end = "";
2396 if (strncmp (p, "operator", 8))
2397 return *end;
2398 p += 8;
2399
2400 /* Don't get faked out by `operator' being part of a longer
2401 identifier. */
c5aa993b 2402 if (isalpha (*p) || *p == '_' || *p == '$' || *p == '\0')
c906108c
SS
2403 return *end;
2404
2405 /* Allow some whitespace between `operator' and the operator symbol. */
2406 while (*p == ' ' || *p == '\t')
2407 p++;
2408
2409 /* Recognize 'operator TYPENAME'. */
2410
c5aa993b 2411 if (isalpha (*p) || *p == '_' || *p == '$')
c906108c 2412 {
c5aa993b
JM
2413 register char *q = p + 1;
2414 while (isalnum (*q) || *q == '_' || *q == '$')
c906108c
SS
2415 q++;
2416 *end = q;
2417 return p;
2418 }
2419
53e8ad3d
MS
2420 while (*p)
2421 switch (*p)
2422 {
2423 case '\\': /* regexp quoting */
2424 if (p[1] == '*')
2425 {
2426 if (p[2] == '=') /* 'operator\*=' */
2427 *end = p + 3;
2428 else /* 'operator\*' */
2429 *end = p + 2;
2430 return p;
2431 }
2432 else if (p[1] == '[')
2433 {
2434 if (p[2] == ']')
2435 error ("mismatched quoting on brackets, try 'operator\\[\\]'");
2436 else if (p[2] == '\\' && p[3] == ']')
2437 {
2438 *end = p + 4; /* 'operator\[\]' */
2439 return p;
2440 }
2441 else
2442 error ("nothing is allowed between '[' and ']'");
2443 }
2444 else
2445 {
2446 /* Gratuitous qoute: skip it and move on. */
2447 p++;
2448 continue;
2449 }
2450 break;
2451 case '!':
2452 case '=':
2453 case '*':
2454 case '/':
2455 case '%':
2456 case '^':
2457 if (p[1] == '=')
2458 *end = p + 2;
2459 else
2460 *end = p + 1;
2461 return p;
2462 case '<':
2463 case '>':
2464 case '+':
2465 case '-':
2466 case '&':
2467 case '|':
2468 if (p[0] == '-' && p[1] == '>')
2469 {
2470 /* Struct pointer member operator 'operator->'. */
2471 if (p[2] == '*')
2472 {
2473 *end = p + 3; /* 'operator->*' */
2474 return p;
2475 }
2476 else if (p[2] == '\\')
2477 {
2478 *end = p + 4; /* Hopefully 'operator->\*' */
2479 return p;
2480 }
2481 else
2482 {
2483 *end = p + 2; /* 'operator->' */
2484 return p;
2485 }
2486 }
2487 if (p[1] == '=' || p[1] == p[0])
2488 *end = p + 2;
2489 else
2490 *end = p + 1;
2491 return p;
2492 case '~':
2493 case ',':
c5aa993b 2494 *end = p + 1;
53e8ad3d
MS
2495 return p;
2496 case '(':
2497 if (p[1] != ')')
2498 error ("`operator ()' must be specified without whitespace in `()'");
c5aa993b 2499 *end = p + 2;
53e8ad3d
MS
2500 return p;
2501 case '?':
2502 if (p[1] != ':')
2503 error ("`operator ?:' must be specified without whitespace in `?:'");
2504 *end = p + 2;
2505 return p;
2506 case '[':
2507 if (p[1] != ']')
2508 error ("`operator []' must be specified without whitespace in `[]'");
2509 *end = p + 2;
2510 return p;
2511 default:
2512 error ("`operator %s' not supported", p);
2513 break;
2514 }
2515
c906108c
SS
2516 *end = "";
2517 return *end;
2518}
c906108c 2519\f
c5aa993b 2520
c94fdfd0
EZ
2521/* If FILE is not already in the table of files, return zero;
2522 otherwise return non-zero. Optionally add FILE to the table if ADD
2523 is non-zero. If *FIRST is non-zero, forget the old table
2524 contents. */
2525static int
2526filename_seen (const char *file, int add, int *first)
c906108c 2527{
c94fdfd0
EZ
2528 /* Table of files seen so far. */
2529 static const char **tab = NULL;
c906108c
SS
2530 /* Allocated size of tab in elements.
2531 Start with one 256-byte block (when using GNU malloc.c).
2532 24 is the malloc overhead when range checking is in effect. */
2533 static int tab_alloc_size = (256 - 24) / sizeof (char *);
2534 /* Current size of tab in elements. */
2535 static int tab_cur_size;
c94fdfd0 2536 const char **p;
c906108c
SS
2537
2538 if (*first)
2539 {
2540 if (tab == NULL)
c94fdfd0 2541 tab = (const char **) xmalloc (tab_alloc_size * sizeof (*tab));
c906108c
SS
2542 tab_cur_size = 0;
2543 }
2544
c94fdfd0 2545 /* Is FILE in tab? */
c906108c 2546 for (p = tab; p < tab + tab_cur_size; p++)
c94fdfd0
EZ
2547 if (strcmp (*p, file) == 0)
2548 return 1;
2549
2550 /* No; maybe add it to tab. */
2551 if (add)
c906108c 2552 {
c94fdfd0
EZ
2553 if (tab_cur_size == tab_alloc_size)
2554 {
2555 tab_alloc_size *= 2;
2556 tab = (const char **) xrealloc ((char *) tab,
2557 tab_alloc_size * sizeof (*tab));
2558 }
2559 tab[tab_cur_size++] = file;
c906108c 2560 }
c906108c 2561
c94fdfd0
EZ
2562 return 0;
2563}
2564
2565/* Slave routine for sources_info. Force line breaks at ,'s.
2566 NAME is the name to print and *FIRST is nonzero if this is the first
2567 name printed. Set *FIRST to zero. */
2568static void
2569output_source_filename (char *name, int *first)
2570{
2571 /* Since a single source file can result in several partial symbol
2572 tables, we need to avoid printing it more than once. Note: if
2573 some of the psymtabs are read in and some are not, it gets
2574 printed both under "Source files for which symbols have been
2575 read" and "Source files for which symbols will be read in on
2576 demand". I consider this a reasonable way to deal with the
2577 situation. I'm not sure whether this can also happen for
2578 symtabs; it doesn't hurt to check. */
2579
2580 /* Was NAME already seen? */
2581 if (filename_seen (name, 1, first))
2582 {
2583 /* Yes; don't print it again. */
2584 return;
2585 }
2586 /* No; print it and reset *FIRST. */
c906108c
SS
2587 if (*first)
2588 {
2589 *first = 0;
2590 }
2591 else
2592 {
2593 printf_filtered (", ");
2594 }
2595
2596 wrap_here ("");
2597 fputs_filtered (name, gdb_stdout);
c5aa993b 2598}
c906108c
SS
2599
2600static void
fba45db2 2601sources_info (char *ignore, int from_tty)
c906108c
SS
2602{
2603 register struct symtab *s;
2604 register struct partial_symtab *ps;
2605 register struct objfile *objfile;
2606 int first;
c5aa993b 2607
c906108c
SS
2608 if (!have_full_symbols () && !have_partial_symbols ())
2609 {
e85428fc 2610 error ("No symbol table is loaded. Use the \"file\" command.");
c906108c 2611 }
c5aa993b 2612
c906108c
SS
2613 printf_filtered ("Source files for which symbols have been read in:\n\n");
2614
2615 first = 1;
2616 ALL_SYMTABS (objfile, s)
c5aa993b
JM
2617 {
2618 output_source_filename (s->filename, &first);
2619 }
c906108c 2620 printf_filtered ("\n\n");
c5aa993b 2621
c906108c
SS
2622 printf_filtered ("Source files for which symbols will be read in on demand:\n\n");
2623
2624 first = 1;
2625 ALL_PSYMTABS (objfile, ps)
c5aa993b
JM
2626 {
2627 if (!ps->readin)
2628 {
2629 output_source_filename (ps->filename, &first);
2630 }
2631 }
c906108c
SS
2632 printf_filtered ("\n");
2633}
2634
2635static int
fd118b61 2636file_matches (char *file, char *files[], int nfiles)
c906108c
SS
2637{
2638 int i;
2639
2640 if (file != NULL && nfiles != 0)
2641 {
2642 for (i = 0; i < nfiles; i++)
c5aa993b 2643 {
31889e00 2644 if (strcmp (files[i], lbasename (file)) == 0)
c5aa993b
JM
2645 return 1;
2646 }
c906108c
SS
2647 }
2648 else if (nfiles == 0)
2649 return 1;
2650 return 0;
2651}
2652
2653/* Free any memory associated with a search. */
2654void
fba45db2 2655free_search_symbols (struct symbol_search *symbols)
c906108c
SS
2656{
2657 struct symbol_search *p;
2658 struct symbol_search *next;
2659
2660 for (p = symbols; p != NULL; p = next)
2661 {
2662 next = p->next;
b8c9b27d 2663 xfree (p);
c906108c
SS
2664 }
2665}
2666
5bd98722
AC
2667static void
2668do_free_search_symbols_cleanup (void *symbols)
2669{
2670 free_search_symbols (symbols);
2671}
2672
2673struct cleanup *
2674make_cleanup_free_search_symbols (struct symbol_search *symbols)
2675{
2676 return make_cleanup (do_free_search_symbols_cleanup, symbols);
2677}
2678
434d2d4f
DJ
2679/* Helper function for sort_search_symbols and qsort. Can only
2680 sort symbols, not minimal symbols. */
2681static int
2682compare_search_syms (const void *sa, const void *sb)
2683{
2684 struct symbol_search **sym_a = (struct symbol_search **) sa;
2685 struct symbol_search **sym_b = (struct symbol_search **) sb;
2686
2687 return strcmp (SYMBOL_SOURCE_NAME ((*sym_a)->symbol),
2688 SYMBOL_SOURCE_NAME ((*sym_b)->symbol));
2689}
2690
2691/* Sort the ``nfound'' symbols in the list after prevtail. Leave
2692 prevtail where it is, but update its next pointer to point to
2693 the first of the sorted symbols. */
2694static struct symbol_search *
2695sort_search_symbols (struct symbol_search *prevtail, int nfound)
2696{
2697 struct symbol_search **symbols, *symp, *old_next;
2698 int i;
2699
2700 symbols = (struct symbol_search **) xmalloc (sizeof (struct symbol_search *)
2701 * nfound);
2702 symp = prevtail->next;
2703 for (i = 0; i < nfound; i++)
2704 {
2705 symbols[i] = symp;
2706 symp = symp->next;
2707 }
2708 /* Generally NULL. */
2709 old_next = symp;
2710
2711 qsort (symbols, nfound, sizeof (struct symbol_search *),
2712 compare_search_syms);
2713
2714 symp = prevtail;
2715 for (i = 0; i < nfound; i++)
2716 {
2717 symp->next = symbols[i];
2718 symp = symp->next;
2719 }
2720 symp->next = old_next;
2721
8ed32cc0 2722 xfree (symbols);
434d2d4f
DJ
2723 return symp;
2724}
5bd98722 2725
c906108c
SS
2726/* Search the symbol table for matches to the regular expression REGEXP,
2727 returning the results in *MATCHES.
2728
2729 Only symbols of KIND are searched:
c5aa993b
JM
2730 FUNCTIONS_NAMESPACE - search all functions
2731 TYPES_NAMESPACE - search all type names
2732 METHODS_NAMESPACE - search all methods NOT IMPLEMENTED
2733 VARIABLES_NAMESPACE - search all symbols, excluding functions, type names,
2734 and constants (enums)
c906108c
SS
2735
2736 free_search_symbols should be called when *MATCHES is no longer needed.
434d2d4f
DJ
2737
2738 The results are sorted locally; each symtab's global and static blocks are
2739 separately alphabetized.
c5aa993b 2740 */
c906108c 2741void
fd118b61
KB
2742search_symbols (char *regexp, namespace_enum kind, int nfiles, char *files[],
2743 struct symbol_search **matches)
c906108c
SS
2744{
2745 register struct symtab *s;
2746 register struct partial_symtab *ps;
2747 register struct blockvector *bv;
2748 struct blockvector *prev_bv = 0;
2749 register struct block *b;
2750 register int i = 0;
2751 register int j;
2752 register struct symbol *sym;
2753 struct partial_symbol **psym;
2754 struct objfile *objfile;
2755 struct minimal_symbol *msymbol;
2756 char *val;
2757 int found_misc = 0;
2758 static enum minimal_symbol_type types[]
c5aa993b
JM
2759 =
2760 {mst_data, mst_text, mst_abs, mst_unknown};
c906108c 2761 static enum minimal_symbol_type types2[]
c5aa993b
JM
2762 =
2763 {mst_bss, mst_file_text, mst_abs, mst_unknown};
c906108c 2764 static enum minimal_symbol_type types3[]
c5aa993b
JM
2765 =
2766 {mst_file_data, mst_solib_trampoline, mst_abs, mst_unknown};
c906108c 2767 static enum minimal_symbol_type types4[]
c5aa993b
JM
2768 =
2769 {mst_file_bss, mst_text, mst_abs, mst_unknown};
c906108c
SS
2770 enum minimal_symbol_type ourtype;
2771 enum minimal_symbol_type ourtype2;
2772 enum minimal_symbol_type ourtype3;
2773 enum minimal_symbol_type ourtype4;
2774 struct symbol_search *sr;
2775 struct symbol_search *psr;
2776 struct symbol_search *tail;
2777 struct cleanup *old_chain = NULL;
2778
993f3aa5 2779 if (kind < VARIABLES_NAMESPACE)
c906108c
SS
2780 error ("must search on specific namespace");
2781
52204a0b
DT
2782 ourtype = types[(int) (kind - VARIABLES_NAMESPACE)];
2783 ourtype2 = types2[(int) (kind - VARIABLES_NAMESPACE)];
2784 ourtype3 = types3[(int) (kind - VARIABLES_NAMESPACE)];
2785 ourtype4 = types4[(int) (kind - VARIABLES_NAMESPACE)];
c906108c
SS
2786
2787 sr = *matches = NULL;
2788 tail = NULL;
2789
2790 if (regexp != NULL)
2791 {
2792 /* Make sure spacing is right for C++ operators.
2793 This is just a courtesy to make the matching less sensitive
2794 to how many spaces the user leaves between 'operator'
2795 and <TYPENAME> or <OPERATOR>. */
2796 char *opend;
2797 char *opname = operator_chars (regexp, &opend);
2798 if (*opname)
c5aa993b
JM
2799 {
2800 int fix = -1; /* -1 means ok; otherwise number of spaces needed. */
2801 if (isalpha (*opname) || *opname == '_' || *opname == '$')
2802 {
2803 /* There should 1 space between 'operator' and 'TYPENAME'. */
2804 if (opname[-1] != ' ' || opname[-2] == ' ')
2805 fix = 1;
2806 }
2807 else
2808 {
2809 /* There should 0 spaces between 'operator' and 'OPERATOR'. */
2810 if (opname[-1] == ' ')
2811 fix = 0;
2812 }
2813 /* If wrong number of spaces, fix it. */
2814 if (fix >= 0)
2815 {
045f55a6 2816 char *tmp = (char *) alloca (8 + fix + strlen (opname) + 1);
c5aa993b
JM
2817 sprintf (tmp, "operator%.*s%s", fix, " ", opname);
2818 regexp = tmp;
2819 }
2820 }
2821
c906108c 2822 if (0 != (val = re_comp (regexp)))
c5aa993b 2823 error ("Invalid regexp (%s): %s", val, regexp);
c906108c
SS
2824 }
2825
2826 /* Search through the partial symtabs *first* for all symbols
2827 matching the regexp. That way we don't have to reproduce all of
2828 the machinery below. */
2829
2830 ALL_PSYMTABS (objfile, ps)
c5aa993b
JM
2831 {
2832 struct partial_symbol **bound, **gbound, **sbound;
2833 int keep_going = 1;
2834
2835 if (ps->readin)
2836 continue;
2837
2838 gbound = objfile->global_psymbols.list + ps->globals_offset + ps->n_global_syms;
2839 sbound = objfile->static_psymbols.list + ps->statics_offset + ps->n_static_syms;
2840 bound = gbound;
2841
2842 /* Go through all of the symbols stored in a partial
2843 symtab in one loop. */
2844 psym = objfile->global_psymbols.list + ps->globals_offset;
2845 while (keep_going)
2846 {
2847 if (psym >= bound)
2848 {
2849 if (bound == gbound && ps->n_static_syms != 0)
2850 {
2851 psym = objfile->static_psymbols.list + ps->statics_offset;
2852 bound = sbound;
2853 }
2854 else
2855 keep_going = 0;
2856 continue;
2857 }
2858 else
2859 {
2860 QUIT;
2861
2862 /* If it would match (logic taken from loop below)
2863 load the file and go on to the next one */
2864 if (file_matches (ps->filename, files, nfiles)
2865 && ((regexp == NULL || SYMBOL_MATCHES_REGEXP (*psym))
2866 && ((kind == VARIABLES_NAMESPACE && SYMBOL_CLASS (*psym) != LOC_TYPEDEF
2867 && SYMBOL_CLASS (*psym) != LOC_BLOCK)
2868 || (kind == FUNCTIONS_NAMESPACE && SYMBOL_CLASS (*psym) == LOC_BLOCK)
2869 || (kind == TYPES_NAMESPACE && SYMBOL_CLASS (*psym) == LOC_TYPEDEF)
2870 || (kind == METHODS_NAMESPACE && SYMBOL_CLASS (*psym) == LOC_BLOCK))))
2871 {
2872 PSYMTAB_TO_SYMTAB (ps);
2873 keep_going = 0;
2874 }
2875 }
2876 psym++;
2877 }
2878 }
c906108c
SS
2879
2880 /* Here, we search through the minimal symbol tables for functions
2881 and variables that match, and force their symbols to be read.
2882 This is in particular necessary for demangled variable names,
2883 which are no longer put into the partial symbol tables.
2884 The symbol will then be found during the scan of symtabs below.
2885
2886 For functions, find_pc_symtab should succeed if we have debug info
2887 for the function, for variables we have to call lookup_symbol
2888 to determine if the variable has debug info.
2889 If the lookup fails, set found_misc so that we will rescan to print
2890 any matching symbols without debug info.
c5aa993b 2891 */
c906108c
SS
2892
2893 if (nfiles == 0 && (kind == VARIABLES_NAMESPACE || kind == FUNCTIONS_NAMESPACE))
2894 {
2895 ALL_MSYMBOLS (objfile, msymbol)
c5aa993b
JM
2896 {
2897 if (MSYMBOL_TYPE (msymbol) == ourtype ||
2898 MSYMBOL_TYPE (msymbol) == ourtype2 ||
2899 MSYMBOL_TYPE (msymbol) == ourtype3 ||
2900 MSYMBOL_TYPE (msymbol) == ourtype4)
2901 {
2902 if (regexp == NULL || SYMBOL_MATCHES_REGEXP (msymbol))
2903 {
2904 if (0 == find_pc_symtab (SYMBOL_VALUE_ADDRESS (msymbol)))
2905 {
2906 if (kind == FUNCTIONS_NAMESPACE
2907 || lookup_symbol (SYMBOL_NAME (msymbol),
2908 (struct block *) NULL,
2909 VAR_NAMESPACE,
2910 0, (struct symtab **) NULL) == NULL)
2911 found_misc = 1;
2912 }
2913 }
2914 }
2915 }
c906108c
SS
2916 }
2917
2918 ALL_SYMTABS (objfile, s)
c5aa993b
JM
2919 {
2920 bv = BLOCKVECTOR (s);
2921 /* Often many files share a blockvector.
2922 Scan each blockvector only once so that
2923 we don't get every symbol many times.
2924 It happens that the first symtab in the list
2925 for any given blockvector is the main file. */
2926 if (bv != prev_bv)
2927 for (i = GLOBAL_BLOCK; i <= STATIC_BLOCK; i++)
2928 {
434d2d4f
DJ
2929 struct symbol_search *prevtail = tail;
2930 int nfound = 0;
c5aa993b 2931 b = BLOCKVECTOR_BLOCK (bv, i);
261397f8 2932 ALL_BLOCK_SYMBOLS (b, j, sym)
c5aa993b
JM
2933 {
2934 QUIT;
c5aa993b
JM
2935 if (file_matches (s->filename, files, nfiles)
2936 && ((regexp == NULL || SYMBOL_MATCHES_REGEXP (sym))
2937 && ((kind == VARIABLES_NAMESPACE && SYMBOL_CLASS (sym) != LOC_TYPEDEF
2938 && SYMBOL_CLASS (sym) != LOC_BLOCK
2939 && SYMBOL_CLASS (sym) != LOC_CONST)
2940 || (kind == FUNCTIONS_NAMESPACE && SYMBOL_CLASS (sym) == LOC_BLOCK)
2941 || (kind == TYPES_NAMESPACE && SYMBOL_CLASS (sym) == LOC_TYPEDEF)
2942 || (kind == METHODS_NAMESPACE && SYMBOL_CLASS (sym) == LOC_BLOCK))))
2943 {
2944 /* match */
2945 psr = (struct symbol_search *) xmalloc (sizeof (struct symbol_search));
2946 psr->block = i;
2947 psr->symtab = s;
2948 psr->symbol = sym;
2949 psr->msymbol = NULL;
2950 psr->next = NULL;
2951 if (tail == NULL)
434d2d4f 2952 sr = psr;
c5aa993b
JM
2953 else
2954 tail->next = psr;
2955 tail = psr;
434d2d4f
DJ
2956 nfound ++;
2957 }
2958 }
2959 if (nfound > 0)
2960 {
2961 if (prevtail == NULL)
2962 {
2963 struct symbol_search dummy;
2964
2965 dummy.next = sr;
2966 tail = sort_search_symbols (&dummy, nfound);
2967 sr = dummy.next;
2968
2969 old_chain = make_cleanup_free_search_symbols (sr);
c5aa993b 2970 }
434d2d4f
DJ
2971 else
2972 tail = sort_search_symbols (prevtail, nfound);
c5aa993b
JM
2973 }
2974 }
2975 prev_bv = bv;
2976 }
c906108c
SS
2977
2978 /* If there are no eyes, avoid all contact. I mean, if there are
2979 no debug symbols, then print directly from the msymbol_vector. */
2980
2981 if (found_misc || kind != FUNCTIONS_NAMESPACE)
2982 {
2983 ALL_MSYMBOLS (objfile, msymbol)
c5aa993b
JM
2984 {
2985 if (MSYMBOL_TYPE (msymbol) == ourtype ||
2986 MSYMBOL_TYPE (msymbol) == ourtype2 ||
2987 MSYMBOL_TYPE (msymbol) == ourtype3 ||
2988 MSYMBOL_TYPE (msymbol) == ourtype4)
2989 {
2990 if (regexp == NULL || SYMBOL_MATCHES_REGEXP (msymbol))
2991 {
2992 /* Functions: Look up by address. */
2993 if (kind != FUNCTIONS_NAMESPACE ||
2994 (0 == find_pc_symtab (SYMBOL_VALUE_ADDRESS (msymbol))))
2995 {
2996 /* Variables/Absolutes: Look up by name */
2997 if (lookup_symbol (SYMBOL_NAME (msymbol),
2998 (struct block *) NULL, VAR_NAMESPACE,
2999 0, (struct symtab **) NULL) == NULL)
3000 {
3001 /* match */
3002 psr = (struct symbol_search *) xmalloc (sizeof (struct symbol_search));
3003 psr->block = i;
3004 psr->msymbol = msymbol;
3005 psr->symtab = NULL;
3006 psr->symbol = NULL;
3007 psr->next = NULL;
3008 if (tail == NULL)
3009 {
3010 sr = psr;
5bd98722 3011 old_chain = make_cleanup_free_search_symbols (sr);
c5aa993b
JM
3012 }
3013 else
3014 tail->next = psr;
3015 tail = psr;
3016 }
3017 }
3018 }
3019 }
3020 }
c906108c
SS
3021 }
3022
3023 *matches = sr;
3024 if (sr != NULL)
3025 discard_cleanups (old_chain);
3026}
3027
3028/* Helper function for symtab_symbol_info, this function uses
3029 the data returned from search_symbols() to print information
3030 regarding the match to gdb_stdout.
c5aa993b 3031 */
c906108c 3032static void
fba45db2
KB
3033print_symbol_info (namespace_enum kind, struct symtab *s, struct symbol *sym,
3034 int block, char *last)
c906108c
SS
3035{
3036 if (last == NULL || strcmp (last, s->filename) != 0)
3037 {
3038 fputs_filtered ("\nFile ", gdb_stdout);
3039 fputs_filtered (s->filename, gdb_stdout);
3040 fputs_filtered (":\n", gdb_stdout);
3041 }
3042
3043 if (kind != TYPES_NAMESPACE && block == STATIC_BLOCK)
3044 printf_filtered ("static ");
c5aa993b 3045
c906108c
SS
3046 /* Typedef that is not a C++ class */
3047 if (kind == TYPES_NAMESPACE
3048 && SYMBOL_NAMESPACE (sym) != STRUCT_NAMESPACE)
a5238fbc 3049 typedef_print (SYMBOL_TYPE (sym), sym, gdb_stdout);
c906108c 3050 /* variable, func, or typedef-that-is-c++-class */
c5aa993b
JM
3051 else if (kind < TYPES_NAMESPACE ||
3052 (kind == TYPES_NAMESPACE &&
3053 SYMBOL_NAMESPACE (sym) == STRUCT_NAMESPACE))
c906108c
SS
3054 {
3055 type_print (SYMBOL_TYPE (sym),
c5aa993b
JM
3056 (SYMBOL_CLASS (sym) == LOC_TYPEDEF
3057 ? "" : SYMBOL_SOURCE_NAME (sym)),
3058 gdb_stdout, 0);
c906108c
SS
3059
3060 printf_filtered (";\n");
3061 }
c906108c
SS
3062}
3063
3064/* This help function for symtab_symbol_info() prints information
3065 for non-debugging symbols to gdb_stdout.
c5aa993b 3066 */
c906108c 3067static void
fba45db2 3068print_msymbol_info (struct minimal_symbol *msymbol)
c906108c 3069{
3ac4495a
MS
3070 char *tmp;
3071
3072 if (TARGET_ADDR_BIT <= 32)
14a5e767
AC
3073 tmp = local_hex_string_custom (SYMBOL_VALUE_ADDRESS (msymbol)
3074 & (CORE_ADDR) 0xffffffff,
3075 "08l");
3ac4495a 3076 else
14a5e767
AC
3077 tmp = local_hex_string_custom (SYMBOL_VALUE_ADDRESS (msymbol),
3078 "016l");
3ac4495a
MS
3079 printf_filtered ("%s %s\n",
3080 tmp, SYMBOL_SOURCE_NAME (msymbol));
c906108c
SS
3081}
3082
3083/* This is the guts of the commands "info functions", "info types", and
3084 "info variables". It calls search_symbols to find all matches and then
3085 print_[m]symbol_info to print out some useful information about the
3086 matches.
c5aa993b 3087 */
c906108c 3088static void
fba45db2 3089symtab_symbol_info (char *regexp, namespace_enum kind, int from_tty)
c906108c
SS
3090{
3091 static char *classnames[]
c5aa993b
JM
3092 =
3093 {"variable", "function", "type", "method"};
c906108c
SS
3094 struct symbol_search *symbols;
3095 struct symbol_search *p;
3096 struct cleanup *old_chain;
3097 char *last_filename = NULL;
3098 int first = 1;
3099
3100 /* must make sure that if we're interrupted, symbols gets freed */
3101 search_symbols (regexp, kind, 0, (char **) NULL, &symbols);
5bd98722 3102 old_chain = make_cleanup_free_search_symbols (symbols);
c906108c
SS
3103
3104 printf_filtered (regexp
c5aa993b
JM
3105 ? "All %ss matching regular expression \"%s\":\n"
3106 : "All defined %ss:\n",
52204a0b 3107 classnames[(int) (kind - VARIABLES_NAMESPACE)], regexp);
c906108c
SS
3108
3109 for (p = symbols; p != NULL; p = p->next)
3110 {
3111 QUIT;
3112
3113 if (p->msymbol != NULL)
c5aa993b
JM
3114 {
3115 if (first)
3116 {
3117 printf_filtered ("\nNon-debugging symbols:\n");
3118 first = 0;
3119 }
3120 print_msymbol_info (p->msymbol);
3121 }
c906108c 3122 else
c5aa993b
JM
3123 {
3124 print_symbol_info (kind,
3125 p->symtab,
3126 p->symbol,
3127 p->block,
3128 last_filename);
3129 last_filename = p->symtab->filename;
3130 }
c906108c
SS
3131 }
3132
3133 do_cleanups (old_chain);
3134}
3135
3136static void
fba45db2 3137variables_info (char *regexp, int from_tty)
c906108c
SS
3138{
3139 symtab_symbol_info (regexp, VARIABLES_NAMESPACE, from_tty);
3140}
3141
3142static void
fba45db2 3143functions_info (char *regexp, int from_tty)
c906108c
SS
3144{
3145 symtab_symbol_info (regexp, FUNCTIONS_NAMESPACE, from_tty);
3146}
3147
357e46e7 3148
c906108c 3149static void
fba45db2 3150types_info (char *regexp, int from_tty)
c906108c
SS
3151{
3152 symtab_symbol_info (regexp, TYPES_NAMESPACE, from_tty);
3153}
3154
c906108c 3155/* Breakpoint all functions matching regular expression. */
8926118c 3156
8b93c638 3157void
fba45db2 3158rbreak_command_wrapper (char *regexp, int from_tty)
8b93c638
JM
3159{
3160 rbreak_command (regexp, from_tty);
3161}
8926118c 3162
c906108c 3163static void
fba45db2 3164rbreak_command (char *regexp, int from_tty)
c906108c
SS
3165{
3166 struct symbol_search *ss;
3167 struct symbol_search *p;
3168 struct cleanup *old_chain;
3169
3170 search_symbols (regexp, FUNCTIONS_NAMESPACE, 0, (char **) NULL, &ss);
5bd98722 3171 old_chain = make_cleanup_free_search_symbols (ss);
c906108c
SS
3172
3173 for (p = ss; p != NULL; p = p->next)
3174 {
3175 if (p->msymbol == NULL)
c5aa993b
JM
3176 {
3177 char *string = (char *) alloca (strlen (p->symtab->filename)
3178 + strlen (SYMBOL_NAME (p->symbol))
3179 + 4);
3180 strcpy (string, p->symtab->filename);
3181 strcat (string, ":'");
3182 strcat (string, SYMBOL_NAME (p->symbol));
3183 strcat (string, "'");
3184 break_command (string, from_tty);
3185 print_symbol_info (FUNCTIONS_NAMESPACE,
3186 p->symtab,
3187 p->symbol,
3188 p->block,
3189 p->symtab->filename);
3190 }
c906108c 3191 else
c5aa993b
JM
3192 {
3193 break_command (SYMBOL_NAME (p->msymbol), from_tty);
3194 printf_filtered ("<function, no debug info> %s;\n",
3195 SYMBOL_SOURCE_NAME (p->msymbol));
3196 }
c906108c
SS
3197 }
3198
3199 do_cleanups (old_chain);
3200}
c906108c 3201\f
c5aa993b 3202
c906108c
SS
3203/* Return Nonzero if block a is lexically nested within block b,
3204 or if a and b have the same pc range.
3205 Return zero otherwise. */
3206int
fba45db2 3207contained_in (struct block *a, struct block *b)
c906108c
SS
3208{
3209 if (!a || !b)
3210 return 0;
3211 return BLOCK_START (a) >= BLOCK_START (b)
c5aa993b 3212 && BLOCK_END (a) <= BLOCK_END (b);
c906108c 3213}
c906108c 3214\f
c5aa993b 3215
c906108c
SS
3216/* Helper routine for make_symbol_completion_list. */
3217
3218static int return_val_size;
3219static int return_val_index;
3220static char **return_val;
3221
3222#define COMPLETION_LIST_ADD_SYMBOL(symbol, sym_text, len, text, word) \
3223 do { \
3224 if (SYMBOL_DEMANGLED_NAME (symbol) != NULL) \
3225 /* Put only the mangled name on the list. */ \
3226 /* Advantage: "b foo<TAB>" completes to "b foo(int, int)" */ \
3227 /* Disadvantage: "b foo__i<TAB>" doesn't complete. */ \
3228 completion_list_add_name \
3229 (SYMBOL_DEMANGLED_NAME (symbol), (sym_text), (len), (text), (word)); \
3230 else \
3231 completion_list_add_name \
3232 (SYMBOL_NAME (symbol), (sym_text), (len), (text), (word)); \
3233 } while (0)
3234
3235/* Test to see if the symbol specified by SYMNAME (which is already
c5aa993b
JM
3236 demangled for C++ symbols) matches SYM_TEXT in the first SYM_TEXT_LEN
3237 characters. If so, add it to the current completion list. */
c906108c
SS
3238
3239static void
fba45db2
KB
3240completion_list_add_name (char *symname, char *sym_text, int sym_text_len,
3241 char *text, char *word)
c906108c
SS
3242{
3243 int newsize;
3244 int i;
3245
3246 /* clip symbols that cannot match */
3247
3248 if (strncmp (symname, sym_text, sym_text_len) != 0)
3249 {
3250 return;
3251 }
3252
c906108c
SS
3253 /* We have a match for a completion, so add SYMNAME to the current list
3254 of matches. Note that the name is moved to freshly malloc'd space. */
3255
3256 {
3257 char *new;
3258 if (word == sym_text)
3259 {
3260 new = xmalloc (strlen (symname) + 5);
3261 strcpy (new, symname);
3262 }
3263 else if (word > sym_text)
3264 {
3265 /* Return some portion of symname. */
3266 new = xmalloc (strlen (symname) + 5);
3267 strcpy (new, symname + (word - sym_text));
3268 }
3269 else
3270 {
3271 /* Return some of SYM_TEXT plus symname. */
3272 new = xmalloc (strlen (symname) + (sym_text - word) + 5);
3273 strncpy (new, word, sym_text - word);
3274 new[sym_text - word] = '\0';
3275 strcat (new, symname);
3276 }
3277
c906108c
SS
3278 if (return_val_index + 3 > return_val_size)
3279 {
3280 newsize = (return_val_size *= 2) * sizeof (char *);
3281 return_val = (char **) xrealloc ((char *) return_val, newsize);
3282 }
3283 return_val[return_val_index++] = new;
3284 return_val[return_val_index] = NULL;
3285 }
3286}
3287
c94fdfd0
EZ
3288/* Return a NULL terminated array of all symbols (regardless of class)
3289 which begin by matching TEXT. If the answer is no symbols, then
3290 the return value is an array which contains only a NULL pointer.
c906108c
SS
3291
3292 Problem: All of the symbols have to be copied because readline frees them.
3293 I'm not going to worry about this; hopefully there won't be that many. */
3294
3295char **
fba45db2 3296make_symbol_completion_list (char *text, char *word)
c906108c
SS
3297{
3298 register struct symbol *sym;
3299 register struct symtab *s;
3300 register struct partial_symtab *ps;
3301 register struct minimal_symbol *msymbol;
3302 register struct objfile *objfile;
3303 register struct block *b, *surrounding_static_block = 0;
3304 register int i, j;
3305 struct partial_symbol **psym;
3306 /* The symbol we are completing on. Points in same buffer as text. */
3307 char *sym_text;
3308 /* Length of sym_text. */
3309 int sym_text_len;
3310
3311 /* Now look for the symbol we are supposed to complete on.
3312 FIXME: This should be language-specific. */
3313 {
3314 char *p;
3315 char quote_found;
3316 char *quote_pos = NULL;
3317
3318 /* First see if this is a quoted string. */
3319 quote_found = '\0';
3320 for (p = text; *p != '\0'; ++p)
3321 {
3322 if (quote_found != '\0')
3323 {
3324 if (*p == quote_found)
3325 /* Found close quote. */
3326 quote_found = '\0';
3327 else if (*p == '\\' && p[1] == quote_found)
3328 /* A backslash followed by the quote character
c5aa993b 3329 doesn't end the string. */
c906108c
SS
3330 ++p;
3331 }
3332 else if (*p == '\'' || *p == '"')
3333 {
3334 quote_found = *p;
3335 quote_pos = p;
3336 }
3337 }
3338 if (quote_found == '\'')
3339 /* A string within single quotes can be a symbol, so complete on it. */
3340 sym_text = quote_pos + 1;
3341 else if (quote_found == '"')
3342 /* A double-quoted string is never a symbol, nor does it make sense
c5aa993b 3343 to complete it any other way. */
c94fdfd0
EZ
3344 {
3345 return_val = (char **) xmalloc (sizeof (char *));
3346 return_val[0] = NULL;
3347 return return_val;
3348 }
c906108c
SS
3349 else
3350 {
3351 /* It is not a quoted string. Break it based on the characters
3352 which are in symbols. */
3353 while (p > text)
3354 {
3355 if (isalnum (p[-1]) || p[-1] == '_' || p[-1] == '\0')
3356 --p;
3357 else
3358 break;
3359 }
3360 sym_text = p;
3361 }
3362 }
3363
3364 sym_text_len = strlen (sym_text);
3365
3366 return_val_size = 100;
3367 return_val_index = 0;
3368 return_val = (char **) xmalloc ((return_val_size + 1) * sizeof (char *));
3369 return_val[0] = NULL;
3370
3371 /* Look through the partial symtabs for all symbols which begin
3372 by matching SYM_TEXT. Add each one that you find to the list. */
3373
3374 ALL_PSYMTABS (objfile, ps)
c5aa993b
JM
3375 {
3376 /* If the psymtab's been read in we'll get it when we search
3377 through the blockvector. */
3378 if (ps->readin)
3379 continue;
3380
3381 for (psym = objfile->global_psymbols.list + ps->globals_offset;
3382 psym < (objfile->global_psymbols.list + ps->globals_offset
3383 + ps->n_global_syms);
3384 psym++)
3385 {
3386 /* If interrupted, then quit. */
3387 QUIT;
3388 COMPLETION_LIST_ADD_SYMBOL (*psym, sym_text, sym_text_len, text, word);
3389 }
3390
3391 for (psym = objfile->static_psymbols.list + ps->statics_offset;
3392 psym < (objfile->static_psymbols.list + ps->statics_offset
3393 + ps->n_static_syms);
3394 psym++)
3395 {
3396 QUIT;
3397 COMPLETION_LIST_ADD_SYMBOL (*psym, sym_text, sym_text_len, text, word);
3398 }
3399 }
c906108c
SS
3400
3401 /* At this point scan through the misc symbol vectors and add each
3402 symbol you find to the list. Eventually we want to ignore
3403 anything that isn't a text symbol (everything else will be
3404 handled by the psymtab code above). */
3405
3406 ALL_MSYMBOLS (objfile, msymbol)
c5aa993b
JM
3407 {
3408 QUIT;
3409 COMPLETION_LIST_ADD_SYMBOL (msymbol, sym_text, sym_text_len, text, word);
3410 }
c906108c
SS
3411
3412 /* Search upwards from currently selected frame (so that we can
3413 complete on local vars. */
3414
ae767bfb 3415 for (b = get_selected_block (0); b != NULL; b = BLOCK_SUPERBLOCK (b))
c906108c
SS
3416 {
3417 if (!BLOCK_SUPERBLOCK (b))
3418 {
c5aa993b 3419 surrounding_static_block = b; /* For elmin of dups */
c906108c 3420 }
c5aa993b 3421
c906108c 3422 /* Also catch fields of types defined in this places which match our
c5aa993b 3423 text string. Only complete on types visible from current context. */
c906108c 3424
e88c90f2 3425 ALL_BLOCK_SYMBOLS (b, i, sym)
c906108c 3426 {
c906108c
SS
3427 COMPLETION_LIST_ADD_SYMBOL (sym, sym_text, sym_text_len, text, word);
3428 if (SYMBOL_CLASS (sym) == LOC_TYPEDEF)
3429 {
3430 struct type *t = SYMBOL_TYPE (sym);
3431 enum type_code c = TYPE_CODE (t);
3432
3433 if (c == TYPE_CODE_UNION || c == TYPE_CODE_STRUCT)
3434 {
3435 for (j = TYPE_N_BASECLASSES (t); j < TYPE_NFIELDS (t); j++)
3436 {
3437 if (TYPE_FIELD_NAME (t, j))
3438 {
3439 completion_list_add_name (TYPE_FIELD_NAME (t, j),
c5aa993b 3440 sym_text, sym_text_len, text, word);
c906108c
SS
3441 }
3442 }
3443 }
3444 }
3445 }
3446 }
3447
3448 /* Go through the symtabs and check the externs and statics for
3449 symbols which match. */
3450
3451 ALL_SYMTABS (objfile, s)
c5aa993b
JM
3452 {
3453 QUIT;
3454 b = BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), GLOBAL_BLOCK);
e88c90f2 3455 ALL_BLOCK_SYMBOLS (b, i, sym)
c5aa993b 3456 {
c5aa993b
JM
3457 COMPLETION_LIST_ADD_SYMBOL (sym, sym_text, sym_text_len, text, word);
3458 }
3459 }
c906108c
SS
3460
3461 ALL_SYMTABS (objfile, s)
c5aa993b
JM
3462 {
3463 QUIT;
3464 b = BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), STATIC_BLOCK);
3465 /* Don't do this block twice. */
3466 if (b == surrounding_static_block)
3467 continue;
e88c90f2 3468 ALL_BLOCK_SYMBOLS (b, i, sym)
c5aa993b 3469 {
c5aa993b
JM
3470 COMPLETION_LIST_ADD_SYMBOL (sym, sym_text, sym_text_len, text, word);
3471 }
3472 }
c906108c
SS
3473
3474 return (return_val);
3475}
3476
c94fdfd0
EZ
3477/* Like make_symbol_completion_list, but returns a list of symbols
3478 defined in a source file FILE. */
3479
3480char **
3481make_file_symbol_completion_list (char *text, char *word, char *srcfile)
3482{
3483 register struct symbol *sym;
3484 register struct symtab *s;
3485 register struct block *b;
3486 register int i;
3487 /* The symbol we are completing on. Points in same buffer as text. */
3488 char *sym_text;
3489 /* Length of sym_text. */
3490 int sym_text_len;
3491
3492 /* Now look for the symbol we are supposed to complete on.
3493 FIXME: This should be language-specific. */
3494 {
3495 char *p;
3496 char quote_found;
3497 char *quote_pos = NULL;
3498
3499 /* First see if this is a quoted string. */
3500 quote_found = '\0';
3501 for (p = text; *p != '\0'; ++p)
3502 {
3503 if (quote_found != '\0')
3504 {
3505 if (*p == quote_found)
3506 /* Found close quote. */
3507 quote_found = '\0';
3508 else if (*p == '\\' && p[1] == quote_found)
3509 /* A backslash followed by the quote character
3510 doesn't end the string. */
3511 ++p;
3512 }
3513 else if (*p == '\'' || *p == '"')
3514 {
3515 quote_found = *p;
3516 quote_pos = p;
3517 }
3518 }
3519 if (quote_found == '\'')
3520 /* A string within single quotes can be a symbol, so complete on it. */
3521 sym_text = quote_pos + 1;
3522 else if (quote_found == '"')
3523 /* A double-quoted string is never a symbol, nor does it make sense
3524 to complete it any other way. */
3525 {
3526 return_val = (char **) xmalloc (sizeof (char *));
3527 return_val[0] = NULL;
3528 return return_val;
3529 }
3530 else
3531 {
3532 /* It is not a quoted string. Break it based on the characters
3533 which are in symbols. */
3534 while (p > text)
3535 {
3536 if (isalnum (p[-1]) || p[-1] == '_' || p[-1] == '\0')
3537 --p;
3538 else
3539 break;
3540 }
3541 sym_text = p;
3542 }
3543 }
3544
3545 sym_text_len = strlen (sym_text);
3546
3547 return_val_size = 10;
3548 return_val_index = 0;
3549 return_val = (char **) xmalloc ((return_val_size + 1) * sizeof (char *));
3550 return_val[0] = NULL;
3551
3552 /* Find the symtab for SRCFILE (this loads it if it was not yet read
3553 in). */
3554 s = lookup_symtab (srcfile);
3555 if (s == NULL)
3556 {
3557 /* Maybe they typed the file with leading directories, while the
3558 symbol tables record only its basename. */
31889e00 3559 const char *tail = lbasename (srcfile);
c94fdfd0
EZ
3560
3561 if (tail > srcfile)
3562 s = lookup_symtab (tail);
3563 }
3564
3565 /* If we have no symtab for that file, return an empty list. */
3566 if (s == NULL)
3567 return (return_val);
3568
3569 /* Go through this symtab and check the externs and statics for
3570 symbols which match. */
3571
3572 b = BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), GLOBAL_BLOCK);
e88c90f2 3573 ALL_BLOCK_SYMBOLS (b, i, sym)
c94fdfd0 3574 {
c94fdfd0
EZ
3575 COMPLETION_LIST_ADD_SYMBOL (sym, sym_text, sym_text_len, text, word);
3576 }
3577
3578 b = BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), STATIC_BLOCK);
e88c90f2 3579 ALL_BLOCK_SYMBOLS (b, i, sym)
c94fdfd0 3580 {
c94fdfd0
EZ
3581 COMPLETION_LIST_ADD_SYMBOL (sym, sym_text, sym_text_len, text, word);
3582 }
3583
3584 return (return_val);
3585}
3586
3587/* A helper function for make_source_files_completion_list. It adds
3588 another file name to a list of possible completions, growing the
3589 list as necessary. */
3590
3591static void
3592add_filename_to_list (const char *fname, char *text, char *word,
3593 char ***list, int *list_used, int *list_alloced)
3594{
3595 char *new;
3596 size_t fnlen = strlen (fname);
3597
3598 if (*list_used + 1 >= *list_alloced)
3599 {
3600 *list_alloced *= 2;
3601 *list = (char **) xrealloc ((char *) *list,
3602 *list_alloced * sizeof (char *));
3603 }
3604
3605 if (word == text)
3606 {
3607 /* Return exactly fname. */
3608 new = xmalloc (fnlen + 5);
3609 strcpy (new, fname);
3610 }
3611 else if (word > text)
3612 {
3613 /* Return some portion of fname. */
3614 new = xmalloc (fnlen + 5);
3615 strcpy (new, fname + (word - text));
3616 }
3617 else
3618 {
3619 /* Return some of TEXT plus fname. */
3620 new = xmalloc (fnlen + (text - word) + 5);
3621 strncpy (new, word, text - word);
3622 new[text - word] = '\0';
3623 strcat (new, fname);
3624 }
3625 (*list)[*list_used] = new;
3626 (*list)[++*list_used] = NULL;
3627}
3628
3629static int
3630not_interesting_fname (const char *fname)
3631{
3632 static const char *illegal_aliens[] = {
3633 "_globals_", /* inserted by coff_symtab_read */
3634 NULL
3635 };
3636 int i;
3637
3638 for (i = 0; illegal_aliens[i]; i++)
3639 {
3640 if (strcmp (fname, illegal_aliens[i]) == 0)
3641 return 1;
3642 }
3643 return 0;
3644}
3645
3646/* Return a NULL terminated array of all source files whose names
3647 begin with matching TEXT. The file names are looked up in the
3648 symbol tables of this program. If the answer is no matchess, then
3649 the return value is an array which contains only a NULL pointer. */
3650
3651char **
3652make_source_files_completion_list (char *text, char *word)
3653{
3654 register struct symtab *s;
3655 register struct partial_symtab *ps;
3656 register struct objfile *objfile;
3657 int first = 1;
3658 int list_alloced = 1;
3659 int list_used = 0;
3660 size_t text_len = strlen (text);
3661 char **list = (char **) xmalloc (list_alloced * sizeof (char *));
31889e00 3662 const char *base_name;
c94fdfd0
EZ
3663
3664 list[0] = NULL;
3665
3666 if (!have_full_symbols () && !have_partial_symbols ())
3667 return list;
3668
3669 ALL_SYMTABS (objfile, s)
3670 {
3671 if (not_interesting_fname (s->filename))
3672 continue;
3673 if (!filename_seen (s->filename, 1, &first)
3674#if HAVE_DOS_BASED_FILE_SYSTEM
3675 && strncasecmp (s->filename, text, text_len) == 0
3676#else
3677 && strncmp (s->filename, text, text_len) == 0
3678#endif
3679 )
3680 {
3681 /* This file matches for a completion; add it to the current
3682 list of matches. */
3683 add_filename_to_list (s->filename, text, word,
3684 &list, &list_used, &list_alloced);
3685 }
3686 else
3687 {
3688 /* NOTE: We allow the user to type a base name when the
3689 debug info records leading directories, but not the other
3690 way around. This is what subroutines of breakpoint
3691 command do when they parse file names. */
31889e00 3692 base_name = lbasename (s->filename);
c94fdfd0
EZ
3693 if (base_name != s->filename
3694 && !filename_seen (base_name, 1, &first)
3695#if HAVE_DOS_BASED_FILE_SYSTEM
3696 && strncasecmp (base_name, text, text_len) == 0
3697#else
3698 && strncmp (base_name, text, text_len) == 0
3699#endif
3700 )
3701 add_filename_to_list (base_name, text, word,
3702 &list, &list_used, &list_alloced);
3703 }
3704 }
3705
3706 ALL_PSYMTABS (objfile, ps)
3707 {
3708 if (not_interesting_fname (ps->filename))
3709 continue;
3710 if (!ps->readin)
3711 {
3712 if (!filename_seen (ps->filename, 1, &first)
3713#if HAVE_DOS_BASED_FILE_SYSTEM
3714 && strncasecmp (ps->filename, text, text_len) == 0
3715#else
3716 && strncmp (ps->filename, text, text_len) == 0
3717#endif
3718 )
3719 {
3720 /* This file matches for a completion; add it to the
3721 current list of matches. */
3722 add_filename_to_list (ps->filename, text, word,
3723 &list, &list_used, &list_alloced);
3724
3725 }
3726 else
3727 {
31889e00 3728 base_name = lbasename (ps->filename);
c94fdfd0
EZ
3729 if (base_name != ps->filename
3730 && !filename_seen (base_name, 1, &first)
3731#if HAVE_DOS_BASED_FILE_SYSTEM
3732 && strncasecmp (base_name, text, text_len) == 0
3733#else
3734 && strncmp (base_name, text, text_len) == 0
3735#endif
3736 )
3737 add_filename_to_list (base_name, text, word,
3738 &list, &list_used, &list_alloced);
3739 }
3740 }
3741 }
3742
3743 return list;
3744}
3745
c906108c
SS
3746/* Determine if PC is in the prologue of a function. The prologue is the area
3747 between the first instruction of a function, and the first executable line.
3748 Returns 1 if PC *might* be in prologue, 0 if definately *not* in prologue.
3749
3750 If non-zero, func_start is where we think the prologue starts, possibly
3751 by previous examination of symbol table information.
3752 */
3753
3754int
fba45db2 3755in_prologue (CORE_ADDR pc, CORE_ADDR func_start)
c906108c
SS
3756{
3757 struct symtab_and_line sal;
3758 CORE_ADDR func_addr, func_end;
3759
54cf9c03
EZ
3760 /* We have several sources of information we can consult to figure
3761 this out.
3762 - Compilers usually emit line number info that marks the prologue
3763 as its own "source line". So the ending address of that "line"
3764 is the end of the prologue. If available, this is the most
3765 reliable method.
3766 - The minimal symbols and partial symbols, which can usually tell
3767 us the starting and ending addresses of a function.
3768 - If we know the function's start address, we can call the
3769 architecture-defined SKIP_PROLOGUE function to analyze the
3770 instruction stream and guess where the prologue ends.
3771 - Our `func_start' argument; if non-zero, this is the caller's
3772 best guess as to the function's entry point. At the time of
3773 this writing, handle_inferior_event doesn't get this right, so
3774 it should be our last resort. */
3775
3776 /* Consult the partial symbol table, to find which function
3777 the PC is in. */
3778 if (! find_pc_partial_function (pc, NULL, &func_addr, &func_end))
3779 {
3780 CORE_ADDR prologue_end;
c906108c 3781
54cf9c03
EZ
3782 /* We don't even have minsym information, so fall back to using
3783 func_start, if given. */
3784 if (! func_start)
3785 return 1; /* We *might* be in a prologue. */
c906108c 3786
54cf9c03 3787 prologue_end = SKIP_PROLOGUE (func_start);
c906108c 3788
54cf9c03
EZ
3789 return func_start <= pc && pc < prologue_end;
3790 }
c906108c 3791
54cf9c03
EZ
3792 /* If we have line number information for the function, that's
3793 usually pretty reliable. */
3794 sal = find_pc_line (func_addr, 0);
c906108c 3795
54cf9c03
EZ
3796 /* Now sal describes the source line at the function's entry point,
3797 which (by convention) is the prologue. The end of that "line",
3798 sal.end, is the end of the prologue.
3799
3800 Note that, for functions whose source code is all on a single
3801 line, the line number information doesn't always end up this way.
3802 So we must verify that our purported end-of-prologue address is
3803 *within* the function, not at its start or end. */
3804 if (sal.line == 0
3805 || sal.end <= func_addr
3806 || func_end <= sal.end)
3807 {
3808 /* We don't have any good line number info, so use the minsym
3809 information, together with the architecture-specific prologue
3810 scanning code. */
3811 CORE_ADDR prologue_end = SKIP_PROLOGUE (func_addr);
c906108c 3812
54cf9c03
EZ
3813 return func_addr <= pc && pc < prologue_end;
3814 }
c906108c 3815
54cf9c03
EZ
3816 /* We have line number info, and it looks good. */
3817 return func_addr <= pc && pc < sal.end;
c906108c
SS
3818}
3819
3820
3821/* Begin overload resolution functions */
228c6d41
DJ
3822
3823static char *
3824remove_params (const char *demangled_name)
3825{
3826 const char *argp;
3827 char *new_name;
3828 int depth;
3829
3830 if (demangled_name == NULL)
3831 return NULL;
3832
3833 /* First find the end of the arg list. */
3834 argp = strrchr (demangled_name, ')');
3835 if (argp == NULL)
3836 return NULL;
3837
3838 /* Back up to the beginning. */
3839 depth = 1;
3840
3841 while (argp-- > demangled_name)
3842 {
3843 if (*argp == ')')
3844 depth ++;
3845 else if (*argp == '(')
3846 {
3847 depth --;
3848
3849 if (depth == 0)
3850 break;
3851 }
3852 }
3853 if (depth != 0)
3854 internal_error (__FILE__, __LINE__,
3855 "bad demangled name %s\n", demangled_name);
3856 while (argp[-1] == ' ' && argp > demangled_name)
3857 argp --;
3858
3859 new_name = xmalloc (argp - demangled_name + 1);
3860 memcpy (new_name, demangled_name, argp - demangled_name);
3861 new_name[argp - demangled_name] = '\0';
3862 return new_name;
3863}
3864
c906108c
SS
3865/* Helper routine for make_symbol_completion_list. */
3866
3867static int sym_return_val_size;
3868static int sym_return_val_index;
3869static struct symbol **sym_return_val;
3870
3871/* Test to see if the symbol specified by SYMNAME (which is already
c5aa993b
JM
3872 demangled for C++ symbols) matches SYM_TEXT in the first SYM_TEXT_LEN
3873 characters. If so, add it to the current completion list. */
c906108c
SS
3874
3875static void
fba45db2 3876overload_list_add_symbol (struct symbol *sym, char *oload_name)
c906108c
SS
3877{
3878 int newsize;
3879 int i;
228c6d41
DJ
3880 char *sym_name;
3881
3882 /* If there is no type information, we can't do anything, so skip */
3883 if (SYMBOL_TYPE (sym) == NULL)
3884 return;
3885
3886 /* skip any symbols that we've already considered. */
3887 for (i = 0; i < sym_return_val_index; ++i)
3888 if (!strcmp (SYMBOL_NAME (sym), SYMBOL_NAME (sym_return_val[i])))
3889 return;
c906108c
SS
3890
3891 /* Get the demangled name without parameters */
228c6d41 3892 sym_name = remove_params (SYMBOL_DEMANGLED_NAME (sym));
c906108c 3893 if (!sym_name)
228c6d41 3894 return;
c906108c
SS
3895
3896 /* skip symbols that cannot match */
3897 if (strcmp (sym_name, oload_name) != 0)
917317f4 3898 {
b8c9b27d 3899 xfree (sym_name);
917317f4
JM
3900 return;
3901 }
c906108c 3902
228c6d41 3903 xfree (sym_name);
c906108c
SS
3904
3905 /* We have a match for an overload instance, so add SYM to the current list
3906 * of overload instances */
3907 if (sym_return_val_index + 3 > sym_return_val_size)
3908 {
3909 newsize = (sym_return_val_size *= 2) * sizeof (struct symbol *);
3910 sym_return_val = (struct symbol **) xrealloc ((char *) sym_return_val, newsize);
3911 }
3912 sym_return_val[sym_return_val_index++] = sym;
3913 sym_return_val[sym_return_val_index] = NULL;
c906108c
SS
3914}
3915
3916/* Return a null-terminated list of pointers to function symbols that
3917 * match name of the supplied symbol FSYM.
3918 * This is used in finding all overloaded instances of a function name.
3919 * This has been modified from make_symbol_completion_list. */
3920
3921
3922struct symbol **
fba45db2 3923make_symbol_overload_list (struct symbol *fsym)
c906108c
SS
3924{
3925 register struct symbol *sym;
3926 register struct symtab *s;
3927 register struct partial_symtab *ps;
c906108c
SS
3928 register struct objfile *objfile;
3929 register struct block *b, *surrounding_static_block = 0;
d4f3574e 3930 register int i;
c906108c
SS
3931 /* The name we are completing on. */
3932 char *oload_name = NULL;
3933 /* Length of name. */
3934 int oload_name_len = 0;
3935
228c6d41 3936 /* Look for the symbol we are supposed to complete on. */
c906108c 3937
228c6d41 3938 oload_name = remove_params (SYMBOL_DEMANGLED_NAME (fsym));
c906108c
SS
3939 if (!oload_name)
3940 {
228c6d41
DJ
3941 sym_return_val_size = 1;
3942 sym_return_val = (struct symbol **) xmalloc (2 * sizeof (struct symbol *));
3943 sym_return_val[0] = fsym;
3944 sym_return_val[1] = NULL;
3945
3946 return sym_return_val;
c906108c
SS
3947 }
3948 oload_name_len = strlen (oload_name);
3949
3950 sym_return_val_size = 100;
3951 sym_return_val_index = 0;
3952 sym_return_val = (struct symbol **) xmalloc ((sym_return_val_size + 1) * sizeof (struct symbol *));
3953 sym_return_val[0] = NULL;
3954
3955 /* Look through the partial symtabs for all symbols which begin
917317f4 3956 by matching OLOAD_NAME. Make sure we read that symbol table in. */
c906108c
SS
3957
3958 ALL_PSYMTABS (objfile, ps)
c5aa993b 3959 {
d4f3574e
SS
3960 struct partial_symbol **psym;
3961
c5aa993b
JM
3962 /* If the psymtab's been read in we'll get it when we search
3963 through the blockvector. */
3964 if (ps->readin)
3965 continue;
3966
3967 for (psym = objfile->global_psymbols.list + ps->globals_offset;
3968 psym < (objfile->global_psymbols.list + ps->globals_offset
3969 + ps->n_global_syms);
3970 psym++)
3971 {
3972 /* If interrupted, then quit. */
3973 QUIT;
917317f4
JM
3974 /* This will cause the symbol table to be read if it has not yet been */
3975 s = PSYMTAB_TO_SYMTAB (ps);
c5aa993b
JM
3976 }
3977
3978 for (psym = objfile->static_psymbols.list + ps->statics_offset;
3979 psym < (objfile->static_psymbols.list + ps->statics_offset
3980 + ps->n_static_syms);
3981 psym++)
3982 {
3983 QUIT;
917317f4
JM
3984 /* This will cause the symbol table to be read if it has not yet been */
3985 s = PSYMTAB_TO_SYMTAB (ps);
c5aa993b
JM
3986 }
3987 }
c906108c 3988
c906108c
SS
3989 /* Search upwards from currently selected frame (so that we can
3990 complete on local vars. */
3991
ae767bfb 3992 for (b = get_selected_block (0); b != NULL; b = BLOCK_SUPERBLOCK (b))
c906108c
SS
3993 {
3994 if (!BLOCK_SUPERBLOCK (b))
3995 {
c5aa993b 3996 surrounding_static_block = b; /* For elimination of dups */
c906108c 3997 }
c5aa993b 3998
c906108c 3999 /* Also catch fields of types defined in this places which match our
c5aa993b 4000 text string. Only complete on types visible from current context. */
c906108c 4001
e88c90f2 4002 ALL_BLOCK_SYMBOLS (b, i, sym)
c906108c 4003 {
c906108c
SS
4004 overload_list_add_symbol (sym, oload_name);
4005 }
4006 }
4007
4008 /* Go through the symtabs and check the externs and statics for
4009 symbols which match. */
4010
4011 ALL_SYMTABS (objfile, s)
c5aa993b
JM
4012 {
4013 QUIT;
4014 b = BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), GLOBAL_BLOCK);
e88c90f2 4015 ALL_BLOCK_SYMBOLS (b, i, sym)
c5aa993b 4016 {
c5aa993b
JM
4017 overload_list_add_symbol (sym, oload_name);
4018 }
4019 }
c906108c
SS
4020
4021 ALL_SYMTABS (objfile, s)
c5aa993b
JM
4022 {
4023 QUIT;
4024 b = BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), STATIC_BLOCK);
4025 /* Don't do this block twice. */
4026 if (b == surrounding_static_block)
4027 continue;
e88c90f2 4028 ALL_BLOCK_SYMBOLS (b, i, sym)
c5aa993b 4029 {
c5aa993b
JM
4030 overload_list_add_symbol (sym, oload_name);
4031 }
4032 }
c906108c 4033
b8c9b27d 4034 xfree (oload_name);
c906108c
SS
4035
4036 return (sym_return_val);
4037}
4038
4039/* End of overload resolution functions */
c906108c 4040\f
50641945
FN
4041struct symtabs_and_lines
4042decode_line_spec (char *string, int funfirstline)
4043{
4044 struct symtabs_and_lines sals;
0378c332
FN
4045 struct symtab_and_line cursal;
4046
50641945
FN
4047 if (string == 0)
4048 error ("Empty line specification.");
0378c332
FN
4049
4050 /* We use whatever is set as the current source line. We do not try
4051 and get a default or it will recursively call us! */
4052 cursal = get_current_source_symtab_and_line ();
4053
50641945 4054 sals = decode_line_1 (&string, funfirstline,
0378c332 4055 cursal.symtab, cursal.line,
50641945 4056 (char ***) NULL);
0378c332 4057
50641945
FN
4058 if (*string)
4059 error ("Junk at end of line specification: %s", string);
4060 return sals;
4061}
c5aa993b 4062
51cc5b07
AC
4063/* Track MAIN */
4064static char *name_of_main;
4065
4066void
4067set_main_name (const char *name)
4068{
4069 if (name_of_main != NULL)
4070 {
4071 xfree (name_of_main);
4072 name_of_main = NULL;
4073 }
4074 if (name != NULL)
4075 {
4076 name_of_main = xstrdup (name);
4077 }
4078}
4079
4080char *
4081main_name (void)
4082{
4083 if (name_of_main != NULL)
4084 return name_of_main;
4085 else
4086 return "main";
4087}
4088
4089
c906108c 4090void
fba45db2 4091_initialize_symtab (void)
c906108c
SS
4092{
4093 add_info ("variables", variables_info,
c5aa993b 4094 "All global and static variable names, or those matching REGEXP.");
c906108c 4095 if (dbx_commands)
c5aa993b
JM
4096 add_com ("whereis", class_info, variables_info,
4097 "All global and static variable names, or those matching REGEXP.");
c906108c
SS
4098
4099 add_info ("functions", functions_info,
4100 "All function names, or those matching REGEXP.");
4101
357e46e7 4102
c906108c
SS
4103 /* FIXME: This command has at least the following problems:
4104 1. It prints builtin types (in a very strange and confusing fashion).
4105 2. It doesn't print right, e.g. with
c5aa993b
JM
4106 typedef struct foo *FOO
4107 type_print prints "FOO" when we want to make it (in this situation)
4108 print "struct foo *".
c906108c
SS
4109 I also think "ptype" or "whatis" is more likely to be useful (but if
4110 there is much disagreement "info types" can be fixed). */
4111 add_info ("types", types_info,
4112 "All type names, or those matching REGEXP.");
4113
c906108c
SS
4114 add_info ("sources", sources_info,
4115 "Source files in the program.");
4116
4117 add_com ("rbreak", class_breakpoint, rbreak_command,
c5aa993b 4118 "Set a breakpoint for all functions matching REGEXP.");
c906108c
SS
4119
4120 if (xdb_commands)
4121 {
4122 add_com ("lf", class_info, sources_info, "Source files in the program");
4123 add_com ("lg", class_info, variables_info,
c5aa993b 4124 "All global and static variable names, or those matching REGEXP.");
c906108c
SS
4125 }
4126
4127 /* Initialize the one built-in type that isn't language dependent... */
4128 builtin_type_error = init_type (TYPE_CODE_ERROR, 0, 0,
4129 "<unknown type>", (struct objfile *) NULL);
4130}
This page took 0.598553 seconds and 4 git commands to generate.