* Makefile.in (tuiDisassem.o): Update dependencies.
[deliverable/binutils-gdb.git] / gdb / symtab.c
CommitLineData
c906108c 1/* Symbol table lookup for the GNU debugger, GDB.
8926118c
AC
2
3 Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
083ae935
DJ
4 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
5 Free Software Foundation, Inc.
c906108c 6
c5aa993b 7 This file is part of GDB.
c906108c 8
c5aa993b
JM
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
c906108c 13
c5aa993b
JM
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
c906108c 18
c5aa993b
JM
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place - Suite 330,
22 Boston, MA 02111-1307, USA. */
c906108c
SS
23
24#include "defs.h"
25#include "symtab.h"
26#include "gdbtypes.h"
27#include "gdbcore.h"
28#include "frame.h"
29#include "target.h"
30#include "value.h"
31#include "symfile.h"
32#include "objfiles.h"
33#include "gdbcmd.h"
34#include "call-cmds.h"
88987551 35#include "gdb_regex.h"
c906108c
SS
36#include "expression.h"
37#include "language.h"
38#include "demangle.h"
39#include "inferior.h"
c5f0f3d0 40#include "linespec.h"
0378c332 41#include "source.h"
a7fdf62f 42#include "filenames.h" /* for FILENAME_CMP */
1bae87b9 43#include "objc-lang.h"
c906108c 44
2de7ced7
DJ
45#include "hashtab.h"
46
04ea0df1 47#include "gdb_obstack.h"
fe898f56 48#include "block.h"
de4f826b 49#include "dictionary.h"
c906108c
SS
50
51#include <sys/types.h>
52#include <fcntl.h>
53#include "gdb_string.h"
54#include "gdb_stat.h"
55#include <ctype.h>
015a42b4 56#include "cp-abi.h"
c906108c 57
c906108c
SS
58/* Prototypes for local functions */
59
a14ed312 60static void completion_list_add_name (char *, char *, int, char *, char *);
c906108c 61
a14ed312 62static void rbreak_command (char *, int);
c906108c 63
a14ed312 64static void types_info (char *, int);
c906108c 65
a14ed312 66static void functions_info (char *, int);
c906108c 67
a14ed312 68static void variables_info (char *, int);
c906108c 69
a14ed312 70static void sources_info (char *, int);
c906108c 71
a14ed312 72static void output_source_filename (char *, int *);
c906108c 73
a14ed312 74static int find_line_common (struct linetable *, int, int *);
c906108c 75
50641945
FN
76/* This one is used by linespec.c */
77
78char *operator_chars (char *p, char **end);
79
3121eff0 80static struct symbol *lookup_symbol_aux (const char *name,
5ad1c190 81 const char *linkage_name,
3121eff0 82 const struct block *block,
176620f1 83 const domain_enum domain,
3121eff0
DJ
84 int *is_a_field_of_this,
85 struct symtab **symtab);
fba7f19c 86
e4051eeb
DC
87static
88struct symbol *lookup_symbol_aux_local (const char *name,
5ad1c190 89 const char *linkage_name,
e4051eeb 90 const struct block *block,
176620f1 91 const domain_enum domain,
89a9d1b1 92 struct symtab **symtab);
8155455b
DC
93
94static
95struct symbol *lookup_symbol_aux_symtabs (int block_index,
96 const char *name,
5ad1c190 97 const char *linkage_name,
176620f1 98 const domain_enum domain,
8155455b
DC
99 struct symtab **symtab);
100
101static
102struct symbol *lookup_symbol_aux_psymtabs (int block_index,
103 const char *name,
5ad1c190 104 const char *linkage_name,
176620f1 105 const domain_enum domain,
8155455b 106 struct symtab **symtab);
fba7f19c 107
ae2f03ac 108#if 0
406bc4de
DC
109static
110struct symbol *lookup_symbol_aux_minsyms (const char *name,
5ad1c190 111 const char *linkage_name,
176620f1 112 const domain_enum domain,
406bc4de 113 int *is_a_field_of_this,
e45febe2 114 struct symtab **symtab);
ae2f03ac 115#endif
406bc4de 116
a14ed312 117static struct symbol *find_active_alias (struct symbol *sym, CORE_ADDR addr);
c906108c
SS
118
119/* This flag is used in hppa-tdep.c, and set in hp-symtab-read.c */
120/* Signals the presence of objects compiled by HP compilers */
121int hp_som_som_object_present = 0;
122
a14ed312 123static void fixup_section (struct general_symbol_info *, struct objfile *);
c906108c 124
a14ed312 125static int file_matches (char *, char **, int);
c906108c 126
176620f1 127static void print_symbol_info (domain_enum,
a14ed312 128 struct symtab *, struct symbol *, int, char *);
c906108c 129
a14ed312 130static void print_msymbol_info (struct minimal_symbol *);
c906108c 131
176620f1 132static void symtab_symbol_info (char *, domain_enum, int);
c906108c 133
a14ed312 134void _initialize_symtab (void);
c906108c
SS
135
136/* */
137
138/* The single non-language-specific builtin type */
139struct type *builtin_type_error;
140
141/* Block in which the most recently searched-for symbol was found.
142 Might be better to make this a parameter to lookup_symbol and
143 value_of_this. */
144
145const struct block *block_found;
146
c906108c
SS
147/* Check for a symtab of a specific name; first in symtabs, then in
148 psymtabs. *If* there is no '/' in the name, a match after a '/'
149 in the symtab filename will also work. */
150
1b15f1fa
TT
151struct symtab *
152lookup_symtab (const char *name)
c906108c
SS
153{
154 register struct symtab *s;
155 register struct partial_symtab *ps;
c906108c 156 register struct objfile *objfile;
58d370e0 157 char *real_path = NULL;
f079a2e5 158 char *full_path = NULL;
58d370e0
TT
159
160 /* Here we are interested in canonicalizing an absolute path, not
161 absolutizing a relative path. */
162 if (IS_ABSOLUTE_PATH (name))
f079a2e5
JB
163 {
164 full_path = xfullpath (name);
165 make_cleanup (xfree, full_path);
166 real_path = gdb_realpath (name);
167 make_cleanup (xfree, real_path);
168 }
c906108c 169
c5aa993b 170got_symtab:
c906108c
SS
171
172 /* First, search for an exact match */
173
174 ALL_SYMTABS (objfile, s)
58d370e0 175 {
a7fdf62f 176 if (FILENAME_CMP (name, s->filename) == 0)
58d370e0 177 {
58d370e0
TT
178 return s;
179 }
f079a2e5 180
58d370e0
TT
181 /* If the user gave us an absolute path, try to find the file in
182 this symtab and use its absolute path. */
f079a2e5
JB
183
184 if (full_path != NULL)
185 {
186 const char *fp = symtab_to_filename (s);
187 if (FILENAME_CMP (full_path, fp) == 0)
188 {
189 return s;
190 }
191 }
192
58d370e0
TT
193 if (real_path != NULL)
194 {
25f1b008 195 char *rp = gdb_realpath (symtab_to_filename (s));
f079a2e5 196 make_cleanup (xfree, rp);
58d370e0
TT
197 if (FILENAME_CMP (real_path, rp) == 0)
198 {
58d370e0
TT
199 return s;
200 }
201 }
202 }
203
c906108c
SS
204 /* Now, search for a matching tail (only if name doesn't have any dirs) */
205
caadab2c 206 if (lbasename (name) == name)
c906108c 207 ALL_SYMTABS (objfile, s)
c5aa993b 208 {
31889e00 209 if (FILENAME_CMP (lbasename (s->filename), name) == 0)
c5aa993b
JM
210 return s;
211 }
c906108c
SS
212
213 /* Same search rules as above apply here, but now we look thru the
214 psymtabs. */
215
216 ps = lookup_partial_symtab (name);
217 if (!ps)
218 return (NULL);
219
c5aa993b 220 if (ps->readin)
c906108c 221 error ("Internal: readin %s pst for `%s' found when no symtab found.",
c5aa993b 222 ps->filename, name);
c906108c
SS
223
224 s = PSYMTAB_TO_SYMTAB (ps);
225
226 if (s)
227 return s;
228
229 /* At this point, we have located the psymtab for this file, but
230 the conversion to a symtab has failed. This usually happens
231 when we are looking up an include file. In this case,
232 PSYMTAB_TO_SYMTAB doesn't return a symtab, even though one has
233 been created. So, we need to run through the symtabs again in
234 order to find the file.
235 XXX - This is a crock, and should be fixed inside of the the
236 symbol parsing routines. */
237 goto got_symtab;
238}
239
c906108c
SS
240/* Lookup the partial symbol table of a source file named NAME.
241 *If* there is no '/' in the name, a match after a '/'
242 in the psymtab filename will also work. */
243
244struct partial_symtab *
1f8cc6db 245lookup_partial_symtab (const char *name)
c906108c
SS
246{
247 register struct partial_symtab *pst;
248 register struct objfile *objfile;
f079a2e5 249 char *full_path = NULL;
58d370e0
TT
250 char *real_path = NULL;
251
252 /* Here we are interested in canonicalizing an absolute path, not
253 absolutizing a relative path. */
254 if (IS_ABSOLUTE_PATH (name))
f079a2e5
JB
255 {
256 full_path = xfullpath (name);
257 make_cleanup (xfree, full_path);
258 real_path = gdb_realpath (name);
259 make_cleanup (xfree, real_path);
260 }
c5aa993b 261
c906108c 262 ALL_PSYMTABS (objfile, pst)
c5aa993b 263 {
a7fdf62f 264 if (FILENAME_CMP (name, pst->filename) == 0)
c5aa993b
JM
265 {
266 return (pst);
267 }
f079a2e5 268
58d370e0
TT
269 /* If the user gave us an absolute path, try to find the file in
270 this symtab and use its absolute path. */
f079a2e5 271 if (full_path != NULL)
58d370e0
TT
272 {
273 if (pst->fullname == NULL)
274 source_full_path_of (pst->filename, &pst->fullname);
275 if (pst->fullname != NULL
f079a2e5 276 && FILENAME_CMP (full_path, pst->fullname) == 0)
58d370e0 277 {
58d370e0
TT
278 return pst;
279 }
280 }
c906108c 281
f079a2e5
JB
282 if (real_path != NULL)
283 {
284 char *rp = NULL;
285 if (pst->fullname == NULL)
286 source_full_path_of (pst->filename, &pst->fullname);
287 if (pst->fullname != NULL)
288 {
289 rp = gdb_realpath (pst->fullname);
290 make_cleanup (xfree, rp);
291 }
292 if (rp != NULL && FILENAME_CMP (real_path, rp) == 0)
293 {
294 return pst;
295 }
296 }
297 }
58d370e0 298
c906108c
SS
299 /* Now, search for a matching tail (only if name doesn't have any dirs) */
300
caadab2c 301 if (lbasename (name) == name)
c906108c 302 ALL_PSYMTABS (objfile, pst)
c5aa993b 303 {
31889e00 304 if (FILENAME_CMP (lbasename (pst->filename), name) == 0)
c5aa993b
JM
305 return (pst);
306 }
c906108c
SS
307
308 return (NULL);
309}
310\f
311/* Mangle a GDB method stub type. This actually reassembles the pieces of the
312 full method name, which consist of the class name (from T), the unadorned
313 method name from METHOD_ID, and the signature for the specific overload,
314 specified by SIGNATURE_ID. Note that this function is g++ specific. */
315
316char *
fba45db2 317gdb_mangle_name (struct type *type, int method_id, int signature_id)
c906108c
SS
318{
319 int mangled_name_len;
320 char *mangled_name;
321 struct fn_field *f = TYPE_FN_FIELDLIST1 (type, method_id);
322 struct fn_field *method = &f[signature_id];
323 char *field_name = TYPE_FN_FIELDLIST_NAME (type, method_id);
324 char *physname = TYPE_FN_FIELD_PHYSNAME (f, signature_id);
325 char *newname = type_name_no_tag (type);
326
327 /* Does the form of physname indicate that it is the full mangled name
328 of a constructor (not just the args)? */
329 int is_full_physname_constructor;
330
331 int is_constructor;
015a42b4 332 int is_destructor = is_destructor_name (physname);
c906108c
SS
333 /* Need a new type prefix. */
334 char *const_prefix = method->is_const ? "C" : "";
335 char *volatile_prefix = method->is_volatile ? "V" : "";
336 char buf[20];
337 int len = (newname == NULL ? 0 : strlen (newname));
338
43630227
PS
339 /* Nothing to do if physname already contains a fully mangled v3 abi name
340 or an operator name. */
341 if ((physname[0] == '_' && physname[1] == 'Z')
342 || is_operator_name (field_name))
235d1e03
EZ
343 return xstrdup (physname);
344
015a42b4 345 is_full_physname_constructor = is_constructor_name (physname);
c906108c
SS
346
347 is_constructor =
c5aa993b 348 is_full_physname_constructor || (newname && STREQ (field_name, newname));
c906108c
SS
349
350 if (!is_destructor)
c5aa993b 351 is_destructor = (strncmp (physname, "__dt", 4) == 0);
c906108c
SS
352
353 if (is_destructor || is_full_physname_constructor)
354 {
c5aa993b
JM
355 mangled_name = (char *) xmalloc (strlen (physname) + 1);
356 strcpy (mangled_name, physname);
c906108c
SS
357 return mangled_name;
358 }
359
360 if (len == 0)
361 {
362 sprintf (buf, "__%s%s", const_prefix, volatile_prefix);
363 }
364 else if (physname[0] == 't' || physname[0] == 'Q')
365 {
366 /* The physname for template and qualified methods already includes
c5aa993b 367 the class name. */
c906108c
SS
368 sprintf (buf, "__%s%s", const_prefix, volatile_prefix);
369 newname = NULL;
370 len = 0;
371 }
372 else
373 {
374 sprintf (buf, "__%s%s%d", const_prefix, volatile_prefix, len);
375 }
376 mangled_name_len = ((is_constructor ? 0 : strlen (field_name))
235d1e03 377 + strlen (buf) + len + strlen (physname) + 1);
c906108c 378
c906108c 379 {
c5aa993b 380 mangled_name = (char *) xmalloc (mangled_name_len);
c906108c
SS
381 if (is_constructor)
382 mangled_name[0] = '\0';
383 else
384 strcpy (mangled_name, field_name);
385 }
386 strcat (mangled_name, buf);
387 /* If the class doesn't have a name, i.e. newname NULL, then we just
388 mangle it using 0 for the length of the class. Thus it gets mangled
c5aa993b 389 as something starting with `::' rather than `classname::'. */
c906108c
SS
390 if (newname != NULL)
391 strcat (mangled_name, newname);
392
393 strcat (mangled_name, physname);
394 return (mangled_name);
395}
12af6855
JB
396
397\f
89aad1f9
EZ
398/* Initialize the language dependent portion of a symbol
399 depending upon the language for the symbol. */
400void
401symbol_init_language_specific (struct general_symbol_info *gsymbol,
402 enum language language)
403{
404 gsymbol->language = language;
405 if (gsymbol->language == language_cplus
5784d15e
AF
406 || gsymbol->language == language_java
407 || gsymbol->language == language_objc)
89aad1f9
EZ
408 {
409 gsymbol->language_specific.cplus_specific.demangled_name = NULL;
410 }
89aad1f9
EZ
411 else
412 {
413 memset (&gsymbol->language_specific, 0,
414 sizeof (gsymbol->language_specific));
415 }
416}
417
2de7ced7
DJ
418/* Functions to initialize a symbol's mangled name. */
419
420/* Create the hash table used for demangled names. Each hash entry is
421 a pair of strings; one for the mangled name and one for the demangled
422 name. The entry is hashed via just the mangled name. */
423
424static void
425create_demangled_names_hash (struct objfile *objfile)
426{
427 /* Choose 256 as the starting size of the hash table, somewhat arbitrarily.
428 The hash table code will round this up to the next prime number.
429 Choosing a much larger table size wastes memory, and saves only about
430 1% in symbol reading. */
431
432 objfile->demangled_names_hash = htab_create_alloc_ex
433 (256, htab_hash_string, (int (*) (const void *, const void *)) streq,
434 NULL, objfile->md, xmcalloc, xmfree);
435}
12af6855 436
2de7ced7 437/* Try to determine the demangled name for a symbol, based on the
12af6855
JB
438 language of that symbol. If the language is set to language_auto,
439 it will attempt to find any demangling algorithm that works and
2de7ced7
DJ
440 then set the language appropriately. The returned name is allocated
441 by the demangler and should be xfree'd. */
12af6855 442
2de7ced7
DJ
443static char *
444symbol_find_demangled_name (struct general_symbol_info *gsymbol,
445 const char *mangled)
12af6855 446{
12af6855
JB
447 char *demangled = NULL;
448
449 if (gsymbol->language == language_unknown)
450 gsymbol->language = language_auto;
1bae87b9
AF
451
452 if (gsymbol->language == language_objc
453 || gsymbol->language == language_auto)
454 {
455 demangled =
456 objc_demangle (mangled, 0);
457 if (demangled != NULL)
458 {
459 gsymbol->language = language_objc;
460 return demangled;
461 }
462 }
12af6855
JB
463 if (gsymbol->language == language_cplus
464 || gsymbol->language == language_auto)
465 {
466 demangled =
2de7ced7 467 cplus_demangle (mangled, DMGL_PARAMS | DMGL_ANSI);
12af6855 468 if (demangled != NULL)
2de7ced7
DJ
469 {
470 gsymbol->language = language_cplus;
471 return demangled;
472 }
12af6855
JB
473 }
474 if (gsymbol->language == language_java)
475 {
476 demangled =
2de7ced7 477 cplus_demangle (mangled,
12af6855
JB
478 DMGL_PARAMS | DMGL_ANSI | DMGL_JAVA);
479 if (demangled != NULL)
2de7ced7
DJ
480 {
481 gsymbol->language = language_java;
482 return demangled;
483 }
484 }
485 return NULL;
486}
487
980cae7a
DC
488/* Set both the mangled and demangled (if any) names for GSYMBOL based
489 on LINKAGE_NAME and LEN. The hash table corresponding to OBJFILE
490 is used, and the memory comes from that objfile's symbol_obstack.
491 LINKAGE_NAME is copied, so the pointer can be discarded after
492 calling this function. */
2de7ced7 493
d2a52b27
DC
494/* We have to be careful when dealing with Java names: when we run
495 into a Java minimal symbol, we don't know it's a Java symbol, so it
496 gets demangled as a C++ name. This is unfortunate, but there's not
497 much we can do about it: but when demangling partial symbols and
498 regular symbols, we'd better not reuse the wrong demangled name.
499 (See PR gdb/1039.) We solve this by putting a distinctive prefix
500 on Java names when storing them in the hash table. */
501
502/* FIXME: carlton/2003-03-13: This is an unfortunate situation. I
503 don't mind the Java prefix so much: different languages have
504 different demangling requirements, so it's only natural that we
505 need to keep language data around in our demangling cache. But
506 it's not good that the minimal symbol has the wrong demangled name.
507 Unfortunately, I can't think of any easy solution to that
508 problem. */
509
510#define JAVA_PREFIX "##JAVA$$"
511#define JAVA_PREFIX_LEN 8
512
2de7ced7
DJ
513void
514symbol_set_names (struct general_symbol_info *gsymbol,
980cae7a 515 const char *linkage_name, int len, struct objfile *objfile)
2de7ced7
DJ
516{
517 char **slot;
980cae7a
DC
518 /* A 0-terminated copy of the linkage name. */
519 const char *linkage_name_copy;
d2a52b27
DC
520 /* A copy of the linkage name that might have a special Java prefix
521 added to it, for use when looking names up in the hash table. */
522 const char *lookup_name;
523 /* The length of lookup_name. */
524 int lookup_len;
2de7ced7
DJ
525
526 if (objfile->demangled_names_hash == NULL)
527 create_demangled_names_hash (objfile);
528
980cae7a
DC
529 /* The stabs reader generally provides names that are not
530 NUL-terminated; most of the other readers don't do this, so we
d2a52b27
DC
531 can just use the given copy, unless we're in the Java case. */
532 if (gsymbol->language == language_java)
533 {
534 char *alloc_name;
535 lookup_len = len + JAVA_PREFIX_LEN;
536
537 alloc_name = alloca (lookup_len + 1);
538 memcpy (alloc_name, JAVA_PREFIX, JAVA_PREFIX_LEN);
539 memcpy (alloc_name + JAVA_PREFIX_LEN, linkage_name, len);
540 alloc_name[lookup_len] = '\0';
541
542 lookup_name = alloc_name;
543 linkage_name_copy = alloc_name + JAVA_PREFIX_LEN;
544 }
545 else if (linkage_name[len] != '\0')
2de7ced7 546 {
980cae7a 547 char *alloc_name;
d2a52b27 548 lookup_len = len;
980cae7a 549
d2a52b27 550 alloc_name = alloca (lookup_len + 1);
980cae7a 551 memcpy (alloc_name, linkage_name, len);
d2a52b27 552 alloc_name[lookup_len] = '\0';
980cae7a 553
d2a52b27 554 lookup_name = alloc_name;
980cae7a 555 linkage_name_copy = alloc_name;
2de7ced7
DJ
556 }
557 else
980cae7a 558 {
d2a52b27
DC
559 lookup_len = len;
560 lookup_name = linkage_name;
980cae7a
DC
561 linkage_name_copy = linkage_name;
562 }
2de7ced7 563
980cae7a 564 slot = (char **) htab_find_slot (objfile->demangled_names_hash,
d2a52b27 565 lookup_name, INSERT);
2de7ced7
DJ
566
567 /* If this name is not in the hash table, add it. */
568 if (*slot == NULL)
569 {
980cae7a
DC
570 char *demangled_name = symbol_find_demangled_name (gsymbol,
571 linkage_name_copy);
2de7ced7
DJ
572 int demangled_len = demangled_name ? strlen (demangled_name) : 0;
573
574 /* If there is a demangled name, place it right after the mangled name.
575 Otherwise, just place a second zero byte after the end of the mangled
576 name. */
577 *slot = obstack_alloc (&objfile->symbol_obstack,
d2a52b27
DC
578 lookup_len + demangled_len + 2);
579 memcpy (*slot, lookup_name, lookup_len + 1);
980cae7a 580 if (demangled_name != NULL)
2de7ced7 581 {
d2a52b27 582 memcpy (*slot + lookup_len + 1, demangled_name, demangled_len + 1);
2de7ced7
DJ
583 xfree (demangled_name);
584 }
585 else
d2a52b27 586 (*slot)[lookup_len + 1] = '\0';
2de7ced7
DJ
587 }
588
d2a52b27
DC
589 gsymbol->name = *slot + lookup_len - len;
590 if ((*slot)[lookup_len + 1] != '\0')
2de7ced7 591 gsymbol->language_specific.cplus_specific.demangled_name
d2a52b27 592 = &(*slot)[lookup_len + 1];
2de7ced7
DJ
593 else
594 gsymbol->language_specific.cplus_specific.demangled_name = NULL;
595}
596
597/* Initialize the demangled name of GSYMBOL if possible. Any required space
598 to store the name is obtained from the specified obstack. The function
599 symbol_set_names, above, should be used instead where possible for more
600 efficient memory usage. */
601
602void
603symbol_init_demangled_name (struct general_symbol_info *gsymbol,
604 struct obstack *obstack)
605{
606 char *mangled = gsymbol->name;
607 char *demangled = NULL;
608
609 demangled = symbol_find_demangled_name (gsymbol, mangled);
610 if (gsymbol->language == language_cplus
1bae87b9
AF
611 || gsymbol->language == language_java
612 || gsymbol->language == language_objc)
2de7ced7
DJ
613 {
614 if (demangled)
615 {
616 gsymbol->language_specific.cplus_specific.demangled_name
617 = obsavestring (demangled, strlen (demangled), obstack);
618 xfree (demangled);
619 }
12af6855 620 else
2de7ced7
DJ
621 gsymbol->language_specific.cplus_specific.demangled_name = NULL;
622 }
623 else
624 {
625 /* Unknown language; just clean up quietly. */
626 if (demangled)
627 xfree (demangled);
12af6855 628 }
12af6855
JB
629}
630
22abf04a
DC
631/* Return the source code name of a symbol. In languages where
632 demangling is necessary, this is the demangled name. */
633
634char *
635symbol_natural_name (const struct general_symbol_info *gsymbol)
636{
637 if ((gsymbol->language == language_cplus
638 || gsymbol->language == language_java
639 || gsymbol->language == language_objc)
640 && (gsymbol->language_specific.cplus_specific.demangled_name != NULL))
641 {
642 return gsymbol->language_specific.cplus_specific.demangled_name;
643 }
644 else
645 {
646 return gsymbol->name;
647 }
648}
649
9cc0d196
EZ
650/* Return the demangled name for a symbol based on the language for
651 that symbol. If no demangled name exists, return NULL. */
652char *
653symbol_demangled_name (struct general_symbol_info *gsymbol)
654{
655 if (gsymbol->language == language_cplus
5784d15e
AF
656 || gsymbol->language == language_java
657 || gsymbol->language == language_objc)
9cc0d196 658 return gsymbol->language_specific.cplus_specific.demangled_name;
12af6855 659
9cc0d196
EZ
660 else
661 return NULL;
9cc0d196 662}
fe39c653
EZ
663
664/* Initialize the structure fields to zero values. */
665void
666init_sal (struct symtab_and_line *sal)
667{
668 sal->symtab = 0;
669 sal->section = 0;
670 sal->line = 0;
671 sal->pc = 0;
672 sal->end = 0;
673}
c906108c
SS
674\f
675
c5aa993b 676
c906108c
SS
677/* Find which partial symtab on contains PC and SECTION. Return 0 if none. */
678
679struct partial_symtab *
fba45db2 680find_pc_sect_psymtab (CORE_ADDR pc, asection *section)
c906108c
SS
681{
682 register struct partial_symtab *pst;
683 register struct objfile *objfile;
8a48e967
DJ
684 struct minimal_symbol *msymbol;
685
686 /* If we know that this is not a text address, return failure. This is
687 necessary because we loop based on texthigh and textlow, which do
688 not include the data ranges. */
689 msymbol = lookup_minimal_symbol_by_pc_section (pc, section);
690 if (msymbol
691 && (msymbol->type == mst_data
692 || msymbol->type == mst_bss
693 || msymbol->type == mst_abs
694 || msymbol->type == mst_file_data
695 || msymbol->type == mst_file_bss))
696 return NULL;
c906108c
SS
697
698 ALL_PSYMTABS (objfile, pst)
c5aa993b 699 {
c5aa993b 700 if (pc >= pst->textlow && pc < pst->texthigh)
c5aa993b 701 {
c5aa993b
JM
702 struct partial_symtab *tpst;
703
704 /* An objfile that has its functions reordered might have
705 many partial symbol tables containing the PC, but
706 we want the partial symbol table that contains the
707 function containing the PC. */
708 if (!(objfile->flags & OBJF_REORDERED) &&
709 section == 0) /* can't validate section this way */
710 return (pst);
711
c5aa993b
JM
712 if (msymbol == NULL)
713 return (pst);
714
715 for (tpst = pst; tpst != NULL; tpst = tpst->next)
716 {
c5aa993b 717 if (pc >= tpst->textlow && pc < tpst->texthigh)
c5aa993b
JM
718 {
719 struct partial_symbol *p;
c906108c 720
c5aa993b
JM
721 p = find_pc_sect_psymbol (tpst, pc, section);
722 if (p != NULL
723 && SYMBOL_VALUE_ADDRESS (p)
724 == SYMBOL_VALUE_ADDRESS (msymbol))
725 return (tpst);
726 }
727 }
728 return (pst);
729 }
730 }
c906108c
SS
731 return (NULL);
732}
733
734/* Find which partial symtab contains PC. Return 0 if none.
735 Backward compatibility, no section */
736
737struct partial_symtab *
fba45db2 738find_pc_psymtab (CORE_ADDR pc)
c906108c
SS
739{
740 return find_pc_sect_psymtab (pc, find_pc_mapped_section (pc));
741}
742
743/* Find which partial symbol within a psymtab matches PC and SECTION.
744 Return 0 if none. Check all psymtabs if PSYMTAB is 0. */
745
746struct partial_symbol *
fba45db2
KB
747find_pc_sect_psymbol (struct partial_symtab *psymtab, CORE_ADDR pc,
748 asection *section)
c906108c
SS
749{
750 struct partial_symbol *best = NULL, *p, **pp;
751 CORE_ADDR best_pc;
c5aa993b 752
c906108c
SS
753 if (!psymtab)
754 psymtab = find_pc_sect_psymtab (pc, section);
755 if (!psymtab)
756 return 0;
757
758 /* Cope with programs that start at address 0 */
759 best_pc = (psymtab->textlow != 0) ? psymtab->textlow - 1 : 0;
760
761 /* Search the global symbols as well as the static symbols, so that
762 find_pc_partial_function doesn't use a minimal symbol and thus
763 cache a bad endaddr. */
764 for (pp = psymtab->objfile->global_psymbols.list + psymtab->globals_offset;
c5aa993b
JM
765 (pp - (psymtab->objfile->global_psymbols.list + psymtab->globals_offset)
766 < psymtab->n_global_syms);
c906108c
SS
767 pp++)
768 {
769 p = *pp;
176620f1 770 if (SYMBOL_DOMAIN (p) == VAR_DOMAIN
c906108c
SS
771 && SYMBOL_CLASS (p) == LOC_BLOCK
772 && pc >= SYMBOL_VALUE_ADDRESS (p)
773 && (SYMBOL_VALUE_ADDRESS (p) > best_pc
774 || (psymtab->textlow == 0
775 && best_pc == 0 && SYMBOL_VALUE_ADDRESS (p) == 0)))
776 {
c5aa993b 777 if (section) /* match on a specific section */
c906108c
SS
778 {
779 fixup_psymbol_section (p, psymtab->objfile);
780 if (SYMBOL_BFD_SECTION (p) != section)
781 continue;
782 }
783 best_pc = SYMBOL_VALUE_ADDRESS (p);
784 best = p;
785 }
786 }
787
788 for (pp = psymtab->objfile->static_psymbols.list + psymtab->statics_offset;
c5aa993b
JM
789 (pp - (psymtab->objfile->static_psymbols.list + psymtab->statics_offset)
790 < psymtab->n_static_syms);
c906108c
SS
791 pp++)
792 {
793 p = *pp;
176620f1 794 if (SYMBOL_DOMAIN (p) == VAR_DOMAIN
c906108c
SS
795 && SYMBOL_CLASS (p) == LOC_BLOCK
796 && pc >= SYMBOL_VALUE_ADDRESS (p)
797 && (SYMBOL_VALUE_ADDRESS (p) > best_pc
c5aa993b 798 || (psymtab->textlow == 0
c906108c
SS
799 && best_pc == 0 && SYMBOL_VALUE_ADDRESS (p) == 0)))
800 {
c5aa993b 801 if (section) /* match on a specific section */
c906108c
SS
802 {
803 fixup_psymbol_section (p, psymtab->objfile);
804 if (SYMBOL_BFD_SECTION (p) != section)
805 continue;
806 }
807 best_pc = SYMBOL_VALUE_ADDRESS (p);
808 best = p;
809 }
810 }
811
812 return best;
813}
814
815/* Find which partial symbol within a psymtab matches PC. Return 0 if none.
816 Check all psymtabs if PSYMTAB is 0. Backwards compatibility, no section. */
817
818struct partial_symbol *
fba45db2 819find_pc_psymbol (struct partial_symtab *psymtab, CORE_ADDR pc)
c906108c
SS
820{
821 return find_pc_sect_psymbol (psymtab, pc, find_pc_mapped_section (pc));
822}
823\f
824/* Debug symbols usually don't have section information. We need to dig that
825 out of the minimal symbols and stash that in the debug symbol. */
826
827static void
fba45db2 828fixup_section (struct general_symbol_info *ginfo, struct objfile *objfile)
c906108c
SS
829{
830 struct minimal_symbol *msym;
831 msym = lookup_minimal_symbol (ginfo->name, NULL, objfile);
832
833 if (msym)
7a78d0ee
KB
834 {
835 ginfo->bfd_section = SYMBOL_BFD_SECTION (msym);
836 ginfo->section = SYMBOL_SECTION (msym);
837 }
c906108c
SS
838}
839
840struct symbol *
fba45db2 841fixup_symbol_section (struct symbol *sym, struct objfile *objfile)
c906108c
SS
842{
843 if (!sym)
844 return NULL;
845
846 if (SYMBOL_BFD_SECTION (sym))
847 return sym;
848
849 fixup_section (&sym->ginfo, objfile);
850
851 return sym;
852}
853
7a78d0ee 854struct partial_symbol *
fba45db2 855fixup_psymbol_section (struct partial_symbol *psym, struct objfile *objfile)
c906108c
SS
856{
857 if (!psym)
858 return NULL;
859
860 if (SYMBOL_BFD_SECTION (psym))
861 return psym;
862
863 fixup_section (&psym->ginfo, objfile);
864
865 return psym;
866}
867
868/* Find the definition for a specified symbol name NAME
176620f1 869 in domain DOMAIN, visible from lexical block BLOCK.
c906108c
SS
870 Returns the struct symbol pointer, or zero if no symbol is found.
871 If SYMTAB is non-NULL, store the symbol table in which the
872 symbol was found there, or NULL if not found.
873 C++: if IS_A_FIELD_OF_THIS is nonzero on entry, check to see if
874 NAME is a field of the current implied argument `this'. If so set
875 *IS_A_FIELD_OF_THIS to 1, otherwise set it to zero.
876 BLOCK_FOUND is set to the block in which NAME is found (in the case of
877 a field of `this', value_of_this sets BLOCK_FOUND to the proper value.) */
878
879/* This function has a bunch of loops in it and it would seem to be
880 attractive to put in some QUIT's (though I'm not really sure
881 whether it can run long enough to be really important). But there
882 are a few calls for which it would appear to be bad news to quit
7ca9f392
AC
883 out of here: find_proc_desc in alpha-tdep.c and mips-tdep.c. (Note
884 that there is C++ code below which can error(), but that probably
885 doesn't affect these calls since they are looking for a known
886 variable and thus can probably assume it will never hit the C++
887 code). */
c906108c
SS
888
889struct symbol *
fba7f19c 890lookup_symbol (const char *name, const struct block *block,
176620f1 891 const domain_enum domain, int *is_a_field_of_this,
fba45db2 892 struct symtab **symtab)
c906108c 893{
729051e6
DJ
894 char *demangled_name = NULL;
895 const char *modified_name = NULL;
3121eff0 896 const char *mangled_name = NULL;
fba7f19c
EZ
897 int needtofreename = 0;
898 struct symbol *returnval;
c906108c 899
729051e6
DJ
900 modified_name = name;
901
902 /* If we are using C++ language, demangle the name before doing a lookup, so
903 we can always binary search. */
904 if (current_language->la_language == language_cplus)
905 {
906 demangled_name = cplus_demangle (name, DMGL_ANSI | DMGL_PARAMS);
907 if (demangled_name)
908 {
909 mangled_name = name;
910 modified_name = demangled_name;
911 needtofreename = 1;
912 }
913 }
914
63872f9d
JG
915 if (case_sensitivity == case_sensitive_off)
916 {
917 char *copy;
918 int len, i;
919
920 len = strlen (name);
921 copy = (char *) alloca (len + 1);
922 for (i= 0; i < len; i++)
923 copy[i] = tolower (name[i]);
924 copy[len] = 0;
fba7f19c 925 modified_name = copy;
63872f9d 926 }
fba7f19c 927
3121eff0 928 returnval = lookup_symbol_aux (modified_name, mangled_name, block,
176620f1 929 domain, is_a_field_of_this, symtab);
fba7f19c 930 if (needtofreename)
729051e6 931 xfree (demangled_name);
fba7f19c
EZ
932
933 return returnval;
934}
935
5ad1c190
DC
936/* Behave like lookup_symbol_aux except that NAME is the natural name
937 of the symbol that we're looking for and, if LINKAGE_NAME is
938 non-NULL, ensure that the symbol's linkage name matches as
939 well. */
940
fba7f19c 941static struct symbol *
5ad1c190 942lookup_symbol_aux (const char *name, const char *linkage_name,
176620f1 943 const struct block *block, const domain_enum domain,
3121eff0 944 int *is_a_field_of_this, struct symtab **symtab)
fba7f19c 945{
8155455b 946 struct symbol *sym;
406bc4de 947
e4051eeb
DC
948 /* Search specified block and its superiors. Don't search
949 STATIC_BLOCK or GLOBAL_BLOCK. */
c906108c 950
5ad1c190 951 sym = lookup_symbol_aux_local (name, linkage_name, block, domain,
89a9d1b1 952 symtab);
8155455b
DC
953 if (sym != NULL)
954 return sym;
c906108c 955
5f9a71c3
DC
956 /* If requested to do so by the caller and if appropriate for the
957 current language, check to see if NAME is a field of `this'. */
958
959 if (current_language->la_value_of_this != NULL
960 && is_a_field_of_this != NULL)
c906108c 961 {
5f9a71c3 962 struct value *v = current_language->la_value_of_this (0);
c5aa993b 963
c906108c
SS
964 *is_a_field_of_this = 0;
965 if (v && check_field (v, name))
966 {
967 *is_a_field_of_this = 1;
968 if (symtab != NULL)
969 *symtab = NULL;
970 return NULL;
971 }
972 }
973
5f9a71c3
DC
974 /* Now do whatever is appropriate for the current language to look
975 up static and global variables. */
c906108c 976
5f9a71c3
DC
977 sym = current_language->la_lookup_symbol_nonlocal (name, linkage_name,
978 block, domain,
979 symtab);
8155455b
DC
980 if (sym != NULL)
981 return sym;
c906108c 982
8155455b
DC
983 /* Now search all static file-level symbols. Not strictly correct,
984 but more useful than an error. Do the symtabs first, then check
985 the psymtabs. If a psymtab indicates the existence of the
986 desired name as a file-level static, then do psymtab-to-symtab
c906108c
SS
987 conversion on the fly and return the found symbol. */
988
5ad1c190 989 sym = lookup_symbol_aux_symtabs (STATIC_BLOCK, name, linkage_name,
176620f1 990 domain, symtab);
8155455b
DC
991 if (sym != NULL)
992 return sym;
993
5ad1c190 994 sym = lookup_symbol_aux_psymtabs (STATIC_BLOCK, name, linkage_name,
176620f1 995 domain, symtab);
8155455b
DC
996 if (sym != NULL)
997 return sym;
c906108c 998
c906108c
SS
999 if (symtab != NULL)
1000 *symtab = NULL;
8155455b 1001 return NULL;
c906108c 1002}
8155455b 1003
e4051eeb 1004/* Check to see if the symbol is defined in BLOCK or its superiors.
89a9d1b1 1005 Don't search STATIC_BLOCK or GLOBAL_BLOCK. */
8155455b
DC
1006
1007static struct symbol *
5ad1c190 1008lookup_symbol_aux_local (const char *name, const char *linkage_name,
8155455b 1009 const struct block *block,
176620f1 1010 const domain_enum domain,
89a9d1b1 1011 struct symtab **symtab)
8155455b
DC
1012{
1013 struct symbol *sym;
89a9d1b1
DC
1014 const struct block *static_block = block_static_block (block);
1015
e4051eeb
DC
1016 /* Check if either no block is specified or it's a global block. */
1017
89a9d1b1
DC
1018 if (static_block == NULL)
1019 return NULL;
e4051eeb 1020
89a9d1b1 1021 while (block != static_block)
f61e8913 1022 {
5ad1c190 1023 sym = lookup_symbol_aux_block (name, linkage_name, block, domain,
f61e8913
DC
1024 symtab);
1025 if (sym != NULL)
1026 return sym;
1027 block = BLOCK_SUPERBLOCK (block);
1028 }
1029
89a9d1b1 1030 /* We've reached the static block without finding a result. */
e4051eeb 1031
f61e8913
DC
1032 return NULL;
1033}
1034
1035/* Look up a symbol in a block; if found, locate its symtab, fixup the
1036 symbol, and set block_found appropriately. */
1037
5f9a71c3 1038struct symbol *
5ad1c190 1039lookup_symbol_aux_block (const char *name, const char *linkage_name,
f61e8913 1040 const struct block *block,
176620f1 1041 const domain_enum domain,
f61e8913
DC
1042 struct symtab **symtab)
1043{
1044 struct symbol *sym;
8155455b
DC
1045 struct objfile *objfile = NULL;
1046 struct blockvector *bv;
1047 struct block *b;
1048 struct symtab *s = NULL;
f61e8913 1049
5ad1c190 1050 sym = lookup_block_symbol (block, name, linkage_name, domain);
f61e8913 1051 if (sym)
8155455b 1052 {
f61e8913
DC
1053 block_found = block;
1054 if (symtab != NULL)
8155455b 1055 {
f61e8913
DC
1056 /* Search the list of symtabs for one which contains the
1057 address of the start of this block. */
1058 ALL_SYMTABS (objfile, s)
8155455b 1059 {
f61e8913
DC
1060 bv = BLOCKVECTOR (s);
1061 b = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
1062 if (BLOCK_START (b) <= BLOCK_START (block)
1063 && BLOCK_END (b) > BLOCK_START (block))
1064 goto found;
8155455b 1065 }
f61e8913
DC
1066 found:
1067 *symtab = s;
8155455b 1068 }
f61e8913
DC
1069
1070 return fixup_symbol_section (sym, objfile);
8155455b
DC
1071 }
1072
1073 return NULL;
1074}
1075
1076/* Check to see if the symbol is defined in one of the symtabs.
1077 BLOCK_INDEX should be either GLOBAL_BLOCK or STATIC_BLOCK,
1078 depending on whether or not we want to search global symbols or
1079 static symbols. */
1080
1081static struct symbol *
1082lookup_symbol_aux_symtabs (int block_index,
5ad1c190 1083 const char *name, const char *linkage_name,
176620f1 1084 const domain_enum domain,
8155455b
DC
1085 struct symtab **symtab)
1086{
1087 struct symbol *sym;
1088 struct objfile *objfile;
1089 struct blockvector *bv;
1090 const struct block *block;
1091 struct symtab *s;
1092
1093 ALL_SYMTABS (objfile, s)
1094 {
1095 bv = BLOCKVECTOR (s);
1096 block = BLOCKVECTOR_BLOCK (bv, block_index);
5ad1c190 1097 sym = lookup_block_symbol (block, name, linkage_name, domain);
8155455b
DC
1098 if (sym)
1099 {
1100 block_found = block;
1101 if (symtab != NULL)
1102 *symtab = s;
1103 return fixup_symbol_section (sym, objfile);
1104 }
1105 }
1106
1107 return NULL;
1108}
1109
1110/* Check to see if the symbol is defined in one of the partial
1111 symtabs. BLOCK_INDEX should be either GLOBAL_BLOCK or
1112 STATIC_BLOCK, depending on whether or not we want to search global
1113 symbols or static symbols. */
1114
1115static struct symbol *
1116lookup_symbol_aux_psymtabs (int block_index, const char *name,
5ad1c190 1117 const char *linkage_name,
176620f1 1118 const domain_enum domain,
8155455b
DC
1119 struct symtab **symtab)
1120{
1121 struct symbol *sym;
1122 struct objfile *objfile;
1123 struct blockvector *bv;
1124 const struct block *block;
1125 struct partial_symtab *ps;
1126 struct symtab *s;
1127 const int psymtab_index = (block_index == GLOBAL_BLOCK ? 1 : 0);
1128
1129 ALL_PSYMTABS (objfile, ps)
1130 {
1131 if (!ps->readin
5ad1c190 1132 && lookup_partial_symbol (ps, name, linkage_name,
176620f1 1133 psymtab_index, domain))
8155455b
DC
1134 {
1135 s = PSYMTAB_TO_SYMTAB (ps);
1136 bv = BLOCKVECTOR (s);
1137 block = BLOCKVECTOR_BLOCK (bv, block_index);
5ad1c190 1138 sym = lookup_block_symbol (block, name, linkage_name, domain);
8155455b
DC
1139 if (!sym)
1140 {
1141 /* This shouldn't be necessary, but as a last resort try
1142 looking in the statics even though the psymtab claimed
1143 the symbol was global, or vice-versa. It's possible
1144 that the psymtab gets it wrong in some cases. */
1145
1146 /* FIXME: carlton/2002-09-30: Should we really do that?
1147 If that happens, isn't it likely to be a GDB error, in
1148 which case we should fix the GDB error rather than
1149 silently dealing with it here? So I'd vote for
1150 removing the check for the symbol in the other
1151 block. */
1152 block = BLOCKVECTOR_BLOCK (bv,
1153 block_index == GLOBAL_BLOCK ?
1154 STATIC_BLOCK : GLOBAL_BLOCK);
5ad1c190 1155 sym = lookup_block_symbol (block, name, linkage_name, domain);
8155455b
DC
1156 if (!sym)
1157 error ("Internal: %s symbol `%s' found in %s psymtab but not in symtab.\n%s may be an inlined function, or may be a template function\n(if a template, try specifying an instantiation: %s<type>).",
1158 block_index == GLOBAL_BLOCK ? "global" : "static",
1159 name, ps->filename, name, name);
1160 }
1161 if (symtab != NULL)
1162 *symtab = s;
1163 return fixup_symbol_section (sym, objfile);
1164 }
1165 }
1166
1167 return NULL;
1168}
1169
ae2f03ac 1170#if 0
406bc4de
DC
1171/* Check for the possibility of the symbol being a function or a
1172 mangled variable that is stored in one of the minimal symbol
1173 tables. Eventually, all global symbols might be resolved in this
1174 way. */
1175
e45febe2
DC
1176/* NOTE: carlton/2002-12-05: At one point, this function was part of
1177 lookup_symbol_aux, and what are now 'return' statements within
1178 lookup_symbol_aux_minsyms returned from lookup_symbol_aux, even if
1179 sym was NULL. As far as I can tell, this was basically accidental;
1180 it didn't happen every time that msymbol was non-NULL, but only if
1181 some additional conditions held as well, and it caused problems
1182 with HP-generated symbol tables. */
1183
ae2f03ac
EZ
1184/* NOTE: carlton/2003-05-14: This function was once used as part of
1185 lookup_symbol. It is currently unnecessary for correctness
1186 reasons, however, and using it doesn't seem to be any faster than
1187 using lookup_symbol_aux_psymtabs, so I'm commenting it out. */
1188
406bc4de
DC
1189static struct symbol *
1190lookup_symbol_aux_minsyms (const char *name,
5ad1c190 1191 const char *linkage_name,
176620f1 1192 const domain_enum domain,
406bc4de 1193 int *is_a_field_of_this,
e45febe2 1194 struct symtab **symtab)
406bc4de
DC
1195{
1196 struct symbol *sym;
1197 struct blockvector *bv;
1198 const struct block *block;
1199 struct minimal_symbol *msymbol;
1200 struct symtab *s;
1201
176620f1 1202 if (domain == VAR_DOMAIN)
406bc4de
DC
1203 {
1204 msymbol = lookup_minimal_symbol (name, NULL, NULL);
1205
1206 if (msymbol != NULL)
1207 {
1208 /* OK, we found a minimal symbol in spite of not finding any
1209 symbol. There are various possible explanations for
1210 this. One possibility is the symbol exists in code not
1211 compiled -g. Another possibility is that the 'psymtab'
1212 isn't doing its job. A third possibility, related to #2,
1213 is that we were confused by name-mangling. For instance,
1214 maybe the psymtab isn't doing its job because it only
1215 know about demangled names, but we were given a mangled
1216 name... */
1217
1218 /* We first use the address in the msymbol to try to locate
1219 the appropriate symtab. Note that find_pc_sect_symtab()
1220 has a side-effect of doing psymtab-to-symtab expansion,
1221 for the found symtab. */
1222 s = find_pc_sect_symtab (SYMBOL_VALUE_ADDRESS (msymbol),
1223 SYMBOL_BFD_SECTION (msymbol));
1224 if (s != NULL)
1225 {
1226 /* This is a function which has a symtab for its address. */
1227 bv = BLOCKVECTOR (s);
1228 block = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
1229
22abf04a 1230 /* This call used to pass `DEPRECATED_SYMBOL_NAME (msymbol)' as the
406bc4de
DC
1231 `name' argument to lookup_block_symbol. But the name
1232 of a minimal symbol is always mangled, so that seems
1233 to be clearly the wrong thing to pass as the
1234 unmangled name. */
1235 sym =
5ad1c190 1236 lookup_block_symbol (block, name, linkage_name, domain);
406bc4de
DC
1237 /* We kept static functions in minimal symbol table as well as
1238 in static scope. We want to find them in the symbol table. */
1239 if (!sym)
1240 {
1241 block = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
1242 sym = lookup_block_symbol (block, name,
5ad1c190 1243 linkage_name, domain);
406bc4de
DC
1244 }
1245
1246 /* NOTE: carlton/2002-12-04: The following comment was
1247 taken from a time when two versions of this function
1248 were part of the body of lookup_symbol_aux: this
1249 comment was taken from the version of the function
1250 that was #ifdef HPUXHPPA, and the comment was right
1251 before the 'return NULL' part of lookup_symbol_aux.
1252 (Hence the "Fall through and return 0" comment.)
1253 Elena did some digging into the situation for
1254 Fortran, and she reports:
1255
1256 "I asked around (thanks to Jeff Knaggs), and I think
1257 the story for Fortran goes like this:
1258
1259 "Apparently, in older Fortrans, '_' was not part of
1260 the user namespace. g77 attached a final '_' to
1261 procedure names as the exported symbols for linkage
1262 (foo_) , but the symbols went in the debug info just
1263 like 'foo'. The rationale behind this is not
1264 completely clear, and maybe it was done to other
1265 symbols as well, not just procedures." */
1266
1267 /* If we get here with sym == 0, the symbol was
1268 found in the minimal symbol table
1269 but not in the symtab.
1270 Fall through and return 0 to use the msymbol
1271 definition of "foo_".
1272 (Note that outer code generally follows up a call
1273 to this routine with a call to lookup_minimal_symbol(),
1274 so a 0 return means we'll just flow into that other routine).
1275
1276 This happens for Fortran "foo_" symbols,
1277 which are "foo" in the symtab.
1278
1279 This can also happen if "asm" is used to make a
1280 regular symbol but not a debugging symbol, e.g.
1281 asm(".globl _main");
1282 asm("_main:");
1283 */
1284
1285 if (symtab != NULL && sym != NULL)
1286 *symtab = s;
406bc4de
DC
1287 return fixup_symbol_section (sym, s->objfile);
1288 }
406bc4de
DC
1289 }
1290 }
1291
1292 return NULL;
1293}
ae2f03ac 1294#endif /* 0 */
406bc4de 1295
5f9a71c3
DC
1296/* A default version of lookup_symbol_nonlocal for use by languages
1297 that can't think of anything better to do. This implements the C
1298 lookup rules. */
1299
1300struct symbol *
1301basic_lookup_symbol_nonlocal (const char *name,
1302 const char *linkage_name,
1303 const struct block *block,
1304 const domain_enum domain,
1305 struct symtab **symtab)
1306{
1307 struct symbol *sym;
1308
1309 /* NOTE: carlton/2003-05-19: The comments below were written when
1310 this (or what turned into this) was part of lookup_symbol_aux;
1311 I'm much less worried about these questions now, since these
1312 decisions have turned out well, but I leave these comments here
1313 for posterity. */
1314
1315 /* NOTE: carlton/2002-12-05: There is a question as to whether or
1316 not it would be appropriate to search the current global block
1317 here as well. (That's what this code used to do before the
1318 is_a_field_of_this check was moved up.) On the one hand, it's
1319 redundant with the lookup_symbol_aux_symtabs search that happens
1320 next. On the other hand, if decode_line_1 is passed an argument
1321 like filename:var, then the user presumably wants 'var' to be
1322 searched for in filename. On the third hand, there shouldn't be
1323 multiple global variables all of which are named 'var', and it's
1324 not like decode_line_1 has ever restricted its search to only
1325 global variables in a single filename. All in all, only
1326 searching the static block here seems best: it's correct and it's
1327 cleanest. */
1328
1329 /* NOTE: carlton/2002-12-05: There's also a possible performance
1330 issue here: if you usually search for global symbols in the
1331 current file, then it would be slightly better to search the
1332 current global block before searching all the symtabs. But there
1333 are other factors that have a much greater effect on performance
1334 than that one, so I don't think we should worry about that for
1335 now. */
1336
1337 sym = lookup_symbol_static (name, linkage_name, block, domain, symtab);
1338 if (sym != NULL)
1339 return sym;
1340
1341 return lookup_symbol_global (name, linkage_name, domain, symtab);
1342}
1343
1344/* Lookup a symbol in the static block associated to BLOCK, if there
1345 is one; do nothing if BLOCK is NULL or a global block. */
1346
1347struct symbol *
1348lookup_symbol_static (const char *name,
1349 const char *linkage_name,
1350 const struct block *block,
1351 const domain_enum domain,
1352 struct symtab **symtab)
1353{
1354 const struct block *static_block = block_static_block (block);
1355
1356 if (static_block != NULL)
1357 return lookup_symbol_aux_block (name, linkage_name, static_block,
1358 domain, symtab);
1359 else
1360 return NULL;
1361}
1362
1363/* Lookup a symbol in all files' global blocks (searching psymtabs if
1364 necessary). */
1365
1366struct symbol *
1367lookup_symbol_global (const char *name,
1368 const char *linkage_name,
1369 const domain_enum domain,
1370 struct symtab **symtab)
1371{
1372 struct symbol *sym;
1373
1374 sym = lookup_symbol_aux_symtabs (GLOBAL_BLOCK, name, linkage_name,
1375 domain, symtab);
1376 if (sym != NULL)
1377 return sym;
1378
1379 return lookup_symbol_aux_psymtabs (GLOBAL_BLOCK, name, linkage_name,
1380 domain, symtab);
1381}
1382
3d4e8fd2
DC
1383/* Look, in partial_symtab PST, for symbol whose natural name is NAME.
1384 If LINKAGE_NAME is non-NULL, check in addition that the symbol's
1385 linkage name matches it. Check the global symbols if GLOBAL, the
1386 static symbols if not */
c906108c 1387
b6429628 1388struct partial_symbol *
3d4e8fd2
DC
1389lookup_partial_symbol (struct partial_symtab *pst, const char *name,
1390 const char *linkage_name, int global,
176620f1 1391 domain_enum domain)
c906108c 1392{
357e46e7 1393 struct partial_symbol *temp;
c906108c 1394 struct partial_symbol **start, **psym;
38d49aff 1395 struct partial_symbol **top, **real_top, **bottom, **center;
c906108c
SS
1396 int length = (global ? pst->n_global_syms : pst->n_static_syms);
1397 int do_linear_search = 1;
357e46e7 1398
c906108c
SS
1399 if (length == 0)
1400 {
1401 return (NULL);
1402 }
c906108c
SS
1403 start = (global ?
1404 pst->objfile->global_psymbols.list + pst->globals_offset :
c5aa993b 1405 pst->objfile->static_psymbols.list + pst->statics_offset);
357e46e7 1406
c5aa993b 1407 if (global) /* This means we can use a binary search. */
c906108c
SS
1408 {
1409 do_linear_search = 0;
1410
1411 /* Binary search. This search is guaranteed to end with center
0fe19209
DC
1412 pointing at the earliest partial symbol whose name might be
1413 correct. At that point *all* partial symbols with an
1414 appropriate name will be checked against the correct
176620f1 1415 domain. */
c906108c
SS
1416
1417 bottom = start;
1418 top = start + length - 1;
38d49aff 1419 real_top = top;
c906108c
SS
1420 while (top > bottom)
1421 {
1422 center = bottom + (top - bottom) / 2;
1423 if (!(center < top))
e1e9e218 1424 internal_error (__FILE__, __LINE__, "failed internal consistency check");
c906108c 1425 if (!do_linear_search
357e46e7 1426 && (SYMBOL_LANGUAGE (*center) == language_java))
c906108c
SS
1427 {
1428 do_linear_search = 1;
1429 }
c8be8951 1430 if (strcmp_iw_ordered (SYMBOL_NATURAL_NAME (*center), name) >= 0)
c906108c
SS
1431 {
1432 top = center;
1433 }
1434 else
1435 {
1436 bottom = center + 1;
1437 }
1438 }
1439 if (!(top == bottom))
e1e9e218 1440 internal_error (__FILE__, __LINE__, "failed internal consistency check");
357e46e7 1441
3d4e8fd2
DC
1442 while (top <= real_top
1443 && (linkage_name != NULL
1444 ? strcmp (SYMBOL_LINKAGE_NAME (*top), linkage_name) == 0
1445 : SYMBOL_MATCHES_NATURAL_NAME (*top,name)))
c906108c 1446 {
176620f1 1447 if (SYMBOL_DOMAIN (*top) == domain)
c906108c 1448 {
357e46e7 1449 return (*top);
c906108c 1450 }
c5aa993b 1451 top++;
c906108c
SS
1452 }
1453 }
1454
1455 /* Can't use a binary search or else we found during the binary search that
1456 we should also do a linear search. */
1457
1458 if (do_linear_search)
357e46e7 1459 {
c906108c
SS
1460 for (psym = start; psym < start + length; psym++)
1461 {
176620f1 1462 if (domain == SYMBOL_DOMAIN (*psym))
c906108c 1463 {
3d4e8fd2
DC
1464 if (linkage_name != NULL
1465 ? strcmp (SYMBOL_LINKAGE_NAME (*psym), linkage_name) == 0
1466 : SYMBOL_MATCHES_NATURAL_NAME (*psym, name))
c906108c
SS
1467 {
1468 return (*psym);
1469 }
1470 }
1471 }
1472 }
1473
1474 return (NULL);
1475}
1476
176620f1 1477/* Look up a type named NAME in the struct_domain. The type returned
c906108c
SS
1478 must not be opaque -- i.e., must have at least one field defined
1479
1480 This code was modelled on lookup_symbol -- the parts not relevant to looking
1481 up types were just left out. In particular it's assumed here that types
176620f1 1482 are available in struct_domain and only at file-static or global blocks. */
c906108c
SS
1483
1484
1485struct type *
fba45db2 1486lookup_transparent_type (const char *name)
c906108c
SS
1487{
1488 register struct symbol *sym;
1489 register struct symtab *s = NULL;
1490 register struct partial_symtab *ps;
1491 struct blockvector *bv;
1492 register struct objfile *objfile;
1493 register struct block *block;
c906108c
SS
1494
1495 /* Now search all the global symbols. Do the symtab's first, then
1496 check the psymtab's. If a psymtab indicates the existence
1497 of the desired name as a global, then do psymtab-to-symtab
1498 conversion on the fly and return the found symbol. */
c5aa993b 1499
c906108c 1500 ALL_SYMTABS (objfile, s)
c5aa993b
JM
1501 {
1502 bv = BLOCKVECTOR (s);
1503 block = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
176620f1 1504 sym = lookup_block_symbol (block, name, NULL, STRUCT_DOMAIN);
c5aa993b
JM
1505 if (sym && !TYPE_IS_OPAQUE (SYMBOL_TYPE (sym)))
1506 {
1507 return SYMBOL_TYPE (sym);
1508 }
1509 }
c906108c
SS
1510
1511 ALL_PSYMTABS (objfile, ps)
c5aa993b 1512 {
3d4e8fd2 1513 if (!ps->readin && lookup_partial_symbol (ps, name, NULL,
176620f1 1514 1, STRUCT_DOMAIN))
c5aa993b
JM
1515 {
1516 s = PSYMTAB_TO_SYMTAB (ps);
1517 bv = BLOCKVECTOR (s);
1518 block = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
176620f1 1519 sym = lookup_block_symbol (block, name, NULL, STRUCT_DOMAIN);
c5aa993b
JM
1520 if (!sym)
1521 {
1522 /* This shouldn't be necessary, but as a last resort
1523 * try looking in the statics even though the psymtab
1524 * claimed the symbol was global. It's possible that
1525 * the psymtab gets it wrong in some cases.
1526 */
1527 block = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
176620f1 1528 sym = lookup_block_symbol (block, name, NULL, STRUCT_DOMAIN);
c5aa993b
JM
1529 if (!sym)
1530 error ("Internal: global symbol `%s' found in %s psymtab but not in symtab.\n\
c906108c
SS
1531%s may be an inlined function, or may be a template function\n\
1532(if a template, try specifying an instantiation: %s<type>).",
c5aa993b
JM
1533 name, ps->filename, name, name);
1534 }
1535 if (!TYPE_IS_OPAQUE (SYMBOL_TYPE (sym)))
1536 return SYMBOL_TYPE (sym);
1537 }
1538 }
c906108c
SS
1539
1540 /* Now search the static file-level symbols.
1541 Not strictly correct, but more useful than an error.
1542 Do the symtab's first, then
1543 check the psymtab's. If a psymtab indicates the existence
1544 of the desired name as a file-level static, then do psymtab-to-symtab
1545 conversion on the fly and return the found symbol.
1546 */
1547
1548 ALL_SYMTABS (objfile, s)
c5aa993b
JM
1549 {
1550 bv = BLOCKVECTOR (s);
1551 block = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
176620f1 1552 sym = lookup_block_symbol (block, name, NULL, STRUCT_DOMAIN);
c5aa993b
JM
1553 if (sym && !TYPE_IS_OPAQUE (SYMBOL_TYPE (sym)))
1554 {
1555 return SYMBOL_TYPE (sym);
1556 }
1557 }
c906108c
SS
1558
1559 ALL_PSYMTABS (objfile, ps)
c5aa993b 1560 {
176620f1 1561 if (!ps->readin && lookup_partial_symbol (ps, name, NULL, 0, STRUCT_DOMAIN))
c5aa993b
JM
1562 {
1563 s = PSYMTAB_TO_SYMTAB (ps);
1564 bv = BLOCKVECTOR (s);
1565 block = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
176620f1 1566 sym = lookup_block_symbol (block, name, NULL, STRUCT_DOMAIN);
c5aa993b
JM
1567 if (!sym)
1568 {
1569 /* This shouldn't be necessary, but as a last resort
1570 * try looking in the globals even though the psymtab
1571 * claimed the symbol was static. It's possible that
1572 * the psymtab gets it wrong in some cases.
1573 */
1574 block = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
176620f1 1575 sym = lookup_block_symbol (block, name, NULL, STRUCT_DOMAIN);
c5aa993b
JM
1576 if (!sym)
1577 error ("Internal: static symbol `%s' found in %s psymtab but not in symtab.\n\
c906108c
SS
1578%s may be an inlined function, or may be a template function\n\
1579(if a template, try specifying an instantiation: %s<type>).",
c5aa993b
JM
1580 name, ps->filename, name, name);
1581 }
1582 if (!TYPE_IS_OPAQUE (SYMBOL_TYPE (sym)))
1583 return SYMBOL_TYPE (sym);
1584 }
1585 }
c906108c
SS
1586 return (struct type *) 0;
1587}
1588
1589
1590/* Find the psymtab containing main(). */
1591/* FIXME: What about languages without main() or specially linked
1592 executables that have no main() ? */
1593
1594struct partial_symtab *
fba45db2 1595find_main_psymtab (void)
c906108c
SS
1596{
1597 register struct partial_symtab *pst;
1598 register struct objfile *objfile;
1599
1600 ALL_PSYMTABS (objfile, pst)
c5aa993b 1601 {
176620f1 1602 if (lookup_partial_symbol (pst, main_name (), NULL, 1, VAR_DOMAIN))
c5aa993b
JM
1603 {
1604 return (pst);
1605 }
1606 }
c906108c
SS
1607 return (NULL);
1608}
1609
176620f1 1610/* Search BLOCK for symbol NAME in DOMAIN.
c906108c
SS
1611
1612 Note that if NAME is the demangled form of a C++ symbol, we will fail
1613 to find a match during the binary search of the non-encoded names, but
1614 for now we don't worry about the slight inefficiency of looking for
1615 a match we'll never find, since it will go pretty quick. Once the
1616 binary search terminates, we drop through and do a straight linear
1bae87b9
AF
1617 search on the symbols. Each symbol which is marked as being a ObjC/C++
1618 symbol (language_cplus or language_objc set) has both the encoded and
1619 non-encoded names tested for a match.
3121eff0 1620
5ad1c190 1621 If LINKAGE_NAME is non-NULL, verify that any symbol we find has this
3121eff0
DJ
1622 particular mangled name.
1623*/
c906108c
SS
1624
1625struct symbol *
fba45db2 1626lookup_block_symbol (register const struct block *block, const char *name,
5ad1c190 1627 const char *linkage_name,
176620f1 1628 const domain_enum domain)
c906108c 1629{
de4f826b
DC
1630 struct dict_iterator iter;
1631 struct symbol *sym;
c906108c 1632
de4f826b 1633 if (!BLOCK_FUNCTION (block))
261397f8 1634 {
de4f826b
DC
1635 for (sym = dict_iter_name_first (BLOCK_DICT (block), name, &iter);
1636 sym != NULL;
1637 sym = dict_iter_name_next (name, &iter))
261397f8 1638 {
de4f826b
DC
1639 if (SYMBOL_DOMAIN (sym) == domain
1640 && (linkage_name != NULL
1641 ? strcmp (SYMBOL_LINKAGE_NAME (sym), linkage_name) == 0 : 1))
261397f8
DJ
1642 return sym;
1643 }
1644 return NULL;
1645 }
526e70c0 1646 else
c906108c 1647 {
526e70c0
DC
1648 /* Note that parameter symbols do not always show up last in the
1649 list; this loop makes sure to take anything else other than
1650 parameter symbols first; it only uses parameter symbols as a
1651 last resort. Note that this only takes up extra computation
1652 time on a match. */
de4f826b
DC
1653
1654 struct symbol *sym_found = NULL;
1655
1656 for (sym = dict_iter_name_first (BLOCK_DICT (block), name, &iter);
1657 sym != NULL;
1658 sym = dict_iter_name_next (name, &iter))
c906108c 1659 {
176620f1 1660 if (SYMBOL_DOMAIN (sym) == domain
de4f826b
DC
1661 && (linkage_name != NULL
1662 ? strcmp (SYMBOL_LINKAGE_NAME (sym), linkage_name) == 0 : 1))
c906108c
SS
1663 {
1664 /* If SYM has aliases, then use any alias that is active
c5aa993b
JM
1665 at the current PC. If no alias is active at the current
1666 PC, then use the main symbol.
c906108c 1667
c5aa993b 1668 ?!? Is checking the current pc correct? Is this routine
a0b3c4fd
JM
1669 ever called to look up a symbol from another context?
1670
de4f826b
DC
1671 FIXME: No, it's not correct. If someone sets a
1672 conditional breakpoint at an address, then the
1673 breakpoint's `struct expression' should refer to the
1674 `struct symbol' appropriate for the breakpoint's
1675 address, which may not be the PC.
a0b3c4fd 1676
de4f826b
DC
1677 Even if it were never called from another context,
1678 it's totally bizarre for lookup_symbol's behavior to
1679 depend on the value of the inferior's current PC. We
1680 should pass in the appropriate PC as well as the
1681 block. The interface to lookup_symbol should change
1682 to require the caller to provide a PC. */
a0b3c4fd 1683
c5aa993b
JM
1684 if (SYMBOL_ALIASES (sym))
1685 sym = find_active_alias (sym, read_pc ());
c906108c
SS
1686
1687 sym_found = sym;
1688 if (SYMBOL_CLASS (sym) != LOC_ARG &&
1689 SYMBOL_CLASS (sym) != LOC_LOCAL_ARG &&
1690 SYMBOL_CLASS (sym) != LOC_REF_ARG &&
1691 SYMBOL_CLASS (sym) != LOC_REGPARM &&
1692 SYMBOL_CLASS (sym) != LOC_REGPARM_ADDR &&
4c2df51b
DJ
1693 SYMBOL_CLASS (sym) != LOC_BASEREG_ARG &&
1694 SYMBOL_CLASS (sym) != LOC_COMPUTED_ARG)
c906108c
SS
1695 {
1696 break;
1697 }
1698 }
c906108c 1699 }
de4f826b 1700 return (sym_found); /* Will be NULL if not found. */
c906108c 1701 }
c906108c
SS
1702}
1703
1704/* Given a main symbol SYM and ADDR, search through the alias
1705 list to determine if an alias is active at ADDR and return
1706 the active alias.
1707
1708 If no alias is active, then return SYM. */
1709
1710static struct symbol *
fba45db2 1711find_active_alias (struct symbol *sym, CORE_ADDR addr)
c906108c
SS
1712{
1713 struct range_list *r;
1714 struct alias_list *aliases;
1715
1716 /* If we have aliases, check them first. */
1717 aliases = SYMBOL_ALIASES (sym);
1718
1719 while (aliases)
1720 {
1721 if (!SYMBOL_RANGES (aliases->sym))
c5aa993b 1722 return aliases->sym;
c906108c
SS
1723 for (r = SYMBOL_RANGES (aliases->sym); r; r = r->next)
1724 {
1725 if (r->start <= addr && r->end > addr)
1726 return aliases->sym;
1727 }
1728 aliases = aliases->next;
1729 }
1730
1731 /* Nothing found, return the main symbol. */
1732 return sym;
1733}
c906108c 1734\f
c5aa993b 1735
c906108c
SS
1736/* Find the symtab associated with PC and SECTION. Look through the
1737 psymtabs and read in another symtab if necessary. */
1738
1739struct symtab *
fba45db2 1740find_pc_sect_symtab (CORE_ADDR pc, asection *section)
c906108c
SS
1741{
1742 register struct block *b;
1743 struct blockvector *bv;
1744 register struct symtab *s = NULL;
1745 register struct symtab *best_s = NULL;
1746 register struct partial_symtab *ps;
1747 register struct objfile *objfile;
1748 CORE_ADDR distance = 0;
8a48e967
DJ
1749 struct minimal_symbol *msymbol;
1750
1751 /* If we know that this is not a text address, return failure. This is
1752 necessary because we loop based on the block's high and low code
1753 addresses, which do not include the data ranges, and because
1754 we call find_pc_sect_psymtab which has a similar restriction based
1755 on the partial_symtab's texthigh and textlow. */
1756 msymbol = lookup_minimal_symbol_by_pc_section (pc, section);
1757 if (msymbol
1758 && (msymbol->type == mst_data
1759 || msymbol->type == mst_bss
1760 || msymbol->type == mst_abs
1761 || msymbol->type == mst_file_data
1762 || msymbol->type == mst_file_bss))
1763 return NULL;
c906108c
SS
1764
1765 /* Search all symtabs for the one whose file contains our address, and which
1766 is the smallest of all the ones containing the address. This is designed
1767 to deal with a case like symtab a is at 0x1000-0x2000 and 0x3000-0x4000
1768 and symtab b is at 0x2000-0x3000. So the GLOBAL_BLOCK for a is from
1769 0x1000-0x4000, but for address 0x2345 we want to return symtab b.
1770
1771 This happens for native ecoff format, where code from included files
1772 gets its own symtab. The symtab for the included file should have
1773 been read in already via the dependency mechanism.
1774 It might be swifter to create several symtabs with the same name
1775 like xcoff does (I'm not sure).
1776
1777 It also happens for objfiles that have their functions reordered.
1778 For these, the symtab we are looking for is not necessarily read in. */
1779
1780 ALL_SYMTABS (objfile, s)
c5aa993b
JM
1781 {
1782 bv = BLOCKVECTOR (s);
1783 b = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK);
c906108c 1784
c5aa993b 1785 if (BLOCK_START (b) <= pc
c5aa993b 1786 && BLOCK_END (b) > pc
c5aa993b
JM
1787 && (distance == 0
1788 || BLOCK_END (b) - BLOCK_START (b) < distance))
1789 {
1790 /* For an objfile that has its functions reordered,
1791 find_pc_psymtab will find the proper partial symbol table
1792 and we simply return its corresponding symtab. */
1793 /* In order to better support objfiles that contain both
1794 stabs and coff debugging info, we continue on if a psymtab
1795 can't be found. */
1796 if ((objfile->flags & OBJF_REORDERED) && objfile->psymtabs)
1797 {
1798 ps = find_pc_sect_psymtab (pc, section);
1799 if (ps)
1800 return PSYMTAB_TO_SYMTAB (ps);
1801 }
1802 if (section != 0)
1803 {
de4f826b 1804 struct dict_iterator iter;
261397f8 1805 struct symbol *sym = NULL;
c906108c 1806
de4f826b 1807 ALL_BLOCK_SYMBOLS (b, iter, sym)
c5aa993b 1808 {
261397f8
DJ
1809 fixup_symbol_section (sym, objfile);
1810 if (section == SYMBOL_BFD_SECTION (sym))
c5aa993b
JM
1811 break;
1812 }
de4f826b 1813 if (sym == NULL)
c5aa993b
JM
1814 continue; /* no symbol in this symtab matches section */
1815 }
1816 distance = BLOCK_END (b) - BLOCK_START (b);
1817 best_s = s;
1818 }
1819 }
c906108c
SS
1820
1821 if (best_s != NULL)
c5aa993b 1822 return (best_s);
c906108c
SS
1823
1824 s = NULL;
1825 ps = find_pc_sect_psymtab (pc, section);
1826 if (ps)
1827 {
1828 if (ps->readin)
1829 /* Might want to error() here (in case symtab is corrupt and
1830 will cause a core dump), but maybe we can successfully
1831 continue, so let's not. */
c906108c 1832 warning ("\
d730266b
AC
1833(Internal error: pc 0x%s in read in psymtab, but not in symtab.)\n",
1834 paddr_nz (pc));
c906108c
SS
1835 s = PSYMTAB_TO_SYMTAB (ps);
1836 }
1837 return (s);
1838}
1839
1840/* Find the symtab associated with PC. Look through the psymtabs and
1841 read in another symtab if necessary. Backward compatibility, no section */
1842
1843struct symtab *
fba45db2 1844find_pc_symtab (CORE_ADDR pc)
c906108c
SS
1845{
1846 return find_pc_sect_symtab (pc, find_pc_mapped_section (pc));
1847}
c906108c 1848\f
c5aa993b 1849
7e73cedf 1850/* Find the source file and line number for a given PC value and SECTION.
c906108c
SS
1851 Return a structure containing a symtab pointer, a line number,
1852 and a pc range for the entire source line.
1853 The value's .pc field is NOT the specified pc.
1854 NOTCURRENT nonzero means, if specified pc is on a line boundary,
1855 use the line that ends there. Otherwise, in that case, the line
1856 that begins there is used. */
1857
1858/* The big complication here is that a line may start in one file, and end just
1859 before the start of another file. This usually occurs when you #include
1860 code in the middle of a subroutine. To properly find the end of a line's PC
1861 range, we must search all symtabs associated with this compilation unit, and
1862 find the one whose first PC is closer than that of the next line in this
1863 symtab. */
1864
1865/* If it's worth the effort, we could be using a binary search. */
1866
1867struct symtab_and_line
fba45db2 1868find_pc_sect_line (CORE_ADDR pc, struct sec *section, int notcurrent)
c906108c
SS
1869{
1870 struct symtab *s;
1871 register struct linetable *l;
1872 register int len;
1873 register int i;
1874 register struct linetable_entry *item;
1875 struct symtab_and_line val;
1876 struct blockvector *bv;
1877 struct minimal_symbol *msymbol;
1878 struct minimal_symbol *mfunsym;
1879
1880 /* Info on best line seen so far, and where it starts, and its file. */
1881
1882 struct linetable_entry *best = NULL;
1883 CORE_ADDR best_end = 0;
1884 struct symtab *best_symtab = 0;
1885
1886 /* Store here the first line number
1887 of a file which contains the line at the smallest pc after PC.
1888 If we don't find a line whose range contains PC,
1889 we will use a line one less than this,
1890 with a range from the start of that file to the first line's pc. */
1891 struct linetable_entry *alt = NULL;
1892 struct symtab *alt_symtab = 0;
1893
1894 /* Info on best line seen in this file. */
1895
1896 struct linetable_entry *prev;
1897
1898 /* If this pc is not from the current frame,
1899 it is the address of the end of a call instruction.
1900 Quite likely that is the start of the following statement.
1901 But what we want is the statement containing the instruction.
1902 Fudge the pc to make sure we get that. */
1903
fe39c653 1904 init_sal (&val); /* initialize to zeroes */
c906108c 1905
b77b1eb7
JB
1906 /* It's tempting to assume that, if we can't find debugging info for
1907 any function enclosing PC, that we shouldn't search for line
1908 number info, either. However, GAS can emit line number info for
1909 assembly files --- very helpful when debugging hand-written
1910 assembly code. In such a case, we'd have no debug info for the
1911 function, but we would have line info. */
648f4f79 1912
c906108c
SS
1913 if (notcurrent)
1914 pc -= 1;
1915
c5aa993b 1916 /* elz: added this because this function returned the wrong
c906108c
SS
1917 information if the pc belongs to a stub (import/export)
1918 to call a shlib function. This stub would be anywhere between
1919 two functions in the target, and the line info was erroneously
1920 taken to be the one of the line before the pc.
c5aa993b 1921 */
c906108c 1922 /* RT: Further explanation:
c5aa993b 1923
c906108c
SS
1924 * We have stubs (trampolines) inserted between procedures.
1925 *
1926 * Example: "shr1" exists in a shared library, and a "shr1" stub also
1927 * exists in the main image.
1928 *
1929 * In the minimal symbol table, we have a bunch of symbols
1930 * sorted by start address. The stubs are marked as "trampoline",
1931 * the others appear as text. E.g.:
1932 *
1933 * Minimal symbol table for main image
1934 * main: code for main (text symbol)
1935 * shr1: stub (trampoline symbol)
1936 * foo: code for foo (text symbol)
1937 * ...
1938 * Minimal symbol table for "shr1" image:
1939 * ...
1940 * shr1: code for shr1 (text symbol)
1941 * ...
1942 *
1943 * So the code below is trying to detect if we are in the stub
1944 * ("shr1" stub), and if so, find the real code ("shr1" trampoline),
1945 * and if found, do the symbolization from the real-code address
1946 * rather than the stub address.
1947 *
1948 * Assumptions being made about the minimal symbol table:
1949 * 1. lookup_minimal_symbol_by_pc() will return a trampoline only
1950 * if we're really in the trampoline. If we're beyond it (say
1951 * we're in "foo" in the above example), it'll have a closer
1952 * symbol (the "foo" text symbol for example) and will not
1953 * return the trampoline.
1954 * 2. lookup_minimal_symbol_text() will find a real text symbol
1955 * corresponding to the trampoline, and whose address will
1956 * be different than the trampoline address. I put in a sanity
1957 * check for the address being the same, to avoid an
1958 * infinite recursion.
1959 */
c5aa993b
JM
1960 msymbol = lookup_minimal_symbol_by_pc (pc);
1961 if (msymbol != NULL)
c906108c 1962 if (MSYMBOL_TYPE (msymbol) == mst_solib_trampoline)
c5aa993b 1963 {
22abf04a 1964 mfunsym = lookup_minimal_symbol_text (DEPRECATED_SYMBOL_NAME (msymbol), NULL, NULL);
c5aa993b
JM
1965 if (mfunsym == NULL)
1966 /* I eliminated this warning since it is coming out
1967 * in the following situation:
1968 * gdb shmain // test program with shared libraries
1969 * (gdb) break shr1 // function in shared lib
1970 * Warning: In stub for ...
1971 * In the above situation, the shared lib is not loaded yet,
1972 * so of course we can't find the real func/line info,
1973 * but the "break" still works, and the warning is annoying.
1974 * So I commented out the warning. RT */
22abf04a 1975 /* warning ("In stub for %s; unable to find real function/line info", DEPRECATED_SYMBOL_NAME (msymbol)) */ ;
c5aa993b
JM
1976 /* fall through */
1977 else if (SYMBOL_VALUE (mfunsym) == SYMBOL_VALUE (msymbol))
1978 /* Avoid infinite recursion */
1979 /* See above comment about why warning is commented out */
22abf04a 1980 /* warning ("In stub for %s; unable to find real function/line info", DEPRECATED_SYMBOL_NAME (msymbol)) */ ;
c5aa993b
JM
1981 /* fall through */
1982 else
1983 return find_pc_line (SYMBOL_VALUE (mfunsym), 0);
1984 }
c906108c
SS
1985
1986
1987 s = find_pc_sect_symtab (pc, section);
1988 if (!s)
1989 {
1990 /* if no symbol information, return previous pc */
1991 if (notcurrent)
1992 pc++;
1993 val.pc = pc;
1994 return val;
1995 }
1996
1997 bv = BLOCKVECTOR (s);
1998
1999 /* Look at all the symtabs that share this blockvector.
2000 They all have the same apriori range, that we found was right;
2001 but they have different line tables. */
2002
2003 for (; s && BLOCKVECTOR (s) == bv; s = s->next)
2004 {
2005 /* Find the best line in this symtab. */
2006 l = LINETABLE (s);
2007 if (!l)
c5aa993b 2008 continue;
c906108c
SS
2009 len = l->nitems;
2010 if (len <= 0)
2011 {
2012 /* I think len can be zero if the symtab lacks line numbers
2013 (e.g. gcc -g1). (Either that or the LINETABLE is NULL;
2014 I'm not sure which, and maybe it depends on the symbol
2015 reader). */
2016 continue;
2017 }
2018
2019 prev = NULL;
2020 item = l->item; /* Get first line info */
2021
2022 /* Is this file's first line closer than the first lines of other files?
c5aa993b 2023 If so, record this file, and its first line, as best alternate. */
c906108c
SS
2024 if (item->pc > pc && (!alt || item->pc < alt->pc))
2025 {
2026 alt = item;
2027 alt_symtab = s;
2028 }
2029
2030 for (i = 0; i < len; i++, item++)
2031 {
2032 /* Leave prev pointing to the linetable entry for the last line
2033 that started at or before PC. */
2034 if (item->pc > pc)
2035 break;
2036
2037 prev = item;
2038 }
2039
2040 /* At this point, prev points at the line whose start addr is <= pc, and
c5aa993b
JM
2041 item points at the next line. If we ran off the end of the linetable
2042 (pc >= start of the last line), then prev == item. If pc < start of
2043 the first line, prev will not be set. */
c906108c
SS
2044
2045 /* Is this file's best line closer than the best in the other files?
083ae935
DJ
2046 If so, record this file, and its best line, as best so far. Don't
2047 save prev if it represents the end of a function (i.e. line number
2048 0) instead of a real line. */
c906108c 2049
083ae935 2050 if (prev && prev->line && (!best || prev->pc > best->pc))
c906108c
SS
2051 {
2052 best = prev;
2053 best_symtab = s;
25d53da1
KB
2054
2055 /* Discard BEST_END if it's before the PC of the current BEST. */
2056 if (best_end <= best->pc)
2057 best_end = 0;
c906108c 2058 }
25d53da1
KB
2059
2060 /* If another line (denoted by ITEM) is in the linetable and its
2061 PC is after BEST's PC, but before the current BEST_END, then
2062 use ITEM's PC as the new best_end. */
2063 if (best && i < len && item->pc > best->pc
2064 && (best_end == 0 || best_end > item->pc))
2065 best_end = item->pc;
c906108c
SS
2066 }
2067
2068 if (!best_symtab)
2069 {
2070 if (!alt_symtab)
2071 { /* If we didn't find any line # info, just
2072 return zeros. */
2073 val.pc = pc;
2074 }
2075 else
2076 {
2077 val.symtab = alt_symtab;
2078 val.line = alt->line - 1;
2079
2080 /* Don't return line 0, that means that we didn't find the line. */
c5aa993b
JM
2081 if (val.line == 0)
2082 ++val.line;
c906108c
SS
2083
2084 val.pc = BLOCK_END (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK));
2085 val.end = alt->pc;
2086 }
2087 }
e8717518
FF
2088 else if (best->line == 0)
2089 {
2090 /* If our best fit is in a range of PC's for which no line
2091 number info is available (line number is zero) then we didn't
2092 find any valid line information. */
2093 val.pc = pc;
2094 }
c906108c
SS
2095 else
2096 {
2097 val.symtab = best_symtab;
2098 val.line = best->line;
2099 val.pc = best->pc;
2100 if (best_end && (!alt || best_end < alt->pc))
2101 val.end = best_end;
2102 else if (alt)
2103 val.end = alt->pc;
2104 else
2105 val.end = BLOCK_END (BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK));
2106 }
2107 val.section = section;
2108 return val;
2109}
2110
2111/* Backward compatibility (no section) */
2112
2113struct symtab_and_line
fba45db2 2114find_pc_line (CORE_ADDR pc, int notcurrent)
c906108c 2115{
c5aa993b 2116 asection *section;
c906108c
SS
2117
2118 section = find_pc_overlay (pc);
2119 if (pc_in_unmapped_range (pc, section))
2120 pc = overlay_mapped_address (pc, section);
2121 return find_pc_sect_line (pc, section, notcurrent);
2122}
c906108c 2123\f
c906108c
SS
2124/* Find line number LINE in any symtab whose name is the same as
2125 SYMTAB.
2126
2127 If found, return the symtab that contains the linetable in which it was
2128 found, set *INDEX to the index in the linetable of the best entry
2129 found, and set *EXACT_MATCH nonzero if the value returned is an
2130 exact match.
2131
2132 If not found, return NULL. */
2133
50641945 2134struct symtab *
fba45db2 2135find_line_symtab (struct symtab *symtab, int line, int *index, int *exact_match)
c906108c
SS
2136{
2137 int exact;
2138
2139 /* BEST_INDEX and BEST_LINETABLE identify the smallest linenumber > LINE
2140 so far seen. */
2141
2142 int best_index;
2143 struct linetable *best_linetable;
2144 struct symtab *best_symtab;
2145
2146 /* First try looking it up in the given symtab. */
2147 best_linetable = LINETABLE (symtab);
2148 best_symtab = symtab;
2149 best_index = find_line_common (best_linetable, line, &exact);
2150 if (best_index < 0 || !exact)
2151 {
2152 /* Didn't find an exact match. So we better keep looking for
c5aa993b
JM
2153 another symtab with the same name. In the case of xcoff,
2154 multiple csects for one source file (produced by IBM's FORTRAN
2155 compiler) produce multiple symtabs (this is unavoidable
2156 assuming csects can be at arbitrary places in memory and that
2157 the GLOBAL_BLOCK of a symtab has a begin and end address). */
c906108c
SS
2158
2159 /* BEST is the smallest linenumber > LINE so far seen,
c5aa993b
JM
2160 or 0 if none has been seen so far.
2161 BEST_INDEX and BEST_LINETABLE identify the item for it. */
c906108c
SS
2162 int best;
2163
2164 struct objfile *objfile;
2165 struct symtab *s;
2166
2167 if (best_index >= 0)
2168 best = best_linetable->item[best_index].line;
2169 else
2170 best = 0;
2171
2172 ALL_SYMTABS (objfile, s)
c5aa993b
JM
2173 {
2174 struct linetable *l;
2175 int ind;
c906108c 2176
c5aa993b
JM
2177 if (!STREQ (symtab->filename, s->filename))
2178 continue;
2179 l = LINETABLE (s);
2180 ind = find_line_common (l, line, &exact);
2181 if (ind >= 0)
2182 {
2183 if (exact)
2184 {
2185 best_index = ind;
2186 best_linetable = l;
2187 best_symtab = s;
2188 goto done;
2189 }
2190 if (best == 0 || l->item[ind].line < best)
2191 {
2192 best = l->item[ind].line;
2193 best_index = ind;
2194 best_linetable = l;
2195 best_symtab = s;
2196 }
2197 }
2198 }
c906108c 2199 }
c5aa993b 2200done:
c906108c
SS
2201 if (best_index < 0)
2202 return NULL;
2203
2204 if (index)
2205 *index = best_index;
2206 if (exact_match)
2207 *exact_match = exact;
2208
2209 return best_symtab;
2210}
2211\f
2212/* Set the PC value for a given source file and line number and return true.
2213 Returns zero for invalid line number (and sets the PC to 0).
2214 The source file is specified with a struct symtab. */
2215
2216int
fba45db2 2217find_line_pc (struct symtab *symtab, int line, CORE_ADDR *pc)
c906108c
SS
2218{
2219 struct linetable *l;
2220 int ind;
2221
2222 *pc = 0;
2223 if (symtab == 0)
2224 return 0;
2225
2226 symtab = find_line_symtab (symtab, line, &ind, NULL);
2227 if (symtab != NULL)
2228 {
2229 l = LINETABLE (symtab);
2230 *pc = l->item[ind].pc;
2231 return 1;
2232 }
2233 else
2234 return 0;
2235}
2236
2237/* Find the range of pc values in a line.
2238 Store the starting pc of the line into *STARTPTR
2239 and the ending pc (start of next line) into *ENDPTR.
2240 Returns 1 to indicate success.
2241 Returns 0 if could not find the specified line. */
2242
2243int
fba45db2
KB
2244find_line_pc_range (struct symtab_and_line sal, CORE_ADDR *startptr,
2245 CORE_ADDR *endptr)
c906108c
SS
2246{
2247 CORE_ADDR startaddr;
2248 struct symtab_and_line found_sal;
2249
2250 startaddr = sal.pc;
c5aa993b 2251 if (startaddr == 0 && !find_line_pc (sal.symtab, sal.line, &startaddr))
c906108c
SS
2252 return 0;
2253
2254 /* This whole function is based on address. For example, if line 10 has
2255 two parts, one from 0x100 to 0x200 and one from 0x300 to 0x400, then
2256 "info line *0x123" should say the line goes from 0x100 to 0x200
2257 and "info line *0x355" should say the line goes from 0x300 to 0x400.
2258 This also insures that we never give a range like "starts at 0x134
2259 and ends at 0x12c". */
2260
2261 found_sal = find_pc_sect_line (startaddr, sal.section, 0);
2262 if (found_sal.line != sal.line)
2263 {
2264 /* The specified line (sal) has zero bytes. */
2265 *startptr = found_sal.pc;
2266 *endptr = found_sal.pc;
2267 }
2268 else
2269 {
2270 *startptr = found_sal.pc;
2271 *endptr = found_sal.end;
2272 }
2273 return 1;
2274}
2275
2276/* Given a line table and a line number, return the index into the line
2277 table for the pc of the nearest line whose number is >= the specified one.
2278 Return -1 if none is found. The value is >= 0 if it is an index.
2279
2280 Set *EXACT_MATCH nonzero if the value returned is an exact match. */
2281
2282static int
fba45db2
KB
2283find_line_common (register struct linetable *l, register int lineno,
2284 int *exact_match)
c906108c
SS
2285{
2286 register int i;
2287 register int len;
2288
2289 /* BEST is the smallest linenumber > LINENO so far seen,
2290 or 0 if none has been seen so far.
2291 BEST_INDEX identifies the item for it. */
2292
2293 int best_index = -1;
2294 int best = 0;
2295
2296 if (lineno <= 0)
2297 return -1;
2298 if (l == 0)
2299 return -1;
2300
2301 len = l->nitems;
2302 for (i = 0; i < len; i++)
2303 {
2304 register struct linetable_entry *item = &(l->item[i]);
2305
2306 if (item->line == lineno)
2307 {
2308 /* Return the first (lowest address) entry which matches. */
2309 *exact_match = 1;
2310 return i;
2311 }
2312
2313 if (item->line > lineno && (best == 0 || item->line < best))
2314 {
2315 best = item->line;
2316 best_index = i;
2317 }
2318 }
2319
2320 /* If we got here, we didn't get an exact match. */
2321
2322 *exact_match = 0;
2323 return best_index;
2324}
2325
2326int
fba45db2 2327find_pc_line_pc_range (CORE_ADDR pc, CORE_ADDR *startptr, CORE_ADDR *endptr)
c906108c
SS
2328{
2329 struct symtab_and_line sal;
2330 sal = find_pc_line (pc, 0);
2331 *startptr = sal.pc;
2332 *endptr = sal.end;
2333 return sal.symtab != 0;
2334}
2335
2336/* Given a function symbol SYM, find the symtab and line for the start
2337 of the function.
2338 If the argument FUNFIRSTLINE is nonzero, we want the first line
2339 of real code inside the function. */
2340
50641945 2341struct symtab_and_line
fba45db2 2342find_function_start_sal (struct symbol *sym, int funfirstline)
c906108c
SS
2343{
2344 CORE_ADDR pc;
2345 struct symtab_and_line sal;
2346
2347 pc = BLOCK_START (SYMBOL_BLOCK_VALUE (sym));
2348 fixup_symbol_section (sym, NULL);
2349 if (funfirstline)
c5aa993b 2350 { /* skip "first line" of function (which is actually its prologue) */
c906108c
SS
2351 asection *section = SYMBOL_BFD_SECTION (sym);
2352 /* If function is in an unmapped overlay, use its unmapped LMA
c5aa993b 2353 address, so that SKIP_PROLOGUE has something unique to work on */
c906108c
SS
2354 if (section_is_overlay (section) &&
2355 !section_is_mapped (section))
2356 pc = overlay_unmapped_address (pc, section);
2357
2358 pc += FUNCTION_START_OFFSET;
b83266a0 2359 pc = SKIP_PROLOGUE (pc);
c906108c
SS
2360
2361 /* For overlays, map pc back into its mapped VMA range */
2362 pc = overlay_mapped_address (pc, section);
2363 }
2364 sal = find_pc_sect_line (pc, SYMBOL_BFD_SECTION (sym), 0);
2365
2366#ifdef PROLOGUE_FIRSTLINE_OVERLAP
2367 /* Convex: no need to suppress code on first line, if any */
2368 sal.pc = pc;
2369#else
2370 /* Check if SKIP_PROLOGUE left us in mid-line, and the next
2371 line is still part of the same function. */
2372 if (sal.pc != pc
2373 && BLOCK_START (SYMBOL_BLOCK_VALUE (sym)) <= sal.end
2374 && sal.end < BLOCK_END (SYMBOL_BLOCK_VALUE (sym)))
2375 {
2376 /* First pc of next line */
2377 pc = sal.end;
2378 /* Recalculate the line number (might not be N+1). */
2379 sal = find_pc_sect_line (pc, SYMBOL_BFD_SECTION (sym), 0);
2380 }
2381 sal.pc = pc;
2382#endif
2383
2384 return sal;
2385}
50641945 2386
c906108c
SS
2387/* If P is of the form "operator[ \t]+..." where `...' is
2388 some legitimate operator text, return a pointer to the
2389 beginning of the substring of the operator text.
2390 Otherwise, return "". */
2391char *
fba45db2 2392operator_chars (char *p, char **end)
c906108c
SS
2393{
2394 *end = "";
2395 if (strncmp (p, "operator", 8))
2396 return *end;
2397 p += 8;
2398
2399 /* Don't get faked out by `operator' being part of a longer
2400 identifier. */
c5aa993b 2401 if (isalpha (*p) || *p == '_' || *p == '$' || *p == '\0')
c906108c
SS
2402 return *end;
2403
2404 /* Allow some whitespace between `operator' and the operator symbol. */
2405 while (*p == ' ' || *p == '\t')
2406 p++;
2407
2408 /* Recognize 'operator TYPENAME'. */
2409
c5aa993b 2410 if (isalpha (*p) || *p == '_' || *p == '$')
c906108c 2411 {
c5aa993b
JM
2412 register char *q = p + 1;
2413 while (isalnum (*q) || *q == '_' || *q == '$')
c906108c
SS
2414 q++;
2415 *end = q;
2416 return p;
2417 }
2418
53e8ad3d
MS
2419 while (*p)
2420 switch (*p)
2421 {
2422 case '\\': /* regexp quoting */
2423 if (p[1] == '*')
2424 {
2425 if (p[2] == '=') /* 'operator\*=' */
2426 *end = p + 3;
2427 else /* 'operator\*' */
2428 *end = p + 2;
2429 return p;
2430 }
2431 else if (p[1] == '[')
2432 {
2433 if (p[2] == ']')
2434 error ("mismatched quoting on brackets, try 'operator\\[\\]'");
2435 else if (p[2] == '\\' && p[3] == ']')
2436 {
2437 *end = p + 4; /* 'operator\[\]' */
2438 return p;
2439 }
2440 else
2441 error ("nothing is allowed between '[' and ']'");
2442 }
2443 else
2444 {
2445 /* Gratuitous qoute: skip it and move on. */
2446 p++;
2447 continue;
2448 }
2449 break;
2450 case '!':
2451 case '=':
2452 case '*':
2453 case '/':
2454 case '%':
2455 case '^':
2456 if (p[1] == '=')
2457 *end = p + 2;
2458 else
2459 *end = p + 1;
2460 return p;
2461 case '<':
2462 case '>':
2463 case '+':
2464 case '-':
2465 case '&':
2466 case '|':
2467 if (p[0] == '-' && p[1] == '>')
2468 {
2469 /* Struct pointer member operator 'operator->'. */
2470 if (p[2] == '*')
2471 {
2472 *end = p + 3; /* 'operator->*' */
2473 return p;
2474 }
2475 else if (p[2] == '\\')
2476 {
2477 *end = p + 4; /* Hopefully 'operator->\*' */
2478 return p;
2479 }
2480 else
2481 {
2482 *end = p + 2; /* 'operator->' */
2483 return p;
2484 }
2485 }
2486 if (p[1] == '=' || p[1] == p[0])
2487 *end = p + 2;
2488 else
2489 *end = p + 1;
2490 return p;
2491 case '~':
2492 case ',':
c5aa993b 2493 *end = p + 1;
53e8ad3d
MS
2494 return p;
2495 case '(':
2496 if (p[1] != ')')
2497 error ("`operator ()' must be specified without whitespace in `()'");
c5aa993b 2498 *end = p + 2;
53e8ad3d
MS
2499 return p;
2500 case '?':
2501 if (p[1] != ':')
2502 error ("`operator ?:' must be specified without whitespace in `?:'");
2503 *end = p + 2;
2504 return p;
2505 case '[':
2506 if (p[1] != ']')
2507 error ("`operator []' must be specified without whitespace in `[]'");
2508 *end = p + 2;
2509 return p;
2510 default:
2511 error ("`operator %s' not supported", p);
2512 break;
2513 }
2514
c906108c
SS
2515 *end = "";
2516 return *end;
2517}
c906108c 2518\f
c5aa993b 2519
c94fdfd0
EZ
2520/* If FILE is not already in the table of files, return zero;
2521 otherwise return non-zero. Optionally add FILE to the table if ADD
2522 is non-zero. If *FIRST is non-zero, forget the old table
2523 contents. */
2524static int
2525filename_seen (const char *file, int add, int *first)
c906108c 2526{
c94fdfd0
EZ
2527 /* Table of files seen so far. */
2528 static const char **tab = NULL;
c906108c
SS
2529 /* Allocated size of tab in elements.
2530 Start with one 256-byte block (when using GNU malloc.c).
2531 24 is the malloc overhead when range checking is in effect. */
2532 static int tab_alloc_size = (256 - 24) / sizeof (char *);
2533 /* Current size of tab in elements. */
2534 static int tab_cur_size;
c94fdfd0 2535 const char **p;
c906108c
SS
2536
2537 if (*first)
2538 {
2539 if (tab == NULL)
c94fdfd0 2540 tab = (const char **) xmalloc (tab_alloc_size * sizeof (*tab));
c906108c
SS
2541 tab_cur_size = 0;
2542 }
2543
c94fdfd0 2544 /* Is FILE in tab? */
c906108c 2545 for (p = tab; p < tab + tab_cur_size; p++)
c94fdfd0
EZ
2546 if (strcmp (*p, file) == 0)
2547 return 1;
2548
2549 /* No; maybe add it to tab. */
2550 if (add)
c906108c 2551 {
c94fdfd0
EZ
2552 if (tab_cur_size == tab_alloc_size)
2553 {
2554 tab_alloc_size *= 2;
2555 tab = (const char **) xrealloc ((char *) tab,
2556 tab_alloc_size * sizeof (*tab));
2557 }
2558 tab[tab_cur_size++] = file;
c906108c 2559 }
c906108c 2560
c94fdfd0
EZ
2561 return 0;
2562}
2563
2564/* Slave routine for sources_info. Force line breaks at ,'s.
2565 NAME is the name to print and *FIRST is nonzero if this is the first
2566 name printed. Set *FIRST to zero. */
2567static void
2568output_source_filename (char *name, int *first)
2569{
2570 /* Since a single source file can result in several partial symbol
2571 tables, we need to avoid printing it more than once. Note: if
2572 some of the psymtabs are read in and some are not, it gets
2573 printed both under "Source files for which symbols have been
2574 read" and "Source files for which symbols will be read in on
2575 demand". I consider this a reasonable way to deal with the
2576 situation. I'm not sure whether this can also happen for
2577 symtabs; it doesn't hurt to check. */
2578
2579 /* Was NAME already seen? */
2580 if (filename_seen (name, 1, first))
2581 {
2582 /* Yes; don't print it again. */
2583 return;
2584 }
2585 /* No; print it and reset *FIRST. */
c906108c
SS
2586 if (*first)
2587 {
2588 *first = 0;
2589 }
2590 else
2591 {
2592 printf_filtered (", ");
2593 }
2594
2595 wrap_here ("");
2596 fputs_filtered (name, gdb_stdout);
c5aa993b 2597}
c906108c
SS
2598
2599static void
fba45db2 2600sources_info (char *ignore, int from_tty)
c906108c
SS
2601{
2602 register struct symtab *s;
2603 register struct partial_symtab *ps;
2604 register struct objfile *objfile;
2605 int first;
c5aa993b 2606
c906108c
SS
2607 if (!have_full_symbols () && !have_partial_symbols ())
2608 {
e85428fc 2609 error ("No symbol table is loaded. Use the \"file\" command.");
c906108c 2610 }
c5aa993b 2611
c906108c
SS
2612 printf_filtered ("Source files for which symbols have been read in:\n\n");
2613
2614 first = 1;
2615 ALL_SYMTABS (objfile, s)
c5aa993b
JM
2616 {
2617 output_source_filename (s->filename, &first);
2618 }
c906108c 2619 printf_filtered ("\n\n");
c5aa993b 2620
c906108c
SS
2621 printf_filtered ("Source files for which symbols will be read in on demand:\n\n");
2622
2623 first = 1;
2624 ALL_PSYMTABS (objfile, ps)
c5aa993b
JM
2625 {
2626 if (!ps->readin)
2627 {
2628 output_source_filename (ps->filename, &first);
2629 }
2630 }
c906108c
SS
2631 printf_filtered ("\n");
2632}
2633
2634static int
fd118b61 2635file_matches (char *file, char *files[], int nfiles)
c906108c
SS
2636{
2637 int i;
2638
2639 if (file != NULL && nfiles != 0)
2640 {
2641 for (i = 0; i < nfiles; i++)
c5aa993b 2642 {
31889e00 2643 if (strcmp (files[i], lbasename (file)) == 0)
c5aa993b
JM
2644 return 1;
2645 }
c906108c
SS
2646 }
2647 else if (nfiles == 0)
2648 return 1;
2649 return 0;
2650}
2651
2652/* Free any memory associated with a search. */
2653void
fba45db2 2654free_search_symbols (struct symbol_search *symbols)
c906108c
SS
2655{
2656 struct symbol_search *p;
2657 struct symbol_search *next;
2658
2659 for (p = symbols; p != NULL; p = next)
2660 {
2661 next = p->next;
b8c9b27d 2662 xfree (p);
c906108c
SS
2663 }
2664}
2665
5bd98722
AC
2666static void
2667do_free_search_symbols_cleanup (void *symbols)
2668{
2669 free_search_symbols (symbols);
2670}
2671
2672struct cleanup *
2673make_cleanup_free_search_symbols (struct symbol_search *symbols)
2674{
2675 return make_cleanup (do_free_search_symbols_cleanup, symbols);
2676}
2677
434d2d4f
DJ
2678/* Helper function for sort_search_symbols and qsort. Can only
2679 sort symbols, not minimal symbols. */
2680static int
2681compare_search_syms (const void *sa, const void *sb)
2682{
2683 struct symbol_search **sym_a = (struct symbol_search **) sa;
2684 struct symbol_search **sym_b = (struct symbol_search **) sb;
2685
de5ad195
DC
2686 return strcmp (SYMBOL_PRINT_NAME ((*sym_a)->symbol),
2687 SYMBOL_PRINT_NAME ((*sym_b)->symbol));
434d2d4f
DJ
2688}
2689
2690/* Sort the ``nfound'' symbols in the list after prevtail. Leave
2691 prevtail where it is, but update its next pointer to point to
2692 the first of the sorted symbols. */
2693static struct symbol_search *
2694sort_search_symbols (struct symbol_search *prevtail, int nfound)
2695{
2696 struct symbol_search **symbols, *symp, *old_next;
2697 int i;
2698
2699 symbols = (struct symbol_search **) xmalloc (sizeof (struct symbol_search *)
2700 * nfound);
2701 symp = prevtail->next;
2702 for (i = 0; i < nfound; i++)
2703 {
2704 symbols[i] = symp;
2705 symp = symp->next;
2706 }
2707 /* Generally NULL. */
2708 old_next = symp;
2709
2710 qsort (symbols, nfound, sizeof (struct symbol_search *),
2711 compare_search_syms);
2712
2713 symp = prevtail;
2714 for (i = 0; i < nfound; i++)
2715 {
2716 symp->next = symbols[i];
2717 symp = symp->next;
2718 }
2719 symp->next = old_next;
2720
8ed32cc0 2721 xfree (symbols);
434d2d4f
DJ
2722 return symp;
2723}
5bd98722 2724
c906108c
SS
2725/* Search the symbol table for matches to the regular expression REGEXP,
2726 returning the results in *MATCHES.
2727
2728 Only symbols of KIND are searched:
176620f1
EZ
2729 FUNCTIONS_DOMAIN - search all functions
2730 TYPES_DOMAIN - search all type names
2731 METHODS_DOMAIN - search all methods NOT IMPLEMENTED
2732 VARIABLES_DOMAIN - search all symbols, excluding functions, type names,
c5aa993b 2733 and constants (enums)
c906108c
SS
2734
2735 free_search_symbols should be called when *MATCHES is no longer needed.
434d2d4f
DJ
2736
2737 The results are sorted locally; each symtab's global and static blocks are
2738 separately alphabetized.
c5aa993b 2739 */
c906108c 2740void
176620f1 2741search_symbols (char *regexp, domain_enum kind, int nfiles, char *files[],
fd118b61 2742 struct symbol_search **matches)
c906108c
SS
2743{
2744 register struct symtab *s;
2745 register struct partial_symtab *ps;
2746 register struct blockvector *bv;
2747 struct blockvector *prev_bv = 0;
2748 register struct block *b;
2749 register int i = 0;
de4f826b 2750 struct dict_iterator iter;
c906108c
SS
2751 register struct symbol *sym;
2752 struct partial_symbol **psym;
2753 struct objfile *objfile;
2754 struct minimal_symbol *msymbol;
2755 char *val;
2756 int found_misc = 0;
2757 static enum minimal_symbol_type types[]
c5aa993b
JM
2758 =
2759 {mst_data, mst_text, mst_abs, mst_unknown};
c906108c 2760 static enum minimal_symbol_type types2[]
c5aa993b
JM
2761 =
2762 {mst_bss, mst_file_text, mst_abs, mst_unknown};
c906108c 2763 static enum minimal_symbol_type types3[]
c5aa993b
JM
2764 =
2765 {mst_file_data, mst_solib_trampoline, mst_abs, mst_unknown};
c906108c 2766 static enum minimal_symbol_type types4[]
c5aa993b
JM
2767 =
2768 {mst_file_bss, mst_text, mst_abs, mst_unknown};
c906108c
SS
2769 enum minimal_symbol_type ourtype;
2770 enum minimal_symbol_type ourtype2;
2771 enum minimal_symbol_type ourtype3;
2772 enum minimal_symbol_type ourtype4;
2773 struct symbol_search *sr;
2774 struct symbol_search *psr;
2775 struct symbol_search *tail;
2776 struct cleanup *old_chain = NULL;
2777
176620f1
EZ
2778 if (kind < VARIABLES_DOMAIN)
2779 error ("must search on specific domain");
c906108c 2780
176620f1
EZ
2781 ourtype = types[(int) (kind - VARIABLES_DOMAIN)];
2782 ourtype2 = types2[(int) (kind - VARIABLES_DOMAIN)];
2783 ourtype3 = types3[(int) (kind - VARIABLES_DOMAIN)];
2784 ourtype4 = types4[(int) (kind - VARIABLES_DOMAIN)];
c906108c
SS
2785
2786 sr = *matches = NULL;
2787 tail = NULL;
2788
2789 if (regexp != NULL)
2790 {
2791 /* Make sure spacing is right for C++ operators.
2792 This is just a courtesy to make the matching less sensitive
2793 to how many spaces the user leaves between 'operator'
2794 and <TYPENAME> or <OPERATOR>. */
2795 char *opend;
2796 char *opname = operator_chars (regexp, &opend);
2797 if (*opname)
c5aa993b
JM
2798 {
2799 int fix = -1; /* -1 means ok; otherwise number of spaces needed. */
2800 if (isalpha (*opname) || *opname == '_' || *opname == '$')
2801 {
2802 /* There should 1 space between 'operator' and 'TYPENAME'. */
2803 if (opname[-1] != ' ' || opname[-2] == ' ')
2804 fix = 1;
2805 }
2806 else
2807 {
2808 /* There should 0 spaces between 'operator' and 'OPERATOR'. */
2809 if (opname[-1] == ' ')
2810 fix = 0;
2811 }
2812 /* If wrong number of spaces, fix it. */
2813 if (fix >= 0)
2814 {
045f55a6 2815 char *tmp = (char *) alloca (8 + fix + strlen (opname) + 1);
c5aa993b
JM
2816 sprintf (tmp, "operator%.*s%s", fix, " ", opname);
2817 regexp = tmp;
2818 }
2819 }
2820
c906108c 2821 if (0 != (val = re_comp (regexp)))
c5aa993b 2822 error ("Invalid regexp (%s): %s", val, regexp);
c906108c
SS
2823 }
2824
2825 /* Search through the partial symtabs *first* for all symbols
2826 matching the regexp. That way we don't have to reproduce all of
2827 the machinery below. */
2828
2829 ALL_PSYMTABS (objfile, ps)
c5aa993b
JM
2830 {
2831 struct partial_symbol **bound, **gbound, **sbound;
2832 int keep_going = 1;
2833
2834 if (ps->readin)
2835 continue;
2836
2837 gbound = objfile->global_psymbols.list + ps->globals_offset + ps->n_global_syms;
2838 sbound = objfile->static_psymbols.list + ps->statics_offset + ps->n_static_syms;
2839 bound = gbound;
2840
2841 /* Go through all of the symbols stored in a partial
2842 symtab in one loop. */
2843 psym = objfile->global_psymbols.list + ps->globals_offset;
2844 while (keep_going)
2845 {
2846 if (psym >= bound)
2847 {
2848 if (bound == gbound && ps->n_static_syms != 0)
2849 {
2850 psym = objfile->static_psymbols.list + ps->statics_offset;
2851 bound = sbound;
2852 }
2853 else
2854 keep_going = 0;
2855 continue;
2856 }
2857 else
2858 {
2859 QUIT;
2860
2861 /* If it would match (logic taken from loop below)
2862 load the file and go on to the next one */
2863 if (file_matches (ps->filename, files, nfiles)
25120b0d
DC
2864 && ((regexp == NULL
2865 || re_exec (SYMBOL_NATURAL_NAME (*psym)) != 0)
176620f1 2866 && ((kind == VARIABLES_DOMAIN && SYMBOL_CLASS (*psym) != LOC_TYPEDEF
c5aa993b 2867 && SYMBOL_CLASS (*psym) != LOC_BLOCK)
176620f1
EZ
2868 || (kind == FUNCTIONS_DOMAIN && SYMBOL_CLASS (*psym) == LOC_BLOCK)
2869 || (kind == TYPES_DOMAIN && SYMBOL_CLASS (*psym) == LOC_TYPEDEF)
2870 || (kind == METHODS_DOMAIN && SYMBOL_CLASS (*psym) == LOC_BLOCK))))
c5aa993b
JM
2871 {
2872 PSYMTAB_TO_SYMTAB (ps);
2873 keep_going = 0;
2874 }
2875 }
2876 psym++;
2877 }
2878 }
c906108c
SS
2879
2880 /* Here, we search through the minimal symbol tables for functions
2881 and variables that match, and force their symbols to be read.
2882 This is in particular necessary for demangled variable names,
2883 which are no longer put into the partial symbol tables.
2884 The symbol will then be found during the scan of symtabs below.
2885
2886 For functions, find_pc_symtab should succeed if we have debug info
2887 for the function, for variables we have to call lookup_symbol
2888 to determine if the variable has debug info.
2889 If the lookup fails, set found_misc so that we will rescan to print
2890 any matching symbols without debug info.
c5aa993b 2891 */
c906108c 2892
176620f1 2893 if (nfiles == 0 && (kind == VARIABLES_DOMAIN || kind == FUNCTIONS_DOMAIN))
c906108c
SS
2894 {
2895 ALL_MSYMBOLS (objfile, msymbol)
c5aa993b
JM
2896 {
2897 if (MSYMBOL_TYPE (msymbol) == ourtype ||
2898 MSYMBOL_TYPE (msymbol) == ourtype2 ||
2899 MSYMBOL_TYPE (msymbol) == ourtype3 ||
2900 MSYMBOL_TYPE (msymbol) == ourtype4)
2901 {
25120b0d
DC
2902 if (regexp == NULL
2903 || re_exec (SYMBOL_NATURAL_NAME (msymbol)) != 0)
c5aa993b
JM
2904 {
2905 if (0 == find_pc_symtab (SYMBOL_VALUE_ADDRESS (msymbol)))
2906 {
b1262a02
DC
2907 /* FIXME: carlton/2003-02-04: Given that the
2908 semantics of lookup_symbol keeps on changing
2909 slightly, it would be a nice idea if we had a
2910 function lookup_symbol_minsym that found the
2911 symbol associated to a given minimal symbol (if
2912 any). */
176620f1 2913 if (kind == FUNCTIONS_DOMAIN
22abf04a 2914 || lookup_symbol (DEPRECATED_SYMBOL_NAME (msymbol),
b1262a02 2915 (struct block *) NULL,
176620f1 2916 VAR_DOMAIN,
b1262a02
DC
2917 0, (struct symtab **) NULL) == NULL)
2918 found_misc = 1;
c5aa993b
JM
2919 }
2920 }
2921 }
2922 }
c906108c
SS
2923 }
2924
2925 ALL_SYMTABS (objfile, s)
c5aa993b
JM
2926 {
2927 bv = BLOCKVECTOR (s);
2928 /* Often many files share a blockvector.
2929 Scan each blockvector only once so that
2930 we don't get every symbol many times.
2931 It happens that the first symtab in the list
2932 for any given blockvector is the main file. */
2933 if (bv != prev_bv)
2934 for (i = GLOBAL_BLOCK; i <= STATIC_BLOCK; i++)
2935 {
434d2d4f
DJ
2936 struct symbol_search *prevtail = tail;
2937 int nfound = 0;
c5aa993b 2938 b = BLOCKVECTOR_BLOCK (bv, i);
de4f826b 2939 ALL_BLOCK_SYMBOLS (b, iter, sym)
c5aa993b
JM
2940 {
2941 QUIT;
c5aa993b 2942 if (file_matches (s->filename, files, nfiles)
25120b0d
DC
2943 && ((regexp == NULL
2944 || re_exec (SYMBOL_NATURAL_NAME (sym)) != 0)
176620f1 2945 && ((kind == VARIABLES_DOMAIN && SYMBOL_CLASS (sym) != LOC_TYPEDEF
c5aa993b
JM
2946 && SYMBOL_CLASS (sym) != LOC_BLOCK
2947 && SYMBOL_CLASS (sym) != LOC_CONST)
176620f1
EZ
2948 || (kind == FUNCTIONS_DOMAIN && SYMBOL_CLASS (sym) == LOC_BLOCK)
2949 || (kind == TYPES_DOMAIN && SYMBOL_CLASS (sym) == LOC_TYPEDEF)
2950 || (kind == METHODS_DOMAIN && SYMBOL_CLASS (sym) == LOC_BLOCK))))
c5aa993b
JM
2951 {
2952 /* match */
2953 psr = (struct symbol_search *) xmalloc (sizeof (struct symbol_search));
2954 psr->block = i;
2955 psr->symtab = s;
2956 psr->symbol = sym;
2957 psr->msymbol = NULL;
2958 psr->next = NULL;
2959 if (tail == NULL)
434d2d4f 2960 sr = psr;
c5aa993b
JM
2961 else
2962 tail->next = psr;
2963 tail = psr;
434d2d4f
DJ
2964 nfound ++;
2965 }
2966 }
2967 if (nfound > 0)
2968 {
2969 if (prevtail == NULL)
2970 {
2971 struct symbol_search dummy;
2972
2973 dummy.next = sr;
2974 tail = sort_search_symbols (&dummy, nfound);
2975 sr = dummy.next;
2976
2977 old_chain = make_cleanup_free_search_symbols (sr);
c5aa993b 2978 }
434d2d4f
DJ
2979 else
2980 tail = sort_search_symbols (prevtail, nfound);
c5aa993b
JM
2981 }
2982 }
2983 prev_bv = bv;
2984 }
c906108c
SS
2985
2986 /* If there are no eyes, avoid all contact. I mean, if there are
2987 no debug symbols, then print directly from the msymbol_vector. */
2988
176620f1 2989 if (found_misc || kind != FUNCTIONS_DOMAIN)
c906108c
SS
2990 {
2991 ALL_MSYMBOLS (objfile, msymbol)
c5aa993b
JM
2992 {
2993 if (MSYMBOL_TYPE (msymbol) == ourtype ||
2994 MSYMBOL_TYPE (msymbol) == ourtype2 ||
2995 MSYMBOL_TYPE (msymbol) == ourtype3 ||
2996 MSYMBOL_TYPE (msymbol) == ourtype4)
2997 {
25120b0d
DC
2998 if (regexp == NULL
2999 || re_exec (SYMBOL_NATURAL_NAME (msymbol)) != 0)
c5aa993b
JM
3000 {
3001 /* Functions: Look up by address. */
176620f1 3002 if (kind != FUNCTIONS_DOMAIN ||
c5aa993b
JM
3003 (0 == find_pc_symtab (SYMBOL_VALUE_ADDRESS (msymbol))))
3004 {
3005 /* Variables/Absolutes: Look up by name */
22abf04a 3006 if (lookup_symbol (DEPRECATED_SYMBOL_NAME (msymbol),
176620f1 3007 (struct block *) NULL, VAR_DOMAIN,
c5aa993b
JM
3008 0, (struct symtab **) NULL) == NULL)
3009 {
3010 /* match */
3011 psr = (struct symbol_search *) xmalloc (sizeof (struct symbol_search));
3012 psr->block = i;
3013 psr->msymbol = msymbol;
3014 psr->symtab = NULL;
3015 psr->symbol = NULL;
3016 psr->next = NULL;
3017 if (tail == NULL)
3018 {
3019 sr = psr;
5bd98722 3020 old_chain = make_cleanup_free_search_symbols (sr);
c5aa993b
JM
3021 }
3022 else
3023 tail->next = psr;
3024 tail = psr;
3025 }
3026 }
3027 }
3028 }
3029 }
c906108c
SS
3030 }
3031
3032 *matches = sr;
3033 if (sr != NULL)
3034 discard_cleanups (old_chain);
3035}
3036
3037/* Helper function for symtab_symbol_info, this function uses
3038 the data returned from search_symbols() to print information
3039 regarding the match to gdb_stdout.
c5aa993b 3040 */
c906108c 3041static void
176620f1 3042print_symbol_info (domain_enum kind, struct symtab *s, struct symbol *sym,
fba45db2 3043 int block, char *last)
c906108c
SS
3044{
3045 if (last == NULL || strcmp (last, s->filename) != 0)
3046 {
3047 fputs_filtered ("\nFile ", gdb_stdout);
3048 fputs_filtered (s->filename, gdb_stdout);
3049 fputs_filtered (":\n", gdb_stdout);
3050 }
3051
176620f1 3052 if (kind != TYPES_DOMAIN && block == STATIC_BLOCK)
c906108c 3053 printf_filtered ("static ");
c5aa993b 3054
c906108c 3055 /* Typedef that is not a C++ class */
176620f1
EZ
3056 if (kind == TYPES_DOMAIN
3057 && SYMBOL_DOMAIN (sym) != STRUCT_DOMAIN)
a5238fbc 3058 typedef_print (SYMBOL_TYPE (sym), sym, gdb_stdout);
c906108c 3059 /* variable, func, or typedef-that-is-c++-class */
176620f1
EZ
3060 else if (kind < TYPES_DOMAIN ||
3061 (kind == TYPES_DOMAIN &&
3062 SYMBOL_DOMAIN (sym) == STRUCT_DOMAIN))
c906108c
SS
3063 {
3064 type_print (SYMBOL_TYPE (sym),
c5aa993b 3065 (SYMBOL_CLASS (sym) == LOC_TYPEDEF
de5ad195 3066 ? "" : SYMBOL_PRINT_NAME (sym)),
c5aa993b 3067 gdb_stdout, 0);
c906108c
SS
3068
3069 printf_filtered (";\n");
3070 }
c906108c
SS
3071}
3072
3073/* This help function for symtab_symbol_info() prints information
3074 for non-debugging symbols to gdb_stdout.
c5aa993b 3075 */
c906108c 3076static void
fba45db2 3077print_msymbol_info (struct minimal_symbol *msymbol)
c906108c 3078{
3ac4495a
MS
3079 char *tmp;
3080
3081 if (TARGET_ADDR_BIT <= 32)
14a5e767
AC
3082 tmp = local_hex_string_custom (SYMBOL_VALUE_ADDRESS (msymbol)
3083 & (CORE_ADDR) 0xffffffff,
3084 "08l");
3ac4495a 3085 else
14a5e767
AC
3086 tmp = local_hex_string_custom (SYMBOL_VALUE_ADDRESS (msymbol),
3087 "016l");
3ac4495a 3088 printf_filtered ("%s %s\n",
de5ad195 3089 tmp, SYMBOL_PRINT_NAME (msymbol));
c906108c
SS
3090}
3091
3092/* This is the guts of the commands "info functions", "info types", and
3093 "info variables". It calls search_symbols to find all matches and then
3094 print_[m]symbol_info to print out some useful information about the
3095 matches.
c5aa993b 3096 */
c906108c 3097static void
176620f1 3098symtab_symbol_info (char *regexp, domain_enum kind, int from_tty)
c906108c
SS
3099{
3100 static char *classnames[]
c5aa993b
JM
3101 =
3102 {"variable", "function", "type", "method"};
c906108c
SS
3103 struct symbol_search *symbols;
3104 struct symbol_search *p;
3105 struct cleanup *old_chain;
3106 char *last_filename = NULL;
3107 int first = 1;
3108
3109 /* must make sure that if we're interrupted, symbols gets freed */
3110 search_symbols (regexp, kind, 0, (char **) NULL, &symbols);
5bd98722 3111 old_chain = make_cleanup_free_search_symbols (symbols);
c906108c
SS
3112
3113 printf_filtered (regexp
c5aa993b
JM
3114 ? "All %ss matching regular expression \"%s\":\n"
3115 : "All defined %ss:\n",
176620f1 3116 classnames[(int) (kind - VARIABLES_DOMAIN)], regexp);
c906108c
SS
3117
3118 for (p = symbols; p != NULL; p = p->next)
3119 {
3120 QUIT;
3121
3122 if (p->msymbol != NULL)
c5aa993b
JM
3123 {
3124 if (first)
3125 {
3126 printf_filtered ("\nNon-debugging symbols:\n");
3127 first = 0;
3128 }
3129 print_msymbol_info (p->msymbol);
3130 }
c906108c 3131 else
c5aa993b
JM
3132 {
3133 print_symbol_info (kind,
3134 p->symtab,
3135 p->symbol,
3136 p->block,
3137 last_filename);
3138 last_filename = p->symtab->filename;
3139 }
c906108c
SS
3140 }
3141
3142 do_cleanups (old_chain);
3143}
3144
3145static void
fba45db2 3146variables_info (char *regexp, int from_tty)
c906108c 3147{
176620f1 3148 symtab_symbol_info (regexp, VARIABLES_DOMAIN, from_tty);
c906108c
SS
3149}
3150
3151static void
fba45db2 3152functions_info (char *regexp, int from_tty)
c906108c 3153{
176620f1 3154 symtab_symbol_info (regexp, FUNCTIONS_DOMAIN, from_tty);
c906108c
SS
3155}
3156
357e46e7 3157
c906108c 3158static void
fba45db2 3159types_info (char *regexp, int from_tty)
c906108c 3160{
176620f1 3161 symtab_symbol_info (regexp, TYPES_DOMAIN, from_tty);
c906108c
SS
3162}
3163
c906108c 3164/* Breakpoint all functions matching regular expression. */
8926118c 3165
8b93c638 3166void
fba45db2 3167rbreak_command_wrapper (char *regexp, int from_tty)
8b93c638
JM
3168{
3169 rbreak_command (regexp, from_tty);
3170}
8926118c 3171
c906108c 3172static void
fba45db2 3173rbreak_command (char *regexp, int from_tty)
c906108c
SS
3174{
3175 struct symbol_search *ss;
3176 struct symbol_search *p;
3177 struct cleanup *old_chain;
3178
176620f1 3179 search_symbols (regexp, FUNCTIONS_DOMAIN, 0, (char **) NULL, &ss);
5bd98722 3180 old_chain = make_cleanup_free_search_symbols (ss);
c906108c
SS
3181
3182 for (p = ss; p != NULL; p = p->next)
3183 {
3184 if (p->msymbol == NULL)
c5aa993b
JM
3185 {
3186 char *string = (char *) alloca (strlen (p->symtab->filename)
22abf04a 3187 + strlen (DEPRECATED_SYMBOL_NAME (p->symbol))
c5aa993b
JM
3188 + 4);
3189 strcpy (string, p->symtab->filename);
3190 strcat (string, ":'");
22abf04a 3191 strcat (string, DEPRECATED_SYMBOL_NAME (p->symbol));
c5aa993b
JM
3192 strcat (string, "'");
3193 break_command (string, from_tty);
176620f1 3194 print_symbol_info (FUNCTIONS_DOMAIN,
c5aa993b
JM
3195 p->symtab,
3196 p->symbol,
3197 p->block,
3198 p->symtab->filename);
3199 }
c906108c 3200 else
c5aa993b 3201 {
22abf04a 3202 break_command (DEPRECATED_SYMBOL_NAME (p->msymbol), from_tty);
c5aa993b 3203 printf_filtered ("<function, no debug info> %s;\n",
de5ad195 3204 SYMBOL_PRINT_NAME (p->msymbol));
c5aa993b 3205 }
c906108c
SS
3206 }
3207
3208 do_cleanups (old_chain);
3209}
c906108c 3210\f
c5aa993b 3211
c906108c
SS
3212/* Helper routine for make_symbol_completion_list. */
3213
3214static int return_val_size;
3215static int return_val_index;
3216static char **return_val;
3217
3218#define COMPLETION_LIST_ADD_SYMBOL(symbol, sym_text, len, text, word) \
3219 do { \
3220 if (SYMBOL_DEMANGLED_NAME (symbol) != NULL) \
3221 /* Put only the mangled name on the list. */ \
3222 /* Advantage: "b foo<TAB>" completes to "b foo(int, int)" */ \
3223 /* Disadvantage: "b foo__i<TAB>" doesn't complete. */ \
3224 completion_list_add_name \
3225 (SYMBOL_DEMANGLED_NAME (symbol), (sym_text), (len), (text), (word)); \
3226 else \
3227 completion_list_add_name \
22abf04a 3228 (DEPRECATED_SYMBOL_NAME (symbol), (sym_text), (len), (text), (word)); \
c906108c
SS
3229 } while (0)
3230
3231/* Test to see if the symbol specified by SYMNAME (which is already
c5aa993b
JM
3232 demangled for C++ symbols) matches SYM_TEXT in the first SYM_TEXT_LEN
3233 characters. If so, add it to the current completion list. */
c906108c
SS
3234
3235static void
fba45db2
KB
3236completion_list_add_name (char *symname, char *sym_text, int sym_text_len,
3237 char *text, char *word)
c906108c
SS
3238{
3239 int newsize;
3240 int i;
3241
3242 /* clip symbols that cannot match */
3243
3244 if (strncmp (symname, sym_text, sym_text_len) != 0)
3245 {
3246 return;
3247 }
3248
c906108c
SS
3249 /* We have a match for a completion, so add SYMNAME to the current list
3250 of matches. Note that the name is moved to freshly malloc'd space. */
3251
3252 {
3253 char *new;
3254 if (word == sym_text)
3255 {
3256 new = xmalloc (strlen (symname) + 5);
3257 strcpy (new, symname);
3258 }
3259 else if (word > sym_text)
3260 {
3261 /* Return some portion of symname. */
3262 new = xmalloc (strlen (symname) + 5);
3263 strcpy (new, symname + (word - sym_text));
3264 }
3265 else
3266 {
3267 /* Return some of SYM_TEXT plus symname. */
3268 new = xmalloc (strlen (symname) + (sym_text - word) + 5);
3269 strncpy (new, word, sym_text - word);
3270 new[sym_text - word] = '\0';
3271 strcat (new, symname);
3272 }
3273
c906108c
SS
3274 if (return_val_index + 3 > return_val_size)
3275 {
3276 newsize = (return_val_size *= 2) * sizeof (char *);
3277 return_val = (char **) xrealloc ((char *) return_val, newsize);
3278 }
3279 return_val[return_val_index++] = new;
3280 return_val[return_val_index] = NULL;
3281 }
3282}
3283
69636828
AF
3284/* ObjC: In case we are completing on a selector, look as the msymbol
3285 again and feed all the selectors into the mill. */
3286
3287static void
3288completion_list_objc_symbol (struct minimal_symbol *msymbol, char *sym_text,
3289 int sym_text_len, char *text, char *word)
3290{
3291 static char *tmp = NULL;
3292 static unsigned int tmplen = 0;
3293
3294 char *method, *category, *selector;
3295 char *tmp2 = NULL;
3296
3297 method = SYMBOL_NATURAL_NAME (msymbol);
3298
3299 /* Is it a method? */
3300 if ((method[0] != '-') && (method[0] != '+'))
3301 return;
3302
3303 if (sym_text[0] == '[')
3304 /* Complete on shortened method method. */
3305 completion_list_add_name (method + 1, sym_text, sym_text_len, text, word);
3306
3307 while ((strlen (method) + 1) >= tmplen)
3308 {
3309 if (tmplen == 0)
3310 tmplen = 1024;
3311 else
3312 tmplen *= 2;
3313 tmp = xrealloc (tmp, tmplen);
3314 }
3315 selector = strchr (method, ' ');
3316 if (selector != NULL)
3317 selector++;
3318
3319 category = strchr (method, '(');
3320
3321 if ((category != NULL) && (selector != NULL))
3322 {
3323 memcpy (tmp, method, (category - method));
3324 tmp[category - method] = ' ';
3325 memcpy (tmp + (category - method) + 1, selector, strlen (selector) + 1);
3326 completion_list_add_name (tmp, sym_text, sym_text_len, text, word);
3327 if (sym_text[0] == '[')
3328 completion_list_add_name (tmp + 1, sym_text, sym_text_len, text, word);
3329 }
3330
3331 if (selector != NULL)
3332 {
3333 /* Complete on selector only. */
3334 strcpy (tmp, selector);
3335 tmp2 = strchr (tmp, ']');
3336 if (tmp2 != NULL)
3337 *tmp2 = '\0';
3338
3339 completion_list_add_name (tmp, sym_text, sym_text_len, text, word);
3340 }
3341}
3342
3343/* Break the non-quoted text based on the characters which are in
3344 symbols. FIXME: This should probably be language-specific. */
3345
3346static char *
3347language_search_unquoted_string (char *text, char *p)
3348{
3349 for (; p > text; --p)
3350 {
3351 if (isalnum (p[-1]) || p[-1] == '_' || p[-1] == '\0')
3352 continue;
3353 else
3354 {
3355 if ((current_language->la_language == language_objc))
3356 {
3357 if (p[-1] == ':') /* might be part of a method name */
3358 continue;
3359 else if (p[-1] == '[' && (p[-2] == '-' || p[-2] == '+'))
3360 p -= 2; /* beginning of a method name */
3361 else if (p[-1] == ' ' || p[-1] == '(' || p[-1] == ')')
3362 { /* might be part of a method name */
3363 char *t = p;
3364
3365 /* Seeing a ' ' or a '(' is not conclusive evidence
3366 that we are in the middle of a method name. However,
3367 finding "-[" or "+[" should be pretty un-ambiguous.
3368 Unfortunately we have to find it now to decide. */
3369
3370 while (t > text)
3371 if (isalnum (t[-1]) || t[-1] == '_' ||
3372 t[-1] == ' ' || t[-1] == ':' ||
3373 t[-1] == '(' || t[-1] == ')')
3374 --t;
3375 else
3376 break;
3377
3378 if (t[-1] == '[' && (t[-2] == '-' || t[-2] == '+'))
3379 p = t - 2; /* method name detected */
3380 /* else we leave with p unchanged */
3381 }
3382 }
3383 break;
3384 }
3385 }
3386 return p;
3387}
3388
3389
c94fdfd0
EZ
3390/* Return a NULL terminated array of all symbols (regardless of class)
3391 which begin by matching TEXT. If the answer is no symbols, then
3392 the return value is an array which contains only a NULL pointer.
c906108c
SS
3393
3394 Problem: All of the symbols have to be copied because readline frees them.
3395 I'm not going to worry about this; hopefully there won't be that many. */
3396
3397char **
fba45db2 3398make_symbol_completion_list (char *text, char *word)
c906108c 3399{
de4f826b
DC
3400 struct symbol *sym;
3401 struct symtab *s;
3402 struct partial_symtab *ps;
3403 struct minimal_symbol *msymbol;
3404 struct objfile *objfile;
3405 struct block *b, *surrounding_static_block = 0;
3406 struct dict_iterator iter;
3407 int j;
c906108c
SS
3408 struct partial_symbol **psym;
3409 /* The symbol we are completing on. Points in same buffer as text. */
3410 char *sym_text;
3411 /* Length of sym_text. */
3412 int sym_text_len;
3413
3414 /* Now look for the symbol we are supposed to complete on.
3415 FIXME: This should be language-specific. */
3416 {
3417 char *p;
3418 char quote_found;
3419 char *quote_pos = NULL;
3420
3421 /* First see if this is a quoted string. */
3422 quote_found = '\0';
3423 for (p = text; *p != '\0'; ++p)
3424 {
3425 if (quote_found != '\0')
3426 {
3427 if (*p == quote_found)
3428 /* Found close quote. */
3429 quote_found = '\0';
3430 else if (*p == '\\' && p[1] == quote_found)
3431 /* A backslash followed by the quote character
c5aa993b 3432 doesn't end the string. */
c906108c
SS
3433 ++p;
3434 }
3435 else if (*p == '\'' || *p == '"')
3436 {
3437 quote_found = *p;
3438 quote_pos = p;
3439 }
3440 }
3441 if (quote_found == '\'')
3442 /* A string within single quotes can be a symbol, so complete on it. */
3443 sym_text = quote_pos + 1;
3444 else if (quote_found == '"')
3445 /* A double-quoted string is never a symbol, nor does it make sense
c5aa993b 3446 to complete it any other way. */
c94fdfd0
EZ
3447 {
3448 return_val = (char **) xmalloc (sizeof (char *));
3449 return_val[0] = NULL;
3450 return return_val;
3451 }
c906108c
SS
3452 else
3453 {
3454 /* It is not a quoted string. Break it based on the characters
3455 which are in symbols. */
3456 while (p > text)
3457 {
3458 if (isalnum (p[-1]) || p[-1] == '_' || p[-1] == '\0')
3459 --p;
3460 else
3461 break;
3462 }
3463 sym_text = p;
3464 }
3465 }
3466
3467 sym_text_len = strlen (sym_text);
3468
3469 return_val_size = 100;
3470 return_val_index = 0;
3471 return_val = (char **) xmalloc ((return_val_size + 1) * sizeof (char *));
3472 return_val[0] = NULL;
3473
3474 /* Look through the partial symtabs for all symbols which begin
3475 by matching SYM_TEXT. Add each one that you find to the list. */
3476
3477 ALL_PSYMTABS (objfile, ps)
c5aa993b
JM
3478 {
3479 /* If the psymtab's been read in we'll get it when we search
3480 through the blockvector. */
3481 if (ps->readin)
3482 continue;
3483
3484 for (psym = objfile->global_psymbols.list + ps->globals_offset;
3485 psym < (objfile->global_psymbols.list + ps->globals_offset
3486 + ps->n_global_syms);
3487 psym++)
3488 {
3489 /* If interrupted, then quit. */
3490 QUIT;
3491 COMPLETION_LIST_ADD_SYMBOL (*psym, sym_text, sym_text_len, text, word);
3492 }
3493
3494 for (psym = objfile->static_psymbols.list + ps->statics_offset;
3495 psym < (objfile->static_psymbols.list + ps->statics_offset
3496 + ps->n_static_syms);
3497 psym++)
3498 {
3499 QUIT;
3500 COMPLETION_LIST_ADD_SYMBOL (*psym, sym_text, sym_text_len, text, word);
3501 }
3502 }
c906108c
SS
3503
3504 /* At this point scan through the misc symbol vectors and add each
3505 symbol you find to the list. Eventually we want to ignore
3506 anything that isn't a text symbol (everything else will be
3507 handled by the psymtab code above). */
3508
3509 ALL_MSYMBOLS (objfile, msymbol)
c5aa993b
JM
3510 {
3511 QUIT;
3512 COMPLETION_LIST_ADD_SYMBOL (msymbol, sym_text, sym_text_len, text, word);
69636828
AF
3513
3514 completion_list_objc_symbol (msymbol, sym_text, sym_text_len, text, word);
c5aa993b 3515 }
c906108c
SS
3516
3517 /* Search upwards from currently selected frame (so that we can
3518 complete on local vars. */
3519
ae767bfb 3520 for (b = get_selected_block (0); b != NULL; b = BLOCK_SUPERBLOCK (b))
c906108c
SS
3521 {
3522 if (!BLOCK_SUPERBLOCK (b))
3523 {
c5aa993b 3524 surrounding_static_block = b; /* For elmin of dups */
c906108c 3525 }
c5aa993b 3526
c906108c 3527 /* Also catch fields of types defined in this places which match our
c5aa993b 3528 text string. Only complete on types visible from current context. */
c906108c 3529
de4f826b 3530 ALL_BLOCK_SYMBOLS (b, iter, sym)
c906108c 3531 {
69636828 3532 QUIT;
c906108c
SS
3533 COMPLETION_LIST_ADD_SYMBOL (sym, sym_text, sym_text_len, text, word);
3534 if (SYMBOL_CLASS (sym) == LOC_TYPEDEF)
3535 {
3536 struct type *t = SYMBOL_TYPE (sym);
3537 enum type_code c = TYPE_CODE (t);
3538
3539 if (c == TYPE_CODE_UNION || c == TYPE_CODE_STRUCT)
3540 {
3541 for (j = TYPE_N_BASECLASSES (t); j < TYPE_NFIELDS (t); j++)
3542 {
3543 if (TYPE_FIELD_NAME (t, j))
3544 {
3545 completion_list_add_name (TYPE_FIELD_NAME (t, j),
c5aa993b 3546 sym_text, sym_text_len, text, word);
c906108c
SS
3547 }
3548 }
3549 }
3550 }
3551 }
3552 }
3553
3554 /* Go through the symtabs and check the externs and statics for
3555 symbols which match. */
3556
3557 ALL_SYMTABS (objfile, s)
c5aa993b
JM
3558 {
3559 QUIT;
3560 b = BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), GLOBAL_BLOCK);
de4f826b 3561 ALL_BLOCK_SYMBOLS (b, iter, sym)
c5aa993b 3562 {
c5aa993b
JM
3563 COMPLETION_LIST_ADD_SYMBOL (sym, sym_text, sym_text_len, text, word);
3564 }
3565 }
c906108c
SS
3566
3567 ALL_SYMTABS (objfile, s)
c5aa993b
JM
3568 {
3569 QUIT;
3570 b = BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), STATIC_BLOCK);
3571 /* Don't do this block twice. */
3572 if (b == surrounding_static_block)
3573 continue;
de4f826b 3574 ALL_BLOCK_SYMBOLS (b, iter, sym)
c5aa993b 3575 {
c5aa993b
JM
3576 COMPLETION_LIST_ADD_SYMBOL (sym, sym_text, sym_text_len, text, word);
3577 }
3578 }
c906108c
SS
3579
3580 return (return_val);
3581}
3582
c94fdfd0
EZ
3583/* Like make_symbol_completion_list, but returns a list of symbols
3584 defined in a source file FILE. */
3585
3586char **
3587make_file_symbol_completion_list (char *text, char *word, char *srcfile)
3588{
3589 register struct symbol *sym;
3590 register struct symtab *s;
3591 register struct block *b;
de4f826b 3592 struct dict_iterator iter;
c94fdfd0
EZ
3593 /* The symbol we are completing on. Points in same buffer as text. */
3594 char *sym_text;
3595 /* Length of sym_text. */
3596 int sym_text_len;
3597
3598 /* Now look for the symbol we are supposed to complete on.
3599 FIXME: This should be language-specific. */
3600 {
3601 char *p;
3602 char quote_found;
3603 char *quote_pos = NULL;
3604
3605 /* First see if this is a quoted string. */
3606 quote_found = '\0';
3607 for (p = text; *p != '\0'; ++p)
3608 {
3609 if (quote_found != '\0')
3610 {
3611 if (*p == quote_found)
3612 /* Found close quote. */
3613 quote_found = '\0';
3614 else if (*p == '\\' && p[1] == quote_found)
3615 /* A backslash followed by the quote character
3616 doesn't end the string. */
3617 ++p;
3618 }
3619 else if (*p == '\'' || *p == '"')
3620 {
3621 quote_found = *p;
3622 quote_pos = p;
3623 }
3624 }
3625 if (quote_found == '\'')
3626 /* A string within single quotes can be a symbol, so complete on it. */
3627 sym_text = quote_pos + 1;
3628 else if (quote_found == '"')
3629 /* A double-quoted string is never a symbol, nor does it make sense
3630 to complete it any other way. */
3631 {
3632 return_val = (char **) xmalloc (sizeof (char *));
3633 return_val[0] = NULL;
3634 return return_val;
3635 }
3636 else
3637 {
69636828
AF
3638 /* Not a quoted string. */
3639 sym_text = language_search_unquoted_string (text, p);
c94fdfd0
EZ
3640 }
3641 }
3642
3643 sym_text_len = strlen (sym_text);
3644
3645 return_val_size = 10;
3646 return_val_index = 0;
3647 return_val = (char **) xmalloc ((return_val_size + 1) * sizeof (char *));
3648 return_val[0] = NULL;
3649
3650 /* Find the symtab for SRCFILE (this loads it if it was not yet read
3651 in). */
3652 s = lookup_symtab (srcfile);
3653 if (s == NULL)
3654 {
3655 /* Maybe they typed the file with leading directories, while the
3656 symbol tables record only its basename. */
31889e00 3657 const char *tail = lbasename (srcfile);
c94fdfd0
EZ
3658
3659 if (tail > srcfile)
3660 s = lookup_symtab (tail);
3661 }
3662
3663 /* If we have no symtab for that file, return an empty list. */
3664 if (s == NULL)
3665 return (return_val);
3666
3667 /* Go through this symtab and check the externs and statics for
3668 symbols which match. */
3669
3670 b = BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), GLOBAL_BLOCK);
de4f826b 3671 ALL_BLOCK_SYMBOLS (b, iter, sym)
c94fdfd0 3672 {
c94fdfd0
EZ
3673 COMPLETION_LIST_ADD_SYMBOL (sym, sym_text, sym_text_len, text, word);
3674 }
3675
3676 b = BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), STATIC_BLOCK);
de4f826b 3677 ALL_BLOCK_SYMBOLS (b, iter, sym)
c94fdfd0 3678 {
c94fdfd0
EZ
3679 COMPLETION_LIST_ADD_SYMBOL (sym, sym_text, sym_text_len, text, word);
3680 }
3681
3682 return (return_val);
3683}
3684
3685/* A helper function for make_source_files_completion_list. It adds
3686 another file name to a list of possible completions, growing the
3687 list as necessary. */
3688
3689static void
3690add_filename_to_list (const char *fname, char *text, char *word,
3691 char ***list, int *list_used, int *list_alloced)
3692{
3693 char *new;
3694 size_t fnlen = strlen (fname);
3695
3696 if (*list_used + 1 >= *list_alloced)
3697 {
3698 *list_alloced *= 2;
3699 *list = (char **) xrealloc ((char *) *list,
3700 *list_alloced * sizeof (char *));
3701 }
3702
3703 if (word == text)
3704 {
3705 /* Return exactly fname. */
3706 new = xmalloc (fnlen + 5);
3707 strcpy (new, fname);
3708 }
3709 else if (word > text)
3710 {
3711 /* Return some portion of fname. */
3712 new = xmalloc (fnlen + 5);
3713 strcpy (new, fname + (word - text));
3714 }
3715 else
3716 {
3717 /* Return some of TEXT plus fname. */
3718 new = xmalloc (fnlen + (text - word) + 5);
3719 strncpy (new, word, text - word);
3720 new[text - word] = '\0';
3721 strcat (new, fname);
3722 }
3723 (*list)[*list_used] = new;
3724 (*list)[++*list_used] = NULL;
3725}
3726
3727static int
3728not_interesting_fname (const char *fname)
3729{
3730 static const char *illegal_aliens[] = {
3731 "_globals_", /* inserted by coff_symtab_read */
3732 NULL
3733 };
3734 int i;
3735
3736 for (i = 0; illegal_aliens[i]; i++)
3737 {
3738 if (strcmp (fname, illegal_aliens[i]) == 0)
3739 return 1;
3740 }
3741 return 0;
3742}
3743
3744/* Return a NULL terminated array of all source files whose names
3745 begin with matching TEXT. The file names are looked up in the
3746 symbol tables of this program. If the answer is no matchess, then
3747 the return value is an array which contains only a NULL pointer. */
3748
3749char **
3750make_source_files_completion_list (char *text, char *word)
3751{
3752 register struct symtab *s;
3753 register struct partial_symtab *ps;
3754 register struct objfile *objfile;
3755 int first = 1;
3756 int list_alloced = 1;
3757 int list_used = 0;
3758 size_t text_len = strlen (text);
3759 char **list = (char **) xmalloc (list_alloced * sizeof (char *));
31889e00 3760 const char *base_name;
c94fdfd0
EZ
3761
3762 list[0] = NULL;
3763
3764 if (!have_full_symbols () && !have_partial_symbols ())
3765 return list;
3766
3767 ALL_SYMTABS (objfile, s)
3768 {
3769 if (not_interesting_fname (s->filename))
3770 continue;
3771 if (!filename_seen (s->filename, 1, &first)
3772#if HAVE_DOS_BASED_FILE_SYSTEM
3773 && strncasecmp (s->filename, text, text_len) == 0
3774#else
3775 && strncmp (s->filename, text, text_len) == 0
3776#endif
3777 )
3778 {
3779 /* This file matches for a completion; add it to the current
3780 list of matches. */
3781 add_filename_to_list (s->filename, text, word,
3782 &list, &list_used, &list_alloced);
3783 }
3784 else
3785 {
3786 /* NOTE: We allow the user to type a base name when the
3787 debug info records leading directories, but not the other
3788 way around. This is what subroutines of breakpoint
3789 command do when they parse file names. */
31889e00 3790 base_name = lbasename (s->filename);
c94fdfd0
EZ
3791 if (base_name != s->filename
3792 && !filename_seen (base_name, 1, &first)
3793#if HAVE_DOS_BASED_FILE_SYSTEM
3794 && strncasecmp (base_name, text, text_len) == 0
3795#else
3796 && strncmp (base_name, text, text_len) == 0
3797#endif
3798 )
3799 add_filename_to_list (base_name, text, word,
3800 &list, &list_used, &list_alloced);
3801 }
3802 }
3803
3804 ALL_PSYMTABS (objfile, ps)
3805 {
3806 if (not_interesting_fname (ps->filename))
3807 continue;
3808 if (!ps->readin)
3809 {
3810 if (!filename_seen (ps->filename, 1, &first)
3811#if HAVE_DOS_BASED_FILE_SYSTEM
3812 && strncasecmp (ps->filename, text, text_len) == 0
3813#else
3814 && strncmp (ps->filename, text, text_len) == 0
3815#endif
3816 )
3817 {
3818 /* This file matches for a completion; add it to the
3819 current list of matches. */
3820 add_filename_to_list (ps->filename, text, word,
3821 &list, &list_used, &list_alloced);
3822
3823 }
3824 else
3825 {
31889e00 3826 base_name = lbasename (ps->filename);
c94fdfd0
EZ
3827 if (base_name != ps->filename
3828 && !filename_seen (base_name, 1, &first)
3829#if HAVE_DOS_BASED_FILE_SYSTEM
3830 && strncasecmp (base_name, text, text_len) == 0
3831#else
3832 && strncmp (base_name, text, text_len) == 0
3833#endif
3834 )
3835 add_filename_to_list (base_name, text, word,
3836 &list, &list_used, &list_alloced);
3837 }
3838 }
3839 }
3840
3841 return list;
3842}
3843
c906108c
SS
3844/* Determine if PC is in the prologue of a function. The prologue is the area
3845 between the first instruction of a function, and the first executable line.
3846 Returns 1 if PC *might* be in prologue, 0 if definately *not* in prologue.
3847
3848 If non-zero, func_start is where we think the prologue starts, possibly
3849 by previous examination of symbol table information.
3850 */
3851
3852int
fba45db2 3853in_prologue (CORE_ADDR pc, CORE_ADDR func_start)
c906108c
SS
3854{
3855 struct symtab_and_line sal;
3856 CORE_ADDR func_addr, func_end;
3857
54cf9c03
EZ
3858 /* We have several sources of information we can consult to figure
3859 this out.
3860 - Compilers usually emit line number info that marks the prologue
3861 as its own "source line". So the ending address of that "line"
3862 is the end of the prologue. If available, this is the most
3863 reliable method.
3864 - The minimal symbols and partial symbols, which can usually tell
3865 us the starting and ending addresses of a function.
3866 - If we know the function's start address, we can call the
3867 architecture-defined SKIP_PROLOGUE function to analyze the
3868 instruction stream and guess where the prologue ends.
3869 - Our `func_start' argument; if non-zero, this is the caller's
3870 best guess as to the function's entry point. At the time of
3871 this writing, handle_inferior_event doesn't get this right, so
3872 it should be our last resort. */
3873
3874 /* Consult the partial symbol table, to find which function
3875 the PC is in. */
3876 if (! find_pc_partial_function (pc, NULL, &func_addr, &func_end))
3877 {
3878 CORE_ADDR prologue_end;
c906108c 3879
54cf9c03
EZ
3880 /* We don't even have minsym information, so fall back to using
3881 func_start, if given. */
3882 if (! func_start)
3883 return 1; /* We *might* be in a prologue. */
c906108c 3884
54cf9c03 3885 prologue_end = SKIP_PROLOGUE (func_start);
c906108c 3886
54cf9c03
EZ
3887 return func_start <= pc && pc < prologue_end;
3888 }
c906108c 3889
54cf9c03
EZ
3890 /* If we have line number information for the function, that's
3891 usually pretty reliable. */
3892 sal = find_pc_line (func_addr, 0);
c906108c 3893
54cf9c03
EZ
3894 /* Now sal describes the source line at the function's entry point,
3895 which (by convention) is the prologue. The end of that "line",
3896 sal.end, is the end of the prologue.
3897
3898 Note that, for functions whose source code is all on a single
3899 line, the line number information doesn't always end up this way.
3900 So we must verify that our purported end-of-prologue address is
3901 *within* the function, not at its start or end. */
3902 if (sal.line == 0
3903 || sal.end <= func_addr
3904 || func_end <= sal.end)
3905 {
3906 /* We don't have any good line number info, so use the minsym
3907 information, together with the architecture-specific prologue
3908 scanning code. */
3909 CORE_ADDR prologue_end = SKIP_PROLOGUE (func_addr);
c906108c 3910
54cf9c03
EZ
3911 return func_addr <= pc && pc < prologue_end;
3912 }
c906108c 3913
54cf9c03
EZ
3914 /* We have line number info, and it looks good. */
3915 return func_addr <= pc && pc < sal.end;
c906108c
SS
3916}
3917
c906108c 3918\f
50641945
FN
3919struct symtabs_and_lines
3920decode_line_spec (char *string, int funfirstline)
3921{
3922 struct symtabs_and_lines sals;
0378c332
FN
3923 struct symtab_and_line cursal;
3924
50641945
FN
3925 if (string == 0)
3926 error ("Empty line specification.");
0378c332
FN
3927
3928 /* We use whatever is set as the current source line. We do not try
3929 and get a default or it will recursively call us! */
3930 cursal = get_current_source_symtab_and_line ();
3931
50641945 3932 sals = decode_line_1 (&string, funfirstline,
0378c332 3933 cursal.symtab, cursal.line,
50641945 3934 (char ***) NULL);
0378c332 3935
50641945
FN
3936 if (*string)
3937 error ("Junk at end of line specification: %s", string);
3938 return sals;
3939}
c5aa993b 3940
51cc5b07
AC
3941/* Track MAIN */
3942static char *name_of_main;
3943
3944void
3945set_main_name (const char *name)
3946{
3947 if (name_of_main != NULL)
3948 {
3949 xfree (name_of_main);
3950 name_of_main = NULL;
3951 }
3952 if (name != NULL)
3953 {
3954 name_of_main = xstrdup (name);
3955 }
3956}
3957
3958char *
3959main_name (void)
3960{
3961 if (name_of_main != NULL)
3962 return name_of_main;
3963 else
3964 return "main";
3965}
3966
3967
c906108c 3968void
fba45db2 3969_initialize_symtab (void)
c906108c
SS
3970{
3971 add_info ("variables", variables_info,
c5aa993b 3972 "All global and static variable names, or those matching REGEXP.");
c906108c 3973 if (dbx_commands)
c5aa993b
JM
3974 add_com ("whereis", class_info, variables_info,
3975 "All global and static variable names, or those matching REGEXP.");
c906108c
SS
3976
3977 add_info ("functions", functions_info,
3978 "All function names, or those matching REGEXP.");
3979
357e46e7 3980
c906108c
SS
3981 /* FIXME: This command has at least the following problems:
3982 1. It prints builtin types (in a very strange and confusing fashion).
3983 2. It doesn't print right, e.g. with
c5aa993b
JM
3984 typedef struct foo *FOO
3985 type_print prints "FOO" when we want to make it (in this situation)
3986 print "struct foo *".
c906108c
SS
3987 I also think "ptype" or "whatis" is more likely to be useful (but if
3988 there is much disagreement "info types" can be fixed). */
3989 add_info ("types", types_info,
3990 "All type names, or those matching REGEXP.");
3991
c906108c
SS
3992 add_info ("sources", sources_info,
3993 "Source files in the program.");
3994
3995 add_com ("rbreak", class_breakpoint, rbreak_command,
c5aa993b 3996 "Set a breakpoint for all functions matching REGEXP.");
c906108c
SS
3997
3998 if (xdb_commands)
3999 {
4000 add_com ("lf", class_info, sources_info, "Source files in the program");
4001 add_com ("lg", class_info, variables_info,
c5aa993b 4002 "All global and static variable names, or those matching REGEXP.");
c906108c
SS
4003 }
4004
4005 /* Initialize the one built-in type that isn't language dependent... */
4006 builtin_type_error = init_type (TYPE_CODE_ERROR, 0, 0,
4007 "<unknown type>", (struct objfile *) NULL);
4008}
This page took 0.588251 seconds and 4 git commands to generate.