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