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