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