1 /* Parser for linespec for the GNU debugger, GDB.
3 Copyright (C) 1986-2016 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"
48 typedef struct symbol *symbolp;
51 typedef struct type *typep;
54 /* An address entry is used to ensure that any given location is only
55 added to the result a single time. It holds an address and the
56 program space from which the address came. */
60 struct program_space *pspace;
64 typedef struct bound_minimal_symbol bound_minimal_symbol_d;
66 DEF_VEC_O (bound_minimal_symbol_d);
68 /* A linespec. Elements of this structure are filled in by a parser
69 (either parse_linespec or some other function). The structure is
70 then converted into SALs by convert_linespec_to_sals. */
74 /* An explicit location describing the SaLs. */
75 struct explicit_location explicit_loc;
77 /* The list of symtabs to search to which to limit the search. May not
78 be NULL. If explicit.SOURCE_FILENAME is NULL (no user-specified
79 filename), FILE_SYMTABS should contain one single NULL member. This
80 will cause the code to use the default symtab. */
81 VEC (symtab_ptr) *file_symtabs;
83 /* A list of matching function symbols and minimal symbols. Both lists
84 may be NULL if no matching symbols were found. */
85 VEC (symbolp) *function_symbols;
86 VEC (bound_minimal_symbol_d) *minimal_symbols;
88 /* A structure of matching label symbols and the corresponding
89 function symbol in which the label was found. Both may be NULL
90 or both must be non-NULL. */
93 VEC (symbolp) *label_symbols;
94 VEC (symbolp) *function_symbols;
97 typedef struct linespec *linespec_p;
99 /* A canonical linespec represented as a symtab-related string.
101 Each entry represents the "SYMTAB:SUFFIX" linespec string.
102 SYMTAB can be converted for example by symtab_to_fullname or
103 symtab_to_filename_for_display as needed. */
105 struct linespec_canonical_name
107 /* Remaining text part of the linespec string. */
110 /* If NULL then SUFFIX is the whole linespec string. */
111 struct symtab *symtab;
114 /* An instance of this is used to keep all state while linespec
115 operates. This instance is passed around as a 'this' pointer to
116 the various implementation methods. */
118 struct linespec_state
120 /* The language in use during linespec processing. */
121 const struct language_defn *language;
123 /* The program space as seen when the module was entered. */
124 struct program_space *program_space;
126 /* If not NULL, the search is restricted to just this program
128 struct program_space *search_pspace;
130 /* The default symtab to use, if no other symtab is specified. */
131 struct symtab *default_symtab;
133 /* The default line to use. */
136 /* The 'funfirstline' value that was passed in to decode_line_1 or
140 /* Nonzero if we are running in 'list' mode; see decode_line_list. */
143 /* The 'canonical' value passed to decode_line_full, or NULL. */
144 struct linespec_result *canonical;
146 /* Canonical strings that mirror the symtabs_and_lines result. */
147 struct linespec_canonical_name *canonical_names;
149 /* This is a set of address_entry objects which is used to prevent
150 duplicate symbols from being entered into the result. */
153 /* Are we building a linespec? */
157 /* This is a helper object that is used when collecting symbols into a
162 /* The linespec object in use. */
163 struct linespec_state *state;
165 /* A list of symtabs to which to restrict matches. */
166 VEC (symtab_ptr) *file_symtabs;
168 /* The result being accumulated. */
171 VEC (symbolp) *symbols;
172 VEC (bound_minimal_symbol_d) *minimal_symbols;
183 /* A colon "separator" */
195 /* EOI (end of input) */
201 typedef enum ls_token_type linespec_token_type;
203 /* List of keywords */
205 static const char * const linespec_keywords[] = { "if", "thread", "task" };
206 #define IF_KEYWORD_INDEX 0
208 /* A token of the linespec lexer */
212 /* The type of the token */
213 linespec_token_type type;
215 /* Data for the token */
218 /* A string, given as a stoken */
219 struct stoken string;
225 typedef struct ls_token linespec_token;
227 #define LS_TOKEN_STOKEN(TOK) (TOK).data.string
228 #define LS_TOKEN_KEYWORD(TOK) (TOK).data.keyword
230 /* An instance of the linespec parser. */
234 /* Lexer internal data */
237 /* Save head of input stream. */
238 const char *saved_arg;
240 /* Head of the input stream. */
242 #define PARSER_STREAM(P) ((P)->lexer.stream)
244 /* The current token. */
245 linespec_token current;
248 /* Is the entire linespec quote-enclosed? */
249 int is_quote_enclosed;
251 /* The state of the parse. */
252 struct linespec_state state;
253 #define PARSER_STATE(PPTR) (&(PPTR)->state)
255 /* The result of the parse. */
256 struct linespec result;
257 #define PARSER_RESULT(PPTR) (&(PPTR)->result)
259 typedef struct ls_parser linespec_parser;
261 /* A convenience macro for accessing the explicit location result of
263 #define PARSER_EXPLICIT(PPTR) (&PARSER_RESULT ((PPTR))->explicit_loc)
265 /* Prototypes for local functions. */
267 static void iterate_over_file_blocks (struct symtab *symtab,
268 const char *name, domain_enum domain,
269 symbol_found_callback_ftype *callback,
272 static void initialize_defaults (struct symtab **default_symtab,
275 CORE_ADDR linespec_expression_to_pc (const char **exp_ptr);
277 static struct symtabs_and_lines decode_objc (struct linespec_state *self,
281 static VEC (symtab_ptr) *symtabs_from_filename (const char *,
282 struct program_space *pspace);
284 static VEC (symbolp) *find_label_symbols (struct linespec_state *self,
285 VEC (symbolp) *function_symbols,
286 VEC (symbolp) **label_funcs_ret,
289 static void find_linespec_symbols (struct linespec_state *self,
290 VEC (symtab_ptr) *file_symtabs,
292 VEC (symbolp) **symbols,
293 VEC (bound_minimal_symbol_d) **minsyms);
295 static struct line_offset
296 linespec_parse_variable (struct linespec_state *self,
297 const char *variable);
299 static int symbol_to_sal (struct symtab_and_line *result,
300 int funfirstline, struct symbol *sym);
302 static void add_matching_symbols_to_info (const char *name,
303 struct collect_info *info,
304 struct program_space *pspace);
306 static void add_all_symbol_names_from_pspace (struct collect_info *info,
307 struct program_space *pspace,
308 VEC (const_char_ptr) *names);
310 static VEC (symtab_ptr) *
311 collect_symtabs_from_filename (const char *file,
312 struct program_space *pspace);
314 static void decode_digits_ordinary (struct linespec_state *self,
317 struct symtabs_and_lines *sals,
318 struct linetable_entry **best_entry);
320 static void decode_digits_list_mode (struct linespec_state *self,
322 struct symtabs_and_lines *values,
323 struct symtab_and_line val);
325 static void minsym_found (struct linespec_state *self, struct objfile *objfile,
326 struct minimal_symbol *msymbol,
327 struct symtabs_and_lines *result);
329 static int compare_symbols (const void *a, const void *b);
331 static int compare_msymbols (const void *a, const void *b);
333 /* Permitted quote characters for the parser. This is different from the
334 completer's quote characters to allow backward compatibility with the
336 static const char *const linespec_quote_characters = "\"\'";
338 /* Lexer functions. */
340 /* Lex a number from the input in PARSER. This only supports
343 Return true if input is decimal numbers. Return false if not. */
346 linespec_lexer_lex_number (linespec_parser *parser, linespec_token *tokenp)
348 tokenp->type = LSTOKEN_NUMBER;
349 LS_TOKEN_STOKEN (*tokenp).length = 0;
350 LS_TOKEN_STOKEN (*tokenp).ptr = PARSER_STREAM (parser);
352 /* Keep any sign at the start of the stream. */
353 if (*PARSER_STREAM (parser) == '+' || *PARSER_STREAM (parser) == '-')
355 ++LS_TOKEN_STOKEN (*tokenp).length;
356 ++(PARSER_STREAM (parser));
359 while (isdigit (*PARSER_STREAM (parser)))
361 ++LS_TOKEN_STOKEN (*tokenp).length;
362 ++(PARSER_STREAM (parser));
365 /* If the next character in the input buffer is not a space, comma,
366 quote, or colon, this input does not represent a number. */
367 if (*PARSER_STREAM (parser) != '\0'
368 && !isspace (*PARSER_STREAM (parser)) && *PARSER_STREAM (parser) != ','
369 && *PARSER_STREAM (parser) != ':'
370 && !strchr (linespec_quote_characters, *PARSER_STREAM (parser)))
372 PARSER_STREAM (parser) = LS_TOKEN_STOKEN (*tokenp).ptr;
379 /* See linespec.h. */
382 linespec_lexer_lex_keyword (const char *p)
388 for (i = 0; i < ARRAY_SIZE (linespec_keywords); ++i)
390 int len = strlen (linespec_keywords[i]);
392 /* If P begins with one of the keywords and the next
393 character is whitespace, we may have found a keyword.
394 It is only a keyword if it is not followed by another
396 if (strncmp (p, linespec_keywords[i], len) == 0
401 /* Special case: "if" ALWAYS stops the lexer, since it
402 is not possible to predict what is going to appear in
403 the condition, which can only be parsed after SaLs have
405 if (i != IF_KEYWORD_INDEX)
408 p = skip_spaces_const (p);
409 for (j = 0; j < ARRAY_SIZE (linespec_keywords); ++j)
411 int nextlen = strlen (linespec_keywords[j]);
413 if (strncmp (p, linespec_keywords[j], nextlen) == 0
414 && isspace (p[nextlen]))
419 return linespec_keywords[i];
427 /* See description in linespec.h. */
430 is_ada_operator (const char *string)
432 const struct ada_opname_map *mapping;
434 for (mapping = ada_opname_table;
435 mapping->encoded != NULL
436 && !startswith (string, mapping->decoded); ++mapping)
439 return mapping->decoded == NULL ? 0 : strlen (mapping->decoded);
442 /* Find QUOTE_CHAR in STRING, accounting for the ':' terminal. Return
443 the location of QUOTE_CHAR, or NULL if not found. */
446 skip_quote_char (const char *string, char quote_char)
448 const char *p, *last;
450 p = last = find_toplevel_char (string, quote_char);
451 while (p && *p != '\0' && *p != ':')
453 p = find_toplevel_char (p, quote_char);
461 /* Make a writable copy of the string given in TOKEN, trimming
462 any trailing whitespace. */
465 copy_token_string (linespec_token token)
469 if (token.type == LSTOKEN_KEYWORD)
470 return xstrdup (LS_TOKEN_KEYWORD (token));
472 str = savestring (LS_TOKEN_STOKEN (token).ptr,
473 LS_TOKEN_STOKEN (token).length);
474 s = remove_trailing_whitespace (str, str + LS_TOKEN_STOKEN (token).length);
480 /* Does P represent the end of a quote-enclosed linespec? */
483 is_closing_quote_enclosed (const char *p)
485 if (strchr (linespec_quote_characters, *p))
487 p = skip_spaces ((char *) p);
488 return (*p == '\0' || linespec_lexer_lex_keyword (p));
491 /* Find the end of the parameter list that starts with *INPUT.
492 This helper function assists with lexing string segments
493 which might contain valid (non-terminating) commas. */
496 find_parameter_list_end (const char *input)
498 char end_char, start_char;
503 if (start_char == '(')
505 else if (start_char == '<')
514 if (*p == start_char)
516 else if (*p == end_char)
531 /* Lex a string from the input in PARSER. */
533 static linespec_token
534 linespec_lexer_lex_string (linespec_parser *parser)
536 linespec_token token;
537 const char *start = PARSER_STREAM (parser);
539 token.type = LSTOKEN_STRING;
541 /* If the input stream starts with a quote character, skip to the next
542 quote character, regardless of the content. */
543 if (strchr (linespec_quote_characters, *PARSER_STREAM (parser)))
546 char quote_char = *PARSER_STREAM (parser);
548 /* Special case: Ada operators. */
549 if (PARSER_STATE (parser)->language->la_language == language_ada
550 && quote_char == '\"')
552 int len = is_ada_operator (PARSER_STREAM (parser));
556 /* The input is an Ada operator. Return the quoted string
558 LS_TOKEN_STOKEN (token).ptr = PARSER_STREAM (parser);
559 LS_TOKEN_STOKEN (token).length = len;
560 PARSER_STREAM (parser) += len;
564 /* The input does not represent an Ada operator -- fall through
565 to normal quoted string handling. */
568 /* Skip past the beginning quote. */
569 ++(PARSER_STREAM (parser));
571 /* Mark the start of the string. */
572 LS_TOKEN_STOKEN (token).ptr = PARSER_STREAM (parser);
574 /* Skip to the ending quote. */
575 end = skip_quote_char (PARSER_STREAM (parser), quote_char);
577 /* Error if the input did not terminate properly. */
579 error (_("unmatched quote"));
581 /* Skip over the ending quote and mark the length of the string. */
582 PARSER_STREAM (parser) = (char *) ++end;
583 LS_TOKEN_STOKEN (token).length = PARSER_STREAM (parser) - 2 - start;
589 /* Otherwise, only identifier characters are permitted.
590 Spaces are the exception. In general, we keep spaces,
591 but only if the next characters in the input do not resolve
592 to one of the keywords.
594 This allows users to forgo quoting CV-qualifiers, template arguments,
595 and similar common language constructs. */
599 if (isspace (*PARSER_STREAM (parser)))
601 p = skip_spaces_const (PARSER_STREAM (parser));
602 /* When we get here we know we've found something followed by
603 a space (we skip over parens and templates below).
604 So if we find a keyword now, we know it is a keyword and not,
605 say, a function name. */
606 if (linespec_lexer_lex_keyword (p) != NULL)
608 LS_TOKEN_STOKEN (token).ptr = start;
609 LS_TOKEN_STOKEN (token).length
610 = PARSER_STREAM (parser) - start;
614 /* Advance past the whitespace. */
615 PARSER_STREAM (parser) = p;
618 /* If the next character is EOI or (single) ':', the
619 string is complete; return the token. */
620 if (*PARSER_STREAM (parser) == 0)
622 LS_TOKEN_STOKEN (token).ptr = start;
623 LS_TOKEN_STOKEN (token).length = PARSER_STREAM (parser) - start;
626 else if (PARSER_STREAM (parser)[0] == ':')
628 /* Do not tokenize the C++ scope operator. */
629 if (PARSER_STREAM (parser)[1] == ':')
630 ++(PARSER_STREAM (parser));
632 /* Do not tokenify if the input length so far is one
633 (i.e, a single-letter drive name) and the next character
634 is a directory separator. This allows Windows-style
635 paths to be recognized as filenames without quoting it. */
636 else if ((PARSER_STREAM (parser) - start) != 1
637 || !IS_DIR_SEPARATOR (PARSER_STREAM (parser)[1]))
639 LS_TOKEN_STOKEN (token).ptr = start;
640 LS_TOKEN_STOKEN (token).length
641 = PARSER_STREAM (parser) - start;
645 /* Special case: permit quote-enclosed linespecs. */
646 else if (parser->is_quote_enclosed
647 && strchr (linespec_quote_characters,
648 *PARSER_STREAM (parser))
649 && is_closing_quote_enclosed (PARSER_STREAM (parser)))
651 LS_TOKEN_STOKEN (token).ptr = start;
652 LS_TOKEN_STOKEN (token).length = PARSER_STREAM (parser) - start;
655 /* Because commas may terminate a linespec and appear in
656 the middle of valid string input, special cases for
657 '<' and '(' are necessary. */
658 else if (*PARSER_STREAM (parser) == '<'
659 || *PARSER_STREAM (parser) == '(')
663 p = find_parameter_list_end (PARSER_STREAM (parser));
666 PARSER_STREAM (parser) = p;
670 /* Commas are terminators, but not if they are part of an
672 else if (*PARSER_STREAM (parser) == ',')
674 if ((PARSER_STATE (parser)->language->la_language
676 && (PARSER_STREAM (parser) - start) > 8
677 /* strlen ("operator") */)
679 const char *p = strstr (start, "operator");
681 if (p != NULL && is_operator_name (p))
683 /* This is an operator name. Keep going. */
684 ++(PARSER_STREAM (parser));
689 /* Comma terminates the string. */
690 LS_TOKEN_STOKEN (token).ptr = start;
691 LS_TOKEN_STOKEN (token).length = PARSER_STREAM (parser) - start;
695 /* Advance the stream. */
696 ++(PARSER_STREAM (parser));
703 /* Lex a single linespec token from PARSER. */
705 static linespec_token
706 linespec_lexer_lex_one (linespec_parser *parser)
710 if (parser->lexer.current.type == LSTOKEN_CONSUMED)
712 /* Skip any whitespace. */
713 PARSER_STREAM (parser) = skip_spaces_const (PARSER_STREAM (parser));
715 /* Check for a keyword, they end the linespec. */
716 keyword = linespec_lexer_lex_keyword (PARSER_STREAM (parser));
719 parser->lexer.current.type = LSTOKEN_KEYWORD;
720 LS_TOKEN_KEYWORD (parser->lexer.current) = keyword;
721 /* We do not advance the stream here intentionally:
722 we would like lexing to stop when a keyword is seen.
724 PARSER_STREAM (parser) += strlen (keyword); */
726 return parser->lexer.current;
729 /* Handle other tokens. */
730 switch (*PARSER_STREAM (parser))
733 parser->lexer.current.type = LSTOKEN_EOI;
737 case '0': case '1': case '2': case '3': case '4':
738 case '5': case '6': case '7': case '8': case '9':
739 if (!linespec_lexer_lex_number (parser, &(parser->lexer.current)))
740 parser->lexer.current = linespec_lexer_lex_string (parser);
744 /* If we have a scope operator, lex the input as a string.
745 Otherwise, return LSTOKEN_COLON. */
746 if (PARSER_STREAM (parser)[1] == ':')
747 parser->lexer.current = linespec_lexer_lex_string (parser);
750 parser->lexer.current.type = LSTOKEN_COLON;
751 ++(PARSER_STREAM (parser));
755 case '\'': case '\"':
756 /* Special case: permit quote-enclosed linespecs. */
757 if (parser->is_quote_enclosed
758 && is_closing_quote_enclosed (PARSER_STREAM (parser)))
760 ++(PARSER_STREAM (parser));
761 parser->lexer.current.type = LSTOKEN_EOI;
764 parser->lexer.current = linespec_lexer_lex_string (parser);
768 parser->lexer.current.type = LSTOKEN_COMMA;
769 LS_TOKEN_STOKEN (parser->lexer.current).ptr
770 = PARSER_STREAM (parser);
771 LS_TOKEN_STOKEN (parser->lexer.current).length = 1;
772 ++(PARSER_STREAM (parser));
776 /* If the input is not a number, it must be a string.
777 [Keywords were already considered above.] */
778 parser->lexer.current = linespec_lexer_lex_string (parser);
783 return parser->lexer.current;
786 /* Consume the current token and return the next token in PARSER's
789 static linespec_token
790 linespec_lexer_consume_token (linespec_parser *parser)
792 parser->lexer.current.type = LSTOKEN_CONSUMED;
793 return linespec_lexer_lex_one (parser);
796 /* Return the next token without consuming the current token. */
798 static linespec_token
799 linespec_lexer_peek_token (linespec_parser *parser)
802 const char *saved_stream = PARSER_STREAM (parser);
803 linespec_token saved_token = parser->lexer.current;
805 next = linespec_lexer_consume_token (parser);
806 PARSER_STREAM (parser) = saved_stream;
807 parser->lexer.current = saved_token;
811 /* Helper functions. */
813 /* Add SAL to SALS. */
816 add_sal_to_sals_basic (struct symtabs_and_lines *sals,
817 struct symtab_and_line *sal)
820 sals->sals = XRESIZEVEC (struct symtab_and_line, sals->sals, sals->nelts);
821 sals->sals[sals->nelts - 1] = *sal;
824 /* Add SAL to SALS, and also update SELF->CANONICAL_NAMES to reflect
825 the new sal, if needed. If not NULL, SYMNAME is the name of the
826 symbol to use when constructing the new canonical name.
828 If LITERAL_CANONICAL is non-zero, SYMNAME will be used as the
829 canonical name for the SAL. */
832 add_sal_to_sals (struct linespec_state *self,
833 struct symtabs_and_lines *sals,
834 struct symtab_and_line *sal,
835 const char *symname, int literal_canonical)
837 add_sal_to_sals_basic (sals, sal);
841 struct linespec_canonical_name *canonical;
843 self->canonical_names = XRESIZEVEC (struct linespec_canonical_name,
844 self->canonical_names, sals->nelts);
845 canonical = &self->canonical_names[sals->nelts - 1];
846 if (!literal_canonical && sal->symtab)
848 symtab_to_fullname (sal->symtab);
850 /* Note that the filter doesn't have to be a valid linespec
851 input. We only apply the ":LINE" treatment to Ada for
853 if (symname != NULL && sal->line != 0
854 && self->language->la_language == language_ada)
855 canonical->suffix = xstrprintf ("%s:%d", symname, sal->line);
856 else if (symname != NULL)
857 canonical->suffix = xstrdup (symname);
859 canonical->suffix = xstrprintf ("%d", sal->line);
860 canonical->symtab = sal->symtab;
865 canonical->suffix = xstrdup (symname);
867 canonical->suffix = xstrdup ("<unknown>");
868 canonical->symtab = NULL;
873 /* A hash function for address_entry. */
876 hash_address_entry (const void *p)
878 const struct address_entry *aep = (const struct address_entry *) p;
881 hash = iterative_hash_object (aep->pspace, 0);
882 return iterative_hash_object (aep->addr, hash);
885 /* An equality function for address_entry. */
888 eq_address_entry (const void *a, const void *b)
890 const struct address_entry *aea = (const struct address_entry *) a;
891 const struct address_entry *aeb = (const struct address_entry *) b;
893 return aea->pspace == aeb->pspace && aea->addr == aeb->addr;
896 /* Check whether the address, represented by PSPACE and ADDR, is
897 already in the set. If so, return 0. Otherwise, add it and return
901 maybe_add_address (htab_t set, struct program_space *pspace, CORE_ADDR addr)
903 struct address_entry e, *p;
908 slot = htab_find_slot (set, &e, INSERT);
912 p = XNEW (struct address_entry);
913 memcpy (p, &e, sizeof (struct address_entry));
919 /* A callback function and the additional data to call it with. */
921 struct symbol_and_data_callback
923 /* The callback to use. */
924 symbol_found_callback_ftype *callback;
926 /* Data to be passed to the callback. */
930 /* A helper for iterate_over_all_matching_symtabs that is used to
931 restrict calls to another callback to symbols representing inline
935 iterate_inline_only (struct symbol *sym, void *d)
937 if (SYMBOL_INLINED (sym))
939 struct symbol_and_data_callback *cad
940 = (struct symbol_and_data_callback *) d;
942 return cad->callback (sym, cad->data);
944 return 1; /* Continue iterating. */
947 /* Some data for the expand_symtabs_matching callback. */
949 struct symbol_matcher_data
951 /* The lookup name against which symbol name should be compared. */
952 const char *lookup_name;
954 /* The routine to be used for comparison. */
955 symbol_name_cmp_ftype symbol_name_cmp;
958 /* A helper for iterate_over_all_matching_symtabs that is passed as a
959 callback to the expand_symtabs_matching method. */
962 iterate_name_matcher (const char *name, void *d)
964 const struct symbol_matcher_data *data
965 = (const struct symbol_matcher_data *) d;
967 if (data->symbol_name_cmp (name, data->lookup_name) == 0)
968 return 1; /* Expand this symbol's symbol table. */
969 return 0; /* Skip this symbol. */
972 /* A helper that walks over all matching symtabs in all objfiles and
973 calls CALLBACK for each symbol matching NAME. If SEARCH_PSPACE is
974 not NULL, then the search is restricted to just that program
975 space. If INCLUDE_INLINE is nonzero then symbols representing
976 inlined instances of functions will be included in the result. */
979 iterate_over_all_matching_symtabs (struct linespec_state *state,
981 const domain_enum domain,
982 symbol_found_callback_ftype *callback,
984 struct program_space *search_pspace,
987 struct objfile *objfile;
988 struct program_space *pspace;
989 struct symbol_matcher_data matcher_data;
991 matcher_data.lookup_name = name;
992 matcher_data.symbol_name_cmp =
993 state->language->la_get_symbol_name_cmp != NULL
994 ? state->language->la_get_symbol_name_cmp (name)
999 if (search_pspace != NULL && search_pspace != pspace)
1001 if (pspace->executing_startup)
1004 set_current_program_space (pspace);
1006 ALL_OBJFILES (objfile)
1008 struct compunit_symtab *cu;
1011 objfile->sf->qf->expand_symtabs_matching (objfile, NULL,
1012 iterate_name_matcher,
1016 ALL_OBJFILE_COMPUNITS (objfile, cu)
1018 struct symtab *symtab = COMPUNIT_FILETABS (cu);
1020 iterate_over_file_blocks (symtab, name, domain, callback, data);
1024 struct symbol_and_data_callback cad = { callback, data };
1025 struct block *block;
1028 for (i = FIRST_LOCAL_BLOCK;
1029 i < BLOCKVECTOR_NBLOCKS (SYMTAB_BLOCKVECTOR (symtab));
1032 block = BLOCKVECTOR_BLOCK (SYMTAB_BLOCKVECTOR (symtab), i);
1033 state->language->la_iterate_over_symbols
1034 (block, name, domain, iterate_inline_only, &cad);
1042 /* Returns the block to be used for symbol searches from
1043 the current location. */
1045 static const struct block *
1046 get_current_search_block (void)
1048 const struct block *block;
1049 enum language save_language;
1051 /* get_selected_block can change the current language when there is
1052 no selected frame yet. */
1053 save_language = current_language->la_language;
1054 block = get_selected_block (0);
1055 set_language (save_language);
1060 /* Iterate over static and global blocks. */
1063 iterate_over_file_blocks (struct symtab *symtab,
1064 const char *name, domain_enum domain,
1065 symbol_found_callback_ftype *callback, void *data)
1067 struct block *block;
1069 for (block = BLOCKVECTOR_BLOCK (SYMTAB_BLOCKVECTOR (symtab), STATIC_BLOCK);
1071 block = BLOCK_SUPERBLOCK (block))
1072 LA_ITERATE_OVER_SYMBOLS (block, name, domain, callback, data);
1075 /* A helper for find_method. This finds all methods in type T which
1076 match NAME. It adds matching symbol names to RESULT_NAMES, and
1077 adds T's direct superclasses to SUPERCLASSES. */
1080 find_methods (struct type *t, const char *name,
1081 VEC (const_char_ptr) **result_names,
1082 VEC (typep) **superclasses)
1085 const char *class_name = type_name_no_tag (t);
1087 /* Ignore this class if it doesn't have a name. This is ugly, but
1088 unless we figure out how to get the physname without the name of
1089 the class, then the loop can't do any good. */
1094 t = check_typedef (t);
1096 /* Loop over each method name. At this level, all overloads of a name
1097 are counted as a single name. There is an inner loop which loops over
1100 for (method_counter = TYPE_NFN_FIELDS (t) - 1;
1101 method_counter >= 0;
1104 const char *method_name = TYPE_FN_FIELDLIST_NAME (t, method_counter);
1105 char dem_opname[64];
1107 if (startswith (method_name, "__") ||
1108 startswith (method_name, "op") ||
1109 startswith (method_name, "type"))
1111 if (cplus_demangle_opname (method_name, dem_opname, DMGL_ANSI))
1112 method_name = dem_opname;
1113 else if (cplus_demangle_opname (method_name, dem_opname, 0))
1114 method_name = dem_opname;
1117 if (strcmp_iw (method_name, name) == 0)
1121 for (field_counter = (TYPE_FN_FIELDLIST_LENGTH (t, method_counter)
1127 const char *phys_name;
1129 f = TYPE_FN_FIELDLIST1 (t, method_counter);
1130 if (TYPE_FN_FIELD_STUB (f, field_counter))
1132 phys_name = TYPE_FN_FIELD_PHYSNAME (f, field_counter);
1133 VEC_safe_push (const_char_ptr, *result_names, phys_name);
1139 for (ibase = 0; ibase < TYPE_N_BASECLASSES (t); ibase++)
1140 VEC_safe_push (typep, *superclasses, TYPE_BASECLASS (t, ibase));
1143 /* Find an instance of the character C in the string S that is outside
1144 of all parenthesis pairs, single-quoted strings, and double-quoted
1145 strings. Also, ignore the char within a template name, like a ','
1146 within foo<int, int>. */
1149 find_toplevel_char (const char *s, char c)
1151 int quoted = 0; /* zero if we're not in quotes;
1152 '"' if we're in a double-quoted string;
1153 '\'' if we're in a single-quoted string. */
1154 int depth = 0; /* Number of unclosed parens we've seen. */
1157 for (scan = s; *scan; scan++)
1161 if (*scan == quoted)
1163 else if (*scan == '\\' && *(scan + 1))
1166 else if (*scan == c && ! quoted && depth == 0)
1168 else if (*scan == '"' || *scan == '\'')
1170 else if (*scan == '(' || *scan == '<')
1172 else if ((*scan == ')' || *scan == '>') && depth > 0)
1179 /* The string equivalent of find_toplevel_char. Returns a pointer
1180 to the location of NEEDLE in HAYSTACK, ignoring any occurrences
1181 inside "()" and "<>". Returns NULL if NEEDLE was not found. */
1184 find_toplevel_string (const char *haystack, const char *needle)
1186 const char *s = haystack;
1190 s = find_toplevel_char (s, *needle);
1194 /* Found first char in HAYSTACK; check rest of string. */
1195 if (startswith (s, needle))
1198 /* Didn't find it; loop over HAYSTACK, looking for the next
1199 instance of the first character of NEEDLE. */
1203 while (s != NULL && *s != '\0');
1205 /* NEEDLE was not found in HAYSTACK. */
1209 /* Convert CANONICAL to its string representation using
1210 symtab_to_fullname for SYMTAB. The caller must xfree the result. */
1213 canonical_to_fullform (const struct linespec_canonical_name *canonical)
1215 if (canonical->symtab == NULL)
1216 return xstrdup (canonical->suffix);
1218 return xstrprintf ("%s:%s", symtab_to_fullname (canonical->symtab),
1222 /* Given FILTERS, a list of canonical names, filter the sals in RESULT
1223 and store the result in SELF->CANONICAL. */
1226 filter_results (struct linespec_state *self,
1227 struct symtabs_and_lines *result,
1228 VEC (const_char_ptr) *filters)
1233 for (i = 0; VEC_iterate (const_char_ptr, filters, i, name); ++i)
1235 struct linespec_sals lsal;
1238 memset (&lsal, 0, sizeof (lsal));
1240 for (j = 0; j < result->nelts; ++j)
1242 const struct linespec_canonical_name *canonical;
1244 struct cleanup *cleanup;
1246 canonical = &self->canonical_names[j];
1247 fullform = canonical_to_fullform (canonical);
1248 cleanup = make_cleanup (xfree, fullform);
1250 if (strcmp (name, fullform) == 0)
1251 add_sal_to_sals_basic (&lsal.sals, &result->sals[j]);
1253 do_cleanups (cleanup);
1256 if (lsal.sals.nelts > 0)
1258 lsal.canonical = xstrdup (name);
1259 VEC_safe_push (linespec_sals, self->canonical->sals, &lsal);
1263 self->canonical->pre_expanded = 0;
1266 /* Store RESULT into SELF->CANONICAL. */
1269 convert_results_to_lsals (struct linespec_state *self,
1270 struct symtabs_and_lines *result)
1272 struct linespec_sals lsal;
1274 lsal.canonical = NULL;
1275 lsal.sals = *result;
1276 VEC_safe_push (linespec_sals, self->canonical->sals, &lsal);
1279 /* A structure that contains two string representations of a struct
1280 linespec_canonical_name:
1281 - one where the the symtab's fullname is used;
1282 - one where the filename followed the "set filename-display"
1285 struct decode_line_2_item
1287 /* The form using symtab_to_fullname.
1288 It must be xfree'ed after use. */
1291 /* The form using symtab_to_filename_for_display.
1292 It must be xfree'ed after use. */
1295 /* Field is initialized to zero and it is set to one if the user
1296 requested breakpoint for this entry. */
1297 unsigned int selected : 1;
1300 /* Helper for qsort to sort decode_line_2_item entries by DISPLAYFORM and
1301 secondarily by FULLFORM. */
1304 decode_line_2_compare_items (const void *ap, const void *bp)
1306 const struct decode_line_2_item *a = (const struct decode_line_2_item *) ap;
1307 const struct decode_line_2_item *b = (const struct decode_line_2_item *) bp;
1310 retval = strcmp (a->displayform, b->displayform);
1314 return strcmp (a->fullform, b->fullform);
1317 /* Handle multiple results in RESULT depending on SELECT_MODE. This
1318 will either return normally, throw an exception on multiple
1319 results, or present a menu to the user. On return, the SALS vector
1320 in SELF->CANONICAL is set up properly. */
1323 decode_line_2 (struct linespec_state *self,
1324 struct symtabs_and_lines *result,
1325 const char *select_mode)
1327 char *args, *prompt;
1329 struct cleanup *old_chain;
1330 VEC (const_char_ptr) *filters = NULL;
1331 struct decode_line_2_item *items;
1334 gdb_assert (select_mode != multiple_symbols_all);
1335 gdb_assert (self->canonical != NULL);
1336 gdb_assert (result->nelts >= 1);
1338 old_chain = make_cleanup (VEC_cleanup (const_char_ptr), &filters);
1340 /* Prepare ITEMS array. */
1341 items_count = result->nelts;
1342 items = XNEWVEC (struct decode_line_2_item, items_count);
1343 make_cleanup (xfree, items);
1344 for (i = 0; i < items_count; ++i)
1346 const struct linespec_canonical_name *canonical;
1347 struct decode_line_2_item *item;
1349 canonical = &self->canonical_names[i];
1350 gdb_assert (canonical->suffix != NULL);
1353 item->fullform = canonical_to_fullform (canonical);
1354 make_cleanup (xfree, item->fullform);
1356 if (canonical->symtab == NULL)
1357 item->displayform = canonical->suffix;
1360 const char *fn_for_display;
1362 fn_for_display = symtab_to_filename_for_display (canonical->symtab);
1363 item->displayform = xstrprintf ("%s:%s", fn_for_display,
1365 make_cleanup (xfree, item->displayform);
1371 /* Sort the list of method names. */
1372 qsort (items, items_count, sizeof (*items), decode_line_2_compare_items);
1374 /* Remove entries with the same FULLFORM. */
1375 if (items_count >= 2)
1377 struct decode_line_2_item *dst, *src;
1380 for (src = &items[1]; src < &items[items_count]; src++)
1381 if (strcmp (src->fullform, dst->fullform) != 0)
1383 items_count = dst + 1 - items;
1386 if (select_mode == multiple_symbols_cancel && items_count > 1)
1387 error (_("canceled because the command is ambiguous\n"
1388 "See set/show multiple-symbol."));
1390 if (select_mode == multiple_symbols_all || items_count == 1)
1392 do_cleanups (old_chain);
1393 convert_results_to_lsals (self, result);
1397 printf_unfiltered (_("[0] cancel\n[1] all\n"));
1398 for (i = 0; i < items_count; i++)
1399 printf_unfiltered ("[%d] %s\n", i + 2, items[i].displayform);
1401 prompt = getenv ("PS2");
1406 args = command_line_input (prompt, 0, "overload-choice");
1408 if (args == 0 || *args == 0)
1409 error_no_arg (_("one or more choice numbers"));
1411 number_or_range_parser parser (args);
1412 while (!parser.finished ())
1414 int num = parser.get_number ();
1417 error (_("canceled"));
1420 /* We intentionally make this result in a single breakpoint,
1421 contrary to what older versions of gdb did. The
1422 rationale is that this lets a user get the
1423 multiple_symbols_all behavior even with the 'ask'
1424 setting; and he can get separate breakpoints by entering
1425 "2-57" at the query. */
1426 do_cleanups (old_chain);
1427 convert_results_to_lsals (self, result);
1432 if (num >= items_count)
1433 printf_unfiltered (_("No choice number %d.\n"), num);
1436 struct decode_line_2_item *item = &items[num];
1438 if (!item->selected)
1440 VEC_safe_push (const_char_ptr, filters, item->fullform);
1445 printf_unfiltered (_("duplicate request for %d ignored.\n"),
1451 filter_results (self, result, filters);
1452 do_cleanups (old_chain);
1457 /* The parser of linespec itself. */
1459 /* Throw an appropriate error when SYMBOL is not found (optionally in
1462 static void ATTRIBUTE_NORETURN
1463 symbol_not_found_error (const char *symbol, const char *filename)
1468 if (!have_full_symbols ()
1469 && !have_partial_symbols ()
1470 && !have_minimal_symbols ())
1471 throw_error (NOT_FOUND_ERROR,
1472 _("No symbol table is loaded. Use the \"file\" command."));
1474 /* If SYMBOL starts with '$', the user attempted to either lookup
1475 a function/variable in his code starting with '$' or an internal
1476 variable of that name. Since we do not know which, be concise and
1477 explain both possibilities. */
1481 throw_error (NOT_FOUND_ERROR,
1482 _("Undefined convenience variable or function \"%s\" "
1483 "not defined in \"%s\"."), symbol, filename);
1485 throw_error (NOT_FOUND_ERROR,
1486 _("Undefined convenience variable or function \"%s\" "
1487 "not defined."), symbol);
1492 throw_error (NOT_FOUND_ERROR,
1493 _("Function \"%s\" not defined in \"%s\"."),
1496 throw_error (NOT_FOUND_ERROR,
1497 _("Function \"%s\" not defined."), symbol);
1501 /* Throw an appropriate error when an unexpected token is encountered
1504 static void ATTRIBUTE_NORETURN
1505 unexpected_linespec_error (linespec_parser *parser)
1507 linespec_token token;
1508 static const char * token_type_strings[]
1509 = {"keyword", "colon", "string", "number", "comma", "end of input"};
1511 /* Get the token that generated the error. */
1512 token = linespec_lexer_lex_one (parser);
1514 /* Finally, throw the error. */
1515 if (token.type == LSTOKEN_STRING || token.type == LSTOKEN_NUMBER
1516 || token.type == LSTOKEN_KEYWORD)
1520 string = copy_token_string (token);
1521 make_cleanup (xfree, string);
1522 throw_error (GENERIC_ERROR,
1523 _("malformed linespec error: unexpected %s, \"%s\""),
1524 token_type_strings[token.type], string);
1527 throw_error (GENERIC_ERROR,
1528 _("malformed linespec error: unexpected %s"),
1529 token_type_strings[token.type]);
1532 /* Throw an undefined label error. */
1534 static void ATTRIBUTE_NORETURN
1535 undefined_label_error (const char *function, const char *label)
1537 if (function != NULL)
1538 throw_error (NOT_FOUND_ERROR,
1539 _("No label \"%s\" defined in function \"%s\"."),
1542 throw_error (NOT_FOUND_ERROR,
1543 _("No label \"%s\" defined in current function."),
1547 /* Throw a source file not found error. */
1549 static void ATTRIBUTE_NORETURN
1550 source_file_not_found_error (const char *name)
1552 throw_error (NOT_FOUND_ERROR, _("No source file named %s."), name);
1555 /* See description in linespec.h. */
1558 linespec_parse_line_offset (const char *string)
1560 const char *start = string;
1561 struct line_offset line_offset = {0, LINE_OFFSET_NONE};
1565 line_offset.sign = LINE_OFFSET_PLUS;
1568 else if (*string == '-')
1570 line_offset.sign = LINE_OFFSET_MINUS;
1574 if (*string != '\0' && !isdigit (*string))
1575 error (_("malformed line offset: \"%s\""), start);
1577 /* Right now, we only allow base 10 for offsets. */
1578 line_offset.offset = atoi (string);
1582 /* Parse the basic_spec in PARSER's input. */
1585 linespec_parse_basic (linespec_parser *parser)
1588 linespec_token token;
1589 VEC (symbolp) *symbols, *labels;
1590 VEC (bound_minimal_symbol_d) *minimal_symbols;
1591 struct cleanup *cleanup;
1593 /* Get the next token. */
1594 token = linespec_lexer_lex_one (parser);
1596 /* If it is EOI or KEYWORD, issue an error. */
1597 if (token.type == LSTOKEN_KEYWORD || token.type == LSTOKEN_EOI)
1598 unexpected_linespec_error (parser);
1599 /* If it is a LSTOKEN_NUMBER, we have an offset. */
1600 else if (token.type == LSTOKEN_NUMBER)
1602 /* Record the line offset and get the next token. */
1603 name = copy_token_string (token);
1604 cleanup = make_cleanup (xfree, name);
1605 PARSER_EXPLICIT (parser)->line_offset = linespec_parse_line_offset (name);
1606 do_cleanups (cleanup);
1608 /* Get the next token. */
1609 token = linespec_lexer_consume_token (parser);
1611 /* If the next token is a comma, stop parsing and return. */
1612 if (token.type == LSTOKEN_COMMA)
1615 /* If the next token is anything but EOI or KEYWORD, issue
1617 if (token.type != LSTOKEN_KEYWORD && token.type != LSTOKEN_EOI)
1618 unexpected_linespec_error (parser);
1621 if (token.type == LSTOKEN_KEYWORD || token.type == LSTOKEN_EOI)
1624 /* Next token must be LSTOKEN_STRING. */
1625 if (token.type != LSTOKEN_STRING)
1626 unexpected_linespec_error (parser);
1628 /* The current token will contain the name of a function, method,
1630 name = copy_token_string (token);
1631 cleanup = make_cleanup (xfree, name);
1633 /* Try looking it up as a function/method. */
1634 find_linespec_symbols (PARSER_STATE (parser),
1635 PARSER_RESULT (parser)->file_symtabs, name,
1636 &symbols, &minimal_symbols);
1638 if (symbols != NULL || minimal_symbols != NULL)
1640 PARSER_RESULT (parser)->function_symbols = symbols;
1641 PARSER_RESULT (parser)->minimal_symbols = minimal_symbols;
1642 PARSER_EXPLICIT (parser)->function_name = name;
1644 discard_cleanups (cleanup);
1648 /* NAME was not a function or a method. So it must be a label
1649 name or user specified variable like "break foo.c:$zippo". */
1650 labels = find_label_symbols (PARSER_STATE (parser), NULL,
1654 PARSER_RESULT (parser)->labels.label_symbols = labels;
1655 PARSER_RESULT (parser)->labels.function_symbols = symbols;
1656 PARSER_EXPLICIT (parser)->label_name = name;
1658 discard_cleanups (cleanup);
1660 else if (token.type == LSTOKEN_STRING
1661 && *LS_TOKEN_STOKEN (token).ptr == '$')
1663 /* User specified a convenience variable or history value. */
1664 PARSER_EXPLICIT (parser)->line_offset
1665 = linespec_parse_variable (PARSER_STATE (parser), name);
1667 if (PARSER_EXPLICIT (parser)->line_offset.sign == LINE_OFFSET_UNKNOWN)
1669 /* The user-specified variable was not valid. Do not
1670 throw an error here. parse_linespec will do it for us. */
1671 PARSER_EXPLICIT (parser)->function_name = name;
1672 discard_cleanups (cleanup);
1676 /* The convenience variable/history value parsed correctly.
1677 NAME is no longer needed. */
1678 do_cleanups (cleanup);
1682 /* The name is also not a label. Abort parsing. Do not throw
1683 an error here. parse_linespec will do it for us. */
1685 /* Save a copy of the name we were trying to lookup. */
1686 PARSER_EXPLICIT (parser)->function_name = name;
1687 discard_cleanups (cleanup);
1692 /* Get the next token. */
1693 token = linespec_lexer_consume_token (parser);
1695 if (token.type == LSTOKEN_COLON)
1697 /* User specified a label or a lineno. */
1698 token = linespec_lexer_consume_token (parser);
1700 if (token.type == LSTOKEN_NUMBER)
1702 /* User specified an offset. Record the line offset and
1703 get the next token. */
1704 name = copy_token_string (token);
1705 cleanup = make_cleanup (xfree, name);
1706 PARSER_EXPLICIT (parser)->line_offset
1707 = linespec_parse_line_offset (name);
1708 do_cleanups (cleanup);
1710 /* Ge the next token. */
1711 token = linespec_lexer_consume_token (parser);
1713 else if (token.type == LSTOKEN_STRING)
1715 /* Grab a copy of the label's name and look it up. */
1716 name = copy_token_string (token);
1717 cleanup = make_cleanup (xfree, name);
1718 labels = find_label_symbols (PARSER_STATE (parser),
1719 PARSER_RESULT (parser)->function_symbols,
1724 PARSER_RESULT (parser)->labels.label_symbols = labels;
1725 PARSER_RESULT (parser)->labels.function_symbols = symbols;
1726 PARSER_EXPLICIT (parser)->label_name = name;
1728 discard_cleanups (cleanup);
1732 /* We don't know what it was, but it isn't a label. */
1733 undefined_label_error (PARSER_EXPLICIT (parser)->function_name,
1737 /* Check for a line offset. */
1738 token = linespec_lexer_consume_token (parser);
1739 if (token.type == LSTOKEN_COLON)
1741 /* Get the next token. */
1742 token = linespec_lexer_consume_token (parser);
1744 /* It must be a line offset. */
1745 if (token.type != LSTOKEN_NUMBER)
1746 unexpected_linespec_error (parser);
1748 /* Record the lione offset and get the next token. */
1749 name = copy_token_string (token);
1750 cleanup = make_cleanup (xfree, name);
1752 PARSER_EXPLICIT (parser)->line_offset
1753 = linespec_parse_line_offset (name);
1754 do_cleanups (cleanup);
1756 /* Get the next token. */
1757 token = linespec_lexer_consume_token (parser);
1762 /* Trailing ':' in the input. Issue an error. */
1763 unexpected_linespec_error (parser);
1768 /* Canonicalize the linespec contained in LS. The result is saved into
1769 STATE->canonical. This function handles both linespec and explicit
1773 canonicalize_linespec (struct linespec_state *state, const linespec_p ls)
1775 struct event_location *canon;
1776 struct explicit_location *explicit_loc;
1778 /* If canonicalization was not requested, no need to do anything. */
1779 if (!state->canonical)
1782 /* Save everything as an explicit location. */
1783 canon = state->canonical->location
1784 = new_explicit_location (&ls->explicit_loc);
1785 explicit_loc = get_explicit_location (canon);
1787 if (explicit_loc->label_name != NULL)
1789 state->canonical->special_display = 1;
1791 if (explicit_loc->function_name == NULL)
1795 /* No function was specified, so add the symbol name. */
1796 gdb_assert (ls->labels.function_symbols != NULL
1797 && (VEC_length (symbolp, ls->labels.function_symbols)
1799 s = VEC_index (symbolp, ls->labels.function_symbols, 0);
1800 explicit_loc->function_name = xstrdup (SYMBOL_NATURAL_NAME (s));
1804 /* If this location originally came from a linespec, save a string
1805 representation of it for display and saving to file. */
1806 if (state->is_linespec)
1808 char *linespec = explicit_location_to_linespec (explicit_loc);
1810 set_event_location_string (canon, linespec);
1815 /* Given a line offset in LS, construct the relevant SALs. */
1817 static struct symtabs_and_lines
1818 create_sals_line_offset (struct linespec_state *self,
1821 struct symtabs_and_lines values;
1822 struct symtab_and_line val;
1823 int use_default = 0;
1829 /* This is where we need to make sure we have good defaults.
1830 We must guarantee that this section of code is never executed
1831 when we are called with just a function name, since
1832 set_default_source_symtab_and_line uses
1833 select_source_symtab that calls us with such an argument. */
1835 if (VEC_length (symtab_ptr, ls->file_symtabs) == 1
1836 && VEC_index (symtab_ptr, ls->file_symtabs, 0) == NULL)
1838 const char *fullname;
1840 set_current_program_space (self->program_space);
1842 /* Make sure we have at least a default source line. */
1843 set_default_source_symtab_and_line ();
1844 initialize_defaults (&self->default_symtab, &self->default_line);
1845 fullname = symtab_to_fullname (self->default_symtab);
1846 VEC_pop (symtab_ptr, ls->file_symtabs);
1847 VEC_free (symtab_ptr, ls->file_symtabs);
1848 ls->file_symtabs = collect_symtabs_from_filename (fullname,
1849 self->search_pspace);
1853 val.line = ls->explicit_loc.line_offset.offset;
1854 switch (ls->explicit_loc.line_offset.sign)
1856 case LINE_OFFSET_PLUS:
1857 if (ls->explicit_loc.line_offset.offset == 0)
1860 val.line = self->default_line + val.line;
1863 case LINE_OFFSET_MINUS:
1864 if (ls->explicit_loc.line_offset.offset == 0)
1867 val.line = self->default_line - val.line;
1869 val.line = -val.line;
1872 case LINE_OFFSET_NONE:
1873 break; /* No need to adjust val.line. */
1876 if (self->list_mode)
1877 decode_digits_list_mode (self, ls, &values, val);
1880 struct linetable_entry *best_entry = NULL;
1882 const struct block **blocks;
1883 struct cleanup *cleanup;
1884 struct symtabs_and_lines intermediate_results;
1887 intermediate_results.sals = NULL;
1888 intermediate_results.nelts = 0;
1890 decode_digits_ordinary (self, ls, val.line, &intermediate_results,
1892 if (intermediate_results.nelts == 0 && best_entry != NULL)
1893 decode_digits_ordinary (self, ls, best_entry->line,
1894 &intermediate_results, &best_entry);
1896 cleanup = make_cleanup (xfree, intermediate_results.sals);
1898 /* For optimized code, the compiler can scatter one source line
1899 across disjoint ranges of PC values, even when no duplicate
1900 functions or inline functions are involved. For example,
1901 'for (;;)' inside a non-template, non-inline, and non-ctor-or-dtor
1902 function can result in two PC ranges. In this case, we don't
1903 want to set a breakpoint on the first PC of each range. To filter
1904 such cases, we use containing blocks -- for each PC found
1905 above, we see if there are other PCs that are in the same
1906 block. If yes, the other PCs are filtered out. */
1908 filter = XNEWVEC (int, intermediate_results.nelts);
1909 make_cleanup (xfree, filter);
1910 blocks = XNEWVEC (const struct block *, intermediate_results.nelts);
1911 make_cleanup (xfree, blocks);
1913 for (i = 0; i < intermediate_results.nelts; ++i)
1915 set_current_program_space (intermediate_results.sals[i].pspace);
1918 blocks[i] = block_for_pc_sect (intermediate_results.sals[i].pc,
1919 intermediate_results.sals[i].section);
1922 for (i = 0; i < intermediate_results.nelts; ++i)
1924 if (blocks[i] != NULL)
1925 for (j = i + 1; j < intermediate_results.nelts; ++j)
1927 if (blocks[j] == blocks[i])
1935 for (i = 0; i < intermediate_results.nelts; ++i)
1938 struct symbol *sym = (blocks[i]
1939 ? block_containing_function (blocks[i])
1942 if (self->funfirstline)
1943 skip_prologue_sal (&intermediate_results.sals[i]);
1944 /* Make sure the line matches the request, not what was
1946 intermediate_results.sals[i].line = val.line;
1947 add_sal_to_sals (self, &values, &intermediate_results.sals[i],
1948 sym ? SYMBOL_NATURAL_NAME (sym) : NULL, 0);
1951 do_cleanups (cleanup);
1954 if (values.nelts == 0)
1956 if (ls->explicit_loc.source_filename)
1957 throw_error (NOT_FOUND_ERROR, _("No line %d in file \"%s\"."),
1958 val.line, ls->explicit_loc.source_filename);
1960 throw_error (NOT_FOUND_ERROR, _("No line %d in the current file."),
1967 /* Convert the given ADDRESS into SaLs. */
1969 static struct symtabs_and_lines
1970 convert_address_location_to_sals (struct linespec_state *self,
1973 struct symtab_and_line sal;
1974 struct symtabs_and_lines sals = {NULL, 0};
1976 sal = find_pc_line (address, 0);
1978 sal.section = find_pc_overlay (address);
1979 sal.explicit_pc = 1;
1980 add_sal_to_sals (self, &sals, &sal, core_addr_to_string (address), 1);
1985 /* Create and return SALs from the linespec LS. */
1987 static struct symtabs_and_lines
1988 convert_linespec_to_sals (struct linespec_state *state, linespec_p ls)
1990 struct symtabs_and_lines sals = {NULL, 0};
1992 if (ls->labels.label_symbols != NULL)
1994 /* We have just a bunch of functions/methods or labels. */
1996 struct symtab_and_line sal;
1999 for (i = 0; VEC_iterate (symbolp, ls->labels.label_symbols, i, sym); ++i)
2001 struct program_space *pspace = SYMTAB_PSPACE (symbol_symtab (sym));
2003 if (symbol_to_sal (&sal, state->funfirstline, sym)
2004 && maybe_add_address (state->addr_set, pspace, sal.pc))
2005 add_sal_to_sals (state, &sals, &sal,
2006 SYMBOL_NATURAL_NAME (sym), 0);
2009 else if (ls->function_symbols != NULL || ls->minimal_symbols != NULL)
2011 /* We have just a bunch of functions and/or methods. */
2013 struct symtab_and_line sal;
2015 bound_minimal_symbol_d *elem;
2016 struct program_space *pspace;
2018 if (ls->function_symbols != NULL)
2020 /* Sort symbols so that symbols with the same program space are next
2022 qsort (VEC_address (symbolp, ls->function_symbols),
2023 VEC_length (symbolp, ls->function_symbols),
2024 sizeof (symbolp), compare_symbols);
2026 for (i = 0; VEC_iterate (symbolp, ls->function_symbols, i, sym); ++i)
2028 pspace = SYMTAB_PSPACE (symbol_symtab (sym));
2029 set_current_program_space (pspace);
2030 if (symbol_to_sal (&sal, state->funfirstline, sym)
2031 && maybe_add_address (state->addr_set, pspace, sal.pc))
2032 add_sal_to_sals (state, &sals, &sal,
2033 SYMBOL_NATURAL_NAME (sym), 0);
2037 if (ls->minimal_symbols != NULL)
2039 /* Sort minimal symbols by program space, too. */
2040 qsort (VEC_address (bound_minimal_symbol_d, ls->minimal_symbols),
2041 VEC_length (bound_minimal_symbol_d, ls->minimal_symbols),
2042 sizeof (bound_minimal_symbol_d), compare_msymbols);
2045 VEC_iterate (bound_minimal_symbol_d, ls->minimal_symbols,
2049 pspace = elem->objfile->pspace;
2050 set_current_program_space (pspace);
2051 minsym_found (state, elem->objfile, elem->minsym, &sals);
2055 else if (ls->explicit_loc.line_offset.sign != LINE_OFFSET_UNKNOWN)
2057 /* Only an offset was specified. */
2058 sals = create_sals_line_offset (state, ls);
2060 /* Make sure we have a filename for canonicalization. */
2061 if (ls->explicit_loc.source_filename == NULL)
2063 const char *fullname = symtab_to_fullname (state->default_symtab);
2065 /* It may be more appropriate to keep DEFAULT_SYMTAB in its symtab
2066 form so that displaying SOURCE_FILENAME can follow the current
2067 FILENAME_DISPLAY_STRING setting. But as it is used only rarely
2068 it has been kept for code simplicity only in absolute form. */
2069 ls->explicit_loc.source_filename = xstrdup (fullname);
2074 /* We haven't found any results... */
2078 canonicalize_linespec (state, ls);
2080 if (sals.nelts > 0 && state->canonical != NULL)
2081 state->canonical->pre_expanded = 1;
2086 /* Convert the explicit location EXPLICIT_LOC into SaLs. */
2088 static struct symtabs_and_lines
2089 convert_explicit_location_to_sals (struct linespec_state *self,
2091 const struct explicit_location *explicit_loc)
2093 VEC (symbolp) *symbols, *labels;
2094 VEC (bound_minimal_symbol_d) *minimal_symbols;
2096 if (explicit_loc->source_filename != NULL)
2100 result->file_symtabs
2101 = symtabs_from_filename (explicit_loc->source_filename,
2102 self->search_pspace);
2104 CATCH (except, RETURN_MASK_ERROR)
2106 source_file_not_found_error (explicit_loc->source_filename);
2109 result->explicit_loc.source_filename
2110 = xstrdup (explicit_loc->source_filename);
2114 /* A NULL entry means to use the default symtab. */
2115 VEC_safe_push (symtab_ptr, result->file_symtabs, NULL);
2118 if (explicit_loc->function_name != NULL)
2120 find_linespec_symbols (self, result->file_symtabs,
2121 explicit_loc->function_name, &symbols,
2124 if (symbols == NULL && minimal_symbols == NULL)
2125 symbol_not_found_error (explicit_loc->function_name,
2126 result->explicit_loc.source_filename);
2128 result->explicit_loc.function_name
2129 = xstrdup (explicit_loc->function_name);
2130 result->function_symbols = symbols;
2131 result->minimal_symbols = minimal_symbols;
2134 if (explicit_loc->label_name != NULL)
2137 labels = find_label_symbols (self, result->function_symbols,
2138 &symbols, explicit_loc->label_name);
2141 undefined_label_error (result->explicit_loc.function_name,
2142 explicit_loc->label_name);
2144 result->explicit_loc.label_name = xstrdup (explicit_loc->label_name);
2145 result->labels.label_symbols = labels;
2146 result->labels.function_symbols = symbols;
2149 if (explicit_loc->line_offset.sign != LINE_OFFSET_UNKNOWN)
2150 result->explicit_loc.line_offset = explicit_loc->line_offset;
2152 return convert_linespec_to_sals (self, result);
2155 /* Parse a string that specifies a linespec.
2157 The basic grammar of linespecs:
2159 linespec -> var_spec | basic_spec
2160 var_spec -> '$' (STRING | NUMBER)
2162 basic_spec -> file_offset_spec | function_spec | label_spec
2163 file_offset_spec -> opt_file_spec offset_spec
2164 function_spec -> opt_file_spec function_name_spec opt_label_spec
2165 label_spec -> label_name_spec
2167 opt_file_spec -> "" | file_name_spec ':'
2168 opt_label_spec -> "" | ':' label_name_spec
2170 file_name_spec -> STRING
2171 function_name_spec -> STRING
2172 label_name_spec -> STRING
2173 function_name_spec -> STRING
2174 offset_spec -> NUMBER
2178 This may all be followed by several keywords such as "if EXPR",
2181 A comma will terminate parsing.
2183 The function may be an undebuggable function found in minimal symbol table.
2185 If the argument FUNFIRSTLINE is nonzero, we want the first line
2186 of real code inside a function when a function is specified, and it is
2187 not OK to specify a variable or type to get its line number.
2189 DEFAULT_SYMTAB specifies the file to use if none is specified.
2190 It defaults to current_source_symtab.
2191 DEFAULT_LINE specifies the line number to use for relative
2192 line numbers (that start with signs). Defaults to current_source_line.
2193 If CANONICAL is non-NULL, store an array of strings containing the canonical
2194 line specs there if necessary. Currently overloaded member functions and
2195 line numbers or static functions without a filename yield a canonical
2196 line spec. The array and the line spec strings are allocated on the heap,
2197 it is the callers responsibility to free them.
2199 Note that it is possible to return zero for the symtab
2200 if no file is validly specified. Callers must check that.
2201 Also, the line number returned may be invalid. */
2203 /* Parse the linespec in ARG. */
2205 static struct symtabs_and_lines
2206 parse_linespec (linespec_parser *parser, const char *arg)
2208 linespec_token token;
2209 struct symtabs_and_lines values;
2210 struct gdb_exception file_exception = exception_none;
2211 struct cleanup *cleanup;
2213 /* A special case to start. It has become quite popular for
2214 IDEs to work around bugs in the previous parser by quoting
2215 the entire linespec, so we attempt to deal with this nicely. */
2216 parser->is_quote_enclosed = 0;
2217 if (!is_ada_operator (arg)
2218 && strchr (linespec_quote_characters, *arg) != NULL)
2222 end = skip_quote_char (arg + 1, *arg);
2223 if (end != NULL && is_closing_quote_enclosed (end))
2225 /* Here's the special case. Skip ARG past the initial
2228 parser->is_quote_enclosed = 1;
2232 parser->lexer.saved_arg = arg;
2233 parser->lexer.stream = arg;
2235 /* Initialize the default symtab and line offset. */
2236 initialize_defaults (&PARSER_STATE (parser)->default_symtab,
2237 &PARSER_STATE (parser)->default_line);
2239 /* Objective-C shortcut. */
2240 values = decode_objc (PARSER_STATE (parser), PARSER_RESULT (parser), arg);
2241 if (values.sals != NULL)
2244 /* Start parsing. */
2246 /* Get the first token. */
2247 token = linespec_lexer_lex_one (parser);
2249 /* It must be either LSTOKEN_STRING or LSTOKEN_NUMBER. */
2250 if (token.type == LSTOKEN_STRING && *LS_TOKEN_STOKEN (token).ptr == '$')
2254 /* A NULL entry means to use GLOBAL_DEFAULT_SYMTAB. */
2255 VEC_safe_push (symtab_ptr, PARSER_RESULT (parser)->file_symtabs, NULL);
2257 /* User specified a convenience variable or history value. */
2258 var = copy_token_string (token);
2259 cleanup = make_cleanup (xfree, var);
2260 PARSER_EXPLICIT (parser)->line_offset
2261 = linespec_parse_variable (PARSER_STATE (parser), var);
2262 do_cleanups (cleanup);
2264 /* If a line_offset wasn't found (VAR is the name of a user
2265 variable/function), then skip to normal symbol processing. */
2266 if (PARSER_EXPLICIT (parser)->line_offset.sign != LINE_OFFSET_UNKNOWN)
2268 /* Consume this token. */
2269 linespec_lexer_consume_token (parser);
2271 goto convert_to_sals;
2274 else if (token.type != LSTOKEN_STRING && token.type != LSTOKEN_NUMBER)
2275 unexpected_linespec_error (parser);
2277 /* Shortcut: If the next token is not LSTOKEN_COLON, we know that
2278 this token cannot represent a filename. */
2279 token = linespec_lexer_peek_token (parser);
2281 if (token.type == LSTOKEN_COLON)
2283 char *user_filename;
2285 /* Get the current token again and extract the filename. */
2286 token = linespec_lexer_lex_one (parser);
2287 user_filename = copy_token_string (token);
2289 /* Check if the input is a filename. */
2292 PARSER_RESULT (parser)->file_symtabs
2293 = symtabs_from_filename (user_filename,
2294 PARSER_STATE (parser)->search_pspace);
2296 CATCH (ex, RETURN_MASK_ERROR)
2298 file_exception = ex;
2302 if (file_exception.reason >= 0)
2304 /* Symtabs were found for the file. Record the filename. */
2305 PARSER_EXPLICIT (parser)->source_filename = user_filename;
2307 /* Get the next token. */
2308 token = linespec_lexer_consume_token (parser);
2310 /* This is LSTOKEN_COLON; consume it. */
2311 linespec_lexer_consume_token (parser);
2315 /* No symtabs found -- discard user_filename. */
2316 xfree (user_filename);
2318 /* A NULL entry means to use GLOBAL_DEFAULT_SYMTAB. */
2319 VEC_safe_push (symtab_ptr, PARSER_RESULT (parser)->file_symtabs, NULL);
2322 /* If the next token is not EOI, KEYWORD, or COMMA, issue an error. */
2323 else if (token.type != LSTOKEN_EOI && token.type != LSTOKEN_KEYWORD
2324 && token.type != LSTOKEN_COMMA)
2326 /* TOKEN is the _next_ token, not the one currently in the parser.
2327 Consuming the token will give the correct error message. */
2328 linespec_lexer_consume_token (parser);
2329 unexpected_linespec_error (parser);
2333 /* A NULL entry means to use GLOBAL_DEFAULT_SYMTAB. */
2334 VEC_safe_push (symtab_ptr, PARSER_RESULT (parser)->file_symtabs, NULL);
2337 /* Parse the rest of the linespec. */
2338 linespec_parse_basic (parser);
2340 if (PARSER_RESULT (parser)->function_symbols == NULL
2341 && PARSER_RESULT (parser)->labels.label_symbols == NULL
2342 && PARSER_EXPLICIT (parser)->line_offset.sign == LINE_OFFSET_UNKNOWN
2343 && PARSER_RESULT (parser)->minimal_symbols == NULL)
2345 /* The linespec didn't parse. Re-throw the file exception if
2347 if (file_exception.reason < 0)
2348 throw_exception (file_exception);
2350 /* Otherwise, the symbol is not found. */
2351 symbol_not_found_error (PARSER_EXPLICIT (parser)->function_name,
2352 PARSER_EXPLICIT (parser)->source_filename);
2357 /* Get the last token and record how much of the input was parsed,
2359 token = linespec_lexer_lex_one (parser);
2360 if (token.type != LSTOKEN_EOI && token.type != LSTOKEN_KEYWORD)
2361 PARSER_STREAM (parser) = LS_TOKEN_STOKEN (token).ptr;
2363 /* Convert the data in PARSER_RESULT to SALs. */
2364 values = convert_linespec_to_sals (PARSER_STATE (parser),
2365 PARSER_RESULT (parser));
2371 /* A constructor for linespec_state. */
2374 linespec_state_constructor (struct linespec_state *self,
2375 int flags, const struct language_defn *language,
2376 struct program_space *search_pspace,
2377 struct symtab *default_symtab,
2379 struct linespec_result *canonical)
2381 memset (self, 0, sizeof (*self));
2382 self->language = language;
2383 self->funfirstline = (flags & DECODE_LINE_FUNFIRSTLINE) ? 1 : 0;
2384 self->list_mode = (flags & DECODE_LINE_LIST_MODE) ? 1 : 0;
2385 self->search_pspace = search_pspace;
2386 self->default_symtab = default_symtab;
2387 self->default_line = default_line;
2388 self->canonical = canonical;
2389 self->program_space = current_program_space;
2390 self->addr_set = htab_create_alloc (10, hash_address_entry, eq_address_entry,
2391 xfree, xcalloc, xfree);
2392 self->is_linespec = 0;
2395 /* Initialize a new linespec parser. */
2398 linespec_parser_new (linespec_parser *parser,
2399 int flags, const struct language_defn *language,
2400 struct program_space *search_pspace,
2401 struct symtab *default_symtab,
2403 struct linespec_result *canonical)
2405 memset (parser, 0, sizeof (linespec_parser));
2406 parser->lexer.current.type = LSTOKEN_CONSUMED;
2407 memset (PARSER_RESULT (parser), 0, sizeof (struct linespec));
2408 PARSER_EXPLICIT (parser)->line_offset.sign = LINE_OFFSET_UNKNOWN;
2409 linespec_state_constructor (PARSER_STATE (parser), flags, language,
2411 default_symtab, default_line, canonical);
2414 /* A destructor for linespec_state. */
2417 linespec_state_destructor (struct linespec_state *self)
2419 htab_delete (self->addr_set);
2422 /* Delete a linespec parser. */
2425 linespec_parser_delete (void *arg)
2427 linespec_parser *parser = (linespec_parser *) arg;
2429 xfree (PARSER_EXPLICIT (parser)->source_filename);
2430 xfree (PARSER_EXPLICIT (parser)->label_name);
2431 xfree (PARSER_EXPLICIT (parser)->function_name);
2433 if (PARSER_RESULT (parser)->file_symtabs != NULL)
2434 VEC_free (symtab_ptr, PARSER_RESULT (parser)->file_symtabs);
2436 if (PARSER_RESULT (parser)->function_symbols != NULL)
2437 VEC_free (symbolp, PARSER_RESULT (parser)->function_symbols);
2439 if (PARSER_RESULT (parser)->minimal_symbols != NULL)
2440 VEC_free (bound_minimal_symbol_d, PARSER_RESULT (parser)->minimal_symbols);
2442 if (PARSER_RESULT (parser)->labels.label_symbols != NULL)
2443 VEC_free (symbolp, PARSER_RESULT (parser)->labels.label_symbols);
2445 if (PARSER_RESULT (parser)->labels.function_symbols != NULL)
2446 VEC_free (symbolp, PARSER_RESULT (parser)->labels.function_symbols);
2448 linespec_state_destructor (PARSER_STATE (parser));
2451 /* See description in linespec.h. */
2454 linespec_lex_to_end (char **stringp)
2456 linespec_parser parser;
2457 struct cleanup *cleanup;
2458 linespec_token token;
2461 if (stringp == NULL || *stringp == NULL)
2464 linespec_parser_new (&parser, 0, current_language, NULL, NULL, 0, NULL);
2465 cleanup = make_cleanup (linespec_parser_delete, &parser);
2466 parser.lexer.saved_arg = *stringp;
2467 PARSER_STREAM (&parser) = orig = *stringp;
2471 /* Stop before any comma tokens; we need it to keep it
2472 as the next token in the string. */
2473 token = linespec_lexer_peek_token (&parser);
2474 if (token.type == LSTOKEN_COMMA)
2476 token = linespec_lexer_consume_token (&parser);
2478 while (token.type != LSTOKEN_EOI && token.type != LSTOKEN_KEYWORD);
2480 *stringp += PARSER_STREAM (&parser) - orig;
2481 do_cleanups (cleanup);
2484 /* A helper function for decode_line_full and decode_line_1 to
2485 turn LOCATION into symtabs_and_lines. */
2487 static struct symtabs_and_lines
2488 event_location_to_sals (linespec_parser *parser,
2489 const struct event_location *location)
2491 struct symtabs_and_lines result = {NULL, 0};
2493 switch (event_location_type (location))
2495 case LINESPEC_LOCATION:
2497 PARSER_STATE (parser)->is_linespec = 1;
2500 result = parse_linespec (parser, get_linespec_location (location));
2502 CATCH (except, RETURN_MASK_ERROR)
2504 throw_exception (except);
2510 case ADDRESS_LOCATION:
2512 const char *addr_string = get_address_string_location (location);
2513 CORE_ADDR addr = get_address_location (location);
2515 if (addr_string != NULL)
2517 char *expr = xstrdup (addr_string);
2518 const char *const_expr = expr;
2519 struct cleanup *cleanup = make_cleanup (xfree, expr);
2521 addr = linespec_expression_to_pc (&const_expr);
2522 if (PARSER_STATE (parser)->canonical != NULL)
2523 PARSER_STATE (parser)->canonical->location
2524 = copy_event_location (location);
2526 do_cleanups (cleanup);
2529 result = convert_address_location_to_sals (PARSER_STATE (parser),
2534 case EXPLICIT_LOCATION:
2536 const struct explicit_location *explicit_loc;
2538 explicit_loc = get_explicit_location_const (location);
2539 result = convert_explicit_location_to_sals (PARSER_STATE (parser),
2540 PARSER_RESULT (parser),
2545 case PROBE_LOCATION:
2546 /* Probes are handled by their own decoders. */
2547 gdb_assert_not_reached ("attempt to decode probe location");
2551 gdb_assert_not_reached ("unhandled event location type");
2557 /* See linespec.h. */
2560 decode_line_full (const struct event_location *location, int flags,
2561 struct program_space *search_pspace,
2562 struct symtab *default_symtab,
2563 int default_line, struct linespec_result *canonical,
2564 const char *select_mode,
2567 struct symtabs_and_lines result;
2568 struct cleanup *cleanups;
2569 VEC (const_char_ptr) *filters = NULL;
2570 linespec_parser parser;
2571 struct linespec_state *state;
2573 gdb_assert (canonical != NULL);
2574 /* The filter only makes sense for 'all'. */
2575 gdb_assert (filter == NULL || select_mode == multiple_symbols_all);
2576 gdb_assert (select_mode == NULL
2577 || select_mode == multiple_symbols_all
2578 || select_mode == multiple_symbols_ask
2579 || select_mode == multiple_symbols_cancel);
2580 gdb_assert ((flags & DECODE_LINE_LIST_MODE) == 0);
2582 linespec_parser_new (&parser, flags, current_language,
2583 search_pspace, default_symtab,
2584 default_line, canonical);
2585 cleanups = make_cleanup (linespec_parser_delete, &parser);
2586 save_current_program_space ();
2588 result = event_location_to_sals (&parser, location);
2589 state = PARSER_STATE (&parser);
2591 gdb_assert (result.nelts == 1 || canonical->pre_expanded);
2592 canonical->pre_expanded = 1;
2594 /* Arrange for allocated canonical names to be freed. */
2595 if (result.nelts > 0)
2599 make_cleanup (xfree, state->canonical_names);
2600 for (i = 0; i < result.nelts; ++i)
2602 gdb_assert (state->canonical_names[i].suffix != NULL);
2603 make_cleanup (xfree, state->canonical_names[i].suffix);
2607 if (select_mode == NULL)
2609 if (interp_ui_out (top_level_interpreter ())->is_mi_like_p ())
2610 select_mode = multiple_symbols_all;
2612 select_mode = multiple_symbols_select_mode ();
2615 if (select_mode == multiple_symbols_all)
2619 make_cleanup (VEC_cleanup (const_char_ptr), &filters);
2620 VEC_safe_push (const_char_ptr, filters, filter);
2621 filter_results (state, &result, filters);
2624 convert_results_to_lsals (state, &result);
2627 decode_line_2 (state, &result, select_mode);
2629 do_cleanups (cleanups);
2632 /* See linespec.h. */
2634 struct symtabs_and_lines
2635 decode_line_1 (const struct event_location *location, int flags,
2636 struct program_space *search_pspace,
2637 struct symtab *default_symtab,
2640 struct symtabs_and_lines result;
2641 linespec_parser parser;
2642 struct cleanup *cleanups;
2644 linespec_parser_new (&parser, flags, current_language,
2645 search_pspace, default_symtab,
2646 default_line, NULL);
2647 cleanups = make_cleanup (linespec_parser_delete, &parser);
2648 save_current_program_space ();
2650 result = event_location_to_sals (&parser, location);
2652 do_cleanups (cleanups);
2656 /* See linespec.h. */
2658 struct symtabs_and_lines
2659 decode_line_with_current_source (char *string, int flags)
2661 struct symtabs_and_lines sals;
2662 struct symtab_and_line cursal;
2663 struct event_location *location;
2664 struct cleanup *cleanup;
2667 error (_("Empty line specification."));
2669 /* We use whatever is set as the current source line. We do not try
2670 and get a default source symtab+line or it will recursively call us! */
2671 cursal = get_current_source_symtab_and_line ();
2673 location = string_to_event_location (&string, current_language);
2674 cleanup = make_cleanup_delete_event_location (location);
2675 sals = decode_line_1 (location, flags, NULL,
2676 cursal.symtab, cursal.line);
2679 error (_("Junk at end of line specification: %s"), string);
2681 do_cleanups (cleanup);
2685 /* See linespec.h. */
2687 struct symtabs_and_lines
2688 decode_line_with_last_displayed (char *string, int flags)
2690 struct symtabs_and_lines sals;
2691 struct event_location *location;
2692 struct cleanup *cleanup;
2695 error (_("Empty line specification."));
2697 location = string_to_event_location (&string, current_language);
2698 cleanup = make_cleanup_delete_event_location (location);
2699 if (last_displayed_sal_is_valid ())
2700 sals = decode_line_1 (location, flags, NULL,
2701 get_last_displayed_symtab (),
2702 get_last_displayed_line ());
2704 sals = decode_line_1 (location, flags, NULL, (struct symtab *) NULL, 0);
2707 error (_("Junk at end of line specification: %s"), string);
2709 do_cleanups (cleanup);
2715 /* First, some functions to initialize stuff at the beggining of the
2719 initialize_defaults (struct symtab **default_symtab, int *default_line)
2721 if (*default_symtab == 0)
2723 /* Use whatever we have for the default source line. We don't use
2724 get_current_or_default_symtab_and_line as it can recurse and call
2726 struct symtab_and_line cursal =
2727 get_current_source_symtab_and_line ();
2729 *default_symtab = cursal.symtab;
2730 *default_line = cursal.line;
2736 /* Evaluate the expression pointed to by EXP_PTR into a CORE_ADDR,
2737 advancing EXP_PTR past any parsed text. */
2740 linespec_expression_to_pc (const char **exp_ptr)
2742 if (current_program_space->executing_startup)
2743 /* The error message doesn't really matter, because this case
2744 should only hit during breakpoint reset. */
2745 throw_error (NOT_FOUND_ERROR, _("cannot evaluate expressions while "
2746 "program space is in startup"));
2749 return value_as_address (parse_to_comma_and_eval (exp_ptr));
2754 /* Here's where we recognise an Objective-C Selector. An Objective C
2755 selector may be implemented by more than one class, therefore it
2756 may represent more than one method/function. This gives us a
2757 situation somewhat analogous to C++ overloading. If there's more
2758 than one method that could represent the selector, then use some of
2759 the existing C++ code to let the user choose one. */
2761 static struct symtabs_and_lines
2762 decode_objc (struct linespec_state *self, linespec_p ls, const char *arg)
2764 struct collect_info info;
2765 VEC (const_char_ptr) *symbol_names = NULL;
2766 struct symtabs_and_lines values;
2767 const char *new_argptr;
2768 struct cleanup *cleanup = make_cleanup (VEC_cleanup (const_char_ptr),
2772 info.file_symtabs = NULL;
2773 VEC_safe_push (symtab_ptr, info.file_symtabs, NULL);
2774 make_cleanup (VEC_cleanup (symtab_ptr), &info.file_symtabs);
2775 info.result.symbols = NULL;
2776 info.result.minimal_symbols = NULL;
2780 new_argptr = find_imps (arg, &symbol_names);
2781 if (VEC_empty (const_char_ptr, symbol_names))
2783 do_cleanups (cleanup);
2787 add_all_symbol_names_from_pspace (&info, NULL, symbol_names);
2789 if (!VEC_empty (symbolp, info.result.symbols)
2790 || !VEC_empty (bound_minimal_symbol_d, info.result.minimal_symbols))
2794 saved_arg = (char *) alloca (new_argptr - arg + 1);
2795 memcpy (saved_arg, arg, new_argptr - arg);
2796 saved_arg[new_argptr - arg] = '\0';
2798 ls->explicit_loc.function_name = xstrdup (saved_arg);
2799 ls->function_symbols = info.result.symbols;
2800 ls->minimal_symbols = info.result.minimal_symbols;
2801 values = convert_linespec_to_sals (self, ls);
2803 if (self->canonical)
2807 self->canonical->pre_expanded = 1;
2809 if (ls->explicit_loc.source_filename)
2811 str = xstrprintf ("%s:%s",
2812 ls->explicit_loc.source_filename, saved_arg);
2815 str = xstrdup (saved_arg);
2817 make_cleanup (xfree, str);
2818 self->canonical->location = new_linespec_location (&str);
2822 do_cleanups (cleanup);
2827 /* An instance of this type is used when collecting prefix symbols for
2830 struct decode_compound_collector
2832 /* The result vector. */
2833 VEC (symbolp) *symbols;
2835 /* A hash table of all symbols we found. We use this to avoid
2836 adding any symbol more than once. */
2840 /* A callback for iterate_over_symbols that is used by
2841 lookup_prefix_sym to collect type symbols. */
2844 collect_one_symbol (struct symbol *sym, void *d)
2846 struct decode_compound_collector *collector
2847 = (struct decode_compound_collector *) d;
2851 if (SYMBOL_CLASS (sym) != LOC_TYPEDEF)
2852 return 1; /* Continue iterating. */
2854 t = SYMBOL_TYPE (sym);
2855 t = check_typedef (t);
2856 if (TYPE_CODE (t) != TYPE_CODE_STRUCT
2857 && TYPE_CODE (t) != TYPE_CODE_UNION
2858 && TYPE_CODE (t) != TYPE_CODE_NAMESPACE)
2859 return 1; /* Continue iterating. */
2861 slot = htab_find_slot (collector->unique_syms, sym, INSERT);
2865 VEC_safe_push (symbolp, collector->symbols, sym);
2868 return 1; /* Continue iterating. */
2871 /* Return any symbols corresponding to CLASS_NAME in FILE_SYMTABS. */
2873 static VEC (symbolp) *
2874 lookup_prefix_sym (struct linespec_state *state, VEC (symtab_ptr) *file_symtabs,
2875 const char *class_name)
2879 struct decode_compound_collector collector;
2880 struct cleanup *outer;
2881 struct cleanup *cleanup;
2883 collector.symbols = NULL;
2884 outer = make_cleanup (VEC_cleanup (symbolp), &collector.symbols);
2886 collector.unique_syms = htab_create_alloc (1, htab_hash_pointer,
2887 htab_eq_pointer, NULL,
2889 cleanup = make_cleanup_htab_delete (collector.unique_syms);
2891 for (ix = 0; VEC_iterate (symtab_ptr, file_symtabs, ix, elt); ++ix)
2895 iterate_over_all_matching_symtabs (state, class_name, STRUCT_DOMAIN,
2896 collect_one_symbol, &collector,
2898 iterate_over_all_matching_symtabs (state, class_name, VAR_DOMAIN,
2899 collect_one_symbol, &collector,
2904 /* Program spaces that are executing startup should have
2905 been filtered out earlier. */
2906 gdb_assert (!SYMTAB_PSPACE (elt)->executing_startup);
2907 set_current_program_space (SYMTAB_PSPACE (elt));
2908 iterate_over_file_blocks (elt, class_name, STRUCT_DOMAIN,
2909 collect_one_symbol, &collector);
2910 iterate_over_file_blocks (elt, class_name, VAR_DOMAIN,
2911 collect_one_symbol, &collector);
2915 do_cleanups (cleanup);
2916 discard_cleanups (outer);
2917 return collector.symbols;
2920 /* A qsort comparison function for symbols. The resulting order does
2921 not actually matter; we just need to be able to sort them so that
2922 symbols with the same program space end up next to each other. */
2925 compare_symbols (const void *a, const void *b)
2927 struct symbol * const *sa = (struct symbol * const*) a;
2928 struct symbol * const *sb = (struct symbol * const*) b;
2931 uia = (uintptr_t) SYMTAB_PSPACE (symbol_symtab (*sa));
2932 uib = (uintptr_t) SYMTAB_PSPACE (symbol_symtab (*sb));
2939 uia = (uintptr_t) *sa;
2940 uib = (uintptr_t) *sb;
2950 /* Like compare_symbols but for minimal symbols. */
2953 compare_msymbols (const void *a, const void *b)
2955 const struct bound_minimal_symbol *sa
2956 = (const struct bound_minimal_symbol *) a;
2957 const struct bound_minimal_symbol *sb
2958 = (const struct bound_minimal_symbol *) b;
2961 uia = (uintptr_t) sa->objfile->pspace;
2962 uib = (uintptr_t) sa->objfile->pspace;
2969 uia = (uintptr_t) sa->minsym;
2970 uib = (uintptr_t) sb->minsym;
2980 /* Look for all the matching instances of each symbol in NAMES. Only
2981 instances from PSPACE are considered; other program spaces are
2982 handled by our caller. If PSPACE is NULL, then all program spaces
2983 are considered. Results are stored into INFO. */
2986 add_all_symbol_names_from_pspace (struct collect_info *info,
2987 struct program_space *pspace,
2988 VEC (const_char_ptr) *names)
2993 for (ix = 0; VEC_iterate (const_char_ptr, names, ix, iter); ++ix)
2994 add_matching_symbols_to_info (iter, info, pspace);
2998 find_superclass_methods (VEC (typep) *superclasses,
3000 VEC (const_char_ptr) **result_names)
3002 int old_len = VEC_length (const_char_ptr, *result_names);
3003 VEC (typep) *iter_classes;
3004 struct cleanup *cleanup = make_cleanup (null_cleanup, NULL);
3006 iter_classes = superclasses;
3009 VEC (typep) *new_supers = NULL;
3013 make_cleanup (VEC_cleanup (typep), &new_supers);
3014 for (ix = 0; VEC_iterate (typep, iter_classes, ix, t); ++ix)
3015 find_methods (t, name, result_names, &new_supers);
3017 if (VEC_length (const_char_ptr, *result_names) != old_len
3018 || VEC_empty (typep, new_supers))
3021 iter_classes = new_supers;
3024 do_cleanups (cleanup);
3027 /* This finds the method METHOD_NAME in the class CLASS_NAME whose type is
3028 given by one of the symbols in SYM_CLASSES. Matches are returned
3029 in SYMBOLS (for debug symbols) and MINSYMS (for minimal symbols). */
3032 find_method (struct linespec_state *self, VEC (symtab_ptr) *file_symtabs,
3033 const char *class_name, const char *method_name,
3034 VEC (symbolp) *sym_classes, VEC (symbolp) **symbols,
3035 VEC (bound_minimal_symbol_d) **minsyms)
3038 struct cleanup *cleanup = make_cleanup (null_cleanup, NULL);
3040 int last_result_len;
3041 VEC (typep) *superclass_vec;
3042 VEC (const_char_ptr) *result_names;
3043 struct collect_info info;
3045 /* Sort symbols so that symbols with the same program space are next
3047 qsort (VEC_address (symbolp, sym_classes),
3048 VEC_length (symbolp, sym_classes),
3053 info.file_symtabs = file_symtabs;
3054 info.result.symbols = NULL;
3055 info.result.minimal_symbols = NULL;
3057 /* Iterate over all the types, looking for the names of existing
3058 methods matching METHOD_NAME. If we cannot find a direct method in a
3059 given program space, then we consider inherited methods; this is
3060 not ideal (ideal would be to respect C++ hiding rules), but it
3061 seems good enough and is what GDB has historically done. We only
3062 need to collect the names because later we find all symbols with
3063 those names. This loop is written in a somewhat funny way
3064 because we collect data across the program space before deciding
3066 superclass_vec = NULL;
3067 make_cleanup (VEC_cleanup (typep), &superclass_vec);
3068 result_names = NULL;
3069 make_cleanup (VEC_cleanup (const_char_ptr), &result_names);
3070 last_result_len = 0;
3071 for (ix = 0; VEC_iterate (symbolp, sym_classes, ix, sym); ++ix)
3074 struct program_space *pspace;
3076 /* Program spaces that are executing startup should have
3077 been filtered out earlier. */
3078 pspace = SYMTAB_PSPACE (symbol_symtab (sym));
3079 gdb_assert (!pspace->executing_startup);
3080 set_current_program_space (pspace);
3081 t = check_typedef (SYMBOL_TYPE (sym));
3082 find_methods (t, method_name, &result_names, &superclass_vec);
3084 /* Handle all items from a single program space at once; and be
3085 sure not to miss the last batch. */
3086 if (ix == VEC_length (symbolp, sym_classes) - 1
3088 != SYMTAB_PSPACE (symbol_symtab (VEC_index (symbolp, sym_classes,
3091 /* If we did not find a direct implementation anywhere in
3092 this program space, consider superclasses. */
3093 if (VEC_length (const_char_ptr, result_names) == last_result_len)
3094 find_superclass_methods (superclass_vec, method_name,
3097 /* We have a list of candidate symbol names, so now we
3098 iterate over the symbol tables looking for all
3099 matches in this pspace. */
3100 add_all_symbol_names_from_pspace (&info, pspace, result_names);
3102 VEC_truncate (typep, superclass_vec, 0);
3103 last_result_len = VEC_length (const_char_ptr, result_names);
3107 if (!VEC_empty (symbolp, info.result.symbols)
3108 || !VEC_empty (bound_minimal_symbol_d, info.result.minimal_symbols))
3110 *symbols = info.result.symbols;
3111 *minsyms = info.result.minimal_symbols;
3112 do_cleanups (cleanup);
3116 /* Throw an NOT_FOUND_ERROR. This will be caught by the caller
3117 and other attempts to locate the symbol will be made. */
3118 throw_error (NOT_FOUND_ERROR, _("see caller, this text doesn't matter"));
3123 /* This object is used when collecting all matching symtabs. */
3125 struct symtab_collector
3127 /* The result vector of symtabs. */
3128 VEC (symtab_ptr) *symtabs;
3130 /* This is used to ensure the symtabs are unique. */
3131 htab_t symtab_table;
3134 /* Callback for iterate_over_symtabs. */
3137 add_symtabs_to_list (struct symtab *symtab, void *d)
3139 struct symtab_collector *data = (struct symtab_collector *) d;
3142 slot = htab_find_slot (data->symtab_table, symtab, INSERT);
3146 VEC_safe_push (symtab_ptr, data->symtabs, symtab);
3152 /* Given a file name, return a VEC of all matching symtabs. If
3153 SEARCH_PSPACE is not NULL, the search is restricted to just that
3156 static VEC (symtab_ptr) *
3157 collect_symtabs_from_filename (const char *file,
3158 struct program_space *search_pspace)
3160 struct symtab_collector collector;
3161 struct cleanup *cleanups;
3162 struct program_space *pspace;
3164 collector.symtabs = NULL;
3165 collector.symtab_table = htab_create (1, htab_hash_pointer, htab_eq_pointer,
3167 cleanups = make_cleanup_htab_delete (collector.symtab_table);
3169 /* Find that file's data. */
3170 if (search_pspace == NULL)
3172 ALL_PSPACES (pspace)
3174 if (pspace->executing_startup)
3177 set_current_program_space (pspace);
3178 iterate_over_symtabs (file, add_symtabs_to_list, &collector);
3183 set_current_program_space (search_pspace);
3184 iterate_over_symtabs (file, add_symtabs_to_list, &collector);
3187 do_cleanups (cleanups);
3188 return collector.symtabs;
3191 /* Return all the symtabs associated to the FILENAME. If SEARCH_PSPACE is
3192 not NULL, the search is restricted to just that program space. */
3194 static VEC (symtab_ptr) *
3195 symtabs_from_filename (const char *filename,
3196 struct program_space *search_pspace)
3198 VEC (symtab_ptr) *result;
3200 result = collect_symtabs_from_filename (filename, search_pspace);
3202 if (VEC_empty (symtab_ptr, result))
3204 if (!have_full_symbols () && !have_partial_symbols ())
3205 throw_error (NOT_FOUND_ERROR,
3206 _("No symbol table is loaded. "
3207 "Use the \"file\" command."));
3208 source_file_not_found_error (filename);
3214 /* Look up a function symbol named NAME in symtabs FILE_SYMTABS. Matching
3215 debug symbols are returned in SYMBOLS. Matching minimal symbols are
3216 returned in MINSYMS. */
3219 find_function_symbols (struct linespec_state *state,
3220 VEC (symtab_ptr) *file_symtabs, const char *name,
3221 VEC (symbolp) **symbols,
3222 VEC (bound_minimal_symbol_d) **minsyms)
3224 struct collect_info info;
3225 VEC (const_char_ptr) *symbol_names = NULL;
3226 struct cleanup *cleanup = make_cleanup (VEC_cleanup (const_char_ptr),
3230 info.result.symbols = NULL;
3231 info.result.minimal_symbols = NULL;
3232 info.file_symtabs = file_symtabs;
3234 /* Try NAME as an Objective-C selector. */
3235 find_imps (name, &symbol_names);
3236 if (!VEC_empty (const_char_ptr, symbol_names))
3237 add_all_symbol_names_from_pspace (&info, state->search_pspace,
3240 add_matching_symbols_to_info (name, &info, state->search_pspace);
3242 do_cleanups (cleanup);
3244 if (VEC_empty (symbolp, info.result.symbols))
3246 VEC_free (symbolp, info.result.symbols);
3250 *symbols = info.result.symbols;
3252 if (VEC_empty (bound_minimal_symbol_d, info.result.minimal_symbols))
3254 VEC_free (bound_minimal_symbol_d, info.result.minimal_symbols);
3258 *minsyms = info.result.minimal_symbols;
3261 /* Find all symbols named NAME in FILE_SYMTABS, returning debug symbols
3262 in SYMBOLS and minimal symbols in MINSYMS. */
3265 find_linespec_symbols (struct linespec_state *state,
3266 VEC (symtab_ptr) *file_symtabs,
3268 VEC (symbolp) **symbols,
3269 VEC (bound_minimal_symbol_d) **minsyms)
3271 demangle_result_storage demangle_storage;
3272 std::string ada_lookup_storage;
3273 const char *lookup_name;
3275 if (state->language->la_language == language_ada)
3277 /* In Ada, the symbol lookups are performed using the encoded
3278 name rather than the demangled name. */
3279 ada_lookup_storage = ada_name_for_lookup (name);
3280 lookup_name = ada_lookup_storage.c_str ();
3284 lookup_name = demangle_for_lookup (name,
3285 state->language->la_language,
3289 std::string canon = cp_canonicalize_string_no_typedefs (lookup_name);
3290 if (!canon.empty ())
3291 lookup_name = canon.c_str ();
3293 /* It's important to not call expand_symtabs_matching unnecessarily
3294 as it can really slow things down (by unnecessarily expanding
3295 potentially 1000s of symtabs, which when debugging some apps can
3296 cost 100s of seconds). Avoid this to some extent by *first* calling
3297 find_function_symbols, and only if that doesn't find anything
3298 *then* call find_method. This handles two important cases:
3299 1) break (anonymous namespace)::foo
3300 2) break class::method where method is in class (and not a baseclass) */
3302 find_function_symbols (state, file_symtabs, lookup_name,
3305 /* If we were unable to locate a symbol of the same name, try dividing
3306 the name into class and method names and searching the class and its
3308 if (VEC_empty (symbolp, *symbols)
3309 && VEC_empty (bound_minimal_symbol_d, *minsyms))
3311 std::string klass, method;
3312 const char *last, *p, *scope_op;
3313 VEC (symbolp) *classes;
3315 /* See if we can find a scope operator and break this symbol
3316 name into namespaces${SCOPE_OPERATOR}class_name and method_name. */
3318 p = find_toplevel_string (lookup_name, scope_op);
3324 p = find_toplevel_string (p + strlen (scope_op), scope_op);
3327 /* If no scope operator was found, there is nothing more we can do;
3328 we already attempted to lookup the entire name as a symbol
3333 /* LOOKUP_NAME points to the class name.
3334 LAST points to the method name. */
3335 klass = std::string (lookup_name, last - lookup_name);
3337 /* Skip past the scope operator. */
3338 last += strlen (scope_op);
3341 /* Find a list of classes named KLASS. */
3342 classes = lookup_prefix_sym (state, file_symtabs, klass.c_str ());
3343 struct cleanup *old_chain
3344 = make_cleanup (VEC_cleanup (symbolp), &classes);
3346 if (!VEC_empty (symbolp, classes))
3348 /* Now locate a list of suitable methods named METHOD. */
3351 find_method (state, file_symtabs,
3352 klass.c_str (), method.c_str (),
3353 classes, symbols, minsyms);
3356 /* If successful, we're done. If NOT_FOUND_ERROR
3357 was not thrown, rethrow the exception that we did get. */
3358 CATCH (except, RETURN_MASK_ERROR)
3360 if (except.error != NOT_FOUND_ERROR)
3361 throw_exception (except);
3366 do_cleanups (old_chain);
3370 /* Return all labels named NAME in FUNCTION_SYMBOLS. Return the
3371 actual function symbol in which the label was found in LABEL_FUNC_RET. */
3373 static VEC (symbolp) *
3374 find_label_symbols (struct linespec_state *self,
3375 VEC (symbolp) *function_symbols,
3376 VEC (symbolp) **label_funcs_ret, const char *name)
3379 const struct block *block;
3381 struct symbol *fn_sym;
3382 VEC (symbolp) *result = NULL;
3384 if (function_symbols == NULL)
3386 set_current_program_space (self->program_space);
3387 block = get_current_search_block ();
3390 block && !BLOCK_FUNCTION (block);
3391 block = BLOCK_SUPERBLOCK (block))
3395 fn_sym = BLOCK_FUNCTION (block);
3397 sym = lookup_symbol (name, block, LABEL_DOMAIN, 0).symbol;
3401 VEC_safe_push (symbolp, result, sym);
3402 VEC_safe_push (symbolp, *label_funcs_ret, fn_sym);
3408 VEC_iterate (symbolp, function_symbols, ix, fn_sym); ++ix)
3410 set_current_program_space (SYMTAB_PSPACE (symbol_symtab (fn_sym)));
3411 block = SYMBOL_BLOCK_VALUE (fn_sym);
3412 sym = lookup_symbol (name, block, LABEL_DOMAIN, 0).symbol;
3416 VEC_safe_push (symbolp, result, sym);
3417 VEC_safe_push (symbolp, *label_funcs_ret, fn_sym);
3427 /* A helper for create_sals_line_offset that handles the 'list_mode' case. */
3430 decode_digits_list_mode (struct linespec_state *self,
3432 struct symtabs_and_lines *values,
3433 struct symtab_and_line val)
3438 gdb_assert (self->list_mode);
3440 for (ix = 0; VEC_iterate (symtab_ptr, ls->file_symtabs, ix, elt);
3443 /* The logic above should ensure this. */
3444 gdb_assert (elt != NULL);
3446 set_current_program_space (SYMTAB_PSPACE (elt));
3448 /* Simplistic search just for the list command. */
3449 val.symtab = find_line_symtab (elt, val.line, NULL, NULL);
3450 if (val.symtab == NULL)
3452 val.pspace = SYMTAB_PSPACE (elt);
3454 val.explicit_line = 1;
3456 add_sal_to_sals (self, values, &val, NULL, 0);
3460 /* A helper for create_sals_line_offset that iterates over the symtabs,
3461 adding lines to the VEC. */
3464 decode_digits_ordinary (struct linespec_state *self,
3467 struct symtabs_and_lines *sals,
3468 struct linetable_entry **best_entry)
3473 for (ix = 0; VEC_iterate (symtab_ptr, ls->file_symtabs, ix, elt); ++ix)
3476 VEC (CORE_ADDR) *pcs;
3479 /* The logic above should ensure this. */
3480 gdb_assert (elt != NULL);
3482 set_current_program_space (SYMTAB_PSPACE (elt));
3484 pcs = find_pcs_for_symtab_line (elt, line, best_entry);
3485 for (i = 0; VEC_iterate (CORE_ADDR, pcs, i, pc); ++i)
3487 struct symtab_and_line sal;
3490 sal.pspace = SYMTAB_PSPACE (elt);
3494 add_sal_to_sals_basic (sals, &sal);
3497 VEC_free (CORE_ADDR, pcs);
3503 /* Return the line offset represented by VARIABLE. */
3505 static struct line_offset
3506 linespec_parse_variable (struct linespec_state *self, const char *variable)
3510 struct line_offset offset = {0, LINE_OFFSET_NONE};
3512 p = (variable[1] == '$') ? variable + 2 : variable + 1;
3515 while (*p >= '0' && *p <= '9')
3517 if (!*p) /* Reached end of token without hitting non-digit. */
3519 /* We have a value history reference. */
3520 struct value *val_history;
3522 sscanf ((variable[1] == '$') ? variable + 2 : variable + 1, "%d", &index);
3524 = access_value_history ((variable[1] == '$') ? -index : index);
3525 if (TYPE_CODE (value_type (val_history)) != TYPE_CODE_INT)
3526 error (_("History values used in line "
3527 "specs must have integer values."));
3528 offset.offset = value_as_long (val_history);
3532 /* Not all digits -- may be user variable/function or a
3533 convenience variable. */
3535 struct internalvar *ivar;
3537 /* Try it as a convenience variable. If it is not a convenience
3538 variable, return and allow normal symbol lookup to occur. */
3539 ivar = lookup_only_internalvar (variable + 1);
3541 /* No internal variable with that name. Mark the offset
3542 as unknown to allow the name to be looked up as a symbol. */
3543 offset.sign = LINE_OFFSET_UNKNOWN;
3546 /* We found a valid variable name. If it is not an integer,
3548 if (!get_internalvar_integer (ivar, &valx))
3549 error (_("Convenience variables used in line "
3550 "specs must have integer values."));
3552 offset.offset = valx;
3560 /* A callback used to possibly add a symbol to the results. */
3563 collect_symbols (struct symbol *sym, void *data)
3565 struct collect_info *info = (struct collect_info *) data;
3567 /* In list mode, add all matching symbols, regardless of class.
3568 This allows the user to type "list a_global_variable". */
3569 if (SYMBOL_CLASS (sym) == LOC_BLOCK || info->state->list_mode)
3570 VEC_safe_push (symbolp, info->result.symbols, sym);
3571 return 1; /* Continue iterating. */
3574 /* We've found a minimal symbol MSYMBOL in OBJFILE to associate with our
3575 linespec; return the SAL in RESULT. This function should return SALs
3576 matching those from find_function_start_sal, otherwise false
3577 multiple-locations breakpoints could be placed. */
3580 minsym_found (struct linespec_state *self, struct objfile *objfile,
3581 struct minimal_symbol *msymbol,
3582 struct symtabs_and_lines *result)
3584 struct gdbarch *gdbarch = get_objfile_arch (objfile);
3586 struct symtab_and_line sal;
3588 sal = find_pc_sect_line (MSYMBOL_VALUE_ADDRESS (objfile, msymbol),
3589 (struct obj_section *) 0, 0);
3590 sal.section = MSYMBOL_OBJ_SECTION (objfile, msymbol);
3592 /* The minimal symbol might point to a function descriptor;
3593 resolve it to the actual code address instead. */
3594 pc = gdbarch_convert_from_func_ptr_addr (gdbarch, sal.pc, ¤t_target);
3596 sal = find_pc_sect_line (pc, NULL, 0);
3598 if (self->funfirstline)
3600 if (sal.symtab != NULL
3601 && (COMPUNIT_LOCATIONS_VALID (SYMTAB_COMPUNIT (sal.symtab))
3602 || SYMTAB_LANGUAGE (sal.symtab) == language_asm))
3604 /* If gdbarch_convert_from_func_ptr_addr does not apply then
3605 sal.SECTION, sal.LINE&co. will stay correct from above.
3606 If gdbarch_convert_from_func_ptr_addr applies then
3607 sal.SECTION is cleared from above and sal.LINE&co. will
3608 stay correct from the last find_pc_sect_line above. */
3609 sal.pc = MSYMBOL_VALUE_ADDRESS (objfile, msymbol);
3610 sal.pc = gdbarch_convert_from_func_ptr_addr (gdbarch, sal.pc,
3612 if (gdbarch_skip_entrypoint_p (gdbarch))
3613 sal.pc = gdbarch_skip_entrypoint (gdbarch, sal.pc);
3616 skip_prologue_sal (&sal);
3619 if (maybe_add_address (self->addr_set, objfile->pspace, sal.pc))
3620 add_sal_to_sals (self, result, &sal, MSYMBOL_NATURAL_NAME (msymbol), 0);
3623 /* A helper struct to pass some data through
3624 iterate_over_minimal_symbols. */
3626 struct collect_minsyms
3628 /* The objfile we're examining. */
3629 struct objfile *objfile;
3631 /* Only search the given symtab, or NULL to search for all symbols. */
3632 struct symtab *symtab;
3634 /* The funfirstline setting from the initial call. */
3637 /* The list_mode setting from the initial call. */
3640 /* The resulting symbols. */
3641 VEC (bound_minimal_symbol_d) *msyms;
3644 /* A helper function to classify a minimal_symbol_type according to
3648 classify_mtype (enum minimal_symbol_type t)
3655 /* Intermediate priority. */
3658 case mst_solib_trampoline:
3659 /* Lowest priority. */
3663 /* Highest priority. */
3668 /* Callback for qsort that sorts symbols by priority. */
3671 compare_msyms (const void *a, const void *b)
3673 const bound_minimal_symbol_d *moa = (const bound_minimal_symbol_d *) a;
3674 const bound_minimal_symbol_d *mob = (const bound_minimal_symbol_d *) b;
3675 enum minimal_symbol_type ta = MSYMBOL_TYPE (moa->minsym);
3676 enum minimal_symbol_type tb = MSYMBOL_TYPE (mob->minsym);
3678 return classify_mtype (ta) - classify_mtype (tb);
3681 /* Callback for iterate_over_minimal_symbols that adds the symbol to
3685 add_minsym (struct minimal_symbol *minsym, void *d)
3687 struct collect_minsyms *info = (struct collect_minsyms *) d;
3688 bound_minimal_symbol_d mo;
3691 mo.objfile = info->objfile;
3693 if (info->symtab != NULL)
3696 struct symtab_and_line sal;
3697 struct gdbarch *gdbarch = get_objfile_arch (info->objfile);
3699 sal = find_pc_sect_line (MSYMBOL_VALUE_ADDRESS (info->objfile, minsym),
3701 sal.section = MSYMBOL_OBJ_SECTION (info->objfile, minsym);
3703 = gdbarch_convert_from_func_ptr_addr (gdbarch, sal.pc, ¤t_target);
3705 sal = find_pc_sect_line (pc, NULL, 0);
3707 if (info->symtab != sal.symtab)
3711 /* Exclude data symbols when looking for breakpoint locations. */
3712 if (!info->list_mode)
3713 switch (minsym->type)
3715 case mst_slot_got_plt:
3722 /* Make sure this minsym is not a function descriptor
3723 before we decide to discard it. */
3724 struct gdbarch *gdbarch = get_objfile_arch (info->objfile);
3725 CORE_ADDR addr = gdbarch_convert_from_func_ptr_addr
3726 (gdbarch, BMSYMBOL_VALUE_ADDRESS (mo),
3729 if (addr == BMSYMBOL_VALUE_ADDRESS (mo))
3734 VEC_safe_push (bound_minimal_symbol_d, info->msyms, &mo);
3737 /* Search for minimal symbols called NAME. If SEARCH_PSPACE
3738 is not NULL, the search is restricted to just that program
3741 If SYMTAB is NULL, search all objfiles, otherwise
3742 restrict results to the given SYMTAB. */
3745 search_minsyms_for_name (struct collect_info *info, const char *name,
3746 struct program_space *search_pspace,
3747 struct symtab *symtab)
3749 struct collect_minsyms local;
3750 struct cleanup *cleanup;
3752 memset (&local, 0, sizeof (local));
3753 local.funfirstline = info->state->funfirstline;
3754 local.list_mode = info->state->list_mode;
3755 local.symtab = symtab;
3757 cleanup = make_cleanup (VEC_cleanup (bound_minimal_symbol_d), &local.msyms);
3761 struct program_space *pspace;
3763 ALL_PSPACES (pspace)
3765 struct objfile *objfile;
3767 if (search_pspace != NULL && search_pspace != pspace)
3769 if (pspace->executing_startup)
3772 set_current_program_space (pspace);
3774 ALL_OBJFILES (objfile)
3776 local.objfile = objfile;
3777 iterate_over_minimal_symbols (objfile, name, add_minsym, &local);
3783 if (search_pspace == NULL || SYMTAB_PSPACE (symtab) == search_pspace)
3785 set_current_program_space (SYMTAB_PSPACE (symtab));
3786 local.objfile = SYMTAB_OBJFILE(symtab);
3787 iterate_over_minimal_symbols (local.objfile, name, add_minsym,
3792 if (!VEC_empty (bound_minimal_symbol_d, local.msyms))
3796 bound_minimal_symbol_d *item;
3798 qsort (VEC_address (bound_minimal_symbol_d, local.msyms),
3799 VEC_length (bound_minimal_symbol_d, local.msyms),
3800 sizeof (bound_minimal_symbol_d),
3803 /* Now the minsyms are in classification order. So, we walk
3804 over them and process just the minsyms with the same
3805 classification as the very first minsym in the list. */
3806 item = VEC_index (bound_minimal_symbol_d, local.msyms, 0);
3807 classification = classify_mtype (MSYMBOL_TYPE (item->minsym));
3810 VEC_iterate (bound_minimal_symbol_d, local.msyms, ix, item);
3813 if (classify_mtype (MSYMBOL_TYPE (item->minsym)) != classification)
3816 VEC_safe_push (bound_minimal_symbol_d,
3817 info->result.minimal_symbols, item);
3821 do_cleanups (cleanup);
3824 /* A helper function to add all symbols matching NAME to INFO. If
3825 PSPACE is not NULL, the search is restricted to just that program
3829 add_matching_symbols_to_info (const char *name,
3830 struct collect_info *info,
3831 struct program_space *pspace)
3836 for (ix = 0; VEC_iterate (symtab_ptr, info->file_symtabs, ix, elt); ++ix)
3840 iterate_over_all_matching_symtabs (info->state, name, VAR_DOMAIN,
3841 collect_symbols, info,
3843 search_minsyms_for_name (info, name, pspace, NULL);
3845 else if (pspace == NULL || pspace == SYMTAB_PSPACE (elt))
3847 int prev_len = VEC_length (symbolp, info->result.symbols);
3849 /* Program spaces that are executing startup should have
3850 been filtered out earlier. */
3851 gdb_assert (!SYMTAB_PSPACE (elt)->executing_startup);
3852 set_current_program_space (SYMTAB_PSPACE (elt));
3853 iterate_over_file_blocks (elt, name, VAR_DOMAIN,
3854 collect_symbols, info);
3856 /* If no new symbols were found in this iteration and this symtab
3857 is in assembler, we might actually be looking for a label for
3858 which we don't have debug info. Check for a minimal symbol in
3860 if (prev_len == VEC_length (symbolp, info->result.symbols)
3861 && elt->language == language_asm)
3862 search_minsyms_for_name (info, name, pspace, elt);
3869 /* Now come some functions that are called from multiple places within
3873 symbol_to_sal (struct symtab_and_line *result,
3874 int funfirstline, struct symbol *sym)
3876 if (SYMBOL_CLASS (sym) == LOC_BLOCK)
3878 *result = find_function_start_sal (sym, funfirstline);
3883 if (SYMBOL_CLASS (sym) == LOC_LABEL && SYMBOL_VALUE_ADDRESS (sym) != 0)
3886 result->symtab = symbol_symtab (sym);
3887 result->line = SYMBOL_LINE (sym);
3888 result->pc = SYMBOL_VALUE_ADDRESS (sym);
3889 result->pspace = SYMTAB_PSPACE (result->symtab);
3890 result->explicit_pc = 1;
3893 else if (funfirstline)
3897 else if (SYMBOL_LINE (sym) != 0)
3899 /* We know its line number. */
3901 result->symtab = symbol_symtab (sym);
3902 result->line = SYMBOL_LINE (sym);
3903 result->pspace = SYMTAB_PSPACE (result->symtab);
3911 /* See the comment in linespec.h. */
3914 init_linespec_result (struct linespec_result *lr)
3916 memset (lr, 0, sizeof (*lr));
3919 /* See the comment in linespec.h. */
3922 destroy_linespec_result (struct linespec_result *ls)
3925 struct linespec_sals *lsal;
3927 delete_event_location (ls->location);
3928 for (i = 0; VEC_iterate (linespec_sals, ls->sals, i, lsal); ++i)
3930 xfree (lsal->canonical);
3931 xfree (lsal->sals.sals);
3933 VEC_free (linespec_sals, ls->sals);
3936 /* Cleanup function for a linespec_result. */
3939 cleanup_linespec_result (void *a)
3941 destroy_linespec_result ((struct linespec_result *) a);
3944 /* See the comment in linespec.h. */
3947 make_cleanup_destroy_linespec_result (struct linespec_result *ls)
3949 return make_cleanup (cleanup_linespec_result, ls);
3952 /* Return the quote characters permitted by the linespec parser. */
3955 get_gdb_linespec_parser_quote_characters (void)
3957 return linespec_quote_characters;