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