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