* objfiles.h (struct obj_section): Remove addr and endaddr fields.
[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
c4fc331b
AS
1119 {
1120 enum language save_language;
1121
1122 /* get_selected_block can change the current language when there is
1123 no selected frame yet. */
1124 save_language = current_language->la_language;
1125 block = get_selected_block (0);
1126 set_language (save_language);
1127 }
1128
d2630e69
AF
1129 copy = find_imps (file_symtab, block, *argptr, NULL, &i1, &i2);
1130
1131 if (i1 > 0)
1132 {
1133 sym_arr = (struct symbol **) alloca ((i1 + 1) * sizeof (struct symbol *));
46be51c4 1134 sym_arr[i1] = NULL;
d2630e69
AF
1135
1136 copy = find_imps (file_symtab, block, *argptr, sym_arr, &i1, &i2);
1137 *argptr = copy;
1138 }
1139
1140 /* i1 now represents the TOTAL number of matches found.
1141 i2 represents how many HIGH-LEVEL (struct symbol) matches,
1142 which will come first in the sym_arr array. Any low-level
1143 (minimal_symbol) matches will follow those. */
1144
1145 if (i1 == 1)
1146 {
1147 if (i2 > 0)
1148 {
1149 /* Already a struct symbol. */
1150 sym = sym_arr[0];
1151 }
1152 else
1153 {
1154 sym = find_pc_function (SYMBOL_VALUE_ADDRESS (sym_arr[0]));
1155 if ((sym != NULL) && strcmp (SYMBOL_LINKAGE_NAME (sym_arr[0]), SYMBOL_LINKAGE_NAME (sym)) != 0)
1156 {
8a3fe4f8 1157 warning (_("debugging symbol \"%s\" does not match selector; ignoring"), SYMBOL_LINKAGE_NAME (sym));
d2630e69
AF
1158 sym = NULL;
1159 }
1160 }
1161
1162 values.sals = (struct symtab_and_line *) xmalloc (sizeof (struct symtab_and_line));
1163 values.nelts = 1;
1164
1165 if (sym && SYMBOL_CLASS (sym) == LOC_BLOCK)
1166 {
1167 /* Canonicalize this, so it remains resolved for dylib loads. */
1168 values.sals[0] = find_function_start_sal (sym, funfirstline);
1169 build_canonical_line_spec (values.sals, SYMBOL_NATURAL_NAME (sym), canonical);
1170 }
1171 else
1172 {
1173 /* The only match was a non-debuggable symbol. */
46be51c4 1174 values.sals[0].symtab = NULL;
d2630e69
AF
1175 values.sals[0].line = 0;
1176 values.sals[0].end = 0;
1177 values.sals[0].pc = SYMBOL_VALUE_ADDRESS (sym_arr[0]);
1178 }
1179 return values;
1180 }
1181
1182 if (i1 > 1)
1183 {
1184 /* More than one match. The user must choose one or more. */
1185 return decode_line_2 (sym_arr, i2, funfirstline, canonical);
1186 }
1187
1188 return values;
1189}
1190
614b3b14 1191/* This handles C++ and Java compound data structures. P should point
17763fd9
EZ
1192 at the first component separator, i.e. double-colon or period. As
1193 an example, on entrance to this function we could have ARGPTR
1194 pointing to "AAA::inA::fun" and P pointing to "::inA::fun". */
614b3b14
DC
1195
1196static struct symtabs_and_lines
1197decode_compound (char **argptr, int funfirstline, char ***canonical,
1198 char *saved_arg, char *p)
1199{
1200 struct symtabs_and_lines values;
93d91629 1201 char *p2;
614b3b14
DC
1202 char *saved_arg2 = *argptr;
1203 char *temp_end;
1204 struct symbol *sym;
614b3b14
DC
1205 char *copy;
1206 struct symbol *sym_class;
614b3b14
DC
1207 struct symbol **sym_arr;
1208 struct type *t;
1209
17763fd9
EZ
1210 /* First check for "global" namespace specification, of the form
1211 "::foo". If found, skip over the colons and jump to normal
1212 symbol processing. I.e. the whole line specification starts with
1213 "::" (note the condition that *argptr == p). */
614b3b14
DC
1214 if (p[0] == ':'
1215 && ((*argptr == p) || (p[-1] == ' ') || (p[-1] == '\t')))
1216 saved_arg2 += 2;
1217
87b3ede8
DC
1218 /* Given our example "AAA::inA::fun", we have two cases to consider:
1219
1220 1) AAA::inA is the name of a class. In that case, presumably it
1221 has a method called "fun"; we then look up that method using
1222 find_method.
1223
1224 2) AAA::inA isn't the name of a class. In that case, either the
1225 user made a typo or AAA::inA is the name of a namespace.
1226 Either way, we just look up AAA::inA::fun with lookup_symbol.
1227
1228 Thus, our first task is to find everything before the last set of
1229 double-colons and figure out if it's the name of a class. So we
1230 first loop through all of the double-colons. */
614b3b14 1231
a04257e6 1232 p2 = p; /* Save for restart. */
17763fd9
EZ
1233
1234 /* This is very messy. Following the example above we have now the
1235 following pointers:
1236 p -> "::inA::fun"
1237 argptr -> "AAA::inA::fun
1238 saved_arg -> "AAA::inA::fun
1239 saved_arg2 -> "AAA::inA::fun
1240 p2 -> "::inA::fun". */
1241
1242 /* In the loop below, with these strings, we'll make 2 passes, each
1243 is marked in comments.*/
1244
614b3b14
DC
1245 while (1)
1246 {
a04257e6 1247 /* Move pointer up to next possible class/namespace token. */
17763fd9 1248
a04257e6 1249 p = p2 + 1; /* Restart with old value +1. */
17763fd9
EZ
1250
1251 /* PASS1: at this point p2->"::inA::fun", so p->":inA::fun",
1252 i.e. if there is a double-colon, p will now point to the
1253 second colon. */
87b3ede8 1254 /* PASS2: p2->"::fun", p->":fun" */
17763fd9 1255
a04257e6 1256 /* Move pointer ahead to next double-colon. */
614b3b14
DC
1257 while (*p && (p[0] != ' ') && (p[0] != '\t') && (p[0] != '\''))
1258 {
1259 if (p[0] == '<')
1260 {
1261 temp_end = find_template_name_end (p);
1262 if (!temp_end)
8a3fe4f8 1263 error (_("malformed template specification in command"));
614b3b14
DC
1264 p = temp_end;
1265 }
17763fd9
EZ
1266 /* Note that, since, at the start of this loop, p would be
1267 pointing to the second colon in a double-colon, we only
1268 satisfy the condition below if there is another
1269 double-colon to the right (after). I.e. there is another
1270 component that can be a class or a namespace. I.e, if at
1271 the beginning of this loop (PASS1), we had
1272 p->":inA::fun", we'll trigger this when p has been
1273 advanced to point to "::fun". */
87b3ede8 1274 /* PASS2: we will not trigger this. */
614b3b14 1275 else if ((p[0] == ':') && (p[1] == ':'))
a04257e6 1276 break; /* Found double-colon. */
614b3b14 1277 else
87b3ede8
DC
1278 /* PASS2: We'll keep getting here, until p->"", at which point
1279 we exit this loop. */
614b3b14
DC
1280 p++;
1281 }
1282
1283 if (*p != ':')
17763fd9
EZ
1284 break; /* Out of the while (1). This would happen
1285 for instance if we have looked up
1286 unsuccessfully all the components of the
87b3ede8 1287 string, and p->""(PASS2) */
17763fd9
EZ
1288
1289 /* We get here if p points to ' ', '\t', '\'', "::" or ""(i.e
1290 string ended). */
1291 /* Save restart for next time around. */
1292 p2 = p;
1293 /* Restore argptr as it was on entry to this function. */
1294 *argptr = saved_arg2;
87b3ede8
DC
1295 /* PASS1: at this point p->"::fun" argptr->"AAA::inA::fun",
1296 p2->"::fun". */
17763fd9
EZ
1297
1298 /* All ready for next pass through the loop. */
614b3b14
DC
1299 } /* while (1) */
1300
87b3ede8
DC
1301
1302 /* Start of lookup in the symbol tables. */
1303
1304 /* Lookup in the symbol table the substring between argptr and
1305 p. Note, this call changes the value of argptr. */
1306 /* Before the call, argptr->"AAA::inA::fun",
1307 p->"", p2->"::fun". After the call: argptr->"fun", p, p2
1308 unchanged. */
1309 sym_class = lookup_prefix_sym (argptr, p2);
1310
1311 /* If sym_class has been found, and if "AAA::inA" is a class, then
1312 we're in case 1 above. So we look up "fun" as a method of that
1313 class. */
1314 if (sym_class &&
1315 (t = check_typedef (SYMBOL_TYPE (sym_class)),
1316 (TYPE_CODE (t) == TYPE_CODE_STRUCT
1317 || TYPE_CODE (t) == TYPE_CODE_UNION)))
1318 {
1319 /* Arg token is not digits => try it as a function name.
1320 Find the next token (everything up to end or next
1321 blank). */
1322 if (**argptr
1323 && strchr (get_gdb_completer_quote_characters (),
1324 **argptr) != NULL)
1325 {
1326 p = skip_quoted (*argptr);
1327 *argptr = *argptr + 1;
1328 }
1329 else
1330 {
1331 /* At this point argptr->"fun". */
1332 p = *argptr;
1333 while (*p && *p != ' ' && *p != '\t' && *p != ',' && *p != ':')
1334 p++;
1335 /* At this point p->"". String ended. */
1336 }
1337
1338 /* Allocate our own copy of the substring between argptr and
1339 p. */
1340 copy = (char *) alloca (p - *argptr + 1);
1341 memcpy (copy, *argptr, p - *argptr);
1342 copy[p - *argptr] = '\0';
1343 if (p != *argptr
1344 && copy[p - *argptr - 1]
1345 && strchr (get_gdb_completer_quote_characters (),
1346 copy[p - *argptr - 1]) != NULL)
1347 copy[p - *argptr - 1] = '\0';
1348
1349 /* At this point copy->"fun", p->"" */
1350
1351 /* No line number may be specified. */
1352 while (*p == ' ' || *p == '\t')
1353 p++;
1354 *argptr = p;
1355 /* At this point arptr->"". */
1356
1357 /* Look for copy as a method of sym_class. */
1358 /* At this point copy->"fun", sym_class is "AAA:inA",
1359 saved_arg->"AAA::inA::fun". This concludes the scanning of
1360 the string for possible components matches. If we find it
1361 here, we return. If not, and we are at the and of the string,
1362 we'll lookup the whole string in the symbol tables. */
1363
1364 return find_method (funfirstline, canonical, saved_arg,
1365 copy, t, sym_class);
1366
1367 } /* End if symbol found */
1368
1369
1370 /* We couldn't find a class, so we're in case 2 above. We check the
1371 entire name as a symbol instead. */
1372
614b3b14
DC
1373 copy = (char *) alloca (p - saved_arg2 + 1);
1374 memcpy (copy, saved_arg2, p - saved_arg2);
a04257e6
DC
1375 /* Note: if is_quoted should be true, we snuff out quote here
1376 anyway. */
614b3b14 1377 copy[p - saved_arg2] = '\000';
a04257e6 1378 /* Set argptr to skip over the name. */
614b3b14 1379 *argptr = (*p == '\'') ? p + 1 : p;
17763fd9 1380
614b3b14 1381 /* Look up entire name */
2570f2b7 1382 sym = lookup_symbol (copy, 0, VAR_DOMAIN, 0);
614b3b14 1383 if (sym)
2570f2b7 1384 return symbol_found (funfirstline, canonical, copy, sym, NULL);
614b3b14 1385
a04257e6
DC
1386 /* Couldn't find any interpretation as classes/namespaces, so give
1387 up. The quotes are important if copy is empty. */
614b3b14
DC
1388 cplusplus_error (saved_arg,
1389 "Can't find member of namespace, class, struct, or union named \"%s\"\n",
1390 copy);
1391}
1392
93d91629
DC
1393/* Next come some helper functions for decode_compound. */
1394
1395/* Return the symbol corresponding to the substring of *ARGPTR ending
1396 at P, allowing whitespace. Also, advance *ARGPTR past the symbol
1397 name in question, the compound object separator ("::" or "."), and
17763fd9
EZ
1398 whitespace. Note that *ARGPTR is changed whether or not the
1399 lookup_symbol call finds anything (i.e we return NULL). As an
1400 example, say ARGPTR is "AAA::inA::fun" and P is "::inA::fun". */
93d91629
DC
1401
1402static struct symbol *
1403lookup_prefix_sym (char **argptr, char *p)
1404{
1405 char *p1;
1406 char *copy;
1407
1408 /* Extract the class name. */
1409 p1 = p;
1410 while (p != *argptr && p[-1] == ' ')
1411 --p;
1412 copy = (char *) alloca (p - *argptr + 1);
1413 memcpy (copy, *argptr, p - *argptr);
1414 copy[p - *argptr] = 0;
1415
17763fd9 1416 /* Discard the class name from the argptr. */
93d91629
DC
1417 p = p1 + (p1[0] == ':' ? 2 : 1);
1418 while (*p == ' ' || *p == '\t')
1419 p++;
1420 *argptr = p;
1421
17763fd9
EZ
1422 /* At this point p1->"::inA::fun", p->"inA::fun" copy->"AAA",
1423 argptr->"inA::fun" */
1424
2570f2b7 1425 return lookup_symbol (copy, 0, STRUCT_DOMAIN, 0);
93d91629
DC
1426}
1427
4224873a
DC
1428/* This finds the method COPY in the class whose type is T and whose
1429 symbol is SYM_CLASS. */
1430
1431static struct symtabs_and_lines
1432find_method (int funfirstline, char ***canonical, char *saved_arg,
1433 char *copy, struct type *t, struct symbol *sym_class)
1434{
1435 struct symtabs_and_lines values;
46be51c4 1436 struct symbol *sym = NULL;
78a11fb4 1437 int i1; /* Counter for the symbol array. */
4224873a
DC
1438 struct symbol **sym_arr = alloca (total_number_of_methods (t)
1439 * sizeof (struct symbol *));
1440
78a11fb4
DC
1441 /* Find all methods with a matching name, and put them in
1442 sym_arr. */
4224873a 1443
53c5240f 1444 i1 = collect_methods (copy, t, sym_class, sym_arr);
4224873a 1445
4224873a
DC
1446 if (i1 == 1)
1447 {
1448 /* There is exactly one field with that name. */
1449 sym = sym_arr[0];
1450
1451 if (sym && SYMBOL_CLASS (sym) == LOC_BLOCK)
1452 {
1453 values.sals = (struct symtab_and_line *)
1454 xmalloc (sizeof (struct symtab_and_line));
1455 values.nelts = 1;
1456 values.sals[0] = find_function_start_sal (sym,
1457 funfirstline);
1458 }
1459 else
1460 {
15550d6b 1461 values.sals = NULL;
4224873a
DC
1462 values.nelts = 0;
1463 }
1464 return values;
1465 }
1466 if (i1 > 0)
1467 {
1468 /* There is more than one field with that name
1469 (overloaded). Ask the user which one to use. */
1470 return decode_line_2 (sym_arr, i1, funfirstline, canonical);
1471 }
1472 else
1473 {
1474 char *tmp;
1475
1476 if (is_operator_name (copy))
1477 {
1478 tmp = (char *) alloca (strlen (copy + 3) + 9);
1479 strcpy (tmp, "operator ");
1480 strcat (tmp, copy + 3);
1481 }
1482 else
1483 tmp = copy;
1484 if (tmp[0] == '~')
1485 cplusplus_error (saved_arg,
1486 "the class `%s' does not have destructor defined\n",
1487 SYMBOL_PRINT_NAME (sym_class));
1488 else
1489 cplusplus_error (saved_arg,
1490 "the class %s does not have any method named %s\n",
1491 SYMBOL_PRINT_NAME (sym_class), tmp);
1492 }
1493}
1494
78a11fb4
DC
1495/* Find all methods named COPY in the class whose type is T, and put
1496 them in SYM_ARR. Return the number of methods found. */
1497
1498static int
1499collect_methods (char *copy, struct type *t,
53c5240f 1500 struct symbol *sym_class, struct symbol **sym_arr)
78a11fb4
DC
1501{
1502 int i1 = 0; /* Counter for the symbol array. */
1503
1504 if (destructor_name_p (copy, t))
1505 {
1506 /* Destructors are a special case. */
1507 int m_index, f_index;
1508
1509 if (get_destructor_fn_field (t, &m_index, &f_index))
1510 {
1511 struct fn_field *f = TYPE_FN_FIELDLIST1 (t, m_index);
1512
1513 sym_arr[i1] =
1514 lookup_symbol (TYPE_FN_FIELD_PHYSNAME (f, f_index),
2570f2b7 1515 NULL, VAR_DOMAIN, (int *) NULL);
78a11fb4
DC
1516 if (sym_arr[i1])
1517 i1++;
1518 }
1519 }
1520 else
53c5240f 1521 i1 = find_methods (t, copy, SYMBOL_LANGUAGE (sym_class), sym_arr);
78a11fb4
DC
1522
1523 return i1;
1524}
1525
f3c39e76
DC
1526\f
1527
1528/* Return the symtab associated to the filename given by the substring
68219205
JJ
1529 of *ARGPTR ending at P, and advance ARGPTR past that filename. If
1530 NOT_FOUND_PTR is not null and the source file is not found, store
1531 boolean true at the location pointed to and do not issue an
1532 error message. */
f3c39e76
DC
1533
1534static struct symtab *
68219205
JJ
1535symtab_from_filename (char **argptr, char *p, int is_quote_enclosed,
1536 int *not_found_ptr)
f3c39e76
DC
1537{
1538 char *p1;
1539 char *copy;
94cd26f8 1540 struct symtab *file_symtab;
f3c39e76
DC
1541
1542 p1 = p;
1543 while (p != *argptr && p[-1] == ' ')
1544 --p;
1545 if ((*p == '"') && is_quote_enclosed)
1546 --p;
1547 copy = (char *) alloca (p - *argptr + 1);
1548 memcpy (copy, *argptr, p - *argptr);
a04257e6 1549 /* It may have the ending quote right after the file name. */
f3c39e76
DC
1550 if (is_quote_enclosed && copy[p - *argptr - 1] == '"')
1551 copy[p - *argptr - 1] = 0;
1552 else
1553 copy[p - *argptr] = 0;
1554
1555 /* Find that file's data. */
94cd26f8
DC
1556 file_symtab = lookup_symtab (copy);
1557 if (file_symtab == 0)
f3c39e76
DC
1558 {
1559 if (!have_full_symbols () && !have_partial_symbols ())
8a3fe4f8 1560 error (_("No symbol table is loaded. Use the \"file\" command."));
68219205 1561 if (not_found_ptr)
05ff989b 1562 *not_found_ptr = 1;
109c3e39 1563 throw_error (NOT_FOUND_ERROR, _("No source file named %s."), copy);
f3c39e76
DC
1564 }
1565
1566 /* Discard the file name from the arg. */
1567 p = p1 + 1;
1568 while (*p == ' ' || *p == '\t')
1569 p++;
1570 *argptr = p;
1571
94cd26f8 1572 return file_symtab;
f3c39e76
DC
1573}
1574
84fba31b
DC
1575\f
1576
1577/* This decodes a line where the argument is all digits (possibly
1578 preceded by a sign). Q should point to the end of those digits;
1579 the other arguments are as usual. */
1580
1581static struct symtabs_and_lines
1582decode_all_digits (char **argptr, struct symtab *default_symtab,
1583 int default_line, char ***canonical,
88d262ca 1584 struct symtab *file_symtab, char *q)
84fba31b
DC
1585
1586{
1587 struct symtabs_and_lines values;
1588 struct symtab_and_line val;
1589
1590 enum sign
1591 {
1592 none, plus, minus
1593 }
1594 sign = none;
1595
1596 /* We might need a canonical line spec if no file was specified. */
46be51c4 1597 int need_canonical = (file_symtab == NULL) ? 1 : 0;
84fba31b
DC
1598
1599 init_sal (&val);
1600
1601 /* This is where we need to make sure that we have good defaults.
1602 We must guarantee that this section of code is never executed
1603 when we are called with just a function name, since
1604 set_default_source_symtab_and_line uses
a04257e6 1605 select_source_symtab that calls us with such an argument. */
84fba31b 1606
88d262ca 1607 if (file_symtab == 0 && default_symtab == 0)
84fba31b 1608 {
a04257e6 1609 /* Make sure we have at least a default source file. */
84fba31b
DC
1610 set_default_source_symtab_and_line ();
1611 initialize_defaults (&default_symtab, &default_line);
1612 }
1613
1614 if (**argptr == '+')
1615 sign = plus, (*argptr)++;
1616 else if (**argptr == '-')
1617 sign = minus, (*argptr)++;
1618 val.line = atoi (*argptr);
1619 switch (sign)
1620 {
1621 case plus:
1622 if (q == *argptr)
1623 val.line = 5;
88d262ca 1624 if (file_symtab == 0)
84fba31b
DC
1625 val.line = default_line + val.line;
1626 break;
1627 case minus:
1628 if (q == *argptr)
1629 val.line = 15;
88d262ca 1630 if (file_symtab == 0)
84fba31b
DC
1631 val.line = default_line - val.line;
1632 else
1633 val.line = 1;
1634 break;
1635 case none:
1636 break; /* No need to adjust val.line. */
1637 }
1638
1639 while (*q == ' ' || *q == '\t')
1640 q++;
1641 *argptr = q;
88d262ca
DC
1642 if (file_symtab == 0)
1643 file_symtab = default_symtab;
84fba31b
DC
1644
1645 /* It is possible that this source file has more than one symtab,
1646 and that the new line number specification has moved us from the
88d262ca
DC
1647 default (in file_symtab) to a new one. */
1648 val.symtab = find_line_symtab (file_symtab, val.line, NULL, NULL);
84fba31b 1649 if (val.symtab == 0)
88d262ca 1650 val.symtab = file_symtab;
84fba31b
DC
1651
1652 val.pc = 0;
1653 values.sals = (struct symtab_and_line *)
1654 xmalloc (sizeof (struct symtab_and_line));
1655 values.sals[0] = val;
1656 values.nelts = 1;
1657 if (need_canonical)
1658 build_canonical_line_spec (values.sals, NULL, canonical);
ed0616c6 1659 values.sals[0].explicit_line = 1;
84fba31b
DC
1660 return values;
1661}
f3c39e76 1662
614b3b14
DC
1663\f
1664
14e91ac5
DC
1665/* Decode a linespec starting with a dollar sign. */
1666
1667static struct symtabs_and_lines
1668decode_dollar (char *copy, int funfirstline, struct symtab *default_symtab,
88d262ca 1669 char ***canonical, struct symtab *file_symtab)
14e91ac5
DC
1670{
1671 struct value *valx;
1672 int index = 0;
1673 int need_canonical = 0;
1674 struct symtabs_and_lines values;
1675 struct symtab_and_line val;
1676 char *p;
1677 struct symbol *sym;
14e91ac5
DC
1678 struct minimal_symbol *msymbol;
1679
1680 p = (copy[1] == '$') ? copy + 2 : copy + 1;
1681 while (*p >= '0' && *p <= '9')
1682 p++;
a04257e6 1683 if (!*p) /* Reached end of token without hitting non-digit. */
14e91ac5 1684 {
a04257e6 1685 /* We have a value history reference. */
14e91ac5
DC
1686 sscanf ((copy[1] == '$') ? copy + 2 : copy + 1, "%d", &index);
1687 valx = access_value_history ((copy[1] == '$') ? -index : index);
df407dfe 1688 if (TYPE_CODE (value_type (valx)) != TYPE_CODE_INT)
8a3fe4f8 1689 error (_("History values used in line specs must have integer values."));
14e91ac5
DC
1690 }
1691 else
1692 {
1693 /* Not all digits -- may be user variable/function or a
a04257e6 1694 convenience variable. */
14e91ac5 1695
a04257e6 1696 /* Look up entire name as a symbol first. */
2570f2b7 1697 sym = lookup_symbol (copy, 0, VAR_DOMAIN, 0);
46be51c4 1698 file_symtab = (struct symtab *) NULL;
14e91ac5
DC
1699 need_canonical = 1;
1700 /* Symbol was found --> jump to normal symbol processing. */
1701 if (sym)
2570f2b7 1702 return symbol_found (funfirstline, canonical, copy, sym, NULL);
14e91ac5 1703
a04257e6 1704 /* If symbol was not found, look in minimal symbol tables. */
14e91ac5 1705 msymbol = lookup_minimal_symbol (copy, NULL, NULL);
a04257e6 1706 /* Min symbol was found --> jump to minsym processing. */
14e91ac5
DC
1707 if (msymbol)
1708 return minsym_found (funfirstline, msymbol);
1709
a04257e6 1710 /* Not a user variable or function -- must be convenience variable. */
14e91ac5 1711 valx = value_of_internalvar (lookup_internalvar (copy + 1));
df407dfe 1712 if (TYPE_CODE (value_type (valx)) != TYPE_CODE_INT)
8a3fe4f8 1713 error (_("Convenience variables used in line specs must have integer values."));
14e91ac5
DC
1714 }
1715
1716 init_sal (&val);
1717
a04257e6 1718 /* Either history value or convenience value from above, in valx. */
88d262ca 1719 val.symtab = file_symtab ? file_symtab : default_symtab;
14e91ac5
DC
1720 val.line = value_as_long (valx);
1721 val.pc = 0;
1722
1723 values.sals = (struct symtab_and_line *) xmalloc (sizeof val);
1724 values.sals[0] = val;
1725 values.nelts = 1;
1726
1727 if (need_canonical)
1728 build_canonical_line_spec (values.sals, NULL, canonical);
1729
1730 return values;
1731}
1732
bca02a8a
DC
1733\f
1734
88d262ca 1735/* Decode a linespec that's a variable. If FILE_SYMTAB is non-NULL,
68219205
JJ
1736 look in that symtab's static variables first. If NOT_FOUND_PTR is not NULL and
1737 the function cannot be found, store boolean true in the location pointed to
1738 and do not issue an error message. */
bca02a8a
DC
1739
1740static struct symtabs_and_lines
1741decode_variable (char *copy, int funfirstline, char ***canonical,
68219205 1742 struct symtab *file_symtab, int *not_found_ptr)
bca02a8a
DC
1743{
1744 struct symbol *sym;
bca02a8a
DC
1745
1746 struct minimal_symbol *msymbol;
1747
1748 sym = lookup_symbol (copy,
88d262ca
DC
1749 (file_symtab
1750 ? BLOCKVECTOR_BLOCK (BLOCKVECTOR (file_symtab),
1751 STATIC_BLOCK)
bca02a8a 1752 : get_selected_block (0)),
2570f2b7 1753 VAR_DOMAIN, 0);
bca02a8a
DC
1754
1755 if (sym != NULL)
2570f2b7 1756 return symbol_found (funfirstline, canonical, copy, sym, file_symtab);
bca02a8a
DC
1757
1758 msymbol = lookup_minimal_symbol (copy, NULL, NULL);
1759
1760 if (msymbol != NULL)
1761 return minsym_found (funfirstline, msymbol);
1762
1763 if (!have_full_symbols () &&
1764 !have_partial_symbols () && !have_minimal_symbols ())
8a3fe4f8 1765 error (_("No symbol table is loaded. Use the \"file\" command."));
bca02a8a 1766
68219205 1767 if (not_found_ptr)
05ff989b 1768 *not_found_ptr = 1;
109c3e39 1769 throw_error (NOT_FOUND_ERROR, _("Function \"%s\" not defined."), copy);
bca02a8a
DC
1770}
1771
1772
14e91ac5
DC
1773\f
1774
413dad4d
DC
1775/* Now come some functions that are called from multiple places within
1776 decode_line_1. */
1777
1778/* We've found a symbol SYM to associate with our linespec; build a
1779 corresponding struct symtabs_and_lines. */
1780
1781static struct symtabs_and_lines
1782symbol_found (int funfirstline, char ***canonical, char *copy,
2570f2b7 1783 struct symbol *sym, struct symtab *file_symtab)
413dad4d
DC
1784{
1785 struct symtabs_and_lines values;
1786
1787 if (SYMBOL_CLASS (sym) == LOC_BLOCK)
50641945 1788 {
413dad4d 1789 /* Arg is the name of a function */
50641945
FN
1790 values.sals = (struct symtab_and_line *)
1791 xmalloc (sizeof (struct symtab_and_line));
413dad4d
DC
1792 values.sals[0] = find_function_start_sal (sym, funfirstline);
1793 values.nelts = 1;
1794
1795 /* Don't use the SYMBOL_LINE; if used at all it points to
1796 the line containing the parameters or thereabouts, not
1797 the first line of code. */
1798
1799 /* We might need a canonical line spec if it is a static
1800 function. */
88d262ca 1801 if (file_symtab == 0)
50641945 1802 {
2570f2b7 1803 struct blockvector *bv = BLOCKVECTOR (SYMBOL_SYMTAB (sym));
413dad4d 1804 struct block *b = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
176620f1 1805 if (lookup_block_symbol (b, copy, NULL, VAR_DOMAIN) != NULL)
413dad4d 1806 build_canonical_line_spec (values.sals, copy, canonical);
50641945 1807 }
50641945
FN
1808 return values;
1809 }
413dad4d
DC
1810 else
1811 {
1812 if (funfirstline)
8a3fe4f8 1813 error (_("\"%s\" is not a function"), copy);
413dad4d
DC
1814 else if (SYMBOL_LINE (sym) != 0)
1815 {
1816 /* We know its line number. */
1817 values.sals = (struct symtab_and_line *)
1818 xmalloc (sizeof (struct symtab_and_line));
1819 values.nelts = 1;
1820 memset (&values.sals[0], 0, sizeof (values.sals[0]));
2570f2b7 1821 values.sals[0].symtab = SYMBOL_SYMTAB (sym);
413dad4d
DC
1822 values.sals[0].line = SYMBOL_LINE (sym);
1823 return values;
1824 }
1825 else
1826 /* This can happen if it is compiled with a compiler which doesn't
1827 put out line numbers for variables. */
1828 /* FIXME: Shouldn't we just set .line and .symtab to zero
1829 and return? For example, "info line foo" could print
1830 the address. */
8a3fe4f8 1831 error (_("Line number not known for symbol \"%s\""), copy);
413dad4d
DC
1832 }
1833}
50641945 1834
413dad4d
DC
1835/* We've found a minimal symbol MSYMBOL to associate with our
1836 linespec; build a corresponding struct symtabs_and_lines. */
50641945 1837
413dad4d
DC
1838static struct symtabs_and_lines
1839minsym_found (int funfirstline, struct minimal_symbol *msymbol)
1840{
bccdca4a
UW
1841 struct objfile *objfile = msymbol_objfile (msymbol);
1842 struct gdbarch *gdbarch = get_objfile_arch (objfile);
413dad4d 1843 struct symtabs_and_lines values;
bccdca4a 1844 CORE_ADDR pc;
413dad4d
DC
1845
1846 values.sals = (struct symtab_and_line *)
1847 xmalloc (sizeof (struct symtab_and_line));
1848 values.sals[0] = find_pc_sect_line (SYMBOL_VALUE_ADDRESS (msymbol),
198beae2 1849 (struct bfd_section *) 0, 0);
413dad4d 1850 values.sals[0].section = SYMBOL_BFD_SECTION (msymbol);
bccdca4a
UW
1851
1852 /* The minimal symbol might point to a function descriptor;
1853 resolve it to the actual code address instead. */
1854 pc = gdbarch_convert_from_func_ptr_addr (gdbarch,
1855 values.sals[0].pc,
1856 &current_target);
1857 if (pc != values.sals[0].pc)
1858 values.sals[0] = find_pc_sect_line (pc, NULL, 0);
1859
413dad4d
DC
1860 if (funfirstline)
1861 {
e48883f7
DJ
1862 struct symtab_and_line sal;
1863
bccdca4a
UW
1864 values.sals[0].pc = find_function_start_pc (gdbarch,
1865 values.sals[0].pc,
1866 values.sals[0].section);
e48883f7
DJ
1867
1868 sal = find_pc_sect_line (values.sals[0].pc, values.sals[0].section, 0);
1869
1870 /* Check if SKIP_PROLOGUE left us in mid-line, and the next
1871 line is still part of the same function. If there is no
1872 line information here, sal.pc will be the passed in PC. */
1873 if (sal.pc != values.sals[0].pc
1874 && (lookup_minimal_symbol_by_pc_section (values.sals[0].pc,
1875 values.sals[0].section)
1876 == lookup_minimal_symbol_by_pc_section (sal.end,
1877 values.sals[0].section)))
1878 /* Recalculate the line number (might not be N+1). */
1879 values.sals[0] = find_pc_sect_line (sal.end, values.sals[0].section, 0);
413dad4d 1880 }
e48883f7 1881
413dad4d
DC
1882 values.nelts = 1;
1883 return values;
50641945 1884}
This page took 0.884744 seconds and 4 git commands to generate.