[ppc64le] Use skip_entrypoint for skip_trampoline_code
[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_loc;
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_loc)
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 = XNEWVEC (struct decode_line_2_item, 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_loc;
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
1780     = new_explicit_location (&ls->explicit_loc);
1781   explicit_loc = get_explicit_location (canon);
1782
1783   if (explicit_loc->label_name != NULL)
1784     {
1785       state->canonical->special_display = 1;
1786
1787       if (explicit_loc->function_name == NULL)
1788         {
1789           struct symbol *s;
1790
1791           /* No function was specified, so add the symbol name.  */
1792           gdb_assert (ls->labels.function_symbols != NULL
1793                       && (VEC_length (symbolp, ls->labels.function_symbols)
1794                           == 1));
1795           s = VEC_index (symbolp, ls->labels.function_symbols, 0);
1796           explicit_loc->function_name = xstrdup (SYMBOL_NATURAL_NAME (s));
1797         }
1798     }
1799
1800   /* If this location originally came from a linespec, save a string
1801      representation of it for display and saving to file.  */
1802   if (state->is_linespec)
1803     {
1804       char *linespec = explicit_location_to_linespec (explicit_loc);
1805
1806       set_event_location_string (canon, linespec);
1807       xfree (linespec);
1808     }
1809 }
1810
1811 /* Given a line offset in LS, construct the relevant SALs.  */
1812
1813 static struct symtabs_and_lines
1814 create_sals_line_offset (struct linespec_state *self,
1815                          linespec_p ls)
1816 {
1817   struct symtabs_and_lines values;
1818   struct symtab_and_line val;
1819   int use_default = 0;
1820
1821   init_sal (&val);
1822   values.sals = NULL;
1823   values.nelts = 0;
1824
1825   /* This is where we need to make sure we have good defaults.
1826      We must guarantee that this section of code is never executed
1827      when we are called with just a function name, since
1828      set_default_source_symtab_and_line uses
1829      select_source_symtab that calls us with such an argument.  */
1830
1831   if (VEC_length (symtab_ptr, ls->file_symtabs) == 1
1832       && VEC_index (symtab_ptr, ls->file_symtabs, 0) == NULL)
1833     {
1834       const char *fullname;
1835
1836       set_current_program_space (self->program_space);
1837
1838       /* Make sure we have at least a default source line.  */
1839       set_default_source_symtab_and_line ();
1840       initialize_defaults (&self->default_symtab, &self->default_line);
1841       fullname = symtab_to_fullname (self->default_symtab);
1842       VEC_pop (symtab_ptr, ls->file_symtabs);
1843       VEC_free (symtab_ptr, ls->file_symtabs);
1844       ls->file_symtabs = collect_symtabs_from_filename (fullname);
1845       use_default = 1;
1846     }
1847
1848   val.line = ls->explicit_loc.line_offset.offset;
1849   switch (ls->explicit_loc.line_offset.sign)
1850     {
1851     case LINE_OFFSET_PLUS:
1852       if (ls->explicit_loc.line_offset.offset == 0)
1853         val.line = 5;
1854       if (use_default)
1855         val.line = self->default_line + val.line;
1856       break;
1857
1858     case LINE_OFFSET_MINUS:
1859       if (ls->explicit_loc.line_offset.offset == 0)
1860         val.line = 15;
1861       if (use_default)
1862         val.line = self->default_line - val.line;
1863       else
1864         val.line = -val.line;
1865       break;
1866
1867     case LINE_OFFSET_NONE:
1868       break;                    /* No need to adjust val.line.  */
1869     }
1870
1871   if (self->list_mode)
1872     decode_digits_list_mode (self, ls, &values, val);
1873   else
1874     {
1875       struct linetable_entry *best_entry = NULL;
1876       int *filter;
1877       const struct block **blocks;
1878       struct cleanup *cleanup;
1879       struct symtabs_and_lines intermediate_results;
1880       int i, j;
1881
1882       intermediate_results.sals = NULL;
1883       intermediate_results.nelts = 0;
1884
1885       decode_digits_ordinary (self, ls, val.line, &intermediate_results,
1886                               &best_entry);
1887       if (intermediate_results.nelts == 0 && best_entry != NULL)
1888         decode_digits_ordinary (self, ls, best_entry->line,
1889                                 &intermediate_results, &best_entry);
1890
1891       cleanup = make_cleanup (xfree, intermediate_results.sals);
1892
1893       /* For optimized code, the compiler can scatter one source line
1894          across disjoint ranges of PC values, even when no duplicate
1895          functions or inline functions are involved.  For example,
1896          'for (;;)' inside a non-template, non-inline, and non-ctor-or-dtor
1897          function can result in two PC ranges.  In this case, we don't
1898          want to set a breakpoint on the first PC of each range.  To filter
1899          such cases, we use containing blocks -- for each PC found
1900          above, we see if there are other PCs that are in the same
1901          block.  If yes, the other PCs are filtered out.  */
1902
1903       filter = XNEWVEC (int, intermediate_results.nelts);
1904       make_cleanup (xfree, filter);
1905       blocks = XNEWVEC (const struct block *, intermediate_results.nelts);
1906       make_cleanup (xfree, blocks);
1907
1908       for (i = 0; i < intermediate_results.nelts; ++i)
1909         {
1910           set_current_program_space (intermediate_results.sals[i].pspace);
1911
1912           filter[i] = 1;
1913           blocks[i] = block_for_pc_sect (intermediate_results.sals[i].pc,
1914                                          intermediate_results.sals[i].section);
1915         }
1916
1917       for (i = 0; i < intermediate_results.nelts; ++i)
1918         {
1919           if (blocks[i] != NULL)
1920             for (j = i + 1; j < intermediate_results.nelts; ++j)
1921               {
1922                 if (blocks[j] == blocks[i])
1923                   {
1924                     filter[j] = 0;
1925                     break;
1926                   }
1927               }
1928         }
1929
1930       for (i = 0; i < intermediate_results.nelts; ++i)
1931         if (filter[i])
1932           {
1933             struct symbol *sym = (blocks[i]
1934                                   ? block_containing_function (blocks[i])
1935                                   : NULL);
1936
1937             if (self->funfirstline)
1938               skip_prologue_sal (&intermediate_results.sals[i]);
1939             /* Make sure the line matches the request, not what was
1940                found.  */
1941             intermediate_results.sals[i].line = val.line;
1942             add_sal_to_sals (self, &values, &intermediate_results.sals[i],
1943                              sym ? SYMBOL_NATURAL_NAME (sym) : NULL, 0);
1944           }
1945
1946       do_cleanups (cleanup);
1947     }
1948
1949   if (values.nelts == 0)
1950     {
1951       if (ls->explicit_loc.source_filename)
1952         throw_error (NOT_FOUND_ERROR, _("No line %d in file \"%s\"."),
1953                      val.line, ls->explicit_loc.source_filename);
1954       else
1955         throw_error (NOT_FOUND_ERROR, _("No line %d in the current file."),
1956                      val.line);
1957     }
1958
1959   return values;
1960 }
1961
1962 /* Convert the given ADDRESS into SaLs.  */
1963
1964 static struct symtabs_and_lines
1965 convert_address_location_to_sals (struct linespec_state *self,
1966                                   CORE_ADDR address)
1967 {
1968   struct symtab_and_line sal;
1969   struct symtabs_and_lines sals = {NULL, 0};
1970
1971   sal = find_pc_line (address, 0);
1972   sal.pc = address;
1973   sal.section = find_pc_overlay (address);
1974   sal.explicit_pc = 1;
1975   add_sal_to_sals (self, &sals, &sal, core_addr_to_string (address), 1);
1976
1977   return sals;
1978 }
1979
1980 /* Create and return SALs from the linespec LS.  */
1981
1982 static struct symtabs_and_lines
1983 convert_linespec_to_sals (struct linespec_state *state, linespec_p ls)
1984 {
1985   struct symtabs_and_lines sals = {NULL, 0};
1986
1987   if (ls->labels.label_symbols != NULL)
1988     {
1989       /* We have just a bunch of functions/methods or labels.  */
1990       int i;
1991       struct symtab_and_line sal;
1992       struct symbol *sym;
1993
1994       for (i = 0; VEC_iterate (symbolp, ls->labels.label_symbols, i, sym); ++i)
1995         {
1996           struct program_space *pspace = SYMTAB_PSPACE (symbol_symtab (sym));
1997
1998           if (symbol_to_sal (&sal, state->funfirstline, sym)
1999               && maybe_add_address (state->addr_set, pspace, sal.pc))
2000             add_sal_to_sals (state, &sals, &sal,
2001                              SYMBOL_NATURAL_NAME (sym), 0);
2002         }
2003     }
2004   else if (ls->function_symbols != NULL || ls->minimal_symbols != NULL)
2005     {
2006       /* We have just a bunch of functions and/or methods.  */
2007       int i;
2008       struct symtab_and_line sal;
2009       struct symbol *sym;
2010       bound_minimal_symbol_d *elem;
2011       struct program_space *pspace;
2012
2013       if (ls->function_symbols != NULL)
2014         {
2015           /* Sort symbols so that symbols with the same program space are next
2016              to each other.  */
2017           qsort (VEC_address (symbolp, ls->function_symbols),
2018                  VEC_length (symbolp, ls->function_symbols),
2019                  sizeof (symbolp), compare_symbols);
2020
2021           for (i = 0; VEC_iterate (symbolp, ls->function_symbols, i, sym); ++i)
2022             {
2023               pspace = SYMTAB_PSPACE (symbol_symtab (sym));
2024               set_current_program_space (pspace);
2025               if (symbol_to_sal (&sal, state->funfirstline, sym)
2026                   && maybe_add_address (state->addr_set, pspace, sal.pc))
2027                 add_sal_to_sals (state, &sals, &sal,
2028                                  SYMBOL_NATURAL_NAME (sym), 0);
2029             }
2030         }
2031
2032       if (ls->minimal_symbols != NULL)
2033         {
2034           /* Sort minimal symbols by program space, too.  */
2035           qsort (VEC_address (bound_minimal_symbol_d, ls->minimal_symbols),
2036                  VEC_length (bound_minimal_symbol_d, ls->minimal_symbols),
2037                  sizeof (bound_minimal_symbol_d), compare_msymbols);
2038
2039           for (i = 0;
2040                VEC_iterate (bound_minimal_symbol_d, ls->minimal_symbols,
2041                             i, elem);
2042                ++i)
2043             {
2044               pspace = elem->objfile->pspace;
2045               set_current_program_space (pspace);
2046               minsym_found (state, elem->objfile, elem->minsym, &sals);
2047             }
2048         }
2049     }
2050   else if (ls->explicit_loc.line_offset.sign != LINE_OFFSET_UNKNOWN)
2051     {
2052       /* Only an offset was specified.  */
2053         sals = create_sals_line_offset (state, ls);
2054
2055         /* Make sure we have a filename for canonicalization.  */
2056         if (ls->explicit_loc.source_filename == NULL)
2057           {
2058             const char *fullname = symtab_to_fullname (state->default_symtab);
2059
2060             /* It may be more appropriate to keep DEFAULT_SYMTAB in its symtab
2061                form so that displaying SOURCE_FILENAME can follow the current
2062                FILENAME_DISPLAY_STRING setting.  But as it is used only rarely
2063                it has been kept for code simplicity only in absolute form.  */
2064             ls->explicit_loc.source_filename = xstrdup (fullname);
2065           }
2066     }
2067   else
2068     {
2069       /* We haven't found any results...  */
2070       return sals;
2071     }
2072
2073   canonicalize_linespec (state, ls);
2074
2075   if (sals.nelts > 0 && state->canonical != NULL)
2076     state->canonical->pre_expanded = 1;
2077
2078   return sals;
2079 }
2080
2081 /* Convert the explicit location EXPLICIT_LOC into SaLs.  */
2082
2083 static struct symtabs_and_lines
2084 convert_explicit_location_to_sals (struct linespec_state *self,
2085                                    linespec_p result,
2086                                    const struct explicit_location *explicit_loc)
2087 {
2088   VEC (symbolp) *symbols, *labels;
2089   VEC (bound_minimal_symbol_d) *minimal_symbols;
2090
2091   if (explicit_loc->source_filename != NULL)
2092     {
2093       TRY
2094         {
2095           result->file_symtabs
2096             = symtabs_from_filename (explicit_loc->source_filename);
2097         }
2098       CATCH (except, RETURN_MASK_ERROR)
2099         {
2100           source_file_not_found_error (explicit_loc->source_filename);
2101         }
2102       END_CATCH
2103       result->explicit_loc.source_filename
2104         = xstrdup (explicit_loc->source_filename);
2105     }
2106   else
2107     {
2108       /* A NULL entry means to use the default symtab.  */
2109       VEC_safe_push (symtab_ptr, result->file_symtabs, NULL);
2110     }
2111
2112   if (explicit_loc->function_name != NULL)
2113     {
2114       find_linespec_symbols (self, result->file_symtabs,
2115                              explicit_loc->function_name, &symbols,
2116                              &minimal_symbols);
2117
2118       if (symbols == NULL && minimal_symbols == NULL)
2119         symbol_not_found_error (explicit_loc->function_name,
2120                                 result->explicit_loc.source_filename);
2121
2122       result->explicit_loc.function_name
2123         = xstrdup (explicit_loc->function_name);
2124       result->function_symbols = symbols;
2125       result->minimal_symbols = minimal_symbols;
2126     }
2127
2128   if (explicit_loc->label_name != NULL)
2129     {
2130       symbols = NULL;
2131       labels = find_label_symbols (self, result->function_symbols,
2132                                    &symbols, explicit_loc->label_name);
2133
2134       if (labels == NULL)
2135         undefined_label_error (result->explicit_loc.function_name,
2136                                explicit_loc->label_name);
2137
2138       result->explicit_loc.label_name = xstrdup (explicit_loc->label_name);
2139       result->labels.label_symbols = labels;
2140       result->labels.function_symbols = symbols;
2141     }
2142
2143   if (explicit_loc->line_offset.sign != LINE_OFFSET_UNKNOWN)
2144     result->explicit_loc.line_offset = explicit_loc->line_offset;
2145
2146    return convert_linespec_to_sals (self, result);
2147 }
2148
2149 /* Parse a string that specifies a linespec.
2150
2151    The basic grammar of linespecs:
2152
2153    linespec -> var_spec | basic_spec
2154    var_spec -> '$' (STRING | NUMBER)
2155
2156    basic_spec -> file_offset_spec | function_spec | label_spec
2157    file_offset_spec -> opt_file_spec offset_spec
2158    function_spec -> opt_file_spec function_name_spec opt_label_spec
2159    label_spec -> label_name_spec
2160
2161    opt_file_spec -> "" | file_name_spec ':'
2162    opt_label_spec -> "" | ':' label_name_spec
2163
2164    file_name_spec -> STRING
2165    function_name_spec -> STRING
2166    label_name_spec -> STRING
2167    function_name_spec -> STRING
2168    offset_spec -> NUMBER
2169                -> '+' NUMBER
2170                -> '-' NUMBER
2171
2172    This may all be followed by several keywords such as "if EXPR",
2173    which we ignore.
2174
2175    A comma will terminate parsing.
2176
2177    The function may be an undebuggable function found in minimal symbol table.
2178
2179    If the argument FUNFIRSTLINE is nonzero, we want the first line
2180    of real code inside a function when a function is specified, and it is
2181    not OK to specify a variable or type to get its line number.
2182
2183    DEFAULT_SYMTAB specifies the file to use if none is specified.
2184    It defaults to current_source_symtab.
2185    DEFAULT_LINE specifies the line number to use for relative
2186    line numbers (that start with signs).  Defaults to current_source_line.
2187    If CANONICAL is non-NULL, store an array of strings containing the canonical
2188    line specs there if necessary.  Currently overloaded member functions and
2189    line numbers or static functions without a filename yield a canonical
2190    line spec.  The array and the line spec strings are allocated on the heap,
2191    it is the callers responsibility to free them.
2192
2193    Note that it is possible to return zero for the symtab
2194    if no file is validly specified.  Callers must check that.
2195    Also, the line number returned may be invalid.  */
2196
2197 /* Parse the linespec in ARG.  */
2198
2199 static struct symtabs_and_lines
2200 parse_linespec (linespec_parser *parser, const char *arg)
2201 {
2202   linespec_token token;
2203   struct symtabs_and_lines values;
2204   struct gdb_exception file_exception = exception_none;
2205   struct cleanup *cleanup;
2206
2207   /* A special case to start.  It has become quite popular for
2208      IDEs to work around bugs in the previous parser by quoting
2209      the entire linespec, so we attempt to deal with this nicely.  */
2210   parser->is_quote_enclosed = 0;
2211   if (!is_ada_operator (arg)
2212       && strchr (linespec_quote_characters, *arg) != NULL)
2213     {
2214       const char *end;
2215
2216       end = skip_quote_char (arg + 1, *arg);
2217       if (end != NULL && is_closing_quote_enclosed (end))
2218         {
2219           /* Here's the special case.  Skip ARG past the initial
2220              quote.  */
2221           ++arg;
2222           parser->is_quote_enclosed = 1;
2223         }
2224     }
2225
2226   parser->lexer.saved_arg = arg;
2227   parser->lexer.stream = arg;
2228
2229   /* Initialize the default symtab and line offset.  */
2230   initialize_defaults (&PARSER_STATE (parser)->default_symtab,
2231                        &PARSER_STATE (parser)->default_line);
2232
2233   /* Objective-C shortcut.  */
2234   values = decode_objc (PARSER_STATE (parser), PARSER_RESULT (parser), arg);
2235   if (values.sals != NULL)
2236     return values;
2237
2238   /* Start parsing.  */
2239
2240   /* Get the first token.  */
2241   token = linespec_lexer_lex_one (parser);
2242
2243   /* It must be either LSTOKEN_STRING or LSTOKEN_NUMBER.  */
2244   if (token.type == LSTOKEN_STRING && *LS_TOKEN_STOKEN (token).ptr == '$')
2245     {
2246       char *var;
2247
2248       /* A NULL entry means to use GLOBAL_DEFAULT_SYMTAB.  */
2249       VEC_safe_push (symtab_ptr, PARSER_RESULT (parser)->file_symtabs, NULL);
2250
2251       /* User specified a convenience variable or history value.  */
2252       var = copy_token_string (token);
2253       cleanup = make_cleanup (xfree, var);
2254       PARSER_EXPLICIT (parser)->line_offset
2255         = linespec_parse_variable (PARSER_STATE (parser), var);
2256       do_cleanups (cleanup);
2257
2258       /* If a line_offset wasn't found (VAR is the name of a user
2259          variable/function), then skip to normal symbol processing.  */
2260       if (PARSER_EXPLICIT (parser)->line_offset.sign != LINE_OFFSET_UNKNOWN)
2261         {
2262           /* Consume this token.  */
2263           linespec_lexer_consume_token (parser);
2264
2265           goto convert_to_sals;
2266         }
2267     }
2268   else if (token.type != LSTOKEN_STRING && token.type != LSTOKEN_NUMBER)
2269     unexpected_linespec_error (parser);
2270
2271   /* Shortcut: If the next token is not LSTOKEN_COLON, we know that
2272      this token cannot represent a filename.  */
2273   token = linespec_lexer_peek_token (parser);
2274
2275   if (token.type == LSTOKEN_COLON)
2276     {
2277       char *user_filename;
2278
2279       /* Get the current token again and extract the filename.  */
2280       token = linespec_lexer_lex_one (parser);
2281       user_filename = copy_token_string (token);
2282
2283       /* Check if the input is a filename.  */
2284       TRY
2285         {
2286           PARSER_RESULT (parser)->file_symtabs
2287             = symtabs_from_filename (user_filename);
2288         }
2289       CATCH (ex, RETURN_MASK_ERROR)
2290         {
2291           file_exception = ex;
2292         }
2293       END_CATCH
2294
2295       if (file_exception.reason >= 0)
2296         {
2297           /* Symtabs were found for the file.  Record the filename.  */
2298           PARSER_EXPLICIT (parser)->source_filename = user_filename;
2299
2300           /* Get the next token.  */
2301           token = linespec_lexer_consume_token (parser);
2302
2303           /* This is LSTOKEN_COLON; consume it.  */
2304           linespec_lexer_consume_token (parser);
2305         }
2306       else
2307         {
2308           /* No symtabs found -- discard user_filename.  */
2309           xfree (user_filename);
2310
2311           /* A NULL entry means to use GLOBAL_DEFAULT_SYMTAB.  */
2312           VEC_safe_push (symtab_ptr, PARSER_RESULT (parser)->file_symtabs, NULL);
2313         }
2314     }
2315   /* If the next token is not EOI, KEYWORD, or COMMA, issue an error.  */
2316   else if (token.type != LSTOKEN_EOI && token.type != LSTOKEN_KEYWORD
2317            && token.type != LSTOKEN_COMMA)
2318     {
2319       /* TOKEN is the _next_ token, not the one currently in the parser.
2320          Consuming the token will give the correct error message.  */
2321       linespec_lexer_consume_token (parser);
2322       unexpected_linespec_error (parser);
2323     }
2324   else
2325     {
2326       /* A NULL entry means to use GLOBAL_DEFAULT_SYMTAB.  */
2327       VEC_safe_push (symtab_ptr, PARSER_RESULT (parser)->file_symtabs, NULL);
2328     }
2329
2330   /* Parse the rest of the linespec.  */
2331   linespec_parse_basic (parser);
2332
2333   if (PARSER_RESULT (parser)->function_symbols == NULL
2334       && PARSER_RESULT (parser)->labels.label_symbols == NULL
2335       && PARSER_EXPLICIT (parser)->line_offset.sign == LINE_OFFSET_UNKNOWN
2336       && PARSER_RESULT (parser)->minimal_symbols == NULL)
2337     {
2338       /* The linespec didn't parse.  Re-throw the file exception if
2339          there was one.  */
2340       if (file_exception.reason < 0)
2341         throw_exception (file_exception);
2342
2343       /* Otherwise, the symbol is not found.  */
2344       symbol_not_found_error (PARSER_EXPLICIT (parser)->function_name,
2345                               PARSER_EXPLICIT (parser)->source_filename);
2346     }
2347
2348  convert_to_sals:
2349
2350   /* Get the last token and record how much of the input was parsed,
2351      if necessary.  */
2352   token = linespec_lexer_lex_one (parser);
2353   if (token.type != LSTOKEN_EOI && token.type != LSTOKEN_KEYWORD)
2354     PARSER_STREAM (parser) = LS_TOKEN_STOKEN (token).ptr;
2355
2356   /* Convert the data in PARSER_RESULT to SALs.  */
2357   values = convert_linespec_to_sals (PARSER_STATE (parser),
2358                                      PARSER_RESULT (parser));
2359
2360   return values;
2361 }
2362
2363
2364 /* A constructor for linespec_state.  */
2365
2366 static void
2367 linespec_state_constructor (struct linespec_state *self,
2368                             int flags, const struct language_defn *language,
2369                             struct symtab *default_symtab,
2370                             int default_line,
2371                             struct linespec_result *canonical)
2372 {
2373   memset (self, 0, sizeof (*self));
2374   self->language = language;
2375   self->funfirstline = (flags & DECODE_LINE_FUNFIRSTLINE) ? 1 : 0;
2376   self->list_mode = (flags & DECODE_LINE_LIST_MODE) ? 1 : 0;
2377   self->default_symtab = default_symtab;
2378   self->default_line = default_line;
2379   self->canonical = canonical;
2380   self->program_space = current_program_space;
2381   self->addr_set = htab_create_alloc (10, hash_address_entry, eq_address_entry,
2382                                       xfree, xcalloc, xfree);
2383   self->is_linespec = 0;
2384 }
2385
2386 /* Initialize a new linespec parser.  */
2387
2388 static void
2389 linespec_parser_new (linespec_parser *parser,
2390                      int flags, const struct language_defn *language,
2391                      struct symtab *default_symtab,
2392                      int default_line,
2393                      struct linespec_result *canonical)
2394 {
2395   memset (parser, 0, sizeof (linespec_parser));
2396   parser->lexer.current.type = LSTOKEN_CONSUMED;
2397   memset (PARSER_RESULT (parser), 0, sizeof (struct linespec));
2398   PARSER_EXPLICIT (parser)->line_offset.sign = LINE_OFFSET_UNKNOWN;
2399   linespec_state_constructor (PARSER_STATE (parser), flags, language,
2400                               default_symtab, default_line, canonical);
2401 }
2402
2403 /* A destructor for linespec_state.  */
2404
2405 static void
2406 linespec_state_destructor (struct linespec_state *self)
2407 {
2408   htab_delete (self->addr_set);
2409 }
2410
2411 /* Delete a linespec parser.  */
2412
2413 static void
2414 linespec_parser_delete (void *arg)
2415 {
2416   linespec_parser *parser = (linespec_parser *) arg;
2417
2418   xfree (PARSER_EXPLICIT (parser)->source_filename);
2419   xfree (PARSER_EXPLICIT (parser)->label_name);
2420   xfree (PARSER_EXPLICIT (parser)->function_name);
2421
2422   if (PARSER_RESULT (parser)->file_symtabs != NULL)
2423     VEC_free (symtab_ptr, PARSER_RESULT (parser)->file_symtabs);
2424
2425   if (PARSER_RESULT (parser)->function_symbols != NULL)
2426     VEC_free (symbolp, PARSER_RESULT (parser)->function_symbols);
2427
2428   if (PARSER_RESULT (parser)->minimal_symbols != NULL)
2429     VEC_free (bound_minimal_symbol_d, PARSER_RESULT (parser)->minimal_symbols);
2430
2431   if (PARSER_RESULT (parser)->labels.label_symbols != NULL)
2432     VEC_free (symbolp, PARSER_RESULT (parser)->labels.label_symbols);
2433
2434   if (PARSER_RESULT (parser)->labels.function_symbols != NULL)
2435     VEC_free (symbolp, PARSER_RESULT (parser)->labels.function_symbols);
2436
2437   linespec_state_destructor (PARSER_STATE (parser));
2438 }
2439
2440 /* See description in linespec.h.  */
2441
2442 void
2443 linespec_lex_to_end (char **stringp)
2444 {
2445   linespec_parser parser;
2446   struct cleanup *cleanup;
2447   linespec_token token;
2448   const char *orig;
2449
2450   if (stringp == NULL || *stringp == NULL)
2451     return;
2452
2453   linespec_parser_new (&parser, 0, current_language, NULL, 0, NULL);
2454   cleanup = make_cleanup (linespec_parser_delete, &parser);
2455   parser.lexer.saved_arg = *stringp;
2456   PARSER_STREAM (&parser) = orig = *stringp;
2457
2458   do
2459     {
2460       /* Stop before any comma tokens;  we need it to keep it
2461          as the next token in the string.  */
2462       token = linespec_lexer_peek_token (&parser);
2463       if (token.type == LSTOKEN_COMMA)
2464         break;
2465       token = linespec_lexer_consume_token (&parser);
2466     }
2467   while (token.type != LSTOKEN_EOI && token.type != LSTOKEN_KEYWORD);
2468
2469   *stringp += PARSER_STREAM (&parser) - orig;
2470   do_cleanups (cleanup);
2471 }
2472
2473 /* A helper function for decode_line_full and decode_line_1 to
2474    turn LOCATION into symtabs_and_lines.  */
2475
2476 static struct symtabs_and_lines
2477 event_location_to_sals (linespec_parser *parser,
2478                         const struct event_location *location)
2479 {
2480   struct symtabs_and_lines result = {NULL, 0};
2481
2482   switch (event_location_type (location))
2483     {
2484     case LINESPEC_LOCATION:
2485       {
2486         PARSER_STATE (parser)->is_linespec = 1;
2487         TRY
2488           {
2489             result = parse_linespec (parser, get_linespec_location (location));
2490           }
2491         CATCH (except, RETURN_MASK_ERROR)
2492           {
2493             throw_exception (except);
2494           }
2495         END_CATCH
2496       }
2497       break;
2498
2499     case ADDRESS_LOCATION:
2500       result
2501         = convert_address_location_to_sals (PARSER_STATE (parser),
2502                                             get_address_location (location));
2503       break;
2504
2505     case EXPLICIT_LOCATION:
2506       {
2507         const struct explicit_location *explicit_loc;
2508
2509         explicit_loc = get_explicit_location_const (location);
2510         result = convert_explicit_location_to_sals (PARSER_STATE (parser),
2511                                                     PARSER_RESULT (parser),
2512                                                     explicit_loc);
2513       }
2514       break;
2515
2516     case PROBE_LOCATION:
2517       /* Probes are handled by their own decoders.  */
2518       gdb_assert_not_reached ("attempt to decode probe location");
2519       break;
2520
2521     default:
2522       gdb_assert_not_reached ("unhandled event location type");
2523     }
2524
2525   return result;
2526 }
2527
2528 /* See linespec.h.  */
2529
2530 void
2531 decode_line_full (const struct event_location *location, int flags,
2532                   struct symtab *default_symtab,
2533                   int default_line, struct linespec_result *canonical,
2534                   const char *select_mode,
2535                   const char *filter)
2536 {
2537   struct symtabs_and_lines result;
2538   struct cleanup *cleanups;
2539   VEC (const_char_ptr) *filters = NULL;
2540   linespec_parser parser;
2541   struct linespec_state *state;
2542
2543   gdb_assert (canonical != NULL);
2544   /* The filter only makes sense for 'all'.  */
2545   gdb_assert (filter == NULL || select_mode == multiple_symbols_all);
2546   gdb_assert (select_mode == NULL
2547               || select_mode == multiple_symbols_all
2548               || select_mode == multiple_symbols_ask
2549               || select_mode == multiple_symbols_cancel);
2550   gdb_assert ((flags & DECODE_LINE_LIST_MODE) == 0);
2551
2552   linespec_parser_new (&parser, flags, current_language, default_symtab,
2553                        default_line, canonical);
2554   cleanups = make_cleanup (linespec_parser_delete, &parser);
2555   save_current_program_space ();
2556
2557   result = event_location_to_sals (&parser, location);
2558   state = PARSER_STATE (&parser);
2559
2560   gdb_assert (result.nelts == 1 || canonical->pre_expanded);
2561   canonical->pre_expanded = 1;
2562
2563   /* Arrange for allocated canonical names to be freed.  */
2564   if (result.nelts > 0)
2565     {
2566       int i;
2567
2568       make_cleanup (xfree, state->canonical_names);
2569       for (i = 0; i < result.nelts; ++i)
2570         {
2571           gdb_assert (state->canonical_names[i].suffix != NULL);
2572           make_cleanup (xfree, state->canonical_names[i].suffix);
2573         }
2574     }
2575
2576   if (select_mode == NULL)
2577     {
2578       if (ui_out_is_mi_like_p (interp_ui_out (top_level_interpreter ())))
2579         select_mode = multiple_symbols_all;
2580       else
2581         select_mode = multiple_symbols_select_mode ();
2582     }
2583
2584   if (select_mode == multiple_symbols_all)
2585     {
2586       if (filter != NULL)
2587         {
2588           make_cleanup (VEC_cleanup (const_char_ptr), &filters);
2589           VEC_safe_push (const_char_ptr, filters, filter);
2590           filter_results (state, &result, filters);
2591         }
2592       else
2593         convert_results_to_lsals (state, &result);
2594     }
2595   else
2596     decode_line_2 (state, &result, select_mode);
2597
2598   do_cleanups (cleanups);
2599 }
2600
2601 /* See linespec.h.  */
2602
2603 struct symtabs_and_lines
2604 decode_line_1 (const struct event_location *location, int flags,
2605                struct symtab *default_symtab,
2606                int default_line)
2607 {
2608   struct symtabs_and_lines result;
2609   linespec_parser parser;
2610   struct cleanup *cleanups;
2611
2612   linespec_parser_new (&parser, flags, current_language, default_symtab,
2613                        default_line, NULL);
2614   cleanups = make_cleanup (linespec_parser_delete, &parser);
2615   save_current_program_space ();
2616
2617   result = event_location_to_sals (&parser, location);
2618
2619   do_cleanups (cleanups);
2620   return result;
2621 }
2622
2623 /* See linespec.h.  */
2624
2625 struct symtabs_and_lines
2626 decode_line_with_current_source (char *string, int flags)
2627 {
2628   struct symtabs_and_lines sals;
2629   struct symtab_and_line cursal;
2630   struct event_location *location;
2631   struct cleanup *cleanup;
2632
2633   if (string == 0)
2634     error (_("Empty line specification."));
2635
2636   /* We use whatever is set as the current source line.  We do not try
2637      and get a default source symtab+line or it will recursively call us!  */
2638   cursal = get_current_source_symtab_and_line ();
2639
2640   location = string_to_event_location (&string, current_language);
2641   cleanup = make_cleanup_delete_event_location (location);
2642   sals = decode_line_1 (location, flags,
2643                         cursal.symtab, cursal.line);
2644
2645   if (*string)
2646     error (_("Junk at end of line specification: %s"), string);
2647
2648   do_cleanups (cleanup);
2649   return sals;
2650 }
2651
2652 /* See linespec.h.  */
2653
2654 struct symtabs_and_lines
2655 decode_line_with_last_displayed (char *string, int flags)
2656 {
2657   struct symtabs_and_lines sals;
2658   struct event_location *location;
2659   struct cleanup *cleanup;
2660
2661   if (string == 0)
2662     error (_("Empty line specification."));
2663
2664   location = string_to_event_location (&string, current_language);
2665   cleanup = make_cleanup_delete_event_location (location);
2666   if (last_displayed_sal_is_valid ())
2667     sals = decode_line_1 (location, flags,
2668                           get_last_displayed_symtab (),
2669                           get_last_displayed_line ());
2670   else
2671     sals = decode_line_1 (location, flags, (struct symtab *) NULL, 0);
2672
2673   if (*string)
2674     error (_("Junk at end of line specification: %s"), string);
2675
2676   do_cleanups (cleanup);
2677   return sals;
2678 }
2679
2680 \f
2681
2682 /* First, some functions to initialize stuff at the beggining of the
2683    function.  */
2684
2685 static void
2686 initialize_defaults (struct symtab **default_symtab, int *default_line)
2687 {
2688   if (*default_symtab == 0)
2689     {
2690       /* Use whatever we have for the default source line.  We don't use
2691          get_current_or_default_symtab_and_line as it can recurse and call
2692          us back!  */
2693       struct symtab_and_line cursal = 
2694         get_current_source_symtab_and_line ();
2695       
2696       *default_symtab = cursal.symtab;
2697       *default_line = cursal.line;
2698     }
2699 }
2700
2701 \f
2702
2703 /* Evaluate the expression pointed to by EXP_PTR into a CORE_ADDR,
2704    advancing EXP_PTR past any parsed text.  */
2705
2706 CORE_ADDR
2707 linespec_expression_to_pc (const char **exp_ptr)
2708 {
2709   if (current_program_space->executing_startup)
2710     /* The error message doesn't really matter, because this case
2711        should only hit during breakpoint reset.  */
2712     throw_error (NOT_FOUND_ERROR, _("cannot evaluate expressions while "
2713                                     "program space is in startup"));
2714
2715   (*exp_ptr)++;
2716   return value_as_address (parse_to_comma_and_eval (exp_ptr));
2717 }
2718
2719 \f
2720
2721 /* Here's where we recognise an Objective-C Selector.  An Objective C
2722    selector may be implemented by more than one class, therefore it
2723    may represent more than one method/function.  This gives us a
2724    situation somewhat analogous to C++ overloading.  If there's more
2725    than one method that could represent the selector, then use some of
2726    the existing C++ code to let the user choose one.  */
2727
2728 static struct symtabs_and_lines
2729 decode_objc (struct linespec_state *self, linespec_p ls, const char *arg)
2730 {
2731   struct collect_info info;
2732   VEC (const_char_ptr) *symbol_names = NULL;
2733   struct symtabs_and_lines values;
2734   const char *new_argptr;
2735   struct cleanup *cleanup = make_cleanup (VEC_cleanup (const_char_ptr),
2736                                           &symbol_names);
2737
2738   info.state = self;
2739   info.file_symtabs = NULL;
2740   VEC_safe_push (symtab_ptr, info.file_symtabs, NULL);
2741   make_cleanup (VEC_cleanup (symtab_ptr), &info.file_symtabs);
2742   info.result.symbols = NULL;
2743   info.result.minimal_symbols = NULL;
2744   values.nelts = 0;
2745   values.sals = NULL;
2746
2747   new_argptr = find_imps (arg, &symbol_names);
2748   if (VEC_empty (const_char_ptr, symbol_names))
2749     {
2750       do_cleanups (cleanup);
2751       return values;
2752     }
2753
2754   add_all_symbol_names_from_pspace (&info, NULL, symbol_names);
2755
2756   if (!VEC_empty (symbolp, info.result.symbols)
2757       || !VEC_empty (bound_minimal_symbol_d, info.result.minimal_symbols))
2758     {
2759       char *saved_arg;
2760
2761       saved_arg = alloca (new_argptr - arg + 1);
2762       memcpy (saved_arg, arg, new_argptr - arg);
2763       saved_arg[new_argptr - arg] = '\0';
2764
2765       ls->explicit_loc.function_name = xstrdup (saved_arg);
2766       ls->function_symbols = info.result.symbols;
2767       ls->minimal_symbols = info.result.minimal_symbols;
2768       values = convert_linespec_to_sals (self, ls);
2769
2770       if (self->canonical)
2771         {
2772           char *str;
2773
2774           self->canonical->pre_expanded = 1;
2775
2776           if (ls->explicit_loc.source_filename)
2777             {
2778               str = xstrprintf ("%s:%s",
2779                                 ls->explicit_loc.source_filename, saved_arg);
2780             }
2781           else
2782             str = xstrdup (saved_arg);
2783
2784           make_cleanup (xfree, str);
2785           self->canonical->location = new_linespec_location (&str);
2786         }
2787     }
2788
2789   do_cleanups (cleanup);
2790
2791   return values;
2792 }
2793
2794 /* An instance of this type is used when collecting prefix symbols for
2795    decode_compound.  */
2796
2797 struct decode_compound_collector
2798 {
2799   /* The result vector.  */
2800   VEC (symbolp) *symbols;
2801
2802   /* A hash table of all symbols we found.  We use this to avoid
2803      adding any symbol more than once.  */
2804   htab_t unique_syms;
2805 };
2806
2807 /* A callback for iterate_over_symbols that is used by
2808    lookup_prefix_sym to collect type symbols.  */
2809
2810 static int
2811 collect_one_symbol (struct symbol *sym, void *d)
2812 {
2813   struct decode_compound_collector *collector = d;
2814   void **slot;
2815   struct type *t;
2816
2817   if (SYMBOL_CLASS (sym) != LOC_TYPEDEF)
2818     return 1; /* Continue iterating.  */
2819
2820   t = SYMBOL_TYPE (sym);
2821   t = check_typedef (t);
2822   if (TYPE_CODE (t) != TYPE_CODE_STRUCT
2823       && TYPE_CODE (t) != TYPE_CODE_UNION
2824       && TYPE_CODE (t) != TYPE_CODE_NAMESPACE)
2825     return 1; /* Continue iterating.  */
2826
2827   slot = htab_find_slot (collector->unique_syms, sym, INSERT);
2828   if (!*slot)
2829     {
2830       *slot = sym;
2831       VEC_safe_push (symbolp, collector->symbols, sym);
2832     }
2833
2834   return 1; /* Continue iterating.  */
2835 }
2836
2837 /* Return any symbols corresponding to CLASS_NAME in FILE_SYMTABS.  */
2838
2839 static VEC (symbolp) *
2840 lookup_prefix_sym (struct linespec_state *state, VEC (symtab_ptr) *file_symtabs,
2841                    const char *class_name)
2842 {
2843   int ix;
2844   struct symtab *elt;
2845   struct decode_compound_collector collector;
2846   struct cleanup *outer;
2847   struct cleanup *cleanup;
2848
2849   collector.symbols = NULL;
2850   outer = make_cleanup (VEC_cleanup (symbolp), &collector.symbols);
2851
2852   collector.unique_syms = htab_create_alloc (1, htab_hash_pointer,
2853                                              htab_eq_pointer, NULL,
2854                                              xcalloc, xfree);
2855   cleanup = make_cleanup_htab_delete (collector.unique_syms);
2856
2857   for (ix = 0; VEC_iterate (symtab_ptr, file_symtabs, ix, elt); ++ix)
2858     {
2859       if (elt == NULL)
2860         {
2861           iterate_over_all_matching_symtabs (state, class_name, STRUCT_DOMAIN,
2862                                              collect_one_symbol, &collector,
2863                                              NULL, 0);
2864           iterate_over_all_matching_symtabs (state, class_name, VAR_DOMAIN,
2865                                              collect_one_symbol, &collector,
2866                                              NULL, 0);
2867         }
2868       else
2869         {
2870           /* Program spaces that are executing startup should have
2871              been filtered out earlier.  */
2872           gdb_assert (!SYMTAB_PSPACE (elt)->executing_startup);
2873           set_current_program_space (SYMTAB_PSPACE (elt));
2874           iterate_over_file_blocks (elt, class_name, STRUCT_DOMAIN,
2875                                     collect_one_symbol, &collector);
2876           iterate_over_file_blocks (elt, class_name, VAR_DOMAIN,
2877                                     collect_one_symbol, &collector);
2878         }
2879     }
2880
2881   do_cleanups (cleanup);
2882   discard_cleanups (outer);
2883   return collector.symbols;
2884 }
2885
2886 /* A qsort comparison function for symbols.  The resulting order does
2887    not actually matter; we just need to be able to sort them so that
2888    symbols with the same program space end up next to each other.  */
2889
2890 static int
2891 compare_symbols (const void *a, const void *b)
2892 {
2893   struct symbol * const *sa = a;
2894   struct symbol * const *sb = b;
2895   uintptr_t uia, uib;
2896
2897   uia = (uintptr_t) SYMTAB_PSPACE (symbol_symtab (*sa));
2898   uib = (uintptr_t) SYMTAB_PSPACE (symbol_symtab (*sb));
2899
2900   if (uia < uib)
2901     return -1;
2902   if (uia > uib)
2903     return 1;
2904
2905   uia = (uintptr_t) *sa;
2906   uib = (uintptr_t) *sb;
2907
2908   if (uia < uib)
2909     return -1;
2910   if (uia > uib)
2911     return 1;
2912
2913   return 0;
2914 }
2915
2916 /* Like compare_symbols but for minimal symbols.  */
2917
2918 static int
2919 compare_msymbols (const void *a, const void *b)
2920 {
2921   const struct bound_minimal_symbol *sa = a;
2922   const struct bound_minimal_symbol *sb = b;
2923   uintptr_t uia, uib;
2924
2925   uia = (uintptr_t) sa->objfile->pspace;
2926   uib = (uintptr_t) sa->objfile->pspace;
2927
2928   if (uia < uib)
2929     return -1;
2930   if (uia > uib)
2931     return 1;
2932
2933   uia = (uintptr_t) sa->minsym;
2934   uib = (uintptr_t) sb->minsym;
2935
2936   if (uia < uib)
2937     return -1;
2938   if (uia > uib)
2939     return 1;
2940
2941   return 0;
2942 }
2943
2944 /* Look for all the matching instances of each symbol in NAMES.  Only
2945    instances from PSPACE are considered; other program spaces are
2946    handled by our caller.  If PSPACE is NULL, then all program spaces
2947    are considered.  Results are stored into INFO.  */
2948
2949 static void
2950 add_all_symbol_names_from_pspace (struct collect_info *info,
2951                                   struct program_space *pspace,
2952                                   VEC (const_char_ptr) *names)
2953 {
2954   int ix;
2955   const char *iter;
2956
2957   for (ix = 0; VEC_iterate (const_char_ptr, names, ix, iter); ++ix)
2958     add_matching_symbols_to_info (iter, info, pspace);
2959 }
2960
2961 static void
2962 find_superclass_methods (VEC (typep) *superclasses,
2963                          const char *name,
2964                          VEC (const_char_ptr) **result_names)
2965 {
2966   int old_len = VEC_length (const_char_ptr, *result_names);
2967   VEC (typep) *iter_classes;
2968   struct cleanup *cleanup = make_cleanup (null_cleanup, NULL);
2969
2970   iter_classes = superclasses;
2971   while (1)
2972     {
2973       VEC (typep) *new_supers = NULL;
2974       int ix;
2975       struct type *t;
2976
2977       make_cleanup (VEC_cleanup (typep), &new_supers);
2978       for (ix = 0; VEC_iterate (typep, iter_classes, ix, t); ++ix)
2979         find_methods (t, name, result_names, &new_supers);
2980
2981       if (VEC_length (const_char_ptr, *result_names) != old_len
2982           || VEC_empty (typep, new_supers))
2983         break;
2984
2985       iter_classes = new_supers;
2986     }
2987
2988   do_cleanups (cleanup);
2989 }
2990
2991 /* This finds the method METHOD_NAME in the class CLASS_NAME whose type is
2992    given by one of the symbols in SYM_CLASSES.  Matches are returned
2993    in SYMBOLS (for debug symbols) and MINSYMS (for minimal symbols).  */
2994
2995 static void
2996 find_method (struct linespec_state *self, VEC (symtab_ptr) *file_symtabs,
2997              const char *class_name, const char *method_name,
2998              VEC (symbolp) *sym_classes, VEC (symbolp) **symbols,
2999              VEC (bound_minimal_symbol_d) **minsyms)
3000 {
3001   struct symbol *sym;
3002   struct cleanup *cleanup = make_cleanup (null_cleanup, NULL);
3003   int ix;
3004   int last_result_len;
3005   VEC (typep) *superclass_vec;
3006   VEC (const_char_ptr) *result_names;
3007   struct collect_info info;
3008
3009   /* Sort symbols so that symbols with the same program space are next
3010      to each other.  */
3011   qsort (VEC_address (symbolp, sym_classes),
3012          VEC_length (symbolp, sym_classes),
3013          sizeof (symbolp),
3014          compare_symbols);
3015
3016   info.state = self;
3017   info.file_symtabs = file_symtabs;
3018   info.result.symbols = NULL;
3019   info.result.minimal_symbols = NULL;
3020
3021   /* Iterate over all the types, looking for the names of existing
3022      methods matching METHOD_NAME.  If we cannot find a direct method in a
3023      given program space, then we consider inherited methods; this is
3024      not ideal (ideal would be to respect C++ hiding rules), but it
3025      seems good enough and is what GDB has historically done.  We only
3026      need to collect the names because later we find all symbols with
3027      those names.  This loop is written in a somewhat funny way
3028      because we collect data across the program space before deciding
3029      what to do.  */
3030   superclass_vec = NULL;
3031   make_cleanup (VEC_cleanup (typep), &superclass_vec);
3032   result_names = NULL;
3033   make_cleanup (VEC_cleanup (const_char_ptr), &result_names);
3034   last_result_len = 0;
3035   for (ix = 0; VEC_iterate (symbolp, sym_classes, ix, sym); ++ix)
3036     {
3037       struct type *t;
3038       struct program_space *pspace;
3039
3040       /* Program spaces that are executing startup should have
3041          been filtered out earlier.  */
3042       pspace = SYMTAB_PSPACE (symbol_symtab (sym));
3043       gdb_assert (!pspace->executing_startup);
3044       set_current_program_space (pspace);
3045       t = check_typedef (SYMBOL_TYPE (sym));
3046       find_methods (t, method_name, &result_names, &superclass_vec);
3047
3048       /* Handle all items from a single program space at once; and be
3049          sure not to miss the last batch.  */
3050       if (ix == VEC_length (symbolp, sym_classes) - 1
3051           || (pspace
3052               != SYMTAB_PSPACE (symbol_symtab (VEC_index (symbolp, sym_classes,
3053                                                           ix + 1)))))
3054         {
3055           /* If we did not find a direct implementation anywhere in
3056              this program space, consider superclasses.  */
3057           if (VEC_length (const_char_ptr, result_names) == last_result_len)
3058             find_superclass_methods (superclass_vec, method_name,
3059                                      &result_names);
3060
3061           /* We have a list of candidate symbol names, so now we
3062              iterate over the symbol tables looking for all
3063              matches in this pspace.  */
3064           add_all_symbol_names_from_pspace (&info, pspace, result_names);
3065
3066           VEC_truncate (typep, superclass_vec, 0);
3067           last_result_len = VEC_length (const_char_ptr, result_names);
3068         }
3069     }
3070
3071   if (!VEC_empty (symbolp, info.result.symbols)
3072       || !VEC_empty (bound_minimal_symbol_d, info.result.minimal_symbols))
3073     {
3074       *symbols = info.result.symbols;
3075       *minsyms = info.result.minimal_symbols;
3076       do_cleanups (cleanup);
3077       return;
3078     }
3079
3080   /* Throw an NOT_FOUND_ERROR.  This will be caught by the caller
3081      and other attempts to locate the symbol will be made.  */
3082   throw_error (NOT_FOUND_ERROR, _("see caller, this text doesn't matter"));
3083 }
3084
3085 \f
3086
3087 /* This object is used when collecting all matching symtabs.  */
3088
3089 struct symtab_collector
3090 {
3091   /* The result vector of symtabs.  */
3092   VEC (symtab_ptr) *symtabs;
3093
3094   /* This is used to ensure the symtabs are unique.  */
3095   htab_t symtab_table;
3096 };
3097
3098 /* Callback for iterate_over_symtabs.  */
3099
3100 static int
3101 add_symtabs_to_list (struct symtab *symtab, void *d)
3102 {
3103   struct symtab_collector *data = d;
3104   void **slot;
3105
3106   slot = htab_find_slot (data->symtab_table, symtab, INSERT);
3107   if (!*slot)
3108     {
3109       *slot = symtab;
3110       VEC_safe_push (symtab_ptr, data->symtabs, symtab);
3111     }
3112
3113   return 0;
3114 }
3115
3116 /* Given a file name, return a VEC of all matching symtabs.  */
3117
3118 static VEC (symtab_ptr) *
3119 collect_symtabs_from_filename (const char *file)
3120 {
3121   struct symtab_collector collector;
3122   struct cleanup *cleanups;
3123   struct program_space *pspace;
3124
3125   collector.symtabs = NULL;
3126   collector.symtab_table = htab_create (1, htab_hash_pointer, htab_eq_pointer,
3127                                         NULL);
3128   cleanups = make_cleanup_htab_delete (collector.symtab_table);
3129
3130   /* Find that file's data.  */
3131   ALL_PSPACES (pspace)
3132   {
3133     if (pspace->executing_startup)
3134       continue;
3135
3136     set_current_program_space (pspace);
3137     iterate_over_symtabs (file, add_symtabs_to_list, &collector);
3138   }
3139
3140   do_cleanups (cleanups);
3141   return collector.symtabs;
3142 }
3143
3144 /* Return all the symtabs associated to the FILENAME.  */
3145
3146 static VEC (symtab_ptr) *
3147 symtabs_from_filename (const char *filename)
3148 {
3149   VEC (symtab_ptr) *result;
3150   
3151   result = collect_symtabs_from_filename (filename);
3152
3153   if (VEC_empty (symtab_ptr, result))
3154     {
3155       if (!have_full_symbols () && !have_partial_symbols ())
3156         throw_error (NOT_FOUND_ERROR,
3157                      _("No symbol table is loaded.  "
3158                        "Use the \"file\" command."));
3159       source_file_not_found_error (filename);
3160     }
3161
3162   return result;
3163 }
3164
3165 /* Look up a function symbol named NAME in symtabs FILE_SYMTABS.  Matching
3166    debug symbols are returned in SYMBOLS.  Matching minimal symbols are
3167    returned in MINSYMS.  */
3168
3169 static void
3170 find_function_symbols (struct linespec_state *state,
3171                        VEC (symtab_ptr) *file_symtabs, const char *name,
3172                        VEC (symbolp) **symbols,
3173                        VEC (bound_minimal_symbol_d) **minsyms)
3174 {
3175   struct collect_info info;
3176   VEC (const_char_ptr) *symbol_names = NULL;
3177   struct cleanup *cleanup = make_cleanup (VEC_cleanup (const_char_ptr),
3178                                           &symbol_names);
3179
3180   info.state = state;
3181   info.result.symbols = NULL;
3182   info.result.minimal_symbols = NULL;
3183   info.file_symtabs = file_symtabs;
3184
3185   /* Try NAME as an Objective-C selector.  */
3186   find_imps (name, &symbol_names);
3187   if (!VEC_empty (const_char_ptr, symbol_names))
3188     add_all_symbol_names_from_pspace (&info, NULL, symbol_names);
3189   else
3190     add_matching_symbols_to_info (name, &info, NULL);
3191
3192   do_cleanups (cleanup);
3193
3194   if (VEC_empty (symbolp, info.result.symbols))
3195     {
3196       VEC_free (symbolp, info.result.symbols);
3197       *symbols = NULL;
3198     }
3199   else
3200     *symbols = info.result.symbols;
3201
3202   if (VEC_empty (bound_minimal_symbol_d, info.result.minimal_symbols))
3203     {
3204       VEC_free (bound_minimal_symbol_d, info.result.minimal_symbols);
3205       *minsyms = NULL;
3206     }
3207   else
3208     *minsyms = info.result.minimal_symbols;
3209 }
3210
3211 /* Find all symbols named NAME in FILE_SYMTABS, returning debug symbols
3212    in SYMBOLS and minimal symbols in MINSYMS.  */
3213
3214 static void
3215 find_linespec_symbols (struct linespec_state *state,
3216                        VEC (symtab_ptr) *file_symtabs,
3217                        const char *name,
3218                        VEC (symbolp) **symbols,
3219                        VEC (bound_minimal_symbol_d) **minsyms)
3220 {
3221   struct cleanup *cleanup;
3222   char *canon;
3223   const char *lookup_name;
3224
3225   cleanup = demangle_for_lookup (name, state->language->la_language,
3226                                  &lookup_name);
3227   if (state->language->la_language == language_ada)
3228     {
3229       /* In Ada, the symbol lookups are performed using the encoded
3230          name rather than the demangled name.  */
3231       lookup_name = ada_name_for_lookup (name);
3232       make_cleanup (xfree, (void *) lookup_name);
3233     }
3234
3235   canon = cp_canonicalize_string_no_typedefs (lookup_name);
3236   if (canon != NULL)
3237     {
3238       lookup_name = canon;
3239       make_cleanup (xfree, canon);
3240     }
3241
3242   /* It's important to not call expand_symtabs_matching unnecessarily
3243      as it can really slow things down (by unnecessarily expanding
3244      potentially 1000s of symtabs, which when debugging some apps can
3245      cost 100s of seconds).  Avoid this to some extent by *first* calling
3246      find_function_symbols, and only if that doesn't find anything
3247      *then* call find_method.  This handles two important cases:
3248      1) break (anonymous namespace)::foo
3249      2) break class::method where method is in class (and not a baseclass)  */
3250
3251   find_function_symbols (state, file_symtabs, lookup_name,
3252                          symbols, minsyms);
3253
3254   /* If we were unable to locate a symbol of the same name, try dividing
3255      the name into class and method names and searching the class and its
3256      baseclasses.  */
3257   if (VEC_empty (symbolp, *symbols)
3258       && VEC_empty (bound_minimal_symbol_d, *minsyms))
3259     {
3260       char *klass, *method;
3261       const char *last, *p, *scope_op;
3262       VEC (symbolp) *classes;
3263
3264       /* See if we can find a scope operator and break this symbol
3265          name into namespaces${SCOPE_OPERATOR}class_name and method_name.  */
3266       scope_op = "::";
3267       p = find_toplevel_string (lookup_name, scope_op);
3268       if (p == NULL)
3269         {
3270           /* No C++ scope operator.  Try Java.  */
3271           scope_op = ".";
3272           p = find_toplevel_string (lookup_name, scope_op);
3273         }
3274
3275       last = NULL;
3276       while (p != NULL)
3277         {
3278           last = p;
3279           p = find_toplevel_string (p + strlen (scope_op), scope_op);
3280         }
3281
3282       /* If no scope operator was found, there is nothing more we can do;
3283          we already attempted to lookup the entire name as a symbol
3284          and failed.  */
3285       if (last == NULL)
3286         {
3287           do_cleanups (cleanup);
3288           return;
3289         }
3290
3291       /* LOOKUP_NAME points to the class name.
3292          LAST points to the method name.  */
3293       klass = xmalloc ((last - lookup_name + 1) * sizeof (char));
3294       make_cleanup (xfree, klass);
3295       strncpy (klass, lookup_name, last - lookup_name);
3296       klass[last - lookup_name] = '\0';
3297
3298       /* Skip past the scope operator.  */
3299       last += strlen (scope_op);
3300       method = xmalloc ((strlen (last) + 1) * sizeof (char));
3301       make_cleanup (xfree, method);
3302       strcpy (method, last);
3303
3304       /* Find a list of classes named KLASS.  */
3305       classes = lookup_prefix_sym (state, file_symtabs, klass);
3306       make_cleanup (VEC_cleanup (symbolp), &classes);
3307
3308       if (!VEC_empty (symbolp, classes))
3309         {
3310           /* Now locate a list of suitable methods named METHOD.  */
3311           TRY
3312             {
3313               find_method (state, file_symtabs, klass, method, classes,
3314                            symbols, minsyms);
3315             }
3316
3317           /* If successful, we're done.  If NOT_FOUND_ERROR
3318              was not thrown, rethrow the exception that we did get.  */
3319           CATCH (except, RETURN_MASK_ERROR)
3320             {
3321               if (except.error != NOT_FOUND_ERROR)
3322                 throw_exception (except);
3323             }
3324           END_CATCH
3325         }
3326     }
3327
3328   do_cleanups (cleanup);
3329 }
3330
3331 /* Return all labels named NAME in FUNCTION_SYMBOLS.  Return the
3332    actual function symbol in which the label was found in LABEL_FUNC_RET.  */
3333
3334 static VEC (symbolp) *
3335 find_label_symbols (struct linespec_state *self,
3336                     VEC (symbolp) *function_symbols,
3337                     VEC (symbolp) **label_funcs_ret, const char *name)
3338 {
3339   int ix;
3340   const struct block *block;
3341   struct symbol *sym;
3342   struct symbol *fn_sym;
3343   VEC (symbolp) *result = NULL;
3344
3345   if (function_symbols == NULL)
3346     {
3347       set_current_program_space (self->program_space);
3348       block = get_current_search_block ();
3349
3350       for (;
3351            block && !BLOCK_FUNCTION (block);
3352            block = BLOCK_SUPERBLOCK (block))
3353         ;
3354       if (!block)
3355         return NULL;
3356       fn_sym = BLOCK_FUNCTION (block);
3357
3358       sym = lookup_symbol (name, block, LABEL_DOMAIN, 0).symbol;
3359
3360       if (sym != NULL)
3361         {
3362           VEC_safe_push (symbolp, result, sym);
3363           VEC_safe_push (symbolp, *label_funcs_ret, fn_sym);
3364         }
3365     }
3366   else
3367     {
3368       for (ix = 0;
3369            VEC_iterate (symbolp, function_symbols, ix, fn_sym); ++ix)
3370         {
3371           set_current_program_space (SYMTAB_PSPACE (symbol_symtab (fn_sym)));
3372           block = SYMBOL_BLOCK_VALUE (fn_sym);
3373           sym = lookup_symbol (name, block, LABEL_DOMAIN, 0).symbol;
3374
3375           if (sym != NULL)
3376             {
3377               VEC_safe_push (symbolp, result, sym);
3378               VEC_safe_push (symbolp, *label_funcs_ret, fn_sym);
3379             }
3380         }
3381     }
3382
3383   return result;
3384 }
3385
3386 \f
3387
3388 /* A helper for create_sals_line_offset that handles the 'list_mode' case.  */
3389
3390 static void
3391 decode_digits_list_mode (struct linespec_state *self,
3392                          linespec_p ls,
3393                          struct symtabs_and_lines *values,
3394                          struct symtab_and_line val)
3395 {
3396   int ix;
3397   struct symtab *elt;
3398
3399   gdb_assert (self->list_mode);
3400
3401   for (ix = 0; VEC_iterate (symtab_ptr, ls->file_symtabs, ix, elt);
3402        ++ix)
3403     {
3404       /* The logic above should ensure this.  */
3405       gdb_assert (elt != NULL);
3406
3407       set_current_program_space (SYMTAB_PSPACE (elt));
3408
3409       /* Simplistic search just for the list command.  */
3410       val.symtab = find_line_symtab (elt, val.line, NULL, NULL);
3411       if (val.symtab == NULL)
3412         val.symtab = elt;
3413       val.pspace = SYMTAB_PSPACE (elt);
3414       val.pc = 0;
3415       val.explicit_line = 1;
3416
3417       add_sal_to_sals (self, values, &val, NULL, 0);
3418     }
3419 }
3420
3421 /* A helper for create_sals_line_offset that iterates over the symtabs,
3422    adding lines to the VEC.  */
3423
3424 static void
3425 decode_digits_ordinary (struct linespec_state *self,
3426                         linespec_p ls,
3427                         int line,
3428                         struct symtabs_and_lines *sals,
3429                         struct linetable_entry **best_entry)
3430 {
3431   int ix;
3432   struct symtab *elt;
3433
3434   for (ix = 0; VEC_iterate (symtab_ptr, ls->file_symtabs, ix, elt); ++ix)
3435     {
3436       int i;
3437       VEC (CORE_ADDR) *pcs;
3438       CORE_ADDR pc;
3439
3440       /* The logic above should ensure this.  */
3441       gdb_assert (elt != NULL);
3442
3443       set_current_program_space (SYMTAB_PSPACE (elt));
3444
3445       pcs = find_pcs_for_symtab_line (elt, line, best_entry);
3446       for (i = 0; VEC_iterate (CORE_ADDR, pcs, i, pc); ++i)
3447         {
3448           struct symtab_and_line sal;
3449
3450           init_sal (&sal);
3451           sal.pspace = SYMTAB_PSPACE (elt);
3452           sal.symtab = elt;
3453           sal.line = line;
3454           sal.pc = pc;
3455           add_sal_to_sals_basic (sals, &sal);
3456         }
3457
3458       VEC_free (CORE_ADDR, pcs);
3459     }
3460 }
3461
3462 \f
3463
3464 /* Return the line offset represented by VARIABLE.  */
3465
3466 static struct line_offset
3467 linespec_parse_variable (struct linespec_state *self, const char *variable)
3468 {
3469   int index = 0;
3470   const char *p;
3471   struct line_offset offset = {0, LINE_OFFSET_NONE};
3472
3473   p = (variable[1] == '$') ? variable + 2 : variable + 1;
3474   if (*p == '$')
3475     ++p;
3476   while (*p >= '0' && *p <= '9')
3477     ++p;
3478   if (!*p)              /* Reached end of token without hitting non-digit.  */
3479     {
3480       /* We have a value history reference.  */
3481       struct value *val_history;
3482
3483       sscanf ((variable[1] == '$') ? variable + 2 : variable + 1, "%d", &index);
3484       val_history
3485         = access_value_history ((variable[1] == '$') ? -index : index);
3486       if (TYPE_CODE (value_type (val_history)) != TYPE_CODE_INT)
3487         error (_("History values used in line "
3488                  "specs must have integer values."));
3489       offset.offset = value_as_long (val_history);
3490     }
3491   else
3492     {
3493       /* Not all digits -- may be user variable/function or a
3494          convenience variable.  */
3495       LONGEST valx;
3496       struct internalvar *ivar;
3497
3498       /* Try it as a convenience variable.  If it is not a convenience
3499          variable, return and allow normal symbol lookup to occur.  */
3500       ivar = lookup_only_internalvar (variable + 1);
3501       if (ivar == NULL)
3502         /* No internal variable with that name.  Mark the offset
3503            as unknown to allow the name to be looked up as a symbol.  */
3504         offset.sign = LINE_OFFSET_UNKNOWN;
3505       else
3506         {
3507           /* We found a valid variable name.  If it is not an integer,
3508              throw an error.  */
3509           if (!get_internalvar_integer (ivar, &valx))
3510             error (_("Convenience variables used in line "
3511                      "specs must have integer values."));
3512           else
3513             offset.offset = valx;
3514         }
3515     }
3516
3517   return offset;
3518 }
3519 \f
3520
3521 /* A callback used to possibly add a symbol to the results.  */
3522
3523 static int
3524 collect_symbols (struct symbol *sym, void *data)
3525 {
3526   struct collect_info *info = data;
3527
3528   /* In list mode, add all matching symbols, regardless of class.
3529      This allows the user to type "list a_global_variable".  */
3530   if (SYMBOL_CLASS (sym) == LOC_BLOCK || info->state->list_mode)
3531     VEC_safe_push (symbolp, info->result.symbols, sym);
3532   return 1; /* Continue iterating.  */
3533 }
3534
3535 /* We've found a minimal symbol MSYMBOL in OBJFILE to associate with our
3536    linespec; return the SAL in RESULT.  This function should return SALs
3537    matching those from find_function_start_sal, otherwise false
3538    multiple-locations breakpoints could be placed.  */
3539
3540 static void
3541 minsym_found (struct linespec_state *self, struct objfile *objfile,
3542               struct minimal_symbol *msymbol,
3543               struct symtabs_and_lines *result)
3544 {
3545   struct gdbarch *gdbarch = get_objfile_arch (objfile);
3546   CORE_ADDR pc;
3547   struct symtab_and_line sal;
3548
3549   sal = find_pc_sect_line (MSYMBOL_VALUE_ADDRESS (objfile, msymbol),
3550                            (struct obj_section *) 0, 0);
3551   sal.section = MSYMBOL_OBJ_SECTION (objfile, msymbol);
3552
3553   /* The minimal symbol might point to a function descriptor;
3554      resolve it to the actual code address instead.  */
3555   pc = gdbarch_convert_from_func_ptr_addr (gdbarch, sal.pc, &current_target);
3556   if (pc != sal.pc)
3557     sal = find_pc_sect_line (pc, NULL, 0);
3558
3559   if (self->funfirstline)
3560     {
3561       if (sal.symtab != NULL
3562           && (COMPUNIT_LOCATIONS_VALID (SYMTAB_COMPUNIT (sal.symtab))
3563               || SYMTAB_LANGUAGE (sal.symtab) == language_asm))
3564         {
3565           /* If gdbarch_convert_from_func_ptr_addr does not apply then
3566              sal.SECTION, sal.LINE&co. will stay correct from above.
3567              If gdbarch_convert_from_func_ptr_addr applies then
3568              sal.SECTION is cleared from above and sal.LINE&co. will
3569              stay correct from the last find_pc_sect_line above.  */
3570           sal.pc = MSYMBOL_VALUE_ADDRESS (objfile, msymbol);
3571           sal.pc = gdbarch_convert_from_func_ptr_addr (gdbarch, sal.pc,
3572                                                        &current_target);
3573           if (gdbarch_skip_entrypoint_p (gdbarch))
3574             sal.pc = gdbarch_skip_entrypoint (gdbarch, sal.pc);
3575         }
3576       else
3577         skip_prologue_sal (&sal);
3578     }
3579
3580   if (maybe_add_address (self->addr_set, objfile->pspace, sal.pc))
3581     add_sal_to_sals (self, result, &sal, MSYMBOL_NATURAL_NAME (msymbol), 0);
3582 }
3583
3584 /* A helper struct to pass some data through
3585    iterate_over_minimal_symbols.  */
3586
3587 struct collect_minsyms
3588 {
3589   /* The objfile we're examining.  */
3590   struct objfile *objfile;
3591
3592   /* Only search the given symtab, or NULL to search for all symbols.  */
3593   struct symtab *symtab;
3594
3595   /* The funfirstline setting from the initial call.  */
3596   int funfirstline;
3597
3598   /* The list_mode setting from the initial call.  */
3599   int list_mode;
3600
3601   /* The resulting symbols.  */
3602   VEC (bound_minimal_symbol_d) *msyms;
3603 };
3604
3605 /* A helper function to classify a minimal_symbol_type according to
3606    priority.  */
3607
3608 static int
3609 classify_mtype (enum minimal_symbol_type t)
3610 {
3611   switch (t)
3612     {
3613     case mst_file_text:
3614     case mst_file_data:
3615     case mst_file_bss:
3616       /* Intermediate priority.  */
3617       return 1;
3618
3619     case mst_solib_trampoline:
3620       /* Lowest priority.  */
3621       return 2;
3622
3623     default:
3624       /* Highest priority.  */
3625       return 0;
3626     }
3627 }
3628
3629 /* Callback for qsort that sorts symbols by priority.  */
3630
3631 static int
3632 compare_msyms (const void *a, const void *b)
3633 {
3634   const bound_minimal_symbol_d *moa = a;
3635   const bound_minimal_symbol_d *mob = b;
3636   enum minimal_symbol_type ta = MSYMBOL_TYPE (moa->minsym);
3637   enum minimal_symbol_type tb = MSYMBOL_TYPE (mob->minsym);
3638
3639   return classify_mtype (ta) - classify_mtype (tb);
3640 }
3641
3642 /* Callback for iterate_over_minimal_symbols that adds the symbol to
3643    the result.  */
3644
3645 static void
3646 add_minsym (struct minimal_symbol *minsym, void *d)
3647 {
3648   struct collect_minsyms *info = d;
3649   bound_minimal_symbol_d mo;
3650
3651   mo.minsym = minsym;
3652   mo.objfile = info->objfile;
3653
3654   if (info->symtab != NULL)
3655     {
3656       CORE_ADDR pc;
3657       struct symtab_and_line sal;
3658       struct gdbarch *gdbarch = get_objfile_arch (info->objfile);
3659
3660       sal = find_pc_sect_line (MSYMBOL_VALUE_ADDRESS (info->objfile, minsym),
3661                                NULL, 0);
3662       sal.section = MSYMBOL_OBJ_SECTION (info->objfile, minsym);
3663       pc
3664         = gdbarch_convert_from_func_ptr_addr (gdbarch, sal.pc, &current_target);
3665       if (pc != sal.pc)
3666         sal = find_pc_sect_line (pc, NULL, 0);
3667
3668       if (info->symtab != sal.symtab)
3669         return;
3670     }
3671
3672   /* Exclude data symbols when looking for breakpoint locations.   */
3673   if (!info->list_mode)
3674     switch (minsym->type)
3675       {
3676         case mst_slot_got_plt:
3677         case mst_data:
3678         case mst_bss:
3679         case mst_abs:
3680         case mst_file_data:
3681         case mst_file_bss:
3682           {
3683             /* Make sure this minsym is not a function descriptor
3684                before we decide to discard it.  */
3685             struct gdbarch *gdbarch = get_objfile_arch (info->objfile);
3686             CORE_ADDR addr = gdbarch_convert_from_func_ptr_addr
3687                                (gdbarch, BMSYMBOL_VALUE_ADDRESS (mo),
3688                                 &current_target);
3689
3690             if (addr == BMSYMBOL_VALUE_ADDRESS (mo))
3691               return;
3692           }
3693       }
3694
3695   VEC_safe_push (bound_minimal_symbol_d, info->msyms, &mo);
3696 }
3697
3698 /* Search for minimal symbols called NAME.  If SEARCH_PSPACE
3699    is not NULL, the search is restricted to just that program
3700    space.
3701
3702    If SYMTAB is NULL, search all objfiles, otherwise
3703    restrict results to the given SYMTAB.  */
3704
3705 static void
3706 search_minsyms_for_name (struct collect_info *info, const char *name,
3707                          struct program_space *search_pspace,
3708                          struct symtab *symtab)
3709 {
3710   struct collect_minsyms local;
3711   struct cleanup *cleanup;
3712
3713   memset (&local, 0, sizeof (local));
3714   local.funfirstline = info->state->funfirstline;
3715   local.list_mode = info->state->list_mode;
3716   local.symtab = symtab;
3717
3718   cleanup = make_cleanup (VEC_cleanup (bound_minimal_symbol_d), &local.msyms);
3719
3720   if (symtab == NULL)
3721     {
3722       struct program_space *pspace;
3723
3724       ALL_PSPACES (pspace)
3725       {
3726         struct objfile *objfile;
3727
3728         if (search_pspace != NULL && search_pspace != pspace)
3729           continue;
3730         if (pspace->executing_startup)
3731           continue;
3732
3733         set_current_program_space (pspace);
3734
3735         ALL_OBJFILES (objfile)
3736         {
3737           local.objfile = objfile;
3738           iterate_over_minimal_symbols (objfile, name, add_minsym, &local);
3739         }
3740       }
3741     }
3742   else
3743     {
3744       if (search_pspace == NULL || SYMTAB_PSPACE (symtab) == search_pspace)
3745         {
3746           set_current_program_space (SYMTAB_PSPACE (symtab));
3747           local.objfile = SYMTAB_OBJFILE(symtab);
3748           iterate_over_minimal_symbols (local.objfile, name, add_minsym,
3749                                         &local);
3750         }
3751     }
3752
3753     if (!VEC_empty (bound_minimal_symbol_d, local.msyms))
3754       {
3755         int classification;
3756         int ix;
3757         bound_minimal_symbol_d *item;
3758
3759         qsort (VEC_address (bound_minimal_symbol_d, local.msyms),
3760                VEC_length (bound_minimal_symbol_d, local.msyms),
3761                sizeof (bound_minimal_symbol_d),
3762                compare_msyms);
3763
3764         /* Now the minsyms are in classification order.  So, we walk
3765            over them and process just the minsyms with the same
3766            classification as the very first minsym in the list.  */
3767         item = VEC_index (bound_minimal_symbol_d, local.msyms, 0);
3768         classification = classify_mtype (MSYMBOL_TYPE (item->minsym));
3769
3770         for (ix = 0;
3771              VEC_iterate (bound_minimal_symbol_d, local.msyms, ix, item);
3772              ++ix)
3773           {
3774             if (classify_mtype (MSYMBOL_TYPE (item->minsym)) != classification)
3775               break;
3776
3777             VEC_safe_push (bound_minimal_symbol_d,
3778                            info->result.minimal_symbols, item);
3779           }
3780       }
3781
3782     do_cleanups (cleanup);
3783 }
3784
3785 /* A helper function to add all symbols matching NAME to INFO.  If
3786    PSPACE is not NULL, the search is restricted to just that program
3787    space.  */
3788
3789 static void
3790 add_matching_symbols_to_info (const char *name,
3791                               struct collect_info *info,
3792                               struct program_space *pspace)
3793 {
3794   int ix;
3795   struct symtab *elt;
3796
3797   for (ix = 0; VEC_iterate (symtab_ptr, info->file_symtabs, ix, elt); ++ix)
3798     {
3799       if (elt == NULL)
3800         {
3801           iterate_over_all_matching_symtabs (info->state, name, VAR_DOMAIN,
3802                                              collect_symbols, info,
3803                                              pspace, 1);
3804           search_minsyms_for_name (info, name, pspace, NULL);
3805         }
3806       else if (pspace == NULL || pspace == SYMTAB_PSPACE (elt))
3807         {
3808           int prev_len = VEC_length (symbolp, info->result.symbols);
3809
3810           /* Program spaces that are executing startup should have
3811              been filtered out earlier.  */
3812           gdb_assert (!SYMTAB_PSPACE (elt)->executing_startup);
3813           set_current_program_space (SYMTAB_PSPACE (elt));
3814           iterate_over_file_blocks (elt, name, VAR_DOMAIN,
3815                                     collect_symbols, info);
3816
3817           /* If no new symbols were found in this iteration and this symtab
3818              is in assembler, we might actually be looking for a label for
3819              which we don't have debug info.  Check for a minimal symbol in
3820              this case.  */
3821           if (prev_len == VEC_length (symbolp, info->result.symbols)
3822               && elt->language == language_asm)
3823             search_minsyms_for_name (info, name, pspace, elt);
3824         }
3825     }
3826 }
3827
3828 \f
3829
3830 /* Now come some functions that are called from multiple places within
3831    decode_line_1.  */
3832
3833 static int
3834 symbol_to_sal (struct symtab_and_line *result,
3835                int funfirstline, struct symbol *sym)
3836 {
3837   if (SYMBOL_CLASS (sym) == LOC_BLOCK)
3838     {
3839       *result = find_function_start_sal (sym, funfirstline);
3840       return 1;
3841     }
3842   else
3843     {
3844       if (SYMBOL_CLASS (sym) == LOC_LABEL && SYMBOL_VALUE_ADDRESS (sym) != 0)
3845         {
3846           init_sal (result);
3847           result->symtab = symbol_symtab (sym);
3848           result->line = SYMBOL_LINE (sym);
3849           result->pc = SYMBOL_VALUE_ADDRESS (sym);
3850           result->pspace = SYMTAB_PSPACE (result->symtab);
3851           result->explicit_pc = 1;
3852           return 1;
3853         }
3854       else if (funfirstline)
3855         {
3856           /* Nothing.  */
3857         }
3858       else if (SYMBOL_LINE (sym) != 0)
3859         {
3860           /* We know its line number.  */
3861           init_sal (result);
3862           result->symtab = symbol_symtab (sym);
3863           result->line = SYMBOL_LINE (sym);
3864           result->pspace = SYMTAB_PSPACE (result->symtab);
3865           return 1;
3866         }
3867     }
3868
3869   return 0;
3870 }
3871
3872 /* See the comment in linespec.h.  */
3873
3874 void
3875 init_linespec_result (struct linespec_result *lr)
3876 {
3877   memset (lr, 0, sizeof (*lr));
3878 }
3879
3880 /* See the comment in linespec.h.  */
3881
3882 void
3883 destroy_linespec_result (struct linespec_result *ls)
3884 {
3885   int i;
3886   struct linespec_sals *lsal;
3887
3888   delete_event_location (ls->location);
3889   for (i = 0; VEC_iterate (linespec_sals, ls->sals, i, lsal); ++i)
3890     {
3891       xfree (lsal->canonical);
3892       xfree (lsal->sals.sals);
3893     }
3894   VEC_free (linespec_sals, ls->sals);
3895 }
3896
3897 /* Cleanup function for a linespec_result.  */
3898
3899 static void
3900 cleanup_linespec_result (void *a)
3901 {
3902   destroy_linespec_result (a);
3903 }
3904
3905 /* See the comment in linespec.h.  */
3906
3907 struct cleanup *
3908 make_cleanup_destroy_linespec_result (struct linespec_result *ls)
3909 {
3910   return make_cleanup (cleanup_linespec_result, ls);
3911 }
3912
3913 /* Return the quote characters permitted by the linespec parser.  */
3914
3915 const char *
3916 get_gdb_linespec_parser_quote_characters (void)
3917 {
3918   return linespec_quote_characters;
3919 }