* linespec.c (add_sal_to_sals): Add LITERAL_CANONICAL
[platform/upstream/binutils.git] / gdb / linespec.c
1 /* Parser for linespec for the GNU debugger, GDB.
2
3    Copyright (C) 1986-2005, 2007-2012 Free Software Foundation, Inc.
4
5    This file is part of GDB.
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 3 of the License, or
10    (at your option) any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
19
20 #include "defs.h"
21 #include "symtab.h"
22 #include "frame.h"
23 #include "command.h"
24 #include "symfile.h"
25 #include "objfiles.h"
26 #include "source.h"
27 #include "demangle.h"
28 #include "value.h"
29 #include "completer.h"
30 #include "cp-abi.h"
31 #include "cp-support.h"
32 #include "parser-defs.h"
33 #include "block.h"
34 #include "objc-lang.h"
35 #include "linespec.h"
36 #include "exceptions.h"
37 #include "language.h"
38 #include "interps.h"
39 #include "mi/mi-cmds.h"
40 #include "target.h"
41 #include "arch-utils.h"
42 #include <ctype.h>
43 #include "cli/cli-utils.h"
44 #include "filenames.h"
45 #include "ada-lang.h"
46 #include "stack.h"
47
48 typedef struct symtab *symtab_p;
49 DEF_VEC_P (symtab_p);
50
51 typedef struct symbol *symbolp;
52 DEF_VEC_P (symbolp);
53
54 typedef struct type *typep;
55 DEF_VEC_P (typep);
56
57 /* An address entry is used to ensure that any given location is only
58    added to the result a single time.  It holds an address and the
59    program space from which the address came.  */
60
61 struct address_entry
62 {
63   struct program_space *pspace;
64   CORE_ADDR addr;
65 };
66
67 /* A helper struct which just holds a minimal symbol and the object
68    file from which it came.  */
69
70 typedef struct minsym_and_objfile
71 {
72   struct minimal_symbol *minsym;
73   struct objfile *objfile;
74 } minsym_and_objfile_d;
75
76 DEF_VEC_O (minsym_and_objfile_d);
77
78 /* An enumeration of possible signs for a line offset.  */
79 enum offset_relative_sign
80 {
81   /* No sign  */
82   LINE_OFFSET_NONE,
83
84   /* A plus sign ("+")  */
85   LINE_OFFSET_PLUS,
86
87   /* A minus sign ("-")  */
88   LINE_OFFSET_MINUS,
89
90   /* A special "sign" for unspecified offset.  */
91   LINE_OFFSET_UNKNOWN
92 };
93
94 /* A line offset in a linespec.  */
95
96 struct line_offset
97 {
98   /* Line offset and any specified sign.  */
99   int offset;
100   enum offset_relative_sign sign;
101 };
102
103 /* A linespec.  Elements of this structure are filled in by a parser
104    (either parse_linespec or some other function).  The structure is
105    then converted into SALs by convert_linespec_to_sals.  */
106
107 struct linespec
108 {
109   /* An expression and the resulting PC.  Specifying an expression
110      currently precludes the use of other members.  */
111
112   /* The expression entered by the user.  */
113   const char *expression;
114
115   /* The resulting PC expression derived from evaluating EXPRESSION.  */
116   CORE_ADDR expr_pc;
117
118   /* Any specified file symtabs.  */
119
120   /* The user-supplied source filename or NULL if none was specified.  */
121   const char *source_filename;
122
123   /* The list of symtabs to search to which to limit the search.  May not
124      be NULL.  If SOURCE_FILENAME is NULL (no user-specified filename),
125      FILE_SYMTABS should contain one single NULL member.  This will
126      cause the code to use the default symtab.  */
127   VEC (symtab_p) *file_symtabs;
128
129   /* The name of a function or method and any matching symbols.  */
130
131   /* The user-specified function name.  If no function name was
132      supplied, this may be NULL.  */
133   const char *function_name;
134
135   /* A list of matching function symbols and minimal symbols.  Both lists
136      may be NULL if no matching symbols were found.  */
137   VEC (symbolp) *function_symbols;
138   VEC (minsym_and_objfile_d) *minimal_symbols;
139
140   /* The name of a label and matching symbols.  */
141
142   /* The user-specified label name.  */
143   const char *label_name;
144
145   /* A structure of matching label symbols and the corresponding
146      function symbol in which the label was found.  Both may be NULL
147      or both must be non-NULL.  */
148   struct
149   {
150     VEC (symbolp) *label_symbols;
151     VEC (symbolp) *function_symbols;
152   } labels;
153
154   /* Line offset.  It may be LINE_OFFSET_UNKNOWN, meaning that no
155    offset was specified.  */
156   struct line_offset line_offset;
157 };
158 typedef struct linespec *linespec_p;
159
160 /* An instance of this is used to keep all state while linespec
161    operates.  This instance is passed around as a 'this' pointer to
162    the various implementation methods.  */
163
164 struct linespec_state
165 {
166   /* The language in use during linespec processing.  */
167   const struct language_defn *language;
168
169   /* The program space as seen when the module was entered.  */
170   struct program_space *program_space;
171
172   /* The default symtab to use, if no other symtab is specified.  */
173   struct symtab *default_symtab;
174
175   /* The default line to use.  */
176   int default_line;
177
178   /* The 'funfirstline' value that was passed in to decode_line_1 or
179      decode_line_full.  */
180   int funfirstline;
181
182   /* Nonzero if we are running in 'list' mode; see decode_line_list.  */
183   int list_mode;
184
185   /* The 'canonical' value passed to decode_line_full, or NULL.  */
186   struct linespec_result *canonical;
187
188   /* Canonical strings that mirror the symtabs_and_lines result.  */
189   char **canonical_names;
190
191   /* This is a set of address_entry objects which is used to prevent
192      duplicate symbols from being entered into the result.  */
193   htab_t addr_set;
194 };
195
196 /* This is a helper object that is used when collecting symbols into a
197    result.  */
198
199 struct collect_info
200 {
201   /* The linespec object in use.  */
202   struct linespec_state *state;
203
204   /* A list of symtabs to which to restrict matches.  */
205   VEC (symtab_p) *file_symtabs;
206
207   /* The result being accumulated.  */
208   struct
209   {
210     VEC (symbolp) *symbols;
211     VEC (minsym_and_objfile_d) *minimal_symbols;
212   } result;
213 };
214
215 /* Token types  */
216
217 enum ls_token_type
218 {
219   /* A keyword  */
220   LSTOKEN_KEYWORD = 0,
221
222   /* A colon "separator"  */
223   LSTOKEN_COLON,
224
225   /* A string  */
226   LSTOKEN_STRING,
227
228   /* A number  */
229   LSTOKEN_NUMBER,
230
231   /* A comma  */
232   LSTOKEN_COMMA,
233
234   /* EOI (end of input)  */
235   LSTOKEN_EOI,
236
237   /* Consumed token  */
238   LSTOKEN_CONSUMED
239 };
240 typedef enum ls_token_type linespec_token_type;
241
242 /* List of keywords  */
243
244 static const char * const linespec_keywords[] = { "if", "thread", "task" };
245
246 /* A token of the linespec lexer  */
247
248 struct ls_token
249 {
250   /* The type of the token  */
251   linespec_token_type type;
252
253   /* Data for the token  */
254   union
255   {
256     /* A string, given as a stoken  */
257     struct stoken string;
258
259     /* A keyword  */
260     const char *keyword;
261   } data;
262 };
263 typedef struct ls_token linespec_token;
264
265 #define LS_TOKEN_STOKEN(TOK) (TOK).data.string
266 #define LS_TOKEN_KEYWORD(TOK) (TOK).data.keyword
267
268 /* An instance of the linespec parser.  */
269
270 struct ls_parser
271 {
272   /* Lexer internal data  */
273   struct
274   {
275     /* Save head of input stream.  */
276     char *saved_arg;
277
278     /* Head of the input stream.  */
279     char **stream;
280 #define PARSER_STREAM(P) (*(P)->lexer.stream)
281
282     /* The current token.  */
283     linespec_token current;
284   } lexer;
285
286   /* Is the entire linespec quote-enclosed?  */
287   int is_quote_enclosed;
288
289   /* The state of the parse.  */
290   struct linespec_state state;
291 #define PARSER_STATE(PPTR) (&(PPTR)->state)
292
293   /* The result of the parse.  */
294   struct linespec result;
295 #define PARSER_RESULT(PPTR) (&(PPTR)->result)
296 };
297 typedef struct ls_parser linespec_parser;
298
299 /* Prototypes for local functions.  */
300
301 static void initialize_defaults (struct symtab **default_symtab,
302                                  int *default_line);
303
304 static CORE_ADDR linespec_expression_to_pc (char **exp_ptr);
305
306 static struct symtabs_and_lines decode_objc (struct linespec_state *self,
307                                              linespec_p ls,
308                                              char **argptr);
309
310 static VEC (symtab_p) *symtabs_from_filename (const char *);
311
312 static VEC (symbolp) *find_label_symbols (struct linespec_state *self,
313                                           VEC (symbolp) *function_symbols,
314                                           VEC (symbolp) **label_funcs_ret,
315                                           const char *name);
316
317 void find_linespec_symbols (struct linespec_state *self,
318                             VEC (symtab_p) *file_symtabs,
319                             const char *name,
320                             VEC (symbolp) **symbols,
321                             VEC (minsym_and_objfile_d) **minsyms);
322
323 static struct line_offset
324      linespec_parse_variable (struct linespec_state *self,
325                               const char *variable);
326
327 static int symbol_to_sal (struct symtab_and_line *result,
328                           int funfirstline, struct symbol *sym);
329
330 static void add_matching_symbols_to_info (const char *name,
331                                           struct collect_info *info,
332                                           struct program_space *pspace);
333
334 static void add_all_symbol_names_from_pspace (struct collect_info *info,
335                                               struct program_space *pspace,
336                                               VEC (const_char_ptr) *names);
337
338 static VEC (symtab_p) *collect_symtabs_from_filename (const char *file);
339
340 static void decode_digits_ordinary (struct linespec_state *self,
341                                     linespec_p ls,
342                                     int line,
343                                     struct symtabs_and_lines *sals,
344                                     struct linetable_entry **best_entry);
345
346 static void decode_digits_list_mode (struct linespec_state *self,
347                                      linespec_p ls,
348                                      struct symtabs_and_lines *values,
349                                      struct symtab_and_line val);
350
351 static void minsym_found (struct linespec_state *self, struct objfile *objfile,
352                           struct minimal_symbol *msymbol,
353                           struct symtabs_and_lines *result);
354
355 static int compare_symbols (const void *a, const void *b);
356
357 static int compare_msymbols (const void *a, const void *b);
358
359 static const char *find_toplevel_char (const char *s, char c);
360
361 /* Permitted quote characters for the parser.  This is different from the
362    completer's quote characters to allow backward compatibility with the
363    previous parser.  */
364 static const char *const linespec_quote_characters = "\"\'";
365
366 /* Lexer functions.  */
367
368 /* Lex a number from the input in PARSER.  This only supports
369    decimal numbers.  */
370
371 static linespec_token
372 linespec_lexer_lex_number (linespec_parser *parser)
373 {
374   linespec_token token;
375
376   token.type = LSTOKEN_NUMBER;
377   LS_TOKEN_STOKEN (token).length = 0;
378   LS_TOKEN_STOKEN (token).ptr = PARSER_STREAM (parser);
379
380   /* Keep any sign at the start of the stream.  */
381   if (*PARSER_STREAM (parser) == '+' || *PARSER_STREAM (parser) == '-')
382     {
383       ++LS_TOKEN_STOKEN (token).length;
384       ++(PARSER_STREAM (parser));
385     }
386
387   while (isdigit (*PARSER_STREAM (parser)))
388     {
389       ++LS_TOKEN_STOKEN (token).length;
390       ++(PARSER_STREAM (parser));
391     }
392
393   return token;
394 }
395
396 /* Does P represent one of the keywords?  If so, return
397    the keyword.  If not, return NULL.  */
398
399 static const char *
400 linespec_lexer_lex_keyword (const char *p)
401 {
402   int i;
403
404   if (p != NULL)
405     {
406       for (i = 0; i < ARRAY_SIZE (linespec_keywords); ++i)
407         {
408           int len = strlen (linespec_keywords[i]);
409
410           /* If P begins with one of the keywords and the next
411              character is not a valid identifier character,
412              we have found a keyword.  */
413           if (strncmp (p, linespec_keywords[i], len) == 0
414               && !(isalnum (p[len]) || p[len] == '_'))
415             return linespec_keywords[i];
416         }
417     }
418
419   return NULL;
420 }
421
422 /* Does STRING represent an Ada operator?  If so, return the length
423    of the decoded operator name.  If not, return 0.  */
424
425 static int
426 is_ada_operator (const char *string)
427 {
428   const struct ada_opname_map *mapping;
429
430   for (mapping = ada_opname_table;
431        mapping->encoded != NULL
432          && strncmp (mapping->decoded, string,
433                      strlen (mapping->decoded)) != 0; ++mapping)
434     ;
435
436   return mapping->decoded == NULL ? 0 : strlen (mapping->decoded);
437 }
438
439 /* Find QUOTE_CHAR in STRING, accounting for the ':' terminal.  Return
440    the location of QUOTE_CHAR, or NULL if not found.  */
441
442 static const char *
443 skip_quote_char (const char *string, char quote_char)
444 {
445   const char *p, *last;
446
447   p = last = find_toplevel_char (string, quote_char);
448   while (p && *p != '\0' && *p != ':')
449     {
450       p = find_toplevel_char (p, quote_char);
451       if (p != NULL)
452         last = p++;
453     }
454
455   return last;
456 }
457
458 /* Make a writable copy of the string given in TOKEN, trimming
459    any trailing whitespace.  */
460
461 static char *
462 copy_token_string (linespec_token token)
463 {
464   char *str, *s;
465
466   if (token.type == LSTOKEN_KEYWORD)
467     return xstrdup (LS_TOKEN_KEYWORD (token));
468
469   str = savestring (LS_TOKEN_STOKEN (token).ptr,
470                     LS_TOKEN_STOKEN (token).length);
471   s = remove_trailing_whitespace (str, str + LS_TOKEN_STOKEN (token).length);
472   *s = '\0';
473
474   return str;
475 }
476
477 /* Does P represent the end of a quote-enclosed linespec?  */
478
479 static int
480 is_closing_quote_enclosed (const char *p)
481 {
482   if (strchr (linespec_quote_characters, *p))
483     ++p;
484   p = skip_spaces ((char *) p);
485   return (*p == '\0' || linespec_lexer_lex_keyword (p));
486 }
487
488 /* Find the end of the parameter list that starts with *INPUT.
489    This helper function assists with lexing string segments
490    which might contain valid (non-terminating) commas.  */
491
492 static char *
493 find_parameter_list_end (char *input)
494 {
495   char end_char, start_char;
496   int depth;
497   char *p;
498
499   start_char = *input;
500   if (start_char == '(')
501     end_char = ')';
502   else if (start_char == '<')
503     end_char = '>';
504   else
505     return NULL;
506
507   p = input;
508   depth = 0;
509   while (*p)
510     {
511       if (*p == start_char)
512         ++depth;
513       else if (*p == end_char)
514         {
515           if (--depth == 0)
516             {
517               ++p;
518               break;
519             }
520         }
521       ++p;
522     }
523
524   return p;
525 }
526
527
528 /* Lex a string from the input in PARSER.  */
529
530 static linespec_token
531 linespec_lexer_lex_string (linespec_parser *parser)
532 {
533   linespec_token token;
534   char *start = PARSER_STREAM (parser);
535
536   token.type = LSTOKEN_STRING;
537
538   /* If the input stream starts with a quote character, skip to the next
539      quote character, regardless of the content.  */
540   if (strchr (linespec_quote_characters, *PARSER_STREAM (parser)))
541     {
542       const char *end;
543       char quote_char = *PARSER_STREAM (parser);
544
545       /* Special case: Ada operators.  */
546       if (PARSER_STATE (parser)->language->la_language == language_ada
547           && quote_char == '\"')
548         {
549           int len = is_ada_operator (PARSER_STREAM (parser));
550
551           if (len != 0)
552             {
553               /* The input is an Ada operator.  Return the quoted string
554                  as-is.  */
555               LS_TOKEN_STOKEN (token).ptr = PARSER_STREAM (parser);
556               LS_TOKEN_STOKEN (token).length = len;
557               PARSER_STREAM (parser) += len;
558               return token;
559             }
560
561           /* The input does not represent an Ada operator -- fall through
562              to normal quoted string handling.  */
563         }
564
565       /* Skip past the beginning quote.  */
566       ++(PARSER_STREAM (parser));
567
568       /* Mark the start of the string.  */
569       LS_TOKEN_STOKEN (token).ptr = PARSER_STREAM (parser);
570
571       /* Skip to the ending quote.  */
572       end = skip_quote_char (PARSER_STREAM (parser), quote_char);
573
574       /* Error if the input did not terminate properly.  */
575       if (end == NULL)
576         error (_("unmatched quote"));
577
578       /* Skip over the ending quote and mark the length of the string.  */
579       PARSER_STREAM (parser) = (char *) ++end;
580       LS_TOKEN_STOKEN (token).length = PARSER_STREAM (parser) - 2 - start;
581     }
582   else
583     {
584       char *p;
585
586       /* Otherwise, only identifier characters are permitted.
587          Spaces are the exception.  In general, we keep spaces,
588          but only if the next characters in the input do not resolve
589          to one of the keywords.
590
591          This allows users to forgo quoting CV-qualifiers, template arguments,
592          and similar common language constructs.  */
593
594       while (1)
595         {
596           if (isspace (*PARSER_STREAM (parser)))
597             {
598               p = skip_spaces (PARSER_STREAM (parser));
599               if (linespec_lexer_lex_keyword (p) != NULL)
600                 {
601                   LS_TOKEN_STOKEN (token).ptr = start;
602                   LS_TOKEN_STOKEN (token).length
603                     = PARSER_STREAM (parser) - start;
604                   return token;
605                 }
606
607               /* Advance past the whitespace.  */
608               PARSER_STREAM (parser) = p;
609             }
610
611           /* If the next character is EOI or (single) ':', the
612              string is complete;  return the token.  */
613           if (*PARSER_STREAM (parser) == 0)
614             {
615               LS_TOKEN_STOKEN (token).ptr = start;
616               LS_TOKEN_STOKEN (token).length = PARSER_STREAM (parser) - start;
617               return token;
618             }
619           else if (PARSER_STREAM (parser)[0] == ':')
620             {
621               /* Do not tokenize the C++ scope operator. */
622               if (PARSER_STREAM (parser)[1] == ':')
623                 ++(PARSER_STREAM (parser));
624
625               /* Do not tokenify if the input length so far is one
626                  (i.e, a single-letter drive name) and the next character
627                  is a directory separator.  This allows Windows-style
628                  paths to be recognized as filenames without quoting it.  */
629               else if ((PARSER_STREAM (parser) - start) != 1
630                        || !IS_DIR_SEPARATOR (PARSER_STREAM (parser)[1]))
631                 {
632                   LS_TOKEN_STOKEN (token).ptr = start;
633                   LS_TOKEN_STOKEN (token).length
634                     = PARSER_STREAM (parser) - start;
635                   return token;
636                 }
637             }
638           /* Special case: permit quote-enclosed linespecs.  */
639           else if (parser->is_quote_enclosed
640                    && strchr (linespec_quote_characters,
641                               *PARSER_STREAM (parser))
642                    && is_closing_quote_enclosed (PARSER_STREAM (parser)))
643             {
644               LS_TOKEN_STOKEN (token).ptr = start;
645               LS_TOKEN_STOKEN (token).length = PARSER_STREAM (parser) - start;
646               return token;
647             }
648           /* Because commas may terminate a linespec and appear in
649              the middle of valid string input, special cases for
650              '<' and '(' are necessary.  */
651           else if (*PARSER_STREAM (parser) == '<'
652                    || *PARSER_STREAM (parser) == '(')
653             {
654               char *p;
655
656               p = find_parameter_list_end (PARSER_STREAM (parser));
657               if (p != NULL)
658                 {
659                   PARSER_STREAM (parser) = p;
660                   continue;
661                 }
662             }
663           /* Commas are terminators, but not if they are part of an
664              operator name.  */
665           else if (*PARSER_STREAM (parser) == ',')
666             {
667               if ((PARSER_STATE (parser)->language->la_language
668                    == language_cplus)
669                   && (PARSER_STREAM (parser) - start) > 8
670                   /* strlen ("operator") */)
671                 {
672                   char *p = strstr (start, "operator");
673
674                   if (p != NULL && is_operator_name (p))
675                     {
676                       /* This is an operator name.  Keep going.  */
677                       ++(PARSER_STREAM (parser));
678                       continue;
679                     }
680                 }
681
682               /* Comma terminates the string.  */
683               LS_TOKEN_STOKEN (token).ptr = start;
684               LS_TOKEN_STOKEN (token).length = PARSER_STREAM (parser) - start;
685               return token;
686             }
687
688           /* Advance the stream.  */
689           ++(PARSER_STREAM (parser));
690         }
691     }
692
693   return token;
694 }
695
696 /* Lex a single linespec token from PARSER.  */
697
698 static linespec_token
699 linespec_lexer_lex_one (linespec_parser *parser)
700 {
701   const char *keyword;
702
703   if (parser->lexer.current.type == LSTOKEN_CONSUMED)
704     {
705       /* Skip any whitespace.  */
706       PARSER_STREAM (parser) = skip_spaces (PARSER_STREAM (parser));
707
708       /* Check for a keyword.  */
709       keyword = linespec_lexer_lex_keyword (PARSER_STREAM (parser));
710       if (keyword != NULL)
711         {
712           parser->lexer.current.type = LSTOKEN_KEYWORD;
713           LS_TOKEN_KEYWORD (parser->lexer.current) = keyword;
714           return parser->lexer.current;
715         }
716
717       /* Handle other tokens.  */
718       switch (*PARSER_STREAM (parser))
719         {
720         case 0:
721           parser->lexer.current.type = LSTOKEN_EOI;
722           break;
723
724         case '+': case '-':
725         case '0': case '1': case '2': case '3': case '4':
726         case '5': case '6': case '7': case '8': case '9':
727           parser->lexer.current = linespec_lexer_lex_number (parser);
728           break;
729
730         case ':':
731           /* If we have a scope operator, lex the input as a string.
732              Otherwise, return LSTOKEN_COLON.  */
733           if (PARSER_STREAM (parser)[1] == ':')
734             parser->lexer.current = linespec_lexer_lex_string (parser);
735           else
736             {
737               parser->lexer.current.type = LSTOKEN_COLON;
738               ++(PARSER_STREAM (parser));
739             }
740           break;
741
742         case '\'': case '\"':
743           /* Special case: permit quote-enclosed linespecs.  */
744           if (parser->is_quote_enclosed
745               && is_closing_quote_enclosed (PARSER_STREAM (parser)))
746             {
747               ++(PARSER_STREAM (parser));
748               parser->lexer.current.type = LSTOKEN_EOI;
749             }
750           else
751             parser->lexer.current = linespec_lexer_lex_string (parser);
752           break;
753
754         case ',':
755           parser->lexer.current.type = LSTOKEN_COMMA;
756           LS_TOKEN_STOKEN (parser->lexer.current).ptr
757             = PARSER_STREAM (parser);
758           LS_TOKEN_STOKEN (parser->lexer.current).length = 1;
759           ++(PARSER_STREAM (parser));
760           break;
761
762         default:
763           /* If the input is not a number, it must be a string.
764              [Keywords were already considered above.]  */
765           parser->lexer.current = linespec_lexer_lex_string (parser);
766           break;
767         }
768     }
769
770   return parser->lexer.current;
771 }
772
773 /* Consume the current token and return the next token in PARSER's
774    input stream.  */
775
776 static linespec_token
777 linespec_lexer_consume_token (linespec_parser *parser)
778 {
779   parser->lexer.current.type = LSTOKEN_CONSUMED;
780   return linespec_lexer_lex_one (parser);
781 }
782
783 /* Return the next token without consuming the current token.  */
784
785 static linespec_token
786 linespec_lexer_peek_token (linespec_parser *parser)
787 {
788   linespec_token next;
789   char *saved_stream = PARSER_STREAM (parser);
790   linespec_token saved_token = parser->lexer.current;
791
792   next = linespec_lexer_consume_token (parser);
793   PARSER_STREAM (parser) = saved_stream;
794   parser->lexer.current = saved_token;
795   return next;
796 }
797
798 /* Helper functions.  */
799
800 /* Add SAL to SALS.  */
801
802 static void
803 add_sal_to_sals_basic (struct symtabs_and_lines *sals,
804                        struct symtab_and_line *sal)
805 {
806   ++sals->nelts;
807   sals->sals = xrealloc (sals->sals, sals->nelts * sizeof (sals->sals[0]));
808   sals->sals[sals->nelts - 1] = *sal;
809 }
810
811 /* Add SAL to SALS, and also update SELF->CANONICAL_NAMES to reflect
812    the new sal, if needed.  If not NULL, SYMNAME is the name of the
813    symbol to use when constructing the new canonical name.
814
815    If LITERAL_CANONICAL is non-zero, SYMNAME will be used as the
816    canonical name for the SAL.  */
817
818 static void
819 add_sal_to_sals (struct linespec_state *self,
820                  struct symtabs_and_lines *sals,
821                  struct symtab_and_line *sal,
822                  const char *symname, int literal_canonical)
823 {
824   add_sal_to_sals_basic (sals, sal);
825
826   if (self->canonical)
827     {
828       char *canonical_name = NULL;
829
830       self->canonical_names = xrealloc (self->canonical_names,
831                                         sals->nelts * sizeof (char *));
832       if (!literal_canonical && sal->symtab && sal->symtab->filename)
833         {
834           char *filename = sal->symtab->filename;
835
836           /* Note that the filter doesn't have to be a valid linespec
837              input.  We only apply the ":LINE" treatment to Ada for
838              the time being.  */
839           if (symname != NULL && sal->line != 0
840               && self->language->la_language == language_ada)
841             canonical_name = xstrprintf ("%s:%s:%d", filename, symname,
842                                          sal->line);
843           else if (symname != NULL)
844             canonical_name = xstrprintf ("%s:%s", filename, symname);
845           else
846             canonical_name = xstrprintf ("%s:%d", filename, sal->line);
847         }
848       else if (symname != NULL)
849         canonical_name = xstrdup (symname);
850
851       self->canonical_names[sals->nelts - 1] = canonical_name;
852     }
853 }
854
855 /* A hash function for address_entry.  */
856
857 static hashval_t
858 hash_address_entry (const void *p)
859 {
860   const struct address_entry *aep = p;
861   hashval_t hash;
862
863   hash = iterative_hash_object (aep->pspace, 0);
864   return iterative_hash_object (aep->addr, hash);
865 }
866
867 /* An equality function for address_entry.  */
868
869 static int
870 eq_address_entry (const void *a, const void *b)
871 {
872   const struct address_entry *aea = a;
873   const struct address_entry *aeb = b;
874
875   return aea->pspace == aeb->pspace && aea->addr == aeb->addr;
876 }
877
878 /* Check whether the address, represented by PSPACE and ADDR, is
879    already in the set.  If so, return 0.  Otherwise, add it and return
880    1.  */
881
882 static int
883 maybe_add_address (htab_t set, struct program_space *pspace, CORE_ADDR addr)
884 {
885   struct address_entry e, *p;
886   void **slot;
887
888   e.pspace = pspace;
889   e.addr = addr;
890   slot = htab_find_slot (set, &e, INSERT);
891   if (*slot)
892     return 0;
893
894   p = XNEW (struct address_entry);
895   memcpy (p, &e, sizeof (struct address_entry));
896   *slot = p;
897
898   return 1;
899 }
900
901 /* A callback function and the additional data to call it with.  */
902
903 struct symbol_and_data_callback
904 {
905   /* The callback to use.  */
906   symbol_found_callback_ftype *callback;
907
908   /* Data to be passed to the callback.  */
909   void *data;
910 };
911
912 /* A helper for iterate_over_all_matching_symtabs that is used to
913    restrict calls to another callback to symbols representing inline
914    symbols only.  */
915
916 static int
917 iterate_inline_only (struct symbol *sym, void *d)
918 {
919   if (SYMBOL_INLINED (sym))
920     {
921       struct symbol_and_data_callback *cad = d;
922
923       return cad->callback (sym, cad->data);
924     }
925   return 1; /* Continue iterating.  */
926 }
927
928 /* Some data for the expand_symtabs_matching callback.  */
929
930 struct symbol_matcher_data
931 {
932   /* The lookup name against which symbol name should be compared.  */
933   const char *lookup_name;
934
935   /* The routine to be used for comparison.  */
936   symbol_name_cmp_ftype symbol_name_cmp;
937 };
938
939 /* A helper for iterate_over_all_matching_symtabs that is passed as a
940    callback to the expand_symtabs_matching method.  */
941
942 static int
943 iterate_name_matcher (const char *name, void *d)
944 {
945   const struct symbol_matcher_data *data = d;
946
947   if (data->symbol_name_cmp (name, data->lookup_name) == 0)
948     return 1; /* Expand this symbol's symbol table.  */
949   return 0; /* Skip this symbol.  */
950 }
951
952 /* A helper that walks over all matching symtabs in all objfiles and
953    calls CALLBACK for each symbol matching NAME.  If SEARCH_PSPACE is
954    not NULL, then the search is restricted to just that program
955    space.  If INCLUDE_INLINE is nonzero then symbols representing
956    inlined instances of functions will be included in the result.  */
957
958 static void
959 iterate_over_all_matching_symtabs (struct linespec_state *state,
960                                    const char *name,
961                                    const domain_enum domain,
962                                    symbol_found_callback_ftype *callback,
963                                    void *data,
964                                    struct program_space *search_pspace,
965                                    int include_inline)
966 {
967   struct objfile *objfile;
968   struct program_space *pspace;
969   struct symbol_matcher_data matcher_data;
970
971   matcher_data.lookup_name = name;
972   matcher_data.symbol_name_cmp =
973     state->language->la_get_symbol_name_cmp != NULL
974     ? state->language->la_get_symbol_name_cmp (name)
975     : strcmp_iw;
976
977   ALL_PSPACES (pspace)
978   {
979     if (search_pspace != NULL && search_pspace != pspace)
980       continue;
981     if (pspace->executing_startup)
982       continue;
983
984     set_current_program_space (pspace);
985
986     ALL_OBJFILES (objfile)
987     {
988       struct symtab *symtab;
989
990       if (objfile->sf)
991         objfile->sf->qf->expand_symtabs_matching (objfile, NULL,
992                                                   iterate_name_matcher,
993                                                   ALL_DOMAIN,
994                                                   &matcher_data);
995
996       ALL_OBJFILE_PRIMARY_SYMTABS (objfile, symtab)
997         {
998           struct block *block;
999
1000           block = BLOCKVECTOR_BLOCK (BLOCKVECTOR (symtab), STATIC_BLOCK);
1001           LA_ITERATE_OVER_SYMBOLS (block, name, domain, callback, data);
1002
1003           if (include_inline)
1004             {
1005               struct symbol_and_data_callback cad = { callback, data };
1006               int i;
1007
1008               for (i = FIRST_LOCAL_BLOCK;
1009                    i < BLOCKVECTOR_NBLOCKS (BLOCKVECTOR (symtab)); i++)
1010                 {
1011                   block = BLOCKVECTOR_BLOCK (BLOCKVECTOR (symtab), i);
1012                   LA_ITERATE_OVER_SYMBOLS (block, name, domain,
1013                                            iterate_inline_only, &cad);
1014                 }
1015             }
1016         }
1017     }
1018   }
1019 }
1020
1021 /* Returns the block to be used for symbol searches for the given SYMTAB,
1022    which may be NULL.  */
1023
1024 static struct block *
1025 get_search_block (struct symtab *symtab)
1026 {
1027   struct block *block;
1028
1029   if (symtab != NULL)
1030     block = BLOCKVECTOR_BLOCK (BLOCKVECTOR (symtab), STATIC_BLOCK);
1031   else
1032     {
1033       enum language save_language;
1034
1035       /* get_selected_block can change the current language when there is
1036          no selected frame yet.  */
1037       save_language = current_language->la_language;
1038       block = get_selected_block (0);
1039       set_language (save_language);
1040     }
1041
1042   return block;
1043 }
1044
1045 /* A helper for find_method.  This finds all methods in type T which
1046    match NAME.  It adds matching symbol names to RESULT_NAMES, and
1047    adds T's direct superclasses to SUPERCLASSES.  */
1048
1049 static void
1050 find_methods (struct type *t, const char *name,
1051               VEC (const_char_ptr) **result_names,
1052               VEC (typep) **superclasses)
1053 {
1054   int i1 = 0;
1055   int ibase;
1056   const char *class_name = type_name_no_tag (t);
1057
1058   /* Ignore this class if it doesn't have a name.  This is ugly, but
1059      unless we figure out how to get the physname without the name of
1060      the class, then the loop can't do any good.  */
1061   if (class_name)
1062     {
1063       int method_counter;
1064       int name_len = strlen (name);
1065
1066       CHECK_TYPEDEF (t);
1067
1068       /* Loop over each method name.  At this level, all overloads of a name
1069          are counted as a single name.  There is an inner loop which loops over
1070          each overload.  */
1071
1072       for (method_counter = TYPE_NFN_FIELDS (t) - 1;
1073            method_counter >= 0;
1074            --method_counter)
1075         {
1076           const char *method_name = TYPE_FN_FIELDLIST_NAME (t, method_counter);
1077           char dem_opname[64];
1078
1079           if (strncmp (method_name, "__", 2) == 0 ||
1080               strncmp (method_name, "op", 2) == 0 ||
1081               strncmp (method_name, "type", 4) == 0)
1082             {
1083               if (cplus_demangle_opname (method_name, dem_opname, DMGL_ANSI))
1084                 method_name = dem_opname;
1085               else if (cplus_demangle_opname (method_name, dem_opname, 0))
1086                 method_name = dem_opname;
1087             }
1088
1089           if (strcmp_iw (method_name, name) == 0)
1090             {
1091               int field_counter;
1092
1093               for (field_counter = (TYPE_FN_FIELDLIST_LENGTH (t, method_counter)
1094                                     - 1);
1095                    field_counter >= 0;
1096                    --field_counter)
1097                 {
1098                   struct fn_field *f;
1099                   const char *phys_name;
1100
1101                   f = TYPE_FN_FIELDLIST1 (t, method_counter);
1102                   if (TYPE_FN_FIELD_STUB (f, field_counter))
1103                     continue;
1104                   phys_name = TYPE_FN_FIELD_PHYSNAME (f, field_counter);
1105                   VEC_safe_push (const_char_ptr, *result_names, phys_name);
1106                 }
1107             }
1108         }
1109     }
1110
1111   for (ibase = 0; ibase < TYPE_N_BASECLASSES (t); ibase++)
1112     VEC_safe_push (typep, *superclasses, TYPE_BASECLASS (t, ibase));
1113 }
1114
1115 /* Find an instance of the character C in the string S that is outside
1116    of all parenthesis pairs, single-quoted strings, and double-quoted
1117    strings.  Also, ignore the char within a template name, like a ','
1118    within foo<int, int>.  */
1119
1120 static const char *
1121 find_toplevel_char (const char *s, char c)
1122 {
1123   int quoted = 0;               /* zero if we're not in quotes;
1124                                    '"' if we're in a double-quoted string;
1125                                    '\'' if we're in a single-quoted string.  */
1126   int depth = 0;                /* Number of unclosed parens we've seen.  */
1127   const char *scan;
1128
1129   for (scan = s; *scan; scan++)
1130     {
1131       if (quoted)
1132         {
1133           if (*scan == quoted)
1134             quoted = 0;
1135           else if (*scan == '\\' && *(scan + 1))
1136             scan++;
1137         }
1138       else if (*scan == c && ! quoted && depth == 0)
1139         return scan;
1140       else if (*scan == '"' || *scan == '\'')
1141         quoted = *scan;
1142       else if (*scan == '(' || *scan == '<')
1143         depth++;
1144       else if ((*scan == ')' || *scan == '>') && depth > 0)
1145         depth--;
1146     }
1147
1148   return 0;
1149 }
1150
1151 /* The string equivalent of find_toplevel_char.  Returns a pointer
1152    to the location of NEEDLE in HAYSTACK, ignoring any occurrences
1153    inside "()" and "<>".  Returns NULL if NEEDLE was not found.  */
1154
1155 static const char *
1156 find_toplevel_string (const char *haystack, const char *needle)
1157 {
1158   const char *s = haystack;
1159
1160   do
1161     {
1162       s = find_toplevel_char (s, *needle);
1163
1164       if (s != NULL)
1165         {
1166           /* Found first char in HAYSTACK;  check rest of string.  */
1167           if (strncmp (s, needle, strlen (needle)) == 0)
1168             return s;
1169
1170           /* Didn't find it; loop over HAYSTACK, looking for the next
1171              instance of the first character of NEEDLE.  */
1172           ++s;
1173         }
1174     }
1175   while (s != NULL && *s != '\0');
1176
1177   /* NEEDLE was not found in HAYSTACK.  */
1178   return NULL;
1179 }
1180
1181 /* Given FILTERS, a list of canonical names, filter the sals in RESULT
1182    and store the result in SELF->CANONICAL.  */
1183
1184 static void
1185 filter_results (struct linespec_state *self,
1186                 struct symtabs_and_lines *result,
1187                 VEC (const_char_ptr) *filters)
1188 {
1189   int i;
1190   const char *name;
1191
1192   for (i = 0; VEC_iterate (const_char_ptr, filters, i, name); ++i)
1193     {
1194       struct linespec_sals lsal;
1195       int j;
1196
1197       memset (&lsal, 0, sizeof (lsal));
1198
1199       for (j = 0; j < result->nelts; ++j)
1200         {
1201           if (strcmp (name, self->canonical_names[j]) == 0)
1202             add_sal_to_sals_basic (&lsal.sals, &result->sals[j]);
1203         }
1204
1205       if (lsal.sals.nelts > 0)
1206         {
1207           lsal.canonical = xstrdup (name);
1208           VEC_safe_push (linespec_sals, self->canonical->sals, &lsal);
1209         }
1210     }
1211
1212   self->canonical->pre_expanded = 0;
1213 }
1214
1215 /* Store RESULT into SELF->CANONICAL.  */
1216
1217 static void
1218 convert_results_to_lsals (struct linespec_state *self,
1219                           struct symtabs_and_lines *result)
1220 {
1221   struct linespec_sals lsal;
1222
1223   lsal.canonical = NULL;
1224   lsal.sals = *result;
1225   VEC_safe_push (linespec_sals, self->canonical->sals, &lsal);
1226 }
1227
1228 /* Handle multiple results in RESULT depending on SELECT_MODE.  This
1229    will either return normally, throw an exception on multiple
1230    results, or present a menu to the user.  On return, the SALS vector
1231    in SELF->CANONICAL is set up properly.  */
1232
1233 static void
1234 decode_line_2 (struct linespec_state *self,
1235                struct symtabs_and_lines *result,
1236                const char *select_mode)
1237 {
1238   const char *iter;
1239   char *args, *prompt;
1240   int i;
1241   struct cleanup *old_chain;
1242   VEC (const_char_ptr) *item_names = NULL, *filters = NULL;
1243   struct get_number_or_range_state state;
1244
1245   gdb_assert (select_mode != multiple_symbols_all);
1246   gdb_assert (self->canonical != NULL);
1247
1248   old_chain = make_cleanup (VEC_cleanup (const_char_ptr), &item_names);
1249   make_cleanup (VEC_cleanup (const_char_ptr), &filters);
1250   for (i = 0; i < result->nelts; ++i)
1251     {
1252       int j, found = 0;
1253       const char *iter;
1254
1255       gdb_assert (self->canonical_names[i] != NULL);
1256       for (j = 0; VEC_iterate (const_char_ptr, item_names, j, iter); ++j)
1257         {
1258           if (strcmp (iter, self->canonical_names[i]) == 0)
1259             {
1260               found = 1;
1261               break;
1262             }
1263         }
1264
1265       if (!found)
1266         VEC_safe_push (const_char_ptr, item_names, self->canonical_names[i]);
1267     }
1268
1269   if (select_mode == multiple_symbols_cancel
1270       && VEC_length (const_char_ptr, item_names) > 1)
1271     error (_("canceled because the command is ambiguous\n"
1272              "See set/show multiple-symbol."));
1273   
1274   if (select_mode == multiple_symbols_all
1275       || VEC_length (const_char_ptr, item_names) == 1)
1276     {
1277       do_cleanups (old_chain);
1278       convert_results_to_lsals (self, result);
1279       return;
1280     }
1281
1282   /* Sort the list of method names alphabetically.  */
1283   qsort (VEC_address (const_char_ptr, item_names),
1284          VEC_length (const_char_ptr, item_names),
1285          sizeof (const_char_ptr), compare_strings);
1286
1287   printf_unfiltered (_("[0] cancel\n[1] all\n"));
1288   for (i = 0; VEC_iterate (const_char_ptr, item_names, i, iter); ++i)
1289     printf_unfiltered ("[%d] %s\n", i + 2, iter);
1290
1291   prompt = getenv ("PS2");
1292   if (prompt == NULL)
1293     {
1294       prompt = "> ";
1295     }
1296   args = command_line_input (prompt, 0, "overload-choice");
1297
1298   if (args == 0 || *args == 0)
1299     error_no_arg (_("one or more choice numbers"));
1300
1301   init_number_or_range (&state, args);
1302   while (!state.finished)
1303     {
1304       int num;
1305
1306       num = get_number_or_range (&state);
1307
1308       if (num == 0)
1309         error (_("canceled"));
1310       else if (num == 1)
1311         {
1312           /* We intentionally make this result in a single breakpoint,
1313              contrary to what older versions of gdb did.  The
1314              rationale is that this lets a user get the
1315              multiple_symbols_all behavior even with the 'ask'
1316              setting; and he can get separate breakpoints by entering
1317              "2-57" at the query.  */
1318           do_cleanups (old_chain);
1319           convert_results_to_lsals (self, result);
1320           return;
1321         }
1322
1323       num -= 2;
1324       if (num >= VEC_length (const_char_ptr, item_names))
1325         printf_unfiltered (_("No choice number %d.\n"), num);
1326       else
1327         {
1328           const char *elt = VEC_index (const_char_ptr, item_names, num);
1329
1330           if (elt != NULL)
1331             {
1332               VEC_safe_push (const_char_ptr, filters, elt);
1333               VEC_replace (const_char_ptr, item_names, num, NULL);
1334             }
1335           else
1336             {
1337               printf_unfiltered (_("duplicate request for %d ignored.\n"),
1338                                  num);
1339             }
1340         }
1341     }
1342
1343   filter_results (self, result, filters);
1344   do_cleanups (old_chain);
1345 }
1346
1347 \f
1348
1349 /* The parser of linespec itself.  */
1350
1351 /* Throw an appropriate error when SYMBOL is not found (optionally in
1352    FILENAME).  */
1353
1354 static void ATTRIBUTE_NORETURN
1355 symbol_not_found_error (const char *symbol, const char *filename)
1356 {
1357   if (symbol == NULL)
1358     symbol = "";
1359
1360   if (!have_full_symbols ()
1361       && !have_partial_symbols ()
1362       && !have_minimal_symbols ())
1363     throw_error (NOT_FOUND_ERROR,
1364                  _("No symbol table is loaded.  Use the \"file\" command."));
1365
1366   /* If SYMBOL starts with '$', the user attempted to either lookup
1367      a function/variable in his code starting with '$' or an internal
1368      variable of that name.  Since we do not know which, be concise and
1369      explain both possibilities.  */
1370   if (*symbol == '$')
1371     {
1372       if (filename)
1373         throw_error (NOT_FOUND_ERROR,
1374                      _("Undefined convenience variable or function \"%s\" "
1375                        "not defined in \"%s\"."), symbol, filename);
1376       else
1377         throw_error (NOT_FOUND_ERROR,
1378                      _("Undefined convenience variable or function \"%s\" "
1379                        "not defined."), symbol);
1380     }
1381   else
1382     {
1383       if (filename)
1384         throw_error (NOT_FOUND_ERROR,
1385                      _("Function \"%s\" not defined in \"%s\"."),
1386                      symbol, filename);
1387       else
1388         throw_error (NOT_FOUND_ERROR,
1389                      _("Function \"%s\" not defined."), symbol);
1390     }
1391 }
1392
1393 /* Throw an appropriate error when an unexpected token is encountered 
1394    in the input.  */
1395
1396 static void ATTRIBUTE_NORETURN
1397 unexpected_linespec_error (linespec_parser *parser)
1398 {
1399   linespec_token token;
1400   static const char * token_type_strings[]
1401     = {"keyword", "colon", "string", "number", "comma", "end of input"};
1402
1403   /* Get the token that generated the error.  */
1404   token = linespec_lexer_lex_one (parser);
1405
1406   /* Finally, throw the error.  */
1407   if (token.type == LSTOKEN_STRING || token.type == LSTOKEN_NUMBER
1408       || token.type == LSTOKEN_KEYWORD)
1409     {
1410       char *string;
1411       struct cleanup *cleanup;
1412
1413       string = copy_token_string (token);
1414       cleanup = make_cleanup (xfree, string);
1415       throw_error (GENERIC_ERROR,
1416                    _("malformed linespec error: unexpected %s, \"%s\""),
1417                    token_type_strings[token.type], string);
1418     }
1419   else
1420     throw_error (GENERIC_ERROR,
1421                  _("malformed linespec error: unexpected %s"),
1422                  token_type_strings[token.type]);
1423 }
1424
1425 /* Parse and return a line offset in STRING.  */
1426
1427 static struct line_offset
1428 linespec_parse_line_offset (const char *string)
1429 {
1430   struct line_offset line_offset = {0, LINE_OFFSET_NONE};
1431
1432   if (*string == '+')
1433     {
1434       line_offset.sign = LINE_OFFSET_PLUS;
1435       ++string;
1436     }
1437   else if (*string == '-')
1438     {
1439       line_offset.sign = LINE_OFFSET_MINUS;
1440       ++string;
1441     }
1442
1443   /* Right now, we only allow base 10 for offsets.  */
1444   line_offset.offset = atoi (string);
1445   return line_offset;
1446 }
1447
1448 /* Parse the basic_spec in PARSER's input.  */
1449
1450 static void
1451 linespec_parse_basic (linespec_parser *parser)
1452 {
1453   char *name;
1454   linespec_token token;
1455   VEC (symbolp) *symbols, *labels;
1456   VEC (minsym_and_objfile_d) *minimal_symbols;
1457   struct cleanup *cleanup;
1458
1459   /* Get the next token.  */
1460   token = linespec_lexer_lex_one (parser);
1461
1462   /* If it is EOI or KEYWORD, issue an error.  */
1463   if (token.type == LSTOKEN_KEYWORD || token.type == LSTOKEN_EOI)
1464     unexpected_linespec_error (parser);
1465   /* If it is a LSTOKEN_NUMBER, we have an offset.  */
1466   else if (token.type == LSTOKEN_NUMBER)
1467     {
1468       /* Record the line offset and get the next token.  */
1469       name = copy_token_string (token);
1470       cleanup = make_cleanup (xfree, name);
1471       PARSER_RESULT (parser)->line_offset = linespec_parse_line_offset (name);
1472       do_cleanups (cleanup);
1473
1474       /* Get the next token.  */
1475       token = linespec_lexer_consume_token (parser);
1476
1477       /* If the next token is a comma, stop parsing and return.  */
1478       if (token.type == LSTOKEN_COMMA)
1479         return;
1480
1481       /* If the next token is anything but EOI or KEYWORD, issue
1482          an error.  */
1483       if (token.type != LSTOKEN_KEYWORD && token.type != LSTOKEN_EOI)
1484         unexpected_linespec_error (parser);
1485     }
1486
1487   if (token.type == LSTOKEN_KEYWORD || token.type == LSTOKEN_EOI)
1488     return;
1489
1490   /* Next token must be LSTOKEN_STRING.  */
1491   if (token.type != LSTOKEN_STRING)
1492     unexpected_linespec_error (parser);
1493
1494   /* The current token will contain the name of a function, method,
1495      or label.  */
1496   name  = copy_token_string (token);
1497   cleanup = make_cleanup (xfree, name);
1498
1499   /* Try looking it up as a function/method.  */
1500   find_linespec_symbols (PARSER_STATE (parser),
1501                          PARSER_RESULT (parser)->file_symtabs, name,
1502                          &symbols, &minimal_symbols);
1503
1504   if (symbols != NULL || minimal_symbols != NULL)
1505     {
1506       PARSER_RESULT (parser)->function_symbols = symbols;
1507       PARSER_RESULT (parser)->minimal_symbols = minimal_symbols;
1508       PARSER_RESULT (parser)->function_name = name;
1509       symbols = NULL;
1510       discard_cleanups (cleanup);
1511     }
1512   else
1513     {
1514       /* NAME was not a function or a method.  So it must be a label
1515          name.  */
1516       labels = find_label_symbols (PARSER_STATE (parser), NULL,
1517                                    &symbols, name);
1518       if (labels != NULL)
1519         {
1520           PARSER_RESULT (parser)->labels.label_symbols = labels;
1521           PARSER_RESULT (parser)->labels.function_symbols = symbols;
1522           PARSER_RESULT (parser)->label_name = name;
1523           symbols = NULL;
1524           discard_cleanups (cleanup);
1525         }
1526       else
1527         {
1528           /* The name is also not a label.  Abort parsing.  Do not throw
1529              an error here.  parse_linespec will do it for us.  */
1530
1531           /* Save a copy of the name we were trying to lookup.  */
1532           PARSER_RESULT (parser)->function_name = name;
1533           discard_cleanups (cleanup);
1534           return;
1535         }
1536     }
1537
1538   /* Get the next token.  */
1539   token = linespec_lexer_consume_token (parser);
1540
1541   if (token.type == LSTOKEN_COLON)
1542     {
1543       /* User specified a label or a lineno.  */
1544       token = linespec_lexer_consume_token (parser);
1545
1546       if (token.type == LSTOKEN_NUMBER)
1547         {
1548           /* User specified an offset.  Record the line offset and
1549              get the next token.  */
1550           name = copy_token_string (token);
1551           cleanup = make_cleanup (xfree, name);
1552           PARSER_RESULT (parser)->line_offset
1553             = linespec_parse_line_offset (name);
1554           do_cleanups (cleanup);
1555
1556           /* Ge the next token.  */
1557           token = linespec_lexer_consume_token (parser);
1558         }
1559       else if (token.type == LSTOKEN_STRING)
1560         {
1561           /* Grab a copy of the label's name and look it up.  */
1562           name = copy_token_string (token);
1563           cleanup = make_cleanup (xfree, name);
1564           labels = find_label_symbols (PARSER_STATE (parser),
1565                                        PARSER_RESULT (parser)->function_symbols,
1566                                        &symbols, name);
1567
1568           if (labels != NULL)
1569             {
1570               PARSER_RESULT (parser)->labels.label_symbols = labels;
1571               PARSER_RESULT (parser)->labels.function_symbols = symbols;
1572               PARSER_RESULT (parser)->label_name = name;
1573               symbols = NULL;
1574               discard_cleanups (cleanup);
1575             }
1576           else
1577             {
1578               /* We don't know what it was, but it isn't a label.  */
1579               throw_error (NOT_FOUND_ERROR,
1580                            _("No label \"%s\" defined in function \"%s\"."),
1581                            name, PARSER_RESULT (parser)->function_name);
1582             }
1583
1584           /* Check for a line offset.  */
1585           token = linespec_lexer_consume_token (parser);
1586           if (token.type == LSTOKEN_COLON)
1587             {
1588               /* Get the next token.  */
1589               token = linespec_lexer_consume_token (parser);
1590
1591               /* It must be a line offset.  */
1592               if (token.type != LSTOKEN_NUMBER)
1593                 unexpected_linespec_error (parser);
1594
1595               /* Record the lione offset and get the next token.  */
1596               name = copy_token_string (token);
1597               cleanup = make_cleanup (xfree, name);
1598
1599               PARSER_RESULT (parser)->line_offset
1600                 = linespec_parse_line_offset (name);
1601               do_cleanups (cleanup);
1602
1603               /* Get the next token.  */
1604               token = linespec_lexer_consume_token (parser);
1605             }
1606         }
1607       else
1608         {
1609           /* Trailing ':' in the input. Issue an error.  */
1610           unexpected_linespec_error (parser);
1611         }
1612     }
1613 }
1614
1615 /* Canonicalize the linespec contained in LS.  The result is saved into
1616    STATE->canonical.  */
1617
1618 static void
1619 canonicalize_linespec (struct linespec_state *state, linespec_p ls)
1620 {
1621   /* If canonicalization was not requested, no need to do anything.  */
1622   if (!state->canonical)
1623     return;
1624
1625   /* Shortcut expressions, which can only appear by themselves.  */
1626   if (ls->expression != NULL)
1627     state->canonical->addr_string = xstrdup (ls->expression);
1628   else
1629     {
1630       struct ui_file *buf;
1631       int need_colon = 0;
1632
1633       buf = mem_fileopen ();
1634       if (ls->source_filename)
1635         {
1636           fputs_unfiltered (ls->source_filename, buf);
1637           need_colon = 1;
1638         }
1639
1640       if (ls->function_name)
1641         {
1642           if (need_colon)
1643             fputc_unfiltered (':', buf);
1644           fputs_unfiltered (ls->function_name, buf);
1645           need_colon = 1;
1646         }
1647
1648       if (ls->label_name)
1649         {
1650           if (need_colon)
1651             fputc_unfiltered (':', buf);
1652
1653           if (ls->function_name == NULL)
1654             {
1655               struct symbol *s;
1656
1657               /* No function was specified, so add the symbol name.  */
1658               gdb_assert (ls->labels.function_symbols != NULL
1659                           && (VEC_length (symbolp, ls->labels.function_symbols)
1660                               == 1));
1661               s = VEC_index (symbolp, ls->labels.function_symbols, 0);
1662               fputs_unfiltered (SYMBOL_NATURAL_NAME (s), buf);
1663               fputc_unfiltered (':', buf);
1664             }
1665
1666           fputs_unfiltered (ls->label_name, buf);
1667           need_colon = 1;
1668           state->canonical->special_display = 1;
1669         }
1670
1671       if (ls->line_offset.sign != LINE_OFFSET_UNKNOWN)
1672         {
1673           if (need_colon)
1674             fputc_unfiltered (':', buf);
1675           fprintf_filtered (buf, "%s%d",
1676                             (ls->line_offset.sign == LINE_OFFSET_NONE ? ""
1677                              : (ls->line_offset.sign
1678                                 == LINE_OFFSET_PLUS ? "+" : "-")),
1679                             ls->line_offset.offset);
1680         }
1681
1682       state->canonical->addr_string = ui_file_xstrdup (buf, NULL);
1683       ui_file_delete (buf);
1684     }
1685 }
1686
1687 /* Given a line offset in LS, construct the relevant SALs.  */
1688
1689 static struct symtabs_and_lines
1690 create_sals_line_offset (struct linespec_state *self,
1691                          linespec_p ls)
1692 {
1693   struct symtabs_and_lines values;
1694   struct symtab_and_line val;
1695   int use_default = 0;
1696
1697   init_sal (&val);
1698   values.sals = NULL;
1699   values.nelts = 0;
1700
1701   /* This is where we need to make sure we have good defaults.
1702      We must guarantee that this section of code is never executed
1703      when we are called with just a function anme, since
1704      set_default_source_symtab_and_line uses
1705      select_source_symtab that calls us with such an argument.  */
1706
1707   if (VEC_length (symtab_p, ls->file_symtabs) == 1
1708       && VEC_index (symtab_p, ls->file_symtabs, 0) == NULL)
1709     {
1710       set_current_program_space (self->program_space);
1711
1712       /* Make sure we have at least a default source line.  */
1713       set_default_source_symtab_and_line ();
1714       initialize_defaults (&self->default_symtab, &self->default_line);
1715       VEC_pop (symtab_p, ls->file_symtabs);
1716       VEC_free (symtab_p, ls->file_symtabs);
1717       ls->file_symtabs
1718         = collect_symtabs_from_filename (self->default_symtab->filename);
1719       use_default = 1;
1720     }
1721
1722   val.line = ls->line_offset.offset;
1723   switch (ls->line_offset.sign)
1724     {
1725     case LINE_OFFSET_PLUS:
1726       if (ls->line_offset.offset == 0)
1727         val.line = 5;
1728       if (use_default)
1729         val.line = self->default_line + val.line;
1730       break;
1731
1732     case LINE_OFFSET_MINUS:
1733       if (ls->line_offset.offset == 0)
1734         val.line = 15;
1735       if (use_default)
1736         val.line = self->default_line - val.line;
1737       else
1738         val.line = -val.line;
1739       break;
1740
1741     case LINE_OFFSET_NONE:
1742       break;                    /* No need to adjust val.line.  */
1743     }
1744
1745   if (self->list_mode)
1746     decode_digits_list_mode (self, ls, &values, val);
1747   else
1748     {
1749       struct linetable_entry *best_entry = NULL;
1750       int *filter;
1751       struct block **blocks;
1752       struct cleanup *cleanup;
1753       struct symtabs_and_lines intermediate_results;
1754       int i, j;
1755
1756       intermediate_results.sals = NULL;
1757       intermediate_results.nelts = 0;
1758
1759       decode_digits_ordinary (self, ls, val.line, &intermediate_results,
1760                               &best_entry);
1761       if (intermediate_results.nelts == 0 && best_entry != NULL)
1762         decode_digits_ordinary (self, ls, best_entry->line,
1763                                 &intermediate_results, &best_entry);
1764
1765       cleanup = make_cleanup (xfree, intermediate_results.sals);
1766
1767       /* For optimized code, the compiler can scatter one source line
1768          across disjoint ranges of PC values, even when no duplicate
1769          functions or inline functions are involved.  For example,
1770          'for (;;)' inside a non-template, non-inline, and non-ctor-or-dtor
1771          function can result in two PC ranges.  In this case, we don't
1772          want to set a breakpoint on the first PC of each range.  To filter
1773          such cases, we use containing blocks -- for each PC found
1774          above, we see if there are other PCs that are in the same
1775          block.  If yes, the other PCs are filtered out.  */
1776
1777       filter = XNEWVEC (int, intermediate_results.nelts);
1778       make_cleanup (xfree, filter);
1779       blocks = XNEWVEC (struct block *, intermediate_results.nelts);
1780       make_cleanup (xfree, blocks);
1781
1782       for (i = 0; i < intermediate_results.nelts; ++i)
1783         {
1784           set_current_program_space (intermediate_results.sals[i].pspace);
1785
1786           filter[i] = 1;
1787           blocks[i] = block_for_pc_sect (intermediate_results.sals[i].pc,
1788                                          intermediate_results.sals[i].section);
1789         }
1790
1791       for (i = 0; i < intermediate_results.nelts; ++i)
1792         {
1793           if (blocks[i] != NULL)
1794             for (j = i + 1; j < intermediate_results.nelts; ++j)
1795               {
1796                 if (blocks[j] == blocks[i])
1797                   {
1798                     filter[j] = 0;
1799                     break;
1800                   }
1801               }
1802         }
1803
1804       for (i = 0; i < intermediate_results.nelts; ++i)
1805         if (filter[i])
1806           {
1807             struct symbol *sym = (blocks[i]
1808                                   ? block_containing_function (blocks[i])
1809                                   : NULL);
1810
1811             if (self->funfirstline)
1812               skip_prologue_sal (&intermediate_results.sals[i]);
1813             /* Make sure the line matches the request, not what was
1814                found.  */
1815             intermediate_results.sals[i].line = val.line;
1816             add_sal_to_sals (self, &values, &intermediate_results.sals[i],
1817                              sym ? SYMBOL_NATURAL_NAME (sym) : NULL, 0);
1818           }
1819
1820       do_cleanups (cleanup);
1821     }
1822
1823   if (values.nelts == 0)
1824     {
1825       if (ls->source_filename)
1826         throw_error (NOT_FOUND_ERROR, _("No line %d in file \"%s\"."),
1827                      val.line, ls->source_filename);
1828       else
1829         throw_error (NOT_FOUND_ERROR, _("No line %d in the current file."),
1830                      val.line);
1831     }
1832
1833   return values;
1834 }
1835
1836 /* Create and return SALs from the linespec LS.  */
1837
1838 static struct symtabs_and_lines
1839 convert_linespec_to_sals (struct linespec_state *state, linespec_p ls)
1840 {
1841   struct symtabs_and_lines sals = {NULL, 0};
1842
1843   if (ls->expression != NULL)
1844     {
1845       struct symtab_and_line sal;
1846
1847       /* We have an expression.  No other attribute is allowed.  */
1848       sal = find_pc_line (ls->expr_pc, 0);
1849       sal.pc = ls->expr_pc;
1850       sal.section = find_pc_overlay (ls->expr_pc);
1851       sal.explicit_pc = 1;
1852       add_sal_to_sals (state, &sals, &sal, ls->expression, 1);
1853     }
1854   else if (ls->labels.label_symbols != NULL)
1855     {
1856       /* We have just a bunch of functions/methods or labels.  */
1857       int i;
1858       struct symtab_and_line sal;
1859       struct symbol *sym;
1860
1861       for (i = 0; VEC_iterate (symbolp, ls->labels.label_symbols, i, sym); ++i)
1862         {
1863           symbol_to_sal (&sal, state->funfirstline, sym);
1864           add_sal_to_sals (state, &sals, &sal,
1865                            SYMBOL_NATURAL_NAME (sym), 0);
1866         }
1867     }
1868   else if (ls->function_symbols != NULL || ls->minimal_symbols != NULL)
1869     {
1870       /* We have just a bunch of functions and/or methods.  */
1871       int i;
1872       struct symtab_and_line sal;
1873       struct symbol *sym;
1874       minsym_and_objfile_d *elem;
1875       struct program_space *pspace;
1876
1877       if (ls->function_symbols != NULL)
1878         {
1879           /* Sort symbols so that symbols with the same program space are next
1880              to each other.  */
1881           qsort (VEC_address (symbolp, ls->function_symbols),
1882                  VEC_length (symbolp, ls->function_symbols),
1883                  sizeof (symbolp), compare_symbols);
1884
1885           for (i = 0; VEC_iterate (symbolp, ls->function_symbols, i, sym); ++i)
1886             {
1887               pspace = SYMTAB_PSPACE (SYMBOL_SYMTAB (sym));
1888               set_current_program_space (pspace);
1889               symbol_to_sal (&sal, state->funfirstline, sym);
1890               if (maybe_add_address (state->addr_set, pspace, sal.pc))
1891                 add_sal_to_sals (state, &sals, &sal,
1892                                  SYMBOL_NATURAL_NAME (sym), 0);
1893             }
1894         }
1895
1896       if (ls->minimal_symbols != NULL)
1897         {
1898           /* Sort minimal symbols by program space, too.  */
1899           qsort (VEC_address (minsym_and_objfile_d, ls->minimal_symbols),
1900                  VEC_length (minsym_and_objfile_d, ls->minimal_symbols),
1901                  sizeof (minsym_and_objfile_d), compare_msymbols);
1902
1903           for (i = 0;
1904                VEC_iterate (minsym_and_objfile_d, ls->minimal_symbols, i, elem);
1905                ++i)
1906             {
1907               pspace = elem->objfile->pspace;
1908               set_current_program_space (pspace);
1909               minsym_found (state, elem->objfile, elem->minsym, &sals);
1910             }
1911         }
1912     }
1913   else if (ls->line_offset.sign != LINE_OFFSET_UNKNOWN)
1914     {
1915       /* Only an offset was specified.  */
1916         sals = create_sals_line_offset (state, ls);
1917
1918         /* Make sure we have a filename for canonicalization.  */
1919         if (ls->source_filename == NULL)
1920           ls->source_filename = xstrdup (state->default_symtab->filename);
1921     }
1922   else
1923     {
1924       /* We haven't found any results...  */
1925       return sals;
1926     }
1927
1928   canonicalize_linespec (state, ls);
1929
1930   if (sals.nelts > 0 && state->canonical != NULL)
1931     state->canonical->pre_expanded = 1;
1932
1933   return sals;
1934 }
1935
1936 /* Parse a string that specifies a linespec.
1937    Pass the address of a char * variable; that variable will be
1938    advanced over the characters actually parsed.
1939
1940    The basic grammar of linespecs:
1941
1942    linespec -> expr_spec | var_spec | basic_spec
1943    expr_spec -> '*' STRING
1944    var_spec -> '$' (STRING | NUMBER)
1945
1946    basic_spec -> file_offset_spec | function_spec | label_spec
1947    file_offset_spec -> opt_file_spec offset_spec
1948    function_spec -> opt_file_spec function_name_spec opt_label_spec
1949    label_spec -> label_name_spec
1950
1951    opt_file_spec -> "" | file_name_spec ':'
1952    opt_label_spec -> "" | ':' label_name_spec
1953
1954    file_name_spec -> STRING
1955    function_name_spec -> STRING
1956    label_name_spec -> STRING
1957    function_name_spec -> STRING
1958    offset_spec -> NUMBER
1959                -> '+' NUMBER
1960                -> '-' NUMBER
1961
1962    This may all be followed by several keywords such as "if EXPR",
1963    which we ignore.
1964
1965    A comma will terminate parsing.
1966
1967    The function may be an undebuggable function found in minimal symbol table.
1968
1969    If the argument FUNFIRSTLINE is nonzero, we want the first line
1970    of real code inside a function when a function is specified, and it is
1971    not OK to specify a variable or type to get its line number.
1972
1973    DEFAULT_SYMTAB specifies the file to use if none is specified.
1974    It defaults to current_source_symtab.
1975    DEFAULT_LINE specifies the line number to use for relative
1976    line numbers (that start with signs).  Defaults to current_source_line.
1977    If CANONICAL is non-NULL, store an array of strings containing the canonical
1978    line specs there if necessary.  Currently overloaded member functions and
1979    line numbers or static functions without a filename yield a canonical
1980    line spec.  The array and the line spec strings are allocated on the heap,
1981    it is the callers responsibility to free them.
1982
1983    Note that it is possible to return zero for the symtab
1984    if no file is validly specified.  Callers must check that.
1985    Also, the line number returned may be invalid.  */
1986
1987 /* Parse the linespec in ARGPTR.  */
1988
1989 static struct symtabs_and_lines
1990 parse_linespec (linespec_parser *parser, char **argptr)
1991 {
1992   linespec_token token;
1993   struct symtabs_and_lines values;
1994   volatile struct gdb_exception file_exception;
1995   struct cleanup *cleanup;
1996
1997   /* A special case to start.  It has become quite popular for
1998      IDEs to work around bugs in the previous parser by quoting
1999      the entire linespec, so we attempt to deal with this nicely.  */
2000   parser->is_quote_enclosed = 0;
2001   if (!is_ada_operator (*argptr)
2002       && strchr (linespec_quote_characters, **argptr) != NULL)
2003     {
2004       const char *end;
2005
2006       end = skip_quote_char (*argptr + 1, **argptr);
2007       if (end != NULL && is_closing_quote_enclosed (end))
2008         {
2009           /* Here's the special case.  Skip ARGPTR past the initial
2010              quote.  */
2011           ++(*argptr);
2012           parser->is_quote_enclosed = 1;
2013         }
2014     }
2015
2016   parser->lexer.saved_arg = *argptr;
2017   parser->lexer.stream = argptr;
2018   file_exception.reason = 0;
2019
2020   /* Initialize the default symtab and line offset.  */
2021   initialize_defaults (&PARSER_STATE (parser)->default_symtab,
2022                        &PARSER_STATE (parser)->default_line);
2023
2024   /* Objective-C shortcut.  */
2025   values = decode_objc (PARSER_STATE (parser), PARSER_RESULT (parser), argptr);
2026   if (values.sals != NULL)
2027     return values;
2028
2029   /* Start parsing.  */
2030
2031   /* Get the first token.  */
2032   token = linespec_lexer_lex_one (parser);
2033
2034   /* It must be either LSTOKEN_STRING or LSTOKEN_NUMBER.  */
2035   if (token.type == LSTOKEN_STRING && *LS_TOKEN_STOKEN (token).ptr == '*')
2036     {
2037       char *expr, *copy;
2038
2039       /* User specified an expression, *EXPR.  */
2040       copy = expr = copy_token_string (token);
2041       cleanup = make_cleanup (xfree, expr);
2042       PARSER_RESULT (parser)->expr_pc = linespec_expression_to_pc (&copy);
2043       discard_cleanups (cleanup);
2044       PARSER_RESULT (parser)->expression = expr;
2045
2046       /* This is a little hacky/tricky.  If linespec_expression_to_pc
2047          did not evaluate the entire token, then we must find the
2048          string COPY inside the original token buffer.  */
2049       if (*copy != '\0')
2050         {
2051           PARSER_STREAM (parser) = strstr (parser->lexer.saved_arg, copy);
2052           gdb_assert (PARSER_STREAM (parser) != NULL);
2053         }
2054
2055       /* Consume the token.  */
2056       linespec_lexer_consume_token (parser);
2057
2058       goto convert_to_sals;
2059     }
2060   else if (token.type == LSTOKEN_STRING && *LS_TOKEN_STOKEN (token).ptr == '$')
2061     {
2062       char *var;
2063
2064       /* A NULL entry means to use GLOBAL_DEFAULT_SYMTAB.  */
2065       VEC_safe_push (symtab_p, PARSER_RESULT (parser)->file_symtabs, NULL);
2066
2067       /* User specified a convenience variable or history value.  */
2068       var = copy_token_string (token);
2069       cleanup = make_cleanup (xfree, var);
2070       PARSER_RESULT (parser)->line_offset
2071         = linespec_parse_variable (PARSER_STATE (parser), var);
2072
2073       /* If a line_offset wasn't found (VAR is the name of a user
2074          variable/function), then skip to normal symbol processing.  */
2075       if (PARSER_RESULT (parser)->line_offset.sign != LINE_OFFSET_UNKNOWN)
2076         {
2077           discard_cleanups (cleanup);
2078
2079           /* Consume this token.  */
2080           linespec_lexer_consume_token (parser);
2081
2082           goto convert_to_sals;
2083         }
2084
2085       do_cleanups (cleanup);
2086     }
2087   else if (token.type != LSTOKEN_STRING && token.type != LSTOKEN_NUMBER)
2088     unexpected_linespec_error (parser);
2089
2090   /* Shortcut: If the next token is not LSTOKEN_COLON, we know that
2091      this token cannot represent a filename.  */
2092   token = linespec_lexer_peek_token (parser);
2093
2094   if (token.type == LSTOKEN_COLON)
2095     {
2096       char *user_filename;
2097
2098       /* Get the current token again and extract the filename.  */
2099       token = linespec_lexer_lex_one (parser);
2100       user_filename = copy_token_string (token);
2101
2102       /* Check if the input is a filename.  */
2103       TRY_CATCH (file_exception, RETURN_MASK_ERROR)
2104         {
2105           PARSER_RESULT (parser)->file_symtabs
2106             = symtabs_from_filename (user_filename);
2107         }
2108
2109       if (file_exception.reason >= 0)
2110         {
2111           /* Symtabs were found for the file.  Record the filename.  */
2112           PARSER_RESULT (parser)->source_filename = user_filename;
2113
2114           /* Get the next token.  */
2115           token = linespec_lexer_consume_token (parser);
2116
2117           /* This is LSTOKEN_COLON; consume it.  */
2118           linespec_lexer_consume_token (parser);
2119         }
2120       else
2121         {
2122           /* No symtabs found -- discard user_filename.  */
2123           xfree (user_filename);
2124
2125           /* A NULL entry means to use GLOBAL_DEFAULT_SYMTAB.  */
2126           VEC_safe_push (symtab_p, PARSER_RESULT (parser)->file_symtabs, NULL);
2127         }
2128     }
2129   /* If the next token is not EOI, KEYWORD, or COMMA, issue an error.  */
2130   else if (token.type != LSTOKEN_EOI && token.type != LSTOKEN_KEYWORD
2131            && token.type != LSTOKEN_COMMA)
2132     {
2133       /* TOKEN is the _next_ token, not the one currently in the parser.
2134          Consuming the token will give the correct error message.  */
2135       linespec_lexer_consume_token (parser);
2136       unexpected_linespec_error (parser);
2137     }
2138   else
2139     {
2140       /* A NULL entry means to use GLOBAL_DEFAULT_SYMTAB.  */
2141       VEC_safe_push (symtab_p, PARSER_RESULT (parser)->file_symtabs, NULL);
2142     }
2143
2144   /* Parse the rest of the linespec.  */
2145   linespec_parse_basic (parser);
2146
2147   if (PARSER_RESULT (parser)->function_symbols == NULL
2148       && PARSER_RESULT (parser)->labels.label_symbols == NULL
2149       && PARSER_RESULT (parser)->line_offset.sign == LINE_OFFSET_UNKNOWN
2150       && PARSER_RESULT (parser)->minimal_symbols == NULL)
2151     {
2152       /* The linespec didn't parse.  Re-throw the file exception if
2153          there was one.  */
2154       if (file_exception.reason < 0)
2155         throw_exception (file_exception);
2156
2157       /* Otherwise, the symbol is not found.  */
2158       symbol_not_found_error (PARSER_RESULT (parser)->function_name,
2159                               PARSER_RESULT (parser)->source_filename);
2160     }
2161
2162  convert_to_sals:
2163
2164   /* Get the last token and record how much of the input was parsed,
2165      if necessary.  */
2166   token = linespec_lexer_lex_one (parser);
2167   if (token.type != LSTOKEN_EOI && token.type != LSTOKEN_KEYWORD)
2168     PARSER_STREAM (parser) = LS_TOKEN_STOKEN (token).ptr;
2169
2170   /* Convert the data in PARSER_RESULT to SALs.  */
2171   values = convert_linespec_to_sals (PARSER_STATE (parser),
2172                                      PARSER_RESULT (parser));
2173
2174   return values;
2175 }
2176
2177
2178 /* A constructor for linespec_state.  */
2179
2180 static void
2181 linespec_state_constructor (struct linespec_state *self,
2182                             int flags, const struct language_defn *language,
2183                             struct symtab *default_symtab,
2184                             int default_line,
2185                             struct linespec_result *canonical)
2186 {
2187   memset (self, 0, sizeof (*self));
2188   self->language = language;
2189   self->funfirstline = (flags & DECODE_LINE_FUNFIRSTLINE) ? 1 : 0;
2190   self->list_mode = (flags & DECODE_LINE_LIST_MODE) ? 1 : 0;
2191   self->default_symtab = default_symtab;
2192   self->default_line = default_line;
2193   self->canonical = canonical;
2194   self->program_space = current_program_space;
2195   self->addr_set = htab_create_alloc (10, hash_address_entry, eq_address_entry,
2196                                       xfree, xcalloc, xfree);
2197 }
2198
2199 /* Initialize a new linespec parser.  */
2200
2201 static void
2202 linespec_parser_new (linespec_parser *parser,
2203                      int flags, const struct language_defn *language,
2204                      struct symtab *default_symtab,
2205                      int default_line,
2206                      struct linespec_result *canonical)
2207 {
2208   parser->lexer.current.type = LSTOKEN_CONSUMED;
2209   memset (PARSER_RESULT (parser), 0, sizeof (struct linespec));
2210   PARSER_RESULT (parser)->line_offset.sign = LINE_OFFSET_UNKNOWN;
2211   linespec_state_constructor (PARSER_STATE (parser), flags, language,
2212                               default_symtab, default_line, canonical);
2213 }
2214
2215 /* A destructor for linespec_state.  */
2216
2217 static void
2218 linespec_state_destructor (struct linespec_state *self)
2219 {
2220   htab_delete (self->addr_set);
2221 }
2222
2223 /* Delete a linespec parser.  */
2224
2225 static void
2226 linespec_parser_delete (void *arg)
2227 {
2228   linespec_parser *parser = (linespec_parser *) arg;
2229
2230   xfree ((char *) PARSER_RESULT (parser)->expression);
2231   xfree ((char *) PARSER_RESULT (parser)->source_filename);
2232   xfree ((char *) PARSER_RESULT (parser)->label_name);
2233   xfree ((char *) PARSER_RESULT (parser)->function_name);
2234
2235   if (PARSER_RESULT (parser)->file_symtabs != NULL)
2236     VEC_free (symtab_p, PARSER_RESULT (parser)->file_symtabs);
2237
2238   if (PARSER_RESULT (parser)->function_symbols != NULL)
2239     VEC_free (symbolp, PARSER_RESULT (parser)->function_symbols);
2240
2241   if (PARSER_RESULT (parser)->minimal_symbols != NULL)
2242     VEC_free (minsym_and_objfile_d, PARSER_RESULT (parser)->minimal_symbols);
2243
2244   if (PARSER_RESULT (parser)->labels.label_symbols != NULL)
2245     VEC_free (symbolp, PARSER_RESULT (parser)->labels.label_symbols);
2246
2247   if (PARSER_RESULT (parser)->labels.function_symbols != NULL)
2248     VEC_free (symbolp, PARSER_RESULT (parser)->labels.function_symbols);
2249
2250   linespec_state_destructor (PARSER_STATE (parser));
2251 }
2252
2253 /* See linespec.h.  */
2254
2255 void
2256 decode_line_full (char **argptr, int flags,
2257                   struct symtab *default_symtab,
2258                   int default_line, struct linespec_result *canonical,
2259                   const char *select_mode,
2260                   const char *filter)
2261 {
2262   struct symtabs_and_lines result;
2263   struct cleanup *cleanups;
2264   char *arg_start = *argptr;
2265   VEC (const_char_ptr) *filters = NULL;
2266   linespec_parser parser;
2267   struct linespec_state *state;
2268
2269   gdb_assert (canonical != NULL);
2270   /* The filter only makes sense for 'all'.  */
2271   gdb_assert (filter == NULL || select_mode == multiple_symbols_all);
2272   gdb_assert (select_mode == NULL
2273               || select_mode == multiple_symbols_all
2274               || select_mode == multiple_symbols_ask
2275               || select_mode == multiple_symbols_cancel);
2276   gdb_assert ((flags & DECODE_LINE_LIST_MODE) == 0);
2277
2278   linespec_parser_new (&parser, flags, current_language, default_symtab,
2279                        default_line, canonical);
2280   cleanups = make_cleanup (linespec_parser_delete, &parser);
2281   save_current_program_space ();
2282
2283   result = parse_linespec (&parser, argptr);
2284   state = PARSER_STATE (&parser);
2285
2286   gdb_assert (result.nelts == 1 || canonical->pre_expanded);
2287   gdb_assert (canonical->addr_string != NULL);
2288   canonical->pre_expanded = 1;
2289
2290   /* Arrange for allocated canonical names to be freed.  */
2291   if (result.nelts > 0)
2292     {
2293       int i;
2294
2295       make_cleanup (xfree, state->canonical_names);
2296       for (i = 0; i < result.nelts; ++i)
2297         {
2298           gdb_assert (state->canonical_names[i] != NULL);
2299           make_cleanup (xfree, state->canonical_names[i]);
2300         }
2301     }
2302
2303   if (select_mode == NULL)
2304     {
2305       if (ui_out_is_mi_like_p (interp_ui_out (top_level_interpreter ())))
2306         select_mode = multiple_symbols_all;
2307       else
2308         select_mode = multiple_symbols_select_mode ();
2309     }
2310
2311   if (select_mode == multiple_symbols_all)
2312     {
2313       if (filter != NULL)
2314         {
2315           make_cleanup (VEC_cleanup (const_char_ptr), &filters);
2316           VEC_safe_push (const_char_ptr, filters, filter);
2317           filter_results (state, &result, filters);
2318         }
2319       else
2320         convert_results_to_lsals (state, &result);
2321     }
2322   else
2323     decode_line_2 (state, &result, select_mode);
2324
2325   do_cleanups (cleanups);
2326 }
2327
2328 /* See linespec.h.  */
2329
2330 struct symtabs_and_lines
2331 decode_line_1 (char **argptr, int flags,
2332                struct symtab *default_symtab,
2333                int default_line)
2334 {
2335   struct symtabs_and_lines result;
2336   linespec_parser parser;
2337   struct cleanup *cleanups;
2338
2339   linespec_parser_new (&parser, flags, current_language, default_symtab,
2340                        default_line, NULL);
2341   cleanups = make_cleanup (linespec_parser_delete, &parser);
2342   save_current_program_space ();
2343
2344   result = parse_linespec (&parser, argptr);
2345
2346   do_cleanups (cleanups);
2347   return result;
2348 }
2349
2350 /* See linespec.h.  */
2351
2352 struct symtabs_and_lines
2353 decode_line_with_current_source (char *string, int flags)
2354 {
2355   struct symtabs_and_lines sals;
2356   struct symtab_and_line cursal;
2357
2358   if (string == 0)
2359     error (_("Empty line specification."));
2360
2361   /* We use whatever is set as the current source line.  We do not try
2362      and get a default source symtab+line or it will recursively call us!  */
2363   cursal = get_current_source_symtab_and_line ();
2364
2365   sals = decode_line_1 (&string, flags,
2366                         cursal.symtab, cursal.line);
2367
2368   if (*string)
2369     error (_("Junk at end of line specification: %s"), string);
2370   return sals;
2371 }
2372
2373 /* See linespec.h.  */
2374
2375 struct symtabs_and_lines
2376 decode_line_with_last_displayed (char *string, int flags)
2377 {
2378   struct symtabs_and_lines sals;
2379
2380   if (string == 0)
2381     error (_("Empty line specification."));
2382
2383   if (last_displayed_sal_is_valid ())
2384     sals = decode_line_1 (&string, flags,
2385                           get_last_displayed_symtab (),
2386                           get_last_displayed_line ());
2387   else
2388     sals = decode_line_1 (&string, flags, (struct symtab *) NULL, 0);
2389
2390   if (*string)
2391     error (_("Junk at end of line specification: %s"), string);
2392   return sals;
2393 }
2394
2395 \f
2396
2397 /* First, some functions to initialize stuff at the beggining of the
2398    function.  */
2399
2400 static void
2401 initialize_defaults (struct symtab **default_symtab, int *default_line)
2402 {
2403   if (*default_symtab == 0)
2404     {
2405       /* Use whatever we have for the default source line.  We don't use
2406          get_current_or_default_symtab_and_line as it can recurse and call
2407          us back!  */
2408       struct symtab_and_line cursal = 
2409         get_current_source_symtab_and_line ();
2410       
2411       *default_symtab = cursal.symtab;
2412       *default_line = cursal.line;
2413     }
2414 }
2415
2416 \f
2417
2418 /* Evaluate the expression pointed to by EXP_PTR into a CORE_ADDR,
2419    advancing EXP_PTR past any parsed text.  */
2420
2421 static CORE_ADDR
2422 linespec_expression_to_pc (char **exp_ptr)
2423 {
2424   if (current_program_space->executing_startup)
2425     /* The error message doesn't really matter, because this case
2426        should only hit during breakpoint reset.  */
2427     throw_error (NOT_FOUND_ERROR, _("cannot evaluate expressions while "
2428                                     "program space is in startup"));
2429
2430   (*exp_ptr)++;
2431   return value_as_address (parse_to_comma_and_eval (exp_ptr));
2432 }
2433
2434 \f
2435
2436 /* Here's where we recognise an Objective-C Selector.  An Objective C
2437    selector may be implemented by more than one class, therefore it
2438    may represent more than one method/function.  This gives us a
2439    situation somewhat analogous to C++ overloading.  If there's more
2440    than one method that could represent the selector, then use some of
2441    the existing C++ code to let the user choose one.  */
2442
2443 static struct symtabs_and_lines
2444 decode_objc (struct linespec_state *self, linespec_p ls, char **argptr)
2445 {
2446   struct collect_info info;
2447   VEC (const_char_ptr) *symbol_names = NULL;
2448   struct symtabs_and_lines values;
2449   char *new_argptr;
2450   struct cleanup *cleanup = make_cleanup (VEC_cleanup (const_char_ptr),
2451                                           &symbol_names);
2452
2453   info.state = self;
2454   info.file_symtabs = NULL;
2455   VEC_safe_push (symtab_p, info.file_symtabs, NULL);
2456   make_cleanup (VEC_cleanup (symtab_p), &info.file_symtabs);
2457   info.result.symbols = NULL;
2458   info.result.minimal_symbols = NULL;
2459   values.nelts = 0;
2460   values.sals = NULL;
2461
2462   new_argptr = find_imps (*argptr, &symbol_names); 
2463   if (VEC_empty (const_char_ptr, symbol_names))
2464     {
2465       do_cleanups (cleanup);
2466       return values;
2467     }
2468
2469   add_all_symbol_names_from_pspace (&info, NULL, symbol_names);
2470
2471   if (!VEC_empty (symbolp, info.result.symbols)
2472       || !VEC_empty (minsym_and_objfile_d, info.result.minimal_symbols))
2473     {
2474       char *saved_arg;
2475
2476       saved_arg = alloca (new_argptr - *argptr + 1);
2477       memcpy (saved_arg, *argptr, new_argptr - *argptr);
2478       saved_arg[new_argptr - *argptr] = '\0';
2479
2480       ls->function_symbols = info.result.symbols;
2481       ls->minimal_symbols = info.result.minimal_symbols;
2482       values = convert_linespec_to_sals (self, ls);
2483
2484       if (self->canonical)
2485         {
2486           self->canonical->pre_expanded = 1;
2487           if (ls->source_filename)
2488             self->canonical->addr_string
2489               = xstrprintf ("%s:%s", ls->source_filename, saved_arg);
2490           else
2491             self->canonical->addr_string = xstrdup (saved_arg);
2492         }
2493     }
2494
2495   *argptr = new_argptr;
2496
2497   do_cleanups (cleanup);
2498
2499   return values;
2500 }
2501
2502 /* An instance of this type is used when collecting prefix symbols for
2503    decode_compound.  */
2504
2505 struct decode_compound_collector
2506 {
2507   /* The result vector.  */
2508   VEC (symbolp) *symbols;
2509
2510   /* A hash table of all symbols we found.  We use this to avoid
2511      adding any symbol more than once.  */
2512   htab_t unique_syms;
2513 };
2514
2515 /* A callback for iterate_over_symbols that is used by
2516    lookup_prefix_sym to collect type symbols.  */
2517
2518 static int
2519 collect_one_symbol (struct symbol *sym, void *d)
2520 {
2521   struct decode_compound_collector *collector = d;
2522   void **slot;
2523   struct type *t;
2524
2525   if (SYMBOL_CLASS (sym) != LOC_TYPEDEF)
2526     return 1; /* Continue iterating.  */
2527
2528   t = SYMBOL_TYPE (sym);
2529   CHECK_TYPEDEF (t);
2530   if (TYPE_CODE (t) != TYPE_CODE_STRUCT
2531       && TYPE_CODE (t) != TYPE_CODE_UNION
2532       && TYPE_CODE (t) != TYPE_CODE_NAMESPACE)
2533     return 1; /* Continue iterating.  */
2534
2535   slot = htab_find_slot (collector->unique_syms, sym, INSERT);
2536   if (!*slot)
2537     {
2538       *slot = sym;
2539       VEC_safe_push (symbolp, collector->symbols, sym);
2540     }
2541
2542   return 1; /* Continue iterating.  */
2543 }
2544
2545 /* Return any symbols corresponding to CLASS_NAME in FILE_SYMTABS.  */
2546
2547 static VEC (symbolp) *
2548 lookup_prefix_sym (struct linespec_state *state, VEC (symtab_p) *file_symtabs,
2549                    const char *class_name)
2550 {
2551   int ix;
2552   struct symtab *elt;
2553   struct decode_compound_collector collector;
2554   struct cleanup *outer;
2555   struct cleanup *cleanup;
2556
2557   collector.symbols = NULL;
2558   outer = make_cleanup (VEC_cleanup (symbolp), &collector.symbols);
2559
2560   collector.unique_syms = htab_create_alloc (1, htab_hash_pointer,
2561                                              htab_eq_pointer, NULL,
2562                                              xcalloc, xfree);
2563   cleanup = make_cleanup_htab_delete (collector.unique_syms);
2564
2565   for (ix = 0; VEC_iterate (symtab_p, file_symtabs, ix, elt); ++ix)
2566     {
2567       if (elt == NULL)
2568         {
2569           iterate_over_all_matching_symtabs (state, class_name, STRUCT_DOMAIN,
2570                                              collect_one_symbol, &collector,
2571                                              NULL, 0);
2572           iterate_over_all_matching_symtabs (state, class_name, VAR_DOMAIN,
2573                                              collect_one_symbol, &collector,
2574                                              NULL, 0);
2575         }
2576       else
2577         {
2578           struct block *search_block;
2579
2580           /* Program spaces that are executing startup should have
2581              been filtered out earlier.  */
2582           gdb_assert (!SYMTAB_PSPACE (elt)->executing_startup);
2583           set_current_program_space (SYMTAB_PSPACE (elt));
2584           search_block = get_search_block (elt);
2585           LA_ITERATE_OVER_SYMBOLS (search_block, class_name, STRUCT_DOMAIN,
2586                                    collect_one_symbol, &collector);
2587           LA_ITERATE_OVER_SYMBOLS (search_block, class_name, VAR_DOMAIN,
2588                                    collect_one_symbol, &collector);
2589         }
2590     }
2591
2592   do_cleanups (cleanup);
2593   discard_cleanups (outer);
2594   return collector.symbols;
2595 }
2596
2597 /* A qsort comparison function for symbols.  The resulting order does
2598    not actually matter; we just need to be able to sort them so that
2599    symbols with the same program space end up next to each other.  */
2600
2601 static int
2602 compare_symbols (const void *a, const void *b)
2603 {
2604   struct symbol * const *sa = a;
2605   struct symbol * const *sb = b;
2606   uintptr_t uia, uib;
2607
2608   uia = (uintptr_t) SYMTAB_PSPACE (SYMBOL_SYMTAB (*sa));
2609   uib = (uintptr_t) SYMTAB_PSPACE (SYMBOL_SYMTAB (*sb));
2610
2611   if (uia < uib)
2612     return -1;
2613   if (uia > uib)
2614     return 1;
2615
2616   uia = (uintptr_t) *sa;
2617   uib = (uintptr_t) *sb;
2618
2619   if (uia < uib)
2620     return -1;
2621   if (uia > uib)
2622     return 1;
2623
2624   return 0;
2625 }
2626
2627 /* Like compare_symbols but for minimal symbols.  */
2628
2629 static int
2630 compare_msymbols (const void *a, const void *b)
2631 {
2632   const struct minsym_and_objfile *sa = a;
2633   const struct minsym_and_objfile *sb = b;
2634   uintptr_t uia, uib;
2635
2636   uia = (uintptr_t) sa->objfile->pspace;
2637   uib = (uintptr_t) sa->objfile->pspace;
2638
2639   if (uia < uib)
2640     return -1;
2641   if (uia > uib)
2642     return 1;
2643
2644   uia = (uintptr_t) sa->minsym;
2645   uib = (uintptr_t) sb->minsym;
2646
2647   if (uia < uib)
2648     return -1;
2649   if (uia > uib)
2650     return 1;
2651
2652   return 0;
2653 }
2654
2655 /* Look for all the matching instances of each symbol in NAMES.  Only
2656    instances from PSPACE are considered; other program spaces are
2657    handled by our caller.  If PSPACE is NULL, then all program spaces
2658    are considered.  Results are stored into INFO.  */
2659
2660 static void
2661 add_all_symbol_names_from_pspace (struct collect_info *info,
2662                                   struct program_space *pspace,
2663                                   VEC (const_char_ptr) *names)
2664 {
2665   int ix;
2666   const char *iter;
2667
2668   for (ix = 0; VEC_iterate (const_char_ptr, names, ix, iter); ++ix)
2669     add_matching_symbols_to_info (iter, info, pspace);
2670 }
2671
2672 static void
2673 find_superclass_methods (VEC (typep) *superclasses,
2674                          const char *name,
2675                          VEC (const_char_ptr) **result_names)
2676 {
2677   int old_len = VEC_length (const_char_ptr, *result_names);
2678   VEC (typep) *iter_classes;
2679   struct cleanup *cleanup = make_cleanup (null_cleanup, NULL);
2680
2681   iter_classes = superclasses;
2682   while (1)
2683     {
2684       VEC (typep) *new_supers = NULL;
2685       int ix;
2686       struct type *t;
2687
2688       make_cleanup (VEC_cleanup (typep), &new_supers);
2689       for (ix = 0; VEC_iterate (typep, iter_classes, ix, t); ++ix)
2690         find_methods (t, name, result_names, &new_supers);
2691
2692       if (VEC_length (const_char_ptr, *result_names) != old_len
2693           || VEC_empty (typep, new_supers))
2694         break;
2695
2696       iter_classes = new_supers;
2697     }
2698
2699   do_cleanups (cleanup);
2700 }
2701
2702 /* This finds the method METHOD_NAME in the class CLASS_NAME whose type is
2703    given by one of the symbols in SYM_CLASSES.  Matches are returned
2704    in SYMBOLS (for debug symbols) and MINSYMS (for minimal symbols).  */
2705
2706 static void
2707 find_method (struct linespec_state *self, VEC (symtab_p) *file_symtabs,
2708              const char *class_name, const char *method_name,
2709              VEC (symbolp) *sym_classes, VEC (symbolp) **symbols,
2710              VEC (minsym_and_objfile_d) **minsyms)
2711 {
2712   struct symbol *sym;
2713   struct cleanup *cleanup = make_cleanup (null_cleanup, NULL);
2714   int ix;
2715   int last_result_len;
2716   VEC (typep) *superclass_vec;
2717   VEC (const_char_ptr) *result_names;
2718   struct collect_info info;
2719
2720   /* Sort symbols so that symbols with the same program space are next
2721      to each other.  */
2722   qsort (VEC_address (symbolp, sym_classes),
2723          VEC_length (symbolp, sym_classes),
2724          sizeof (symbolp),
2725          compare_symbols);
2726
2727   info.state = self;
2728   info.file_symtabs = file_symtabs;
2729   info.result.symbols = NULL;
2730   info.result.minimal_symbols = NULL;
2731
2732   /* Iterate over all the types, looking for the names of existing
2733      methods matching METHOD_NAME.  If we cannot find a direct method in a
2734      given program space, then we consider inherited methods; this is
2735      not ideal (ideal would be to respect C++ hiding rules), but it
2736      seems good enough and is what GDB has historically done.  We only
2737      need to collect the names because later we find all symbols with
2738      those names.  This loop is written in a somewhat funny way
2739      because we collect data across the program space before deciding
2740      what to do.  */
2741   superclass_vec = NULL;
2742   make_cleanup (VEC_cleanup (typep), &superclass_vec);
2743   result_names = NULL;
2744   make_cleanup (VEC_cleanup (const_char_ptr), &result_names);
2745   last_result_len = 0;
2746   for (ix = 0; VEC_iterate (symbolp, sym_classes, ix, sym); ++ix)
2747     {
2748       struct type *t;
2749       struct program_space *pspace;
2750
2751       /* Program spaces that are executing startup should have
2752          been filtered out earlier.  */
2753       gdb_assert (!SYMTAB_PSPACE (SYMBOL_SYMTAB (sym))->executing_startup);
2754       pspace = SYMTAB_PSPACE (SYMBOL_SYMTAB (sym));
2755       set_current_program_space (pspace);
2756       t = check_typedef (SYMBOL_TYPE (sym));
2757       find_methods (t, method_name, &result_names, &superclass_vec);
2758
2759       /* Handle all items from a single program space at once; and be
2760          sure not to miss the last batch.  */
2761       if (ix == VEC_length (symbolp, sym_classes) - 1
2762           || (pspace
2763               != SYMTAB_PSPACE (SYMBOL_SYMTAB (VEC_index (symbolp, sym_classes,
2764                                                           ix + 1)))))
2765         {
2766           /* If we did not find a direct implementation anywhere in
2767              this program space, consider superclasses.  */
2768           if (VEC_length (const_char_ptr, result_names) == last_result_len)
2769             find_superclass_methods (superclass_vec, method_name,
2770                                      &result_names);
2771
2772           /* We have a list of candidate symbol names, so now we
2773              iterate over the symbol tables looking for all
2774              matches in this pspace.  */
2775           add_all_symbol_names_from_pspace (&info, pspace, result_names);
2776
2777           VEC_truncate (typep, superclass_vec, 0);
2778           last_result_len = VEC_length (const_char_ptr, result_names);
2779         }
2780     }
2781
2782   if (!VEC_empty (symbolp, info.result.symbols)
2783       || !VEC_empty (minsym_and_objfile_d, info.result.minimal_symbols))
2784     {
2785       *symbols = info.result.symbols;
2786       *minsyms = info.result.minimal_symbols;
2787       do_cleanups (cleanup);
2788       return;
2789     }
2790
2791   /* Throw an NOT_FOUND_ERROR.  This will be caught by the caller
2792      and other attempts to locate the symbol will be made.  */
2793   throw_error (NOT_FOUND_ERROR, _("see caller, this text doesn't matter"));
2794 }
2795
2796 \f
2797
2798 /* This object is used when collecting all matching symtabs.  */
2799
2800 struct symtab_collector
2801 {
2802   /* The result vector of symtabs.  */
2803   VEC (symtab_p) *symtabs;
2804
2805   /* This is used to ensure the symtabs are unique.  */
2806   htab_t symtab_table;
2807 };
2808
2809 /* Callback for iterate_over_symtabs.  */
2810
2811 static int
2812 add_symtabs_to_list (struct symtab *symtab, void *d)
2813 {
2814   struct symtab_collector *data = d;
2815   void **slot;
2816
2817   slot = htab_find_slot (data->symtab_table, symtab, INSERT);
2818   if (!*slot)
2819     {
2820       *slot = symtab;
2821       VEC_safe_push (symtab_p, data->symtabs, symtab);
2822     }
2823
2824   return 0;
2825 }
2826
2827 /* Given a file name, return a VEC of all matching symtabs.  */
2828
2829 static VEC (symtab_p) *
2830 collect_symtabs_from_filename (const char *file)
2831 {
2832   struct symtab_collector collector;
2833   struct cleanup *cleanups;
2834   struct program_space *pspace;
2835
2836   collector.symtabs = NULL;
2837   collector.symtab_table = htab_create (1, htab_hash_pointer, htab_eq_pointer,
2838                                         NULL);
2839   cleanups = make_cleanup_htab_delete (collector.symtab_table);
2840
2841   /* Find that file's data.  */
2842   ALL_PSPACES (pspace)
2843   {
2844     if (pspace->executing_startup)
2845       continue;
2846
2847     set_current_program_space (pspace);
2848     iterate_over_symtabs (file, add_symtabs_to_list, &collector);
2849   }
2850
2851   do_cleanups (cleanups);
2852   return collector.symtabs;
2853 }
2854
2855 /* Return all the symtabs associated to the FILENAME.  */
2856
2857 static VEC (symtab_p) *
2858 symtabs_from_filename (const char *filename)
2859 {
2860   VEC (symtab_p) *result;
2861   
2862   result = collect_symtabs_from_filename (filename);
2863
2864   if (VEC_empty (symtab_p, result))
2865     {
2866       if (!have_full_symbols () && !have_partial_symbols ())
2867         throw_error (NOT_FOUND_ERROR,
2868                      _("No symbol table is loaded.  "
2869                        "Use the \"file\" command."));
2870       throw_error (NOT_FOUND_ERROR, _("No source file named %s."), filename);
2871     }
2872
2873   return result;
2874 }
2875
2876 /* Look up a function symbol named NAME in symtabs FILE_SYMTABS.  Matching
2877    debug symbols are returned in SYMBOLS.  Matching minimal symbols are
2878    returned in MINSYMS.  */
2879
2880 static void
2881 find_function_symbols (struct linespec_state *state,
2882                        VEC (symtab_p) *file_symtabs, const char *name,
2883                        VEC (symbolp) **symbols,
2884                        VEC (minsym_and_objfile_d) **minsyms)
2885 {
2886   struct collect_info info;
2887   VEC (const_char_ptr) *symbol_names = NULL;
2888   struct cleanup *cleanup = make_cleanup (VEC_cleanup (const_char_ptr),
2889                                           &symbol_names);
2890
2891   info.state = state;
2892   info.result.symbols = NULL;
2893   info.result.minimal_symbols = NULL;
2894   info.file_symtabs = file_symtabs;
2895
2896   /* Try NAME as an Objective-C selector.  */
2897   find_imps ((char *) name, &symbol_names);
2898   if (!VEC_empty (const_char_ptr, symbol_names))
2899     add_all_symbol_names_from_pspace (&info, NULL, symbol_names);
2900   else
2901     add_matching_symbols_to_info (name, &info, NULL);
2902
2903   do_cleanups (cleanup);
2904
2905   if (VEC_empty (symbolp, info.result.symbols))
2906     {
2907       VEC_free (symbolp, info.result.symbols);
2908       *symbols = NULL;
2909     }
2910   else
2911     *symbols = info.result.symbols;
2912
2913   if (VEC_empty (minsym_and_objfile_d, info.result.minimal_symbols))
2914     {
2915       VEC_free (minsym_and_objfile_d, info.result.minimal_symbols);
2916       *minsyms = NULL;
2917     }
2918   else
2919     *minsyms = info.result.minimal_symbols;
2920 }
2921
2922 /* Find all symbols named NAME in FILE_SYMTABS, returning debug symbols
2923    in SYMBOLS and minimal symbols in MINSYMS.  */
2924
2925 void
2926 find_linespec_symbols (struct linespec_state *state,
2927                        VEC (symtab_p) *file_symtabs,
2928                        const char *name,
2929                        VEC (symbolp) **symbols,
2930                        VEC (minsym_and_objfile_d) **minsyms)
2931 {
2932   char *klass, *method, *canon;
2933   const char *lookup_name, *last, *p, *scope_op;
2934   struct cleanup *cleanup;
2935   VEC (symbolp) *classes;
2936   volatile struct gdb_exception except;
2937
2938   cleanup = demangle_for_lookup (name, state->language->la_language,
2939                                  &lookup_name);
2940   if (state->language->la_language == language_ada)
2941     {
2942       /* In Ada, the symbol lookups are performed using the encoded
2943          name rather than the demangled name.  */
2944       lookup_name = ada_name_for_lookup (name);
2945       make_cleanup (xfree, (void *) lookup_name);
2946     }
2947
2948   canon = cp_canonicalize_string_no_typedefs (lookup_name);
2949   if (canon != NULL)
2950     {
2951       lookup_name = canon;
2952       cleanup = make_cleanup (xfree, canon);
2953     }
2954
2955   /* See if we can find a scope operator and break this symbol
2956      name into namespaces${SCOPE_OPERATOR}class_name and method_name.  */
2957   scope_op = "::";
2958   p = find_toplevel_string (lookup_name, scope_op);
2959   if (p == NULL)
2960     {
2961       /* No C++ scope operator.  Try Java.  */
2962       scope_op = ".";
2963       p = find_toplevel_string (lookup_name, scope_op);
2964     }
2965
2966   last = NULL;
2967   while (p != NULL)
2968     {
2969       last = p;
2970       p = find_toplevel_string (p + strlen (scope_op), scope_op);
2971     }
2972
2973   /* If no scope operator was found, lookup the name as a symbol.  */
2974   if (last == NULL)
2975     {
2976       find_function_symbols (state, file_symtabs, lookup_name,
2977                              symbols, minsyms);
2978       do_cleanups (cleanup);
2979       return;
2980     }
2981
2982   /* NAME points to the class name.
2983      LAST points to the method name.  */
2984   klass = xmalloc ((last - lookup_name + 1) * sizeof (char));
2985   make_cleanup (xfree, klass);
2986   strncpy (klass, lookup_name, last - lookup_name);
2987   klass[last - lookup_name] = '\0';
2988
2989   /* Skip past the scope operator.  */
2990   last += strlen (scope_op);
2991   method = xmalloc ((strlen (last) + 1) * sizeof (char));
2992   make_cleanup (xfree, method);
2993   strcpy (method, last);
2994
2995   /* Find a list of classes named KLASS.  */
2996   classes = lookup_prefix_sym (state, file_symtabs, klass);
2997   make_cleanup (VEC_cleanup (symbolp), &classes);
2998   if (!VEC_empty (symbolp, classes))
2999     {
3000       /* Now locate a list of suitable methods named METHOD.  */
3001       TRY_CATCH (except, RETURN_MASK_ERROR)
3002         {
3003           find_method (state, file_symtabs, klass, method, classes,
3004                        symbols, minsyms);
3005         }
3006
3007       /* If successful, we're done.  If NOT_FOUND_ERROR
3008          was not thrown, rethrow the exception that we did get.
3009          Otherwise, fall back to looking up the entire name as a symbol.
3010          This can happen with namespace::function.  */
3011       if (except.reason >= 0)
3012         {
3013           do_cleanups (cleanup);
3014           return;
3015         }
3016       else if (except.error != NOT_FOUND_ERROR)
3017         throw_exception (except);
3018     }
3019
3020   /* We couldn't find a class, so we check the entire name as a symbol
3021      instead.  */
3022    find_function_symbols (state, file_symtabs, lookup_name, symbols, minsyms);
3023    do_cleanups (cleanup);
3024 }
3025
3026 /* Return all labels named NAME in FUNCTION_SYMBOLS.  Return the
3027    actual function symbol in which the label was found in LABEL_FUNC_RET.  */
3028
3029 static VEC (symbolp) *
3030 find_label_symbols (struct linespec_state *self,
3031                     VEC (symbolp) *function_symbols,
3032                     VEC (symbolp) **label_funcs_ret, const char *name)
3033 {
3034   int ix;
3035   struct block *block;
3036   struct symbol *sym;
3037   struct symbol *fn_sym;
3038   VEC (symbolp) *result = NULL;
3039
3040   if (function_symbols == NULL)
3041     {
3042       set_current_program_space (self->program_space);
3043       block = get_search_block (NULL);
3044
3045       for (;
3046            block && !BLOCK_FUNCTION (block);
3047            block = BLOCK_SUPERBLOCK (block))
3048         ;
3049       if (!block)
3050         return NULL;
3051       fn_sym = BLOCK_FUNCTION (block);
3052
3053       sym = lookup_symbol (name, block, LABEL_DOMAIN, 0);
3054
3055       if (sym != NULL)
3056         {
3057           VEC_safe_push (symbolp, result, sym);
3058           VEC_safe_push (symbolp, *label_funcs_ret, fn_sym);
3059         }
3060     }
3061   else
3062     {
3063       for (ix = 0;
3064            VEC_iterate (symbolp, function_symbols, ix, fn_sym); ++ix)
3065         {
3066           set_current_program_space (SYMTAB_PSPACE (SYMBOL_SYMTAB (fn_sym)));
3067           block = SYMBOL_BLOCK_VALUE (fn_sym);
3068           sym = lookup_symbol (name, block, LABEL_DOMAIN, 0);
3069
3070           if (sym != NULL)
3071             {
3072               VEC_safe_push (symbolp, result, sym);
3073               VEC_safe_push (symbolp, *label_funcs_ret, fn_sym);
3074             }
3075         }
3076     }
3077
3078   return result;
3079 }
3080
3081 \f
3082
3083 /* A helper for create_sals_line_offset that handles the 'list_mode' case.  */
3084
3085 static void
3086 decode_digits_list_mode (struct linespec_state *self,
3087                          linespec_p ls,
3088                          struct symtabs_and_lines *values,
3089                          struct symtab_and_line val)
3090 {
3091   int ix;
3092   struct symtab *elt;
3093
3094   gdb_assert (self->list_mode);
3095
3096   for (ix = 0; VEC_iterate (symtab_p, ls->file_symtabs, ix, elt);
3097        ++ix)
3098     {
3099       /* The logic above should ensure this.  */
3100       gdb_assert (elt != NULL);
3101
3102       set_current_program_space (SYMTAB_PSPACE (elt));
3103
3104       /* Simplistic search just for the list command.  */
3105       val.symtab = find_line_symtab (elt, val.line, NULL, NULL);
3106       if (val.symtab == NULL)
3107         val.symtab = elt;
3108       val.pspace = SYMTAB_PSPACE (elt);
3109       val.pc = 0;
3110       val.explicit_line = 1;
3111
3112       add_sal_to_sals (self, values, &val, NULL, 0);
3113     }
3114 }
3115
3116 /* A helper for create_sals_line_offset that iterates over the symtabs,
3117    adding lines to the VEC.  */
3118
3119 static void
3120 decode_digits_ordinary (struct linespec_state *self,
3121                         linespec_p ls,
3122                         int line,
3123                         struct symtabs_and_lines *sals,
3124                         struct linetable_entry **best_entry)
3125 {
3126   int ix;
3127   struct symtab *elt;
3128
3129   for (ix = 0; VEC_iterate (symtab_p, ls->file_symtabs, ix, elt); ++ix)
3130     {
3131       int i;
3132       VEC (CORE_ADDR) *pcs;
3133       CORE_ADDR pc;
3134
3135       /* The logic above should ensure this.  */
3136       gdb_assert (elt != NULL);
3137
3138       set_current_program_space (SYMTAB_PSPACE (elt));
3139
3140       pcs = find_pcs_for_symtab_line (elt, line, best_entry);
3141       for (i = 0; VEC_iterate (CORE_ADDR, pcs, i, pc); ++i)
3142         {
3143           struct symtab_and_line sal;
3144
3145           init_sal (&sal);
3146           sal.pspace = SYMTAB_PSPACE (elt);
3147           sal.symtab = elt;
3148           sal.line = line;
3149           sal.pc = pc;
3150           add_sal_to_sals_basic (sals, &sal);
3151         }
3152
3153       VEC_free (CORE_ADDR, pcs);
3154     }
3155 }
3156
3157 \f
3158
3159 /* Return the line offset represented by VARIABLE.  */
3160
3161 static struct line_offset
3162 linespec_parse_variable (struct linespec_state *self, const char *variable)
3163 {
3164   int index = 0;
3165   const char *p;
3166   struct line_offset offset = {0, LINE_OFFSET_NONE};
3167
3168   p = (variable[1] == '$') ? variable + 2 : variable + 1;
3169   if (*p == '$')
3170     ++p;
3171   while (*p >= '0' && *p <= '9')
3172     ++p;
3173   if (!*p)              /* Reached end of token without hitting non-digit.  */
3174     {
3175       /* We have a value history reference.  */
3176       struct value *val_history;
3177
3178       sscanf ((variable[1] == '$') ? variable + 2 : variable + 1, "%d", &index);
3179       val_history
3180         = access_value_history ((variable[1] == '$') ? -index : index);
3181       if (TYPE_CODE (value_type (val_history)) != TYPE_CODE_INT)
3182         error (_("History values used in line "
3183                  "specs must have integer values."));
3184       offset.offset = value_as_long (val_history);
3185     }
3186   else
3187     {
3188       /* Not all digits -- may be user variable/function or a
3189          convenience variable.  */
3190       LONGEST valx;
3191       struct internalvar *ivar;
3192
3193       /* Try it as a convenience variable.  If it is not a convenience
3194          variable, return and allow normal symbol lookup to occur.  */
3195       ivar = lookup_only_internalvar (variable + 1);
3196       if (ivar == NULL)
3197         /* No internal variable with that name.  Mark the offset
3198            as unknown to allow the name to be looked up as a symbol.  */
3199         offset.sign = LINE_OFFSET_UNKNOWN;
3200       else
3201         {
3202           /* We found a valid variable name.  If it is not an integer,
3203              throw an error.  */
3204           if (!get_internalvar_integer (ivar, &valx))
3205             error (_("Convenience variables used in line "
3206                      "specs must have integer values."));
3207           else
3208             offset.offset = valx;
3209         }
3210     }
3211
3212   return offset;
3213 }
3214 \f
3215
3216 /* A callback used to possibly add a symbol to the results.  */
3217
3218 static int
3219 collect_symbols (struct symbol *sym, void *data)
3220 {
3221   struct collect_info *info = data;
3222
3223   /* In list mode, add all matching symbols, regardless of class.
3224      This allows the user to type "list a_global_variable".  */
3225   if (SYMBOL_CLASS (sym) == LOC_BLOCK || info->state->list_mode)
3226     VEC_safe_push (symbolp, info->result.symbols, sym);
3227   return 1; /* Continue iterating.  */
3228 }
3229
3230 /* We've found a minimal symbol MSYMBOL in OBJFILE to associate with our
3231    linespec; return the SAL in RESULT.  */
3232
3233 static void
3234 minsym_found (struct linespec_state *self, struct objfile *objfile,
3235               struct minimal_symbol *msymbol,
3236               struct symtabs_and_lines *result)
3237 {
3238   struct gdbarch *gdbarch = get_objfile_arch (objfile);
3239   CORE_ADDR pc;
3240   struct symtab_and_line sal;
3241
3242   sal = find_pc_sect_line (SYMBOL_VALUE_ADDRESS (msymbol),
3243                            (struct obj_section *) 0, 0);
3244   sal.section = SYMBOL_OBJ_SECTION (msymbol);
3245
3246   /* The minimal symbol might point to a function descriptor;
3247      resolve it to the actual code address instead.  */
3248   pc = gdbarch_convert_from_func_ptr_addr (gdbarch, sal.pc, &current_target);
3249   if (pc != sal.pc)
3250     sal = find_pc_sect_line (pc, NULL, 0);
3251
3252   if (self->funfirstline)
3253     skip_prologue_sal (&sal);
3254
3255   if (maybe_add_address (self->addr_set, objfile->pspace, sal.pc))
3256     add_sal_to_sals (self, result, &sal, SYMBOL_NATURAL_NAME (msymbol), 0);
3257 }
3258
3259 /* A helper struct to pass some data through
3260    iterate_over_minimal_symbols.  */
3261
3262 struct collect_minsyms
3263 {
3264   /* The objfile we're examining.  */
3265   struct objfile *objfile;
3266
3267   /* The funfirstline setting from the initial call.  */
3268   int funfirstline;
3269
3270   /* The list_mode setting from the initial call.  */
3271   int list_mode;
3272
3273   /* The resulting symbols.  */
3274   VEC (minsym_and_objfile_d) *msyms;
3275 };
3276
3277 /* A helper function to classify a minimal_symbol_type according to
3278    priority.  */
3279
3280 static int
3281 classify_mtype (enum minimal_symbol_type t)
3282 {
3283   switch (t)
3284     {
3285     case mst_file_text:
3286     case mst_file_data:
3287     case mst_file_bss:
3288       /* Intermediate priority.  */
3289       return 1;
3290
3291     case mst_solib_trampoline:
3292       /* Lowest priority.  */
3293       return 2;
3294
3295     default:
3296       /* Highest priority.  */
3297       return 0;
3298     }
3299 }
3300
3301 /* Callback for qsort that sorts symbols by priority.  */
3302
3303 static int
3304 compare_msyms (const void *a, const void *b)
3305 {
3306   const minsym_and_objfile_d *moa = a;
3307   const minsym_and_objfile_d *mob = b;
3308   enum minimal_symbol_type ta = MSYMBOL_TYPE (moa->minsym);
3309   enum minimal_symbol_type tb = MSYMBOL_TYPE (mob->minsym);
3310
3311   return classify_mtype (ta) - classify_mtype (tb);
3312 }
3313
3314 /* Callback for iterate_over_minimal_symbols that adds the symbol to
3315    the result.  */
3316
3317 static void
3318 add_minsym (struct minimal_symbol *minsym, void *d)
3319 {
3320   struct collect_minsyms *info = d;
3321   minsym_and_objfile_d mo;
3322
3323   /* Exclude data symbols when looking for breakpoint locations.   */
3324   if (!info->list_mode)
3325     switch (minsym->type)
3326       {
3327         case mst_slot_got_plt:
3328         case mst_data:
3329         case mst_bss:
3330         case mst_abs:
3331         case mst_file_data:
3332         case mst_file_bss:
3333           {
3334             /* Make sure this minsym is not a function descriptor
3335                before we decide to discard it.  */
3336             struct gdbarch *gdbarch = info->objfile->gdbarch;
3337             CORE_ADDR addr = gdbarch_convert_from_func_ptr_addr
3338                                (gdbarch, SYMBOL_VALUE_ADDRESS (minsym),
3339                                 &current_target);
3340
3341             if (addr == SYMBOL_VALUE_ADDRESS (minsym))
3342               return;
3343           }
3344       }
3345
3346   mo.minsym = minsym;
3347   mo.objfile = info->objfile;
3348   VEC_safe_push (minsym_and_objfile_d, info->msyms, &mo);
3349 }
3350
3351 /* Search minimal symbols in all objfiles for NAME.  If SEARCH_PSPACE
3352    is not NULL, the search is restricted to just that program
3353    space.  */
3354
3355 static void
3356 search_minsyms_for_name (struct collect_info *info, const char *name,
3357                          struct program_space *search_pspace)
3358 {
3359   struct objfile *objfile;
3360   struct program_space *pspace;
3361
3362   ALL_PSPACES (pspace)
3363   {
3364     struct collect_minsyms local;
3365     struct cleanup *cleanup;
3366
3367     if (search_pspace != NULL && search_pspace != pspace)
3368       continue;
3369     if (pspace->executing_startup)
3370       continue;
3371
3372     set_current_program_space (pspace);
3373
3374     memset (&local, 0, sizeof (local));
3375     local.funfirstline = info->state->funfirstline;
3376     local.list_mode = info->state->list_mode;
3377
3378     cleanup = make_cleanup (VEC_cleanup (minsym_and_objfile_d),
3379                             &local.msyms);
3380
3381     ALL_OBJFILES (objfile)
3382     {
3383       local.objfile = objfile;
3384       iterate_over_minimal_symbols (objfile, name, add_minsym, &local);
3385     }
3386
3387     if (!VEC_empty (minsym_and_objfile_d, local.msyms))
3388       {
3389         int classification;
3390         int ix;
3391         minsym_and_objfile_d *item;
3392
3393         qsort (VEC_address (minsym_and_objfile_d, local.msyms),
3394                VEC_length (minsym_and_objfile_d, local.msyms),
3395                sizeof (minsym_and_objfile_d),
3396                compare_msyms);
3397
3398         /* Now the minsyms are in classification order.  So, we walk
3399            over them and process just the minsyms with the same
3400            classification as the very first minsym in the list.  */
3401         item = VEC_index (minsym_and_objfile_d, local.msyms, 0);
3402         classification = classify_mtype (MSYMBOL_TYPE (item->minsym));
3403
3404         for (ix = 0;
3405              VEC_iterate (minsym_and_objfile_d, local.msyms, ix, item);
3406              ++ix)
3407           {
3408             if (classify_mtype (MSYMBOL_TYPE (item->minsym)) != classification)
3409               break;
3410
3411             VEC_safe_push (minsym_and_objfile_d,
3412                            info->result.minimal_symbols, item);
3413           }
3414       }
3415
3416     do_cleanups (cleanup);
3417   }
3418 }
3419
3420 /* A helper function to add all symbols matching NAME to INFO.  If
3421    PSPACE is not NULL, the search is restricted to just that program
3422    space.  */
3423
3424 static void
3425 add_matching_symbols_to_info (const char *name,
3426                               struct collect_info *info,
3427                               struct program_space *pspace)
3428 {
3429   int ix;
3430   struct symtab *elt;
3431
3432   for (ix = 0; VEC_iterate (symtab_p, info->file_symtabs, ix, elt); ++ix)
3433     {
3434       if (elt == NULL)
3435         {
3436           iterate_over_all_matching_symtabs (info->state, name, VAR_DOMAIN,
3437                                              collect_symbols, info,
3438                                              pspace, 1);
3439           search_minsyms_for_name (info, name, pspace);
3440         }
3441       else if (pspace == NULL || pspace == SYMTAB_PSPACE (elt))
3442         {
3443           /* Program spaces that are executing startup should have
3444              been filtered out earlier.  */
3445           gdb_assert (!SYMTAB_PSPACE (elt)->executing_startup);
3446           set_current_program_space (SYMTAB_PSPACE (elt));
3447           LA_ITERATE_OVER_SYMBOLS (get_search_block (elt), name,
3448                                    VAR_DOMAIN, collect_symbols,
3449                                    info);
3450         }
3451     }
3452 }
3453
3454 \f
3455
3456 /* Now come some functions that are called from multiple places within
3457    decode_line_1.  */
3458
3459 static int
3460 symbol_to_sal (struct symtab_and_line *result,
3461                int funfirstline, struct symbol *sym)
3462 {
3463   if (SYMBOL_CLASS (sym) == LOC_BLOCK)
3464     {
3465       *result = find_function_start_sal (sym, funfirstline);
3466       return 1;
3467     }
3468   else
3469     {
3470       if (SYMBOL_CLASS (sym) == LOC_LABEL && SYMBOL_VALUE_ADDRESS (sym) != 0)
3471         {
3472           init_sal (result);
3473           result->symtab = SYMBOL_SYMTAB (sym);
3474           result->line = SYMBOL_LINE (sym);
3475           result->pc = SYMBOL_VALUE_ADDRESS (sym);
3476           result->pspace = SYMTAB_PSPACE (SYMBOL_SYMTAB (sym));
3477           result->explicit_pc = 1;
3478           return 1;
3479         }
3480       else if (funfirstline)
3481         {
3482           /* Nothing.  */
3483         }
3484       else if (SYMBOL_LINE (sym) != 0)
3485         {
3486           /* We know its line number.  */
3487           init_sal (result);
3488           result->symtab = SYMBOL_SYMTAB (sym);
3489           result->line = SYMBOL_LINE (sym);
3490           result->pspace = SYMTAB_PSPACE (SYMBOL_SYMTAB (sym));
3491           return 1;
3492         }
3493     }
3494
3495   return 0;
3496 }
3497
3498 /* See the comment in linespec.h.  */
3499
3500 void
3501 init_linespec_result (struct linespec_result *lr)
3502 {
3503   memset (lr, 0, sizeof (*lr));
3504 }
3505
3506 /* See the comment in linespec.h.  */
3507
3508 void
3509 destroy_linespec_result (struct linespec_result *ls)
3510 {
3511   int i;
3512   struct linespec_sals *lsal;
3513
3514   xfree (ls->addr_string);
3515   for (i = 0; VEC_iterate (linespec_sals, ls->sals, i, lsal); ++i)
3516     {
3517       xfree (lsal->canonical);
3518       xfree (lsal->sals.sals);
3519     }
3520   VEC_free (linespec_sals, ls->sals);
3521 }
3522
3523 /* Cleanup function for a linespec_result.  */
3524
3525 static void
3526 cleanup_linespec_result (void *a)
3527 {
3528   destroy_linespec_result (a);
3529 }
3530
3531 /* See the comment in linespec.h.  */
3532
3533 struct cleanup *
3534 make_cleanup_destroy_linespec_result (struct linespec_result *ls)
3535 {
3536   return make_cleanup (cleanup_linespec_result, ls);
3537 }