Add generated source files and fix thinko in aarch64-asm.c
[binutils-gdb.git] / gdb / linespec.c
blob2c54ed55d93ddbb449536f9ce7d494d2ab45c33f
1 /* Parser for linespec for the GNU debugger, GDB.
3 Copyright (C) 1986-2024 Free Software Foundation, Inc.
5 This file is part of GDB.
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
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
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.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
20 #include "defs.h"
21 #include "symtab.h"
22 #include "frame.h"
23 #include "command.h"
24 #include "symfile.h"
25 #include "objfiles.h"
26 #include "source.h"
27 #include "demangle.h"
28 #include "value.h"
29 #include "completer.h"
30 #include "cp-abi.h"
31 #include "cp-support.h"
32 #include "parser-defs.h"
33 #include "block.h"
34 #include "objc-lang.h"
35 #include "linespec.h"
36 #include "language.h"
37 #include "interps.h"
38 #include "mi/mi-cmds.h"
39 #include "target.h"
40 #include "arch-utils.h"
41 #include <ctype.h>
42 #include "cli/cli-utils.h"
43 #include "filenames.h"
44 #include "ada-lang.h"
45 #include "stack.h"
46 #include "location.h"
47 #include "gdbsupport/function-view.h"
48 #include "gdbsupport/def-vector.h"
49 #include <algorithm>
50 #include "inferior.h"
52 /* An enumeration of the various things a user might attempt to
53 complete for a linespec location. */
55 enum class linespec_complete_what
57 /* Nothing, no possible completion. */
58 NOTHING,
60 /* A function/method name. Due to ambiguity between
62 (gdb) b source[TAB]
63 source_file.c
64 source_function
66 this can also indicate a source filename, iff we haven't seen a
67 separate source filename component, as in "b source.c:function". */
68 FUNCTION,
70 /* A label symbol. E.g., break file.c:function:LABEL. */
71 LABEL,
73 /* An expression. E.g., "break foo if EXPR", or "break *EXPR". */
74 EXPRESSION,
76 /* A linespec keyword ("if"/"thread"/"task"/"-force-condition").
77 E.g., "break func threa<tab>". */
78 KEYWORD,
81 /* An address entry is used to ensure that any given location is only
82 added to the result a single time. It holds an address and the
83 program space from which the address came. */
85 struct address_entry
87 struct program_space *pspace;
88 CORE_ADDR addr;
91 /* A linespec. Elements of this structure are filled in by a parser
92 (either parse_linespec or some other function). The structure is
93 then converted into SALs by convert_linespec_to_sals. */
95 struct linespec
97 /* An explicit location spec describing the SaLs. */
98 explicit_location_spec explicit_loc;
100 /* The list of symtabs to search to which to limit the search.
102 If explicit.SOURCE_FILENAME is NULL (no user-specified filename),
103 FILE_SYMTABS should contain one single NULL member. This will cause the
104 code to use the default symtab. */
105 std::vector<symtab *> file_symtabs;
107 /* A list of matching function symbols and minimal symbols. Both lists
108 may be empty if no matching symbols were found. */
109 std::vector<block_symbol> function_symbols;
110 std::vector<bound_minimal_symbol> minimal_symbols;
112 /* A structure of matching label symbols and the corresponding
113 function symbol in which the label was found. Both may be empty
114 or both must be non-empty. */
115 struct
117 std::vector<block_symbol> label_symbols;
118 std::vector<block_symbol> function_symbols;
119 } labels;
122 /* A canonical linespec represented as a symtab-related string.
124 Each entry represents the "SYMTAB:SUFFIX" linespec string.
125 SYMTAB can be converted for example by symtab_to_fullname or
126 symtab_to_filename_for_display as needed. */
128 struct linespec_canonical_name
130 /* Remaining text part of the linespec string. */
131 char *suffix;
133 /* If NULL then SUFFIX is the whole linespec string. */
134 struct symtab *symtab;
137 /* An instance of this is used to keep all state while linespec
138 operates. This instance is passed around as a 'this' pointer to
139 the various implementation methods. */
141 struct linespec_state
143 /* The language in use during linespec processing. */
144 const struct language_defn *language;
146 /* The program space as seen when the module was entered. */
147 struct program_space *program_space;
149 /* If not NULL, the search is restricted to just this program
150 space. */
151 struct program_space *search_pspace;
153 /* The default symtab to use, if no other symtab is specified. */
154 struct symtab *default_symtab;
156 /* The default line to use. */
157 int default_line;
159 /* The 'funfirstline' value that was passed in to decode_line_1 or
160 decode_line_full. */
161 int funfirstline;
163 /* Nonzero if we are running in 'list' mode; see decode_line_list. */
164 int list_mode;
166 /* The 'canonical' value passed to decode_line_full, or NULL. */
167 struct linespec_result *canonical;
169 /* Canonical strings that mirror the std::vector<symtab_and_line> result. */
170 struct linespec_canonical_name *canonical_names;
172 /* This is a set of address_entry objects which is used to prevent
173 duplicate symbols from being entered into the result. */
174 htab_t addr_set;
176 /* Are we building a linespec? */
177 int is_linespec;
180 /* This is a helper object that is used when collecting symbols into a
181 result. */
183 struct collect_info
185 /* The linespec object in use. */
186 struct linespec_state *state;
188 /* A list of symtabs to which to restrict matches. */
189 const std::vector<symtab *> *file_symtabs;
191 /* The result being accumulated. */
192 struct
194 std::vector<block_symbol> *symbols;
195 std::vector<bound_minimal_symbol> *minimal_symbols;
196 } result;
198 /* Possibly add a symbol to the results. */
199 virtual bool add_symbol (block_symbol *bsym);
202 bool
203 collect_info::add_symbol (block_symbol *bsym)
205 /* In list mode, add all matching symbols, regardless of class.
206 This allows the user to type "list a_global_variable". */
207 if (bsym->symbol->aclass () == LOC_BLOCK || this->state->list_mode)
208 this->result.symbols->push_back (*bsym);
210 /* Continue iterating. */
211 return true;
214 /* Custom collect_info for symbol_searcher. */
216 struct symbol_searcher_collect_info
217 : collect_info
219 bool add_symbol (block_symbol *bsym) override
221 /* Add everything. */
222 this->result.symbols->push_back (*bsym);
224 /* Continue iterating. */
225 return true;
229 /* Token types */
231 enum linespec_token_type
233 /* A keyword */
234 LSTOKEN_KEYWORD = 0,
236 /* A colon "separator" */
237 LSTOKEN_COLON,
239 /* A string */
240 LSTOKEN_STRING,
242 /* A number */
243 LSTOKEN_NUMBER,
245 /* A comma */
246 LSTOKEN_COMMA,
248 /* EOI (end of input) */
249 LSTOKEN_EOI,
251 /* Consumed token */
252 LSTOKEN_CONSUMED
255 /* List of keywords. This is NULL-terminated so that it can be used
256 as enum completer. */
257 const char * const linespec_keywords[] = { "if", "thread", "task", "inferior", "-force-condition", NULL };
258 #define IF_KEYWORD_INDEX 0
259 #define FORCE_KEYWORD_INDEX 4
261 /* A token of the linespec lexer */
263 struct linespec_token
265 /* The type of the token */
266 linespec_token_type type;
268 /* Data for the token */
269 union
271 /* A string, given as a stoken */
272 struct stoken string;
274 /* A keyword */
275 const char *keyword;
276 } data;
279 #define LS_TOKEN_STOKEN(TOK) (TOK).data.string
280 #define LS_TOKEN_KEYWORD(TOK) (TOK).data.keyword
282 /* An instance of the linespec parser. */
284 struct linespec_parser
286 linespec_parser (int flags, const struct language_defn *language,
287 struct program_space *search_pspace,
288 struct symtab *default_symtab,
289 int default_line,
290 struct linespec_result *canonical);
292 ~linespec_parser ();
294 DISABLE_COPY_AND_ASSIGN (linespec_parser);
296 /* Lexer internal data */
297 struct
299 /* Save head of input stream. */
300 const char *saved_arg;
302 /* Head of the input stream. */
303 const char *stream;
304 #define PARSER_STREAM(P) ((P)->lexer.stream)
306 /* The current token. */
307 linespec_token current;
308 } lexer {};
310 /* Is the entire linespec quote-enclosed? */
311 int is_quote_enclosed = 0;
313 /* The state of the parse. */
314 struct linespec_state state {};
315 #define PARSER_STATE(PPTR) (&(PPTR)->state)
317 /* The result of the parse. */
318 linespec result;
319 #define PARSER_RESULT(PPTR) (&(PPTR)->result)
321 /* What the parser believes the current word point should complete
322 to. */
323 linespec_complete_what complete_what = linespec_complete_what::NOTHING;
325 /* The completion word point. The parser advances this as it skips
326 tokens. At some point the input string will end or parsing will
327 fail, and then we attempt completion at the captured completion
328 word point, interpreting the string at completion_word as
329 COMPLETE_WHAT. */
330 const char *completion_word = nullptr;
332 /* If the current token was a quoted string, then this is the
333 quoting character (either " or '). */
334 int completion_quote_char = 0;
336 /* If the current token was a quoted string, then this points at the
337 end of the quoted string. */
338 const char *completion_quote_end = nullptr;
340 /* If parsing for completion, then this points at the completion
341 tracker. Otherwise, this is NULL. */
342 struct completion_tracker *completion_tracker = nullptr;
345 /* A convenience macro for accessing the explicit location spec result
346 of the parser. */
347 #define PARSER_EXPLICIT(PPTR) (&PARSER_RESULT ((PPTR))->explicit_loc)
349 /* Prototypes for local functions. */
351 static void iterate_over_file_blocks
352 (struct symtab *symtab, const lookup_name_info &name,
353 domain_enum domain,
354 gdb::function_view<symbol_found_callback_ftype> callback);
356 static void initialize_defaults (struct symtab **default_symtab,
357 int *default_line);
359 CORE_ADDR linespec_expression_to_pc (const char **exp_ptr);
361 static std::vector<symtab_and_line> decode_objc (struct linespec_state *self,
362 linespec *ls,
363 const char *arg);
365 static std::vector<symtab *> symtabs_from_filename
366 (const char *, struct program_space *pspace);
368 static std::vector<block_symbol> find_label_symbols
369 (struct linespec_state *self,
370 const std::vector<block_symbol> &function_symbols,
371 std::vector<block_symbol> *label_funcs_ret,
372 const char *name, bool completion_mode = false);
374 static void find_linespec_symbols (struct linespec_state *self,
375 const std::vector<symtab *> &file_symtabs,
376 const char *name,
377 symbol_name_match_type name_match_type,
378 std::vector<block_symbol> *symbols,
379 std::vector<bound_minimal_symbol> *minsyms);
381 static struct line_offset
382 linespec_parse_variable (struct linespec_state *self,
383 const char *variable);
385 static int symbol_to_sal (struct symtab_and_line *result,
386 int funfirstline, struct symbol *sym);
388 static void add_matching_symbols_to_info (const char *name,
389 symbol_name_match_type name_match_type,
390 enum search_domain search_domain,
391 struct collect_info *info,
392 struct program_space *pspace);
394 static void add_all_symbol_names_from_pspace
395 (struct collect_info *info, struct program_space *pspace,
396 const std::vector<const char *> &names, enum search_domain search_domain);
398 static std::vector<symtab *>
399 collect_symtabs_from_filename (const char *file,
400 struct program_space *pspace);
402 static std::vector<symtab_and_line> decode_digits_ordinary
403 (struct linespec_state *self,
404 linespec *ls,
405 int line,
406 const linetable_entry **best_entry);
408 static std::vector<symtab_and_line> decode_digits_list_mode
409 (struct linespec_state *self,
410 linespec *ls,
411 struct symtab_and_line val);
413 static void minsym_found (struct linespec_state *self, struct objfile *objfile,
414 struct minimal_symbol *msymbol,
415 std::vector<symtab_and_line> *result);
417 static bool compare_symbols (const block_symbol &a, const block_symbol &b);
419 static bool compare_msymbols (const bound_minimal_symbol &a,
420 const bound_minimal_symbol &b);
422 /* Permitted quote characters for the parser. This is different from the
423 completer's quote characters to allow backward compatibility with the
424 previous parser. */
425 static const char linespec_quote_characters[] = "\"\'";
427 /* Lexer functions. */
429 /* Lex a number from the input in PARSER. This only supports
430 decimal numbers.
432 Return true if input is decimal numbers. Return false if not. */
434 static int
435 linespec_lexer_lex_number (linespec_parser *parser, linespec_token *tokenp)
437 tokenp->type = LSTOKEN_NUMBER;
438 LS_TOKEN_STOKEN (*tokenp).length = 0;
439 LS_TOKEN_STOKEN (*tokenp).ptr = PARSER_STREAM (parser);
441 /* Keep any sign at the start of the stream. */
442 if (*PARSER_STREAM (parser) == '+' || *PARSER_STREAM (parser) == '-')
444 ++LS_TOKEN_STOKEN (*tokenp).length;
445 ++(PARSER_STREAM (parser));
448 while (isdigit (*PARSER_STREAM (parser)))
450 ++LS_TOKEN_STOKEN (*tokenp).length;
451 ++(PARSER_STREAM (parser));
454 /* If the next character in the input buffer is not a space, comma,
455 quote, or colon, this input does not represent a number. */
456 if (*PARSER_STREAM (parser) != '\0'
457 && !isspace (*PARSER_STREAM (parser)) && *PARSER_STREAM (parser) != ','
458 && *PARSER_STREAM (parser) != ':'
459 && !strchr (linespec_quote_characters, *PARSER_STREAM (parser)))
461 PARSER_STREAM (parser) = LS_TOKEN_STOKEN (*tokenp).ptr;
462 return 0;
465 return 1;
468 /* See linespec.h. */
470 const char *
471 linespec_lexer_lex_keyword (const char *p)
473 int i;
475 if (p != NULL)
477 for (i = 0; linespec_keywords[i] != NULL; ++i)
479 int len = strlen (linespec_keywords[i]);
481 /* If P begins with
483 - "thread" or "task" and the next character is
484 whitespace, we may have found a keyword. It is only a
485 keyword if it is not followed by another keyword.
487 - "-force-condition", the next character may be EOF
488 since this keyword does not take any arguments. Otherwise,
489 it should be followed by a keyword.
491 - "if", ALWAYS stop the lexer, since it is not possible to
492 predict what is going to appear in the condition, which can
493 only be parsed after SaLs have been found. */
494 if (strncmp (p, linespec_keywords[i], len) == 0)
496 int j;
498 if (i == FORCE_KEYWORD_INDEX && p[len] == '\0')
499 return linespec_keywords[i];
501 if (!isspace (p[len]))
502 continue;
504 if (i == FORCE_KEYWORD_INDEX)
506 p += len;
507 p = skip_spaces (p);
508 for (j = 0; linespec_keywords[j] != NULL; ++j)
510 int nextlen = strlen (linespec_keywords[j]);
512 if (strncmp (p, linespec_keywords[j], nextlen) == 0
513 && isspace (p[nextlen]))
514 return linespec_keywords[i];
517 else if (i != IF_KEYWORD_INDEX)
519 /* We matched a "thread" or "task". */
520 p += len;
521 p = skip_spaces (p);
522 for (j = 0; linespec_keywords[j] != NULL; ++j)
524 int nextlen = strlen (linespec_keywords[j]);
526 if (strncmp (p, linespec_keywords[j], nextlen) == 0
527 && isspace (p[nextlen]))
528 return NULL;
532 return linespec_keywords[i];
537 return NULL;
540 /* See description in linespec.h. */
543 is_ada_operator (const char *string)
545 const struct ada_opname_map *mapping;
547 for (mapping = ada_opname_table;
548 mapping->encoded != NULL
549 && !startswith (string, mapping->decoded); ++mapping)
552 return mapping->decoded == NULL ? 0 : strlen (mapping->decoded);
555 /* Find QUOTE_CHAR in STRING, accounting for the ':' terminal. Return
556 the location of QUOTE_CHAR, or NULL if not found. */
558 static const char *
559 skip_quote_char (const char *string, char quote_char)
561 const char *p, *last;
563 p = last = find_toplevel_char (string, quote_char);
564 while (p && *p != '\0' && *p != ':')
566 p = find_toplevel_char (p, quote_char);
567 if (p != NULL)
568 last = p++;
571 return last;
574 /* Make a writable copy of the string given in TOKEN, trimming
575 any trailing whitespace. */
577 static gdb::unique_xmalloc_ptr<char>
578 copy_token_string (linespec_token token)
580 const char *str, *s;
582 if (token.type == LSTOKEN_KEYWORD)
583 return make_unique_xstrdup (LS_TOKEN_KEYWORD (token));
585 str = LS_TOKEN_STOKEN (token).ptr;
586 s = remove_trailing_whitespace (str, str + LS_TOKEN_STOKEN (token).length);
588 return gdb::unique_xmalloc_ptr<char> (savestring (str, s - str));
591 /* Does P represent the end of a quote-enclosed linespec? */
593 static int
594 is_closing_quote_enclosed (const char *p)
596 if (strchr (linespec_quote_characters, *p))
597 ++p;
598 p = skip_spaces ((char *) p);
599 return (*p == '\0' || linespec_lexer_lex_keyword (p));
602 /* Find the end of the parameter list that starts with *INPUT.
603 This helper function assists with lexing string segments
604 which might contain valid (non-terminating) commas. */
606 static const char *
607 find_parameter_list_end (const char *input)
609 char end_char, start_char;
610 int depth;
611 const char *p;
613 start_char = *input;
614 if (start_char == '(')
615 end_char = ')';
616 else if (start_char == '<')
617 end_char = '>';
618 else
619 return NULL;
621 p = input;
622 depth = 0;
623 while (*p)
625 if (*p == start_char)
626 ++depth;
627 else if (*p == end_char)
629 if (--depth == 0)
631 ++p;
632 break;
635 ++p;
638 return p;
641 /* If the [STRING, STRING_LEN) string ends with what looks like a
642 keyword, return the keyword start offset in STRING. Return -1
643 otherwise. */
645 static size_t
646 string_find_incomplete_keyword_at_end (const char * const *keywords,
647 const char *string, size_t string_len)
649 const char *end = string + string_len;
650 const char *p = end;
652 while (p > string && *p != ' ')
653 --p;
654 if (p > string)
656 p++;
657 size_t len = end - p;
658 for (size_t i = 0; keywords[i] != NULL; ++i)
659 if (strncmp (keywords[i], p, len) == 0)
660 return p - string;
663 return -1;
666 /* Lex a string from the input in PARSER. */
668 static linespec_token
669 linespec_lexer_lex_string (linespec_parser *parser)
671 linespec_token token;
672 const char *start = PARSER_STREAM (parser);
674 token.type = LSTOKEN_STRING;
676 /* If the input stream starts with a quote character, skip to the next
677 quote character, regardless of the content. */
678 if (strchr (linespec_quote_characters, *PARSER_STREAM (parser)))
680 const char *end;
681 char quote_char = *PARSER_STREAM (parser);
683 /* Special case: Ada operators. */
684 if (PARSER_STATE (parser)->language->la_language == language_ada
685 && quote_char == '\"')
687 int len = is_ada_operator (PARSER_STREAM (parser));
689 if (len != 0)
691 /* The input is an Ada operator. Return the quoted string
692 as-is. */
693 LS_TOKEN_STOKEN (token).ptr = PARSER_STREAM (parser);
694 LS_TOKEN_STOKEN (token).length = len;
695 PARSER_STREAM (parser) += len;
696 return token;
699 /* The input does not represent an Ada operator -- fall through
700 to normal quoted string handling. */
703 /* Skip past the beginning quote. */
704 ++(PARSER_STREAM (parser));
706 /* Mark the start of the string. */
707 LS_TOKEN_STOKEN (token).ptr = PARSER_STREAM (parser);
709 /* Skip to the ending quote. */
710 end = skip_quote_char (PARSER_STREAM (parser), quote_char);
712 /* This helps the completer mode decide whether we have a
713 complete string. */
714 parser->completion_quote_char = quote_char;
715 parser->completion_quote_end = end;
717 /* Error if the input did not terminate properly, unless in
718 completion mode. */
719 if (end == NULL)
721 if (parser->completion_tracker == NULL)
722 error (_("unmatched quote"));
724 /* In completion mode, we'll try to complete the incomplete
725 token. */
726 token.type = LSTOKEN_STRING;
727 while (*PARSER_STREAM (parser) != '\0')
728 PARSER_STREAM (parser)++;
729 LS_TOKEN_STOKEN (token).length = PARSER_STREAM (parser) - 1 - start;
731 else
733 /* Skip over the ending quote and mark the length of the string. */
734 PARSER_STREAM (parser) = (char *) ++end;
735 LS_TOKEN_STOKEN (token).length = PARSER_STREAM (parser) - 2 - start;
738 else
740 const char *p;
742 /* Otherwise, only identifier characters are permitted.
743 Spaces are the exception. In general, we keep spaces,
744 but only if the next characters in the input do not resolve
745 to one of the keywords.
747 This allows users to forgo quoting CV-qualifiers, template arguments,
748 and similar common language constructs. */
750 while (1)
752 if (isspace (*PARSER_STREAM (parser)))
754 p = skip_spaces (PARSER_STREAM (parser));
755 /* When we get here we know we've found something followed by
756 a space (we skip over parens and templates below).
757 So if we find a keyword now, we know it is a keyword and not,
758 say, a function name. */
759 if (linespec_lexer_lex_keyword (p) != NULL)
761 LS_TOKEN_STOKEN (token).ptr = start;
762 LS_TOKEN_STOKEN (token).length
763 = PARSER_STREAM (parser) - start;
764 return token;
767 /* Advance past the whitespace. */
768 PARSER_STREAM (parser) = p;
771 /* If the next character is EOI or (single) ':', the
772 string is complete; return the token. */
773 if (*PARSER_STREAM (parser) == 0)
775 LS_TOKEN_STOKEN (token).ptr = start;
776 LS_TOKEN_STOKEN (token).length = PARSER_STREAM (parser) - start;
777 return token;
779 else if (PARSER_STREAM (parser)[0] == ':')
781 /* Do not tokenize the C++ scope operator. */
782 if (PARSER_STREAM (parser)[1] == ':')
783 ++(PARSER_STREAM (parser));
785 /* Do not tokenize ABI tags such as "[abi:cxx11]". */
786 else if (PARSER_STREAM (parser) - start > 4
787 && startswith (PARSER_STREAM (parser) - 4, "[abi"))
789 /* Nothing. */
792 /* Do not tokenify if the input length so far is one
793 (i.e, a single-letter drive name) and the next character
794 is a directory separator. This allows Windows-style
795 paths to be recognized as filenames without quoting it. */
796 else if ((PARSER_STREAM (parser) - start) != 1
797 || !IS_DIR_SEPARATOR (PARSER_STREAM (parser)[1]))
799 LS_TOKEN_STOKEN (token).ptr = start;
800 LS_TOKEN_STOKEN (token).length
801 = PARSER_STREAM (parser) - start;
802 return token;
805 /* Special case: permit quote-enclosed linespecs. */
806 else if (parser->is_quote_enclosed
807 && strchr (linespec_quote_characters,
808 *PARSER_STREAM (parser))
809 && is_closing_quote_enclosed (PARSER_STREAM (parser)))
811 LS_TOKEN_STOKEN (token).ptr = start;
812 LS_TOKEN_STOKEN (token).length = PARSER_STREAM (parser) - start;
813 return token;
815 /* Because commas may terminate a linespec and appear in
816 the middle of valid string input, special cases for
817 '<' and '(' are necessary. */
818 else if (*PARSER_STREAM (parser) == '<'
819 || *PARSER_STREAM (parser) == '(')
821 /* Don't interpret 'operator<' / 'operator<<' as a
822 template parameter list though. */
823 if (*PARSER_STREAM (parser) == '<'
824 && (PARSER_STATE (parser)->language->la_language
825 == language_cplus)
826 && (PARSER_STREAM (parser) - start) >= CP_OPERATOR_LEN)
828 const char *op = PARSER_STREAM (parser);
830 while (op > start && isspace (op[-1]))
831 op--;
832 if (op - start >= CP_OPERATOR_LEN)
834 op -= CP_OPERATOR_LEN;
835 if (strncmp (op, CP_OPERATOR_STR, CP_OPERATOR_LEN) == 0
836 && (op == start
837 || !(isalnum (op[-1]) || op[-1] == '_')))
839 /* This is an operator name. Keep going. */
840 ++(PARSER_STREAM (parser));
841 if (*PARSER_STREAM (parser) == '<')
842 ++(PARSER_STREAM (parser));
843 continue;
848 const char *end = find_parameter_list_end (PARSER_STREAM (parser));
849 PARSER_STREAM (parser) = end;
851 /* Don't loop around to the normal \0 case above because
852 we don't want to misinterpret a potential keyword at
853 the end of the token when the string isn't
854 "()<>"-balanced. This handles "b
855 function(thread<tab>" in completion mode. */
856 if (*end == '\0')
858 LS_TOKEN_STOKEN (token).ptr = start;
859 LS_TOKEN_STOKEN (token).length
860 = PARSER_STREAM (parser) - start;
861 return token;
863 else
864 continue;
866 /* Commas are terminators, but not if they are part of an
867 operator name. */
868 else if (*PARSER_STREAM (parser) == ',')
870 if ((PARSER_STATE (parser)->language->la_language
871 == language_cplus)
872 && (PARSER_STREAM (parser) - start) > CP_OPERATOR_LEN)
874 const char *op = strstr (start, CP_OPERATOR_STR);
876 if (op != NULL && is_operator_name (op))
878 /* This is an operator name. Keep going. */
879 ++(PARSER_STREAM (parser));
880 continue;
884 /* Comma terminates the string. */
885 LS_TOKEN_STOKEN (token).ptr = start;
886 LS_TOKEN_STOKEN (token).length = PARSER_STREAM (parser) - start;
887 return token;
890 /* Advance the stream. */
891 gdb_assert (*(PARSER_STREAM (parser)) != '\0');
892 ++(PARSER_STREAM (parser));
896 return token;
899 /* Lex a single linespec token from PARSER. */
901 static linespec_token
902 linespec_lexer_lex_one (linespec_parser *parser)
904 const char *keyword;
906 if (parser->lexer.current.type == LSTOKEN_CONSUMED)
908 /* Skip any whitespace. */
909 PARSER_STREAM (parser) = skip_spaces (PARSER_STREAM (parser));
911 /* Check for a keyword, they end the linespec. */
912 keyword = linespec_lexer_lex_keyword (PARSER_STREAM (parser));
913 if (keyword != NULL)
915 parser->lexer.current.type = LSTOKEN_KEYWORD;
916 LS_TOKEN_KEYWORD (parser->lexer.current) = keyword;
917 /* We do not advance the stream here intentionally:
918 we would like lexing to stop when a keyword is seen.
920 PARSER_STREAM (parser) += strlen (keyword); */
922 return parser->lexer.current;
925 /* Handle other tokens. */
926 switch (*PARSER_STREAM (parser))
928 case 0:
929 parser->lexer.current.type = LSTOKEN_EOI;
930 break;
932 case '+': case '-':
933 case '0': case '1': case '2': case '3': case '4':
934 case '5': case '6': case '7': case '8': case '9':
935 if (!linespec_lexer_lex_number (parser, &(parser->lexer.current)))
936 parser->lexer.current = linespec_lexer_lex_string (parser);
937 break;
939 case ':':
940 /* If we have a scope operator, lex the input as a string.
941 Otherwise, return LSTOKEN_COLON. */
942 if (PARSER_STREAM (parser)[1] == ':')
943 parser->lexer.current = linespec_lexer_lex_string (parser);
944 else
946 parser->lexer.current.type = LSTOKEN_COLON;
947 ++(PARSER_STREAM (parser));
949 break;
951 case '\'': case '\"':
952 /* Special case: permit quote-enclosed linespecs. */
953 if (parser->is_quote_enclosed
954 && is_closing_quote_enclosed (PARSER_STREAM (parser)))
956 ++(PARSER_STREAM (parser));
957 parser->lexer.current.type = LSTOKEN_EOI;
959 else
960 parser->lexer.current = linespec_lexer_lex_string (parser);
961 break;
963 case ',':
964 parser->lexer.current.type = LSTOKEN_COMMA;
965 LS_TOKEN_STOKEN (parser->lexer.current).ptr
966 = PARSER_STREAM (parser);
967 LS_TOKEN_STOKEN (parser->lexer.current).length = 1;
968 ++(PARSER_STREAM (parser));
969 break;
971 default:
972 /* If the input is not a number, it must be a string.
973 [Keywords were already considered above.] */
974 parser->lexer.current = linespec_lexer_lex_string (parser);
975 break;
979 return parser->lexer.current;
982 /* Consume the current token and return the next token in PARSER's
983 input stream. Also advance the completion word for completion
984 mode. */
986 static linespec_token
987 linespec_lexer_consume_token (linespec_parser *parser)
989 gdb_assert (parser->lexer.current.type != LSTOKEN_EOI);
991 bool advance_word = (parser->lexer.current.type != LSTOKEN_STRING
992 || *PARSER_STREAM (parser) != '\0');
994 /* If we're moving past a string to some other token, it must be the
995 quote was terminated. */
996 if (parser->completion_quote_char)
998 gdb_assert (parser->lexer.current.type == LSTOKEN_STRING);
1000 /* If the string was the last (non-EOI) token, we're past the
1001 quote, but remember that for later. */
1002 if (*PARSER_STREAM (parser) != '\0')
1004 parser->completion_quote_char = '\0';
1005 parser->completion_quote_end = NULL;;
1009 parser->lexer.current.type = LSTOKEN_CONSUMED;
1010 linespec_lexer_lex_one (parser);
1012 if (parser->lexer.current.type == LSTOKEN_STRING)
1014 /* Advance the completion word past a potential initial
1015 quote-char. */
1016 parser->completion_word = LS_TOKEN_STOKEN (parser->lexer.current).ptr;
1018 else if (advance_word)
1020 /* Advance the completion word past any whitespace. */
1021 parser->completion_word = PARSER_STREAM (parser);
1024 return parser->lexer.current;
1027 /* Return the next token without consuming the current token. */
1029 static linespec_token
1030 linespec_lexer_peek_token (linespec_parser *parser)
1032 linespec_token next;
1033 const char *saved_stream = PARSER_STREAM (parser);
1034 linespec_token saved_token = parser->lexer.current;
1035 int saved_completion_quote_char = parser->completion_quote_char;
1036 const char *saved_completion_quote_end = parser->completion_quote_end;
1037 const char *saved_completion_word = parser->completion_word;
1039 next = linespec_lexer_consume_token (parser);
1040 PARSER_STREAM (parser) = saved_stream;
1041 parser->lexer.current = saved_token;
1042 parser->completion_quote_char = saved_completion_quote_char;
1043 parser->completion_quote_end = saved_completion_quote_end;
1044 parser->completion_word = saved_completion_word;
1045 return next;
1048 /* Helper functions. */
1050 /* Add SAL to SALS, and also update SELF->CANONICAL_NAMES to reflect
1051 the new sal, if needed. If not NULL, SYMNAME is the name of the
1052 symbol to use when constructing the new canonical name.
1054 If LITERAL_CANONICAL is non-zero, SYMNAME will be used as the
1055 canonical name for the SAL. */
1057 static void
1058 add_sal_to_sals (struct linespec_state *self,
1059 std::vector<symtab_and_line> *sals,
1060 struct symtab_and_line *sal,
1061 const char *symname, int literal_canonical)
1063 sals->push_back (*sal);
1065 if (self->canonical)
1067 struct linespec_canonical_name *canonical;
1069 self->canonical_names = XRESIZEVEC (struct linespec_canonical_name,
1070 self->canonical_names,
1071 sals->size ());
1072 canonical = &self->canonical_names[sals->size () - 1];
1073 if (!literal_canonical && sal->symtab)
1075 symtab_to_fullname (sal->symtab);
1077 /* Note that the filter doesn't have to be a valid linespec
1078 input. We only apply the ":LINE" treatment to Ada for
1079 the time being. */
1080 if (symname != NULL && sal->line != 0
1081 && self->language->la_language == language_ada)
1082 canonical->suffix = xstrprintf ("%s:%d", symname,
1083 sal->line).release ();
1084 else if (symname != NULL)
1085 canonical->suffix = xstrdup (symname);
1086 else
1087 canonical->suffix = xstrprintf ("%d", sal->line).release ();
1088 canonical->symtab = sal->symtab;
1090 else
1092 if (symname != NULL)
1093 canonical->suffix = xstrdup (symname);
1094 else
1095 canonical->suffix = xstrdup ("<unknown>");
1096 canonical->symtab = NULL;
1101 /* A hash function for address_entry. */
1103 static hashval_t
1104 hash_address_entry (const void *p)
1106 const struct address_entry *aep = (const struct address_entry *) p;
1107 hashval_t hash;
1109 hash = iterative_hash_object (aep->pspace, 0);
1110 return iterative_hash_object (aep->addr, hash);
1113 /* An equality function for address_entry. */
1115 static int
1116 eq_address_entry (const void *a, const void *b)
1118 const struct address_entry *aea = (const struct address_entry *) a;
1119 const struct address_entry *aeb = (const struct address_entry *) b;
1121 return aea->pspace == aeb->pspace && aea->addr == aeb->addr;
1124 /* Check whether the address, represented by PSPACE and ADDR, is
1125 already in the set. If so, return 0. Otherwise, add it and return
1126 1. */
1128 static int
1129 maybe_add_address (htab_t set, struct program_space *pspace, CORE_ADDR addr)
1131 struct address_entry e, *p;
1132 void **slot;
1134 e.pspace = pspace;
1135 e.addr = addr;
1136 slot = htab_find_slot (set, &e, INSERT);
1137 if (*slot)
1138 return 0;
1140 p = XNEW (struct address_entry);
1141 memcpy (p, &e, sizeof (struct address_entry));
1142 *slot = p;
1144 return 1;
1147 /* A helper that walks over all matching symtabs in all objfiles and
1148 calls CALLBACK for each symbol matching NAME. If SEARCH_PSPACE is
1149 not NULL, then the search is restricted to just that program
1150 space. If INCLUDE_INLINE is true then symbols representing
1151 inlined instances of functions will be included in the result. */
1153 static void
1154 iterate_over_all_matching_symtabs
1155 (struct linespec_state *state,
1156 const lookup_name_info &lookup_name,
1157 const domain_enum name_domain,
1158 enum search_domain search_domain,
1159 struct program_space *search_pspace, bool include_inline,
1160 gdb::function_view<symbol_found_callback_ftype> callback)
1162 for (struct program_space *pspace : program_spaces)
1164 if (search_pspace != NULL && search_pspace != pspace)
1165 continue;
1166 if (pspace->executing_startup)
1167 continue;
1169 set_current_program_space (pspace);
1171 for (objfile *objfile : current_program_space->objfiles ())
1173 objfile->expand_symtabs_matching (NULL, &lookup_name, NULL, NULL,
1174 (SEARCH_GLOBAL_BLOCK
1175 | SEARCH_STATIC_BLOCK),
1176 UNDEF_DOMAIN,
1177 search_domain);
1179 for (compunit_symtab *cu : objfile->compunits ())
1181 struct symtab *symtab = cu->primary_filetab ();
1183 iterate_over_file_blocks (symtab, lookup_name, name_domain,
1184 callback);
1186 if (include_inline)
1188 const struct block *block;
1189 int i;
1190 const blockvector *bv = symtab->compunit ()->blockvector ();
1192 for (i = FIRST_LOCAL_BLOCK; i < bv->num_blocks (); i++)
1194 block = bv->block (i);
1195 state->language->iterate_over_symbols
1196 (block, lookup_name, name_domain,
1197 [&] (block_symbol *bsym)
1199 /* Restrict calls to CALLBACK to symbols
1200 representing inline symbols only. */
1201 if (bsym->symbol->is_inlined ())
1202 return callback (bsym);
1203 return true;
1212 /* Returns the block to be used for symbol searches from
1213 the current location. */
1215 static const struct block *
1216 get_current_search_block (void)
1218 /* get_selected_block can change the current language when there is
1219 no selected frame yet. */
1220 scoped_restore_current_language save_language;
1221 return get_selected_block (0);
1224 /* Iterate over static and global blocks. */
1226 static void
1227 iterate_over_file_blocks
1228 (struct symtab *symtab, const lookup_name_info &name,
1229 domain_enum domain, gdb::function_view<symbol_found_callback_ftype> callback)
1231 const struct block *block;
1233 for (block = symtab->compunit ()->blockvector ()->static_block ();
1234 block != NULL;
1235 block = block->superblock ())
1236 current_language->iterate_over_symbols (block, name, domain, callback);
1239 /* A helper for find_method. This finds all methods in type T of
1240 language T_LANG which match NAME. It adds matching symbol names to
1241 RESULT_NAMES, and adds T's direct superclasses to SUPERCLASSES. */
1243 static void
1244 find_methods (struct type *t, enum language t_lang, const char *name,
1245 std::vector<const char *> *result_names,
1246 std::vector<struct type *> *superclasses)
1248 int ibase;
1249 const char *class_name = t->name ();
1251 /* Ignore this class if it doesn't have a name. This is ugly, but
1252 unless we figure out how to get the physname without the name of
1253 the class, then the loop can't do any good. */
1254 if (class_name)
1256 int method_counter;
1257 lookup_name_info lookup_name (name, symbol_name_match_type::FULL);
1258 symbol_name_matcher_ftype *symbol_name_compare
1259 = language_def (t_lang)->get_symbol_name_matcher (lookup_name);
1261 t = check_typedef (t);
1263 /* Loop over each method name. At this level, all overloads of a name
1264 are counted as a single name. There is an inner loop which loops over
1265 each overload. */
1267 for (method_counter = TYPE_NFN_FIELDS (t) - 1;
1268 method_counter >= 0;
1269 --method_counter)
1271 const char *method_name = TYPE_FN_FIELDLIST_NAME (t, method_counter);
1273 if (symbol_name_compare (method_name, lookup_name, NULL))
1275 int field_counter;
1277 for (field_counter = (TYPE_FN_FIELDLIST_LENGTH (t, method_counter)
1278 - 1);
1279 field_counter >= 0;
1280 --field_counter)
1282 struct fn_field *f;
1283 const char *phys_name;
1285 f = TYPE_FN_FIELDLIST1 (t, method_counter);
1286 if (TYPE_FN_FIELD_STUB (f, field_counter))
1287 continue;
1288 phys_name = TYPE_FN_FIELD_PHYSNAME (f, field_counter);
1289 result_names->push_back (phys_name);
1295 for (ibase = 0; ibase < TYPE_N_BASECLASSES (t); ibase++)
1296 superclasses->push_back (TYPE_BASECLASS (t, ibase));
1299 /* The string equivalent of find_toplevel_char. Returns a pointer
1300 to the location of NEEDLE in HAYSTACK, ignoring any occurrences
1301 inside "()" and "<>". Returns NULL if NEEDLE was not found. */
1303 static const char *
1304 find_toplevel_string (const char *haystack, const char *needle)
1306 const char *s = haystack;
1310 s = find_toplevel_char (s, *needle);
1312 if (s != NULL)
1314 /* Found first char in HAYSTACK; check rest of string. */
1315 if (startswith (s, needle))
1316 return s;
1318 /* Didn't find it; loop over HAYSTACK, looking for the next
1319 instance of the first character of NEEDLE. */
1320 ++s;
1323 while (s != NULL && *s != '\0');
1325 /* NEEDLE was not found in HAYSTACK. */
1326 return NULL;
1329 /* Convert CANONICAL to its string representation using
1330 symtab_to_fullname for SYMTAB. */
1332 static std::string
1333 canonical_to_fullform (const struct linespec_canonical_name *canonical)
1335 if (canonical->symtab == NULL)
1336 return canonical->suffix;
1337 else
1338 return string_printf ("%s:%s", symtab_to_fullname (canonical->symtab),
1339 canonical->suffix);
1342 /* Given FILTERS, a list of canonical names, filter the sals in RESULT
1343 and store the result in SELF->CANONICAL. */
1345 static void
1346 filter_results (struct linespec_state *self,
1347 std::vector<symtab_and_line> *result,
1348 const std::vector<const char *> &filters)
1350 for (const char *name : filters)
1352 linespec_sals lsal;
1354 for (size_t j = 0; j < result->size (); ++j)
1356 const struct linespec_canonical_name *canonical;
1358 canonical = &self->canonical_names[j];
1359 std::string fullform = canonical_to_fullform (canonical);
1361 if (name == fullform)
1362 lsal.sals.push_back ((*result)[j]);
1365 if (!lsal.sals.empty ())
1367 lsal.canonical = xstrdup (name);
1368 self->canonical->lsals.push_back (std::move (lsal));
1372 self->canonical->pre_expanded = 0;
1375 /* Store RESULT into SELF->CANONICAL. */
1377 static void
1378 convert_results_to_lsals (struct linespec_state *self,
1379 std::vector<symtab_and_line> *result)
1381 struct linespec_sals lsal;
1383 lsal.canonical = NULL;
1384 lsal.sals = std::move (*result);
1385 self->canonical->lsals.push_back (std::move (lsal));
1388 /* A structure that contains two string representations of a struct
1389 linespec_canonical_name:
1390 - one where the symtab's fullname is used;
1391 - one where the filename followed the "set filename-display"
1392 setting. */
1394 struct decode_line_2_item
1396 decode_line_2_item (std::string &&fullform_, std::string &&displayform_,
1397 bool selected_)
1398 : fullform (std::move (fullform_)),
1399 displayform (std::move (displayform_)),
1400 selected (selected_)
1404 /* The form using symtab_to_fullname. */
1405 std::string fullform;
1407 /* The form using symtab_to_filename_for_display. */
1408 std::string displayform;
1410 /* Field is initialized to zero and it is set to one if the user
1411 requested breakpoint for this entry. */
1412 unsigned int selected : 1;
1415 /* Helper for std::sort to sort decode_line_2_item entries by
1416 DISPLAYFORM and secondarily by FULLFORM. */
1418 static bool
1419 decode_line_2_compare_items (const decode_line_2_item &a,
1420 const decode_line_2_item &b)
1422 if (a.displayform != b.displayform)
1423 return a.displayform < b.displayform;
1424 return a.fullform < b.fullform;
1427 /* Handle multiple results in RESULT depending on SELECT_MODE. This
1428 will either return normally, throw an exception on multiple
1429 results, or present a menu to the user. On return, the SALS vector
1430 in SELF->CANONICAL is set up properly. */
1432 static void
1433 decode_line_2 (struct linespec_state *self,
1434 std::vector<symtab_and_line> *result,
1435 const char *select_mode)
1437 const char *args;
1438 const char *prompt;
1439 int i;
1440 std::vector<const char *> filters;
1441 std::vector<struct decode_line_2_item> items;
1443 gdb_assert (select_mode != multiple_symbols_all);
1444 gdb_assert (self->canonical != NULL);
1445 gdb_assert (!result->empty ());
1447 /* Prepare ITEMS array. */
1448 for (i = 0; i < result->size (); ++i)
1450 const struct linespec_canonical_name *canonical;
1451 std::string displayform;
1453 canonical = &self->canonical_names[i];
1454 gdb_assert (canonical->suffix != NULL);
1456 std::string fullform = canonical_to_fullform (canonical);
1458 if (canonical->symtab == NULL)
1459 displayform = canonical->suffix;
1460 else
1462 const char *fn_for_display;
1464 fn_for_display = symtab_to_filename_for_display (canonical->symtab);
1465 displayform = string_printf ("%s:%s", fn_for_display,
1466 canonical->suffix);
1469 items.emplace_back (std::move (fullform), std::move (displayform),
1470 false);
1473 /* Sort the list of method names. */
1474 std::sort (items.begin (), items.end (), decode_line_2_compare_items);
1476 /* Remove entries with the same FULLFORM. */
1477 items.erase (std::unique (items.begin (), items.end (),
1478 [] (const struct decode_line_2_item &a,
1479 const struct decode_line_2_item &b)
1481 return a.fullform == b.fullform;
1483 items.end ());
1485 if (select_mode == multiple_symbols_cancel && items.size () > 1)
1486 error (_("canceled because the command is ambiguous\n"
1487 "See set/show multiple-symbol."));
1489 if (select_mode == multiple_symbols_all || items.size () == 1)
1491 convert_results_to_lsals (self, result);
1492 return;
1495 printf_unfiltered (_("[0] cancel\n[1] all\n"));
1496 for (i = 0; i < items.size (); i++)
1497 printf_unfiltered ("[%d] %s\n", i + 2, items[i].displayform.c_str ());
1499 prompt = getenv ("PS2");
1500 if (prompt == NULL)
1502 prompt = "> ";
1505 std::string buffer;
1506 args = command_line_input (buffer, prompt, "overload-choice");
1508 if (args == 0 || *args == 0)
1509 error_no_arg (_("one or more choice numbers"));
1511 number_or_range_parser parser (args);
1512 while (!parser.finished ())
1514 int num = parser.get_number ();
1516 if (num == 0)
1517 error (_("canceled"));
1518 else if (num == 1)
1520 /* We intentionally make this result in a single breakpoint,
1521 contrary to what older versions of gdb did. The
1522 rationale is that this lets a user get the
1523 multiple_symbols_all behavior even with the 'ask'
1524 setting; and he can get separate breakpoints by entering
1525 "2-57" at the query. */
1526 convert_results_to_lsals (self, result);
1527 return;
1530 num -= 2;
1531 if (num >= items.size ())
1532 printf_unfiltered (_("No choice number %d.\n"), num);
1533 else
1535 struct decode_line_2_item *item = &items[num];
1537 if (!item->selected)
1539 filters.push_back (item->fullform.c_str ());
1540 item->selected = 1;
1542 else
1544 printf_unfiltered (_("duplicate request for %d ignored.\n"),
1545 num + 2);
1550 filter_results (self, result, filters);
1555 /* The parser of linespec itself. */
1557 /* Throw an appropriate error when SYMBOL is not found (optionally in
1558 FILENAME). */
1560 static void ATTRIBUTE_NORETURN
1561 symbol_not_found_error (const char *symbol, const char *filename)
1563 if (symbol == NULL)
1564 symbol = "";
1566 if (!have_full_symbols ()
1567 && !have_partial_symbols ()
1568 && !have_minimal_symbols ())
1569 throw_error (NOT_FOUND_ERROR,
1570 _("No symbol table is loaded. Use the \"file\" command."));
1572 /* If SYMBOL starts with '$', the user attempted to either lookup
1573 a function/variable in his code starting with '$' or an internal
1574 variable of that name. Since we do not know which, be concise and
1575 explain both possibilities. */
1576 if (*symbol == '$')
1578 if (filename)
1579 throw_error (NOT_FOUND_ERROR,
1580 _("Undefined convenience variable or function \"%s\" "
1581 "not defined in \"%s\"."), symbol, filename);
1582 else
1583 throw_error (NOT_FOUND_ERROR,
1584 _("Undefined convenience variable or function \"%s\" "
1585 "not defined."), symbol);
1587 else
1589 if (filename)
1590 throw_error (NOT_FOUND_ERROR,
1591 _("Function \"%s\" not defined in \"%s\"."),
1592 symbol, filename);
1593 else
1594 throw_error (NOT_FOUND_ERROR,
1595 _("Function \"%s\" not defined."), symbol);
1599 /* Throw an appropriate error when an unexpected token is encountered
1600 in the input. */
1602 static void ATTRIBUTE_NORETURN
1603 unexpected_linespec_error (linespec_parser *parser)
1605 linespec_token token;
1606 static const char * token_type_strings[]
1607 = {"keyword", "colon", "string", "number", "comma", "end of input"};
1609 /* Get the token that generated the error. */
1610 token = linespec_lexer_lex_one (parser);
1612 /* Finally, throw the error. */
1613 if (token.type == LSTOKEN_STRING || token.type == LSTOKEN_NUMBER
1614 || token.type == LSTOKEN_KEYWORD)
1616 gdb::unique_xmalloc_ptr<char> string = copy_token_string (token);
1617 throw_error (GENERIC_ERROR,
1618 _("malformed linespec error: unexpected %s, \"%s\""),
1619 token_type_strings[token.type], string.get ());
1621 else
1622 throw_error (GENERIC_ERROR,
1623 _("malformed linespec error: unexpected %s"),
1624 token_type_strings[token.type]);
1627 /* Throw an undefined label error. */
1629 static void ATTRIBUTE_NORETURN
1630 undefined_label_error (const char *function, const char *label)
1632 if (function != NULL)
1633 throw_error (NOT_FOUND_ERROR,
1634 _("No label \"%s\" defined in function \"%s\"."),
1635 label, function);
1636 else
1637 throw_error (NOT_FOUND_ERROR,
1638 _("No label \"%s\" defined in current function."),
1639 label);
1642 /* Throw a source file not found error. */
1644 static void ATTRIBUTE_NORETURN
1645 source_file_not_found_error (const char *name)
1647 throw_error (NOT_FOUND_ERROR, _("No source file named %s."), name);
1650 /* Unless at EIO, save the current stream position as completion word
1651 point, and consume the next token. */
1653 static linespec_token
1654 save_stream_and_consume_token (linespec_parser *parser)
1656 if (linespec_lexer_peek_token (parser).type != LSTOKEN_EOI)
1657 parser->completion_word = PARSER_STREAM (parser);
1658 return linespec_lexer_consume_token (parser);
1661 /* See description in linespec.h. */
1663 struct line_offset
1664 linespec_parse_line_offset (const char *string)
1666 const char *start = string;
1667 struct line_offset line_offset;
1669 if (*string == '+')
1671 line_offset.sign = LINE_OFFSET_PLUS;
1672 ++string;
1674 else if (*string == '-')
1676 line_offset.sign = LINE_OFFSET_MINUS;
1677 ++string;
1679 else
1680 line_offset.sign = LINE_OFFSET_NONE;
1682 if (*string != '\0' && !isdigit (*string))
1683 error (_("malformed line offset: \"%s\""), start);
1685 /* Right now, we only allow base 10 for offsets. */
1686 line_offset.offset = atoi (string);
1687 return line_offset;
1690 /* In completion mode, if the user is still typing the number, there's
1691 no possible completion to offer. But if there's already input past
1692 the number, setup to expect NEXT. */
1694 static void
1695 set_completion_after_number (linespec_parser *parser,
1696 linespec_complete_what next)
1698 if (*PARSER_STREAM (parser) == ' ')
1700 parser->completion_word = skip_spaces (PARSER_STREAM (parser) + 1);
1701 parser->complete_what = next;
1703 else
1705 parser->completion_word = PARSER_STREAM (parser);
1706 parser->complete_what = linespec_complete_what::NOTHING;
1710 /* Parse the basic_spec in PARSER's input. */
1712 static void
1713 linespec_parse_basic (linespec_parser *parser)
1715 gdb::unique_xmalloc_ptr<char> name;
1716 linespec_token token;
1718 /* Get the next token. */
1719 token = linespec_lexer_lex_one (parser);
1721 /* If it is EOI or KEYWORD, issue an error. */
1722 if (token.type == LSTOKEN_KEYWORD)
1724 parser->complete_what = linespec_complete_what::NOTHING;
1725 unexpected_linespec_error (parser);
1727 else if (token.type == LSTOKEN_EOI)
1729 unexpected_linespec_error (parser);
1731 /* If it is a LSTOKEN_NUMBER, we have an offset. */
1732 else if (token.type == LSTOKEN_NUMBER)
1734 set_completion_after_number (parser, linespec_complete_what::KEYWORD);
1736 /* Record the line offset and get the next token. */
1737 name = copy_token_string (token);
1738 PARSER_EXPLICIT (parser)->line_offset
1739 = linespec_parse_line_offset (name.get ());
1741 /* Get the next token. */
1742 token = linespec_lexer_consume_token (parser);
1744 /* If the next token is a comma, stop parsing and return. */
1745 if (token.type == LSTOKEN_COMMA)
1747 parser->complete_what = linespec_complete_what::NOTHING;
1748 return;
1751 /* If the next token is anything but EOI or KEYWORD, issue
1752 an error. */
1753 if (token.type != LSTOKEN_KEYWORD && token.type != LSTOKEN_EOI)
1754 unexpected_linespec_error (parser);
1757 if (token.type == LSTOKEN_KEYWORD || token.type == LSTOKEN_EOI)
1758 return;
1760 /* Next token must be LSTOKEN_STRING. */
1761 if (token.type != LSTOKEN_STRING)
1763 parser->complete_what = linespec_complete_what::NOTHING;
1764 unexpected_linespec_error (parser);
1767 /* The current token will contain the name of a function, method,
1768 or label. */
1769 name = copy_token_string (token);
1771 if (parser->completion_tracker != NULL)
1773 /* If the function name ends with a ":", then this may be an
1774 incomplete "::" scope operator instead of a label separator.
1775 E.g.,
1776 "b klass:<tab>"
1777 which should expand to:
1778 "b klass::method()"
1780 Do a tentative completion assuming the later. If we find
1781 completions, advance the stream past the colon token and make
1782 it part of the function name/token. */
1784 if (!parser->completion_quote_char
1785 && strcmp (PARSER_STREAM (parser), ":") == 0)
1787 completion_tracker tmp_tracker (false);
1788 const char *source_filename
1789 = PARSER_EXPLICIT (parser)->source_filename.get ();
1790 symbol_name_match_type match_type
1791 = PARSER_EXPLICIT (parser)->func_name_match_type;
1793 linespec_complete_function (tmp_tracker,
1794 parser->completion_word,
1795 match_type,
1796 source_filename);
1798 if (tmp_tracker.have_completions ())
1800 PARSER_STREAM (parser)++;
1801 LS_TOKEN_STOKEN (token).length++;
1803 name.reset (savestring (parser->completion_word,
1804 (PARSER_STREAM (parser)
1805 - parser->completion_word)));
1809 PARSER_EXPLICIT (parser)->function_name = std::move (name);
1811 else
1813 std::vector<block_symbol> symbols;
1814 std::vector<bound_minimal_symbol> minimal_symbols;
1816 /* Try looking it up as a function/method. */
1817 find_linespec_symbols (PARSER_STATE (parser),
1818 PARSER_RESULT (parser)->file_symtabs, name.get (),
1819 PARSER_EXPLICIT (parser)->func_name_match_type,
1820 &symbols, &minimal_symbols);
1822 if (!symbols.empty () || !minimal_symbols.empty ())
1824 PARSER_RESULT (parser)->function_symbols = std::move (symbols);
1825 PARSER_RESULT (parser)->minimal_symbols = std::move (minimal_symbols);
1826 PARSER_EXPLICIT (parser)->function_name = std::move (name);
1828 else
1830 /* NAME was not a function or a method. So it must be a label
1831 name or user specified variable like "break foo.c:$zippo". */
1832 std::vector<block_symbol> labels
1833 = find_label_symbols (PARSER_STATE (parser), {}, &symbols,
1834 name.get ());
1836 if (!labels.empty ())
1838 PARSER_RESULT (parser)->labels.label_symbols = std::move (labels);
1839 PARSER_RESULT (parser)->labels.function_symbols
1840 = std::move (symbols);
1841 PARSER_EXPLICIT (parser)->label_name = std::move (name);
1843 else if (token.type == LSTOKEN_STRING
1844 && *LS_TOKEN_STOKEN (token).ptr == '$')
1846 /* User specified a convenience variable or history value. */
1847 PARSER_EXPLICIT (parser)->line_offset
1848 = linespec_parse_variable (PARSER_STATE (parser), name.get ());
1850 if (PARSER_EXPLICIT (parser)->line_offset.sign == LINE_OFFSET_UNKNOWN)
1852 /* The user-specified variable was not valid. Do not
1853 throw an error here. parse_linespec will do it for us. */
1854 PARSER_EXPLICIT (parser)->function_name = std::move (name);
1855 return;
1858 else
1860 /* The name is also not a label. Abort parsing. Do not throw
1861 an error here. parse_linespec will do it for us. */
1863 /* Save a copy of the name we were trying to lookup. */
1864 PARSER_EXPLICIT (parser)->function_name = std::move (name);
1865 return;
1870 int previous_qc = parser->completion_quote_char;
1872 /* Get the next token. */
1873 token = linespec_lexer_consume_token (parser);
1875 if (token.type == LSTOKEN_EOI)
1877 if (previous_qc && !parser->completion_quote_char)
1878 parser->complete_what = linespec_complete_what::KEYWORD;
1880 else if (token.type == LSTOKEN_COLON)
1882 /* User specified a label or a lineno. */
1883 token = linespec_lexer_consume_token (parser);
1885 if (token.type == LSTOKEN_NUMBER)
1887 /* User specified an offset. Record the line offset and
1888 get the next token. */
1889 set_completion_after_number (parser, linespec_complete_what::KEYWORD);
1891 name = copy_token_string (token);
1892 PARSER_EXPLICIT (parser)->line_offset
1893 = linespec_parse_line_offset (name.get ());
1895 /* Get the next token. */
1896 token = linespec_lexer_consume_token (parser);
1898 else if (token.type == LSTOKEN_EOI && parser->completion_tracker != NULL)
1900 parser->complete_what = linespec_complete_what::LABEL;
1902 else if (token.type == LSTOKEN_STRING)
1904 parser->complete_what = linespec_complete_what::LABEL;
1906 /* If we have text after the label separated by whitespace
1907 (e.g., "b func():lab i<tab>"), don't consider it part of
1908 the label. In completion mode that should complete to
1909 "if", in normal mode, the 'i' should be treated as
1910 garbage. */
1911 if (parser->completion_quote_char == '\0')
1913 const char *ptr = LS_TOKEN_STOKEN (token).ptr;
1914 for (size_t i = 0; i < LS_TOKEN_STOKEN (token).length; i++)
1916 if (ptr[i] == ' ')
1918 LS_TOKEN_STOKEN (token).length = i;
1919 PARSER_STREAM (parser) = skip_spaces (ptr + i + 1);
1920 break;
1925 if (parser->completion_tracker != NULL)
1927 if (PARSER_STREAM (parser)[-1] == ' ')
1929 parser->completion_word = PARSER_STREAM (parser);
1930 parser->complete_what = linespec_complete_what::KEYWORD;
1933 else
1935 std::vector<block_symbol> symbols;
1937 /* Grab a copy of the label's name and look it up. */
1938 name = copy_token_string (token);
1939 std::vector<block_symbol> labels
1940 = find_label_symbols (PARSER_STATE (parser),
1941 PARSER_RESULT (parser)->function_symbols,
1942 &symbols, name.get ());
1944 if (!labels.empty ())
1946 PARSER_RESULT (parser)->labels.label_symbols
1947 = std::move (labels);
1948 PARSER_RESULT (parser)->labels.function_symbols
1949 = std::move (symbols);
1950 PARSER_EXPLICIT (parser)->label_name = std::move (name);
1952 else
1954 /* We don't know what it was, but it isn't a label. */
1955 undefined_label_error
1956 (PARSER_EXPLICIT (parser)->function_name.get (),
1957 name.get ());
1962 /* Check for a line offset. */
1963 token = save_stream_and_consume_token (parser);
1964 if (token.type == LSTOKEN_COLON)
1966 /* Get the next token. */
1967 token = linespec_lexer_consume_token (parser);
1969 /* It must be a line offset. */
1970 if (token.type != LSTOKEN_NUMBER)
1971 unexpected_linespec_error (parser);
1973 /* Record the line offset and get the next token. */
1974 name = copy_token_string (token);
1976 PARSER_EXPLICIT (parser)->line_offset
1977 = linespec_parse_line_offset (name.get ());
1979 /* Get the next token. */
1980 token = linespec_lexer_consume_token (parser);
1983 else
1985 /* Trailing ':' in the input. Issue an error. */
1986 unexpected_linespec_error (parser);
1991 /* Canonicalize the linespec contained in LS. The result is saved into
1992 STATE->canonical. This function handles both linespec and explicit
1993 locations. */
1995 static void
1996 canonicalize_linespec (struct linespec_state *state, const linespec *ls)
1998 /* If canonicalization was not requested, no need to do anything. */
1999 if (!state->canonical)
2000 return;
2002 /* Save everything as an explicit location. */
2003 state->canonical->locspec = ls->explicit_loc.clone ();
2004 explicit_location_spec *explicit_loc
2005 = as_explicit_location_spec (state->canonical->locspec.get ());
2007 if (explicit_loc->label_name != NULL)
2009 state->canonical->special_display = 1;
2011 if (explicit_loc->function_name == NULL)
2013 /* No function was specified, so add the symbol name. */
2014 gdb_assert (ls->labels.function_symbols.size () == 1);
2015 block_symbol s = ls->labels.function_symbols.front ();
2016 explicit_loc->function_name
2017 = make_unique_xstrdup (s.symbol->natural_name ());
2021 /* If this location originally came from a linespec, save a string
2022 representation of it for display and saving to file. */
2023 if (state->is_linespec)
2024 explicit_loc->set_string (explicit_loc->to_linespec ());
2027 /* Given a line offset in LS, construct the relevant SALs. */
2029 static std::vector<symtab_and_line>
2030 create_sals_line_offset (struct linespec_state *self,
2031 linespec *ls)
2033 int use_default = 0;
2035 /* This is where we need to make sure we have good defaults.
2036 We must guarantee that this section of code is never executed
2037 when we are called with just a function name, since
2038 set_default_source_symtab_and_line uses
2039 select_source_symtab that calls us with such an argument. */
2041 if (ls->file_symtabs.size () == 1
2042 && ls->file_symtabs.front () == nullptr)
2044 set_current_program_space (self->program_space);
2046 /* Make sure we have at least a default source line. */
2047 set_default_source_symtab_and_line ();
2048 initialize_defaults (&self->default_symtab, &self->default_line);
2049 ls->file_symtabs
2050 = collect_symtabs_from_filename (self->default_symtab->filename,
2051 self->search_pspace);
2052 use_default = 1;
2055 symtab_and_line val;
2056 val.line = ls->explicit_loc.line_offset.offset;
2057 switch (ls->explicit_loc.line_offset.sign)
2059 case LINE_OFFSET_PLUS:
2060 if (ls->explicit_loc.line_offset.offset == 0)
2061 val.line = 5;
2062 if (use_default)
2063 val.line = self->default_line + val.line;
2064 break;
2066 case LINE_OFFSET_MINUS:
2067 if (ls->explicit_loc.line_offset.offset == 0)
2068 val.line = 15;
2069 if (use_default)
2070 val.line = self->default_line - val.line;
2071 else
2072 val.line = -val.line;
2073 break;
2075 case LINE_OFFSET_NONE:
2076 break; /* No need to adjust val.line. */
2079 std::vector<symtab_and_line> values;
2080 if (self->list_mode)
2081 values = decode_digits_list_mode (self, ls, val);
2082 else
2084 const linetable_entry *best_entry = NULL;
2085 int i, j;
2087 std::vector<symtab_and_line> intermediate_results
2088 = decode_digits_ordinary (self, ls, val.line, &best_entry);
2089 if (intermediate_results.empty () && best_entry != NULL)
2090 intermediate_results = decode_digits_ordinary (self, ls,
2091 best_entry->line,
2092 &best_entry);
2094 /* For optimized code, the compiler can scatter one source line
2095 across disjoint ranges of PC values, even when no duplicate
2096 functions or inline functions are involved. For example,
2097 'for (;;)' inside a non-template, non-inline, and non-ctor-or-dtor
2098 function can result in two PC ranges. In this case, we don't
2099 want to set a breakpoint on the first PC of each range. To filter
2100 such cases, we use containing blocks -- for each PC found
2101 above, we see if there are other PCs that are in the same
2102 block. If yes, the other PCs are filtered out. */
2104 gdb::def_vector<int> filter (intermediate_results.size ());
2105 gdb::def_vector<const block *> blocks (intermediate_results.size ());
2107 for (i = 0; i < intermediate_results.size (); ++i)
2109 set_current_program_space (intermediate_results[i].pspace);
2111 filter[i] = 1;
2112 blocks[i] = block_for_pc_sect (intermediate_results[i].pc,
2113 intermediate_results[i].section);
2116 for (i = 0; i < intermediate_results.size (); ++i)
2118 if (blocks[i] != NULL)
2119 for (j = i + 1; j < intermediate_results.size (); ++j)
2121 if (blocks[j] == blocks[i])
2123 filter[j] = 0;
2124 break;
2129 for (i = 0; i < intermediate_results.size (); ++i)
2130 if (filter[i])
2132 struct symbol *sym = (blocks[i]
2133 ? blocks[i]->containing_function ()
2134 : NULL);
2136 if (self->funfirstline)
2137 skip_prologue_sal (&intermediate_results[i]);
2138 intermediate_results[i].symbol = sym;
2139 add_sal_to_sals (self, &values, &intermediate_results[i],
2140 sym ? sym->natural_name () : NULL, 0);
2144 if (values.empty ())
2146 if (ls->explicit_loc.source_filename)
2147 throw_error (NOT_FOUND_ERROR, _("No line %d in file \"%s\"."),
2148 val.line, ls->explicit_loc.source_filename.get ());
2149 else
2150 throw_error (NOT_FOUND_ERROR, _("No line %d in the current file."),
2151 val.line);
2154 return values;
2157 /* Convert the given ADDRESS into SaLs. */
2159 static std::vector<symtab_and_line>
2160 convert_address_location_to_sals (struct linespec_state *self,
2161 CORE_ADDR address)
2163 symtab_and_line sal = find_pc_line (address, 0);
2164 sal.pc = address;
2165 sal.section = find_pc_overlay (address);
2166 sal.explicit_pc = 1;
2167 sal.symbol = find_pc_sect_containing_function (sal.pc, sal.section);
2169 std::vector<symtab_and_line> sals;
2170 add_sal_to_sals (self, &sals, &sal, core_addr_to_string (address), 1);
2172 return sals;
2175 /* Create and return SALs from the linespec LS. */
2177 static std::vector<symtab_and_line>
2178 convert_linespec_to_sals (struct linespec_state *state, linespec *ls)
2180 std::vector<symtab_and_line> sals;
2182 if (!ls->labels.label_symbols.empty ())
2184 /* We have just a bunch of functions/methods or labels. */
2185 struct symtab_and_line sal;
2187 for (const auto &sym : ls->labels.label_symbols)
2189 struct program_space *pspace
2190 = sym.symbol->symtab ()->compunit ()->objfile ()->pspace;
2192 if (symbol_to_sal (&sal, state->funfirstline, sym.symbol)
2193 && maybe_add_address (state->addr_set, pspace, sal.pc))
2194 add_sal_to_sals (state, &sals, &sal,
2195 sym.symbol->natural_name (), 0);
2198 else if (!ls->function_symbols.empty () || !ls->minimal_symbols.empty ())
2200 /* We have just a bunch of functions and/or methods. */
2201 if (!ls->function_symbols.empty ())
2203 /* Sort symbols so that symbols with the same program space are next
2204 to each other. */
2205 std::sort (ls->function_symbols.begin (),
2206 ls->function_symbols.end (),
2207 compare_symbols);
2209 for (const auto &sym : ls->function_symbols)
2211 program_space *pspace
2212 = sym.symbol->symtab ()->compunit ()->objfile ()->pspace;
2213 set_current_program_space (pspace);
2215 /* Don't skip to the first line of the function if we
2216 had found an ifunc minimal symbol for this function,
2217 because that means that this function is an ifunc
2218 resolver with the same name as the ifunc itself. */
2219 bool found_ifunc = false;
2221 if (state->funfirstline
2222 && !ls->minimal_symbols.empty ()
2223 && sym.symbol->aclass () == LOC_BLOCK)
2225 const CORE_ADDR addr
2226 = sym.symbol->value_block ()->entry_pc ();
2228 for (const auto &elem : ls->minimal_symbols)
2230 if (elem.minsym->type () == mst_text_gnu_ifunc
2231 || elem.minsym->type () == mst_data_gnu_ifunc)
2233 CORE_ADDR msym_addr = elem.value_address ();
2234 if (elem.minsym->type () == mst_data_gnu_ifunc)
2236 struct gdbarch *gdbarch
2237 = elem.objfile->arch ();
2238 msym_addr
2239 = (gdbarch_convert_from_func_ptr_addr
2240 (gdbarch,
2241 msym_addr,
2242 current_inferior ()->top_target ()));
2245 if (msym_addr == addr)
2247 found_ifunc = true;
2248 break;
2254 if (!found_ifunc)
2256 symtab_and_line sal;
2257 if (symbol_to_sal (&sal, state->funfirstline, sym.symbol)
2258 && maybe_add_address (state->addr_set, pspace, sal.pc))
2259 add_sal_to_sals (state, &sals, &sal,
2260 sym.symbol->natural_name (), 0);
2265 if (!ls->minimal_symbols.empty ())
2267 /* Sort minimal symbols by program space, too */
2268 std::sort (ls->minimal_symbols.begin (),
2269 ls->minimal_symbols.end (),
2270 compare_msymbols);
2272 for (const auto &elem : ls->minimal_symbols)
2274 program_space *pspace = elem.objfile->pspace;
2275 set_current_program_space (pspace);
2276 minsym_found (state, elem.objfile, elem.minsym, &sals);
2280 else if (ls->explicit_loc.line_offset.sign != LINE_OFFSET_UNKNOWN)
2282 /* Only an offset was specified. */
2283 sals = create_sals_line_offset (state, ls);
2285 /* Make sure we have a filename for canonicalization. */
2286 if (ls->explicit_loc.source_filename == NULL)
2288 const char *filename = state->default_symtab->filename;
2290 /* It may be more appropriate to keep DEFAULT_SYMTAB in its symtab
2291 form so that displaying SOURCE_FILENAME can follow the current
2292 FILENAME_DISPLAY_STRING setting. But as it is used only rarely
2293 it has been kept for code simplicity only in absolute form. */
2294 ls->explicit_loc.source_filename = make_unique_xstrdup (filename);
2297 else
2299 /* We haven't found any results... */
2300 return sals;
2303 canonicalize_linespec (state, ls);
2305 if (!sals.empty () && state->canonical != NULL)
2306 state->canonical->pre_expanded = 1;
2308 return sals;
2311 /* Build RESULT from the explicit location spec components
2312 SOURCE_FILENAME, FUNCTION_NAME, LABEL_NAME and LINE_OFFSET. */
2314 static void
2315 convert_explicit_location_spec_to_linespec
2316 (struct linespec_state *self,
2317 linespec *result,
2318 const char *source_filename,
2319 const char *function_name,
2320 symbol_name_match_type fname_match_type,
2321 const char *label_name,
2322 struct line_offset line_offset)
2324 std::vector<bound_minimal_symbol> minimal_symbols;
2326 result->explicit_loc.func_name_match_type = fname_match_type;
2328 if (source_filename != NULL)
2332 result->file_symtabs
2333 = symtabs_from_filename (source_filename, self->search_pspace);
2335 catch (const gdb_exception_error &except)
2337 source_file_not_found_error (source_filename);
2339 result->explicit_loc.source_filename
2340 = make_unique_xstrdup (source_filename);
2342 else
2344 /* A NULL entry means to use the default symtab. */
2345 result->file_symtabs.push_back (nullptr);
2348 if (function_name != NULL)
2350 std::vector<block_symbol> symbols;
2352 find_linespec_symbols (self, result->file_symtabs,
2353 function_name, fname_match_type,
2354 &symbols, &minimal_symbols);
2356 if (symbols.empty () && minimal_symbols.empty ())
2357 symbol_not_found_error (function_name,
2358 result->explicit_loc.source_filename.get ());
2360 result->explicit_loc.function_name
2361 = make_unique_xstrdup (function_name);
2362 result->function_symbols = std::move (symbols);
2363 result->minimal_symbols = std::move (minimal_symbols);
2366 if (label_name != NULL)
2368 std::vector<block_symbol> symbols;
2369 std::vector<block_symbol> labels
2370 = find_label_symbols (self, result->function_symbols,
2371 &symbols, label_name);
2373 if (labels.empty ())
2374 undefined_label_error (result->explicit_loc.function_name.get (),
2375 label_name);
2377 result->explicit_loc.label_name = make_unique_xstrdup (label_name);
2378 result->labels.label_symbols = labels;
2379 result->labels.function_symbols = std::move (symbols);
2382 if (line_offset.sign != LINE_OFFSET_UNKNOWN)
2383 result->explicit_loc.line_offset = line_offset;
2386 /* Convert the explicit location EXPLICIT_LOC into SaLs. */
2388 static std::vector<symtab_and_line>
2389 convert_explicit_location_spec_to_sals
2390 (struct linespec_state *self,
2391 linespec *result,
2392 const explicit_location_spec *explicit_spec)
2394 convert_explicit_location_spec_to_linespec (self, result,
2395 explicit_spec->source_filename.get (),
2396 explicit_spec->function_name.get (),
2397 explicit_spec->func_name_match_type,
2398 explicit_spec->label_name.get (),
2399 explicit_spec->line_offset);
2400 return convert_linespec_to_sals (self, result);
2403 /* Parse a string that specifies a linespec.
2405 The basic grammar of linespecs:
2407 linespec -> var_spec | basic_spec
2408 var_spec -> '$' (STRING | NUMBER)
2410 basic_spec -> file_offset_spec | function_spec | label_spec
2411 file_offset_spec -> opt_file_spec offset_spec
2412 function_spec -> opt_file_spec function_name_spec opt_label_spec
2413 label_spec -> label_name_spec
2415 opt_file_spec -> "" | file_name_spec ':'
2416 opt_label_spec -> "" | ':' label_name_spec
2418 file_name_spec -> STRING
2419 function_name_spec -> STRING
2420 label_name_spec -> STRING
2421 function_name_spec -> STRING
2422 offset_spec -> NUMBER
2423 -> '+' NUMBER
2424 -> '-' NUMBER
2426 This may all be followed by several keywords such as "if EXPR",
2427 which we ignore.
2429 A comma will terminate parsing.
2431 The function may be an undebuggable function found in minimal symbol table.
2433 If the argument FUNFIRSTLINE is nonzero, we want the first line
2434 of real code inside a function when a function is specified, and it is
2435 not OK to specify a variable or type to get its line number.
2437 DEFAULT_SYMTAB specifies the file to use if none is specified.
2438 It defaults to current_source_symtab.
2439 DEFAULT_LINE specifies the line number to use for relative
2440 line numbers (that start with signs). Defaults to current_source_line.
2441 If CANONICAL is non-NULL, store an array of strings containing the canonical
2442 line specs there if necessary. Currently overloaded member functions and
2443 line numbers or static functions without a filename yield a canonical
2444 line spec. The array and the line spec strings are allocated on the heap,
2445 it is the callers responsibility to free them.
2447 Note that it is possible to return zero for the symtab
2448 if no file is validly specified. Callers must check that.
2449 Also, the line number returned may be invalid. */
2451 /* Parse the linespec in ARG, which must not be nullptr. MATCH_TYPE
2452 indicates how function names should be matched. */
2454 static std::vector<symtab_and_line>
2455 parse_linespec (linespec_parser *parser, const char *arg,
2456 symbol_name_match_type match_type)
2458 gdb_assert (arg != nullptr);
2460 struct gdb_exception file_exception;
2462 /* A special case to start. It has become quite popular for
2463 IDEs to work around bugs in the previous parser by quoting
2464 the entire linespec, so we attempt to deal with this nicely. */
2465 parser->is_quote_enclosed = 0;
2466 if (parser->completion_tracker == NULL
2467 && !is_ada_operator (arg)
2468 && *arg != '\0'
2469 && strchr (linespec_quote_characters, *arg) != NULL)
2471 const char *end = skip_quote_char (arg + 1, *arg);
2472 if (end != NULL && is_closing_quote_enclosed (end))
2474 /* Here's the special case. Skip ARG past the initial
2475 quote. */
2476 ++arg;
2477 parser->is_quote_enclosed = 1;
2481 parser->lexer.saved_arg = arg;
2482 parser->lexer.stream = arg;
2483 parser->completion_word = arg;
2484 parser->complete_what = linespec_complete_what::FUNCTION;
2485 PARSER_EXPLICIT (parser)->func_name_match_type = match_type;
2487 /* Initialize the default symtab and line offset. */
2488 initialize_defaults (&PARSER_STATE (parser)->default_symtab,
2489 &PARSER_STATE (parser)->default_line);
2491 /* Objective-C shortcut. */
2492 if (parser->completion_tracker == NULL)
2494 std::vector<symtab_and_line> values
2495 = decode_objc (PARSER_STATE (parser), PARSER_RESULT (parser), arg);
2496 if (!values.empty ())
2497 return values;
2499 else
2501 /* "-"/"+" is either an objc selector, or a number. There's
2502 nothing to complete the latter to, so just let the caller
2503 complete on functions, which finds objc selectors, if there's
2504 any. */
2505 if ((arg[0] == '-' || arg[0] == '+') && arg[1] == '\0')
2506 return {};
2509 /* Start parsing. */
2511 /* Get the first token. */
2512 linespec_token token = linespec_lexer_consume_token (parser);
2514 /* It must be either LSTOKEN_STRING or LSTOKEN_NUMBER. */
2515 if (token.type == LSTOKEN_STRING && *LS_TOKEN_STOKEN (token).ptr == '$')
2517 /* A NULL entry means to use GLOBAL_DEFAULT_SYMTAB. */
2518 if (parser->completion_tracker == NULL)
2519 PARSER_RESULT (parser)->file_symtabs.push_back (nullptr);
2521 /* User specified a convenience variable or history value. */
2522 gdb::unique_xmalloc_ptr<char> var = copy_token_string (token);
2523 PARSER_EXPLICIT (parser)->line_offset
2524 = linespec_parse_variable (PARSER_STATE (parser), var.get ());
2526 /* If a line_offset wasn't found (VAR is the name of a user
2527 variable/function), then skip to normal symbol processing. */
2528 if (PARSER_EXPLICIT (parser)->line_offset.sign != LINE_OFFSET_UNKNOWN)
2530 /* Consume this token. */
2531 linespec_lexer_consume_token (parser);
2533 goto convert_to_sals;
2536 else if (token.type == LSTOKEN_EOI && parser->completion_tracker != NULL)
2538 /* Let the default linespec_complete_what::FUNCTION kick in. */
2539 unexpected_linespec_error (parser);
2541 else if (token.type != LSTOKEN_STRING && token.type != LSTOKEN_NUMBER)
2543 parser->complete_what = linespec_complete_what::NOTHING;
2544 unexpected_linespec_error (parser);
2547 /* Shortcut: If the next token is not LSTOKEN_COLON, we know that
2548 this token cannot represent a filename. */
2549 token = linespec_lexer_peek_token (parser);
2551 if (token.type == LSTOKEN_COLON)
2553 /* Get the current token again and extract the filename. */
2554 token = linespec_lexer_lex_one (parser);
2555 gdb::unique_xmalloc_ptr<char> user_filename = copy_token_string (token);
2557 /* Check if the input is a filename. */
2560 PARSER_RESULT (parser)->file_symtabs
2561 = symtabs_from_filename (user_filename.get (),
2562 PARSER_STATE (parser)->search_pspace);
2564 catch (gdb_exception_error &ex)
2566 file_exception = std::move (ex);
2569 if (file_exception.reason >= 0)
2571 /* Symtabs were found for the file. Record the filename. */
2572 PARSER_EXPLICIT (parser)->source_filename = std::move (user_filename);
2574 /* Get the next token. */
2575 token = linespec_lexer_consume_token (parser);
2577 /* This is LSTOKEN_COLON; consume it. */
2578 linespec_lexer_consume_token (parser);
2580 else
2582 /* A NULL entry means to use GLOBAL_DEFAULT_SYMTAB. */
2583 PARSER_RESULT (parser)->file_symtabs.push_back (nullptr);
2586 /* If the next token is not EOI, KEYWORD, or COMMA, issue an error. */
2587 else if (parser->completion_tracker == NULL
2588 && (token.type != LSTOKEN_EOI && token.type != LSTOKEN_KEYWORD
2589 && token.type != LSTOKEN_COMMA))
2591 /* TOKEN is the _next_ token, not the one currently in the parser.
2592 Consuming the token will give the correct error message. */
2593 linespec_lexer_consume_token (parser);
2594 unexpected_linespec_error (parser);
2596 else
2598 /* A NULL entry means to use GLOBAL_DEFAULT_SYMTAB. */
2599 PARSER_RESULT (parser)->file_symtabs.push_back (nullptr);
2602 /* Parse the rest of the linespec. */
2603 linespec_parse_basic (parser);
2605 if (parser->completion_tracker == NULL
2606 && PARSER_RESULT (parser)->function_symbols.empty ()
2607 && PARSER_RESULT (parser)->labels.label_symbols.empty ()
2608 && PARSER_EXPLICIT (parser)->line_offset.sign == LINE_OFFSET_UNKNOWN
2609 && PARSER_RESULT (parser)->minimal_symbols.empty ())
2611 /* The linespec didn't parse. Re-throw the file exception if
2612 there was one. */
2613 if (file_exception.reason < 0)
2614 throw_exception (std::move (file_exception));
2616 /* Otherwise, the symbol is not found. */
2617 symbol_not_found_error
2618 (PARSER_EXPLICIT (parser)->function_name.get (),
2619 PARSER_EXPLICIT (parser)->source_filename.get ());
2622 convert_to_sals:
2624 /* Get the last token and record how much of the input was parsed,
2625 if necessary. */
2626 token = linespec_lexer_lex_one (parser);
2627 if (token.type != LSTOKEN_EOI && token.type != LSTOKEN_KEYWORD)
2628 unexpected_linespec_error (parser);
2629 else if (token.type == LSTOKEN_KEYWORD)
2631 /* Setup the completion word past the keyword. Lexing never
2632 advances past a keyword automatically, so skip it
2633 manually. */
2634 parser->completion_word
2635 = skip_spaces (skip_to_space (PARSER_STREAM (parser)));
2636 parser->complete_what = linespec_complete_what::EXPRESSION;
2639 /* Convert the data in PARSER_RESULT to SALs. */
2640 if (parser->completion_tracker == NULL)
2641 return convert_linespec_to_sals (PARSER_STATE (parser),
2642 PARSER_RESULT (parser));
2644 return {};
2648 /* A constructor for linespec_state. */
2650 static void
2651 linespec_state_constructor (struct linespec_state *self,
2652 int flags, const struct language_defn *language,
2653 struct program_space *search_pspace,
2654 struct symtab *default_symtab,
2655 int default_line,
2656 struct linespec_result *canonical)
2658 memset (self, 0, sizeof (*self));
2659 self->language = language;
2660 self->funfirstline = (flags & DECODE_LINE_FUNFIRSTLINE) ? 1 : 0;
2661 self->list_mode = (flags & DECODE_LINE_LIST_MODE) ? 1 : 0;
2662 self->search_pspace = search_pspace;
2663 self->default_symtab = default_symtab;
2664 self->default_line = default_line;
2665 self->canonical = canonical;
2666 self->program_space = current_program_space;
2667 self->addr_set = htab_create_alloc (10, hash_address_entry, eq_address_entry,
2668 xfree, xcalloc, xfree);
2669 self->is_linespec = 0;
2672 /* Initialize a new linespec parser. */
2674 linespec_parser::linespec_parser (int flags,
2675 const struct language_defn *language,
2676 struct program_space *search_pspace,
2677 struct symtab *default_symtab,
2678 int default_line,
2679 struct linespec_result *canonical)
2681 lexer.current.type = LSTOKEN_CONSUMED;
2682 PARSER_EXPLICIT (this)->func_name_match_type
2683 = symbol_name_match_type::WILD;
2684 PARSER_EXPLICIT (this)->line_offset.sign = LINE_OFFSET_UNKNOWN;
2685 linespec_state_constructor (PARSER_STATE (this), flags, language,
2686 search_pspace,
2687 default_symtab, default_line, canonical);
2690 /* A destructor for linespec_state. */
2692 static void
2693 linespec_state_destructor (struct linespec_state *self)
2695 htab_delete (self->addr_set);
2696 xfree (self->canonical_names);
2699 /* Delete a linespec parser. */
2701 linespec_parser::~linespec_parser ()
2703 linespec_state_destructor (PARSER_STATE (this));
2706 /* See description in linespec.h. */
2708 void
2709 linespec_lex_to_end (const char **stringp)
2711 linespec_token token;
2712 const char *orig;
2714 if (stringp == NULL || *stringp == NULL)
2715 return;
2717 linespec_parser parser (0, current_language, NULL, NULL, 0, NULL);
2718 parser.lexer.saved_arg = *stringp;
2719 PARSER_STREAM (&parser) = orig = *stringp;
2723 /* Stop before any comma tokens; we need it to keep it
2724 as the next token in the string. */
2725 token = linespec_lexer_peek_token (&parser);
2726 if (token.type == LSTOKEN_COMMA)
2727 break;
2728 token = linespec_lexer_consume_token (&parser);
2730 while (token.type != LSTOKEN_EOI && token.type != LSTOKEN_KEYWORD);
2732 *stringp += PARSER_STREAM (&parser) - orig;
2735 /* See linespec.h. */
2737 void
2738 linespec_complete_function (completion_tracker &tracker,
2739 const char *function,
2740 symbol_name_match_type func_match_type,
2741 const char *source_filename)
2743 complete_symbol_mode mode = complete_symbol_mode::LINESPEC;
2745 if (source_filename != NULL)
2747 collect_file_symbol_completion_matches (tracker, mode, func_match_type,
2748 function, function, source_filename);
2750 else
2752 collect_symbol_completion_matches (tracker, mode, func_match_type,
2753 function, function);
2758 /* Helper for complete_linespec to simplify it. SOURCE_FILENAME is
2759 only meaningful if COMPONENT is FUNCTION. */
2761 static void
2762 complete_linespec_component (linespec_parser *parser,
2763 completion_tracker &tracker,
2764 const char *text,
2765 linespec_complete_what component,
2766 const char *source_filename)
2768 if (component == linespec_complete_what::KEYWORD)
2770 complete_on_enum (tracker, linespec_keywords, text, text);
2772 else if (component == linespec_complete_what::EXPRESSION)
2774 const char *word
2775 = advance_to_expression_complete_word_point (tracker, text);
2776 complete_expression (tracker, text, word);
2778 else if (component == linespec_complete_what::FUNCTION)
2780 completion_list fn_list;
2782 symbol_name_match_type match_type
2783 = PARSER_EXPLICIT (parser)->func_name_match_type;
2784 linespec_complete_function (tracker, text, match_type, source_filename);
2785 if (source_filename == NULL)
2787 /* Haven't seen a source component, like in "b
2788 file.c:function[TAB]". Maybe this wasn't a function, but
2789 a filename instead, like "b file.[TAB]". */
2790 fn_list = complete_source_filenames (text);
2793 /* If we only have a single filename completion, append a ':' for
2794 the user, since that's the only thing that can usefully follow
2795 the filename. */
2796 if (fn_list.size () == 1 && !tracker.have_completions ())
2798 char *fn = fn_list[0].release ();
2800 /* If we also need to append a quote char, it needs to be
2801 appended before the ':'. Append it now, and make ':' the
2802 new "quote" char. */
2803 if (tracker.quote_char ())
2805 char quote_char_str[2] = { (char) tracker.quote_char () };
2807 fn = reconcat (fn, fn, quote_char_str, (char *) NULL);
2808 tracker.set_quote_char (':');
2810 else
2811 fn = reconcat (fn, fn, ":", (char *) NULL);
2812 fn_list[0].reset (fn);
2814 /* Tell readline to skip appending a space. */
2815 tracker.set_suppress_append_ws (true);
2817 tracker.add_completions (std::move (fn_list));
2821 /* Helper for linespec_complete_label. Find labels that match
2822 LABEL_NAME in the function symbols listed in the PARSER, and add
2823 them to the tracker. */
2825 static void
2826 complete_label (completion_tracker &tracker,
2827 linespec_parser *parser,
2828 const char *label_name)
2830 std::vector<block_symbol> label_function_symbols;
2831 std::vector<block_symbol> labels
2832 = find_label_symbols (PARSER_STATE (parser),
2833 PARSER_RESULT (parser)->function_symbols,
2834 &label_function_symbols,
2835 label_name, true);
2837 for (const auto &label : labels)
2839 char *match = xstrdup (label.symbol->search_name ());
2840 tracker.add_completion (gdb::unique_xmalloc_ptr<char> (match));
2844 /* See linespec.h. */
2846 void
2847 linespec_complete_label (completion_tracker &tracker,
2848 const struct language_defn *language,
2849 const char *source_filename,
2850 const char *function_name,
2851 symbol_name_match_type func_name_match_type,
2852 const char *label_name)
2854 linespec_parser parser (0, language, NULL, NULL, 0, NULL);
2856 line_offset unknown_offset;
2860 convert_explicit_location_spec_to_linespec (PARSER_STATE (&parser),
2861 PARSER_RESULT (&parser),
2862 source_filename,
2863 function_name,
2864 func_name_match_type,
2865 NULL, unknown_offset);
2867 catch (const gdb_exception_error &ex)
2869 return;
2872 complete_label (tracker, &parser, label_name);
2875 /* See description in linespec.h. */
2877 void
2878 linespec_complete (completion_tracker &tracker, const char *text,
2879 symbol_name_match_type match_type)
2881 const char *orig = text;
2883 linespec_parser parser (0, current_language, NULL, NULL, 0, NULL);
2884 parser.lexer.saved_arg = text;
2885 PARSER_EXPLICIT (&parser)->func_name_match_type = match_type;
2886 PARSER_STREAM (&parser) = text;
2888 parser.completion_tracker = &tracker;
2889 PARSER_STATE (&parser)->is_linespec = 1;
2891 /* Parse as much as possible. parser.completion_word will hold
2892 furthest completion point we managed to parse to. */
2895 parse_linespec (&parser, text, match_type);
2897 catch (const gdb_exception_error &except)
2901 if (parser.completion_quote_char != '\0'
2902 && parser.completion_quote_end != NULL
2903 && parser.completion_quote_end[1] == '\0')
2905 /* If completing a quoted string with the cursor right at
2906 terminating quote char, complete the completion word without
2907 interpretation, so that readline advances the cursor one
2908 whitespace past the quote, even if there's no match. This
2909 makes these cases behave the same:
2911 before: "b function()"
2912 after: "b function() "
2914 before: "b 'function()'"
2915 after: "b 'function()' "
2917 and trusts the user in this case:
2919 before: "b 'not_loaded_function_yet()'"
2920 after: "b 'not_loaded_function_yet()' "
2922 parser.complete_what = linespec_complete_what::NOTHING;
2923 parser.completion_quote_char = '\0';
2925 gdb::unique_xmalloc_ptr<char> text_copy
2926 (xstrdup (parser.completion_word));
2927 tracker.add_completion (std::move (text_copy));
2930 tracker.set_quote_char (parser.completion_quote_char);
2932 if (parser.complete_what == linespec_complete_what::LABEL)
2934 parser.complete_what = linespec_complete_what::NOTHING;
2936 const char *func_name = PARSER_EXPLICIT (&parser)->function_name.get ();
2938 std::vector<block_symbol> function_symbols;
2939 std::vector<bound_minimal_symbol> minimal_symbols;
2940 find_linespec_symbols (PARSER_STATE (&parser),
2941 PARSER_RESULT (&parser)->file_symtabs,
2942 func_name, match_type,
2943 &function_symbols, &minimal_symbols);
2945 PARSER_RESULT (&parser)->function_symbols = std::move (function_symbols);
2946 PARSER_RESULT (&parser)->minimal_symbols = std::move (minimal_symbols);
2948 complete_label (tracker, &parser, parser.completion_word);
2950 else if (parser.complete_what == linespec_complete_what::FUNCTION)
2952 /* While parsing/lexing, we didn't know whether the completion
2953 word completes to a unique function/source name already or
2954 not.
2956 E.g.:
2957 "b function() <tab>"
2958 may need to complete either to:
2959 "b function() const"
2960 or to:
2961 "b function() if/thread/task"
2963 Or, this:
2964 "b foo t"
2965 may need to complete either to:
2966 "b foo template_fun<T>()"
2967 with "foo" being the template function's return type, or to:
2968 "b foo thread/task"
2970 Or, this:
2971 "b file<TAB>"
2972 may need to complete either to a source file name:
2973 "b file.c"
2974 or this, also a filename, but a unique completion:
2975 "b file.c:"
2976 or to a function name:
2977 "b file_function"
2979 Address that by completing assuming source or function, and
2980 seeing if we find a completion that matches exactly the
2981 completion word. If so, then it must be a function (see note
2982 below) and we advance the completion word to the end of input
2983 and switch to KEYWORD completion mode.
2985 Note: if we find a unique completion for a source filename,
2986 then it won't match the completion word, because the LCD will
2987 contain a trailing ':'. And if we're completing at or after
2988 the ':', then complete_linespec_component won't try to
2989 complete on source filenames. */
2991 const char *word = parser.completion_word;
2993 complete_linespec_component
2994 (&parser, tracker,
2995 parser.completion_word,
2996 linespec_complete_what::FUNCTION,
2997 PARSER_EXPLICIT (&parser)->source_filename.get ());
2999 parser.complete_what = linespec_complete_what::NOTHING;
3001 if (tracker.quote_char ())
3003 /* The function/file name was not close-quoted, so this
3004 can't be a keyword. Note: complete_linespec_component
3005 may have swapped the original quote char for ':' when we
3006 get here, but that still indicates the same. */
3008 else if (!tracker.have_completions ())
3010 size_t key_start;
3011 size_t wordlen = strlen (parser.completion_word);
3013 key_start
3014 = string_find_incomplete_keyword_at_end (linespec_keywords,
3015 parser.completion_word,
3016 wordlen);
3018 if (key_start != -1
3019 || (wordlen > 0
3020 && parser.completion_word[wordlen - 1] == ' '))
3022 parser.completion_word += key_start;
3023 parser.complete_what = linespec_complete_what::KEYWORD;
3026 else if (tracker.completes_to_completion_word (word))
3028 /* Skip the function and complete on keywords. */
3029 parser.completion_word += strlen (word);
3030 parser.complete_what = linespec_complete_what::KEYWORD;
3031 tracker.discard_completions ();
3035 tracker.advance_custom_word_point_by (parser.completion_word - orig);
3037 complete_linespec_component
3038 (&parser, tracker,
3039 parser.completion_word,
3040 parser.complete_what,
3041 PARSER_EXPLICIT (&parser)->source_filename.get ());
3043 /* If we're past the "filename:function:label:offset" linespec, and
3044 didn't find any match, then assume the user might want to create
3045 a pending breakpoint anyway and offer the keyword
3046 completions. */
3047 if (!parser.completion_quote_char
3048 && (parser.complete_what == linespec_complete_what::FUNCTION
3049 || parser.complete_what == linespec_complete_what::LABEL
3050 || parser.complete_what == linespec_complete_what::NOTHING)
3051 && !tracker.have_completions ())
3053 const char *end
3054 = parser.completion_word + strlen (parser.completion_word);
3056 if (end > orig && end[-1] == ' ')
3058 tracker.advance_custom_word_point_by (end - parser.completion_word);
3060 complete_linespec_component (&parser, tracker, end,
3061 linespec_complete_what::KEYWORD,
3062 NULL);
3067 /* A helper function for decode_line_full and decode_line_1 to
3068 turn LOCSPEC into std::vector<symtab_and_line>. */
3070 static std::vector<symtab_and_line>
3071 location_spec_to_sals (linespec_parser *parser,
3072 const location_spec *locspec)
3074 std::vector<symtab_and_line> result;
3076 switch (locspec->type ())
3078 case LINESPEC_LOCATION_SPEC:
3080 const linespec_location_spec *ls = as_linespec_location_spec (locspec);
3081 PARSER_STATE (parser)->is_linespec = 1;
3082 result = parse_linespec (parser, ls->spec_string.get (),
3083 ls->match_type);
3085 break;
3087 case ADDRESS_LOCATION_SPEC:
3089 const address_location_spec *addr_spec
3090 = as_address_location_spec (locspec);
3091 const char *addr_string = addr_spec->to_string ();
3092 CORE_ADDR addr;
3094 if (addr_string != NULL)
3096 addr = linespec_expression_to_pc (&addr_string);
3097 if (PARSER_STATE (parser)->canonical != NULL)
3098 PARSER_STATE (parser)->canonical->locspec = locspec->clone ();
3100 else
3101 addr = addr_spec->address;
3103 result = convert_address_location_to_sals (PARSER_STATE (parser),
3104 addr);
3106 break;
3108 case EXPLICIT_LOCATION_SPEC:
3110 const explicit_location_spec *explicit_locspec
3111 = as_explicit_location_spec (locspec);
3112 result = convert_explicit_location_spec_to_sals (PARSER_STATE (parser),
3113 PARSER_RESULT (parser),
3114 explicit_locspec);
3116 break;
3118 case PROBE_LOCATION_SPEC:
3119 /* Probes are handled by their own decoders. */
3120 gdb_assert_not_reached ("attempt to decode probe location");
3121 break;
3123 default:
3124 gdb_assert_not_reached ("unhandled location spec type");
3127 return result;
3130 /* See linespec.h. */
3132 void
3133 decode_line_full (struct location_spec *locspec, int flags,
3134 struct program_space *search_pspace,
3135 struct symtab *default_symtab,
3136 int default_line, struct linespec_result *canonical,
3137 const char *select_mode,
3138 const char *filter)
3140 std::vector<const char *> filters;
3141 struct linespec_state *state;
3143 gdb_assert (canonical != NULL);
3144 /* The filter only makes sense for 'all'. */
3145 gdb_assert (filter == NULL || select_mode == multiple_symbols_all);
3146 gdb_assert (select_mode == NULL
3147 || select_mode == multiple_symbols_all
3148 || select_mode == multiple_symbols_ask
3149 || select_mode == multiple_symbols_cancel);
3150 gdb_assert ((flags & DECODE_LINE_LIST_MODE) == 0);
3152 linespec_parser parser (flags, current_language,
3153 search_pspace, default_symtab,
3154 default_line, canonical);
3156 scoped_restore_current_program_space restore_pspace;
3158 std::vector<symtab_and_line> result = location_spec_to_sals (&parser,
3159 locspec);
3160 state = PARSER_STATE (&parser);
3162 if (result.size () == 0)
3163 throw_error (NOT_SUPPORTED_ERROR, _("Location %s not available"),
3164 locspec->to_string ());
3166 gdb_assert (result.size () == 1 || canonical->pre_expanded);
3167 canonical->pre_expanded = 1;
3169 /* Arrange for allocated canonical names to be freed. */
3170 std::vector<gdb::unique_xmalloc_ptr<char>> hold_names;
3171 for (int i = 0; i < result.size (); ++i)
3173 gdb_assert (state->canonical_names[i].suffix != NULL);
3174 hold_names.emplace_back (state->canonical_names[i].suffix);
3177 if (select_mode == NULL)
3179 if (top_level_interpreter ()->interp_ui_out ()->is_mi_like_p ())
3180 select_mode = multiple_symbols_all;
3181 else
3182 select_mode = multiple_symbols_select_mode ();
3185 if (select_mode == multiple_symbols_all)
3187 if (filter != NULL)
3189 filters.push_back (filter);
3190 filter_results (state, &result, filters);
3192 else
3193 convert_results_to_lsals (state, &result);
3195 else
3196 decode_line_2 (state, &result, select_mode);
3199 /* See linespec.h. */
3201 std::vector<symtab_and_line>
3202 decode_line_1 (const location_spec *locspec, int flags,
3203 struct program_space *search_pspace,
3204 struct symtab *default_symtab,
3205 int default_line)
3207 linespec_parser parser (flags, current_language,
3208 search_pspace, default_symtab,
3209 default_line, NULL);
3211 scoped_restore_current_program_space restore_pspace;
3213 return location_spec_to_sals (&parser, locspec);
3216 /* See linespec.h. */
3218 std::vector<symtab_and_line>
3219 decode_line_with_current_source (const char *string, int flags)
3221 if (string == 0)
3222 error (_("Empty line specification."));
3224 /* We use whatever is set as the current source line. We do not try
3225 and get a default source symtab+line or it will recursively call us! */
3226 symtab_and_line cursal = get_current_source_symtab_and_line ();
3228 location_spec_up locspec = string_to_location_spec (&string,
3229 current_language);
3230 std::vector<symtab_and_line> sals
3231 = decode_line_1 (locspec.get (), flags, cursal.pspace, cursal.symtab,
3232 cursal.line);
3234 if (*string)
3235 error (_("Junk at end of line specification: %s"), string);
3237 return sals;
3240 /* See linespec.h. */
3242 std::vector<symtab_and_line>
3243 decode_line_with_last_displayed (const char *string, int flags)
3245 if (string == 0)
3246 error (_("Empty line specification."));
3248 location_spec_up locspec = string_to_location_spec (&string,
3249 current_language);
3250 std::vector<symtab_and_line> sals
3251 = (last_displayed_sal_is_valid ()
3252 ? decode_line_1 (locspec.get (), flags, NULL,
3253 get_last_displayed_symtab (),
3254 get_last_displayed_line ())
3255 : decode_line_1 (locspec.get (), flags, NULL, NULL, 0));
3257 if (*string)
3258 error (_("Junk at end of line specification: %s"), string);
3260 return sals;
3265 /* First, some functions to initialize stuff at the beginning of the
3266 function. */
3268 static void
3269 initialize_defaults (struct symtab **default_symtab, int *default_line)
3271 if (*default_symtab == 0)
3273 /* Use whatever we have for the default source line. We don't use
3274 get_current_or_default_symtab_and_line as it can recurse and call
3275 us back! */
3276 struct symtab_and_line cursal =
3277 get_current_source_symtab_and_line ();
3279 *default_symtab = cursal.symtab;
3280 *default_line = cursal.line;
3286 /* Evaluate the expression pointed to by EXP_PTR into a CORE_ADDR,
3287 advancing EXP_PTR past any parsed text. */
3289 CORE_ADDR
3290 linespec_expression_to_pc (const char **exp_ptr)
3292 if (current_program_space->executing_startup)
3293 /* The error message doesn't really matter, because this case
3294 should only hit during breakpoint reset. */
3295 throw_error (NOT_FOUND_ERROR, _("cannot evaluate expressions while "
3296 "program space is in startup"));
3298 (*exp_ptr)++;
3299 return value_as_address (parse_to_comma_and_eval (exp_ptr));
3304 /* Here's where we recognise an Objective-C Selector. An Objective C
3305 selector may be implemented by more than one class, therefore it
3306 may represent more than one method/function. This gives us a
3307 situation somewhat analogous to C++ overloading. If there's more
3308 than one method that could represent the selector, then use some of
3309 the existing C++ code to let the user choose one. */
3311 static std::vector<symtab_and_line>
3312 decode_objc (struct linespec_state *self, linespec *ls, const char *arg)
3314 struct collect_info info;
3315 std::vector<const char *> symbol_names;
3316 const char *new_argptr;
3318 info.state = self;
3319 std::vector<symtab *> symtabs;
3320 symtabs.push_back (nullptr);
3322 info.file_symtabs = &symtabs;
3324 std::vector<block_symbol> symbols;
3325 info.result.symbols = &symbols;
3326 std::vector<bound_minimal_symbol> minimal_symbols;
3327 info.result.minimal_symbols = &minimal_symbols;
3329 new_argptr = find_imps (arg, &symbol_names);
3330 if (symbol_names.empty ())
3331 return {};
3333 add_all_symbol_names_from_pspace (&info, NULL, symbol_names,
3334 FUNCTIONS_DOMAIN);
3336 std::vector<symtab_and_line> values;
3337 if (!symbols.empty () || !minimal_symbols.empty ())
3339 char *saved_arg;
3341 saved_arg = (char *) alloca (new_argptr - arg + 1);
3342 memcpy (saved_arg, arg, new_argptr - arg);
3343 saved_arg[new_argptr - arg] = '\0';
3345 ls->explicit_loc.function_name = make_unique_xstrdup (saved_arg);
3346 ls->function_symbols = std::move (symbols);
3347 ls->minimal_symbols = std::move (minimal_symbols);
3348 values = convert_linespec_to_sals (self, ls);
3350 if (self->canonical)
3352 std::string holder;
3353 const char *str;
3355 self->canonical->pre_expanded = 1;
3357 if (ls->explicit_loc.source_filename)
3359 holder = string_printf ("%s:%s",
3360 ls->explicit_loc.source_filename.get (),
3361 saved_arg);
3362 str = holder.c_str ();
3364 else
3365 str = saved_arg;
3367 self->canonical->locspec
3368 = new_linespec_location_spec (&str, symbol_name_match_type::FULL);
3372 return values;
3375 namespace {
3377 /* A function object that serves as symbol_found_callback_ftype
3378 callback for iterate_over_symbols. This is used by
3379 lookup_prefix_sym to collect type symbols. */
3380 class decode_compound_collector
3382 public:
3383 decode_compound_collector ()
3384 : m_unique_syms (htab_create_alloc (1, htab_hash_pointer,
3385 htab_eq_pointer, NULL,
3386 xcalloc, xfree))
3390 /* Return all symbols collected. */
3391 std::vector<block_symbol> release_symbols ()
3393 return std::move (m_symbols);
3396 /* Callable as a symbol_found_callback_ftype callback. */
3397 bool operator () (block_symbol *bsym);
3399 private:
3400 /* A hash table of all symbols we found. We use this to avoid
3401 adding any symbol more than once. */
3402 htab_up m_unique_syms;
3404 /* The result vector. */
3405 std::vector<block_symbol> m_symbols;
3408 bool
3409 decode_compound_collector::operator () (block_symbol *bsym)
3411 void **slot;
3412 struct type *t;
3413 struct symbol *sym = bsym->symbol;
3415 if (sym->aclass () != LOC_TYPEDEF)
3416 return true; /* Continue iterating. */
3418 t = sym->type ();
3419 t = check_typedef (t);
3420 if (t->code () != TYPE_CODE_STRUCT
3421 && t->code () != TYPE_CODE_UNION
3422 && t->code () != TYPE_CODE_NAMESPACE)
3423 return true; /* Continue iterating. */
3425 slot = htab_find_slot (m_unique_syms.get (), sym, INSERT);
3426 if (!*slot)
3428 *slot = sym;
3429 m_symbols.push_back (*bsym);
3432 return true; /* Continue iterating. */
3435 } // namespace
3437 /* Return any symbols corresponding to CLASS_NAME in FILE_SYMTABS. */
3439 static std::vector<block_symbol>
3440 lookup_prefix_sym (struct linespec_state *state,
3441 const std::vector<symtab *> &file_symtabs,
3442 const char *class_name)
3444 decode_compound_collector collector;
3446 lookup_name_info lookup_name (class_name, symbol_name_match_type::FULL);
3448 for (const auto &elt : file_symtabs)
3450 if (elt == nullptr)
3452 iterate_over_all_matching_symtabs (state, lookup_name,
3453 STRUCT_DOMAIN, ALL_DOMAIN,
3454 NULL, false, collector);
3455 iterate_over_all_matching_symtabs (state, lookup_name,
3456 VAR_DOMAIN, ALL_DOMAIN,
3457 NULL, false, collector);
3459 else
3461 /* Program spaces that are executing startup should have
3462 been filtered out earlier. */
3463 program_space *pspace = elt->compunit ()->objfile ()->pspace;
3465 gdb_assert (!pspace->executing_startup);
3466 set_current_program_space (pspace);
3467 iterate_over_file_blocks (elt, lookup_name, STRUCT_DOMAIN, collector);
3468 iterate_over_file_blocks (elt, lookup_name, VAR_DOMAIN, collector);
3472 return collector.release_symbols ();
3475 /* A std::sort comparison function for symbols. The resulting order does
3476 not actually matter; we just need to be able to sort them so that
3477 symbols with the same program space end up next to each other. */
3479 static bool
3480 compare_symbols (const block_symbol &a, const block_symbol &b)
3482 uintptr_t uia, uib;
3484 uia = (uintptr_t) a.symbol->symtab ()->compunit ()->objfile ()->pspace;
3485 uib = (uintptr_t) b.symbol->symtab ()->compunit ()->objfile ()->pspace;
3487 if (uia < uib)
3488 return true;
3489 if (uia > uib)
3490 return false;
3492 uia = (uintptr_t) a.symbol;
3493 uib = (uintptr_t) b.symbol;
3495 if (uia < uib)
3496 return true;
3498 return false;
3501 /* Like compare_symbols but for minimal symbols. */
3503 static bool
3504 compare_msymbols (const bound_minimal_symbol &a, const bound_minimal_symbol &b)
3506 uintptr_t uia, uib;
3508 uia = (uintptr_t) a.objfile->pspace;
3509 uib = (uintptr_t) a.objfile->pspace;
3511 if (uia < uib)
3512 return true;
3513 if (uia > uib)
3514 return false;
3516 uia = (uintptr_t) a.minsym;
3517 uib = (uintptr_t) b.minsym;
3519 if (uia < uib)
3520 return true;
3522 return false;
3525 /* Look for all the matching instances of each symbol in NAMES. Only
3526 instances from PSPACE are considered; other program spaces are
3527 handled by our caller. If PSPACE is NULL, then all program spaces
3528 are considered. Results are stored into INFO. */
3530 static void
3531 add_all_symbol_names_from_pspace (struct collect_info *info,
3532 struct program_space *pspace,
3533 const std::vector<const char *> &names,
3534 enum search_domain search_domain)
3536 for (const char *iter : names)
3537 add_matching_symbols_to_info (iter,
3538 symbol_name_match_type::FULL,
3539 search_domain, info, pspace);
3542 static void
3543 find_superclass_methods (std::vector<struct type *> &&superclasses,
3544 const char *name, enum language name_lang,
3545 std::vector<const char *> *result_names)
3547 size_t old_len = result_names->size ();
3549 while (1)
3551 std::vector<struct type *> new_supers;
3553 for (type *t : superclasses)
3554 find_methods (t, name_lang, name, result_names, &new_supers);
3556 if (result_names->size () != old_len || new_supers.empty ())
3557 break;
3559 superclasses = std::move (new_supers);
3563 /* This finds the method METHOD_NAME in the class CLASS_NAME whose type is
3564 given by one of the symbols in SYM_CLASSES. Matches are returned
3565 in SYMBOLS (for debug symbols) and MINSYMS (for minimal symbols). */
3567 static void
3568 find_method (struct linespec_state *self,
3569 const std::vector<symtab *> &file_symtabs,
3570 const char *class_name, const char *method_name,
3571 std::vector<block_symbol> *sym_classes,
3572 std::vector<block_symbol> *symbols,
3573 std::vector<bound_minimal_symbol> *minsyms)
3575 size_t last_result_len;
3576 std::vector<struct type *> superclass_vec;
3577 std::vector<const char *> result_names;
3578 struct collect_info info;
3580 /* Sort symbols so that symbols with the same program space are next
3581 to each other. */
3582 std::sort (sym_classes->begin (), sym_classes->end (),
3583 compare_symbols);
3585 info.state = self;
3586 info.file_symtabs = &file_symtabs;
3587 info.result.symbols = symbols;
3588 info.result.minimal_symbols = minsyms;
3590 /* Iterate over all the types, looking for the names of existing
3591 methods matching METHOD_NAME. If we cannot find a direct method in a
3592 given program space, then we consider inherited methods; this is
3593 not ideal (ideal would be to respect C++ hiding rules), but it
3594 seems good enough and is what GDB has historically done. We only
3595 need to collect the names because later we find all symbols with
3596 those names. This loop is written in a somewhat funny way
3597 because we collect data across the program space before deciding
3598 what to do. */
3599 last_result_len = 0;
3600 for (const auto &elt : *sym_classes)
3602 struct type *t;
3603 struct program_space *pspace;
3604 struct symbol *sym = elt.symbol;
3605 unsigned int ix = &elt - &*sym_classes->begin ();
3607 /* Program spaces that are executing startup should have
3608 been filtered out earlier. */
3609 pspace = sym->symtab ()->compunit ()->objfile ()->pspace;
3610 gdb_assert (!pspace->executing_startup);
3611 set_current_program_space (pspace);
3612 t = check_typedef (sym->type ());
3613 find_methods (t, sym->language (),
3614 method_name, &result_names, &superclass_vec);
3616 /* Handle all items from a single program space at once; and be
3617 sure not to miss the last batch. */
3618 if (ix == sym_classes->size () - 1
3619 || (pspace
3620 != (sym_classes->at (ix + 1).symbol->symtab ()
3621 ->compunit ()->objfile ()->pspace)))
3623 /* If we did not find a direct implementation anywhere in
3624 this program space, consider superclasses. */
3625 if (result_names.size () == last_result_len)
3626 find_superclass_methods (std::move (superclass_vec), method_name,
3627 sym->language (), &result_names);
3629 /* We have a list of candidate symbol names, so now we
3630 iterate over the symbol tables looking for all
3631 matches in this pspace. */
3632 add_all_symbol_names_from_pspace (&info, pspace, result_names,
3633 FUNCTIONS_DOMAIN);
3635 superclass_vec.clear ();
3636 last_result_len = result_names.size ();
3640 if (!symbols->empty () || !minsyms->empty ())
3641 return;
3643 /* Throw an NOT_FOUND_ERROR. This will be caught by the caller
3644 and other attempts to locate the symbol will be made. */
3645 throw_error (NOT_FOUND_ERROR, _("see caller, this text doesn't matter"));
3650 namespace {
3652 /* This function object is a callback for iterate_over_symtabs, used
3653 when collecting all matching symtabs. */
3655 class symtab_collector
3657 public:
3658 symtab_collector ()
3659 : m_symtab_table (htab_create (1, htab_hash_pointer, htab_eq_pointer,
3660 NULL))
3664 /* Callable as a symbol_found_callback_ftype callback. */
3665 bool operator () (symtab *sym);
3667 /* Return an rvalue reference to the collected symtabs. */
3668 std::vector<symtab *> &&release_symtabs ()
3670 return std::move (m_symtabs);
3673 private:
3674 /* The result vector of symtabs. */
3675 std::vector<symtab *> m_symtabs;
3677 /* This is used to ensure the symtabs are unique. */
3678 htab_up m_symtab_table;
3681 bool
3682 symtab_collector::operator () (struct symtab *symtab)
3684 void **slot;
3686 slot = htab_find_slot (m_symtab_table.get (), symtab, INSERT);
3687 if (!*slot)
3689 *slot = symtab;
3690 m_symtabs.push_back (symtab);
3693 return false;
3696 } // namespace
3698 /* Given a file name, return a list of all matching symtabs. If
3699 SEARCH_PSPACE is not NULL, the search is restricted to just that
3700 program space. */
3702 static std::vector<symtab *>
3703 collect_symtabs_from_filename (const char *file,
3704 struct program_space *search_pspace)
3706 symtab_collector collector;
3708 /* Find that file's data. */
3709 if (search_pspace == NULL)
3711 for (struct program_space *pspace : program_spaces)
3713 if (pspace->executing_startup)
3714 continue;
3716 set_current_program_space (pspace);
3717 iterate_over_symtabs (file, collector);
3720 else
3722 set_current_program_space (search_pspace);
3723 iterate_over_symtabs (file, collector);
3726 return collector.release_symtabs ();
3729 /* Return all the symtabs associated to the FILENAME. If SEARCH_PSPACE is
3730 not NULL, the search is restricted to just that program space. */
3732 static std::vector<symtab *>
3733 symtabs_from_filename (const char *filename,
3734 struct program_space *search_pspace)
3736 std::vector<symtab *> result
3737 = collect_symtabs_from_filename (filename, search_pspace);
3739 if (result.empty ())
3741 if (!have_full_symbols () && !have_partial_symbols ())
3742 throw_error (NOT_FOUND_ERROR,
3743 _("No symbol table is loaded. "
3744 "Use the \"file\" command."));
3745 source_file_not_found_error (filename);
3748 return result;
3751 /* See symtab.h. */
3753 void
3754 symbol_searcher::find_all_symbols (const std::string &name,
3755 const struct language_defn *language,
3756 enum search_domain search_domain,
3757 std::vector<symtab *> *search_symtabs,
3758 struct program_space *search_pspace)
3760 symbol_searcher_collect_info info;
3761 struct linespec_state state;
3763 memset (&state, 0, sizeof (state));
3764 state.language = language;
3765 info.state = &state;
3767 info.result.symbols = &m_symbols;
3768 info.result.minimal_symbols = &m_minimal_symbols;
3769 std::vector<symtab *> all_symtabs;
3770 if (search_symtabs == nullptr)
3772 all_symtabs.push_back (nullptr);
3773 search_symtabs = &all_symtabs;
3775 info.file_symtabs = search_symtabs;
3777 add_matching_symbols_to_info (name.c_str (), symbol_name_match_type::WILD,
3778 search_domain, &info, search_pspace);
3781 /* Look up a function symbol named NAME in symtabs FILE_SYMTABS. Matching
3782 debug symbols are returned in SYMBOLS. Matching minimal symbols are
3783 returned in MINSYMS. */
3785 static void
3786 find_function_symbols (struct linespec_state *state,
3787 const std::vector<symtab *> &file_symtabs, const char *name,
3788 symbol_name_match_type name_match_type,
3789 std::vector<block_symbol> *symbols,
3790 std::vector<bound_minimal_symbol> *minsyms)
3792 struct collect_info info;
3793 std::vector<const char *> symbol_names;
3795 info.state = state;
3796 info.result.symbols = symbols;
3797 info.result.minimal_symbols = minsyms;
3798 info.file_symtabs = &file_symtabs;
3800 /* Try NAME as an Objective-C selector. */
3801 find_imps (name, &symbol_names);
3802 if (!symbol_names.empty ())
3803 add_all_symbol_names_from_pspace (&info, state->search_pspace,
3804 symbol_names, FUNCTIONS_DOMAIN);
3805 else
3806 add_matching_symbols_to_info (name, name_match_type, FUNCTIONS_DOMAIN,
3807 &info, state->search_pspace);
3810 /* Find all symbols named NAME in FILE_SYMTABS, returning debug symbols
3811 in SYMBOLS and minimal symbols in MINSYMS. */
3813 static void
3814 find_linespec_symbols (struct linespec_state *state,
3815 const std::vector<symtab *> &file_symtabs,
3816 const char *lookup_name,
3817 symbol_name_match_type name_match_type,
3818 std::vector <block_symbol> *symbols,
3819 std::vector<bound_minimal_symbol> *minsyms)
3821 gdb::unique_xmalloc_ptr<char> canon
3822 = cp_canonicalize_string_no_typedefs (lookup_name);
3823 if (canon != nullptr)
3824 lookup_name = canon.get ();
3826 /* It's important to not call expand_symtabs_matching unnecessarily
3827 as it can really slow things down (by unnecessarily expanding
3828 potentially 1000s of symtabs, which when debugging some apps can
3829 cost 100s of seconds). Avoid this to some extent by *first* calling
3830 find_function_symbols, and only if that doesn't find anything
3831 *then* call find_method. This handles two important cases:
3832 1) break (anonymous namespace)::foo
3833 2) break class::method where method is in class (and not a baseclass) */
3835 find_function_symbols (state, file_symtabs, lookup_name,
3836 name_match_type, symbols, minsyms);
3838 /* If we were unable to locate a symbol of the same name, try dividing
3839 the name into class and method names and searching the class and its
3840 baseclasses. */
3841 if (symbols->empty () && minsyms->empty ())
3843 std::string klass, method;
3844 const char *last, *p, *scope_op;
3846 /* See if we can find a scope operator and break this symbol
3847 name into namespaces${SCOPE_OPERATOR}class_name and method_name. */
3848 scope_op = "::";
3849 p = find_toplevel_string (lookup_name, scope_op);
3851 last = NULL;
3852 while (p != NULL)
3854 last = p;
3855 p = find_toplevel_string (p + strlen (scope_op), scope_op);
3858 /* If no scope operator was found, there is nothing more we can do;
3859 we already attempted to lookup the entire name as a symbol
3860 and failed. */
3861 if (last == NULL)
3862 return;
3864 /* LOOKUP_NAME points to the class name.
3865 LAST points to the method name. */
3866 klass = std::string (lookup_name, last - lookup_name);
3868 /* Skip past the scope operator. */
3869 last += strlen (scope_op);
3870 method = last;
3872 /* Find a list of classes named KLASS. */
3873 std::vector<block_symbol> classes
3874 = lookup_prefix_sym (state, file_symtabs, klass.c_str ());
3875 if (!classes.empty ())
3877 /* Now locate a list of suitable methods named METHOD. */
3880 find_method (state, file_symtabs,
3881 klass.c_str (), method.c_str (),
3882 &classes, symbols, minsyms);
3885 /* If successful, we're done. If NOT_FOUND_ERROR
3886 was not thrown, rethrow the exception that we did get. */
3887 catch (const gdb_exception_error &except)
3889 if (except.error != NOT_FOUND_ERROR)
3890 throw;
3896 /* Helper for find_label_symbols. Find all labels that match name
3897 NAME in BLOCK. Return all labels that match in FUNCTION_SYMBOLS.
3898 Return the actual function symbol in which the label was found in
3899 LABEL_FUNC_RET. If COMPLETION_MODE is true, then NAME is
3900 interpreted as a label name prefix. Otherwise, only a label named
3901 exactly NAME match. */
3903 static void
3904 find_label_symbols_in_block (const struct block *block,
3905 const char *name, struct symbol *fn_sym,
3906 bool completion_mode,
3907 std::vector<block_symbol> *result,
3908 std::vector<block_symbol> *label_funcs_ret)
3910 if (completion_mode)
3912 size_t name_len = strlen (name);
3914 int (*cmp) (const char *, const char *, size_t);
3915 cmp = case_sensitivity == case_sensitive_on ? strncmp : strncasecmp;
3917 for (struct symbol *sym : block_iterator_range (block))
3919 if (sym->matches (LABEL_DOMAIN)
3920 && cmp (sym->search_name (), name, name_len) == 0)
3922 result->push_back ({sym, block});
3923 label_funcs_ret->push_back ({fn_sym, block});
3927 else
3929 struct block_symbol label_sym
3930 = lookup_symbol (name, block, LABEL_DOMAIN, 0);
3932 if (label_sym.symbol != NULL)
3934 result->push_back (label_sym);
3935 label_funcs_ret->push_back ({fn_sym, block});
3940 /* Return all labels that match name NAME in FUNCTION_SYMBOLS.
3942 Return the actual function symbol in which the label was found in
3943 LABEL_FUNC_RET. If COMPLETION_MODE is true, then NAME is
3944 interpreted as a label name prefix. Otherwise, only labels named
3945 exactly NAME match. */
3948 static std::vector<block_symbol>
3949 find_label_symbols (struct linespec_state *self,
3950 const std::vector<block_symbol> &function_symbols,
3951 std::vector<block_symbol> *label_funcs_ret,
3952 const char *name,
3953 bool completion_mode)
3955 const struct block *block;
3956 struct symbol *fn_sym;
3957 std::vector<block_symbol> result;
3959 if (function_symbols.empty ())
3961 set_current_program_space (self->program_space);
3962 block = get_current_search_block ();
3964 for (;
3965 block && !block->function ();
3966 block = block->superblock ())
3969 if (!block)
3970 return {};
3972 fn_sym = block->function ();
3974 find_label_symbols_in_block (block, name, fn_sym, completion_mode,
3975 &result, label_funcs_ret);
3977 else
3979 for (const auto &elt : function_symbols)
3981 fn_sym = elt.symbol;
3982 set_current_program_space
3983 (fn_sym->symtab ()->compunit ()->objfile ()->pspace);
3984 block = fn_sym->value_block ();
3986 find_label_symbols_in_block (block, name, fn_sym, completion_mode,
3987 &result, label_funcs_ret);
3991 return result;
3996 /* A helper for create_sals_line_offset that handles the 'list_mode' case. */
3998 static std::vector<symtab_and_line>
3999 decode_digits_list_mode (struct linespec_state *self,
4000 linespec *ls,
4001 struct symtab_and_line val)
4003 gdb_assert (self->list_mode);
4005 std::vector<symtab_and_line> values;
4007 for (const auto &elt : ls->file_symtabs)
4009 /* The logic above should ensure this. */
4010 gdb_assert (elt != NULL);
4012 program_space *pspace = elt->compunit ()->objfile ()->pspace;
4013 set_current_program_space (pspace);
4015 /* Simplistic search just for the list command. */
4016 val.symtab = find_line_symtab (elt, val.line, NULL, NULL);
4017 if (val.symtab == NULL)
4018 val.symtab = elt;
4019 val.pspace = pspace;
4020 val.pc = 0;
4021 val.explicit_line = true;
4023 add_sal_to_sals (self, &values, &val, NULL, 0);
4026 return values;
4029 /* A helper for create_sals_line_offset that iterates over the symtabs
4030 associated with LS and returns a vector of corresponding symtab_and_line
4031 structures. */
4033 static std::vector<symtab_and_line>
4034 decode_digits_ordinary (struct linespec_state *self,
4035 linespec *ls,
4036 int line,
4037 const linetable_entry **best_entry)
4039 std::vector<symtab_and_line> sals;
4040 for (const auto &elt : ls->file_symtabs)
4042 std::vector<CORE_ADDR> pcs;
4044 /* The logic above should ensure this. */
4045 gdb_assert (elt != NULL);
4047 program_space *pspace = elt->compunit ()->objfile ()->pspace;
4048 set_current_program_space (pspace);
4050 pcs = find_pcs_for_symtab_line (elt, line, best_entry);
4051 for (CORE_ADDR pc : pcs)
4053 symtab_and_line sal;
4054 sal.pspace = pspace;
4055 sal.symtab = elt;
4056 sal.line = line;
4057 sal.explicit_line = true;
4058 sal.pc = pc;
4059 sals.push_back (std::move (sal));
4063 return sals;
4068 /* Return the line offset represented by VARIABLE. */
4070 static struct line_offset
4071 linespec_parse_variable (struct linespec_state *self, const char *variable)
4073 int index = 0;
4074 const char *p;
4075 line_offset offset;
4077 p = (variable[1] == '$') ? variable + 2 : variable + 1;
4078 if (*p == '$')
4079 ++p;
4080 while (*p >= '0' && *p <= '9')
4081 ++p;
4082 if (!*p) /* Reached end of token without hitting non-digit. */
4084 /* We have a value history reference. */
4085 struct value *val_history;
4087 sscanf ((variable[1] == '$') ? variable + 2 : variable + 1, "%d", &index);
4088 val_history
4089 = access_value_history ((variable[1] == '$') ? -index : index);
4090 if (val_history->type ()->code () != TYPE_CODE_INT)
4091 error (_("History values used in line "
4092 "specs must have integer values."));
4093 offset.offset = value_as_long (val_history);
4094 offset.sign = LINE_OFFSET_NONE;
4096 else
4098 /* Not all digits -- may be user variable/function or a
4099 convenience variable. */
4100 LONGEST valx;
4101 struct internalvar *ivar;
4103 /* Try it as a convenience variable. If it is not a convenience
4104 variable, return and allow normal symbol lookup to occur. */
4105 ivar = lookup_only_internalvar (variable + 1);
4106 /* If there's no internal variable with that name, let the
4107 offset remain as unknown to allow the name to be looked up
4108 as a symbol. */
4109 if (ivar != nullptr)
4111 /* We found a valid variable name. If it is not an integer,
4112 throw an error. */
4113 if (!get_internalvar_integer (ivar, &valx))
4114 error (_("Convenience variables used in line "
4115 "specs must have integer values."));
4116 else
4118 offset.offset = valx;
4119 offset.sign = LINE_OFFSET_NONE;
4124 return offset;
4128 /* We've found a minimal symbol MSYMBOL in OBJFILE to associate with our
4129 linespec; return the SAL in RESULT. This function should return SALs
4130 matching those from find_function_start_sal, otherwise false
4131 multiple-locations breakpoints could be placed. */
4133 static void
4134 minsym_found (struct linespec_state *self, struct objfile *objfile,
4135 struct minimal_symbol *msymbol,
4136 std::vector<symtab_and_line> *result)
4138 bool want_start_sal = false;
4140 CORE_ADDR func_addr;
4141 bool is_function = msymbol_is_function (objfile, msymbol, &func_addr);
4143 if (is_function)
4145 const char *msym_name = msymbol->linkage_name ();
4147 if (msymbol->type () == mst_text_gnu_ifunc
4148 || msymbol->type () == mst_data_gnu_ifunc)
4149 want_start_sal = gnu_ifunc_resolve_name (msym_name, &func_addr);
4150 else
4151 want_start_sal = true;
4154 symtab_and_line sal;
4156 if (is_function && want_start_sal)
4157 sal = find_function_start_sal (func_addr, NULL, self->funfirstline);
4158 else
4160 sal.objfile = objfile;
4161 sal.msymbol = msymbol;
4162 /* Store func_addr, not the minsym's address in case this was an
4163 ifunc that hasn't been resolved yet. */
4164 if (is_function)
4165 sal.pc = func_addr;
4166 else
4167 sal.pc = msymbol->value_address (objfile);
4168 sal.pspace = current_program_space;
4171 sal.section = msymbol->obj_section (objfile);
4173 if (maybe_add_address (self->addr_set, objfile->pspace, sal.pc))
4174 add_sal_to_sals (self, result, &sal, msymbol->natural_name (), 0);
4177 /* Helper for search_minsyms_for_name that adds the symbol to the
4178 result. */
4180 static void
4181 add_minsym (struct minimal_symbol *minsym, struct objfile *objfile,
4182 struct symtab *symtab, int list_mode,
4183 std::vector<struct bound_minimal_symbol> *msyms)
4185 if (symtab != NULL)
4187 /* We're looking for a label for which we don't have debug
4188 info. */
4189 CORE_ADDR func_addr;
4190 if (msymbol_is_function (objfile, minsym, &func_addr))
4192 symtab_and_line sal = find_pc_sect_line (func_addr, NULL, 0);
4194 if (symtab != sal.symtab)
4195 return;
4199 /* Exclude data symbols when looking for breakpoint locations. */
4200 if (!list_mode && !msymbol_is_function (objfile, minsym))
4201 return;
4203 msyms->emplace_back (minsym, objfile);
4204 return;
4207 /* Search for minimal symbols called NAME. If SEARCH_PSPACE
4208 is not NULL, the search is restricted to just that program
4209 space.
4211 If SYMTAB is NULL, search all objfiles, otherwise
4212 restrict results to the given SYMTAB. */
4214 static void
4215 search_minsyms_for_name (struct collect_info *info,
4216 const lookup_name_info &name,
4217 struct program_space *search_pspace,
4218 struct symtab *symtab)
4220 std::vector<struct bound_minimal_symbol> minsyms;
4222 if (symtab == NULL)
4224 for (struct program_space *pspace : program_spaces)
4226 if (search_pspace != NULL && search_pspace != pspace)
4227 continue;
4228 if (pspace->executing_startup)
4229 continue;
4231 set_current_program_space (pspace);
4233 for (objfile *objfile : current_program_space->objfiles ())
4235 iterate_over_minimal_symbols (objfile, name,
4236 [&] (struct minimal_symbol *msym)
4238 add_minsym (msym, objfile, nullptr,
4239 info->state->list_mode,
4240 &minsyms);
4241 return false;
4246 else
4248 program_space *pspace = symtab->compunit ()->objfile ()->pspace;
4250 if (search_pspace == NULL || pspace == search_pspace)
4252 set_current_program_space (pspace);
4253 iterate_over_minimal_symbols
4254 (symtab->compunit ()->objfile (), name,
4255 [&] (struct minimal_symbol *msym)
4257 add_minsym (msym, symtab->compunit ()->objfile (), symtab,
4258 info->state->list_mode, &minsyms);
4259 return false;
4264 /* Return true if TYPE is a static symbol. */
4265 auto msymbol_type_is_static = [] (enum minimal_symbol_type type)
4267 switch (type)
4269 case mst_file_text:
4270 case mst_file_data:
4271 case mst_file_bss:
4272 return true;
4273 default:
4274 return false;
4278 /* Add minsyms to the result set, but filter out trampoline symbols
4279 if we also found extern symbols with the same name. I.e., don't
4280 set a breakpoint on both '<foo@plt>' and 'foo', assuming that
4281 'foo' is the symbol that the plt resolves to. */
4282 for (const bound_minimal_symbol &item : minsyms)
4284 bool skip = false;
4285 if (item.minsym->type () == mst_solib_trampoline)
4287 for (const bound_minimal_symbol &item2 : minsyms)
4289 if (&item2 == &item)
4290 continue;
4292 /* Ignore other trampoline symbols. */
4293 if (item2.minsym->type () == mst_solib_trampoline)
4294 continue;
4296 /* Trampoline symbols can only jump to exported
4297 symbols. */
4298 if (msymbol_type_is_static (item2.minsym->type ()))
4299 continue;
4301 if (strcmp (item.minsym->linkage_name (),
4302 item2.minsym->linkage_name ()) != 0)
4303 continue;
4305 /* Found a global minsym with the same name as the
4306 trampoline. Don't create a location for this
4307 trampoline. */
4308 skip = true;
4309 break;
4313 if (!skip)
4314 info->result.minimal_symbols->push_back (item);
4318 /* A helper function to add all symbols matching NAME to INFO. If
4319 PSPACE is not NULL, the search is restricted to just that program
4320 space. */
4322 static void
4323 add_matching_symbols_to_info (const char *name,
4324 symbol_name_match_type name_match_type,
4325 enum search_domain search_domain,
4326 struct collect_info *info,
4327 struct program_space *pspace)
4329 lookup_name_info lookup_name (name, name_match_type);
4331 for (const auto &elt : *info->file_symtabs)
4333 if (elt == nullptr)
4335 iterate_over_all_matching_symtabs (info->state, lookup_name,
4336 VAR_DOMAIN, search_domain,
4337 pspace, true,
4338 [&] (block_symbol *bsym)
4339 { return info->add_symbol (bsym); });
4340 search_minsyms_for_name (info, lookup_name, pspace, NULL);
4342 else if (pspace == NULL || pspace == elt->compunit ()->objfile ()->pspace)
4344 int prev_len = info->result.symbols->size ();
4346 /* Program spaces that are executing startup should have
4347 been filtered out earlier. */
4348 program_space *elt_pspace = elt->compunit ()->objfile ()->pspace;
4349 gdb_assert (!elt_pspace->executing_startup);
4350 set_current_program_space (elt_pspace);
4351 iterate_over_file_blocks (elt, lookup_name, VAR_DOMAIN,
4352 [&] (block_symbol *bsym)
4353 { return info->add_symbol (bsym); });
4355 /* If no new symbols were found in this iteration and this symtab
4356 is in assembler, we might actually be looking for a label for
4357 which we don't have debug info. Check for a minimal symbol in
4358 this case. */
4359 if (prev_len == info->result.symbols->size ()
4360 && elt->language () == language_asm)
4361 search_minsyms_for_name (info, lookup_name, pspace, elt);
4368 /* Now come some functions that are called from multiple places within
4369 decode_line_1. */
4371 static int
4372 symbol_to_sal (struct symtab_and_line *result,
4373 int funfirstline, struct symbol *sym)
4375 if (sym->aclass () == LOC_BLOCK)
4377 *result = find_function_start_sal (sym, funfirstline);
4378 return 1;
4380 else
4382 if (sym->aclass () == LOC_LABEL && sym->value_address () != 0)
4384 *result = {};
4385 result->symtab = sym->symtab ();
4386 result->symbol = sym;
4387 result->line = sym->line ();
4388 result->pc = sym->value_address ();
4389 result->pspace = result->symtab->compunit ()->objfile ()->pspace;
4390 result->explicit_pc = 1;
4391 return 1;
4393 else if (funfirstline)
4395 /* Nothing. */
4397 else if (sym->line () != 0)
4399 /* We know its line number. */
4400 *result = {};
4401 result->symtab = sym->symtab ();
4402 result->symbol = sym;
4403 result->line = sym->line ();
4404 result->pc = sym->value_address ();
4405 result->pspace = result->symtab->compunit ()->objfile ()->pspace;
4406 return 1;
4410 return 0;
4413 linespec_result::~linespec_result ()
4415 for (linespec_sals &lsal : lsals)
4416 xfree (lsal.canonical);
4419 /* Return the quote characters permitted by the linespec parser. */
4421 const char *
4422 get_gdb_linespec_parser_quote_characters (void)
4424 return linespec_quote_characters;