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