1 /* Parser for linespec for the GNU debugger, GDB.
3 Copyright (C) 1986-2018 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/>. */
29 #include "completer.h"
31 #include "cp-support.h"
32 #include "parser-defs.h"
34 #include "objc-lang.h"
38 #include "mi/mi-cmds.h"
40 #include "arch-utils.h"
42 #include "cli/cli-utils.h"
43 #include "filenames.h"
47 #include "common/function-view.h"
48 #include "common/def-vector.h"
51 /* An enumeration of the various things a user might attempt to
52 complete for a linespec location. */
54 enum class linespec_complete_what
56 /* Nothing, no possible completion. */
59 /* A function/method name. Due to ambiguity between
65 this can also indicate a source filename, iff we haven't seen a
66 separate source filename component, as in "b source.c:function". */
69 /* A label symbol. E.g., break file.c:function:LABEL. */
72 /* An expression. E.g., "break foo if EXPR", or "break *EXPR". */
75 /* A linespec keyword ("if"/"thread"/"task").
76 E.g., "break func threa<tab>". */
80 /* Typedef for unique_ptrs of vectors of symtabs. */
82 typedef std::unique_ptr<std::vector<symtab *>> symtab_vector_up;
84 typedef struct symbol *symbolp;
87 /* An address entry is used to ensure that any given location is only
88 added to the result a single time. It holds an address and the
89 program space from which the address came. */
93 struct program_space *pspace;
97 typedef struct bound_minimal_symbol bound_minimal_symbol_d;
99 DEF_VEC_O (bound_minimal_symbol_d);
101 /* A linespec. Elements of this structure are filled in by a parser
102 (either parse_linespec or some other function). The structure is
103 then converted into SALs by convert_linespec_to_sals. */
107 /* An explicit location describing the SaLs. */
108 struct explicit_location explicit_loc;
110 /* The list of symtabs to search to which to limit the search. May not
111 be NULL. If explicit.SOURCE_FILENAME is NULL (no user-specified
112 filename), FILE_SYMTABS should contain one single NULL member. This
113 will cause the code to use the default symtab. */
114 std::vector<symtab *> *file_symtabs;
116 /* A list of matching function symbols and minimal symbols. Both lists
117 may be NULL (or empty) if no matching symbols were found. */
118 std::vector<symbol *> *function_symbols;
119 std::vector<bound_minimal_symbol> *minimal_symbols;
121 /* A structure of matching label symbols and the corresponding
122 function symbol in which the label was found. Both may be NULL
123 or both must be non-NULL. */
126 std::vector<symbol *> *label_symbols;
127 std::vector<symbol *> *function_symbols;
130 typedef struct linespec *linespec_p;
132 /* A canonical linespec represented as a symtab-related string.
134 Each entry represents the "SYMTAB:SUFFIX" linespec string.
135 SYMTAB can be converted for example by symtab_to_fullname or
136 symtab_to_filename_for_display as needed. */
138 struct linespec_canonical_name
140 /* Remaining text part of the linespec string. */
143 /* If NULL then SUFFIX is the whole linespec string. */
144 struct symtab *symtab;
147 /* An instance of this is used to keep all state while linespec
148 operates. This instance is passed around as a 'this' pointer to
149 the various implementation methods. */
151 struct linespec_state
153 /* The language in use during linespec processing. */
154 const struct language_defn *language;
156 /* The program space as seen when the module was entered. */
157 struct program_space *program_space;
159 /* If not NULL, the search is restricted to just this program
161 struct program_space *search_pspace;
163 /* The default symtab to use, if no other symtab is specified. */
164 struct symtab *default_symtab;
166 /* The default line to use. */
169 /* The 'funfirstline' value that was passed in to decode_line_1 or
173 /* Nonzero if we are running in 'list' mode; see decode_line_list. */
176 /* The 'canonical' value passed to decode_line_full, or NULL. */
177 struct linespec_result *canonical;
179 /* Canonical strings that mirror the std::vector<symtab_and_line> result. */
180 struct linespec_canonical_name *canonical_names;
182 /* This is a set of address_entry objects which is used to prevent
183 duplicate symbols from being entered into the result. */
186 /* Are we building a linespec? */
190 /* This is a helper object that is used when collecting symbols into a
195 /* The linespec object in use. */
196 struct linespec_state *state;
198 /* A list of symtabs to which to restrict matches. */
199 std::vector<symtab *> *file_symtabs;
201 /* The result being accumulated. */
204 std::vector<symbol *> *symbols;
205 std::vector<bound_minimal_symbol> *minimal_symbols;
208 /* Possibly add a symbol to the results. */
209 bool add_symbol (symbol *sym);
213 collect_info::add_symbol (symbol *sym)
215 /* In list mode, add all matching symbols, regardless of class.
216 This allows the user to type "list a_global_variable". */
217 if (SYMBOL_CLASS (sym) == LOC_BLOCK || this->state->list_mode)
218 this->result.symbols->push_back (sym);
220 /* Continue iterating. */
231 /* A colon "separator" */
243 /* EOI (end of input) */
249 typedef enum ls_token_type linespec_token_type;
251 /* List of keywords. This is NULL-terminated so that it can be used
252 as enum completer. */
253 const char * const linespec_keywords[] = { "if", "thread", "task", NULL };
254 #define IF_KEYWORD_INDEX 0
256 /* A token of the linespec lexer */
260 /* The type of the token */
261 linespec_token_type type;
263 /* Data for the token */
266 /* A string, given as a stoken */
267 struct stoken string;
273 typedef struct ls_token linespec_token;
275 #define LS_TOKEN_STOKEN(TOK) (TOK).data.string
276 #define LS_TOKEN_KEYWORD(TOK) (TOK).data.keyword
278 /* An instance of the linespec parser. */
282 /* Lexer internal data */
285 /* Save head of input stream. */
286 const char *saved_arg;
288 /* Head of the input stream. */
290 #define PARSER_STREAM(P) ((P)->lexer.stream)
292 /* The current token. */
293 linespec_token current;
296 /* Is the entire linespec quote-enclosed? */
297 int is_quote_enclosed;
299 /* The state of the parse. */
300 struct linespec_state state;
301 #define PARSER_STATE(PPTR) (&(PPTR)->state)
303 /* The result of the parse. */
304 struct linespec result;
305 #define PARSER_RESULT(PPTR) (&(PPTR)->result)
307 /* What the parser believes the current word point should complete
309 linespec_complete_what complete_what;
311 /* The completion word point. The parser advances this as it skips
312 tokens. At some point the input string will end or parsing will
313 fail, and then we attempt completion at the captured completion
314 word point, interpreting the string at completion_word as
316 const char *completion_word;
318 /* If the current token was a quoted string, then this is the
319 quoting character (either " or '). */
320 int completion_quote_char;
322 /* If the current token was a quoted string, then this points at the
323 end of the quoted string. */
324 const char *completion_quote_end;
326 /* If parsing for completion, then this points at the completion
327 tracker. Otherwise, this is NULL. */
328 struct completion_tracker *completion_tracker;
330 typedef struct ls_parser linespec_parser;
332 /* A convenience macro for accessing the explicit location result of
334 #define PARSER_EXPLICIT(PPTR) (&PARSER_RESULT ((PPTR))->explicit_loc)
336 /* Prototypes for local functions. */
338 static void iterate_over_file_blocks
339 (struct symtab *symtab, const lookup_name_info &name,
341 gdb::function_view<symbol_found_callback_ftype> callback);
343 static void initialize_defaults (struct symtab **default_symtab,
346 CORE_ADDR linespec_expression_to_pc (const char **exp_ptr);
348 static std::vector<symtab_and_line> decode_objc (struct linespec_state *self,
352 static symtab_vector_up symtabs_from_filename
353 (const char *, struct program_space *pspace);
355 static std::vector<symbol *> *find_label_symbols
356 (struct linespec_state *self, std::vector<symbol *> *function_symbols,
357 std::vector<symbol *> *label_funcs_ret, const char *name,
358 bool completion_mode = false);
360 static void find_linespec_symbols (struct linespec_state *self,
361 std::vector<symtab *> *file_symtabs,
363 symbol_name_match_type name_match_type,
364 std::vector<symbol *> *symbols,
365 std::vector<bound_minimal_symbol> *minsyms);
367 static struct line_offset
368 linespec_parse_variable (struct linespec_state *self,
369 const char *variable);
371 static int symbol_to_sal (struct symtab_and_line *result,
372 int funfirstline, struct symbol *sym);
374 static void add_matching_symbols_to_info (const char *name,
375 symbol_name_match_type name_match_type,
376 enum search_domain search_domain,
377 struct collect_info *info,
378 struct program_space *pspace);
380 static void add_all_symbol_names_from_pspace
381 (struct collect_info *info, struct program_space *pspace,
382 const std::vector<const char *> &names, enum search_domain search_domain);
384 static symtab_vector_up
385 collect_symtabs_from_filename (const char *file,
386 struct program_space *pspace);
388 static std::vector<symtab_and_line> decode_digits_ordinary
389 (struct linespec_state *self,
392 linetable_entry **best_entry);
394 static std::vector<symtab_and_line> decode_digits_list_mode
395 (struct linespec_state *self,
397 struct symtab_and_line val);
399 static void minsym_found (struct linespec_state *self, struct objfile *objfile,
400 struct minimal_symbol *msymbol,
401 std::vector<symtab_and_line> *result);
403 static bool compare_symbols (const struct symbol *a, const struct symbol *b);
405 static bool compare_msymbols (const bound_minimal_symbol &a,
406 const bound_minimal_symbol &b);
408 /* Permitted quote characters for the parser. This is different from the
409 completer's quote characters to allow backward compatibility with the
411 static const char *const linespec_quote_characters = "\"\'";
413 /* Lexer functions. */
415 /* Lex a number from the input in PARSER. This only supports
418 Return true if input is decimal numbers. Return false if not. */
421 linespec_lexer_lex_number (linespec_parser *parser, linespec_token *tokenp)
423 tokenp->type = LSTOKEN_NUMBER;
424 LS_TOKEN_STOKEN (*tokenp).length = 0;
425 LS_TOKEN_STOKEN (*tokenp).ptr = PARSER_STREAM (parser);
427 /* Keep any sign at the start of the stream. */
428 if (*PARSER_STREAM (parser) == '+' || *PARSER_STREAM (parser) == '-')
430 ++LS_TOKEN_STOKEN (*tokenp).length;
431 ++(PARSER_STREAM (parser));
434 while (isdigit (*PARSER_STREAM (parser)))
436 ++LS_TOKEN_STOKEN (*tokenp).length;
437 ++(PARSER_STREAM (parser));
440 /* If the next character in the input buffer is not a space, comma,
441 quote, or colon, this input does not represent a number. */
442 if (*PARSER_STREAM (parser) != '\0'
443 && !isspace (*PARSER_STREAM (parser)) && *PARSER_STREAM (parser) != ','
444 && *PARSER_STREAM (parser) != ':'
445 && !strchr (linespec_quote_characters, *PARSER_STREAM (parser)))
447 PARSER_STREAM (parser) = LS_TOKEN_STOKEN (*tokenp).ptr;
454 /* See linespec.h. */
457 linespec_lexer_lex_keyword (const char *p)
463 for (i = 0; linespec_keywords[i] != NULL; ++i)
465 int len = strlen (linespec_keywords[i]);
467 /* If P begins with one of the keywords and the next
468 character is whitespace, we may have found a keyword.
469 It is only a keyword if it is not followed by another
471 if (strncmp (p, linespec_keywords[i], len) == 0
476 /* Special case: "if" ALWAYS stops the lexer, since it
477 is not possible to predict what is going to appear in
478 the condition, which can only be parsed after SaLs have
480 if (i != IF_KEYWORD_INDEX)
484 for (j = 0; linespec_keywords[j] != NULL; ++j)
486 int nextlen = strlen (linespec_keywords[j]);
488 if (strncmp (p, linespec_keywords[j], nextlen) == 0
489 && isspace (p[nextlen]))
494 return linespec_keywords[i];
502 /* See description in linespec.h. */
505 is_ada_operator (const char *string)
507 const struct ada_opname_map *mapping;
509 for (mapping = ada_opname_table;
510 mapping->encoded != NULL
511 && !startswith (string, mapping->decoded); ++mapping)
514 return mapping->decoded == NULL ? 0 : strlen (mapping->decoded);
517 /* Find QUOTE_CHAR in STRING, accounting for the ':' terminal. Return
518 the location of QUOTE_CHAR, or NULL if not found. */
521 skip_quote_char (const char *string, char quote_char)
523 const char *p, *last;
525 p = last = find_toplevel_char (string, quote_char);
526 while (p && *p != '\0' && *p != ':')
528 p = find_toplevel_char (p, quote_char);
536 /* Make a writable copy of the string given in TOKEN, trimming
537 any trailing whitespace. */
539 static gdb::unique_xmalloc_ptr<char>
540 copy_token_string (linespec_token token)
544 if (token.type == LSTOKEN_KEYWORD)
545 return gdb::unique_xmalloc_ptr<char> (xstrdup (LS_TOKEN_KEYWORD (token)));
547 str = LS_TOKEN_STOKEN (token).ptr;
548 s = remove_trailing_whitespace (str, str + LS_TOKEN_STOKEN (token).length);
550 return gdb::unique_xmalloc_ptr<char> (savestring (str, s - str));
553 /* Does P represent the end of a quote-enclosed linespec? */
556 is_closing_quote_enclosed (const char *p)
558 if (strchr (linespec_quote_characters, *p))
560 p = skip_spaces ((char *) p);
561 return (*p == '\0' || linespec_lexer_lex_keyword (p));
564 /* Find the end of the parameter list that starts with *INPUT.
565 This helper function assists with lexing string segments
566 which might contain valid (non-terminating) commas. */
569 find_parameter_list_end (const char *input)
571 char end_char, start_char;
576 if (start_char == '(')
578 else if (start_char == '<')
587 if (*p == start_char)
589 else if (*p == end_char)
603 /* If the [STRING, STRING_LEN) string ends with what looks like a
604 keyword, return the keyword start offset in STRING. Return -1
608 string_find_incomplete_keyword_at_end (const char * const *keywords,
609 const char *string, size_t string_len)
611 const char *end = string + string_len;
614 while (p > string && *p != ' ')
619 size_t len = end - p;
620 for (size_t i = 0; keywords[i] != NULL; ++i)
621 if (strncmp (keywords[i], p, len) == 0)
628 /* Lex a string from the input in PARSER. */
630 static linespec_token
631 linespec_lexer_lex_string (linespec_parser *parser)
633 linespec_token token;
634 const char *start = PARSER_STREAM (parser);
636 token.type = LSTOKEN_STRING;
638 /* If the input stream starts with a quote character, skip to the next
639 quote character, regardless of the content. */
640 if (strchr (linespec_quote_characters, *PARSER_STREAM (parser)))
643 char quote_char = *PARSER_STREAM (parser);
645 /* Special case: Ada operators. */
646 if (PARSER_STATE (parser)->language->la_language == language_ada
647 && quote_char == '\"')
649 int len = is_ada_operator (PARSER_STREAM (parser));
653 /* The input is an Ada operator. Return the quoted string
655 LS_TOKEN_STOKEN (token).ptr = PARSER_STREAM (parser);
656 LS_TOKEN_STOKEN (token).length = len;
657 PARSER_STREAM (parser) += len;
661 /* The input does not represent an Ada operator -- fall through
662 to normal quoted string handling. */
665 /* Skip past the beginning quote. */
666 ++(PARSER_STREAM (parser));
668 /* Mark the start of the string. */
669 LS_TOKEN_STOKEN (token).ptr = PARSER_STREAM (parser);
671 /* Skip to the ending quote. */
672 end = skip_quote_char (PARSER_STREAM (parser), quote_char);
674 /* This helps the completer mode decide whether we have a
676 parser->completion_quote_char = quote_char;
677 parser->completion_quote_end = end;
679 /* Error if the input did not terminate properly, unless in
683 if (parser->completion_tracker == NULL)
684 error (_("unmatched quote"));
686 /* In completion mode, we'll try to complete the incomplete
688 token.type = LSTOKEN_STRING;
689 while (*PARSER_STREAM (parser) != '\0')
690 PARSER_STREAM (parser)++;
691 LS_TOKEN_STOKEN (token).length = PARSER_STREAM (parser) - 1 - start;
695 /* Skip over the ending quote and mark the length of the string. */
696 PARSER_STREAM (parser) = (char *) ++end;
697 LS_TOKEN_STOKEN (token).length = PARSER_STREAM (parser) - 2 - start;
704 /* Otherwise, only identifier characters are permitted.
705 Spaces are the exception. In general, we keep spaces,
706 but only if the next characters in the input do not resolve
707 to one of the keywords.
709 This allows users to forgo quoting CV-qualifiers, template arguments,
710 and similar common language constructs. */
714 if (isspace (*PARSER_STREAM (parser)))
716 p = skip_spaces (PARSER_STREAM (parser));
717 /* When we get here we know we've found something followed by
718 a space (we skip over parens and templates below).
719 So if we find a keyword now, we know it is a keyword and not,
720 say, a function name. */
721 if (linespec_lexer_lex_keyword (p) != NULL)
723 LS_TOKEN_STOKEN (token).ptr = start;
724 LS_TOKEN_STOKEN (token).length
725 = PARSER_STREAM (parser) - start;
729 /* Advance past the whitespace. */
730 PARSER_STREAM (parser) = p;
733 /* If the next character is EOI or (single) ':', the
734 string is complete; return the token. */
735 if (*PARSER_STREAM (parser) == 0)
737 LS_TOKEN_STOKEN (token).ptr = start;
738 LS_TOKEN_STOKEN (token).length = PARSER_STREAM (parser) - start;
741 else if (PARSER_STREAM (parser)[0] == ':')
743 /* Do not tokenize the C++ scope operator. */
744 if (PARSER_STREAM (parser)[1] == ':')
745 ++(PARSER_STREAM (parser));
747 /* Do not tokenize ABI tags such as "[abi:cxx11]". */
748 else if (PARSER_STREAM (parser) - start > 4
749 && startswith (PARSER_STREAM (parser) - 4, "[abi"))
750 ++(PARSER_STREAM (parser));
752 /* Do not tokenify if the input length so far is one
753 (i.e, a single-letter drive name) and the next character
754 is a directory separator. This allows Windows-style
755 paths to be recognized as filenames without quoting it. */
756 else if ((PARSER_STREAM (parser) - start) != 1
757 || !IS_DIR_SEPARATOR (PARSER_STREAM (parser)[1]))
759 LS_TOKEN_STOKEN (token).ptr = start;
760 LS_TOKEN_STOKEN (token).length
761 = PARSER_STREAM (parser) - start;
765 /* Special case: permit quote-enclosed linespecs. */
766 else if (parser->is_quote_enclosed
767 && strchr (linespec_quote_characters,
768 *PARSER_STREAM (parser))
769 && is_closing_quote_enclosed (PARSER_STREAM (parser)))
771 LS_TOKEN_STOKEN (token).ptr = start;
772 LS_TOKEN_STOKEN (token).length = PARSER_STREAM (parser) - start;
775 /* Because commas may terminate a linespec and appear in
776 the middle of valid string input, special cases for
777 '<' and '(' are necessary. */
778 else if (*PARSER_STREAM (parser) == '<'
779 || *PARSER_STREAM (parser) == '(')
781 /* Don't interpret 'operator<' / 'operator<<' as a
782 template parameter list though. */
783 if (*PARSER_STREAM (parser) == '<'
784 && (PARSER_STATE (parser)->language->la_language
786 && (PARSER_STREAM (parser) - start) >= CP_OPERATOR_LEN)
788 const char *p = PARSER_STREAM (parser);
790 while (p > start && isspace (p[-1]))
792 if (p - start >= CP_OPERATOR_LEN)
794 p -= CP_OPERATOR_LEN;
795 if (strncmp (p, CP_OPERATOR_STR, CP_OPERATOR_LEN) == 0
797 || !(isalnum (p[-1]) || p[-1] == '_')))
799 /* This is an operator name. Keep going. */
800 ++(PARSER_STREAM (parser));
801 if (*PARSER_STREAM (parser) == '<')
802 ++(PARSER_STREAM (parser));
808 const char *p = find_parameter_list_end (PARSER_STREAM (parser));
809 PARSER_STREAM (parser) = p;
811 /* Don't loop around to the normal \0 case above because
812 we don't want to misinterpret a potential keyword at
813 the end of the token when the string isn't
814 "()<>"-balanced. This handles "b
815 function(thread<tab>" in completion mode. */
818 LS_TOKEN_STOKEN (token).ptr = start;
819 LS_TOKEN_STOKEN (token).length
820 = PARSER_STREAM (parser) - start;
826 /* Commas are terminators, but not if they are part of an
828 else if (*PARSER_STREAM (parser) == ',')
830 if ((PARSER_STATE (parser)->language->la_language
832 && (PARSER_STREAM (parser) - start) > CP_OPERATOR_LEN)
834 const char *p = strstr (start, CP_OPERATOR_STR);
836 if (p != NULL && is_operator_name (p))
838 /* This is an operator name. Keep going. */
839 ++(PARSER_STREAM (parser));
844 /* Comma terminates the string. */
845 LS_TOKEN_STOKEN (token).ptr = start;
846 LS_TOKEN_STOKEN (token).length = PARSER_STREAM (parser) - start;
850 /* Advance the stream. */
851 ++(PARSER_STREAM (parser));
858 /* Lex a single linespec token from PARSER. */
860 static linespec_token
861 linespec_lexer_lex_one (linespec_parser *parser)
865 if (parser->lexer.current.type == LSTOKEN_CONSUMED)
867 /* Skip any whitespace. */
868 PARSER_STREAM (parser) = skip_spaces (PARSER_STREAM (parser));
870 /* Check for a keyword, they end the linespec. */
871 keyword = linespec_lexer_lex_keyword (PARSER_STREAM (parser));
874 parser->lexer.current.type = LSTOKEN_KEYWORD;
875 LS_TOKEN_KEYWORD (parser->lexer.current) = keyword;
876 /* We do not advance the stream here intentionally:
877 we would like lexing to stop when a keyword is seen.
879 PARSER_STREAM (parser) += strlen (keyword); */
881 return parser->lexer.current;
884 /* Handle other tokens. */
885 switch (*PARSER_STREAM (parser))
888 parser->lexer.current.type = LSTOKEN_EOI;
892 case '0': case '1': case '2': case '3': case '4':
893 case '5': case '6': case '7': case '8': case '9':
894 if (!linespec_lexer_lex_number (parser, &(parser->lexer.current)))
895 parser->lexer.current = linespec_lexer_lex_string (parser);
899 /* If we have a scope operator, lex the input as a string.
900 Otherwise, return LSTOKEN_COLON. */
901 if (PARSER_STREAM (parser)[1] == ':')
902 parser->lexer.current = linespec_lexer_lex_string (parser);
905 parser->lexer.current.type = LSTOKEN_COLON;
906 ++(PARSER_STREAM (parser));
910 case '\'': case '\"':
911 /* Special case: permit quote-enclosed linespecs. */
912 if (parser->is_quote_enclosed
913 && is_closing_quote_enclosed (PARSER_STREAM (parser)))
915 ++(PARSER_STREAM (parser));
916 parser->lexer.current.type = LSTOKEN_EOI;
919 parser->lexer.current = linespec_lexer_lex_string (parser);
923 parser->lexer.current.type = LSTOKEN_COMMA;
924 LS_TOKEN_STOKEN (parser->lexer.current).ptr
925 = PARSER_STREAM (parser);
926 LS_TOKEN_STOKEN (parser->lexer.current).length = 1;
927 ++(PARSER_STREAM (parser));
931 /* If the input is not a number, it must be a string.
932 [Keywords were already considered above.] */
933 parser->lexer.current = linespec_lexer_lex_string (parser);
938 return parser->lexer.current;
941 /* Consume the current token and return the next token in PARSER's
942 input stream. Also advance the completion word for completion
945 static linespec_token
946 linespec_lexer_consume_token (linespec_parser *parser)
948 gdb_assert (parser->lexer.current.type != LSTOKEN_EOI);
950 bool advance_word = (parser->lexer.current.type != LSTOKEN_STRING
951 || *PARSER_STREAM (parser) != '\0');
953 /* If we're moving past a string to some other token, it must be the
954 quote was terminated. */
955 if (parser->completion_quote_char)
957 gdb_assert (parser->lexer.current.type == LSTOKEN_STRING);
959 /* If the string was the last (non-EOI) token, we're past the
960 quote, but remember that for later. */
961 if (*PARSER_STREAM (parser) != '\0')
963 parser->completion_quote_char = '\0';
964 parser->completion_quote_end = NULL;;
968 parser->lexer.current.type = LSTOKEN_CONSUMED;
969 linespec_lexer_lex_one (parser);
971 if (parser->lexer.current.type == LSTOKEN_STRING)
973 /* Advance the completion word past a potential initial
975 parser->completion_word = LS_TOKEN_STOKEN (parser->lexer.current).ptr;
977 else if (advance_word)
979 /* Advance the completion word past any whitespace. */
980 parser->completion_word = PARSER_STREAM (parser);
983 return parser->lexer.current;
986 /* Return the next token without consuming the current token. */
988 static linespec_token
989 linespec_lexer_peek_token (linespec_parser *parser)
992 const char *saved_stream = PARSER_STREAM (parser);
993 linespec_token saved_token = parser->lexer.current;
994 int saved_completion_quote_char = parser->completion_quote_char;
995 const char *saved_completion_quote_end = parser->completion_quote_end;
996 const char *saved_completion_word = parser->completion_word;
998 next = linespec_lexer_consume_token (parser);
999 PARSER_STREAM (parser) = saved_stream;
1000 parser->lexer.current = saved_token;
1001 parser->completion_quote_char = saved_completion_quote_char;
1002 parser->completion_quote_end = saved_completion_quote_end;
1003 parser->completion_word = saved_completion_word;
1007 /* Helper functions. */
1009 /* Add SAL to SALS, and also update SELF->CANONICAL_NAMES to reflect
1010 the new sal, if needed. If not NULL, SYMNAME is the name of the
1011 symbol to use when constructing the new canonical name.
1013 If LITERAL_CANONICAL is non-zero, SYMNAME will be used as the
1014 canonical name for the SAL. */
1017 add_sal_to_sals (struct linespec_state *self,
1018 std::vector<symtab_and_line> *sals,
1019 struct symtab_and_line *sal,
1020 const char *symname, int literal_canonical)
1022 sals->push_back (*sal);
1024 if (self->canonical)
1026 struct linespec_canonical_name *canonical;
1028 self->canonical_names = XRESIZEVEC (struct linespec_canonical_name,
1029 self->canonical_names,
1031 canonical = &self->canonical_names[sals->size () - 1];
1032 if (!literal_canonical && sal->symtab)
1034 symtab_to_fullname (sal->symtab);
1036 /* Note that the filter doesn't have to be a valid linespec
1037 input. We only apply the ":LINE" treatment to Ada for
1039 if (symname != NULL && sal->line != 0
1040 && self->language->la_language == language_ada)
1041 canonical->suffix = xstrprintf ("%s:%d", symname, sal->line);
1042 else if (symname != NULL)
1043 canonical->suffix = xstrdup (symname);
1045 canonical->suffix = xstrprintf ("%d", sal->line);
1046 canonical->symtab = sal->symtab;
1050 if (symname != NULL)
1051 canonical->suffix = xstrdup (symname);
1053 canonical->suffix = xstrdup ("<unknown>");
1054 canonical->symtab = NULL;
1059 /* A hash function for address_entry. */
1062 hash_address_entry (const void *p)
1064 const struct address_entry *aep = (const struct address_entry *) p;
1067 hash = iterative_hash_object (aep->pspace, 0);
1068 return iterative_hash_object (aep->addr, hash);
1071 /* An equality function for address_entry. */
1074 eq_address_entry (const void *a, const void *b)
1076 const struct address_entry *aea = (const struct address_entry *) a;
1077 const struct address_entry *aeb = (const struct address_entry *) b;
1079 return aea->pspace == aeb->pspace && aea->addr == aeb->addr;
1082 /* Check whether the address, represented by PSPACE and ADDR, is
1083 already in the set. If so, return 0. Otherwise, add it and return
1087 maybe_add_address (htab_t set, struct program_space *pspace, CORE_ADDR addr)
1089 struct address_entry e, *p;
1094 slot = htab_find_slot (set, &e, INSERT);
1098 p = XNEW (struct address_entry);
1099 memcpy (p, &e, sizeof (struct address_entry));
1105 /* A helper that walks over all matching symtabs in all objfiles and
1106 calls CALLBACK for each symbol matching NAME. If SEARCH_PSPACE is
1107 not NULL, then the search is restricted to just that program
1108 space. If INCLUDE_INLINE is true then symbols representing
1109 inlined instances of functions will be included in the result. */
1112 iterate_over_all_matching_symtabs
1113 (struct linespec_state *state,
1114 const lookup_name_info &lookup_name,
1115 const domain_enum name_domain,
1116 enum search_domain search_domain,
1117 struct program_space *search_pspace, bool include_inline,
1118 gdb::function_view<symbol_found_callback_ftype> callback)
1120 struct objfile *objfile;
1121 struct program_space *pspace;
1123 ALL_PSPACES (pspace)
1125 if (search_pspace != NULL && search_pspace != pspace)
1127 if (pspace->executing_startup)
1130 set_current_program_space (pspace);
1132 ALL_OBJFILES (objfile)
1134 struct compunit_symtab *cu;
1137 objfile->sf->qf->expand_symtabs_matching (objfile,
1143 ALL_OBJFILE_COMPUNITS (objfile, cu)
1145 struct symtab *symtab = COMPUNIT_FILETABS (cu);
1147 iterate_over_file_blocks (symtab, lookup_name, name_domain, callback);
1151 struct block *block;
1154 for (i = FIRST_LOCAL_BLOCK;
1155 i < BLOCKVECTOR_NBLOCKS (SYMTAB_BLOCKVECTOR (symtab));
1158 block = BLOCKVECTOR_BLOCK (SYMTAB_BLOCKVECTOR (symtab), i);
1159 state->language->la_iterate_over_symbols
1160 (block, lookup_name, name_domain, [&] (symbol *sym)
1162 /* Restrict calls to CALLBACK to symbols
1163 representing inline symbols only. */
1164 if (SYMBOL_INLINED (sym))
1165 return callback (sym);
1175 /* Returns the block to be used for symbol searches from
1176 the current location. */
1178 static const struct block *
1179 get_current_search_block (void)
1181 const struct block *block;
1182 enum language save_language;
1184 /* get_selected_block can change the current language when there is
1185 no selected frame yet. */
1186 save_language = current_language->la_language;
1187 block = get_selected_block (0);
1188 set_language (save_language);
1193 /* Iterate over static and global blocks. */
1196 iterate_over_file_blocks
1197 (struct symtab *symtab, const lookup_name_info &name,
1198 domain_enum domain, gdb::function_view<symbol_found_callback_ftype> callback)
1200 struct block *block;
1202 for (block = BLOCKVECTOR_BLOCK (SYMTAB_BLOCKVECTOR (symtab), STATIC_BLOCK);
1204 block = BLOCK_SUPERBLOCK (block))
1205 LA_ITERATE_OVER_SYMBOLS (block, name, domain, callback);
1208 /* A helper for find_method. This finds all methods in type T of
1209 language T_LANG which match NAME. It adds matching symbol names to
1210 RESULT_NAMES, and adds T's direct superclasses to SUPERCLASSES. */
1213 find_methods (struct type *t, enum language t_lang, const char *name,
1214 std::vector<const char *> *result_names,
1215 std::vector<struct type *> *superclasses)
1218 const char *class_name = TYPE_NAME (t);
1220 /* Ignore this class if it doesn't have a name. This is ugly, but
1221 unless we figure out how to get the physname without the name of
1222 the class, then the loop can't do any good. */
1226 lookup_name_info lookup_name (name, symbol_name_match_type::FULL);
1227 symbol_name_matcher_ftype *symbol_name_compare
1228 = get_symbol_name_matcher (language_def (t_lang), lookup_name);
1230 t = check_typedef (t);
1232 /* Loop over each method name. At this level, all overloads of a name
1233 are counted as a single name. There is an inner loop which loops over
1236 for (method_counter = TYPE_NFN_FIELDS (t) - 1;
1237 method_counter >= 0;
1240 const char *method_name = TYPE_FN_FIELDLIST_NAME (t, method_counter);
1241 char dem_opname[64];
1243 if (startswith (method_name, "__") ||
1244 startswith (method_name, "op") ||
1245 startswith (method_name, "type"))
1247 if (cplus_demangle_opname (method_name, dem_opname, DMGL_ANSI))
1248 method_name = dem_opname;
1249 else if (cplus_demangle_opname (method_name, dem_opname, 0))
1250 method_name = dem_opname;
1253 if (symbol_name_compare (method_name, lookup_name, NULL))
1257 for (field_counter = (TYPE_FN_FIELDLIST_LENGTH (t, method_counter)
1263 const char *phys_name;
1265 f = TYPE_FN_FIELDLIST1 (t, method_counter);
1266 if (TYPE_FN_FIELD_STUB (f, field_counter))
1268 phys_name = TYPE_FN_FIELD_PHYSNAME (f, field_counter);
1269 result_names->push_back (phys_name);
1275 for (ibase = 0; ibase < TYPE_N_BASECLASSES (t); ibase++)
1276 superclasses->push_back (TYPE_BASECLASS (t, ibase));
1279 /* Find an instance of the character C in the string S that is outside
1280 of all parenthesis pairs, single-quoted strings, and double-quoted
1281 strings. Also, ignore the char within a template name, like a ','
1282 within foo<int, int>, while considering C++ operator</operator<<. */
1285 find_toplevel_char (const char *s, char c)
1287 int quoted = 0; /* zero if we're not in quotes;
1288 '"' if we're in a double-quoted string;
1289 '\'' if we're in a single-quoted string. */
1290 int depth = 0; /* Number of unclosed parens we've seen. */
1293 for (scan = s; *scan; scan++)
1297 if (*scan == quoted)
1299 else if (*scan == '\\' && *(scan + 1))
1302 else if (*scan == c && ! quoted && depth == 0)
1304 else if (*scan == '"' || *scan == '\'')
1306 else if (*scan == '(' || *scan == '<')
1308 else if ((*scan == ')' || *scan == '>') && depth > 0)
1310 else if (*scan == 'o' && !quoted && depth == 0)
1312 /* Handle C++ operator names. */
1313 if (strncmp (scan, CP_OPERATOR_STR, CP_OPERATOR_LEN) == 0)
1315 scan += CP_OPERATOR_LEN;
1318 while (isspace (*scan))
1329 /* Skip over one less than the appropriate number of
1330 characters: the for loop will skip over the last
1356 /* The string equivalent of find_toplevel_char. Returns a pointer
1357 to the location of NEEDLE in HAYSTACK, ignoring any occurrences
1358 inside "()" and "<>". Returns NULL if NEEDLE was not found. */
1361 find_toplevel_string (const char *haystack, const char *needle)
1363 const char *s = haystack;
1367 s = find_toplevel_char (s, *needle);
1371 /* Found first char in HAYSTACK; check rest of string. */
1372 if (startswith (s, needle))
1375 /* Didn't find it; loop over HAYSTACK, looking for the next
1376 instance of the first character of NEEDLE. */
1380 while (s != NULL && *s != '\0');
1382 /* NEEDLE was not found in HAYSTACK. */
1386 /* Convert CANONICAL to its string representation using
1387 symtab_to_fullname for SYMTAB. */
1390 canonical_to_fullform (const struct linespec_canonical_name *canonical)
1392 if (canonical->symtab == NULL)
1393 return canonical->suffix;
1395 return string_printf ("%s:%s", symtab_to_fullname (canonical->symtab),
1399 /* Given FILTERS, a list of canonical names, filter the sals in RESULT
1400 and store the result in SELF->CANONICAL. */
1403 filter_results (struct linespec_state *self,
1404 std::vector<symtab_and_line> *result,
1405 const std::vector<const char *> &filters)
1407 for (const char *name : filters)
1411 for (size_t j = 0; j < result->size (); ++j)
1413 const struct linespec_canonical_name *canonical;
1415 canonical = &self->canonical_names[j];
1416 std::string fullform = canonical_to_fullform (canonical);
1418 if (name == fullform)
1419 lsal.sals.push_back ((*result)[j]);
1422 if (!lsal.sals.empty ())
1424 lsal.canonical = xstrdup (name);
1425 self->canonical->lsals.push_back (std::move (lsal));
1429 self->canonical->pre_expanded = 0;
1432 /* Store RESULT into SELF->CANONICAL. */
1435 convert_results_to_lsals (struct linespec_state *self,
1436 std::vector<symtab_and_line> *result)
1438 struct linespec_sals lsal;
1440 lsal.canonical = NULL;
1441 lsal.sals = std::move (*result);
1442 self->canonical->lsals.push_back (std::move (lsal));
1445 /* A structure that contains two string representations of a struct
1446 linespec_canonical_name:
1447 - one where the the symtab's fullname is used;
1448 - one where the filename followed the "set filename-display"
1451 struct decode_line_2_item
1453 decode_line_2_item (std::string &&fullform_, std::string &&displayform_,
1455 : fullform (std::move (fullform_)),
1456 displayform (std::move (displayform_)),
1457 selected (selected_)
1461 /* The form using symtab_to_fullname. */
1462 std::string fullform;
1464 /* The form using symtab_to_filename_for_display. */
1465 std::string displayform;
1467 /* Field is initialized to zero and it is set to one if the user
1468 requested breakpoint for this entry. */
1469 unsigned int selected : 1;
1472 /* Helper for std::sort to sort decode_line_2_item entries by
1473 DISPLAYFORM and secondarily by FULLFORM. */
1476 decode_line_2_compare_items (const decode_line_2_item &a,
1477 const decode_line_2_item &b)
1479 if (a.displayform != b.displayform)
1480 return a.displayform < b.displayform;
1481 return a.fullform < b.fullform;
1484 /* Handle multiple results in RESULT depending on SELECT_MODE. This
1485 will either return normally, throw an exception on multiple
1486 results, or present a menu to the user. On return, the SALS vector
1487 in SELF->CANONICAL is set up properly. */
1490 decode_line_2 (struct linespec_state *self,
1491 std::vector<symtab_and_line> *result,
1492 const char *select_mode)
1497 std::vector<const char *> filters;
1498 std::vector<struct decode_line_2_item> items;
1500 gdb_assert (select_mode != multiple_symbols_all);
1501 gdb_assert (self->canonical != NULL);
1502 gdb_assert (!result->empty ());
1504 /* Prepare ITEMS array. */
1505 for (i = 0; i < result->size (); ++i)
1507 const struct linespec_canonical_name *canonical;
1508 std::string displayform;
1510 canonical = &self->canonical_names[i];
1511 gdb_assert (canonical->suffix != NULL);
1513 std::string fullform = canonical_to_fullform (canonical);
1515 if (canonical->symtab == NULL)
1516 displayform = canonical->suffix;
1519 const char *fn_for_display;
1521 fn_for_display = symtab_to_filename_for_display (canonical->symtab);
1522 displayform = string_printf ("%s:%s", fn_for_display,
1526 items.emplace_back (std::move (fullform), std::move (displayform),
1530 /* Sort the list of method names. */
1531 std::sort (items.begin (), items.end (), decode_line_2_compare_items);
1533 /* Remove entries with the same FULLFORM. */
1534 items.erase (std::unique (items.begin (), items.end (),
1535 [] (const struct decode_line_2_item &a,
1536 const struct decode_line_2_item &b)
1538 return a.fullform == b.fullform;
1542 if (select_mode == multiple_symbols_cancel && items.size () > 1)
1543 error (_("canceled because the command is ambiguous\n"
1544 "See set/show multiple-symbol."));
1546 if (select_mode == multiple_symbols_all || items.size () == 1)
1548 convert_results_to_lsals (self, result);
1552 printf_unfiltered (_("[0] cancel\n[1] all\n"));
1553 for (i = 0; i < items.size (); i++)
1554 printf_unfiltered ("[%d] %s\n", i + 2, items[i].displayform.c_str ());
1556 prompt = getenv ("PS2");
1561 args = command_line_input (prompt, "overload-choice");
1563 if (args == 0 || *args == 0)
1564 error_no_arg (_("one or more choice numbers"));
1566 number_or_range_parser parser (args);
1567 while (!parser.finished ())
1569 int num = parser.get_number ();
1572 error (_("canceled"));
1575 /* We intentionally make this result in a single breakpoint,
1576 contrary to what older versions of gdb did. The
1577 rationale is that this lets a user get the
1578 multiple_symbols_all behavior even with the 'ask'
1579 setting; and he can get separate breakpoints by entering
1580 "2-57" at the query. */
1581 convert_results_to_lsals (self, result);
1586 if (num >= items.size ())
1587 printf_unfiltered (_("No choice number %d.\n"), num);
1590 struct decode_line_2_item *item = &items[num];
1592 if (!item->selected)
1594 filters.push_back (item->fullform.c_str ());
1599 printf_unfiltered (_("duplicate request for %d ignored.\n"),
1605 filter_results (self, result, filters);
1610 /* The parser of linespec itself. */
1612 /* Throw an appropriate error when SYMBOL is not found (optionally in
1615 static void ATTRIBUTE_NORETURN
1616 symbol_not_found_error (const char *symbol, const char *filename)
1621 if (!have_full_symbols ()
1622 && !have_partial_symbols ()
1623 && !have_minimal_symbols ())
1624 throw_error (NOT_FOUND_ERROR,
1625 _("No symbol table is loaded. Use the \"file\" command."));
1627 /* If SYMBOL starts with '$', the user attempted to either lookup
1628 a function/variable in his code starting with '$' or an internal
1629 variable of that name. Since we do not know which, be concise and
1630 explain both possibilities. */
1634 throw_error (NOT_FOUND_ERROR,
1635 _("Undefined convenience variable or function \"%s\" "
1636 "not defined in \"%s\"."), symbol, filename);
1638 throw_error (NOT_FOUND_ERROR,
1639 _("Undefined convenience variable or function \"%s\" "
1640 "not defined."), symbol);
1645 throw_error (NOT_FOUND_ERROR,
1646 _("Function \"%s\" not defined in \"%s\"."),
1649 throw_error (NOT_FOUND_ERROR,
1650 _("Function \"%s\" not defined."), symbol);
1654 /* Throw an appropriate error when an unexpected token is encountered
1657 static void ATTRIBUTE_NORETURN
1658 unexpected_linespec_error (linespec_parser *parser)
1660 linespec_token token;
1661 static const char * token_type_strings[]
1662 = {"keyword", "colon", "string", "number", "comma", "end of input"};
1664 /* Get the token that generated the error. */
1665 token = linespec_lexer_lex_one (parser);
1667 /* Finally, throw the error. */
1668 if (token.type == LSTOKEN_STRING || token.type == LSTOKEN_NUMBER
1669 || token.type == LSTOKEN_KEYWORD)
1671 gdb::unique_xmalloc_ptr<char> string = copy_token_string (token);
1672 throw_error (GENERIC_ERROR,
1673 _("malformed linespec error: unexpected %s, \"%s\""),
1674 token_type_strings[token.type], string.get ());
1677 throw_error (GENERIC_ERROR,
1678 _("malformed linespec error: unexpected %s"),
1679 token_type_strings[token.type]);
1682 /* Throw an undefined label error. */
1684 static void ATTRIBUTE_NORETURN
1685 undefined_label_error (const char *function, const char *label)
1687 if (function != NULL)
1688 throw_error (NOT_FOUND_ERROR,
1689 _("No label \"%s\" defined in function \"%s\"."),
1692 throw_error (NOT_FOUND_ERROR,
1693 _("No label \"%s\" defined in current function."),
1697 /* Throw a source file not found error. */
1699 static void ATTRIBUTE_NORETURN
1700 source_file_not_found_error (const char *name)
1702 throw_error (NOT_FOUND_ERROR, _("No source file named %s."), name);
1705 /* Unless at EIO, save the current stream position as completion word
1706 point, and consume the next token. */
1708 static linespec_token
1709 save_stream_and_consume_token (linespec_parser *parser)
1711 if (linespec_lexer_peek_token (parser).type != LSTOKEN_EOI)
1712 parser->completion_word = PARSER_STREAM (parser);
1713 return linespec_lexer_consume_token (parser);
1716 /* See description in linespec.h. */
1719 linespec_parse_line_offset (const char *string)
1721 const char *start = string;
1722 struct line_offset line_offset = {0, LINE_OFFSET_NONE};
1726 line_offset.sign = LINE_OFFSET_PLUS;
1729 else if (*string == '-')
1731 line_offset.sign = LINE_OFFSET_MINUS;
1735 if (*string != '\0' && !isdigit (*string))
1736 error (_("malformed line offset: \"%s\""), start);
1738 /* Right now, we only allow base 10 for offsets. */
1739 line_offset.offset = atoi (string);
1743 /* In completion mode, if the user is still typing the number, there's
1744 no possible completion to offer. But if there's already input past
1745 the number, setup to expect NEXT. */
1748 set_completion_after_number (linespec_parser *parser,
1749 linespec_complete_what next)
1751 if (*PARSER_STREAM (parser) == ' ')
1753 parser->completion_word = skip_spaces (PARSER_STREAM (parser) + 1);
1754 parser->complete_what = next;
1758 parser->completion_word = PARSER_STREAM (parser);
1759 parser->complete_what = linespec_complete_what::NOTHING;
1763 /* Parse the basic_spec in PARSER's input. */
1766 linespec_parse_basic (linespec_parser *parser)
1768 gdb::unique_xmalloc_ptr<char> name;
1769 linespec_token token;
1770 std::vector<symbol *> symbols;
1771 std::vector<symbol *> *labels;
1772 std::vector<bound_minimal_symbol> minimal_symbols;
1774 /* Get the next token. */
1775 token = linespec_lexer_lex_one (parser);
1777 /* If it is EOI or KEYWORD, issue an error. */
1778 if (token.type == LSTOKEN_KEYWORD)
1780 parser->complete_what = linespec_complete_what::NOTHING;
1781 unexpected_linespec_error (parser);
1783 else if (token.type == LSTOKEN_EOI)
1785 unexpected_linespec_error (parser);
1787 /* If it is a LSTOKEN_NUMBER, we have an offset. */
1788 else if (token.type == LSTOKEN_NUMBER)
1790 set_completion_after_number (parser, linespec_complete_what::KEYWORD);
1792 /* Record the line offset and get the next token. */
1793 name = copy_token_string (token);
1794 PARSER_EXPLICIT (parser)->line_offset
1795 = linespec_parse_line_offset (name.get ());
1797 /* Get the next token. */
1798 token = linespec_lexer_consume_token (parser);
1800 /* If the next token is a comma, stop parsing and return. */
1801 if (token.type == LSTOKEN_COMMA)
1803 parser->complete_what = linespec_complete_what::NOTHING;
1807 /* If the next token is anything but EOI or KEYWORD, issue
1809 if (token.type != LSTOKEN_KEYWORD && token.type != LSTOKEN_EOI)
1810 unexpected_linespec_error (parser);
1813 if (token.type == LSTOKEN_KEYWORD || token.type == LSTOKEN_EOI)
1816 /* Next token must be LSTOKEN_STRING. */
1817 if (token.type != LSTOKEN_STRING)
1819 parser->complete_what = linespec_complete_what::NOTHING;
1820 unexpected_linespec_error (parser);
1823 /* The current token will contain the name of a function, method,
1825 name = copy_token_string (token);
1827 if (parser->completion_tracker != NULL)
1829 /* If the function name ends with a ":", then this may be an
1830 incomplete "::" scope operator instead of a label separator.
1833 which should expand to:
1836 Do a tentative completion assuming the later. If we find
1837 completions, advance the stream past the colon token and make
1838 it part of the function name/token. */
1840 if (!parser->completion_quote_char
1841 && strcmp (PARSER_STREAM (parser), ":") == 0)
1843 completion_tracker tmp_tracker;
1844 const char *source_filename
1845 = PARSER_EXPLICIT (parser)->source_filename;
1846 symbol_name_match_type match_type
1847 = PARSER_EXPLICIT (parser)->func_name_match_type;
1849 linespec_complete_function (tmp_tracker,
1850 parser->completion_word,
1854 if (tmp_tracker.have_completions ())
1856 PARSER_STREAM (parser)++;
1857 LS_TOKEN_STOKEN (token).length++;
1859 name.reset (savestring (parser->completion_word,
1860 (PARSER_STREAM (parser)
1861 - parser->completion_word)));
1865 PARSER_EXPLICIT (parser)->function_name = name.release ();
1869 /* Try looking it up as a function/method. */
1870 find_linespec_symbols (PARSER_STATE (parser),
1871 PARSER_RESULT (parser)->file_symtabs, name.get (),
1872 PARSER_EXPLICIT (parser)->func_name_match_type,
1873 &symbols, &minimal_symbols);
1875 if (!symbols.empty () || !minimal_symbols.empty ())
1877 PARSER_RESULT (parser)->function_symbols
1878 = new std::vector<symbol *> (std::move (symbols));
1879 PARSER_RESULT (parser)->minimal_symbols
1880 = new std::vector<bound_minimal_symbol>
1881 (std::move (minimal_symbols));
1882 PARSER_EXPLICIT (parser)->function_name = name.release ();
1886 /* NAME was not a function or a method. So it must be a label
1887 name or user specified variable like "break foo.c:$zippo". */
1888 labels = find_label_symbols (PARSER_STATE (parser), NULL,
1889 &symbols, name.get ());
1892 PARSER_RESULT (parser)->labels.label_symbols = labels;
1893 PARSER_RESULT (parser)->labels.function_symbols
1894 = new std::vector<symbol *> (std::move (symbols));
1895 PARSER_EXPLICIT (parser)->label_name = name.release ();
1897 else if (token.type == LSTOKEN_STRING
1898 && *LS_TOKEN_STOKEN (token).ptr == '$')
1900 /* User specified a convenience variable or history value. */
1901 PARSER_EXPLICIT (parser)->line_offset
1902 = linespec_parse_variable (PARSER_STATE (parser), name.get ());
1904 if (PARSER_EXPLICIT (parser)->line_offset.sign == LINE_OFFSET_UNKNOWN)
1906 /* The user-specified variable was not valid. Do not
1907 throw an error here. parse_linespec will do it for us. */
1908 PARSER_EXPLICIT (parser)->function_name = name.release ();
1914 /* The name is also not a label. Abort parsing. Do not throw
1915 an error here. parse_linespec will do it for us. */
1917 /* Save a copy of the name we were trying to lookup. */
1918 PARSER_EXPLICIT (parser)->function_name = name.release ();
1924 int previous_qc = parser->completion_quote_char;
1926 /* Get the next token. */
1927 token = linespec_lexer_consume_token (parser);
1929 if (token.type == LSTOKEN_EOI)
1931 if (previous_qc && !parser->completion_quote_char)
1932 parser->complete_what = linespec_complete_what::KEYWORD;
1934 else if (token.type == LSTOKEN_COLON)
1936 /* User specified a label or a lineno. */
1937 token = linespec_lexer_consume_token (parser);
1939 if (token.type == LSTOKEN_NUMBER)
1941 /* User specified an offset. Record the line offset and
1942 get the next token. */
1943 set_completion_after_number (parser, linespec_complete_what::KEYWORD);
1945 name = copy_token_string (token);
1946 PARSER_EXPLICIT (parser)->line_offset
1947 = linespec_parse_line_offset (name.get ());
1949 /* Get the next token. */
1950 token = linespec_lexer_consume_token (parser);
1952 else if (token.type == LSTOKEN_EOI && parser->completion_tracker != NULL)
1954 parser->complete_what = linespec_complete_what::LABEL;
1956 else if (token.type == LSTOKEN_STRING)
1958 parser->complete_what = linespec_complete_what::LABEL;
1960 /* If we have text after the label separated by whitespace
1961 (e.g., "b func():lab i<tab>"), don't consider it part of
1962 the label. In completion mode that should complete to
1963 "if", in normal mode, the 'i' should be treated as
1965 if (parser->completion_quote_char == '\0')
1967 const char *ptr = LS_TOKEN_STOKEN (token).ptr;
1968 for (size_t i = 0; i < LS_TOKEN_STOKEN (token).length; i++)
1972 LS_TOKEN_STOKEN (token).length = i;
1973 PARSER_STREAM (parser) = skip_spaces (ptr + i + 1);
1979 if (parser->completion_tracker != NULL)
1981 if (PARSER_STREAM (parser)[-1] == ' ')
1983 parser->completion_word = PARSER_STREAM (parser);
1984 parser->complete_what = linespec_complete_what::KEYWORD;
1989 /* Grab a copy of the label's name and look it up. */
1990 name = copy_token_string (token);
1992 = find_label_symbols (PARSER_STATE (parser),
1993 PARSER_RESULT (parser)->function_symbols,
1994 &symbols, name.get ());
1998 PARSER_RESULT (parser)->labels.label_symbols = labels;
1999 PARSER_RESULT (parser)->labels.function_symbols
2000 = new std::vector<symbol *> (std::move (symbols));
2001 PARSER_EXPLICIT (parser)->label_name = name.release ();
2005 /* We don't know what it was, but it isn't a label. */
2006 undefined_label_error
2007 (PARSER_EXPLICIT (parser)->function_name, name.get ());
2012 /* Check for a line offset. */
2013 token = save_stream_and_consume_token (parser);
2014 if (token.type == LSTOKEN_COLON)
2016 /* Get the next token. */
2017 token = linespec_lexer_consume_token (parser);
2019 /* It must be a line offset. */
2020 if (token.type != LSTOKEN_NUMBER)
2021 unexpected_linespec_error (parser);
2023 /* Record the line offset and get the next token. */
2024 name = copy_token_string (token);
2026 PARSER_EXPLICIT (parser)->line_offset
2027 = linespec_parse_line_offset (name.get ());
2029 /* Get the next token. */
2030 token = linespec_lexer_consume_token (parser);
2035 /* Trailing ':' in the input. Issue an error. */
2036 unexpected_linespec_error (parser);
2041 /* Canonicalize the linespec contained in LS. The result is saved into
2042 STATE->canonical. This function handles both linespec and explicit
2046 canonicalize_linespec (struct linespec_state *state, const linespec_p ls)
2048 struct event_location *canon;
2049 struct explicit_location *explicit_loc;
2051 /* If canonicalization was not requested, no need to do anything. */
2052 if (!state->canonical)
2055 /* Save everything as an explicit location. */
2056 state->canonical->location
2057 = new_explicit_location (&ls->explicit_loc);
2058 canon = state->canonical->location.get ();
2059 explicit_loc = get_explicit_location (canon);
2061 if (explicit_loc->label_name != NULL)
2063 state->canonical->special_display = 1;
2065 if (explicit_loc->function_name == NULL)
2067 /* No function was specified, so add the symbol name. */
2068 gdb_assert (!ls->labels.function_symbols->empty ()
2069 && (ls->labels.function_symbols->size () == 1));
2070 struct symbol *s = ls->labels.function_symbols->front ();
2071 explicit_loc->function_name = xstrdup (SYMBOL_NATURAL_NAME (s));
2075 /* If this location originally came from a linespec, save a string
2076 representation of it for display and saving to file. */
2077 if (state->is_linespec)
2079 char *linespec = explicit_location_to_linespec (explicit_loc);
2081 set_event_location_string (canon, linespec);
2086 /* Given a line offset in LS, construct the relevant SALs. */
2088 static std::vector<symtab_and_line>
2089 create_sals_line_offset (struct linespec_state *self,
2092 int use_default = 0;
2094 /* This is where we need to make sure we have good defaults.
2095 We must guarantee that this section of code is never executed
2096 when we are called with just a function name, since
2097 set_default_source_symtab_and_line uses
2098 select_source_symtab that calls us with such an argument. */
2100 if (ls->file_symtabs->size () == 1
2101 && ls->file_symtabs->front () == nullptr)
2103 const char *fullname;
2105 set_current_program_space (self->program_space);
2107 /* Make sure we have at least a default source line. */
2108 set_default_source_symtab_and_line ();
2109 initialize_defaults (&self->default_symtab, &self->default_line);
2110 fullname = symtab_to_fullname (self->default_symtab);
2111 symtab_vector_up r =
2112 collect_symtabs_from_filename (fullname, self->search_pspace);
2113 ls->file_symtabs = r.release ();
2117 symtab_and_line val;
2118 val.line = ls->explicit_loc.line_offset.offset;
2119 switch (ls->explicit_loc.line_offset.sign)
2121 case LINE_OFFSET_PLUS:
2122 if (ls->explicit_loc.line_offset.offset == 0)
2125 val.line = self->default_line + val.line;
2128 case LINE_OFFSET_MINUS:
2129 if (ls->explicit_loc.line_offset.offset == 0)
2132 val.line = self->default_line - val.line;
2134 val.line = -val.line;
2137 case LINE_OFFSET_NONE:
2138 break; /* No need to adjust val.line. */
2141 std::vector<symtab_and_line> values;
2142 if (self->list_mode)
2143 values = decode_digits_list_mode (self, ls, val);
2146 struct linetable_entry *best_entry = NULL;
2149 std::vector<symtab_and_line> intermediate_results
2150 = decode_digits_ordinary (self, ls, val.line, &best_entry);
2151 if (intermediate_results.empty () && best_entry != NULL)
2152 intermediate_results = decode_digits_ordinary (self, ls,
2156 /* For optimized code, the compiler can scatter one source line
2157 across disjoint ranges of PC values, even when no duplicate
2158 functions or inline functions are involved. For example,
2159 'for (;;)' inside a non-template, non-inline, and non-ctor-or-dtor
2160 function can result in two PC ranges. In this case, we don't
2161 want to set a breakpoint on the first PC of each range. To filter
2162 such cases, we use containing blocks -- for each PC found
2163 above, we see if there are other PCs that are in the same
2164 block. If yes, the other PCs are filtered out. */
2166 gdb::def_vector<int> filter (intermediate_results.size ());
2167 gdb::def_vector<const block *> blocks (intermediate_results.size ());
2169 for (i = 0; i < intermediate_results.size (); ++i)
2171 set_current_program_space (intermediate_results[i].pspace);
2174 blocks[i] = block_for_pc_sect (intermediate_results[i].pc,
2175 intermediate_results[i].section);
2178 for (i = 0; i < intermediate_results.size (); ++i)
2180 if (blocks[i] != NULL)
2181 for (j = i + 1; j < intermediate_results.size (); ++j)
2183 if (blocks[j] == blocks[i])
2191 for (i = 0; i < intermediate_results.size (); ++i)
2194 struct symbol *sym = (blocks[i]
2195 ? block_containing_function (blocks[i])
2198 if (self->funfirstline)
2199 skip_prologue_sal (&intermediate_results[i]);
2200 intermediate_results[i].symbol = sym;
2201 add_sal_to_sals (self, &values, &intermediate_results[i],
2202 sym ? SYMBOL_NATURAL_NAME (sym) : NULL, 0);
2206 if (values.empty ())
2208 if (ls->explicit_loc.source_filename)
2209 throw_error (NOT_FOUND_ERROR, _("No line %d in file \"%s\"."),
2210 val.line, ls->explicit_loc.source_filename);
2212 throw_error (NOT_FOUND_ERROR, _("No line %d in the current file."),
2219 /* Convert the given ADDRESS into SaLs. */
2221 static std::vector<symtab_and_line>
2222 convert_address_location_to_sals (struct linespec_state *self,
2225 symtab_and_line sal = find_pc_line (address, 0);
2227 sal.section = find_pc_overlay (address);
2228 sal.explicit_pc = 1;
2229 sal.symbol = find_pc_sect_containing_function (sal.pc, sal.section);
2231 std::vector<symtab_and_line> sals;
2232 add_sal_to_sals (self, &sals, &sal, core_addr_to_string (address), 1);
2237 /* Create and return SALs from the linespec LS. */
2239 static std::vector<symtab_and_line>
2240 convert_linespec_to_sals (struct linespec_state *state, linespec_p ls)
2242 std::vector<symtab_and_line> sals;
2244 if (ls->labels.label_symbols != NULL)
2246 /* We have just a bunch of functions/methods or labels. */
2247 for (const auto &sym : *ls->labels.label_symbols)
2249 struct symtab_and_line sal;
2250 struct program_space *pspace = SYMTAB_PSPACE (symbol_symtab (sym));
2252 if (symbol_to_sal (&sal, state->funfirstline, sym)
2253 && maybe_add_address (state->addr_set, pspace, sal.pc))
2254 add_sal_to_sals (state, &sals, &sal,
2255 SYMBOL_NATURAL_NAME (sym), 0);
2258 else if (ls->function_symbols != NULL || ls->minimal_symbols != NULL)
2260 /* We have just a bunch of functions and/or methods. */
2261 if (ls->function_symbols != NULL)
2263 /* Sort symbols so that symbols with the same program space are next
2265 std::sort (ls->function_symbols->begin (),
2266 ls->function_symbols->end (),
2269 for (const auto &sym : *ls->function_symbols)
2271 program_space *pspace = SYMTAB_PSPACE (symbol_symtab (sym));
2272 set_current_program_space (pspace);
2274 /* Don't skip to the first line of the function if we
2275 had found an ifunc minimal symbol for this function,
2276 because that means that this function is an ifunc
2277 resolver with the same name as the ifunc itself. */
2278 bool found_ifunc = false;
2280 if (state->funfirstline
2281 && ls->minimal_symbols != NULL
2282 && SYMBOL_CLASS (sym) == LOC_BLOCK)
2284 const CORE_ADDR addr
2285 = BLOCK_ENTRY_PC (SYMBOL_BLOCK_VALUE (sym));
2287 for (const auto &elem : *ls->minimal_symbols)
2289 if (MSYMBOL_TYPE (elem.minsym) == mst_text_gnu_ifunc
2290 || MSYMBOL_TYPE (elem.minsym) == mst_data_gnu_ifunc)
2292 CORE_ADDR msym_addr = BMSYMBOL_VALUE_ADDRESS (elem);
2293 if (MSYMBOL_TYPE (elem.minsym) == mst_data_gnu_ifunc)
2295 struct gdbarch *gdbarch
2296 = get_objfile_arch (elem.objfile);
2298 = (gdbarch_convert_from_func_ptr_addr
2301 current_top_target ()));
2304 if (msym_addr == addr)
2315 symtab_and_line sal;
2316 if (symbol_to_sal (&sal, state->funfirstline, sym)
2317 && maybe_add_address (state->addr_set, pspace, sal.pc))
2318 add_sal_to_sals (state, &sals, &sal,
2319 SYMBOL_NATURAL_NAME (sym), 0);
2324 if (ls->minimal_symbols != NULL)
2326 /* Sort minimal symbols by program space, too */
2327 std::sort (ls->minimal_symbols->begin (),
2328 ls->minimal_symbols->end (),
2331 for (const auto &elem : *ls->minimal_symbols)
2333 program_space *pspace = elem.objfile->pspace;
2334 set_current_program_space (pspace);
2335 minsym_found (state, elem.objfile, elem.minsym, &sals);
2339 else if (ls->explicit_loc.line_offset.sign != LINE_OFFSET_UNKNOWN)
2341 /* Only an offset was specified. */
2342 sals = create_sals_line_offset (state, ls);
2344 /* Make sure we have a filename for canonicalization. */
2345 if (ls->explicit_loc.source_filename == NULL)
2347 const char *fullname = symtab_to_fullname (state->default_symtab);
2349 /* It may be more appropriate to keep DEFAULT_SYMTAB in its symtab
2350 form so that displaying SOURCE_FILENAME can follow the current
2351 FILENAME_DISPLAY_STRING setting. But as it is used only rarely
2352 it has been kept for code simplicity only in absolute form. */
2353 ls->explicit_loc.source_filename = xstrdup (fullname);
2358 /* We haven't found any results... */
2362 canonicalize_linespec (state, ls);
2364 if (!sals.empty () && state->canonical != NULL)
2365 state->canonical->pre_expanded = 1;
2370 /* Build RESULT from the explicit location components SOURCE_FILENAME,
2371 FUNCTION_NAME, LABEL_NAME and LINE_OFFSET. */
2374 convert_explicit_location_to_linespec (struct linespec_state *self,
2376 const char *source_filename,
2377 const char *function_name,
2378 symbol_name_match_type fname_match_type,
2379 const char *label_name,
2380 struct line_offset line_offset)
2382 std::vector<symbol *> symbols;
2383 std::vector<symbol *> *labels;
2384 std::vector<bound_minimal_symbol> minimal_symbols;
2386 result->explicit_loc.func_name_match_type = fname_match_type;
2388 if (source_filename != NULL)
2392 result->file_symtabs
2393 = symtabs_from_filename (source_filename,
2394 self->search_pspace).release ();
2396 CATCH (except, RETURN_MASK_ERROR)
2398 source_file_not_found_error (source_filename);
2401 result->explicit_loc.source_filename = xstrdup (source_filename);
2405 /* A NULL entry means to use the default symtab. */
2406 result->file_symtabs->push_back (nullptr);
2409 if (function_name != NULL)
2411 find_linespec_symbols (self, result->file_symtabs,
2412 function_name, fname_match_type,
2413 &symbols, &minimal_symbols);
2415 if (symbols.empty () && minimal_symbols.empty ())
2416 symbol_not_found_error (function_name,
2417 result->explicit_loc.source_filename);
2419 result->explicit_loc.function_name = xstrdup (function_name);
2420 result->function_symbols
2421 = new std::vector<symbol *> (std::move (symbols));
2422 result->minimal_symbols
2423 = new std::vector<bound_minimal_symbol> (std::move (minimal_symbols));
2426 if (label_name != NULL)
2428 labels = find_label_symbols (self, result->function_symbols,
2429 &symbols, label_name);
2432 undefined_label_error (result->explicit_loc.function_name,
2435 result->explicit_loc.label_name = xstrdup (label_name);
2436 result->labels.label_symbols = labels;
2437 result->labels.function_symbols
2438 = new std::vector<symbol *> (std::move (symbols));
2441 if (line_offset.sign != LINE_OFFSET_UNKNOWN)
2442 result->explicit_loc.line_offset = line_offset;
2445 /* Convert the explicit location EXPLICIT_LOC into SaLs. */
2447 static std::vector<symtab_and_line>
2448 convert_explicit_location_to_sals (struct linespec_state *self,
2450 const struct explicit_location *explicit_loc)
2452 convert_explicit_location_to_linespec (self, result,
2453 explicit_loc->source_filename,
2454 explicit_loc->function_name,
2455 explicit_loc->func_name_match_type,
2456 explicit_loc->label_name,
2457 explicit_loc->line_offset);
2458 return convert_linespec_to_sals (self, result);
2461 /* Parse a string that specifies a linespec.
2463 The basic grammar of linespecs:
2465 linespec -> var_spec | basic_spec
2466 var_spec -> '$' (STRING | NUMBER)
2468 basic_spec -> file_offset_spec | function_spec | label_spec
2469 file_offset_spec -> opt_file_spec offset_spec
2470 function_spec -> opt_file_spec function_name_spec opt_label_spec
2471 label_spec -> label_name_spec
2473 opt_file_spec -> "" | file_name_spec ':'
2474 opt_label_spec -> "" | ':' label_name_spec
2476 file_name_spec -> STRING
2477 function_name_spec -> STRING
2478 label_name_spec -> STRING
2479 function_name_spec -> STRING
2480 offset_spec -> NUMBER
2484 This may all be followed by several keywords such as "if EXPR",
2487 A comma will terminate parsing.
2489 The function may be an undebuggable function found in minimal symbol table.
2491 If the argument FUNFIRSTLINE is nonzero, we want the first line
2492 of real code inside a function when a function is specified, and it is
2493 not OK to specify a variable or type to get its line number.
2495 DEFAULT_SYMTAB specifies the file to use if none is specified.
2496 It defaults to current_source_symtab.
2497 DEFAULT_LINE specifies the line number to use for relative
2498 line numbers (that start with signs). Defaults to current_source_line.
2499 If CANONICAL is non-NULL, store an array of strings containing the canonical
2500 line specs there if necessary. Currently overloaded member functions and
2501 line numbers or static functions without a filename yield a canonical
2502 line spec. The array and the line spec strings are allocated on the heap,
2503 it is the callers responsibility to free them.
2505 Note that it is possible to return zero for the symtab
2506 if no file is validly specified. Callers must check that.
2507 Also, the line number returned may be invalid. */
2509 /* Parse the linespec in ARG. MATCH_TYPE indicates how function names
2510 should be matched. */
2512 static std::vector<symtab_and_line>
2513 parse_linespec (linespec_parser *parser, const char *arg,
2514 symbol_name_match_type match_type)
2516 linespec_token token;
2517 struct gdb_exception file_exception = exception_none;
2519 /* A special case to start. It has become quite popular for
2520 IDEs to work around bugs in the previous parser by quoting
2521 the entire linespec, so we attempt to deal with this nicely. */
2522 parser->is_quote_enclosed = 0;
2523 if (parser->completion_tracker == NULL
2524 && !is_ada_operator (arg)
2525 && strchr (linespec_quote_characters, *arg) != NULL)
2529 end = skip_quote_char (arg + 1, *arg);
2530 if (end != NULL && is_closing_quote_enclosed (end))
2532 /* Here's the special case. Skip ARG past the initial
2535 parser->is_quote_enclosed = 1;
2539 parser->lexer.saved_arg = arg;
2540 parser->lexer.stream = arg;
2541 parser->completion_word = arg;
2542 parser->complete_what = linespec_complete_what::FUNCTION;
2543 PARSER_EXPLICIT (parser)->func_name_match_type = match_type;
2545 /* Initialize the default symtab and line offset. */
2546 initialize_defaults (&PARSER_STATE (parser)->default_symtab,
2547 &PARSER_STATE (parser)->default_line);
2549 /* Objective-C shortcut. */
2550 if (parser->completion_tracker == NULL)
2552 std::vector<symtab_and_line> values
2553 = decode_objc (PARSER_STATE (parser), PARSER_RESULT (parser), arg);
2554 if (!values.empty ())
2559 /* "-"/"+" is either an objc selector, or a number. There's
2560 nothing to complete the latter to, so just let the caller
2561 complete on functions, which finds objc selectors, if there's
2563 if ((arg[0] == '-' || arg[0] == '+') && arg[1] == '\0')
2567 /* Start parsing. */
2569 /* Get the first token. */
2570 token = linespec_lexer_consume_token (parser);
2572 /* It must be either LSTOKEN_STRING or LSTOKEN_NUMBER. */
2573 if (token.type == LSTOKEN_STRING && *LS_TOKEN_STOKEN (token).ptr == '$')
2575 /* A NULL entry means to use GLOBAL_DEFAULT_SYMTAB. */
2576 if (parser->completion_tracker == NULL)
2577 PARSER_RESULT (parser)->file_symtabs->push_back (nullptr);
2579 /* User specified a convenience variable or history value. */
2580 gdb::unique_xmalloc_ptr<char> var = copy_token_string (token);
2581 PARSER_EXPLICIT (parser)->line_offset
2582 = linespec_parse_variable (PARSER_STATE (parser), var.get ());
2584 /* If a line_offset wasn't found (VAR is the name of a user
2585 variable/function), then skip to normal symbol processing. */
2586 if (PARSER_EXPLICIT (parser)->line_offset.sign != LINE_OFFSET_UNKNOWN)
2588 /* Consume this token. */
2589 linespec_lexer_consume_token (parser);
2591 goto convert_to_sals;
2594 else if (token.type == LSTOKEN_EOI && parser->completion_tracker != NULL)
2596 /* Let the default linespec_complete_what::FUNCTION kick in. */
2597 unexpected_linespec_error (parser);
2599 else if (token.type != LSTOKEN_STRING && token.type != LSTOKEN_NUMBER)
2601 parser->complete_what = linespec_complete_what::NOTHING;
2602 unexpected_linespec_error (parser);
2605 /* Shortcut: If the next token is not LSTOKEN_COLON, we know that
2606 this token cannot represent a filename. */
2607 token = linespec_lexer_peek_token (parser);
2609 if (token.type == LSTOKEN_COLON)
2611 /* Get the current token again and extract the filename. */
2612 token = linespec_lexer_lex_one (parser);
2613 gdb::unique_xmalloc_ptr<char> user_filename = copy_token_string (token);
2615 /* Check if the input is a filename. */
2619 = symtabs_from_filename (user_filename.get (),
2620 PARSER_STATE (parser)->search_pspace);
2621 PARSER_RESULT (parser)->file_symtabs = r.release ();
2623 CATCH (ex, RETURN_MASK_ERROR)
2625 file_exception = ex;
2629 if (file_exception.reason >= 0)
2631 /* Symtabs were found for the file. Record the filename. */
2632 PARSER_EXPLICIT (parser)->source_filename = user_filename.release ();
2634 /* Get the next token. */
2635 token = linespec_lexer_consume_token (parser);
2637 /* This is LSTOKEN_COLON; consume it. */
2638 linespec_lexer_consume_token (parser);
2642 /* A NULL entry means to use GLOBAL_DEFAULT_SYMTAB. */
2643 PARSER_RESULT (parser)->file_symtabs->push_back (nullptr);
2646 /* If the next token is not EOI, KEYWORD, or COMMA, issue an error. */
2647 else if (parser->completion_tracker == NULL
2648 && (token.type != LSTOKEN_EOI && token.type != LSTOKEN_KEYWORD
2649 && token.type != LSTOKEN_COMMA))
2651 /* TOKEN is the _next_ token, not the one currently in the parser.
2652 Consuming the token will give the correct error message. */
2653 linespec_lexer_consume_token (parser);
2654 unexpected_linespec_error (parser);
2658 /* A NULL entry means to use GLOBAL_DEFAULT_SYMTAB. */
2659 PARSER_RESULT (parser)->file_symtabs->push_back (nullptr);
2662 /* Parse the rest of the linespec. */
2663 linespec_parse_basic (parser);
2665 if (parser->completion_tracker == NULL
2666 && PARSER_RESULT (parser)->function_symbols == NULL
2667 && PARSER_RESULT (parser)->labels.label_symbols == NULL
2668 && PARSER_EXPLICIT (parser)->line_offset.sign == LINE_OFFSET_UNKNOWN
2669 && PARSER_RESULT (parser)->minimal_symbols == NULL)
2671 /* The linespec didn't parse. Re-throw the file exception if
2673 if (file_exception.reason < 0)
2674 throw_exception (file_exception);
2676 /* Otherwise, the symbol is not found. */
2677 symbol_not_found_error (PARSER_EXPLICIT (parser)->function_name,
2678 PARSER_EXPLICIT (parser)->source_filename);
2683 /* Get the last token and record how much of the input was parsed,
2685 token = linespec_lexer_lex_one (parser);
2686 if (token.type != LSTOKEN_EOI && token.type != LSTOKEN_KEYWORD)
2687 unexpected_linespec_error (parser);
2688 else if (token.type == LSTOKEN_KEYWORD)
2690 /* Setup the completion word past the keyword. Lexing never
2691 advances past a keyword automatically, so skip it
2693 parser->completion_word
2694 = skip_spaces (skip_to_space (PARSER_STREAM (parser)));
2695 parser->complete_what = linespec_complete_what::EXPRESSION;
2698 /* Convert the data in PARSER_RESULT to SALs. */
2699 if (parser->completion_tracker == NULL)
2700 return convert_linespec_to_sals (PARSER_STATE (parser),
2701 PARSER_RESULT (parser));
2707 /* A constructor for linespec_state. */
2710 linespec_state_constructor (struct linespec_state *self,
2711 int flags, const struct language_defn *language,
2712 struct program_space *search_pspace,
2713 struct symtab *default_symtab,
2715 struct linespec_result *canonical)
2717 memset (self, 0, sizeof (*self));
2718 self->language = language;
2719 self->funfirstline = (flags & DECODE_LINE_FUNFIRSTLINE) ? 1 : 0;
2720 self->list_mode = (flags & DECODE_LINE_LIST_MODE) ? 1 : 0;
2721 self->search_pspace = search_pspace;
2722 self->default_symtab = default_symtab;
2723 self->default_line = default_line;
2724 self->canonical = canonical;
2725 self->program_space = current_program_space;
2726 self->addr_set = htab_create_alloc (10, hash_address_entry, eq_address_entry,
2727 xfree, xcalloc, xfree);
2728 self->is_linespec = 0;
2731 /* Initialize a new linespec parser. */
2734 linespec_parser_new (linespec_parser *parser,
2735 int flags, const struct language_defn *language,
2736 struct program_space *search_pspace,
2737 struct symtab *default_symtab,
2739 struct linespec_result *canonical)
2741 memset (parser, 0, sizeof (linespec_parser));
2742 parser->lexer.current.type = LSTOKEN_CONSUMED;
2743 memset (PARSER_RESULT (parser), 0, sizeof (struct linespec));
2744 PARSER_RESULT (parser)->file_symtabs = new std::vector<symtab *> ();
2745 PARSER_EXPLICIT (parser)->func_name_match_type
2746 = symbol_name_match_type::WILD;
2747 PARSER_EXPLICIT (parser)->line_offset.sign = LINE_OFFSET_UNKNOWN;
2748 linespec_state_constructor (PARSER_STATE (parser), flags, language,
2750 default_symtab, default_line, canonical);
2753 /* A destructor for linespec_state. */
2756 linespec_state_destructor (struct linespec_state *self)
2758 htab_delete (self->addr_set);
2761 /* Delete a linespec parser. */
2764 linespec_parser_delete (void *arg)
2766 linespec_parser *parser = (linespec_parser *) arg;
2768 xfree (PARSER_EXPLICIT (parser)->source_filename);
2769 xfree (PARSER_EXPLICIT (parser)->label_name);
2770 xfree (PARSER_EXPLICIT (parser)->function_name);
2772 delete PARSER_RESULT (parser)->file_symtabs;
2773 delete PARSER_RESULT (parser)->function_symbols;
2774 delete PARSER_RESULT (parser)->minimal_symbols;
2775 delete PARSER_RESULT (parser)->labels.label_symbols;
2776 delete PARSER_RESULT (parser)->labels.function_symbols;
2778 linespec_state_destructor (PARSER_STATE (parser));
2781 /* See description in linespec.h. */
2784 linespec_lex_to_end (const char **stringp)
2786 linespec_parser parser;
2787 struct cleanup *cleanup;
2788 linespec_token token;
2791 if (stringp == NULL || *stringp == NULL)
2794 linespec_parser_new (&parser, 0, current_language, NULL, NULL, 0, NULL);
2795 cleanup = make_cleanup (linespec_parser_delete, &parser);
2796 parser.lexer.saved_arg = *stringp;
2797 PARSER_STREAM (&parser) = orig = *stringp;
2801 /* Stop before any comma tokens; we need it to keep it
2802 as the next token in the string. */
2803 token = linespec_lexer_peek_token (&parser);
2804 if (token.type == LSTOKEN_COMMA)
2806 token = linespec_lexer_consume_token (&parser);
2808 while (token.type != LSTOKEN_EOI && token.type != LSTOKEN_KEYWORD);
2810 *stringp += PARSER_STREAM (&parser) - orig;
2811 do_cleanups (cleanup);
2814 /* See linespec.h. */
2817 linespec_complete_function (completion_tracker &tracker,
2818 const char *function,
2819 symbol_name_match_type func_match_type,
2820 const char *source_filename)
2822 complete_symbol_mode mode = complete_symbol_mode::LINESPEC;
2824 if (source_filename != NULL)
2826 collect_file_symbol_completion_matches (tracker, mode, func_match_type,
2827 function, function, source_filename);
2831 collect_symbol_completion_matches (tracker, mode, func_match_type,
2832 function, function);
2837 /* Helper for complete_linespec to simplify it. SOURCE_FILENAME is
2838 only meaningful if COMPONENT is FUNCTION. */
2841 complete_linespec_component (linespec_parser *parser,
2842 completion_tracker &tracker,
2844 linespec_complete_what component,
2845 const char *source_filename)
2847 if (component == linespec_complete_what::KEYWORD)
2849 complete_on_enum (tracker, linespec_keywords, text, text);
2851 else if (component == linespec_complete_what::EXPRESSION)
2854 = advance_to_expression_complete_word_point (tracker, text);
2855 complete_expression (tracker, text, word);
2857 else if (component == linespec_complete_what::FUNCTION)
2859 completion_list fn_list;
2861 symbol_name_match_type match_type
2862 = PARSER_EXPLICIT (parser)->func_name_match_type;
2863 linespec_complete_function (tracker, text, match_type, source_filename);
2864 if (source_filename == NULL)
2866 /* Haven't seen a source component, like in "b
2867 file.c:function[TAB]". Maybe this wasn't a function, but
2868 a filename instead, like "b file.[TAB]". */
2869 fn_list = complete_source_filenames (text);
2872 /* If we only have a single filename completion, append a ':' for
2873 the user, since that's the only thing that can usefully follow
2875 if (fn_list.size () == 1 && !tracker.have_completions ())
2877 char *fn = fn_list[0].release ();
2879 /* If we also need to append a quote char, it needs to be
2880 appended before the ':'. Append it now, and make ':' the
2881 new "quote" char. */
2882 if (tracker.quote_char ())
2884 char quote_char_str[2] = { (char) tracker.quote_char () };
2886 fn = reconcat (fn, fn, quote_char_str, (char *) NULL);
2887 tracker.set_quote_char (':');
2890 fn = reconcat (fn, fn, ":", (char *) NULL);
2891 fn_list[0].reset (fn);
2893 /* Tell readline to skip appending a space. */
2894 tracker.set_suppress_append_ws (true);
2896 tracker.add_completions (std::move (fn_list));
2900 /* Helper for linespec_complete_label. Find labels that match
2901 LABEL_NAME in the function symbols listed in the PARSER, and add
2902 them to the tracker. */
2905 complete_label (completion_tracker &tracker,
2906 linespec_parser *parser,
2907 const char *label_name)
2909 std::vector<symbol *> label_function_symbols;
2910 std::vector<symbol *> *labels
2911 = find_label_symbols (PARSER_STATE (parser),
2912 PARSER_RESULT (parser)->function_symbols,
2913 &label_function_symbols,
2916 if (labels != nullptr)
2918 for (const auto &label : *labels)
2920 char *match = xstrdup (SYMBOL_SEARCH_NAME (label));
2921 tracker.add_completion (gdb::unique_xmalloc_ptr<char> (match));
2927 /* See linespec.h. */
2930 linespec_complete_label (completion_tracker &tracker,
2931 const struct language_defn *language,
2932 const char *source_filename,
2933 const char *function_name,
2934 symbol_name_match_type func_name_match_type,
2935 const char *label_name)
2937 linespec_parser parser;
2938 struct cleanup *cleanup;
2940 linespec_parser_new (&parser, 0, language, NULL, NULL, 0, NULL);
2941 cleanup = make_cleanup (linespec_parser_delete, &parser);
2943 line_offset unknown_offset = { 0, LINE_OFFSET_UNKNOWN };
2947 convert_explicit_location_to_linespec (PARSER_STATE (&parser),
2948 PARSER_RESULT (&parser),
2951 func_name_match_type,
2952 NULL, unknown_offset);
2954 CATCH (ex, RETURN_MASK_ERROR)
2956 do_cleanups (cleanup);
2961 complete_label (tracker, &parser, label_name);
2963 do_cleanups (cleanup);
2966 /* See description in linespec.h. */
2969 linespec_complete (completion_tracker &tracker, const char *text,
2970 symbol_name_match_type match_type)
2972 linespec_parser parser;
2973 struct cleanup *cleanup;
2974 const char *orig = text;
2976 linespec_parser_new (&parser, 0, current_language, NULL, NULL, 0, NULL);
2977 cleanup = make_cleanup (linespec_parser_delete, &parser);
2978 parser.lexer.saved_arg = text;
2979 PARSER_EXPLICIT (&parser)->func_name_match_type = match_type;
2980 PARSER_STREAM (&parser) = text;
2982 parser.completion_tracker = &tracker;
2983 PARSER_STATE (&parser)->is_linespec = 1;
2985 /* Parse as much as possible. parser.completion_word will hold
2986 furthest completion point we managed to parse to. */
2989 parse_linespec (&parser, text, match_type);
2991 CATCH (except, RETURN_MASK_ERROR)
2996 if (parser.completion_quote_char != '\0'
2997 && parser.completion_quote_end != NULL
2998 && parser.completion_quote_end[1] == '\0')
3000 /* If completing a quoted string with the cursor right at
3001 terminating quote char, complete the completion word without
3002 interpretation, so that readline advances the cursor one
3003 whitespace past the quote, even if there's no match. This
3004 makes these cases behave the same:
3006 before: "b function()"
3007 after: "b function() "
3009 before: "b 'function()'"
3010 after: "b 'function()' "
3012 and trusts the user in this case:
3014 before: "b 'not_loaded_function_yet()'"
3015 after: "b 'not_loaded_function_yet()' "
3017 parser.complete_what = linespec_complete_what::NOTHING;
3018 parser.completion_quote_char = '\0';
3020 gdb::unique_xmalloc_ptr<char> text_copy
3021 (xstrdup (parser.completion_word));
3022 tracker.add_completion (std::move (text_copy));
3025 tracker.set_quote_char (parser.completion_quote_char);
3027 if (parser.complete_what == linespec_complete_what::LABEL)
3029 parser.complete_what = linespec_complete_what::NOTHING;
3031 const char *func_name = PARSER_EXPLICIT (&parser)->function_name;
3033 std::vector<symbol *> function_symbols;
3034 std::vector<bound_minimal_symbol> minimal_symbols;
3035 find_linespec_symbols (PARSER_STATE (&parser),
3036 PARSER_RESULT (&parser)->file_symtabs,
3037 func_name, match_type,
3038 &function_symbols, &minimal_symbols);
3040 PARSER_RESULT (&parser)->function_symbols
3041 = new std::vector<symbol *> (std::move (function_symbols));
3042 PARSER_RESULT (&parser)->minimal_symbols
3043 = new std::vector<bound_minimal_symbol> (std::move (minimal_symbols));
3045 complete_label (tracker, &parser, parser.completion_word);
3047 else if (parser.complete_what == linespec_complete_what::FUNCTION)
3049 /* While parsing/lexing, we didn't know whether the completion
3050 word completes to a unique function/source name already or
3054 "b function() <tab>"
3055 may need to complete either to:
3056 "b function() const"
3058 "b function() if/thread/task"
3062 may need to complete either to:
3063 "b foo template_fun<T>()"
3064 with "foo" being the template function's return type, or to:
3069 may need to complete either to a source file name:
3071 or this, also a filename, but a unique completion:
3073 or to a function name:
3076 Address that by completing assuming source or function, and
3077 seeing if we find a completion that matches exactly the
3078 completion word. If so, then it must be a function (see note
3079 below) and we advance the completion word to the end of input
3080 and switch to KEYWORD completion mode.
3082 Note: if we find a unique completion for a source filename,
3083 then it won't match the completion word, because the LCD will
3084 contain a trailing ':'. And if we're completing at or after
3085 the ':', then complete_linespec_component won't try to
3086 complete on source filenames. */
3088 const char *word = parser.completion_word;
3090 complete_linespec_component (&parser, tracker,
3091 parser.completion_word,
3092 linespec_complete_what::FUNCTION,
3093 PARSER_EXPLICIT (&parser)->source_filename);
3095 parser.complete_what = linespec_complete_what::NOTHING;
3097 if (tracker.quote_char ())
3099 /* The function/file name was not close-quoted, so this
3100 can't be a keyword. Note: complete_linespec_component
3101 may have swapped the original quote char for ':' when we
3102 get here, but that still indicates the same. */
3104 else if (!tracker.have_completions ())
3107 size_t wordlen = strlen (parser.completion_word);
3110 = string_find_incomplete_keyword_at_end (linespec_keywords,
3111 parser.completion_word,
3116 && parser.completion_word[wordlen - 1] == ' '))
3118 parser.completion_word += key_start;
3119 parser.complete_what = linespec_complete_what::KEYWORD;
3122 else if (tracker.completes_to_completion_word (word))
3124 /* Skip the function and complete on keywords. */
3125 parser.completion_word += strlen (word);
3126 parser.complete_what = linespec_complete_what::KEYWORD;
3127 tracker.discard_completions ();
3131 tracker.advance_custom_word_point_by (parser.completion_word - orig);
3133 complete_linespec_component (&parser, tracker,
3134 parser.completion_word,
3135 parser.complete_what,
3136 PARSER_EXPLICIT (&parser)->source_filename);
3138 /* If we're past the "filename:function:label:offset" linespec, and
3139 didn't find any match, then assume the user might want to create
3140 a pending breakpoint anyway and offer the keyword
3142 if (!parser.completion_quote_char
3143 && (parser.complete_what == linespec_complete_what::FUNCTION
3144 || parser.complete_what == linespec_complete_what::LABEL
3145 || parser.complete_what == linespec_complete_what::NOTHING)
3146 && !tracker.have_completions ())
3149 = parser.completion_word + strlen (parser.completion_word);
3151 if (end > orig && end[-1] == ' ')
3153 tracker.advance_custom_word_point_by (end - parser.completion_word);
3155 complete_linespec_component (&parser, tracker, end,
3156 linespec_complete_what::KEYWORD,
3161 do_cleanups (cleanup);
3164 /* A helper function for decode_line_full and decode_line_1 to
3165 turn LOCATION into std::vector<symtab_and_line>. */
3167 static std::vector<symtab_and_line>
3168 event_location_to_sals (linespec_parser *parser,
3169 const struct event_location *location)
3171 std::vector<symtab_and_line> result;
3173 switch (event_location_type (location))
3175 case LINESPEC_LOCATION:
3177 PARSER_STATE (parser)->is_linespec = 1;
3180 const linespec_location *ls = get_linespec_location (location);
3181 result = parse_linespec (parser,
3182 ls->spec_string, ls->match_type);
3184 CATCH (except, RETURN_MASK_ERROR)
3186 throw_exception (except);
3192 case ADDRESS_LOCATION:
3194 const char *addr_string = get_address_string_location (location);
3195 CORE_ADDR addr = get_address_location (location);
3197 if (addr_string != NULL)
3199 addr = linespec_expression_to_pc (&addr_string);
3200 if (PARSER_STATE (parser)->canonical != NULL)
3201 PARSER_STATE (parser)->canonical->location
3202 = copy_event_location (location);
3205 result = convert_address_location_to_sals (PARSER_STATE (parser),
3210 case EXPLICIT_LOCATION:
3212 const struct explicit_location *explicit_loc;
3214 explicit_loc = get_explicit_location_const (location);
3215 result = convert_explicit_location_to_sals (PARSER_STATE (parser),
3216 PARSER_RESULT (parser),
3221 case PROBE_LOCATION:
3222 /* Probes are handled by their own decoders. */
3223 gdb_assert_not_reached ("attempt to decode probe location");
3227 gdb_assert_not_reached ("unhandled event location type");
3233 /* See linespec.h. */
3236 decode_line_full (const struct event_location *location, int flags,
3237 struct program_space *search_pspace,
3238 struct symtab *default_symtab,
3239 int default_line, struct linespec_result *canonical,
3240 const char *select_mode,
3243 struct cleanup *cleanups;
3244 std::vector<const char *> filters;
3245 linespec_parser parser;
3246 struct linespec_state *state;
3248 gdb_assert (canonical != NULL);
3249 /* The filter only makes sense for 'all'. */
3250 gdb_assert (filter == NULL || select_mode == multiple_symbols_all);
3251 gdb_assert (select_mode == NULL
3252 || select_mode == multiple_symbols_all
3253 || select_mode == multiple_symbols_ask
3254 || select_mode == multiple_symbols_cancel);
3255 gdb_assert ((flags & DECODE_LINE_LIST_MODE) == 0);
3257 linespec_parser_new (&parser, flags, current_language,
3258 search_pspace, default_symtab,
3259 default_line, canonical);
3260 cleanups = make_cleanup (linespec_parser_delete, &parser);
3262 scoped_restore_current_program_space restore_pspace;
3264 std::vector<symtab_and_line> result = event_location_to_sals (&parser,
3266 state = PARSER_STATE (&parser);
3268 gdb_assert (result.size () == 1 || canonical->pre_expanded);
3269 canonical->pre_expanded = 1;
3271 /* Arrange for allocated canonical names to be freed. */
3272 if (!result.empty ())
3276 make_cleanup (xfree, state->canonical_names);
3277 for (i = 0; i < result.size (); ++i)
3279 gdb_assert (state->canonical_names[i].suffix != NULL);
3280 make_cleanup (xfree, state->canonical_names[i].suffix);
3284 if (select_mode == NULL)
3286 if (top_level_interpreter ()->interp_ui_out ()->is_mi_like_p ())
3287 select_mode = multiple_symbols_all;
3289 select_mode = multiple_symbols_select_mode ();
3292 if (select_mode == multiple_symbols_all)
3296 filters.push_back (filter);
3297 filter_results (state, &result, filters);
3300 convert_results_to_lsals (state, &result);
3303 decode_line_2 (state, &result, select_mode);
3305 do_cleanups (cleanups);
3308 /* See linespec.h. */
3310 std::vector<symtab_and_line>
3311 decode_line_1 (const struct event_location *location, int flags,
3312 struct program_space *search_pspace,
3313 struct symtab *default_symtab,
3316 linespec_parser parser;
3317 struct cleanup *cleanups;
3319 linespec_parser_new (&parser, flags, current_language,
3320 search_pspace, default_symtab,
3321 default_line, NULL);
3322 cleanups = make_cleanup (linespec_parser_delete, &parser);
3324 scoped_restore_current_program_space restore_pspace;
3326 std::vector<symtab_and_line> result = event_location_to_sals (&parser,
3329 do_cleanups (cleanups);
3333 /* See linespec.h. */
3335 std::vector<symtab_and_line>
3336 decode_line_with_current_source (const char *string, int flags)
3339 error (_("Empty line specification."));
3341 /* We use whatever is set as the current source line. We do not try
3342 and get a default source symtab+line or it will recursively call us! */
3343 symtab_and_line cursal = get_current_source_symtab_and_line ();
3345 event_location_up location = string_to_event_location (&string,
3347 std::vector<symtab_and_line> sals
3348 = decode_line_1 (location.get (), flags, NULL, cursal.symtab, cursal.line);
3351 error (_("Junk at end of line specification: %s"), string);
3356 /* See linespec.h. */
3358 std::vector<symtab_and_line>
3359 decode_line_with_last_displayed (const char *string, int flags)
3362 error (_("Empty line specification."));
3364 event_location_up location = string_to_event_location (&string,
3366 std::vector<symtab_and_line> sals
3367 = (last_displayed_sal_is_valid ()
3368 ? decode_line_1 (location.get (), flags, NULL,
3369 get_last_displayed_symtab (),
3370 get_last_displayed_line ())
3371 : decode_line_1 (location.get (), flags, NULL,
3372 (struct symtab *) NULL, 0));
3375 error (_("Junk at end of line specification: %s"), string);
3382 /* First, some functions to initialize stuff at the beggining of the
3386 initialize_defaults (struct symtab **default_symtab, int *default_line)
3388 if (*default_symtab == 0)
3390 /* Use whatever we have for the default source line. We don't use
3391 get_current_or_default_symtab_and_line as it can recurse and call
3393 struct symtab_and_line cursal =
3394 get_current_source_symtab_and_line ();
3396 *default_symtab = cursal.symtab;
3397 *default_line = cursal.line;
3403 /* Evaluate the expression pointed to by EXP_PTR into a CORE_ADDR,
3404 advancing EXP_PTR past any parsed text. */
3407 linespec_expression_to_pc (const char **exp_ptr)
3409 if (current_program_space->executing_startup)
3410 /* The error message doesn't really matter, because this case
3411 should only hit during breakpoint reset. */
3412 throw_error (NOT_FOUND_ERROR, _("cannot evaluate expressions while "
3413 "program space is in startup"));
3416 return value_as_address (parse_to_comma_and_eval (exp_ptr));
3421 /* Here's where we recognise an Objective-C Selector. An Objective C
3422 selector may be implemented by more than one class, therefore it
3423 may represent more than one method/function. This gives us a
3424 situation somewhat analogous to C++ overloading. If there's more
3425 than one method that could represent the selector, then use some of
3426 the existing C++ code to let the user choose one. */
3428 static std::vector<symtab_and_line>
3429 decode_objc (struct linespec_state *self, linespec_p ls, const char *arg)
3431 struct collect_info info;
3432 std::vector<const char *> symbol_names;
3433 const char *new_argptr;
3436 std::vector<symtab *> symtabs;
3437 symtabs.push_back (nullptr);
3439 info.file_symtabs = &symtabs;
3441 std::vector<symbol *> symbols;
3442 info.result.symbols = &symbols;
3443 std::vector<bound_minimal_symbol> minimal_symbols;
3444 info.result.minimal_symbols = &minimal_symbols;
3446 new_argptr = find_imps (arg, &symbol_names);
3447 if (symbol_names.empty ())
3450 add_all_symbol_names_from_pspace (&info, NULL, symbol_names,
3453 std::vector<symtab_and_line> values;
3454 if (!symbols.empty () || !minimal_symbols.empty ())
3458 saved_arg = (char *) alloca (new_argptr - arg + 1);
3459 memcpy (saved_arg, arg, new_argptr - arg);
3460 saved_arg[new_argptr - arg] = '\0';
3462 ls->explicit_loc.function_name = xstrdup (saved_arg);
3463 ls->function_symbols = new std::vector<symbol *> (std::move (symbols));
3465 = new std::vector<bound_minimal_symbol> (std::move (minimal_symbols));
3466 values = convert_linespec_to_sals (self, ls);
3468 if (self->canonical)
3473 self->canonical->pre_expanded = 1;
3475 if (ls->explicit_loc.source_filename)
3477 holder = string_printf ("%s:%s",
3478 ls->explicit_loc.source_filename,
3480 str = holder.c_str ();
3485 self->canonical->location
3486 = new_linespec_location (&str, symbol_name_match_type::FULL);
3495 /* A function object that serves as symbol_found_callback_ftype
3496 callback for iterate_over_symbols. This is used by
3497 lookup_prefix_sym to collect type symbols. */
3498 class decode_compound_collector
3501 decode_compound_collector ()
3503 m_unique_syms = htab_create_alloc (1, htab_hash_pointer,
3504 htab_eq_pointer, NULL,
3508 ~decode_compound_collector ()
3510 if (m_unique_syms != NULL)
3511 htab_delete (m_unique_syms);
3514 /* Return all symbols collected. */
3515 std::vector<symbol *> release_symbols ()
3517 return std::move (m_symbols);
3520 /* Callable as a symbol_found_callback_ftype callback. */
3521 bool operator () (symbol *sym);
3524 /* A hash table of all symbols we found. We use this to avoid
3525 adding any symbol more than once. */
3526 htab_t m_unique_syms;
3528 /* The result vector. */
3529 std::vector<symbol *> m_symbols;
3533 decode_compound_collector::operator () (symbol *sym)
3538 if (SYMBOL_CLASS (sym) != LOC_TYPEDEF)
3539 return true; /* Continue iterating. */
3541 t = SYMBOL_TYPE (sym);
3542 t = check_typedef (t);
3543 if (TYPE_CODE (t) != TYPE_CODE_STRUCT
3544 && TYPE_CODE (t) != TYPE_CODE_UNION
3545 && TYPE_CODE (t) != TYPE_CODE_NAMESPACE)
3546 return true; /* Continue iterating. */
3548 slot = htab_find_slot (m_unique_syms, sym, INSERT);
3552 m_symbols.push_back (sym);
3555 return true; /* Continue iterating. */
3560 /* Return any symbols corresponding to CLASS_NAME in FILE_SYMTABS. */
3562 static std::vector<symbol *>
3563 lookup_prefix_sym (struct linespec_state *state,
3564 std::vector<symtab *> *file_symtabs,
3565 const char *class_name)
3567 decode_compound_collector collector;
3569 lookup_name_info lookup_name (class_name, symbol_name_match_type::FULL);
3571 for (const auto &elt : *file_symtabs)
3575 iterate_over_all_matching_symtabs (state, lookup_name,
3576 STRUCT_DOMAIN, ALL_DOMAIN,
3577 NULL, false, collector);
3578 iterate_over_all_matching_symtabs (state, lookup_name,
3579 VAR_DOMAIN, ALL_DOMAIN,
3580 NULL, false, collector);
3584 /* Program spaces that are executing startup should have
3585 been filtered out earlier. */
3586 gdb_assert (!SYMTAB_PSPACE (elt)->executing_startup);
3587 set_current_program_space (SYMTAB_PSPACE (elt));
3588 iterate_over_file_blocks (elt, lookup_name, STRUCT_DOMAIN, collector);
3589 iterate_over_file_blocks (elt, lookup_name, VAR_DOMAIN, collector);
3593 return collector.release_symbols ();
3596 /* A std::sort comparison function for symbols. The resulting order does
3597 not actually matter; we just need to be able to sort them so that
3598 symbols with the same program space end up next to each other. */
3601 compare_symbols (const struct symbol *a, const struct symbol *b)
3605 uia = (uintptr_t) SYMTAB_PSPACE (symbol_symtab (a));
3606 uib = (uintptr_t) SYMTAB_PSPACE (symbol_symtab (b));
3613 uia = (uintptr_t) a;
3614 uib = (uintptr_t) b;
3622 /* Like compare_symbols but for minimal symbols. */
3625 compare_msymbols (const bound_minimal_symbol &a, const bound_minimal_symbol &b)
3629 uia = (uintptr_t) a.objfile->pspace;
3630 uib = (uintptr_t) a.objfile->pspace;
3637 uia = (uintptr_t) a.minsym;
3638 uib = (uintptr_t) b.minsym;
3646 /* Look for all the matching instances of each symbol in NAMES. Only
3647 instances from PSPACE are considered; other program spaces are
3648 handled by our caller. If PSPACE is NULL, then all program spaces
3649 are considered. Results are stored into INFO. */
3652 add_all_symbol_names_from_pspace (struct collect_info *info,
3653 struct program_space *pspace,
3654 const std::vector<const char *> &names,
3655 enum search_domain search_domain)
3657 for (const char *iter : names)
3658 add_matching_symbols_to_info (iter,
3659 symbol_name_match_type::FULL,
3660 search_domain, info, pspace);
3664 find_superclass_methods (std::vector<struct type *> &&superclasses,
3665 const char *name, enum language name_lang,
3666 std::vector<const char *> *result_names)
3668 size_t old_len = result_names->size ();
3672 std::vector<struct type *> new_supers;
3674 for (type *t : superclasses)
3675 find_methods (t, name_lang, name, result_names, &new_supers);
3677 if (result_names->size () != old_len || new_supers.empty ())
3680 superclasses = std::move (new_supers);
3684 /* This finds the method METHOD_NAME in the class CLASS_NAME whose type is
3685 given by one of the symbols in SYM_CLASSES. Matches are returned
3686 in SYMBOLS (for debug symbols) and MINSYMS (for minimal symbols). */
3689 find_method (struct linespec_state *self, std::vector<symtab *> *file_symtabs,
3690 const char *class_name, const char *method_name,
3691 std::vector<symbol *> *sym_classes, std::vector<symbol *> *symbols,
3692 std::vector<bound_minimal_symbol> *minsyms)
3694 size_t last_result_len;
3695 std::vector<struct type *> superclass_vec;
3696 std::vector<const char *> result_names;
3697 struct collect_info info;
3699 /* Sort symbols so that symbols with the same program space are next
3701 std::sort (sym_classes->begin (), sym_classes->end (),
3705 info.file_symtabs = file_symtabs;
3706 info.result.symbols = symbols;
3707 info.result.minimal_symbols = minsyms;
3709 /* Iterate over all the types, looking for the names of existing
3710 methods matching METHOD_NAME. If we cannot find a direct method in a
3711 given program space, then we consider inherited methods; this is
3712 not ideal (ideal would be to respect C++ hiding rules), but it
3713 seems good enough and is what GDB has historically done. We only
3714 need to collect the names because later we find all symbols with
3715 those names. This loop is written in a somewhat funny way
3716 because we collect data across the program space before deciding
3718 last_result_len = 0;
3719 unsigned int ix = 0;
3720 for (const auto &sym : *sym_classes)
3723 struct program_space *pspace;
3725 /* Program spaces that are executing startup should have
3726 been filtered out earlier. */
3727 pspace = SYMTAB_PSPACE (symbol_symtab (sym));
3728 gdb_assert (!pspace->executing_startup);
3729 set_current_program_space (pspace);
3730 t = check_typedef (SYMBOL_TYPE (sym));
3731 find_methods (t, SYMBOL_LANGUAGE (sym),
3732 method_name, &result_names, &superclass_vec);
3734 /* Handle all items from a single program space at once; and be
3735 sure not to miss the last batch. */
3736 if (ix == sym_classes->size () - 1
3738 != SYMTAB_PSPACE (symbol_symtab (sym_classes->at (ix + 1)))))
3740 /* If we did not find a direct implementation anywhere in
3741 this program space, consider superclasses. */
3742 if (result_names.size () == last_result_len)
3743 find_superclass_methods (std::move (superclass_vec), method_name,
3744 SYMBOL_LANGUAGE (sym), &result_names);
3746 /* We have a list of candidate symbol names, so now we
3747 iterate over the symbol tables looking for all
3748 matches in this pspace. */
3749 add_all_symbol_names_from_pspace (&info, pspace, result_names,
3752 superclass_vec.clear ();
3753 last_result_len = result_names.size ();
3758 if (!symbols->empty () || !minsyms->empty ())
3761 /* Throw an NOT_FOUND_ERROR. This will be caught by the caller
3762 and other attempts to locate the symbol will be made. */
3763 throw_error (NOT_FOUND_ERROR, _("see caller, this text doesn't matter"));
3770 /* This function object is a callback for iterate_over_symtabs, used
3771 when collecting all matching symtabs. */
3773 class symtab_collector
3777 : m_symtabs (new std::vector<symtab *> ())
3779 m_symtab_table = htab_create (1, htab_hash_pointer, htab_eq_pointer,
3783 ~symtab_collector ()
3785 if (m_symtab_table != NULL)
3786 htab_delete (m_symtab_table);
3789 /* Callable as a symbol_found_callback_ftype callback. */
3790 bool operator () (symtab *sym);
3792 /* Releases ownership of the collected symtabs and returns them. */
3793 symtab_vector_up release_symtabs ()
3795 return std::move (m_symtabs);
3799 /* The result vector of symtabs. */
3800 symtab_vector_up m_symtabs;
3802 /* This is used to ensure the symtabs are unique. */
3803 htab_t m_symtab_table;
3807 symtab_collector::operator () (struct symtab *symtab)
3811 slot = htab_find_slot (m_symtab_table, symtab, INSERT);
3815 m_symtabs->push_back (symtab);
3823 /* Given a file name, return a list of all matching symtabs. If
3824 SEARCH_PSPACE is not NULL, the search is restricted to just that
3827 static symtab_vector_up
3828 collect_symtabs_from_filename (const char *file,
3829 struct program_space *search_pspace)
3831 symtab_collector collector;
3833 /* Find that file's data. */
3834 if (search_pspace == NULL)
3836 struct program_space *pspace;
3838 ALL_PSPACES (pspace)
3840 if (pspace->executing_startup)
3843 set_current_program_space (pspace);
3844 iterate_over_symtabs (file, collector);
3849 set_current_program_space (search_pspace);
3850 iterate_over_symtabs (file, collector);
3853 return collector.release_symtabs ();
3856 /* Return all the symtabs associated to the FILENAME. If SEARCH_PSPACE is
3857 not NULL, the search is restricted to just that program space. */
3859 static symtab_vector_up
3860 symtabs_from_filename (const char *filename,
3861 struct program_space *search_pspace)
3863 symtab_vector_up result
3864 = collect_symtabs_from_filename (filename, search_pspace);
3866 if (result->empty ())
3868 if (!have_full_symbols () && !have_partial_symbols ())
3869 throw_error (NOT_FOUND_ERROR,
3870 _("No symbol table is loaded. "
3871 "Use the \"file\" command."));
3872 source_file_not_found_error (filename);
3878 /* Look up a function symbol named NAME in symtabs FILE_SYMTABS. Matching
3879 debug symbols are returned in SYMBOLS. Matching minimal symbols are
3880 returned in MINSYMS. */
3883 find_function_symbols (struct linespec_state *state,
3884 std::vector<symtab *> *file_symtabs, const char *name,
3885 symbol_name_match_type name_match_type,
3886 std::vector<symbol *> *symbols,
3887 std::vector<bound_minimal_symbol> *minsyms)
3889 struct collect_info info;
3890 std::vector<const char *> symbol_names;
3893 info.result.symbols = symbols;
3894 info.result.minimal_symbols = minsyms;
3895 info.file_symtabs = file_symtabs;
3897 /* Try NAME as an Objective-C selector. */
3898 find_imps (name, &symbol_names);
3899 if (!symbol_names.empty ())
3900 add_all_symbol_names_from_pspace (&info, state->search_pspace,
3901 symbol_names, FUNCTIONS_DOMAIN);
3903 add_matching_symbols_to_info (name, name_match_type, FUNCTIONS_DOMAIN,
3904 &info, state->search_pspace);
3907 /* Find all symbols named NAME in FILE_SYMTABS, returning debug symbols
3908 in SYMBOLS and minimal symbols in MINSYMS. */
3911 find_linespec_symbols (struct linespec_state *state,
3912 std::vector<symtab *> *file_symtabs,
3913 const char *lookup_name,
3914 symbol_name_match_type name_match_type,
3915 std::vector <symbol *> *symbols,
3916 std::vector<bound_minimal_symbol> *minsyms)
3918 std::string canon = cp_canonicalize_string_no_typedefs (lookup_name);
3919 if (!canon.empty ())
3920 lookup_name = canon.c_str ();
3922 /* It's important to not call expand_symtabs_matching unnecessarily
3923 as it can really slow things down (by unnecessarily expanding
3924 potentially 1000s of symtabs, which when debugging some apps can
3925 cost 100s of seconds). Avoid this to some extent by *first* calling
3926 find_function_symbols, and only if that doesn't find anything
3927 *then* call find_method. This handles two important cases:
3928 1) break (anonymous namespace)::foo
3929 2) break class::method where method is in class (and not a baseclass) */
3931 find_function_symbols (state, file_symtabs, lookup_name,
3932 name_match_type, symbols, minsyms);
3934 /* If we were unable to locate a symbol of the same name, try dividing
3935 the name into class and method names and searching the class and its
3937 if (symbols->empty () && minsyms->empty ())
3939 std::string klass, method;
3940 const char *last, *p, *scope_op;
3942 /* See if we can find a scope operator and break this symbol
3943 name into namespaces${SCOPE_OPERATOR}class_name and method_name. */
3945 p = find_toplevel_string (lookup_name, scope_op);
3951 p = find_toplevel_string (p + strlen (scope_op), scope_op);
3954 /* If no scope operator was found, there is nothing more we can do;
3955 we already attempted to lookup the entire name as a symbol
3960 /* LOOKUP_NAME points to the class name.
3961 LAST points to the method name. */
3962 klass = std::string (lookup_name, last - lookup_name);
3964 /* Skip past the scope operator. */
3965 last += strlen (scope_op);
3968 /* Find a list of classes named KLASS. */
3969 std::vector<symbol *> classes
3970 = lookup_prefix_sym (state, file_symtabs, klass.c_str ());
3971 if (!classes.empty ())
3973 /* Now locate a list of suitable methods named METHOD. */
3976 find_method (state, file_symtabs,
3977 klass.c_str (), method.c_str (),
3978 &classes, symbols, minsyms);
3981 /* If successful, we're done. If NOT_FOUND_ERROR
3982 was not thrown, rethrow the exception that we did get. */
3983 CATCH (except, RETURN_MASK_ERROR)
3985 if (except.error != NOT_FOUND_ERROR)
3986 throw_exception (except);
3993 /* Helper for find_label_symbols. Find all labels that match name
3994 NAME in BLOCK. Return all labels that match in FUNCTION_SYMBOLS.
3995 Return the actual function symbol in which the label was found in
3996 LABEL_FUNC_RET. If COMPLETION_MODE is true, then NAME is
3997 interpreted as a label name prefix. Otherwise, only a label named
3998 exactly NAME match. */
4001 find_label_symbols_in_block (const struct block *block,
4002 const char *name, struct symbol *fn_sym,
4003 bool completion_mode,
4004 std::vector<symbol *> *result,
4005 std::vector<symbol *> *label_funcs_ret)
4007 if (completion_mode)
4009 struct block_iterator iter;
4011 size_t name_len = strlen (name);
4013 int (*cmp) (const char *, const char *, size_t);
4014 cmp = case_sensitivity == case_sensitive_on ? strncmp : strncasecmp;
4016 ALL_BLOCK_SYMBOLS (block, iter, sym)
4018 if (symbol_matches_domain (SYMBOL_LANGUAGE (sym),
4019 SYMBOL_DOMAIN (sym), LABEL_DOMAIN)
4020 && cmp (SYMBOL_SEARCH_NAME (sym), name, name_len) == 0)
4022 result->push_back (sym);
4023 label_funcs_ret->push_back (fn_sym);
4029 struct symbol *sym = lookup_symbol (name, block, LABEL_DOMAIN, 0).symbol;
4033 result->push_back (sym);
4034 label_funcs_ret->push_back (fn_sym);
4039 /* Return all labels that match name NAME in FUNCTION_SYMBOLS or NULL
4040 if no matches were found.
4042 Return the actual function symbol in which the label was found in
4043 LABEL_FUNC_RET. If COMPLETION_MODE is true, then NAME is
4044 interpreted as a label name prefix. Otherwise, only labels named
4045 exactly NAME match. */
4047 static std::vector<symbol *> *
4048 find_label_symbols (struct linespec_state *self,
4049 std::vector<symbol *> *function_symbols,
4050 std::vector<symbol *> *label_funcs_ret, const char *name,
4051 bool completion_mode)
4053 const struct block *block;
4054 struct symbol *fn_sym;
4055 std::vector<symbol *> result;
4057 if (function_symbols == NULL)
4059 set_current_program_space (self->program_space);
4060 block = get_current_search_block ();
4063 block && !BLOCK_FUNCTION (block);
4064 block = BLOCK_SUPERBLOCK (block))
4068 fn_sym = BLOCK_FUNCTION (block);
4070 find_label_symbols_in_block (block, name, fn_sym, completion_mode,
4071 &result, label_funcs_ret);
4075 for (const auto &elt : *function_symbols)
4077 set_current_program_space (SYMTAB_PSPACE (symbol_symtab (elt)));
4078 block = SYMBOL_BLOCK_VALUE (elt);
4080 find_label_symbols_in_block (block, name, elt, completion_mode,
4081 &result, label_funcs_ret);
4085 if (!result.empty ())
4086 return new std::vector<symbol *> (std::move (result));
4092 /* A helper for create_sals_line_offset that handles the 'list_mode' case. */
4094 static std::vector<symtab_and_line>
4095 decode_digits_list_mode (struct linespec_state *self,
4097 struct symtab_and_line val)
4099 gdb_assert (self->list_mode);
4101 std::vector<symtab_and_line> values;
4103 for (const auto &elt : *ls->file_symtabs)
4105 /* The logic above should ensure this. */
4106 gdb_assert (elt != NULL);
4108 set_current_program_space (SYMTAB_PSPACE (elt));
4110 /* Simplistic search just for the list command. */
4111 val.symtab = find_line_symtab (elt, val.line, NULL, NULL);
4112 if (val.symtab == NULL)
4114 val.pspace = SYMTAB_PSPACE (elt);
4116 val.explicit_line = 1;
4118 add_sal_to_sals (self, &values, &val, NULL, 0);
4124 /* A helper for create_sals_line_offset that iterates over the symtabs,
4125 adding lines to the VEC. */
4127 static std::vector<symtab_and_line>
4128 decode_digits_ordinary (struct linespec_state *self,
4131 struct linetable_entry **best_entry)
4133 std::vector<symtab_and_line> sals;
4134 for (const auto &elt : *ls->file_symtabs)
4136 std::vector<CORE_ADDR> pcs;
4138 /* The logic above should ensure this. */
4139 gdb_assert (elt != NULL);
4141 set_current_program_space (SYMTAB_PSPACE (elt));
4143 pcs = find_pcs_for_symtab_line (elt, line, best_entry);
4144 for (CORE_ADDR pc : pcs)
4146 symtab_and_line sal;
4147 sal.pspace = SYMTAB_PSPACE (elt);
4151 sals.push_back (std::move (sal));
4160 /* Return the line offset represented by VARIABLE. */
4162 static struct line_offset
4163 linespec_parse_variable (struct linespec_state *self, const char *variable)
4167 struct line_offset offset = {0, LINE_OFFSET_NONE};
4169 p = (variable[1] == '$') ? variable + 2 : variable + 1;
4172 while (*p >= '0' && *p <= '9')
4174 if (!*p) /* Reached end of token without hitting non-digit. */
4176 /* We have a value history reference. */
4177 struct value *val_history;
4179 sscanf ((variable[1] == '$') ? variable + 2 : variable + 1, "%d", &index);
4181 = access_value_history ((variable[1] == '$') ? -index : index);
4182 if (TYPE_CODE (value_type (val_history)) != TYPE_CODE_INT)
4183 error (_("History values used in line "
4184 "specs must have integer values."));
4185 offset.offset = value_as_long (val_history);
4189 /* Not all digits -- may be user variable/function or a
4190 convenience variable. */
4192 struct internalvar *ivar;
4194 /* Try it as a convenience variable. If it is not a convenience
4195 variable, return and allow normal symbol lookup to occur. */
4196 ivar = lookup_only_internalvar (variable + 1);
4198 /* No internal variable with that name. Mark the offset
4199 as unknown to allow the name to be looked up as a symbol. */
4200 offset.sign = LINE_OFFSET_UNKNOWN;
4203 /* We found a valid variable name. If it is not an integer,
4205 if (!get_internalvar_integer (ivar, &valx))
4206 error (_("Convenience variables used in line "
4207 "specs must have integer values."));
4209 offset.offset = valx;
4217 /* We've found a minimal symbol MSYMBOL in OBJFILE to associate with our
4218 linespec; return the SAL in RESULT. This function should return SALs
4219 matching those from find_function_start_sal, otherwise false
4220 multiple-locations breakpoints could be placed. */
4223 minsym_found (struct linespec_state *self, struct objfile *objfile,
4224 struct minimal_symbol *msymbol,
4225 std::vector<symtab_and_line> *result)
4227 bool want_start_sal;
4229 CORE_ADDR func_addr;
4230 bool is_function = msymbol_is_function (objfile, msymbol, &func_addr);
4234 const char *msym_name = MSYMBOL_LINKAGE_NAME (msymbol);
4236 if (MSYMBOL_TYPE (msymbol) == mst_text_gnu_ifunc
4237 || MSYMBOL_TYPE (msymbol) == mst_data_gnu_ifunc)
4238 want_start_sal = gnu_ifunc_resolve_name (msym_name, &func_addr);
4240 want_start_sal = true;
4243 symtab_and_line sal;
4245 if (is_function && want_start_sal)
4246 sal = find_function_start_sal (func_addr, NULL, self->funfirstline);
4249 sal.objfile = objfile;
4250 sal.msymbol = msymbol;
4251 /* Store func_addr, not the minsym's address in case this was an
4252 ifunc that hasn't been resolved yet. */
4256 sal.pc = MSYMBOL_VALUE_ADDRESS (objfile, msymbol);
4257 sal.pspace = current_program_space;
4260 sal.section = MSYMBOL_OBJ_SECTION (objfile, msymbol);
4262 if (maybe_add_address (self->addr_set, objfile->pspace, sal.pc))
4263 add_sal_to_sals (self, result, &sal, MSYMBOL_NATURAL_NAME (msymbol), 0);
4266 /* A helper function to classify a minimal_symbol_type according to
4270 classify_mtype (enum minimal_symbol_type t)
4277 /* Intermediate priority. */
4280 case mst_solib_trampoline:
4281 /* Lowest priority. */
4285 /* Highest priority. */
4290 /* Callback for std::sort that sorts symbols by priority. */
4293 compare_msyms (const bound_minimal_symbol &a, const bound_minimal_symbol &b)
4295 enum minimal_symbol_type ta = MSYMBOL_TYPE (a.minsym);
4296 enum minimal_symbol_type tb = MSYMBOL_TYPE (b.minsym);
4298 return classify_mtype (ta) < classify_mtype (tb);
4301 /* Helper for search_minsyms_for_name that adds the symbol to the
4305 add_minsym (struct minimal_symbol *minsym, struct objfile *objfile,
4306 struct symtab *symtab, int list_mode,
4307 std::vector<struct bound_minimal_symbol> *msyms)
4311 /* We're looking for a label for which we don't have debug
4313 CORE_ADDR func_addr;
4314 if (msymbol_is_function (objfile, minsym, &func_addr))
4316 symtab_and_line sal = find_pc_sect_line (func_addr, NULL, 0);
4318 if (symtab != sal.symtab)
4323 /* Exclude data symbols when looking for breakpoint locations. */
4324 if (!list_mode && !msymbol_is_function (objfile, minsym))
4327 struct bound_minimal_symbol mo = {minsym, objfile};
4328 msyms->push_back (mo);
4332 /* Search for minimal symbols called NAME. If SEARCH_PSPACE
4333 is not NULL, the search is restricted to just that program
4336 If SYMTAB is NULL, search all objfiles, otherwise
4337 restrict results to the given SYMTAB. */
4340 search_minsyms_for_name (struct collect_info *info,
4341 const lookup_name_info &name,
4342 struct program_space *search_pspace,
4343 struct symtab *symtab)
4345 std::vector<struct bound_minimal_symbol> minsyms;
4349 struct program_space *pspace;
4351 ALL_PSPACES (pspace)
4353 struct objfile *objfile;
4355 if (search_pspace != NULL && search_pspace != pspace)
4357 if (pspace->executing_startup)
4360 set_current_program_space (pspace);
4362 ALL_OBJFILES (objfile)
4364 iterate_over_minimal_symbols (objfile, name,
4365 [&] (struct minimal_symbol *msym)
4367 add_minsym (msym, objfile, nullptr,
4368 info->state->list_mode,
4377 if (search_pspace == NULL || SYMTAB_PSPACE (symtab) == search_pspace)
4379 set_current_program_space (SYMTAB_PSPACE (symtab));
4380 iterate_over_minimal_symbols
4381 (SYMTAB_OBJFILE (symtab), name,
4382 [&] (struct minimal_symbol *msym)
4384 add_minsym (msym, SYMTAB_OBJFILE (symtab), symtab,
4385 info->state->list_mode, &minsyms);
4391 if (!minsyms.empty ())
4395 std::sort (minsyms.begin (), minsyms.end (), compare_msyms);
4397 /* Now the minsyms are in classification order. So, we walk
4398 over them and process just the minsyms with the same
4399 classification as the very first minsym in the list. */
4400 classification = classify_mtype (MSYMBOL_TYPE (minsyms[0].minsym));
4402 for (const bound_minimal_symbol &item : minsyms)
4404 if (classify_mtype (MSYMBOL_TYPE (item.minsym)) != classification)
4407 info->result.minimal_symbols->push_back (item);
4412 /* A helper function to add all symbols matching NAME to INFO. If
4413 PSPACE is not NULL, the search is restricted to just that program
4417 add_matching_symbols_to_info (const char *name,
4418 symbol_name_match_type name_match_type,
4419 enum search_domain search_domain,
4420 struct collect_info *info,
4421 struct program_space *pspace)
4423 lookup_name_info lookup_name (name, name_match_type);
4425 for (const auto &elt : *info->file_symtabs)
4429 iterate_over_all_matching_symtabs (info->state, lookup_name,
4430 VAR_DOMAIN, search_domain,
4431 pspace, true, [&] (symbol *sym)
4432 { return info->add_symbol (sym); });
4433 search_minsyms_for_name (info, lookup_name, pspace, NULL);
4435 else if (pspace == NULL || pspace == SYMTAB_PSPACE (elt))
4437 int prev_len = info->result.symbols->size ();
4439 /* Program spaces that are executing startup should have
4440 been filtered out earlier. */
4441 gdb_assert (!SYMTAB_PSPACE (elt)->executing_startup);
4442 set_current_program_space (SYMTAB_PSPACE (elt));
4443 iterate_over_file_blocks (elt, lookup_name, VAR_DOMAIN,
4445 { return info->add_symbol (sym); });
4447 /* If no new symbols were found in this iteration and this symtab
4448 is in assembler, we might actually be looking for a label for
4449 which we don't have debug info. Check for a minimal symbol in
4451 if (prev_len == info->result.symbols->size ()
4452 && elt->language == language_asm)
4453 search_minsyms_for_name (info, lookup_name, pspace, elt);
4460 /* Now come some functions that are called from multiple places within
4464 symbol_to_sal (struct symtab_and_line *result,
4465 int funfirstline, struct symbol *sym)
4467 if (SYMBOL_CLASS (sym) == LOC_BLOCK)
4469 *result = find_function_start_sal (sym, funfirstline);
4474 if (SYMBOL_CLASS (sym) == LOC_LABEL && SYMBOL_VALUE_ADDRESS (sym) != 0)
4477 result->symtab = symbol_symtab (sym);
4478 result->symbol = sym;
4479 result->line = SYMBOL_LINE (sym);
4480 result->pc = SYMBOL_VALUE_ADDRESS (sym);
4481 result->pspace = SYMTAB_PSPACE (result->symtab);
4482 result->explicit_pc = 1;
4485 else if (funfirstline)
4489 else if (SYMBOL_LINE (sym) != 0)
4491 /* We know its line number. */
4493 result->symtab = symbol_symtab (sym);
4494 result->symbol = sym;
4495 result->line = SYMBOL_LINE (sym);
4496 result->pc = SYMBOL_VALUE_ADDRESS (sym);
4497 result->pspace = SYMTAB_PSPACE (result->symtab);
4505 linespec_result::~linespec_result ()
4507 for (linespec_sals &lsal : lsals)
4508 xfree (lsal.canonical);
4511 /* Return the quote characters permitted by the linespec parser. */
4514 get_gdb_linespec_parser_quote_characters (void)
4516 return linespec_quote_characters;