e6cbbc61100def998586440120d92a2db896a18f
[deliverable/binutils-gdb.git] / gdb / symtab.c
1 /* Symbol table lookup for the GNU debugger, GDB.
2 Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992
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., 675 Mass Ave, Cambridge, MA 02139, 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 "regex.h"
33 #include "expression.h"
34 #include "language.h"
35 #include "demangle.h"
36
37 #include <obstack.h>
38 #include <assert.h>
39
40 #include <sys/types.h>
41 #include <fcntl.h>
42 #include <string.h>
43 #include <sys/stat.h>
44 #include <ctype.h>
45
46 /* Prototypes for local functions */
47
48 extern int
49 find_methods PARAMS ((struct type *, char *, struct symbol **));
50
51 static void
52 completion_list_add_name PARAMS ((char *, char *, int, char *, char *));
53
54 static void
55 build_canonical_line_spec PARAMS ((struct symtab_and_line *, char *, char ***));
56
57 static struct symtabs_and_lines
58 decode_line_2 PARAMS ((struct symbol *[], int, int, char ***));
59
60 static void
61 rbreak_command PARAMS ((char *, int));
62
63 static void
64 types_info PARAMS ((char *, int));
65
66 static void
67 functions_info PARAMS ((char *, int));
68
69 static void
70 variables_info PARAMS ((char *, int));
71
72 static void
73 sources_info PARAMS ((char *, int));
74
75 static void
76 list_symbols PARAMS ((char *, int, int));
77
78 static void
79 output_source_filename PARAMS ((char *, int *));
80
81 static char *
82 operator_chars PARAMS ((char *, char **));
83
84 static int find_line_common PARAMS ((struct linetable *, int, int *));
85
86 static struct partial_symbol *
87 lookup_partial_symbol PARAMS ((struct partial_symtab *, const char *,
88 int, enum namespace));
89
90 static struct symtab *
91 lookup_symtab_1 PARAMS ((char *));
92
93 /* */
94
95 /* The single non-language-specific builtin type */
96 struct type *builtin_type_error;
97
98 /* Block in which the most recently searched-for symbol was found.
99 Might be better to make this a parameter to lookup_symbol and
100 value_of_this. */
101
102 const struct block *block_found;
103
104 char no_symtab_msg[] = "No symbol table is loaded. Use the \"file\" command.";
105
106 /* While the C++ support is still in flux, issue a possibly helpful hint on
107 using the new command completion feature on single quoted demangled C++
108 symbols. Remove when loose ends are cleaned up. FIXME -fnf */
109
110 void
111 cplusplus_hint (name)
112 char *name;
113 {
114 printf ("Hint: try '%s<TAB> or '%s<ESC-?>\n", name, name);
115 printf ("(Note leading single quote.)\n");
116 }
117
118 /* Check for a symtab of a specific name; first in symtabs, then in
119 psymtabs. *If* there is no '/' in the name, a match after a '/'
120 in the symtab filename will also work. */
121
122 static struct symtab *
123 lookup_symtab_1 (name)
124 char *name;
125 {
126 register struct symtab *s;
127 register struct partial_symtab *ps;
128 register char *slash;
129 register struct objfile *objfile;
130
131 got_symtab:
132
133 /* First, search for an exact match */
134
135 ALL_SYMTABS (objfile, s)
136 if (STREQ (name, s->filename))
137 return s;
138
139 slash = strchr (name, '/');
140
141 /* Now, search for a matching tail (only if name doesn't have any dirs) */
142
143 if (!slash)
144 ALL_SYMTABS (objfile, s)
145 {
146 char *p = s -> filename;
147 char *tail = strrchr (p, '/');
148
149 if (tail)
150 p = tail + 1;
151
152 if (STREQ (p, name))
153 return s;
154 }
155
156 /* Same search rules as above apply here, but now we look thru the
157 psymtabs. */
158
159 ALL_PSYMTABS (objfile, ps)
160 if (STREQ (name, ps -> filename))
161 goto got_psymtab;
162
163 if (!slash)
164 ALL_PSYMTABS (objfile, ps)
165 {
166 char *p = ps -> filename;
167 char *tail = strrchr (p, '/');
168
169 if (tail)
170 p = tail + 1;
171
172 if (STREQ (p, name))
173 goto got_psymtab;
174 }
175
176 return (NULL);
177
178 got_psymtab:
179
180 if (ps -> readin)
181 error ("Internal: readin %s pst for `%s' found when no symtab found.",
182 ps -> filename, name);
183
184 s = PSYMTAB_TO_SYMTAB (ps);
185
186 if (s)
187 return s;
188
189 /* At this point, we have located the psymtab for this file, but
190 the conversion to a symtab has failed. This usually happens
191 when we are looking up an include file. In this case,
192 PSYMTAB_TO_SYMTAB doesn't return a symtab, even though one has
193 been created. So, we need to run through the symtabs again in
194 order to find the file.
195 XXX - This is a crock, and should be fixed inside of the the
196 symbol parsing routines. */
197 goto got_symtab;
198 }
199
200 /* Lookup the symbol table of a source file named NAME. Try a couple
201 of variations if the first lookup doesn't work. */
202
203 struct symtab *
204 lookup_symtab (name)
205 char *name;
206 {
207 register struct symtab *s;
208 register char *copy;
209
210 s = lookup_symtab_1 (name);
211 if (s) return s;
212
213 /* If name not found as specified, see if adding ".c" helps. */
214
215 copy = (char *) alloca (strlen (name) + 3);
216 strcpy (copy, name);
217 strcat (copy, ".c");
218 s = lookup_symtab_1 (copy);
219 if (s) return s;
220
221 /* We didn't find anything; die. */
222 return 0;
223 }
224
225 /* Lookup the partial symbol table of a source file named NAME. This
226 only returns true on an exact match (ie. this semantics are
227 different from lookup_symtab. */
228
229 struct partial_symtab *
230 lookup_partial_symtab (name)
231 char *name;
232 {
233 register struct partial_symtab *pst;
234 register struct objfile *objfile;
235
236 ALL_PSYMTABS (objfile, pst)
237 {
238 if (STREQ (name, pst -> filename))
239 {
240 return (pst);
241 }
242 }
243 return (NULL);
244 }
245 \f
246 /* Demangle a GDB method stub type.
247 Note that this function is g++ specific. */
248
249 char *
250 gdb_mangle_name (type, i, j)
251 struct type *type;
252 int i, j;
253 {
254 int mangled_name_len;
255 char *mangled_name;
256 struct fn_field *f = TYPE_FN_FIELDLIST1 (type, i);
257 struct fn_field *method = &f[j];
258 char *field_name = TYPE_FN_FIELDLIST_NAME (type, i);
259 char *physname = TYPE_FN_FIELD_PHYSNAME (f, j);
260 char *newname = type_name_no_tag (type);
261 int is_constructor = newname != NULL && STREQ (field_name, newname);
262 int is_destructor = is_constructor && DESTRUCTOR_PREFIX_P (physname);
263 /* Need a new type prefix. */
264 char *const_prefix = method->is_const ? "C" : "";
265 char *volatile_prefix = method->is_volatile ? "V" : "";
266 char buf[20];
267 #ifndef GCC_MANGLE_BUG
268 int len = newname == NULL ? 0 : strlen (newname);
269
270 if (is_destructor)
271 {
272 mangled_name = (char*) xmalloc(strlen(physname)+1);
273 strcpy(mangled_name, physname);
274 return mangled_name;
275 }
276
277 sprintf (buf, "__%s%s%d", const_prefix, volatile_prefix, len);
278 mangled_name_len = ((is_constructor ? 0 : strlen (field_name))
279 + strlen (buf) + len
280 + strlen (physname)
281 + 1);
282
283 /* Only needed for GNU-mangled names. ANSI-mangled names
284 work with the normal mechanisms. */
285 if (OPNAME_PREFIX_P (field_name))
286 {
287 char *opname = cplus_mangle_opname (field_name + 3, 0);
288 if (opname == NULL)
289 error ("No mangling for \"%s\"", field_name);
290 mangled_name_len += strlen (opname);
291 mangled_name = (char *)xmalloc (mangled_name_len);
292
293 strncpy (mangled_name, field_name, 3);
294 mangled_name[3] = '\0';
295 strcat (mangled_name, opname);
296 }
297 else
298 {
299 mangled_name = (char *)xmalloc (mangled_name_len);
300 if (is_constructor)
301 mangled_name[0] = '\0';
302 else
303 strcpy (mangled_name, field_name);
304 }
305 strcat (mangled_name, buf);
306 /* If the class doesn't have a name, i.e. newname NULL, then we just
307 mangle it using 0 for the length of the class. Thus it gets mangled
308 as something starting with `::' rather than `classname::'. */
309 if (newname != NULL)
310 strcat (mangled_name, newname);
311 #else
312 char *opname;
313
314 if (is_constructor)
315 {
316 buf[0] = '\0';
317 }
318 else
319 {
320 sprintf (buf, "__%s%s", const_prefix, volatile_prefix);
321 }
322
323 mangled_name_len = ((is_constructor ? 0 : strlen (field_name))
324 + strlen (buf) + strlen (physname) + 1);
325
326 /* Only needed for GNU-mangled names. ANSI-mangled names
327 work with the normal mechanisms. */
328 if (OPNAME_PREFIX_P (field_name))
329 {
330 opname = cplus_mangle_opname (field_name + 3, 0);
331 if (opname == NULL)
332 {
333 error ("No mangling for \"%s\"", field_name);
334 }
335 mangled_name_len += strlen (opname);
336 mangled_name = (char *) xmalloc (mangled_name_len);
337
338 strncpy (mangled_name, field_name, 3);
339 strcpy (mangled_name + 3, opname);
340 }
341 else
342 {
343 mangled_name = (char *) xmalloc (mangled_name_len);
344 if (is_constructor)
345 {
346 mangled_name[0] = '\0';
347 }
348 else
349 {
350 strcpy (mangled_name, field_name);
351 }
352 }
353 strcat (mangled_name, buf);
354
355 #endif
356 strcat (mangled_name, physname);
357 return (mangled_name);
358 }
359
360 \f
361 /* Find which partial symtab on contains PC. Return 0 if none. */
362
363 struct partial_symtab *
364 find_pc_psymtab (pc)
365 register CORE_ADDR pc;
366 {
367 register struct partial_symtab *pst;
368 register struct objfile *objfile;
369
370 ALL_PSYMTABS (objfile, pst)
371 {
372 if (pc >= pst->textlow && pc < pst->texthigh)
373 return (pst);
374 }
375 return (NULL);
376 }
377
378 /* Find which partial symbol within a psymtab contains PC. Return 0
379 if none. Check all psymtabs if PSYMTAB is 0. */
380 struct partial_symbol *
381 find_pc_psymbol (psymtab, pc)
382 struct partial_symtab *psymtab;
383 CORE_ADDR pc;
384 {
385 struct partial_symbol *best = NULL, *p;
386 CORE_ADDR best_pc;
387
388 if (!psymtab)
389 psymtab = find_pc_psymtab (pc);
390 if (!psymtab)
391 return 0;
392
393 best_pc = psymtab->textlow - 1;
394
395 for (p = psymtab->objfile->static_psymbols.list + psymtab->statics_offset;
396 (p - (psymtab->objfile->static_psymbols.list + psymtab->statics_offset)
397 < psymtab->n_static_syms);
398 p++)
399 if (SYMBOL_NAMESPACE (p) == VAR_NAMESPACE
400 && SYMBOL_CLASS (p) == LOC_BLOCK
401 && pc >= SYMBOL_VALUE_ADDRESS (p)
402 && SYMBOL_VALUE_ADDRESS (p) > best_pc)
403 {
404 best_pc = SYMBOL_VALUE_ADDRESS (p);
405 best = p;
406 }
407 if (best_pc == psymtab->textlow - 1)
408 return 0;
409 return best;
410 }
411
412 \f
413 /* Find the definition for a specified symbol name NAME
414 in namespace NAMESPACE, visible from lexical block BLOCK.
415 Returns the struct symbol pointer, or zero if no symbol is found.
416 If SYMTAB is non-NULL, store the symbol table in which the
417 symbol was found there, or NULL if not found.
418 C++: if IS_A_FIELD_OF_THIS is nonzero on entry, check to see if
419 NAME is a field of the current implied argument `this'. If so set
420 *IS_A_FIELD_OF_THIS to 1, otherwise set it to zero.
421 BLOCK_FOUND is set to the block in which NAME is found (in the case of
422 a field of `this', value_of_this sets BLOCK_FOUND to the proper value.) */
423
424 struct symbol *
425 lookup_symbol (name, block, namespace, is_a_field_of_this, symtab)
426 const char *name;
427 register const struct block *block;
428 const enum namespace namespace;
429 int *is_a_field_of_this;
430 struct symtab **symtab;
431 {
432 register struct symbol *sym;
433 register struct symtab *s = NULL;
434 register struct partial_symtab *ps;
435 struct blockvector *bv;
436 register struct objfile *objfile;
437 register struct block *b;
438 register struct minimal_symbol *msymbol;
439
440 /* Search specified block and its superiors. */
441
442 while (block != 0)
443 {
444 sym = lookup_block_symbol (block, name, namespace);
445 if (sym)
446 {
447 block_found = block;
448 if (symtab != NULL)
449 {
450 /* Search the list of symtabs for one which contains the
451 address of the start of this block. */
452 ALL_SYMTABS (objfile, s)
453 {
454 bv = BLOCKVECTOR (s);
455 b = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
456 if (BLOCK_START (b) <= BLOCK_START (block)
457 && BLOCK_END (b) > BLOCK_START (block))
458 goto found;
459 }
460 found:
461 *symtab = s;
462 }
463
464 return (sym);
465 }
466 block = BLOCK_SUPERBLOCK (block);
467 }
468
469 /* FIXME: this code is never executed--block is always NULL at this
470 point. What is it trying to do, anyway? We already should have
471 checked the STATIC_BLOCK above (it is the superblock of top-level
472 blocks). Why is VAR_NAMESPACE special-cased? */
473 /* Don't need to mess with the psymtabs; if we have a block,
474 that file is read in. If we don't, then we deal later with
475 all the psymtab stuff that needs checking. */
476 if (namespace == VAR_NAMESPACE && block != NULL)
477 {
478 struct block *b;
479 /* Find the right symtab. */
480 ALL_SYMTABS (objfile, s)
481 {
482 bv = BLOCKVECTOR (s);
483 b = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
484 if (BLOCK_START (b) <= BLOCK_START (block)
485 && BLOCK_END (b) > BLOCK_START (block))
486 {
487 sym = lookup_block_symbol (b, name, VAR_NAMESPACE);
488 if (sym)
489 {
490 block_found = b;
491 if (symtab != NULL)
492 *symtab = s;
493 return sym;
494 }
495 }
496 }
497 }
498
499
500 /* C++: If requested to do so by the caller,
501 check to see if NAME is a field of `this'. */
502 if (is_a_field_of_this)
503 {
504 struct value *v = value_of_this (0);
505
506 *is_a_field_of_this = 0;
507 if (v && check_field (v, name))
508 {
509 *is_a_field_of_this = 1;
510 if (symtab != NULL)
511 *symtab = NULL;
512 return 0;
513 }
514 }
515
516 /* Now search all global blocks. Do the symtab's first, then
517 check the psymtab's */
518
519 ALL_SYMTABS (objfile, s)
520 {
521 bv = BLOCKVECTOR (s);
522 block = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
523 sym = lookup_block_symbol (block, name, namespace);
524 if (sym)
525 {
526 block_found = block;
527 if (symtab != NULL)
528 *symtab = s;
529 return sym;
530 }
531 }
532
533 /* Check for the possibility of the symbol being a global function
534 that is stored in one of the minimal symbol tables. Eventually, all
535 global symbols might be resolved in this way. */
536
537 if (namespace == VAR_NAMESPACE)
538 {
539 msymbol = lookup_minimal_symbol (name, (struct objfile *) NULL);
540 if (msymbol != NULL)
541 {
542 s = find_pc_symtab (SYMBOL_VALUE_ADDRESS (msymbol));
543 /* If S is NULL, there are no debug symbols for this file.
544 Skip this stuff and check for matching static symbols below. */
545 if (s != NULL)
546 {
547 bv = BLOCKVECTOR (s);
548 block = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
549 sym = lookup_block_symbol (block, SYMBOL_NAME (msymbol),
550 namespace);
551 /* We kept static functions in minimal symbol table as well as
552 in static scope. We want to find them in the symbol table. */
553 if (!sym) {
554 block = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
555 sym = lookup_block_symbol (block, SYMBOL_NAME (msymbol),
556 namespace);
557 }
558
559 /* sym == 0 if symbol was found in the minimal symbol table
560 but not in the symtab.
561 Return 0 to use the msymbol definition of "foo_".
562
563 This happens for Fortran "foo_" symbols,
564 which are "foo" in the symtab.
565
566 This can also happen if "asm" is used to make a
567 regular symbol but not a debugging symbol, e.g.
568 asm(".globl _main");
569 asm("_main:");
570 */
571
572 if (symtab != NULL)
573 *symtab = s;
574 return sym;
575 }
576 }
577 }
578
579 ALL_PSYMTABS (objfile, ps)
580 {
581 if (!ps->readin && lookup_partial_symbol (ps, name, 1, namespace))
582 {
583 s = PSYMTAB_TO_SYMTAB(ps);
584 bv = BLOCKVECTOR (s);
585 block = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
586 sym = lookup_block_symbol (block, name, namespace);
587 if (!sym)
588 error ("Internal: global symbol `%s' found in %s psymtab but not in symtab", name, ps->filename);
589 if (symtab != NULL)
590 *symtab = s;
591 return sym;
592 }
593 }
594
595 /* Now search all per-file blocks.
596 Not strictly correct, but more useful than an error.
597 Do the symtabs first, then check the psymtabs */
598
599 ALL_SYMTABS (objfile, s)
600 {
601 bv = BLOCKVECTOR (s);
602 block = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
603 sym = lookup_block_symbol (block, name, namespace);
604 if (sym)
605 {
606 block_found = block;
607 if (symtab != NULL)
608 *symtab = s;
609 return sym;
610 }
611 }
612
613 ALL_PSYMTABS (objfile, ps)
614 {
615 if (!ps->readin && lookup_partial_symbol (ps, name, 0, namespace))
616 {
617 s = PSYMTAB_TO_SYMTAB(ps);
618 bv = BLOCKVECTOR (s);
619 block = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
620 sym = lookup_block_symbol (block, name, namespace);
621 if (!sym)
622 error ("Internal: static symbol `%s' found in %s psymtab but not in symtab", name, ps->filename);
623 if (symtab != NULL)
624 *symtab = s;
625 return sym;
626 }
627 }
628
629 /* Now search all per-file blocks for static mangled symbols.
630 Do the symtabs first, then check the psymtabs. */
631
632 if (namespace == VAR_NAMESPACE)
633 {
634 ALL_SYMTABS (objfile, s)
635 {
636 bv = BLOCKVECTOR (s);
637 block = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
638 sym = lookup_block_symbol (block, name, VAR_NAMESPACE);
639 if (sym)
640 {
641 block_found = block;
642 if (symtab != NULL)
643 *symtab = s;
644 return sym;
645 }
646 }
647
648 ALL_PSYMTABS (objfile, ps)
649 {
650 if (!ps->readin && lookup_partial_symbol (ps, name, 0, VAR_NAMESPACE))
651 {
652 s = PSYMTAB_TO_SYMTAB(ps);
653 bv = BLOCKVECTOR (s);
654 block = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
655 sym = lookup_block_symbol (block, name, VAR_NAMESPACE);
656 if (!sym)
657 error ("Internal: mangled static symbol `%s' found in %s psymtab but not in symtab", name, ps->filename);
658 if (symtab != NULL)
659 *symtab = s;
660 return sym;
661 }
662 }
663 }
664
665 if (symtab != NULL)
666 *symtab = NULL;
667 return 0;
668 }
669
670 /* Look, in partial_symtab PST, for symbol NAME. Check the global
671 symbols if GLOBAL, the static symbols if not */
672
673 static struct partial_symbol *
674 lookup_partial_symbol (pst, name, global, namespace)
675 struct partial_symtab *pst;
676 const char *name;
677 int global;
678 enum namespace namespace;
679 {
680 struct partial_symbol *start, *psym;
681 struct partial_symbol *top, *bottom, *center;
682 int length = (global ? pst->n_global_syms : pst->n_static_syms);
683 int do_linear_search = 1;
684
685 if (length == 0)
686 {
687 return (NULL);
688 }
689
690 start = (global ?
691 pst->objfile->global_psymbols.list + pst->globals_offset :
692 pst->objfile->static_psymbols.list + pst->statics_offset );
693
694 if (global) /* This means we can use a binary search. */
695 {
696 do_linear_search = 0;
697
698 /* Binary search. This search is guaranteed to end with center
699 pointing at the earliest partial symbol with the correct
700 name. At that point *all* partial symbols with that name
701 will be checked against the correct namespace. */
702
703 bottom = start;
704 top = start + length - 1;
705 while (top > bottom)
706 {
707 center = bottom + (top - bottom) / 2;
708 assert (center < top);
709 if (!do_linear_search && SYMBOL_LANGUAGE (center) == language_cplus)
710 {
711 do_linear_search = 1;
712 }
713 if (STRCMP (SYMBOL_NAME (center), name) >= 0)
714 {
715 top = center;
716 }
717 else
718 {
719 bottom = center + 1;
720 }
721 }
722 assert (top == bottom);
723 while (STREQ (SYMBOL_NAME (top), name))
724 {
725 if (SYMBOL_NAMESPACE (top) == namespace)
726 {
727 return top;
728 }
729 top ++;
730 }
731 }
732
733 /* Can't use a binary search or else we found during the binary search that
734 we should also do a linear search. */
735
736 if (do_linear_search)
737 {
738 for (psym = start; psym < start + length; psym++)
739 {
740 if (namespace == SYMBOL_NAMESPACE (psym))
741 {
742 if (SYMBOL_MATCHES_NAME (psym, name))
743 {
744 return (psym);
745 }
746 }
747 }
748 }
749
750 return (NULL);
751 }
752
753 /* Find the psymtab containing main(). */
754 /* FIXME: What about languages without main() or specially linked
755 executables that have no main() ? */
756
757 struct partial_symtab *
758 find_main_psymtab ()
759 {
760 register struct partial_symtab *pst;
761 register struct objfile *objfile;
762
763 ALL_PSYMTABS (objfile, pst)
764 {
765 if (lookup_partial_symbol (pst, "main", 1, VAR_NAMESPACE))
766 {
767 return (pst);
768 }
769 }
770 return (NULL);
771 }
772
773 /* Search BLOCK for symbol NAME in NAMESPACE.
774
775 Note that if NAME is the demangled form of a C++ symbol, we will fail
776 to find a match during the binary search of the non-encoded names, but
777 for now we don't worry about the slight inefficiency of looking for
778 a match we'll never find, since it will go pretty quick. Once the
779 binary search terminates, we drop through and do a straight linear
780 search on the symbols. Each symbol which is marked as being a C++
781 symbol (language_cplus set) has both the encoded and non-encoded names
782 tested for a match. */
783
784 struct symbol *
785 lookup_block_symbol (block, name, namespace)
786 register const struct block *block;
787 const char *name;
788 const enum namespace namespace;
789 {
790 register int bot, top, inc;
791 register struct symbol *sym;
792 register struct symbol *sym_found = NULL;
793 register int do_linear_search = 1;
794
795 /* If the blocks's symbols were sorted, start with a binary search. */
796
797 if (BLOCK_SHOULD_SORT (block))
798 {
799 /* Reset the linear search flag so if the binary search fails, we
800 won't do the linear search once unless we find some reason to
801 do so, such as finding a C++ symbol during the binary search.
802 Note that for C++ modules, ALL the symbols in a block should
803 end up marked as C++ symbols. */
804
805 do_linear_search = 0;
806 top = BLOCK_NSYMS (block);
807 bot = 0;
808
809 /* Advance BOT to not far before the first symbol whose name is NAME. */
810
811 while (1)
812 {
813 inc = (top - bot + 1);
814 /* No need to keep binary searching for the last few bits worth. */
815 if (inc < 4)
816 {
817 break;
818 }
819 inc = (inc >> 1) + bot;
820 sym = BLOCK_SYM (block, inc);
821 if (!do_linear_search && SYMBOL_LANGUAGE (sym) == language_cplus)
822 {
823 do_linear_search = 1;
824 }
825 if (SYMBOL_NAME (sym)[0] < name[0])
826 {
827 bot = inc;
828 }
829 else if (SYMBOL_NAME (sym)[0] > name[0])
830 {
831 top = inc;
832 }
833 else if (STRCMP (SYMBOL_NAME (sym), name) < 0)
834 {
835 bot = inc;
836 }
837 else
838 {
839 top = inc;
840 }
841 }
842
843 /* Now scan forward until we run out of symbols, find one whose
844 name is greater than NAME, or find one we want. If there is
845 more than one symbol with the right name and namespace, we
846 return the first one; I believe it is now impossible for us
847 to encounter two symbols with the same name and namespace
848 here, because blocks containing argument symbols are no
849 longer sorted. */
850
851 top = BLOCK_NSYMS (block);
852 while (bot < top)
853 {
854 sym = BLOCK_SYM (block, bot);
855 inc = SYMBOL_NAME (sym)[0] - name[0];
856 if (inc == 0)
857 {
858 inc = STRCMP (SYMBOL_NAME (sym), name);
859 }
860 if (inc == 0 && SYMBOL_NAMESPACE (sym) == namespace)
861 {
862 return (sym);
863 }
864 if (inc > 0)
865 {
866 break;
867 }
868 bot++;
869 }
870 }
871
872 /* Here if block isn't sorted, or we fail to find a match during the
873 binary search above. If during the binary search above, we find a
874 symbol which is a C++ symbol, then we have re-enabled the linear
875 search flag which was reset when starting the binary search.
876
877 This loop is equivalent to the loop above, but hacked greatly for speed.
878
879 Note that parameter symbols do not always show up last in the
880 list; this loop makes sure to take anything else other than
881 parameter symbols first; it only uses parameter symbols as a
882 last resort. Note that this only takes up extra computation
883 time on a match. */
884
885 if (do_linear_search)
886 {
887 top = BLOCK_NSYMS (block);
888 bot = 0;
889 while (bot < top)
890 {
891 sym = BLOCK_SYM (block, bot);
892 if (SYMBOL_NAMESPACE (sym) == namespace &&
893 SYMBOL_MATCHES_NAME (sym, name))
894 {
895 sym_found = sym;
896 if (SYMBOL_CLASS (sym) != LOC_ARG &&
897 SYMBOL_CLASS (sym) != LOC_LOCAL_ARG &&
898 SYMBOL_CLASS (sym) != LOC_REF_ARG &&
899 SYMBOL_CLASS (sym) != LOC_REGPARM &&
900 SYMBOL_CLASS (sym) != LOC_REGPARM_ADDR &&
901 SYMBOL_CLASS (sym) != LOC_BASEREG_ARG)
902 {
903 break;
904 }
905 }
906 bot++;
907 }
908 }
909 return (sym_found); /* Will be NULL if not found. */
910 }
911
912 \f
913 /* Return the symbol for the function which contains a specified
914 lexical block, described by a struct block BL. */
915
916 struct symbol *
917 block_function (bl)
918 struct block *bl;
919 {
920 while (BLOCK_FUNCTION (bl) == 0 && BLOCK_SUPERBLOCK (bl) != 0)
921 bl = BLOCK_SUPERBLOCK (bl);
922
923 return BLOCK_FUNCTION (bl);
924 }
925
926 /* Find the symtab associated with PC. Look through the psymtabs and read in
927 another symtab if necessary. */
928
929 struct symtab *
930 find_pc_symtab (pc)
931 register CORE_ADDR pc;
932 {
933 register struct block *b;
934 struct blockvector *bv;
935 register struct symtab *s = NULL;
936 register struct symtab *best_s = NULL;
937 register struct partial_symtab *ps;
938 register struct objfile *objfile;
939 int distance = 0;
940
941 /* Search all symtabs for the one whose file contains our address, and which
942 is the smallest of all the ones containing the address. This is designed
943 to deal with a case like symtab a is at 0x1000-0x2000 and 0x3000-0x4000
944 and symtab b is at 0x2000-0x3000. So the GLOBAL_BLOCK for a is from
945 0x1000-0x4000, but for address 0x2345 we want to return symtab b.
946 This is said to happen for the mips; it might be swifter to create
947 several symtabs with the same name like xcoff does (I'm not sure). */
948
949 ALL_SYMTABS (objfile, s)
950 {
951 bv = BLOCKVECTOR (s);
952 b = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
953 if (BLOCK_START (b) <= pc
954 && BLOCK_END (b) > pc
955 && (distance == 0
956 || BLOCK_END (b) - BLOCK_START (b) < distance))
957 {
958 distance = BLOCK_END (b) - BLOCK_START (b);
959 best_s = s;
960 }
961 }
962
963 if (best_s != NULL)
964 return(best_s);
965
966 s = NULL;
967 ps = find_pc_psymtab (pc);
968 if (ps)
969 {
970 if (ps->readin)
971 /* Might want to error() here (in case symtab is corrupt and
972 will cause a core dump), but maybe we can successfully
973 continue, so let's not. */
974 warning ("\
975 (Internal error: pc 0x%x in read in psymtab, but not in symtab.)\n", pc);
976 s = PSYMTAB_TO_SYMTAB (ps);
977 }
978 return (s);
979 }
980
981 /* Find the source file and line number for a given PC value.
982 Return a structure containing a symtab pointer, a line number,
983 and a pc range for the entire source line.
984 The value's .pc field is NOT the specified pc.
985 NOTCURRENT nonzero means, if specified pc is on a line boundary,
986 use the line that ends there. Otherwise, in that case, the line
987 that begins there is used. */
988
989 /* The big complication here is that a line may start in one file, and end just
990 before the start of another file. This usually occurs when you #include
991 code in the middle of a subroutine. To properly find the end of a line's PC
992 range, we must search all symtabs associated with this compilation unit, and
993 find the one whose first PC is closer than that of the next line in this
994 symtab. */
995
996 /* If it's worth the effort, we could be using a binary search. */
997
998 struct symtab_and_line
999 find_pc_line (pc, notcurrent)
1000 CORE_ADDR pc;
1001 int notcurrent;
1002 {
1003 struct symtab *s;
1004 register struct linetable *l;
1005 register int len;
1006 register int i;
1007 register struct linetable_entry *item;
1008 struct symtab_and_line val;
1009 struct blockvector *bv;
1010
1011 /* Info on best line seen so far, and where it starts, and its file. */
1012
1013 struct linetable_entry *best = NULL;
1014 CORE_ADDR best_end = 0;
1015 struct symtab *best_symtab = 0;
1016
1017 /* Store here the first line number
1018 of a file which contains the line at the smallest pc after PC.
1019 If we don't find a line whose range contains PC,
1020 we will use a line one less than this,
1021 with a range from the start of that file to the first line's pc. */
1022 struct linetable_entry *alt = NULL;
1023 struct symtab *alt_symtab = 0;
1024
1025 /* Info on best line seen in this file. */
1026
1027 struct linetable_entry *prev;
1028
1029 /* If this pc is not from the current frame,
1030 it is the address of the end of a call instruction.
1031 Quite likely that is the start of the following statement.
1032 But what we want is the statement containing the instruction.
1033 Fudge the pc to make sure we get that. */
1034
1035 if (notcurrent) pc -= 1;
1036
1037 s = find_pc_symtab (pc);
1038 if (!s)
1039 {
1040 val.symtab = 0;
1041 val.line = 0;
1042 val.pc = pc;
1043 val.end = 0;
1044 return val;
1045 }
1046
1047 bv = BLOCKVECTOR (s);
1048
1049 /* Look at all the symtabs that share this blockvector.
1050 They all have the same apriori range, that we found was right;
1051 but they have different line tables. */
1052
1053 for (; s && BLOCKVECTOR (s) == bv; s = s->next)
1054 {
1055 /* Find the best line in this symtab. */
1056 l = LINETABLE (s);
1057 if (!l)
1058 continue;
1059 len = l->nitems;
1060 if (len <= 0)
1061 {
1062 /* I think len can be zero if the symtab lacks line numbers
1063 (e.g. gcc -g1). (Either that or the LINETABLE is NULL;
1064 I'm not sure which, and maybe it depends on the symbol
1065 reader). */
1066 continue;
1067 }
1068
1069 prev = NULL;
1070 item = l->item; /* Get first line info */
1071
1072 /* Is this file's first line closer than the first lines of other files?
1073 If so, record this file, and its first line, as best alternate. */
1074 if (item->pc > pc && (!alt || item->pc < alt->pc))
1075 {
1076 alt = item;
1077 alt_symtab = s;
1078 }
1079
1080 for (i = 0; i < len; i++, item++)
1081 {
1082 /* Return the last line that did not start after PC. */
1083 if (item->pc > pc)
1084 break;
1085
1086 prev = item;
1087 }
1088
1089 /* At this point, prev points at the line whose start addr is <= pc, and
1090 item points at the next line. If we ran off the end of the linetable
1091 (pc >= start of the last line), then prev == item. If pc < start of
1092 the first line, prev will not be set. */
1093
1094 /* Is this file's best line closer than the best in the other files?
1095 If so, record this file, and its best line, as best so far. */
1096
1097 if (prev && (!best || prev->pc > best->pc))
1098 {
1099 best = prev;
1100 best_symtab = s;
1101 /* If another line is in the linetable, and its PC is closer
1102 than the best_end we currently have, take it as best_end. */
1103 if (i < len && (best_end == 0 || best_end > item->pc))
1104 best_end = item->pc;
1105 }
1106 }
1107
1108 if (!best_symtab)
1109 {
1110 if (!alt_symtab)
1111 { /* If we didn't find any line # info, just
1112 return zeros. */
1113 val.symtab = 0;
1114 val.line = 0;
1115 val.pc = pc;
1116 val.end = 0;
1117 }
1118 else
1119 {
1120 val.symtab = alt_symtab;
1121 val.line = alt->line - 1;
1122 val.pc = BLOCK_END (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK));
1123 val.end = alt->pc;
1124 }
1125 }
1126 else
1127 {
1128 val.symtab = best_symtab;
1129 val.line = best->line;
1130 val.pc = best->pc;
1131 if (best_end && (!alt || best_end < alt->pc))
1132 val.end = best_end;
1133 else if (alt)
1134 val.end = alt->pc;
1135 else
1136 val.end = BLOCK_END (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK));
1137 }
1138 return val;
1139 }
1140 \f
1141 static int find_line_symtab PARAMS ((struct symtab *, int, struct linetable **,
1142 int *, int *));
1143
1144 /* Find line number LINE in any symtab whose name is the same as
1145 SYMTAB.
1146
1147 If found, return 1, set *LINETABLE to the linetable in which it was
1148 found, set *INDEX to the index in the linetable of the best entry
1149 found, and set *EXACT_MATCH nonzero if the value returned is an
1150 exact match.
1151
1152 If not found, return 0. */
1153
1154 static int
1155 find_line_symtab (symtab, line, linetable, index, exact_match)
1156 struct symtab *symtab;
1157 int line;
1158 struct linetable **linetable;
1159 int *index;
1160 int *exact_match;
1161 {
1162 int exact;
1163
1164 /* BEST_INDEX and BEST_LINETABLE identify the smallest linenumber > LINE
1165 so far seen. */
1166
1167 int best_index;
1168 struct linetable *best_linetable;
1169
1170 /* First try looking it up in the given symtab. */
1171 best_linetable = LINETABLE (symtab);
1172 best_index = find_line_common (best_linetable, line, &exact);
1173 if (best_index < 0 || !exact)
1174 {
1175 /* Didn't find an exact match. So we better keep looking for
1176 another symtab with the same name. In the case of xcoff,
1177 multiple csects for one source file (produced by IBM's FORTRAN
1178 compiler) produce multiple symtabs (this is unavoidable
1179 assuming csects can be at arbitrary places in memory and that
1180 the GLOBAL_BLOCK of a symtab has a begin and end address). */
1181
1182 /* BEST is the smallest linenumber > LINE so far seen,
1183 or 0 if none has been seen so far.
1184 BEST_INDEX and BEST_LINETABLE identify the item for it. */
1185 int best;
1186
1187 struct objfile *objfile;
1188 struct symtab *s;
1189
1190 if (best_index >= 0)
1191 best = best_linetable->item[best_index].line;
1192 else
1193 best = 0;
1194
1195 ALL_SYMTABS (objfile, s)
1196 {
1197 struct linetable *l;
1198 int ind;
1199
1200 if (!STREQ (symtab->filename, s->filename))
1201 continue;
1202 l = LINETABLE (s);
1203 ind = find_line_common (l, line, &exact);
1204 if (ind >= 0)
1205 {
1206 if (exact)
1207 {
1208 best_index = ind;
1209 best_linetable = l;
1210 goto done;
1211 }
1212 if (best == 0 || l->item[ind].line < best)
1213 {
1214 best = l->item[ind].line;
1215 best_index = ind;
1216 best_linetable = l;
1217 }
1218 }
1219 }
1220 }
1221 done:
1222 if (best_index < 0)
1223 return 0;
1224
1225 if (index)
1226 *index = best_index;
1227 if (linetable)
1228 *linetable = best_linetable;
1229 if (exact_match)
1230 *exact_match = exact;
1231 return 1;
1232 }
1233 \f
1234 /* Find the PC value for a given source file and line number.
1235 Returns zero for invalid line number.
1236 The source file is specified with a struct symtab. */
1237
1238 CORE_ADDR
1239 find_line_pc (symtab, line)
1240 struct symtab *symtab;
1241 int line;
1242 {
1243 struct linetable *l;
1244 int ind;
1245
1246 if (symtab == 0)
1247 return 0;
1248 if (find_line_symtab (symtab, line, &l, &ind, NULL))
1249 return l->item[ind].pc;
1250 else
1251 return 0;
1252 }
1253
1254 /* Find the range of pc values in a line.
1255 Store the starting pc of the line into *STARTPTR
1256 and the ending pc (start of next line) into *ENDPTR.
1257 Returns 1 to indicate success.
1258 Returns 0 if could not find the specified line. */
1259
1260 int
1261 find_line_pc_range (symtab, thisline, startptr, endptr)
1262 struct symtab *symtab;
1263 int thisline;
1264 CORE_ADDR *startptr, *endptr;
1265 {
1266 struct linetable *l;
1267 int ind;
1268 int exact_match; /* did we get an exact linenumber match */
1269
1270 if (symtab == 0)
1271 return 0;
1272
1273 if (find_line_symtab (symtab, thisline, &l, &ind, &exact_match))
1274 {
1275 *startptr = l->item[ind].pc;
1276 /* If we have not seen an entry for the specified line,
1277 assume that means the specified line has zero bytes. */
1278 if (!exact_match || ind == l->nitems-1)
1279 *endptr = *startptr;
1280 else
1281 /* Perhaps the following entry is for the following line.
1282 It's worth a try. */
1283 if (ind+1 < l->nitems
1284 && l->item[ind+1].line == thisline + 1)
1285 *endptr = l->item[ind+1].pc;
1286 else
1287 *endptr = find_line_pc (symtab, thisline+1);
1288 return 1;
1289 }
1290
1291 return 0;
1292 }
1293
1294 /* Given a line table and a line number, return the index into the line
1295 table for the pc of the nearest line whose number is >= the specified one.
1296 Return -1 if none is found. The value is >= 0 if it is an index.
1297
1298 Set *EXACT_MATCH nonzero if the value returned is an exact match. */
1299
1300 static int
1301 find_line_common (l, lineno, exact_match)
1302 register struct linetable *l;
1303 register int lineno;
1304 int *exact_match;
1305 {
1306 register int i;
1307 register int len;
1308
1309 /* BEST is the smallest linenumber > LINENO so far seen,
1310 or 0 if none has been seen so far.
1311 BEST_INDEX identifies the item for it. */
1312
1313 int best_index = -1;
1314 int best = 0;
1315
1316 if (lineno <= 0)
1317 return -1;
1318 if (l == 0)
1319 return -1;
1320
1321 len = l->nitems;
1322 for (i = 0; i < len; i++)
1323 {
1324 register struct linetable_entry *item = &(l->item[i]);
1325
1326 if (item->line == lineno)
1327 {
1328 /* Return the first (lowest address) entry which matches. */
1329 *exact_match = 1;
1330 return i;
1331 }
1332
1333 if (item->line > lineno && (best == 0 || item->line < best))
1334 {
1335 best = item->line;
1336 best_index = i;
1337 }
1338 }
1339
1340 /* If we got here, we didn't get an exact match. */
1341
1342 *exact_match = 0;
1343 return best_index;
1344 }
1345
1346 int
1347 find_pc_line_pc_range (pc, startptr, endptr)
1348 CORE_ADDR pc;
1349 CORE_ADDR *startptr, *endptr;
1350 {
1351 struct symtab_and_line sal;
1352 sal = find_pc_line (pc, 0);
1353 *startptr = sal.pc;
1354 *endptr = sal.end;
1355 return sal.symtab != 0;
1356 }
1357 \f
1358 /* If P is of the form "operator[ \t]+..." where `...' is
1359 some legitimate operator text, return a pointer to the
1360 beginning of the substring of the operator text.
1361 Otherwise, return "". */
1362 static char *
1363 operator_chars (p, end)
1364 char *p;
1365 char **end;
1366 {
1367 *end = "";
1368 if (strncmp (p, "operator", 8))
1369 return *end;
1370 p += 8;
1371
1372 /* Don't get faked out by `operator' being part of a longer
1373 identifier. */
1374 if (isalpha(*p) || *p == '_' || *p == '$' || *p == '\0')
1375 return *end;
1376
1377 /* Allow some whitespace between `operator' and the operator symbol. */
1378 while (*p == ' ' || *p == '\t')
1379 p++;
1380
1381 /* Recognize 'operator TYPENAME'. */
1382
1383 if (isalpha(*p) || *p == '_' || *p == '$')
1384 {
1385 register char *q = p+1;
1386 while (isalnum(*q) || *q == '_' || *q == '$')
1387 q++;
1388 *end = q;
1389 return p;
1390 }
1391
1392 switch (*p)
1393 {
1394 case '!':
1395 case '=':
1396 case '*':
1397 case '/':
1398 case '%':
1399 case '^':
1400 if (p[1] == '=')
1401 *end = p+2;
1402 else
1403 *end = p+1;
1404 return p;
1405 case '<':
1406 case '>':
1407 case '+':
1408 case '-':
1409 case '&':
1410 case '|':
1411 if (p[1] == '=' || p[1] == p[0])
1412 *end = p+2;
1413 else
1414 *end = p+1;
1415 return p;
1416 case '~':
1417 case ',':
1418 *end = p+1;
1419 return p;
1420 case '(':
1421 if (p[1] != ')')
1422 error ("`operator ()' must be specified without whitespace in `()'");
1423 *end = p+2;
1424 return p;
1425 case '?':
1426 if (p[1] != ':')
1427 error ("`operator ?:' must be specified without whitespace in `?:'");
1428 *end = p+2;
1429 return p;
1430 case '[':
1431 if (p[1] != ']')
1432 error ("`operator []' must be specified without whitespace in `[]'");
1433 *end = p+2;
1434 return p;
1435 default:
1436 error ("`operator %s' not supported", p);
1437 break;
1438 }
1439 *end = "";
1440 return *end;
1441 }
1442
1443 /* Recursive helper function for decode_line_1.
1444 * Look for methods named NAME in type T.
1445 * Return number of matches.
1446 * Put matches in SYM_ARR (which better be big enough!).
1447 * These allocations seem to define "big enough":
1448 * sym_arr = (struct symbol **) alloca(TYPE_NFN_FIELDS_TOTAL (t) * sizeof(struct symbol*));
1449 * Note that this function is g++ specific.
1450 */
1451
1452 int
1453 find_methods (t, name, sym_arr)
1454 struct type *t;
1455 char *name;
1456 struct symbol **sym_arr;
1457 {
1458 int i1 = 0;
1459 int ibase;
1460 struct symbol *sym_class;
1461 char *class_name = type_name_no_tag (t);
1462 /* Ignore this class if it doesn't have a name. This is ugly, but
1463 unless we figure out how to get the physname without the name of
1464 the class, then the loop can't do any good. */
1465 if (class_name
1466 && (sym_class = lookup_symbol (class_name,
1467 (struct block *)NULL,
1468 STRUCT_NAMESPACE,
1469 (int *)NULL,
1470 (struct symtab **)NULL)))
1471 {
1472 int method_counter;
1473 /* FIXME: Shouldn't this just be check_stub_type (t)? */
1474 t = SYMBOL_TYPE (sym_class);
1475 for (method_counter = TYPE_NFN_FIELDS (t) - 1;
1476 method_counter >= 0;
1477 --method_counter)
1478 {
1479 int field_counter;
1480 struct fn_field *f = TYPE_FN_FIELDLIST1 (t, method_counter);
1481
1482 char *method_name = TYPE_FN_FIELDLIST_NAME (t, method_counter);
1483 if (STREQ (name, method_name))
1484 /* Find all the fields with that name. */
1485 for (field_counter = TYPE_FN_FIELDLIST_LENGTH (t, method_counter) - 1;
1486 field_counter >= 0;
1487 --field_counter)
1488 {
1489 char *phys_name;
1490 if (TYPE_FN_FIELD_STUB (f, field_counter))
1491 check_stub_method (t, method_counter, field_counter);
1492 phys_name = TYPE_FN_FIELD_PHYSNAME (f, field_counter);
1493 /* Destructor is handled by caller, dont add it to the list */
1494 if (DESTRUCTOR_PREFIX_P (phys_name))
1495 continue;
1496
1497 /* FIXME: Why are we looking this up in the
1498 SYMBOL_BLOCK_VALUE (sym_class)? It is intended as a hook
1499 for nested types? If so, it should probably hook to the
1500 type, not the symbol. mipsread.c is the only symbol
1501 reader which sets the SYMBOL_BLOCK_VALUE for types, and
1502 this is not documented in symtab.h. -26Aug93. */
1503
1504 sym_arr[i1] = lookup_symbol (phys_name,
1505 SYMBOL_BLOCK_VALUE (sym_class),
1506 VAR_NAMESPACE,
1507 (int *) NULL,
1508 (struct symtab **) NULL);
1509 if (sym_arr[i1]) i1++;
1510 else
1511 {
1512 fputs_filtered("(Cannot find method ", stdout);
1513 fprintf_symbol_filtered (stdout, phys_name,
1514 language_cplus, DMGL_PARAMS);
1515 fputs_filtered(" - possibly inlined.)\n", stdout);
1516 }
1517 }
1518 }
1519 }
1520
1521 /* Only search baseclasses if there is no match yet, since names in
1522 derived classes override those in baseclasses.
1523
1524 FIXME: The above is not true; it is only true of member functions
1525 if they have the same number of arguments (??? - section 13.1 of the
1526 ARM says the function members are not in the same scope but doesn't
1527 really spell out the rules in a way I understand. In any case, if
1528 the number of arguments differ this is a case in which we can overload
1529 rather than hiding without any problem, and gcc 2.4.5 does overload
1530 rather than hiding in this case). */
1531
1532 if (i1)
1533 return i1;
1534 for (ibase = 0; ibase < TYPE_N_BASECLASSES (t); ibase++)
1535 i1 += find_methods(TYPE_BASECLASS(t, ibase), name,
1536 sym_arr + i1);
1537 return i1;
1538 }
1539
1540 /* Helper function for decode_line_1.
1541 Build a canonical line spec in CANONICAL if it is non-NULL and if
1542 the SAL has a symtab.
1543 If SYMNAME is non-NULL the canonical line spec is `filename:symname'.
1544 If SYMNAME is NULL the line number from SAL is used and the canonical
1545 line spec is `filename:linenum'. */
1546
1547 static void
1548 build_canonical_line_spec (sal, symname, canonical)
1549 struct symtab_and_line *sal;
1550 char *symname;
1551 char ***canonical;
1552 {
1553 char **canonical_arr;
1554 char *canonical_name;
1555 char *filename;
1556 struct symtab *s = sal->symtab;
1557
1558 if (s == (struct symtab *)NULL
1559 || s->filename == (char *)NULL
1560 || canonical == (char ***)NULL)
1561 return;
1562
1563 canonical_arr = (char **) xmalloc (sizeof (char *));
1564 *canonical = canonical_arr;
1565
1566 filename = s->filename;
1567 if (symname != NULL)
1568 {
1569 canonical_name = xmalloc (strlen (filename) + strlen (symname) + 2);
1570 sprintf (canonical_name, "%s:%s", filename, symname);
1571 }
1572 else
1573 {
1574 canonical_name = xmalloc (strlen (filename) + 30);
1575 sprintf (canonical_name, "%s:%d", filename, sal->line);
1576 }
1577 canonical_arr[0] = canonical_name;
1578 }
1579
1580 /* Parse a string that specifies a line number.
1581 Pass the address of a char * variable; that variable will be
1582 advanced over the characters actually parsed.
1583
1584 The string can be:
1585
1586 LINENUM -- that line number in current file. PC returned is 0.
1587 FILE:LINENUM -- that line in that file. PC returned is 0.
1588 FUNCTION -- line number of openbrace of that function.
1589 PC returned is the start of the function.
1590 VARIABLE -- line number of definition of that variable.
1591 PC returned is 0.
1592 FILE:FUNCTION -- likewise, but prefer functions in that file.
1593 *EXPR -- line in which address EXPR appears.
1594
1595 FUNCTION may be an undebuggable function found in minimal symbol table.
1596
1597 If the argument FUNFIRSTLINE is nonzero, we want the first line
1598 of real code inside a function when a function is specified.
1599
1600 DEFAULT_SYMTAB specifies the file to use if none is specified.
1601 It defaults to current_source_symtab.
1602 DEFAULT_LINE specifies the line number to use for relative
1603 line numbers (that start with signs). Defaults to current_source_line.
1604 If CANONICAL is non-NULL, store an array of strings containing the canonical
1605 line specs there if necessary. Currently overloaded member functions and
1606 line numbers or static functions without a filename yield a canonical
1607 line spec. The array and the line spec strings are allocated on the heap,
1608 it is the callers responsibility to free them.
1609
1610 Note that it is possible to return zero for the symtab
1611 if no file is validly specified. Callers must check that.
1612 Also, the line number returned may be invalid. */
1613
1614 struct symtabs_and_lines
1615 decode_line_1 (argptr, funfirstline, default_symtab, default_line, canonical)
1616 char **argptr;
1617 int funfirstline;
1618 struct symtab *default_symtab;
1619 int default_line;
1620 char ***canonical;
1621 {
1622 struct symtabs_and_lines values;
1623 #ifdef HPPA_COMPILER_BUG
1624 /* FIXME: The native HP 9000/700 compiler has a bug which appears
1625 when optimizing this file with target i960-vxworks. I haven't
1626 been able to construct a simple test case. The problem is that
1627 in the second call to SKIP_PROLOGUE below, the compiler somehow
1628 does not realize that the statement val = find_pc_line (...) will
1629 change the values of the fields of val. It extracts the elements
1630 into registers at the top of the block, and does not update the
1631 registers after the call to find_pc_line. You can check this by
1632 inserting a printf at the end of find_pc_line to show what values
1633 it is returning for val.pc and val.end and another printf after
1634 the call to see what values the function actually got (remember,
1635 this is compiling with cc -O, with this patch removed). You can
1636 also examine the assembly listing: search for the second call to
1637 skip_prologue; the LDO statement before the next call to
1638 find_pc_line loads the address of the structure which
1639 find_pc_line will return; if there is a LDW just before the LDO,
1640 which fetches an element of the structure, then the compiler
1641 still has the bug.
1642
1643 Setting val to volatile avoids the problem. We must undef
1644 volatile, because the HPPA native compiler does not define
1645 __STDC__, although it does understand volatile, and so volatile
1646 will have been defined away in defs.h. */
1647 #undef volatile
1648 volatile struct symtab_and_line val;
1649 #define volatile /*nothing*/
1650 #else
1651 struct symtab_and_line val;
1652 #endif
1653 register char *p, *p1;
1654 char *q, *q1;
1655 register struct symtab *s;
1656
1657 register struct symbol *sym;
1658 /* The symtab that SYM was found in. */
1659 struct symtab *sym_symtab;
1660
1661 register CORE_ADDR pc;
1662 register struct minimal_symbol *msymbol;
1663 char *copy;
1664 struct symbol *sym_class;
1665 int i1;
1666 int is_quoted;
1667 struct symbol **sym_arr;
1668 struct type *t;
1669 char *saved_arg = *argptr;
1670 extern char *gdb_completer_quote_characters;
1671
1672 /* Defaults have defaults. */
1673
1674 if (default_symtab == 0)
1675 {
1676 default_symtab = current_source_symtab;
1677 default_line = current_source_line;
1678 }
1679
1680 /* See if arg is *PC */
1681
1682 if (**argptr == '*')
1683 {
1684 if (**argptr == '*')
1685 {
1686 (*argptr)++;
1687 }
1688 pc = parse_and_eval_address_1 (argptr);
1689 values.sals = (struct symtab_and_line *)
1690 xmalloc (sizeof (struct symtab_and_line));
1691 values.nelts = 1;
1692 values.sals[0] = find_pc_line (pc, 0);
1693 values.sals[0].pc = pc;
1694 build_canonical_line_spec (values.sals, NULL, canonical);
1695 return values;
1696 }
1697
1698 /* Maybe arg is FILE : LINENUM or FILE : FUNCTION */
1699
1700 s = NULL;
1701 is_quoted = (strchr (gdb_completer_quote_characters, **argptr) != NULL);
1702
1703 for (p = *argptr; *p; p++)
1704 {
1705 if (p[0] == ':' || p[0] == ' ' || p[0] == '\t')
1706 break;
1707 }
1708 while (p[0] == ' ' || p[0] == '\t') p++;
1709
1710 if ((p[0] == ':') && !is_quoted)
1711 {
1712
1713 /* C++ */
1714 if (p[1] ==':')
1715 {
1716 /* Extract the class name. */
1717 p1 = p;
1718 while (p != *argptr && p[-1] == ' ') --p;
1719 copy = (char *) alloca (p - *argptr + 1);
1720 memcpy (copy, *argptr, p - *argptr);
1721 copy[p - *argptr] = 0;
1722
1723 /* Discard the class name from the arg. */
1724 p = p1 + 2;
1725 while (*p == ' ' || *p == '\t') p++;
1726 *argptr = p;
1727
1728 sym_class = lookup_symbol (copy, 0, STRUCT_NAMESPACE, 0,
1729 (struct symtab **)NULL);
1730
1731 if (sym_class &&
1732 ( TYPE_CODE (SYMBOL_TYPE (sym_class)) == TYPE_CODE_STRUCT
1733 || TYPE_CODE (SYMBOL_TYPE (sym_class)) == TYPE_CODE_UNION))
1734 {
1735 /* Arg token is not digits => try it as a function name
1736 Find the next token (everything up to end or next whitespace). */
1737 p = *argptr;
1738 while (*p && *p != ' ' && *p != '\t' && *p != ',' && *p !=':') p++;
1739 q = operator_chars (*argptr, &q1);
1740
1741 if (q1 - q)
1742 {
1743 char *opname;
1744 char *tmp = alloca (q1 - q + 1);
1745 memcpy (tmp, q, q1 - q);
1746 tmp[q1 - q] = '\0';
1747 opname = cplus_mangle_opname (tmp, DMGL_ANSI);
1748 if (opname == NULL)
1749 {
1750 warning ("no mangling for \"%s\"", tmp);
1751 cplusplus_hint (saved_arg);
1752 return_to_top_level (RETURN_ERROR);
1753 }
1754 copy = (char*) alloca (3 + strlen(opname));
1755 sprintf (copy, "__%s", opname);
1756 p = q1;
1757 }
1758 else
1759 {
1760 copy = (char *) alloca (p - *argptr + 1 + (q1 - q));
1761 memcpy (copy, *argptr, p - *argptr);
1762 copy[p - *argptr] = '\0';
1763 }
1764
1765 /* no line number may be specified */
1766 while (*p == ' ' || *p == '\t') p++;
1767 *argptr = p;
1768
1769 sym = 0;
1770 i1 = 0; /* counter for the symbol array */
1771 t = SYMBOL_TYPE (sym_class);
1772 sym_arr = (struct symbol **) alloca(TYPE_NFN_FIELDS_TOTAL (t) * sizeof(struct symbol*));
1773
1774 /* Cfront objects don't have fieldlists. */
1775 if (destructor_name_p (copy, t) && TYPE_FN_FIELDLISTS (t) != NULL)
1776 {
1777 /* destructors are a special case. */
1778 struct fn_field *f = TYPE_FN_FIELDLIST1 (t, 0);
1779 int len = TYPE_FN_FIELDLIST_LENGTH (t, 0) - 1;
1780 /* gcc 1.x puts destructor in last field,
1781 gcc 2.x puts destructor in first field. */
1782 char *phys_name = TYPE_FN_FIELD_PHYSNAME (f, len);
1783 if (!DESTRUCTOR_PREFIX_P (phys_name))
1784 {
1785 phys_name = TYPE_FN_FIELD_PHYSNAME (f, 0);
1786 if (!DESTRUCTOR_PREFIX_P (phys_name))
1787 phys_name = "";
1788 }
1789 sym_arr[i1] =
1790 lookup_symbol (phys_name, SYMBOL_BLOCK_VALUE (sym_class),
1791 VAR_NAMESPACE, 0, (struct symtab **)NULL);
1792 if (sym_arr[i1]) i1++;
1793 }
1794 else
1795 i1 = find_methods (t, copy, sym_arr);
1796 if (i1 == 1)
1797 {
1798 /* There is exactly one field with that name. */
1799 sym = sym_arr[0];
1800
1801 if (sym && SYMBOL_CLASS (sym) == LOC_BLOCK)
1802 {
1803 /* Arg is the name of a function */
1804 pc = BLOCK_START (SYMBOL_BLOCK_VALUE (sym)) + FUNCTION_START_OFFSET;
1805 if (funfirstline)
1806 SKIP_PROLOGUE (pc);
1807 values.sals = (struct symtab_and_line *)xmalloc (sizeof (struct symtab_and_line));
1808 values.nelts = 1;
1809 values.sals[0] = find_pc_line (pc, 0);
1810 values.sals[0].pc = (values.sals[0].end && values.sals[0].pc != pc) ? values.sals[0].end : pc;
1811 }
1812 else
1813 {
1814 values.nelts = 0;
1815 }
1816 return values;
1817 }
1818 if (i1 > 0)
1819 {
1820 /* There is more than one field with that name
1821 (overloaded). Ask the user which one to use. */
1822 return decode_line_2 (sym_arr, i1, funfirstline, canonical);
1823 }
1824 else
1825 {
1826 char *tmp;
1827
1828 if (OPNAME_PREFIX_P (copy))
1829 {
1830 tmp = (char *)alloca (strlen (copy+3) + 9);
1831 strcpy (tmp, "operator ");
1832 strcat (tmp, copy+3);
1833 }
1834 else
1835 tmp = copy;
1836 if (tmp[0] == '~')
1837 warning ("the class `%s' does not have destructor defined",
1838 SYMBOL_SOURCE_NAME(sym_class));
1839 else
1840 warning ("the class %s does not have any method named %s",
1841 SYMBOL_SOURCE_NAME(sym_class), tmp);
1842 cplusplus_hint (saved_arg);
1843 return_to_top_level (RETURN_ERROR);
1844 }
1845 }
1846 else
1847 {
1848 /* The quotes are important if copy is empty. */
1849 warning ("can't find class, struct, or union named \"%s\"",
1850 copy);
1851 cplusplus_hint (saved_arg);
1852 return_to_top_level (RETURN_ERROR);
1853 }
1854 }
1855 /* end of C++ */
1856
1857
1858 /* Extract the file name. */
1859 p1 = p;
1860 while (p != *argptr && p[-1] == ' ') --p;
1861 copy = (char *) alloca (p - *argptr + 1);
1862 memcpy (copy, *argptr, p - *argptr);
1863 copy[p - *argptr] = 0;
1864
1865 /* Find that file's data. */
1866 s = lookup_symtab (copy);
1867 if (s == 0)
1868 {
1869 if (!have_full_symbols () && !have_partial_symbols ())
1870 error (no_symtab_msg);
1871 error ("No source file named %s.", copy);
1872 }
1873
1874 /* Discard the file name from the arg. */
1875 p = p1 + 1;
1876 while (*p == ' ' || *p == '\t') p++;
1877 *argptr = p;
1878 }
1879
1880 /* S is specified file's symtab, or 0 if no file specified.
1881 arg no longer contains the file name. */
1882
1883 /* Check whether arg is all digits (and sign) */
1884
1885 p = *argptr;
1886 if (*p == '-' || *p == '+') p++;
1887 while (*p >= '0' && *p <= '9')
1888 p++;
1889
1890 if (p != *argptr && (*p == 0 || *p == ' ' || *p == '\t' || *p == ','))
1891 {
1892 /* We found a token consisting of all digits -- at least one digit. */
1893 enum sign {none, plus, minus} sign = none;
1894
1895 /* We might need a canonical line spec if no file was specified. */
1896 int need_canonical = (s == 0) ? 1 : 0;
1897
1898 /* This is where we need to make sure that we have good defaults.
1899 We must guarantee that this section of code is never executed
1900 when we are called with just a function name, since
1901 select_source_symtab calls us with such an argument */
1902
1903 if (s == 0 && default_symtab == 0)
1904 {
1905 select_source_symtab (0);
1906 default_symtab = current_source_symtab;
1907 default_line = current_source_line;
1908 }
1909
1910 if (**argptr == '+')
1911 sign = plus, (*argptr)++;
1912 else if (**argptr == '-')
1913 sign = minus, (*argptr)++;
1914 val.line = atoi (*argptr);
1915 switch (sign)
1916 {
1917 case plus:
1918 if (p == *argptr)
1919 val.line = 5;
1920 if (s == 0)
1921 val.line = default_line + val.line;
1922 break;
1923 case minus:
1924 if (p == *argptr)
1925 val.line = 15;
1926 if (s == 0)
1927 val.line = default_line - val.line;
1928 else
1929 val.line = 1;
1930 break;
1931 case none:
1932 break; /* No need to adjust val.line. */
1933 }
1934
1935 while (*p == ' ' || *p == '\t') p++;
1936 *argptr = p;
1937 if (s == 0)
1938 s = default_symtab;
1939 val.symtab = s;
1940 val.pc = 0;
1941 values.sals = (struct symtab_and_line *)xmalloc (sizeof (struct symtab_and_line));
1942 values.sals[0] = val;
1943 values.nelts = 1;
1944 if (need_canonical)
1945 build_canonical_line_spec (values.sals, NULL, canonical);
1946 return values;
1947 }
1948
1949 /* Arg token is not digits => try it as a variable name
1950 Find the next token (everything up to end or next whitespace). */
1951
1952 p = skip_quoted (*argptr);
1953 if (is_quoted && p[-1] != '\'')
1954 error ("Unmatched single quote.");
1955 copy = (char *) alloca (p - *argptr + 1);
1956 memcpy (copy, *argptr, p - *argptr);
1957 copy[p - *argptr] = '\0';
1958 if ((copy[0] == copy [p - *argptr - 1])
1959 && strchr (gdb_completer_quote_characters, copy[0]) != NULL)
1960 {
1961 copy [p - *argptr - 1] = '\0';
1962 copy++;
1963 }
1964 while (*p == ' ' || *p == '\t') p++;
1965 *argptr = p;
1966
1967 /* Look up that token as a variable.
1968 If file specified, use that file's per-file block to start with. */
1969
1970 sym = lookup_symbol (copy,
1971 (s ? BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), STATIC_BLOCK)
1972 : get_selected_block ()),
1973 VAR_NAMESPACE, 0, &sym_symtab);
1974
1975 if (sym != NULL)
1976 {
1977 if (SYMBOL_CLASS (sym) == LOC_BLOCK)
1978 {
1979 /* Arg is the name of a function */
1980 pc = BLOCK_START (SYMBOL_BLOCK_VALUE (sym)) + FUNCTION_START_OFFSET;
1981 if (funfirstline)
1982 SKIP_PROLOGUE (pc);
1983 val = find_pc_line (pc, 0);
1984 #ifdef PROLOGUE_FIRSTLINE_OVERLAP
1985 /* Convex: no need to suppress code on first line, if any */
1986 val.pc = pc;
1987 #else
1988 /* Check if SKIP_PROLOGUE left us in mid-line, and the next
1989 line is still part of the same function. */
1990 if (val.pc != pc
1991 && BLOCK_START (SYMBOL_BLOCK_VALUE (sym)) <= val.end
1992 && val.end < BLOCK_END (SYMBOL_BLOCK_VALUE (sym)))
1993 {
1994 /* First pc of next line */
1995 pc = val.end;
1996 /* Recalculate the line number (might not be N+1). */
1997 val = find_pc_line (pc, 0);
1998 }
1999 val.pc = pc;
2000 #endif
2001 values.sals = (struct symtab_and_line *)xmalloc (sizeof (struct symtab_and_line));
2002 values.sals[0] = val;
2003 values.nelts = 1;
2004
2005 /* I think this is always the same as the line that
2006 we calculate above, but the general principle is
2007 "trust the symbols more than stuff like
2008 SKIP_PROLOGUE". */
2009 if (SYMBOL_LINE (sym) != 0)
2010 values.sals[0].line = SYMBOL_LINE (sym);
2011
2012 /* We might need a canonical line spec if it is a static function. */
2013 if (s == 0)
2014 {
2015 struct blockvector *bv = BLOCKVECTOR (sym_symtab);
2016 struct block *b = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
2017 if (lookup_block_symbol (b, copy, VAR_NAMESPACE) != NULL)
2018 build_canonical_line_spec (values.sals, copy, canonical);
2019 }
2020 return values;
2021 }
2022 else if (SYMBOL_LINE (sym) != 0)
2023 {
2024 /* We know its line number. */
2025 values.sals = (struct symtab_and_line *)
2026 xmalloc (sizeof (struct symtab_and_line));
2027 values.nelts = 1;
2028 memset (&values.sals[0], 0, sizeof (values.sals[0]));
2029 values.sals[0].symtab = sym_symtab;
2030 values.sals[0].line = SYMBOL_LINE (sym);
2031 return values;
2032 }
2033 else
2034 /* This can happen if it is compiled with a compiler which doesn't
2035 put out line numbers for variables. */
2036 /* FIXME: Shouldn't we just set .line and .symtab to zero and
2037 return? For example, "info line foo" could print the address. */
2038 error ("Line number not known for symbol \"%s\"", copy);
2039 }
2040
2041 msymbol = lookup_minimal_symbol (copy, (struct objfile *) NULL);
2042 if (msymbol != NULL)
2043 {
2044 val.symtab = 0;
2045 val.line = 0;
2046 val.pc = SYMBOL_VALUE_ADDRESS (msymbol) + FUNCTION_START_OFFSET;
2047 if (funfirstline)
2048 SKIP_PROLOGUE (val.pc);
2049 values.sals = (struct symtab_and_line *)xmalloc (sizeof (struct symtab_and_line));
2050 values.sals[0] = val;
2051 values.nelts = 1;
2052 return values;
2053 }
2054
2055 if (!have_full_symbols () &&
2056 !have_partial_symbols () && !have_minimal_symbols ())
2057 error (no_symtab_msg);
2058
2059 error ("Function \"%s\" not defined.", copy);
2060 return values; /* for lint */
2061 }
2062
2063 struct symtabs_and_lines
2064 decode_line_spec (string, funfirstline)
2065 char *string;
2066 int funfirstline;
2067 {
2068 struct symtabs_and_lines sals;
2069 if (string == 0)
2070 error ("Empty line specification.");
2071 sals = decode_line_1 (&string, funfirstline,
2072 current_source_symtab, current_source_line,
2073 (char ***)NULL);
2074 if (*string)
2075 error ("Junk at end of line specification: %s", string);
2076 return sals;
2077 }
2078
2079 /* Given a list of NELTS symbols in SYM_ARR, return a list of lines to
2080 operate on (ask user if necessary).
2081 If CANONICAL is non-NULL return a corresponding array of mangled names
2082 as canonical line specs there. */
2083
2084 static struct symtabs_and_lines
2085 decode_line_2 (sym_arr, nelts, funfirstline, canonical)
2086 struct symbol *sym_arr[];
2087 int nelts;
2088 int funfirstline;
2089 char ***canonical;
2090 {
2091 struct symtabs_and_lines values, return_values;
2092 register CORE_ADDR pc;
2093 char *args, *arg1;
2094 int i;
2095 char *prompt;
2096 char *symname;
2097 struct cleanup *old_chain;
2098 char **canonical_arr = (char **)NULL;
2099
2100 values.sals = (struct symtab_and_line *) alloca (nelts * sizeof(struct symtab_and_line));
2101 return_values.sals = (struct symtab_and_line *) xmalloc (nelts * sizeof(struct symtab_and_line));
2102 old_chain = make_cleanup (free, return_values.sals);
2103
2104 if (canonical)
2105 {
2106 canonical_arr = (char **) xmalloc (nelts * sizeof (char *));
2107 make_cleanup (free, canonical_arr);
2108 memset (canonical_arr, 0, nelts * sizeof (char *));
2109 *canonical = canonical_arr;
2110 }
2111
2112 i = 0;
2113 printf("[0] cancel\n[1] all\n");
2114 while (i < nelts)
2115 {
2116 if (sym_arr[i] && SYMBOL_CLASS (sym_arr[i]) == LOC_BLOCK)
2117 {
2118 /* Arg is the name of a function */
2119 pc = BLOCK_START (SYMBOL_BLOCK_VALUE (sym_arr[i]))
2120 + FUNCTION_START_OFFSET;
2121 if (funfirstline)
2122 SKIP_PROLOGUE (pc);
2123 values.sals[i] = find_pc_line (pc, 0);
2124 values.sals[i].pc = (values.sals[i].end && values.sals[i].pc != pc) ?
2125 values.sals[i].end : pc;
2126 printf("[%d] %s at %s:%d\n", (i+2), SYMBOL_SOURCE_NAME (sym_arr[i]),
2127 values.sals[i].symtab->filename, values.sals[i].line);
2128 }
2129 else printf ("?HERE\n");
2130 i++;
2131 }
2132
2133 if ((prompt = getenv ("PS2")) == NULL)
2134 {
2135 prompt = ">";
2136 }
2137 printf("%s ",prompt);
2138 fflush(stdout);
2139
2140 args = command_line_input ((char *) NULL, 0);
2141
2142 if (args == 0 || *args == 0)
2143 error_no_arg ("one or more choice numbers");
2144
2145 i = 0;
2146 while (*args)
2147 {
2148 int num;
2149
2150 arg1 = args;
2151 while (*arg1 >= '0' && *arg1 <= '9') arg1++;
2152 if (*arg1 && *arg1 != ' ' && *arg1 != '\t')
2153 error ("Arguments must be choice numbers.");
2154
2155 num = atoi (args);
2156
2157 if (num == 0)
2158 error ("cancelled");
2159 else if (num == 1)
2160 {
2161 if (canonical_arr)
2162 {
2163 for (i = 0; i < nelts; i++)
2164 {
2165 if (canonical_arr[i] == NULL)
2166 {
2167 symname = SYMBOL_NAME (sym_arr[i]);
2168 canonical_arr[i] = savestring (symname, strlen (symname));
2169 }
2170 }
2171 }
2172 memcpy (return_values.sals, values.sals,
2173 (nelts * sizeof(struct symtab_and_line)));
2174 return_values.nelts = nelts;
2175 discard_cleanups (old_chain);
2176 return return_values;
2177 }
2178
2179 if (num > nelts + 2)
2180 {
2181 printf ("No choice number %d.\n", num);
2182 }
2183 else
2184 {
2185 num -= 2;
2186 if (values.sals[num].pc)
2187 {
2188 if (canonical_arr)
2189 {
2190 symname = SYMBOL_NAME (sym_arr[num]);
2191 make_cleanup (free, symname);
2192 canonical_arr[i] = savestring (symname, strlen (symname));
2193 }
2194 return_values.sals[i++] = values.sals[num];
2195 values.sals[num].pc = 0;
2196 }
2197 else
2198 {
2199 printf ("duplicate request for %d ignored.\n", num);
2200 }
2201 }
2202
2203 args = arg1;
2204 while (*args == ' ' || *args == '\t') args++;
2205 }
2206 return_values.nelts = i;
2207 discard_cleanups (old_chain);
2208 return return_values;
2209 }
2210
2211 \f
2212 /* Slave routine for sources_info. Force line breaks at ,'s.
2213 NAME is the name to print and *FIRST is nonzero if this is the first
2214 name printed. Set *FIRST to zero. */
2215 static void
2216 output_source_filename (name, first)
2217 char *name;
2218 int *first;
2219 {
2220 /* Table of files printed so far. Since a single source file can
2221 result in several partial symbol tables, we need to avoid printing
2222 it more than once. Note: if some of the psymtabs are read in and
2223 some are not, it gets printed both under "Source files for which
2224 symbols have been read" and "Source files for which symbols will
2225 be read in on demand". I consider this a reasonable way to deal
2226 with the situation. I'm not sure whether this can also happen for
2227 symtabs; it doesn't hurt to check. */
2228 static char **tab = NULL;
2229 /* Allocated size of tab in elements.
2230 Start with one 256-byte block (when using GNU malloc.c).
2231 24 is the malloc overhead when range checking is in effect. */
2232 static int tab_alloc_size = (256 - 24) / sizeof (char *);
2233 /* Current size of tab in elements. */
2234 static int tab_cur_size;
2235
2236 char **p;
2237
2238 if (*first)
2239 {
2240 if (tab == NULL)
2241 tab = (char **) xmalloc (tab_alloc_size * sizeof (*tab));
2242 tab_cur_size = 0;
2243 }
2244
2245 /* Is NAME in tab? */
2246 for (p = tab; p < tab + tab_cur_size; p++)
2247 if (STREQ (*p, name))
2248 /* Yes; don't print it again. */
2249 return;
2250 /* No; add it to tab. */
2251 if (tab_cur_size == tab_alloc_size)
2252 {
2253 tab_alloc_size *= 2;
2254 tab = (char **) xrealloc ((char *) tab, tab_alloc_size * sizeof (*tab));
2255 }
2256 tab[tab_cur_size++] = name;
2257
2258 if (*first)
2259 {
2260 *first = 0;
2261 }
2262 else
2263 {
2264 printf_filtered (", ");
2265 }
2266
2267 wrap_here ("");
2268 fputs_filtered (name, stdout);
2269 }
2270
2271 static void
2272 sources_info (ignore, from_tty)
2273 char *ignore;
2274 int from_tty;
2275 {
2276 register struct symtab *s;
2277 register struct partial_symtab *ps;
2278 register struct objfile *objfile;
2279 int first;
2280
2281 if (!have_full_symbols () && !have_partial_symbols ())
2282 {
2283 error (no_symtab_msg);
2284 }
2285
2286 printf_filtered ("Source files for which symbols have been read in:\n\n");
2287
2288 first = 1;
2289 ALL_SYMTABS (objfile, s)
2290 {
2291 output_source_filename (s -> filename, &first);
2292 }
2293 printf_filtered ("\n\n");
2294
2295 printf_filtered ("Source files for which symbols will be read in on demand:\n\n");
2296
2297 first = 1;
2298 ALL_PSYMTABS (objfile, ps)
2299 {
2300 if (!ps->readin)
2301 {
2302 output_source_filename (ps -> filename, &first);
2303 }
2304 }
2305 printf_filtered ("\n");
2306 }
2307
2308 /* List all symbols (if REGEXP is NULL) or all symbols matching REGEXP.
2309 If CLASS is zero, list all symbols except functions, type names, and
2310 constants (enums).
2311 If CLASS is 1, list only functions.
2312 If CLASS is 2, list only type names.
2313 If CLASS is 3, list only method names.
2314
2315 BPT is non-zero if we should set a breakpoint at the functions
2316 we find. */
2317
2318 static void
2319 list_symbols (regexp, class, bpt)
2320 char *regexp;
2321 int class;
2322 int bpt;
2323 {
2324 register struct symtab *s;
2325 register struct partial_symtab *ps;
2326 register struct blockvector *bv;
2327 struct blockvector *prev_bv = 0;
2328 register struct block *b;
2329 register int i, j;
2330 register struct symbol *sym;
2331 struct partial_symbol *psym;
2332 struct objfile *objfile;
2333 struct minimal_symbol *msymbol;
2334 char *val;
2335 static char *classnames[]
2336 = {"variable", "function", "type", "method"};
2337 int found_in_file = 0;
2338 int found_misc = 0;
2339 static enum minimal_symbol_type types[]
2340 = {mst_data, mst_text, mst_abs, mst_unknown};
2341 static enum minimal_symbol_type types2[]
2342 = {mst_bss, mst_text, mst_abs, mst_unknown};
2343 enum minimal_symbol_type ourtype = types[class];
2344 enum minimal_symbol_type ourtype2 = types2[class];
2345
2346 if (regexp != NULL)
2347 {
2348 /* Make sure spacing is right for C++ operators.
2349 This is just a courtesy to make the matching less sensitive
2350 to how many spaces the user leaves between 'operator'
2351 and <TYPENAME> or <OPERATOR>. */
2352 char *opend;
2353 char *opname = operator_chars (regexp, &opend);
2354 if (*opname)
2355 {
2356 int fix = -1; /* -1 means ok; otherwise number of spaces needed. */
2357 if (isalpha(*opname) || *opname == '_' || *opname == '$')
2358 {
2359 /* There should 1 space between 'operator' and 'TYPENAME'. */
2360 if (opname[-1] != ' ' || opname[-2] == ' ')
2361 fix = 1;
2362 }
2363 else
2364 {
2365 /* There should 0 spaces between 'operator' and 'OPERATOR'. */
2366 if (opname[-1] == ' ')
2367 fix = 0;
2368 }
2369 /* If wrong number of spaces, fix it. */
2370 if (fix >= 0)
2371 {
2372 char *tmp = (char*) alloca(opend-opname+10);
2373 sprintf(tmp, "operator%.*s%s", fix, " ", opname);
2374 regexp = tmp;
2375 }
2376 }
2377
2378 if (0 != (val = re_comp (regexp)))
2379 error ("Invalid regexp (%s): %s", val, regexp);
2380 }
2381
2382 /* Search through the partial symtabs *first* for all symbols
2383 matching the regexp. That way we don't have to reproduce all of
2384 the machinery below. */
2385
2386 ALL_PSYMTABS (objfile, ps)
2387 {
2388 struct partial_symbol *bound, *gbound, *sbound;
2389 int keep_going = 1;
2390
2391 if (ps->readin) continue;
2392
2393 gbound = objfile->global_psymbols.list + ps->globals_offset + ps->n_global_syms;
2394 sbound = objfile->static_psymbols.list + ps->statics_offset + ps->n_static_syms;
2395 bound = gbound;
2396
2397 /* Go through all of the symbols stored in a partial
2398 symtab in one loop. */
2399 psym = objfile->global_psymbols.list + ps->globals_offset;
2400 while (keep_going)
2401 {
2402 if (psym >= bound)
2403 {
2404 if (bound == gbound && ps->n_static_syms != 0)
2405 {
2406 psym = objfile->static_psymbols.list + ps->statics_offset;
2407 bound = sbound;
2408 }
2409 else
2410 keep_going = 0;
2411 continue;
2412 }
2413 else
2414 {
2415 QUIT;
2416
2417 /* If it would match (logic taken from loop below)
2418 load the file and go on to the next one */
2419 if ((regexp == NULL || SYMBOL_MATCHES_REGEXP (psym))
2420 && ((class == 0 && SYMBOL_CLASS (psym) != LOC_TYPEDEF
2421 && SYMBOL_CLASS (psym) != LOC_BLOCK)
2422 || (class == 1 && SYMBOL_CLASS (psym) == LOC_BLOCK)
2423 || (class == 2 && SYMBOL_CLASS (psym) == LOC_TYPEDEF)
2424 || (class == 3 && SYMBOL_CLASS (psym) == LOC_BLOCK)))
2425 {
2426 PSYMTAB_TO_SYMTAB(ps);
2427 keep_going = 0;
2428 }
2429 }
2430 psym++;
2431 }
2432 }
2433
2434 /* Here, we search through the minimal symbol tables for functions that
2435 match, and call find_pc_symtab on them to force their symbols to
2436 be read. The symbol will then be found during the scan of symtabs
2437 below. If find_pc_symtab fails, set found_misc so that we will
2438 rescan to print any matching symbols without debug info. */
2439
2440 if (class == 1)
2441 {
2442 ALL_MSYMBOLS (objfile, msymbol)
2443 {
2444 if (MSYMBOL_TYPE (msymbol) == ourtype ||
2445 MSYMBOL_TYPE (msymbol) == ourtype2)
2446 {
2447 if (regexp == NULL || SYMBOL_MATCHES_REGEXP (msymbol))
2448 {
2449 if (0 == find_pc_symtab (SYMBOL_VALUE_ADDRESS (msymbol)))
2450 {
2451 found_misc = 1;
2452 }
2453 }
2454 }
2455 }
2456 }
2457
2458 /* Printout here so as to get after the "Reading in symbols"
2459 messages which will be generated above. */
2460 if (!bpt)
2461 printf_filtered (regexp
2462 ? "All %ss matching regular expression \"%s\":\n"
2463 : "All defined %ss:\n",
2464 classnames[class],
2465 regexp);
2466
2467 ALL_SYMTABS (objfile, s)
2468 {
2469 found_in_file = 0;
2470 bv = BLOCKVECTOR (s);
2471 /* Often many files share a blockvector.
2472 Scan each blockvector only once so that
2473 we don't get every symbol many times.
2474 It happens that the first symtab in the list
2475 for any given blockvector is the main file. */
2476 if (bv != prev_bv)
2477 for (i = GLOBAL_BLOCK; i <= STATIC_BLOCK; i++)
2478 {
2479 b = BLOCKVECTOR_BLOCK (bv, i);
2480 /* Skip the sort if this block is always sorted. */
2481 if (!BLOCK_SHOULD_SORT (b))
2482 sort_block_syms (b);
2483 for (j = 0; j < BLOCK_NSYMS (b); j++)
2484 {
2485 QUIT;
2486 sym = BLOCK_SYM (b, j);
2487 if ((regexp == NULL || SYMBOL_MATCHES_REGEXP (sym))
2488 && ((class == 0 && SYMBOL_CLASS (sym) != LOC_TYPEDEF
2489 && SYMBOL_CLASS (sym) != LOC_BLOCK
2490 && SYMBOL_CLASS (sym) != LOC_CONST)
2491 || (class == 1 && SYMBOL_CLASS (sym) == LOC_BLOCK)
2492 || (class == 2 && SYMBOL_CLASS (sym) == LOC_TYPEDEF)
2493 || (class == 3 && SYMBOL_CLASS (sym) == LOC_BLOCK)))
2494 {
2495 if (bpt)
2496 {
2497 /* Set a breakpoint here, if it's a function */
2498 if (class == 1)
2499 {
2500 /* There may be more than one function with the
2501 same name but in different files. In order to
2502 set breakpoints on all of them, we must give
2503 both the file name and the function name to
2504 break_command. */
2505 char *string =
2506 (char *) alloca (strlen (s->filename)
2507 + strlen (SYMBOL_NAME(sym))
2508 + 2);
2509 strcpy (string, s->filename);
2510 strcat (string, ":");
2511 strcat (string, SYMBOL_NAME(sym));
2512 break_command (string, 0);
2513 }
2514 }
2515 else if (!found_in_file)
2516 {
2517 fputs_filtered ("\nFile ", stdout);
2518 fputs_filtered (s->filename, stdout);
2519 fputs_filtered (":\n", stdout);
2520 }
2521 found_in_file = 1;
2522
2523 if (class != 2 && i == STATIC_BLOCK)
2524 printf_filtered ("static ");
2525
2526 /* Typedef that is not a C++ class */
2527 if (class == 2
2528 && SYMBOL_NAMESPACE (sym) != STRUCT_NAMESPACE)
2529 c_typedef_print (SYMBOL_TYPE(sym), sym, stdout);
2530 /* variable, func, or typedef-that-is-c++-class */
2531 else if (class < 2 ||
2532 (class == 2 &&
2533 SYMBOL_NAMESPACE(sym) == STRUCT_NAMESPACE))
2534 {
2535 type_print (SYMBOL_TYPE (sym),
2536 (SYMBOL_CLASS (sym) == LOC_TYPEDEF
2537 ? "" : SYMBOL_SOURCE_NAME (sym)),
2538 stdout, 0);
2539
2540 printf_filtered (";\n");
2541 }
2542 else
2543 {
2544 # if 0 /* FIXME, why is this zapped out? */
2545 char buf[1024];
2546 c_type_print_base (TYPE_FN_FIELD_TYPE(t, i),
2547 stdout, 0, 0);
2548 c_type_print_varspec_prefix (TYPE_FN_FIELD_TYPE(t, i),
2549 stdout, 0);
2550 sprintf (buf, " %s::", type_name_no_tag (t));
2551 cp_type_print_method_args (TYPE_FN_FIELD_ARGS (t, i),
2552 buf, name, stdout);
2553 # endif
2554 }
2555 }
2556 }
2557 }
2558 prev_bv = bv;
2559 }
2560
2561 /* If there are no eyes, avoid all contact. I mean, if there are
2562 no debug symbols, then print directly from the msymbol_vector. */
2563
2564 if (found_misc || class != 1)
2565 {
2566 found_in_file = 0;
2567 ALL_MSYMBOLS (objfile, msymbol)
2568 {
2569 if (MSYMBOL_TYPE (msymbol) == ourtype ||
2570 MSYMBOL_TYPE (msymbol) == ourtype2)
2571 {
2572 if (regexp == NULL || SYMBOL_MATCHES_REGEXP (msymbol))
2573 {
2574 /* Functions: Look up by address. */
2575 if (class != 1 ||
2576 (0 == find_pc_symtab (SYMBOL_VALUE_ADDRESS (msymbol))))
2577 {
2578 /* Variables/Absolutes: Look up by name */
2579 if (lookup_symbol (SYMBOL_NAME (msymbol),
2580 (struct block *) NULL, VAR_NAMESPACE,
2581 0, (struct symtab **) NULL) == NULL)
2582 {
2583 if (!found_in_file)
2584 {
2585 printf_filtered ("\nNon-debugging symbols:\n");
2586 found_in_file = 1;
2587 }
2588 printf_filtered (" %08x %s\n",
2589 SYMBOL_VALUE_ADDRESS (msymbol),
2590 SYMBOL_SOURCE_NAME (msymbol));
2591 }
2592 }
2593 }
2594 }
2595 }
2596 }
2597 }
2598
2599 static void
2600 variables_info (regexp, from_tty)
2601 char *regexp;
2602 int from_tty;
2603 {
2604 list_symbols (regexp, 0, 0);
2605 }
2606
2607 static void
2608 functions_info (regexp, from_tty)
2609 char *regexp;
2610 int from_tty;
2611 {
2612 list_symbols (regexp, 1, 0);
2613 }
2614
2615 static void
2616 types_info (regexp, from_tty)
2617 char *regexp;
2618 int from_tty;
2619 {
2620 list_symbols (regexp, 2, 0);
2621 }
2622
2623 #if 0
2624 /* Tiemann says: "info methods was never implemented." */
2625 static void
2626 methods_info (regexp)
2627 char *regexp;
2628 {
2629 list_symbols (regexp, 3, 0);
2630 }
2631 #endif /* 0 */
2632
2633 /* Breakpoint all functions matching regular expression. */
2634 static void
2635 rbreak_command (regexp, from_tty)
2636 char *regexp;
2637 int from_tty;
2638 {
2639 list_symbols (regexp, 1, 1);
2640 }
2641 \f
2642
2643 /* Return Nonzero if block a is lexically nested within block b,
2644 or if a and b have the same pc range.
2645 Return zero otherwise. */
2646 int
2647 contained_in (a, b)
2648 struct block *a, *b;
2649 {
2650 if (!a || !b)
2651 return 0;
2652 return BLOCK_START (a) >= BLOCK_START (b)
2653 && BLOCK_END (a) <= BLOCK_END (b);
2654 }
2655
2656 \f
2657 /* Helper routine for make_symbol_completion_list. */
2658
2659 static int return_val_size;
2660 static int return_val_index;
2661 static char **return_val;
2662
2663 #define COMPLETION_LIST_ADD_SYMBOL(symbol, sym_text, len, text, word) \
2664 do { \
2665 if (SYMBOL_DEMANGLED_NAME (symbol) != NULL) \
2666 /* Put only the mangled name on the list. */ \
2667 /* Advantage: "b foo<TAB>" completes to "b foo(int, int)" */ \
2668 /* Disadvantage: "b foo__i<TAB>" doesn't complete. */ \
2669 completion_list_add_name \
2670 (SYMBOL_DEMANGLED_NAME (symbol), (sym_text), (len), (text), (word)); \
2671 else \
2672 completion_list_add_name \
2673 (SYMBOL_NAME (symbol), (sym_text), (len), (text), (word)); \
2674 } while (0)
2675
2676 /* Test to see if the symbol specified by SYMNAME (which is already
2677 demangled for C++ symbols) matches SYM_TEXT in the first SYM_TEXT_LEN
2678 characters. If so, add it to the current completion list. */
2679
2680 static void
2681 completion_list_add_name (symname, sym_text, sym_text_len, text, word)
2682 char *symname;
2683 char *sym_text;
2684 int sym_text_len;
2685 char *text;
2686 char *word;
2687 {
2688 int newsize;
2689 int i;
2690
2691 /* clip symbols that cannot match */
2692
2693 if (strncmp (symname, sym_text, sym_text_len) != 0)
2694 {
2695 return;
2696 }
2697
2698 /* Clip any symbol names that we've already considered. (This is a
2699 time optimization) */
2700
2701 for (i = 0; i < return_val_index; ++i)
2702 {
2703 if (STREQ (symname, return_val[i]))
2704 {
2705 return;
2706 }
2707 }
2708
2709 /* We have a match for a completion, so add SYMNAME to the current list
2710 of matches. Note that the name is moved to freshly malloc'd space. */
2711
2712 {
2713 char *new;
2714 if (word == sym_text)
2715 {
2716 new = xmalloc (strlen (symname) + 5);
2717 strcpy (new, symname);
2718 }
2719 else if (word > sym_text)
2720 {
2721 /* Return some portion of symname. */
2722 new = xmalloc (strlen (symname) + 5);
2723 strcpy (new, symname + (word - sym_text));
2724 }
2725 else
2726 {
2727 /* Return some of SYM_TEXT plus symname. */
2728 new = xmalloc (strlen (symname) + (sym_text - word) + 5);
2729 strncpy (new, word, sym_text - word);
2730 new[sym_text - word] = '\0';
2731 strcat (new, symname);
2732 }
2733
2734 if (return_val_index + 3 > return_val_size)
2735 {
2736 newsize = (return_val_size *= 2) * sizeof (char *);
2737 return_val = (char **) xrealloc ((char *) return_val, newsize);
2738 }
2739 return_val[return_val_index++] = new;
2740 return_val[return_val_index] = NULL;
2741 }
2742 }
2743
2744 /* Return a NULL terminated array of all symbols (regardless of class) which
2745 begin by matching TEXT. If the answer is no symbols, then the return value
2746 is an array which contains only a NULL pointer.
2747
2748 Problem: All of the symbols have to be copied because readline frees them.
2749 I'm not going to worry about this; hopefully there won't be that many. */
2750
2751 char **
2752 make_symbol_completion_list (text, word)
2753 char *text;
2754 char *word;
2755 {
2756 register struct symbol *sym;
2757 register struct symtab *s;
2758 register struct partial_symtab *ps;
2759 register struct minimal_symbol *msymbol;
2760 register struct objfile *objfile;
2761 register struct block *b, *surrounding_static_block = 0;
2762 register int i, j;
2763 struct partial_symbol *psym;
2764 /* The symbol we are completing on. Points in same buffer as text. */
2765 char *sym_text;
2766 /* Length of sym_text. */
2767 int sym_text_len;
2768
2769 /* Now look for the symbol we are supposed to complete on.
2770 FIXME: This should be language-specific. */
2771 {
2772 char *p;
2773 char quote_found;
2774 char *quote_pos = NULL;
2775
2776 /* First see if this is a quoted string. */
2777 quote_found = '\0';
2778 for (p = text; *p != '\0'; ++p)
2779 {
2780 if (quote_found != '\0')
2781 {
2782 if (*p == quote_found)
2783 /* Found close quote. */
2784 quote_found = '\0';
2785 else if (*p == '\\' && p[1] == quote_found)
2786 /* A backslash followed by the quote character
2787 doesn't end the string. */
2788 ++p;
2789 }
2790 else if (*p == '\'' || *p == '"')
2791 {
2792 quote_found = *p;
2793 quote_pos = p;
2794 }
2795 }
2796 if (quote_found == '\'')
2797 /* A string within single quotes can be a symbol, so complete on it. */
2798 sym_text = quote_pos + 1;
2799 else if (quote_found == '"')
2800 /* A double-quoted string is never a symbol, nor does it make sense
2801 to complete it any other way. */
2802 return NULL;
2803 else
2804 {
2805 /* It is not a quoted string. Break it based on the characters
2806 which are in symbols. */
2807 while (p > text)
2808 {
2809 if (isalnum (p[-1]) || p[-1] == '_' || p[-1] == '\0')
2810 --p;
2811 else
2812 break;
2813 }
2814 sym_text = p;
2815 }
2816 }
2817
2818 sym_text_len = strlen (sym_text);
2819
2820 return_val_size = 100;
2821 return_val_index = 0;
2822 return_val = (char **) xmalloc ((return_val_size + 1) * sizeof (char *));
2823 return_val[0] = NULL;
2824
2825 /* Look through the partial symtabs for all symbols which begin
2826 by matching SYM_TEXT. Add each one that you find to the list. */
2827
2828 ALL_PSYMTABS (objfile, ps)
2829 {
2830 /* If the psymtab's been read in we'll get it when we search
2831 through the blockvector. */
2832 if (ps->readin) continue;
2833
2834 for (psym = objfile->global_psymbols.list + ps->globals_offset;
2835 psym < (objfile->global_psymbols.list + ps->globals_offset
2836 + ps->n_global_syms);
2837 psym++)
2838 {
2839 /* If interrupted, then quit. */
2840 QUIT;
2841 COMPLETION_LIST_ADD_SYMBOL (psym, sym_text, sym_text_len, text, word);
2842 }
2843
2844 for (psym = objfile->static_psymbols.list + ps->statics_offset;
2845 psym < (objfile->static_psymbols.list + ps->statics_offset
2846 + ps->n_static_syms);
2847 psym++)
2848 {
2849 QUIT;
2850 COMPLETION_LIST_ADD_SYMBOL (psym, sym_text, sym_text_len, text, word);
2851 }
2852 }
2853
2854 /* At this point scan through the misc symbol vectors and add each
2855 symbol you find to the list. Eventually we want to ignore
2856 anything that isn't a text symbol (everything else will be
2857 handled by the psymtab code above). */
2858
2859 ALL_MSYMBOLS (objfile, msymbol)
2860 {
2861 QUIT;
2862 COMPLETION_LIST_ADD_SYMBOL (msymbol, sym_text, sym_text_len, text, word);
2863 }
2864
2865 /* Search upwards from currently selected frame (so that we can
2866 complete on local vars. */
2867
2868 for (b = get_selected_block (); b != NULL; b = BLOCK_SUPERBLOCK (b))
2869 {
2870 if (!BLOCK_SUPERBLOCK (b))
2871 {
2872 surrounding_static_block = b; /* For elmin of dups */
2873 }
2874
2875 /* Also catch fields of types defined in this places which match our
2876 text string. Only complete on types visible from current context. */
2877
2878 for (i = 0; i < BLOCK_NSYMS (b); i++)
2879 {
2880 sym = BLOCK_SYM (b, i);
2881 COMPLETION_LIST_ADD_SYMBOL (sym, sym_text, sym_text_len, text, word);
2882 if (SYMBOL_CLASS (sym) == LOC_TYPEDEF)
2883 {
2884 struct type *t = SYMBOL_TYPE (sym);
2885 enum type_code c = TYPE_CODE (t);
2886
2887 if (c == TYPE_CODE_UNION || c == TYPE_CODE_STRUCT)
2888 {
2889 for (j = TYPE_N_BASECLASSES (t); j < TYPE_NFIELDS (t); j++)
2890 {
2891 if (TYPE_FIELD_NAME (t, j))
2892 {
2893 completion_list_add_name (TYPE_FIELD_NAME (t, j),
2894 sym_text, sym_text_len, text, word);
2895 }
2896 }
2897 }
2898 }
2899 }
2900 }
2901
2902 /* Go through the symtabs and check the externs and statics for
2903 symbols which match. */
2904
2905 ALL_SYMTABS (objfile, s)
2906 {
2907 QUIT;
2908 b = BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), GLOBAL_BLOCK);
2909 for (i = 0; i < BLOCK_NSYMS (b); i++)
2910 {
2911 sym = BLOCK_SYM (b, i);
2912 COMPLETION_LIST_ADD_SYMBOL (sym, sym_text, sym_text_len, text, word);
2913 }
2914 }
2915
2916 ALL_SYMTABS (objfile, s)
2917 {
2918 QUIT;
2919 b = BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), STATIC_BLOCK);
2920 /* Don't do this block twice. */
2921 if (b == surrounding_static_block) continue;
2922 for (i = 0; i < BLOCK_NSYMS (b); i++)
2923 {
2924 sym = BLOCK_SYM (b, i);
2925 COMPLETION_LIST_ADD_SYMBOL (sym, sym_text, sym_text_len, text, word);
2926 }
2927 }
2928
2929 return (return_val);
2930 }
2931
2932 \f
2933 #if 0
2934 /* Add the type of the symbol sym to the type of the current
2935 function whose block we are in (assumed). The type of
2936 this current function is contained in *TYPE.
2937
2938 This basically works as follows: When we find a function
2939 symbol (N_FUNC with a 'f' or 'F' in the symbol name), we record
2940 a pointer to its type in the global in_function_type. Every
2941 time we come across a parameter symbol ('p' in its name), then
2942 this procedure adds the name and type of that parameter
2943 to the function type pointed to by *TYPE. (Which should correspond
2944 to in_function_type if it was called correctly).
2945
2946 Note that since we are modifying a type, the result of
2947 lookup_function_type() should be memcpy()ed before calling
2948 this. When not in strict typing mode, the expression
2949 evaluator can choose to ignore this.
2950
2951 Assumption: All of a function's parameter symbols will
2952 appear before another function symbol is found. The parameters
2953 appear in the same order in the argument list as they do in the
2954 symbol table. */
2955
2956 void
2957 add_param_to_type (type,sym)
2958 struct type **type;
2959 struct symbol *sym;
2960 {
2961 int num = ++(TYPE_NFIELDS(*type));
2962
2963 if(TYPE_NFIELDS(*type)-1)
2964 TYPE_FIELDS(*type) = (struct field *)
2965 (*current_objfile->xrealloc) ((char *)(TYPE_FIELDS(*type)),
2966 num*sizeof(struct field));
2967 else
2968 TYPE_FIELDS(*type) = (struct field *)
2969 (*current_objfile->xmalloc) (num*sizeof(struct field));
2970
2971 TYPE_FIELD_BITPOS(*type,num-1) = num-1;
2972 TYPE_FIELD_BITSIZE(*type,num-1) = 0;
2973 TYPE_FIELD_TYPE(*type,num-1) = SYMBOL_TYPE(sym);
2974 TYPE_FIELD_NAME(*type,num-1) = SYMBOL_NAME(sym);
2975 }
2976 #endif
2977 \f
2978 void
2979 _initialize_symtab ()
2980 {
2981 add_info ("variables", variables_info,
2982 "All global and static variable names, or those matching REGEXP.");
2983 add_info ("functions", functions_info,
2984 "All function names, or those matching REGEXP.");
2985
2986 /* FIXME: This command has at least the following problems:
2987 1. It prints builtin types (in a very strange and confusing fashion).
2988 2. It doesn't print right, e.g. with
2989 typedef struct foo *FOO
2990 type_print prints "FOO" when we want to make it (in this situation)
2991 print "struct foo *".
2992 I also think "ptype" or "whatis" is more likely to be useful (but if
2993 there is much disagreement "info types" can be fixed). */
2994 add_info ("types", types_info,
2995 "All type names, or those matching REGEXP.");
2996
2997 #if 0
2998 add_info ("methods", methods_info,
2999 "All method names, or those matching REGEXP::REGEXP.\n\
3000 If the class qualifier is omitted, it is assumed to be the current scope.\n\
3001 If the first REGEXP is omitted, then all methods matching the second REGEXP\n\
3002 are listed.");
3003 #endif
3004 add_info ("sources", sources_info,
3005 "Source files in the program.");
3006
3007 add_com ("rbreak", no_class, rbreak_command,
3008 "Set a breakpoint for all functions matching REGEXP.");
3009
3010 /* Initialize the one built-in type that isn't language dependent... */
3011 builtin_type_error = init_type (TYPE_CODE_ERROR, 0, 0,
3012 "<unknown type>", (struct objfile *) NULL);
3013 }
This page took 0.092408 seconds and 4 git commands to generate.