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