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