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