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