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