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