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