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