gdb/
[deliverable/binutils-gdb.git] / gdb / linespec.c
CommitLineData
50641945 1/* Parser for linespec for the GNU debugger, GDB.
05ff989b 2
6aba47ca 3 Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
0fb0cc75 4 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2007, 2008,
7b6bb8da 5 2009, 2010, 2011 Free Software Foundation, Inc.
50641945
FN
6
7 This file is part of GDB.
8
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
a9762ec7 11 the Free Software Foundation; either version 3 of the License, or
50641945
FN
12 (at your option) any later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
a9762ec7 20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
50641945
FN
21
22#include "defs.h"
23#include "symtab.h"
c5f0f3d0
FN
24#include "frame.h"
25#include "command.h"
50641945
FN
26#include "symfile.h"
27#include "objfiles.h"
0378c332 28#include "source.h"
50641945 29#include "demangle.h"
c5f0f3d0
FN
30#include "value.h"
31#include "completer.h"
015a42b4 32#include "cp-abi.h"
12907978 33#include "cp-support.h"
c38da1af 34#include "parser-defs.h"
fe898f56 35#include "block.h"
d2630e69 36#include "objc-lang.h"
b9362cc7 37#include "linespec.h"
05ff989b 38#include "exceptions.h"
53c5240f 39#include "language.h"
dc67126b
NR
40#include "interps.h"
41#include "mi/mi-cmds.h"
bccdca4a 42#include "target.h"
94af9270 43#include "arch-utils.h"
c00f8484
KS
44#include <ctype.h>
45#include "cli/cli-utils.h"
50641945 46
1777feb0 47/* Prototypes for local functions. */
50641945 48
44fe14ab
DC
49static void initialize_defaults (struct symtab **default_symtab,
50 int *default_line);
51
52static struct symtabs_and_lines decode_indirect (char **argptr);
53
0960f083
DC
54static char *locate_first_half (char **argptr, int *is_quote_enclosed);
55
d2630e69
AF
56static struct symtabs_and_lines decode_objc (char **argptr,
57 int funfirstline,
58 struct symtab *file_symtab,
7efd8fc2 59 struct linespec_result *canonical,
d2630e69
AF
60 char *saved_arg);
61
614b3b14
DC
62static struct symtabs_and_lines decode_compound (char **argptr,
63 int funfirstline,
7efd8fc2 64 struct linespec_result *canonical,
e8eb7bc5 65 struct symtab *file_symtab,
614b3b14 66 char *saved_arg,
58438ac1 67 char *p);
614b3b14 68
e8eb7bc5
KS
69static struct symbol *lookup_prefix_sym (char **argptr, char *p,
70 struct symtab *);
93d91629 71
4224873a 72static struct symtabs_and_lines find_method (int funfirstline,
7efd8fc2 73 struct linespec_result *canonical,
4224873a
DC
74 char *saved_arg,
75 char *copy,
76 struct type *t,
e8eb7bc5
KS
77 struct symbol *sym_class,
78 struct symtab *);
4224873a 79
c25c4a8b
JK
80static void cplusplus_error (const char *name, const char *fmt, ...)
81 ATTRIBUTE_NORETURN ATTRIBUTE_PRINTF (2, 3);
50641945
FN
82
83static int total_number_of_methods (struct type *type);
84
53c5240f 85static int find_methods (struct type *, char *,
e8eb7bc5 86 enum language, struct symbol **, struct symtab *);
50641945 87
aee8d8ba 88static int add_matching_methods (int method_counter, struct type *t,
53c5240f 89 enum language language,
aee8d8ba
DC
90 struct symbol **sym_arr);
91
92static int add_constructors (int method_counter, struct type *t,
53c5240f 93 enum language language,
aee8d8ba
DC
94 struct symbol **sym_arr);
95
50641945 96static void build_canonical_line_spec (struct symtab_and_line *,
7efd8fc2 97 char *, struct linespec_result *);
50641945
FN
98
99static char *find_toplevel_char (char *s, char c);
100
889f28e2
AF
101static int is_objc_method_format (const char *s);
102
50641945 103static struct symtabs_and_lines decode_line_2 (struct symbol *[],
7efd8fc2
TT
104 int, int,
105 struct linespec_result *);
50641945 106
f3c39e76 107static struct symtab *symtab_from_filename (char **argptr,
58438ac1 108 char *p, int is_quote_enclosed);
f3c39e76 109
9ef07c8c
TT
110static struct symbol *find_function_symbol (char **argptr, char *p,
111 int is_quote_enclosed);
112
84fba31b
DC
113static struct
114symtabs_and_lines decode_all_digits (char **argptr,
115 struct symtab *default_symtab,
116 int default_line,
7efd8fc2 117 struct linespec_result *canonical,
88d262ca 118 struct symtab *file_symtab,
84fba31b
DC
119 char *q);
120
14e91ac5
DC
121static struct symtabs_and_lines decode_dollar (char *copy,
122 int funfirstline,
123 struct symtab *default_symtab,
7efd8fc2 124 struct linespec_result *canonical,
88d262ca 125 struct symtab *file_symtab);
14e91ac5 126
9ef07c8c
TT
127static int decode_label (struct symbol *function_symbol,
128 char *copy, struct linespec_result *canonical,
0f5238ed
TT
129 struct symtabs_and_lines *result);
130
bca02a8a
DC
131static struct symtabs_and_lines decode_variable (char *copy,
132 int funfirstline,
7efd8fc2 133 struct linespec_result *canonical,
58438ac1 134 struct symtab *file_symtab);
bca02a8a 135
413dad4d
DC
136static struct
137symtabs_and_lines symbol_found (int funfirstline,
7efd8fc2 138 struct linespec_result *canonical,
413dad4d
DC
139 char *copy,
140 struct symbol *sym,
9ef07c8c
TT
141 struct symtab *file_symtab,
142 struct symbol *function_symbol);
413dad4d
DC
143
144static struct
145symtabs_and_lines minsym_found (int funfirstline,
146 struct minimal_symbol *msymbol);
147
1777feb0 148/* Helper functions. */
50641945 149
255e7dbf
AC
150/* Issue a helpful hint on using the command completion feature on
151 single quoted demangled C++ symbols as part of the completion
152 error. */
50641945 153
c25c4a8b 154static void
255e7dbf 155cplusplus_error (const char *name, const char *fmt, ...)
50641945 156{
255e7dbf 157 struct ui_file *tmp_stream;
f3a5f1de 158 char *message;
e0881a8e 159
255e7dbf
AC
160 tmp_stream = mem_fileopen ();
161 make_cleanup_ui_file_delete (tmp_stream);
162
163 {
164 va_list args;
e0881a8e 165
255e7dbf
AC
166 va_start (args, fmt);
167 vfprintf_unfiltered (tmp_stream, fmt, args);
168 va_end (args);
169 }
170
50641945
FN
171 while (*name == '\'')
172 name++;
255e7dbf
AC
173 fprintf_unfiltered (tmp_stream,
174 ("Hint: try '%s<TAB> or '%s<ESC-?>\n"
175 "(Note leading single quote.)"),
176 name, name);
f3a5f1de 177
759ef836
PA
178 message = ui_file_xstrdup (tmp_stream, NULL);
179 make_cleanup (xfree, message);
180 throw_error (NOT_FOUND_ERROR, "%s", message);
50641945
FN
181}
182
183/* Return the number of methods described for TYPE, including the
1777feb0 184 methods from types it derives from. This can't be done in the symbol
50641945
FN
185 reader because the type of the baseclass might still be stubbed
186 when the definition of the derived class is parsed. */
187
188static int
189total_number_of_methods (struct type *type)
190{
191 int n;
192 int count;
193
194 CHECK_TYPEDEF (type);
b4ba55a1 195 if (! HAVE_CPLUS_STRUCT (type))
50641945
FN
196 return 0;
197 count = TYPE_NFN_FIELDS_TOTAL (type);
198
199 for (n = 0; n < TYPE_N_BASECLASSES (type); n++)
200 count += total_number_of_methods (TYPE_BASECLASS (type, n));
201
202 return count;
203}
204
e8eb7bc5
KS
205/* Returns the block to be used for symbol searches for the given SYMTAB,
206 which may be NULL. */
207
208static struct block *
209get_search_block (struct symtab *symtab)
210{
211 struct block *block;
212
213 if (symtab != NULL)
214 block = BLOCKVECTOR_BLOCK (BLOCKVECTOR (symtab), STATIC_BLOCK);
215 else
216 {
217 enum language save_language;
218
219 /* get_selected_block can change the current language when there is
220 no selected frame yet. */
221 save_language = current_language->la_language;
222 block = get_selected_block (0);
223 set_language (save_language);
224 }
225
226 return block;
227}
228
50641945
FN
229/* Recursive helper function for decode_line_1.
230 Look for methods named NAME in type T.
231 Return number of matches.
232 Put matches in SYM_ARR, which should have been allocated with
233 a size of total_number_of_methods (T) * sizeof (struct symbol *).
234 Note that this function is g++ specific. */
235
236static int
53c5240f 237find_methods (struct type *t, char *name, enum language language,
e8eb7bc5 238 struct symbol **sym_arr, struct symtab *file_symtab)
50641945
FN
239{
240 int i1 = 0;
241 int ibase;
50641945 242 char *class_name = type_name_no_tag (t);
c00f8484
KS
243 struct cleanup *cleanup;
244 char *canon;
245
246 /* NAME is typed by the user: it needs to be canonicalized before
247 passing to lookup_symbol. */
248 canon = cp_canonicalize_string (name);
249 if (canon != NULL)
250 {
251 name = canon;
252 cleanup = make_cleanup (xfree, name);
253 }
254 else
255 cleanup = make_cleanup (null_cleanup, NULL);
50641945
FN
256
257 /* Ignore this class if it doesn't have a name. This is ugly, but
258 unless we figure out how to get the physname without the name of
259 the class, then the loop can't do any good. */
260 if (class_name
e8eb7bc5 261 && (lookup_symbol_in_language (class_name, get_search_block (file_symtab),
2570f2b7 262 STRUCT_DOMAIN, language, (int *) NULL)))
50641945
FN
263 {
264 int method_counter;
5c717440 265 int name_len = strlen (name);
50641945 266
8bd1f2c6 267 CHECK_TYPEDEF (t);
50641945
FN
268
269 /* Loop over each method name. At this level, all overloads of a name
270 are counted as a single name. There is an inner loop which loops over
271 each overload. */
272
273 for (method_counter = TYPE_NFN_FIELDS (t) - 1;
274 method_counter >= 0;
275 --method_counter)
276 {
50641945
FN
277 char *method_name = TYPE_FN_FIELDLIST_NAME (t, method_counter);
278 char dem_opname[64];
279
280 if (strncmp (method_name, "__", 2) == 0 ||
281 strncmp (method_name, "op", 2) == 0 ||
282 strncmp (method_name, "type", 4) == 0)
283 {
284 if (cplus_demangle_opname (method_name, dem_opname, DMGL_ANSI))
285 method_name = dem_opname;
286 else if (cplus_demangle_opname (method_name, dem_opname, 0))
287 method_name = dem_opname;
288 }
289
13b57657 290 if (strcmp_iw (name, method_name) == 0)
50641945 291 /* Find all the overloaded methods with that name. */
53c5240f 292 i1 += add_matching_methods (method_counter, t, language,
aee8d8ba 293 sym_arr + i1);
5c717440
DJ
294 else if (strncmp (class_name, name, name_len) == 0
295 && (class_name[name_len] == '\0'
296 || class_name[name_len] == '<'))
53c5240f 297 i1 += add_constructors (method_counter, t, language,
aee8d8ba 298 sym_arr + i1);
50641945
FN
299 }
300 }
301
302 /* Only search baseclasses if there is no match yet, since names in
303 derived classes override those in baseclasses.
304
305 FIXME: The above is not true; it is only true of member functions
306 if they have the same number of arguments (??? - section 13.1 of the
307 ARM says the function members are not in the same scope but doesn't
308 really spell out the rules in a way I understand. In any case, if
309 the number of arguments differ this is a case in which we can overload
310 rather than hiding without any problem, and gcc 2.4.5 does overload
311 rather than hiding in this case). */
312
313 if (i1 == 0)
314 for (ibase = 0; ibase < TYPE_N_BASECLASSES (t); ibase++)
53c5240f 315 i1 += find_methods (TYPE_BASECLASS (t, ibase), name,
e8eb7bc5 316 language, sym_arr + i1, file_symtab);
50641945 317
c00f8484 318 do_cleanups (cleanup);
50641945
FN
319 return i1;
320}
321
aee8d8ba
DC
322/* Add the symbols associated to methods of the class whose type is T
323 and whose name matches the method indexed by METHOD_COUNTER in the
324 array SYM_ARR. Return the number of methods added. */
325
326static int
327add_matching_methods (int method_counter, struct type *t,
53c5240f 328 enum language language, struct symbol **sym_arr)
aee8d8ba
DC
329{
330 int field_counter;
331 int i1 = 0;
332
333 for (field_counter = TYPE_FN_FIELDLIST_LENGTH (t, method_counter) - 1;
334 field_counter >= 0;
335 --field_counter)
336 {
337 struct fn_field *f;
1d06ead6 338 const char *phys_name;
aee8d8ba
DC
339
340 f = TYPE_FN_FIELDLIST1 (t, method_counter);
341
342 if (TYPE_FN_FIELD_STUB (f, field_counter))
343 {
1d06ead6 344 char *tmp_name, *tmp2;
aee8d8ba
DC
345
346 tmp_name = gdb_mangle_name (t,
347 method_counter,
348 field_counter);
1d06ead6
TT
349 tmp2 = alloca (strlen (tmp_name) + 1);
350 strcpy (tmp2, tmp_name);
aee8d8ba 351 xfree (tmp_name);
1d06ead6 352 phys_name = tmp2;
aee8d8ba
DC
353 }
354 else
355 phys_name = TYPE_FN_FIELD_PHYSNAME (f, field_counter);
53c5240f 356
53c5240f 357 sym_arr[i1] = lookup_symbol_in_language (phys_name,
aee8d8ba 358 NULL, VAR_DOMAIN,
53c5240f 359 language,
2570f2b7 360 (int *) NULL);
aee8d8ba
DC
361 if (sym_arr[i1])
362 i1++;
363 else
364 {
365 /* This error message gets printed, but the method
1777feb0 366 still seems to be found.
aee8d8ba
DC
367 fputs_filtered("(Cannot find method ", gdb_stdout);
368 fprintf_symbol_filtered (gdb_stdout, phys_name,
1777feb0
MS
369 language_cplus,
370 DMGL_PARAMS | DMGL_ANSI);
aee8d8ba
DC
371 fputs_filtered(" - possibly inlined.)\n", gdb_stdout);
372 */
373 }
374 }
375
376 return i1;
377}
378
379/* Add the symbols associated to constructors of the class whose type
380 is CLASS_TYPE and which are indexed by by METHOD_COUNTER to the
381 array SYM_ARR. Return the number of methods added. */
382
383static int
384add_constructors (int method_counter, struct type *t,
53c5240f 385 enum language language, struct symbol **sym_arr)
aee8d8ba
DC
386{
387 int field_counter;
388 int i1 = 0;
389
390 /* For GCC 3.x and stabs, constructors and destructors
391 have names like __base_ctor and __complete_dtor.
392 Check the physname for now if we're looking for a
393 constructor. */
394 for (field_counter
395 = TYPE_FN_FIELDLIST_LENGTH (t, method_counter) - 1;
396 field_counter >= 0;
397 --field_counter)
398 {
399 struct fn_field *f;
1d06ead6 400 const char *phys_name;
53c5240f 401
aee8d8ba
DC
402 f = TYPE_FN_FIELDLIST1 (t, method_counter);
403
404 /* GCC 3.x will never produce stabs stub methods, so
405 we don't need to handle this case. */
406 if (TYPE_FN_FIELD_STUB (f, field_counter))
407 continue;
408 phys_name = TYPE_FN_FIELD_PHYSNAME (f, field_counter);
409 if (! is_constructor_name (phys_name))
410 continue;
411
412 /* If this method is actually defined, include it in the
413 list. */
53c5240f 414 sym_arr[i1] = lookup_symbol_in_language (phys_name,
aee8d8ba 415 NULL, VAR_DOMAIN,
53c5240f 416 language,
2570f2b7 417 (int *) NULL);
aee8d8ba
DC
418 if (sym_arr[i1])
419 i1++;
420 }
421
422 return i1;
423}
424
50641945
FN
425/* Helper function for decode_line_1.
426 Build a canonical line spec in CANONICAL if it is non-NULL and if
427 the SAL has a symtab.
428 If SYMNAME is non-NULL the canonical line spec is `filename:symname'.
429 If SYMNAME is NULL the line number from SAL is used and the canonical
430 line spec is `filename:linenum'. */
431
432static void
433build_canonical_line_spec (struct symtab_and_line *sal, char *symname,
7efd8fc2 434 struct linespec_result *canonical)
50641945
FN
435{
436 char **canonical_arr;
437 char *canonical_name;
438 char *filename;
439 struct symtab *s = sal->symtab;
440
441 if (s == (struct symtab *) NULL
442 || s->filename == (char *) NULL
7efd8fc2 443 || canonical == NULL)
50641945
FN
444 return;
445
446 canonical_arr = (char **) xmalloc (sizeof (char *));
7efd8fc2 447 canonical->canonical = canonical_arr;
50641945
FN
448
449 filename = s->filename;
450 if (symname != NULL)
451 {
452 canonical_name = xmalloc (strlen (filename) + strlen (symname) + 2);
453 sprintf (canonical_name, "%s:%s", filename, symname);
454 }
455 else
456 {
457 canonical_name = xmalloc (strlen (filename) + 30);
458 sprintf (canonical_name, "%s:%d", filename, sal->line);
459 }
460 canonical_arr[0] = canonical_name;
461}
462
463
464
465/* Find an instance of the character C in the string S that is outside
466 of all parenthesis pairs, single-quoted strings, and double-quoted
8120c9d5
EZ
467 strings. Also, ignore the char within a template name, like a ','
468 within foo<int, int>. */
469
50641945
FN
470static char *
471find_toplevel_char (char *s, char c)
472{
473 int quoted = 0; /* zero if we're not in quotes;
474 '"' if we're in a double-quoted string;
475 '\'' if we're in a single-quoted string. */
a04257e6 476 int depth = 0; /* Number of unclosed parens we've seen. */
50641945
FN
477 char *scan;
478
479 for (scan = s; *scan; scan++)
480 {
481 if (quoted)
482 {
483 if (*scan == quoted)
484 quoted = 0;
485 else if (*scan == '\\' && *(scan + 1))
486 scan++;
487 }
488 else if (*scan == c && ! quoted && depth == 0)
489 return scan;
490 else if (*scan == '"' || *scan == '\'')
491 quoted = *scan;
8120c9d5 492 else if (*scan == '(' || *scan == '<')
50641945 493 depth++;
8120c9d5 494 else if ((*scan == ')' || *scan == '>') && depth > 0)
50641945
FN
495 depth--;
496 }
497
498 return 0;
499}
500
889f28e2 501/* Determines if the gives string corresponds to an Objective-C method
1777feb0 502 representation, such as -[Foo bar:] or +[Foo bar]. Objective-C symbols
889f28e2
AF
503 are allowed to have spaces and parentheses in them. */
504
505static int
506is_objc_method_format (const char *s)
507{
508 if (s == NULL || *s == '\0')
509 return 0;
510 /* Handle arguments with the format FILENAME:SYMBOL. */
511 if ((s[0] == ':') && (strchr ("+-", s[1]) != NULL)
512 && (s[2] == '[') && strchr(s, ']'))
513 return 1;
514 /* Handle arguments that are just SYMBOL. */
515 else if ((strchr ("+-", s[0]) != NULL) && (s[1] == '[') && strchr(s, ']'))
516 return 1;
517 return 0;
518}
519
50641945
FN
520/* Given a list of NELTS symbols in SYM_ARR, return a list of lines to
521 operate on (ask user if necessary).
522 If CANONICAL is non-NULL return a corresponding array of mangled names
523 as canonical line specs there. */
524
525static struct symtabs_and_lines
526decode_line_2 (struct symbol *sym_arr[], int nelts, int funfirstline,
7efd8fc2 527 struct linespec_result *canonical)
50641945
FN
528{
529 struct symtabs_and_lines values, return_values;
530 char *args, *arg1;
531 int i;
532 char *prompt;
533 char *symname;
534 struct cleanup *old_chain;
535 char **canonical_arr = (char **) NULL;
717d2f5a 536 const char *select_mode = multiple_symbols_select_mode ();
50641945 537
717d2f5a 538 if (select_mode == multiple_symbols_cancel)
3e43a32a
MS
539 error (_("canceled because the command is ambiguous\n"
540 "See set/show multiple-symbol."));
717d2f5a 541
50641945
FN
542 values.sals = (struct symtab_and_line *)
543 alloca (nelts * sizeof (struct symtab_and_line));
544 return_values.sals = (struct symtab_and_line *)
545 xmalloc (nelts * sizeof (struct symtab_and_line));
b8c9b27d 546 old_chain = make_cleanup (xfree, return_values.sals);
50641945
FN
547
548 if (canonical)
549 {
550 canonical_arr = (char **) xmalloc (nelts * sizeof (char *));
b8c9b27d 551 make_cleanup (xfree, canonical_arr);
50641945 552 memset (canonical_arr, 0, nelts * sizeof (char *));
7efd8fc2 553 canonical->canonical = canonical_arr;
50641945
FN
554 }
555
556 i = 0;
50641945
FN
557 while (i < nelts)
558 {
a04257e6 559 init_sal (&return_values.sals[i]); /* Initialize to zeroes. */
fe39c653 560 init_sal (&values.sals[i]);
50641945 561 if (sym_arr[i] && SYMBOL_CLASS (sym_arr[i]) == LOC_BLOCK)
717d2f5a 562 values.sals[i] = find_function_start_sal (sym_arr[i], funfirstline);
50641945
FN
563 i++;
564 }
565
717d2f5a
JB
566 /* If select_mode is "all", then do not print the multiple-choice
567 menu and act as if the user had chosen choice "1" (all). */
dc67126b
NR
568 if (select_mode == multiple_symbols_all
569 || ui_out_is_mi_like_p (interp_ui_out (top_level_interpreter ())))
717d2f5a
JB
570 args = "1";
571 else
50641945 572 {
717d2f5a
JB
573 i = 0;
574 printf_unfiltered (_("[0] cancel\n[1] all\n"));
575 while (i < nelts)
576 {
577 if (sym_arr[i] && SYMBOL_CLASS (sym_arr[i]) == LOC_BLOCK)
578 {
579 if (values.sals[i].symtab)
580 printf_unfiltered ("[%d] %s at %s:%d\n",
581 (i + 2),
582 SYMBOL_PRINT_NAME (sym_arr[i]),
583 values.sals[i].symtab->filename,
584 values.sals[i].line);
585 else
3e43a32a
MS
586 printf_unfiltered (_("[%d] %s at ?FILE:%d [No symtab? "
587 "Probably broken debug info...]\n"),
717d2f5a
JB
588 (i + 2),
589 SYMBOL_PRINT_NAME (sym_arr[i]),
590 values.sals[i].line);
591
592 }
593 else
594 printf_unfiltered (_("?HERE\n"));
595 i++;
596 }
597
598 prompt = getenv ("PS2");
599 if (prompt == NULL)
600 {
601 prompt = "> ";
602 }
603 args = command_line_input (prompt, 0, "overload-choice");
50641945 604 }
50641945
FN
605
606 if (args == 0 || *args == 0)
e2e0b3e5 607 error_no_arg (_("one or more choice numbers"));
50641945
FN
608
609 i = 0;
610 while (*args)
611 {
612 int num;
613
614 arg1 = args;
615 while (*arg1 >= '0' && *arg1 <= '9')
616 arg1++;
617 if (*arg1 && *arg1 != ' ' && *arg1 != '\t')
8a3fe4f8 618 error (_("Arguments must be choice numbers."));
50641945
FN
619
620 num = atoi (args);
621
622 if (num == 0)
8a3fe4f8 623 error (_("canceled"));
50641945
FN
624 else if (num == 1)
625 {
626 if (canonical_arr)
627 {
628 for (i = 0; i < nelts; i++)
629 {
630 if (canonical_arr[i] == NULL)
631 {
3567439c 632 symname = SYMBOL_LINKAGE_NAME (sym_arr[i]);
1b36a34b 633 canonical_arr[i] = xstrdup (symname);
50641945
FN
634 }
635 }
636 }
637 memcpy (return_values.sals, values.sals,
638 (nelts * sizeof (struct symtab_and_line)));
639 return_values.nelts = nelts;
640 discard_cleanups (old_chain);
641 return return_values;
642 }
643
644 if (num >= nelts + 2)
645 {
a3f17187 646 printf_unfiltered (_("No choice number %d.\n"), num);
50641945
FN
647 }
648 else
649 {
650 num -= 2;
651 if (values.sals[num].pc)
652 {
653 if (canonical_arr)
654 {
3567439c 655 symname = SYMBOL_LINKAGE_NAME (sym_arr[num]);
b8c9b27d 656 make_cleanup (xfree, symname);
1b36a34b 657 canonical_arr[i] = xstrdup (symname);
50641945
FN
658 }
659 return_values.sals[i++] = values.sals[num];
660 values.sals[num].pc = 0;
661 }
662 else
663 {
3e43a32a
MS
664 printf_unfiltered (_("duplicate request for %d ignored.\n"),
665 num);
50641945
FN
666 }
667 }
668
669 args = arg1;
670 while (*args == ' ' || *args == '\t')
671 args++;
672 }
673 return_values.nelts = i;
674 discard_cleanups (old_chain);
675 return return_values;
676}
94af9270 677
3d50dd94
JK
678/* Valid delimiters for linespec keywords "if", "thread" or "task". */
679
680static int
681is_linespec_boundary (char c)
682{
683 return c == ' ' || c == '\t' || c == '\0' || c == ',';
684}
685
94af9270
KS
686/* A helper function for decode_line_1 and friends which skips P
687 past any method overload information at the beginning of P, e.g.,
688 "(const struct foo *)".
689
690 This function assumes that P has already been validated to contain
691 overload information, and it will assert if *P != '('. */
692static char *
693find_method_overload_end (char *p)
694{
695 int depth = 0;
696
697 gdb_assert (*p == '(');
698
699 while (*p)
700 {
701 if (*p == '(')
702 ++depth;
703 else if (*p == ')')
704 {
705 if (--depth == 0)
706 {
707 ++p;
708 break;
709 }
710 }
711 ++p;
712 }
713
714 return p;
715}
c00f8484 716
c00f8484 717/* Keep important information used when looking up a name. This includes
3d50dd94
JK
718 template parameters, overload information, and important keywords, including
719 the possible Java trailing type. */
c00f8484
KS
720
721static char *
3d50dd94 722keep_name_info (char *p, int on_boundary)
c00f8484 723{
3d50dd94
JK
724 const char *quotes = get_gdb_completer_quote_characters ();
725 char *saved_p = p;
726 int nest = 0;
c00f8484 727
3d50dd94
JK
728 while (*p)
729 {
730 if (strchr (quotes, *p))
731 break;
c00f8484 732
3d50dd94
JK
733 if (*p == ',' && !nest)
734 break;
c00f8484 735
3d50dd94
JK
736 if (on_boundary && !nest)
737 {
738 const char *const words[] = { "if", "thread", "task" };
739 int wordi;
c00f8484 740
3d50dd94
JK
741 for (wordi = 0; wordi < ARRAY_SIZE (words); wordi++)
742 if (strncmp (p, words[wordi], strlen (words[wordi])) == 0
743 && is_linespec_boundary (p[strlen (words[wordi])]))
744 break;
745 if (wordi < ARRAY_SIZE (words))
746 break;
747 }
c00f8484 748
3d50dd94
JK
749 if (*p == '(' || *p == '<' || *p == '[')
750 nest++;
751 else if ((*p == ')' || *p == '>' || *p == ']') && nest > 0)
752 nest--;
c00f8484 753
3d50dd94
JK
754 p++;
755
756 /* The ',' check could fail on "operator ,". */
757 p += cp_validate_operator (p);
758
759 on_boundary = is_linespec_boundary (p[-1]);
f17170e5 760 }
c00f8484 761
3d50dd94
JK
762 while (p > saved_p && is_linespec_boundary (p[-1]))
763 p--;
764
765 return p;
c00f8484
KS
766}
767
50641945 768\f
1777feb0 769/* The parser of linespec itself. */
50641945
FN
770
771/* Parse a string that specifies a line number.
772 Pass the address of a char * variable; that variable will be
773 advanced over the characters actually parsed.
774
775 The string can be:
776
777 LINENUM -- that line number in current file. PC returned is 0.
778 FILE:LINENUM -- that line in that file. PC returned is 0.
779 FUNCTION -- line number of openbrace of that function.
780 PC returned is the start of the function.
0f5238ed 781 LABEL -- a label in the current scope
50641945
FN
782 VARIABLE -- line number of definition of that variable.
783 PC returned is 0.
784 FILE:FUNCTION -- likewise, but prefer functions in that file.
785 *EXPR -- line in which address EXPR appears.
786
787 This may all be followed by an "if EXPR", which we ignore.
788
789 FUNCTION may be an undebuggable function found in minimal symbol table.
790
791 If the argument FUNFIRSTLINE is nonzero, we want the first line
792 of real code inside a function when a function is specified, and it is
793 not OK to specify a variable or type to get its line number.
794
795 DEFAULT_SYMTAB specifies the file to use if none is specified.
796 It defaults to current_source_symtab.
797 DEFAULT_LINE specifies the line number to use for relative
798 line numbers (that start with signs). Defaults to current_source_line.
799 If CANONICAL is non-NULL, store an array of strings containing the canonical
1777feb0 800 line specs there if necessary. Currently overloaded member functions and
50641945 801 line numbers or static functions without a filename yield a canonical
1777feb0 802 line spec. The array and the line spec strings are allocated on the heap,
50641945
FN
803 it is the callers responsibility to free them.
804
805 Note that it is possible to return zero for the symtab
806 if no file is validly specified. Callers must check that.
58438ac1 807 Also, the line number returned may be invalid. */
50641945
FN
808
809/* We allow single quotes in various places. This is a hideous
810 kludge, which exists because the completer can't yet deal with the
811 lack of single quotes. FIXME: write a linespec_completer which we
812 can use as appropriate instead of make_symbol_completion_list. */
813
814struct symtabs_and_lines
815decode_line_1 (char **argptr, int funfirstline, struct symtab *default_symtab,
58438ac1 816 int default_line, struct linespec_result *canonical)
50641945 817{
f3c39e76 818 char *p;
614b3b14 819 char *q;
88d262ca
DC
820 /* If a file name is specified, this is its symtab. */
821 struct symtab *file_symtab = NULL;
50641945 822
50641945 823 char *copy;
636b1a6d
DC
824 /* This says whether or not something in *ARGPTR is quoted with
825 completer_quotes (i.e. with single quotes). */
e325fb69 826 int is_quoted;
e5dd4106 827 /* Is *ARGPTR enclosed in double quotes? */
50641945 828 int is_quote_enclosed;
d2630e69 829 int is_objc_method = 0;
50641945 830 char *saved_arg = *argptr;
791dfb64
DJ
831 /* If IS_QUOTED, the end of the quoted bit. */
832 char *end_quote = NULL;
e8eb7bc5
KS
833 /* Is *ARGPTR enclosed in single quotes? */
834 int is_squote_enclosed = 0;
0e0b460e
KS
835 /* The "first half" of the linespec. */
836 char *first_half;
50641945 837
9ef07c8c
TT
838 /* If we are parsing `function:label', this holds the symbol for the
839 function. */
840 struct symbol *function_symbol = NULL;
841 /* If FUNCTION_SYMBOL is not NULL, then this is the exception that
842 was thrown when trying to parse a filename. */
843 volatile struct gdb_exception file_exception;
844
50641945
FN
845 /* Defaults have defaults. */
846
44fe14ab
DC
847 initialize_defaults (&default_symtab, &default_line);
848
a04257e6 849 /* See if arg is *PC. */
50641945 850
e325fb69
MS
851 if (**argptr == '*')
852 return decode_indirect (argptr);
5f01dbc0 853
e325fb69
MS
854 is_quoted = (strchr (get_gdb_completer_quote_characters (),
855 **argptr) != NULL);
50641945 856
791dfb64 857 if (is_quoted)
e8eb7bc5
KS
858 {
859 end_quote = skip_quoted (*argptr);
860 if (*end_quote == '\0')
861 is_squote_enclosed = 1;
862 }
50641945 863
0960f083
DC
864 /* Check to see if it's a multipart linespec (with colons or
865 periods). */
50641945 866
17763fd9
EZ
867 /* Locate the end of the first half of the linespec.
868 After the call, for instance, if the argptr string is "foo.c:123"
869 p will point at "123". If there is only one part, like "foo", p
1777feb0
MS
870 will point to "". If this is a C++ name, like "A::B::foo", p will
871 point to "::B::foo". Argptr is not changed by this call. */
50641945 872
0e0b460e 873 first_half = p = locate_first_half (argptr, &is_quote_enclosed);
50641945 874
e8eb7bc5
KS
875 /* First things first: if ARGPTR starts with a filename, get its
876 symtab and strip the filename from ARGPTR. */
877 TRY_CATCH (file_exception, RETURN_MASK_ERROR)
878 {
879 file_symtab = symtab_from_filename (argptr, p, is_quote_enclosed);
880 }
881
882 if (file_exception.reason >= 0)
883 {
884 /* Check for single quotes on the non-filename part. */
885 is_quoted = (**argptr
886 && strchr (get_gdb_completer_quote_characters (),
887 **argptr) != NULL);
888 if (is_quoted)
889 end_quote = skip_quoted (*argptr);
890
891 /* Locate the next "half" of the linespec. */
892 first_half = p = locate_first_half (argptr, &is_quote_enclosed);
893 }
894
d2630e69
AF
895 /* Check if this is an Objective-C method (anything that starts with
896 a '+' or '-' and a '['). */
889f28e2 897 if (is_objc_method_format (p))
94af9270 898 is_objc_method = 1;
d2630e69
AF
899
900 /* Check if the symbol could be an Objective-C selector. */
901
902 {
903 struct symtabs_and_lines values;
e0881a8e 904
e8eb7bc5 905 values = decode_objc (argptr, funfirstline, file_symtab,
d2630e69
AF
906 canonical, saved_arg);
907 if (values.sals != NULL)
908 return values;
909 }
910
0960f083 911 /* Does it look like there actually were two parts? */
50641945 912
791dfb64 913 if (p[0] == ':' || p[0] == '.')
50641945 914 {
17763fd9
EZ
915 /* Is it a C++ or Java compound data structure?
916 The check on p[1] == ':' is capturing the case of "::",
1777feb0 917 since p[0]==':' was checked above.
17763fd9
EZ
918 Note that the call to decode_compound does everything
919 for us, including the lookup on the symbol table, so we
1777feb0 920 can return now. */
17763fd9 921
50641945 922 if (p[0] == '.' || p[1] == ':')
791dfb64 923 {
94af9270 924 struct symtabs_and_lines values;
dcf9f4ab
JK
925 volatile struct gdb_exception ex;
926 char *saved_argptr = *argptr;
94af9270
KS
927
928 if (is_quote_enclosed)
929 ++saved_arg;
dcf9f4ab 930
2f741504
JK
931 /* Initialize it just to avoid a GCC false warning. */
932 memset (&values, 0, sizeof (values));
933
dcf9f4ab
JK
934 TRY_CATCH (ex, RETURN_MASK_ERROR)
935 {
936 values = decode_compound (argptr, funfirstline, canonical,
937 file_symtab, saved_arg, p);
938 }
e8eb7bc5 939 if ((is_quoted || is_squote_enclosed) && **argptr == '\'')
94af9270 940 *argptr = *argptr + 1;
50641945 941
dcf9f4ab
JK
942 if (ex.reason >= 0)
943 return values;
50641945 944
dcf9f4ab
JK
945 if (ex.error != NOT_FOUND_ERROR)
946 throw_exception (ex);
947
948 *argptr = saved_argptr;
949 }
950 else
50641945 951 {
dcf9f4ab
JK
952 /* If there was an exception looking up a specified filename earlier,
953 then check whether we were really given `function:label'. */
954 if (file_exception.reason < 0)
955 {
956 function_symbol = find_function_symbol (argptr, p,
957 is_quote_enclosed);
958 /* If we did not find a function, re-throw the original
959 exception. */
960 if (!function_symbol)
961 throw_exception (file_exception);
962 }
963
964 /* Check for single quotes on the non-filename part. */
965 if (!is_quoted)
966 {
967 is_quoted = (**argptr
968 && strchr (get_gdb_completer_quote_characters (),
969 **argptr) != NULL);
970 if (is_quoted)
971 end_quote = skip_quoted (*argptr);
972 }
50641945 973 }
50641945 974 }
50641945 975
bc882aa9 976 /* file_symtab is specified file's symtab, or 0 if no file specified.
9ef07c8c
TT
977 If we are parsing `function:symbol', then FUNCTION_SYMBOL is the
978 function before the `:'.
50641945
FN
979 arg no longer contains the file name. */
980
0e0b460e
KS
981 /* If the filename was quoted, we must re-check the quotation. */
982
983 if (end_quote == first_half && *end_quote!= '\0')
984 {
985 is_quoted = (**argptr
986 && strchr (get_gdb_completer_quote_characters (),
987 **argptr) != NULL);
988 if (is_quoted)
989 end_quote = skip_quoted (*argptr);
990 }
991
a04257e6 992 /* Check whether arg is all digits (and sign). */
50641945
FN
993
994 q = *argptr;
995 if (*q == '-' || *q == '+')
996 q++;
997 while (*q >= '0' && *q <= '9')
998 q++;
999
9ef07c8c
TT
1000 if (q != *argptr && (*q == 0 || *q == ' ' || *q == '\t' || *q == ',')
1001 && function_symbol == NULL)
84fba31b
DC
1002 /* We found a token consisting of all digits -- at least one digit. */
1003 return decode_all_digits (argptr, default_symtab, default_line,
88d262ca 1004 canonical, file_symtab, q);
50641945
FN
1005
1006 /* Arg token is not digits => try it as a variable name
1007 Find the next token (everything up to end or next whitespace). */
1008
a04257e6
DC
1009 if (**argptr == '$') /* May be a convenience variable. */
1010 /* One or two $ chars possible. */
1011 p = skip_quoted (*argptr + (((*argptr)[1] == '$') ? 2 : 1));
e8eb7bc5 1012 else if (is_quoted || is_squote_enclosed)
50641945 1013 {
791dfb64 1014 p = end_quote;
50641945 1015 if (p[-1] != '\'')
8a3fe4f8 1016 error (_("Unmatched single quote."));
50641945 1017 }
d2630e69
AF
1018 else if (is_objc_method)
1019 {
1777feb0 1020 /* allow word separators in method names for Obj-C. */
d2630e69
AF
1021 p = skip_quoted_chars (*argptr, NULL, "");
1022 }
50641945
FN
1023 else
1024 {
1025 p = skip_quoted (*argptr);
1026 }
1027
c00f8484 1028 /* Keep any important naming information. */
3d50dd94 1029 p = keep_name_info (p, p == saved_arg || is_linespec_boundary (p[-1]));
94af9270 1030
50641945
FN
1031 copy = (char *) alloca (p - *argptr + 1);
1032 memcpy (copy, *argptr, p - *argptr);
1033 copy[p - *argptr] = '\0';
1034 if (p != *argptr
1035 && copy[0]
1036 && copy[0] == copy[p - *argptr - 1]
c5f0f3d0 1037 && strchr (get_gdb_completer_quote_characters (), copy[0]) != NULL)
50641945
FN
1038 {
1039 copy[p - *argptr - 1] = '\0';
1040 copy++;
1041 }
e8eb7bc5 1042 else if (is_quoted || is_squote_enclosed)
791dfb64 1043 copy[p - *argptr - 1] = '\0';
50641945
FN
1044 while (*p == ' ' || *p == '\t')
1045 p++;
1046 *argptr = p;
1047
1048 /* If it starts with $: may be a legitimate variable or routine name
1049 (e.g. HP-UX millicode routines such as $$dyncall), or it may
a04257e6 1050 be history value, or it may be a convenience variable. */
50641945 1051
9ef07c8c 1052 if (*copy == '$' && function_symbol == NULL)
14e91ac5 1053 return decode_dollar (copy, funfirstline, default_symtab,
88d262ca 1054 canonical, file_symtab);
50641945 1055
0f5238ed
TT
1056 /* Try the token as a label, but only if no file was specified,
1057 because we can only really find labels in the current scope. */
1058
1059 if (!file_symtab)
1060 {
1061 struct symtabs_and_lines label_result;
9ef07c8c 1062 if (decode_label (function_symbol, copy, canonical, &label_result))
0f5238ed
TT
1063 return label_result;
1064 }
1065
9ef07c8c 1066 if (function_symbol)
58438ac1 1067 throw_exception (file_exception);
9ef07c8c 1068
50641945
FN
1069 /* Look up that token as a variable.
1070 If file specified, use that file's per-file block to start with. */
1071
58438ac1 1072 return decode_variable (copy, funfirstline, canonical, file_symtab);
413dad4d 1073}
50641945 1074
44fe14ab
DC
1075\f
1076
614b3b14
DC
1077/* Now, more helper functions for decode_line_1. Some conventions
1078 that these functions follow:
1079
1080 Decode_line_1 typically passes along some of its arguments or local
1081 variables to the subfunctions. It passes the variables by
1082 reference if they are modified by the subfunction, and by value
1083 otherwise.
1084
1085 Some of the functions have side effects that don't arise from
1086 variables that are passed by reference. In particular, if a
1087 function is passed ARGPTR as an argument, it modifies what ARGPTR
1088 points to; typically, it advances *ARGPTR past whatever substring
1089 it has just looked at. (If it doesn't modify *ARGPTR, then the
94af9270
KS
1090 function gets passed *ARGPTR instead, which is then called ARG.)
1091 Also, functions that return a struct symtabs_and_lines may modify
1092 CANONICAL, as in the description of decode_line_1.
614b3b14
DC
1093
1094 If a function returns a struct symtabs_and_lines, then that struct
1095 will immediately make its way up the call chain to be returned by
1096 decode_line_1. In particular, all of the functions decode_XXX
1097 calculate the appropriate struct symtabs_and_lines, under the
1098 assumption that their argument is of the form XXX. */
44fe14ab
DC
1099
1100/* First, some functions to initialize stuff at the beggining of the
1101 function. */
1102
1103static void
1104initialize_defaults (struct symtab **default_symtab, int *default_line)
1105{
1106 if (*default_symtab == 0)
1107 {
1108 /* Use whatever we have for the default source line. We don't use
1109 get_current_or_default_symtab_and_line as it can recurse and call
1777feb0 1110 us back! */
44fe14ab
DC
1111 struct symtab_and_line cursal =
1112 get_current_source_symtab_and_line ();
1113
1114 *default_symtab = cursal.symtab;
1115 *default_line = cursal.line;
1116 }
1117}
1118
1119\f
1120
1121/* Decode arg of the form *PC. */
1122
1123static struct symtabs_and_lines
1124decode_indirect (char **argptr)
1125{
1126 struct symtabs_and_lines values;
1127 CORE_ADDR pc;
1128
1129 (*argptr)++;
63ffa6ee 1130 pc = value_as_address (parse_to_comma_and_eval (argptr));
44fe14ab
DC
1131
1132 values.sals = (struct symtab_and_line *)
1133 xmalloc (sizeof (struct symtab_and_line));
1134
1135 values.nelts = 1;
1136 values.sals[0] = find_pc_line (pc, 0);
1137 values.sals[0].pc = pc;
1138 values.sals[0].section = find_pc_overlay (pc);
ed0616c6 1139 values.sals[0].explicit_pc = 1;
44fe14ab
DC
1140
1141 return values;
1142}
413dad4d
DC
1143
1144\f
1145
0960f083
DC
1146/* Locate the first half of the linespec, ending in a colon, period,
1147 or whitespace. (More or less.) Also, check to see if *ARGPTR is
1148 enclosed in double quotes; if so, set is_quote_enclosed, advance
17763fd9
EZ
1149 ARGPTR past that and zero out the trailing double quote.
1150 If ARGPTR is just a simple name like "main", p will point to ""
1151 at the end. */
0960f083
DC
1152
1153static char *
1154locate_first_half (char **argptr, int *is_quote_enclosed)
1155{
1156 char *ii;
1157 char *p, *p1;
1158 int has_comma;
1159
1160 /* Maybe we were called with a line range FILENAME:LINENUM,FILENAME:LINENUM
1161 and we must isolate the first half. Outer layers will call again later
1162 for the second half.
1163
1164 Don't count commas that appear in argument lists of overloaded
1165 functions, or in quoted strings. It's stupid to go to this much
1166 trouble when the rest of the function is such an obvious roach hotel. */
1167 ii = find_toplevel_char (*argptr, ',');
1168 has_comma = (ii != 0);
1169
a04257e6 1170 /* Temporarily zap out second half to not confuse the code below.
1777feb0 1171 This is undone below. Do not change ii!! */
0960f083
DC
1172 if (has_comma)
1173 {
1174 *ii = '\0';
1175 }
1176
a04257e6
DC
1177 /* Maybe arg is FILE : LINENUM or FILE : FUNCTION. May also be
1178 CLASS::MEMBER, or NAMESPACE::NAME. Look for ':', but ignore
1179 inside of <>. */
0960f083
DC
1180
1181 p = *argptr;
1182 if (p[0] == '"')
1183 {
1184 *is_quote_enclosed = 1;
1185 (*argptr)++;
1186 p++;
1187 }
1188 else
0e0b460e
KS
1189 {
1190 *is_quote_enclosed = 0;
1191 if (strchr (get_gdb_completer_quote_characters (), *p))
1192 {
1193 ++(*argptr);
1194 ++p;
1195 }
1196 }
0960f083
DC
1197 for (; *p; p++)
1198 {
1199 if (p[0] == '<')
1200 {
1201 char *temp_end = find_template_name_end (p);
e0881a8e 1202
0960f083 1203 if (!temp_end)
8a3fe4f8 1204 error (_("malformed template specification in command"));
0960f083
DC
1205 p = temp_end;
1206 }
c00f8484
KS
1207
1208 if (p[0] == '(')
1209 p = find_method_overload_end (p);
1210
d2630e69 1211 /* Check for a colon and a plus or minus and a [ (which
1777feb0 1212 indicates an Objective-C method). */
889f28e2 1213 if (is_objc_method_format (p))
d2630e69
AF
1214 {
1215 break;
1216 }
a04257e6 1217 /* Check for the end of the first half of the linespec. End of
e8eb7bc5
KS
1218 line, a tab, a colon or a space. But if enclosed in double
1219 quotes we do not break on enclosed spaces. */
0960f083
DC
1220 if (!*p
1221 || p[0] == '\t'
e8eb7bc5 1222 || (p[0] == ':')
0960f083
DC
1223 || ((p[0] == ' ') && !*is_quote_enclosed))
1224 break;
a04257e6 1225 if (p[0] == '.' && strchr (p, ':') == NULL)
0960f083 1226 {
a04257e6 1227 /* Java qualified method. Find the *last* '.', since the
94af9270
KS
1228 others are package qualifiers. Stop at any open parenthesis
1229 which might provide overload information. */
1230 for (p1 = p; *p1 && *p1 != '('; p1++)
0960f083
DC
1231 {
1232 if (*p1 == '.')
1233 p = p1;
1234 }
1235 break;
1236 }
1237 }
1238 while (p[0] == ' ' || p[0] == '\t')
1239 p++;
1240
a04257e6 1241 /* If the closing double quote was left at the end, remove it. */
0960f083
DC
1242 if (*is_quote_enclosed)
1243 {
1244 char *closing_quote = strchr (p - 1, '"');
e0881a8e 1245
0960f083
DC
1246 if (closing_quote && closing_quote[1] == '\0')
1247 *closing_quote = '\0';
1248 }
1249
a04257e6
DC
1250 /* Now that we've safely parsed the first half, put back ',' so
1251 outer layers can see it. */
0960f083
DC
1252 if (has_comma)
1253 *ii = ',';
1254
1255 return p;
1256}
1257
1258\f
1259
d2630e69
AF
1260/* Here's where we recognise an Objective-C Selector. An Objective C
1261 selector may be implemented by more than one class, therefore it
1262 may represent more than one method/function. This gives us a
1263 situation somewhat analogous to C++ overloading. If there's more
1264 than one method that could represent the selector, then use some of
1265 the existing C++ code to let the user choose one. */
1266
1267struct symtabs_and_lines
1268decode_objc (char **argptr, int funfirstline, struct symtab *file_symtab,
7efd8fc2 1269 struct linespec_result *canonical, char *saved_arg)
d2630e69
AF
1270{
1271 struct symtabs_and_lines values;
1272 struct symbol **sym_arr = NULL;
1273 struct symbol *sym = NULL;
d2630e69 1274 struct block *block = NULL;
15550d6b
MK
1275 unsigned i1 = 0;
1276 unsigned i2 = 0;
d2630e69
AF
1277
1278 values.sals = NULL;
1279 values.nelts = 0;
1280
e8eb7bc5
KS
1281 find_imps (file_symtab, get_search_block (file_symtab), *argptr,
1282 NULL, &i1, &i2);
d2630e69
AF
1283
1284 if (i1 > 0)
1285 {
1777feb0
MS
1286 sym_arr = (struct symbol **)
1287 alloca ((i1 + 1) * sizeof (struct symbol *));
46be51c4 1288 sym_arr[i1] = NULL;
d2630e69 1289
5715d26e 1290 *argptr = find_imps (file_symtab, block, *argptr, sym_arr, &i1, &i2);
d2630e69
AF
1291 }
1292
1293 /* i1 now represents the TOTAL number of matches found.
1294 i2 represents how many HIGH-LEVEL (struct symbol) matches,
1295 which will come first in the sym_arr array. Any low-level
1296 (minimal_symbol) matches will follow those. */
1297
1298 if (i1 == 1)
1299 {
1300 if (i2 > 0)
1301 {
1302 /* Already a struct symbol. */
1303 sym = sym_arr[0];
1304 }
1305 else
1306 {
1307 sym = find_pc_function (SYMBOL_VALUE_ADDRESS (sym_arr[0]));
3e43a32a
MS
1308 if ((sym != NULL) && strcmp (SYMBOL_LINKAGE_NAME (sym_arr[0]),
1309 SYMBOL_LINKAGE_NAME (sym)) != 0)
d2630e69 1310 {
3e43a32a
MS
1311 warning (_("debugging symbol \"%s\" does "
1312 "not match selector; ignoring"),
1313 SYMBOL_LINKAGE_NAME (sym));
d2630e69
AF
1314 sym = NULL;
1315 }
1316 }
1317
3e43a32a
MS
1318 values.sals = (struct symtab_and_line *)
1319 xmalloc (sizeof (struct symtab_and_line));
d2630e69
AF
1320 values.nelts = 1;
1321
1322 if (sym && SYMBOL_CLASS (sym) == LOC_BLOCK)
1323 {
1324 /* Canonicalize this, so it remains resolved for dylib loads. */
1325 values.sals[0] = find_function_start_sal (sym, funfirstline);
3e43a32a
MS
1326 build_canonical_line_spec (values.sals,
1327 SYMBOL_NATURAL_NAME (sym), canonical);
d2630e69
AF
1328 }
1329 else
1330 {
69368a60
UW
1331 /* The only match was a non-debuggable symbol, which might point
1332 to a function descriptor; resolve it to the actual code address
1333 instead. */
1334 struct minimal_symbol *msymbol = (struct minimal_symbol *)sym_arr[0];
1335 struct objfile *objfile = msymbol_objfile (msymbol);
1336 struct gdbarch *gdbarch = get_objfile_arch (objfile);
1337 CORE_ADDR pc = SYMBOL_VALUE_ADDRESS (msymbol);
1338
1339 pc = gdbarch_convert_from_func_ptr_addr (gdbarch, pc,
1340 &current_target);
1341
1342 init_sal (&values.sals[0]);
1343 values.sals[0].pc = pc;
d2630e69
AF
1344 }
1345 return values;
1346 }
1347
1348 if (i1 > 1)
1349 {
1777feb0 1350 /* More than one match. The user must choose one or more. */
d2630e69
AF
1351 return decode_line_2 (sym_arr, i2, funfirstline, canonical);
1352 }
1353
1354 return values;
1355}
1356
614b3b14 1357/* This handles C++ and Java compound data structures. P should point
17763fd9
EZ
1358 at the first component separator, i.e. double-colon or period. As
1359 an example, on entrance to this function we could have ARGPTR
1360 pointing to "AAA::inA::fun" and P pointing to "::inA::fun". */
614b3b14
DC
1361
1362static struct symtabs_and_lines
7efd8fc2 1363decode_compound (char **argptr, int funfirstline,
e8eb7bc5 1364 struct linespec_result *canonical, struct symtab *file_symtab,
58438ac1 1365 char *the_real_saved_arg, char *p)
614b3b14
DC
1366{
1367 struct symtabs_and_lines values;
93d91629 1368 char *p2;
614b3b14
DC
1369 char *saved_arg2 = *argptr;
1370 char *temp_end;
1371 struct symbol *sym;
614b3b14
DC
1372 char *copy;
1373 struct symbol *sym_class;
614b3b14 1374 struct type *t;
c00f8484
KS
1375 char *saved_arg;
1376
1377 /* If the user specified any completer quote characters in the input,
1378 strip them. They are superfluous. */
1379 saved_arg = alloca (strlen (the_real_saved_arg) + 1);
1380 {
1381 char *dst = saved_arg;
1382 char *src = the_real_saved_arg;
1383 char *quotes = get_gdb_completer_quote_characters ();
1384 while (*src != '\0')
1385 {
1386 if (strchr (quotes, *src) == NULL)
1387 *dst++ = *src;
1388 ++src;
1389 }
1390 *dst = '\0';
1391 }
614b3b14 1392
17763fd9
EZ
1393 /* First check for "global" namespace specification, of the form
1394 "::foo". If found, skip over the colons and jump to normal
1395 symbol processing. I.e. the whole line specification starts with
1777feb0 1396 "::" (note the condition that *argptr == p). */
614b3b14
DC
1397 if (p[0] == ':'
1398 && ((*argptr == p) || (p[-1] == ' ') || (p[-1] == '\t')))
1399 saved_arg2 += 2;
1400
87b3ede8
DC
1401 /* Given our example "AAA::inA::fun", we have two cases to consider:
1402
1403 1) AAA::inA is the name of a class. In that case, presumably it
1404 has a method called "fun"; we then look up that method using
1405 find_method.
1406
1407 2) AAA::inA isn't the name of a class. In that case, either the
c00f8484
KS
1408 user made a typo, AAA::inA is the name of a namespace, or it is
1409 the name of a minimal symbol.
1410 We just look up AAA::inA::fun with lookup_symbol. If that fails,
1411 try lookup_minimal_symbol.
87b3ede8
DC
1412
1413 Thus, our first task is to find everything before the last set of
1414 double-colons and figure out if it's the name of a class. So we
1415 first loop through all of the double-colons. */
614b3b14 1416
a04257e6 1417 p2 = p; /* Save for restart. */
17763fd9 1418
1777feb0 1419 /* This is very messy. Following the example above we have now the
17763fd9
EZ
1420 following pointers:
1421 p -> "::inA::fun"
1422 argptr -> "AAA::inA::fun
1423 saved_arg -> "AAA::inA::fun
1424 saved_arg2 -> "AAA::inA::fun
1777feb0 1425 p2 -> "::inA::fun". */
17763fd9
EZ
1426
1427 /* In the loop below, with these strings, we'll make 2 passes, each
1777feb0 1428 is marked in comments. */
17763fd9 1429
614b3b14
DC
1430 while (1)
1431 {
c00f8484
KS
1432 static char *break_characters = " \t(";
1433
a04257e6 1434 /* Move pointer up to next possible class/namespace token. */
17763fd9 1435
a04257e6 1436 p = p2 + 1; /* Restart with old value +1. */
17763fd9
EZ
1437
1438 /* PASS1: at this point p2->"::inA::fun", so p->":inA::fun",
1439 i.e. if there is a double-colon, p will now point to the
1777feb0 1440 second colon. */
87b3ede8 1441 /* PASS2: p2->"::fun", p->":fun" */
17763fd9 1442
a04257e6 1443 /* Move pointer ahead to next double-colon. */
c00f8484
KS
1444 while (*p
1445 && strchr (break_characters, *p) == NULL
1446 && strchr (get_gdb_completer_quote_characters (), *p) == NULL)
614b3b14 1447 {
12907978
KS
1448 if (current_language->la_language == language_cplus)
1449 p += cp_validate_operator (p);
1450
614b3b14
DC
1451 if (p[0] == '<')
1452 {
1453 temp_end = find_template_name_end (p);
1454 if (!temp_end)
8a3fe4f8 1455 error (_("malformed template specification in command"));
614b3b14
DC
1456 p = temp_end;
1457 }
17763fd9
EZ
1458 /* Note that, since, at the start of this loop, p would be
1459 pointing to the second colon in a double-colon, we only
1460 satisfy the condition below if there is another
1777feb0
MS
1461 double-colon to the right (after). I.e. there is another
1462 component that can be a class or a namespace. I.e, if at
17763fd9
EZ
1463 the beginning of this loop (PASS1), we had
1464 p->":inA::fun", we'll trigger this when p has been
1465 advanced to point to "::fun". */
1777feb0 1466 /* PASS2: we will not trigger this. */
614b3b14 1467 else if ((p[0] == ':') && (p[1] == ':'))
a04257e6 1468 break; /* Found double-colon. */
614b3b14 1469 else
c00f8484
KS
1470 {
1471 /* PASS2: We'll keep getting here, until P points to one of the
1472 break characters, at which point we exit this loop. */
2b1dbab0
KS
1473 if (*p)
1474 {
1475 if (p[1] == '('
1476 && strncmp (&p[1], CP_ANONYMOUS_NAMESPACE_STR,
1477 CP_ANONYMOUS_NAMESPACE_LEN) == 0)
1478 p += CP_ANONYMOUS_NAMESPACE_LEN;
1479 else if (strchr (break_characters, *p) == NULL)
1480 ++p;
1481 }
c00f8484 1482 }
614b3b14
DC
1483 }
1484
1485 if (*p != ':')
17763fd9
EZ
1486 break; /* Out of the while (1). This would happen
1487 for instance if we have looked up
1488 unsuccessfully all the components of the
1777feb0 1489 string, and p->""(PASS2). */
17763fd9 1490
c00f8484 1491 /* We get here if p points to one of the break characters or "" (i.e.,
1777feb0 1492 string ended). */
17763fd9
EZ
1493 /* Save restart for next time around. */
1494 p2 = p;
1495 /* Restore argptr as it was on entry to this function. */
1496 *argptr = saved_arg2;
87b3ede8
DC
1497 /* PASS1: at this point p->"::fun" argptr->"AAA::inA::fun",
1498 p2->"::fun". */
17763fd9
EZ
1499
1500 /* All ready for next pass through the loop. */
614b3b14
DC
1501 } /* while (1) */
1502
87b3ede8 1503
1777feb0 1504 /* Start of lookup in the symbol tables. */
87b3ede8
DC
1505
1506 /* Lookup in the symbol table the substring between argptr and
1777feb0 1507 p. Note, this call changes the value of argptr. */
87b3ede8
DC
1508 /* Before the call, argptr->"AAA::inA::fun",
1509 p->"", p2->"::fun". After the call: argptr->"fun", p, p2
1510 unchanged. */
e8eb7bc5 1511 sym_class = lookup_prefix_sym (argptr, p2, file_symtab);
87b3ede8
DC
1512
1513 /* If sym_class has been found, and if "AAA::inA" is a class, then
1514 we're in case 1 above. So we look up "fun" as a method of that
1515 class. */
1516 if (sym_class &&
1517 (t = check_typedef (SYMBOL_TYPE (sym_class)),
1518 (TYPE_CODE (t) == TYPE_CODE_STRUCT
1519 || TYPE_CODE (t) == TYPE_CODE_UNION)))
1520 {
1521 /* Arg token is not digits => try it as a function name.
1522 Find the next token (everything up to end or next
1523 blank). */
1524 if (**argptr
1525 && strchr (get_gdb_completer_quote_characters (),
1526 **argptr) != NULL)
1527 {
1528 p = skip_quoted (*argptr);
1529 *argptr = *argptr + 1;
1530 }
1531 else
1532 {
1533 /* At this point argptr->"fun". */
94af9270 1534 char *a;
e0881a8e 1535
87b3ede8 1536 p = *argptr;
94af9270
KS
1537 while (*p && *p != ' ' && *p != '\t' && *p != ',' && *p != ':'
1538 && *p != '(')
87b3ede8
DC
1539 p++;
1540 /* At this point p->"". String ended. */
12907978
KS
1541 /* Nope, C++ operators could have spaces in them
1542 ("foo::operator <" or "foo::operator delete []").
1543 I apologize, this is a bit hacky... */
1544 if (current_language->la_language == language_cplus
1545 && *p == ' ' && p - 8 - *argptr + 1 > 0)
1546 {
1547 /* The above loop has already swallowed "operator". */
1548 p += cp_validate_operator (p - 8) - 8;
1549 }
94af9270 1550
c00f8484 1551 /* Keep any important naming information. */
3d50dd94 1552 p = keep_name_info (p, 1);
87b3ede8
DC
1553 }
1554
1555 /* Allocate our own copy of the substring between argptr and
1777feb0 1556 p. */
87b3ede8
DC
1557 copy = (char *) alloca (p - *argptr + 1);
1558 memcpy (copy, *argptr, p - *argptr);
1559 copy[p - *argptr] = '\0';
1560 if (p != *argptr
1561 && copy[p - *argptr - 1]
1562 && strchr (get_gdb_completer_quote_characters (),
1563 copy[p - *argptr - 1]) != NULL)
1564 copy[p - *argptr - 1] = '\0';
1565
1777feb0 1566 /* At this point copy->"fun", p->"". */
87b3ede8
DC
1567
1568 /* No line number may be specified. */
1569 while (*p == ' ' || *p == '\t')
1570 p++;
1571 *argptr = p;
1572 /* At this point arptr->"". */
1573
1777feb0 1574 /* Look for copy as a method of sym_class. */
87b3ede8
DC
1575 /* At this point copy->"fun", sym_class is "AAA:inA",
1576 saved_arg->"AAA::inA::fun". This concludes the scanning of
1577 the string for possible components matches. If we find it
1777feb0 1578 here, we return. If not, and we are at the and of the string,
87b3ede8
DC
1579 we'll lookup the whole string in the symbol tables. */
1580
3d50dd94
JK
1581 return find_method (funfirstline, canonical, saved_arg, copy, t,
1582 sym_class, file_symtab);
1777feb0 1583 } /* End if symbol found. */
87b3ede8
DC
1584
1585
1586 /* We couldn't find a class, so we're in case 2 above. We check the
1587 entire name as a symbol instead. */
1588
3d50dd94 1589 p = keep_name_info (p, 1);
c00f8484 1590
614b3b14
DC
1591 copy = (char *) alloca (p - saved_arg2 + 1);
1592 memcpy (copy, saved_arg2, p - saved_arg2);
a04257e6
DC
1593 /* Note: if is_quoted should be true, we snuff out quote here
1594 anyway. */
614b3b14 1595 copy[p - saved_arg2] = '\000';
a04257e6 1596 /* Set argptr to skip over the name. */
614b3b14 1597 *argptr = (*p == '\'') ? p + 1 : p;
17763fd9 1598
1777feb0 1599 /* Look up entire name. */
c00f8484 1600 sym = lookup_symbol (copy, get_selected_block (0), VAR_DOMAIN, 0);
614b3b14 1601 if (sym)
9ef07c8c 1602 return symbol_found (funfirstline, canonical, copy, sym, NULL, NULL);
c00f8484
KS
1603 else
1604 {
1605 struct minimal_symbol *msym;
1606
1607 /* Couldn't find any interpretation as classes/namespaces. As a last
1608 resort, try the minimal symbol tables. */
1609 msym = lookup_minimal_symbol (copy, NULL, NULL);
1610 if (msym != NULL)
1611 return minsym_found (funfirstline, msym);
1612 }
614b3b14 1613
c00f8484 1614 /* Couldn't find a minimal symbol, either, so give up. */
c00f8484 1615 cplusplus_error (the_real_saved_arg,
3e43a32a
MS
1616 "Can't find member of namespace, "
1617 "class, struct, or union named \"%s\"\n",
614b3b14
DC
1618 copy);
1619}
1620
93d91629
DC
1621/* Next come some helper functions for decode_compound. */
1622
1623/* Return the symbol corresponding to the substring of *ARGPTR ending
1624 at P, allowing whitespace. Also, advance *ARGPTR past the symbol
1625 name in question, the compound object separator ("::" or "."), and
17763fd9
EZ
1626 whitespace. Note that *ARGPTR is changed whether or not the
1627 lookup_symbol call finds anything (i.e we return NULL). As an
1628 example, say ARGPTR is "AAA::inA::fun" and P is "::inA::fun". */
93d91629
DC
1629
1630static struct symbol *
e8eb7bc5 1631lookup_prefix_sym (char **argptr, char *p, struct symtab *file_symtab)
93d91629
DC
1632{
1633 char *p1;
1634 char *copy;
1e5a1abc 1635 struct symbol *sym;
93d91629
DC
1636
1637 /* Extract the class name. */
1638 p1 = p;
1639 while (p != *argptr && p[-1] == ' ')
1640 --p;
1641 copy = (char *) alloca (p - *argptr + 1);
1642 memcpy (copy, *argptr, p - *argptr);
1643 copy[p - *argptr] = 0;
1644
17763fd9 1645 /* Discard the class name from the argptr. */
93d91629
DC
1646 p = p1 + (p1[0] == ':' ? 2 : 1);
1647 while (*p == ' ' || *p == '\t')
1648 p++;
1649 *argptr = p;
1650
17763fd9 1651 /* At this point p1->"::inA::fun", p->"inA::fun" copy->"AAA",
1777feb0 1652 argptr->"inA::fun". */
17763fd9 1653
e8eb7bc5 1654 sym = lookup_symbol (copy, get_search_block (file_symtab), STRUCT_DOMAIN, 0);
1e5a1abc
KS
1655 if (sym == NULL)
1656 {
1657 /* Typedefs are in VAR_DOMAIN so the above symbol lookup will
1658 fail when the user attempts to lookup a method of a class
1659 via a typedef'd name (NOT via the class's name, which is already
1660 handled in symbol_matches_domain). So try the lookup again
1661 using VAR_DOMAIN (where typedefs live) and double-check that we
1662 found a struct/class type. */
1663 struct symbol *s = lookup_symbol (copy, 0, VAR_DOMAIN, 0);
e0881a8e 1664
1e5a1abc
KS
1665 if (s != NULL)
1666 {
1667 struct type *t = SYMBOL_TYPE (s);
e0881a8e 1668
1e5a1abc
KS
1669 CHECK_TYPEDEF (t);
1670 if (TYPE_CODE (t) == TYPE_CODE_STRUCT)
1671 return s;
1672 }
1673 }
1674
1675 return sym;
93d91629
DC
1676}
1677
4224873a
DC
1678/* This finds the method COPY in the class whose type is T and whose
1679 symbol is SYM_CLASS. */
1680
1681static struct symtabs_and_lines
7efd8fc2
TT
1682find_method (int funfirstline, struct linespec_result *canonical,
1683 char *saved_arg,
e8eb7bc5
KS
1684 char *copy, struct type *t, struct symbol *sym_class,
1685 struct symtab *file_symtab)
4224873a
DC
1686{
1687 struct symtabs_and_lines values;
46be51c4 1688 struct symbol *sym = NULL;
78a11fb4 1689 int i1; /* Counter for the symbol array. */
4224873a
DC
1690 struct symbol **sym_arr = alloca (total_number_of_methods (t)
1691 * sizeof (struct symbol *));
1692
78a11fb4
DC
1693 /* Find all methods with a matching name, and put them in
1694 sym_arr. */
4224873a 1695
e8eb7bc5
KS
1696 i1 = find_methods (t, copy, SYMBOL_LANGUAGE (sym_class), sym_arr,
1697 file_symtab);
4224873a 1698
418c7cf7
JK
1699 /* If we were given a specific overload instance in COPY, defer the field
1700 acceptance till the strcmp_iw verification below, even if we found just
1701 a single field with that name. */
1702 if (i1 == 1 && strchr (copy, '(') == NULL)
4224873a
DC
1703 {
1704 /* There is exactly one field with that name. */
1705 sym = sym_arr[0];
1706
1707 if (sym && SYMBOL_CLASS (sym) == LOC_BLOCK)
1708 {
1709 values.sals = (struct symtab_and_line *)
1710 xmalloc (sizeof (struct symtab_and_line));
1711 values.nelts = 1;
1712 values.sals[0] = find_function_start_sal (sym,
1713 funfirstline);
1714 }
1715 else
1716 {
15550d6b 1717 values.sals = NULL;
4224873a
DC
1718 values.nelts = 0;
1719 }
1720 return values;
1721 }
1722 if (i1 > 0)
1723 {
94af9270
KS
1724 /* If we were given a specific overload instance, use that
1725 (or error if no matches were found). Otherwise ask the user
1726 which one to use. */
c00f8484 1727 if (strchr (copy, '('))
94af9270
KS
1728 {
1729 int i;
c00f8484
KS
1730 char *name;
1731 char *canon;
d03a3acf 1732 struct cleanup *cleanup;
e0881a8e 1733
c00f8484
KS
1734 /* Construct the proper search name based on SYM_CLASS and COPY.
1735 SAVED_ARG may contain a valid name, but that name might not be
1736 what is actually stored in the symbol table. For example,
1737 if SAVED_ARG (and SYM_CLASS) were found via an import
1738 ("using namespace" in C++), then the physname of
1739 SYM_CLASS ("A::myclass") may not be the same as SAVED_ARG
1740 ("myclass"). */
1741 name = xmalloc (strlen (SYMBOL_NATURAL_NAME (sym_class))
1742 + 2 /* "::" */ + strlen (copy) + 1);
1743 strcpy (name, SYMBOL_NATURAL_NAME (sym_class));
1744 strcat (name, "::");
1745 strcat (name, copy);
1746 canon = cp_canonicalize_string (name);
d03a3acf 1747 if (canon != NULL)
94af9270 1748 {
c00f8484 1749 xfree (name);
d03a3acf 1750 name = canon;
d03a3acf 1751 }
c00f8484 1752 cleanup = make_cleanup (xfree, name);
94af9270 1753
d03a3acf
KS
1754 for (i = 0; i < i1; ++i)
1755 {
94af9270
KS
1756 if (strcmp_iw (name, SYMBOL_LINKAGE_NAME (sym_arr[i])) == 0)
1757 {
1758 values.sals = (struct symtab_and_line *)
1759 xmalloc (sizeof (struct symtab_and_line));
1760 values.nelts = 1;
1761 values.sals[0] = find_function_start_sal (sym_arr[i],
1762 funfirstline);
d03a3acf 1763 do_cleanups (cleanup);
94af9270
KS
1764 return values;
1765 }
94af9270
KS
1766 }
1767
dcf9f4ab
JK
1768 cplusplus_error (saved_arg, _("the class `%s' does not have "
1769 "any method instance named %s"),
1770 SYMBOL_PRINT_NAME (sym_class), copy);
94af9270
KS
1771 }
1772
4224873a
DC
1773 return decode_line_2 (sym_arr, i1, funfirstline, canonical);
1774 }
1775 else
1776 {
12907978 1777 if (copy[0] == '~')
4224873a
DC
1778 cplusplus_error (saved_arg,
1779 "the class `%s' does not have destructor defined\n",
1780 SYMBOL_PRINT_NAME (sym_class));
1781 else
1782 cplusplus_error (saved_arg,
1783 "the class %s does not have any method named %s\n",
12907978 1784 SYMBOL_PRINT_NAME (sym_class), copy);
4224873a
DC
1785 }
1786}
1787
f3c39e76
DC
1788\f
1789
1790/* Return the symtab associated to the filename given by the substring
58438ac1 1791 of *ARGPTR ending at P, and advance ARGPTR past that filename. */
f3c39e76
DC
1792
1793static struct symtab *
58438ac1 1794symtab_from_filename (char **argptr, char *p, int is_quote_enclosed)
f3c39e76
DC
1795{
1796 char *p1;
1797 char *copy;
94cd26f8 1798 struct symtab *file_symtab;
f3c39e76
DC
1799
1800 p1 = p;
1801 while (p != *argptr && p[-1] == ' ')
1802 --p;
1803 if ((*p == '"') && is_quote_enclosed)
1804 --p;
1805 copy = (char *) alloca (p - *argptr + 1);
1806 memcpy (copy, *argptr, p - *argptr);
a04257e6 1807 /* It may have the ending quote right after the file name. */
0e0b460e
KS
1808 if ((is_quote_enclosed && copy[p - *argptr - 1] == '"')
1809 || copy[p - *argptr - 1] == '\'')
f3c39e76
DC
1810 copy[p - *argptr - 1] = 0;
1811 else
1812 copy[p - *argptr] = 0;
1813
1814 /* Find that file's data. */
94cd26f8
DC
1815 file_symtab = lookup_symtab (copy);
1816 if (file_symtab == 0)
f3c39e76 1817 {
b96e2927
PA
1818 if (!have_full_symbols () && !have_partial_symbols ())
1819 throw_error (NOT_FOUND_ERROR,
3e43a32a
MS
1820 _("No symbol table is loaded. "
1821 "Use the \"file\" command."));
109c3e39 1822 throw_error (NOT_FOUND_ERROR, _("No source file named %s."), copy);
f3c39e76
DC
1823 }
1824
1825 /* Discard the file name from the arg. */
1826 p = p1 + 1;
1827 while (*p == ' ' || *p == '\t')
1828 p++;
1829 *argptr = p;
1830
94cd26f8 1831 return file_symtab;
f3c39e76
DC
1832}
1833
9ef07c8c
TT
1834/* Look up a function symbol in *ARGPTR. If found, advance *ARGPTR
1835 and return the symbol. If not found, return NULL. */
1836
1837static struct symbol *
1838find_function_symbol (char **argptr, char *p, int is_quote_enclosed)
1839{
1840 char *p1;
1841 char *copy;
1842 struct symbol *function_symbol;
1843
1844 p1 = p;
1845 while (p != *argptr && p[-1] == ' ')
1846 --p;
1847 if ((*p == '"') && is_quote_enclosed)
1848 --p;
1849 copy = (char *) alloca (p - *argptr + 1);
1850 memcpy (copy, *argptr, p - *argptr);
1851 /* It may have the ending quote right after the file name. */
1852 if ((is_quote_enclosed && copy[p - *argptr - 1] == '"')
1853 || copy[p - *argptr - 1] == '\'')
1854 copy[p - *argptr - 1] = 0;
1855 else
1856 copy[p - *argptr] = 0;
1857
1858 function_symbol = lookup_symbol (copy, get_selected_block (0),
1859 VAR_DOMAIN, 0);
1860 if (!function_symbol || SYMBOL_CLASS (function_symbol) != LOC_BLOCK)
1861 return NULL;
1862
1863 /* Discard the file name from the arg. */
1864 p = p1 + 1;
1865 while (*p == ' ' || *p == '\t')
1866 p++;
1867 *argptr = p;
1868
1869 return function_symbol;
1870}
1871
84fba31b
DC
1872\f
1873
1874/* This decodes a line where the argument is all digits (possibly
1875 preceded by a sign). Q should point to the end of those digits;
1876 the other arguments are as usual. */
1877
1878static struct symtabs_and_lines
1879decode_all_digits (char **argptr, struct symtab *default_symtab,
7efd8fc2 1880 int default_line, struct linespec_result *canonical,
88d262ca 1881 struct symtab *file_symtab, char *q)
84fba31b
DC
1882
1883{
1884 struct symtabs_and_lines values;
1885 struct symtab_and_line val;
1886
1887 enum sign
1888 {
1889 none, plus, minus
1890 }
1891 sign = none;
1892
1893 /* We might need a canonical line spec if no file was specified. */
46be51c4 1894 int need_canonical = (file_symtab == NULL) ? 1 : 0;
84fba31b
DC
1895
1896 init_sal (&val);
1897
6c95b8df
PA
1898 val.pspace = current_program_space;
1899
84fba31b
DC
1900 /* This is where we need to make sure that we have good defaults.
1901 We must guarantee that this section of code is never executed
1902 when we are called with just a function name, since
1903 set_default_source_symtab_and_line uses
a04257e6 1904 select_source_symtab that calls us with such an argument. */
84fba31b 1905
88d262ca 1906 if (file_symtab == 0 && default_symtab == 0)
84fba31b 1907 {
a04257e6 1908 /* Make sure we have at least a default source file. */
84fba31b
DC
1909 set_default_source_symtab_and_line ();
1910 initialize_defaults (&default_symtab, &default_line);
1911 }
1912
1913 if (**argptr == '+')
1914 sign = plus, (*argptr)++;
1915 else if (**argptr == '-')
1916 sign = minus, (*argptr)++;
1917 val.line = atoi (*argptr);
1918 switch (sign)
1919 {
1920 case plus:
1921 if (q == *argptr)
1922 val.line = 5;
88d262ca 1923 if (file_symtab == 0)
84fba31b
DC
1924 val.line = default_line + val.line;
1925 break;
1926 case minus:
1927 if (q == *argptr)
1928 val.line = 15;
88d262ca 1929 if (file_symtab == 0)
84fba31b
DC
1930 val.line = default_line - val.line;
1931 else
1932 val.line = 1;
1933 break;
1934 case none:
1935 break; /* No need to adjust val.line. */
1936 }
1937
1938 while (*q == ' ' || *q == '\t')
1939 q++;
1940 *argptr = q;
88d262ca
DC
1941 if (file_symtab == 0)
1942 file_symtab = default_symtab;
84fba31b
DC
1943
1944 /* It is possible that this source file has more than one symtab,
1945 and that the new line number specification has moved us from the
88d262ca
DC
1946 default (in file_symtab) to a new one. */
1947 val.symtab = find_line_symtab (file_symtab, val.line, NULL, NULL);
84fba31b 1948 if (val.symtab == 0)
88d262ca 1949 val.symtab = file_symtab;
84fba31b 1950
6c95b8df 1951 val.pspace = SYMTAB_PSPACE (val.symtab);
84fba31b
DC
1952 val.pc = 0;
1953 values.sals = (struct symtab_and_line *)
1954 xmalloc (sizeof (struct symtab_and_line));
1955 values.sals[0] = val;
1956 values.nelts = 1;
1957 if (need_canonical)
1958 build_canonical_line_spec (values.sals, NULL, canonical);
ed0616c6 1959 values.sals[0].explicit_line = 1;
84fba31b
DC
1960 return values;
1961}
f3c39e76 1962
614b3b14
DC
1963\f
1964
14e91ac5
DC
1965/* Decode a linespec starting with a dollar sign. */
1966
1967static struct symtabs_and_lines
1968decode_dollar (char *copy, int funfirstline, struct symtab *default_symtab,
7efd8fc2 1969 struct linespec_result *canonical, struct symtab *file_symtab)
14e91ac5 1970{
4fa62494 1971 LONGEST valx;
14e91ac5
DC
1972 int index = 0;
1973 int need_canonical = 0;
1974 struct symtabs_and_lines values;
1975 struct symtab_and_line val;
1976 char *p;
1977 struct symbol *sym;
14e91ac5
DC
1978 struct minimal_symbol *msymbol;
1979
1980 p = (copy[1] == '$') ? copy + 2 : copy + 1;
1981 while (*p >= '0' && *p <= '9')
1982 p++;
a04257e6 1983 if (!*p) /* Reached end of token without hitting non-digit. */
14e91ac5 1984 {
a04257e6 1985 /* We have a value history reference. */
4fa62494 1986 struct value *val_history;
e0881a8e 1987
14e91ac5 1988 sscanf ((copy[1] == '$') ? copy + 2 : copy + 1, "%d", &index);
4fa62494
UW
1989 val_history = access_value_history ((copy[1] == '$') ? -index : index);
1990 if (TYPE_CODE (value_type (val_history)) != TYPE_CODE_INT)
3e43a32a
MS
1991 error (_("History values used in line "
1992 "specs must have integer values."));
4fa62494 1993 valx = value_as_long (val_history);
14e91ac5
DC
1994 }
1995 else
1996 {
1997 /* Not all digits -- may be user variable/function or a
a04257e6 1998 convenience variable. */
14e91ac5 1999
a04257e6 2000 /* Look up entire name as a symbol first. */
2570f2b7 2001 sym = lookup_symbol (copy, 0, VAR_DOMAIN, 0);
46be51c4 2002 file_symtab = (struct symtab *) NULL;
14e91ac5
DC
2003 need_canonical = 1;
2004 /* Symbol was found --> jump to normal symbol processing. */
2005 if (sym)
9ef07c8c 2006 return symbol_found (funfirstline, canonical, copy, sym, NULL, NULL);
14e91ac5 2007
a04257e6 2008 /* If symbol was not found, look in minimal symbol tables. */
14e91ac5 2009 msymbol = lookup_minimal_symbol (copy, NULL, NULL);
a04257e6 2010 /* Min symbol was found --> jump to minsym processing. */
14e91ac5
DC
2011 if (msymbol)
2012 return minsym_found (funfirstline, msymbol);
2013
a04257e6 2014 /* Not a user variable or function -- must be convenience variable. */
4fa62494 2015 if (!get_internalvar_integer (lookup_internalvar (copy + 1), &valx))
3e43a32a
MS
2016 error (_("Convenience variables used in line "
2017 "specs must have integer values."));
14e91ac5
DC
2018 }
2019
2020 init_sal (&val);
2021
a04257e6 2022 /* Either history value or convenience value from above, in valx. */
88d262ca 2023 val.symtab = file_symtab ? file_symtab : default_symtab;
4fa62494 2024 val.line = valx;
14e91ac5 2025 val.pc = 0;
6c95b8df 2026 val.pspace = current_program_space;
14e91ac5
DC
2027
2028 values.sals = (struct symtab_and_line *) xmalloc (sizeof val);
2029 values.sals[0] = val;
2030 values.nelts = 1;
2031
2032 if (need_canonical)
2033 build_canonical_line_spec (values.sals, NULL, canonical);
2034
2035 return values;
2036}
2037
bca02a8a
DC
2038\f
2039
0f5238ed
TT
2040/* A helper for decode_line_1 that tries to find a label. The label
2041 is searched for in the current block.
9ef07c8c
TT
2042 FUNCTION_SYMBOL is the enclosing function; or NULL if none
2043 specified.
0f5238ed
TT
2044 COPY is the name of the label to find.
2045 CANONICAL is the same as the "canonical" argument to decode_line_1.
2046 RESULT is a pointer to a symtabs_and_lines structure which will be
2047 filled in on success.
2048 This function returns 1 if a label was found, 0 otherwise. */
2049
2050static int
9ef07c8c
TT
2051decode_label (struct symbol *function_symbol, char *copy,
2052 struct linespec_result *canonical,
7efd8fc2 2053 struct symtabs_and_lines *result)
0f5238ed
TT
2054{
2055 struct symbol *sym;
9ef07c8c
TT
2056 struct block *block;
2057
2058 if (function_symbol)
2059 block = SYMBOL_BLOCK_VALUE (function_symbol);
2060 else
2061 {
2062 block = get_selected_block (0);
2063 for (;
2064 block && !BLOCK_FUNCTION (block);
2065 block = BLOCK_SUPERBLOCK (block))
2066 ;
2067 if (!block)
2068 return 0;
2069 function_symbol = BLOCK_FUNCTION (block);
2070 }
0f5238ed 2071
9ef07c8c 2072 sym = lookup_symbol (copy, block, LABEL_DOMAIN, 0);
0f5238ed
TT
2073
2074 if (sym != NULL)
9ef07c8c 2075 *result = symbol_found (0, canonical, copy, sym, NULL, function_symbol);
0f5238ed
TT
2076
2077 return sym != NULL;
2078}
2079
88d262ca 2080/* Decode a linespec that's a variable. If FILE_SYMTAB is non-NULL,
58438ac1 2081 look in that symtab's static variables first. */
bca02a8a
DC
2082
2083static struct symtabs_and_lines
7efd8fc2
TT
2084decode_variable (char *copy, int funfirstline,
2085 struct linespec_result *canonical,
58438ac1 2086 struct symtab *file_symtab)
bca02a8a
DC
2087{
2088 struct symbol *sym;
bca02a8a
DC
2089 struct minimal_symbol *msymbol;
2090
e8eb7bc5 2091 sym = lookup_symbol (copy, get_search_block (file_symtab),
2570f2b7 2092 VAR_DOMAIN, 0);
bca02a8a
DC
2093
2094 if (sym != NULL)
9ef07c8c 2095 return symbol_found (funfirstline, canonical, copy, sym, file_symtab, NULL);
bca02a8a
DC
2096
2097 msymbol = lookup_minimal_symbol (copy, NULL, NULL);
2098
2099 if (msymbol != NULL)
2100 return minsym_found (funfirstline, msymbol);
2101
b96e2927
PA
2102 if (!have_full_symbols ()
2103 && !have_partial_symbols ()
2104 && !have_minimal_symbols ())
2105 throw_error (NOT_FOUND_ERROR,
2106 _("No symbol table is loaded. Use the \"file\" command."));
109c3e39 2107 throw_error (NOT_FOUND_ERROR, _("Function \"%s\" not defined."), copy);
bca02a8a
DC
2108}
2109
2110
14e91ac5
DC
2111\f
2112
413dad4d
DC
2113/* Now come some functions that are called from multiple places within
2114 decode_line_1. */
2115
2116/* We've found a symbol SYM to associate with our linespec; build a
2117 corresponding struct symtabs_and_lines. */
2118
2119static struct symtabs_and_lines
7efd8fc2 2120symbol_found (int funfirstline, struct linespec_result *canonical, char *copy,
9ef07c8c
TT
2121 struct symbol *sym, struct symtab *file_symtab,
2122 struct symbol *function_symbol)
413dad4d
DC
2123{
2124 struct symtabs_and_lines values;
2125
2126 if (SYMBOL_CLASS (sym) == LOC_BLOCK)
50641945 2127 {
1777feb0 2128 /* Arg is the name of a function. */
50641945
FN
2129 values.sals = (struct symtab_and_line *)
2130 xmalloc (sizeof (struct symtab_and_line));
413dad4d
DC
2131 values.sals[0] = find_function_start_sal (sym, funfirstline);
2132 values.nelts = 1;
2133
2134 /* Don't use the SYMBOL_LINE; if used at all it points to
2135 the line containing the parameters or thereabouts, not
2136 the first line of code. */
2137
2138 /* We might need a canonical line spec if it is a static
2139 function. */
88d262ca 2140 if (file_symtab == 0)
50641945 2141 {
2570f2b7 2142 struct blockvector *bv = BLOCKVECTOR (SYMBOL_SYMTAB (sym));
413dad4d 2143 struct block *b = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
e0881a8e 2144
94af9270 2145 if (lookup_block_symbol (b, copy, VAR_DOMAIN) != NULL)
413dad4d 2146 build_canonical_line_spec (values.sals, copy, canonical);
50641945 2147 }
50641945
FN
2148 return values;
2149 }
413dad4d
DC
2150 else
2151 {
62853458 2152 if (SYMBOL_CLASS (sym) == LOC_LABEL && SYMBOL_VALUE_ADDRESS (sym) != 0)
413dad4d
DC
2153 {
2154 /* We know its line number. */
2155 values.sals = (struct symtab_and_line *)
2156 xmalloc (sizeof (struct symtab_and_line));
2157 values.nelts = 1;
9ef07c8c 2158 init_sal (&values.sals[0]);
2570f2b7 2159 values.sals[0].symtab = SYMBOL_SYMTAB (sym);
413dad4d 2160 values.sals[0].line = SYMBOL_LINE (sym);
9ef07c8c 2161 values.sals[0].pc = SYMBOL_VALUE_ADDRESS (sym);
0f5238ed 2162 values.sals[0].pspace = SYMTAB_PSPACE (SYMBOL_SYMTAB (sym));
9ef07c8c
TT
2163 values.sals[0].explicit_pc = 1;
2164
2165 if (canonical)
2166 {
2167 canonical->special_display = 1;
2168 canonical->canonical = xmalloc (sizeof (char *));
2169 canonical->canonical[0]
2170 = xstrprintf ("%s:%s",
2171 SYMBOL_NATURAL_NAME (function_symbol),
2172 SYMBOL_NATURAL_NAME (sym));
2173 }
2174
413dad4d
DC
2175 return values;
2176 }
62853458 2177 else if (funfirstline)
dcf9f4ab
JK
2178 {
2179 /* NOT_FOUND_ERROR is not correct but it ensures COPY will be
2180 searched also as a minimal symbol. */
2181
2182 throw_error (NOT_FOUND_ERROR, _("\"%s\" is not a function"), copy);
2183 }
62853458
TT
2184 else if (SYMBOL_LINE (sym) != 0)
2185 {
2186 /* We know its line number. */
2187 values.sals = (struct symtab_and_line *)
2188 xmalloc (sizeof (struct symtab_and_line));
2189 values.nelts = 1;
2190 memset (&values.sals[0], 0, sizeof (values.sals[0]));
2191 values.sals[0].symtab = SYMBOL_SYMTAB (sym);
2192 values.sals[0].line = SYMBOL_LINE (sym);
2193 values.sals[0].pspace = SYMTAB_PSPACE (SYMBOL_SYMTAB (sym));
2194 return values;
2195 }
413dad4d
DC
2196 else
2197 /* This can happen if it is compiled with a compiler which doesn't
2198 put out line numbers for variables. */
2199 /* FIXME: Shouldn't we just set .line and .symtab to zero
2200 and return? For example, "info line foo" could print
2201 the address. */
8a3fe4f8 2202 error (_("Line number not known for symbol \"%s\""), copy);
413dad4d
DC
2203 }
2204}
50641945 2205
413dad4d
DC
2206/* We've found a minimal symbol MSYMBOL to associate with our
2207 linespec; build a corresponding struct symtabs_and_lines. */
50641945 2208
413dad4d
DC
2209static struct symtabs_and_lines
2210minsym_found (int funfirstline, struct minimal_symbol *msymbol)
2211{
bccdca4a
UW
2212 struct objfile *objfile = msymbol_objfile (msymbol);
2213 struct gdbarch *gdbarch = get_objfile_arch (objfile);
413dad4d 2214 struct symtabs_and_lines values;
bccdca4a 2215 CORE_ADDR pc;
413dad4d
DC
2216
2217 values.sals = (struct symtab_and_line *)
2218 xmalloc (sizeof (struct symtab_and_line));
2219 values.sals[0] = find_pc_sect_line (SYMBOL_VALUE_ADDRESS (msymbol),
714835d5
UW
2220 (struct obj_section *) 0, 0);
2221 values.sals[0].section = SYMBOL_OBJ_SECTION (msymbol);
bccdca4a
UW
2222
2223 /* The minimal symbol might point to a function descriptor;
2224 resolve it to the actual code address instead. */
2225 pc = gdbarch_convert_from_func_ptr_addr (gdbarch,
2226 values.sals[0].pc,
2227 &current_target);
2228 if (pc != values.sals[0].pc)
2229 values.sals[0] = find_pc_sect_line (pc, NULL, 0);
2230
413dad4d 2231 if (funfirstline)
059acae7 2232 skip_prologue_sal (&values.sals[0]);
e48883f7 2233
413dad4d
DC
2234 values.nelts = 1;
2235 return values;
50641945 2236}
7efd8fc2
TT
2237
2238void
2239init_linespec_result (struct linespec_result *lr)
2240{
2241 memset (lr, 0, sizeof (*lr));
2242}
This page took 1.006753 seconds and 4 git commands to generate.