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