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