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