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