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