gdb: add target_ops::supports_displaced_step
[deliverable/binutils-gdb.git] / gdb / linespec.c
1 /* Parser for linespec for the GNU debugger, GDB.
2
3 Copyright (C) 1986-2020 Free Software Foundation, Inc.
4
5 This file is part of GDB.
6
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.
11
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.
16
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/>. */
19
20 #include "defs.h"
21 #include "symtab.h"
22 #include "frame.h"
23 #include "command.h"
24 #include "symfile.h"
25 #include "objfiles.h"
26 #include "source.h"
27 #include "demangle.h"
28 #include "value.h"
29 #include "completer.h"
30 #include "cp-abi.h"
31 #include "cp-support.h"
32 #include "parser-defs.h"
33 #include "block.h"
34 #include "objc-lang.h"
35 #include "linespec.h"
36 #include "language.h"
37 #include "interps.h"
38 #include "mi/mi-cmds.h"
39 #include "target.h"
40 #include "arch-utils.h"
41 #include <ctype.h>
42 #include "cli/cli-utils.h"
43 #include "filenames.h"
44 #include "ada-lang.h"
45 #include "stack.h"
46 #include "location.h"
47 #include "gdbsupport/function-view.h"
48 #include "gdbsupport/def-vector.h"
49 #include <algorithm>
50
51 /* An enumeration of the various things a user might attempt to
52 complete for a linespec location. */
53
54 enum class linespec_complete_what
55 {
56 /* Nothing, no possible completion. */
57 NOTHING,
58
59 /* A function/method name. Due to ambiguity between
60
61 (gdb) b source[TAB]
62 source_file.c
63 source_function
64
65 this can also indicate a source filename, iff we haven't seen a
66 separate source filename component, as in "b source.c:function". */
67 FUNCTION,
68
69 /* A label symbol. E.g., break file.c:function:LABEL. */
70 LABEL,
71
72 /* An expression. E.g., "break foo if EXPR", or "break *EXPR". */
73 EXPRESSION,
74
75 /* A linespec keyword ("if"/"thread"/"task").
76 E.g., "break func threa<tab>". */
77 KEYWORD,
78 };
79
80 /* An address entry is used to ensure that any given location is only
81 added to the result a single time. It holds an address and the
82 program space from which the address came. */
83
84 struct address_entry
85 {
86 struct program_space *pspace;
87 CORE_ADDR addr;
88 };
89
90 /* A linespec. Elements of this structure are filled in by a parser
91 (either parse_linespec or some other function). The structure is
92 then converted into SALs by convert_linespec_to_sals. */
93
94 struct linespec
95 {
96 /* An explicit location describing the SaLs. */
97 struct explicit_location explicit_loc;
98
99 /* The list of symtabs to search to which to limit the search. May not
100 be NULL. If explicit.SOURCE_FILENAME is NULL (no user-specified
101 filename), FILE_SYMTABS should contain one single NULL member. This
102 will cause the code to use the default symtab. */
103 std::vector<symtab *> *file_symtabs;
104
105 /* A list of matching function symbols and minimal symbols. Both lists
106 may be NULL (or empty) if no matching symbols were found. */
107 std::vector<block_symbol> *function_symbols;
108 std::vector<bound_minimal_symbol> *minimal_symbols;
109
110 /* A structure of matching label symbols and the corresponding
111 function symbol in which the label was found. Both may be NULL
112 or both must be non-NULL. */
113 struct
114 {
115 std::vector<block_symbol> *label_symbols;
116 std::vector<block_symbol> *function_symbols;
117 } labels;
118 };
119 typedef struct linespec *linespec_p;
120
121 /* A canonical linespec represented as a symtab-related string.
122
123 Each entry represents the "SYMTAB:SUFFIX" linespec string.
124 SYMTAB can be converted for example by symtab_to_fullname or
125 symtab_to_filename_for_display as needed. */
126
127 struct linespec_canonical_name
128 {
129 /* Remaining text part of the linespec string. */
130 char *suffix;
131
132 /* If NULL then SUFFIX is the whole linespec string. */
133 struct symtab *symtab;
134 };
135
136 /* An instance of this is used to keep all state while linespec
137 operates. This instance is passed around as a 'this' pointer to
138 the various implementation methods. */
139
140 struct linespec_state
141 {
142 /* The language in use during linespec processing. */
143 const struct language_defn *language;
144
145 /* The program space as seen when the module was entered. */
146 struct program_space *program_space;
147
148 /* If not NULL, the search is restricted to just this program
149 space. */
150 struct program_space *search_pspace;
151
152 /* The default symtab to use, if no other symtab is specified. */
153 struct symtab *default_symtab;
154
155 /* The default line to use. */
156 int default_line;
157
158 /* The 'funfirstline' value that was passed in to decode_line_1 or
159 decode_line_full. */
160 int funfirstline;
161
162 /* Nonzero if we are running in 'list' mode; see decode_line_list. */
163 int list_mode;
164
165 /* The 'canonical' value passed to decode_line_full, or NULL. */
166 struct linespec_result *canonical;
167
168 /* Canonical strings that mirror the std::vector<symtab_and_line> result. */
169 struct linespec_canonical_name *canonical_names;
170
171 /* This is a set of address_entry objects which is used to prevent
172 duplicate symbols from being entered into the result. */
173 htab_t addr_set;
174
175 /* Are we building a linespec? */
176 int is_linespec;
177 };
178
179 /* This is a helper object that is used when collecting symbols into a
180 result. */
181
182 struct collect_info
183 {
184 /* The linespec object in use. */
185 struct linespec_state *state;
186
187 /* A list of symtabs to which to restrict matches. */
188 std::vector<symtab *> *file_symtabs;
189
190 /* The result being accumulated. */
191 struct
192 {
193 std::vector<block_symbol> *symbols;
194 std::vector<bound_minimal_symbol> *minimal_symbols;
195 } result;
196
197 /* Possibly add a symbol to the results. */
198 virtual bool add_symbol (block_symbol *bsym);
199 };
200
201 bool
202 collect_info::add_symbol (block_symbol *bsym)
203 {
204 /* In list mode, add all matching symbols, regardless of class.
205 This allows the user to type "list a_global_variable". */
206 if (SYMBOL_CLASS (bsym->symbol) == LOC_BLOCK || this->state->list_mode)
207 this->result.symbols->push_back (*bsym);
208
209 /* Continue iterating. */
210 return true;
211 }
212
213 /* Custom collect_info for symbol_searcher. */
214
215 struct symbol_searcher_collect_info
216 : collect_info
217 {
218 bool add_symbol (block_symbol *bsym) override
219 {
220 /* Add everything. */
221 this->result.symbols->push_back (*bsym);
222
223 /* Continue iterating. */
224 return true;
225 }
226 };
227
228 /* Token types */
229
230 enum ls_token_type
231 {
232 /* A keyword */
233 LSTOKEN_KEYWORD = 0,
234
235 /* A colon "separator" */
236 LSTOKEN_COLON,
237
238 /* A string */
239 LSTOKEN_STRING,
240
241 /* A number */
242 LSTOKEN_NUMBER,
243
244 /* A comma */
245 LSTOKEN_COMMA,
246
247 /* EOI (end of input) */
248 LSTOKEN_EOI,
249
250 /* Consumed token */
251 LSTOKEN_CONSUMED
252 };
253 typedef enum ls_token_type linespec_token_type;
254
255 /* List of keywords. This is NULL-terminated so that it can be used
256 as enum completer. */
257 const char * const linespec_keywords[] = { "if", "thread", "task", NULL };
258 #define IF_KEYWORD_INDEX 0
259
260 /* A token of the linespec lexer */
261
262 struct ls_token
263 {
264 /* The type of the token */
265 linespec_token_type type;
266
267 /* Data for the token */
268 union
269 {
270 /* A string, given as a stoken */
271 struct stoken string;
272
273 /* A keyword */
274 const char *keyword;
275 } data;
276 };
277 typedef struct ls_token linespec_token;
278
279 #define LS_TOKEN_STOKEN(TOK) (TOK).data.string
280 #define LS_TOKEN_KEYWORD(TOK) (TOK).data.keyword
281
282 /* An instance of the linespec parser. */
283
284 struct linespec_parser
285 {
286 linespec_parser (int flags, const struct language_defn *language,
287 struct program_space *search_pspace,
288 struct symtab *default_symtab,
289 int default_line,
290 struct linespec_result *canonical);
291
292 ~linespec_parser ();
293
294 DISABLE_COPY_AND_ASSIGN (linespec_parser);
295
296 /* Lexer internal data */
297 struct
298 {
299 /* Save head of input stream. */
300 const char *saved_arg;
301
302 /* Head of the input stream. */
303 const char *stream;
304 #define PARSER_STREAM(P) ((P)->lexer.stream)
305
306 /* The current token. */
307 linespec_token current;
308 } lexer {};
309
310 /* Is the entire linespec quote-enclosed? */
311 int is_quote_enclosed = 0;
312
313 /* The state of the parse. */
314 struct linespec_state state {};
315 #define PARSER_STATE(PPTR) (&(PPTR)->state)
316
317 /* The result of the parse. */
318 struct linespec result {};
319 #define PARSER_RESULT(PPTR) (&(PPTR)->result)
320
321 /* What the parser believes the current word point should complete
322 to. */
323 linespec_complete_what complete_what = linespec_complete_what::NOTHING;
324
325 /* The completion word point. The parser advances this as it skips
326 tokens. At some point the input string will end or parsing will
327 fail, and then we attempt completion at the captured completion
328 word point, interpreting the string at completion_word as
329 COMPLETE_WHAT. */
330 const char *completion_word = nullptr;
331
332 /* If the current token was a quoted string, then this is the
333 quoting character (either " or '). */
334 int completion_quote_char = 0;
335
336 /* If the current token was a quoted string, then this points at the
337 end of the quoted string. */
338 const char *completion_quote_end = nullptr;
339
340 /* If parsing for completion, then this points at the completion
341 tracker. Otherwise, this is NULL. */
342 struct completion_tracker *completion_tracker = nullptr;
343 };
344
345 /* A convenience macro for accessing the explicit location result of
346 the parser. */
347 #define PARSER_EXPLICIT(PPTR) (&PARSER_RESULT ((PPTR))->explicit_loc)
348
349 /* Prototypes for local functions. */
350
351 static void iterate_over_file_blocks
352 (struct symtab *symtab, const lookup_name_info &name,
353 domain_enum domain,
354 gdb::function_view<symbol_found_callback_ftype> callback);
355
356 static void initialize_defaults (struct symtab **default_symtab,
357 int *default_line);
358
359 CORE_ADDR linespec_expression_to_pc (const char **exp_ptr);
360
361 static std::vector<symtab_and_line> decode_objc (struct linespec_state *self,
362 linespec_p ls,
363 const char *arg);
364
365 static std::vector<symtab *> symtabs_from_filename
366 (const char *, struct program_space *pspace);
367
368 static std::vector<block_symbol> *find_label_symbols
369 (struct linespec_state *self, std::vector<block_symbol> *function_symbols,
370 std::vector<block_symbol> *label_funcs_ret, const char *name,
371 bool completion_mode = false);
372
373 static void find_linespec_symbols (struct linespec_state *self,
374 std::vector<symtab *> *file_symtabs,
375 const char *name,
376 symbol_name_match_type name_match_type,
377 std::vector<block_symbol> *symbols,
378 std::vector<bound_minimal_symbol> *minsyms);
379
380 static struct line_offset
381 linespec_parse_variable (struct linespec_state *self,
382 const char *variable);
383
384 static int symbol_to_sal (struct symtab_and_line *result,
385 int funfirstline, struct symbol *sym);
386
387 static void add_matching_symbols_to_info (const char *name,
388 symbol_name_match_type name_match_type,
389 enum search_domain search_domain,
390 struct collect_info *info,
391 struct program_space *pspace);
392
393 static void add_all_symbol_names_from_pspace
394 (struct collect_info *info, struct program_space *pspace,
395 const std::vector<const char *> &names, enum search_domain search_domain);
396
397 static std::vector<symtab *>
398 collect_symtabs_from_filename (const char *file,
399 struct program_space *pspace);
400
401 static std::vector<symtab_and_line> decode_digits_ordinary
402 (struct linespec_state *self,
403 linespec_p ls,
404 int line,
405 linetable_entry **best_entry);
406
407 static std::vector<symtab_and_line> decode_digits_list_mode
408 (struct linespec_state *self,
409 linespec_p ls,
410 struct symtab_and_line val);
411
412 static void minsym_found (struct linespec_state *self, struct objfile *objfile,
413 struct minimal_symbol *msymbol,
414 std::vector<symtab_and_line> *result);
415
416 static bool compare_symbols (const block_symbol &a, const block_symbol &b);
417
418 static bool compare_msymbols (const bound_minimal_symbol &a,
419 const bound_minimal_symbol &b);
420
421 /* Permitted quote characters for the parser. This is different from the
422 completer's quote characters to allow backward compatibility with the
423 previous parser. */
424 static const char *const linespec_quote_characters = "\"\'";
425
426 /* Lexer functions. */
427
428 /* Lex a number from the input in PARSER. This only supports
429 decimal numbers.
430
431 Return true if input is decimal numbers. Return false if not. */
432
433 static int
434 linespec_lexer_lex_number (linespec_parser *parser, linespec_token *tokenp)
435 {
436 tokenp->type = LSTOKEN_NUMBER;
437 LS_TOKEN_STOKEN (*tokenp).length = 0;
438 LS_TOKEN_STOKEN (*tokenp).ptr = PARSER_STREAM (parser);
439
440 /* Keep any sign at the start of the stream. */
441 if (*PARSER_STREAM (parser) == '+' || *PARSER_STREAM (parser) == '-')
442 {
443 ++LS_TOKEN_STOKEN (*tokenp).length;
444 ++(PARSER_STREAM (parser));
445 }
446
447 while (isdigit (*PARSER_STREAM (parser)))
448 {
449 ++LS_TOKEN_STOKEN (*tokenp).length;
450 ++(PARSER_STREAM (parser));
451 }
452
453 /* If the next character in the input buffer is not a space, comma,
454 quote, or colon, this input does not represent a number. */
455 if (*PARSER_STREAM (parser) != '\0'
456 && !isspace (*PARSER_STREAM (parser)) && *PARSER_STREAM (parser) != ','
457 && *PARSER_STREAM (parser) != ':'
458 && !strchr (linespec_quote_characters, *PARSER_STREAM (parser)))
459 {
460 PARSER_STREAM (parser) = LS_TOKEN_STOKEN (*tokenp).ptr;
461 return 0;
462 }
463
464 return 1;
465 }
466
467 /* See linespec.h. */
468
469 const char *
470 linespec_lexer_lex_keyword (const char *p)
471 {
472 int i;
473
474 if (p != NULL)
475 {
476 for (i = 0; linespec_keywords[i] != NULL; ++i)
477 {
478 int len = strlen (linespec_keywords[i]);
479
480 /* If P begins with one of the keywords and the next
481 character is whitespace, we may have found a keyword.
482 It is only a keyword if it is not followed by another
483 keyword. */
484 if (strncmp (p, linespec_keywords[i], len) == 0
485 && isspace (p[len]))
486 {
487 int j;
488
489 /* Special case: "if" ALWAYS stops the lexer, since it
490 is not possible to predict what is going to appear in
491 the condition, which can only be parsed after SaLs have
492 been found. */
493 if (i != IF_KEYWORD_INDEX)
494 {
495 p += len;
496 p = skip_spaces (p);
497 for (j = 0; linespec_keywords[j] != NULL; ++j)
498 {
499 int nextlen = strlen (linespec_keywords[j]);
500
501 if (strncmp (p, linespec_keywords[j], nextlen) == 0
502 && isspace (p[nextlen]))
503 return NULL;
504 }
505 }
506
507 return linespec_keywords[i];
508 }
509 }
510 }
511
512 return NULL;
513 }
514
515 /* See description in linespec.h. */
516
517 int
518 is_ada_operator (const char *string)
519 {
520 const struct ada_opname_map *mapping;
521
522 for (mapping = ada_opname_table;
523 mapping->encoded != NULL
524 && !startswith (string, mapping->decoded); ++mapping)
525 ;
526
527 return mapping->decoded == NULL ? 0 : strlen (mapping->decoded);
528 }
529
530 /* Find QUOTE_CHAR in STRING, accounting for the ':' terminal. Return
531 the location of QUOTE_CHAR, or NULL if not found. */
532
533 static const char *
534 skip_quote_char (const char *string, char quote_char)
535 {
536 const char *p, *last;
537
538 p = last = find_toplevel_char (string, quote_char);
539 while (p && *p != '\0' && *p != ':')
540 {
541 p = find_toplevel_char (p, quote_char);
542 if (p != NULL)
543 last = p++;
544 }
545
546 return last;
547 }
548
549 /* Make a writable copy of the string given in TOKEN, trimming
550 any trailing whitespace. */
551
552 static gdb::unique_xmalloc_ptr<char>
553 copy_token_string (linespec_token token)
554 {
555 const char *str, *s;
556
557 if (token.type == LSTOKEN_KEYWORD)
558 return make_unique_xstrdup (LS_TOKEN_KEYWORD (token));
559
560 str = LS_TOKEN_STOKEN (token).ptr;
561 s = remove_trailing_whitespace (str, str + LS_TOKEN_STOKEN (token).length);
562
563 return gdb::unique_xmalloc_ptr<char> (savestring (str, s - str));
564 }
565
566 /* Does P represent the end of a quote-enclosed linespec? */
567
568 static int
569 is_closing_quote_enclosed (const char *p)
570 {
571 if (strchr (linespec_quote_characters, *p))
572 ++p;
573 p = skip_spaces ((char *) p);
574 return (*p == '\0' || linespec_lexer_lex_keyword (p));
575 }
576
577 /* Find the end of the parameter list that starts with *INPUT.
578 This helper function assists with lexing string segments
579 which might contain valid (non-terminating) commas. */
580
581 static const char *
582 find_parameter_list_end (const char *input)
583 {
584 char end_char, start_char;
585 int depth;
586 const char *p;
587
588 start_char = *input;
589 if (start_char == '(')
590 end_char = ')';
591 else if (start_char == '<')
592 end_char = '>';
593 else
594 return NULL;
595
596 p = input;
597 depth = 0;
598 while (*p)
599 {
600 if (*p == start_char)
601 ++depth;
602 else if (*p == end_char)
603 {
604 if (--depth == 0)
605 {
606 ++p;
607 break;
608 }
609 }
610 ++p;
611 }
612
613 return p;
614 }
615
616 /* If the [STRING, STRING_LEN) string ends with what looks like a
617 keyword, return the keyword start offset in STRING. Return -1
618 otherwise. */
619
620 static size_t
621 string_find_incomplete_keyword_at_end (const char * const *keywords,
622 const char *string, size_t string_len)
623 {
624 const char *end = string + string_len;
625 const char *p = end;
626
627 while (p > string && *p != ' ')
628 --p;
629 if (p > string)
630 {
631 p++;
632 size_t len = end - p;
633 for (size_t i = 0; keywords[i] != NULL; ++i)
634 if (strncmp (keywords[i], p, len) == 0)
635 return p - string;
636 }
637
638 return -1;
639 }
640
641 /* Lex a string from the input in PARSER. */
642
643 static linespec_token
644 linespec_lexer_lex_string (linespec_parser *parser)
645 {
646 linespec_token token;
647 const char *start = PARSER_STREAM (parser);
648
649 token.type = LSTOKEN_STRING;
650
651 /* If the input stream starts with a quote character, skip to the next
652 quote character, regardless of the content. */
653 if (strchr (linespec_quote_characters, *PARSER_STREAM (parser)))
654 {
655 const char *end;
656 char quote_char = *PARSER_STREAM (parser);
657
658 /* Special case: Ada operators. */
659 if (PARSER_STATE (parser)->language->la_language == language_ada
660 && quote_char == '\"')
661 {
662 int len = is_ada_operator (PARSER_STREAM (parser));
663
664 if (len != 0)
665 {
666 /* The input is an Ada operator. Return the quoted string
667 as-is. */
668 LS_TOKEN_STOKEN (token).ptr = PARSER_STREAM (parser);
669 LS_TOKEN_STOKEN (token).length = len;
670 PARSER_STREAM (parser) += len;
671 return token;
672 }
673
674 /* The input does not represent an Ada operator -- fall through
675 to normal quoted string handling. */
676 }
677
678 /* Skip past the beginning quote. */
679 ++(PARSER_STREAM (parser));
680
681 /* Mark the start of the string. */
682 LS_TOKEN_STOKEN (token).ptr = PARSER_STREAM (parser);
683
684 /* Skip to the ending quote. */
685 end = skip_quote_char (PARSER_STREAM (parser), quote_char);
686
687 /* This helps the completer mode decide whether we have a
688 complete string. */
689 parser->completion_quote_char = quote_char;
690 parser->completion_quote_end = end;
691
692 /* Error if the input did not terminate properly, unless in
693 completion mode. */
694 if (end == NULL)
695 {
696 if (parser->completion_tracker == NULL)
697 error (_("unmatched quote"));
698
699 /* In completion mode, we'll try to complete the incomplete
700 token. */
701 token.type = LSTOKEN_STRING;
702 while (*PARSER_STREAM (parser) != '\0')
703 PARSER_STREAM (parser)++;
704 LS_TOKEN_STOKEN (token).length = PARSER_STREAM (parser) - 1 - start;
705 }
706 else
707 {
708 /* Skip over the ending quote and mark the length of the string. */
709 PARSER_STREAM (parser) = (char *) ++end;
710 LS_TOKEN_STOKEN (token).length = PARSER_STREAM (parser) - 2 - start;
711 }
712 }
713 else
714 {
715 const char *p;
716
717 /* Otherwise, only identifier characters are permitted.
718 Spaces are the exception. In general, we keep spaces,
719 but only if the next characters in the input do not resolve
720 to one of the keywords.
721
722 This allows users to forgo quoting CV-qualifiers, template arguments,
723 and similar common language constructs. */
724
725 while (1)
726 {
727 if (isspace (*PARSER_STREAM (parser)))
728 {
729 p = skip_spaces (PARSER_STREAM (parser));
730 /* When we get here we know we've found something followed by
731 a space (we skip over parens and templates below).
732 So if we find a keyword now, we know it is a keyword and not,
733 say, a function name. */
734 if (linespec_lexer_lex_keyword (p) != NULL)
735 {
736 LS_TOKEN_STOKEN (token).ptr = start;
737 LS_TOKEN_STOKEN (token).length
738 = PARSER_STREAM (parser) - start;
739 return token;
740 }
741
742 /* Advance past the whitespace. */
743 PARSER_STREAM (parser) = p;
744 }
745
746 /* If the next character is EOI or (single) ':', the
747 string is complete; return the token. */
748 if (*PARSER_STREAM (parser) == 0)
749 {
750 LS_TOKEN_STOKEN (token).ptr = start;
751 LS_TOKEN_STOKEN (token).length = PARSER_STREAM (parser) - start;
752 return token;
753 }
754 else if (PARSER_STREAM (parser)[0] == ':')
755 {
756 /* Do not tokenize the C++ scope operator. */
757 if (PARSER_STREAM (parser)[1] == ':')
758 ++(PARSER_STREAM (parser));
759
760 /* Do not tokenize ABI tags such as "[abi:cxx11]". */
761 else if (PARSER_STREAM (parser) - start > 4
762 && startswith (PARSER_STREAM (parser) - 4, "[abi"))
763 {
764 /* Nothing. */
765 }
766
767 /* Do not tokenify if the input length so far is one
768 (i.e, a single-letter drive name) and the next character
769 is a directory separator. This allows Windows-style
770 paths to be recognized as filenames without quoting it. */
771 else if ((PARSER_STREAM (parser) - start) != 1
772 || !IS_DIR_SEPARATOR (PARSER_STREAM (parser)[1]))
773 {
774 LS_TOKEN_STOKEN (token).ptr = start;
775 LS_TOKEN_STOKEN (token).length
776 = PARSER_STREAM (parser) - start;
777 return token;
778 }
779 }
780 /* Special case: permit quote-enclosed linespecs. */
781 else if (parser->is_quote_enclosed
782 && strchr (linespec_quote_characters,
783 *PARSER_STREAM (parser))
784 && is_closing_quote_enclosed (PARSER_STREAM (parser)))
785 {
786 LS_TOKEN_STOKEN (token).ptr = start;
787 LS_TOKEN_STOKEN (token).length = PARSER_STREAM (parser) - start;
788 return token;
789 }
790 /* Because commas may terminate a linespec and appear in
791 the middle of valid string input, special cases for
792 '<' and '(' are necessary. */
793 else if (*PARSER_STREAM (parser) == '<'
794 || *PARSER_STREAM (parser) == '(')
795 {
796 /* Don't interpret 'operator<' / 'operator<<' as a
797 template parameter list though. */
798 if (*PARSER_STREAM (parser) == '<'
799 && (PARSER_STATE (parser)->language->la_language
800 == language_cplus)
801 && (PARSER_STREAM (parser) - start) >= CP_OPERATOR_LEN)
802 {
803 const char *op = PARSER_STREAM (parser);
804
805 while (op > start && isspace (op[-1]))
806 op--;
807 if (op - start >= CP_OPERATOR_LEN)
808 {
809 op -= CP_OPERATOR_LEN;
810 if (strncmp (op, CP_OPERATOR_STR, CP_OPERATOR_LEN) == 0
811 && (op == start
812 || !(isalnum (op[-1]) || op[-1] == '_')))
813 {
814 /* This is an operator name. Keep going. */
815 ++(PARSER_STREAM (parser));
816 if (*PARSER_STREAM (parser) == '<')
817 ++(PARSER_STREAM (parser));
818 continue;
819 }
820 }
821 }
822
823 const char *end = find_parameter_list_end (PARSER_STREAM (parser));
824 PARSER_STREAM (parser) = end;
825
826 /* Don't loop around to the normal \0 case above because
827 we don't want to misinterpret a potential keyword at
828 the end of the token when the string isn't
829 "()<>"-balanced. This handles "b
830 function(thread<tab>" in completion mode. */
831 if (*end == '\0')
832 {
833 LS_TOKEN_STOKEN (token).ptr = start;
834 LS_TOKEN_STOKEN (token).length
835 = PARSER_STREAM (parser) - start;
836 return token;
837 }
838 else
839 continue;
840 }
841 /* Commas are terminators, but not if they are part of an
842 operator name. */
843 else if (*PARSER_STREAM (parser) == ',')
844 {
845 if ((PARSER_STATE (parser)->language->la_language
846 == language_cplus)
847 && (PARSER_STREAM (parser) - start) > CP_OPERATOR_LEN)
848 {
849 const char *op = strstr (start, CP_OPERATOR_STR);
850
851 if (op != NULL && is_operator_name (op))
852 {
853 /* This is an operator name. Keep going. */
854 ++(PARSER_STREAM (parser));
855 continue;
856 }
857 }
858
859 /* Comma terminates the string. */
860 LS_TOKEN_STOKEN (token).ptr = start;
861 LS_TOKEN_STOKEN (token).length = PARSER_STREAM (parser) - start;
862 return token;
863 }
864
865 /* Advance the stream. */
866 gdb_assert (*(PARSER_STREAM (parser)) != '\0');
867 ++(PARSER_STREAM (parser));
868 }
869 }
870
871 return token;
872 }
873
874 /* Lex a single linespec token from PARSER. */
875
876 static linespec_token
877 linespec_lexer_lex_one (linespec_parser *parser)
878 {
879 const char *keyword;
880
881 if (parser->lexer.current.type == LSTOKEN_CONSUMED)
882 {
883 /* Skip any whitespace. */
884 PARSER_STREAM (parser) = skip_spaces (PARSER_STREAM (parser));
885
886 /* Check for a keyword, they end the linespec. */
887 keyword = linespec_lexer_lex_keyword (PARSER_STREAM (parser));
888 if (keyword != NULL)
889 {
890 parser->lexer.current.type = LSTOKEN_KEYWORD;
891 LS_TOKEN_KEYWORD (parser->lexer.current) = keyword;
892 /* We do not advance the stream here intentionally:
893 we would like lexing to stop when a keyword is seen.
894
895 PARSER_STREAM (parser) += strlen (keyword); */
896
897 return parser->lexer.current;
898 }
899
900 /* Handle other tokens. */
901 switch (*PARSER_STREAM (parser))
902 {
903 case 0:
904 parser->lexer.current.type = LSTOKEN_EOI;
905 break;
906
907 case '+': case '-':
908 case '0': case '1': case '2': case '3': case '4':
909 case '5': case '6': case '7': case '8': case '9':
910 if (!linespec_lexer_lex_number (parser, &(parser->lexer.current)))
911 parser->lexer.current = linespec_lexer_lex_string (parser);
912 break;
913
914 case ':':
915 /* If we have a scope operator, lex the input as a string.
916 Otherwise, return LSTOKEN_COLON. */
917 if (PARSER_STREAM (parser)[1] == ':')
918 parser->lexer.current = linespec_lexer_lex_string (parser);
919 else
920 {
921 parser->lexer.current.type = LSTOKEN_COLON;
922 ++(PARSER_STREAM (parser));
923 }
924 break;
925
926 case '\'': case '\"':
927 /* Special case: permit quote-enclosed linespecs. */
928 if (parser->is_quote_enclosed
929 && is_closing_quote_enclosed (PARSER_STREAM (parser)))
930 {
931 ++(PARSER_STREAM (parser));
932 parser->lexer.current.type = LSTOKEN_EOI;
933 }
934 else
935 parser->lexer.current = linespec_lexer_lex_string (parser);
936 break;
937
938 case ',':
939 parser->lexer.current.type = LSTOKEN_COMMA;
940 LS_TOKEN_STOKEN (parser->lexer.current).ptr
941 = PARSER_STREAM (parser);
942 LS_TOKEN_STOKEN (parser->lexer.current).length = 1;
943 ++(PARSER_STREAM (parser));
944 break;
945
946 default:
947 /* If the input is not a number, it must be a string.
948 [Keywords were already considered above.] */
949 parser->lexer.current = linespec_lexer_lex_string (parser);
950 break;
951 }
952 }
953
954 return parser->lexer.current;
955 }
956
957 /* Consume the current token and return the next token in PARSER's
958 input stream. Also advance the completion word for completion
959 mode. */
960
961 static linespec_token
962 linespec_lexer_consume_token (linespec_parser *parser)
963 {
964 gdb_assert (parser->lexer.current.type != LSTOKEN_EOI);
965
966 bool advance_word = (parser->lexer.current.type != LSTOKEN_STRING
967 || *PARSER_STREAM (parser) != '\0');
968
969 /* If we're moving past a string to some other token, it must be the
970 quote was terminated. */
971 if (parser->completion_quote_char)
972 {
973 gdb_assert (parser->lexer.current.type == LSTOKEN_STRING);
974
975 /* If the string was the last (non-EOI) token, we're past the
976 quote, but remember that for later. */
977 if (*PARSER_STREAM (parser) != '\0')
978 {
979 parser->completion_quote_char = '\0';
980 parser->completion_quote_end = NULL;;
981 }
982 }
983
984 parser->lexer.current.type = LSTOKEN_CONSUMED;
985 linespec_lexer_lex_one (parser);
986
987 if (parser->lexer.current.type == LSTOKEN_STRING)
988 {
989 /* Advance the completion word past a potential initial
990 quote-char. */
991 parser->completion_word = LS_TOKEN_STOKEN (parser->lexer.current).ptr;
992 }
993 else if (advance_word)
994 {
995 /* Advance the completion word past any whitespace. */
996 parser->completion_word = PARSER_STREAM (parser);
997 }
998
999 return parser->lexer.current;
1000 }
1001
1002 /* Return the next token without consuming the current token. */
1003
1004 static linespec_token
1005 linespec_lexer_peek_token (linespec_parser *parser)
1006 {
1007 linespec_token next;
1008 const char *saved_stream = PARSER_STREAM (parser);
1009 linespec_token saved_token = parser->lexer.current;
1010 int saved_completion_quote_char = parser->completion_quote_char;
1011 const char *saved_completion_quote_end = parser->completion_quote_end;
1012 const char *saved_completion_word = parser->completion_word;
1013
1014 next = linespec_lexer_consume_token (parser);
1015 PARSER_STREAM (parser) = saved_stream;
1016 parser->lexer.current = saved_token;
1017 parser->completion_quote_char = saved_completion_quote_char;
1018 parser->completion_quote_end = saved_completion_quote_end;
1019 parser->completion_word = saved_completion_word;
1020 return next;
1021 }
1022
1023 /* Helper functions. */
1024
1025 /* Add SAL to SALS, and also update SELF->CANONICAL_NAMES to reflect
1026 the new sal, if needed. If not NULL, SYMNAME is the name of the
1027 symbol to use when constructing the new canonical name.
1028
1029 If LITERAL_CANONICAL is non-zero, SYMNAME will be used as the
1030 canonical name for the SAL. */
1031
1032 static void
1033 add_sal_to_sals (struct linespec_state *self,
1034 std::vector<symtab_and_line> *sals,
1035 struct symtab_and_line *sal,
1036 const char *symname, int literal_canonical)
1037 {
1038 sals->push_back (*sal);
1039
1040 if (self->canonical)
1041 {
1042 struct linespec_canonical_name *canonical;
1043
1044 self->canonical_names = XRESIZEVEC (struct linespec_canonical_name,
1045 self->canonical_names,
1046 sals->size ());
1047 canonical = &self->canonical_names[sals->size () - 1];
1048 if (!literal_canonical && sal->symtab)
1049 {
1050 symtab_to_fullname (sal->symtab);
1051
1052 /* Note that the filter doesn't have to be a valid linespec
1053 input. We only apply the ":LINE" treatment to Ada for
1054 the time being. */
1055 if (symname != NULL && sal->line != 0
1056 && self->language->la_language == language_ada)
1057 canonical->suffix = xstrprintf ("%s:%d", symname, sal->line);
1058 else if (symname != NULL)
1059 canonical->suffix = xstrdup (symname);
1060 else
1061 canonical->suffix = xstrprintf ("%d", sal->line);
1062 canonical->symtab = sal->symtab;
1063 }
1064 else
1065 {
1066 if (symname != NULL)
1067 canonical->suffix = xstrdup (symname);
1068 else
1069 canonical->suffix = xstrdup ("<unknown>");
1070 canonical->symtab = NULL;
1071 }
1072 }
1073 }
1074
1075 /* A hash function for address_entry. */
1076
1077 static hashval_t
1078 hash_address_entry (const void *p)
1079 {
1080 const struct address_entry *aep = (const struct address_entry *) p;
1081 hashval_t hash;
1082
1083 hash = iterative_hash_object (aep->pspace, 0);
1084 return iterative_hash_object (aep->addr, hash);
1085 }
1086
1087 /* An equality function for address_entry. */
1088
1089 static int
1090 eq_address_entry (const void *a, const void *b)
1091 {
1092 const struct address_entry *aea = (const struct address_entry *) a;
1093 const struct address_entry *aeb = (const struct address_entry *) b;
1094
1095 return aea->pspace == aeb->pspace && aea->addr == aeb->addr;
1096 }
1097
1098 /* Check whether the address, represented by PSPACE and ADDR, is
1099 already in the set. If so, return 0. Otherwise, add it and return
1100 1. */
1101
1102 static int
1103 maybe_add_address (htab_t set, struct program_space *pspace, CORE_ADDR addr)
1104 {
1105 struct address_entry e, *p;
1106 void **slot;
1107
1108 e.pspace = pspace;
1109 e.addr = addr;
1110 slot = htab_find_slot (set, &e, INSERT);
1111 if (*slot)
1112 return 0;
1113
1114 p = XNEW (struct address_entry);
1115 memcpy (p, &e, sizeof (struct address_entry));
1116 *slot = p;
1117
1118 return 1;
1119 }
1120
1121 /* A helper that walks over all matching symtabs in all objfiles and
1122 calls CALLBACK for each symbol matching NAME. If SEARCH_PSPACE is
1123 not NULL, then the search is restricted to just that program
1124 space. If INCLUDE_INLINE is true then symbols representing
1125 inlined instances of functions will be included in the result. */
1126
1127 static void
1128 iterate_over_all_matching_symtabs
1129 (struct linespec_state *state,
1130 const lookup_name_info &lookup_name,
1131 const domain_enum name_domain,
1132 enum search_domain search_domain,
1133 struct program_space *search_pspace, bool include_inline,
1134 gdb::function_view<symbol_found_callback_ftype> callback)
1135 {
1136 for (struct program_space *pspace : program_spaces)
1137 {
1138 if (search_pspace != NULL && search_pspace != pspace)
1139 continue;
1140 if (pspace->executing_startup)
1141 continue;
1142
1143 set_current_program_space (pspace);
1144
1145 for (objfile *objfile : current_program_space->objfiles ())
1146 {
1147 if (objfile->sf)
1148 objfile->sf->qf->expand_symtabs_matching (objfile,
1149 NULL,
1150 &lookup_name,
1151 NULL, NULL,
1152 search_domain);
1153
1154 for (compunit_symtab *cu : objfile->compunits ())
1155 {
1156 struct symtab *symtab = COMPUNIT_FILETABS (cu);
1157
1158 iterate_over_file_blocks (symtab, lookup_name, name_domain,
1159 callback);
1160
1161 if (include_inline)
1162 {
1163 const struct block *block;
1164 int i;
1165
1166 for (i = FIRST_LOCAL_BLOCK;
1167 i < BLOCKVECTOR_NBLOCKS (SYMTAB_BLOCKVECTOR (symtab));
1168 i++)
1169 {
1170 block = BLOCKVECTOR_BLOCK (SYMTAB_BLOCKVECTOR (symtab), i);
1171 state->language->iterate_over_symbols
1172 (block, lookup_name, name_domain,
1173 [&] (block_symbol *bsym)
1174 {
1175 /* Restrict calls to CALLBACK to symbols
1176 representing inline symbols only. */
1177 if (SYMBOL_INLINED (bsym->symbol))
1178 return callback (bsym);
1179 return true;
1180 });
1181 }
1182 }
1183 }
1184 }
1185 }
1186 }
1187
1188 /* Returns the block to be used for symbol searches from
1189 the current location. */
1190
1191 static const struct block *
1192 get_current_search_block (void)
1193 {
1194 /* get_selected_block can change the current language when there is
1195 no selected frame yet. */
1196 scoped_restore_current_language save_language;
1197 return get_selected_block (0);
1198 }
1199
1200 /* Iterate over static and global blocks. */
1201
1202 static void
1203 iterate_over_file_blocks
1204 (struct symtab *symtab, const lookup_name_info &name,
1205 domain_enum domain, gdb::function_view<symbol_found_callback_ftype> callback)
1206 {
1207 const struct block *block;
1208
1209 for (block = BLOCKVECTOR_BLOCK (SYMTAB_BLOCKVECTOR (symtab), STATIC_BLOCK);
1210 block != NULL;
1211 block = BLOCK_SUPERBLOCK (block))
1212 LA_ITERATE_OVER_SYMBOLS (block, name, domain, callback);
1213 }
1214
1215 /* A helper for find_method. This finds all methods in type T of
1216 language T_LANG which match NAME. It adds matching symbol names to
1217 RESULT_NAMES, and adds T's direct superclasses to SUPERCLASSES. */
1218
1219 static void
1220 find_methods (struct type *t, enum language t_lang, const char *name,
1221 std::vector<const char *> *result_names,
1222 std::vector<struct type *> *superclasses)
1223 {
1224 int ibase;
1225 const char *class_name = t->name ();
1226
1227 /* Ignore this class if it doesn't have a name. This is ugly, but
1228 unless we figure out how to get the physname without the name of
1229 the class, then the loop can't do any good. */
1230 if (class_name)
1231 {
1232 int method_counter;
1233 lookup_name_info lookup_name (name, symbol_name_match_type::FULL);
1234 symbol_name_matcher_ftype *symbol_name_compare
1235 = get_symbol_name_matcher (language_def (t_lang), lookup_name);
1236
1237 t = check_typedef (t);
1238
1239 /* Loop over each method name. At this level, all overloads of a name
1240 are counted as a single name. There is an inner loop which loops over
1241 each overload. */
1242
1243 for (method_counter = TYPE_NFN_FIELDS (t) - 1;
1244 method_counter >= 0;
1245 --method_counter)
1246 {
1247 const char *method_name = TYPE_FN_FIELDLIST_NAME (t, method_counter);
1248
1249 if (symbol_name_compare (method_name, lookup_name, NULL))
1250 {
1251 int field_counter;
1252
1253 for (field_counter = (TYPE_FN_FIELDLIST_LENGTH (t, method_counter)
1254 - 1);
1255 field_counter >= 0;
1256 --field_counter)
1257 {
1258 struct fn_field *f;
1259 const char *phys_name;
1260
1261 f = TYPE_FN_FIELDLIST1 (t, method_counter);
1262 if (TYPE_FN_FIELD_STUB (f, field_counter))
1263 continue;
1264 phys_name = TYPE_FN_FIELD_PHYSNAME (f, field_counter);
1265 result_names->push_back (phys_name);
1266 }
1267 }
1268 }
1269 }
1270
1271 for (ibase = 0; ibase < TYPE_N_BASECLASSES (t); ibase++)
1272 superclasses->push_back (TYPE_BASECLASS (t, ibase));
1273 }
1274
1275 /* Find an instance of the character C in the string S that is outside
1276 of all parenthesis pairs, single-quoted strings, and double-quoted
1277 strings. Also, ignore the char within a template name, like a ','
1278 within foo<int, int>, while considering C++ operator</operator<<. */
1279
1280 const char *
1281 find_toplevel_char (const char *s, char c)
1282 {
1283 int quoted = 0; /* zero if we're not in quotes;
1284 '"' if we're in a double-quoted string;
1285 '\'' if we're in a single-quoted string. */
1286 int depth = 0; /* Number of unclosed parens we've seen. */
1287 const char *scan;
1288
1289 for (scan = s; *scan; scan++)
1290 {
1291 if (quoted)
1292 {
1293 if (*scan == quoted)
1294 quoted = 0;
1295 else if (*scan == '\\' && *(scan + 1))
1296 scan++;
1297 }
1298 else if (*scan == c && ! quoted && depth == 0)
1299 return scan;
1300 else if (*scan == '"' || *scan == '\'')
1301 quoted = *scan;
1302 else if (*scan == '(' || *scan == '<')
1303 depth++;
1304 else if ((*scan == ')' || *scan == '>') && depth > 0)
1305 depth--;
1306 else if (*scan == 'o' && !quoted && depth == 0)
1307 {
1308 /* Handle C++ operator names. */
1309 if (strncmp (scan, CP_OPERATOR_STR, CP_OPERATOR_LEN) == 0)
1310 {
1311 scan += CP_OPERATOR_LEN;
1312 if (*scan == c)
1313 return scan;
1314 while (isspace (*scan))
1315 {
1316 ++scan;
1317 if (*scan == c)
1318 return scan;
1319 }
1320 if (*scan == '\0')
1321 break;
1322
1323 switch (*scan)
1324 {
1325 /* Skip over one less than the appropriate number of
1326 characters: the for loop will skip over the last
1327 one. */
1328 case '<':
1329 if (scan[1] == '<')
1330 {
1331 scan++;
1332 if (*scan == c)
1333 return scan;
1334 }
1335 break;
1336 case '>':
1337 if (scan[1] == '>')
1338 {
1339 scan++;
1340 if (*scan == c)
1341 return scan;
1342 }
1343 break;
1344 }
1345 }
1346 }
1347 }
1348
1349 return 0;
1350 }
1351
1352 /* The string equivalent of find_toplevel_char. Returns a pointer
1353 to the location of NEEDLE in HAYSTACK, ignoring any occurrences
1354 inside "()" and "<>". Returns NULL if NEEDLE was not found. */
1355
1356 static const char *
1357 find_toplevel_string (const char *haystack, const char *needle)
1358 {
1359 const char *s = haystack;
1360
1361 do
1362 {
1363 s = find_toplevel_char (s, *needle);
1364
1365 if (s != NULL)
1366 {
1367 /* Found first char in HAYSTACK; check rest of string. */
1368 if (startswith (s, needle))
1369 return s;
1370
1371 /* Didn't find it; loop over HAYSTACK, looking for the next
1372 instance of the first character of NEEDLE. */
1373 ++s;
1374 }
1375 }
1376 while (s != NULL && *s != '\0');
1377
1378 /* NEEDLE was not found in HAYSTACK. */
1379 return NULL;
1380 }
1381
1382 /* Convert CANONICAL to its string representation using
1383 symtab_to_fullname for SYMTAB. */
1384
1385 static std::string
1386 canonical_to_fullform (const struct linespec_canonical_name *canonical)
1387 {
1388 if (canonical->symtab == NULL)
1389 return canonical->suffix;
1390 else
1391 return string_printf ("%s:%s", symtab_to_fullname (canonical->symtab),
1392 canonical->suffix);
1393 }
1394
1395 /* Given FILTERS, a list of canonical names, filter the sals in RESULT
1396 and store the result in SELF->CANONICAL. */
1397
1398 static void
1399 filter_results (struct linespec_state *self,
1400 std::vector<symtab_and_line> *result,
1401 const std::vector<const char *> &filters)
1402 {
1403 for (const char *name : filters)
1404 {
1405 linespec_sals lsal;
1406
1407 for (size_t j = 0; j < result->size (); ++j)
1408 {
1409 const struct linespec_canonical_name *canonical;
1410
1411 canonical = &self->canonical_names[j];
1412 std::string fullform = canonical_to_fullform (canonical);
1413
1414 if (name == fullform)
1415 lsal.sals.push_back ((*result)[j]);
1416 }
1417
1418 if (!lsal.sals.empty ())
1419 {
1420 lsal.canonical = xstrdup (name);
1421 self->canonical->lsals.push_back (std::move (lsal));
1422 }
1423 }
1424
1425 self->canonical->pre_expanded = 0;
1426 }
1427
1428 /* Store RESULT into SELF->CANONICAL. */
1429
1430 static void
1431 convert_results_to_lsals (struct linespec_state *self,
1432 std::vector<symtab_and_line> *result)
1433 {
1434 struct linespec_sals lsal;
1435
1436 lsal.canonical = NULL;
1437 lsal.sals = std::move (*result);
1438 self->canonical->lsals.push_back (std::move (lsal));
1439 }
1440
1441 /* A structure that contains two string representations of a struct
1442 linespec_canonical_name:
1443 - one where the symtab's fullname is used;
1444 - one where the filename followed the "set filename-display"
1445 setting. */
1446
1447 struct decode_line_2_item
1448 {
1449 decode_line_2_item (std::string &&fullform_, std::string &&displayform_,
1450 bool selected_)
1451 : fullform (std::move (fullform_)),
1452 displayform (std::move (displayform_)),
1453 selected (selected_)
1454 {
1455 }
1456
1457 /* The form using symtab_to_fullname. */
1458 std::string fullform;
1459
1460 /* The form using symtab_to_filename_for_display. */
1461 std::string displayform;
1462
1463 /* Field is initialized to zero and it is set to one if the user
1464 requested breakpoint for this entry. */
1465 unsigned int selected : 1;
1466 };
1467
1468 /* Helper for std::sort to sort decode_line_2_item entries by
1469 DISPLAYFORM and secondarily by FULLFORM. */
1470
1471 static bool
1472 decode_line_2_compare_items (const decode_line_2_item &a,
1473 const decode_line_2_item &b)
1474 {
1475 if (a.displayform != b.displayform)
1476 return a.displayform < b.displayform;
1477 return a.fullform < b.fullform;
1478 }
1479
1480 /* Handle multiple results in RESULT depending on SELECT_MODE. This
1481 will either return normally, throw an exception on multiple
1482 results, or present a menu to the user. On return, the SALS vector
1483 in SELF->CANONICAL is set up properly. */
1484
1485 static void
1486 decode_line_2 (struct linespec_state *self,
1487 std::vector<symtab_and_line> *result,
1488 const char *select_mode)
1489 {
1490 const char *args;
1491 const char *prompt;
1492 int i;
1493 std::vector<const char *> filters;
1494 std::vector<struct decode_line_2_item> items;
1495
1496 gdb_assert (select_mode != multiple_symbols_all);
1497 gdb_assert (self->canonical != NULL);
1498 gdb_assert (!result->empty ());
1499
1500 /* Prepare ITEMS array. */
1501 for (i = 0; i < result->size (); ++i)
1502 {
1503 const struct linespec_canonical_name *canonical;
1504 std::string displayform;
1505
1506 canonical = &self->canonical_names[i];
1507 gdb_assert (canonical->suffix != NULL);
1508
1509 std::string fullform = canonical_to_fullform (canonical);
1510
1511 if (canonical->symtab == NULL)
1512 displayform = canonical->suffix;
1513 else
1514 {
1515 const char *fn_for_display;
1516
1517 fn_for_display = symtab_to_filename_for_display (canonical->symtab);
1518 displayform = string_printf ("%s:%s", fn_for_display,
1519 canonical->suffix);
1520 }
1521
1522 items.emplace_back (std::move (fullform), std::move (displayform),
1523 false);
1524 }
1525
1526 /* Sort the list of method names. */
1527 std::sort (items.begin (), items.end (), decode_line_2_compare_items);
1528
1529 /* Remove entries with the same FULLFORM. */
1530 items.erase (std::unique (items.begin (), items.end (),
1531 [] (const struct decode_line_2_item &a,
1532 const struct decode_line_2_item &b)
1533 {
1534 return a.fullform == b.fullform;
1535 }),
1536 items.end ());
1537
1538 if (select_mode == multiple_symbols_cancel && items.size () > 1)
1539 error (_("canceled because the command is ambiguous\n"
1540 "See set/show multiple-symbol."));
1541
1542 if (select_mode == multiple_symbols_all || items.size () == 1)
1543 {
1544 convert_results_to_lsals (self, result);
1545 return;
1546 }
1547
1548 printf_unfiltered (_("[0] cancel\n[1] all\n"));
1549 for (i = 0; i < items.size (); i++)
1550 printf_unfiltered ("[%d] %s\n", i + 2, items[i].displayform.c_str ());
1551
1552 prompt = getenv ("PS2");
1553 if (prompt == NULL)
1554 {
1555 prompt = "> ";
1556 }
1557 args = command_line_input (prompt, "overload-choice");
1558
1559 if (args == 0 || *args == 0)
1560 error_no_arg (_("one or more choice numbers"));
1561
1562 number_or_range_parser parser (args);
1563 while (!parser.finished ())
1564 {
1565 int num = parser.get_number ();
1566
1567 if (num == 0)
1568 error (_("canceled"));
1569 else if (num == 1)
1570 {
1571 /* We intentionally make this result in a single breakpoint,
1572 contrary to what older versions of gdb did. The
1573 rationale is that this lets a user get the
1574 multiple_symbols_all behavior even with the 'ask'
1575 setting; and he can get separate breakpoints by entering
1576 "2-57" at the query. */
1577 convert_results_to_lsals (self, result);
1578 return;
1579 }
1580
1581 num -= 2;
1582 if (num >= items.size ())
1583 printf_unfiltered (_("No choice number %d.\n"), num);
1584 else
1585 {
1586 struct decode_line_2_item *item = &items[num];
1587
1588 if (!item->selected)
1589 {
1590 filters.push_back (item->fullform.c_str ());
1591 item->selected = 1;
1592 }
1593 else
1594 {
1595 printf_unfiltered (_("duplicate request for %d ignored.\n"),
1596 num + 2);
1597 }
1598 }
1599 }
1600
1601 filter_results (self, result, filters);
1602 }
1603
1604 \f
1605
1606 /* The parser of linespec itself. */
1607
1608 /* Throw an appropriate error when SYMBOL is not found (optionally in
1609 FILENAME). */
1610
1611 static void ATTRIBUTE_NORETURN
1612 symbol_not_found_error (const char *symbol, const char *filename)
1613 {
1614 if (symbol == NULL)
1615 symbol = "";
1616
1617 if (!have_full_symbols ()
1618 && !have_partial_symbols ()
1619 && !have_minimal_symbols ())
1620 throw_error (NOT_FOUND_ERROR,
1621 _("No symbol table is loaded. Use the \"file\" command."));
1622
1623 /* If SYMBOL starts with '$', the user attempted to either lookup
1624 a function/variable in his code starting with '$' or an internal
1625 variable of that name. Since we do not know which, be concise and
1626 explain both possibilities. */
1627 if (*symbol == '$')
1628 {
1629 if (filename)
1630 throw_error (NOT_FOUND_ERROR,
1631 _("Undefined convenience variable or function \"%s\" "
1632 "not defined in \"%s\"."), symbol, filename);
1633 else
1634 throw_error (NOT_FOUND_ERROR,
1635 _("Undefined convenience variable or function \"%s\" "
1636 "not defined."), symbol);
1637 }
1638 else
1639 {
1640 if (filename)
1641 throw_error (NOT_FOUND_ERROR,
1642 _("Function \"%s\" not defined in \"%s\"."),
1643 symbol, filename);
1644 else
1645 throw_error (NOT_FOUND_ERROR,
1646 _("Function \"%s\" not defined."), symbol);
1647 }
1648 }
1649
1650 /* Throw an appropriate error when an unexpected token is encountered
1651 in the input. */
1652
1653 static void ATTRIBUTE_NORETURN
1654 unexpected_linespec_error (linespec_parser *parser)
1655 {
1656 linespec_token token;
1657 static const char * token_type_strings[]
1658 = {"keyword", "colon", "string", "number", "comma", "end of input"};
1659
1660 /* Get the token that generated the error. */
1661 token = linespec_lexer_lex_one (parser);
1662
1663 /* Finally, throw the error. */
1664 if (token.type == LSTOKEN_STRING || token.type == LSTOKEN_NUMBER
1665 || token.type == LSTOKEN_KEYWORD)
1666 {
1667 gdb::unique_xmalloc_ptr<char> string = copy_token_string (token);
1668 throw_error (GENERIC_ERROR,
1669 _("malformed linespec error: unexpected %s, \"%s\""),
1670 token_type_strings[token.type], string.get ());
1671 }
1672 else
1673 throw_error (GENERIC_ERROR,
1674 _("malformed linespec error: unexpected %s"),
1675 token_type_strings[token.type]);
1676 }
1677
1678 /* Throw an undefined label error. */
1679
1680 static void ATTRIBUTE_NORETURN
1681 undefined_label_error (const char *function, const char *label)
1682 {
1683 if (function != NULL)
1684 throw_error (NOT_FOUND_ERROR,
1685 _("No label \"%s\" defined in function \"%s\"."),
1686 label, function);
1687 else
1688 throw_error (NOT_FOUND_ERROR,
1689 _("No label \"%s\" defined in current function."),
1690 label);
1691 }
1692
1693 /* Throw a source file not found error. */
1694
1695 static void ATTRIBUTE_NORETURN
1696 source_file_not_found_error (const char *name)
1697 {
1698 throw_error (NOT_FOUND_ERROR, _("No source file named %s."), name);
1699 }
1700
1701 /* Unless at EIO, save the current stream position as completion word
1702 point, and consume the next token. */
1703
1704 static linespec_token
1705 save_stream_and_consume_token (linespec_parser *parser)
1706 {
1707 if (linespec_lexer_peek_token (parser).type != LSTOKEN_EOI)
1708 parser->completion_word = PARSER_STREAM (parser);
1709 return linespec_lexer_consume_token (parser);
1710 }
1711
1712 /* See description in linespec.h. */
1713
1714 struct line_offset
1715 linespec_parse_line_offset (const char *string)
1716 {
1717 const char *start = string;
1718 struct line_offset line_offset = {0, LINE_OFFSET_NONE};
1719
1720 if (*string == '+')
1721 {
1722 line_offset.sign = LINE_OFFSET_PLUS;
1723 ++string;
1724 }
1725 else if (*string == '-')
1726 {
1727 line_offset.sign = LINE_OFFSET_MINUS;
1728 ++string;
1729 }
1730
1731 if (*string != '\0' && !isdigit (*string))
1732 error (_("malformed line offset: \"%s\""), start);
1733
1734 /* Right now, we only allow base 10 for offsets. */
1735 line_offset.offset = atoi (string);
1736 return line_offset;
1737 }
1738
1739 /* In completion mode, if the user is still typing the number, there's
1740 no possible completion to offer. But if there's already input past
1741 the number, setup to expect NEXT. */
1742
1743 static void
1744 set_completion_after_number (linespec_parser *parser,
1745 linespec_complete_what next)
1746 {
1747 if (*PARSER_STREAM (parser) == ' ')
1748 {
1749 parser->completion_word = skip_spaces (PARSER_STREAM (parser) + 1);
1750 parser->complete_what = next;
1751 }
1752 else
1753 {
1754 parser->completion_word = PARSER_STREAM (parser);
1755 parser->complete_what = linespec_complete_what::NOTHING;
1756 }
1757 }
1758
1759 /* Parse the basic_spec in PARSER's input. */
1760
1761 static void
1762 linespec_parse_basic (linespec_parser *parser)
1763 {
1764 gdb::unique_xmalloc_ptr<char> name;
1765 linespec_token token;
1766 std::vector<block_symbol> symbols;
1767 std::vector<block_symbol> *labels;
1768 std::vector<bound_minimal_symbol> minimal_symbols;
1769
1770 /* Get the next token. */
1771 token = linespec_lexer_lex_one (parser);
1772
1773 /* If it is EOI or KEYWORD, issue an error. */
1774 if (token.type == LSTOKEN_KEYWORD)
1775 {
1776 parser->complete_what = linespec_complete_what::NOTHING;
1777 unexpected_linespec_error (parser);
1778 }
1779 else if (token.type == LSTOKEN_EOI)
1780 {
1781 unexpected_linespec_error (parser);
1782 }
1783 /* If it is a LSTOKEN_NUMBER, we have an offset. */
1784 else if (token.type == LSTOKEN_NUMBER)
1785 {
1786 set_completion_after_number (parser, linespec_complete_what::KEYWORD);
1787
1788 /* Record the line offset and get the next token. */
1789 name = copy_token_string (token);
1790 PARSER_EXPLICIT (parser)->line_offset
1791 = linespec_parse_line_offset (name.get ());
1792
1793 /* Get the next token. */
1794 token = linespec_lexer_consume_token (parser);
1795
1796 /* If the next token is a comma, stop parsing and return. */
1797 if (token.type == LSTOKEN_COMMA)
1798 {
1799 parser->complete_what = linespec_complete_what::NOTHING;
1800 return;
1801 }
1802
1803 /* If the next token is anything but EOI or KEYWORD, issue
1804 an error. */
1805 if (token.type != LSTOKEN_KEYWORD && token.type != LSTOKEN_EOI)
1806 unexpected_linespec_error (parser);
1807 }
1808
1809 if (token.type == LSTOKEN_KEYWORD || token.type == LSTOKEN_EOI)
1810 return;
1811
1812 /* Next token must be LSTOKEN_STRING. */
1813 if (token.type != LSTOKEN_STRING)
1814 {
1815 parser->complete_what = linespec_complete_what::NOTHING;
1816 unexpected_linespec_error (parser);
1817 }
1818
1819 /* The current token will contain the name of a function, method,
1820 or label. */
1821 name = copy_token_string (token);
1822
1823 if (parser->completion_tracker != NULL)
1824 {
1825 /* If the function name ends with a ":", then this may be an
1826 incomplete "::" scope operator instead of a label separator.
1827 E.g.,
1828 "b klass:<tab>"
1829 which should expand to:
1830 "b klass::method()"
1831
1832 Do a tentative completion assuming the later. If we find
1833 completions, advance the stream past the colon token and make
1834 it part of the function name/token. */
1835
1836 if (!parser->completion_quote_char
1837 && strcmp (PARSER_STREAM (parser), ":") == 0)
1838 {
1839 completion_tracker tmp_tracker;
1840 const char *source_filename
1841 = PARSER_EXPLICIT (parser)->source_filename;
1842 symbol_name_match_type match_type
1843 = PARSER_EXPLICIT (parser)->func_name_match_type;
1844
1845 linespec_complete_function (tmp_tracker,
1846 parser->completion_word,
1847 match_type,
1848 source_filename);
1849
1850 if (tmp_tracker.have_completions ())
1851 {
1852 PARSER_STREAM (parser)++;
1853 LS_TOKEN_STOKEN (token).length++;
1854
1855 name.reset (savestring (parser->completion_word,
1856 (PARSER_STREAM (parser)
1857 - parser->completion_word)));
1858 }
1859 }
1860
1861 PARSER_EXPLICIT (parser)->function_name = name.release ();
1862 }
1863 else
1864 {
1865 /* Try looking it up as a function/method. */
1866 find_linespec_symbols (PARSER_STATE (parser),
1867 PARSER_RESULT (parser)->file_symtabs, name.get (),
1868 PARSER_EXPLICIT (parser)->func_name_match_type,
1869 &symbols, &minimal_symbols);
1870
1871 if (!symbols.empty () || !minimal_symbols.empty ())
1872 {
1873 PARSER_RESULT (parser)->function_symbols
1874 = new std::vector<block_symbol> (std::move (symbols));
1875 PARSER_RESULT (parser)->minimal_symbols
1876 = new std::vector<bound_minimal_symbol>
1877 (std::move (minimal_symbols));
1878 PARSER_EXPLICIT (parser)->function_name = name.release ();
1879 }
1880 else
1881 {
1882 /* NAME was not a function or a method. So it must be a label
1883 name or user specified variable like "break foo.c:$zippo". */
1884 labels = find_label_symbols (PARSER_STATE (parser), NULL,
1885 &symbols, name.get ());
1886 if (labels != NULL)
1887 {
1888 PARSER_RESULT (parser)->labels.label_symbols = labels;
1889 PARSER_RESULT (parser)->labels.function_symbols
1890 = new std::vector<block_symbol> (std::move (symbols));
1891 PARSER_EXPLICIT (parser)->label_name = name.release ();
1892 }
1893 else if (token.type == LSTOKEN_STRING
1894 && *LS_TOKEN_STOKEN (token).ptr == '$')
1895 {
1896 /* User specified a convenience variable or history value. */
1897 PARSER_EXPLICIT (parser)->line_offset
1898 = linespec_parse_variable (PARSER_STATE (parser), name.get ());
1899
1900 if (PARSER_EXPLICIT (parser)->line_offset.sign == LINE_OFFSET_UNKNOWN)
1901 {
1902 /* The user-specified variable was not valid. Do not
1903 throw an error here. parse_linespec will do it for us. */
1904 PARSER_EXPLICIT (parser)->function_name = name.release ();
1905 return;
1906 }
1907 }
1908 else
1909 {
1910 /* The name is also not a label. Abort parsing. Do not throw
1911 an error here. parse_linespec will do it for us. */
1912
1913 /* Save a copy of the name we were trying to lookup. */
1914 PARSER_EXPLICIT (parser)->function_name = name.release ();
1915 return;
1916 }
1917 }
1918 }
1919
1920 int previous_qc = parser->completion_quote_char;
1921
1922 /* Get the next token. */
1923 token = linespec_lexer_consume_token (parser);
1924
1925 if (token.type == LSTOKEN_EOI)
1926 {
1927 if (previous_qc && !parser->completion_quote_char)
1928 parser->complete_what = linespec_complete_what::KEYWORD;
1929 }
1930 else if (token.type == LSTOKEN_COLON)
1931 {
1932 /* User specified a label or a lineno. */
1933 token = linespec_lexer_consume_token (parser);
1934
1935 if (token.type == LSTOKEN_NUMBER)
1936 {
1937 /* User specified an offset. Record the line offset and
1938 get the next token. */
1939 set_completion_after_number (parser, linespec_complete_what::KEYWORD);
1940
1941 name = copy_token_string (token);
1942 PARSER_EXPLICIT (parser)->line_offset
1943 = linespec_parse_line_offset (name.get ());
1944
1945 /* Get the next token. */
1946 token = linespec_lexer_consume_token (parser);
1947 }
1948 else if (token.type == LSTOKEN_EOI && parser->completion_tracker != NULL)
1949 {
1950 parser->complete_what = linespec_complete_what::LABEL;
1951 }
1952 else if (token.type == LSTOKEN_STRING)
1953 {
1954 parser->complete_what = linespec_complete_what::LABEL;
1955
1956 /* If we have text after the label separated by whitespace
1957 (e.g., "b func():lab i<tab>"), don't consider it part of
1958 the label. In completion mode that should complete to
1959 "if", in normal mode, the 'i' should be treated as
1960 garbage. */
1961 if (parser->completion_quote_char == '\0')
1962 {
1963 const char *ptr = LS_TOKEN_STOKEN (token).ptr;
1964 for (size_t i = 0; i < LS_TOKEN_STOKEN (token).length; i++)
1965 {
1966 if (ptr[i] == ' ')
1967 {
1968 LS_TOKEN_STOKEN (token).length = i;
1969 PARSER_STREAM (parser) = skip_spaces (ptr + i + 1);
1970 break;
1971 }
1972 }
1973 }
1974
1975 if (parser->completion_tracker != NULL)
1976 {
1977 if (PARSER_STREAM (parser)[-1] == ' ')
1978 {
1979 parser->completion_word = PARSER_STREAM (parser);
1980 parser->complete_what = linespec_complete_what::KEYWORD;
1981 }
1982 }
1983 else
1984 {
1985 /* Grab a copy of the label's name and look it up. */
1986 name = copy_token_string (token);
1987 labels
1988 = find_label_symbols (PARSER_STATE (parser),
1989 PARSER_RESULT (parser)->function_symbols,
1990 &symbols, name.get ());
1991
1992 if (labels != NULL)
1993 {
1994 PARSER_RESULT (parser)->labels.label_symbols = labels;
1995 PARSER_RESULT (parser)->labels.function_symbols
1996 = new std::vector<block_symbol> (std::move (symbols));
1997 PARSER_EXPLICIT (parser)->label_name = name.release ();
1998 }
1999 else
2000 {
2001 /* We don't know what it was, but it isn't a label. */
2002 undefined_label_error
2003 (PARSER_EXPLICIT (parser)->function_name, name.get ());
2004 }
2005
2006 }
2007
2008 /* Check for a line offset. */
2009 token = save_stream_and_consume_token (parser);
2010 if (token.type == LSTOKEN_COLON)
2011 {
2012 /* Get the next token. */
2013 token = linespec_lexer_consume_token (parser);
2014
2015 /* It must be a line offset. */
2016 if (token.type != LSTOKEN_NUMBER)
2017 unexpected_linespec_error (parser);
2018
2019 /* Record the line offset and get the next token. */
2020 name = copy_token_string (token);
2021
2022 PARSER_EXPLICIT (parser)->line_offset
2023 = linespec_parse_line_offset (name.get ());
2024
2025 /* Get the next token. */
2026 token = linespec_lexer_consume_token (parser);
2027 }
2028 }
2029 else
2030 {
2031 /* Trailing ':' in the input. Issue an error. */
2032 unexpected_linespec_error (parser);
2033 }
2034 }
2035 }
2036
2037 /* Canonicalize the linespec contained in LS. The result is saved into
2038 STATE->canonical. This function handles both linespec and explicit
2039 locations. */
2040
2041 static void
2042 canonicalize_linespec (struct linespec_state *state, const linespec_p ls)
2043 {
2044 struct event_location *canon;
2045 struct explicit_location *explicit_loc;
2046
2047 /* If canonicalization was not requested, no need to do anything. */
2048 if (!state->canonical)
2049 return;
2050
2051 /* Save everything as an explicit location. */
2052 state->canonical->location
2053 = new_explicit_location (&ls->explicit_loc);
2054 canon = state->canonical->location.get ();
2055 explicit_loc = get_explicit_location (canon);
2056
2057 if (explicit_loc->label_name != NULL)
2058 {
2059 state->canonical->special_display = 1;
2060
2061 if (explicit_loc->function_name == NULL)
2062 {
2063 /* No function was specified, so add the symbol name. */
2064 gdb_assert (!ls->labels.function_symbols->empty ()
2065 && (ls->labels.function_symbols->size () == 1));
2066 block_symbol s = ls->labels.function_symbols->front ();
2067 explicit_loc->function_name = xstrdup (s.symbol->natural_name ());
2068 }
2069 }
2070
2071 /* If this location originally came from a linespec, save a string
2072 representation of it for display and saving to file. */
2073 if (state->is_linespec)
2074 {
2075 char *linespec = explicit_location_to_linespec (explicit_loc);
2076
2077 set_event_location_string (canon, linespec);
2078 xfree (linespec);
2079 }
2080 }
2081
2082 /* Given a line offset in LS, construct the relevant SALs. */
2083
2084 static std::vector<symtab_and_line>
2085 create_sals_line_offset (struct linespec_state *self,
2086 linespec_p ls)
2087 {
2088 int use_default = 0;
2089
2090 /* This is where we need to make sure we have good defaults.
2091 We must guarantee that this section of code is never executed
2092 when we are called with just a function name, since
2093 set_default_source_symtab_and_line uses
2094 select_source_symtab that calls us with such an argument. */
2095
2096 if (ls->file_symtabs->size () == 1
2097 && ls->file_symtabs->front () == nullptr)
2098 {
2099 set_current_program_space (self->program_space);
2100
2101 /* Make sure we have at least a default source line. */
2102 set_default_source_symtab_and_line ();
2103 initialize_defaults (&self->default_symtab, &self->default_line);
2104 *ls->file_symtabs
2105 = collect_symtabs_from_filename (self->default_symtab->filename,
2106 self->search_pspace);
2107 use_default = 1;
2108 }
2109
2110 symtab_and_line val;
2111 val.line = ls->explicit_loc.line_offset.offset;
2112 switch (ls->explicit_loc.line_offset.sign)
2113 {
2114 case LINE_OFFSET_PLUS:
2115 if (ls->explicit_loc.line_offset.offset == 0)
2116 val.line = 5;
2117 if (use_default)
2118 val.line = self->default_line + val.line;
2119 break;
2120
2121 case LINE_OFFSET_MINUS:
2122 if (ls->explicit_loc.line_offset.offset == 0)
2123 val.line = 15;
2124 if (use_default)
2125 val.line = self->default_line - val.line;
2126 else
2127 val.line = -val.line;
2128 break;
2129
2130 case LINE_OFFSET_NONE:
2131 break; /* No need to adjust val.line. */
2132 }
2133
2134 std::vector<symtab_and_line> values;
2135 if (self->list_mode)
2136 values = decode_digits_list_mode (self, ls, val);
2137 else
2138 {
2139 struct linetable_entry *best_entry = NULL;
2140 int i, j;
2141
2142 std::vector<symtab_and_line> intermediate_results
2143 = decode_digits_ordinary (self, ls, val.line, &best_entry);
2144 if (intermediate_results.empty () && best_entry != NULL)
2145 intermediate_results = decode_digits_ordinary (self, ls,
2146 best_entry->line,
2147 &best_entry);
2148
2149 /* For optimized code, the compiler can scatter one source line
2150 across disjoint ranges of PC values, even when no duplicate
2151 functions or inline functions are involved. For example,
2152 'for (;;)' inside a non-template, non-inline, and non-ctor-or-dtor
2153 function can result in two PC ranges. In this case, we don't
2154 want to set a breakpoint on the first PC of each range. To filter
2155 such cases, we use containing blocks -- for each PC found
2156 above, we see if there are other PCs that are in the same
2157 block. If yes, the other PCs are filtered out. */
2158
2159 gdb::def_vector<int> filter (intermediate_results.size ());
2160 gdb::def_vector<const block *> blocks (intermediate_results.size ());
2161
2162 for (i = 0; i < intermediate_results.size (); ++i)
2163 {
2164 set_current_program_space (intermediate_results[i].pspace);
2165
2166 filter[i] = 1;
2167 blocks[i] = block_for_pc_sect (intermediate_results[i].pc,
2168 intermediate_results[i].section);
2169 }
2170
2171 for (i = 0; i < intermediate_results.size (); ++i)
2172 {
2173 if (blocks[i] != NULL)
2174 for (j = i + 1; j < intermediate_results.size (); ++j)
2175 {
2176 if (blocks[j] == blocks[i])
2177 {
2178 filter[j] = 0;
2179 break;
2180 }
2181 }
2182 }
2183
2184 for (i = 0; i < intermediate_results.size (); ++i)
2185 if (filter[i])
2186 {
2187 struct symbol *sym = (blocks[i]
2188 ? block_containing_function (blocks[i])
2189 : NULL);
2190
2191 if (self->funfirstline)
2192 skip_prologue_sal (&intermediate_results[i]);
2193 intermediate_results[i].symbol = sym;
2194 add_sal_to_sals (self, &values, &intermediate_results[i],
2195 sym ? sym->natural_name () : NULL, 0);
2196 }
2197 }
2198
2199 if (values.empty ())
2200 {
2201 if (ls->explicit_loc.source_filename)
2202 throw_error (NOT_FOUND_ERROR, _("No line %d in file \"%s\"."),
2203 val.line, ls->explicit_loc.source_filename);
2204 else
2205 throw_error (NOT_FOUND_ERROR, _("No line %d in the current file."),
2206 val.line);
2207 }
2208
2209 return values;
2210 }
2211
2212 /* Convert the given ADDRESS into SaLs. */
2213
2214 static std::vector<symtab_and_line>
2215 convert_address_location_to_sals (struct linespec_state *self,
2216 CORE_ADDR address)
2217 {
2218 symtab_and_line sal = find_pc_line (address, 0);
2219 sal.pc = address;
2220 sal.section = find_pc_overlay (address);
2221 sal.explicit_pc = 1;
2222 sal.symbol = find_pc_sect_containing_function (sal.pc, sal.section);
2223
2224 std::vector<symtab_and_line> sals;
2225 add_sal_to_sals (self, &sals, &sal, core_addr_to_string (address), 1);
2226
2227 return sals;
2228 }
2229
2230 /* Create and return SALs from the linespec LS. */
2231
2232 static std::vector<symtab_and_line>
2233 convert_linespec_to_sals (struct linespec_state *state, linespec_p ls)
2234 {
2235 std::vector<symtab_and_line> sals;
2236
2237 if (ls->labels.label_symbols != NULL)
2238 {
2239 /* We have just a bunch of functions/methods or labels. */
2240 struct symtab_and_line sal;
2241
2242 for (const auto &sym : *ls->labels.label_symbols)
2243 {
2244 struct program_space *pspace
2245 = SYMTAB_PSPACE (symbol_symtab (sym.symbol));
2246
2247 if (symbol_to_sal (&sal, state->funfirstline, sym.symbol)
2248 && maybe_add_address (state->addr_set, pspace, sal.pc))
2249 add_sal_to_sals (state, &sals, &sal,
2250 sym.symbol->natural_name (), 0);
2251 }
2252 }
2253 else if (ls->function_symbols != NULL || ls->minimal_symbols != NULL)
2254 {
2255 /* We have just a bunch of functions and/or methods. */
2256 if (ls->function_symbols != NULL)
2257 {
2258 /* Sort symbols so that symbols with the same program space are next
2259 to each other. */
2260 std::sort (ls->function_symbols->begin (),
2261 ls->function_symbols->end (),
2262 compare_symbols);
2263
2264 for (const auto &sym : *ls->function_symbols)
2265 {
2266 program_space *pspace
2267 = SYMTAB_PSPACE (symbol_symtab (sym.symbol));
2268 set_current_program_space (pspace);
2269
2270 /* Don't skip to the first line of the function if we
2271 had found an ifunc minimal symbol for this function,
2272 because that means that this function is an ifunc
2273 resolver with the same name as the ifunc itself. */
2274 bool found_ifunc = false;
2275
2276 if (state->funfirstline
2277 && ls->minimal_symbols != NULL
2278 && SYMBOL_CLASS (sym.symbol) == LOC_BLOCK)
2279 {
2280 const CORE_ADDR addr
2281 = BLOCK_ENTRY_PC (SYMBOL_BLOCK_VALUE (sym.symbol));
2282
2283 for (const auto &elem : *ls->minimal_symbols)
2284 {
2285 if (MSYMBOL_TYPE (elem.minsym) == mst_text_gnu_ifunc
2286 || MSYMBOL_TYPE (elem.minsym) == mst_data_gnu_ifunc)
2287 {
2288 CORE_ADDR msym_addr = BMSYMBOL_VALUE_ADDRESS (elem);
2289 if (MSYMBOL_TYPE (elem.minsym) == mst_data_gnu_ifunc)
2290 {
2291 struct gdbarch *gdbarch
2292 = elem.objfile->arch ();
2293 msym_addr
2294 = (gdbarch_convert_from_func_ptr_addr
2295 (gdbarch,
2296 msym_addr,
2297 current_top_target ()));
2298 }
2299
2300 if (msym_addr == addr)
2301 {
2302 found_ifunc = true;
2303 break;
2304 }
2305 }
2306 }
2307 }
2308
2309 if (!found_ifunc)
2310 {
2311 symtab_and_line sal;
2312 if (symbol_to_sal (&sal, state->funfirstline, sym.symbol)
2313 && maybe_add_address (state->addr_set, pspace, sal.pc))
2314 add_sal_to_sals (state, &sals, &sal,
2315 sym.symbol->natural_name (), 0);
2316 }
2317 }
2318 }
2319
2320 if (ls->minimal_symbols != NULL)
2321 {
2322 /* Sort minimal symbols by program space, too */
2323 std::sort (ls->minimal_symbols->begin (),
2324 ls->minimal_symbols->end (),
2325 compare_msymbols);
2326
2327 for (const auto &elem : *ls->minimal_symbols)
2328 {
2329 program_space *pspace = elem.objfile->pspace;
2330 set_current_program_space (pspace);
2331 minsym_found (state, elem.objfile, elem.minsym, &sals);
2332 }
2333 }
2334 }
2335 else if (ls->explicit_loc.line_offset.sign != LINE_OFFSET_UNKNOWN)
2336 {
2337 /* Only an offset was specified. */
2338 sals = create_sals_line_offset (state, ls);
2339
2340 /* Make sure we have a filename for canonicalization. */
2341 if (ls->explicit_loc.source_filename == NULL)
2342 {
2343 const char *fullname = symtab_to_fullname (state->default_symtab);
2344
2345 /* It may be more appropriate to keep DEFAULT_SYMTAB in its symtab
2346 form so that displaying SOURCE_FILENAME can follow the current
2347 FILENAME_DISPLAY_STRING setting. But as it is used only rarely
2348 it has been kept for code simplicity only in absolute form. */
2349 ls->explicit_loc.source_filename = xstrdup (fullname);
2350 }
2351 }
2352 else
2353 {
2354 /* We haven't found any results... */
2355 return sals;
2356 }
2357
2358 canonicalize_linespec (state, ls);
2359
2360 if (!sals.empty () && state->canonical != NULL)
2361 state->canonical->pre_expanded = 1;
2362
2363 return sals;
2364 }
2365
2366 /* Build RESULT from the explicit location components SOURCE_FILENAME,
2367 FUNCTION_NAME, LABEL_NAME and LINE_OFFSET. */
2368
2369 static void
2370 convert_explicit_location_to_linespec (struct linespec_state *self,
2371 linespec_p result,
2372 const char *source_filename,
2373 const char *function_name,
2374 symbol_name_match_type fname_match_type,
2375 const char *label_name,
2376 struct line_offset line_offset)
2377 {
2378 std::vector<block_symbol> symbols;
2379 std::vector<block_symbol> *labels;
2380 std::vector<bound_minimal_symbol> minimal_symbols;
2381
2382 result->explicit_loc.func_name_match_type = fname_match_type;
2383
2384 if (source_filename != NULL)
2385 {
2386 try
2387 {
2388 *result->file_symtabs
2389 = symtabs_from_filename (source_filename, self->search_pspace);
2390 }
2391 catch (const gdb_exception_error &except)
2392 {
2393 source_file_not_found_error (source_filename);
2394 }
2395 result->explicit_loc.source_filename = xstrdup (source_filename);
2396 }
2397 else
2398 {
2399 /* A NULL entry means to use the default symtab. */
2400 result->file_symtabs->push_back (nullptr);
2401 }
2402
2403 if (function_name != NULL)
2404 {
2405 find_linespec_symbols (self, result->file_symtabs,
2406 function_name, fname_match_type,
2407 &symbols, &minimal_symbols);
2408
2409 if (symbols.empty () && minimal_symbols.empty ())
2410 symbol_not_found_error (function_name,
2411 result->explicit_loc.source_filename);
2412
2413 result->explicit_loc.function_name = xstrdup (function_name);
2414 result->function_symbols
2415 = new std::vector<block_symbol> (std::move (symbols));
2416 result->minimal_symbols
2417 = new std::vector<bound_minimal_symbol> (std::move (minimal_symbols));
2418 }
2419
2420 if (label_name != NULL)
2421 {
2422 labels = find_label_symbols (self, result->function_symbols,
2423 &symbols, label_name);
2424
2425 if (labels == NULL)
2426 undefined_label_error (result->explicit_loc.function_name,
2427 label_name);
2428
2429 result->explicit_loc.label_name = xstrdup (label_name);
2430 result->labels.label_symbols = labels;
2431 result->labels.function_symbols
2432 = new std::vector<block_symbol> (std::move (symbols));
2433 }
2434
2435 if (line_offset.sign != LINE_OFFSET_UNKNOWN)
2436 result->explicit_loc.line_offset = line_offset;
2437 }
2438
2439 /* Convert the explicit location EXPLICIT_LOC into SaLs. */
2440
2441 static std::vector<symtab_and_line>
2442 convert_explicit_location_to_sals (struct linespec_state *self,
2443 linespec_p result,
2444 const struct explicit_location *explicit_loc)
2445 {
2446 convert_explicit_location_to_linespec (self, result,
2447 explicit_loc->source_filename,
2448 explicit_loc->function_name,
2449 explicit_loc->func_name_match_type,
2450 explicit_loc->label_name,
2451 explicit_loc->line_offset);
2452 return convert_linespec_to_sals (self, result);
2453 }
2454
2455 /* Parse a string that specifies a linespec.
2456
2457 The basic grammar of linespecs:
2458
2459 linespec -> var_spec | basic_spec
2460 var_spec -> '$' (STRING | NUMBER)
2461
2462 basic_spec -> file_offset_spec | function_spec | label_spec
2463 file_offset_spec -> opt_file_spec offset_spec
2464 function_spec -> opt_file_spec function_name_spec opt_label_spec
2465 label_spec -> label_name_spec
2466
2467 opt_file_spec -> "" | file_name_spec ':'
2468 opt_label_spec -> "" | ':' label_name_spec
2469
2470 file_name_spec -> STRING
2471 function_name_spec -> STRING
2472 label_name_spec -> STRING
2473 function_name_spec -> STRING
2474 offset_spec -> NUMBER
2475 -> '+' NUMBER
2476 -> '-' NUMBER
2477
2478 This may all be followed by several keywords such as "if EXPR",
2479 which we ignore.
2480
2481 A comma will terminate parsing.
2482
2483 The function may be an undebuggable function found in minimal symbol table.
2484
2485 If the argument FUNFIRSTLINE is nonzero, we want the first line
2486 of real code inside a function when a function is specified, and it is
2487 not OK to specify a variable or type to get its line number.
2488
2489 DEFAULT_SYMTAB specifies the file to use if none is specified.
2490 It defaults to current_source_symtab.
2491 DEFAULT_LINE specifies the line number to use for relative
2492 line numbers (that start with signs). Defaults to current_source_line.
2493 If CANONICAL is non-NULL, store an array of strings containing the canonical
2494 line specs there if necessary. Currently overloaded member functions and
2495 line numbers or static functions without a filename yield a canonical
2496 line spec. The array and the line spec strings are allocated on the heap,
2497 it is the callers responsibility to free them.
2498
2499 Note that it is possible to return zero for the symtab
2500 if no file is validly specified. Callers must check that.
2501 Also, the line number returned may be invalid. */
2502
2503 /* Parse the linespec in ARG. MATCH_TYPE indicates how function names
2504 should be matched. */
2505
2506 static std::vector<symtab_and_line>
2507 parse_linespec (linespec_parser *parser, const char *arg,
2508 symbol_name_match_type match_type)
2509 {
2510 linespec_token token;
2511 struct gdb_exception file_exception;
2512
2513 /* A special case to start. It has become quite popular for
2514 IDEs to work around bugs in the previous parser by quoting
2515 the entire linespec, so we attempt to deal with this nicely. */
2516 parser->is_quote_enclosed = 0;
2517 if (parser->completion_tracker == NULL
2518 && !is_ada_operator (arg)
2519 && strchr (linespec_quote_characters, *arg) != NULL)
2520 {
2521 const char *end;
2522
2523 end = skip_quote_char (arg + 1, *arg);
2524 if (end != NULL && is_closing_quote_enclosed (end))
2525 {
2526 /* Here's the special case. Skip ARG past the initial
2527 quote. */
2528 ++arg;
2529 parser->is_quote_enclosed = 1;
2530 }
2531 }
2532
2533 parser->lexer.saved_arg = arg;
2534 parser->lexer.stream = arg;
2535 parser->completion_word = arg;
2536 parser->complete_what = linespec_complete_what::FUNCTION;
2537 PARSER_EXPLICIT (parser)->func_name_match_type = match_type;
2538
2539 /* Initialize the default symtab and line offset. */
2540 initialize_defaults (&PARSER_STATE (parser)->default_symtab,
2541 &PARSER_STATE (parser)->default_line);
2542
2543 /* Objective-C shortcut. */
2544 if (parser->completion_tracker == NULL)
2545 {
2546 std::vector<symtab_and_line> values
2547 = decode_objc (PARSER_STATE (parser), PARSER_RESULT (parser), arg);
2548 if (!values.empty ())
2549 return values;
2550 }
2551 else
2552 {
2553 /* "-"/"+" is either an objc selector, or a number. There's
2554 nothing to complete the latter to, so just let the caller
2555 complete on functions, which finds objc selectors, if there's
2556 any. */
2557 if ((arg[0] == '-' || arg[0] == '+') && arg[1] == '\0')
2558 return {};
2559 }
2560
2561 /* Start parsing. */
2562
2563 /* Get the first token. */
2564 token = linespec_lexer_consume_token (parser);
2565
2566 /* It must be either LSTOKEN_STRING or LSTOKEN_NUMBER. */
2567 if (token.type == LSTOKEN_STRING && *LS_TOKEN_STOKEN (token).ptr == '$')
2568 {
2569 /* A NULL entry means to use GLOBAL_DEFAULT_SYMTAB. */
2570 if (parser->completion_tracker == NULL)
2571 PARSER_RESULT (parser)->file_symtabs->push_back (nullptr);
2572
2573 /* User specified a convenience variable or history value. */
2574 gdb::unique_xmalloc_ptr<char> var = copy_token_string (token);
2575 PARSER_EXPLICIT (parser)->line_offset
2576 = linespec_parse_variable (PARSER_STATE (parser), var.get ());
2577
2578 /* If a line_offset wasn't found (VAR is the name of a user
2579 variable/function), then skip to normal symbol processing. */
2580 if (PARSER_EXPLICIT (parser)->line_offset.sign != LINE_OFFSET_UNKNOWN)
2581 {
2582 /* Consume this token. */
2583 linespec_lexer_consume_token (parser);
2584
2585 goto convert_to_sals;
2586 }
2587 }
2588 else if (token.type == LSTOKEN_EOI && parser->completion_tracker != NULL)
2589 {
2590 /* Let the default linespec_complete_what::FUNCTION kick in. */
2591 unexpected_linespec_error (parser);
2592 }
2593 else if (token.type != LSTOKEN_STRING && token.type != LSTOKEN_NUMBER)
2594 {
2595 parser->complete_what = linespec_complete_what::NOTHING;
2596 unexpected_linespec_error (parser);
2597 }
2598
2599 /* Shortcut: If the next token is not LSTOKEN_COLON, we know that
2600 this token cannot represent a filename. */
2601 token = linespec_lexer_peek_token (parser);
2602
2603 if (token.type == LSTOKEN_COLON)
2604 {
2605 /* Get the current token again and extract the filename. */
2606 token = linespec_lexer_lex_one (parser);
2607 gdb::unique_xmalloc_ptr<char> user_filename = copy_token_string (token);
2608
2609 /* Check if the input is a filename. */
2610 try
2611 {
2612 *PARSER_RESULT (parser)->file_symtabs
2613 = symtabs_from_filename (user_filename.get (),
2614 PARSER_STATE (parser)->search_pspace);
2615 }
2616 catch (gdb_exception_error &ex)
2617 {
2618 file_exception = std::move (ex);
2619 }
2620
2621 if (file_exception.reason >= 0)
2622 {
2623 /* Symtabs were found for the file. Record the filename. */
2624 PARSER_EXPLICIT (parser)->source_filename = user_filename.release ();
2625
2626 /* Get the next token. */
2627 token = linespec_lexer_consume_token (parser);
2628
2629 /* This is LSTOKEN_COLON; consume it. */
2630 linespec_lexer_consume_token (parser);
2631 }
2632 else
2633 {
2634 /* A NULL entry means to use GLOBAL_DEFAULT_SYMTAB. */
2635 PARSER_RESULT (parser)->file_symtabs->push_back (nullptr);
2636 }
2637 }
2638 /* If the next token is not EOI, KEYWORD, or COMMA, issue an error. */
2639 else if (parser->completion_tracker == NULL
2640 && (token.type != LSTOKEN_EOI && token.type != LSTOKEN_KEYWORD
2641 && token.type != LSTOKEN_COMMA))
2642 {
2643 /* TOKEN is the _next_ token, not the one currently in the parser.
2644 Consuming the token will give the correct error message. */
2645 linespec_lexer_consume_token (parser);
2646 unexpected_linespec_error (parser);
2647 }
2648 else
2649 {
2650 /* A NULL entry means to use GLOBAL_DEFAULT_SYMTAB. */
2651 PARSER_RESULT (parser)->file_symtabs->push_back (nullptr);
2652 }
2653
2654 /* Parse the rest of the linespec. */
2655 linespec_parse_basic (parser);
2656
2657 if (parser->completion_tracker == NULL
2658 && PARSER_RESULT (parser)->function_symbols == NULL
2659 && PARSER_RESULT (parser)->labels.label_symbols == NULL
2660 && PARSER_EXPLICIT (parser)->line_offset.sign == LINE_OFFSET_UNKNOWN
2661 && PARSER_RESULT (parser)->minimal_symbols == NULL)
2662 {
2663 /* The linespec didn't parse. Re-throw the file exception if
2664 there was one. */
2665 if (file_exception.reason < 0)
2666 throw_exception (std::move (file_exception));
2667
2668 /* Otherwise, the symbol is not found. */
2669 symbol_not_found_error (PARSER_EXPLICIT (parser)->function_name,
2670 PARSER_EXPLICIT (parser)->source_filename);
2671 }
2672
2673 convert_to_sals:
2674
2675 /* Get the last token and record how much of the input was parsed,
2676 if necessary. */
2677 token = linespec_lexer_lex_one (parser);
2678 if (token.type != LSTOKEN_EOI && token.type != LSTOKEN_KEYWORD)
2679 unexpected_linespec_error (parser);
2680 else if (token.type == LSTOKEN_KEYWORD)
2681 {
2682 /* Setup the completion word past the keyword. Lexing never
2683 advances past a keyword automatically, so skip it
2684 manually. */
2685 parser->completion_word
2686 = skip_spaces (skip_to_space (PARSER_STREAM (parser)));
2687 parser->complete_what = linespec_complete_what::EXPRESSION;
2688 }
2689
2690 /* Convert the data in PARSER_RESULT to SALs. */
2691 if (parser->completion_tracker == NULL)
2692 return convert_linespec_to_sals (PARSER_STATE (parser),
2693 PARSER_RESULT (parser));
2694
2695 return {};
2696 }
2697
2698
2699 /* A constructor for linespec_state. */
2700
2701 static void
2702 linespec_state_constructor (struct linespec_state *self,
2703 int flags, const struct language_defn *language,
2704 struct program_space *search_pspace,
2705 struct symtab *default_symtab,
2706 int default_line,
2707 struct linespec_result *canonical)
2708 {
2709 memset (self, 0, sizeof (*self));
2710 self->language = language;
2711 self->funfirstline = (flags & DECODE_LINE_FUNFIRSTLINE) ? 1 : 0;
2712 self->list_mode = (flags & DECODE_LINE_LIST_MODE) ? 1 : 0;
2713 self->search_pspace = search_pspace;
2714 self->default_symtab = default_symtab;
2715 self->default_line = default_line;
2716 self->canonical = canonical;
2717 self->program_space = current_program_space;
2718 self->addr_set = htab_create_alloc (10, hash_address_entry, eq_address_entry,
2719 xfree, xcalloc, xfree);
2720 self->is_linespec = 0;
2721 }
2722
2723 /* Initialize a new linespec parser. */
2724
2725 linespec_parser::linespec_parser (int flags,
2726 const struct language_defn *language,
2727 struct program_space *search_pspace,
2728 struct symtab *default_symtab,
2729 int default_line,
2730 struct linespec_result *canonical)
2731 {
2732 lexer.current.type = LSTOKEN_CONSUMED;
2733 PARSER_RESULT (this)->file_symtabs = new std::vector<symtab *> ();
2734 PARSER_EXPLICIT (this)->func_name_match_type
2735 = symbol_name_match_type::WILD;
2736 PARSER_EXPLICIT (this)->line_offset.sign = LINE_OFFSET_UNKNOWN;
2737 linespec_state_constructor (PARSER_STATE (this), flags, language,
2738 search_pspace,
2739 default_symtab, default_line, canonical);
2740 }
2741
2742 /* A destructor for linespec_state. */
2743
2744 static void
2745 linespec_state_destructor (struct linespec_state *self)
2746 {
2747 htab_delete (self->addr_set);
2748 xfree (self->canonical_names);
2749 }
2750
2751 /* Delete a linespec parser. */
2752
2753 linespec_parser::~linespec_parser ()
2754 {
2755 xfree (PARSER_EXPLICIT (this)->source_filename);
2756 xfree (PARSER_EXPLICIT (this)->label_name);
2757 xfree (PARSER_EXPLICIT (this)->function_name);
2758
2759 delete PARSER_RESULT (this)->file_symtabs;
2760 delete PARSER_RESULT (this)->function_symbols;
2761 delete PARSER_RESULT (this)->minimal_symbols;
2762 delete PARSER_RESULT (this)->labels.label_symbols;
2763 delete PARSER_RESULT (this)->labels.function_symbols;
2764
2765 linespec_state_destructor (PARSER_STATE (this));
2766 }
2767
2768 /* See description in linespec.h. */
2769
2770 void
2771 linespec_lex_to_end (const char **stringp)
2772 {
2773 linespec_token token;
2774 const char *orig;
2775
2776 if (stringp == NULL || *stringp == NULL)
2777 return;
2778
2779 linespec_parser parser (0, current_language, NULL, NULL, 0, NULL);
2780 parser.lexer.saved_arg = *stringp;
2781 PARSER_STREAM (&parser) = orig = *stringp;
2782
2783 do
2784 {
2785 /* Stop before any comma tokens; we need it to keep it
2786 as the next token in the string. */
2787 token = linespec_lexer_peek_token (&parser);
2788 if (token.type == LSTOKEN_COMMA)
2789 break;
2790 token = linespec_lexer_consume_token (&parser);
2791 }
2792 while (token.type != LSTOKEN_EOI && token.type != LSTOKEN_KEYWORD);
2793
2794 *stringp += PARSER_STREAM (&parser) - orig;
2795 }
2796
2797 /* See linespec.h. */
2798
2799 void
2800 linespec_complete_function (completion_tracker &tracker,
2801 const char *function,
2802 symbol_name_match_type func_match_type,
2803 const char *source_filename)
2804 {
2805 complete_symbol_mode mode = complete_symbol_mode::LINESPEC;
2806
2807 if (source_filename != NULL)
2808 {
2809 collect_file_symbol_completion_matches (tracker, mode, func_match_type,
2810 function, function, source_filename);
2811 }
2812 else
2813 {
2814 collect_symbol_completion_matches (tracker, mode, func_match_type,
2815 function, function);
2816
2817 }
2818 }
2819
2820 /* Helper for complete_linespec to simplify it. SOURCE_FILENAME is
2821 only meaningful if COMPONENT is FUNCTION. */
2822
2823 static void
2824 complete_linespec_component (linespec_parser *parser,
2825 completion_tracker &tracker,
2826 const char *text,
2827 linespec_complete_what component,
2828 const char *source_filename)
2829 {
2830 if (component == linespec_complete_what::KEYWORD)
2831 {
2832 complete_on_enum (tracker, linespec_keywords, text, text);
2833 }
2834 else if (component == linespec_complete_what::EXPRESSION)
2835 {
2836 const char *word
2837 = advance_to_expression_complete_word_point (tracker, text);
2838 complete_expression (tracker, text, word);
2839 }
2840 else if (component == linespec_complete_what::FUNCTION)
2841 {
2842 completion_list fn_list;
2843
2844 symbol_name_match_type match_type
2845 = PARSER_EXPLICIT (parser)->func_name_match_type;
2846 linespec_complete_function (tracker, text, match_type, source_filename);
2847 if (source_filename == NULL)
2848 {
2849 /* Haven't seen a source component, like in "b
2850 file.c:function[TAB]". Maybe this wasn't a function, but
2851 a filename instead, like "b file.[TAB]". */
2852 fn_list = complete_source_filenames (text);
2853 }
2854
2855 /* If we only have a single filename completion, append a ':' for
2856 the user, since that's the only thing that can usefully follow
2857 the filename. */
2858 if (fn_list.size () == 1 && !tracker.have_completions ())
2859 {
2860 char *fn = fn_list[0].release ();
2861
2862 /* If we also need to append a quote char, it needs to be
2863 appended before the ':'. Append it now, and make ':' the
2864 new "quote" char. */
2865 if (tracker.quote_char ())
2866 {
2867 char quote_char_str[2] = { (char) tracker.quote_char () };
2868
2869 fn = reconcat (fn, fn, quote_char_str, (char *) NULL);
2870 tracker.set_quote_char (':');
2871 }
2872 else
2873 fn = reconcat (fn, fn, ":", (char *) NULL);
2874 fn_list[0].reset (fn);
2875
2876 /* Tell readline to skip appending a space. */
2877 tracker.set_suppress_append_ws (true);
2878 }
2879 tracker.add_completions (std::move (fn_list));
2880 }
2881 }
2882
2883 /* Helper for linespec_complete_label. Find labels that match
2884 LABEL_NAME in the function symbols listed in the PARSER, and add
2885 them to the tracker. */
2886
2887 static void
2888 complete_label (completion_tracker &tracker,
2889 linespec_parser *parser,
2890 const char *label_name)
2891 {
2892 std::vector<block_symbol> label_function_symbols;
2893 std::vector<block_symbol> *labels
2894 = find_label_symbols (PARSER_STATE (parser),
2895 PARSER_RESULT (parser)->function_symbols,
2896 &label_function_symbols,
2897 label_name, true);
2898
2899 if (labels != nullptr)
2900 {
2901 for (const auto &label : *labels)
2902 {
2903 char *match = xstrdup (label.symbol->search_name ());
2904 tracker.add_completion (gdb::unique_xmalloc_ptr<char> (match));
2905 }
2906 delete labels;
2907 }
2908 }
2909
2910 /* See linespec.h. */
2911
2912 void
2913 linespec_complete_label (completion_tracker &tracker,
2914 const struct language_defn *language,
2915 const char *source_filename,
2916 const char *function_name,
2917 symbol_name_match_type func_name_match_type,
2918 const char *label_name)
2919 {
2920 linespec_parser parser (0, language, NULL, NULL, 0, NULL);
2921
2922 line_offset unknown_offset = { 0, LINE_OFFSET_UNKNOWN };
2923
2924 try
2925 {
2926 convert_explicit_location_to_linespec (PARSER_STATE (&parser),
2927 PARSER_RESULT (&parser),
2928 source_filename,
2929 function_name,
2930 func_name_match_type,
2931 NULL, unknown_offset);
2932 }
2933 catch (const gdb_exception_error &ex)
2934 {
2935 return;
2936 }
2937
2938 complete_label (tracker, &parser, label_name);
2939 }
2940
2941 /* See description in linespec.h. */
2942
2943 void
2944 linespec_complete (completion_tracker &tracker, const char *text,
2945 symbol_name_match_type match_type)
2946 {
2947 const char *orig = text;
2948
2949 linespec_parser parser (0, current_language, NULL, NULL, 0, NULL);
2950 parser.lexer.saved_arg = text;
2951 PARSER_EXPLICIT (&parser)->func_name_match_type = match_type;
2952 PARSER_STREAM (&parser) = text;
2953
2954 parser.completion_tracker = &tracker;
2955 PARSER_STATE (&parser)->is_linespec = 1;
2956
2957 /* Parse as much as possible. parser.completion_word will hold
2958 furthest completion point we managed to parse to. */
2959 try
2960 {
2961 parse_linespec (&parser, text, match_type);
2962 }
2963 catch (const gdb_exception_error &except)
2964 {
2965 }
2966
2967 if (parser.completion_quote_char != '\0'
2968 && parser.completion_quote_end != NULL
2969 && parser.completion_quote_end[1] == '\0')
2970 {
2971 /* If completing a quoted string with the cursor right at
2972 terminating quote char, complete the completion word without
2973 interpretation, so that readline advances the cursor one
2974 whitespace past the quote, even if there's no match. This
2975 makes these cases behave the same:
2976
2977 before: "b function()"
2978 after: "b function() "
2979
2980 before: "b 'function()'"
2981 after: "b 'function()' "
2982
2983 and trusts the user in this case:
2984
2985 before: "b 'not_loaded_function_yet()'"
2986 after: "b 'not_loaded_function_yet()' "
2987 */
2988 parser.complete_what = linespec_complete_what::NOTHING;
2989 parser.completion_quote_char = '\0';
2990
2991 gdb::unique_xmalloc_ptr<char> text_copy
2992 (xstrdup (parser.completion_word));
2993 tracker.add_completion (std::move (text_copy));
2994 }
2995
2996 tracker.set_quote_char (parser.completion_quote_char);
2997
2998 if (parser.complete_what == linespec_complete_what::LABEL)
2999 {
3000 parser.complete_what = linespec_complete_what::NOTHING;
3001
3002 const char *func_name = PARSER_EXPLICIT (&parser)->function_name;
3003
3004 std::vector<block_symbol> function_symbols;
3005 std::vector<bound_minimal_symbol> minimal_symbols;
3006 find_linespec_symbols (PARSER_STATE (&parser),
3007 PARSER_RESULT (&parser)->file_symtabs,
3008 func_name, match_type,
3009 &function_symbols, &minimal_symbols);
3010
3011 PARSER_RESULT (&parser)->function_symbols
3012 = new std::vector<block_symbol> (std::move (function_symbols));
3013 PARSER_RESULT (&parser)->minimal_symbols
3014 = new std::vector<bound_minimal_symbol> (std::move (minimal_symbols));
3015
3016 complete_label (tracker, &parser, parser.completion_word);
3017 }
3018 else if (parser.complete_what == linespec_complete_what::FUNCTION)
3019 {
3020 /* While parsing/lexing, we didn't know whether the completion
3021 word completes to a unique function/source name already or
3022 not.
3023
3024 E.g.:
3025 "b function() <tab>"
3026 may need to complete either to:
3027 "b function() const"
3028 or to:
3029 "b function() if/thread/task"
3030
3031 Or, this:
3032 "b foo t"
3033 may need to complete either to:
3034 "b foo template_fun<T>()"
3035 with "foo" being the template function's return type, or to:
3036 "b foo thread/task"
3037
3038 Or, this:
3039 "b file<TAB>"
3040 may need to complete either to a source file name:
3041 "b file.c"
3042 or this, also a filename, but a unique completion:
3043 "b file.c:"
3044 or to a function name:
3045 "b file_function"
3046
3047 Address that by completing assuming source or function, and
3048 seeing if we find a completion that matches exactly the
3049 completion word. If so, then it must be a function (see note
3050 below) and we advance the completion word to the end of input
3051 and switch to KEYWORD completion mode.
3052
3053 Note: if we find a unique completion for a source filename,
3054 then it won't match the completion word, because the LCD will
3055 contain a trailing ':'. And if we're completing at or after
3056 the ':', then complete_linespec_component won't try to
3057 complete on source filenames. */
3058
3059 const char *word = parser.completion_word;
3060
3061 complete_linespec_component (&parser, tracker,
3062 parser.completion_word,
3063 linespec_complete_what::FUNCTION,
3064 PARSER_EXPLICIT (&parser)->source_filename);
3065
3066 parser.complete_what = linespec_complete_what::NOTHING;
3067
3068 if (tracker.quote_char ())
3069 {
3070 /* The function/file name was not close-quoted, so this
3071 can't be a keyword. Note: complete_linespec_component
3072 may have swapped the original quote char for ':' when we
3073 get here, but that still indicates the same. */
3074 }
3075 else if (!tracker.have_completions ())
3076 {
3077 size_t key_start;
3078 size_t wordlen = strlen (parser.completion_word);
3079
3080 key_start
3081 = string_find_incomplete_keyword_at_end (linespec_keywords,
3082 parser.completion_word,
3083 wordlen);
3084
3085 if (key_start != -1
3086 || (wordlen > 0
3087 && parser.completion_word[wordlen - 1] == ' '))
3088 {
3089 parser.completion_word += key_start;
3090 parser.complete_what = linespec_complete_what::KEYWORD;
3091 }
3092 }
3093 else if (tracker.completes_to_completion_word (word))
3094 {
3095 /* Skip the function and complete on keywords. */
3096 parser.completion_word += strlen (word);
3097 parser.complete_what = linespec_complete_what::KEYWORD;
3098 tracker.discard_completions ();
3099 }
3100 }
3101
3102 tracker.advance_custom_word_point_by (parser.completion_word - orig);
3103
3104 complete_linespec_component (&parser, tracker,
3105 parser.completion_word,
3106 parser.complete_what,
3107 PARSER_EXPLICIT (&parser)->source_filename);
3108
3109 /* If we're past the "filename:function:label:offset" linespec, and
3110 didn't find any match, then assume the user might want to create
3111 a pending breakpoint anyway and offer the keyword
3112 completions. */
3113 if (!parser.completion_quote_char
3114 && (parser.complete_what == linespec_complete_what::FUNCTION
3115 || parser.complete_what == linespec_complete_what::LABEL
3116 || parser.complete_what == linespec_complete_what::NOTHING)
3117 && !tracker.have_completions ())
3118 {
3119 const char *end
3120 = parser.completion_word + strlen (parser.completion_word);
3121
3122 if (end > orig && end[-1] == ' ')
3123 {
3124 tracker.advance_custom_word_point_by (end - parser.completion_word);
3125
3126 complete_linespec_component (&parser, tracker, end,
3127 linespec_complete_what::KEYWORD,
3128 NULL);
3129 }
3130 }
3131 }
3132
3133 /* A helper function for decode_line_full and decode_line_1 to
3134 turn LOCATION into std::vector<symtab_and_line>. */
3135
3136 static std::vector<symtab_and_line>
3137 event_location_to_sals (linespec_parser *parser,
3138 const struct event_location *location)
3139 {
3140 std::vector<symtab_and_line> result;
3141
3142 switch (event_location_type (location))
3143 {
3144 case LINESPEC_LOCATION:
3145 {
3146 PARSER_STATE (parser)->is_linespec = 1;
3147 try
3148 {
3149 const linespec_location *ls = get_linespec_location (location);
3150 result = parse_linespec (parser,
3151 ls->spec_string, ls->match_type);
3152 }
3153 catch (const gdb_exception_error &except)
3154 {
3155 throw;
3156 }
3157 }
3158 break;
3159
3160 case ADDRESS_LOCATION:
3161 {
3162 const char *addr_string = get_address_string_location (location);
3163 CORE_ADDR addr = get_address_location (location);
3164
3165 if (addr_string != NULL)
3166 {
3167 addr = linespec_expression_to_pc (&addr_string);
3168 if (PARSER_STATE (parser)->canonical != NULL)
3169 PARSER_STATE (parser)->canonical->location
3170 = copy_event_location (location);
3171 }
3172
3173 result = convert_address_location_to_sals (PARSER_STATE (parser),
3174 addr);
3175 }
3176 break;
3177
3178 case EXPLICIT_LOCATION:
3179 {
3180 const struct explicit_location *explicit_loc;
3181
3182 explicit_loc = get_explicit_location_const (location);
3183 result = convert_explicit_location_to_sals (PARSER_STATE (parser),
3184 PARSER_RESULT (parser),
3185 explicit_loc);
3186 }
3187 break;
3188
3189 case PROBE_LOCATION:
3190 /* Probes are handled by their own decoders. */
3191 gdb_assert_not_reached ("attempt to decode probe location");
3192 break;
3193
3194 default:
3195 gdb_assert_not_reached ("unhandled event location type");
3196 }
3197
3198 return result;
3199 }
3200
3201 /* See linespec.h. */
3202
3203 void
3204 decode_line_full (const struct event_location *location, int flags,
3205 struct program_space *search_pspace,
3206 struct symtab *default_symtab,
3207 int default_line, struct linespec_result *canonical,
3208 const char *select_mode,
3209 const char *filter)
3210 {
3211 std::vector<const char *> filters;
3212 struct linespec_state *state;
3213
3214 gdb_assert (canonical != NULL);
3215 /* The filter only makes sense for 'all'. */
3216 gdb_assert (filter == NULL || select_mode == multiple_symbols_all);
3217 gdb_assert (select_mode == NULL
3218 || select_mode == multiple_symbols_all
3219 || select_mode == multiple_symbols_ask
3220 || select_mode == multiple_symbols_cancel);
3221 gdb_assert ((flags & DECODE_LINE_LIST_MODE) == 0);
3222
3223 linespec_parser parser (flags, current_language,
3224 search_pspace, default_symtab,
3225 default_line, canonical);
3226
3227 scoped_restore_current_program_space restore_pspace;
3228
3229 std::vector<symtab_and_line> result = event_location_to_sals (&parser,
3230 location);
3231 state = PARSER_STATE (&parser);
3232
3233 gdb_assert (result.size () == 1 || canonical->pre_expanded);
3234 canonical->pre_expanded = 1;
3235
3236 /* Arrange for allocated canonical names to be freed. */
3237 std::vector<gdb::unique_xmalloc_ptr<char>> hold_names;
3238 for (int i = 0; i < result.size (); ++i)
3239 {
3240 gdb_assert (state->canonical_names[i].suffix != NULL);
3241 hold_names.emplace_back (state->canonical_names[i].suffix);
3242 }
3243
3244 if (select_mode == NULL)
3245 {
3246 if (top_level_interpreter ()->interp_ui_out ()->is_mi_like_p ())
3247 select_mode = multiple_symbols_all;
3248 else
3249 select_mode = multiple_symbols_select_mode ();
3250 }
3251
3252 if (select_mode == multiple_symbols_all)
3253 {
3254 if (filter != NULL)
3255 {
3256 filters.push_back (filter);
3257 filter_results (state, &result, filters);
3258 }
3259 else
3260 convert_results_to_lsals (state, &result);
3261 }
3262 else
3263 decode_line_2 (state, &result, select_mode);
3264 }
3265
3266 /* See linespec.h. */
3267
3268 std::vector<symtab_and_line>
3269 decode_line_1 (const struct event_location *location, int flags,
3270 struct program_space *search_pspace,
3271 struct symtab *default_symtab,
3272 int default_line)
3273 {
3274 linespec_parser parser (flags, current_language,
3275 search_pspace, default_symtab,
3276 default_line, NULL);
3277
3278 scoped_restore_current_program_space restore_pspace;
3279
3280 return event_location_to_sals (&parser, location);
3281 }
3282
3283 /* See linespec.h. */
3284
3285 std::vector<symtab_and_line>
3286 decode_line_with_current_source (const char *string, int flags)
3287 {
3288 if (string == 0)
3289 error (_("Empty line specification."));
3290
3291 /* We use whatever is set as the current source line. We do not try
3292 and get a default source symtab+line or it will recursively call us! */
3293 symtab_and_line cursal = get_current_source_symtab_and_line ();
3294
3295 event_location_up location = string_to_event_location (&string,
3296 current_language);
3297 std::vector<symtab_and_line> sals
3298 = decode_line_1 (location.get (), flags, NULL, cursal.symtab, cursal.line);
3299
3300 if (*string)
3301 error (_("Junk at end of line specification: %s"), string);
3302
3303 return sals;
3304 }
3305
3306 /* See linespec.h. */
3307
3308 std::vector<symtab_and_line>
3309 decode_line_with_last_displayed (const char *string, int flags)
3310 {
3311 if (string == 0)
3312 error (_("Empty line specification."));
3313
3314 event_location_up location = string_to_event_location (&string,
3315 current_language);
3316 std::vector<symtab_and_line> sals
3317 = (last_displayed_sal_is_valid ()
3318 ? decode_line_1 (location.get (), flags, NULL,
3319 get_last_displayed_symtab (),
3320 get_last_displayed_line ())
3321 : decode_line_1 (location.get (), flags, NULL, NULL, 0));
3322
3323 if (*string)
3324 error (_("Junk at end of line specification: %s"), string);
3325
3326 return sals;
3327 }
3328
3329 \f
3330
3331 /* First, some functions to initialize stuff at the beginning of the
3332 function. */
3333
3334 static void
3335 initialize_defaults (struct symtab **default_symtab, int *default_line)
3336 {
3337 if (*default_symtab == 0)
3338 {
3339 /* Use whatever we have for the default source line. We don't use
3340 get_current_or_default_symtab_and_line as it can recurse and call
3341 us back! */
3342 struct symtab_and_line cursal =
3343 get_current_source_symtab_and_line ();
3344
3345 *default_symtab = cursal.symtab;
3346 *default_line = cursal.line;
3347 }
3348 }
3349
3350 \f
3351
3352 /* Evaluate the expression pointed to by EXP_PTR into a CORE_ADDR,
3353 advancing EXP_PTR past any parsed text. */
3354
3355 CORE_ADDR
3356 linespec_expression_to_pc (const char **exp_ptr)
3357 {
3358 if (current_program_space->executing_startup)
3359 /* The error message doesn't really matter, because this case
3360 should only hit during breakpoint reset. */
3361 throw_error (NOT_FOUND_ERROR, _("cannot evaluate expressions while "
3362 "program space is in startup"));
3363
3364 (*exp_ptr)++;
3365 return value_as_address (parse_to_comma_and_eval (exp_ptr));
3366 }
3367
3368 \f
3369
3370 /* Here's where we recognise an Objective-C Selector. An Objective C
3371 selector may be implemented by more than one class, therefore it
3372 may represent more than one method/function. This gives us a
3373 situation somewhat analogous to C++ overloading. If there's more
3374 than one method that could represent the selector, then use some of
3375 the existing C++ code to let the user choose one. */
3376
3377 static std::vector<symtab_and_line>
3378 decode_objc (struct linespec_state *self, linespec_p ls, const char *arg)
3379 {
3380 struct collect_info info;
3381 std::vector<const char *> symbol_names;
3382 const char *new_argptr;
3383
3384 info.state = self;
3385 std::vector<symtab *> symtabs;
3386 symtabs.push_back (nullptr);
3387
3388 info.file_symtabs = &symtabs;
3389
3390 std::vector<block_symbol> symbols;
3391 info.result.symbols = &symbols;
3392 std::vector<bound_minimal_symbol> minimal_symbols;
3393 info.result.minimal_symbols = &minimal_symbols;
3394
3395 new_argptr = find_imps (arg, &symbol_names);
3396 if (symbol_names.empty ())
3397 return {};
3398
3399 add_all_symbol_names_from_pspace (&info, NULL, symbol_names,
3400 FUNCTIONS_DOMAIN);
3401
3402 std::vector<symtab_and_line> values;
3403 if (!symbols.empty () || !minimal_symbols.empty ())
3404 {
3405 char *saved_arg;
3406
3407 saved_arg = (char *) alloca (new_argptr - arg + 1);
3408 memcpy (saved_arg, arg, new_argptr - arg);
3409 saved_arg[new_argptr - arg] = '\0';
3410
3411 ls->explicit_loc.function_name = xstrdup (saved_arg);
3412 ls->function_symbols
3413 = new std::vector<block_symbol> (std::move (symbols));
3414 ls->minimal_symbols
3415 = new std::vector<bound_minimal_symbol> (std::move (minimal_symbols));
3416 values = convert_linespec_to_sals (self, ls);
3417
3418 if (self->canonical)
3419 {
3420 std::string holder;
3421 const char *str;
3422
3423 self->canonical->pre_expanded = 1;
3424
3425 if (ls->explicit_loc.source_filename)
3426 {
3427 holder = string_printf ("%s:%s",
3428 ls->explicit_loc.source_filename,
3429 saved_arg);
3430 str = holder.c_str ();
3431 }
3432 else
3433 str = saved_arg;
3434
3435 self->canonical->location
3436 = new_linespec_location (&str, symbol_name_match_type::FULL);
3437 }
3438 }
3439
3440 return values;
3441 }
3442
3443 namespace {
3444
3445 /* A function object that serves as symbol_found_callback_ftype
3446 callback for iterate_over_symbols. This is used by
3447 lookup_prefix_sym to collect type symbols. */
3448 class decode_compound_collector
3449 {
3450 public:
3451 decode_compound_collector ()
3452 {
3453 m_unique_syms = htab_create_alloc (1, htab_hash_pointer,
3454 htab_eq_pointer, NULL,
3455 xcalloc, xfree);
3456 }
3457
3458 ~decode_compound_collector ()
3459 {
3460 if (m_unique_syms != NULL)
3461 htab_delete (m_unique_syms);
3462 }
3463
3464 /* Return all symbols collected. */
3465 std::vector<block_symbol> release_symbols ()
3466 {
3467 return std::move (m_symbols);
3468 }
3469
3470 /* Callable as a symbol_found_callback_ftype callback. */
3471 bool operator () (block_symbol *bsym);
3472
3473 private:
3474 /* A hash table of all symbols we found. We use this to avoid
3475 adding any symbol more than once. */
3476 htab_t m_unique_syms;
3477
3478 /* The result vector. */
3479 std::vector<block_symbol> m_symbols;
3480 };
3481
3482 bool
3483 decode_compound_collector::operator () (block_symbol *bsym)
3484 {
3485 void **slot;
3486 struct type *t;
3487 struct symbol *sym = bsym->symbol;
3488
3489 if (SYMBOL_CLASS (sym) != LOC_TYPEDEF)
3490 return true; /* Continue iterating. */
3491
3492 t = SYMBOL_TYPE (sym);
3493 t = check_typedef (t);
3494 if (t->code () != TYPE_CODE_STRUCT
3495 && t->code () != TYPE_CODE_UNION
3496 && t->code () != TYPE_CODE_NAMESPACE)
3497 return true; /* Continue iterating. */
3498
3499 slot = htab_find_slot (m_unique_syms, sym, INSERT);
3500 if (!*slot)
3501 {
3502 *slot = sym;
3503 m_symbols.push_back (*bsym);
3504 }
3505
3506 return true; /* Continue iterating. */
3507 }
3508
3509 } // namespace
3510
3511 /* Return any symbols corresponding to CLASS_NAME in FILE_SYMTABS. */
3512
3513 static std::vector<block_symbol>
3514 lookup_prefix_sym (struct linespec_state *state,
3515 std::vector<symtab *> *file_symtabs,
3516 const char *class_name)
3517 {
3518 decode_compound_collector collector;
3519
3520 lookup_name_info lookup_name (class_name, symbol_name_match_type::FULL);
3521
3522 for (const auto &elt : *file_symtabs)
3523 {
3524 if (elt == nullptr)
3525 {
3526 iterate_over_all_matching_symtabs (state, lookup_name,
3527 STRUCT_DOMAIN, ALL_DOMAIN,
3528 NULL, false, collector);
3529 iterate_over_all_matching_symtabs (state, lookup_name,
3530 VAR_DOMAIN, ALL_DOMAIN,
3531 NULL, false, collector);
3532 }
3533 else
3534 {
3535 /* Program spaces that are executing startup should have
3536 been filtered out earlier. */
3537 gdb_assert (!SYMTAB_PSPACE (elt)->executing_startup);
3538 set_current_program_space (SYMTAB_PSPACE (elt));
3539 iterate_over_file_blocks (elt, lookup_name, STRUCT_DOMAIN, collector);
3540 iterate_over_file_blocks (elt, lookup_name, VAR_DOMAIN, collector);
3541 }
3542 }
3543
3544 return collector.release_symbols ();
3545 }
3546
3547 /* A std::sort comparison function for symbols. The resulting order does
3548 not actually matter; we just need to be able to sort them so that
3549 symbols with the same program space end up next to each other. */
3550
3551 static bool
3552 compare_symbols (const block_symbol &a, const block_symbol &b)
3553 {
3554 uintptr_t uia, uib;
3555
3556 uia = (uintptr_t) SYMTAB_PSPACE (symbol_symtab (a.symbol));
3557 uib = (uintptr_t) SYMTAB_PSPACE (symbol_symtab (b.symbol));
3558
3559 if (uia < uib)
3560 return true;
3561 if (uia > uib)
3562 return false;
3563
3564 uia = (uintptr_t) a.symbol;
3565 uib = (uintptr_t) b.symbol;
3566
3567 if (uia < uib)
3568 return true;
3569
3570 return false;
3571 }
3572
3573 /* Like compare_symbols but for minimal symbols. */
3574
3575 static bool
3576 compare_msymbols (const bound_minimal_symbol &a, const bound_minimal_symbol &b)
3577 {
3578 uintptr_t uia, uib;
3579
3580 uia = (uintptr_t) a.objfile->pspace;
3581 uib = (uintptr_t) a.objfile->pspace;
3582
3583 if (uia < uib)
3584 return true;
3585 if (uia > uib)
3586 return false;
3587
3588 uia = (uintptr_t) a.minsym;
3589 uib = (uintptr_t) b.minsym;
3590
3591 if (uia < uib)
3592 return true;
3593
3594 return false;
3595 }
3596
3597 /* Look for all the matching instances of each symbol in NAMES. Only
3598 instances from PSPACE are considered; other program spaces are
3599 handled by our caller. If PSPACE is NULL, then all program spaces
3600 are considered. Results are stored into INFO. */
3601
3602 static void
3603 add_all_symbol_names_from_pspace (struct collect_info *info,
3604 struct program_space *pspace,
3605 const std::vector<const char *> &names,
3606 enum search_domain search_domain)
3607 {
3608 for (const char *iter : names)
3609 add_matching_symbols_to_info (iter,
3610 symbol_name_match_type::FULL,
3611 search_domain, info, pspace);
3612 }
3613
3614 static void
3615 find_superclass_methods (std::vector<struct type *> &&superclasses,
3616 const char *name, enum language name_lang,
3617 std::vector<const char *> *result_names)
3618 {
3619 size_t old_len = result_names->size ();
3620
3621 while (1)
3622 {
3623 std::vector<struct type *> new_supers;
3624
3625 for (type *t : superclasses)
3626 find_methods (t, name_lang, name, result_names, &new_supers);
3627
3628 if (result_names->size () != old_len || new_supers.empty ())
3629 break;
3630
3631 superclasses = std::move (new_supers);
3632 }
3633 }
3634
3635 /* This finds the method METHOD_NAME in the class CLASS_NAME whose type is
3636 given by one of the symbols in SYM_CLASSES. Matches are returned
3637 in SYMBOLS (for debug symbols) and MINSYMS (for minimal symbols). */
3638
3639 static void
3640 find_method (struct linespec_state *self, std::vector<symtab *> *file_symtabs,
3641 const char *class_name, const char *method_name,
3642 std::vector<block_symbol> *sym_classes,
3643 std::vector<block_symbol> *symbols,
3644 std::vector<bound_minimal_symbol> *minsyms)
3645 {
3646 size_t last_result_len;
3647 std::vector<struct type *> superclass_vec;
3648 std::vector<const char *> result_names;
3649 struct collect_info info;
3650
3651 /* Sort symbols so that symbols with the same program space are next
3652 to each other. */
3653 std::sort (sym_classes->begin (), sym_classes->end (),
3654 compare_symbols);
3655
3656 info.state = self;
3657 info.file_symtabs = file_symtabs;
3658 info.result.symbols = symbols;
3659 info.result.minimal_symbols = minsyms;
3660
3661 /* Iterate over all the types, looking for the names of existing
3662 methods matching METHOD_NAME. If we cannot find a direct method in a
3663 given program space, then we consider inherited methods; this is
3664 not ideal (ideal would be to respect C++ hiding rules), but it
3665 seems good enough and is what GDB has historically done. We only
3666 need to collect the names because later we find all symbols with
3667 those names. This loop is written in a somewhat funny way
3668 because we collect data across the program space before deciding
3669 what to do. */
3670 last_result_len = 0;
3671 for (const auto &elt : *sym_classes)
3672 {
3673 struct type *t;
3674 struct program_space *pspace;
3675 struct symbol *sym = elt.symbol;
3676 unsigned int ix = &elt - &*sym_classes->begin ();
3677
3678 /* Program spaces that are executing startup should have
3679 been filtered out earlier. */
3680 pspace = SYMTAB_PSPACE (symbol_symtab (sym));
3681 gdb_assert (!pspace->executing_startup);
3682 set_current_program_space (pspace);
3683 t = check_typedef (SYMBOL_TYPE (sym));
3684 find_methods (t, sym->language (),
3685 method_name, &result_names, &superclass_vec);
3686
3687 /* Handle all items from a single program space at once; and be
3688 sure not to miss the last batch. */
3689 if (ix == sym_classes->size () - 1
3690 || (pspace
3691 != SYMTAB_PSPACE (symbol_symtab (sym_classes->at (ix + 1).symbol))))
3692 {
3693 /* If we did not find a direct implementation anywhere in
3694 this program space, consider superclasses. */
3695 if (result_names.size () == last_result_len)
3696 find_superclass_methods (std::move (superclass_vec), method_name,
3697 sym->language (), &result_names);
3698
3699 /* We have a list of candidate symbol names, so now we
3700 iterate over the symbol tables looking for all
3701 matches in this pspace. */
3702 add_all_symbol_names_from_pspace (&info, pspace, result_names,
3703 FUNCTIONS_DOMAIN);
3704
3705 superclass_vec.clear ();
3706 last_result_len = result_names.size ();
3707 }
3708 }
3709
3710 if (!symbols->empty () || !minsyms->empty ())
3711 return;
3712
3713 /* Throw an NOT_FOUND_ERROR. This will be caught by the caller
3714 and other attempts to locate the symbol will be made. */
3715 throw_error (NOT_FOUND_ERROR, _("see caller, this text doesn't matter"));
3716 }
3717
3718 \f
3719
3720 namespace {
3721
3722 /* This function object is a callback for iterate_over_symtabs, used
3723 when collecting all matching symtabs. */
3724
3725 class symtab_collector
3726 {
3727 public:
3728 symtab_collector ()
3729 {
3730 m_symtab_table = htab_create (1, htab_hash_pointer, htab_eq_pointer,
3731 NULL);
3732 }
3733
3734 ~symtab_collector ()
3735 {
3736 if (m_symtab_table != NULL)
3737 htab_delete (m_symtab_table);
3738 }
3739
3740 /* Callable as a symbol_found_callback_ftype callback. */
3741 bool operator () (symtab *sym);
3742
3743 /* Return an rvalue reference to the collected symtabs. */
3744 std::vector<symtab *> &&release_symtabs ()
3745 {
3746 return std::move (m_symtabs);
3747 }
3748
3749 private:
3750 /* The result vector of symtabs. */
3751 std::vector<symtab *> m_symtabs;
3752
3753 /* This is used to ensure the symtabs are unique. */
3754 htab_t m_symtab_table;
3755 };
3756
3757 bool
3758 symtab_collector::operator () (struct symtab *symtab)
3759 {
3760 void **slot;
3761
3762 slot = htab_find_slot (m_symtab_table, symtab, INSERT);
3763 if (!*slot)
3764 {
3765 *slot = symtab;
3766 m_symtabs.push_back (symtab);
3767 }
3768
3769 return false;
3770 }
3771
3772 } // namespace
3773
3774 /* Given a file name, return a list of all matching symtabs. If
3775 SEARCH_PSPACE is not NULL, the search is restricted to just that
3776 program space. */
3777
3778 static std::vector<symtab *>
3779 collect_symtabs_from_filename (const char *file,
3780 struct program_space *search_pspace)
3781 {
3782 symtab_collector collector;
3783
3784 /* Find that file's data. */
3785 if (search_pspace == NULL)
3786 {
3787 for (struct program_space *pspace : program_spaces)
3788 {
3789 if (pspace->executing_startup)
3790 continue;
3791
3792 set_current_program_space (pspace);
3793 iterate_over_symtabs (file, collector);
3794 }
3795 }
3796 else
3797 {
3798 set_current_program_space (search_pspace);
3799 iterate_over_symtabs (file, collector);
3800 }
3801
3802 return collector.release_symtabs ();
3803 }
3804
3805 /* Return all the symtabs associated to the FILENAME. If SEARCH_PSPACE is
3806 not NULL, the search is restricted to just that program space. */
3807
3808 static std::vector<symtab *>
3809 symtabs_from_filename (const char *filename,
3810 struct program_space *search_pspace)
3811 {
3812 std::vector<symtab *> result
3813 = collect_symtabs_from_filename (filename, search_pspace);
3814
3815 if (result.empty ())
3816 {
3817 if (!have_full_symbols () && !have_partial_symbols ())
3818 throw_error (NOT_FOUND_ERROR,
3819 _("No symbol table is loaded. "
3820 "Use the \"file\" command."));
3821 source_file_not_found_error (filename);
3822 }
3823
3824 return result;
3825 }
3826
3827 /* See symtab.h. */
3828
3829 void
3830 symbol_searcher::find_all_symbols (const std::string &name,
3831 const struct language_defn *language,
3832 enum search_domain search_domain,
3833 std::vector<symtab *> *search_symtabs,
3834 struct program_space *search_pspace)
3835 {
3836 symbol_searcher_collect_info info;
3837 struct linespec_state state;
3838
3839 memset (&state, 0, sizeof (state));
3840 state.language = language;
3841 info.state = &state;
3842
3843 info.result.symbols = &m_symbols;
3844 info.result.minimal_symbols = &m_minimal_symbols;
3845 std::vector<symtab *> all_symtabs;
3846 if (search_symtabs == nullptr)
3847 {
3848 all_symtabs.push_back (nullptr);
3849 search_symtabs = &all_symtabs;
3850 }
3851 info.file_symtabs = search_symtabs;
3852
3853 add_matching_symbols_to_info (name.c_str (), symbol_name_match_type::WILD,
3854 search_domain, &info, search_pspace);
3855 }
3856
3857 /* Look up a function symbol named NAME in symtabs FILE_SYMTABS. Matching
3858 debug symbols are returned in SYMBOLS. Matching minimal symbols are
3859 returned in MINSYMS. */
3860
3861 static void
3862 find_function_symbols (struct linespec_state *state,
3863 std::vector<symtab *> *file_symtabs, const char *name,
3864 symbol_name_match_type name_match_type,
3865 std::vector<block_symbol> *symbols,
3866 std::vector<bound_minimal_symbol> *minsyms)
3867 {
3868 struct collect_info info;
3869 std::vector<const char *> symbol_names;
3870
3871 info.state = state;
3872 info.result.symbols = symbols;
3873 info.result.minimal_symbols = minsyms;
3874 info.file_symtabs = file_symtabs;
3875
3876 /* Try NAME as an Objective-C selector. */
3877 find_imps (name, &symbol_names);
3878 if (!symbol_names.empty ())
3879 add_all_symbol_names_from_pspace (&info, state->search_pspace,
3880 symbol_names, FUNCTIONS_DOMAIN);
3881 else
3882 add_matching_symbols_to_info (name, name_match_type, FUNCTIONS_DOMAIN,
3883 &info, state->search_pspace);
3884 }
3885
3886 /* Find all symbols named NAME in FILE_SYMTABS, returning debug symbols
3887 in SYMBOLS and minimal symbols in MINSYMS. */
3888
3889 static void
3890 find_linespec_symbols (struct linespec_state *state,
3891 std::vector<symtab *> *file_symtabs,
3892 const char *lookup_name,
3893 symbol_name_match_type name_match_type,
3894 std::vector <block_symbol> *symbols,
3895 std::vector<bound_minimal_symbol> *minsyms)
3896 {
3897 gdb::unique_xmalloc_ptr<char> canon
3898 = cp_canonicalize_string_no_typedefs (lookup_name);
3899 if (canon != nullptr)
3900 lookup_name = canon.get ();
3901
3902 /* It's important to not call expand_symtabs_matching unnecessarily
3903 as it can really slow things down (by unnecessarily expanding
3904 potentially 1000s of symtabs, which when debugging some apps can
3905 cost 100s of seconds). Avoid this to some extent by *first* calling
3906 find_function_symbols, and only if that doesn't find anything
3907 *then* call find_method. This handles two important cases:
3908 1) break (anonymous namespace)::foo
3909 2) break class::method where method is in class (and not a baseclass) */
3910
3911 find_function_symbols (state, file_symtabs, lookup_name,
3912 name_match_type, symbols, minsyms);
3913
3914 /* If we were unable to locate a symbol of the same name, try dividing
3915 the name into class and method names and searching the class and its
3916 baseclasses. */
3917 if (symbols->empty () && minsyms->empty ())
3918 {
3919 std::string klass, method;
3920 const char *last, *p, *scope_op;
3921
3922 /* See if we can find a scope operator and break this symbol
3923 name into namespaces${SCOPE_OPERATOR}class_name and method_name. */
3924 scope_op = "::";
3925 p = find_toplevel_string (lookup_name, scope_op);
3926
3927 last = NULL;
3928 while (p != NULL)
3929 {
3930 last = p;
3931 p = find_toplevel_string (p + strlen (scope_op), scope_op);
3932 }
3933
3934 /* If no scope operator was found, there is nothing more we can do;
3935 we already attempted to lookup the entire name as a symbol
3936 and failed. */
3937 if (last == NULL)
3938 return;
3939
3940 /* LOOKUP_NAME points to the class name.
3941 LAST points to the method name. */
3942 klass = std::string (lookup_name, last - lookup_name);
3943
3944 /* Skip past the scope operator. */
3945 last += strlen (scope_op);
3946 method = last;
3947
3948 /* Find a list of classes named KLASS. */
3949 std::vector<block_symbol> classes
3950 = lookup_prefix_sym (state, file_symtabs, klass.c_str ());
3951 if (!classes.empty ())
3952 {
3953 /* Now locate a list of suitable methods named METHOD. */
3954 try
3955 {
3956 find_method (state, file_symtabs,
3957 klass.c_str (), method.c_str (),
3958 &classes, symbols, minsyms);
3959 }
3960
3961 /* If successful, we're done. If NOT_FOUND_ERROR
3962 was not thrown, rethrow the exception that we did get. */
3963 catch (const gdb_exception_error &except)
3964 {
3965 if (except.error != NOT_FOUND_ERROR)
3966 throw;
3967 }
3968 }
3969 }
3970 }
3971
3972 /* Helper for find_label_symbols. Find all labels that match name
3973 NAME in BLOCK. Return all labels that match in FUNCTION_SYMBOLS.
3974 Return the actual function symbol in which the label was found in
3975 LABEL_FUNC_RET. If COMPLETION_MODE is true, then NAME is
3976 interpreted as a label name prefix. Otherwise, only a label named
3977 exactly NAME match. */
3978
3979 static void
3980 find_label_symbols_in_block (const struct block *block,
3981 const char *name, struct symbol *fn_sym,
3982 bool completion_mode,
3983 std::vector<block_symbol> *result,
3984 std::vector<block_symbol> *label_funcs_ret)
3985 {
3986 if (completion_mode)
3987 {
3988 struct block_iterator iter;
3989 struct symbol *sym;
3990 size_t name_len = strlen (name);
3991
3992 int (*cmp) (const char *, const char *, size_t);
3993 cmp = case_sensitivity == case_sensitive_on ? strncmp : strncasecmp;
3994
3995 ALL_BLOCK_SYMBOLS (block, iter, sym)
3996 {
3997 if (symbol_matches_domain (sym->language (),
3998 SYMBOL_DOMAIN (sym), LABEL_DOMAIN)
3999 && cmp (sym->search_name (), name, name_len) == 0)
4000 {
4001 result->push_back ({sym, block});
4002 label_funcs_ret->push_back ({fn_sym, block});
4003 }
4004 }
4005 }
4006 else
4007 {
4008 struct block_symbol label_sym
4009 = lookup_symbol (name, block, LABEL_DOMAIN, 0);
4010
4011 if (label_sym.symbol != NULL)
4012 {
4013 result->push_back (label_sym);
4014 label_funcs_ret->push_back ({fn_sym, block});
4015 }
4016 }
4017 }
4018
4019 /* Return all labels that match name NAME in FUNCTION_SYMBOLS or NULL
4020 if no matches were found.
4021
4022 Return the actual function symbol in which the label was found in
4023 LABEL_FUNC_RET. If COMPLETION_MODE is true, then NAME is
4024 interpreted as a label name prefix. Otherwise, only labels named
4025 exactly NAME match. */
4026
4027
4028 static std::vector<block_symbol> *
4029 find_label_symbols (struct linespec_state *self,
4030 std::vector<block_symbol> *function_symbols,
4031 std::vector<block_symbol> *label_funcs_ret,
4032 const char *name,
4033 bool completion_mode)
4034 {
4035 const struct block *block;
4036 struct symbol *fn_sym;
4037 std::vector<block_symbol> result;
4038
4039 if (function_symbols == NULL)
4040 {
4041 set_current_program_space (self->program_space);
4042 block = get_current_search_block ();
4043
4044 for (;
4045 block && !BLOCK_FUNCTION (block);
4046 block = BLOCK_SUPERBLOCK (block))
4047 ;
4048 if (!block)
4049 return NULL;
4050 fn_sym = BLOCK_FUNCTION (block);
4051
4052 find_label_symbols_in_block (block, name, fn_sym, completion_mode,
4053 &result, label_funcs_ret);
4054 }
4055 else
4056 {
4057 for (const auto &elt : *function_symbols)
4058 {
4059 fn_sym = elt.symbol;
4060 set_current_program_space (SYMTAB_PSPACE (symbol_symtab (fn_sym)));
4061 block = SYMBOL_BLOCK_VALUE (fn_sym);
4062
4063 find_label_symbols_in_block (block, name, fn_sym, completion_mode,
4064 &result, label_funcs_ret);
4065 }
4066 }
4067
4068 if (!result.empty ())
4069 return new std::vector<block_symbol> (std::move (result));
4070 return nullptr;
4071 }
4072
4073 \f
4074
4075 /* A helper for create_sals_line_offset that handles the 'list_mode' case. */
4076
4077 static std::vector<symtab_and_line>
4078 decode_digits_list_mode (struct linespec_state *self,
4079 linespec_p ls,
4080 struct symtab_and_line val)
4081 {
4082 gdb_assert (self->list_mode);
4083
4084 std::vector<symtab_and_line> values;
4085
4086 for (const auto &elt : *ls->file_symtabs)
4087 {
4088 /* The logic above should ensure this. */
4089 gdb_assert (elt != NULL);
4090
4091 set_current_program_space (SYMTAB_PSPACE (elt));
4092
4093 /* Simplistic search just for the list command. */
4094 val.symtab = find_line_symtab (elt, val.line, NULL, NULL);
4095 if (val.symtab == NULL)
4096 val.symtab = elt;
4097 val.pspace = SYMTAB_PSPACE (elt);
4098 val.pc = 0;
4099 val.explicit_line = true;
4100
4101 add_sal_to_sals (self, &values, &val, NULL, 0);
4102 }
4103
4104 return values;
4105 }
4106
4107 /* A helper for create_sals_line_offset that iterates over the symtabs
4108 associated with LS and returns a vector of corresponding symtab_and_line
4109 structures. */
4110
4111 static std::vector<symtab_and_line>
4112 decode_digits_ordinary (struct linespec_state *self,
4113 linespec_p ls,
4114 int line,
4115 struct linetable_entry **best_entry)
4116 {
4117 std::vector<symtab_and_line> sals;
4118 for (const auto &elt : *ls->file_symtabs)
4119 {
4120 std::vector<CORE_ADDR> pcs;
4121
4122 /* The logic above should ensure this. */
4123 gdb_assert (elt != NULL);
4124
4125 set_current_program_space (SYMTAB_PSPACE (elt));
4126
4127 pcs = find_pcs_for_symtab_line (elt, line, best_entry);
4128 for (CORE_ADDR pc : pcs)
4129 {
4130 symtab_and_line sal;
4131 sal.pspace = SYMTAB_PSPACE (elt);
4132 sal.symtab = elt;
4133 sal.line = line;
4134 sal.explicit_line = true;
4135 sal.pc = pc;
4136 sals.push_back (std::move (sal));
4137 }
4138 }
4139
4140 return sals;
4141 }
4142
4143 \f
4144
4145 /* Return the line offset represented by VARIABLE. */
4146
4147 static struct line_offset
4148 linespec_parse_variable (struct linespec_state *self, const char *variable)
4149 {
4150 int index = 0;
4151 const char *p;
4152 struct line_offset offset = {0, LINE_OFFSET_NONE};
4153
4154 p = (variable[1] == '$') ? variable + 2 : variable + 1;
4155 if (*p == '$')
4156 ++p;
4157 while (*p >= '0' && *p <= '9')
4158 ++p;
4159 if (!*p) /* Reached end of token without hitting non-digit. */
4160 {
4161 /* We have a value history reference. */
4162 struct value *val_history;
4163
4164 sscanf ((variable[1] == '$') ? variable + 2 : variable + 1, "%d", &index);
4165 val_history
4166 = access_value_history ((variable[1] == '$') ? -index : index);
4167 if (value_type (val_history)->code () != TYPE_CODE_INT)
4168 error (_("History values used in line "
4169 "specs must have integer values."));
4170 offset.offset = value_as_long (val_history);
4171 }
4172 else
4173 {
4174 /* Not all digits -- may be user variable/function or a
4175 convenience variable. */
4176 LONGEST valx;
4177 struct internalvar *ivar;
4178
4179 /* Try it as a convenience variable. If it is not a convenience
4180 variable, return and allow normal symbol lookup to occur. */
4181 ivar = lookup_only_internalvar (variable + 1);
4182 if (ivar == NULL)
4183 /* No internal variable with that name. Mark the offset
4184 as unknown to allow the name to be looked up as a symbol. */
4185 offset.sign = LINE_OFFSET_UNKNOWN;
4186 else
4187 {
4188 /* We found a valid variable name. If it is not an integer,
4189 throw an error. */
4190 if (!get_internalvar_integer (ivar, &valx))
4191 error (_("Convenience variables used in line "
4192 "specs must have integer values."));
4193 else
4194 offset.offset = valx;
4195 }
4196 }
4197
4198 return offset;
4199 }
4200 \f
4201
4202 /* We've found a minimal symbol MSYMBOL in OBJFILE to associate with our
4203 linespec; return the SAL in RESULT. This function should return SALs
4204 matching those from find_function_start_sal, otherwise false
4205 multiple-locations breakpoints could be placed. */
4206
4207 static void
4208 minsym_found (struct linespec_state *self, struct objfile *objfile,
4209 struct minimal_symbol *msymbol,
4210 std::vector<symtab_and_line> *result)
4211 {
4212 bool want_start_sal;
4213
4214 CORE_ADDR func_addr;
4215 bool is_function = msymbol_is_function (objfile, msymbol, &func_addr);
4216
4217 if (is_function)
4218 {
4219 const char *msym_name = msymbol->linkage_name ();
4220
4221 if (MSYMBOL_TYPE (msymbol) == mst_text_gnu_ifunc
4222 || MSYMBOL_TYPE (msymbol) == mst_data_gnu_ifunc)
4223 want_start_sal = gnu_ifunc_resolve_name (msym_name, &func_addr);
4224 else
4225 want_start_sal = true;
4226 }
4227
4228 symtab_and_line sal;
4229
4230 if (is_function && want_start_sal)
4231 sal = find_function_start_sal (func_addr, NULL, self->funfirstline);
4232 else
4233 {
4234 sal.objfile = objfile;
4235 sal.msymbol = msymbol;
4236 /* Store func_addr, not the minsym's address in case this was an
4237 ifunc that hasn't been resolved yet. */
4238 if (is_function)
4239 sal.pc = func_addr;
4240 else
4241 sal.pc = MSYMBOL_VALUE_ADDRESS (objfile, msymbol);
4242 sal.pspace = current_program_space;
4243 }
4244
4245 sal.section = MSYMBOL_OBJ_SECTION (objfile, msymbol);
4246
4247 if (maybe_add_address (self->addr_set, objfile->pspace, sal.pc))
4248 add_sal_to_sals (self, result, &sal, msymbol->natural_name (), 0);
4249 }
4250
4251 /* A helper function to classify a minimal_symbol_type according to
4252 priority. */
4253
4254 static int
4255 classify_mtype (enum minimal_symbol_type t)
4256 {
4257 switch (t)
4258 {
4259 case mst_file_text:
4260 case mst_file_data:
4261 case mst_file_bss:
4262 /* Intermediate priority. */
4263 return 1;
4264
4265 case mst_solib_trampoline:
4266 /* Lowest priority. */
4267 return 2;
4268
4269 default:
4270 /* Highest priority. */
4271 return 0;
4272 }
4273 }
4274
4275 /* Callback for std::sort that sorts symbols by priority. */
4276
4277 static bool
4278 compare_msyms (const bound_minimal_symbol &a, const bound_minimal_symbol &b)
4279 {
4280 enum minimal_symbol_type ta = MSYMBOL_TYPE (a.minsym);
4281 enum minimal_symbol_type tb = MSYMBOL_TYPE (b.minsym);
4282
4283 return classify_mtype (ta) < classify_mtype (tb);
4284 }
4285
4286 /* Helper for search_minsyms_for_name that adds the symbol to the
4287 result. */
4288
4289 static void
4290 add_minsym (struct minimal_symbol *minsym, struct objfile *objfile,
4291 struct symtab *symtab, int list_mode,
4292 std::vector<struct bound_minimal_symbol> *msyms)
4293 {
4294 if (symtab != NULL)
4295 {
4296 /* We're looking for a label for which we don't have debug
4297 info. */
4298 CORE_ADDR func_addr;
4299 if (msymbol_is_function (objfile, minsym, &func_addr))
4300 {
4301 symtab_and_line sal = find_pc_sect_line (func_addr, NULL, 0);
4302
4303 if (symtab != sal.symtab)
4304 return;
4305 }
4306 }
4307
4308 /* Exclude data symbols when looking for breakpoint locations. */
4309 if (!list_mode && !msymbol_is_function (objfile, minsym))
4310 return;
4311
4312 struct bound_minimal_symbol mo = {minsym, objfile};
4313 msyms->push_back (mo);
4314 return;
4315 }
4316
4317 /* Search for minimal symbols called NAME. If SEARCH_PSPACE
4318 is not NULL, the search is restricted to just that program
4319 space.
4320
4321 If SYMTAB is NULL, search all objfiles, otherwise
4322 restrict results to the given SYMTAB. */
4323
4324 static void
4325 search_minsyms_for_name (struct collect_info *info,
4326 const lookup_name_info &name,
4327 struct program_space *search_pspace,
4328 struct symtab *symtab)
4329 {
4330 std::vector<struct bound_minimal_symbol> minsyms;
4331
4332 if (symtab == NULL)
4333 {
4334 for (struct program_space *pspace : program_spaces)
4335 {
4336 if (search_pspace != NULL && search_pspace != pspace)
4337 continue;
4338 if (pspace->executing_startup)
4339 continue;
4340
4341 set_current_program_space (pspace);
4342
4343 for (objfile *objfile : current_program_space->objfiles ())
4344 {
4345 iterate_over_minimal_symbols (objfile, name,
4346 [&] (struct minimal_symbol *msym)
4347 {
4348 add_minsym (msym, objfile, nullptr,
4349 info->state->list_mode,
4350 &minsyms);
4351 return false;
4352 });
4353 }
4354 }
4355 }
4356 else
4357 {
4358 if (search_pspace == NULL || SYMTAB_PSPACE (symtab) == search_pspace)
4359 {
4360 set_current_program_space (SYMTAB_PSPACE (symtab));
4361 iterate_over_minimal_symbols
4362 (SYMTAB_OBJFILE (symtab), name,
4363 [&] (struct minimal_symbol *msym)
4364 {
4365 add_minsym (msym, SYMTAB_OBJFILE (symtab), symtab,
4366 info->state->list_mode, &minsyms);
4367 return false;
4368 });
4369 }
4370 }
4371
4372 if (!minsyms.empty ())
4373 {
4374 int classification;
4375
4376 std::sort (minsyms.begin (), minsyms.end (), compare_msyms);
4377
4378 /* Now the minsyms are in classification order. So, we walk
4379 over them and process just the minsyms with the same
4380 classification as the very first minsym in the list. */
4381 classification = classify_mtype (MSYMBOL_TYPE (minsyms[0].minsym));
4382
4383 for (const bound_minimal_symbol &item : minsyms)
4384 {
4385 if (classify_mtype (MSYMBOL_TYPE (item.minsym)) != classification)
4386 break;
4387
4388 info->result.minimal_symbols->push_back (item);
4389 }
4390 }
4391 }
4392
4393 /* A helper function to add all symbols matching NAME to INFO. If
4394 PSPACE is not NULL, the search is restricted to just that program
4395 space. */
4396
4397 static void
4398 add_matching_symbols_to_info (const char *name,
4399 symbol_name_match_type name_match_type,
4400 enum search_domain search_domain,
4401 struct collect_info *info,
4402 struct program_space *pspace)
4403 {
4404 lookup_name_info lookup_name (name, name_match_type);
4405
4406 for (const auto &elt : *info->file_symtabs)
4407 {
4408 if (elt == nullptr)
4409 {
4410 iterate_over_all_matching_symtabs (info->state, lookup_name,
4411 VAR_DOMAIN, search_domain,
4412 pspace, true,
4413 [&] (block_symbol *bsym)
4414 { return info->add_symbol (bsym); });
4415 search_minsyms_for_name (info, lookup_name, pspace, NULL);
4416 }
4417 else if (pspace == NULL || pspace == SYMTAB_PSPACE (elt))
4418 {
4419 int prev_len = info->result.symbols->size ();
4420
4421 /* Program spaces that are executing startup should have
4422 been filtered out earlier. */
4423 gdb_assert (!SYMTAB_PSPACE (elt)->executing_startup);
4424 set_current_program_space (SYMTAB_PSPACE (elt));
4425 iterate_over_file_blocks (elt, lookup_name, VAR_DOMAIN,
4426 [&] (block_symbol *bsym)
4427 { return info->add_symbol (bsym); });
4428
4429 /* If no new symbols were found in this iteration and this symtab
4430 is in assembler, we might actually be looking for a label for
4431 which we don't have debug info. Check for a minimal symbol in
4432 this case. */
4433 if (prev_len == info->result.symbols->size ()
4434 && elt->language == language_asm)
4435 search_minsyms_for_name (info, lookup_name, pspace, elt);
4436 }
4437 }
4438 }
4439
4440 \f
4441
4442 /* Now come some functions that are called from multiple places within
4443 decode_line_1. */
4444
4445 static int
4446 symbol_to_sal (struct symtab_and_line *result,
4447 int funfirstline, struct symbol *sym)
4448 {
4449 if (SYMBOL_CLASS (sym) == LOC_BLOCK)
4450 {
4451 *result = find_function_start_sal (sym, funfirstline);
4452 return 1;
4453 }
4454 else
4455 {
4456 if (SYMBOL_CLASS (sym) == LOC_LABEL && SYMBOL_VALUE_ADDRESS (sym) != 0)
4457 {
4458 *result = {};
4459 result->symtab = symbol_symtab (sym);
4460 result->symbol = sym;
4461 result->line = SYMBOL_LINE (sym);
4462 result->pc = SYMBOL_VALUE_ADDRESS (sym);
4463 result->pspace = SYMTAB_PSPACE (result->symtab);
4464 result->explicit_pc = 1;
4465 return 1;
4466 }
4467 else if (funfirstline)
4468 {
4469 /* Nothing. */
4470 }
4471 else if (SYMBOL_LINE (sym) != 0)
4472 {
4473 /* We know its line number. */
4474 *result = {};
4475 result->symtab = symbol_symtab (sym);
4476 result->symbol = sym;
4477 result->line = SYMBOL_LINE (sym);
4478 result->pc = SYMBOL_VALUE_ADDRESS (sym);
4479 result->pspace = SYMTAB_PSPACE (result->symtab);
4480 return 1;
4481 }
4482 }
4483
4484 return 0;
4485 }
4486
4487 linespec_result::~linespec_result ()
4488 {
4489 for (linespec_sals &lsal : lsals)
4490 xfree (lsal.canonical);
4491 }
4492
4493 /* Return the quote characters permitted by the linespec parser. */
4494
4495 const char *
4496 get_gdb_linespec_parser_quote_characters (void)
4497 {
4498 return linespec_quote_characters;
4499 }
This page took 0.122215 seconds and 4 git commands to generate.