1 /* Parser for linespec for the GNU debugger, GDB.
2 Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
3 1996, 1997, 1998, 1999, 2000, 2001
4 Free Software Foundation, Inc.
6 This file is part of GDB.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
32 #include "completer.h"
34 #include "parser-defs.h"
36 /* We share this one with symtab.c, but it is not exported widely. */
38 extern char *operator_chars (char *, char **);
40 /* Prototypes for local functions */
42 static void initialize_defaults (struct symtab **default_symtab,
45 static void set_flags (char *arg, int *is_quoted, char **paren_pointer);
47 static struct symtabs_and_lines decode_indirect (char **argptr);
49 static char *locate_first_half (char **argptr, int *is_quote_enclosed);
51 static struct symtabs_and_lines decode_compound (char **argptr,
57 static NORETURN void cplusplus_error (const char *name,
59 ATTR_NORETURN ATTR_FORMAT (printf, 2, 3);
61 static int total_number_of_methods (struct type *type);
63 static int find_methods (struct type *, char *, struct symbol **);
65 static void build_canonical_line_spec (struct symtab_and_line *,
68 static char *find_toplevel_char (char *s, char c);
70 static struct symtabs_and_lines decode_line_2 (struct symbol *[],
73 static struct symtab *symtab_from_filename (char **argptr,
74 char *p, int is_quote_enclosed);
77 symtabs_and_lines decode_all_digits (char **argptr,
78 struct symtab *default_symtab,
85 symtabs_and_lines symbol_found (int funfirstline,
90 struct symtab *sym_symtab);
93 symtabs_and_lines minsym_found (int funfirstline,
94 struct minimal_symbol *msymbol);
96 /* Helper functions. */
98 /* Issue a helpful hint on using the command completion feature on
99 single quoted demangled C++ symbols as part of the completion
103 cplusplus_error (const char *name, const char *fmt, ...)
105 struct ui_file *tmp_stream;
106 tmp_stream = mem_fileopen ();
107 make_cleanup_ui_file_delete (tmp_stream);
111 va_start (args, fmt);
112 vfprintf_unfiltered (tmp_stream, fmt, args);
116 while (*name == '\'')
118 fprintf_unfiltered (tmp_stream,
119 ("Hint: try '%s<TAB> or '%s<ESC-?>\n"
120 "(Note leading single quote.)"),
122 error_stream (tmp_stream);
125 /* Return the number of methods described for TYPE, including the
126 methods from types it derives from. This can't be done in the symbol
127 reader because the type of the baseclass might still be stubbed
128 when the definition of the derived class is parsed. */
131 total_number_of_methods (struct type *type)
136 CHECK_TYPEDEF (type);
137 if (TYPE_CPLUS_SPECIFIC (type) == NULL)
139 count = TYPE_NFN_FIELDS_TOTAL (type);
141 for (n = 0; n < TYPE_N_BASECLASSES (type); n++)
142 count += total_number_of_methods (TYPE_BASECLASS (type, n));
147 /* Recursive helper function for decode_line_1.
148 Look for methods named NAME in type T.
149 Return number of matches.
150 Put matches in SYM_ARR, which should have been allocated with
151 a size of total_number_of_methods (T) * sizeof (struct symbol *).
152 Note that this function is g++ specific. */
155 find_methods (struct type *t, char *name, struct symbol **sym_arr)
159 char *class_name = type_name_no_tag (t);
161 /* Ignore this class if it doesn't have a name. This is ugly, but
162 unless we figure out how to get the physname without the name of
163 the class, then the loop can't do any good. */
165 && (lookup_symbol (class_name, (struct block *) NULL,
166 STRUCT_NAMESPACE, (int *) NULL,
167 (struct symtab **) NULL)))
170 int name_len = strlen (name);
174 /* Loop over each method name. At this level, all overloads of a name
175 are counted as a single name. There is an inner loop which loops over
178 for (method_counter = TYPE_NFN_FIELDS (t) - 1;
183 char *method_name = TYPE_FN_FIELDLIST_NAME (t, method_counter);
186 if (strncmp (method_name, "__", 2) == 0 ||
187 strncmp (method_name, "op", 2) == 0 ||
188 strncmp (method_name, "type", 4) == 0)
190 if (cplus_demangle_opname (method_name, dem_opname, DMGL_ANSI))
191 method_name = dem_opname;
192 else if (cplus_demangle_opname (method_name, dem_opname, 0))
193 method_name = dem_opname;
196 if (strcmp_iw (name, method_name) == 0)
197 /* Find all the overloaded methods with that name. */
198 for (field_counter = TYPE_FN_FIELDLIST_LENGTH (t, method_counter) - 1;
205 f = TYPE_FN_FIELDLIST1 (t, method_counter);
207 if (TYPE_FN_FIELD_STUB (f, field_counter))
211 tmp_name = gdb_mangle_name (t,
214 phys_name = alloca (strlen (tmp_name) + 1);
215 strcpy (phys_name, tmp_name);
219 phys_name = TYPE_FN_FIELD_PHYSNAME (f, field_counter);
221 /* Destructor is handled by caller, dont add it to the list */
222 if (is_destructor_name (phys_name) != 0)
225 sym_arr[i1] = lookup_symbol (phys_name,
228 (struct symtab **) NULL);
233 /* This error message gets printed, but the method
234 still seems to be found
235 fputs_filtered("(Cannot find method ", gdb_stdout);
236 fprintf_symbol_filtered (gdb_stdout, phys_name,
238 DMGL_PARAMS | DMGL_ANSI);
239 fputs_filtered(" - possibly inlined.)\n", gdb_stdout);
243 else if (strncmp (class_name, name, name_len) == 0
244 && (class_name[name_len] == '\0'
245 || class_name[name_len] == '<'))
247 /* For GCC 3.x and stabs, constructors and destructors have names
248 like __base_ctor and __complete_dtor. Check the physname for now
249 if we're looking for a constructor. */
251 = TYPE_FN_FIELDLIST_LENGTH (t, method_counter) - 1;
258 f = TYPE_FN_FIELDLIST1 (t, method_counter);
260 /* GCC 3.x will never produce stabs stub methods, so we don't need
261 to handle this case. */
262 if (TYPE_FN_FIELD_STUB (f, field_counter))
264 phys_name = TYPE_FN_FIELD_PHYSNAME (f, field_counter);
265 if (! is_constructor_name (phys_name))
268 /* If this method is actually defined, include it in the
270 sym_arr[i1] = lookup_symbol (phys_name,
273 (struct symtab **) NULL);
281 /* Only search baseclasses if there is no match yet, since names in
282 derived classes override those in baseclasses.
284 FIXME: The above is not true; it is only true of member functions
285 if they have the same number of arguments (??? - section 13.1 of the
286 ARM says the function members are not in the same scope but doesn't
287 really spell out the rules in a way I understand. In any case, if
288 the number of arguments differ this is a case in which we can overload
289 rather than hiding without any problem, and gcc 2.4.5 does overload
290 rather than hiding in this case). */
293 for (ibase = 0; ibase < TYPE_N_BASECLASSES (t); ibase++)
294 i1 += find_methods (TYPE_BASECLASS (t, ibase), name, sym_arr + i1);
299 /* Helper function for decode_line_1.
300 Build a canonical line spec in CANONICAL if it is non-NULL and if
301 the SAL has a symtab.
302 If SYMNAME is non-NULL the canonical line spec is `filename:symname'.
303 If SYMNAME is NULL the line number from SAL is used and the canonical
304 line spec is `filename:linenum'. */
307 build_canonical_line_spec (struct symtab_and_line *sal, char *symname,
310 char **canonical_arr;
311 char *canonical_name;
313 struct symtab *s = sal->symtab;
315 if (s == (struct symtab *) NULL
316 || s->filename == (char *) NULL
317 || canonical == (char ***) NULL)
320 canonical_arr = (char **) xmalloc (sizeof (char *));
321 *canonical = canonical_arr;
323 filename = s->filename;
326 canonical_name = xmalloc (strlen (filename) + strlen (symname) + 2);
327 sprintf (canonical_name, "%s:%s", filename, symname);
331 canonical_name = xmalloc (strlen (filename) + 30);
332 sprintf (canonical_name, "%s:%d", filename, sal->line);
334 canonical_arr[0] = canonical_name;
339 /* Find an instance of the character C in the string S that is outside
340 of all parenthesis pairs, single-quoted strings, and double-quoted
341 strings. Also, ignore the char within a template name, like a ','
342 within foo<int, int>. */
345 find_toplevel_char (char *s, char c)
347 int quoted = 0; /* zero if we're not in quotes;
348 '"' if we're in a double-quoted string;
349 '\'' if we're in a single-quoted string. */
350 int depth = 0; /* number of unclosed parens we've seen */
353 for (scan = s; *scan; scan++)
359 else if (*scan == '\\' && *(scan + 1))
362 else if (*scan == c && ! quoted && depth == 0)
364 else if (*scan == '"' || *scan == '\'')
366 else if (*scan == '(' || *scan == '<')
368 else if ((*scan == ')' || *scan == '>') && depth > 0)
375 /* Given a list of NELTS symbols in SYM_ARR, return a list of lines to
376 operate on (ask user if necessary).
377 If CANONICAL is non-NULL return a corresponding array of mangled names
378 as canonical line specs there. */
380 static struct symtabs_and_lines
381 decode_line_2 (struct symbol *sym_arr[], int nelts, int funfirstline,
384 struct symtabs_and_lines values, return_values;
389 struct cleanup *old_chain;
390 char **canonical_arr = (char **) NULL;
392 values.sals = (struct symtab_and_line *)
393 alloca (nelts * sizeof (struct symtab_and_line));
394 return_values.sals = (struct symtab_and_line *)
395 xmalloc (nelts * sizeof (struct symtab_and_line));
396 old_chain = make_cleanup (xfree, return_values.sals);
400 canonical_arr = (char **) xmalloc (nelts * sizeof (char *));
401 make_cleanup (xfree, canonical_arr);
402 memset (canonical_arr, 0, nelts * sizeof (char *));
403 *canonical = canonical_arr;
407 printf_unfiltered ("[0] cancel\n[1] all\n");
410 init_sal (&return_values.sals[i]); /* initialize to zeroes */
411 init_sal (&values.sals[i]);
412 if (sym_arr[i] && SYMBOL_CLASS (sym_arr[i]) == LOC_BLOCK)
414 values.sals[i] = find_function_start_sal (sym_arr[i], funfirstline);
415 printf_unfiltered ("[%d] %s at %s:%d\n",
417 SYMBOL_SOURCE_NAME (sym_arr[i]),
418 values.sals[i].symtab->filename,
419 values.sals[i].line);
422 printf_unfiltered ("?HERE\n");
426 if ((prompt = getenv ("PS2")) == NULL)
430 args = command_line_input (prompt, 0, "overload-choice");
432 if (args == 0 || *args == 0)
433 error_no_arg ("one or more choice numbers");
441 while (*arg1 >= '0' && *arg1 <= '9')
443 if (*arg1 && *arg1 != ' ' && *arg1 != '\t')
444 error ("Arguments must be choice numbers.");
454 for (i = 0; i < nelts; i++)
456 if (canonical_arr[i] == NULL)
458 symname = SYMBOL_NAME (sym_arr[i]);
459 canonical_arr[i] = savestring (symname, strlen (symname));
463 memcpy (return_values.sals, values.sals,
464 (nelts * sizeof (struct symtab_and_line)));
465 return_values.nelts = nelts;
466 discard_cleanups (old_chain);
467 return return_values;
470 if (num >= nelts + 2)
472 printf_unfiltered ("No choice number %d.\n", num);
477 if (values.sals[num].pc)
481 symname = SYMBOL_NAME (sym_arr[num]);
482 make_cleanup (xfree, symname);
483 canonical_arr[i] = savestring (symname, strlen (symname));
485 return_values.sals[i++] = values.sals[num];
486 values.sals[num].pc = 0;
490 printf_unfiltered ("duplicate request for %d ignored.\n", num);
495 while (*args == ' ' || *args == '\t')
498 return_values.nelts = i;
499 discard_cleanups (old_chain);
500 return return_values;
503 /* The parser of linespec itself. */
505 /* Parse a string that specifies a line number.
506 Pass the address of a char * variable; that variable will be
507 advanced over the characters actually parsed.
511 LINENUM -- that line number in current file. PC returned is 0.
512 FILE:LINENUM -- that line in that file. PC returned is 0.
513 FUNCTION -- line number of openbrace of that function.
514 PC returned is the start of the function.
515 VARIABLE -- line number of definition of that variable.
517 FILE:FUNCTION -- likewise, but prefer functions in that file.
518 *EXPR -- line in which address EXPR appears.
520 This may all be followed by an "if EXPR", which we ignore.
522 FUNCTION may be an undebuggable function found in minimal symbol table.
524 If the argument FUNFIRSTLINE is nonzero, we want the first line
525 of real code inside a function when a function is specified, and it is
526 not OK to specify a variable or type to get its line number.
528 DEFAULT_SYMTAB specifies the file to use if none is specified.
529 It defaults to current_source_symtab.
530 DEFAULT_LINE specifies the line number to use for relative
531 line numbers (that start with signs). Defaults to current_source_line.
532 If CANONICAL is non-NULL, store an array of strings containing the canonical
533 line specs there if necessary. Currently overloaded member functions and
534 line numbers or static functions without a filename yield a canonical
535 line spec. The array and the line spec strings are allocated on the heap,
536 it is the callers responsibility to free them.
538 Note that it is possible to return zero for the symtab
539 if no file is validly specified. Callers must check that.
540 Also, the line number returned may be invalid. */
542 /* We allow single quotes in various places. This is a hideous
543 kludge, which exists because the completer can't yet deal with the
544 lack of single quotes. FIXME: write a linespec_completer which we
545 can use as appropriate instead of make_symbol_completion_list. */
547 struct symtabs_and_lines
548 decode_line_1 (char **argptr, int funfirstline, struct symtab *default_symtab,
549 int default_line, char ***canonical)
551 struct symtabs_and_lines values;
552 struct symtab_and_line val;
555 struct symtab *s = NULL;
558 /* The symtab that SYM was found in. */
559 struct symtab *sym_symtab;
561 struct minimal_symbol *msymbol;
563 /* This is NULL if there are no parens in *ARGPTR, or a pointer to
564 the closing parenthesis if there are parens. */
566 /* This says whether or not something in *ARGPTR is quoted with
567 completer_quotes (i.e. with single quotes). */
569 /* Is part of *ARGPTR is enclosed in double quotes? */
570 int is_quote_enclosed;
571 char *saved_arg = *argptr;
573 init_sal (&val); /* initialize to zeroes */
575 /* Defaults have defaults. */
577 initialize_defaults (&default_symtab, &default_line);
579 /* See if arg is *PC */
582 return decode_indirect (argptr);
584 /* Set various flags.
585 * 'paren_pointer' is important for overload checking, where
586 * we allow things like:
587 * (gdb) break c::f(int)
590 set_flags (*argptr, &is_quoted, &paren_pointer);
592 /* Check to see if it's a multipart linespec (with colons or
595 /* Locate the end of the first half of the linespec. */
597 p = locate_first_half (argptr, &is_quote_enclosed);
599 /* Does it look like there actually were two parts? */
601 if ((p[0] == ':' || p[0] == '.') && paren_pointer == NULL)
604 *argptr = *argptr + 1;
606 /* Is it a C++ or Java compound data structure? */
608 if (p[0] == '.' || p[1] == ':')
609 return decode_compound (argptr, funfirstline, canonical,
612 /* No, the first part is a filename; set s to be that file's
613 symtab. Also, move argptr past the filename. */
615 s = symtab_from_filename (argptr, p, is_quote_enclosed);
618 /* No one really seems to know why this was added. It certainly
619 breaks the command line, though, whenever the passed
620 name is of the form ClassName::Method. This bit of code
621 singles out the class name, and if funfirstline is set (for
622 example, you are setting a breakpoint at this function),
623 you get an error. This did not occur with earlier
624 verions, so I am ifdef'ing this out. 3/29/99 */
627 /* Check if what we have till now is a symbol name */
629 /* We may be looking at a template instantiation such
630 as "foo<int>". Check here whether we know about it,
631 instead of falling through to the code below which
632 handles ordinary function names, because that code
633 doesn't like seeing '<' and '>' in a name -- the
634 skip_quoted call doesn't go past them. So see if we
635 can figure it out right now. */
637 copy = (char *) alloca (p - *argptr + 1);
638 memcpy (copy, *argptr, p - *argptr);
639 copy[p - *argptr] = '\000';
640 sym = lookup_symbol (copy, 0, VAR_NAMESPACE, 0, &sym_symtab);
643 *argptr = (*p == '\'') ? p + 1 : p;
644 return symbol_found (funfirstline, canonical, copy, sym,
647 /* Otherwise fall out from here and go to file/line spec
652 /* S is specified file's symtab, or 0 if no file specified.
653 arg no longer contains the file name. */
655 /* Check whether arg is all digits (and sign) */
658 if (*q == '-' || *q == '+')
660 while (*q >= '0' && *q <= '9')
663 if (q != *argptr && (*q == 0 || *q == ' ' || *q == '\t' || *q == ','))
664 /* We found a token consisting of all digits -- at least one digit. */
665 return decode_all_digits (argptr, default_symtab, default_line,
668 /* Arg token is not digits => try it as a variable name
669 Find the next token (everything up to end or next whitespace). */
671 if (**argptr == '$') /* May be a convenience variable */
672 p = skip_quoted (*argptr + (((*argptr)[1] == '$') ? 2 : 1)); /* One or two $ chars possible */
675 p = skip_quoted (*argptr);
677 error ("Unmatched single quote.");
679 else if (paren_pointer != NULL)
681 p = paren_pointer + 1;
685 p = skip_quoted (*argptr);
688 copy = (char *) alloca (p - *argptr + 1);
689 memcpy (copy, *argptr, p - *argptr);
690 copy[p - *argptr] = '\0';
693 && copy[0] == copy[p - *argptr - 1]
694 && strchr (get_gdb_completer_quote_characters (), copy[0]) != NULL)
696 copy[p - *argptr - 1] = '\0';
699 while (*p == ' ' || *p == '\t')
703 /* If it starts with $: may be a legitimate variable or routine name
704 (e.g. HP-UX millicode routines such as $$dyncall), or it may
705 be history value, or it may be a convenience variable */
711 int need_canonical = 0;
713 p = (copy[1] == '$') ? copy + 2 : copy + 1;
714 while (*p >= '0' && *p <= '9')
716 if (!*p) /* reached end of token without hitting non-digit */
718 /* We have a value history reference */
719 sscanf ((copy[1] == '$') ? copy + 2 : copy + 1, "%d", &index);
720 valx = access_value_history ((copy[1] == '$') ? -index : index);
721 if (TYPE_CODE (VALUE_TYPE (valx)) != TYPE_CODE_INT)
722 error ("History values used in line specs must have integer values.");
726 /* Not all digits -- may be user variable/function or a
727 convenience variable */
729 /* Look up entire name as a symbol first */
730 sym = lookup_symbol (copy, 0, VAR_NAMESPACE, 0, &sym_symtab);
731 s = (struct symtab *) 0;
733 /* Symbol was found --> jump to normal symbol processing. */
735 return symbol_found (funfirstline, canonical, copy, sym,
738 /* If symbol was not found, look in minimal symbol tables */
739 msymbol = lookup_minimal_symbol (copy, NULL, NULL);
740 /* Min symbol was found --> jump to minsym processing. */
742 return minsym_found (funfirstline, msymbol);
744 /* Not a user variable or function -- must be convenience variable */
745 need_canonical = (s == 0) ? 1 : 0;
746 valx = value_of_internalvar (lookup_internalvar (copy + 1));
747 if (TYPE_CODE (VALUE_TYPE (valx)) != TYPE_CODE_INT)
748 error ("Convenience variables used in line specs must have integer values.");
751 /* Either history value or convenience value from above, in valx */
752 val.symtab = s ? s : default_symtab;
753 val.line = value_as_long (valx);
756 values.sals = (struct symtab_and_line *) xmalloc (sizeof val);
757 values.sals[0] = val;
761 build_canonical_line_spec (values.sals, NULL, canonical);
767 /* Look up that token as a variable.
768 If file specified, use that file's per-file block to start with. */
770 sym = lookup_symbol (copy,
771 (s ? BLOCKVECTOR_BLOCK (BLOCKVECTOR (s), STATIC_BLOCK)
772 : get_selected_block (0)),
773 VAR_NAMESPACE, 0, &sym_symtab);
776 return symbol_found (funfirstline, canonical, copy, sym, s, sym_symtab);
778 msymbol = lookup_minimal_symbol (copy, NULL, NULL);
781 return minsym_found (funfirstline, msymbol);
783 if (!have_full_symbols () &&
784 !have_partial_symbols () && !have_minimal_symbols ())
785 error ("No symbol table is loaded. Use the \"file\" command.");
787 error ("Function \"%s\" not defined.", copy);
788 return values; /* for lint */
793 /* Now, more helper functions for decode_line_1. Some conventions
794 that these functions follow:
796 Decode_line_1 typically passes along some of its arguments or local
797 variables to the subfunctions. It passes the variables by
798 reference if they are modified by the subfunction, and by value
801 Some of the functions have side effects that don't arise from
802 variables that are passed by reference. In particular, if a
803 function is passed ARGPTR as an argument, it modifies what ARGPTR
804 points to; typically, it advances *ARGPTR past whatever substring
805 it has just looked at. (If it doesn't modify *ARGPTR, then the
806 function gets passed *ARGPTR instead, which is then called ARG: see
807 set_flags, for example.) Also, functions that return a struct
808 symtabs_and_lines may modify CANONICAL, as in the description of
811 If a function returns a struct symtabs_and_lines, then that struct
812 will immediately make its way up the call chain to be returned by
813 decode_line_1. In particular, all of the functions decode_XXX
814 calculate the appropriate struct symtabs_and_lines, under the
815 assumption that their argument is of the form XXX. */
817 /* First, some functions to initialize stuff at the beggining of the
821 initialize_defaults (struct symtab **default_symtab, int *default_line)
823 if (*default_symtab == 0)
825 /* Use whatever we have for the default source line. We don't use
826 get_current_or_default_symtab_and_line as it can recurse and call
828 struct symtab_and_line cursal =
829 get_current_source_symtab_and_line ();
831 *default_symtab = cursal.symtab;
832 *default_line = cursal.line;
837 set_flags (char *arg, int *is_quoted, char **paren_pointer)
842 /* 'has_if' is for the syntax:
843 * (gdb) break foo if (a==b)
845 if ((ii = strstr (arg, " if ")) != NULL ||
846 (ii = strstr (arg, "\tif ")) != NULL ||
847 (ii = strstr (arg, " if\t")) != NULL ||
848 (ii = strstr (arg, "\tif\t")) != NULL ||
849 (ii = strstr (arg, " if(")) != NULL ||
850 (ii = strstr (arg, "\tif( ")) != NULL)
852 /* Temporarily zap out "if (condition)" to not
853 * confuse the parenthesis-checking code below.
854 * This is undone below. Do not change ii!!
862 && strchr (get_gdb_completer_quote_characters (),
865 *paren_pointer = strchr (arg, '(');
866 if (*paren_pointer != NULL)
867 *paren_pointer = strrchr (*paren_pointer, ')');
869 /* Now that we're safely past the paren_pointer check,
870 * put back " if (condition)" so outer layers can see it
878 /* Decode arg of the form *PC. */
880 static struct symtabs_and_lines
881 decode_indirect (char **argptr)
883 struct symtabs_and_lines values;
887 pc = parse_and_eval_address_1 (argptr);
889 values.sals = (struct symtab_and_line *)
890 xmalloc (sizeof (struct symtab_and_line));
893 values.sals[0] = find_pc_line (pc, 0);
894 values.sals[0].pc = pc;
895 values.sals[0].section = find_pc_overlay (pc);
902 /* Locate the first half of the linespec, ending in a colon, period,
903 or whitespace. (More or less.) Also, check to see if *ARGPTR is
904 enclosed in double quotes; if so, set is_quote_enclosed, advance
905 ARGPTR past that and zero out the trailing double quote. */
908 locate_first_half (char **argptr, int *is_quote_enclosed)
914 /* Maybe we were called with a line range FILENAME:LINENUM,FILENAME:LINENUM
915 and we must isolate the first half. Outer layers will call again later
918 Don't count commas that appear in argument lists of overloaded
919 functions, or in quoted strings. It's stupid to go to this much
920 trouble when the rest of the function is such an obvious roach hotel. */
921 ii = find_toplevel_char (*argptr, ',');
922 has_comma = (ii != 0);
924 /* Temporarily zap out second half to not
925 * confuse the code below.
926 * This is undone below. Do not change ii!!
933 /* Maybe arg is FILE : LINENUM or FILE : FUNCTION */
934 /* May also be CLASS::MEMBER, or NAMESPACE::NAME */
935 /* Look for ':', but ignore inside of <> */
940 *is_quote_enclosed = 1;
945 *is_quote_enclosed = 0;
950 char *temp_end = find_template_name_end (p);
952 error ("malformed template specification in command");
955 /* Check for the end of the first half of the linespec. End of line,
956 a tab, a double colon or the last single colon, or a space. But
957 if enclosed in double quotes we do not break on enclosed spaces */
961 && ((p[1] == ':') || (strchr (p + 1, ':') == NULL)))
962 || ((p[0] == ' ') && !*is_quote_enclosed))
964 if (p[0] == '.' && strchr (p, ':') == NULL) /* Java qualified method. */
966 /* Find the *last* '.', since the others are package qualifiers. */
967 for (p1 = p; *p1; p1++)
975 while (p[0] == ' ' || p[0] == '\t')
978 /* if the closing double quote was left at the end, remove it */
979 if (*is_quote_enclosed)
981 char *closing_quote = strchr (p - 1, '"');
982 if (closing_quote && closing_quote[1] == '\0')
983 *closing_quote = '\0';
986 /* Now that we've safely parsed the first half,
987 * put back ',' so outer layers can see it
997 /* This handles C++ and Java compound data structures. P should point
998 at the first component separator, i.e. double-colon or period. */
1000 static struct symtabs_and_lines
1001 decode_compound (char **argptr, int funfirstline, char ***canonical,
1002 char *saved_arg, char *p)
1004 struct symtabs_and_lines values;
1009 char *saved_arg2 = *argptr;
1012 /* The symtab that SYM was found in. */
1013 struct symtab *sym_symtab;
1015 struct symbol *sym_class;
1017 struct symbol **sym_arr;
1020 /* First check for "global" namespace specification,
1021 of the form "::foo". If found, skip over the colons
1022 and jump to normal symbol processing */
1024 && ((*argptr == p) || (p[-1] == ' ') || (p[-1] == '\t')))
1027 /* We have what looks like a class or namespace
1028 scope specification (A::B), possibly with many
1029 levels of namespaces or classes (A::B::C::D).
1031 Some versions of the HP ANSI C++ compiler (as also possibly
1032 other compilers) generate class/function/member names with
1033 embedded double-colons if they are inside namespaces. To
1034 handle this, we loop a few times, considering larger and
1035 larger prefixes of the string as though they were single
1036 symbols. So, if the initially supplied string is
1037 A::B::C::D::foo, we have to look up "A", then "A::B",
1038 then "A::B::C", then "A::B::C::D", and finally
1039 "A::B::C::D::foo" as single, monolithic symbols, because
1040 A, B, C or D may be namespaces.
1042 Note that namespaces can nest only inside other
1043 namespaces, and not inside classes. So we need only
1044 consider *prefixes* of the string; there is no need to look up
1045 "B::C" separately as a symbol in the previous example. */
1047 p2 = p; /* save for restart */
1050 /* Extract the class name. */
1052 while (p != *argptr && p[-1] == ' ')
1054 copy = (char *) alloca (p - *argptr + 1);
1055 memcpy (copy, *argptr, p - *argptr);
1056 copy[p - *argptr] = 0;
1058 /* Discard the class name from the arg. */
1059 p = p1 + (p1[0] == ':' ? 2 : 1);
1060 while (*p == ' ' || *p == '\t')
1064 sym_class = lookup_symbol (copy, 0, STRUCT_NAMESPACE, 0,
1065 (struct symtab **) NULL);
1068 (t = check_typedef (SYMBOL_TYPE (sym_class)),
1069 (TYPE_CODE (t) == TYPE_CODE_STRUCT
1070 || TYPE_CODE (t) == TYPE_CODE_UNION)))
1072 /* Arg token is not digits => try it as a function name
1073 Find the next token(everything up to end or next blank). */
1075 && strchr (get_gdb_completer_quote_characters (),
1078 p = skip_quoted (*argptr);
1079 *argptr = *argptr + 1;
1084 while (*p && *p != ' ' && *p != '\t' && *p != ',' && *p != ':')
1088 q = operator_chars (*argptr, &q1);
1092 char *tmp = alloca (q1 - q + 1);
1093 memcpy (tmp, q, q1 - q);
1095 opname = cplus_mangle_opname (tmp, DMGL_ANSI);
1098 cplusplus_error (saved_arg, "no mangling for \"%s\"\n", tmp);
1100 copy = (char*) alloca (3 + strlen(opname));
1101 sprintf (copy, "__%s", opname);
1107 copy = (char *) alloca (p - *argptr + 1);
1108 memcpy (copy, *argptr, p - *argptr);
1109 copy[p - *argptr] = '\0';
1111 && copy[p - *argptr - 1]
1112 && strchr (get_gdb_completer_quote_characters (),
1113 copy[p - *argptr - 1]) != NULL)
1114 copy[p - *argptr - 1] = '\0';
1117 /* no line number may be specified */
1118 while (*p == ' ' || *p == '\t')
1123 i1 = 0; /* counter for the symbol array */
1124 sym_arr = (struct symbol **) alloca (total_number_of_methods (t)
1125 * sizeof (struct symbol *));
1127 if (destructor_name_p (copy, t))
1129 /* Destructors are a special case. */
1130 int m_index, f_index;
1132 if (get_destructor_fn_field (t, &m_index, &f_index))
1134 struct fn_field *f = TYPE_FN_FIELDLIST1 (t, m_index);
1137 lookup_symbol (TYPE_FN_FIELD_PHYSNAME (f, f_index),
1138 NULL, VAR_NAMESPACE, (int *) NULL,
1139 (struct symtab **) NULL);
1145 i1 = find_methods (t, copy, sym_arr);
1148 /* There is exactly one field with that name. */
1151 if (sym && SYMBOL_CLASS (sym) == LOC_BLOCK)
1153 values.sals = (struct symtab_and_line *)
1154 xmalloc (sizeof (struct symtab_and_line));
1156 values.sals[0] = find_function_start_sal (sym,
1167 /* There is more than one field with that name
1168 (overloaded). Ask the user which one to use. */
1169 return decode_line_2 (sym_arr, i1, funfirstline, canonical);
1175 if (is_operator_name (copy))
1177 tmp = (char *) alloca (strlen (copy + 3) + 9);
1178 strcpy (tmp, "operator ");
1179 strcat (tmp, copy + 3);
1184 cplusplus_error (saved_arg,
1185 "the class `%s' does not have destructor defined\n",
1186 SYMBOL_SOURCE_NAME (sym_class));
1188 cplusplus_error (saved_arg,
1189 "the class %s does not have any method named %s\n",
1190 SYMBOL_SOURCE_NAME (sym_class), tmp);
1194 /* Move pointer up to next possible class/namespace token */
1195 p = p2 + 1; /* restart with old value +1 */
1196 /* Move pointer ahead to next double-colon */
1197 while (*p && (p[0] != ' ') && (p[0] != '\t') && (p[0] != '\''))
1201 temp_end = find_template_name_end (p);
1203 error ("malformed template specification in command");
1206 else if ((p[0] == ':') && (p[1] == ':'))
1207 break; /* found double-colon */
1213 break; /* out of the while (1) */
1215 p2 = p; /* save restart for next time around */
1216 *argptr = saved_arg2; /* restore argptr */
1219 /* Last chance attempt -- check entire name as a symbol */
1220 /* Use "copy" in preparation for jumping out of this block,
1221 to be consistent with usage following the jump target */
1222 copy = (char *) alloca (p - saved_arg2 + 1);
1223 memcpy (copy, saved_arg2, p - saved_arg2);
1224 /* Note: if is_quoted should be true, we snuff out quote here anyway */
1225 copy[p - saved_arg2] = '\000';
1226 /* Set argptr to skip over the name */
1227 *argptr = (*p == '\'') ? p + 1 : p;
1228 /* Look up entire name */
1229 sym = lookup_symbol (copy, 0, VAR_NAMESPACE, 0, &sym_symtab);
1231 return symbol_found (funfirstline, canonical, copy, sym,
1234 /* Couldn't find any interpretation as classes/namespaces, so give up */
1235 /* The quotes are important if copy is empty. */
1236 cplusplus_error (saved_arg,
1237 "Can't find member of namespace, class, struct, or union named \"%s\"\n",
1243 /* Return the symtab associated to the filename given by the substring
1244 of *ARGPTR ending at P, and advance ARGPTR past that filename. */
1246 static struct symtab *
1247 symtab_from_filename (char **argptr, char *p, int is_quote_enclosed)
1254 while (p != *argptr && p[-1] == ' ')
1256 if ((*p == '"') && is_quote_enclosed)
1258 copy = (char *) alloca (p - *argptr + 1);
1259 memcpy (copy, *argptr, p - *argptr);
1260 /* It may have the ending quote right after the file name */
1261 if (is_quote_enclosed && copy[p - *argptr - 1] == '"')
1262 copy[p - *argptr - 1] = 0;
1264 copy[p - *argptr] = 0;
1266 /* Find that file's data. */
1267 s = lookup_symtab (copy);
1270 if (!have_full_symbols () && !have_partial_symbols ())
1271 error ("No symbol table is loaded. Use the \"file\" command.");
1272 error ("No source file named %s.", copy);
1275 /* Discard the file name from the arg. */
1277 while (*p == ' ' || *p == '\t')
1286 /* This decodes a line where the argument is all digits (possibly
1287 preceded by a sign). Q should point to the end of those digits;
1288 the other arguments are as usual. */
1290 static struct symtabs_and_lines
1291 decode_all_digits (char **argptr, struct symtab *default_symtab,
1292 int default_line, char ***canonical,
1293 struct symtab *s, char *q)
1296 struct symtabs_and_lines values;
1297 struct symtab_and_line val;
1305 /* We might need a canonical line spec if no file was specified. */
1306 int need_canonical = (s == 0) ? 1 : 0;
1310 /* This is where we need to make sure that we have good defaults.
1311 We must guarantee that this section of code is never executed
1312 when we are called with just a function name, since
1313 set_default_source_symtab_and_line uses
1314 select_source_symtab that calls us with such an argument */
1316 if (s == 0 && default_symtab == 0)
1318 /* Make sure we have at least a default source file. */
1319 set_default_source_symtab_and_line ();
1320 initialize_defaults (&default_symtab, &default_line);
1323 if (**argptr == '+')
1324 sign = plus, (*argptr)++;
1325 else if (**argptr == '-')
1326 sign = minus, (*argptr)++;
1327 val.line = atoi (*argptr);
1334 val.line = default_line + val.line;
1340 val.line = default_line - val.line;
1345 break; /* No need to adjust val.line. */
1348 while (*q == ' ' || *q == '\t')
1354 /* It is possible that this source file has more than one symtab,
1355 and that the new line number specification has moved us from the
1356 default (in s) to a new one. */
1357 val.symtab = find_line_symtab (s, val.line, NULL, NULL);
1358 if (val.symtab == 0)
1362 values.sals = (struct symtab_and_line *)
1363 xmalloc (sizeof (struct symtab_and_line));
1364 values.sals[0] = val;
1367 build_canonical_line_spec (values.sals, NULL, canonical);
1373 /* Now come some functions that are called from multiple places within
1376 /* We've found a symbol SYM to associate with our linespec; build a
1377 corresponding struct symtabs_and_lines. */
1379 static struct symtabs_and_lines
1380 symbol_found (int funfirstline, char ***canonical, char *copy,
1381 struct symbol *sym, struct symtab *s,
1382 struct symtab *sym_symtab)
1384 struct symtabs_and_lines values;
1386 if (SYMBOL_CLASS (sym) == LOC_BLOCK)
1388 /* Arg is the name of a function */
1389 values.sals = (struct symtab_and_line *)
1390 xmalloc (sizeof (struct symtab_and_line));
1391 values.sals[0] = find_function_start_sal (sym, funfirstline);
1394 /* Don't use the SYMBOL_LINE; if used at all it points to
1395 the line containing the parameters or thereabouts, not
1396 the first line of code. */
1398 /* We might need a canonical line spec if it is a static
1402 struct blockvector *bv = BLOCKVECTOR (sym_symtab);
1403 struct block *b = BLOCKVECTOR_BLOCK (bv, STATIC_BLOCK);
1404 if (lookup_block_symbol (b, copy, NULL, VAR_NAMESPACE) != NULL)
1405 build_canonical_line_spec (values.sals, copy, canonical);
1412 error ("\"%s\" is not a function", copy);
1413 else if (SYMBOL_LINE (sym) != 0)
1415 /* We know its line number. */
1416 values.sals = (struct symtab_and_line *)
1417 xmalloc (sizeof (struct symtab_and_line));
1419 memset (&values.sals[0], 0, sizeof (values.sals[0]));
1420 values.sals[0].symtab = sym_symtab;
1421 values.sals[0].line = SYMBOL_LINE (sym);
1425 /* This can happen if it is compiled with a compiler which doesn't
1426 put out line numbers for variables. */
1427 /* FIXME: Shouldn't we just set .line and .symtab to zero
1428 and return? For example, "info line foo" could print
1430 error ("Line number not known for symbol \"%s\"", copy);
1434 /* We've found a minimal symbol MSYMBOL to associate with our
1435 linespec; build a corresponding struct symtabs_and_lines. */
1437 static struct symtabs_and_lines
1438 minsym_found (int funfirstline, struct minimal_symbol *msymbol)
1440 struct symtabs_and_lines values;
1442 values.sals = (struct symtab_and_line *)
1443 xmalloc (sizeof (struct symtab_and_line));
1444 values.sals[0] = find_pc_sect_line (SYMBOL_VALUE_ADDRESS (msymbol),
1445 (struct sec *) 0, 0);
1446 values.sals[0].section = SYMBOL_BFD_SECTION (msymbol);
1449 values.sals[0].pc += FUNCTION_START_OFFSET;
1450 values.sals[0].pc = SKIP_PROLOGUE (values.sals[0].pc);