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