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