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