1 /* Parser for linespec for the GNU debugger, GDB.
3 Copyright (C) 1986-2017 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"
50 /* An enumeration of the various things a user might attempt to
51 complete for a linespec location. */
53 enum class linespec_complete_what
55 /* Nothing, no possible completion. */
58 /* A function/method name. Due to ambiguity between
64 this can also indicate a source filename, iff we haven't seen a
65 separate source filename component, as in "b source.c:function". */
68 /* A label symbol. E.g., break file.c:function:LABEL. */
71 /* An expression. E.g., "break foo if EXPR", or "break *EXPR". */
74 /* A linespec keyword ("if"/"thread"/"task").
75 E.g., "break func threa<tab>". */
79 typedef struct symbol *symbolp;
82 typedef struct type *typep;
85 /* An address entry is used to ensure that any given location is only
86 added to the result a single time. It holds an address and the
87 program space from which the address came. */
91 struct program_space *pspace;
95 typedef struct bound_minimal_symbol bound_minimal_symbol_d;
97 DEF_VEC_O (bound_minimal_symbol_d);
99 /* A linespec. Elements of this structure are filled in by a parser
100 (either parse_linespec or some other function). The structure is
101 then converted into SALs by convert_linespec_to_sals. */
105 /* An explicit location describing the SaLs. */
106 struct explicit_location explicit_loc;
108 /* The list of symtabs to search to which to limit the search. May not
109 be NULL. If explicit.SOURCE_FILENAME is NULL (no user-specified
110 filename), FILE_SYMTABS should contain one single NULL member. This
111 will cause the code to use the default symtab. */
112 VEC (symtab_ptr) *file_symtabs;
114 /* A list of matching function symbols and minimal symbols. Both lists
115 may be NULL if no matching symbols were found. */
116 VEC (symbolp) *function_symbols;
117 VEC (bound_minimal_symbol_d) *minimal_symbols;
119 /* A structure of matching label symbols and the corresponding
120 function symbol in which the label was found. Both may be NULL
121 or both must be non-NULL. */
124 VEC (symbolp) *label_symbols;
125 VEC (symbolp) *function_symbols;
128 typedef struct linespec *linespec_p;
130 /* A canonical linespec represented as a symtab-related string.
132 Each entry represents the "SYMTAB:SUFFIX" linespec string.
133 SYMTAB can be converted for example by symtab_to_fullname or
134 symtab_to_filename_for_display as needed. */
136 struct linespec_canonical_name
138 /* Remaining text part of the linespec string. */
141 /* If NULL then SUFFIX is the whole linespec string. */
142 struct symtab *symtab;
145 /* An instance of this is used to keep all state while linespec
146 operates. This instance is passed around as a 'this' pointer to
147 the various implementation methods. */
149 struct linespec_state
151 /* The language in use during linespec processing. */
152 const struct language_defn *language;
154 /* The program space as seen when the module was entered. */
155 struct program_space *program_space;
157 /* If not NULL, the search is restricted to just this program
159 struct program_space *search_pspace;
161 /* The default symtab to use, if no other symtab is specified. */
162 struct symtab *default_symtab;
164 /* The default line to use. */
167 /* The 'funfirstline' value that was passed in to decode_line_1 or
171 /* Nonzero if we are running in 'list' mode; see decode_line_list. */
174 /* The 'canonical' value passed to decode_line_full, or NULL. */
175 struct linespec_result *canonical;
177 /* Canonical strings that mirror the std::vector<symtab_and_line> result. */
178 struct linespec_canonical_name *canonical_names;
180 /* This is a set of address_entry objects which is used to prevent
181 duplicate symbols from being entered into the result. */
184 /* Are we building a linespec? */
188 /* This is a helper object that is used when collecting symbols into a
193 /* The linespec object in use. */
194 struct linespec_state *state;
196 /* A list of symtabs to which to restrict matches. */
197 VEC (symtab_ptr) *file_symtabs;
199 /* The result being accumulated. */
202 VEC (symbolp) *symbols;
203 VEC (bound_minimal_symbol_d) *minimal_symbols;
206 /* Possibly add a symbol to the results. */
207 bool add_symbol (symbol *sym);
211 collect_info::add_symbol (symbol *sym)
213 /* In list mode, add all matching symbols, regardless of class.
214 This allows the user to type "list a_global_variable". */
215 if (SYMBOL_CLASS (sym) == LOC_BLOCK || this->state->list_mode)
216 VEC_safe_push (symbolp, this->result.symbols, sym);
218 /* Continue iterating. */
229 /* A colon "separator" */
241 /* EOI (end of input) */
247 typedef enum ls_token_type linespec_token_type;
249 /* List of keywords. This is NULL-terminated so that it can be used
250 as enum completer. */
251 const char * const linespec_keywords[] = { "if", "thread", "task", NULL };
252 #define IF_KEYWORD_INDEX 0
254 /* A token of the linespec lexer */
258 /* The type of the token */
259 linespec_token_type type;
261 /* Data for the token */
264 /* A string, given as a stoken */
265 struct stoken string;
271 typedef struct ls_token linespec_token;
273 #define LS_TOKEN_STOKEN(TOK) (TOK).data.string
274 #define LS_TOKEN_KEYWORD(TOK) (TOK).data.keyword
276 /* An instance of the linespec parser. */
280 /* Lexer internal data */
283 /* Save head of input stream. */
284 const char *saved_arg;
286 /* Head of the input stream. */
288 #define PARSER_STREAM(P) ((P)->lexer.stream)
290 /* The current token. */
291 linespec_token current;
294 /* Is the entire linespec quote-enclosed? */
295 int is_quote_enclosed;
297 /* The state of the parse. */
298 struct linespec_state state;
299 #define PARSER_STATE(PPTR) (&(PPTR)->state)
301 /* The result of the parse. */
302 struct linespec result;
303 #define PARSER_RESULT(PPTR) (&(PPTR)->result)
305 /* What the parser believes the current word point should complete
307 linespec_complete_what complete_what;
309 /* The completion word point. The parser advances this as it skips
310 tokens. At some point the input string will end or parsing will
311 fail, and then we attempt completion at the captured completion
312 word point, interpreting the string at completion_word as
314 const char *completion_word;
316 /* If the current token was a quoted string, then this is the
317 quoting character (either " or '). */
318 int completion_quote_char;
320 /* If the current token was a quoted string, then this points at the
321 end of the quoted string. */
322 const char *completion_quote_end;
324 /* If parsing for completion, then this points at the completion
325 tracker. Otherwise, this is NULL. */
326 struct completion_tracker *completion_tracker;
328 typedef struct ls_parser linespec_parser;
330 /* A convenience macro for accessing the explicit location result of
332 #define PARSER_EXPLICIT(PPTR) (&PARSER_RESULT ((PPTR))->explicit_loc)
334 /* Prototypes for local functions. */
336 static void iterate_over_file_blocks
337 (struct symtab *symtab, const lookup_name_info &name,
339 gdb::function_view<symbol_found_callback_ftype> callback);
341 static void initialize_defaults (struct symtab **default_symtab,
344 CORE_ADDR linespec_expression_to_pc (const char **exp_ptr);
346 static std::vector<symtab_and_line> decode_objc (struct linespec_state *self,
350 static VEC (symtab_ptr) *symtabs_from_filename (const char *,
351 struct program_space *pspace);
353 static VEC (symbolp) *find_label_symbols (struct linespec_state *self,
354 VEC (symbolp) *function_symbols,
355 VEC (symbolp) **label_funcs_ret,
357 bool completion_mode = false);
359 static void find_linespec_symbols (struct linespec_state *self,
360 VEC (symtab_ptr) *file_symtabs,
362 symbol_name_match_type name_match_type,
363 VEC (symbolp) **symbols,
364 VEC (bound_minimal_symbol_d) **minsyms);
366 static struct line_offset
367 linespec_parse_variable (struct linespec_state *self,
368 const char *variable);
370 static int symbol_to_sal (struct symtab_and_line *result,
371 int funfirstline, struct symbol *sym);
373 static void add_matching_symbols_to_info (const char *name,
374 symbol_name_match_type name_match_type,
375 enum search_domain search_domain,
376 struct collect_info *info,
377 struct program_space *pspace);
379 static void add_all_symbol_names_from_pspace (struct collect_info *info,
380 struct program_space *pspace,
381 VEC (const_char_ptr) *names,
382 enum search_domain search_domain);
384 static VEC (symtab_ptr) *
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 int compare_symbols (const void *a, const void *b);
405 static int compare_msymbols (const void *a, const void *b);
407 /* Permitted quote characters for the parser. This is different from the
408 completer's quote characters to allow backward compatibility with the
410 static const char *const linespec_quote_characters = "\"\'";
412 /* Lexer functions. */
414 /* Lex a number from the input in PARSER. This only supports
417 Return true if input is decimal numbers. Return false if not. */
420 linespec_lexer_lex_number (linespec_parser *parser, linespec_token *tokenp)
422 tokenp->type = LSTOKEN_NUMBER;
423 LS_TOKEN_STOKEN (*tokenp).length = 0;
424 LS_TOKEN_STOKEN (*tokenp).ptr = PARSER_STREAM (parser);
426 /* Keep any sign at the start of the stream. */
427 if (*PARSER_STREAM (parser) == '+' || *PARSER_STREAM (parser) == '-')
429 ++LS_TOKEN_STOKEN (*tokenp).length;
430 ++(PARSER_STREAM (parser));
433 while (isdigit (*PARSER_STREAM (parser)))
435 ++LS_TOKEN_STOKEN (*tokenp).length;
436 ++(PARSER_STREAM (parser));
439 /* If the next character in the input buffer is not a space, comma,
440 quote, or colon, this input does not represent a number. */
441 if (*PARSER_STREAM (parser) != '\0'
442 && !isspace (*PARSER_STREAM (parser)) && *PARSER_STREAM (parser) != ','
443 && *PARSER_STREAM (parser) != ':'
444 && !strchr (linespec_quote_characters, *PARSER_STREAM (parser)))
446 PARSER_STREAM (parser) = LS_TOKEN_STOKEN (*tokenp).ptr;
453 /* See linespec.h. */
456 linespec_lexer_lex_keyword (const char *p)
462 for (i = 0; linespec_keywords[i] != NULL; ++i)
464 int len = strlen (linespec_keywords[i]);
466 /* If P begins with one of the keywords and the next
467 character is whitespace, we may have found a keyword.
468 It is only a keyword if it is not followed by another
470 if (strncmp (p, linespec_keywords[i], len) == 0
475 /* Special case: "if" ALWAYS stops the lexer, since it
476 is not possible to predict what is going to appear in
477 the condition, which can only be parsed after SaLs have
479 if (i != IF_KEYWORD_INDEX)
483 for (j = 0; linespec_keywords[j] != NULL; ++j)
485 int nextlen = strlen (linespec_keywords[j]);
487 if (strncmp (p, linespec_keywords[j], nextlen) == 0
488 && isspace (p[nextlen]))
493 return linespec_keywords[i];
501 /* See description in linespec.h. */
504 is_ada_operator (const char *string)
506 const struct ada_opname_map *mapping;
508 for (mapping = ada_opname_table;
509 mapping->encoded != NULL
510 && !startswith (string, mapping->decoded); ++mapping)
513 return mapping->decoded == NULL ? 0 : strlen (mapping->decoded);
516 /* Find QUOTE_CHAR in STRING, accounting for the ':' terminal. Return
517 the location of QUOTE_CHAR, or NULL if not found. */
520 skip_quote_char (const char *string, char quote_char)
522 const char *p, *last;
524 p = last = find_toplevel_char (string, quote_char);
525 while (p && *p != '\0' && *p != ':')
527 p = find_toplevel_char (p, quote_char);
535 /* Make a writable copy of the string given in TOKEN, trimming
536 any trailing whitespace. */
539 copy_token_string (linespec_token token)
543 if (token.type == LSTOKEN_KEYWORD)
544 return xstrdup (LS_TOKEN_KEYWORD (token));
546 str = savestring (LS_TOKEN_STOKEN (token).ptr,
547 LS_TOKEN_STOKEN (token).length);
548 s = remove_trailing_whitespace (str, str + LS_TOKEN_STOKEN (token).length);
554 /* Does P represent the end of a quote-enclosed linespec? */
557 is_closing_quote_enclosed (const char *p)
559 if (strchr (linespec_quote_characters, *p))
561 p = skip_spaces ((char *) p);
562 return (*p == '\0' || linespec_lexer_lex_keyword (p));
565 /* Find the end of the parameter list that starts with *INPUT.
566 This helper function assists with lexing string segments
567 which might contain valid (non-terminating) commas. */
570 find_parameter_list_end (const char *input)
572 char end_char, start_char;
577 if (start_char == '(')
579 else if (start_char == '<')
588 if (*p == start_char)
590 else if (*p == end_char)
604 /* If the [STRING, STRING_LEN) string ends with what looks like a
605 keyword, return the keyword start offset in STRING. Return -1
609 string_find_incomplete_keyword_at_end (const char * const *keywords,
610 const char *string, size_t string_len)
612 const char *end = string + string_len;
615 while (p > string && *p != ' ')
620 size_t len = end - p;
621 for (size_t i = 0; keywords[i] != NULL; ++i)
622 if (strncmp (keywords[i], p, len) == 0)
629 /* Lex a string from the input in PARSER. */
631 static linespec_token
632 linespec_lexer_lex_string (linespec_parser *parser)
634 linespec_token token;
635 const char *start = PARSER_STREAM (parser);
637 token.type = LSTOKEN_STRING;
639 /* If the input stream starts with a quote character, skip to the next
640 quote character, regardless of the content. */
641 if (strchr (linespec_quote_characters, *PARSER_STREAM (parser)))
644 char quote_char = *PARSER_STREAM (parser);
646 /* Special case: Ada operators. */
647 if (PARSER_STATE (parser)->language->la_language == language_ada
648 && quote_char == '\"')
650 int len = is_ada_operator (PARSER_STREAM (parser));
654 /* The input is an Ada operator. Return the quoted string
656 LS_TOKEN_STOKEN (token).ptr = PARSER_STREAM (parser);
657 LS_TOKEN_STOKEN (token).length = len;
658 PARSER_STREAM (parser) += len;
662 /* The input does not represent an Ada operator -- fall through
663 to normal quoted string handling. */
666 /* Skip past the beginning quote. */
667 ++(PARSER_STREAM (parser));
669 /* Mark the start of the string. */
670 LS_TOKEN_STOKEN (token).ptr = PARSER_STREAM (parser);
672 /* Skip to the ending quote. */
673 end = skip_quote_char (PARSER_STREAM (parser), quote_char);
675 /* This helps the completer mode decide whether we have a
677 parser->completion_quote_char = quote_char;
678 parser->completion_quote_end = end;
680 /* Error if the input did not terminate properly, unless in
684 if (parser->completion_tracker == NULL)
685 error (_("unmatched quote"));
687 /* In completion mode, we'll try to complete the incomplete
689 token.type = LSTOKEN_STRING;
690 while (*PARSER_STREAM (parser) != '\0')
691 PARSER_STREAM (parser)++;
692 LS_TOKEN_STOKEN (token).length = PARSER_STREAM (parser) - 1 - start;
696 /* Skip over the ending quote and mark the length of the string. */
697 PARSER_STREAM (parser) = (char *) ++end;
698 LS_TOKEN_STOKEN (token).length = PARSER_STREAM (parser) - 2 - start;
705 /* Otherwise, only identifier characters are permitted.
706 Spaces are the exception. In general, we keep spaces,
707 but only if the next characters in the input do not resolve
708 to one of the keywords.
710 This allows users to forgo quoting CV-qualifiers, template arguments,
711 and similar common language constructs. */
715 if (isspace (*PARSER_STREAM (parser)))
717 p = skip_spaces (PARSER_STREAM (parser));
718 /* When we get here we know we've found something followed by
719 a space (we skip over parens and templates below).
720 So if we find a keyword now, we know it is a keyword and not,
721 say, a function name. */
722 if (linespec_lexer_lex_keyword (p) != NULL)
724 LS_TOKEN_STOKEN (token).ptr = start;
725 LS_TOKEN_STOKEN (token).length
726 = PARSER_STREAM (parser) - start;
730 /* Advance past the whitespace. */
731 PARSER_STREAM (parser) = p;
734 /* If the next character is EOI or (single) ':', the
735 string is complete; return the token. */
736 if (*PARSER_STREAM (parser) == 0)
738 LS_TOKEN_STOKEN (token).ptr = start;
739 LS_TOKEN_STOKEN (token).length = PARSER_STREAM (parser) - start;
742 else if (PARSER_STREAM (parser)[0] == ':')
744 /* Do not tokenize the C++ scope operator. */
745 if (PARSER_STREAM (parser)[1] == ':')
746 ++(PARSER_STREAM (parser));
748 /* Do not tokenize ABI tags such as "[abi:cxx11]". */
749 else if (PARSER_STREAM (parser) - start > 4
750 && startswith (PARSER_STREAM (parser) - 4, "[abi"))
751 ++(PARSER_STREAM (parser));
753 /* Do not tokenify if the input length so far is one
754 (i.e, a single-letter drive name) and the next character
755 is a directory separator. This allows Windows-style
756 paths to be recognized as filenames without quoting it. */
757 else if ((PARSER_STREAM (parser) - start) != 1
758 || !IS_DIR_SEPARATOR (PARSER_STREAM (parser)[1]))
760 LS_TOKEN_STOKEN (token).ptr = start;
761 LS_TOKEN_STOKEN (token).length
762 = PARSER_STREAM (parser) - start;
766 /* Special case: permit quote-enclosed linespecs. */
767 else if (parser->is_quote_enclosed
768 && strchr (linespec_quote_characters,
769 *PARSER_STREAM (parser))
770 && is_closing_quote_enclosed (PARSER_STREAM (parser)))
772 LS_TOKEN_STOKEN (token).ptr = start;
773 LS_TOKEN_STOKEN (token).length = PARSER_STREAM (parser) - start;
776 /* Because commas may terminate a linespec and appear in
777 the middle of valid string input, special cases for
778 '<' and '(' are necessary. */
779 else if (*PARSER_STREAM (parser) == '<'
780 || *PARSER_STREAM (parser) == '(')
782 /* Don't interpret 'operator<' / 'operator<<' as a
783 template parameter list though. */
784 if (*PARSER_STREAM (parser) == '<'
785 && (PARSER_STATE (parser)->language->la_language
787 && (PARSER_STREAM (parser) - start) >= CP_OPERATOR_LEN)
789 const char *p = PARSER_STREAM (parser);
791 while (p > start && isspace (p[-1]))
793 if (p - start >= CP_OPERATOR_LEN)
795 p -= CP_OPERATOR_LEN;
796 if (strncmp (p, CP_OPERATOR_STR, CP_OPERATOR_LEN) == 0
798 || !(isalnum (p[-1]) || p[-1] == '_')))
800 /* This is an operator name. Keep going. */
801 ++(PARSER_STREAM (parser));
802 if (*PARSER_STREAM (parser) == '<')
803 ++(PARSER_STREAM (parser));
809 const char *p = find_parameter_list_end (PARSER_STREAM (parser));
810 PARSER_STREAM (parser) = p;
812 /* Don't loop around to the normal \0 case above because
813 we don't want to misinterpret a potential keyword at
814 the end of the token when the string isn't
815 "()<>"-balanced. This handles "b
816 function(thread<tab>" in completion mode. */
819 LS_TOKEN_STOKEN (token).ptr = start;
820 LS_TOKEN_STOKEN (token).length
821 = PARSER_STREAM (parser) - start;
827 /* Commas are terminators, but not if they are part of an
829 else if (*PARSER_STREAM (parser) == ',')
831 if ((PARSER_STATE (parser)->language->la_language
833 && (PARSER_STREAM (parser) - start) > CP_OPERATOR_LEN)
835 const char *p = strstr (start, CP_OPERATOR_STR);
837 if (p != NULL && is_operator_name (p))
839 /* This is an operator name. Keep going. */
840 ++(PARSER_STREAM (parser));
845 /* Comma terminates the string. */
846 LS_TOKEN_STOKEN (token).ptr = start;
847 LS_TOKEN_STOKEN (token).length = PARSER_STREAM (parser) - start;
851 /* Advance the stream. */
852 ++(PARSER_STREAM (parser));
859 /* Lex a single linespec token from PARSER. */
861 static linespec_token
862 linespec_lexer_lex_one (linespec_parser *parser)
866 if (parser->lexer.current.type == LSTOKEN_CONSUMED)
868 /* Skip any whitespace. */
869 PARSER_STREAM (parser) = skip_spaces (PARSER_STREAM (parser));
871 /* Check for a keyword, they end the linespec. */
872 keyword = linespec_lexer_lex_keyword (PARSER_STREAM (parser));
875 parser->lexer.current.type = LSTOKEN_KEYWORD;
876 LS_TOKEN_KEYWORD (parser->lexer.current) = keyword;
877 /* We do not advance the stream here intentionally:
878 we would like lexing to stop when a keyword is seen.
880 PARSER_STREAM (parser) += strlen (keyword); */
882 return parser->lexer.current;
885 /* Handle other tokens. */
886 switch (*PARSER_STREAM (parser))
889 parser->lexer.current.type = LSTOKEN_EOI;
893 case '0': case '1': case '2': case '3': case '4':
894 case '5': case '6': case '7': case '8': case '9':
895 if (!linespec_lexer_lex_number (parser, &(parser->lexer.current)))
896 parser->lexer.current = linespec_lexer_lex_string (parser);
900 /* If we have a scope operator, lex the input as a string.
901 Otherwise, return LSTOKEN_COLON. */
902 if (PARSER_STREAM (parser)[1] == ':')
903 parser->lexer.current = linespec_lexer_lex_string (parser);
906 parser->lexer.current.type = LSTOKEN_COLON;
907 ++(PARSER_STREAM (parser));
911 case '\'': case '\"':
912 /* Special case: permit quote-enclosed linespecs. */
913 if (parser->is_quote_enclosed
914 && is_closing_quote_enclosed (PARSER_STREAM (parser)))
916 ++(PARSER_STREAM (parser));
917 parser->lexer.current.type = LSTOKEN_EOI;
920 parser->lexer.current = linespec_lexer_lex_string (parser);
924 parser->lexer.current.type = LSTOKEN_COMMA;
925 LS_TOKEN_STOKEN (parser->lexer.current).ptr
926 = PARSER_STREAM (parser);
927 LS_TOKEN_STOKEN (parser->lexer.current).length = 1;
928 ++(PARSER_STREAM (parser));
932 /* If the input is not a number, it must be a string.
933 [Keywords were already considered above.] */
934 parser->lexer.current = linespec_lexer_lex_string (parser);
939 return parser->lexer.current;
942 /* Consume the current token and return the next token in PARSER's
943 input stream. Also advance the completion word for completion
946 static linespec_token
947 linespec_lexer_consume_token (linespec_parser *parser)
949 gdb_assert (parser->lexer.current.type != LSTOKEN_EOI);
951 bool advance_word = (parser->lexer.current.type != LSTOKEN_STRING
952 || *PARSER_STREAM (parser) != '\0');
954 /* If we're moving past a string to some other token, it must be the
955 quote was terminated. */
956 if (parser->completion_quote_char)
958 gdb_assert (parser->lexer.current.type == LSTOKEN_STRING);
960 /* If the string was the last (non-EOI) token, we're past the
961 quote, but remember that for later. */
962 if (*PARSER_STREAM (parser) != '\0')
964 parser->completion_quote_char = '\0';
965 parser->completion_quote_end = NULL;;
969 parser->lexer.current.type = LSTOKEN_CONSUMED;
970 linespec_lexer_lex_one (parser);
972 if (parser->lexer.current.type == LSTOKEN_STRING)
974 /* Advance the completion word past a potential initial
976 parser->completion_word = LS_TOKEN_STOKEN (parser->lexer.current).ptr;
978 else if (advance_word)
980 /* Advance the completion word past any whitespace. */
981 parser->completion_word = PARSER_STREAM (parser);
984 return parser->lexer.current;
987 /* Return the next token without consuming the current token. */
989 static linespec_token
990 linespec_lexer_peek_token (linespec_parser *parser)
993 const char *saved_stream = PARSER_STREAM (parser);
994 linespec_token saved_token = parser->lexer.current;
995 int saved_completion_quote_char = parser->completion_quote_char;
996 const char *saved_completion_quote_end = parser->completion_quote_end;
997 const char *saved_completion_word = parser->completion_word;
999 next = linespec_lexer_consume_token (parser);
1000 PARSER_STREAM (parser) = saved_stream;
1001 parser->lexer.current = saved_token;
1002 parser->completion_quote_char = saved_completion_quote_char;
1003 parser->completion_quote_end = saved_completion_quote_end;
1004 parser->completion_word = saved_completion_word;
1008 /* Helper functions. */
1010 /* Add SAL to SALS, and also update SELF->CANONICAL_NAMES to reflect
1011 the new sal, if needed. If not NULL, SYMNAME is the name of the
1012 symbol to use when constructing the new canonical name.
1014 If LITERAL_CANONICAL is non-zero, SYMNAME will be used as the
1015 canonical name for the SAL. */
1018 add_sal_to_sals (struct linespec_state *self,
1019 std::vector<symtab_and_line> *sals,
1020 struct symtab_and_line *sal,
1021 const char *symname, int literal_canonical)
1023 sals->push_back (*sal);
1025 if (self->canonical)
1027 struct linespec_canonical_name *canonical;
1029 self->canonical_names = XRESIZEVEC (struct linespec_canonical_name,
1030 self->canonical_names,
1032 canonical = &self->canonical_names[sals->size () - 1];
1033 if (!literal_canonical && sal->symtab)
1035 symtab_to_fullname (sal->symtab);
1037 /* Note that the filter doesn't have to be a valid linespec
1038 input. We only apply the ":LINE" treatment to Ada for
1040 if (symname != NULL && sal->line != 0
1041 && self->language->la_language == language_ada)
1042 canonical->suffix = xstrprintf ("%s:%d", symname, sal->line);
1043 else if (symname != NULL)
1044 canonical->suffix = xstrdup (symname);
1046 canonical->suffix = xstrprintf ("%d", sal->line);
1047 canonical->symtab = sal->symtab;
1051 if (symname != NULL)
1052 canonical->suffix = xstrdup (symname);
1054 canonical->suffix = xstrdup ("<unknown>");
1055 canonical->symtab = NULL;
1060 /* A hash function for address_entry. */
1063 hash_address_entry (const void *p)
1065 const struct address_entry *aep = (const struct address_entry *) p;
1068 hash = iterative_hash_object (aep->pspace, 0);
1069 return iterative_hash_object (aep->addr, hash);
1072 /* An equality function for address_entry. */
1075 eq_address_entry (const void *a, const void *b)
1077 const struct address_entry *aea = (const struct address_entry *) a;
1078 const struct address_entry *aeb = (const struct address_entry *) b;
1080 return aea->pspace == aeb->pspace && aea->addr == aeb->addr;
1083 /* Check whether the address, represented by PSPACE and ADDR, is
1084 already in the set. If so, return 0. Otherwise, add it and return
1088 maybe_add_address (htab_t set, struct program_space *pspace, CORE_ADDR addr)
1090 struct address_entry e, *p;
1095 slot = htab_find_slot (set, &e, INSERT);
1099 p = XNEW (struct address_entry);
1100 memcpy (p, &e, sizeof (struct address_entry));
1106 /* A helper that walks over all matching symtabs in all objfiles and
1107 calls CALLBACK for each symbol matching NAME. If SEARCH_PSPACE is
1108 not NULL, then the search is restricted to just that program
1109 space. If INCLUDE_INLINE is true then symbols representing
1110 inlined instances of functions will be included in the result. */
1113 iterate_over_all_matching_symtabs
1114 (struct linespec_state *state,
1115 const lookup_name_info &lookup_name,
1116 const domain_enum name_domain,
1117 enum search_domain search_domain,
1118 struct program_space *search_pspace, bool include_inline,
1119 gdb::function_view<symbol_found_callback_ftype> callback)
1121 struct objfile *objfile;
1122 struct program_space *pspace;
1124 ALL_PSPACES (pspace)
1126 if (search_pspace != NULL && search_pspace != pspace)
1128 if (pspace->executing_startup)
1131 set_current_program_space (pspace);
1133 ALL_OBJFILES (objfile)
1135 struct compunit_symtab *cu;
1138 objfile->sf->qf->expand_symtabs_matching (objfile,
1144 ALL_OBJFILE_COMPUNITS (objfile, cu)
1146 struct symtab *symtab = COMPUNIT_FILETABS (cu);
1148 iterate_over_file_blocks (symtab, lookup_name, name_domain, callback);
1152 struct block *block;
1155 for (i = FIRST_LOCAL_BLOCK;
1156 i < BLOCKVECTOR_NBLOCKS (SYMTAB_BLOCKVECTOR (symtab));
1159 block = BLOCKVECTOR_BLOCK (SYMTAB_BLOCKVECTOR (symtab), i);
1160 state->language->la_iterate_over_symbols
1161 (block, lookup_name, name_domain, [&] (symbol *sym)
1163 /* Restrict calls to CALLBACK to symbols
1164 representing inline symbols only. */
1165 if (SYMBOL_INLINED (sym))
1166 return callback (sym);
1176 /* Returns the block to be used for symbol searches from
1177 the current location. */
1179 static const struct block *
1180 get_current_search_block (void)
1182 const struct block *block;
1183 enum language save_language;
1185 /* get_selected_block can change the current language when there is
1186 no selected frame yet. */
1187 save_language = current_language->la_language;
1188 block = get_selected_block (0);
1189 set_language (save_language);
1194 /* Iterate over static and global blocks. */
1197 iterate_over_file_blocks
1198 (struct symtab *symtab, const lookup_name_info &name,
1199 domain_enum domain, gdb::function_view<symbol_found_callback_ftype> callback)
1201 struct block *block;
1203 for (block = BLOCKVECTOR_BLOCK (SYMTAB_BLOCKVECTOR (symtab), STATIC_BLOCK);
1205 block = BLOCK_SUPERBLOCK (block))
1206 LA_ITERATE_OVER_SYMBOLS (block, name, domain, callback);
1209 /* A helper for find_method. This finds all methods in type T of
1210 language T_LANG which match NAME. It adds matching symbol names to
1211 RESULT_NAMES, and adds T's direct superclasses to SUPERCLASSES. */
1214 find_methods (struct type *t, enum language t_lang, const char *name,
1215 VEC (const_char_ptr) **result_names,
1216 VEC (typep) **superclasses)
1219 const char *class_name = type_name_no_tag (t);
1221 /* Ignore this class if it doesn't have a name. This is ugly, but
1222 unless we figure out how to get the physname without the name of
1223 the class, then the loop can't do any good. */
1227 lookup_name_info lookup_name (name, symbol_name_match_type::FULL);
1228 symbol_name_matcher_ftype *symbol_name_compare
1229 = language_get_symbol_name_matcher (language_def (t_lang), lookup_name);
1231 t = check_typedef (t);
1233 /* Loop over each method name. At this level, all overloads of a name
1234 are counted as a single name. There is an inner loop which loops over
1237 for (method_counter = TYPE_NFN_FIELDS (t) - 1;
1238 method_counter >= 0;
1241 const char *method_name = TYPE_FN_FIELDLIST_NAME (t, method_counter);
1242 char dem_opname[64];
1244 if (startswith (method_name, "__") ||
1245 startswith (method_name, "op") ||
1246 startswith (method_name, "type"))
1248 if (cplus_demangle_opname (method_name, dem_opname, DMGL_ANSI))
1249 method_name = dem_opname;
1250 else if (cplus_demangle_opname (method_name, dem_opname, 0))
1251 method_name = dem_opname;
1254 if (symbol_name_compare (method_name, lookup_name, NULL))
1258 for (field_counter = (TYPE_FN_FIELDLIST_LENGTH (t, method_counter)
1264 const char *phys_name;
1266 f = TYPE_FN_FIELDLIST1 (t, method_counter);
1267 if (TYPE_FN_FIELD_STUB (f, field_counter))
1269 phys_name = TYPE_FN_FIELD_PHYSNAME (f, field_counter);
1270 VEC_safe_push (const_char_ptr, *result_names, phys_name);
1276 for (ibase = 0; ibase < TYPE_N_BASECLASSES (t); ibase++)
1277 VEC_safe_push (typep, *superclasses, TYPE_BASECLASS (t, ibase));
1280 /* Find an instance of the character C in the string S that is outside
1281 of all parenthesis pairs, single-quoted strings, and double-quoted
1282 strings. Also, ignore the char within a template name, like a ','
1283 within foo<int, int>, while considering C++ operator</operator<<. */
1286 find_toplevel_char (const char *s, char c)
1288 int quoted = 0; /* zero if we're not in quotes;
1289 '"' if we're in a double-quoted string;
1290 '\'' if we're in a single-quoted string. */
1291 int depth = 0; /* Number of unclosed parens we've seen. */
1294 for (scan = s; *scan; scan++)
1298 if (*scan == quoted)
1300 else if (*scan == '\\' && *(scan + 1))
1303 else if (*scan == c && ! quoted && depth == 0)
1305 else if (*scan == '"' || *scan == '\'')
1307 else if (*scan == '(' || *scan == '<')
1309 else if ((*scan == ')' || *scan == '>') && depth > 0)
1311 else if (*scan == 'o' && !quoted && depth == 0)
1313 /* Handle C++ operator names. */
1314 if (strncmp (scan, CP_OPERATOR_STR, CP_OPERATOR_LEN) == 0)
1316 scan += CP_OPERATOR_LEN;
1319 while (isspace (*scan))
1330 /* Skip over one less than the appropriate number of
1331 characters: the for loop will skip over the last
1357 /* The string equivalent of find_toplevel_char. Returns a pointer
1358 to the location of NEEDLE in HAYSTACK, ignoring any occurrences
1359 inside "()" and "<>". Returns NULL if NEEDLE was not found. */
1362 find_toplevel_string (const char *haystack, const char *needle)
1364 const char *s = haystack;
1368 s = find_toplevel_char (s, *needle);
1372 /* Found first char in HAYSTACK; check rest of string. */
1373 if (startswith (s, needle))
1376 /* Didn't find it; loop over HAYSTACK, looking for the next
1377 instance of the first character of NEEDLE. */
1381 while (s != NULL && *s != '\0');
1383 /* NEEDLE was not found in HAYSTACK. */
1387 /* Convert CANONICAL to its string representation using
1388 symtab_to_fullname for SYMTAB. The caller must xfree the result. */
1391 canonical_to_fullform (const struct linespec_canonical_name *canonical)
1393 if (canonical->symtab == NULL)
1394 return xstrdup (canonical->suffix);
1396 return xstrprintf ("%s:%s", symtab_to_fullname (canonical->symtab),
1400 /* Given FILTERS, a list of canonical names, filter the sals in RESULT
1401 and store the result in SELF->CANONICAL. */
1404 filter_results (struct linespec_state *self,
1405 std::vector<symtab_and_line> *result,
1406 VEC (const_char_ptr) *filters)
1411 for (i = 0; VEC_iterate (const_char_ptr, filters, i, name); ++i)
1415 for (size_t j = 0; j < result->size (); ++j)
1417 const struct linespec_canonical_name *canonical;
1419 struct cleanup *cleanup;
1421 canonical = &self->canonical_names[j];
1422 fullform = canonical_to_fullform (canonical);
1423 cleanup = make_cleanup (xfree, fullform);
1425 if (strcmp (name, fullform) == 0)
1426 lsal.sals.push_back ((*result)[j]);
1428 do_cleanups (cleanup);
1431 if (!lsal.sals.empty ())
1433 lsal.canonical = xstrdup (name);
1434 self->canonical->lsals.push_back (std::move (lsal));
1438 self->canonical->pre_expanded = 0;
1441 /* Store RESULT into SELF->CANONICAL. */
1444 convert_results_to_lsals (struct linespec_state *self,
1445 std::vector<symtab_and_line> *result)
1447 struct linespec_sals lsal;
1449 lsal.canonical = NULL;
1450 lsal.sals = std::move (*result);
1451 self->canonical->lsals.push_back (std::move (lsal));
1454 /* A structure that contains two string representations of a struct
1455 linespec_canonical_name:
1456 - one where the the symtab's fullname is used;
1457 - one where the filename followed the "set filename-display"
1460 struct decode_line_2_item
1462 /* The form using symtab_to_fullname.
1463 It must be xfree'ed after use. */
1466 /* The form using symtab_to_filename_for_display.
1467 It must be xfree'ed after use. */
1470 /* Field is initialized to zero and it is set to one if the user
1471 requested breakpoint for this entry. */
1472 unsigned int selected : 1;
1475 /* Helper for qsort to sort decode_line_2_item entries by DISPLAYFORM and
1476 secondarily by FULLFORM. */
1479 decode_line_2_compare_items (const void *ap, const void *bp)
1481 const struct decode_line_2_item *a = (const struct decode_line_2_item *) ap;
1482 const struct decode_line_2_item *b = (const struct decode_line_2_item *) bp;
1485 retval = strcmp (a->displayform, b->displayform);
1489 return strcmp (a->fullform, b->fullform);
1492 /* Handle multiple results in RESULT depending on SELECT_MODE. This
1493 will either return normally, throw an exception on multiple
1494 results, or present a menu to the user. On return, the SALS vector
1495 in SELF->CANONICAL is set up properly. */
1498 decode_line_2 (struct linespec_state *self,
1499 std::vector<symtab_and_line> *result,
1500 const char *select_mode)
1505 struct cleanup *old_chain;
1506 VEC (const_char_ptr) *filters = NULL;
1507 struct decode_line_2_item *items;
1510 gdb_assert (select_mode != multiple_symbols_all);
1511 gdb_assert (self->canonical != NULL);
1512 gdb_assert (!result->empty ());
1514 old_chain = make_cleanup (VEC_cleanup (const_char_ptr), &filters);
1516 /* Prepare ITEMS array. */
1517 items_count = result->size ();
1518 items = XNEWVEC (struct decode_line_2_item, items_count);
1519 make_cleanup (xfree, items);
1520 for (i = 0; i < items_count; ++i)
1522 const struct linespec_canonical_name *canonical;
1523 struct decode_line_2_item *item;
1525 canonical = &self->canonical_names[i];
1526 gdb_assert (canonical->suffix != NULL);
1529 item->fullform = canonical_to_fullform (canonical);
1530 make_cleanup (xfree, item->fullform);
1532 if (canonical->symtab == NULL)
1533 item->displayform = canonical->suffix;
1536 const char *fn_for_display;
1538 fn_for_display = symtab_to_filename_for_display (canonical->symtab);
1539 item->displayform = xstrprintf ("%s:%s", fn_for_display,
1541 make_cleanup (xfree, item->displayform);
1547 /* Sort the list of method names. */
1548 qsort (items, items_count, sizeof (*items), decode_line_2_compare_items);
1550 /* Remove entries with the same FULLFORM. */
1551 if (items_count >= 2)
1553 struct decode_line_2_item *dst, *src;
1556 for (src = &items[1]; src < &items[items_count]; src++)
1557 if (strcmp (src->fullform, dst->fullform) != 0)
1559 items_count = dst + 1 - items;
1562 if (select_mode == multiple_symbols_cancel && items_count > 1)
1563 error (_("canceled because the command is ambiguous\n"
1564 "See set/show multiple-symbol."));
1566 if (select_mode == multiple_symbols_all || items_count == 1)
1568 do_cleanups (old_chain);
1569 convert_results_to_lsals (self, result);
1573 printf_unfiltered (_("[0] cancel\n[1] all\n"));
1574 for (i = 0; i < items_count; i++)
1575 printf_unfiltered ("[%d] %s\n", i + 2, items[i].displayform);
1577 prompt = getenv ("PS2");
1582 args = command_line_input (prompt, 0, "overload-choice");
1584 if (args == 0 || *args == 0)
1585 error_no_arg (_("one or more choice numbers"));
1587 number_or_range_parser parser (args);
1588 while (!parser.finished ())
1590 int num = parser.get_number ();
1593 error (_("canceled"));
1596 /* We intentionally make this result in a single breakpoint,
1597 contrary to what older versions of gdb did. The
1598 rationale is that this lets a user get the
1599 multiple_symbols_all behavior even with the 'ask'
1600 setting; and he can get separate breakpoints by entering
1601 "2-57" at the query. */
1602 do_cleanups (old_chain);
1603 convert_results_to_lsals (self, result);
1608 if (num >= items_count)
1609 printf_unfiltered (_("No choice number %d.\n"), num);
1612 struct decode_line_2_item *item = &items[num];
1614 if (!item->selected)
1616 VEC_safe_push (const_char_ptr, filters, item->fullform);
1621 printf_unfiltered (_("duplicate request for %d ignored.\n"),
1627 filter_results (self, result, filters);
1628 do_cleanups (old_chain);
1633 /* The parser of linespec itself. */
1635 /* Throw an appropriate error when SYMBOL is not found (optionally in
1638 static void ATTRIBUTE_NORETURN
1639 symbol_not_found_error (const char *symbol, const char *filename)
1644 if (!have_full_symbols ()
1645 && !have_partial_symbols ()
1646 && !have_minimal_symbols ())
1647 throw_error (NOT_FOUND_ERROR,
1648 _("No symbol table is loaded. Use the \"file\" command."));
1650 /* If SYMBOL starts with '$', the user attempted to either lookup
1651 a function/variable in his code starting with '$' or an internal
1652 variable of that name. Since we do not know which, be concise and
1653 explain both possibilities. */
1657 throw_error (NOT_FOUND_ERROR,
1658 _("Undefined convenience variable or function \"%s\" "
1659 "not defined in \"%s\"."), symbol, filename);
1661 throw_error (NOT_FOUND_ERROR,
1662 _("Undefined convenience variable or function \"%s\" "
1663 "not defined."), symbol);
1668 throw_error (NOT_FOUND_ERROR,
1669 _("Function \"%s\" not defined in \"%s\"."),
1672 throw_error (NOT_FOUND_ERROR,
1673 _("Function \"%s\" not defined."), symbol);
1677 /* Throw an appropriate error when an unexpected token is encountered
1680 static void ATTRIBUTE_NORETURN
1681 unexpected_linespec_error (linespec_parser *parser)
1683 linespec_token token;
1684 static const char * token_type_strings[]
1685 = {"keyword", "colon", "string", "number", "comma", "end of input"};
1687 /* Get the token that generated the error. */
1688 token = linespec_lexer_lex_one (parser);
1690 /* Finally, throw the error. */
1691 if (token.type == LSTOKEN_STRING || token.type == LSTOKEN_NUMBER
1692 || token.type == LSTOKEN_KEYWORD)
1696 string = copy_token_string (token);
1697 make_cleanup (xfree, string);
1698 throw_error (GENERIC_ERROR,
1699 _("malformed linespec error: unexpected %s, \"%s\""),
1700 token_type_strings[token.type], string);
1703 throw_error (GENERIC_ERROR,
1704 _("malformed linespec error: unexpected %s"),
1705 token_type_strings[token.type]);
1708 /* Throw an undefined label error. */
1710 static void ATTRIBUTE_NORETURN
1711 undefined_label_error (const char *function, const char *label)
1713 if (function != NULL)
1714 throw_error (NOT_FOUND_ERROR,
1715 _("No label \"%s\" defined in function \"%s\"."),
1718 throw_error (NOT_FOUND_ERROR,
1719 _("No label \"%s\" defined in current function."),
1723 /* Throw a source file not found error. */
1725 static void ATTRIBUTE_NORETURN
1726 source_file_not_found_error (const char *name)
1728 throw_error (NOT_FOUND_ERROR, _("No source file named %s."), name);
1731 /* Unless at EIO, save the current stream position as completion word
1732 point, and consume the next token. */
1734 static linespec_token
1735 save_stream_and_consume_token (linespec_parser *parser)
1737 if (linespec_lexer_peek_token (parser).type != LSTOKEN_EOI)
1738 parser->completion_word = PARSER_STREAM (parser);
1739 return linespec_lexer_consume_token (parser);
1742 /* See description in linespec.h. */
1745 linespec_parse_line_offset (const char *string)
1747 const char *start = string;
1748 struct line_offset line_offset = {0, LINE_OFFSET_NONE};
1752 line_offset.sign = LINE_OFFSET_PLUS;
1755 else if (*string == '-')
1757 line_offset.sign = LINE_OFFSET_MINUS;
1761 if (*string != '\0' && !isdigit (*string))
1762 error (_("malformed line offset: \"%s\""), start);
1764 /* Right now, we only allow base 10 for offsets. */
1765 line_offset.offset = atoi (string);
1769 /* In completion mode, if the user is still typing the number, there's
1770 no possible completion to offer. But if there's already input past
1771 the number, setup to expect NEXT. */
1774 set_completion_after_number (linespec_parser *parser,
1775 linespec_complete_what next)
1777 if (*PARSER_STREAM (parser) == ' ')
1779 parser->completion_word = skip_spaces (PARSER_STREAM (parser) + 1);
1780 parser->complete_what = next;
1784 parser->completion_word = PARSER_STREAM (parser);
1785 parser->complete_what = linespec_complete_what::NOTHING;
1789 /* Parse the basic_spec in PARSER's input. */
1792 linespec_parse_basic (linespec_parser *parser)
1795 linespec_token token;
1796 VEC (symbolp) *symbols, *labels;
1797 VEC (bound_minimal_symbol_d) *minimal_symbols;
1798 struct cleanup *cleanup;
1800 /* Get the next token. */
1801 token = linespec_lexer_lex_one (parser);
1803 /* If it is EOI or KEYWORD, issue an error. */
1804 if (token.type == LSTOKEN_KEYWORD)
1806 parser->complete_what = linespec_complete_what::NOTHING;
1807 unexpected_linespec_error (parser);
1809 else if (token.type == LSTOKEN_EOI)
1811 unexpected_linespec_error (parser);
1813 /* If it is a LSTOKEN_NUMBER, we have an offset. */
1814 else if (token.type == LSTOKEN_NUMBER)
1816 set_completion_after_number (parser, linespec_complete_what::KEYWORD);
1818 /* Record the line offset and get the next token. */
1819 name = copy_token_string (token);
1820 cleanup = make_cleanup (xfree, name);
1821 PARSER_EXPLICIT (parser)->line_offset = linespec_parse_line_offset (name);
1822 do_cleanups (cleanup);
1824 /* Get the next token. */
1825 token = linespec_lexer_consume_token (parser);
1827 /* If the next token is a comma, stop parsing and return. */
1828 if (token.type == LSTOKEN_COMMA)
1830 parser->complete_what = linespec_complete_what::NOTHING;
1834 /* If the next token is anything but EOI or KEYWORD, issue
1836 if (token.type != LSTOKEN_KEYWORD && token.type != LSTOKEN_EOI)
1837 unexpected_linespec_error (parser);
1840 if (token.type == LSTOKEN_KEYWORD || token.type == LSTOKEN_EOI)
1843 /* Next token must be LSTOKEN_STRING. */
1844 if (token.type != LSTOKEN_STRING)
1846 parser->complete_what = linespec_complete_what::NOTHING;
1847 unexpected_linespec_error (parser);
1850 /* The current token will contain the name of a function, method,
1852 name = copy_token_string (token);
1853 cleanup = make_cleanup (free_current_contents, &name);
1855 if (parser->completion_tracker != NULL)
1857 /* If the function name ends with a ":", then this may be an
1858 incomplete "::" scope operator instead of a label separator.
1861 which should expand to:
1864 Do a tentative completion assuming the later. If we find
1865 completions, advance the stream past the colon token and make
1866 it part of the function name/token. */
1868 if (!parser->completion_quote_char
1869 && strcmp (PARSER_STREAM (parser), ":") == 0)
1871 completion_tracker tmp_tracker;
1872 const char *source_filename
1873 = PARSER_EXPLICIT (parser)->source_filename;
1874 symbol_name_match_type match_type
1875 = PARSER_EXPLICIT (parser)->func_name_match_type;
1877 linespec_complete_function (tmp_tracker,
1878 parser->completion_word,
1882 if (tmp_tracker.have_completions ())
1884 PARSER_STREAM (parser)++;
1885 LS_TOKEN_STOKEN (token).length++;
1888 name = savestring (parser->completion_word,
1889 (PARSER_STREAM (parser)
1890 - parser->completion_word));
1894 PARSER_EXPLICIT (parser)->function_name = name;
1895 discard_cleanups (cleanup);
1899 /* XXX Reindent before pushing. */
1901 /* Try looking it up as a function/method. */
1902 find_linespec_symbols (PARSER_STATE (parser),
1903 PARSER_RESULT (parser)->file_symtabs, name,
1904 PARSER_EXPLICIT (parser)->func_name_match_type,
1905 &symbols, &minimal_symbols);
1907 if (symbols != NULL || minimal_symbols != NULL)
1909 PARSER_RESULT (parser)->function_symbols = symbols;
1910 PARSER_RESULT (parser)->minimal_symbols = minimal_symbols;
1911 PARSER_EXPLICIT (parser)->function_name = name;
1913 discard_cleanups (cleanup);
1917 /* NAME was not a function or a method. So it must be a label
1918 name or user specified variable like "break foo.c:$zippo". */
1919 labels = find_label_symbols (PARSER_STATE (parser), NULL,
1923 PARSER_RESULT (parser)->labels.label_symbols = labels;
1924 PARSER_RESULT (parser)->labels.function_symbols = symbols;
1925 PARSER_EXPLICIT (parser)->label_name = name;
1927 discard_cleanups (cleanup);
1929 else if (token.type == LSTOKEN_STRING
1930 && *LS_TOKEN_STOKEN (token).ptr == '$')
1932 /* User specified a convenience variable or history value. */
1933 PARSER_EXPLICIT (parser)->line_offset
1934 = linespec_parse_variable (PARSER_STATE (parser), name);
1936 if (PARSER_EXPLICIT (parser)->line_offset.sign == LINE_OFFSET_UNKNOWN)
1938 /* The user-specified variable was not valid. Do not
1939 throw an error here. parse_linespec will do it for us. */
1940 PARSER_EXPLICIT (parser)->function_name = name;
1941 discard_cleanups (cleanup);
1945 /* The convenience variable/history value parsed correctly.
1946 NAME is no longer needed. */
1947 do_cleanups (cleanup);
1951 /* The name is also not a label. Abort parsing. Do not throw
1952 an error here. parse_linespec will do it for us. */
1954 /* Save a copy of the name we were trying to lookup. */
1955 PARSER_EXPLICIT (parser)->function_name = name;
1956 discard_cleanups (cleanup);
1962 int previous_qc = parser->completion_quote_char;
1964 /* Get the next token. */
1965 token = linespec_lexer_consume_token (parser);
1967 if (token.type == LSTOKEN_EOI)
1969 if (previous_qc && !parser->completion_quote_char)
1970 parser->complete_what = linespec_complete_what::KEYWORD;
1972 else if (token.type == LSTOKEN_COLON)
1974 /* User specified a label or a lineno. */
1975 token = linespec_lexer_consume_token (parser);
1977 if (token.type == LSTOKEN_NUMBER)
1979 /* User specified an offset. Record the line offset and
1980 get the next token. */
1981 set_completion_after_number (parser, linespec_complete_what::KEYWORD);
1983 name = copy_token_string (token);
1984 cleanup = make_cleanup (xfree, name);
1985 PARSER_EXPLICIT (parser)->line_offset
1986 = linespec_parse_line_offset (name);
1987 do_cleanups (cleanup);
1989 /* Get the next token. */
1990 token = linespec_lexer_consume_token (parser);
1992 else if (token.type == LSTOKEN_EOI && parser->completion_tracker != NULL)
1994 parser->complete_what = linespec_complete_what::LABEL;
1996 else if (token.type == LSTOKEN_STRING)
1998 parser->complete_what = linespec_complete_what::LABEL;
2000 /* If we have text after the label separated by whitespace
2001 (e.g., "b func():lab i<tab>"), don't consider it part of
2002 the label. In completion mode that should complete to
2003 "if", in normal mode, the 'i' should be treated as
2005 if (parser->completion_quote_char == '\0')
2007 const char *ptr = LS_TOKEN_STOKEN (token).ptr;
2008 for (size_t i = 0; i < LS_TOKEN_STOKEN (token).length; i++)
2012 LS_TOKEN_STOKEN (token).length = i;
2013 PARSER_STREAM (parser) = skip_spaces (ptr + i + 1);
2019 if (parser->completion_tracker != NULL)
2021 if (PARSER_STREAM (parser)[-1] == ' ')
2023 parser->completion_word = PARSER_STREAM (parser);
2024 parser->complete_what = linespec_complete_what::KEYWORD;
2029 /* XXX Reindent before pushing. */
2031 /* Grab a copy of the label's name and look it up. */
2032 name = copy_token_string (token);
2033 cleanup = make_cleanup (xfree, name);
2034 labels = find_label_symbols (PARSER_STATE (parser),
2035 PARSER_RESULT (parser)->function_symbols,
2040 PARSER_RESULT (parser)->labels.label_symbols = labels;
2041 PARSER_RESULT (parser)->labels.function_symbols = symbols;
2042 PARSER_EXPLICIT (parser)->label_name = name;
2044 discard_cleanups (cleanup);
2048 /* We don't know what it was, but it isn't a label. */
2049 undefined_label_error (PARSER_EXPLICIT (parser)->function_name,
2055 /* Check for a line offset. */
2056 token = save_stream_and_consume_token (parser);
2057 if (token.type == LSTOKEN_COLON)
2059 /* Get the next token. */
2060 token = linespec_lexer_consume_token (parser);
2062 /* It must be a line offset. */
2063 if (token.type != LSTOKEN_NUMBER)
2064 unexpected_linespec_error (parser);
2066 /* Record the line offset and get the next token. */
2067 name = copy_token_string (token);
2068 cleanup = make_cleanup (xfree, name);
2070 PARSER_EXPLICIT (parser)->line_offset
2071 = linespec_parse_line_offset (name);
2072 do_cleanups (cleanup);
2074 /* Get the next token. */
2075 token = linespec_lexer_consume_token (parser);
2080 /* Trailing ':' in the input. Issue an error. */
2081 unexpected_linespec_error (parser);
2086 /* Canonicalize the linespec contained in LS. The result is saved into
2087 STATE->canonical. This function handles both linespec and explicit
2091 canonicalize_linespec (struct linespec_state *state, const linespec_p ls)
2093 struct event_location *canon;
2094 struct explicit_location *explicit_loc;
2096 /* If canonicalization was not requested, no need to do anything. */
2097 if (!state->canonical)
2100 /* Save everything as an explicit location. */
2101 state->canonical->location
2102 = new_explicit_location (&ls->explicit_loc);
2103 canon = state->canonical->location.get ();
2104 explicit_loc = get_explicit_location (canon);
2106 if (explicit_loc->label_name != NULL)
2108 state->canonical->special_display = 1;
2110 if (explicit_loc->function_name == NULL)
2114 /* No function was specified, so add the symbol name. */
2115 gdb_assert (ls->labels.function_symbols != NULL
2116 && (VEC_length (symbolp, ls->labels.function_symbols)
2118 s = VEC_index (symbolp, ls->labels.function_symbols, 0);
2119 explicit_loc->function_name = xstrdup (SYMBOL_NATURAL_NAME (s));
2123 /* If this location originally came from a linespec, save a string
2124 representation of it for display and saving to file. */
2125 if (state->is_linespec)
2127 char *linespec = explicit_location_to_linespec (explicit_loc);
2129 set_event_location_string (canon, linespec);
2134 /* Given a line offset in LS, construct the relevant SALs. */
2136 static std::vector<symtab_and_line>
2137 create_sals_line_offset (struct linespec_state *self,
2140 int use_default = 0;
2142 /* This is where we need to make sure we have good defaults.
2143 We must guarantee that this section of code is never executed
2144 when we are called with just a function name, since
2145 set_default_source_symtab_and_line uses
2146 select_source_symtab that calls us with such an argument. */
2148 if (VEC_length (symtab_ptr, ls->file_symtabs) == 1
2149 && VEC_index (symtab_ptr, ls->file_symtabs, 0) == NULL)
2151 const char *fullname;
2153 set_current_program_space (self->program_space);
2155 /* Make sure we have at least a default source line. */
2156 set_default_source_symtab_and_line ();
2157 initialize_defaults (&self->default_symtab, &self->default_line);
2158 fullname = symtab_to_fullname (self->default_symtab);
2159 VEC_pop (symtab_ptr, ls->file_symtabs);
2160 VEC_free (symtab_ptr, ls->file_symtabs);
2161 ls->file_symtabs = collect_symtabs_from_filename (fullname,
2162 self->search_pspace);
2166 symtab_and_line val;
2167 val.line = ls->explicit_loc.line_offset.offset;
2168 switch (ls->explicit_loc.line_offset.sign)
2170 case LINE_OFFSET_PLUS:
2171 if (ls->explicit_loc.line_offset.offset == 0)
2174 val.line = self->default_line + val.line;
2177 case LINE_OFFSET_MINUS:
2178 if (ls->explicit_loc.line_offset.offset == 0)
2181 val.line = self->default_line - val.line;
2183 val.line = -val.line;
2186 case LINE_OFFSET_NONE:
2187 break; /* No need to adjust val.line. */
2190 std::vector<symtab_and_line> values;
2191 if (self->list_mode)
2192 values = decode_digits_list_mode (self, ls, val);
2195 struct linetable_entry *best_entry = NULL;
2198 std::vector<symtab_and_line> intermediate_results
2199 = decode_digits_ordinary (self, ls, val.line, &best_entry);
2200 if (intermediate_results.empty () && best_entry != NULL)
2201 intermediate_results = decode_digits_ordinary (self, ls,
2205 /* For optimized code, the compiler can scatter one source line
2206 across disjoint ranges of PC values, even when no duplicate
2207 functions or inline functions are involved. For example,
2208 'for (;;)' inside a non-template, non-inline, and non-ctor-or-dtor
2209 function can result in two PC ranges. In this case, we don't
2210 want to set a breakpoint on the first PC of each range. To filter
2211 such cases, we use containing blocks -- for each PC found
2212 above, we see if there are other PCs that are in the same
2213 block. If yes, the other PCs are filtered out. */
2215 gdb::def_vector<int> filter (intermediate_results.size ());
2216 gdb::def_vector<const block *> blocks (intermediate_results.size ());
2218 for (i = 0; i < intermediate_results.size (); ++i)
2220 set_current_program_space (intermediate_results[i].pspace);
2223 blocks[i] = block_for_pc_sect (intermediate_results[i].pc,
2224 intermediate_results[i].section);
2227 for (i = 0; i < intermediate_results.size (); ++i)
2229 if (blocks[i] != NULL)
2230 for (j = i + 1; j < intermediate_results.size (); ++j)
2232 if (blocks[j] == blocks[i])
2240 for (i = 0; i < intermediate_results.size (); ++i)
2243 struct symbol *sym = (blocks[i]
2244 ? block_containing_function (blocks[i])
2247 if (self->funfirstline)
2248 skip_prologue_sal (&intermediate_results[i]);
2249 /* Make sure the line matches the request, not what was
2251 intermediate_results[i].line = val.line;
2252 add_sal_to_sals (self, &values, &intermediate_results[i],
2253 sym ? SYMBOL_NATURAL_NAME (sym) : NULL, 0);
2257 if (values.empty ())
2259 if (ls->explicit_loc.source_filename)
2260 throw_error (NOT_FOUND_ERROR, _("No line %d in file \"%s\"."),
2261 val.line, ls->explicit_loc.source_filename);
2263 throw_error (NOT_FOUND_ERROR, _("No line %d in the current file."),
2270 /* Convert the given ADDRESS into SaLs. */
2272 static std::vector<symtab_and_line>
2273 convert_address_location_to_sals (struct linespec_state *self,
2276 symtab_and_line sal = find_pc_line (address, 0);
2278 sal.section = find_pc_overlay (address);
2279 sal.explicit_pc = 1;
2281 std::vector<symtab_and_line> sals;
2282 add_sal_to_sals (self, &sals, &sal, core_addr_to_string (address), 1);
2287 /* Create and return SALs from the linespec LS. */
2289 static std::vector<symtab_and_line>
2290 convert_linespec_to_sals (struct linespec_state *state, linespec_p ls)
2292 std::vector<symtab_and_line> sals;
2294 if (ls->labels.label_symbols != NULL)
2296 /* We have just a bunch of functions/methods or labels. */
2298 struct symtab_and_line sal;
2301 for (i = 0; VEC_iterate (symbolp, ls->labels.label_symbols, i, sym); ++i)
2303 struct program_space *pspace = SYMTAB_PSPACE (symbol_symtab (sym));
2305 if (symbol_to_sal (&sal, state->funfirstline, sym)
2306 && maybe_add_address (state->addr_set, pspace, sal.pc))
2307 add_sal_to_sals (state, &sals, &sal,
2308 SYMBOL_NATURAL_NAME (sym), 0);
2311 else if (ls->function_symbols != NULL || ls->minimal_symbols != NULL)
2313 /* We have just a bunch of functions and/or methods. */
2315 struct symtab_and_line sal;
2317 bound_minimal_symbol_d *elem;
2318 struct program_space *pspace;
2320 if (ls->function_symbols != NULL)
2322 /* Sort symbols so that symbols with the same program space are next
2324 qsort (VEC_address (symbolp, ls->function_symbols),
2325 VEC_length (symbolp, ls->function_symbols),
2326 sizeof (symbolp), compare_symbols);
2328 for (i = 0; VEC_iterate (symbolp, ls->function_symbols, i, sym); ++i)
2330 pspace = SYMTAB_PSPACE (symbol_symtab (sym));
2331 set_current_program_space (pspace);
2332 if (symbol_to_sal (&sal, state->funfirstline, sym)
2333 && maybe_add_address (state->addr_set, pspace, sal.pc))
2334 add_sal_to_sals (state, &sals, &sal,
2335 SYMBOL_NATURAL_NAME (sym), 0);
2339 if (ls->minimal_symbols != NULL)
2341 /* Sort minimal symbols by program space, too. */
2342 qsort (VEC_address (bound_minimal_symbol_d, ls->minimal_symbols),
2343 VEC_length (bound_minimal_symbol_d, ls->minimal_symbols),
2344 sizeof (bound_minimal_symbol_d), compare_msymbols);
2347 VEC_iterate (bound_minimal_symbol_d, ls->minimal_symbols,
2351 pspace = elem->objfile->pspace;
2352 set_current_program_space (pspace);
2353 minsym_found (state, elem->objfile, elem->minsym, &sals);
2357 else if (ls->explicit_loc.line_offset.sign != LINE_OFFSET_UNKNOWN)
2359 /* Only an offset was specified. */
2360 sals = create_sals_line_offset (state, ls);
2362 /* Make sure we have a filename for canonicalization. */
2363 if (ls->explicit_loc.source_filename == NULL)
2365 const char *fullname = symtab_to_fullname (state->default_symtab);
2367 /* It may be more appropriate to keep DEFAULT_SYMTAB in its symtab
2368 form so that displaying SOURCE_FILENAME can follow the current
2369 FILENAME_DISPLAY_STRING setting. But as it is used only rarely
2370 it has been kept for code simplicity only in absolute form. */
2371 ls->explicit_loc.source_filename = xstrdup (fullname);
2376 /* We haven't found any results... */
2380 canonicalize_linespec (state, ls);
2382 if (!sals.empty () && state->canonical != NULL)
2383 state->canonical->pre_expanded = 1;
2388 /* Build RESULT from the explicit location components SOURCE_FILENAME,
2389 FUNCTION_NAME, LABEL_NAME and LINE_OFFSET. */
2392 convert_explicit_location_to_linespec (struct linespec_state *self,
2394 const char *source_filename,
2395 const char *function_name,
2396 symbol_name_match_type fname_match_type,
2397 const char *label_name,
2398 struct line_offset line_offset)
2400 VEC (symbolp) *symbols, *labels;
2401 VEC (bound_minimal_symbol_d) *minimal_symbols;
2403 result->explicit_loc.func_name_match_type = fname_match_type;
2405 if (source_filename != NULL)
2409 result->file_symtabs
2410 = symtabs_from_filename (source_filename, self->search_pspace);
2412 CATCH (except, RETURN_MASK_ERROR)
2414 source_file_not_found_error (source_filename);
2417 result->explicit_loc.source_filename = xstrdup (source_filename);
2421 /* A NULL entry means to use the default symtab. */
2422 VEC_safe_push (symtab_ptr, result->file_symtabs, NULL);
2425 if (function_name != NULL)
2427 find_linespec_symbols (self, result->file_symtabs,
2428 function_name, fname_match_type,
2429 &symbols, &minimal_symbols);
2431 if (symbols == NULL && minimal_symbols == NULL)
2432 symbol_not_found_error (function_name,
2433 result->explicit_loc.source_filename);
2435 result->explicit_loc.function_name = xstrdup (function_name);
2436 result->function_symbols = symbols;
2437 result->minimal_symbols = minimal_symbols;
2440 if (label_name != NULL)
2443 labels = find_label_symbols (self, result->function_symbols,
2444 &symbols, label_name);
2447 undefined_label_error (result->explicit_loc.function_name,
2450 result->explicit_loc.label_name = xstrdup (label_name);
2451 result->labels.label_symbols = labels;
2452 result->labels.function_symbols = symbols;
2455 if (line_offset.sign != LINE_OFFSET_UNKNOWN)
2456 result->explicit_loc.line_offset = line_offset;
2459 /* Convert the explicit location EXPLICIT_LOC into SaLs. */
2461 static std::vector<symtab_and_line>
2462 convert_explicit_location_to_sals (struct linespec_state *self,
2464 const struct explicit_location *explicit_loc)
2466 convert_explicit_location_to_linespec (self, result,
2467 explicit_loc->source_filename,
2468 explicit_loc->function_name,
2469 explicit_loc->func_name_match_type,
2470 explicit_loc->label_name,
2471 explicit_loc->line_offset);
2472 return convert_linespec_to_sals (self, result);
2475 /* Parse a string that specifies a linespec.
2477 The basic grammar of linespecs:
2479 linespec -> var_spec | basic_spec
2480 var_spec -> '$' (STRING | NUMBER)
2482 basic_spec -> file_offset_spec | function_spec | label_spec
2483 file_offset_spec -> opt_file_spec offset_spec
2484 function_spec -> opt_file_spec function_name_spec opt_label_spec
2485 label_spec -> label_name_spec
2487 opt_file_spec -> "" | file_name_spec ':'
2488 opt_label_spec -> "" | ':' label_name_spec
2490 file_name_spec -> STRING
2491 function_name_spec -> STRING
2492 label_name_spec -> STRING
2493 function_name_spec -> STRING
2494 offset_spec -> NUMBER
2498 This may all be followed by several keywords such as "if EXPR",
2501 A comma will terminate parsing.
2503 The function may be an undebuggable function found in minimal symbol table.
2505 If the argument FUNFIRSTLINE is nonzero, we want the first line
2506 of real code inside a function when a function is specified, and it is
2507 not OK to specify a variable or type to get its line number.
2509 DEFAULT_SYMTAB specifies the file to use if none is specified.
2510 It defaults to current_source_symtab.
2511 DEFAULT_LINE specifies the line number to use for relative
2512 line numbers (that start with signs). Defaults to current_source_line.
2513 If CANONICAL is non-NULL, store an array of strings containing the canonical
2514 line specs there if necessary. Currently overloaded member functions and
2515 line numbers or static functions without a filename yield a canonical
2516 line spec. The array and the line spec strings are allocated on the heap,
2517 it is the callers responsibility to free them.
2519 Note that it is possible to return zero for the symtab
2520 if no file is validly specified. Callers must check that.
2521 Also, the line number returned may be invalid. */
2523 /* Parse the linespec in ARG. MATCH_TYPE indicates how function names
2524 should be matched. */
2526 static std::vector<symtab_and_line>
2527 parse_linespec (linespec_parser *parser, const char *arg,
2528 symbol_name_match_type match_type)
2530 linespec_token token;
2531 struct gdb_exception file_exception = exception_none;
2532 struct cleanup *cleanup;
2534 /* A special case to start. It has become quite popular for
2535 IDEs to work around bugs in the previous parser by quoting
2536 the entire linespec, so we attempt to deal with this nicely. */
2537 parser->is_quote_enclosed = 0;
2538 if (parser->completion_tracker == NULL
2539 && !is_ada_operator (arg)
2540 && strchr (linespec_quote_characters, *arg) != NULL)
2544 end = skip_quote_char (arg + 1, *arg);
2545 if (end != NULL && is_closing_quote_enclosed (end))
2547 /* Here's the special case. Skip ARG past the initial
2550 parser->is_quote_enclosed = 1;
2554 parser->lexer.saved_arg = arg;
2555 parser->lexer.stream = arg;
2556 parser->completion_word = arg;
2557 parser->complete_what = linespec_complete_what::FUNCTION;
2558 PARSER_EXPLICIT (parser)->func_name_match_type = match_type;
2560 /* Initialize the default symtab and line offset. */
2561 initialize_defaults (&PARSER_STATE (parser)->default_symtab,
2562 &PARSER_STATE (parser)->default_line);
2564 /* Objective-C shortcut. */
2565 if (parser->completion_tracker == NULL)
2567 std::vector<symtab_and_line> values
2568 = decode_objc (PARSER_STATE (parser), PARSER_RESULT (parser), arg);
2569 if (!values.empty ())
2574 /* "-"/"+" is either an objc selector, or a number. There's
2575 nothing to complete the latter to, so just let the caller
2576 complete on functions, which finds objc selectors, if there's
2578 if ((arg[0] == '-' || arg[0] == '+') && arg[1] == '\0')
2582 /* Start parsing. */
2584 /* Get the first token. */
2585 token = linespec_lexer_consume_token (parser);
2587 /* It must be either LSTOKEN_STRING or LSTOKEN_NUMBER. */
2588 if (token.type == LSTOKEN_STRING && *LS_TOKEN_STOKEN (token).ptr == '$')
2592 /* A NULL entry means to use GLOBAL_DEFAULT_SYMTAB. */
2593 if (parser->completion_tracker == NULL)
2594 VEC_safe_push (symtab_ptr, PARSER_RESULT (parser)->file_symtabs, NULL);
2596 /* User specified a convenience variable or history value. */
2597 var = copy_token_string (token);
2598 cleanup = make_cleanup (xfree, var);
2599 PARSER_EXPLICIT (parser)->line_offset
2600 = linespec_parse_variable (PARSER_STATE (parser), var);
2601 do_cleanups (cleanup);
2603 /* If a line_offset wasn't found (VAR is the name of a user
2604 variable/function), then skip to normal symbol processing. */
2605 if (PARSER_EXPLICIT (parser)->line_offset.sign != LINE_OFFSET_UNKNOWN)
2607 /* Consume this token. */
2608 linespec_lexer_consume_token (parser);
2610 goto convert_to_sals;
2613 else if (token.type == LSTOKEN_EOI && parser->completion_tracker != NULL)
2615 /* Let the default linespec_complete_what::FUNCTION kick in. */
2616 unexpected_linespec_error (parser);
2618 else if (token.type != LSTOKEN_STRING && token.type != LSTOKEN_NUMBER)
2620 parser->complete_what = linespec_complete_what::NOTHING;
2621 unexpected_linespec_error (parser);
2624 /* Shortcut: If the next token is not LSTOKEN_COLON, we know that
2625 this token cannot represent a filename. */
2626 token = linespec_lexer_peek_token (parser);
2628 if (token.type == LSTOKEN_COLON)
2630 char *user_filename;
2632 /* Get the current token again and extract the filename. */
2633 token = linespec_lexer_lex_one (parser);
2634 user_filename = copy_token_string (token);
2636 /* Check if the input is a filename. */
2639 PARSER_RESULT (parser)->file_symtabs
2640 = symtabs_from_filename (user_filename,
2641 PARSER_STATE (parser)->search_pspace);
2643 CATCH (ex, RETURN_MASK_ERROR)
2645 file_exception = ex;
2649 if (file_exception.reason >= 0)
2651 /* Symtabs were found for the file. Record the filename. */
2652 PARSER_EXPLICIT (parser)->source_filename = user_filename;
2654 /* Get the next token. */
2655 token = linespec_lexer_consume_token (parser);
2657 /* This is LSTOKEN_COLON; consume it. */
2658 linespec_lexer_consume_token (parser);
2662 /* No symtabs found -- discard user_filename. */
2663 xfree (user_filename);
2665 /* A NULL entry means to use GLOBAL_DEFAULT_SYMTAB. */
2666 VEC_safe_push (symtab_ptr, PARSER_RESULT (parser)->file_symtabs, NULL);
2669 /* If the next token is not EOI, KEYWORD, or COMMA, issue an error. */
2670 else if (parser->completion_tracker == NULL
2671 && (token.type != LSTOKEN_EOI && token.type != LSTOKEN_KEYWORD
2672 && token.type != LSTOKEN_COMMA))
2674 /* TOKEN is the _next_ token, not the one currently in the parser.
2675 Consuming the token will give the correct error message. */
2676 linespec_lexer_consume_token (parser);
2677 unexpected_linespec_error (parser);
2681 /* A NULL entry means to use GLOBAL_DEFAULT_SYMTAB. */
2682 VEC_safe_push (symtab_ptr, PARSER_RESULT (parser)->file_symtabs, NULL);
2685 /* Parse the rest of the linespec. */
2686 linespec_parse_basic (parser);
2688 if (parser->completion_tracker == NULL
2689 && PARSER_RESULT (parser)->function_symbols == NULL
2690 && PARSER_RESULT (parser)->labels.label_symbols == NULL
2691 && PARSER_EXPLICIT (parser)->line_offset.sign == LINE_OFFSET_UNKNOWN
2692 && PARSER_RESULT (parser)->minimal_symbols == NULL)
2694 /* The linespec didn't parse. Re-throw the file exception if
2696 if (file_exception.reason < 0)
2697 throw_exception (file_exception);
2699 /* Otherwise, the symbol is not found. */
2700 symbol_not_found_error (PARSER_EXPLICIT (parser)->function_name,
2701 PARSER_EXPLICIT (parser)->source_filename);
2706 /* Get the last token and record how much of the input was parsed,
2708 token = linespec_lexer_lex_one (parser);
2709 if (token.type != LSTOKEN_EOI && token.type != LSTOKEN_KEYWORD)
2710 unexpected_linespec_error (parser);
2711 else if (token.type == LSTOKEN_KEYWORD)
2713 /* Setup the completion word past the keyword. Lexing never
2714 advances past a keyword automatically, so skip it
2716 parser->completion_word
2717 = skip_spaces (skip_to_space (PARSER_STREAM (parser)));
2718 parser->complete_what = linespec_complete_what::EXPRESSION;
2721 /* Convert the data in PARSER_RESULT to SALs. */
2722 if (parser->completion_tracker == NULL)
2723 return convert_linespec_to_sals (PARSER_STATE (parser),
2724 PARSER_RESULT (parser));
2730 /* A constructor for linespec_state. */
2733 linespec_state_constructor (struct linespec_state *self,
2734 int flags, const struct language_defn *language,
2735 struct program_space *search_pspace,
2736 struct symtab *default_symtab,
2738 struct linespec_result *canonical)
2740 memset (self, 0, sizeof (*self));
2741 self->language = language;
2742 self->funfirstline = (flags & DECODE_LINE_FUNFIRSTLINE) ? 1 : 0;
2743 self->list_mode = (flags & DECODE_LINE_LIST_MODE) ? 1 : 0;
2744 self->search_pspace = search_pspace;
2745 self->default_symtab = default_symtab;
2746 self->default_line = default_line;
2747 self->canonical = canonical;
2748 self->program_space = current_program_space;
2749 self->addr_set = htab_create_alloc (10, hash_address_entry, eq_address_entry,
2750 xfree, xcalloc, xfree);
2751 self->is_linespec = 0;
2754 /* Initialize a new linespec parser. */
2757 linespec_parser_new (linespec_parser *parser,
2758 int flags, const struct language_defn *language,
2759 struct program_space *search_pspace,
2760 struct symtab *default_symtab,
2762 struct linespec_result *canonical)
2764 memset (parser, 0, sizeof (linespec_parser));
2765 parser->lexer.current.type = LSTOKEN_CONSUMED;
2766 memset (PARSER_RESULT (parser), 0, sizeof (struct linespec));
2767 PARSER_EXPLICIT (parser)->func_name_match_type
2768 = symbol_name_match_type::WILD;
2769 PARSER_EXPLICIT (parser)->line_offset.sign = LINE_OFFSET_UNKNOWN;
2770 linespec_state_constructor (PARSER_STATE (parser), flags, language,
2772 default_symtab, default_line, canonical);
2775 /* A destructor for linespec_state. */
2778 linespec_state_destructor (struct linespec_state *self)
2780 htab_delete (self->addr_set);
2783 /* Delete a linespec parser. */
2786 linespec_parser_delete (void *arg)
2788 linespec_parser *parser = (linespec_parser *) arg;
2790 xfree (PARSER_EXPLICIT (parser)->source_filename);
2791 xfree (PARSER_EXPLICIT (parser)->label_name);
2792 xfree (PARSER_EXPLICIT (parser)->function_name);
2794 if (PARSER_RESULT (parser)->file_symtabs != NULL)
2795 VEC_free (symtab_ptr, PARSER_RESULT (parser)->file_symtabs);
2797 if (PARSER_RESULT (parser)->function_symbols != NULL)
2798 VEC_free (symbolp, PARSER_RESULT (parser)->function_symbols);
2800 if (PARSER_RESULT (parser)->minimal_symbols != NULL)
2801 VEC_free (bound_minimal_symbol_d, PARSER_RESULT (parser)->minimal_symbols);
2803 if (PARSER_RESULT (parser)->labels.label_symbols != NULL)
2804 VEC_free (symbolp, PARSER_RESULT (parser)->labels.label_symbols);
2806 if (PARSER_RESULT (parser)->labels.function_symbols != NULL)
2807 VEC_free (symbolp, PARSER_RESULT (parser)->labels.function_symbols);
2809 linespec_state_destructor (PARSER_STATE (parser));
2812 /* See description in linespec.h. */
2815 linespec_lex_to_end (const char **stringp)
2817 linespec_parser parser;
2818 struct cleanup *cleanup;
2819 linespec_token token;
2822 if (stringp == NULL || *stringp == NULL)
2825 linespec_parser_new (&parser, 0, current_language, NULL, NULL, 0, NULL);
2826 cleanup = make_cleanup (linespec_parser_delete, &parser);
2827 parser.lexer.saved_arg = *stringp;
2828 PARSER_STREAM (&parser) = orig = *stringp;
2832 /* Stop before any comma tokens; we need it to keep it
2833 as the next token in the string. */
2834 token = linespec_lexer_peek_token (&parser);
2835 if (token.type == LSTOKEN_COMMA)
2837 token = linespec_lexer_consume_token (&parser);
2839 while (token.type != LSTOKEN_EOI && token.type != LSTOKEN_KEYWORD);
2841 *stringp += PARSER_STREAM (&parser) - orig;
2842 do_cleanups (cleanup);
2845 /* See linespec.h. */
2848 linespec_complete_function (completion_tracker &tracker,
2849 const char *function,
2850 symbol_name_match_type func_match_type,
2851 const char *source_filename)
2853 complete_symbol_mode mode = complete_symbol_mode::LINESPEC;
2855 if (source_filename != NULL)
2857 collect_file_symbol_completion_matches (tracker, mode, func_match_type,
2858 function, function, source_filename);
2862 collect_symbol_completion_matches (tracker, mode, func_match_type,
2863 function, function);
2868 /* Helper for complete_linespec to simplify it. SOURCE_FILENAME is
2869 only meaningful if COMPONENT is FUNCTION. */
2872 complete_linespec_component (linespec_parser *parser,
2873 completion_tracker &tracker,
2875 linespec_complete_what component,
2876 const char *source_filename)
2878 if (component == linespec_complete_what::KEYWORD)
2880 complete_on_enum (tracker, linespec_keywords, text, text);
2882 else if (component == linespec_complete_what::EXPRESSION)
2885 = advance_to_expression_complete_word_point (tracker, text);
2886 complete_expression (tracker, text, word);
2888 else if (component == linespec_complete_what::FUNCTION)
2890 completion_list fn_list;
2892 symbol_name_match_type match_type
2893 = PARSER_EXPLICIT (parser)->func_name_match_type;
2894 linespec_complete_function (tracker, text, match_type, source_filename);
2895 if (source_filename == NULL)
2897 /* Haven't seen a source component, like in "b
2898 file.c:function[TAB]". Maybe this wasn't a function, but
2899 a filename instead, like "b file.[TAB]". */
2900 fn_list = complete_source_filenames (text);
2903 /* If we only have a single filename completion, append a ':' for
2904 the user, since that's the only thing that can usefully follow
2906 if (fn_list.size () == 1 && !tracker.have_completions ())
2908 char *fn = fn_list[0].release ();
2910 /* If we also need to append a quote char, it needs to be
2911 appended before the ':'. Append it now, and make ':' the
2912 new "quote" char. */
2913 if (tracker.quote_char ())
2915 char quote_char_str[2] = { tracker.quote_char () };
2917 fn = reconcat (fn, fn, quote_char_str, (char *) NULL);
2918 tracker.set_quote_char (':');
2921 fn = reconcat (fn, fn, ":", (char *) NULL);
2922 fn_list[0].reset (fn);
2924 /* Tell readline to skip appending a space. */
2925 tracker.set_suppress_append_ws (true);
2927 tracker.add_completions (std::move (fn_list));
2931 /* Helper for linespec_complete_label. Find labels that match
2932 LABEL_NAME in the function symbols listed in the PARSER, and add
2933 them to the tracker. */
2936 complete_label (completion_tracker &tracker,
2937 linespec_parser *parser,
2938 const char *label_name)
2940 VEC (symbolp) *label_function_symbols = NULL;
2941 VEC (symbolp) *labels
2942 = find_label_symbols (PARSER_STATE (parser),
2943 PARSER_RESULT (parser)->function_symbols,
2944 &label_function_symbols,
2949 VEC_iterate (symbolp, labels, ix, label); ++ix)
2951 char *match = xstrdup (SYMBOL_SEARCH_NAME (label));
2952 tracker.add_completion (gdb::unique_xmalloc_ptr<char> (match));
2954 VEC_free (symbolp, labels);
2957 /* See linespec.h. */
2960 linespec_complete_label (completion_tracker &tracker,
2961 const struct language_defn *language,
2962 const char *source_filename,
2963 const char *function_name,
2964 symbol_name_match_type func_name_match_type,
2965 const char *label_name)
2967 linespec_parser parser;
2968 struct cleanup *cleanup;
2970 linespec_parser_new (&parser, 0, language, NULL, NULL, 0, NULL);
2971 cleanup = make_cleanup (linespec_parser_delete, &parser);
2973 line_offset unknown_offset = { 0, LINE_OFFSET_UNKNOWN };
2977 convert_explicit_location_to_linespec (PARSER_STATE (&parser),
2978 PARSER_RESULT (&parser),
2981 func_name_match_type,
2982 NULL, unknown_offset);
2984 CATCH (ex, RETURN_MASK_ERROR)
2986 do_cleanups (cleanup);
2991 complete_label (tracker, &parser, label_name);
2993 do_cleanups (cleanup);
2996 /* See description in linespec.h. */
2999 linespec_complete (completion_tracker &tracker, const char *text,
3000 symbol_name_match_type match_type)
3002 linespec_parser parser;
3003 struct cleanup *cleanup;
3004 const char *orig = text;
3006 linespec_parser_new (&parser, 0, current_language, NULL, NULL, 0, NULL);
3007 cleanup = make_cleanup (linespec_parser_delete, &parser);
3008 parser.lexer.saved_arg = text;
3009 PARSER_EXPLICIT (&parser)->func_name_match_type = match_type;
3010 PARSER_STREAM (&parser) = text;
3012 parser.completion_tracker = &tracker;
3013 PARSER_STATE (&parser)->is_linespec = 1;
3015 /* Parse as much as possible. parser.completion_word will hold
3016 furthest completion point we managed to parse to. */
3019 parse_linespec (&parser, text, match_type);
3021 CATCH (except, RETURN_MASK_ERROR)
3026 if (parser.completion_quote_char != '\0'
3027 && parser.completion_quote_end != NULL
3028 && parser.completion_quote_end[1] == '\0')
3030 /* If completing a quoted string with the cursor right at
3031 terminating quote char, complete the completion word without
3032 interpretation, so that readline advances the cursor one
3033 whitespace past the quote, even if there's no match. This
3034 makes these cases behave the same:
3036 before: "b function()"
3037 after: "b function() "
3039 before: "b 'function()'"
3040 after: "b 'function()' "
3042 and trusts the user in this case:
3044 before: "b 'not_loaded_function_yet()'"
3045 after: "b 'not_loaded_function_yet()' "
3047 parser.complete_what = linespec_complete_what::NOTHING;
3048 parser.completion_quote_char = '\0';
3050 gdb::unique_xmalloc_ptr<char> text_copy
3051 (xstrdup (parser.completion_word));
3052 tracker.add_completion (std::move (text_copy));
3055 tracker.set_quote_char (parser.completion_quote_char);
3057 if (parser.complete_what == linespec_complete_what::LABEL)
3059 parser.complete_what = linespec_complete_what::NOTHING;
3061 const char *func_name = PARSER_EXPLICIT (&parser)->function_name;
3063 VEC (symbolp) *function_symbols;
3064 VEC (bound_minimal_symbol_d) *minimal_symbols;
3065 find_linespec_symbols (PARSER_STATE (&parser),
3066 PARSER_RESULT (&parser)->file_symtabs,
3067 func_name, match_type,
3068 &function_symbols, &minimal_symbols);
3070 PARSER_RESULT (&parser)->function_symbols = function_symbols;
3071 PARSER_RESULT (&parser)->minimal_symbols = minimal_symbols;
3073 complete_label (tracker, &parser, parser.completion_word);
3075 else if (parser.complete_what == linespec_complete_what::FUNCTION)
3077 /* While parsing/lexing, we didn't know whether the completion
3078 word completes to a unique function/source name already or
3082 "b function() <tab>"
3083 may need to complete either to:
3084 "b function() const"
3086 "b function() if/thread/task"
3090 may need to complete either to:
3091 "b foo template_fun<T>()"
3092 with "foo" being the template function's return type, or to:
3097 may need to complete either to a source file name:
3099 or this, also a filename, but a unique completion:
3101 or to a function name:
3104 Address that by completing assuming source or function, and
3105 seeing if we find a completion that matches exactly the
3106 completion word. If so, then it must be a function (see note
3107 below) and we advance the completion word to the end of input
3108 and switch to KEYWORD completion mode.
3110 Note: if we find a unique completion for a source filename,
3111 then it won't match the completion word, because the LCD will
3112 contain a trailing ':'. And if we're completing at or after
3113 the ':', then complete_linespec_component won't try to
3114 complete on source filenames. */
3116 const char *word = parser.completion_word;
3118 complete_linespec_component (&parser, tracker,
3119 parser.completion_word,
3120 linespec_complete_what::FUNCTION,
3121 PARSER_EXPLICIT (&parser)->source_filename);
3123 parser.complete_what = linespec_complete_what::NOTHING;
3125 if (tracker.quote_char ())
3127 /* The function/file name was not close-quoted, so this
3128 can't be a keyword. Note: complete_linespec_component
3129 may have swapped the original quote char for ':' when we
3130 get here, but that still indicates the same. */
3132 else if (!tracker.have_completions ())
3135 size_t wordlen = strlen (parser.completion_word);
3138 = string_find_incomplete_keyword_at_end (linespec_keywords,
3139 parser.completion_word,
3144 && parser.completion_word[wordlen - 1] == ' '))
3146 parser.completion_word += key_start;
3147 parser.complete_what = linespec_complete_what::KEYWORD;
3150 else if (tracker.completes_to_completion_word (word))
3152 /* Skip the function and complete on keywords. */
3153 parser.completion_word += strlen (word);
3154 parser.complete_what = linespec_complete_what::KEYWORD;
3155 tracker.discard_completions ();
3159 tracker.advance_custom_word_point_by (parser.completion_word - orig);
3161 complete_linespec_component (&parser, tracker,
3162 parser.completion_word,
3163 parser.complete_what,
3164 PARSER_EXPLICIT (&parser)->source_filename);
3166 /* If we're past the "filename:function:label:offset" linespec, and
3167 didn't find any match, then assume the user might want to create
3168 a pending breakpoint anyway and offer the keyword
3170 if (!parser.completion_quote_char
3171 && (parser.complete_what == linespec_complete_what::FUNCTION
3172 || parser.complete_what == linespec_complete_what::LABEL
3173 || parser.complete_what == linespec_complete_what::NOTHING)
3174 && !tracker.have_completions ())
3177 = parser.completion_word + strlen (parser.completion_word);
3179 if (end > orig && end[-1] == ' ')
3181 tracker.advance_custom_word_point_by (end - parser.completion_word);
3183 complete_linespec_component (&parser, tracker, end,
3184 linespec_complete_what::KEYWORD,
3189 do_cleanups (cleanup);
3192 /* A helper function for decode_line_full and decode_line_1 to
3193 turn LOCATION into std::vector<symtab_and_line>. */
3195 static std::vector<symtab_and_line>
3196 event_location_to_sals (linespec_parser *parser,
3197 const struct event_location *location)
3199 std::vector<symtab_and_line> result;
3201 switch (event_location_type (location))
3203 case LINESPEC_LOCATION:
3205 PARSER_STATE (parser)->is_linespec = 1;
3208 const linespec_location *ls = get_linespec_location (location);
3209 result = parse_linespec (parser,
3210 ls->spec_string, ls->match_type);
3212 CATCH (except, RETURN_MASK_ERROR)
3214 throw_exception (except);
3220 case ADDRESS_LOCATION:
3222 const char *addr_string = get_address_string_location (location);
3223 CORE_ADDR addr = get_address_location (location);
3225 if (addr_string != NULL)
3227 char *expr = xstrdup (addr_string);
3228 const char *const_expr = expr;
3229 struct cleanup *cleanup = make_cleanup (xfree, expr);
3231 addr = linespec_expression_to_pc (&const_expr);
3232 if (PARSER_STATE (parser)->canonical != NULL)
3233 PARSER_STATE (parser)->canonical->location
3234 = copy_event_location (location);
3236 do_cleanups (cleanup);
3239 result = convert_address_location_to_sals (PARSER_STATE (parser),
3244 case EXPLICIT_LOCATION:
3246 const struct explicit_location *explicit_loc;
3248 explicit_loc = get_explicit_location_const (location);
3249 result = convert_explicit_location_to_sals (PARSER_STATE (parser),
3250 PARSER_RESULT (parser),
3255 case PROBE_LOCATION:
3256 /* Probes are handled by their own decoders. */
3257 gdb_assert_not_reached ("attempt to decode probe location");
3261 gdb_assert_not_reached ("unhandled event location type");
3267 /* See linespec.h. */
3270 decode_line_full (const struct event_location *location, int flags,
3271 struct program_space *search_pspace,
3272 struct symtab *default_symtab,
3273 int default_line, struct linespec_result *canonical,
3274 const char *select_mode,
3277 struct cleanup *cleanups;
3278 VEC (const_char_ptr) *filters = NULL;
3279 linespec_parser parser;
3280 struct linespec_state *state;
3282 gdb_assert (canonical != NULL);
3283 /* The filter only makes sense for 'all'. */
3284 gdb_assert (filter == NULL || select_mode == multiple_symbols_all);
3285 gdb_assert (select_mode == NULL
3286 || select_mode == multiple_symbols_all
3287 || select_mode == multiple_symbols_ask
3288 || select_mode == multiple_symbols_cancel);
3289 gdb_assert ((flags & DECODE_LINE_LIST_MODE) == 0);
3291 linespec_parser_new (&parser, flags, current_language,
3292 search_pspace, default_symtab,
3293 default_line, canonical);
3294 cleanups = make_cleanup (linespec_parser_delete, &parser);
3296 scoped_restore_current_program_space restore_pspace;
3298 std::vector<symtab_and_line> result = event_location_to_sals (&parser,
3300 state = PARSER_STATE (&parser);
3302 gdb_assert (result.size () == 1 || canonical->pre_expanded);
3303 canonical->pre_expanded = 1;
3305 /* Arrange for allocated canonical names to be freed. */
3306 if (!result.empty ())
3310 make_cleanup (xfree, state->canonical_names);
3311 for (i = 0; i < result.size (); ++i)
3313 gdb_assert (state->canonical_names[i].suffix != NULL);
3314 make_cleanup (xfree, state->canonical_names[i].suffix);
3318 if (select_mode == NULL)
3320 if (interp_ui_out (top_level_interpreter ())->is_mi_like_p ())
3321 select_mode = multiple_symbols_all;
3323 select_mode = multiple_symbols_select_mode ();
3326 if (select_mode == multiple_symbols_all)
3330 make_cleanup (VEC_cleanup (const_char_ptr), &filters);
3331 VEC_safe_push (const_char_ptr, filters, filter);
3332 filter_results (state, &result, filters);
3335 convert_results_to_lsals (state, &result);
3338 decode_line_2 (state, &result, select_mode);
3340 do_cleanups (cleanups);
3343 /* See linespec.h. */
3345 std::vector<symtab_and_line>
3346 decode_line_1 (const struct event_location *location, int flags,
3347 struct program_space *search_pspace,
3348 struct symtab *default_symtab,
3351 linespec_parser parser;
3352 struct cleanup *cleanups;
3354 linespec_parser_new (&parser, flags, current_language,
3355 search_pspace, default_symtab,
3356 default_line, NULL);
3357 cleanups = make_cleanup (linespec_parser_delete, &parser);
3359 scoped_restore_current_program_space restore_pspace;
3361 std::vector<symtab_and_line> result = event_location_to_sals (&parser,
3364 do_cleanups (cleanups);
3368 /* See linespec.h. */
3370 std::vector<symtab_and_line>
3371 decode_line_with_current_source (const char *string, int flags)
3374 error (_("Empty line specification."));
3376 /* We use whatever is set as the current source line. We do not try
3377 and get a default source symtab+line or it will recursively call us! */
3378 symtab_and_line cursal = get_current_source_symtab_and_line ();
3380 event_location_up location = string_to_event_location (&string,
3382 std::vector<symtab_and_line> sals
3383 = decode_line_1 (location.get (), flags, NULL, cursal.symtab, cursal.line);
3386 error (_("Junk at end of line specification: %s"), string);
3391 /* See linespec.h. */
3393 std::vector<symtab_and_line>
3394 decode_line_with_last_displayed (const char *string, int flags)
3397 error (_("Empty line specification."));
3399 event_location_up location = string_to_event_location (&string,
3401 std::vector<symtab_and_line> sals
3402 = (last_displayed_sal_is_valid ()
3403 ? decode_line_1 (location.get (), flags, NULL,
3404 get_last_displayed_symtab (),
3405 get_last_displayed_line ())
3406 : decode_line_1 (location.get (), flags, NULL,
3407 (struct symtab *) NULL, 0));
3410 error (_("Junk at end of line specification: %s"), string);
3417 /* First, some functions to initialize stuff at the beggining of the
3421 initialize_defaults (struct symtab **default_symtab, int *default_line)
3423 if (*default_symtab == 0)
3425 /* Use whatever we have for the default source line. We don't use
3426 get_current_or_default_symtab_and_line as it can recurse and call
3428 struct symtab_and_line cursal =
3429 get_current_source_symtab_and_line ();
3431 *default_symtab = cursal.symtab;
3432 *default_line = cursal.line;
3438 /* Evaluate the expression pointed to by EXP_PTR into a CORE_ADDR,
3439 advancing EXP_PTR past any parsed text. */
3442 linespec_expression_to_pc (const char **exp_ptr)
3444 if (current_program_space->executing_startup)
3445 /* The error message doesn't really matter, because this case
3446 should only hit during breakpoint reset. */
3447 throw_error (NOT_FOUND_ERROR, _("cannot evaluate expressions while "
3448 "program space is in startup"));
3451 return value_as_address (parse_to_comma_and_eval (exp_ptr));
3456 /* Here's where we recognise an Objective-C Selector. An Objective C
3457 selector may be implemented by more than one class, therefore it
3458 may represent more than one method/function. This gives us a
3459 situation somewhat analogous to C++ overloading. If there's more
3460 than one method that could represent the selector, then use some of
3461 the existing C++ code to let the user choose one. */
3463 static std::vector<symtab_and_line>
3464 decode_objc (struct linespec_state *self, linespec_p ls, const char *arg)
3466 struct collect_info info;
3467 VEC (const_char_ptr) *symbol_names = NULL;
3468 const char *new_argptr;
3469 struct cleanup *cleanup = make_cleanup (VEC_cleanup (const_char_ptr),
3473 info.file_symtabs = NULL;
3474 VEC_safe_push (symtab_ptr, info.file_symtabs, NULL);
3475 make_cleanup (VEC_cleanup (symtab_ptr), &info.file_symtabs);
3476 info.result.symbols = NULL;
3477 info.result.minimal_symbols = NULL;
3479 new_argptr = find_imps (arg, &symbol_names);
3480 if (VEC_empty (const_char_ptr, symbol_names))
3482 do_cleanups (cleanup);
3486 add_all_symbol_names_from_pspace (&info, NULL, symbol_names,
3489 std::vector<symtab_and_line> values;
3490 if (!VEC_empty (symbolp, info.result.symbols)
3491 || !VEC_empty (bound_minimal_symbol_d, info.result.minimal_symbols))
3495 saved_arg = (char *) alloca (new_argptr - arg + 1);
3496 memcpy (saved_arg, arg, new_argptr - arg);
3497 saved_arg[new_argptr - arg] = '\0';
3499 ls->explicit_loc.function_name = xstrdup (saved_arg);
3500 ls->function_symbols = info.result.symbols;
3501 ls->minimal_symbols = info.result.minimal_symbols;
3502 values = convert_linespec_to_sals (self, ls);
3504 if (self->canonical)
3509 self->canonical->pre_expanded = 1;
3511 if (ls->explicit_loc.source_filename)
3513 holder = string_printf ("%s:%s",
3514 ls->explicit_loc.source_filename,
3516 str = holder.c_str ();
3521 self->canonical->location
3522 = new_linespec_location (&str, symbol_name_match_type::FULL);
3526 do_cleanups (cleanup);
3533 /* A function object that serves as symbol_found_callback_ftype
3534 callback for iterate_over_symbols. This is used by
3535 lookup_prefix_sym to collect type symbols. */
3536 class decode_compound_collector
3539 decode_compound_collector ()
3542 m_unique_syms = htab_create_alloc (1, htab_hash_pointer,
3543 htab_eq_pointer, NULL,
3547 ~decode_compound_collector ()
3549 if (m_unique_syms != NULL)
3550 htab_delete (m_unique_syms);
3553 /* Releases ownership of the collected symbols and returns them. */
3554 VEC (symbolp) *release_symbols ()
3556 VEC (symbolp) *res = m_symbols;
3561 /* Callable as a symbol_found_callback_ftype callback. */
3562 bool operator () (symbol *sym);
3565 /* A hash table of all symbols we found. We use this to avoid
3566 adding any symbol more than once. */
3567 htab_t m_unique_syms;
3569 /* The result vector. */
3570 VEC (symbolp) *m_symbols;
3574 decode_compound_collector::operator () (symbol *sym)
3579 if (SYMBOL_CLASS (sym) != LOC_TYPEDEF)
3580 return true; /* Continue iterating. */
3582 t = SYMBOL_TYPE (sym);
3583 t = check_typedef (t);
3584 if (TYPE_CODE (t) != TYPE_CODE_STRUCT
3585 && TYPE_CODE (t) != TYPE_CODE_UNION
3586 && TYPE_CODE (t) != TYPE_CODE_NAMESPACE)
3587 return true; /* Continue iterating. */
3589 slot = htab_find_slot (m_unique_syms, sym, INSERT);
3593 VEC_safe_push (symbolp, m_symbols, sym);
3596 return true; /* Continue iterating. */
3601 /* Return any symbols corresponding to CLASS_NAME in FILE_SYMTABS. */
3603 static VEC (symbolp) *
3604 lookup_prefix_sym (struct linespec_state *state, VEC (symtab_ptr) *file_symtabs,
3605 const char *class_name)
3609 decode_compound_collector collector;
3611 lookup_name_info lookup_name (class_name, symbol_name_match_type::FULL);
3613 for (ix = 0; VEC_iterate (symtab_ptr, file_symtabs, ix, elt); ++ix)
3617 iterate_over_all_matching_symtabs (state, lookup_name,
3618 STRUCT_DOMAIN, ALL_DOMAIN,
3619 NULL, false, collector);
3620 iterate_over_all_matching_symtabs (state, lookup_name,
3621 VAR_DOMAIN, ALL_DOMAIN,
3622 NULL, false, collector);
3626 /* Program spaces that are executing startup should have
3627 been filtered out earlier. */
3628 gdb_assert (!SYMTAB_PSPACE (elt)->executing_startup);
3629 set_current_program_space (SYMTAB_PSPACE (elt));
3630 iterate_over_file_blocks (elt, lookup_name, STRUCT_DOMAIN, collector);
3631 iterate_over_file_blocks (elt, lookup_name, VAR_DOMAIN, collector);
3635 return collector.release_symbols ();
3638 /* A qsort comparison function for symbols. The resulting order does
3639 not actually matter; we just need to be able to sort them so that
3640 symbols with the same program space end up next to each other. */
3643 compare_symbols (const void *a, const void *b)
3645 struct symbol * const *sa = (struct symbol * const*) a;
3646 struct symbol * const *sb = (struct symbol * const*) b;
3649 uia = (uintptr_t) SYMTAB_PSPACE (symbol_symtab (*sa));
3650 uib = (uintptr_t) SYMTAB_PSPACE (symbol_symtab (*sb));
3657 uia = (uintptr_t) *sa;
3658 uib = (uintptr_t) *sb;
3668 /* Like compare_symbols but for minimal symbols. */
3671 compare_msymbols (const void *a, const void *b)
3673 const struct bound_minimal_symbol *sa
3674 = (const struct bound_minimal_symbol *) a;
3675 const struct bound_minimal_symbol *sb
3676 = (const struct bound_minimal_symbol *) b;
3679 uia = (uintptr_t) sa->objfile->pspace;
3680 uib = (uintptr_t) sa->objfile->pspace;
3687 uia = (uintptr_t) sa->minsym;
3688 uib = (uintptr_t) sb->minsym;
3698 /* Look for all the matching instances of each symbol in NAMES. Only
3699 instances from PSPACE are considered; other program spaces are
3700 handled by our caller. If PSPACE is NULL, then all program spaces
3701 are considered. Results are stored into INFO. */
3704 add_all_symbol_names_from_pspace (struct collect_info *info,
3705 struct program_space *pspace,
3706 VEC (const_char_ptr) *names,
3707 enum search_domain search_domain)
3712 for (ix = 0; VEC_iterate (const_char_ptr, names, ix, iter); ++ix)
3713 add_matching_symbols_to_info (iter,
3714 symbol_name_match_type::FULL,
3715 search_domain, info, pspace);
3719 find_superclass_methods (VEC (typep) *superclasses,
3720 const char *name, enum language name_lang,
3721 VEC (const_char_ptr) **result_names)
3723 int old_len = VEC_length (const_char_ptr, *result_names);
3724 VEC (typep) *iter_classes;
3725 struct cleanup *cleanup = make_cleanup (null_cleanup, NULL);
3727 iter_classes = superclasses;
3730 VEC (typep) *new_supers = NULL;
3734 make_cleanup (VEC_cleanup (typep), &new_supers);
3735 for (ix = 0; VEC_iterate (typep, iter_classes, ix, t); ++ix)
3736 find_methods (t, name_lang, name, result_names, &new_supers);
3738 if (VEC_length (const_char_ptr, *result_names) != old_len
3739 || VEC_empty (typep, new_supers))
3742 iter_classes = new_supers;
3745 do_cleanups (cleanup);
3748 /* This finds the method METHOD_NAME in the class CLASS_NAME whose type is
3749 given by one of the symbols in SYM_CLASSES. Matches are returned
3750 in SYMBOLS (for debug symbols) and MINSYMS (for minimal symbols). */
3753 find_method (struct linespec_state *self, VEC (symtab_ptr) *file_symtabs,
3754 const char *class_name, const char *method_name,
3755 VEC (symbolp) *sym_classes, VEC (symbolp) **symbols,
3756 VEC (bound_minimal_symbol_d) **minsyms)
3759 struct cleanup *cleanup = make_cleanup (null_cleanup, NULL);
3761 int last_result_len;
3762 VEC (typep) *superclass_vec;
3763 VEC (const_char_ptr) *result_names;
3764 struct collect_info info;
3766 /* Sort symbols so that symbols with the same program space are next
3768 qsort (VEC_address (symbolp, sym_classes),
3769 VEC_length (symbolp, sym_classes),
3774 info.file_symtabs = file_symtabs;
3775 info.result.symbols = NULL;
3776 info.result.minimal_symbols = NULL;
3778 /* Iterate over all the types, looking for the names of existing
3779 methods matching METHOD_NAME. If we cannot find a direct method in a
3780 given program space, then we consider inherited methods; this is
3781 not ideal (ideal would be to respect C++ hiding rules), but it
3782 seems good enough and is what GDB has historically done. We only
3783 need to collect the names because later we find all symbols with
3784 those names. This loop is written in a somewhat funny way
3785 because we collect data across the program space before deciding
3787 superclass_vec = NULL;
3788 make_cleanup (VEC_cleanup (typep), &superclass_vec);
3789 result_names = NULL;
3790 make_cleanup (VEC_cleanup (const_char_ptr), &result_names);
3791 last_result_len = 0;
3792 for (ix = 0; VEC_iterate (symbolp, sym_classes, ix, sym); ++ix)
3795 struct program_space *pspace;
3797 /* Program spaces that are executing startup should have
3798 been filtered out earlier. */
3799 pspace = SYMTAB_PSPACE (symbol_symtab (sym));
3800 gdb_assert (!pspace->executing_startup);
3801 set_current_program_space (pspace);
3802 t = check_typedef (SYMBOL_TYPE (sym));
3803 find_methods (t, SYMBOL_LANGUAGE (sym),
3804 method_name, &result_names, &superclass_vec);
3806 /* Handle all items from a single program space at once; and be
3807 sure not to miss the last batch. */
3808 if (ix == VEC_length (symbolp, sym_classes) - 1
3810 != SYMTAB_PSPACE (symbol_symtab (VEC_index (symbolp, sym_classes,
3813 /* If we did not find a direct implementation anywhere in
3814 this program space, consider superclasses. */
3815 if (VEC_length (const_char_ptr, result_names) == last_result_len)
3816 find_superclass_methods (superclass_vec, method_name,
3817 SYMBOL_LANGUAGE (sym), &result_names);
3819 /* We have a list of candidate symbol names, so now we
3820 iterate over the symbol tables looking for all
3821 matches in this pspace. */
3822 add_all_symbol_names_from_pspace (&info, pspace, result_names,
3825 VEC_truncate (typep, superclass_vec, 0);
3826 last_result_len = VEC_length (const_char_ptr, result_names);
3830 if (!VEC_empty (symbolp, info.result.symbols)
3831 || !VEC_empty (bound_minimal_symbol_d, info.result.minimal_symbols))
3833 *symbols = info.result.symbols;
3834 *minsyms = info.result.minimal_symbols;
3835 do_cleanups (cleanup);
3839 /* Throw an NOT_FOUND_ERROR. This will be caught by the caller
3840 and other attempts to locate the symbol will be made. */
3841 throw_error (NOT_FOUND_ERROR, _("see caller, this text doesn't matter"));
3848 /* This function object is a callback for iterate_over_symtabs, used
3849 when collecting all matching symtabs. */
3851 class symtab_collector
3857 m_symtab_table = htab_create (1, htab_hash_pointer, htab_eq_pointer,
3861 ~symtab_collector ()
3863 if (m_symtab_table != NULL)
3864 htab_delete (m_symtab_table);
3867 /* Callable as a symbol_found_callback_ftype callback. */
3868 bool operator () (symtab *sym);
3870 /* Releases ownership of the collected symtabs and returns them. */
3871 VEC (symtab_ptr) *release_symtabs ()
3873 VEC (symtab_ptr) *res = m_symtabs;
3879 /* The result vector of symtabs. */
3880 VEC (symtab_ptr) *m_symtabs;
3882 /* This is used to ensure the symtabs are unique. */
3883 htab_t m_symtab_table;
3887 symtab_collector::operator () (struct symtab *symtab)
3891 slot = htab_find_slot (m_symtab_table, symtab, INSERT);
3895 VEC_safe_push (symtab_ptr, m_symtabs, symtab);
3903 /* Given a file name, return a VEC of all matching symtabs. If
3904 SEARCH_PSPACE is not NULL, the search is restricted to just that
3907 static VEC (symtab_ptr) *
3908 collect_symtabs_from_filename (const char *file,
3909 struct program_space *search_pspace)
3911 symtab_collector collector;
3913 /* Find that file's data. */
3914 if (search_pspace == NULL)
3916 struct program_space *pspace;
3918 ALL_PSPACES (pspace)
3920 if (pspace->executing_startup)
3923 set_current_program_space (pspace);
3924 iterate_over_symtabs (file, collector);
3929 set_current_program_space (search_pspace);
3930 iterate_over_symtabs (file, collector);
3933 return collector.release_symtabs ();
3936 /* Return all the symtabs associated to the FILENAME. If SEARCH_PSPACE is
3937 not NULL, the search is restricted to just that program space. */
3939 static VEC (symtab_ptr) *
3940 symtabs_from_filename (const char *filename,
3941 struct program_space *search_pspace)
3943 VEC (symtab_ptr) *result;
3945 result = collect_symtabs_from_filename (filename, search_pspace);
3947 if (VEC_empty (symtab_ptr, result))
3949 if (!have_full_symbols () && !have_partial_symbols ())
3950 throw_error (NOT_FOUND_ERROR,
3951 _("No symbol table is loaded. "
3952 "Use the \"file\" command."));
3953 source_file_not_found_error (filename);
3959 /* Look up a function symbol named NAME in symtabs FILE_SYMTABS. Matching
3960 debug symbols are returned in SYMBOLS. Matching minimal symbols are
3961 returned in MINSYMS. */
3964 find_function_symbols (struct linespec_state *state,
3965 VEC (symtab_ptr) *file_symtabs, const char *name,
3966 symbol_name_match_type name_match_type,
3967 VEC (symbolp) **symbols,
3968 VEC (bound_minimal_symbol_d) **minsyms)
3970 struct collect_info info;
3971 VEC (const_char_ptr) *symbol_names = NULL;
3972 struct cleanup *cleanup = make_cleanup (VEC_cleanup (const_char_ptr),
3976 info.result.symbols = NULL;
3977 info.result.minimal_symbols = NULL;
3978 info.file_symtabs = file_symtabs;
3980 /* Try NAME as an Objective-C selector. */
3981 find_imps (name, &symbol_names);
3982 if (!VEC_empty (const_char_ptr, symbol_names))
3983 add_all_symbol_names_from_pspace (&info, state->search_pspace,
3984 symbol_names, FUNCTIONS_DOMAIN);
3986 add_matching_symbols_to_info (name, name_match_type, FUNCTIONS_DOMAIN,
3987 &info, state->search_pspace);
3989 do_cleanups (cleanup);
3991 if (VEC_empty (symbolp, info.result.symbols))
3993 VEC_free (symbolp, info.result.symbols);
3997 *symbols = info.result.symbols;
3999 if (VEC_empty (bound_minimal_symbol_d, info.result.minimal_symbols))
4001 VEC_free (bound_minimal_symbol_d, info.result.minimal_symbols);
4005 *minsyms = info.result.minimal_symbols;
4008 /* Find all symbols named NAME in FILE_SYMTABS, returning debug symbols
4009 in SYMBOLS and minimal symbols in MINSYMS. */
4012 find_linespec_symbols (struct linespec_state *state,
4013 VEC (symtab_ptr) *file_symtabs,
4014 const char *lookup_name,
4015 symbol_name_match_type name_match_type,
4016 VEC (symbolp) **symbols,
4017 VEC (bound_minimal_symbol_d) **minsyms)
4019 std::string canon = cp_canonicalize_string_no_typedefs (lookup_name);
4020 if (!canon.empty ())
4021 lookup_name = canon.c_str ();
4023 /* It's important to not call expand_symtabs_matching unnecessarily
4024 as it can really slow things down (by unnecessarily expanding
4025 potentially 1000s of symtabs, which when debugging some apps can
4026 cost 100s of seconds). Avoid this to some extent by *first* calling
4027 find_function_symbols, and only if that doesn't find anything
4028 *then* call find_method. This handles two important cases:
4029 1) break (anonymous namespace)::foo
4030 2) break class::method where method is in class (and not a baseclass) */
4032 find_function_symbols (state, file_symtabs, lookup_name,
4036 /* If we were unable to locate a symbol of the same name, try dividing
4037 the name into class and method names and searching the class and its
4039 if (VEC_empty (symbolp, *symbols)
4040 && VEC_empty (bound_minimal_symbol_d, *minsyms))
4042 std::string klass, method;
4043 const char *last, *p, *scope_op;
4044 VEC (symbolp) *classes;
4046 /* See if we can find a scope operator and break this symbol
4047 name into namespaces${SCOPE_OPERATOR}class_name and method_name. */
4049 p = find_toplevel_string (lookup_name, scope_op);
4055 p = find_toplevel_string (p + strlen (scope_op), scope_op);
4058 /* If no scope operator was found, there is nothing more we can do;
4059 we already attempted to lookup the entire name as a symbol
4064 /* LOOKUP_NAME points to the class name.
4065 LAST points to the method name. */
4066 klass = std::string (lookup_name, last - lookup_name);
4068 /* Skip past the scope operator. */
4069 last += strlen (scope_op);
4072 /* Find a list of classes named KLASS. */
4073 classes = lookup_prefix_sym (state, file_symtabs, klass.c_str ());
4074 struct cleanup *old_chain
4075 = make_cleanup (VEC_cleanup (symbolp), &classes);
4077 if (!VEC_empty (symbolp, classes))
4079 /* Now locate a list of suitable methods named METHOD. */
4082 find_method (state, file_symtabs,
4083 klass.c_str (), method.c_str (),
4084 classes, symbols, minsyms);
4087 /* If successful, we're done. If NOT_FOUND_ERROR
4088 was not thrown, rethrow the exception that we did get. */
4089 CATCH (except, RETURN_MASK_ERROR)
4091 if (except.error != NOT_FOUND_ERROR)
4092 throw_exception (except);
4097 do_cleanups (old_chain);
4101 /* Helper for find_label_symbols. Find all labels that match name
4102 NAME in BLOCK. Return all labels that match in FUNCTION_SYMBOLS.
4103 Return the actual function symbol in which the label was found in
4104 LABEL_FUNC_RET. If COMPLETION_MODE is true, then NAME is
4105 interpreted as a label name prefix. Otherwise, only a label named
4106 exactly NAME match. */
4109 find_label_symbols_in_block (const struct block *block,
4110 const char *name, struct symbol *fn_sym,
4111 bool completion_mode,
4112 VEC (symbolp) **result,
4113 VEC (symbolp) **label_funcs_ret)
4115 if (completion_mode)
4117 struct block_iterator iter;
4119 size_t name_len = strlen (name);
4121 int (*cmp) (const char *, const char *, size_t);
4122 cmp = case_sensitivity == case_sensitive_on ? strncmp : strncasecmp;
4124 ALL_BLOCK_SYMBOLS (block, iter, sym)
4126 if (symbol_matches_domain (SYMBOL_LANGUAGE (sym),
4127 SYMBOL_DOMAIN (sym), LABEL_DOMAIN)
4128 && cmp (SYMBOL_SEARCH_NAME (sym), name, name_len) == 0)
4130 VEC_safe_push (symbolp, *result, sym);
4131 VEC_safe_push (symbolp, *label_funcs_ret, fn_sym);
4137 struct symbol *sym = lookup_symbol (name, block, LABEL_DOMAIN, 0).symbol;
4141 VEC_safe_push (symbolp, *result, sym);
4142 VEC_safe_push (symbolp, *label_funcs_ret, fn_sym);
4147 /* Return all labels that match name NAME in FUNCTION_SYMBOLS. Return
4148 the actual function symbol in which the label was found in
4149 LABEL_FUNC_RET. If COMPLETION_MODE is true, then NAME is
4150 interpreted as a label name prefix. Otherwise, only labels named
4151 exactly NAME match. */
4153 static VEC (symbolp) *
4154 find_label_symbols (struct linespec_state *self,
4155 VEC (symbolp) *function_symbols,
4156 VEC (symbolp) **label_funcs_ret, const char *name,
4157 bool completion_mode)
4160 const struct block *block;
4161 struct symbol *fn_sym;
4162 VEC (symbolp) *result = NULL;
4164 if (function_symbols == NULL)
4166 set_current_program_space (self->program_space);
4167 block = get_current_search_block ();
4170 block && !BLOCK_FUNCTION (block);
4171 block = BLOCK_SUPERBLOCK (block))
4175 fn_sym = BLOCK_FUNCTION (block);
4177 find_label_symbols_in_block (block, name, fn_sym, completion_mode,
4178 &result, label_funcs_ret);
4183 VEC_iterate (symbolp, function_symbols, ix, fn_sym); ++ix)
4185 set_current_program_space (SYMTAB_PSPACE (symbol_symtab (fn_sym)));
4186 block = SYMBOL_BLOCK_VALUE (fn_sym);
4188 find_label_symbols_in_block (block, name, fn_sym, completion_mode,
4189 &result, label_funcs_ret);
4198 /* A helper for create_sals_line_offset that handles the 'list_mode' case. */
4200 static std::vector<symtab_and_line>
4201 decode_digits_list_mode (struct linespec_state *self,
4203 struct symtab_and_line val)
4208 gdb_assert (self->list_mode);
4210 std::vector<symtab_and_line> values;
4212 for (ix = 0; VEC_iterate (symtab_ptr, ls->file_symtabs, ix, elt);
4215 /* The logic above should ensure this. */
4216 gdb_assert (elt != NULL);
4218 set_current_program_space (SYMTAB_PSPACE (elt));
4220 /* Simplistic search just for the list command. */
4221 val.symtab = find_line_symtab (elt, val.line, NULL, NULL);
4222 if (val.symtab == NULL)
4224 val.pspace = SYMTAB_PSPACE (elt);
4226 val.explicit_line = 1;
4228 add_sal_to_sals (self, &values, &val, NULL, 0);
4234 /* A helper for create_sals_line_offset that iterates over the symtabs,
4235 adding lines to the VEC. */
4237 static std::vector<symtab_and_line>
4238 decode_digits_ordinary (struct linespec_state *self,
4241 struct linetable_entry **best_entry)
4246 std::vector<symtab_and_line> sals;
4247 for (ix = 0; VEC_iterate (symtab_ptr, ls->file_symtabs, ix, elt); ++ix)
4249 std::vector<CORE_ADDR> pcs;
4251 /* The logic above should ensure this. */
4252 gdb_assert (elt != NULL);
4254 set_current_program_space (SYMTAB_PSPACE (elt));
4256 pcs = find_pcs_for_symtab_line (elt, line, best_entry);
4257 for (CORE_ADDR pc : pcs)
4259 symtab_and_line sal;
4260 sal.pspace = SYMTAB_PSPACE (elt);
4264 sals.push_back (std::move (sal));
4273 /* Return the line offset represented by VARIABLE. */
4275 static struct line_offset
4276 linespec_parse_variable (struct linespec_state *self, const char *variable)
4280 struct line_offset offset = {0, LINE_OFFSET_NONE};
4282 p = (variable[1] == '$') ? variable + 2 : variable + 1;
4285 while (*p >= '0' && *p <= '9')
4287 if (!*p) /* Reached end of token without hitting non-digit. */
4289 /* We have a value history reference. */
4290 struct value *val_history;
4292 sscanf ((variable[1] == '$') ? variable + 2 : variable + 1, "%d", &index);
4294 = access_value_history ((variable[1] == '$') ? -index : index);
4295 if (TYPE_CODE (value_type (val_history)) != TYPE_CODE_INT)
4296 error (_("History values used in line "
4297 "specs must have integer values."));
4298 offset.offset = value_as_long (val_history);
4302 /* Not all digits -- may be user variable/function or a
4303 convenience variable. */
4305 struct internalvar *ivar;
4307 /* Try it as a convenience variable. If it is not a convenience
4308 variable, return and allow normal symbol lookup to occur. */
4309 ivar = lookup_only_internalvar (variable + 1);
4311 /* No internal variable with that name. Mark the offset
4312 as unknown to allow the name to be looked up as a symbol. */
4313 offset.sign = LINE_OFFSET_UNKNOWN;
4316 /* We found a valid variable name. If it is not an integer,
4318 if (!get_internalvar_integer (ivar, &valx))
4319 error (_("Convenience variables used in line "
4320 "specs must have integer values."));
4322 offset.offset = valx;
4330 /* We've found a minimal symbol MSYMBOL in OBJFILE to associate with our
4331 linespec; return the SAL in RESULT. This function should return SALs
4332 matching those from find_function_start_sal, otherwise false
4333 multiple-locations breakpoints could be placed. */
4336 minsym_found (struct linespec_state *self, struct objfile *objfile,
4337 struct minimal_symbol *msymbol,
4338 std::vector<symtab_and_line> *result)
4340 struct symtab_and_line sal;
4342 CORE_ADDR func_addr;
4343 if (msymbol_is_function (objfile, msymbol, &func_addr))
4345 sal = find_pc_sect_line (func_addr, NULL, 0);
4347 if (self->funfirstline)
4349 if (sal.symtab != NULL
4350 && (COMPUNIT_LOCATIONS_VALID (SYMTAB_COMPUNIT (sal.symtab))
4351 || SYMTAB_LANGUAGE (sal.symtab) == language_asm))
4353 struct gdbarch *gdbarch = get_objfile_arch (objfile);
4356 if (gdbarch_skip_entrypoint_p (gdbarch))
4357 sal.pc = gdbarch_skip_entrypoint (gdbarch, sal.pc);
4360 skip_prologue_sal (&sal);
4365 sal.objfile = objfile;
4366 sal.pc = MSYMBOL_VALUE_ADDRESS (objfile, msymbol);
4367 sal.pspace = current_program_space;
4370 sal.section = MSYMBOL_OBJ_SECTION (objfile, msymbol);
4372 if (maybe_add_address (self->addr_set, objfile->pspace, sal.pc))
4373 add_sal_to_sals (self, result, &sal, MSYMBOL_NATURAL_NAME (msymbol), 0);
4376 /* A helper struct to pass some data through
4377 iterate_over_minimal_symbols. */
4379 struct collect_minsyms
4381 /* The objfile we're examining. */
4382 struct objfile *objfile;
4384 /* Only search the given symtab, or NULL to search for all symbols. */
4385 struct symtab *symtab;
4387 /* The funfirstline setting from the initial call. */
4390 /* The list_mode setting from the initial call. */
4393 /* The resulting symbols. */
4394 VEC (bound_minimal_symbol_d) *msyms;
4397 /* A helper function to classify a minimal_symbol_type according to
4401 classify_mtype (enum minimal_symbol_type t)
4408 /* Intermediate priority. */
4411 case mst_solib_trampoline:
4412 /* Lowest priority. */
4416 /* Highest priority. */
4421 /* Callback for qsort that sorts symbols by priority. */
4424 compare_msyms (const void *a, const void *b)
4426 const bound_minimal_symbol_d *moa = (const bound_minimal_symbol_d *) a;
4427 const bound_minimal_symbol_d *mob = (const bound_minimal_symbol_d *) b;
4428 enum minimal_symbol_type ta = MSYMBOL_TYPE (moa->minsym);
4429 enum minimal_symbol_type tb = MSYMBOL_TYPE (mob->minsym);
4431 return classify_mtype (ta) - classify_mtype (tb);
4434 /* Callback for iterate_over_minimal_symbols that adds the symbol to
4438 add_minsym (struct minimal_symbol *minsym, void *d)
4440 struct collect_minsyms *info = (struct collect_minsyms *) d;
4442 if (info->symtab != NULL)
4444 /* We're looking for a label for which we don't have debug
4446 CORE_ADDR func_addr;
4447 if (msymbol_is_function (info->objfile, minsym, &func_addr))
4449 symtab_and_line sal = find_pc_sect_line (func_addr, NULL, 0);
4451 if (info->symtab != sal.symtab)
4456 /* Exclude data symbols when looking for breakpoint locations. */
4457 if (!info->list_mode && !msymbol_is_function (info->objfile, minsym))
4460 bound_minimal_symbol_d mo = {minsym, info->objfile};
4461 VEC_safe_push (bound_minimal_symbol_d, info->msyms, &mo);
4464 /* Search for minimal symbols called NAME. If SEARCH_PSPACE
4465 is not NULL, the search is restricted to just that program
4468 If SYMTAB is NULL, search all objfiles, otherwise
4469 restrict results to the given SYMTAB. */
4472 search_minsyms_for_name (struct collect_info *info,
4473 const lookup_name_info &name,
4474 struct program_space *search_pspace,
4475 struct symtab *symtab)
4477 struct collect_minsyms local;
4478 struct cleanup *cleanup;
4480 memset (&local, 0, sizeof (local));
4481 local.funfirstline = info->state->funfirstline;
4482 local.list_mode = info->state->list_mode;
4483 local.symtab = symtab;
4485 cleanup = make_cleanup (VEC_cleanup (bound_minimal_symbol_d), &local.msyms);
4489 struct program_space *pspace;
4491 ALL_PSPACES (pspace)
4493 struct objfile *objfile;
4495 if (search_pspace != NULL && search_pspace != pspace)
4497 if (pspace->executing_startup)
4500 set_current_program_space (pspace);
4502 ALL_OBJFILES (objfile)
4504 local.objfile = objfile;
4505 iterate_over_minimal_symbols (objfile, name, add_minsym, &local);
4511 if (search_pspace == NULL || SYMTAB_PSPACE (symtab) == search_pspace)
4513 set_current_program_space (SYMTAB_PSPACE (symtab));
4514 local.objfile = SYMTAB_OBJFILE(symtab);
4515 iterate_over_minimal_symbols (local.objfile, name, add_minsym, &local);
4519 if (!VEC_empty (bound_minimal_symbol_d, local.msyms))
4523 bound_minimal_symbol_d *item;
4525 qsort (VEC_address (bound_minimal_symbol_d, local.msyms),
4526 VEC_length (bound_minimal_symbol_d, local.msyms),
4527 sizeof (bound_minimal_symbol_d),
4530 /* Now the minsyms are in classification order. So, we walk
4531 over them and process just the minsyms with the same
4532 classification as the very first minsym in the list. */
4533 item = VEC_index (bound_minimal_symbol_d, local.msyms, 0);
4534 classification = classify_mtype (MSYMBOL_TYPE (item->minsym));
4537 VEC_iterate (bound_minimal_symbol_d, local.msyms, ix, item);
4540 if (classify_mtype (MSYMBOL_TYPE (item->minsym)) != classification)
4543 VEC_safe_push (bound_minimal_symbol_d,
4544 info->result.minimal_symbols, item);
4548 do_cleanups (cleanup);
4551 /* A helper function to add all symbols matching NAME to INFO. If
4552 PSPACE is not NULL, the search is restricted to just that program
4556 add_matching_symbols_to_info (const char *name,
4557 symbol_name_match_type name_match_type,
4558 enum search_domain search_domain,
4559 struct collect_info *info,
4560 struct program_space *pspace)
4565 lookup_name_info lookup_name (name, name_match_type);
4567 for (ix = 0; VEC_iterate (symtab_ptr, info->file_symtabs, ix, elt); ++ix)
4571 iterate_over_all_matching_symtabs (info->state, lookup_name,
4572 VAR_DOMAIN, search_domain,
4573 pspace, true, [&] (symbol *sym)
4574 { return info->add_symbol (sym); });
4575 search_minsyms_for_name (info, lookup_name, pspace, NULL);
4577 else if (pspace == NULL || pspace == SYMTAB_PSPACE (elt))
4579 int prev_len = VEC_length (symbolp, info->result.symbols);
4581 /* Program spaces that are executing startup should have
4582 been filtered out earlier. */
4583 gdb_assert (!SYMTAB_PSPACE (elt)->executing_startup);
4584 set_current_program_space (SYMTAB_PSPACE (elt));
4585 iterate_over_file_blocks (elt, lookup_name, VAR_DOMAIN,
4587 { return info->add_symbol (sym); });
4589 /* If no new symbols were found in this iteration and this symtab
4590 is in assembler, we might actually be looking for a label for
4591 which we don't have debug info. Check for a minimal symbol in
4593 if (prev_len == VEC_length (symbolp, info->result.symbols)
4594 && elt->language == language_asm)
4595 search_minsyms_for_name (info, lookup_name, pspace, elt);
4602 /* Now come some functions that are called from multiple places within
4606 symbol_to_sal (struct symtab_and_line *result,
4607 int funfirstline, struct symbol *sym)
4609 if (SYMBOL_CLASS (sym) == LOC_BLOCK)
4611 *result = find_function_start_sal (sym, funfirstline);
4616 if (SYMBOL_CLASS (sym) == LOC_LABEL && SYMBOL_VALUE_ADDRESS (sym) != 0)
4619 result->symtab = symbol_symtab (sym);
4620 result->symbol = sym;
4621 result->line = SYMBOL_LINE (sym);
4622 result->pc = SYMBOL_VALUE_ADDRESS (sym);
4623 result->pspace = SYMTAB_PSPACE (result->symtab);
4624 result->explicit_pc = 1;
4627 else if (funfirstline)
4631 else if (SYMBOL_LINE (sym) != 0)
4633 /* We know its line number. */
4635 result->symtab = symbol_symtab (sym);
4636 result->symbol = sym;
4637 result->line = SYMBOL_LINE (sym);
4638 result->pc = SYMBOL_VALUE_ADDRESS (sym);
4639 result->pspace = SYMTAB_PSPACE (result->symtab);
4647 linespec_result::~linespec_result ()
4649 for (linespec_sals &lsal : lsals)
4650 xfree (lsal.canonical);
4653 /* Return the quote characters permitted by the linespec parser. */
4656 get_gdb_linespec_parser_quote_characters (void)
4658 return linespec_quote_characters;