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