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