1 /* Parser for linespec for the GNU debugger, GDB.
3 Copyright (C) 1986-2022 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 "gdbsupport/function-view.h"
48 #include "gdbsupport/def-vector.h"
52 /* An enumeration of the various things a user might attempt to
53 complete for a linespec location. */
55 enum class linespec_complete_what
57 /* Nothing, no possible completion. */
60 /* A function/method name. Due to ambiguity between
66 this can also indicate a source filename, iff we haven't seen a
67 separate source filename component, as in "b source.c:function". */
70 /* A label symbol. E.g., break file.c:function:LABEL. */
73 /* An expression. E.g., "break foo if EXPR", or "break *EXPR". */
76 /* A linespec keyword ("if"/"thread"/"task"/"-force-condition").
77 E.g., "break func threa<tab>". */
81 /* An address entry is used to ensure that any given location is only
82 added to the result a single time. It holds an address and the
83 program space from which the address came. */
87 struct program_space
*pspace
;
91 /* A linespec. Elements of this structure are filled in by a parser
92 (either parse_linespec or some other function). The structure is
93 then converted into SALs by convert_linespec_to_sals. */
97 /* An explicit location describing the SaLs. */
98 struct explicit_location explicit_loc
{};
100 /* The list of symtabs to search to which to limit the search.
102 If explicit.SOURCE_FILENAME is NULL (no user-specified filename),
103 FILE_SYMTABS should contain one single NULL member. This will cause the
104 code to use the default symtab. */
105 std::vector
<symtab
*> file_symtabs
;
107 /* A list of matching function symbols and minimal symbols. Both lists
108 may be empty if no matching symbols were found. */
109 std::vector
<block_symbol
> function_symbols
;
110 std::vector
<bound_minimal_symbol
> minimal_symbols
;
112 /* A structure of matching label symbols and the corresponding
113 function symbol in which the label was found. Both may be empty
114 or both must be non-empty. */
117 std::vector
<block_symbol
> label_symbols
;
118 std::vector
<block_symbol
> function_symbols
;
122 /* A canonical linespec represented as a symtab-related string.
124 Each entry represents the "SYMTAB:SUFFIX" linespec string.
125 SYMTAB can be converted for example by symtab_to_fullname or
126 symtab_to_filename_for_display as needed. */
128 struct linespec_canonical_name
130 /* Remaining text part of the linespec string. */
133 /* If NULL then SUFFIX is the whole linespec string. */
134 struct symtab
*symtab
;
137 /* An instance of this is used to keep all state while linespec
138 operates. This instance is passed around as a 'this' pointer to
139 the various implementation methods. */
141 struct linespec_state
143 /* The language in use during linespec processing. */
144 const struct language_defn
*language
;
146 /* The program space as seen when the module was entered. */
147 struct program_space
*program_space
;
149 /* If not NULL, the search is restricted to just this program
151 struct program_space
*search_pspace
;
153 /* The default symtab to use, if no other symtab is specified. */
154 struct symtab
*default_symtab
;
156 /* The default line to use. */
159 /* The 'funfirstline' value that was passed in to decode_line_1 or
163 /* Nonzero if we are running in 'list' mode; see decode_line_list. */
166 /* The 'canonical' value passed to decode_line_full, or NULL. */
167 struct linespec_result
*canonical
;
169 /* Canonical strings that mirror the std::vector<symtab_and_line> result. */
170 struct linespec_canonical_name
*canonical_names
;
172 /* This is a set of address_entry objects which is used to prevent
173 duplicate symbols from being entered into the result. */
176 /* Are we building a linespec? */
180 /* This is a helper object that is used when collecting symbols into a
185 /* The linespec object in use. */
186 struct linespec_state
*state
;
188 /* A list of symtabs to which to restrict matches. */
189 const std::vector
<symtab
*> *file_symtabs
;
191 /* The result being accumulated. */
194 std::vector
<block_symbol
> *symbols
;
195 std::vector
<bound_minimal_symbol
> *minimal_symbols
;
198 /* Possibly add a symbol to the results. */
199 virtual bool add_symbol (block_symbol
*bsym
);
203 collect_info::add_symbol (block_symbol
*bsym
)
205 /* In list mode, add all matching symbols, regardless of class.
206 This allows the user to type "list a_global_variable". */
207 if (bsym
->symbol
->aclass () == LOC_BLOCK
|| this->state
->list_mode
)
208 this->result
.symbols
->push_back (*bsym
);
210 /* Continue iterating. */
214 /* Custom collect_info for symbol_searcher. */
216 struct symbol_searcher_collect_info
219 bool add_symbol (block_symbol
*bsym
) override
221 /* Add everything. */
222 this->result
.symbols
->push_back (*bsym
);
224 /* Continue iterating. */
231 enum linespec_token_type
236 /* A colon "separator" */
248 /* EOI (end of input) */
255 /* List of keywords. This is NULL-terminated so that it can be used
256 as enum completer. */
257 const char * const linespec_keywords
[] = { "if", "thread", "task", "-force-condition", NULL
};
258 #define IF_KEYWORD_INDEX 0
259 #define FORCE_KEYWORD_INDEX 3
261 /* A token of the linespec lexer */
263 struct linespec_token
265 /* The type of the token */
266 linespec_token_type type
;
268 /* Data for the token */
271 /* A string, given as a stoken */
272 struct stoken string
;
279 #define LS_TOKEN_STOKEN(TOK) (TOK).data.string
280 #define LS_TOKEN_KEYWORD(TOK) (TOK).data.keyword
282 /* An instance of the linespec parser. */
284 struct linespec_parser
286 linespec_parser (int flags
, const struct language_defn
*language
,
287 struct program_space
*search_pspace
,
288 struct symtab
*default_symtab
,
290 struct linespec_result
*canonical
);
294 DISABLE_COPY_AND_ASSIGN (linespec_parser
);
296 /* Lexer internal data */
299 /* Save head of input stream. */
300 const char *saved_arg
;
302 /* Head of the input stream. */
304 #define PARSER_STREAM(P) ((P)->lexer.stream)
306 /* The current token. */
307 linespec_token current
;
310 /* Is the entire linespec quote-enclosed? */
311 int is_quote_enclosed
= 0;
313 /* The state of the parse. */
314 struct linespec_state state
{};
315 #define PARSER_STATE(PPTR) (&(PPTR)->state)
317 /* The result of the parse. */
319 #define PARSER_RESULT(PPTR) (&(PPTR)->result)
321 /* What the parser believes the current word point should complete
323 linespec_complete_what complete_what
= linespec_complete_what::NOTHING
;
325 /* The completion word point. The parser advances this as it skips
326 tokens. At some point the input string will end or parsing will
327 fail, and then we attempt completion at the captured completion
328 word point, interpreting the string at completion_word as
330 const char *completion_word
= nullptr;
332 /* If the current token was a quoted string, then this is the
333 quoting character (either " or '). */
334 int completion_quote_char
= 0;
336 /* If the current token was a quoted string, then this points at the
337 end of the quoted string. */
338 const char *completion_quote_end
= nullptr;
340 /* If parsing for completion, then this points at the completion
341 tracker. Otherwise, this is NULL. */
342 struct completion_tracker
*completion_tracker
= nullptr;
345 /* A convenience macro for accessing the explicit location result of
347 #define PARSER_EXPLICIT(PPTR) (&PARSER_RESULT ((PPTR))->explicit_loc)
349 /* Prototypes for local functions. */
351 static void iterate_over_file_blocks
352 (struct symtab
*symtab
, const lookup_name_info
&name
,
354 gdb::function_view
<symbol_found_callback_ftype
> callback
);
356 static void initialize_defaults (struct symtab
**default_symtab
,
359 CORE_ADDR
linespec_expression_to_pc (const char **exp_ptr
);
361 static std::vector
<symtab_and_line
> decode_objc (struct linespec_state
*self
,
365 static std::vector
<symtab
*> symtabs_from_filename
366 (const char *, struct program_space
*pspace
);
368 static std::vector
<block_symbol
> find_label_symbols
369 (struct linespec_state
*self
,
370 const std::vector
<block_symbol
> &function_symbols
,
371 std::vector
<block_symbol
> *label_funcs_ret
,
372 const char *name
, bool completion_mode
= false);
374 static void find_linespec_symbols (struct linespec_state
*self
,
375 const std::vector
<symtab
*> &file_symtabs
,
377 symbol_name_match_type name_match_type
,
378 std::vector
<block_symbol
> *symbols
,
379 std::vector
<bound_minimal_symbol
> *minsyms
);
381 static struct line_offset
382 linespec_parse_variable (struct linespec_state
*self
,
383 const char *variable
);
385 static int symbol_to_sal (struct symtab_and_line
*result
,
386 int funfirstline
, struct symbol
*sym
);
388 static void add_matching_symbols_to_info (const char *name
,
389 symbol_name_match_type name_match_type
,
390 enum search_domain search_domain
,
391 struct collect_info
*info
,
392 struct program_space
*pspace
);
394 static void add_all_symbol_names_from_pspace
395 (struct collect_info
*info
, struct program_space
*pspace
,
396 const std::vector
<const char *> &names
, enum search_domain search_domain
);
398 static std::vector
<symtab
*>
399 collect_symtabs_from_filename (const char *file
,
400 struct program_space
*pspace
);
402 static std::vector
<symtab_and_line
> decode_digits_ordinary
403 (struct linespec_state
*self
,
406 linetable_entry
**best_entry
);
408 static std::vector
<symtab_and_line
> decode_digits_list_mode
409 (struct linespec_state
*self
,
411 struct symtab_and_line val
);
413 static void minsym_found (struct linespec_state
*self
, struct objfile
*objfile
,
414 struct minimal_symbol
*msymbol
,
415 std::vector
<symtab_and_line
> *result
);
417 static bool compare_symbols (const block_symbol
&a
, const block_symbol
&b
);
419 static bool compare_msymbols (const bound_minimal_symbol
&a
,
420 const bound_minimal_symbol
&b
);
422 /* Permitted quote characters for the parser. This is different from the
423 completer's quote characters to allow backward compatibility with the
425 static const char linespec_quote_characters
[] = "\"\'";
427 /* Lexer functions. */
429 /* Lex a number from the input in PARSER. This only supports
432 Return true if input is decimal numbers. Return false if not. */
435 linespec_lexer_lex_number (linespec_parser
*parser
, linespec_token
*tokenp
)
437 tokenp
->type
= LSTOKEN_NUMBER
;
438 LS_TOKEN_STOKEN (*tokenp
).length
= 0;
439 LS_TOKEN_STOKEN (*tokenp
).ptr
= PARSER_STREAM (parser
);
441 /* Keep any sign at the start of the stream. */
442 if (*PARSER_STREAM (parser
) == '+' || *PARSER_STREAM (parser
) == '-')
444 ++LS_TOKEN_STOKEN (*tokenp
).length
;
445 ++(PARSER_STREAM (parser
));
448 while (isdigit (*PARSER_STREAM (parser
)))
450 ++LS_TOKEN_STOKEN (*tokenp
).length
;
451 ++(PARSER_STREAM (parser
));
454 /* If the next character in the input buffer is not a space, comma,
455 quote, or colon, this input does not represent a number. */
456 if (*PARSER_STREAM (parser
) != '\0'
457 && !isspace (*PARSER_STREAM (parser
)) && *PARSER_STREAM (parser
) != ','
458 && *PARSER_STREAM (parser
) != ':'
459 && !strchr (linespec_quote_characters
, *PARSER_STREAM (parser
)))
461 PARSER_STREAM (parser
) = LS_TOKEN_STOKEN (*tokenp
).ptr
;
468 /* See linespec.h. */
471 linespec_lexer_lex_keyword (const char *p
)
477 for (i
= 0; linespec_keywords
[i
] != NULL
; ++i
)
479 int len
= strlen (linespec_keywords
[i
]);
483 - "thread" or "task" and the next character is
484 whitespace, we may have found a keyword. It is only a
485 keyword if it is not followed by another keyword.
487 - "-force-condition", the next character may be EOF
488 since this keyword does not take any arguments. Otherwise,
489 it should be followed by a keyword.
491 - "if", ALWAYS stop the lexer, since it is not possible to
492 predict what is going to appear in the condition, which can
493 only be parsed after SaLs have been found. */
494 if (strncmp (p
, linespec_keywords
[i
], len
) == 0)
498 if (i
== FORCE_KEYWORD_INDEX
&& p
[len
] == '\0')
499 return linespec_keywords
[i
];
501 if (!isspace (p
[len
]))
504 if (i
== FORCE_KEYWORD_INDEX
)
508 for (j
= 0; linespec_keywords
[j
] != NULL
; ++j
)
510 int nextlen
= strlen (linespec_keywords
[j
]);
512 if (strncmp (p
, linespec_keywords
[j
], nextlen
) == 0
513 && isspace (p
[nextlen
]))
514 return linespec_keywords
[i
];
517 else if (i
!= IF_KEYWORD_INDEX
)
519 /* We matched a "thread" or "task". */
522 for (j
= 0; linespec_keywords
[j
] != NULL
; ++j
)
524 int nextlen
= strlen (linespec_keywords
[j
]);
526 if (strncmp (p
, linespec_keywords
[j
], nextlen
) == 0
527 && isspace (p
[nextlen
]))
532 return linespec_keywords
[i
];
540 /* See description in linespec.h. */
543 is_ada_operator (const char *string
)
545 const struct ada_opname_map
*mapping
;
547 for (mapping
= ada_opname_table
;
548 mapping
->encoded
!= NULL
549 && !startswith (string
, mapping
->decoded
); ++mapping
)
552 return mapping
->decoded
== NULL
? 0 : strlen (mapping
->decoded
);
555 /* Find QUOTE_CHAR in STRING, accounting for the ':' terminal. Return
556 the location of QUOTE_CHAR, or NULL if not found. */
559 skip_quote_char (const char *string
, char quote_char
)
561 const char *p
, *last
;
563 p
= last
= find_toplevel_char (string
, quote_char
);
564 while (p
&& *p
!= '\0' && *p
!= ':')
566 p
= find_toplevel_char (p
, quote_char
);
574 /* Make a writable copy of the string given in TOKEN, trimming
575 any trailing whitespace. */
577 static gdb::unique_xmalloc_ptr
<char>
578 copy_token_string (linespec_token token
)
582 if (token
.type
== LSTOKEN_KEYWORD
)
583 return make_unique_xstrdup (LS_TOKEN_KEYWORD (token
));
585 str
= LS_TOKEN_STOKEN (token
).ptr
;
586 s
= remove_trailing_whitespace (str
, str
+ LS_TOKEN_STOKEN (token
).length
);
588 return gdb::unique_xmalloc_ptr
<char> (savestring (str
, s
- str
));
591 /* Does P represent the end of a quote-enclosed linespec? */
594 is_closing_quote_enclosed (const char *p
)
596 if (strchr (linespec_quote_characters
, *p
))
598 p
= skip_spaces ((char *) p
);
599 return (*p
== '\0' || linespec_lexer_lex_keyword (p
));
602 /* Find the end of the parameter list that starts with *INPUT.
603 This helper function assists with lexing string segments
604 which might contain valid (non-terminating) commas. */
607 find_parameter_list_end (const char *input
)
609 char end_char
, start_char
;
614 if (start_char
== '(')
616 else if (start_char
== '<')
625 if (*p
== start_char
)
627 else if (*p
== end_char
)
641 /* If the [STRING, STRING_LEN) string ends with what looks like a
642 keyword, return the keyword start offset in STRING. Return -1
646 string_find_incomplete_keyword_at_end (const char * const *keywords
,
647 const char *string
, size_t string_len
)
649 const char *end
= string
+ string_len
;
652 while (p
> string
&& *p
!= ' ')
657 size_t len
= end
- p
;
658 for (size_t i
= 0; keywords
[i
] != NULL
; ++i
)
659 if (strncmp (keywords
[i
], p
, len
) == 0)
666 /* Lex a string from the input in PARSER. */
668 static linespec_token
669 linespec_lexer_lex_string (linespec_parser
*parser
)
671 linespec_token token
;
672 const char *start
= PARSER_STREAM (parser
);
674 token
.type
= LSTOKEN_STRING
;
676 /* If the input stream starts with a quote character, skip to the next
677 quote character, regardless of the content. */
678 if (strchr (linespec_quote_characters
, *PARSER_STREAM (parser
)))
681 char quote_char
= *PARSER_STREAM (parser
);
683 /* Special case: Ada operators. */
684 if (PARSER_STATE (parser
)->language
->la_language
== language_ada
685 && quote_char
== '\"')
687 int len
= is_ada_operator (PARSER_STREAM (parser
));
691 /* The input is an Ada operator. Return the quoted string
693 LS_TOKEN_STOKEN (token
).ptr
= PARSER_STREAM (parser
);
694 LS_TOKEN_STOKEN (token
).length
= len
;
695 PARSER_STREAM (parser
) += len
;
699 /* The input does not represent an Ada operator -- fall through
700 to normal quoted string handling. */
703 /* Skip past the beginning quote. */
704 ++(PARSER_STREAM (parser
));
706 /* Mark the start of the string. */
707 LS_TOKEN_STOKEN (token
).ptr
= PARSER_STREAM (parser
);
709 /* Skip to the ending quote. */
710 end
= skip_quote_char (PARSER_STREAM (parser
), quote_char
);
712 /* This helps the completer mode decide whether we have a
714 parser
->completion_quote_char
= quote_char
;
715 parser
->completion_quote_end
= end
;
717 /* Error if the input did not terminate properly, unless in
721 if (parser
->completion_tracker
== NULL
)
722 error (_("unmatched quote"));
724 /* In completion mode, we'll try to complete the incomplete
726 token
.type
= LSTOKEN_STRING
;
727 while (*PARSER_STREAM (parser
) != '\0')
728 PARSER_STREAM (parser
)++;
729 LS_TOKEN_STOKEN (token
).length
= PARSER_STREAM (parser
) - 1 - start
;
733 /* Skip over the ending quote and mark the length of the string. */
734 PARSER_STREAM (parser
) = (char *) ++end
;
735 LS_TOKEN_STOKEN (token
).length
= PARSER_STREAM (parser
) - 2 - start
;
742 /* Otherwise, only identifier characters are permitted.
743 Spaces are the exception. In general, we keep spaces,
744 but only if the next characters in the input do not resolve
745 to one of the keywords.
747 This allows users to forgo quoting CV-qualifiers, template arguments,
748 and similar common language constructs. */
752 if (isspace (*PARSER_STREAM (parser
)))
754 p
= skip_spaces (PARSER_STREAM (parser
));
755 /* When we get here we know we've found something followed by
756 a space (we skip over parens and templates below).
757 So if we find a keyword now, we know it is a keyword and not,
758 say, a function name. */
759 if (linespec_lexer_lex_keyword (p
) != NULL
)
761 LS_TOKEN_STOKEN (token
).ptr
= start
;
762 LS_TOKEN_STOKEN (token
).length
763 = PARSER_STREAM (parser
) - start
;
767 /* Advance past the whitespace. */
768 PARSER_STREAM (parser
) = p
;
771 /* If the next character is EOI or (single) ':', the
772 string is complete; return the token. */
773 if (*PARSER_STREAM (parser
) == 0)
775 LS_TOKEN_STOKEN (token
).ptr
= start
;
776 LS_TOKEN_STOKEN (token
).length
= PARSER_STREAM (parser
) - start
;
779 else if (PARSER_STREAM (parser
)[0] == ':')
781 /* Do not tokenize the C++ scope operator. */
782 if (PARSER_STREAM (parser
)[1] == ':')
783 ++(PARSER_STREAM (parser
));
785 /* Do not tokenize ABI tags such as "[abi:cxx11]". */
786 else if (PARSER_STREAM (parser
) - start
> 4
787 && startswith (PARSER_STREAM (parser
) - 4, "[abi"))
792 /* Do not tokenify if the input length so far is one
793 (i.e, a single-letter drive name) and the next character
794 is a directory separator. This allows Windows-style
795 paths to be recognized as filenames without quoting it. */
796 else if ((PARSER_STREAM (parser
) - start
) != 1
797 || !IS_DIR_SEPARATOR (PARSER_STREAM (parser
)[1]))
799 LS_TOKEN_STOKEN (token
).ptr
= start
;
800 LS_TOKEN_STOKEN (token
).length
801 = PARSER_STREAM (parser
) - start
;
805 /* Special case: permit quote-enclosed linespecs. */
806 else if (parser
->is_quote_enclosed
807 && strchr (linespec_quote_characters
,
808 *PARSER_STREAM (parser
))
809 && is_closing_quote_enclosed (PARSER_STREAM (parser
)))
811 LS_TOKEN_STOKEN (token
).ptr
= start
;
812 LS_TOKEN_STOKEN (token
).length
= PARSER_STREAM (parser
) - start
;
815 /* Because commas may terminate a linespec and appear in
816 the middle of valid string input, special cases for
817 '<' and '(' are necessary. */
818 else if (*PARSER_STREAM (parser
) == '<'
819 || *PARSER_STREAM (parser
) == '(')
821 /* Don't interpret 'operator<' / 'operator<<' as a
822 template parameter list though. */
823 if (*PARSER_STREAM (parser
) == '<'
824 && (PARSER_STATE (parser
)->language
->la_language
826 && (PARSER_STREAM (parser
) - start
) >= CP_OPERATOR_LEN
)
828 const char *op
= PARSER_STREAM (parser
);
830 while (op
> start
&& isspace (op
[-1]))
832 if (op
- start
>= CP_OPERATOR_LEN
)
834 op
-= CP_OPERATOR_LEN
;
835 if (strncmp (op
, CP_OPERATOR_STR
, CP_OPERATOR_LEN
) == 0
837 || !(isalnum (op
[-1]) || op
[-1] == '_')))
839 /* This is an operator name. Keep going. */
840 ++(PARSER_STREAM (parser
));
841 if (*PARSER_STREAM (parser
) == '<')
842 ++(PARSER_STREAM (parser
));
848 const char *end
= find_parameter_list_end (PARSER_STREAM (parser
));
849 PARSER_STREAM (parser
) = end
;
851 /* Don't loop around to the normal \0 case above because
852 we don't want to misinterpret a potential keyword at
853 the end of the token when the string isn't
854 "()<>"-balanced. This handles "b
855 function(thread<tab>" in completion mode. */
858 LS_TOKEN_STOKEN (token
).ptr
= start
;
859 LS_TOKEN_STOKEN (token
).length
860 = PARSER_STREAM (parser
) - start
;
866 /* Commas are terminators, but not if they are part of an
868 else if (*PARSER_STREAM (parser
) == ',')
870 if ((PARSER_STATE (parser
)->language
->la_language
872 && (PARSER_STREAM (parser
) - start
) > CP_OPERATOR_LEN
)
874 const char *op
= strstr (start
, CP_OPERATOR_STR
);
876 if (op
!= NULL
&& is_operator_name (op
))
878 /* This is an operator name. Keep going. */
879 ++(PARSER_STREAM (parser
));
884 /* Comma terminates the string. */
885 LS_TOKEN_STOKEN (token
).ptr
= start
;
886 LS_TOKEN_STOKEN (token
).length
= PARSER_STREAM (parser
) - start
;
890 /* Advance the stream. */
891 gdb_assert (*(PARSER_STREAM (parser
)) != '\0');
892 ++(PARSER_STREAM (parser
));
899 /* Lex a single linespec token from PARSER. */
901 static linespec_token
902 linespec_lexer_lex_one (linespec_parser
*parser
)
906 if (parser
->lexer
.current
.type
== LSTOKEN_CONSUMED
)
908 /* Skip any whitespace. */
909 PARSER_STREAM (parser
) = skip_spaces (PARSER_STREAM (parser
));
911 /* Check for a keyword, they end the linespec. */
912 keyword
= linespec_lexer_lex_keyword (PARSER_STREAM (parser
));
915 parser
->lexer
.current
.type
= LSTOKEN_KEYWORD
;
916 LS_TOKEN_KEYWORD (parser
->lexer
.current
) = keyword
;
917 /* We do not advance the stream here intentionally:
918 we would like lexing to stop when a keyword is seen.
920 PARSER_STREAM (parser) += strlen (keyword); */
922 return parser
->lexer
.current
;
925 /* Handle other tokens. */
926 switch (*PARSER_STREAM (parser
))
929 parser
->lexer
.current
.type
= LSTOKEN_EOI
;
933 case '0': case '1': case '2': case '3': case '4':
934 case '5': case '6': case '7': case '8': case '9':
935 if (!linespec_lexer_lex_number (parser
, &(parser
->lexer
.current
)))
936 parser
->lexer
.current
= linespec_lexer_lex_string (parser
);
940 /* If we have a scope operator, lex the input as a string.
941 Otherwise, return LSTOKEN_COLON. */
942 if (PARSER_STREAM (parser
)[1] == ':')
943 parser
->lexer
.current
= linespec_lexer_lex_string (parser
);
946 parser
->lexer
.current
.type
= LSTOKEN_COLON
;
947 ++(PARSER_STREAM (parser
));
951 case '\'': case '\"':
952 /* Special case: permit quote-enclosed linespecs. */
953 if (parser
->is_quote_enclosed
954 && is_closing_quote_enclosed (PARSER_STREAM (parser
)))
956 ++(PARSER_STREAM (parser
));
957 parser
->lexer
.current
.type
= LSTOKEN_EOI
;
960 parser
->lexer
.current
= linespec_lexer_lex_string (parser
);
964 parser
->lexer
.current
.type
= LSTOKEN_COMMA
;
965 LS_TOKEN_STOKEN (parser
->lexer
.current
).ptr
966 = PARSER_STREAM (parser
);
967 LS_TOKEN_STOKEN (parser
->lexer
.current
).length
= 1;
968 ++(PARSER_STREAM (parser
));
972 /* If the input is not a number, it must be a string.
973 [Keywords were already considered above.] */
974 parser
->lexer
.current
= linespec_lexer_lex_string (parser
);
979 return parser
->lexer
.current
;
982 /* Consume the current token and return the next token in PARSER's
983 input stream. Also advance the completion word for completion
986 static linespec_token
987 linespec_lexer_consume_token (linespec_parser
*parser
)
989 gdb_assert (parser
->lexer
.current
.type
!= LSTOKEN_EOI
);
991 bool advance_word
= (parser
->lexer
.current
.type
!= LSTOKEN_STRING
992 || *PARSER_STREAM (parser
) != '\0');
994 /* If we're moving past a string to some other token, it must be the
995 quote was terminated. */
996 if (parser
->completion_quote_char
)
998 gdb_assert (parser
->lexer
.current
.type
== LSTOKEN_STRING
);
1000 /* If the string was the last (non-EOI) token, we're past the
1001 quote, but remember that for later. */
1002 if (*PARSER_STREAM (parser
) != '\0')
1004 parser
->completion_quote_char
= '\0';
1005 parser
->completion_quote_end
= NULL
;;
1009 parser
->lexer
.current
.type
= LSTOKEN_CONSUMED
;
1010 linespec_lexer_lex_one (parser
);
1012 if (parser
->lexer
.current
.type
== LSTOKEN_STRING
)
1014 /* Advance the completion word past a potential initial
1016 parser
->completion_word
= LS_TOKEN_STOKEN (parser
->lexer
.current
).ptr
;
1018 else if (advance_word
)
1020 /* Advance the completion word past any whitespace. */
1021 parser
->completion_word
= PARSER_STREAM (parser
);
1024 return parser
->lexer
.current
;
1027 /* Return the next token without consuming the current token. */
1029 static linespec_token
1030 linespec_lexer_peek_token (linespec_parser
*parser
)
1032 linespec_token next
;
1033 const char *saved_stream
= PARSER_STREAM (parser
);
1034 linespec_token saved_token
= parser
->lexer
.current
;
1035 int saved_completion_quote_char
= parser
->completion_quote_char
;
1036 const char *saved_completion_quote_end
= parser
->completion_quote_end
;
1037 const char *saved_completion_word
= parser
->completion_word
;
1039 next
= linespec_lexer_consume_token (parser
);
1040 PARSER_STREAM (parser
) = saved_stream
;
1041 parser
->lexer
.current
= saved_token
;
1042 parser
->completion_quote_char
= saved_completion_quote_char
;
1043 parser
->completion_quote_end
= saved_completion_quote_end
;
1044 parser
->completion_word
= saved_completion_word
;
1048 /* Helper functions. */
1050 /* Add SAL to SALS, and also update SELF->CANONICAL_NAMES to reflect
1051 the new sal, if needed. If not NULL, SYMNAME is the name of the
1052 symbol to use when constructing the new canonical name.
1054 If LITERAL_CANONICAL is non-zero, SYMNAME will be used as the
1055 canonical name for the SAL. */
1058 add_sal_to_sals (struct linespec_state
*self
,
1059 std::vector
<symtab_and_line
> *sals
,
1060 struct symtab_and_line
*sal
,
1061 const char *symname
, int literal_canonical
)
1063 sals
->push_back (*sal
);
1065 if (self
->canonical
)
1067 struct linespec_canonical_name
*canonical
;
1069 self
->canonical_names
= XRESIZEVEC (struct linespec_canonical_name
,
1070 self
->canonical_names
,
1072 canonical
= &self
->canonical_names
[sals
->size () - 1];
1073 if (!literal_canonical
&& sal
->symtab
)
1075 symtab_to_fullname (sal
->symtab
);
1077 /* Note that the filter doesn't have to be a valid linespec
1078 input. We only apply the ":LINE" treatment to Ada for
1080 if (symname
!= NULL
&& sal
->line
!= 0
1081 && self
->language
->la_language
== language_ada
)
1082 canonical
->suffix
= xstrprintf ("%s:%d", symname
,
1083 sal
->line
).release ();
1084 else if (symname
!= NULL
)
1085 canonical
->suffix
= xstrdup (symname
);
1087 canonical
->suffix
= xstrprintf ("%d", sal
->line
).release ();
1088 canonical
->symtab
= sal
->symtab
;
1092 if (symname
!= NULL
)
1093 canonical
->suffix
= xstrdup (symname
);
1095 canonical
->suffix
= xstrdup ("<unknown>");
1096 canonical
->symtab
= NULL
;
1101 /* A hash function for address_entry. */
1104 hash_address_entry (const void *p
)
1106 const struct address_entry
*aep
= (const struct address_entry
*) p
;
1109 hash
= iterative_hash_object (aep
->pspace
, 0);
1110 return iterative_hash_object (aep
->addr
, hash
);
1113 /* An equality function for address_entry. */
1116 eq_address_entry (const void *a
, const void *b
)
1118 const struct address_entry
*aea
= (const struct address_entry
*) a
;
1119 const struct address_entry
*aeb
= (const struct address_entry
*) b
;
1121 return aea
->pspace
== aeb
->pspace
&& aea
->addr
== aeb
->addr
;
1124 /* Check whether the address, represented by PSPACE and ADDR, is
1125 already in the set. If so, return 0. Otherwise, add it and return
1129 maybe_add_address (htab_t set
, struct program_space
*pspace
, CORE_ADDR addr
)
1131 struct address_entry e
, *p
;
1136 slot
= htab_find_slot (set
, &e
, INSERT
);
1140 p
= XNEW (struct address_entry
);
1141 memcpy (p
, &e
, sizeof (struct address_entry
));
1147 /* A helper that walks over all matching symtabs in all objfiles and
1148 calls CALLBACK for each symbol matching NAME. If SEARCH_PSPACE is
1149 not NULL, then the search is restricted to just that program
1150 space. If INCLUDE_INLINE is true then symbols representing
1151 inlined instances of functions will be included in the result. */
1154 iterate_over_all_matching_symtabs
1155 (struct linespec_state
*state
,
1156 const lookup_name_info
&lookup_name
,
1157 const domain_enum name_domain
,
1158 enum search_domain search_domain
,
1159 struct program_space
*search_pspace
, bool include_inline
,
1160 gdb::function_view
<symbol_found_callback_ftype
> callback
)
1162 for (struct program_space
*pspace
: program_spaces
)
1164 if (search_pspace
!= NULL
&& search_pspace
!= pspace
)
1166 if (pspace
->executing_startup
)
1169 set_current_program_space (pspace
);
1171 for (objfile
*objfile
: current_program_space
->objfiles ())
1173 objfile
->expand_symtabs_matching (NULL
, &lookup_name
, NULL
, NULL
,
1174 (SEARCH_GLOBAL_BLOCK
1175 | SEARCH_STATIC_BLOCK
),
1179 for (compunit_symtab
*cu
: objfile
->compunits ())
1181 struct symtab
*symtab
= cu
->primary_filetab ();
1183 iterate_over_file_blocks (symtab
, lookup_name
, name_domain
,
1188 const struct block
*block
;
1190 const blockvector
*bv
= symtab
->compunit ()->blockvector ();
1192 for (i
= FIRST_LOCAL_BLOCK
; i
< bv
->num_blocks (); i
++)
1194 block
= bv
->block (i
);
1195 state
->language
->iterate_over_symbols
1196 (block
, lookup_name
, name_domain
,
1197 [&] (block_symbol
*bsym
)
1199 /* Restrict calls to CALLBACK to symbols
1200 representing inline symbols only. */
1201 if (bsym
->symbol
->is_inlined ())
1202 return callback (bsym
);
1212 /* Returns the block to be used for symbol searches from
1213 the current location. */
1215 static const struct block
*
1216 get_current_search_block (void)
1218 /* get_selected_block can change the current language when there is
1219 no selected frame yet. */
1220 scoped_restore_current_language save_language
;
1221 return get_selected_block (0);
1224 /* Iterate over static and global blocks. */
1227 iterate_over_file_blocks
1228 (struct symtab
*symtab
, const lookup_name_info
&name
,
1229 domain_enum domain
, gdb::function_view
<symbol_found_callback_ftype
> callback
)
1231 const struct block
*block
;
1233 for (block
= symtab
->compunit ()->blockvector ()->static_block ();
1235 block
= block
->superblock ())
1236 current_language
->iterate_over_symbols (block
, name
, domain
, callback
);
1239 /* A helper for find_method. This finds all methods in type T of
1240 language T_LANG which match NAME. It adds matching symbol names to
1241 RESULT_NAMES, and adds T's direct superclasses to SUPERCLASSES. */
1244 find_methods (struct type
*t
, enum language t_lang
, const char *name
,
1245 std::vector
<const char *> *result_names
,
1246 std::vector
<struct type
*> *superclasses
)
1249 const char *class_name
= t
->name ();
1251 /* Ignore this class if it doesn't have a name. This is ugly, but
1252 unless we figure out how to get the physname without the name of
1253 the class, then the loop can't do any good. */
1257 lookup_name_info
lookup_name (name
, symbol_name_match_type::FULL
);
1258 symbol_name_matcher_ftype
*symbol_name_compare
1259 = language_def (t_lang
)->get_symbol_name_matcher (lookup_name
);
1261 t
= check_typedef (t
);
1263 /* Loop over each method name. At this level, all overloads of a name
1264 are counted as a single name. There is an inner loop which loops over
1267 for (method_counter
= TYPE_NFN_FIELDS (t
) - 1;
1268 method_counter
>= 0;
1271 const char *method_name
= TYPE_FN_FIELDLIST_NAME (t
, method_counter
);
1273 if (symbol_name_compare (method_name
, lookup_name
, NULL
))
1277 for (field_counter
= (TYPE_FN_FIELDLIST_LENGTH (t
, method_counter
)
1283 const char *phys_name
;
1285 f
= TYPE_FN_FIELDLIST1 (t
, method_counter
);
1286 if (TYPE_FN_FIELD_STUB (f
, field_counter
))
1288 phys_name
= TYPE_FN_FIELD_PHYSNAME (f
, field_counter
);
1289 result_names
->push_back (phys_name
);
1295 for (ibase
= 0; ibase
< TYPE_N_BASECLASSES (t
); ibase
++)
1296 superclasses
->push_back (TYPE_BASECLASS (t
, ibase
));
1299 /* The string equivalent of find_toplevel_char. Returns a pointer
1300 to the location of NEEDLE in HAYSTACK, ignoring any occurrences
1301 inside "()" and "<>". Returns NULL if NEEDLE was not found. */
1304 find_toplevel_string (const char *haystack
, const char *needle
)
1306 const char *s
= haystack
;
1310 s
= find_toplevel_char (s
, *needle
);
1314 /* Found first char in HAYSTACK; check rest of string. */
1315 if (startswith (s
, needle
))
1318 /* Didn't find it; loop over HAYSTACK, looking for the next
1319 instance of the first character of NEEDLE. */
1323 while (s
!= NULL
&& *s
!= '\0');
1325 /* NEEDLE was not found in HAYSTACK. */
1329 /* Convert CANONICAL to its string representation using
1330 symtab_to_fullname for SYMTAB. */
1333 canonical_to_fullform (const struct linespec_canonical_name
*canonical
)
1335 if (canonical
->symtab
== NULL
)
1336 return canonical
->suffix
;
1338 return string_printf ("%s:%s", symtab_to_fullname (canonical
->symtab
),
1342 /* Given FILTERS, a list of canonical names, filter the sals in RESULT
1343 and store the result in SELF->CANONICAL. */
1346 filter_results (struct linespec_state
*self
,
1347 std::vector
<symtab_and_line
> *result
,
1348 const std::vector
<const char *> &filters
)
1350 for (const char *name
: filters
)
1354 for (size_t j
= 0; j
< result
->size (); ++j
)
1356 const struct linespec_canonical_name
*canonical
;
1358 canonical
= &self
->canonical_names
[j
];
1359 std::string fullform
= canonical_to_fullform (canonical
);
1361 if (name
== fullform
)
1362 lsal
.sals
.push_back ((*result
)[j
]);
1365 if (!lsal
.sals
.empty ())
1367 lsal
.canonical
= xstrdup (name
);
1368 self
->canonical
->lsals
.push_back (std::move (lsal
));
1372 self
->canonical
->pre_expanded
= 0;
1375 /* Store RESULT into SELF->CANONICAL. */
1378 convert_results_to_lsals (struct linespec_state
*self
,
1379 std::vector
<symtab_and_line
> *result
)
1381 struct linespec_sals lsal
;
1383 lsal
.canonical
= NULL
;
1384 lsal
.sals
= std::move (*result
);
1385 self
->canonical
->lsals
.push_back (std::move (lsal
));
1388 /* A structure that contains two string representations of a struct
1389 linespec_canonical_name:
1390 - one where the symtab's fullname is used;
1391 - one where the filename followed the "set filename-display"
1394 struct decode_line_2_item
1396 decode_line_2_item (std::string
&&fullform_
, std::string
&&displayform_
,
1398 : fullform (std::move (fullform_
)),
1399 displayform (std::move (displayform_
)),
1400 selected (selected_
)
1404 /* The form using symtab_to_fullname. */
1405 std::string fullform
;
1407 /* The form using symtab_to_filename_for_display. */
1408 std::string displayform
;
1410 /* Field is initialized to zero and it is set to one if the user
1411 requested breakpoint for this entry. */
1412 unsigned int selected
: 1;
1415 /* Helper for std::sort to sort decode_line_2_item entries by
1416 DISPLAYFORM and secondarily by FULLFORM. */
1419 decode_line_2_compare_items (const decode_line_2_item
&a
,
1420 const decode_line_2_item
&b
)
1422 if (a
.displayform
!= b
.displayform
)
1423 return a
.displayform
< b
.displayform
;
1424 return a
.fullform
< b
.fullform
;
1427 /* Handle multiple results in RESULT depending on SELECT_MODE. This
1428 will either return normally, throw an exception on multiple
1429 results, or present a menu to the user. On return, the SALS vector
1430 in SELF->CANONICAL is set up properly. */
1433 decode_line_2 (struct linespec_state
*self
,
1434 std::vector
<symtab_and_line
> *result
,
1435 const char *select_mode
)
1440 std::vector
<const char *> filters
;
1441 std::vector
<struct decode_line_2_item
> items
;
1443 gdb_assert (select_mode
!= multiple_symbols_all
);
1444 gdb_assert (self
->canonical
!= NULL
);
1445 gdb_assert (!result
->empty ());
1447 /* Prepare ITEMS array. */
1448 for (i
= 0; i
< result
->size (); ++i
)
1450 const struct linespec_canonical_name
*canonical
;
1451 std::string displayform
;
1453 canonical
= &self
->canonical_names
[i
];
1454 gdb_assert (canonical
->suffix
!= NULL
);
1456 std::string fullform
= canonical_to_fullform (canonical
);
1458 if (canonical
->symtab
== NULL
)
1459 displayform
= canonical
->suffix
;
1462 const char *fn_for_display
;
1464 fn_for_display
= symtab_to_filename_for_display (canonical
->symtab
);
1465 displayform
= string_printf ("%s:%s", fn_for_display
,
1469 items
.emplace_back (std::move (fullform
), std::move (displayform
),
1473 /* Sort the list of method names. */
1474 std::sort (items
.begin (), items
.end (), decode_line_2_compare_items
);
1476 /* Remove entries with the same FULLFORM. */
1477 items
.erase (std::unique (items
.begin (), items
.end (),
1478 [] (const struct decode_line_2_item
&a
,
1479 const struct decode_line_2_item
&b
)
1481 return a
.fullform
== b
.fullform
;
1485 if (select_mode
== multiple_symbols_cancel
&& items
.size () > 1)
1486 error (_("canceled because the command is ambiguous\n"
1487 "See set/show multiple-symbol."));
1489 if (select_mode
== multiple_symbols_all
|| items
.size () == 1)
1491 convert_results_to_lsals (self
, result
);
1495 printf_unfiltered (_("[0] cancel\n[1] all\n"));
1496 for (i
= 0; i
< items
.size (); i
++)
1497 printf_unfiltered ("[%d] %s\n", i
+ 2, items
[i
].displayform
.c_str ());
1499 prompt
= getenv ("PS2");
1504 args
= command_line_input (prompt
, "overload-choice");
1506 if (args
== 0 || *args
== 0)
1507 error_no_arg (_("one or more choice numbers"));
1509 number_or_range_parser
parser (args
);
1510 while (!parser
.finished ())
1512 int num
= parser
.get_number ();
1515 error (_("canceled"));
1518 /* We intentionally make this result in a single breakpoint,
1519 contrary to what older versions of gdb did. The
1520 rationale is that this lets a user get the
1521 multiple_symbols_all behavior even with the 'ask'
1522 setting; and he can get separate breakpoints by entering
1523 "2-57" at the query. */
1524 convert_results_to_lsals (self
, result
);
1529 if (num
>= items
.size ())
1530 printf_unfiltered (_("No choice number %d.\n"), num
);
1533 struct decode_line_2_item
*item
= &items
[num
];
1535 if (!item
->selected
)
1537 filters
.push_back (item
->fullform
.c_str ());
1542 printf_unfiltered (_("duplicate request for %d ignored.\n"),
1548 filter_results (self
, result
, filters
);
1553 /* The parser of linespec itself. */
1555 /* Throw an appropriate error when SYMBOL is not found (optionally in
1558 static void ATTRIBUTE_NORETURN
1559 symbol_not_found_error (const char *symbol
, const char *filename
)
1564 if (!have_full_symbols ()
1565 && !have_partial_symbols ()
1566 && !have_minimal_symbols ())
1567 throw_error (NOT_FOUND_ERROR
,
1568 _("No symbol table is loaded. Use the \"file\" command."));
1570 /* If SYMBOL starts with '$', the user attempted to either lookup
1571 a function/variable in his code starting with '$' or an internal
1572 variable of that name. Since we do not know which, be concise and
1573 explain both possibilities. */
1577 throw_error (NOT_FOUND_ERROR
,
1578 _("Undefined convenience variable or function \"%s\" "
1579 "not defined in \"%s\"."), symbol
, filename
);
1581 throw_error (NOT_FOUND_ERROR
,
1582 _("Undefined convenience variable or function \"%s\" "
1583 "not defined."), symbol
);
1588 throw_error (NOT_FOUND_ERROR
,
1589 _("Function \"%s\" not defined in \"%s\"."),
1592 throw_error (NOT_FOUND_ERROR
,
1593 _("Function \"%s\" not defined."), symbol
);
1597 /* Throw an appropriate error when an unexpected token is encountered
1600 static void ATTRIBUTE_NORETURN
1601 unexpected_linespec_error (linespec_parser
*parser
)
1603 linespec_token token
;
1604 static const char * token_type_strings
[]
1605 = {"keyword", "colon", "string", "number", "comma", "end of input"};
1607 /* Get the token that generated the error. */
1608 token
= linespec_lexer_lex_one (parser
);
1610 /* Finally, throw the error. */
1611 if (token
.type
== LSTOKEN_STRING
|| token
.type
== LSTOKEN_NUMBER
1612 || token
.type
== LSTOKEN_KEYWORD
)
1614 gdb::unique_xmalloc_ptr
<char> string
= copy_token_string (token
);
1615 throw_error (GENERIC_ERROR
,
1616 _("malformed linespec error: unexpected %s, \"%s\""),
1617 token_type_strings
[token
.type
], string
.get ());
1620 throw_error (GENERIC_ERROR
,
1621 _("malformed linespec error: unexpected %s"),
1622 token_type_strings
[token
.type
]);
1625 /* Throw an undefined label error. */
1627 static void ATTRIBUTE_NORETURN
1628 undefined_label_error (const char *function
, const char *label
)
1630 if (function
!= NULL
)
1631 throw_error (NOT_FOUND_ERROR
,
1632 _("No label \"%s\" defined in function \"%s\"."),
1635 throw_error (NOT_FOUND_ERROR
,
1636 _("No label \"%s\" defined in current function."),
1640 /* Throw a source file not found error. */
1642 static void ATTRIBUTE_NORETURN
1643 source_file_not_found_error (const char *name
)
1645 throw_error (NOT_FOUND_ERROR
, _("No source file named %s."), name
);
1648 /* Unless at EIO, save the current stream position as completion word
1649 point, and consume the next token. */
1651 static linespec_token
1652 save_stream_and_consume_token (linespec_parser
*parser
)
1654 if (linespec_lexer_peek_token (parser
).type
!= LSTOKEN_EOI
)
1655 parser
->completion_word
= PARSER_STREAM (parser
);
1656 return linespec_lexer_consume_token (parser
);
1659 /* See description in linespec.h. */
1662 linespec_parse_line_offset (const char *string
)
1664 const char *start
= string
;
1665 struct line_offset line_offset
= {0, LINE_OFFSET_NONE
};
1669 line_offset
.sign
= LINE_OFFSET_PLUS
;
1672 else if (*string
== '-')
1674 line_offset
.sign
= LINE_OFFSET_MINUS
;
1678 if (*string
!= '\0' && !isdigit (*string
))
1679 error (_("malformed line offset: \"%s\""), start
);
1681 /* Right now, we only allow base 10 for offsets. */
1682 line_offset
.offset
= atoi (string
);
1686 /* In completion mode, if the user is still typing the number, there's
1687 no possible completion to offer. But if there's already input past
1688 the number, setup to expect NEXT. */
1691 set_completion_after_number (linespec_parser
*parser
,
1692 linespec_complete_what next
)
1694 if (*PARSER_STREAM (parser
) == ' ')
1696 parser
->completion_word
= skip_spaces (PARSER_STREAM (parser
) + 1);
1697 parser
->complete_what
= next
;
1701 parser
->completion_word
= PARSER_STREAM (parser
);
1702 parser
->complete_what
= linespec_complete_what::NOTHING
;
1706 /* Parse the basic_spec in PARSER's input. */
1709 linespec_parse_basic (linespec_parser
*parser
)
1711 gdb::unique_xmalloc_ptr
<char> name
;
1712 linespec_token token
;
1714 /* Get the next token. */
1715 token
= linespec_lexer_lex_one (parser
);
1717 /* If it is EOI or KEYWORD, issue an error. */
1718 if (token
.type
== LSTOKEN_KEYWORD
)
1720 parser
->complete_what
= linespec_complete_what::NOTHING
;
1721 unexpected_linespec_error (parser
);
1723 else if (token
.type
== LSTOKEN_EOI
)
1725 unexpected_linespec_error (parser
);
1727 /* If it is a LSTOKEN_NUMBER, we have an offset. */
1728 else if (token
.type
== LSTOKEN_NUMBER
)
1730 set_completion_after_number (parser
, linespec_complete_what::KEYWORD
);
1732 /* Record the line offset and get the next token. */
1733 name
= copy_token_string (token
);
1734 PARSER_EXPLICIT (parser
)->line_offset
1735 = linespec_parse_line_offset (name
.get ());
1737 /* Get the next token. */
1738 token
= linespec_lexer_consume_token (parser
);
1740 /* If the next token is a comma, stop parsing and return. */
1741 if (token
.type
== LSTOKEN_COMMA
)
1743 parser
->complete_what
= linespec_complete_what::NOTHING
;
1747 /* If the next token is anything but EOI or KEYWORD, issue
1749 if (token
.type
!= LSTOKEN_KEYWORD
&& token
.type
!= LSTOKEN_EOI
)
1750 unexpected_linespec_error (parser
);
1753 if (token
.type
== LSTOKEN_KEYWORD
|| token
.type
== LSTOKEN_EOI
)
1756 /* Next token must be LSTOKEN_STRING. */
1757 if (token
.type
!= LSTOKEN_STRING
)
1759 parser
->complete_what
= linespec_complete_what::NOTHING
;
1760 unexpected_linespec_error (parser
);
1763 /* The current token will contain the name of a function, method,
1765 name
= copy_token_string (token
);
1767 if (parser
->completion_tracker
!= NULL
)
1769 /* If the function name ends with a ":", then this may be an
1770 incomplete "::" scope operator instead of a label separator.
1773 which should expand to:
1776 Do a tentative completion assuming the later. If we find
1777 completions, advance the stream past the colon token and make
1778 it part of the function name/token. */
1780 if (!parser
->completion_quote_char
1781 && strcmp (PARSER_STREAM (parser
), ":") == 0)
1783 completion_tracker tmp_tracker
;
1784 const char *source_filename
1785 = PARSER_EXPLICIT (parser
)->source_filename
;
1786 symbol_name_match_type match_type
1787 = PARSER_EXPLICIT (parser
)->func_name_match_type
;
1789 linespec_complete_function (tmp_tracker
,
1790 parser
->completion_word
,
1794 if (tmp_tracker
.have_completions ())
1796 PARSER_STREAM (parser
)++;
1797 LS_TOKEN_STOKEN (token
).length
++;
1799 name
.reset (savestring (parser
->completion_word
,
1800 (PARSER_STREAM (parser
)
1801 - parser
->completion_word
)));
1805 PARSER_EXPLICIT (parser
)->function_name
= name
.release ();
1809 std::vector
<block_symbol
> symbols
;
1810 std::vector
<bound_minimal_symbol
> minimal_symbols
;
1812 /* Try looking it up as a function/method. */
1813 find_linespec_symbols (PARSER_STATE (parser
),
1814 PARSER_RESULT (parser
)->file_symtabs
, name
.get (),
1815 PARSER_EXPLICIT (parser
)->func_name_match_type
,
1816 &symbols
, &minimal_symbols
);
1818 if (!symbols
.empty () || !minimal_symbols
.empty ())
1820 PARSER_RESULT (parser
)->function_symbols
= std::move (symbols
);
1821 PARSER_RESULT (parser
)->minimal_symbols
= std::move (minimal_symbols
);
1822 PARSER_EXPLICIT (parser
)->function_name
= name
.release ();
1826 /* NAME was not a function or a method. So it must be a label
1827 name or user specified variable like "break foo.c:$zippo". */
1828 std::vector
<block_symbol
> labels
1829 = find_label_symbols (PARSER_STATE (parser
), {}, &symbols
,
1832 if (!labels
.empty ())
1834 PARSER_RESULT (parser
)->labels
.label_symbols
= std::move (labels
);
1835 PARSER_RESULT (parser
)->labels
.function_symbols
1836 = std::move (symbols
);
1837 PARSER_EXPLICIT (parser
)->label_name
= name
.release ();
1839 else if (token
.type
== LSTOKEN_STRING
1840 && *LS_TOKEN_STOKEN (token
).ptr
== '$')
1842 /* User specified a convenience variable or history value. */
1843 PARSER_EXPLICIT (parser
)->line_offset
1844 = linespec_parse_variable (PARSER_STATE (parser
), name
.get ());
1846 if (PARSER_EXPLICIT (parser
)->line_offset
.sign
== LINE_OFFSET_UNKNOWN
)
1848 /* The user-specified variable was not valid. Do not
1849 throw an error here. parse_linespec will do it for us. */
1850 PARSER_EXPLICIT (parser
)->function_name
= name
.release ();
1856 /* The name is also not a label. Abort parsing. Do not throw
1857 an error here. parse_linespec will do it for us. */
1859 /* Save a copy of the name we were trying to lookup. */
1860 PARSER_EXPLICIT (parser
)->function_name
= name
.release ();
1866 int previous_qc
= parser
->completion_quote_char
;
1868 /* Get the next token. */
1869 token
= linespec_lexer_consume_token (parser
);
1871 if (token
.type
== LSTOKEN_EOI
)
1873 if (previous_qc
&& !parser
->completion_quote_char
)
1874 parser
->complete_what
= linespec_complete_what::KEYWORD
;
1876 else if (token
.type
== LSTOKEN_COLON
)
1878 /* User specified a label or a lineno. */
1879 token
= linespec_lexer_consume_token (parser
);
1881 if (token
.type
== LSTOKEN_NUMBER
)
1883 /* User specified an offset. Record the line offset and
1884 get the next token. */
1885 set_completion_after_number (parser
, linespec_complete_what::KEYWORD
);
1887 name
= copy_token_string (token
);
1888 PARSER_EXPLICIT (parser
)->line_offset
1889 = linespec_parse_line_offset (name
.get ());
1891 /* Get the next token. */
1892 token
= linespec_lexer_consume_token (parser
);
1894 else if (token
.type
== LSTOKEN_EOI
&& parser
->completion_tracker
!= NULL
)
1896 parser
->complete_what
= linespec_complete_what::LABEL
;
1898 else if (token
.type
== LSTOKEN_STRING
)
1900 parser
->complete_what
= linespec_complete_what::LABEL
;
1902 /* If we have text after the label separated by whitespace
1903 (e.g., "b func():lab i<tab>"), don't consider it part of
1904 the label. In completion mode that should complete to
1905 "if", in normal mode, the 'i' should be treated as
1907 if (parser
->completion_quote_char
== '\0')
1909 const char *ptr
= LS_TOKEN_STOKEN (token
).ptr
;
1910 for (size_t i
= 0; i
< LS_TOKEN_STOKEN (token
).length
; i
++)
1914 LS_TOKEN_STOKEN (token
).length
= i
;
1915 PARSER_STREAM (parser
) = skip_spaces (ptr
+ i
+ 1);
1921 if (parser
->completion_tracker
!= NULL
)
1923 if (PARSER_STREAM (parser
)[-1] == ' ')
1925 parser
->completion_word
= PARSER_STREAM (parser
);
1926 parser
->complete_what
= linespec_complete_what::KEYWORD
;
1931 std::vector
<block_symbol
> symbols
;
1933 /* Grab a copy of the label's name and look it up. */
1934 name
= copy_token_string (token
);
1935 std::vector
<block_symbol
> labels
1936 = find_label_symbols (PARSER_STATE (parser
),
1937 PARSER_RESULT (parser
)->function_symbols
,
1938 &symbols
, name
.get ());
1940 if (!labels
.empty ())
1942 PARSER_RESULT (parser
)->labels
.label_symbols
1943 = std::move (labels
);
1944 PARSER_RESULT (parser
)->labels
.function_symbols
1945 = std::move (symbols
);
1946 PARSER_EXPLICIT (parser
)->label_name
= name
.release ();
1950 /* We don't know what it was, but it isn't a label. */
1951 undefined_label_error
1952 (PARSER_EXPLICIT (parser
)->function_name
, name
.get ());
1957 /* Check for a line offset. */
1958 token
= save_stream_and_consume_token (parser
);
1959 if (token
.type
== LSTOKEN_COLON
)
1961 /* Get the next token. */
1962 token
= linespec_lexer_consume_token (parser
);
1964 /* It must be a line offset. */
1965 if (token
.type
!= LSTOKEN_NUMBER
)
1966 unexpected_linespec_error (parser
);
1968 /* Record the line offset and get the next token. */
1969 name
= copy_token_string (token
);
1971 PARSER_EXPLICIT (parser
)->line_offset
1972 = linespec_parse_line_offset (name
.get ());
1974 /* Get the next token. */
1975 token
= linespec_lexer_consume_token (parser
);
1980 /* Trailing ':' in the input. Issue an error. */
1981 unexpected_linespec_error (parser
);
1986 /* Canonicalize the linespec contained in LS. The result is saved into
1987 STATE->canonical. This function handles both linespec and explicit
1991 canonicalize_linespec (struct linespec_state
*state
, const linespec
*ls
)
1993 struct event_location
*canon
;
1994 struct explicit_location
*explicit_loc
;
1996 /* If canonicalization was not requested, no need to do anything. */
1997 if (!state
->canonical
)
2000 /* Save everything as an explicit location. */
2001 state
->canonical
->location
2002 = new_explicit_location (&ls
->explicit_loc
);
2003 canon
= state
->canonical
->location
.get ();
2004 explicit_loc
= get_explicit_location (canon
);
2006 if (explicit_loc
->label_name
!= NULL
)
2008 state
->canonical
->special_display
= 1;
2010 if (explicit_loc
->function_name
== NULL
)
2012 /* No function was specified, so add the symbol name. */
2013 gdb_assert (ls
->labels
.function_symbols
.size () == 1);
2014 block_symbol s
= ls
->labels
.function_symbols
.front ();
2015 explicit_loc
->function_name
= xstrdup (s
.symbol
->natural_name ());
2019 /* If this location originally came from a linespec, save a string
2020 representation of it for display and saving to file. */
2021 if (state
->is_linespec
)
2022 set_event_location_string (canon
,
2023 explicit_location_to_linespec (explicit_loc
));
2026 /* Given a line offset in LS, construct the relevant SALs. */
2028 static std::vector
<symtab_and_line
>
2029 create_sals_line_offset (struct linespec_state
*self
,
2032 int use_default
= 0;
2034 /* This is where we need to make sure we have good defaults.
2035 We must guarantee that this section of code is never executed
2036 when we are called with just a function name, since
2037 set_default_source_symtab_and_line uses
2038 select_source_symtab that calls us with such an argument. */
2040 if (ls
->file_symtabs
.size () == 1
2041 && ls
->file_symtabs
.front () == nullptr)
2043 set_current_program_space (self
->program_space
);
2045 /* Make sure we have at least a default source line. */
2046 set_default_source_symtab_and_line ();
2047 initialize_defaults (&self
->default_symtab
, &self
->default_line
);
2049 = collect_symtabs_from_filename (self
->default_symtab
->filename
,
2050 self
->search_pspace
);
2054 symtab_and_line val
;
2055 val
.line
= ls
->explicit_loc
.line_offset
.offset
;
2056 switch (ls
->explicit_loc
.line_offset
.sign
)
2058 case LINE_OFFSET_PLUS
:
2059 if (ls
->explicit_loc
.line_offset
.offset
== 0)
2062 val
.line
= self
->default_line
+ val
.line
;
2065 case LINE_OFFSET_MINUS
:
2066 if (ls
->explicit_loc
.line_offset
.offset
== 0)
2069 val
.line
= self
->default_line
- val
.line
;
2071 val
.line
= -val
.line
;
2074 case LINE_OFFSET_NONE
:
2075 break; /* No need to adjust val.line. */
2078 std::vector
<symtab_and_line
> values
;
2079 if (self
->list_mode
)
2080 values
= decode_digits_list_mode (self
, ls
, val
);
2083 struct linetable_entry
*best_entry
= NULL
;
2086 std::vector
<symtab_and_line
> intermediate_results
2087 = decode_digits_ordinary (self
, ls
, val
.line
, &best_entry
);
2088 if (intermediate_results
.empty () && best_entry
!= NULL
)
2089 intermediate_results
= decode_digits_ordinary (self
, ls
,
2093 /* For optimized code, the compiler can scatter one source line
2094 across disjoint ranges of PC values, even when no duplicate
2095 functions or inline functions are involved. For example,
2096 'for (;;)' inside a non-template, non-inline, and non-ctor-or-dtor
2097 function can result in two PC ranges. In this case, we don't
2098 want to set a breakpoint on the first PC of each range. To filter
2099 such cases, we use containing blocks -- for each PC found
2100 above, we see if there are other PCs that are in the same
2101 block. If yes, the other PCs are filtered out. */
2103 gdb::def_vector
<int> filter (intermediate_results
.size ());
2104 gdb::def_vector
<const block
*> blocks (intermediate_results
.size ());
2106 for (i
= 0; i
< intermediate_results
.size (); ++i
)
2108 set_current_program_space (intermediate_results
[i
].pspace
);
2111 blocks
[i
] = block_for_pc_sect (intermediate_results
[i
].pc
,
2112 intermediate_results
[i
].section
);
2115 for (i
= 0; i
< intermediate_results
.size (); ++i
)
2117 if (blocks
[i
] != NULL
)
2118 for (j
= i
+ 1; j
< intermediate_results
.size (); ++j
)
2120 if (blocks
[j
] == blocks
[i
])
2128 for (i
= 0; i
< intermediate_results
.size (); ++i
)
2131 struct symbol
*sym
= (blocks
[i
]
2132 ? block_containing_function (blocks
[i
])
2135 if (self
->funfirstline
)
2136 skip_prologue_sal (&intermediate_results
[i
]);
2137 intermediate_results
[i
].symbol
= sym
;
2138 add_sal_to_sals (self
, &values
, &intermediate_results
[i
],
2139 sym
? sym
->natural_name () : NULL
, 0);
2143 if (values
.empty ())
2145 if (ls
->explicit_loc
.source_filename
)
2146 throw_error (NOT_FOUND_ERROR
, _("No line %d in file \"%s\"."),
2147 val
.line
, ls
->explicit_loc
.source_filename
);
2149 throw_error (NOT_FOUND_ERROR
, _("No line %d in the current file."),
2156 /* Convert the given ADDRESS into SaLs. */
2158 static std::vector
<symtab_and_line
>
2159 convert_address_location_to_sals (struct linespec_state
*self
,
2162 symtab_and_line sal
= find_pc_line (address
, 0);
2164 sal
.section
= find_pc_overlay (address
);
2165 sal
.explicit_pc
= 1;
2166 sal
.symbol
= find_pc_sect_containing_function (sal
.pc
, sal
.section
);
2168 std::vector
<symtab_and_line
> sals
;
2169 add_sal_to_sals (self
, &sals
, &sal
, core_addr_to_string (address
), 1);
2174 /* Create and return SALs from the linespec LS. */
2176 static std::vector
<symtab_and_line
>
2177 convert_linespec_to_sals (struct linespec_state
*state
, linespec
*ls
)
2179 std::vector
<symtab_and_line
> sals
;
2181 if (!ls
->labels
.label_symbols
.empty ())
2183 /* We have just a bunch of functions/methods or labels. */
2184 struct symtab_and_line sal
;
2186 for (const auto &sym
: ls
->labels
.label_symbols
)
2188 struct program_space
*pspace
2189 = sym
.symbol
->symtab ()->compunit ()->objfile ()->pspace
;
2191 if (symbol_to_sal (&sal
, state
->funfirstline
, sym
.symbol
)
2192 && maybe_add_address (state
->addr_set
, pspace
, sal
.pc
))
2193 add_sal_to_sals (state
, &sals
, &sal
,
2194 sym
.symbol
->natural_name (), 0);
2197 else if (!ls
->function_symbols
.empty () || !ls
->minimal_symbols
.empty ())
2199 /* We have just a bunch of functions and/or methods. */
2200 if (!ls
->function_symbols
.empty ())
2202 /* Sort symbols so that symbols with the same program space are next
2204 std::sort (ls
->function_symbols
.begin (),
2205 ls
->function_symbols
.end (),
2208 for (const auto &sym
: ls
->function_symbols
)
2210 program_space
*pspace
2211 = sym
.symbol
->symtab ()->compunit ()->objfile ()->pspace
;
2212 set_current_program_space (pspace
);
2214 /* Don't skip to the first line of the function if we
2215 had found an ifunc minimal symbol for this function,
2216 because that means that this function is an ifunc
2217 resolver with the same name as the ifunc itself. */
2218 bool found_ifunc
= false;
2220 if (state
->funfirstline
2221 && !ls
->minimal_symbols
.empty ()
2222 && sym
.symbol
->aclass () == LOC_BLOCK
)
2224 const CORE_ADDR addr
2225 = sym
.symbol
->value_block ()->entry_pc ();
2227 for (const auto &elem
: ls
->minimal_symbols
)
2229 if (elem
.minsym
->type () == mst_text_gnu_ifunc
2230 || elem
.minsym
->type () == mst_data_gnu_ifunc
)
2232 CORE_ADDR msym_addr
= elem
.value_address ();
2233 if (elem
.minsym
->type () == mst_data_gnu_ifunc
)
2235 struct gdbarch
*gdbarch
2236 = elem
.objfile
->arch ();
2238 = (gdbarch_convert_from_func_ptr_addr
2241 current_inferior ()->top_target ()));
2244 if (msym_addr
== addr
)
2255 symtab_and_line sal
;
2256 if (symbol_to_sal (&sal
, state
->funfirstline
, sym
.symbol
)
2257 && maybe_add_address (state
->addr_set
, pspace
, sal
.pc
))
2258 add_sal_to_sals (state
, &sals
, &sal
,
2259 sym
.symbol
->natural_name (), 0);
2264 if (!ls
->minimal_symbols
.empty ())
2266 /* Sort minimal symbols by program space, too */
2267 std::sort (ls
->minimal_symbols
.begin (),
2268 ls
->minimal_symbols
.end (),
2271 for (const auto &elem
: ls
->minimal_symbols
)
2273 program_space
*pspace
= elem
.objfile
->pspace
;
2274 set_current_program_space (pspace
);
2275 minsym_found (state
, elem
.objfile
, elem
.minsym
, &sals
);
2279 else if (ls
->explicit_loc
.line_offset
.sign
!= LINE_OFFSET_UNKNOWN
)
2281 /* Only an offset was specified. */
2282 sals
= create_sals_line_offset (state
, ls
);
2284 /* Make sure we have a filename for canonicalization. */
2285 if (ls
->explicit_loc
.source_filename
== NULL
)
2287 const char *fullname
= symtab_to_fullname (state
->default_symtab
);
2289 /* It may be more appropriate to keep DEFAULT_SYMTAB in its symtab
2290 form so that displaying SOURCE_FILENAME can follow the current
2291 FILENAME_DISPLAY_STRING setting. But as it is used only rarely
2292 it has been kept for code simplicity only in absolute form. */
2293 ls
->explicit_loc
.source_filename
= xstrdup (fullname
);
2298 /* We haven't found any results... */
2302 canonicalize_linespec (state
, ls
);
2304 if (!sals
.empty () && state
->canonical
!= NULL
)
2305 state
->canonical
->pre_expanded
= 1;
2310 /* Build RESULT from the explicit location components SOURCE_FILENAME,
2311 FUNCTION_NAME, LABEL_NAME and LINE_OFFSET. */
2314 convert_explicit_location_to_linespec (struct linespec_state
*self
,
2316 const char *source_filename
,
2317 const char *function_name
,
2318 symbol_name_match_type fname_match_type
,
2319 const char *label_name
,
2320 struct line_offset line_offset
)
2322 std::vector
<bound_minimal_symbol
> minimal_symbols
;
2324 result
->explicit_loc
.func_name_match_type
= fname_match_type
;
2326 if (source_filename
!= NULL
)
2330 result
->file_symtabs
2331 = symtabs_from_filename (source_filename
, self
->search_pspace
);
2333 catch (const gdb_exception_error
&except
)
2335 source_file_not_found_error (source_filename
);
2337 result
->explicit_loc
.source_filename
= xstrdup (source_filename
);
2341 /* A NULL entry means to use the default symtab. */
2342 result
->file_symtabs
.push_back (nullptr);
2345 if (function_name
!= NULL
)
2347 std::vector
<block_symbol
> symbols
;
2349 find_linespec_symbols (self
, result
->file_symtabs
,
2350 function_name
, fname_match_type
,
2351 &symbols
, &minimal_symbols
);
2353 if (symbols
.empty () && minimal_symbols
.empty ())
2354 symbol_not_found_error (function_name
,
2355 result
->explicit_loc
.source_filename
);
2357 result
->explicit_loc
.function_name
= xstrdup (function_name
);
2358 result
->function_symbols
= std::move (symbols
);
2359 result
->minimal_symbols
= std::move (minimal_symbols
);
2362 if (label_name
!= NULL
)
2364 std::vector
<block_symbol
> symbols
;
2365 std::vector
<block_symbol
> labels
2366 = find_label_symbols (self
, result
->function_symbols
,
2367 &symbols
, label_name
);
2369 if (labels
.empty ())
2370 undefined_label_error (result
->explicit_loc
.function_name
,
2373 result
->explicit_loc
.label_name
= xstrdup (label_name
);
2374 result
->labels
.label_symbols
= labels
;
2375 result
->labels
.function_symbols
= std::move (symbols
);
2378 if (line_offset
.sign
!= LINE_OFFSET_UNKNOWN
)
2379 result
->explicit_loc
.line_offset
= line_offset
;
2382 /* Convert the explicit location EXPLICIT_LOC into SaLs. */
2384 static std::vector
<symtab_and_line
>
2385 convert_explicit_location_to_sals (struct linespec_state
*self
,
2387 const struct explicit_location
*explicit_loc
)
2389 convert_explicit_location_to_linespec (self
, result
,
2390 explicit_loc
->source_filename
,
2391 explicit_loc
->function_name
,
2392 explicit_loc
->func_name_match_type
,
2393 explicit_loc
->label_name
,
2394 explicit_loc
->line_offset
);
2395 return convert_linespec_to_sals (self
, result
);
2398 /* Parse a string that specifies a linespec.
2400 The basic grammar of linespecs:
2402 linespec -> var_spec | basic_spec
2403 var_spec -> '$' (STRING | NUMBER)
2405 basic_spec -> file_offset_spec | function_spec | label_spec
2406 file_offset_spec -> opt_file_spec offset_spec
2407 function_spec -> opt_file_spec function_name_spec opt_label_spec
2408 label_spec -> label_name_spec
2410 opt_file_spec -> "" | file_name_spec ':'
2411 opt_label_spec -> "" | ':' label_name_spec
2413 file_name_spec -> STRING
2414 function_name_spec -> STRING
2415 label_name_spec -> STRING
2416 function_name_spec -> STRING
2417 offset_spec -> NUMBER
2421 This may all be followed by several keywords such as "if EXPR",
2424 A comma will terminate parsing.
2426 The function may be an undebuggable function found in minimal symbol table.
2428 If the argument FUNFIRSTLINE is nonzero, we want the first line
2429 of real code inside a function when a function is specified, and it is
2430 not OK to specify a variable or type to get its line number.
2432 DEFAULT_SYMTAB specifies the file to use if none is specified.
2433 It defaults to current_source_symtab.
2434 DEFAULT_LINE specifies the line number to use for relative
2435 line numbers (that start with signs). Defaults to current_source_line.
2436 If CANONICAL is non-NULL, store an array of strings containing the canonical
2437 line specs there if necessary. Currently overloaded member functions and
2438 line numbers or static functions without a filename yield a canonical
2439 line spec. The array and the line spec strings are allocated on the heap,
2440 it is the callers responsibility to free them.
2442 Note that it is possible to return zero for the symtab
2443 if no file is validly specified. Callers must check that.
2444 Also, the line number returned may be invalid. */
2446 /* Parse the linespec in ARG, which must not be nullptr. MATCH_TYPE
2447 indicates how function names should be matched. */
2449 static std::vector
<symtab_and_line
>
2450 parse_linespec (linespec_parser
*parser
, const char *arg
,
2451 symbol_name_match_type match_type
)
2453 gdb_assert (arg
!= nullptr);
2455 struct gdb_exception file_exception
;
2457 /* A special case to start. It has become quite popular for
2458 IDEs to work around bugs in the previous parser by quoting
2459 the entire linespec, so we attempt to deal with this nicely. */
2460 parser
->is_quote_enclosed
= 0;
2461 if (parser
->completion_tracker
== NULL
2462 && !is_ada_operator (arg
)
2464 && strchr (linespec_quote_characters
, *arg
) != NULL
)
2466 const char *end
= skip_quote_char (arg
+ 1, *arg
);
2467 if (end
!= NULL
&& is_closing_quote_enclosed (end
))
2469 /* Here's the special case. Skip ARG past the initial
2472 parser
->is_quote_enclosed
= 1;
2476 parser
->lexer
.saved_arg
= arg
;
2477 parser
->lexer
.stream
= arg
;
2478 parser
->completion_word
= arg
;
2479 parser
->complete_what
= linespec_complete_what::FUNCTION
;
2480 PARSER_EXPLICIT (parser
)->func_name_match_type
= match_type
;
2482 /* Initialize the default symtab and line offset. */
2483 initialize_defaults (&PARSER_STATE (parser
)->default_symtab
,
2484 &PARSER_STATE (parser
)->default_line
);
2486 /* Objective-C shortcut. */
2487 if (parser
->completion_tracker
== NULL
)
2489 std::vector
<symtab_and_line
> values
2490 = decode_objc (PARSER_STATE (parser
), PARSER_RESULT (parser
), arg
);
2491 if (!values
.empty ())
2496 /* "-"/"+" is either an objc selector, or a number. There's
2497 nothing to complete the latter to, so just let the caller
2498 complete on functions, which finds objc selectors, if there's
2500 if ((arg
[0] == '-' || arg
[0] == '+') && arg
[1] == '\0')
2504 /* Start parsing. */
2506 /* Get the first token. */
2507 linespec_token token
= linespec_lexer_consume_token (parser
);
2509 /* It must be either LSTOKEN_STRING or LSTOKEN_NUMBER. */
2510 if (token
.type
== LSTOKEN_STRING
&& *LS_TOKEN_STOKEN (token
).ptr
== '$')
2512 /* A NULL entry means to use GLOBAL_DEFAULT_SYMTAB. */
2513 if (parser
->completion_tracker
== NULL
)
2514 PARSER_RESULT (parser
)->file_symtabs
.push_back (nullptr);
2516 /* User specified a convenience variable or history value. */
2517 gdb::unique_xmalloc_ptr
<char> var
= copy_token_string (token
);
2518 PARSER_EXPLICIT (parser
)->line_offset
2519 = linespec_parse_variable (PARSER_STATE (parser
), var
.get ());
2521 /* If a line_offset wasn't found (VAR is the name of a user
2522 variable/function), then skip to normal symbol processing. */
2523 if (PARSER_EXPLICIT (parser
)->line_offset
.sign
!= LINE_OFFSET_UNKNOWN
)
2525 /* Consume this token. */
2526 linespec_lexer_consume_token (parser
);
2528 goto convert_to_sals
;
2531 else if (token
.type
== LSTOKEN_EOI
&& parser
->completion_tracker
!= NULL
)
2533 /* Let the default linespec_complete_what::FUNCTION kick in. */
2534 unexpected_linespec_error (parser
);
2536 else if (token
.type
!= LSTOKEN_STRING
&& token
.type
!= LSTOKEN_NUMBER
)
2538 parser
->complete_what
= linespec_complete_what::NOTHING
;
2539 unexpected_linespec_error (parser
);
2542 /* Shortcut: If the next token is not LSTOKEN_COLON, we know that
2543 this token cannot represent a filename. */
2544 token
= linespec_lexer_peek_token (parser
);
2546 if (token
.type
== LSTOKEN_COLON
)
2548 /* Get the current token again and extract the filename. */
2549 token
= linespec_lexer_lex_one (parser
);
2550 gdb::unique_xmalloc_ptr
<char> user_filename
= copy_token_string (token
);
2552 /* Check if the input is a filename. */
2555 PARSER_RESULT (parser
)->file_symtabs
2556 = symtabs_from_filename (user_filename
.get (),
2557 PARSER_STATE (parser
)->search_pspace
);
2559 catch (gdb_exception_error
&ex
)
2561 file_exception
= std::move (ex
);
2564 if (file_exception
.reason
>= 0)
2566 /* Symtabs were found for the file. Record the filename. */
2567 PARSER_EXPLICIT (parser
)->source_filename
= user_filename
.release ();
2569 /* Get the next token. */
2570 token
= linespec_lexer_consume_token (parser
);
2572 /* This is LSTOKEN_COLON; consume it. */
2573 linespec_lexer_consume_token (parser
);
2577 /* A NULL entry means to use GLOBAL_DEFAULT_SYMTAB. */
2578 PARSER_RESULT (parser
)->file_symtabs
.push_back (nullptr);
2581 /* If the next token is not EOI, KEYWORD, or COMMA, issue an error. */
2582 else if (parser
->completion_tracker
== NULL
2583 && (token
.type
!= LSTOKEN_EOI
&& token
.type
!= LSTOKEN_KEYWORD
2584 && token
.type
!= LSTOKEN_COMMA
))
2586 /* TOKEN is the _next_ token, not the one currently in the parser.
2587 Consuming the token will give the correct error message. */
2588 linespec_lexer_consume_token (parser
);
2589 unexpected_linespec_error (parser
);
2593 /* A NULL entry means to use GLOBAL_DEFAULT_SYMTAB. */
2594 PARSER_RESULT (parser
)->file_symtabs
.push_back (nullptr);
2597 /* Parse the rest of the linespec. */
2598 linespec_parse_basic (parser
);
2600 if (parser
->completion_tracker
== NULL
2601 && PARSER_RESULT (parser
)->function_symbols
.empty ()
2602 && PARSER_RESULT (parser
)->labels
.label_symbols
.empty ()
2603 && PARSER_EXPLICIT (parser
)->line_offset
.sign
== LINE_OFFSET_UNKNOWN
2604 && PARSER_RESULT (parser
)->minimal_symbols
.empty ())
2606 /* The linespec didn't parse. Re-throw the file exception if
2608 if (file_exception
.reason
< 0)
2609 throw_exception (std::move (file_exception
));
2611 /* Otherwise, the symbol is not found. */
2612 symbol_not_found_error (PARSER_EXPLICIT (parser
)->function_name
,
2613 PARSER_EXPLICIT (parser
)->source_filename
);
2618 /* Get the last token and record how much of the input was parsed,
2620 token
= linespec_lexer_lex_one (parser
);
2621 if (token
.type
!= LSTOKEN_EOI
&& token
.type
!= LSTOKEN_KEYWORD
)
2622 unexpected_linespec_error (parser
);
2623 else if (token
.type
== LSTOKEN_KEYWORD
)
2625 /* Setup the completion word past the keyword. Lexing never
2626 advances past a keyword automatically, so skip it
2628 parser
->completion_word
2629 = skip_spaces (skip_to_space (PARSER_STREAM (parser
)));
2630 parser
->complete_what
= linespec_complete_what::EXPRESSION
;
2633 /* Convert the data in PARSER_RESULT to SALs. */
2634 if (parser
->completion_tracker
== NULL
)
2635 return convert_linespec_to_sals (PARSER_STATE (parser
),
2636 PARSER_RESULT (parser
));
2642 /* A constructor for linespec_state. */
2645 linespec_state_constructor (struct linespec_state
*self
,
2646 int flags
, const struct language_defn
*language
,
2647 struct program_space
*search_pspace
,
2648 struct symtab
*default_symtab
,
2650 struct linespec_result
*canonical
)
2652 memset (self
, 0, sizeof (*self
));
2653 self
->language
= language
;
2654 self
->funfirstline
= (flags
& DECODE_LINE_FUNFIRSTLINE
) ? 1 : 0;
2655 self
->list_mode
= (flags
& DECODE_LINE_LIST_MODE
) ? 1 : 0;
2656 self
->search_pspace
= search_pspace
;
2657 self
->default_symtab
= default_symtab
;
2658 self
->default_line
= default_line
;
2659 self
->canonical
= canonical
;
2660 self
->program_space
= current_program_space
;
2661 self
->addr_set
= htab_create_alloc (10, hash_address_entry
, eq_address_entry
,
2662 xfree
, xcalloc
, xfree
);
2663 self
->is_linespec
= 0;
2666 /* Initialize a new linespec parser. */
2668 linespec_parser::linespec_parser (int flags
,
2669 const struct language_defn
*language
,
2670 struct program_space
*search_pspace
,
2671 struct symtab
*default_symtab
,
2673 struct linespec_result
*canonical
)
2675 lexer
.current
.type
= LSTOKEN_CONSUMED
;
2676 PARSER_EXPLICIT (this)->func_name_match_type
2677 = symbol_name_match_type::WILD
;
2678 PARSER_EXPLICIT (this)->line_offset
.sign
= LINE_OFFSET_UNKNOWN
;
2679 linespec_state_constructor (PARSER_STATE (this), flags
, language
,
2681 default_symtab
, default_line
, canonical
);
2684 /* A destructor for linespec_state. */
2687 linespec_state_destructor (struct linespec_state
*self
)
2689 htab_delete (self
->addr_set
);
2690 xfree (self
->canonical_names
);
2693 /* Delete a linespec parser. */
2695 linespec_parser::~linespec_parser ()
2697 xfree (PARSER_EXPLICIT (this)->source_filename
);
2698 xfree (PARSER_EXPLICIT (this)->label_name
);
2699 xfree (PARSER_EXPLICIT (this)->function_name
);
2701 linespec_state_destructor (PARSER_STATE (this));
2704 /* See description in linespec.h. */
2707 linespec_lex_to_end (const char **stringp
)
2709 linespec_token token
;
2712 if (stringp
== NULL
|| *stringp
== NULL
)
2715 linespec_parser
parser (0, current_language
, NULL
, NULL
, 0, NULL
);
2716 parser
.lexer
.saved_arg
= *stringp
;
2717 PARSER_STREAM (&parser
) = orig
= *stringp
;
2721 /* Stop before any comma tokens; we need it to keep it
2722 as the next token in the string. */
2723 token
= linespec_lexer_peek_token (&parser
);
2724 if (token
.type
== LSTOKEN_COMMA
)
2726 token
= linespec_lexer_consume_token (&parser
);
2728 while (token
.type
!= LSTOKEN_EOI
&& token
.type
!= LSTOKEN_KEYWORD
);
2730 *stringp
+= PARSER_STREAM (&parser
) - orig
;
2733 /* See linespec.h. */
2736 linespec_complete_function (completion_tracker
&tracker
,
2737 const char *function
,
2738 symbol_name_match_type func_match_type
,
2739 const char *source_filename
)
2741 complete_symbol_mode mode
= complete_symbol_mode::LINESPEC
;
2743 if (source_filename
!= NULL
)
2745 collect_file_symbol_completion_matches (tracker
, mode
, func_match_type
,
2746 function
, function
, source_filename
);
2750 collect_symbol_completion_matches (tracker
, mode
, func_match_type
,
2751 function
, function
);
2756 /* Helper for complete_linespec to simplify it. SOURCE_FILENAME is
2757 only meaningful if COMPONENT is FUNCTION. */
2760 complete_linespec_component (linespec_parser
*parser
,
2761 completion_tracker
&tracker
,
2763 linespec_complete_what component
,
2764 const char *source_filename
)
2766 if (component
== linespec_complete_what::KEYWORD
)
2768 complete_on_enum (tracker
, linespec_keywords
, text
, text
);
2770 else if (component
== linespec_complete_what::EXPRESSION
)
2773 = advance_to_expression_complete_word_point (tracker
, text
);
2774 complete_expression (tracker
, text
, word
);
2776 else if (component
== linespec_complete_what::FUNCTION
)
2778 completion_list fn_list
;
2780 symbol_name_match_type match_type
2781 = PARSER_EXPLICIT (parser
)->func_name_match_type
;
2782 linespec_complete_function (tracker
, text
, match_type
, source_filename
);
2783 if (source_filename
== NULL
)
2785 /* Haven't seen a source component, like in "b
2786 file.c:function[TAB]". Maybe this wasn't a function, but
2787 a filename instead, like "b file.[TAB]". */
2788 fn_list
= complete_source_filenames (text
);
2791 /* If we only have a single filename completion, append a ':' for
2792 the user, since that's the only thing that can usefully follow
2794 if (fn_list
.size () == 1 && !tracker
.have_completions ())
2796 char *fn
= fn_list
[0].release ();
2798 /* If we also need to append a quote char, it needs to be
2799 appended before the ':'. Append it now, and make ':' the
2800 new "quote" char. */
2801 if (tracker
.quote_char ())
2803 char quote_char_str
[2] = { (char) tracker
.quote_char () };
2805 fn
= reconcat (fn
, fn
, quote_char_str
, (char *) NULL
);
2806 tracker
.set_quote_char (':');
2809 fn
= reconcat (fn
, fn
, ":", (char *) NULL
);
2810 fn_list
[0].reset (fn
);
2812 /* Tell readline to skip appending a space. */
2813 tracker
.set_suppress_append_ws (true);
2815 tracker
.add_completions (std::move (fn_list
));
2819 /* Helper for linespec_complete_label. Find labels that match
2820 LABEL_NAME in the function symbols listed in the PARSER, and add
2821 them to the tracker. */
2824 complete_label (completion_tracker
&tracker
,
2825 linespec_parser
*parser
,
2826 const char *label_name
)
2828 std::vector
<block_symbol
> label_function_symbols
;
2829 std::vector
<block_symbol
> labels
2830 = find_label_symbols (PARSER_STATE (parser
),
2831 PARSER_RESULT (parser
)->function_symbols
,
2832 &label_function_symbols
,
2835 for (const auto &label
: labels
)
2837 char *match
= xstrdup (label
.symbol
->search_name ());
2838 tracker
.add_completion (gdb::unique_xmalloc_ptr
<char> (match
));
2842 /* See linespec.h. */
2845 linespec_complete_label (completion_tracker
&tracker
,
2846 const struct language_defn
*language
,
2847 const char *source_filename
,
2848 const char *function_name
,
2849 symbol_name_match_type func_name_match_type
,
2850 const char *label_name
)
2852 linespec_parser
parser (0, language
, NULL
, NULL
, 0, NULL
);
2854 line_offset unknown_offset
= { 0, LINE_OFFSET_UNKNOWN
};
2858 convert_explicit_location_to_linespec (PARSER_STATE (&parser
),
2859 PARSER_RESULT (&parser
),
2862 func_name_match_type
,
2863 NULL
, unknown_offset
);
2865 catch (const gdb_exception_error
&ex
)
2870 complete_label (tracker
, &parser
, label_name
);
2873 /* See description in linespec.h. */
2876 linespec_complete (completion_tracker
&tracker
, const char *text
,
2877 symbol_name_match_type match_type
)
2879 const char *orig
= text
;
2881 linespec_parser
parser (0, current_language
, NULL
, NULL
, 0, NULL
);
2882 parser
.lexer
.saved_arg
= text
;
2883 PARSER_EXPLICIT (&parser
)->func_name_match_type
= match_type
;
2884 PARSER_STREAM (&parser
) = text
;
2886 parser
.completion_tracker
= &tracker
;
2887 PARSER_STATE (&parser
)->is_linespec
= 1;
2889 /* Parse as much as possible. parser.completion_word will hold
2890 furthest completion point we managed to parse to. */
2893 parse_linespec (&parser
, text
, match_type
);
2895 catch (const gdb_exception_error
&except
)
2899 if (parser
.completion_quote_char
!= '\0'
2900 && parser
.completion_quote_end
!= NULL
2901 && parser
.completion_quote_end
[1] == '\0')
2903 /* If completing a quoted string with the cursor right at
2904 terminating quote char, complete the completion word without
2905 interpretation, so that readline advances the cursor one
2906 whitespace past the quote, even if there's no match. This
2907 makes these cases behave the same:
2909 before: "b function()"
2910 after: "b function() "
2912 before: "b 'function()'"
2913 after: "b 'function()' "
2915 and trusts the user in this case:
2917 before: "b 'not_loaded_function_yet()'"
2918 after: "b 'not_loaded_function_yet()' "
2920 parser
.complete_what
= linespec_complete_what::NOTHING
;
2921 parser
.completion_quote_char
= '\0';
2923 gdb::unique_xmalloc_ptr
<char> text_copy
2924 (xstrdup (parser
.completion_word
));
2925 tracker
.add_completion (std::move (text_copy
));
2928 tracker
.set_quote_char (parser
.completion_quote_char
);
2930 if (parser
.complete_what
== linespec_complete_what::LABEL
)
2932 parser
.complete_what
= linespec_complete_what::NOTHING
;
2934 const char *func_name
= PARSER_EXPLICIT (&parser
)->function_name
;
2936 std::vector
<block_symbol
> function_symbols
;
2937 std::vector
<bound_minimal_symbol
> minimal_symbols
;
2938 find_linespec_symbols (PARSER_STATE (&parser
),
2939 PARSER_RESULT (&parser
)->file_symtabs
,
2940 func_name
, match_type
,
2941 &function_symbols
, &minimal_symbols
);
2943 PARSER_RESULT (&parser
)->function_symbols
= std::move (function_symbols
);
2944 PARSER_RESULT (&parser
)->minimal_symbols
= std::move (minimal_symbols
);
2946 complete_label (tracker
, &parser
, parser
.completion_word
);
2948 else if (parser
.complete_what
== linespec_complete_what::FUNCTION
)
2950 /* While parsing/lexing, we didn't know whether the completion
2951 word completes to a unique function/source name already or
2955 "b function() <tab>"
2956 may need to complete either to:
2957 "b function() const"
2959 "b function() if/thread/task"
2963 may need to complete either to:
2964 "b foo template_fun<T>()"
2965 with "foo" being the template function's return type, or to:
2970 may need to complete either to a source file name:
2972 or this, also a filename, but a unique completion:
2974 or to a function name:
2977 Address that by completing assuming source or function, and
2978 seeing if we find a completion that matches exactly the
2979 completion word. If so, then it must be a function (see note
2980 below) and we advance the completion word to the end of input
2981 and switch to KEYWORD completion mode.
2983 Note: if we find a unique completion for a source filename,
2984 then it won't match the completion word, because the LCD will
2985 contain a trailing ':'. And if we're completing at or after
2986 the ':', then complete_linespec_component won't try to
2987 complete on source filenames. */
2989 const char *word
= parser
.completion_word
;
2991 complete_linespec_component (&parser
, tracker
,
2992 parser
.completion_word
,
2993 linespec_complete_what::FUNCTION
,
2994 PARSER_EXPLICIT (&parser
)->source_filename
);
2996 parser
.complete_what
= linespec_complete_what::NOTHING
;
2998 if (tracker
.quote_char ())
3000 /* The function/file name was not close-quoted, so this
3001 can't be a keyword. Note: complete_linespec_component
3002 may have swapped the original quote char for ':' when we
3003 get here, but that still indicates the same. */
3005 else if (!tracker
.have_completions ())
3008 size_t wordlen
= strlen (parser
.completion_word
);
3011 = string_find_incomplete_keyword_at_end (linespec_keywords
,
3012 parser
.completion_word
,
3017 && parser
.completion_word
[wordlen
- 1] == ' '))
3019 parser
.completion_word
+= key_start
;
3020 parser
.complete_what
= linespec_complete_what::KEYWORD
;
3023 else if (tracker
.completes_to_completion_word (word
))
3025 /* Skip the function and complete on keywords. */
3026 parser
.completion_word
+= strlen (word
);
3027 parser
.complete_what
= linespec_complete_what::KEYWORD
;
3028 tracker
.discard_completions ();
3032 tracker
.advance_custom_word_point_by (parser
.completion_word
- orig
);
3034 complete_linespec_component (&parser
, tracker
,
3035 parser
.completion_word
,
3036 parser
.complete_what
,
3037 PARSER_EXPLICIT (&parser
)->source_filename
);
3039 /* If we're past the "filename:function:label:offset" linespec, and
3040 didn't find any match, then assume the user might want to create
3041 a pending breakpoint anyway and offer the keyword
3043 if (!parser
.completion_quote_char
3044 && (parser
.complete_what
== linespec_complete_what::FUNCTION
3045 || parser
.complete_what
== linespec_complete_what::LABEL
3046 || parser
.complete_what
== linespec_complete_what::NOTHING
)
3047 && !tracker
.have_completions ())
3050 = parser
.completion_word
+ strlen (parser
.completion_word
);
3052 if (end
> orig
&& end
[-1] == ' ')
3054 tracker
.advance_custom_word_point_by (end
- parser
.completion_word
);
3056 complete_linespec_component (&parser
, tracker
, end
,
3057 linespec_complete_what::KEYWORD
,
3063 /* A helper function for decode_line_full and decode_line_1 to
3064 turn LOCATION into std::vector<symtab_and_line>. */
3066 static std::vector
<symtab_and_line
>
3067 event_location_to_sals (linespec_parser
*parser
,
3068 const struct event_location
*location
)
3070 std::vector
<symtab_and_line
> result
;
3072 switch (event_location_type (location
))
3074 case LINESPEC_LOCATION
:
3076 PARSER_STATE (parser
)->is_linespec
= 1;
3079 const linespec_location
*ls
= get_linespec_location (location
);
3080 result
= parse_linespec (parser
,
3081 ls
->spec_string
, ls
->match_type
);
3083 catch (const gdb_exception_error
&except
)
3090 case ADDRESS_LOCATION
:
3092 const char *addr_string
= get_address_string_location (location
);
3093 CORE_ADDR addr
= get_address_location (location
);
3095 if (addr_string
!= NULL
)
3097 addr
= linespec_expression_to_pc (&addr_string
);
3098 if (PARSER_STATE (parser
)->canonical
!= NULL
)
3099 PARSER_STATE (parser
)->canonical
->location
3100 = copy_event_location (location
);
3103 result
= convert_address_location_to_sals (PARSER_STATE (parser
),
3108 case EXPLICIT_LOCATION
:
3110 const struct explicit_location
*explicit_loc
;
3112 explicit_loc
= get_explicit_location_const (location
);
3113 result
= convert_explicit_location_to_sals (PARSER_STATE (parser
),
3114 PARSER_RESULT (parser
),
3119 case PROBE_LOCATION
:
3120 /* Probes are handled by their own decoders. */
3121 gdb_assert_not_reached ("attempt to decode probe location");
3125 gdb_assert_not_reached ("unhandled event location type");
3131 /* See linespec.h. */
3134 decode_line_full (struct event_location
*location
, int flags
,
3135 struct program_space
*search_pspace
,
3136 struct symtab
*default_symtab
,
3137 int default_line
, struct linespec_result
*canonical
,
3138 const char *select_mode
,
3141 std::vector
<const char *> filters
;
3142 struct linespec_state
*state
;
3144 gdb_assert (canonical
!= NULL
);
3145 /* The filter only makes sense for 'all'. */
3146 gdb_assert (filter
== NULL
|| select_mode
== multiple_symbols_all
);
3147 gdb_assert (select_mode
== NULL
3148 || select_mode
== multiple_symbols_all
3149 || select_mode
== multiple_symbols_ask
3150 || select_mode
== multiple_symbols_cancel
);
3151 gdb_assert ((flags
& DECODE_LINE_LIST_MODE
) == 0);
3153 linespec_parser
parser (flags
, current_language
,
3154 search_pspace
, default_symtab
,
3155 default_line
, canonical
);
3157 scoped_restore_current_program_space restore_pspace
;
3159 std::vector
<symtab_and_line
> result
= event_location_to_sals (&parser
,
3161 state
= PARSER_STATE (&parser
);
3163 if (result
.size () == 0)
3164 throw_error (NOT_SUPPORTED_ERROR
, _("Location %s not available"),
3165 event_location_to_string (location
));
3167 gdb_assert (result
.size () == 1 || canonical
->pre_expanded
);
3168 canonical
->pre_expanded
= 1;
3170 /* Arrange for allocated canonical names to be freed. */
3171 std::vector
<gdb::unique_xmalloc_ptr
<char>> hold_names
;
3172 for (int i
= 0; i
< result
.size (); ++i
)
3174 gdb_assert (state
->canonical_names
[i
].suffix
!= NULL
);
3175 hold_names
.emplace_back (state
->canonical_names
[i
].suffix
);
3178 if (select_mode
== NULL
)
3180 if (top_level_interpreter ()->interp_ui_out ()->is_mi_like_p ())
3181 select_mode
= multiple_symbols_all
;
3183 select_mode
= multiple_symbols_select_mode ();
3186 if (select_mode
== multiple_symbols_all
)
3190 filters
.push_back (filter
);
3191 filter_results (state
, &result
, filters
);
3194 convert_results_to_lsals (state
, &result
);
3197 decode_line_2 (state
, &result
, select_mode
);
3200 /* See linespec.h. */
3202 std::vector
<symtab_and_line
>
3203 decode_line_1 (const struct event_location
*location
, int flags
,
3204 struct program_space
*search_pspace
,
3205 struct symtab
*default_symtab
,
3208 linespec_parser
parser (flags
, current_language
,
3209 search_pspace
, default_symtab
,
3210 default_line
, NULL
);
3212 scoped_restore_current_program_space restore_pspace
;
3214 return event_location_to_sals (&parser
, location
);
3217 /* See linespec.h. */
3219 std::vector
<symtab_and_line
>
3220 decode_line_with_current_source (const char *string
, int flags
)
3223 error (_("Empty line specification."));
3225 /* We use whatever is set as the current source line. We do not try
3226 and get a default source symtab+line or it will recursively call us! */
3227 symtab_and_line cursal
= get_current_source_symtab_and_line ();
3229 event_location_up location
= string_to_event_location (&string
,
3231 std::vector
<symtab_and_line
> sals
3232 = decode_line_1 (location
.get (), flags
, NULL
, cursal
.symtab
, cursal
.line
);
3235 error (_("Junk at end of line specification: %s"), string
);
3240 /* See linespec.h. */
3242 std::vector
<symtab_and_line
>
3243 decode_line_with_last_displayed (const char *string
, int flags
)
3246 error (_("Empty line specification."));
3248 event_location_up location
= string_to_event_location (&string
,
3250 std::vector
<symtab_and_line
> sals
3251 = (last_displayed_sal_is_valid ()
3252 ? decode_line_1 (location
.get (), flags
, NULL
,
3253 get_last_displayed_symtab (),
3254 get_last_displayed_line ())
3255 : decode_line_1 (location
.get (), flags
, NULL
, NULL
, 0));
3258 error (_("Junk at end of line specification: %s"), string
);
3265 /* First, some functions to initialize stuff at the beginning of the
3269 initialize_defaults (struct symtab
**default_symtab
, int *default_line
)
3271 if (*default_symtab
== 0)
3273 /* Use whatever we have for the default source line. We don't use
3274 get_current_or_default_symtab_and_line as it can recurse and call
3276 struct symtab_and_line cursal
=
3277 get_current_source_symtab_and_line ();
3279 *default_symtab
= cursal
.symtab
;
3280 *default_line
= cursal
.line
;
3286 /* Evaluate the expression pointed to by EXP_PTR into a CORE_ADDR,
3287 advancing EXP_PTR past any parsed text. */
3290 linespec_expression_to_pc (const char **exp_ptr
)
3292 if (current_program_space
->executing_startup
)
3293 /* The error message doesn't really matter, because this case
3294 should only hit during breakpoint reset. */
3295 throw_error (NOT_FOUND_ERROR
, _("cannot evaluate expressions while "
3296 "program space is in startup"));
3299 return value_as_address (parse_to_comma_and_eval (exp_ptr
));
3304 /* Here's where we recognise an Objective-C Selector. An Objective C
3305 selector may be implemented by more than one class, therefore it
3306 may represent more than one method/function. This gives us a
3307 situation somewhat analogous to C++ overloading. If there's more
3308 than one method that could represent the selector, then use some of
3309 the existing C++ code to let the user choose one. */
3311 static std::vector
<symtab_and_line
>
3312 decode_objc (struct linespec_state
*self
, linespec
*ls
, const char *arg
)
3314 struct collect_info info
;
3315 std::vector
<const char *> symbol_names
;
3316 const char *new_argptr
;
3319 std::vector
<symtab
*> symtabs
;
3320 symtabs
.push_back (nullptr);
3322 info
.file_symtabs
= &symtabs
;
3324 std::vector
<block_symbol
> symbols
;
3325 info
.result
.symbols
= &symbols
;
3326 std::vector
<bound_minimal_symbol
> minimal_symbols
;
3327 info
.result
.minimal_symbols
= &minimal_symbols
;
3329 new_argptr
= find_imps (arg
, &symbol_names
);
3330 if (symbol_names
.empty ())
3333 add_all_symbol_names_from_pspace (&info
, NULL
, symbol_names
,
3336 std::vector
<symtab_and_line
> values
;
3337 if (!symbols
.empty () || !minimal_symbols
.empty ())
3341 saved_arg
= (char *) alloca (new_argptr
- arg
+ 1);
3342 memcpy (saved_arg
, arg
, new_argptr
- arg
);
3343 saved_arg
[new_argptr
- arg
] = '\0';
3345 ls
->explicit_loc
.function_name
= xstrdup (saved_arg
);
3346 ls
->function_symbols
= std::move (symbols
);
3347 ls
->minimal_symbols
= std::move (minimal_symbols
);
3348 values
= convert_linespec_to_sals (self
, ls
);
3350 if (self
->canonical
)
3355 self
->canonical
->pre_expanded
= 1;
3357 if (ls
->explicit_loc
.source_filename
)
3359 holder
= string_printf ("%s:%s",
3360 ls
->explicit_loc
.source_filename
,
3362 str
= holder
.c_str ();
3367 self
->canonical
->location
3368 = new_linespec_location (&str
, symbol_name_match_type::FULL
);
3377 /* A function object that serves as symbol_found_callback_ftype
3378 callback for iterate_over_symbols. This is used by
3379 lookup_prefix_sym to collect type symbols. */
3380 class decode_compound_collector
3383 decode_compound_collector ()
3384 : m_unique_syms (htab_create_alloc (1, htab_hash_pointer
,
3385 htab_eq_pointer
, NULL
,
3390 /* Return all symbols collected. */
3391 std::vector
<block_symbol
> release_symbols ()
3393 return std::move (m_symbols
);
3396 /* Callable as a symbol_found_callback_ftype callback. */
3397 bool operator () (block_symbol
*bsym
);
3400 /* A hash table of all symbols we found. We use this to avoid
3401 adding any symbol more than once. */
3402 htab_up m_unique_syms
;
3404 /* The result vector. */
3405 std::vector
<block_symbol
> m_symbols
;
3409 decode_compound_collector::operator () (block_symbol
*bsym
)
3413 struct symbol
*sym
= bsym
->symbol
;
3415 if (sym
->aclass () != LOC_TYPEDEF
)
3416 return true; /* Continue iterating. */
3419 t
= check_typedef (t
);
3420 if (t
->code () != TYPE_CODE_STRUCT
3421 && t
->code () != TYPE_CODE_UNION
3422 && t
->code () != TYPE_CODE_NAMESPACE
)
3423 return true; /* Continue iterating. */
3425 slot
= htab_find_slot (m_unique_syms
.get (), sym
, INSERT
);
3429 m_symbols
.push_back (*bsym
);
3432 return true; /* Continue iterating. */
3437 /* Return any symbols corresponding to CLASS_NAME in FILE_SYMTABS. */
3439 static std::vector
<block_symbol
>
3440 lookup_prefix_sym (struct linespec_state
*state
,
3441 const std::vector
<symtab
*> &file_symtabs
,
3442 const char *class_name
)
3444 decode_compound_collector collector
;
3446 lookup_name_info
lookup_name (class_name
, symbol_name_match_type::FULL
);
3448 for (const auto &elt
: file_symtabs
)
3452 iterate_over_all_matching_symtabs (state
, lookup_name
,
3453 STRUCT_DOMAIN
, ALL_DOMAIN
,
3454 NULL
, false, collector
);
3455 iterate_over_all_matching_symtabs (state
, lookup_name
,
3456 VAR_DOMAIN
, ALL_DOMAIN
,
3457 NULL
, false, collector
);
3461 /* Program spaces that are executing startup should have
3462 been filtered out earlier. */
3463 program_space
*pspace
= elt
->compunit ()->objfile ()->pspace
;
3465 gdb_assert (!pspace
->executing_startup
);
3466 set_current_program_space (pspace
);
3467 iterate_over_file_blocks (elt
, lookup_name
, STRUCT_DOMAIN
, collector
);
3468 iterate_over_file_blocks (elt
, lookup_name
, VAR_DOMAIN
, collector
);
3472 return collector
.release_symbols ();
3475 /* A std::sort comparison function for symbols. The resulting order does
3476 not actually matter; we just need to be able to sort them so that
3477 symbols with the same program space end up next to each other. */
3480 compare_symbols (const block_symbol
&a
, const block_symbol
&b
)
3484 uia
= (uintptr_t) a
.symbol
->symtab ()->compunit ()->objfile ()->pspace
;
3485 uib
= (uintptr_t) b
.symbol
->symtab ()->compunit ()->objfile ()->pspace
;
3492 uia
= (uintptr_t) a
.symbol
;
3493 uib
= (uintptr_t) b
.symbol
;
3501 /* Like compare_symbols but for minimal symbols. */
3504 compare_msymbols (const bound_minimal_symbol
&a
, const bound_minimal_symbol
&b
)
3508 uia
= (uintptr_t) a
.objfile
->pspace
;
3509 uib
= (uintptr_t) a
.objfile
->pspace
;
3516 uia
= (uintptr_t) a
.minsym
;
3517 uib
= (uintptr_t) b
.minsym
;
3525 /* Look for all the matching instances of each symbol in NAMES. Only
3526 instances from PSPACE are considered; other program spaces are
3527 handled by our caller. If PSPACE is NULL, then all program spaces
3528 are considered. Results are stored into INFO. */
3531 add_all_symbol_names_from_pspace (struct collect_info
*info
,
3532 struct program_space
*pspace
,
3533 const std::vector
<const char *> &names
,
3534 enum search_domain search_domain
)
3536 for (const char *iter
: names
)
3537 add_matching_symbols_to_info (iter
,
3538 symbol_name_match_type::FULL
,
3539 search_domain
, info
, pspace
);
3543 find_superclass_methods (std::vector
<struct type
*> &&superclasses
,
3544 const char *name
, enum language name_lang
,
3545 std::vector
<const char *> *result_names
)
3547 size_t old_len
= result_names
->size ();
3551 std::vector
<struct type
*> new_supers
;
3553 for (type
*t
: superclasses
)
3554 find_methods (t
, name_lang
, name
, result_names
, &new_supers
);
3556 if (result_names
->size () != old_len
|| new_supers
.empty ())
3559 superclasses
= std::move (new_supers
);
3563 /* This finds the method METHOD_NAME in the class CLASS_NAME whose type is
3564 given by one of the symbols in SYM_CLASSES. Matches are returned
3565 in SYMBOLS (for debug symbols) and MINSYMS (for minimal symbols). */
3568 find_method (struct linespec_state
*self
,
3569 const std::vector
<symtab
*> &file_symtabs
,
3570 const char *class_name
, const char *method_name
,
3571 std::vector
<block_symbol
> *sym_classes
,
3572 std::vector
<block_symbol
> *symbols
,
3573 std::vector
<bound_minimal_symbol
> *minsyms
)
3575 size_t last_result_len
;
3576 std::vector
<struct type
*> superclass_vec
;
3577 std::vector
<const char *> result_names
;
3578 struct collect_info info
;
3580 /* Sort symbols so that symbols with the same program space are next
3582 std::sort (sym_classes
->begin (), sym_classes
->end (),
3586 info
.file_symtabs
= &file_symtabs
;
3587 info
.result
.symbols
= symbols
;
3588 info
.result
.minimal_symbols
= minsyms
;
3590 /* Iterate over all the types, looking for the names of existing
3591 methods matching METHOD_NAME. If we cannot find a direct method in a
3592 given program space, then we consider inherited methods; this is
3593 not ideal (ideal would be to respect C++ hiding rules), but it
3594 seems good enough and is what GDB has historically done. We only
3595 need to collect the names because later we find all symbols with
3596 those names. This loop is written in a somewhat funny way
3597 because we collect data across the program space before deciding
3599 last_result_len
= 0;
3600 for (const auto &elt
: *sym_classes
)
3603 struct program_space
*pspace
;
3604 struct symbol
*sym
= elt
.symbol
;
3605 unsigned int ix
= &elt
- &*sym_classes
->begin ();
3607 /* Program spaces that are executing startup should have
3608 been filtered out earlier. */
3609 pspace
= sym
->symtab ()->compunit ()->objfile ()->pspace
;
3610 gdb_assert (!pspace
->executing_startup
);
3611 set_current_program_space (pspace
);
3612 t
= check_typedef (sym
->type ());
3613 find_methods (t
, sym
->language (),
3614 method_name
, &result_names
, &superclass_vec
);
3616 /* Handle all items from a single program space at once; and be
3617 sure not to miss the last batch. */
3618 if (ix
== sym_classes
->size () - 1
3620 != (sym_classes
->at (ix
+ 1).symbol
->symtab ()
3621 ->compunit ()->objfile ()->pspace
)))
3623 /* If we did not find a direct implementation anywhere in
3624 this program space, consider superclasses. */
3625 if (result_names
.size () == last_result_len
)
3626 find_superclass_methods (std::move (superclass_vec
), method_name
,
3627 sym
->language (), &result_names
);
3629 /* We have a list of candidate symbol names, so now we
3630 iterate over the symbol tables looking for all
3631 matches in this pspace. */
3632 add_all_symbol_names_from_pspace (&info
, pspace
, result_names
,
3635 superclass_vec
.clear ();
3636 last_result_len
= result_names
.size ();
3640 if (!symbols
->empty () || !minsyms
->empty ())
3643 /* Throw an NOT_FOUND_ERROR. This will be caught by the caller
3644 and other attempts to locate the symbol will be made. */
3645 throw_error (NOT_FOUND_ERROR
, _("see caller, this text doesn't matter"));
3652 /* This function object is a callback for iterate_over_symtabs, used
3653 when collecting all matching symtabs. */
3655 class symtab_collector
3659 : m_symtab_table (htab_create (1, htab_hash_pointer
, htab_eq_pointer
,
3664 /* Callable as a symbol_found_callback_ftype callback. */
3665 bool operator () (symtab
*sym
);
3667 /* Return an rvalue reference to the collected symtabs. */
3668 std::vector
<symtab
*> &&release_symtabs ()
3670 return std::move (m_symtabs
);
3674 /* The result vector of symtabs. */
3675 std::vector
<symtab
*> m_symtabs
;
3677 /* This is used to ensure the symtabs are unique. */
3678 htab_up m_symtab_table
;
3682 symtab_collector::operator () (struct symtab
*symtab
)
3686 slot
= htab_find_slot (m_symtab_table
.get (), symtab
, INSERT
);
3690 m_symtabs
.push_back (symtab
);
3698 /* Given a file name, return a list of all matching symtabs. If
3699 SEARCH_PSPACE is not NULL, the search is restricted to just that
3702 static std::vector
<symtab
*>
3703 collect_symtabs_from_filename (const char *file
,
3704 struct program_space
*search_pspace
)
3706 symtab_collector collector
;
3708 /* Find that file's data. */
3709 if (search_pspace
== NULL
)
3711 for (struct program_space
*pspace
: program_spaces
)
3713 if (pspace
->executing_startup
)
3716 set_current_program_space (pspace
);
3717 iterate_over_symtabs (file
, collector
);
3722 set_current_program_space (search_pspace
);
3723 iterate_over_symtabs (file
, collector
);
3726 return collector
.release_symtabs ();
3729 /* Return all the symtabs associated to the FILENAME. If SEARCH_PSPACE is
3730 not NULL, the search is restricted to just that program space. */
3732 static std::vector
<symtab
*>
3733 symtabs_from_filename (const char *filename
,
3734 struct program_space
*search_pspace
)
3736 std::vector
<symtab
*> result
3737 = collect_symtabs_from_filename (filename
, search_pspace
);
3739 if (result
.empty ())
3741 if (!have_full_symbols () && !have_partial_symbols ())
3742 throw_error (NOT_FOUND_ERROR
,
3743 _("No symbol table is loaded. "
3744 "Use the \"file\" command."));
3745 source_file_not_found_error (filename
);
3754 symbol_searcher::find_all_symbols (const std::string
&name
,
3755 const struct language_defn
*language
,
3756 enum search_domain search_domain
,
3757 std::vector
<symtab
*> *search_symtabs
,
3758 struct program_space
*search_pspace
)
3760 symbol_searcher_collect_info info
;
3761 struct linespec_state state
;
3763 memset (&state
, 0, sizeof (state
));
3764 state
.language
= language
;
3765 info
.state
= &state
;
3767 info
.result
.symbols
= &m_symbols
;
3768 info
.result
.minimal_symbols
= &m_minimal_symbols
;
3769 std::vector
<symtab
*> all_symtabs
;
3770 if (search_symtabs
== nullptr)
3772 all_symtabs
.push_back (nullptr);
3773 search_symtabs
= &all_symtabs
;
3775 info
.file_symtabs
= search_symtabs
;
3777 add_matching_symbols_to_info (name
.c_str (), symbol_name_match_type::WILD
,
3778 search_domain
, &info
, search_pspace
);
3781 /* Look up a function symbol named NAME in symtabs FILE_SYMTABS. Matching
3782 debug symbols are returned in SYMBOLS. Matching minimal symbols are
3783 returned in MINSYMS. */
3786 find_function_symbols (struct linespec_state
*state
,
3787 const std::vector
<symtab
*> &file_symtabs
, const char *name
,
3788 symbol_name_match_type name_match_type
,
3789 std::vector
<block_symbol
> *symbols
,
3790 std::vector
<bound_minimal_symbol
> *minsyms
)
3792 struct collect_info info
;
3793 std::vector
<const char *> symbol_names
;
3796 info
.result
.symbols
= symbols
;
3797 info
.result
.minimal_symbols
= minsyms
;
3798 info
.file_symtabs
= &file_symtabs
;
3800 /* Try NAME as an Objective-C selector. */
3801 find_imps (name
, &symbol_names
);
3802 if (!symbol_names
.empty ())
3803 add_all_symbol_names_from_pspace (&info
, state
->search_pspace
,
3804 symbol_names
, FUNCTIONS_DOMAIN
);
3806 add_matching_symbols_to_info (name
, name_match_type
, FUNCTIONS_DOMAIN
,
3807 &info
, state
->search_pspace
);
3810 /* Find all symbols named NAME in FILE_SYMTABS, returning debug symbols
3811 in SYMBOLS and minimal symbols in MINSYMS. */
3814 find_linespec_symbols (struct linespec_state
*state
,
3815 const std::vector
<symtab
*> &file_symtabs
,
3816 const char *lookup_name
,
3817 symbol_name_match_type name_match_type
,
3818 std::vector
<block_symbol
> *symbols
,
3819 std::vector
<bound_minimal_symbol
> *minsyms
)
3821 gdb::unique_xmalloc_ptr
<char> canon
3822 = cp_canonicalize_string_no_typedefs (lookup_name
);
3823 if (canon
!= nullptr)
3824 lookup_name
= canon
.get ();
3826 /* It's important to not call expand_symtabs_matching unnecessarily
3827 as it can really slow things down (by unnecessarily expanding
3828 potentially 1000s of symtabs, which when debugging some apps can
3829 cost 100s of seconds). Avoid this to some extent by *first* calling
3830 find_function_symbols, and only if that doesn't find anything
3831 *then* call find_method. This handles two important cases:
3832 1) break (anonymous namespace)::foo
3833 2) break class::method where method is in class (and not a baseclass) */
3835 find_function_symbols (state
, file_symtabs
, lookup_name
,
3836 name_match_type
, symbols
, minsyms
);
3838 /* If we were unable to locate a symbol of the same name, try dividing
3839 the name into class and method names and searching the class and its
3841 if (symbols
->empty () && minsyms
->empty ())
3843 std::string klass
, method
;
3844 const char *last
, *p
, *scope_op
;
3846 /* See if we can find a scope operator and break this symbol
3847 name into namespaces${SCOPE_OPERATOR}class_name and method_name. */
3849 p
= find_toplevel_string (lookup_name
, scope_op
);
3855 p
= find_toplevel_string (p
+ strlen (scope_op
), scope_op
);
3858 /* If no scope operator was found, there is nothing more we can do;
3859 we already attempted to lookup the entire name as a symbol
3864 /* LOOKUP_NAME points to the class name.
3865 LAST points to the method name. */
3866 klass
= std::string (lookup_name
, last
- lookup_name
);
3868 /* Skip past the scope operator. */
3869 last
+= strlen (scope_op
);
3872 /* Find a list of classes named KLASS. */
3873 std::vector
<block_symbol
> classes
3874 = lookup_prefix_sym (state
, file_symtabs
, klass
.c_str ());
3875 if (!classes
.empty ())
3877 /* Now locate a list of suitable methods named METHOD. */
3880 find_method (state
, file_symtabs
,
3881 klass
.c_str (), method
.c_str (),
3882 &classes
, symbols
, minsyms
);
3885 /* If successful, we're done. If NOT_FOUND_ERROR
3886 was not thrown, rethrow the exception that we did get. */
3887 catch (const gdb_exception_error
&except
)
3889 if (except
.error
!= NOT_FOUND_ERROR
)
3896 /* Helper for find_label_symbols. Find all labels that match name
3897 NAME in BLOCK. Return all labels that match in FUNCTION_SYMBOLS.
3898 Return the actual function symbol in which the label was found in
3899 LABEL_FUNC_RET. If COMPLETION_MODE is true, then NAME is
3900 interpreted as a label name prefix. Otherwise, only a label named
3901 exactly NAME match. */
3904 find_label_symbols_in_block (const struct block
*block
,
3905 const char *name
, struct symbol
*fn_sym
,
3906 bool completion_mode
,
3907 std::vector
<block_symbol
> *result
,
3908 std::vector
<block_symbol
> *label_funcs_ret
)
3910 if (completion_mode
)
3912 struct block_iterator iter
;
3914 size_t name_len
= strlen (name
);
3916 int (*cmp
) (const char *, const char *, size_t);
3917 cmp
= case_sensitivity
== case_sensitive_on
? strncmp
: strncasecmp
;
3919 ALL_BLOCK_SYMBOLS (block
, iter
, sym
)
3921 if (symbol_matches_domain (sym
->language (),
3922 sym
->domain (), LABEL_DOMAIN
)
3923 && cmp (sym
->search_name (), name
, name_len
) == 0)
3925 result
->push_back ({sym
, block
});
3926 label_funcs_ret
->push_back ({fn_sym
, block
});
3932 struct block_symbol label_sym
3933 = lookup_symbol (name
, block
, LABEL_DOMAIN
, 0);
3935 if (label_sym
.symbol
!= NULL
)
3937 result
->push_back (label_sym
);
3938 label_funcs_ret
->push_back ({fn_sym
, block
});
3943 /* Return all labels that match name NAME in FUNCTION_SYMBOLS.
3945 Return the actual function symbol in which the label was found in
3946 LABEL_FUNC_RET. If COMPLETION_MODE is true, then NAME is
3947 interpreted as a label name prefix. Otherwise, only labels named
3948 exactly NAME match. */
3951 static std::vector
<block_symbol
>
3952 find_label_symbols (struct linespec_state
*self
,
3953 const std::vector
<block_symbol
> &function_symbols
,
3954 std::vector
<block_symbol
> *label_funcs_ret
,
3956 bool completion_mode
)
3958 const struct block
*block
;
3959 struct symbol
*fn_sym
;
3960 std::vector
<block_symbol
> result
;
3962 if (function_symbols
.empty ())
3964 set_current_program_space (self
->program_space
);
3965 block
= get_current_search_block ();
3968 block
&& !block
->function ();
3969 block
= block
->superblock ())
3975 fn_sym
= block
->function ();
3977 find_label_symbols_in_block (block
, name
, fn_sym
, completion_mode
,
3978 &result
, label_funcs_ret
);
3982 for (const auto &elt
: function_symbols
)
3984 fn_sym
= elt
.symbol
;
3985 set_current_program_space
3986 (fn_sym
->symtab ()->compunit ()->objfile ()->pspace
);
3987 block
= fn_sym
->value_block ();
3989 find_label_symbols_in_block (block
, name
, fn_sym
, completion_mode
,
3990 &result
, label_funcs_ret
);
3999 /* A helper for create_sals_line_offset that handles the 'list_mode' case. */
4001 static std::vector
<symtab_and_line
>
4002 decode_digits_list_mode (struct linespec_state
*self
,
4004 struct symtab_and_line val
)
4006 gdb_assert (self
->list_mode
);
4008 std::vector
<symtab_and_line
> values
;
4010 for (const auto &elt
: ls
->file_symtabs
)
4012 /* The logic above should ensure this. */
4013 gdb_assert (elt
!= NULL
);
4015 program_space
*pspace
= elt
->compunit ()->objfile ()->pspace
;
4016 set_current_program_space (pspace
);
4018 /* Simplistic search just for the list command. */
4019 val
.symtab
= find_line_symtab (elt
, val
.line
, NULL
, NULL
);
4020 if (val
.symtab
== NULL
)
4022 val
.pspace
= pspace
;
4024 val
.explicit_line
= true;
4026 add_sal_to_sals (self
, &values
, &val
, NULL
, 0);
4032 /* A helper for create_sals_line_offset that iterates over the symtabs
4033 associated with LS and returns a vector of corresponding symtab_and_line
4036 static std::vector
<symtab_and_line
>
4037 decode_digits_ordinary (struct linespec_state
*self
,
4040 struct linetable_entry
**best_entry
)
4042 std::vector
<symtab_and_line
> sals
;
4043 for (const auto &elt
: ls
->file_symtabs
)
4045 std::vector
<CORE_ADDR
> pcs
;
4047 /* The logic above should ensure this. */
4048 gdb_assert (elt
!= NULL
);
4050 program_space
*pspace
= elt
->compunit ()->objfile ()->pspace
;
4051 set_current_program_space (pspace
);
4053 pcs
= find_pcs_for_symtab_line (elt
, line
, best_entry
);
4054 for (CORE_ADDR pc
: pcs
)
4056 symtab_and_line sal
;
4057 sal
.pspace
= pspace
;
4060 sal
.explicit_line
= true;
4062 sals
.push_back (std::move (sal
));
4071 /* Return the line offset represented by VARIABLE. */
4073 static struct line_offset
4074 linespec_parse_variable (struct linespec_state
*self
, const char *variable
)
4078 struct line_offset offset
= {0, LINE_OFFSET_NONE
};
4080 p
= (variable
[1] == '$') ? variable
+ 2 : variable
+ 1;
4083 while (*p
>= '0' && *p
<= '9')
4085 if (!*p
) /* Reached end of token without hitting non-digit. */
4087 /* We have a value history reference. */
4088 struct value
*val_history
;
4090 sscanf ((variable
[1] == '$') ? variable
+ 2 : variable
+ 1, "%d", &index
);
4092 = access_value_history ((variable
[1] == '$') ? -index
: index
);
4093 if (value_type (val_history
)->code () != TYPE_CODE_INT
)
4094 error (_("History values used in line "
4095 "specs must have integer values."));
4096 offset
.offset
= value_as_long (val_history
);
4100 /* Not all digits -- may be user variable/function or a
4101 convenience variable. */
4103 struct internalvar
*ivar
;
4105 /* Try it as a convenience variable. If it is not a convenience
4106 variable, return and allow normal symbol lookup to occur. */
4107 ivar
= lookup_only_internalvar (variable
+ 1);
4109 /* No internal variable with that name. Mark the offset
4110 as unknown to allow the name to be looked up as a symbol. */
4111 offset
.sign
= LINE_OFFSET_UNKNOWN
;
4114 /* We found a valid variable name. If it is not an integer,
4116 if (!get_internalvar_integer (ivar
, &valx
))
4117 error (_("Convenience variables used in line "
4118 "specs must have integer values."));
4120 offset
.offset
= valx
;
4128 /* We've found a minimal symbol MSYMBOL in OBJFILE to associate with our
4129 linespec; return the SAL in RESULT. This function should return SALs
4130 matching those from find_function_start_sal, otherwise false
4131 multiple-locations breakpoints could be placed. */
4134 minsym_found (struct linespec_state
*self
, struct objfile
*objfile
,
4135 struct minimal_symbol
*msymbol
,
4136 std::vector
<symtab_and_line
> *result
)
4138 bool want_start_sal
;
4140 CORE_ADDR func_addr
;
4141 bool is_function
= msymbol_is_function (objfile
, msymbol
, &func_addr
);
4145 const char *msym_name
= msymbol
->linkage_name ();
4147 if (msymbol
->type () == mst_text_gnu_ifunc
4148 || msymbol
->type () == mst_data_gnu_ifunc
)
4149 want_start_sal
= gnu_ifunc_resolve_name (msym_name
, &func_addr
);
4151 want_start_sal
= true;
4154 symtab_and_line sal
;
4156 if (is_function
&& want_start_sal
)
4157 sal
= find_function_start_sal (func_addr
, NULL
, self
->funfirstline
);
4160 sal
.objfile
= objfile
;
4161 sal
.msymbol
= msymbol
;
4162 /* Store func_addr, not the minsym's address in case this was an
4163 ifunc that hasn't been resolved yet. */
4167 sal
.pc
= msymbol
->value_address (objfile
);
4168 sal
.pspace
= current_program_space
;
4171 sal
.section
= msymbol
->obj_section (objfile
);
4173 if (maybe_add_address (self
->addr_set
, objfile
->pspace
, sal
.pc
))
4174 add_sal_to_sals (self
, result
, &sal
, msymbol
->natural_name (), 0);
4177 /* Helper for search_minsyms_for_name that adds the symbol to the
4181 add_minsym (struct minimal_symbol
*minsym
, struct objfile
*objfile
,
4182 struct symtab
*symtab
, int list_mode
,
4183 std::vector
<struct bound_minimal_symbol
> *msyms
)
4187 /* We're looking for a label for which we don't have debug
4189 CORE_ADDR func_addr
;
4190 if (msymbol_is_function (objfile
, minsym
, &func_addr
))
4192 symtab_and_line sal
= find_pc_sect_line (func_addr
, NULL
, 0);
4194 if (symtab
!= sal
.symtab
)
4199 /* Exclude data symbols when looking for breakpoint locations. */
4200 if (!list_mode
&& !msymbol_is_function (objfile
, minsym
))
4203 msyms
->emplace_back (minsym
, objfile
);
4207 /* Search for minimal symbols called NAME. If SEARCH_PSPACE
4208 is not NULL, the search is restricted to just that program
4211 If SYMTAB is NULL, search all objfiles, otherwise
4212 restrict results to the given SYMTAB. */
4215 search_minsyms_for_name (struct collect_info
*info
,
4216 const lookup_name_info
&name
,
4217 struct program_space
*search_pspace
,
4218 struct symtab
*symtab
)
4220 std::vector
<struct bound_minimal_symbol
> minsyms
;
4224 for (struct program_space
*pspace
: program_spaces
)
4226 if (search_pspace
!= NULL
&& search_pspace
!= pspace
)
4228 if (pspace
->executing_startup
)
4231 set_current_program_space (pspace
);
4233 for (objfile
*objfile
: current_program_space
->objfiles ())
4235 iterate_over_minimal_symbols (objfile
, name
,
4236 [&] (struct minimal_symbol
*msym
)
4238 add_minsym (msym
, objfile
, nullptr,
4239 info
->state
->list_mode
,
4248 program_space
*pspace
= symtab
->compunit ()->objfile ()->pspace
;
4250 if (search_pspace
== NULL
|| pspace
== search_pspace
)
4252 set_current_program_space (pspace
);
4253 iterate_over_minimal_symbols
4254 (symtab
->compunit ()->objfile (), name
,
4255 [&] (struct minimal_symbol
*msym
)
4257 add_minsym (msym
, symtab
->compunit ()->objfile (), symtab
,
4258 info
->state
->list_mode
, &minsyms
);
4264 /* Return true if TYPE is a static symbol. */
4265 auto msymbol_type_is_static
= [] (enum minimal_symbol_type type
)
4278 /* Add minsyms to the result set, but filter out trampoline symbols
4279 if we also found extern symbols with the same name. I.e., don't
4280 set a breakpoint on both '<foo@plt>' and 'foo', assuming that
4281 'foo' is the symbol that the plt resolves to. */
4282 for (const bound_minimal_symbol
&item
: minsyms
)
4285 if (item
.minsym
->type () == mst_solib_trampoline
)
4287 for (const bound_minimal_symbol
&item2
: minsyms
)
4289 if (&item2
== &item
)
4292 /* Trampoline symbols can only jump to exported
4294 if (msymbol_type_is_static (item2
.minsym
->type ()))
4297 if (strcmp (item
.minsym
->linkage_name (),
4298 item2
.minsym
->linkage_name ()) != 0)
4301 /* Found a global minsym with the same name as the
4302 trampoline. Don't create a location for this
4310 info
->result
.minimal_symbols
->push_back (item
);
4314 /* A helper function to add all symbols matching NAME to INFO. If
4315 PSPACE is not NULL, the search is restricted to just that program
4319 add_matching_symbols_to_info (const char *name
,
4320 symbol_name_match_type name_match_type
,
4321 enum search_domain search_domain
,
4322 struct collect_info
*info
,
4323 struct program_space
*pspace
)
4325 lookup_name_info
lookup_name (name
, name_match_type
);
4327 for (const auto &elt
: *info
->file_symtabs
)
4331 iterate_over_all_matching_symtabs (info
->state
, lookup_name
,
4332 VAR_DOMAIN
, search_domain
,
4334 [&] (block_symbol
*bsym
)
4335 { return info
->add_symbol (bsym
); });
4336 search_minsyms_for_name (info
, lookup_name
, pspace
, NULL
);
4338 else if (pspace
== NULL
|| pspace
== elt
->compunit ()->objfile ()->pspace
)
4340 int prev_len
= info
->result
.symbols
->size ();
4342 /* Program spaces that are executing startup should have
4343 been filtered out earlier. */
4344 program_space
*elt_pspace
= elt
->compunit ()->objfile ()->pspace
;
4345 gdb_assert (!elt_pspace
->executing_startup
);
4346 set_current_program_space (elt_pspace
);
4347 iterate_over_file_blocks (elt
, lookup_name
, VAR_DOMAIN
,
4348 [&] (block_symbol
*bsym
)
4349 { return info
->add_symbol (bsym
); });
4351 /* If no new symbols were found in this iteration and this symtab
4352 is in assembler, we might actually be looking for a label for
4353 which we don't have debug info. Check for a minimal symbol in
4355 if (prev_len
== info
->result
.symbols
->size ()
4356 && elt
->language () == language_asm
)
4357 search_minsyms_for_name (info
, lookup_name
, pspace
, elt
);
4364 /* Now come some functions that are called from multiple places within
4368 symbol_to_sal (struct symtab_and_line
*result
,
4369 int funfirstline
, struct symbol
*sym
)
4371 if (sym
->aclass () == LOC_BLOCK
)
4373 *result
= find_function_start_sal (sym
, funfirstline
);
4378 if (sym
->aclass () == LOC_LABEL
&& sym
->value_address () != 0)
4381 result
->symtab
= sym
->symtab ();
4382 result
->symbol
= sym
;
4383 result
->line
= sym
->line ();
4384 result
->pc
= sym
->value_address ();
4385 result
->pspace
= result
->symtab
->compunit ()->objfile ()->pspace
;
4386 result
->explicit_pc
= 1;
4389 else if (funfirstline
)
4393 else if (sym
->line () != 0)
4395 /* We know its line number. */
4397 result
->symtab
= sym
->symtab ();
4398 result
->symbol
= sym
;
4399 result
->line
= sym
->line ();
4400 result
->pc
= sym
->value_address ();
4401 result
->pspace
= result
->symtab
->compunit ()->objfile ()->pspace
;
4409 linespec_result::~linespec_result ()
4411 for (linespec_sals
&lsal
: lsals
)
4412 xfree (lsal
.canonical
);
4415 /* Return the quote characters permitted by the linespec parser. */
4418 get_gdb_linespec_parser_quote_characters (void)
4420 return linespec_quote_characters
;