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