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