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