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