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