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