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