Commit | Line | Data |
---|---|---|
50641945 | 1 | /* Parser for linespec for the GNU debugger, GDB. |
05ff989b | 2 | |
42a4f53d | 3 | Copyright (C) 1986-2019 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" |
53c5240f | 36 | #include "language.h" |
dc67126b NR |
37 | #include "interps.h" |
38 | #include "mi/mi-cmds.h" | |
bccdca4a | 39 | #include "target.h" |
94af9270 | 40 | #include "arch-utils.h" |
c00f8484 KS |
41 | #include <ctype.h> |
42 | #include "cli/cli-utils.h" | |
731971ed | 43 | #include "filenames.h" |
f8eba3c6 | 44 | #include "ada-lang.h" |
39cf75f7 | 45 | #include "stack.h" |
f00aae0f | 46 | #include "location.h" |
268a13a5 TT |
47 | #include "gdbsupport/function-view.h" |
48 | #include "gdbsupport/def-vector.h" | |
41c1efc6 | 49 | #include <algorithm> |
f8eba3c6 | 50 | |
c45ec17c PA |
51 | /* An enumeration of the various things a user might attempt to |
52 | complete for a linespec location. */ | |
53 | ||
54 | enum class linespec_complete_what | |
55 | { | |
56 | /* Nothing, no possible completion. */ | |
57 | NOTHING, | |
58 | ||
59 | /* A function/method name. Due to ambiguity between | |
60 | ||
61 | (gdb) b source[TAB] | |
62 | source_file.c | |
63 | source_function | |
64 | ||
65 | this can also indicate a source filename, iff we haven't seen a | |
66 | separate source filename component, as in "b source.c:function". */ | |
67 | FUNCTION, | |
68 | ||
69 | /* A label symbol. E.g., break file.c:function:LABEL. */ | |
70 | LABEL, | |
71 | ||
72 | /* An expression. E.g., "break foo if EXPR", or "break *EXPR". */ | |
73 | EXPRESSION, | |
74 | ||
75 | /* A linespec keyword ("if"/"thread"/"task"). | |
76 | E.g., "break func threa<tab>". */ | |
77 | KEYWORD, | |
78 | }; | |
79 | ||
f8eba3c6 TT |
80 | /* An address entry is used to ensure that any given location is only |
81 | added to the result a single time. It holds an address and the | |
82 | program space from which the address came. */ | |
83 | ||
84 | struct address_entry | |
85 | { | |
86 | struct program_space *pspace; | |
87 | CORE_ADDR addr; | |
88 | }; | |
89 | ||
40e084e1 KS |
90 | /* A linespec. Elements of this structure are filled in by a parser |
91 | (either parse_linespec or some other function). The structure is | |
92 | then converted into SALs by convert_linespec_to_sals. */ | |
93 | ||
94 | struct linespec | |
95 | { | |
00e52e53 | 96 | /* An explicit location describing the SaLs. */ |
67994074 | 97 | struct explicit_location explicit_loc; |
40e084e1 KS |
98 | |
99 | /* The list of symtabs to search to which to limit the search. May not | |
00e52e53 KS |
100 | be NULL. If explicit.SOURCE_FILENAME is NULL (no user-specified |
101 | filename), FILE_SYMTABS should contain one single NULL member. This | |
102 | will cause the code to use the default symtab. */ | |
2a908241 | 103 | std::vector<symtab *> *file_symtabs; |
40e084e1 | 104 | |
40e084e1 | 105 | /* A list of matching function symbols and minimal symbols. Both lists |
7243d011 | 106 | may be NULL (or empty) if no matching symbols were found. */ |
7e41c8db | 107 | std::vector<block_symbol> *function_symbols; |
c2a031c5 | 108 | std::vector<bound_minimal_symbol> *minimal_symbols; |
40e084e1 | 109 | |
40e084e1 KS |
110 | /* A structure of matching label symbols and the corresponding |
111 | function symbol in which the label was found. Both may be NULL | |
112 | or both must be non-NULL. */ | |
113 | struct | |
114 | { | |
7e41c8db KS |
115 | std::vector<block_symbol> *label_symbols; |
116 | std::vector<block_symbol> *function_symbols; | |
40e084e1 | 117 | } labels; |
40e084e1 KS |
118 | }; |
119 | typedef struct linespec *linespec_p; | |
120 | ||
33f448b1 JK |
121 | /* A canonical linespec represented as a symtab-related string. |
122 | ||
123 | Each entry represents the "SYMTAB:SUFFIX" linespec string. | |
124 | SYMTAB can be converted for example by symtab_to_fullname or | |
125 | symtab_to_filename_for_display as needed. */ | |
126 | ||
127 | struct linespec_canonical_name | |
128 | { | |
129 | /* Remaining text part of the linespec string. */ | |
130 | char *suffix; | |
131 | ||
132 | /* If NULL then SUFFIX is the whole linespec string. */ | |
133 | struct symtab *symtab; | |
134 | }; | |
135 | ||
f8eba3c6 TT |
136 | /* An instance of this is used to keep all state while linespec |
137 | operates. This instance is passed around as a 'this' pointer to | |
138 | the various implementation methods. */ | |
139 | ||
140 | struct linespec_state | |
141 | { | |
40e084e1 KS |
142 | /* The language in use during linespec processing. */ |
143 | const struct language_defn *language; | |
144 | ||
f8eba3c6 TT |
145 | /* The program space as seen when the module was entered. */ |
146 | struct program_space *program_space; | |
147 | ||
c2f4122d PA |
148 | /* If not NULL, the search is restricted to just this program |
149 | space. */ | |
150 | struct program_space *search_pspace; | |
151 | ||
f8eba3c6 TT |
152 | /* The default symtab to use, if no other symtab is specified. */ |
153 | struct symtab *default_symtab; | |
154 | ||
155 | /* The default line to use. */ | |
156 | int default_line; | |
157 | ||
f8eba3c6 TT |
158 | /* The 'funfirstline' value that was passed in to decode_line_1 or |
159 | decode_line_full. */ | |
160 | int funfirstline; | |
161 | ||
162 | /* Nonzero if we are running in 'list' mode; see decode_line_list. */ | |
163 | int list_mode; | |
164 | ||
165 | /* The 'canonical' value passed to decode_line_full, or NULL. */ | |
166 | struct linespec_result *canonical; | |
167 | ||
6c5b2ebe | 168 | /* Canonical strings that mirror the std::vector<symtab_and_line> result. */ |
33f448b1 | 169 | struct linespec_canonical_name *canonical_names; |
f8eba3c6 TT |
170 | |
171 | /* This is a set of address_entry objects which is used to prevent | |
172 | duplicate symbols from being entered into the result. */ | |
173 | htab_t addr_set; | |
00e52e53 KS |
174 | |
175 | /* Are we building a linespec? */ | |
176 | int is_linespec; | |
f8eba3c6 TT |
177 | }; |
178 | ||
179 | /* This is a helper object that is used when collecting symbols into a | |
180 | result. */ | |
181 | ||
182 | struct collect_info | |
183 | { | |
184 | /* The linespec object in use. */ | |
185 | struct linespec_state *state; | |
186 | ||
40e084e1 | 187 | /* A list of symtabs to which to restrict matches. */ |
2a908241 | 188 | std::vector<symtab *> *file_symtabs; |
40e084e1 | 189 | |
f8eba3c6 | 190 | /* The result being accumulated. */ |
40e084e1 KS |
191 | struct |
192 | { | |
7e41c8db | 193 | std::vector<block_symbol> *symbols; |
c2a031c5 | 194 | std::vector<bound_minimal_symbol> *minimal_symbols; |
40e084e1 | 195 | } result; |
14bc53a8 PA |
196 | |
197 | /* Possibly add a symbol to the results. */ | |
fcaad03c | 198 | virtual bool add_symbol (block_symbol *bsym); |
f8eba3c6 | 199 | }; |
50641945 | 200 | |
14bc53a8 | 201 | bool |
7e41c8db | 202 | collect_info::add_symbol (block_symbol *bsym) |
14bc53a8 PA |
203 | { |
204 | /* In list mode, add all matching symbols, regardless of class. | |
205 | This allows the user to type "list a_global_variable". */ | |
7e41c8db KS |
206 | if (SYMBOL_CLASS (bsym->symbol) == LOC_BLOCK || this->state->list_mode) |
207 | this->result.symbols->push_back (*bsym); | |
14bc53a8 PA |
208 | |
209 | /* Continue iterating. */ | |
210 | return true; | |
211 | } | |
212 | ||
fcaad03c KS |
213 | /* Custom collect_info for symbol_searcher. */ |
214 | ||
215 | struct symbol_searcher_collect_info | |
216 | : collect_info | |
217 | { | |
218 | bool add_symbol (block_symbol *bsym) override | |
219 | { | |
220 | /* Add everything. */ | |
221 | this->result.symbols->push_back (*bsym); | |
222 | ||
223 | /* Continue iterating. */ | |
224 | return true; | |
225 | } | |
226 | }; | |
227 | ||
40e084e1 | 228 | /* Token types */ |
50641945 | 229 | |
40e084e1 KS |
230 | enum ls_token_type |
231 | { | |
232 | /* A keyword */ | |
233 | LSTOKEN_KEYWORD = 0, | |
44fe14ab | 234 | |
40e084e1 KS |
235 | /* A colon "separator" */ |
236 | LSTOKEN_COLON, | |
44fe14ab | 237 | |
40e084e1 KS |
238 | /* A string */ |
239 | LSTOKEN_STRING, | |
0960f083 | 240 | |
40e084e1 KS |
241 | /* A number */ |
242 | LSTOKEN_NUMBER, | |
243 | ||
244 | /* A comma */ | |
245 | LSTOKEN_COMMA, | |
246 | ||
247 | /* EOI (end of input) */ | |
248 | LSTOKEN_EOI, | |
249 | ||
250 | /* Consumed token */ | |
251 | LSTOKEN_CONSUMED | |
252 | }; | |
253 | typedef enum ls_token_type linespec_token_type; | |
254 | ||
c6756f62 PA |
255 | /* List of keywords. This is NULL-terminated so that it can be used |
256 | as enum completer. */ | |
257 | const char * const linespec_keywords[] = { "if", "thread", "task", NULL }; | |
0578b14e | 258 | #define IF_KEYWORD_INDEX 0 |
40e084e1 KS |
259 | |
260 | /* A token of the linespec lexer */ | |
261 | ||
262 | struct ls_token | |
263 | { | |
264 | /* The type of the token */ | |
265 | linespec_token_type type; | |
266 | ||
267 | /* Data for the token */ | |
268 | union | |
269 | { | |
270 | /* A string, given as a stoken */ | |
271 | struct stoken string; | |
272 | ||
273 | /* A keyword */ | |
274 | const char *keyword; | |
275 | } data; | |
276 | }; | |
277 | typedef struct ls_token linespec_token; | |
278 | ||
279 | #define LS_TOKEN_STOKEN(TOK) (TOK).data.string | |
280 | #define LS_TOKEN_KEYWORD(TOK) (TOK).data.keyword | |
281 | ||
282 | /* An instance of the linespec parser. */ | |
283 | ||
3a6ae42d | 284 | struct linespec_parser |
40e084e1 | 285 | { |
3a6ae42d TT |
286 | linespec_parser (int flags, const struct language_defn *language, |
287 | struct program_space *search_pspace, | |
288 | struct symtab *default_symtab, | |
289 | int default_line, | |
290 | struct linespec_result *canonical); | |
291 | ||
292 | ~linespec_parser (); | |
293 | ||
294 | DISABLE_COPY_AND_ASSIGN (linespec_parser); | |
295 | ||
40e084e1 KS |
296 | /* Lexer internal data */ |
297 | struct | |
298 | { | |
299 | /* Save head of input stream. */ | |
d7561cbb | 300 | const char *saved_arg; |
d2630e69 | 301 | |
40e084e1 | 302 | /* Head of the input stream. */ |
f00aae0f KS |
303 | const char *stream; |
304 | #define PARSER_STREAM(P) ((P)->lexer.stream) | |
614b3b14 | 305 | |
40e084e1 KS |
306 | /* The current token. */ |
307 | linespec_token current; | |
3a6ae42d | 308 | } lexer {}; |
93d91629 | 309 | |
40e084e1 | 310 | /* Is the entire linespec quote-enclosed? */ |
3a6ae42d | 311 | int is_quote_enclosed = 0; |
40e084e1 KS |
312 | |
313 | /* The state of the parse. */ | |
3a6ae42d | 314 | struct linespec_state state {}; |
40e084e1 | 315 | #define PARSER_STATE(PPTR) (&(PPTR)->state) |
4224873a | 316 | |
40e084e1 | 317 | /* The result of the parse. */ |
3a6ae42d | 318 | struct linespec result {}; |
40e084e1 | 319 | #define PARSER_RESULT(PPTR) (&(PPTR)->result) |
c45ec17c PA |
320 | |
321 | /* What the parser believes the current word point should complete | |
322 | to. */ | |
3a6ae42d | 323 | linespec_complete_what complete_what = linespec_complete_what::NOTHING; |
c45ec17c PA |
324 | |
325 | /* The completion word point. The parser advances this as it skips | |
326 | tokens. At some point the input string will end or parsing will | |
327 | fail, and then we attempt completion at the captured completion | |
328 | word point, interpreting the string at completion_word as | |
329 | COMPLETE_WHAT. */ | |
3a6ae42d | 330 | const char *completion_word = nullptr; |
c45ec17c PA |
331 | |
332 | /* If the current token was a quoted string, then this is the | |
333 | quoting character (either " or '). */ | |
3a6ae42d | 334 | int completion_quote_char = 0; |
c45ec17c PA |
335 | |
336 | /* If the current token was a quoted string, then this points at the | |
337 | end of the quoted string. */ | |
3a6ae42d | 338 | const char *completion_quote_end = nullptr; |
c45ec17c PA |
339 | |
340 | /* If parsing for completion, then this points at the completion | |
341 | tracker. Otherwise, this is NULL. */ | |
3a6ae42d | 342 | struct completion_tracker *completion_tracker = nullptr; |
40e084e1 | 343 | }; |
50641945 | 344 | |
00e52e53 KS |
345 | /* A convenience macro for accessing the explicit location result of |
346 | the parser. */ | |
67994074 | 347 | #define PARSER_EXPLICIT(PPTR) (&PARSER_RESULT ((PPTR))->explicit_loc) |
00e52e53 | 348 | |
40e084e1 | 349 | /* Prototypes for local functions. */ |
50641945 | 350 | |
14bc53a8 | 351 | static void iterate_over_file_blocks |
b5ec771e PA |
352 | (struct symtab *symtab, const lookup_name_info &name, |
353 | domain_enum domain, | |
14bc53a8 | 354 | gdb::function_view<symbol_found_callback_ftype> callback); |
4eeaa230 | 355 | |
40e084e1 KS |
356 | static void initialize_defaults (struct symtab **default_symtab, |
357 | int *default_line); | |
50641945 | 358 | |
a06efdd6 | 359 | CORE_ADDR linespec_expression_to_pc (const char **exp_ptr); |
aee8d8ba | 360 | |
6c5b2ebe PA |
361 | static std::vector<symtab_and_line> decode_objc (struct linespec_state *self, |
362 | linespec_p ls, | |
363 | const char *arg); | |
aee8d8ba | 364 | |
4717cec4 | 365 | static std::vector<symtab *> symtabs_from_filename |
2a908241 | 366 | (const char *, struct program_space *pspace); |
50641945 | 367 | |
7e41c8db KS |
368 | static std::vector<block_symbol> *find_label_symbols |
369 | (struct linespec_state *self, std::vector<block_symbol> *function_symbols, | |
370 | std::vector<block_symbol> *label_funcs_ret, const char *name, | |
7243d011 | 371 | bool completion_mode = false); |
50641945 | 372 | |
b1ae631a | 373 | static void find_linespec_symbols (struct linespec_state *self, |
2a908241 | 374 | std::vector<symtab *> *file_symtabs, |
b1ae631a | 375 | const char *name, |
a20714ff | 376 | symbol_name_match_type name_match_type, |
7e41c8db | 377 | std::vector<block_symbol> *symbols, |
c2a031c5 | 378 | std::vector<bound_minimal_symbol> *minsyms); |
f8eba3c6 | 379 | |
40e084e1 KS |
380 | static struct line_offset |
381 | linespec_parse_variable (struct linespec_state *self, | |
382 | const char *variable); | |
889f28e2 | 383 | |
f8eba3c6 TT |
384 | static int symbol_to_sal (struct symtab_and_line *result, |
385 | int funfirstline, struct symbol *sym); | |
50641945 | 386 | |
f8eba3c6 | 387 | static void add_matching_symbols_to_info (const char *name, |
b5ec771e | 388 | symbol_name_match_type name_match_type, |
56d87ef7 | 389 | enum search_domain search_domain, |
f8eba3c6 TT |
390 | struct collect_info *info, |
391 | struct program_space *pspace); | |
f3c39e76 | 392 | |
9b2f8581 TT |
393 | static void add_all_symbol_names_from_pspace |
394 | (struct collect_info *info, struct program_space *pspace, | |
395 | const std::vector<const char *> &names, enum search_domain search_domain); | |
9ef07c8c | 396 | |
4717cec4 | 397 | static std::vector<symtab *> |
c2f4122d PA |
398 | collect_symtabs_from_filename (const char *file, |
399 | struct program_space *pspace); | |
84fba31b | 400 | |
6c5b2ebe PA |
401 | static std::vector<symtab_and_line> decode_digits_ordinary |
402 | (struct linespec_state *self, | |
403 | linespec_p ls, | |
404 | int line, | |
405 | linetable_entry **best_entry); | |
14e91ac5 | 406 | |
6c5b2ebe PA |
407 | static std::vector<symtab_and_line> decode_digits_list_mode |
408 | (struct linespec_state *self, | |
409 | linespec_p ls, | |
410 | struct symtab_and_line val); | |
0f5238ed | 411 | |
40e084e1 KS |
412 | static void minsym_found (struct linespec_state *self, struct objfile *objfile, |
413 | struct minimal_symbol *msymbol, | |
6c5b2ebe | 414 | std::vector<symtab_and_line> *result); |
bca02a8a | 415 | |
7e41c8db | 416 | static bool compare_symbols (const block_symbol &a, const block_symbol &b); |
413dad4d | 417 | |
c2a031c5 KS |
418 | static bool compare_msymbols (const bound_minimal_symbol &a, |
419 | const bound_minimal_symbol &b); | |
413dad4d | 420 | |
40e084e1 KS |
421 | /* Permitted quote characters for the parser. This is different from the |
422 | completer's quote characters to allow backward compatibility with the | |
423 | previous parser. */ | |
424 | static const char *const linespec_quote_characters = "\"\'"; | |
f8eba3c6 | 425 | |
40e084e1 KS |
426 | /* Lexer functions. */ |
427 | ||
428 | /* Lex a number from the input in PARSER. This only supports | |
dd3818c8 KS |
429 | decimal numbers. |
430 | ||
d7cbec71 | 431 | Return true if input is decimal numbers. Return false if not. */ |
40e084e1 | 432 | |
d7cbec71 HZ |
433 | static int |
434 | linespec_lexer_lex_number (linespec_parser *parser, linespec_token *tokenp) | |
40e084e1 | 435 | { |
d7cbec71 HZ |
436 | tokenp->type = LSTOKEN_NUMBER; |
437 | LS_TOKEN_STOKEN (*tokenp).length = 0; | |
438 | LS_TOKEN_STOKEN (*tokenp).ptr = PARSER_STREAM (parser); | |
40e084e1 KS |
439 | |
440 | /* Keep any sign at the start of the stream. */ | |
441 | if (*PARSER_STREAM (parser) == '+' || *PARSER_STREAM (parser) == '-') | |
442 | { | |
d7cbec71 | 443 | ++LS_TOKEN_STOKEN (*tokenp).length; |
40e084e1 KS |
444 | ++(PARSER_STREAM (parser)); |
445 | } | |
446 | ||
447 | while (isdigit (*PARSER_STREAM (parser))) | |
448 | { | |
d7cbec71 | 449 | ++LS_TOKEN_STOKEN (*tokenp).length; |
40e084e1 | 450 | ++(PARSER_STREAM (parser)); |
f8eba3c6 | 451 | } |
40e084e1 | 452 | |
dd3818c8 | 453 | /* If the next character in the input buffer is not a space, comma, |
eff9c3e6 | 454 | quote, or colon, this input does not represent a number. */ |
dd3818c8 KS |
455 | if (*PARSER_STREAM (parser) != '\0' |
456 | && !isspace (*PARSER_STREAM (parser)) && *PARSER_STREAM (parser) != ',' | |
eff9c3e6 KS |
457 | && *PARSER_STREAM (parser) != ':' |
458 | && !strchr (linespec_quote_characters, *PARSER_STREAM (parser))) | |
d7cbec71 HZ |
459 | { |
460 | PARSER_STREAM (parser) = LS_TOKEN_STOKEN (*tokenp).ptr; | |
461 | return 0; | |
462 | } | |
463 | ||
464 | return 1; | |
f8eba3c6 TT |
465 | } |
466 | ||
32b40af9 | 467 | /* See linespec.h. */ |
f8eba3c6 | 468 | |
0578b14e | 469 | const char * |
40e084e1 | 470 | linespec_lexer_lex_keyword (const char *p) |
f8eba3c6 | 471 | { |
40e084e1 | 472 | int i; |
f8eba3c6 | 473 | |
40e084e1 KS |
474 | if (p != NULL) |
475 | { | |
c6756f62 | 476 | for (i = 0; linespec_keywords[i] != NULL; ++i) |
40e084e1 KS |
477 | { |
478 | int len = strlen (linespec_keywords[i]); | |
479 | ||
480 | /* If P begins with one of the keywords and the next | |
0578b14e KS |
481 | character is whitespace, we may have found a keyword. |
482 | It is only a keyword if it is not followed by another | |
483 | keyword. */ | |
40e084e1 | 484 | if (strncmp (p, linespec_keywords[i], len) == 0 |
0578b14e KS |
485 | && isspace (p[len])) |
486 | { | |
487 | int j; | |
488 | ||
489 | /* Special case: "if" ALWAYS stops the lexer, since it | |
490 | is not possible to predict what is going to appear in | |
491 | the condition, which can only be parsed after SaLs have | |
492 | been found. */ | |
493 | if (i != IF_KEYWORD_INDEX) | |
494 | { | |
495 | p += len; | |
f1735a53 | 496 | p = skip_spaces (p); |
c6756f62 | 497 | for (j = 0; linespec_keywords[j] != NULL; ++j) |
0578b14e KS |
498 | { |
499 | int nextlen = strlen (linespec_keywords[j]); | |
500 | ||
501 | if (strncmp (p, linespec_keywords[j], nextlen) == 0 | |
502 | && isspace (p[nextlen])) | |
503 | return NULL; | |
504 | } | |
505 | } | |
506 | ||
507 | return linespec_keywords[i]; | |
508 | } | |
40e084e1 KS |
509 | } |
510 | } | |
511 | ||
512 | return NULL; | |
f8eba3c6 TT |
513 | } |
514 | ||
87f0e720 | 515 | /* See description in linespec.h. */ |
f8eba3c6 | 516 | |
87f0e720 | 517 | int |
40e084e1 | 518 | is_ada_operator (const char *string) |
f8eba3c6 | 519 | { |
40e084e1 | 520 | const struct ada_opname_map *mapping; |
f8eba3c6 | 521 | |
40e084e1 KS |
522 | for (mapping = ada_opname_table; |
523 | mapping->encoded != NULL | |
61012eef | 524 | && !startswith (string, mapping->decoded); ++mapping) |
40e084e1 KS |
525 | ; |
526 | ||
527 | return mapping->decoded == NULL ? 0 : strlen (mapping->decoded); | |
f8eba3c6 TT |
528 | } |
529 | ||
40e084e1 KS |
530 | /* Find QUOTE_CHAR in STRING, accounting for the ':' terminal. Return |
531 | the location of QUOTE_CHAR, or NULL if not found. */ | |
f8eba3c6 | 532 | |
40e084e1 KS |
533 | static const char * |
534 | skip_quote_char (const char *string, char quote_char) | |
f8eba3c6 | 535 | { |
40e084e1 | 536 | const char *p, *last; |
f8eba3c6 | 537 | |
40e084e1 KS |
538 | p = last = find_toplevel_char (string, quote_char); |
539 | while (p && *p != '\0' && *p != ':') | |
540 | { | |
541 | p = find_toplevel_char (p, quote_char); | |
542 | if (p != NULL) | |
543 | last = p++; | |
544 | } | |
f8eba3c6 | 545 | |
40e084e1 | 546 | return last; |
f8eba3c6 | 547 | } |
50641945 | 548 | |
40e084e1 KS |
549 | /* Make a writable copy of the string given in TOKEN, trimming |
550 | any trailing whitespace. */ | |
50641945 | 551 | |
a5b5adf5 | 552 | static gdb::unique_xmalloc_ptr<char> |
40e084e1 | 553 | copy_token_string (linespec_token token) |
50641945 | 554 | { |
a5b5adf5 | 555 | const char *str, *s; |
e0881a8e | 556 | |
40e084e1 | 557 | if (token.type == LSTOKEN_KEYWORD) |
b02f78f9 | 558 | return make_unique_xstrdup (LS_TOKEN_KEYWORD (token)); |
255e7dbf | 559 | |
a5b5adf5 | 560 | str = LS_TOKEN_STOKEN (token).ptr; |
40e084e1 | 561 | s = remove_trailing_whitespace (str, str + LS_TOKEN_STOKEN (token).length); |
e0881a8e | 562 | |
a5b5adf5 | 563 | return gdb::unique_xmalloc_ptr<char> (savestring (str, s - str)); |
40e084e1 | 564 | } |
255e7dbf | 565 | |
40e084e1 | 566 | /* Does P represent the end of a quote-enclosed linespec? */ |
f3a5f1de | 567 | |
40e084e1 KS |
568 | static int |
569 | is_closing_quote_enclosed (const char *p) | |
570 | { | |
571 | if (strchr (linespec_quote_characters, *p)) | |
572 | ++p; | |
573 | p = skip_spaces ((char *) p); | |
574 | return (*p == '\0' || linespec_lexer_lex_keyword (p)); | |
50641945 FN |
575 | } |
576 | ||
40e084e1 KS |
577 | /* Find the end of the parameter list that starts with *INPUT. |
578 | This helper function assists with lexing string segments | |
579 | which might contain valid (non-terminating) commas. */ | |
481860b3 | 580 | |
d7561cbb KS |
581 | static const char * |
582 | find_parameter_list_end (const char *input) | |
481860b3 | 583 | { |
40e084e1 KS |
584 | char end_char, start_char; |
585 | int depth; | |
d7561cbb | 586 | const char *p; |
481860b3 | 587 | |
40e084e1 KS |
588 | start_char = *input; |
589 | if (start_char == '(') | |
590 | end_char = ')'; | |
591 | else if (start_char == '<') | |
592 | end_char = '>'; | |
593 | else | |
594 | return NULL; | |
481860b3 | 595 | |
40e084e1 KS |
596 | p = input; |
597 | depth = 0; | |
598 | while (*p) | |
481860b3 | 599 | { |
40e084e1 KS |
600 | if (*p == start_char) |
601 | ++depth; | |
602 | else if (*p == end_char) | |
603 | { | |
604 | if (--depth == 0) | |
605 | { | |
606 | ++p; | |
607 | break; | |
608 | } | |
609 | } | |
610 | ++p; | |
481860b3 | 611 | } |
40e084e1 KS |
612 | |
613 | return p; | |
481860b3 GB |
614 | } |
615 | ||
c45ec17c PA |
616 | /* If the [STRING, STRING_LEN) string ends with what looks like a |
617 | keyword, return the keyword start offset in STRING. Return -1 | |
618 | otherwise. */ | |
619 | ||
620 | static size_t | |
621 | string_find_incomplete_keyword_at_end (const char * const *keywords, | |
622 | const char *string, size_t string_len) | |
623 | { | |
624 | const char *end = string + string_len; | |
625 | const char *p = end; | |
626 | ||
627 | while (p > string && *p != ' ') | |
628 | --p; | |
629 | if (p > string) | |
630 | { | |
631 | p++; | |
632 | size_t len = end - p; | |
633 | for (size_t i = 0; keywords[i] != NULL; ++i) | |
634 | if (strncmp (keywords[i], p, len) == 0) | |
635 | return p - string; | |
636 | } | |
637 | ||
638 | return -1; | |
639 | } | |
74ccd7f5 | 640 | |
40e084e1 KS |
641 | /* Lex a string from the input in PARSER. */ |
642 | ||
643 | static linespec_token | |
644 | linespec_lexer_lex_string (linespec_parser *parser) | |
74ccd7f5 | 645 | { |
40e084e1 | 646 | linespec_token token; |
d7561cbb | 647 | const char *start = PARSER_STREAM (parser); |
74ccd7f5 | 648 | |
40e084e1 | 649 | token.type = LSTOKEN_STRING; |
74ccd7f5 | 650 | |
40e084e1 KS |
651 | /* If the input stream starts with a quote character, skip to the next |
652 | quote character, regardless of the content. */ | |
653 | if (strchr (linespec_quote_characters, *PARSER_STREAM (parser))) | |
654 | { | |
655 | const char *end; | |
656 | char quote_char = *PARSER_STREAM (parser); | |
50641945 | 657 | |
40e084e1 KS |
658 | /* Special case: Ada operators. */ |
659 | if (PARSER_STATE (parser)->language->la_language == language_ada | |
660 | && quote_char == '\"') | |
661 | { | |
662 | int len = is_ada_operator (PARSER_STREAM (parser)); | |
50641945 | 663 | |
40e084e1 KS |
664 | if (len != 0) |
665 | { | |
666 | /* The input is an Ada operator. Return the quoted string | |
667 | as-is. */ | |
668 | LS_TOKEN_STOKEN (token).ptr = PARSER_STREAM (parser); | |
669 | LS_TOKEN_STOKEN (token).length = len; | |
670 | PARSER_STREAM (parser) += len; | |
671 | return token; | |
672 | } | |
f8eba3c6 | 673 | |
40e084e1 KS |
674 | /* The input does not represent an Ada operator -- fall through |
675 | to normal quoted string handling. */ | |
676 | } | |
f8eba3c6 | 677 | |
40e084e1 KS |
678 | /* Skip past the beginning quote. */ |
679 | ++(PARSER_STREAM (parser)); | |
74ccd7f5 | 680 | |
40e084e1 KS |
681 | /* Mark the start of the string. */ |
682 | LS_TOKEN_STOKEN (token).ptr = PARSER_STREAM (parser); | |
f8eba3c6 | 683 | |
40e084e1 KS |
684 | /* Skip to the ending quote. */ |
685 | end = skip_quote_char (PARSER_STREAM (parser), quote_char); | |
686 | ||
c45ec17c PA |
687 | /* This helps the completer mode decide whether we have a |
688 | complete string. */ | |
689 | parser->completion_quote_char = quote_char; | |
690 | parser->completion_quote_end = end; | |
40e084e1 | 691 | |
c45ec17c PA |
692 | /* Error if the input did not terminate properly, unless in |
693 | completion mode. */ | |
694 | if (end == NULL) | |
695 | { | |
696 | if (parser->completion_tracker == NULL) | |
697 | error (_("unmatched quote")); | |
698 | ||
699 | /* In completion mode, we'll try to complete the incomplete | |
700 | token. */ | |
701 | token.type = LSTOKEN_STRING; | |
702 | while (*PARSER_STREAM (parser) != '\0') | |
703 | PARSER_STREAM (parser)++; | |
704 | LS_TOKEN_STOKEN (token).length = PARSER_STREAM (parser) - 1 - start; | |
705 | } | |
706 | else | |
707 | { | |
708 | /* Skip over the ending quote and mark the length of the string. */ | |
709 | PARSER_STREAM (parser) = (char *) ++end; | |
710 | LS_TOKEN_STOKEN (token).length = PARSER_STREAM (parser) - 2 - start; | |
711 | } | |
40e084e1 KS |
712 | } |
713 | else | |
714 | { | |
d7561cbb | 715 | const char *p; |
40e084e1 KS |
716 | |
717 | /* Otherwise, only identifier characters are permitted. | |
718 | Spaces are the exception. In general, we keep spaces, | |
719 | but only if the next characters in the input do not resolve | |
720 | to one of the keywords. | |
721 | ||
722 | This allows users to forgo quoting CV-qualifiers, template arguments, | |
723 | and similar common language constructs. */ | |
724 | ||
725 | while (1) | |
726 | { | |
727 | if (isspace (*PARSER_STREAM (parser))) | |
728 | { | |
f1735a53 | 729 | p = skip_spaces (PARSER_STREAM (parser)); |
7c09e5a0 DE |
730 | /* When we get here we know we've found something followed by |
731 | a space (we skip over parens and templates below). | |
732 | So if we find a keyword now, we know it is a keyword and not, | |
733 | say, a function name. */ | |
40e084e1 KS |
734 | if (linespec_lexer_lex_keyword (p) != NULL) |
735 | { | |
736 | LS_TOKEN_STOKEN (token).ptr = start; | |
737 | LS_TOKEN_STOKEN (token).length | |
738 | = PARSER_STREAM (parser) - start; | |
739 | return token; | |
740 | } | |
741 | ||
742 | /* Advance past the whitespace. */ | |
743 | PARSER_STREAM (parser) = p; | |
744 | } | |
745 | ||
746 | /* If the next character is EOI or (single) ':', the | |
747 | string is complete; return the token. */ | |
748 | if (*PARSER_STREAM (parser) == 0) | |
749 | { | |
750 | LS_TOKEN_STOKEN (token).ptr = start; | |
751 | LS_TOKEN_STOKEN (token).length = PARSER_STREAM (parser) - start; | |
752 | return token; | |
753 | } | |
754 | else if (PARSER_STREAM (parser)[0] == ':') | |
755 | { | |
756 | /* Do not tokenize the C++ scope operator. */ | |
757 | if (PARSER_STREAM (parser)[1] == ':') | |
758 | ++(PARSER_STREAM (parser)); | |
759 | ||
bd69330d PA |
760 | /* Do not tokenize ABI tags such as "[abi:cxx11]". */ |
761 | else if (PARSER_STREAM (parser) - start > 4 | |
762 | && startswith (PARSER_STREAM (parser) - 4, "[abi")) | |
f19e22e9 TV |
763 | { |
764 | /* Nothing. */ | |
765 | } | |
bd69330d | 766 | |
40e084e1 KS |
767 | /* Do not tokenify if the input length so far is one |
768 | (i.e, a single-letter drive name) and the next character | |
769 | is a directory separator. This allows Windows-style | |
770 | paths to be recognized as filenames without quoting it. */ | |
771 | else if ((PARSER_STREAM (parser) - start) != 1 | |
772 | || !IS_DIR_SEPARATOR (PARSER_STREAM (parser)[1])) | |
773 | { | |
774 | LS_TOKEN_STOKEN (token).ptr = start; | |
775 | LS_TOKEN_STOKEN (token).length | |
776 | = PARSER_STREAM (parser) - start; | |
777 | return token; | |
778 | } | |
779 | } | |
780 | /* Special case: permit quote-enclosed linespecs. */ | |
781 | else if (parser->is_quote_enclosed | |
782 | && strchr (linespec_quote_characters, | |
783 | *PARSER_STREAM (parser)) | |
784 | && is_closing_quote_enclosed (PARSER_STREAM (parser))) | |
785 | { | |
786 | LS_TOKEN_STOKEN (token).ptr = start; | |
787 | LS_TOKEN_STOKEN (token).length = PARSER_STREAM (parser) - start; | |
788 | return token; | |
789 | } | |
790 | /* Because commas may terminate a linespec and appear in | |
791 | the middle of valid string input, special cases for | |
792 | '<' and '(' are necessary. */ | |
793 | else if (*PARSER_STREAM (parser) == '<' | |
794 | || *PARSER_STREAM (parser) == '(') | |
795 | { | |
be966d42 PA |
796 | /* Don't interpret 'operator<' / 'operator<<' as a |
797 | template parameter list though. */ | |
798 | if (*PARSER_STREAM (parser) == '<' | |
799 | && (PARSER_STATE (parser)->language->la_language | |
800 | == language_cplus) | |
801 | && (PARSER_STREAM (parser) - start) >= CP_OPERATOR_LEN) | |
802 | { | |
b926417a | 803 | const char *op = PARSER_STREAM (parser); |
be966d42 | 804 | |
b926417a TT |
805 | while (op > start && isspace (op[-1])) |
806 | op--; | |
807 | if (op - start >= CP_OPERATOR_LEN) | |
be966d42 | 808 | { |
b926417a TT |
809 | op -= CP_OPERATOR_LEN; |
810 | if (strncmp (op, CP_OPERATOR_STR, CP_OPERATOR_LEN) == 0 | |
811 | && (op == start | |
812 | || !(isalnum (op[-1]) || op[-1] == '_'))) | |
be966d42 PA |
813 | { |
814 | /* This is an operator name. Keep going. */ | |
815 | ++(PARSER_STREAM (parser)); | |
816 | if (*PARSER_STREAM (parser) == '<') | |
817 | ++(PARSER_STREAM (parser)); | |
818 | continue; | |
819 | } | |
820 | } | |
821 | } | |
822 | ||
b926417a TT |
823 | const char *end = find_parameter_list_end (PARSER_STREAM (parser)); |
824 | PARSER_STREAM (parser) = end; | |
40e084e1 | 825 | |
be966d42 PA |
826 | /* Don't loop around to the normal \0 case above because |
827 | we don't want to misinterpret a potential keyword at | |
828 | the end of the token when the string isn't | |
829 | "()<>"-balanced. This handles "b | |
830 | function(thread<tab>" in completion mode. */ | |
b926417a | 831 | if (*end == '\0') |
40e084e1 | 832 | { |
be966d42 PA |
833 | LS_TOKEN_STOKEN (token).ptr = start; |
834 | LS_TOKEN_STOKEN (token).length | |
835 | = PARSER_STREAM (parser) - start; | |
836 | return token; | |
40e084e1 | 837 | } |
be966d42 PA |
838 | else |
839 | continue; | |
40e084e1 KS |
840 | } |
841 | /* Commas are terminators, but not if they are part of an | |
842 | operator name. */ | |
843 | else if (*PARSER_STREAM (parser) == ',') | |
844 | { | |
845 | if ((PARSER_STATE (parser)->language->la_language | |
846 | == language_cplus) | |
8090b426 | 847 | && (PARSER_STREAM (parser) - start) > CP_OPERATOR_LEN) |
40e084e1 | 848 | { |
b926417a | 849 | const char *op = strstr (start, CP_OPERATOR_STR); |
40e084e1 | 850 | |
b926417a | 851 | if (op != NULL && is_operator_name (op)) |
40e084e1 KS |
852 | { |
853 | /* This is an operator name. Keep going. */ | |
854 | ++(PARSER_STREAM (parser)); | |
855 | continue; | |
856 | } | |
857 | } | |
858 | ||
859 | /* Comma terminates the string. */ | |
860 | LS_TOKEN_STOKEN (token).ptr = start; | |
861 | LS_TOKEN_STOKEN (token).length = PARSER_STREAM (parser) - start; | |
862 | return token; | |
863 | } | |
864 | ||
865 | /* Advance the stream. */ | |
f19e22e9 | 866 | gdb_assert (*(PARSER_STREAM (parser)) != '\0'); |
40e084e1 KS |
867 | ++(PARSER_STREAM (parser)); |
868 | } | |
869 | } | |
870 | ||
871 | return token; | |
872 | } | |
873 | ||
874 | /* Lex a single linespec token from PARSER. */ | |
875 | ||
876 | static linespec_token | |
877 | linespec_lexer_lex_one (linespec_parser *parser) | |
878 | { | |
879 | const char *keyword; | |
880 | ||
881 | if (parser->lexer.current.type == LSTOKEN_CONSUMED) | |
882 | { | |
883 | /* Skip any whitespace. */ | |
f1735a53 | 884 | PARSER_STREAM (parser) = skip_spaces (PARSER_STREAM (parser)); |
40e084e1 | 885 | |
7c09e5a0 | 886 | /* Check for a keyword, they end the linespec. */ |
0578b14e | 887 | keyword = linespec_lexer_lex_keyword (PARSER_STREAM (parser)); |
40e084e1 KS |
888 | if (keyword != NULL) |
889 | { | |
890 | parser->lexer.current.type = LSTOKEN_KEYWORD; | |
891 | LS_TOKEN_KEYWORD (parser->lexer.current) = keyword; | |
0578b14e KS |
892 | /* We do not advance the stream here intentionally: |
893 | we would like lexing to stop when a keyword is seen. | |
894 | ||
895 | PARSER_STREAM (parser) += strlen (keyword); */ | |
896 | ||
40e084e1 KS |
897 | return parser->lexer.current; |
898 | } | |
899 | ||
900 | /* Handle other tokens. */ | |
901 | switch (*PARSER_STREAM (parser)) | |
902 | { | |
903 | case 0: | |
904 | parser->lexer.current.type = LSTOKEN_EOI; | |
905 | break; | |
906 | ||
907 | case '+': case '-': | |
908 | case '0': case '1': case '2': case '3': case '4': | |
909 | case '5': case '6': case '7': case '8': case '9': | |
d7cbec71 HZ |
910 | if (!linespec_lexer_lex_number (parser, &(parser->lexer.current))) |
911 | parser->lexer.current = linespec_lexer_lex_string (parser); | |
40e084e1 KS |
912 | break; |
913 | ||
914 | case ':': | |
915 | /* If we have a scope operator, lex the input as a string. | |
916 | Otherwise, return LSTOKEN_COLON. */ | |
917 | if (PARSER_STREAM (parser)[1] == ':') | |
918 | parser->lexer.current = linespec_lexer_lex_string (parser); | |
919 | else | |
920 | { | |
921 | parser->lexer.current.type = LSTOKEN_COLON; | |
922 | ++(PARSER_STREAM (parser)); | |
923 | } | |
924 | break; | |
925 | ||
926 | case '\'': case '\"': | |
927 | /* Special case: permit quote-enclosed linespecs. */ | |
928 | if (parser->is_quote_enclosed | |
929 | && is_closing_quote_enclosed (PARSER_STREAM (parser))) | |
930 | { | |
931 | ++(PARSER_STREAM (parser)); | |
932 | parser->lexer.current.type = LSTOKEN_EOI; | |
933 | } | |
934 | else | |
935 | parser->lexer.current = linespec_lexer_lex_string (parser); | |
936 | break; | |
937 | ||
938 | case ',': | |
939 | parser->lexer.current.type = LSTOKEN_COMMA; | |
940 | LS_TOKEN_STOKEN (parser->lexer.current).ptr | |
941 | = PARSER_STREAM (parser); | |
942 | LS_TOKEN_STOKEN (parser->lexer.current).length = 1; | |
943 | ++(PARSER_STREAM (parser)); | |
944 | break; | |
945 | ||
946 | default: | |
947 | /* If the input is not a number, it must be a string. | |
948 | [Keywords were already considered above.] */ | |
949 | parser->lexer.current = linespec_lexer_lex_string (parser); | |
950 | break; | |
951 | } | |
952 | } | |
953 | ||
954 | return parser->lexer.current; | |
955 | } | |
956 | ||
957 | /* Consume the current token and return the next token in PARSER's | |
c45ec17c PA |
958 | input stream. Also advance the completion word for completion |
959 | mode. */ | |
40e084e1 KS |
960 | |
961 | static linespec_token | |
962 | linespec_lexer_consume_token (linespec_parser *parser) | |
963 | { | |
c45ec17c PA |
964 | gdb_assert (parser->lexer.current.type != LSTOKEN_EOI); |
965 | ||
966 | bool advance_word = (parser->lexer.current.type != LSTOKEN_STRING | |
967 | || *PARSER_STREAM (parser) != '\0'); | |
968 | ||
969 | /* If we're moving past a string to some other token, it must be the | |
970 | quote was terminated. */ | |
971 | if (parser->completion_quote_char) | |
972 | { | |
973 | gdb_assert (parser->lexer.current.type == LSTOKEN_STRING); | |
974 | ||
975 | /* If the string was the last (non-EOI) token, we're past the | |
976 | quote, but remember that for later. */ | |
977 | if (*PARSER_STREAM (parser) != '\0') | |
978 | { | |
979 | parser->completion_quote_char = '\0'; | |
980 | parser->completion_quote_end = NULL;; | |
981 | } | |
982 | } | |
983 | ||
40e084e1 | 984 | parser->lexer.current.type = LSTOKEN_CONSUMED; |
c45ec17c PA |
985 | linespec_lexer_lex_one (parser); |
986 | ||
987 | if (parser->lexer.current.type == LSTOKEN_STRING) | |
988 | { | |
989 | /* Advance the completion word past a potential initial | |
990 | quote-char. */ | |
991 | parser->completion_word = LS_TOKEN_STOKEN (parser->lexer.current).ptr; | |
992 | } | |
993 | else if (advance_word) | |
994 | { | |
995 | /* Advance the completion word past any whitespace. */ | |
996 | parser->completion_word = PARSER_STREAM (parser); | |
997 | } | |
998 | ||
999 | return parser->lexer.current; | |
40e084e1 KS |
1000 | } |
1001 | ||
1002 | /* Return the next token without consuming the current token. */ | |
1003 | ||
1004 | static linespec_token | |
1005 | linespec_lexer_peek_token (linespec_parser *parser) | |
1006 | { | |
1007 | linespec_token next; | |
d7561cbb | 1008 | const char *saved_stream = PARSER_STREAM (parser); |
40e084e1 | 1009 | linespec_token saved_token = parser->lexer.current; |
c45ec17c PA |
1010 | int saved_completion_quote_char = parser->completion_quote_char; |
1011 | const char *saved_completion_quote_end = parser->completion_quote_end; | |
1012 | const char *saved_completion_word = parser->completion_word; | |
40e084e1 KS |
1013 | |
1014 | next = linespec_lexer_consume_token (parser); | |
1015 | PARSER_STREAM (parser) = saved_stream; | |
1016 | parser->lexer.current = saved_token; | |
c45ec17c PA |
1017 | parser->completion_quote_char = saved_completion_quote_char; |
1018 | parser->completion_quote_end = saved_completion_quote_end; | |
1019 | parser->completion_word = saved_completion_word; | |
40e084e1 KS |
1020 | return next; |
1021 | } | |
1022 | ||
1023 | /* Helper functions. */ | |
1024 | ||
40e084e1 KS |
1025 | /* Add SAL to SALS, and also update SELF->CANONICAL_NAMES to reflect |
1026 | the new sal, if needed. If not NULL, SYMNAME is the name of the | |
66f1999b KS |
1027 | symbol to use when constructing the new canonical name. |
1028 | ||
1029 | If LITERAL_CANONICAL is non-zero, SYMNAME will be used as the | |
1030 | canonical name for the SAL. */ | |
40e084e1 KS |
1031 | |
1032 | static void | |
1033 | add_sal_to_sals (struct linespec_state *self, | |
6c5b2ebe | 1034 | std::vector<symtab_and_line> *sals, |
40e084e1 | 1035 | struct symtab_and_line *sal, |
66f1999b | 1036 | const char *symname, int literal_canonical) |
40e084e1 | 1037 | { |
6c5b2ebe | 1038 | sals->push_back (*sal); |
40e084e1 KS |
1039 | |
1040 | if (self->canonical) | |
1041 | { | |
33f448b1 | 1042 | struct linespec_canonical_name *canonical; |
40e084e1 | 1043 | |
224c3ddb | 1044 | self->canonical_names = XRESIZEVEC (struct linespec_canonical_name, |
6c5b2ebe PA |
1045 | self->canonical_names, |
1046 | sals->size ()); | |
1047 | canonical = &self->canonical_names[sals->size () - 1]; | |
4e04028d | 1048 | if (!literal_canonical && sal->symtab) |
40e084e1 | 1049 | { |
df140a0b TS |
1050 | symtab_to_fullname (sal->symtab); |
1051 | ||
40e084e1 KS |
1052 | /* Note that the filter doesn't have to be a valid linespec |
1053 | input. We only apply the ":LINE" treatment to Ada for | |
1054 | the time being. */ | |
1055 | if (symname != NULL && sal->line != 0 | |
1056 | && self->language->la_language == language_ada) | |
33f448b1 | 1057 | canonical->suffix = xstrprintf ("%s:%d", symname, sal->line); |
40e084e1 | 1058 | else if (symname != NULL) |
33f448b1 | 1059 | canonical->suffix = xstrdup (symname); |
40e084e1 | 1060 | else |
33f448b1 JK |
1061 | canonical->suffix = xstrprintf ("%d", sal->line); |
1062 | canonical->symtab = sal->symtab; | |
1063 | } | |
1064 | else | |
1065 | { | |
1066 | if (symname != NULL) | |
1067 | canonical->suffix = xstrdup (symname); | |
1068 | else | |
e617b069 | 1069 | canonical->suffix = xstrdup ("<unknown>"); |
33f448b1 | 1070 | canonical->symtab = NULL; |
40e084e1 | 1071 | } |
40e084e1 KS |
1072 | } |
1073 | } | |
1074 | ||
1075 | /* A hash function for address_entry. */ | |
1076 | ||
1077 | static hashval_t | |
1078 | hash_address_entry (const void *p) | |
1079 | { | |
9a3c8263 | 1080 | const struct address_entry *aep = (const struct address_entry *) p; |
40e084e1 KS |
1081 | hashval_t hash; |
1082 | ||
1083 | hash = iterative_hash_object (aep->pspace, 0); | |
1084 | return iterative_hash_object (aep->addr, hash); | |
1085 | } | |
1086 | ||
1087 | /* An equality function for address_entry. */ | |
1088 | ||
1089 | static int | |
1090 | eq_address_entry (const void *a, const void *b) | |
1091 | { | |
9a3c8263 SM |
1092 | const struct address_entry *aea = (const struct address_entry *) a; |
1093 | const struct address_entry *aeb = (const struct address_entry *) b; | |
40e084e1 KS |
1094 | |
1095 | return aea->pspace == aeb->pspace && aea->addr == aeb->addr; | |
1096 | } | |
1097 | ||
1098 | /* Check whether the address, represented by PSPACE and ADDR, is | |
1099 | already in the set. If so, return 0. Otherwise, add it and return | |
1100 | 1. */ | |
1101 | ||
1102 | static int | |
1103 | maybe_add_address (htab_t set, struct program_space *pspace, CORE_ADDR addr) | |
1104 | { | |
1105 | struct address_entry e, *p; | |
1106 | void **slot; | |
1107 | ||
1108 | e.pspace = pspace; | |
1109 | e.addr = addr; | |
1110 | slot = htab_find_slot (set, &e, INSERT); | |
1111 | if (*slot) | |
1112 | return 0; | |
1113 | ||
1114 | p = XNEW (struct address_entry); | |
1115 | memcpy (p, &e, sizeof (struct address_entry)); | |
1116 | *slot = p; | |
1117 | ||
1118 | return 1; | |
1119 | } | |
1120 | ||
40e084e1 KS |
1121 | /* A helper that walks over all matching symtabs in all objfiles and |
1122 | calls CALLBACK for each symbol matching NAME. If SEARCH_PSPACE is | |
1123 | not NULL, then the search is restricted to just that program | |
14bc53a8 | 1124 | space. If INCLUDE_INLINE is true then symbols representing |
40e084e1 KS |
1125 | inlined instances of functions will be included in the result. */ |
1126 | ||
1127 | static void | |
14bc53a8 | 1128 | iterate_over_all_matching_symtabs |
b5ec771e PA |
1129 | (struct linespec_state *state, |
1130 | const lookup_name_info &lookup_name, | |
1131 | const domain_enum name_domain, | |
56d87ef7 | 1132 | enum search_domain search_domain, |
14bc53a8 PA |
1133 | struct program_space *search_pspace, bool include_inline, |
1134 | gdb::function_view<symbol_found_callback_ftype> callback) | |
40e084e1 | 1135 | { |
40e084e1 | 1136 | struct program_space *pspace; |
40e084e1 | 1137 | |
40e084e1 KS |
1138 | ALL_PSPACES (pspace) |
1139 | { | |
1140 | if (search_pspace != NULL && search_pspace != pspace) | |
1141 | continue; | |
1142 | if (pspace->executing_startup) | |
f8eba3c6 TT |
1143 | continue; |
1144 | ||
1145 | set_current_program_space (pspace); | |
50641945 | 1146 | |
2030c079 | 1147 | for (objfile *objfile : current_program_space->objfiles ()) |
aed57c53 | 1148 | { |
aed57c53 TT |
1149 | if (objfile->sf) |
1150 | objfile->sf->qf->expand_symtabs_matching (objfile, | |
1151 | NULL, | |
1152 | lookup_name, | |
1153 | NULL, NULL, | |
1154 | search_domain); | |
f8eba3c6 | 1155 | |
b669c953 | 1156 | for (compunit_symtab *cu : objfile->compunits ()) |
aed57c53 TT |
1157 | { |
1158 | struct symtab *symtab = COMPUNIT_FILETABS (cu); | |
43f3e411 | 1159 | |
aed57c53 TT |
1160 | iterate_over_file_blocks (symtab, lookup_name, name_domain, |
1161 | callback); | |
481860b3 | 1162 | |
aed57c53 TT |
1163 | if (include_inline) |
1164 | { | |
582942f4 | 1165 | const struct block *block; |
aed57c53 | 1166 | int i; |
481860b3 | 1167 | |
aed57c53 TT |
1168 | for (i = FIRST_LOCAL_BLOCK; |
1169 | i < BLOCKVECTOR_NBLOCKS (SYMTAB_BLOCKVECTOR (symtab)); | |
1170 | i++) | |
1171 | { | |
1172 | block = BLOCKVECTOR_BLOCK (SYMTAB_BLOCKVECTOR (symtab), i); | |
1173 | state->language->la_iterate_over_symbols | |
1174 | (block, lookup_name, name_domain, | |
1175 | [&] (block_symbol *bsym) | |
1176 | { | |
1177 | /* Restrict calls to CALLBACK to symbols | |
1178 | representing inline symbols only. */ | |
1179 | if (SYMBOL_INLINED (bsym->symbol)) | |
1180 | return callback (bsym); | |
1181 | return true; | |
1182 | }); | |
1183 | } | |
1184 | } | |
1185 | } | |
1186 | } | |
f8eba3c6 | 1187 | } |
50641945 FN |
1188 | } |
1189 | ||
4eeaa230 DE |
1190 | /* Returns the block to be used for symbol searches from |
1191 | the current location. */ | |
e8eb7bc5 | 1192 | |
3977b71f | 1193 | static const struct block * |
e482a1a7 | 1194 | get_current_search_block (void) |
e8eb7bc5 | 1195 | { |
4eeaa230 DE |
1196 | /* get_selected_block can change the current language when there is |
1197 | no selected frame yet. */ | |
9bb9b2f9 TT |
1198 | scoped_restore_current_language save_language; |
1199 | return get_selected_block (0); | |
e8eb7bc5 KS |
1200 | } |
1201 | ||
4eeaa230 DE |
1202 | /* Iterate over static and global blocks. */ |
1203 | ||
1204 | static void | |
14bc53a8 | 1205 | iterate_over_file_blocks |
b5ec771e PA |
1206 | (struct symtab *symtab, const lookup_name_info &name, |
1207 | domain_enum domain, gdb::function_view<symbol_found_callback_ftype> callback) | |
4eeaa230 | 1208 | { |
582942f4 | 1209 | const struct block *block; |
4eeaa230 | 1210 | |
439247b6 | 1211 | for (block = BLOCKVECTOR_BLOCK (SYMTAB_BLOCKVECTOR (symtab), STATIC_BLOCK); |
4eeaa230 DE |
1212 | block != NULL; |
1213 | block = BLOCK_SUPERBLOCK (block)) | |
14bc53a8 | 1214 | LA_ITERATE_OVER_SYMBOLS (block, name, domain, callback); |
4eeaa230 DE |
1215 | } |
1216 | ||
b5ec771e PA |
1217 | /* A helper for find_method. This finds all methods in type T of |
1218 | language T_LANG which match NAME. It adds matching symbol names to | |
1219 | RESULT_NAMES, and adds T's direct superclasses to SUPERCLASSES. */ | |
50641945 | 1220 | |
f8eba3c6 | 1221 | static void |
b5ec771e | 1222 | find_methods (struct type *t, enum language t_lang, const char *name, |
9b2f8581 | 1223 | std::vector<const char *> *result_names, |
8e8d776e | 1224 | std::vector<struct type *> *superclasses) |
50641945 | 1225 | { |
50641945 | 1226 | int ibase; |
a737d952 | 1227 | const char *class_name = TYPE_NAME (t); |
c00f8484 | 1228 | |
50641945 FN |
1229 | /* Ignore this class if it doesn't have a name. This is ugly, but |
1230 | unless we figure out how to get the physname without the name of | |
1231 | the class, then the loop can't do any good. */ | |
f8eba3c6 | 1232 | if (class_name) |
50641945 FN |
1233 | { |
1234 | int method_counter; | |
b5ec771e PA |
1235 | lookup_name_info lookup_name (name, symbol_name_match_type::FULL); |
1236 | symbol_name_matcher_ftype *symbol_name_compare | |
618daa93 | 1237 | = get_symbol_name_matcher (language_def (t_lang), lookup_name); |
50641945 | 1238 | |
f168693b | 1239 | t = check_typedef (t); |
50641945 FN |
1240 | |
1241 | /* Loop over each method name. At this level, all overloads of a name | |
1242 | are counted as a single name. There is an inner loop which loops over | |
1243 | each overload. */ | |
1244 | ||
1245 | for (method_counter = TYPE_NFN_FIELDS (t) - 1; | |
1246 | method_counter >= 0; | |
1247 | --method_counter) | |
1248 | { | |
0d5cff50 | 1249 | const char *method_name = TYPE_FN_FIELDLIST_NAME (t, method_counter); |
50641945 | 1250 | |
b5ec771e | 1251 | if (symbol_name_compare (method_name, lookup_name, NULL)) |
f8eba3c6 TT |
1252 | { |
1253 | int field_counter; | |
aee8d8ba | 1254 | |
f8eba3c6 TT |
1255 | for (field_counter = (TYPE_FN_FIELDLIST_LENGTH (t, method_counter) |
1256 | - 1); | |
1257 | field_counter >= 0; | |
1258 | --field_counter) | |
1259 | { | |
1260 | struct fn_field *f; | |
1261 | const char *phys_name; | |
1262 | ||
1263 | f = TYPE_FN_FIELDLIST1 (t, method_counter); | |
1264 | if (TYPE_FN_FIELD_STUB (f, field_counter)) | |
1265 | continue; | |
1266 | phys_name = TYPE_FN_FIELD_PHYSNAME (f, field_counter); | |
9b2f8581 | 1267 | result_names->push_back (phys_name); |
f8eba3c6 TT |
1268 | } |
1269 | } | |
aee8d8ba DC |
1270 | } |
1271 | } | |
1272 | ||
f8eba3c6 | 1273 | for (ibase = 0; ibase < TYPE_N_BASECLASSES (t); ibase++) |
8e8d776e | 1274 | superclasses->push_back (TYPE_BASECLASS (t, ibase)); |
50641945 FN |
1275 | } |
1276 | ||
50641945 FN |
1277 | /* Find an instance of the character C in the string S that is outside |
1278 | of all parenthesis pairs, single-quoted strings, and double-quoted | |
8120c9d5 | 1279 | strings. Also, ignore the char within a template name, like a ',' |
be966d42 | 1280 | within foo<int, int>, while considering C++ operator</operator<<. */ |
8120c9d5 | 1281 | |
87f0e720 | 1282 | const char * |
40e084e1 | 1283 | find_toplevel_char (const char *s, char c) |
50641945 FN |
1284 | { |
1285 | int quoted = 0; /* zero if we're not in quotes; | |
1286 | '"' if we're in a double-quoted string; | |
1287 | '\'' if we're in a single-quoted string. */ | |
a04257e6 | 1288 | int depth = 0; /* Number of unclosed parens we've seen. */ |
40e084e1 | 1289 | const char *scan; |
50641945 FN |
1290 | |
1291 | for (scan = s; *scan; scan++) | |
1292 | { | |
1293 | if (quoted) | |
1294 | { | |
1295 | if (*scan == quoted) | |
1296 | quoted = 0; | |
1297 | else if (*scan == '\\' && *(scan + 1)) | |
1298 | scan++; | |
1299 | } | |
1300 | else if (*scan == c && ! quoted && depth == 0) | |
1301 | return scan; | |
1302 | else if (*scan == '"' || *scan == '\'') | |
1303 | quoted = *scan; | |
8120c9d5 | 1304 | else if (*scan == '(' || *scan == '<') |
50641945 | 1305 | depth++; |
8120c9d5 | 1306 | else if ((*scan == ')' || *scan == '>') && depth > 0) |
50641945 | 1307 | depth--; |
be966d42 PA |
1308 | else if (*scan == 'o' && !quoted && depth == 0) |
1309 | { | |
1310 | /* Handle C++ operator names. */ | |
1311 | if (strncmp (scan, CP_OPERATOR_STR, CP_OPERATOR_LEN) == 0) | |
1312 | { | |
1313 | scan += CP_OPERATOR_LEN; | |
1314 | if (*scan == c) | |
1315 | return scan; | |
1316 | while (isspace (*scan)) | |
1317 | { | |
1318 | ++scan; | |
1319 | if (*scan == c) | |
1320 | return scan; | |
1321 | } | |
1322 | if (*scan == '\0') | |
1323 | break; | |
1324 | ||
1325 | switch (*scan) | |
1326 | { | |
1327 | /* Skip over one less than the appropriate number of | |
1328 | characters: the for loop will skip over the last | |
1329 | one. */ | |
1330 | case '<': | |
1331 | if (scan[1] == '<') | |
1332 | { | |
1333 | scan++; | |
1334 | if (*scan == c) | |
1335 | return scan; | |
1336 | } | |
1337 | break; | |
1338 | case '>': | |
1339 | if (scan[1] == '>') | |
1340 | { | |
1341 | scan++; | |
1342 | if (*scan == c) | |
1343 | return scan; | |
1344 | } | |
1345 | break; | |
1346 | } | |
1347 | } | |
1348 | } | |
50641945 FN |
1349 | } |
1350 | ||
1351 | return 0; | |
1352 | } | |
1353 | ||
40e084e1 KS |
1354 | /* The string equivalent of find_toplevel_char. Returns a pointer |
1355 | to the location of NEEDLE in HAYSTACK, ignoring any occurrences | |
1356 | inside "()" and "<>". Returns NULL if NEEDLE was not found. */ | |
889f28e2 | 1357 | |
40e084e1 KS |
1358 | static const char * |
1359 | find_toplevel_string (const char *haystack, const char *needle) | |
889f28e2 | 1360 | { |
40e084e1 KS |
1361 | const char *s = haystack; |
1362 | ||
1363 | do | |
1364 | { | |
1365 | s = find_toplevel_char (s, *needle); | |
1366 | ||
1367 | if (s != NULL) | |
1368 | { | |
1369 | /* Found first char in HAYSTACK; check rest of string. */ | |
61012eef | 1370 | if (startswith (s, needle)) |
40e084e1 KS |
1371 | return s; |
1372 | ||
1373 | /* Didn't find it; loop over HAYSTACK, looking for the next | |
1374 | instance of the first character of NEEDLE. */ | |
1375 | ++s; | |
1376 | } | |
1377 | } | |
1378 | while (s != NULL && *s != '\0'); | |
1379 | ||
1380 | /* NEEDLE was not found in HAYSTACK. */ | |
1381 | return NULL; | |
889f28e2 AF |
1382 | } |
1383 | ||
33f448b1 | 1384 | /* Convert CANONICAL to its string representation using |
53a0f8a2 | 1385 | symtab_to_fullname for SYMTAB. */ |
33f448b1 | 1386 | |
53a0f8a2 | 1387 | static std::string |
33f448b1 JK |
1388 | canonical_to_fullform (const struct linespec_canonical_name *canonical) |
1389 | { | |
1390 | if (canonical->symtab == NULL) | |
53a0f8a2 | 1391 | return canonical->suffix; |
33f448b1 | 1392 | else |
53a0f8a2 TT |
1393 | return string_printf ("%s:%s", symtab_to_fullname (canonical->symtab), |
1394 | canonical->suffix); | |
33f448b1 JK |
1395 | } |
1396 | ||
f8eba3c6 TT |
1397 | /* Given FILTERS, a list of canonical names, filter the sals in RESULT |
1398 | and store the result in SELF->CANONICAL. */ | |
50641945 | 1399 | |
f8eba3c6 TT |
1400 | static void |
1401 | filter_results (struct linespec_state *self, | |
6c5b2ebe | 1402 | std::vector<symtab_and_line> *result, |
f73c6ece | 1403 | const std::vector<const char *> &filters) |
f8eba3c6 | 1404 | { |
f73c6ece | 1405 | for (const char *name : filters) |
f8eba3c6 | 1406 | { |
6c5b2ebe | 1407 | linespec_sals lsal; |
f8eba3c6 | 1408 | |
6c5b2ebe | 1409 | for (size_t j = 0; j < result->size (); ++j) |
f8eba3c6 | 1410 | { |
33f448b1 | 1411 | const struct linespec_canonical_name *canonical; |
33f448b1 JK |
1412 | |
1413 | canonical = &self->canonical_names[j]; | |
53a0f8a2 | 1414 | std::string fullform = canonical_to_fullform (canonical); |
33f448b1 | 1415 | |
53a0f8a2 | 1416 | if (name == fullform) |
6c5b2ebe | 1417 | lsal.sals.push_back ((*result)[j]); |
f8eba3c6 TT |
1418 | } |
1419 | ||
6c5b2ebe | 1420 | if (!lsal.sals.empty ()) |
f8eba3c6 TT |
1421 | { |
1422 | lsal.canonical = xstrdup (name); | |
6c5b2ebe | 1423 | self->canonical->lsals.push_back (std::move (lsal)); |
f8eba3c6 TT |
1424 | } |
1425 | } | |
1426 | ||
1427 | self->canonical->pre_expanded = 0; | |
1428 | } | |
1429 | ||
1430 | /* Store RESULT into SELF->CANONICAL. */ | |
1431 | ||
1432 | static void | |
1433 | convert_results_to_lsals (struct linespec_state *self, | |
6c5b2ebe | 1434 | std::vector<symtab_and_line> *result) |
50641945 | 1435 | { |
f8eba3c6 TT |
1436 | struct linespec_sals lsal; |
1437 | ||
1438 | lsal.canonical = NULL; | |
6c5b2ebe PA |
1439 | lsal.sals = std::move (*result); |
1440 | self->canonical->lsals.push_back (std::move (lsal)); | |
f8eba3c6 TT |
1441 | } |
1442 | ||
33f448b1 JK |
1443 | /* A structure that contains two string representations of a struct |
1444 | linespec_canonical_name: | |
6471e7d2 | 1445 | - one where the symtab's fullname is used; |
33f448b1 JK |
1446 | - one where the filename followed the "set filename-display" |
1447 | setting. */ | |
1448 | ||
1449 | struct decode_line_2_item | |
1450 | { | |
53a0f8a2 TT |
1451 | decode_line_2_item (std::string &&fullform_, std::string &&displayform_, |
1452 | bool selected_) | |
1453 | : fullform (std::move (fullform_)), | |
1454 | displayform (std::move (displayform_)), | |
1455 | selected (selected_) | |
1456 | { | |
1457 | } | |
33f448b1 | 1458 | |
53a0f8a2 TT |
1459 | /* The form using symtab_to_fullname. */ |
1460 | std::string fullform; | |
1461 | ||
1462 | /* The form using symtab_to_filename_for_display. */ | |
1463 | std::string displayform; | |
33f448b1 JK |
1464 | |
1465 | /* Field is initialized to zero and it is set to one if the user | |
1466 | requested breakpoint for this entry. */ | |
1467 | unsigned int selected : 1; | |
1468 | }; | |
1469 | ||
53a0f8a2 TT |
1470 | /* Helper for std::sort to sort decode_line_2_item entries by |
1471 | DISPLAYFORM and secondarily by FULLFORM. */ | |
33f448b1 | 1472 | |
53a0f8a2 TT |
1473 | static bool |
1474 | decode_line_2_compare_items (const decode_line_2_item &a, | |
1475 | const decode_line_2_item &b) | |
33f448b1 | 1476 | { |
53a0f8a2 TT |
1477 | if (a.displayform != b.displayform) |
1478 | return a.displayform < b.displayform; | |
1479 | return a.fullform < b.fullform; | |
33f448b1 JK |
1480 | } |
1481 | ||
f8eba3c6 TT |
1482 | /* Handle multiple results in RESULT depending on SELECT_MODE. This |
1483 | will either return normally, throw an exception on multiple | |
1484 | results, or present a menu to the user. On return, the SALS vector | |
1485 | in SELF->CANONICAL is set up properly. */ | |
1486 | ||
1487 | static void | |
1488 | decode_line_2 (struct linespec_state *self, | |
6c5b2ebe | 1489 | std::vector<symtab_and_line> *result, |
f8eba3c6 TT |
1490 | const char *select_mode) |
1491 | { | |
992a7040 | 1492 | const char *args; |
a121b7c1 | 1493 | const char *prompt; |
50641945 | 1494 | int i; |
f73c6ece | 1495 | std::vector<const char *> filters; |
53a0f8a2 | 1496 | std::vector<struct decode_line_2_item> items; |
50641945 | 1497 | |
f8eba3c6 TT |
1498 | gdb_assert (select_mode != multiple_symbols_all); |
1499 | gdb_assert (self->canonical != NULL); | |
6c5b2ebe | 1500 | gdb_assert (!result->empty ()); |
33f448b1 | 1501 | |
33f448b1 | 1502 | /* Prepare ITEMS array. */ |
53a0f8a2 | 1503 | for (i = 0; i < result->size (); ++i) |
50641945 | 1504 | { |
33f448b1 | 1505 | const struct linespec_canonical_name *canonical; |
53a0f8a2 TT |
1506 | std::string displayform; |
1507 | ||
33f448b1 JK |
1508 | canonical = &self->canonical_names[i]; |
1509 | gdb_assert (canonical->suffix != NULL); | |
f8eba3c6 | 1510 | |
53a0f8a2 | 1511 | std::string fullform = canonical_to_fullform (canonical); |
33f448b1 JK |
1512 | |
1513 | if (canonical->symtab == NULL) | |
53a0f8a2 | 1514 | displayform = canonical->suffix; |
33f448b1 | 1515 | else |
f8eba3c6 | 1516 | { |
33f448b1 JK |
1517 | const char *fn_for_display; |
1518 | ||
1519 | fn_for_display = symtab_to_filename_for_display (canonical->symtab); | |
53a0f8a2 TT |
1520 | displayform = string_printf ("%s:%s", fn_for_display, |
1521 | canonical->suffix); | |
f8eba3c6 TT |
1522 | } |
1523 | ||
53a0f8a2 TT |
1524 | items.emplace_back (std::move (fullform), std::move (displayform), |
1525 | false); | |
50641945 FN |
1526 | } |
1527 | ||
33f448b1 | 1528 | /* Sort the list of method names. */ |
53a0f8a2 | 1529 | std::sort (items.begin (), items.end (), decode_line_2_compare_items); |
33f448b1 JK |
1530 | |
1531 | /* Remove entries with the same FULLFORM. */ | |
53a0f8a2 TT |
1532 | items.erase (std::unique (items.begin (), items.end (), |
1533 | [] (const struct decode_line_2_item &a, | |
1534 | const struct decode_line_2_item &b) | |
1535 | { | |
1536 | return a.fullform == b.fullform; | |
1537 | }), | |
1538 | items.end ()); | |
1539 | ||
1540 | if (select_mode == multiple_symbols_cancel && items.size () > 1) | |
f8eba3c6 TT |
1541 | error (_("canceled because the command is ambiguous\n" |
1542 | "See set/show multiple-symbol.")); | |
1543 | ||
53a0f8a2 | 1544 | if (select_mode == multiple_symbols_all || items.size () == 1) |
50641945 | 1545 | { |
f8eba3c6 TT |
1546 | convert_results_to_lsals (self, result); |
1547 | return; | |
50641945 FN |
1548 | } |
1549 | ||
f8eba3c6 | 1550 | printf_unfiltered (_("[0] cancel\n[1] all\n")); |
53a0f8a2 TT |
1551 | for (i = 0; i < items.size (); i++) |
1552 | printf_unfiltered ("[%d] %s\n", i + 2, items[i].displayform.c_str ()); | |
f8eba3c6 TT |
1553 | |
1554 | prompt = getenv ("PS2"); | |
1555 | if (prompt == NULL) | |
50641945 | 1556 | { |
f8eba3c6 | 1557 | prompt = "> "; |
50641945 | 1558 | } |
89fbedf3 | 1559 | args = command_line_input (prompt, "overload-choice"); |
50641945 FN |
1560 | |
1561 | if (args == 0 || *args == 0) | |
e2e0b3e5 | 1562 | error_no_arg (_("one or more choice numbers")); |
50641945 | 1563 | |
bfd28288 PA |
1564 | number_or_range_parser parser (args); |
1565 | while (!parser.finished ()) | |
50641945 | 1566 | { |
bfd28288 | 1567 | int num = parser.get_number (); |
50641945 FN |
1568 | |
1569 | if (num == 0) | |
8a3fe4f8 | 1570 | error (_("canceled")); |
50641945 FN |
1571 | else if (num == 1) |
1572 | { | |
f8eba3c6 TT |
1573 | /* We intentionally make this result in a single breakpoint, |
1574 | contrary to what older versions of gdb did. The | |
1575 | rationale is that this lets a user get the | |
1576 | multiple_symbols_all behavior even with the 'ask' | |
1577 | setting; and he can get separate breakpoints by entering | |
1578 | "2-57" at the query. */ | |
f8eba3c6 TT |
1579 | convert_results_to_lsals (self, result); |
1580 | return; | |
50641945 FN |
1581 | } |
1582 | ||
f8eba3c6 | 1583 | num -= 2; |
53a0f8a2 | 1584 | if (num >= items.size ()) |
f8eba3c6 | 1585 | printf_unfiltered (_("No choice number %d.\n"), num); |
50641945 FN |
1586 | else |
1587 | { | |
33f448b1 | 1588 | struct decode_line_2_item *item = &items[num]; |
f8eba3c6 | 1589 | |
33f448b1 | 1590 | if (!item->selected) |
50641945 | 1591 | { |
f73c6ece | 1592 | filters.push_back (item->fullform.c_str ()); |
33f448b1 | 1593 | item->selected = 1; |
50641945 FN |
1594 | } |
1595 | else | |
1596 | { | |
3e43a32a | 1597 | printf_unfiltered (_("duplicate request for %d ignored.\n"), |
f6f99966 | 1598 | num + 2); |
50641945 FN |
1599 | } |
1600 | } | |
50641945 | 1601 | } |
f8eba3c6 TT |
1602 | |
1603 | filter_results (self, result, filters); | |
50641945 | 1604 | } |
94af9270 | 1605 | |
40e084e1 | 1606 | \f |
3d50dd94 | 1607 | |
40e084e1 KS |
1608 | /* The parser of linespec itself. */ |
1609 | ||
1610 | /* Throw an appropriate error when SYMBOL is not found (optionally in | |
1611 | FILENAME). */ | |
1612 | ||
1613 | static void ATTRIBUTE_NORETURN | |
5d94e27b | 1614 | symbol_not_found_error (const char *symbol, const char *filename) |
3d50dd94 | 1615 | { |
40e084e1 KS |
1616 | if (symbol == NULL) |
1617 | symbol = ""; | |
1618 | ||
1619 | if (!have_full_symbols () | |
1620 | && !have_partial_symbols () | |
1621 | && !have_minimal_symbols ()) | |
1622 | throw_error (NOT_FOUND_ERROR, | |
1623 | _("No symbol table is loaded. Use the \"file\" command.")); | |
1624 | ||
1625 | /* If SYMBOL starts with '$', the user attempted to either lookup | |
1626 | a function/variable in his code starting with '$' or an internal | |
1627 | variable of that name. Since we do not know which, be concise and | |
1628 | explain both possibilities. */ | |
1629 | if (*symbol == '$') | |
1630 | { | |
1631 | if (filename) | |
1632 | throw_error (NOT_FOUND_ERROR, | |
1633 | _("Undefined convenience variable or function \"%s\" " | |
1634 | "not defined in \"%s\"."), symbol, filename); | |
1635 | else | |
1636 | throw_error (NOT_FOUND_ERROR, | |
1637 | _("Undefined convenience variable or function \"%s\" " | |
1638 | "not defined."), symbol); | |
1639 | } | |
1640 | else | |
1641 | { | |
1642 | if (filename) | |
1643 | throw_error (NOT_FOUND_ERROR, | |
1644 | _("Function \"%s\" not defined in \"%s\"."), | |
1645 | symbol, filename); | |
1646 | else | |
1647 | throw_error (NOT_FOUND_ERROR, | |
1648 | _("Function \"%s\" not defined."), symbol); | |
1649 | } | |
3d50dd94 JK |
1650 | } |
1651 | ||
40e084e1 KS |
1652 | /* Throw an appropriate error when an unexpected token is encountered |
1653 | in the input. */ | |
94af9270 | 1654 | |
40e084e1 KS |
1655 | static void ATTRIBUTE_NORETURN |
1656 | unexpected_linespec_error (linespec_parser *parser) | |
94af9270 | 1657 | { |
40e084e1 KS |
1658 | linespec_token token; |
1659 | static const char * token_type_strings[] | |
1660 | = {"keyword", "colon", "string", "number", "comma", "end of input"}; | |
94af9270 | 1661 | |
40e084e1 KS |
1662 | /* Get the token that generated the error. */ |
1663 | token = linespec_lexer_lex_one (parser); | |
94af9270 | 1664 | |
40e084e1 KS |
1665 | /* Finally, throw the error. */ |
1666 | if (token.type == LSTOKEN_STRING || token.type == LSTOKEN_NUMBER | |
1667 | || token.type == LSTOKEN_KEYWORD) | |
94af9270 | 1668 | { |
a5b5adf5 | 1669 | gdb::unique_xmalloc_ptr<char> string = copy_token_string (token); |
40e084e1 KS |
1670 | throw_error (GENERIC_ERROR, |
1671 | _("malformed linespec error: unexpected %s, \"%s\""), | |
a5b5adf5 | 1672 | token_type_strings[token.type], string.get ()); |
40e084e1 KS |
1673 | } |
1674 | else | |
1675 | throw_error (GENERIC_ERROR, | |
1676 | _("malformed linespec error: unexpected %s"), | |
1677 | token_type_strings[token.type]); | |
1678 | } | |
1679 | ||
00e52e53 KS |
1680 | /* Throw an undefined label error. */ |
1681 | ||
1682 | static void ATTRIBUTE_NORETURN | |
1683 | undefined_label_error (const char *function, const char *label) | |
1684 | { | |
1685 | if (function != NULL) | |
1686 | throw_error (NOT_FOUND_ERROR, | |
1687 | _("No label \"%s\" defined in function \"%s\"."), | |
1688 | label, function); | |
1689 | else | |
1690 | throw_error (NOT_FOUND_ERROR, | |
1691 | _("No label \"%s\" defined in current function."), | |
1692 | label); | |
1693 | } | |
1694 | ||
1695 | /* Throw a source file not found error. */ | |
1696 | ||
1697 | static void ATTRIBUTE_NORETURN | |
1698 | source_file_not_found_error (const char *name) | |
1699 | { | |
1700 | throw_error (NOT_FOUND_ERROR, _("No source file named %s."), name); | |
1701 | } | |
1702 | ||
c45ec17c PA |
1703 | /* Unless at EIO, save the current stream position as completion word |
1704 | point, and consume the next token. */ | |
1705 | ||
1706 | static linespec_token | |
1707 | save_stream_and_consume_token (linespec_parser *parser) | |
1708 | { | |
1709 | if (linespec_lexer_peek_token (parser).type != LSTOKEN_EOI) | |
1710 | parser->completion_word = PARSER_STREAM (parser); | |
1711 | return linespec_lexer_consume_token (parser); | |
1712 | } | |
1713 | ||
87f0e720 | 1714 | /* See description in linespec.h. */ |
40e084e1 | 1715 | |
87f0e720 | 1716 | struct line_offset |
09cf2b22 | 1717 | linespec_parse_line_offset (const char *string) |
40e084e1 | 1718 | { |
87f0e720 | 1719 | const char *start = string; |
40e084e1 KS |
1720 | struct line_offset line_offset = {0, LINE_OFFSET_NONE}; |
1721 | ||
1722 | if (*string == '+') | |
1723 | { | |
1724 | line_offset.sign = LINE_OFFSET_PLUS; | |
1725 | ++string; | |
1726 | } | |
1727 | else if (*string == '-') | |
1728 | { | |
1729 | line_offset.sign = LINE_OFFSET_MINUS; | |
1730 | ++string; | |
1731 | } | |
1732 | ||
87f0e720 KS |
1733 | if (*string != '\0' && !isdigit (*string)) |
1734 | error (_("malformed line offset: \"%s\""), start); | |
1735 | ||
40e084e1 KS |
1736 | /* Right now, we only allow base 10 for offsets. */ |
1737 | line_offset.offset = atoi (string); | |
1738 | return line_offset; | |
1739 | } | |
1740 | ||
c45ec17c PA |
1741 | /* In completion mode, if the user is still typing the number, there's |
1742 | no possible completion to offer. But if there's already input past | |
1743 | the number, setup to expect NEXT. */ | |
1744 | ||
1745 | static void | |
1746 | set_completion_after_number (linespec_parser *parser, | |
1747 | linespec_complete_what next) | |
1748 | { | |
1749 | if (*PARSER_STREAM (parser) == ' ') | |
1750 | { | |
f1735a53 | 1751 | parser->completion_word = skip_spaces (PARSER_STREAM (parser) + 1); |
c45ec17c PA |
1752 | parser->complete_what = next; |
1753 | } | |
1754 | else | |
1755 | { | |
1756 | parser->completion_word = PARSER_STREAM (parser); | |
1757 | parser->complete_what = linespec_complete_what::NOTHING; | |
1758 | } | |
1759 | } | |
1760 | ||
40e084e1 KS |
1761 | /* Parse the basic_spec in PARSER's input. */ |
1762 | ||
1763 | static void | |
1764 | linespec_parse_basic (linespec_parser *parser) | |
1765 | { | |
a5b5adf5 | 1766 | gdb::unique_xmalloc_ptr<char> name; |
40e084e1 | 1767 | linespec_token token; |
7e41c8db KS |
1768 | std::vector<block_symbol> symbols; |
1769 | std::vector<block_symbol> *labels; | |
c2a031c5 | 1770 | std::vector<bound_minimal_symbol> minimal_symbols; |
40e084e1 KS |
1771 | |
1772 | /* Get the next token. */ | |
1773 | token = linespec_lexer_lex_one (parser); | |
1774 | ||
1775 | /* If it is EOI or KEYWORD, issue an error. */ | |
c45ec17c PA |
1776 | if (token.type == LSTOKEN_KEYWORD) |
1777 | { | |
1778 | parser->complete_what = linespec_complete_what::NOTHING; | |
1779 | unexpected_linespec_error (parser); | |
1780 | } | |
1781 | else if (token.type == LSTOKEN_EOI) | |
1782 | { | |
1783 | unexpected_linespec_error (parser); | |
1784 | } | |
40e084e1 KS |
1785 | /* If it is a LSTOKEN_NUMBER, we have an offset. */ |
1786 | else if (token.type == LSTOKEN_NUMBER) | |
1787 | { | |
c45ec17c PA |
1788 | set_completion_after_number (parser, linespec_complete_what::KEYWORD); |
1789 | ||
40e084e1 KS |
1790 | /* Record the line offset and get the next token. */ |
1791 | name = copy_token_string (token); | |
a5b5adf5 TT |
1792 | PARSER_EXPLICIT (parser)->line_offset |
1793 | = linespec_parse_line_offset (name.get ()); | |
40e084e1 KS |
1794 | |
1795 | /* Get the next token. */ | |
1796 | token = linespec_lexer_consume_token (parser); | |
1797 | ||
1798 | /* If the next token is a comma, stop parsing and return. */ | |
1799 | if (token.type == LSTOKEN_COMMA) | |
c45ec17c PA |
1800 | { |
1801 | parser->complete_what = linespec_complete_what::NOTHING; | |
1802 | return; | |
1803 | } | |
40e084e1 KS |
1804 | |
1805 | /* If the next token is anything but EOI or KEYWORD, issue | |
1806 | an error. */ | |
1807 | if (token.type != LSTOKEN_KEYWORD && token.type != LSTOKEN_EOI) | |
1808 | unexpected_linespec_error (parser); | |
1809 | } | |
1810 | ||
1811 | if (token.type == LSTOKEN_KEYWORD || token.type == LSTOKEN_EOI) | |
1812 | return; | |
1813 | ||
1814 | /* Next token must be LSTOKEN_STRING. */ | |
1815 | if (token.type != LSTOKEN_STRING) | |
c45ec17c PA |
1816 | { |
1817 | parser->complete_what = linespec_complete_what::NOTHING; | |
1818 | unexpected_linespec_error (parser); | |
1819 | } | |
40e084e1 KS |
1820 | |
1821 | /* The current token will contain the name of a function, method, | |
1822 | or label. */ | |
c45ec17c | 1823 | name = copy_token_string (token); |
c45ec17c PA |
1824 | |
1825 | if (parser->completion_tracker != NULL) | |
1826 | { | |
1827 | /* If the function name ends with a ":", then this may be an | |
1828 | incomplete "::" scope operator instead of a label separator. | |
1829 | E.g., | |
1830 | "b klass:<tab>" | |
1831 | which should expand to: | |
1832 | "b klass::method()" | |
1833 | ||
1834 | Do a tentative completion assuming the later. If we find | |
1835 | completions, advance the stream past the colon token and make | |
1836 | it part of the function name/token. */ | |
1837 | ||
1838 | if (!parser->completion_quote_char | |
1839 | && strcmp (PARSER_STREAM (parser), ":") == 0) | |
1840 | { | |
1841 | completion_tracker tmp_tracker; | |
1842 | const char *source_filename | |
1843 | = PARSER_EXPLICIT (parser)->source_filename; | |
a20714ff PA |
1844 | symbol_name_match_type match_type |
1845 | = PARSER_EXPLICIT (parser)->func_name_match_type; | |
c45ec17c PA |
1846 | |
1847 | linespec_complete_function (tmp_tracker, | |
1848 | parser->completion_word, | |
a20714ff | 1849 | match_type, |
c45ec17c PA |
1850 | source_filename); |
1851 | ||
1852 | if (tmp_tracker.have_completions ()) | |
1853 | { | |
1854 | PARSER_STREAM (parser)++; | |
1855 | LS_TOKEN_STOKEN (token).length++; | |
1856 | ||
a5b5adf5 TT |
1857 | name.reset (savestring (parser->completion_word, |
1858 | (PARSER_STREAM (parser) | |
1859 | - parser->completion_word))); | |
c45ec17c PA |
1860 | } |
1861 | } | |
1862 | ||
a5b5adf5 | 1863 | PARSER_EXPLICIT (parser)->function_name = name.release (); |
c45ec17c PA |
1864 | } |
1865 | else | |
1866 | { | |
6a307fc5 TT |
1867 | /* Try looking it up as a function/method. */ |
1868 | find_linespec_symbols (PARSER_STATE (parser), | |
a5b5adf5 | 1869 | PARSER_RESULT (parser)->file_symtabs, name.get (), |
6a307fc5 TT |
1870 | PARSER_EXPLICIT (parser)->func_name_match_type, |
1871 | &symbols, &minimal_symbols); | |
40e084e1 | 1872 | |
c2a031c5 | 1873 | if (!symbols.empty () || !minimal_symbols.empty ()) |
94af9270 | 1874 | { |
7243d011 | 1875 | PARSER_RESULT (parser)->function_symbols |
7e41c8db | 1876 | = new std::vector<block_symbol> (std::move (symbols)); |
c2a031c5 KS |
1877 | PARSER_RESULT (parser)->minimal_symbols |
1878 | = new std::vector<bound_minimal_symbol> | |
1879 | (std::move (minimal_symbols)); | |
a5b5adf5 | 1880 | PARSER_EXPLICIT (parser)->function_name = name.release (); |
40e084e1 | 1881 | } |
6a307fc5 | 1882 | else |
b4013987 | 1883 | { |
6a307fc5 TT |
1884 | /* NAME was not a function or a method. So it must be a label |
1885 | name or user specified variable like "break foo.c:$zippo". */ | |
1886 | labels = find_label_symbols (PARSER_STATE (parser), NULL, | |
a5b5adf5 | 1887 | &symbols, name.get ()); |
6a307fc5 TT |
1888 | if (labels != NULL) |
1889 | { | |
1890 | PARSER_RESULT (parser)->labels.label_symbols = labels; | |
7243d011 | 1891 | PARSER_RESULT (parser)->labels.function_symbols |
7e41c8db | 1892 | = new std::vector<block_symbol> (std::move (symbols)); |
a5b5adf5 | 1893 | PARSER_EXPLICIT (parser)->label_name = name.release (); |
6a307fc5 TT |
1894 | } |
1895 | else if (token.type == LSTOKEN_STRING | |
1896 | && *LS_TOKEN_STOKEN (token).ptr == '$') | |
1897 | { | |
1898 | /* User specified a convenience variable or history value. */ | |
1899 | PARSER_EXPLICIT (parser)->line_offset | |
a5b5adf5 | 1900 | = linespec_parse_variable (PARSER_STATE (parser), name.get ()); |
b4013987 | 1901 | |
6a307fc5 TT |
1902 | if (PARSER_EXPLICIT (parser)->line_offset.sign == LINE_OFFSET_UNKNOWN) |
1903 | { | |
1904 | /* The user-specified variable was not valid. Do not | |
1905 | throw an error here. parse_linespec will do it for us. */ | |
a5b5adf5 | 1906 | PARSER_EXPLICIT (parser)->function_name = name.release (); |
6a307fc5 TT |
1907 | return; |
1908 | } | |
6a307fc5 TT |
1909 | } |
1910 | else | |
b4013987 | 1911 | { |
6a307fc5 TT |
1912 | /* The name is also not a label. Abort parsing. Do not throw |
1913 | an error here. parse_linespec will do it for us. */ | |
1914 | ||
1915 | /* Save a copy of the name we were trying to lookup. */ | |
a5b5adf5 | 1916 | PARSER_EXPLICIT (parser)->function_name = name.release (); |
b4013987 AA |
1917 | return; |
1918 | } | |
1919 | } | |
c45ec17c PA |
1920 | } |
1921 | ||
1922 | int previous_qc = parser->completion_quote_char; | |
40e084e1 KS |
1923 | |
1924 | /* Get the next token. */ | |
1925 | token = linespec_lexer_consume_token (parser); | |
1926 | ||
c45ec17c PA |
1927 | if (token.type == LSTOKEN_EOI) |
1928 | { | |
1929 | if (previous_qc && !parser->completion_quote_char) | |
1930 | parser->complete_what = linespec_complete_what::KEYWORD; | |
1931 | } | |
1932 | else if (token.type == LSTOKEN_COLON) | |
40e084e1 KS |
1933 | { |
1934 | /* User specified a label or a lineno. */ | |
1935 | token = linespec_lexer_consume_token (parser); | |
1936 | ||
1937 | if (token.type == LSTOKEN_NUMBER) | |
1938 | { | |
1939 | /* User specified an offset. Record the line offset and | |
1940 | get the next token. */ | |
c45ec17c PA |
1941 | set_completion_after_number (parser, linespec_complete_what::KEYWORD); |
1942 | ||
40e084e1 | 1943 | name = copy_token_string (token); |
00e52e53 | 1944 | PARSER_EXPLICIT (parser)->line_offset |
a5b5adf5 | 1945 | = linespec_parse_line_offset (name.get ()); |
40e084e1 | 1946 | |
c45ec17c | 1947 | /* Get the next token. */ |
40e084e1 KS |
1948 | token = linespec_lexer_consume_token (parser); |
1949 | } | |
c45ec17c PA |
1950 | else if (token.type == LSTOKEN_EOI && parser->completion_tracker != NULL) |
1951 | { | |
1952 | parser->complete_what = linespec_complete_what::LABEL; | |
1953 | } | |
40e084e1 KS |
1954 | else if (token.type == LSTOKEN_STRING) |
1955 | { | |
c45ec17c PA |
1956 | parser->complete_what = linespec_complete_what::LABEL; |
1957 | ||
1958 | /* If we have text after the label separated by whitespace | |
1959 | (e.g., "b func():lab i<tab>"), don't consider it part of | |
1960 | the label. In completion mode that should complete to | |
1961 | "if", in normal mode, the 'i' should be treated as | |
1962 | garbage. */ | |
1963 | if (parser->completion_quote_char == '\0') | |
1964 | { | |
1965 | const char *ptr = LS_TOKEN_STOKEN (token).ptr; | |
1966 | for (size_t i = 0; i < LS_TOKEN_STOKEN (token).length; i++) | |
1967 | { | |
1968 | if (ptr[i] == ' ') | |
1969 | { | |
1970 | LS_TOKEN_STOKEN (token).length = i; | |
f1735a53 | 1971 | PARSER_STREAM (parser) = skip_spaces (ptr + i + 1); |
c45ec17c PA |
1972 | break; |
1973 | } | |
1974 | } | |
1975 | } | |
1976 | ||
1977 | if (parser->completion_tracker != NULL) | |
1978 | { | |
1979 | if (PARSER_STREAM (parser)[-1] == ' ') | |
1980 | { | |
1981 | parser->completion_word = PARSER_STREAM (parser); | |
1982 | parser->complete_what = linespec_complete_what::KEYWORD; | |
1983 | } | |
1984 | } | |
1985 | else | |
1986 | { | |
6a307fc5 TT |
1987 | /* Grab a copy of the label's name and look it up. */ |
1988 | name = copy_token_string (token); | |
6a307fc5 TT |
1989 | labels |
1990 | = find_label_symbols (PARSER_STATE (parser), | |
1991 | PARSER_RESULT (parser)->function_symbols, | |
a5b5adf5 | 1992 | &symbols, name.get ()); |
40e084e1 | 1993 | |
6a307fc5 TT |
1994 | if (labels != NULL) |
1995 | { | |
1996 | PARSER_RESULT (parser)->labels.label_symbols = labels; | |
7243d011 | 1997 | PARSER_RESULT (parser)->labels.function_symbols |
7e41c8db | 1998 | = new std::vector<block_symbol> (std::move (symbols)); |
a5b5adf5 | 1999 | PARSER_EXPLICIT (parser)->label_name = name.release (); |
6a307fc5 TT |
2000 | } |
2001 | else | |
2002 | { | |
2003 | /* We don't know what it was, but it isn't a label. */ | |
2004 | undefined_label_error | |
a5b5adf5 | 2005 | (PARSER_EXPLICIT (parser)->function_name, name.get ()); |
6a307fc5 | 2006 | } |
40e084e1 | 2007 | |
c45ec17c PA |
2008 | } |
2009 | ||
40e084e1 | 2010 | /* Check for a line offset. */ |
c45ec17c | 2011 | token = save_stream_and_consume_token (parser); |
40e084e1 KS |
2012 | if (token.type == LSTOKEN_COLON) |
2013 | { | |
2014 | /* Get the next token. */ | |
2015 | token = linespec_lexer_consume_token (parser); | |
2016 | ||
2017 | /* It must be a line offset. */ | |
2018 | if (token.type != LSTOKEN_NUMBER) | |
2019 | unexpected_linespec_error (parser); | |
2020 | ||
c6756f62 | 2021 | /* Record the line offset and get the next token. */ |
40e084e1 | 2022 | name = copy_token_string (token); |
40e084e1 | 2023 | |
00e52e53 | 2024 | PARSER_EXPLICIT (parser)->line_offset |
a5b5adf5 | 2025 | = linespec_parse_line_offset (name.get ()); |
40e084e1 KS |
2026 | |
2027 | /* Get the next token. */ | |
2028 | token = linespec_lexer_consume_token (parser); | |
94af9270 KS |
2029 | } |
2030 | } | |
40e084e1 KS |
2031 | else |
2032 | { | |
2033 | /* Trailing ':' in the input. Issue an error. */ | |
2034 | unexpected_linespec_error (parser); | |
2035 | } | |
94af9270 | 2036 | } |
40e084e1 | 2037 | } |
94af9270 | 2038 | |
40e084e1 | 2039 | /* Canonicalize the linespec contained in LS. The result is saved into |
00e52e53 KS |
2040 | STATE->canonical. This function handles both linespec and explicit |
2041 | locations. */ | |
40e084e1 KS |
2042 | |
2043 | static void | |
f00aae0f | 2044 | canonicalize_linespec (struct linespec_state *state, const linespec_p ls) |
40e084e1 | 2045 | { |
00e52e53 | 2046 | struct event_location *canon; |
67994074 | 2047 | struct explicit_location *explicit_loc; |
f00aae0f | 2048 | |
40e084e1 KS |
2049 | /* If canonicalization was not requested, no need to do anything. */ |
2050 | if (!state->canonical) | |
2051 | return; | |
2052 | ||
00e52e53 | 2053 | /* Save everything as an explicit location. */ |
8e9e35b1 TT |
2054 | state->canonical->location |
2055 | = new_explicit_location (&ls->explicit_loc); | |
2056 | canon = state->canonical->location.get (); | |
67994074 | 2057 | explicit_loc = get_explicit_location (canon); |
40e084e1 | 2058 | |
67994074 | 2059 | if (explicit_loc->label_name != NULL) |
a06efdd6 | 2060 | { |
00e52e53 | 2061 | state->canonical->special_display = 1; |
40e084e1 | 2062 | |
67994074 | 2063 | if (explicit_loc->function_name == NULL) |
40e084e1 | 2064 | { |
a06efdd6 | 2065 | /* No function was specified, so add the symbol name. */ |
7243d011 KS |
2066 | gdb_assert (!ls->labels.function_symbols->empty () |
2067 | && (ls->labels.function_symbols->size () == 1)); | |
7e41c8db | 2068 | block_symbol s = ls->labels.function_symbols->front (); |
987012b8 | 2069 | explicit_loc->function_name = xstrdup (s.symbol->natural_name ()); |
40e084e1 | 2070 | } |
a06efdd6 | 2071 | } |
40e084e1 | 2072 | |
00e52e53 KS |
2073 | /* If this location originally came from a linespec, save a string |
2074 | representation of it for display and saving to file. */ | |
2075 | if (state->is_linespec) | |
a06efdd6 | 2076 | { |
67994074 | 2077 | char *linespec = explicit_location_to_linespec (explicit_loc); |
a06efdd6 | 2078 | |
00e52e53 KS |
2079 | set_event_location_string (canon, linespec); |
2080 | xfree (linespec); | |
2081 | } | |
94af9270 | 2082 | } |
c00f8484 | 2083 | |
40e084e1 | 2084 | /* Given a line offset in LS, construct the relevant SALs. */ |
c00f8484 | 2085 | |
6c5b2ebe | 2086 | static std::vector<symtab_and_line> |
40e084e1 KS |
2087 | create_sals_line_offset (struct linespec_state *self, |
2088 | linespec_p ls) | |
c00f8484 | 2089 | { |
40e084e1 | 2090 | int use_default = 0; |
c00f8484 | 2091 | |
40e084e1 KS |
2092 | /* This is where we need to make sure we have good defaults. |
2093 | We must guarantee that this section of code is never executed | |
2e47c6ca | 2094 | when we are called with just a function name, since |
40e084e1 KS |
2095 | set_default_source_symtab_and_line uses |
2096 | select_source_symtab that calls us with such an argument. */ | |
2097 | ||
2a908241 KS |
2098 | if (ls->file_symtabs->size () == 1 |
2099 | && ls->file_symtabs->front () == nullptr) | |
3d50dd94 | 2100 | { |
40e084e1 | 2101 | set_current_program_space (self->program_space); |
c00f8484 | 2102 | |
40e084e1 KS |
2103 | /* Make sure we have at least a default source line. */ |
2104 | set_default_source_symtab_and_line (); | |
2105 | initialize_defaults (&self->default_symtab, &self->default_line); | |
4717cec4 | 2106 | *ls->file_symtabs |
bb995d00 KS |
2107 | = collect_symtabs_from_filename (self->default_symtab->filename, |
2108 | self->search_pspace); | |
40e084e1 KS |
2109 | use_default = 1; |
2110 | } | |
c00f8484 | 2111 | |
51abb421 | 2112 | symtab_and_line val; |
67994074 KS |
2113 | val.line = ls->explicit_loc.line_offset.offset; |
2114 | switch (ls->explicit_loc.line_offset.sign) | |
40e084e1 KS |
2115 | { |
2116 | case LINE_OFFSET_PLUS: | |
67994074 | 2117 | if (ls->explicit_loc.line_offset.offset == 0) |
40e084e1 KS |
2118 | val.line = 5; |
2119 | if (use_default) | |
2120 | val.line = self->default_line + val.line; | |
2121 | break; | |
2122 | ||
2123 | case LINE_OFFSET_MINUS: | |
67994074 | 2124 | if (ls->explicit_loc.line_offset.offset == 0) |
40e084e1 KS |
2125 | val.line = 15; |
2126 | if (use_default) | |
2127 | val.line = self->default_line - val.line; | |
2128 | else | |
2129 | val.line = -val.line; | |
2130 | break; | |
2131 | ||
2132 | case LINE_OFFSET_NONE: | |
2133 | break; /* No need to adjust val.line. */ | |
2134 | } | |
2135 | ||
6c5b2ebe | 2136 | std::vector<symtab_and_line> values; |
40e084e1 | 2137 | if (self->list_mode) |
6c5b2ebe | 2138 | values = decode_digits_list_mode (self, ls, val); |
40e084e1 KS |
2139 | else |
2140 | { | |
2141 | struct linetable_entry *best_entry = NULL; | |
40e084e1 KS |
2142 | int i, j; |
2143 | ||
6c5b2ebe PA |
2144 | std::vector<symtab_and_line> intermediate_results |
2145 | = decode_digits_ordinary (self, ls, val.line, &best_entry); | |
2146 | if (intermediate_results.empty () && best_entry != NULL) | |
2147 | intermediate_results = decode_digits_ordinary (self, ls, | |
2148 | best_entry->line, | |
2149 | &best_entry); | |
40e084e1 KS |
2150 | |
2151 | /* For optimized code, the compiler can scatter one source line | |
2152 | across disjoint ranges of PC values, even when no duplicate | |
2153 | functions or inline functions are involved. For example, | |
2154 | 'for (;;)' inside a non-template, non-inline, and non-ctor-or-dtor | |
2155 | function can result in two PC ranges. In this case, we don't | |
2156 | want to set a breakpoint on the first PC of each range. To filter | |
2157 | such cases, we use containing blocks -- for each PC found | |
2158 | above, we see if there are other PCs that are in the same | |
2159 | block. If yes, the other PCs are filtered out. */ | |
2160 | ||
0fc21fd8 TT |
2161 | gdb::def_vector<int> filter (intermediate_results.size ()); |
2162 | gdb::def_vector<const block *> blocks (intermediate_results.size ()); | |
40e084e1 | 2163 | |
6c5b2ebe | 2164 | for (i = 0; i < intermediate_results.size (); ++i) |
3d50dd94 | 2165 | { |
6c5b2ebe | 2166 | set_current_program_space (intermediate_results[i].pspace); |
c00f8484 | 2167 | |
40e084e1 | 2168 | filter[i] = 1; |
6c5b2ebe PA |
2169 | blocks[i] = block_for_pc_sect (intermediate_results[i].pc, |
2170 | intermediate_results[i].section); | |
3d50dd94 | 2171 | } |
c00f8484 | 2172 | |
6c5b2ebe | 2173 | for (i = 0; i < intermediate_results.size (); ++i) |
40e084e1 KS |
2174 | { |
2175 | if (blocks[i] != NULL) | |
6c5b2ebe | 2176 | for (j = i + 1; j < intermediate_results.size (); ++j) |
40e084e1 KS |
2177 | { |
2178 | if (blocks[j] == blocks[i]) | |
2179 | { | |
2180 | filter[j] = 0; | |
2181 | break; | |
2182 | } | |
2183 | } | |
2184 | } | |
c00f8484 | 2185 | |
6c5b2ebe | 2186 | for (i = 0; i < intermediate_results.size (); ++i) |
40e084e1 KS |
2187 | if (filter[i]) |
2188 | { | |
2189 | struct symbol *sym = (blocks[i] | |
2190 | ? block_containing_function (blocks[i]) | |
2191 | : NULL); | |
3d50dd94 | 2192 | |
40e084e1 | 2193 | if (self->funfirstline) |
6c5b2ebe | 2194 | skip_prologue_sal (&intermediate_results[i]); |
cd2bb709 | 2195 | intermediate_results[i].symbol = sym; |
6c5b2ebe | 2196 | add_sal_to_sals (self, &values, &intermediate_results[i], |
987012b8 | 2197 | sym ? sym->natural_name () : NULL, 0); |
40e084e1 | 2198 | } |
f17170e5 | 2199 | } |
c00f8484 | 2200 | |
6c5b2ebe | 2201 | if (values.empty ()) |
40e084e1 | 2202 | { |
67994074 | 2203 | if (ls->explicit_loc.source_filename) |
40e084e1 | 2204 | throw_error (NOT_FOUND_ERROR, _("No line %d in file \"%s\"."), |
67994074 | 2205 | val.line, ls->explicit_loc.source_filename); |
40e084e1 KS |
2206 | else |
2207 | throw_error (NOT_FOUND_ERROR, _("No line %d in the current file."), | |
2208 | val.line); | |
2209 | } | |
3d50dd94 | 2210 | |
40e084e1 | 2211 | return values; |
c00f8484 KS |
2212 | } |
2213 | ||
a06efdd6 KS |
2214 | /* Convert the given ADDRESS into SaLs. */ |
2215 | ||
6c5b2ebe | 2216 | static std::vector<symtab_and_line> |
a06efdd6 KS |
2217 | convert_address_location_to_sals (struct linespec_state *self, |
2218 | CORE_ADDR address) | |
2219 | { | |
6c5b2ebe | 2220 | symtab_and_line sal = find_pc_line (address, 0); |
a06efdd6 KS |
2221 | sal.pc = address; |
2222 | sal.section = find_pc_overlay (address); | |
2223 | sal.explicit_pc = 1; | |
cd2bb709 | 2224 | sal.symbol = find_pc_sect_containing_function (sal.pc, sal.section); |
6c5b2ebe PA |
2225 | |
2226 | std::vector<symtab_and_line> sals; | |
a06efdd6 KS |
2227 | add_sal_to_sals (self, &sals, &sal, core_addr_to_string (address), 1); |
2228 | ||
2229 | return sals; | |
2230 | } | |
2231 | ||
40e084e1 KS |
2232 | /* Create and return SALs from the linespec LS. */ |
2233 | ||
6c5b2ebe | 2234 | static std::vector<symtab_and_line> |
40e084e1 KS |
2235 | convert_linespec_to_sals (struct linespec_state *state, linespec_p ls) |
2236 | { | |
6c5b2ebe | 2237 | std::vector<symtab_and_line> sals; |
40e084e1 | 2238 | |
a06efdd6 | 2239 | if (ls->labels.label_symbols != NULL) |
40e084e1 KS |
2240 | { |
2241 | /* We have just a bunch of functions/methods or labels. */ | |
7e41c8db KS |
2242 | struct symtab_and_line sal; |
2243 | ||
3553eadc | 2244 | for (const auto &sym : *ls->labels.label_symbols) |
40e084e1 | 2245 | { |
7e41c8db KS |
2246 | struct program_space *pspace |
2247 | = SYMTAB_PSPACE (symbol_symtab (sym.symbol)); | |
fdbb204b | 2248 | |
7e41c8db | 2249 | if (symbol_to_sal (&sal, state->funfirstline, sym.symbol) |
fdbb204b | 2250 | && maybe_add_address (state->addr_set, pspace, sal.pc)) |
64b92e45 | 2251 | add_sal_to_sals (state, &sals, &sal, |
987012b8 | 2252 | sym.symbol->natural_name (), 0); |
40e084e1 KS |
2253 | } |
2254 | } | |
2255 | else if (ls->function_symbols != NULL || ls->minimal_symbols != NULL) | |
2256 | { | |
2257 | /* We have just a bunch of functions and/or methods. */ | |
40e084e1 KS |
2258 | if (ls->function_symbols != NULL) |
2259 | { | |
2260 | /* Sort symbols so that symbols with the same program space are next | |
2261 | to each other. */ | |
7243d011 KS |
2262 | std::sort (ls->function_symbols->begin (), |
2263 | ls->function_symbols->end (), | |
4dedf84d | 2264 | compare_symbols); |
40e084e1 | 2265 | |
7243d011 | 2266 | for (const auto &sym : *ls->function_symbols) |
40e084e1 | 2267 | { |
7e41c8db KS |
2268 | program_space *pspace |
2269 | = SYMTAB_PSPACE (symbol_symtab (sym.symbol)); | |
40e084e1 | 2270 | set_current_program_space (pspace); |
76af0f26 PA |
2271 | |
2272 | /* Don't skip to the first line of the function if we | |
2273 | had found an ifunc minimal symbol for this function, | |
2274 | because that means that this function is an ifunc | |
2275 | resolver with the same name as the ifunc itself. */ | |
2276 | bool found_ifunc = false; | |
2277 | ||
2278 | if (state->funfirstline | |
2279 | && ls->minimal_symbols != NULL | |
7e41c8db | 2280 | && SYMBOL_CLASS (sym.symbol) == LOC_BLOCK) |
76af0f26 PA |
2281 | { |
2282 | const CORE_ADDR addr | |
7e41c8db | 2283 | = BLOCK_ENTRY_PC (SYMBOL_BLOCK_VALUE (sym.symbol)); |
76af0f26 | 2284 | |
c2a031c5 | 2285 | for (const auto &elem : *ls->minimal_symbols) |
76af0f26 | 2286 | { |
c2a031c5 KS |
2287 | if (MSYMBOL_TYPE (elem.minsym) == mst_text_gnu_ifunc |
2288 | || MSYMBOL_TYPE (elem.minsym) == mst_data_gnu_ifunc) | |
76af0f26 | 2289 | { |
c2a031c5 KS |
2290 | CORE_ADDR msym_addr = BMSYMBOL_VALUE_ADDRESS (elem); |
2291 | if (MSYMBOL_TYPE (elem.minsym) == mst_data_gnu_ifunc) | |
f50776aa PA |
2292 | { |
2293 | struct gdbarch *gdbarch | |
c2a031c5 | 2294 | = get_objfile_arch (elem.objfile); |
f50776aa PA |
2295 | msym_addr |
2296 | = (gdbarch_convert_from_func_ptr_addr | |
2297 | (gdbarch, | |
2298 | msym_addr, | |
8b88a78e | 2299 | current_top_target ())); |
f50776aa PA |
2300 | } |
2301 | ||
2302 | if (msym_addr == addr) | |
2303 | { | |
2304 | found_ifunc = true; | |
2305 | break; | |
2306 | } | |
76af0f26 PA |
2307 | } |
2308 | } | |
2309 | } | |
2310 | ||
2311 | if (!found_ifunc) | |
2312 | { | |
2313 | symtab_and_line sal; | |
7e41c8db | 2314 | if (symbol_to_sal (&sal, state->funfirstline, sym.symbol) |
76af0f26 PA |
2315 | && maybe_add_address (state->addr_set, pspace, sal.pc)) |
2316 | add_sal_to_sals (state, &sals, &sal, | |
987012b8 | 2317 | sym.symbol->natural_name (), 0); |
76af0f26 | 2318 | } |
40e084e1 KS |
2319 | } |
2320 | } | |
2321 | ||
2322 | if (ls->minimal_symbols != NULL) | |
2323 | { | |
76af0f26 | 2324 | /* Sort minimal symbols by program space, too */ |
c2a031c5 KS |
2325 | std::sort (ls->minimal_symbols->begin (), |
2326 | ls->minimal_symbols->end (), | |
2327 | compare_msymbols); | |
40e084e1 | 2328 | |
c2a031c5 | 2329 | for (const auto &elem : *ls->minimal_symbols) |
40e084e1 | 2330 | { |
c2a031c5 | 2331 | program_space *pspace = elem.objfile->pspace; |
40e084e1 | 2332 | set_current_program_space (pspace); |
c2a031c5 | 2333 | minsym_found (state, elem.objfile, elem.minsym, &sals); |
40e084e1 KS |
2334 | } |
2335 | } | |
2336 | } | |
67994074 | 2337 | else if (ls->explicit_loc.line_offset.sign != LINE_OFFSET_UNKNOWN) |
40e084e1 KS |
2338 | { |
2339 | /* Only an offset was specified. */ | |
2340 | sals = create_sals_line_offset (state, ls); | |
2341 | ||
2342 | /* Make sure we have a filename for canonicalization. */ | |
67994074 | 2343 | if (ls->explicit_loc.source_filename == NULL) |
05cba821 JK |
2344 | { |
2345 | const char *fullname = symtab_to_fullname (state->default_symtab); | |
2346 | ||
e93ba630 JK |
2347 | /* It may be more appropriate to keep DEFAULT_SYMTAB in its symtab |
2348 | form so that displaying SOURCE_FILENAME can follow the current | |
2349 | FILENAME_DISPLAY_STRING setting. But as it is used only rarely | |
2350 | it has been kept for code simplicity only in absolute form. */ | |
67994074 | 2351 | ls->explicit_loc.source_filename = xstrdup (fullname); |
05cba821 | 2352 | } |
40e084e1 KS |
2353 | } |
2354 | else | |
2355 | { | |
2356 | /* We haven't found any results... */ | |
2357 | return sals; | |
2358 | } | |
2359 | ||
2360 | canonicalize_linespec (state, ls); | |
2361 | ||
6c5b2ebe | 2362 | if (!sals.empty () && state->canonical != NULL) |
40e084e1 KS |
2363 | state->canonical->pre_expanded = 1; |
2364 | ||
2365 | return sals; | |
2366 | } | |
50641945 | 2367 | |
a2459270 PA |
2368 | /* Build RESULT from the explicit location components SOURCE_FILENAME, |
2369 | FUNCTION_NAME, LABEL_NAME and LINE_OFFSET. */ | |
00e52e53 | 2370 | |
a2459270 PA |
2371 | static void |
2372 | convert_explicit_location_to_linespec (struct linespec_state *self, | |
2373 | linespec_p result, | |
2374 | const char *source_filename, | |
2375 | const char *function_name, | |
a20714ff | 2376 | symbol_name_match_type fname_match_type, |
a2459270 PA |
2377 | const char *label_name, |
2378 | struct line_offset line_offset) | |
00e52e53 | 2379 | { |
7e41c8db KS |
2380 | std::vector<block_symbol> symbols; |
2381 | std::vector<block_symbol> *labels; | |
c2a031c5 | 2382 | std::vector<bound_minimal_symbol> minimal_symbols; |
00e52e53 | 2383 | |
a20714ff PA |
2384 | result->explicit_loc.func_name_match_type = fname_match_type; |
2385 | ||
a2459270 | 2386 | if (source_filename != NULL) |
00e52e53 | 2387 | { |
a70b8144 | 2388 | try |
00e52e53 | 2389 | { |
4717cec4 SM |
2390 | *result->file_symtabs |
2391 | = symtabs_from_filename (source_filename, self->search_pspace); | |
00e52e53 | 2392 | } |
230d2906 | 2393 | catch (const gdb_exception_error &except) |
00e52e53 | 2394 | { |
a2459270 | 2395 | source_file_not_found_error (source_filename); |
00e52e53 | 2396 | } |
a2459270 | 2397 | result->explicit_loc.source_filename = xstrdup (source_filename); |
00e52e53 KS |
2398 | } |
2399 | else | |
2400 | { | |
2401 | /* A NULL entry means to use the default symtab. */ | |
2a908241 | 2402 | result->file_symtabs->push_back (nullptr); |
00e52e53 KS |
2403 | } |
2404 | ||
a2459270 | 2405 | if (function_name != NULL) |
00e52e53 KS |
2406 | { |
2407 | find_linespec_symbols (self, result->file_symtabs, | |
a20714ff PA |
2408 | function_name, fname_match_type, |
2409 | &symbols, &minimal_symbols); | |
00e52e53 | 2410 | |
c2a031c5 | 2411 | if (symbols.empty () && minimal_symbols.empty ()) |
a2459270 | 2412 | symbol_not_found_error (function_name, |
67994074 | 2413 | result->explicit_loc.source_filename); |
00e52e53 | 2414 | |
a2459270 | 2415 | result->explicit_loc.function_name = xstrdup (function_name); |
7243d011 | 2416 | result->function_symbols |
7e41c8db | 2417 | = new std::vector<block_symbol> (std::move (symbols)); |
c2a031c5 KS |
2418 | result->minimal_symbols |
2419 | = new std::vector<bound_minimal_symbol> (std::move (minimal_symbols)); | |
00e52e53 KS |
2420 | } |
2421 | ||
a2459270 | 2422 | if (label_name != NULL) |
00e52e53 | 2423 | { |
00e52e53 | 2424 | labels = find_label_symbols (self, result->function_symbols, |
a2459270 | 2425 | &symbols, label_name); |
00e52e53 KS |
2426 | |
2427 | if (labels == NULL) | |
67994074 | 2428 | undefined_label_error (result->explicit_loc.function_name, |
a2459270 | 2429 | label_name); |
00e52e53 | 2430 | |
a2459270 | 2431 | result->explicit_loc.label_name = xstrdup (label_name); |
00e52e53 | 2432 | result->labels.label_symbols = labels; |
7243d011 | 2433 | result->labels.function_symbols |
7e41c8db | 2434 | = new std::vector<block_symbol> (std::move (symbols)); |
00e52e53 KS |
2435 | } |
2436 | ||
a2459270 PA |
2437 | if (line_offset.sign != LINE_OFFSET_UNKNOWN) |
2438 | result->explicit_loc.line_offset = line_offset; | |
2439 | } | |
00e52e53 | 2440 | |
a2459270 PA |
2441 | /* Convert the explicit location EXPLICIT_LOC into SaLs. */ |
2442 | ||
6c5b2ebe | 2443 | static std::vector<symtab_and_line> |
a2459270 PA |
2444 | convert_explicit_location_to_sals (struct linespec_state *self, |
2445 | linespec_p result, | |
2446 | const struct explicit_location *explicit_loc) | |
2447 | { | |
2448 | convert_explicit_location_to_linespec (self, result, | |
2449 | explicit_loc->source_filename, | |
2450 | explicit_loc->function_name, | |
a20714ff | 2451 | explicit_loc->func_name_match_type, |
a2459270 PA |
2452 | explicit_loc->label_name, |
2453 | explicit_loc->line_offset); | |
2454 | return convert_linespec_to_sals (self, result); | |
00e52e53 KS |
2455 | } |
2456 | ||
40e084e1 | 2457 | /* Parse a string that specifies a linespec. |
50641945 | 2458 | |
40e084e1 | 2459 | The basic grammar of linespecs: |
50641945 | 2460 | |
a06efdd6 | 2461 | linespec -> var_spec | basic_spec |
40e084e1 | 2462 | var_spec -> '$' (STRING | NUMBER) |
50641945 | 2463 | |
40e084e1 KS |
2464 | basic_spec -> file_offset_spec | function_spec | label_spec |
2465 | file_offset_spec -> opt_file_spec offset_spec | |
2466 | function_spec -> opt_file_spec function_name_spec opt_label_spec | |
2467 | label_spec -> label_name_spec | |
50641945 | 2468 | |
40e084e1 KS |
2469 | opt_file_spec -> "" | file_name_spec ':' |
2470 | opt_label_spec -> "" | ':' label_name_spec | |
2471 | ||
2472 | file_name_spec -> STRING | |
2473 | function_name_spec -> STRING | |
2474 | label_name_spec -> STRING | |
2475 | function_name_spec -> STRING | |
2476 | offset_spec -> NUMBER | |
2477 | -> '+' NUMBER | |
2478 | -> '-' NUMBER | |
2479 | ||
2480 | This may all be followed by several keywords such as "if EXPR", | |
2481 | which we ignore. | |
2482 | ||
2483 | A comma will terminate parsing. | |
2484 | ||
2485 | The function may be an undebuggable function found in minimal symbol table. | |
50641945 FN |
2486 | |
2487 | If the argument FUNFIRSTLINE is nonzero, we want the first line | |
2488 | of real code inside a function when a function is specified, and it is | |
2489 | not OK to specify a variable or type to get its line number. | |
2490 | ||
2491 | DEFAULT_SYMTAB specifies the file to use if none is specified. | |
2492 | It defaults to current_source_symtab. | |
2493 | DEFAULT_LINE specifies the line number to use for relative | |
2494 | line numbers (that start with signs). Defaults to current_source_line. | |
2495 | If CANONICAL is non-NULL, store an array of strings containing the canonical | |
1777feb0 | 2496 | line specs there if necessary. Currently overloaded member functions and |
50641945 | 2497 | line numbers or static functions without a filename yield a canonical |
1777feb0 | 2498 | line spec. The array and the line spec strings are allocated on the heap, |
50641945 FN |
2499 | it is the callers responsibility to free them. |
2500 | ||
2501 | Note that it is possible to return zero for the symtab | |
2502 | if no file is validly specified. Callers must check that. | |
58438ac1 | 2503 | Also, the line number returned may be invalid. */ |
50641945 | 2504 | |
a20714ff PA |
2505 | /* Parse the linespec in ARG. MATCH_TYPE indicates how function names |
2506 | should be matched. */ | |
50641945 | 2507 | |
6c5b2ebe | 2508 | static std::vector<symtab_and_line> |
a20714ff PA |
2509 | parse_linespec (linespec_parser *parser, const char *arg, |
2510 | symbol_name_match_type match_type) | |
50641945 | 2511 | { |
40e084e1 | 2512 | linespec_token token; |
cc06b668 | 2513 | struct gdb_exception file_exception; |
40e084e1 KS |
2514 | |
2515 | /* A special case to start. It has become quite popular for | |
2516 | IDEs to work around bugs in the previous parser by quoting | |
2517 | the entire linespec, so we attempt to deal with this nicely. */ | |
2518 | parser->is_quote_enclosed = 0; | |
c45ec17c PA |
2519 | if (parser->completion_tracker == NULL |
2520 | && !is_ada_operator (arg) | |
f00aae0f | 2521 | && strchr (linespec_quote_characters, *arg) != NULL) |
40e084e1 KS |
2522 | { |
2523 | const char *end; | |
9ef07c8c | 2524 | |
f00aae0f | 2525 | end = skip_quote_char (arg + 1, *arg); |
40e084e1 | 2526 | if (end != NULL && is_closing_quote_enclosed (end)) |
136e1c30 | 2527 | { |
f00aae0f | 2528 | /* Here's the special case. Skip ARG past the initial |
40e084e1 | 2529 | quote. */ |
f00aae0f | 2530 | ++arg; |
40e084e1 | 2531 | parser->is_quote_enclosed = 1; |
136e1c30 DE |
2532 | } |
2533 | } | |
e8eb7bc5 | 2534 | |
f00aae0f KS |
2535 | parser->lexer.saved_arg = arg; |
2536 | parser->lexer.stream = arg; | |
c45ec17c PA |
2537 | parser->completion_word = arg; |
2538 | parser->complete_what = linespec_complete_what::FUNCTION; | |
a20714ff | 2539 | PARSER_EXPLICIT (parser)->func_name_match_type = match_type; |
d2630e69 | 2540 | |
40e084e1 KS |
2541 | /* Initialize the default symtab and line offset. */ |
2542 | initialize_defaults (&PARSER_STATE (parser)->default_symtab, | |
2543 | &PARSER_STATE (parser)->default_line); | |
d2630e69 | 2544 | |
40e084e1 | 2545 | /* Objective-C shortcut. */ |
c45ec17c PA |
2546 | if (parser->completion_tracker == NULL) |
2547 | { | |
6c5b2ebe PA |
2548 | std::vector<symtab_and_line> values |
2549 | = decode_objc (PARSER_STATE (parser), PARSER_RESULT (parser), arg); | |
2550 | if (!values.empty ()) | |
c45ec17c PA |
2551 | return values; |
2552 | } | |
2553 | else | |
2554 | { | |
2555 | /* "-"/"+" is either an objc selector, or a number. There's | |
2556 | nothing to complete the latter to, so just let the caller | |
2557 | complete on functions, which finds objc selectors, if there's | |
2558 | any. */ | |
2559 | if ((arg[0] == '-' || arg[0] == '+') && arg[1] == '\0') | |
2560 | return {}; | |
2561 | } | |
e0881a8e | 2562 | |
40e084e1 | 2563 | /* Start parsing. */ |
d2630e69 | 2564 | |
40e084e1 | 2565 | /* Get the first token. */ |
c45ec17c | 2566 | token = linespec_lexer_consume_token (parser); |
50641945 | 2567 | |
40e084e1 | 2568 | /* It must be either LSTOKEN_STRING or LSTOKEN_NUMBER. */ |
a06efdd6 | 2569 | if (token.type == LSTOKEN_STRING && *LS_TOKEN_STOKEN (token).ptr == '$') |
40e084e1 | 2570 | { |
40e084e1 | 2571 | /* A NULL entry means to use GLOBAL_DEFAULT_SYMTAB. */ |
c45ec17c | 2572 | if (parser->completion_tracker == NULL) |
2a908241 | 2573 | PARSER_RESULT (parser)->file_symtabs->push_back (nullptr); |
dcf9f4ab | 2574 | |
40e084e1 | 2575 | /* User specified a convenience variable or history value. */ |
a5b5adf5 | 2576 | gdb::unique_xmalloc_ptr<char> var = copy_token_string (token); |
00e52e53 | 2577 | PARSER_EXPLICIT (parser)->line_offset |
a5b5adf5 | 2578 | = linespec_parse_variable (PARSER_STATE (parser), var.get ()); |
f8eba3c6 | 2579 | |
40e084e1 KS |
2580 | /* If a line_offset wasn't found (VAR is the name of a user |
2581 | variable/function), then skip to normal symbol processing. */ | |
00e52e53 | 2582 | if (PARSER_EXPLICIT (parser)->line_offset.sign != LINE_OFFSET_UNKNOWN) |
40e084e1 | 2583 | { |
40e084e1 KS |
2584 | /* Consume this token. */ |
2585 | linespec_lexer_consume_token (parser); | |
dcf9f4ab | 2586 | |
40e084e1 | 2587 | goto convert_to_sals; |
50641945 | 2588 | } |
40e084e1 | 2589 | } |
c45ec17c PA |
2590 | else if (token.type == LSTOKEN_EOI && parser->completion_tracker != NULL) |
2591 | { | |
2592 | /* Let the default linespec_complete_what::FUNCTION kick in. */ | |
2593 | unexpected_linespec_error (parser); | |
2594 | } | |
40e084e1 | 2595 | else if (token.type != LSTOKEN_STRING && token.type != LSTOKEN_NUMBER) |
c45ec17c PA |
2596 | { |
2597 | parser->complete_what = linespec_complete_what::NOTHING; | |
2598 | unexpected_linespec_error (parser); | |
2599 | } | |
50641945 | 2600 | |
40e084e1 KS |
2601 | /* Shortcut: If the next token is not LSTOKEN_COLON, we know that |
2602 | this token cannot represent a filename. */ | |
2603 | token = linespec_lexer_peek_token (parser); | |
0e0b460e | 2604 | |
40e084e1 | 2605 | if (token.type == LSTOKEN_COLON) |
0e0b460e | 2606 | { |
40e084e1 KS |
2607 | /* Get the current token again and extract the filename. */ |
2608 | token = linespec_lexer_lex_one (parser); | |
a5b5adf5 | 2609 | gdb::unique_xmalloc_ptr<char> user_filename = copy_token_string (token); |
50641945 | 2610 | |
40e084e1 | 2611 | /* Check if the input is a filename. */ |
a70b8144 | 2612 | try |
40e084e1 | 2613 | { |
4717cec4 | 2614 | *PARSER_RESULT (parser)->file_symtabs |
a5b5adf5 | 2615 | = symtabs_from_filename (user_filename.get (), |
c2f4122d | 2616 | PARSER_STATE (parser)->search_pspace); |
40e084e1 | 2617 | } |
94aeb44b | 2618 | catch (gdb_exception_error &ex) |
7556d4a4 | 2619 | { |
94aeb44b | 2620 | file_exception = std::move (ex); |
7556d4a4 | 2621 | } |
50641945 | 2622 | |
40e084e1 KS |
2623 | if (file_exception.reason >= 0) |
2624 | { | |
2625 | /* Symtabs were found for the file. Record the filename. */ | |
a5b5adf5 | 2626 | PARSER_EXPLICIT (parser)->source_filename = user_filename.release (); |
f8eba3c6 | 2627 | |
40e084e1 KS |
2628 | /* Get the next token. */ |
2629 | token = linespec_lexer_consume_token (parser); | |
50641945 | 2630 | |
40e084e1 KS |
2631 | /* This is LSTOKEN_COLON; consume it. */ |
2632 | linespec_lexer_consume_token (parser); | |
2633 | } | |
2634 | else | |
2635 | { | |
40e084e1 | 2636 | /* A NULL entry means to use GLOBAL_DEFAULT_SYMTAB. */ |
2a908241 | 2637 | PARSER_RESULT (parser)->file_symtabs->push_back (nullptr); |
40e084e1 | 2638 | } |
50641945 | 2639 | } |
40e084e1 | 2640 | /* If the next token is not EOI, KEYWORD, or COMMA, issue an error. */ |
c45ec17c PA |
2641 | else if (parser->completion_tracker == NULL |
2642 | && (token.type != LSTOKEN_EOI && token.type != LSTOKEN_KEYWORD | |
2643 | && token.type != LSTOKEN_COMMA)) | |
d2630e69 | 2644 | { |
40e084e1 KS |
2645 | /* TOKEN is the _next_ token, not the one currently in the parser. |
2646 | Consuming the token will give the correct error message. */ | |
2647 | linespec_lexer_consume_token (parser); | |
2648 | unexpected_linespec_error (parser); | |
d2630e69 | 2649 | } |
50641945 FN |
2650 | else |
2651 | { | |
40e084e1 | 2652 | /* A NULL entry means to use GLOBAL_DEFAULT_SYMTAB. */ |
2a908241 | 2653 | PARSER_RESULT (parser)->file_symtabs->push_back (nullptr); |
50641945 | 2654 | } |
50641945 | 2655 | |
40e084e1 KS |
2656 | /* Parse the rest of the linespec. */ |
2657 | linespec_parse_basic (parser); | |
50641945 | 2658 | |
c45ec17c PA |
2659 | if (parser->completion_tracker == NULL |
2660 | && PARSER_RESULT (parser)->function_symbols == NULL | |
40e084e1 | 2661 | && PARSER_RESULT (parser)->labels.label_symbols == NULL |
00e52e53 | 2662 | && PARSER_EXPLICIT (parser)->line_offset.sign == LINE_OFFSET_UNKNOWN |
40e084e1 | 2663 | && PARSER_RESULT (parser)->minimal_symbols == NULL) |
f8eba3c6 | 2664 | { |
40e084e1 KS |
2665 | /* The linespec didn't parse. Re-throw the file exception if |
2666 | there was one. */ | |
2667 | if (file_exception.reason < 0) | |
94aeb44b | 2668 | throw_exception (std::move (file_exception)); |
0f5238ed | 2669 | |
40e084e1 | 2670 | /* Otherwise, the symbol is not found. */ |
00e52e53 KS |
2671 | symbol_not_found_error (PARSER_EXPLICIT (parser)->function_name, |
2672 | PARSER_EXPLICIT (parser)->source_filename); | |
0f5238ed TT |
2673 | } |
2674 | ||
40e084e1 | 2675 | convert_to_sals: |
9ef07c8c | 2676 | |
40e084e1 KS |
2677 | /* Get the last token and record how much of the input was parsed, |
2678 | if necessary. */ | |
2679 | token = linespec_lexer_lex_one (parser); | |
2680 | if (token.type != LSTOKEN_EOI && token.type != LSTOKEN_KEYWORD) | |
c45ec17c PA |
2681 | unexpected_linespec_error (parser); |
2682 | else if (token.type == LSTOKEN_KEYWORD) | |
2683 | { | |
2684 | /* Setup the completion word past the keyword. Lexing never | |
2685 | advances past a keyword automatically, so skip it | |
2686 | manually. */ | |
2687 | parser->completion_word | |
f1735a53 | 2688 | = skip_spaces (skip_to_space (PARSER_STREAM (parser))); |
c45ec17c PA |
2689 | parser->complete_what = linespec_complete_what::EXPRESSION; |
2690 | } | |
50641945 | 2691 | |
40e084e1 | 2692 | /* Convert the data in PARSER_RESULT to SALs. */ |
c45ec17c | 2693 | if (parser->completion_tracker == NULL) |
6c5b2ebe PA |
2694 | return convert_linespec_to_sals (PARSER_STATE (parser), |
2695 | PARSER_RESULT (parser)); | |
f8eba3c6 | 2696 | |
6c5b2ebe | 2697 | return {}; |
413dad4d | 2698 | } |
50641945 | 2699 | |
40e084e1 | 2700 | |
f8eba3c6 | 2701 | /* A constructor for linespec_state. */ |
44fe14ab | 2702 | |
f8eba3c6 TT |
2703 | static void |
2704 | linespec_state_constructor (struct linespec_state *self, | |
40e084e1 | 2705 | int flags, const struct language_defn *language, |
c2f4122d | 2706 | struct program_space *search_pspace, |
f8eba3c6 TT |
2707 | struct symtab *default_symtab, |
2708 | int default_line, | |
2709 | struct linespec_result *canonical) | |
2710 | { | |
2711 | memset (self, 0, sizeof (*self)); | |
40e084e1 | 2712 | self->language = language; |
f8eba3c6 TT |
2713 | self->funfirstline = (flags & DECODE_LINE_FUNFIRSTLINE) ? 1 : 0; |
2714 | self->list_mode = (flags & DECODE_LINE_LIST_MODE) ? 1 : 0; | |
c2f4122d | 2715 | self->search_pspace = search_pspace; |
f8eba3c6 TT |
2716 | self->default_symtab = default_symtab; |
2717 | self->default_line = default_line; | |
2718 | self->canonical = canonical; | |
2719 | self->program_space = current_program_space; | |
2720 | self->addr_set = htab_create_alloc (10, hash_address_entry, eq_address_entry, | |
2721 | xfree, xcalloc, xfree); | |
00e52e53 | 2722 | self->is_linespec = 0; |
f8eba3c6 | 2723 | } |
44fe14ab | 2724 | |
40e084e1 | 2725 | /* Initialize a new linespec parser. */ |
44fe14ab | 2726 | |
3a6ae42d TT |
2727 | linespec_parser::linespec_parser (int flags, |
2728 | const struct language_defn *language, | |
2729 | struct program_space *search_pspace, | |
2730 | struct symtab *default_symtab, | |
2731 | int default_line, | |
2732 | struct linespec_result *canonical) | |
2733 | { | |
2734 | lexer.current.type = LSTOKEN_CONSUMED; | |
2735 | PARSER_RESULT (this)->file_symtabs = new std::vector<symtab *> (); | |
2736 | PARSER_EXPLICIT (this)->func_name_match_type | |
a20714ff | 2737 | = symbol_name_match_type::WILD; |
3a6ae42d TT |
2738 | PARSER_EXPLICIT (this)->line_offset.sign = LINE_OFFSET_UNKNOWN; |
2739 | linespec_state_constructor (PARSER_STATE (this), flags, language, | |
c2f4122d | 2740 | search_pspace, |
40e084e1 KS |
2741 | default_symtab, default_line, canonical); |
2742 | } | |
2743 | ||
2744 | /* A destructor for linespec_state. */ | |
44fe14ab | 2745 | |
40e084e1 KS |
2746 | static void |
2747 | linespec_state_destructor (struct linespec_state *self) | |
2748 | { | |
f8eba3c6 | 2749 | htab_delete (self->addr_set); |
1055a3b4 | 2750 | xfree (self->canonical_names); |
f8eba3c6 | 2751 | } |
44fe14ab | 2752 | |
40e084e1 KS |
2753 | /* Delete a linespec parser. */ |
2754 | ||
3a6ae42d | 2755 | linespec_parser::~linespec_parser () |
40e084e1 | 2756 | { |
3a6ae42d TT |
2757 | xfree (PARSER_EXPLICIT (this)->source_filename); |
2758 | xfree (PARSER_EXPLICIT (this)->label_name); | |
2759 | xfree (PARSER_EXPLICIT (this)->function_name); | |
40e084e1 | 2760 | |
3a6ae42d TT |
2761 | delete PARSER_RESULT (this)->file_symtabs; |
2762 | delete PARSER_RESULT (this)->function_symbols; | |
2763 | delete PARSER_RESULT (this)->minimal_symbols; | |
2764 | delete PARSER_RESULT (this)->labels.label_symbols; | |
2765 | delete PARSER_RESULT (this)->labels.function_symbols; | |
40e084e1 | 2766 | |
3a6ae42d | 2767 | linespec_state_destructor (PARSER_STATE (this)); |
40e084e1 KS |
2768 | } |
2769 | ||
c7c1b3e9 KS |
2770 | /* See description in linespec.h. */ |
2771 | ||
2772 | void | |
f2fc3015 | 2773 | linespec_lex_to_end (const char **stringp) |
c7c1b3e9 | 2774 | { |
c7c1b3e9 | 2775 | linespec_token token; |
c7c1b3e9 KS |
2776 | const char *orig; |
2777 | ||
2778 | if (stringp == NULL || *stringp == NULL) | |
2779 | return; | |
2780 | ||
3a6ae42d | 2781 | linespec_parser parser (0, current_language, NULL, NULL, 0, NULL); |
c7c1b3e9 KS |
2782 | parser.lexer.saved_arg = *stringp; |
2783 | PARSER_STREAM (&parser) = orig = *stringp; | |
2784 | ||
2785 | do | |
2786 | { | |
2787 | /* Stop before any comma tokens; we need it to keep it | |
2788 | as the next token in the string. */ | |
2789 | token = linespec_lexer_peek_token (&parser); | |
2790 | if (token.type == LSTOKEN_COMMA) | |
2791 | break; | |
c7c1b3e9 KS |
2792 | token = linespec_lexer_consume_token (&parser); |
2793 | } | |
2794 | while (token.type != LSTOKEN_EOI && token.type != LSTOKEN_KEYWORD); | |
2795 | ||
2796 | *stringp += PARSER_STREAM (&parser) - orig; | |
c7c1b3e9 KS |
2797 | } |
2798 | ||
c6756f62 PA |
2799 | /* See linespec.h. */ |
2800 | ||
2801 | void | |
2802 | linespec_complete_function (completion_tracker &tracker, | |
2803 | const char *function, | |
a20714ff | 2804 | symbol_name_match_type func_match_type, |
c6756f62 PA |
2805 | const char *source_filename) |
2806 | { | |
2807 | complete_symbol_mode mode = complete_symbol_mode::LINESPEC; | |
2808 | ||
2809 | if (source_filename != NULL) | |
2810 | { | |
b5ec771e PA |
2811 | collect_file_symbol_completion_matches (tracker, mode, func_match_type, |
2812 | function, function, source_filename); | |
c6756f62 PA |
2813 | } |
2814 | else | |
b5ec771e PA |
2815 | { |
2816 | collect_symbol_completion_matches (tracker, mode, func_match_type, | |
2817 | function, function); | |
2818 | ||
2819 | } | |
c6756f62 PA |
2820 | } |
2821 | ||
c45ec17c PA |
2822 | /* Helper for complete_linespec to simplify it. SOURCE_FILENAME is |
2823 | only meaningful if COMPONENT is FUNCTION. */ | |
2824 | ||
2825 | static void | |
2826 | complete_linespec_component (linespec_parser *parser, | |
2827 | completion_tracker &tracker, | |
2828 | const char *text, | |
2829 | linespec_complete_what component, | |
2830 | const char *source_filename) | |
2831 | { | |
2832 | if (component == linespec_complete_what::KEYWORD) | |
2833 | { | |
2834 | complete_on_enum (tracker, linespec_keywords, text, text); | |
2835 | } | |
2836 | else if (component == linespec_complete_what::EXPRESSION) | |
2837 | { | |
2838 | const char *word | |
2839 | = advance_to_expression_complete_word_point (tracker, text); | |
2840 | complete_expression (tracker, text, word); | |
2841 | } | |
2842 | else if (component == linespec_complete_what::FUNCTION) | |
2843 | { | |
2844 | completion_list fn_list; | |
2845 | ||
a20714ff PA |
2846 | symbol_name_match_type match_type |
2847 | = PARSER_EXPLICIT (parser)->func_name_match_type; | |
2848 | linespec_complete_function (tracker, text, match_type, source_filename); | |
c45ec17c PA |
2849 | if (source_filename == NULL) |
2850 | { | |
2851 | /* Haven't seen a source component, like in "b | |
2852 | file.c:function[TAB]". Maybe this wasn't a function, but | |
2853 | a filename instead, like "b file.[TAB]". */ | |
2854 | fn_list = complete_source_filenames (text); | |
2855 | } | |
2856 | ||
2857 | /* If we only have a single filename completion, append a ':' for | |
2858 | the user, since that's the only thing that can usefully follow | |
2859 | the filename. */ | |
2860 | if (fn_list.size () == 1 && !tracker.have_completions ()) | |
2861 | { | |
2862 | char *fn = fn_list[0].release (); | |
2863 | ||
2864 | /* If we also need to append a quote char, it needs to be | |
2865 | appended before the ':'. Append it now, and make ':' the | |
2866 | new "quote" char. */ | |
2867 | if (tracker.quote_char ()) | |
2868 | { | |
896a7aa6 | 2869 | char quote_char_str[2] = { (char) tracker.quote_char () }; |
c45ec17c PA |
2870 | |
2871 | fn = reconcat (fn, fn, quote_char_str, (char *) NULL); | |
2872 | tracker.set_quote_char (':'); | |
2873 | } | |
2874 | else | |
2875 | fn = reconcat (fn, fn, ":", (char *) NULL); | |
2876 | fn_list[0].reset (fn); | |
2877 | ||
2878 | /* Tell readline to skip appending a space. */ | |
2879 | tracker.set_suppress_append_ws (true); | |
2880 | } | |
2881 | tracker.add_completions (std::move (fn_list)); | |
2882 | } | |
2883 | } | |
2884 | ||
a2459270 PA |
2885 | /* Helper for linespec_complete_label. Find labels that match |
2886 | LABEL_NAME in the function symbols listed in the PARSER, and add | |
2887 | them to the tracker. */ | |
2888 | ||
2889 | static void | |
2890 | complete_label (completion_tracker &tracker, | |
2891 | linespec_parser *parser, | |
2892 | const char *label_name) | |
2893 | { | |
7e41c8db KS |
2894 | std::vector<block_symbol> label_function_symbols; |
2895 | std::vector<block_symbol> *labels | |
a2459270 PA |
2896 | = find_label_symbols (PARSER_STATE (parser), |
2897 | PARSER_RESULT (parser)->function_symbols, | |
2898 | &label_function_symbols, | |
2899 | label_name, true); | |
2900 | ||
3553eadc | 2901 | if (labels != nullptr) |
a2459270 | 2902 | { |
3553eadc KS |
2903 | for (const auto &label : *labels) |
2904 | { | |
987012b8 | 2905 | char *match = xstrdup (label.symbol->search_name ()); |
3553eadc KS |
2906 | tracker.add_completion (gdb::unique_xmalloc_ptr<char> (match)); |
2907 | } | |
2908 | delete labels; | |
a2459270 | 2909 | } |
a2459270 PA |
2910 | } |
2911 | ||
2912 | /* See linespec.h. */ | |
2913 | ||
2914 | void | |
2915 | linespec_complete_label (completion_tracker &tracker, | |
2916 | const struct language_defn *language, | |
2917 | const char *source_filename, | |
2918 | const char *function_name, | |
a20714ff | 2919 | symbol_name_match_type func_name_match_type, |
a2459270 PA |
2920 | const char *label_name) |
2921 | { | |
3a6ae42d | 2922 | linespec_parser parser (0, language, NULL, NULL, 0, NULL); |
a2459270 PA |
2923 | |
2924 | line_offset unknown_offset = { 0, LINE_OFFSET_UNKNOWN }; | |
2925 | ||
a70b8144 | 2926 | try |
a2459270 PA |
2927 | { |
2928 | convert_explicit_location_to_linespec (PARSER_STATE (&parser), | |
2929 | PARSER_RESULT (&parser), | |
2930 | source_filename, | |
2931 | function_name, | |
a20714ff | 2932 | func_name_match_type, |
a2459270 PA |
2933 | NULL, unknown_offset); |
2934 | } | |
230d2906 | 2935 | catch (const gdb_exception_error &ex) |
a2459270 | 2936 | { |
a2459270 PA |
2937 | return; |
2938 | } | |
a2459270 PA |
2939 | |
2940 | complete_label (tracker, &parser, label_name); | |
a2459270 PA |
2941 | } |
2942 | ||
c45ec17c PA |
2943 | /* See description in linespec.h. */ |
2944 | ||
2945 | void | |
a20714ff PA |
2946 | linespec_complete (completion_tracker &tracker, const char *text, |
2947 | symbol_name_match_type match_type) | |
c45ec17c | 2948 | { |
c45ec17c PA |
2949 | const char *orig = text; |
2950 | ||
3a6ae42d | 2951 | linespec_parser parser (0, current_language, NULL, NULL, 0, NULL); |
c45ec17c | 2952 | parser.lexer.saved_arg = text; |
a20714ff | 2953 | PARSER_EXPLICIT (&parser)->func_name_match_type = match_type; |
c45ec17c PA |
2954 | PARSER_STREAM (&parser) = text; |
2955 | ||
2956 | parser.completion_tracker = &tracker; | |
2957 | PARSER_STATE (&parser)->is_linespec = 1; | |
2958 | ||
2959 | /* Parse as much as possible. parser.completion_word will hold | |
2960 | furthest completion point we managed to parse to. */ | |
a70b8144 | 2961 | try |
c45ec17c | 2962 | { |
a20714ff | 2963 | parse_linespec (&parser, text, match_type); |
c45ec17c | 2964 | } |
230d2906 | 2965 | catch (const gdb_exception_error &except) |
c45ec17c PA |
2966 | { |
2967 | } | |
c45ec17c PA |
2968 | |
2969 | if (parser.completion_quote_char != '\0' | |
2970 | && parser.completion_quote_end != NULL | |
2971 | && parser.completion_quote_end[1] == '\0') | |
2972 | { | |
2973 | /* If completing a quoted string with the cursor right at | |
2974 | terminating quote char, complete the completion word without | |
2975 | interpretation, so that readline advances the cursor one | |
2976 | whitespace past the quote, even if there's no match. This | |
2977 | makes these cases behave the same: | |
2978 | ||
2979 | before: "b function()" | |
2980 | after: "b function() " | |
2981 | ||
2982 | before: "b 'function()'" | |
2983 | after: "b 'function()' " | |
2984 | ||
2985 | and trusts the user in this case: | |
2986 | ||
2987 | before: "b 'not_loaded_function_yet()'" | |
2988 | after: "b 'not_loaded_function_yet()' " | |
2989 | */ | |
2990 | parser.complete_what = linespec_complete_what::NOTHING; | |
2991 | parser.completion_quote_char = '\0'; | |
2992 | ||
2993 | gdb::unique_xmalloc_ptr<char> text_copy | |
2994 | (xstrdup (parser.completion_word)); | |
2995 | tracker.add_completion (std::move (text_copy)); | |
2996 | } | |
2997 | ||
2998 | tracker.set_quote_char (parser.completion_quote_char); | |
2999 | ||
3000 | if (parser.complete_what == linespec_complete_what::LABEL) | |
3001 | { | |
3002 | parser.complete_what = linespec_complete_what::NOTHING; | |
3003 | ||
3004 | const char *func_name = PARSER_EXPLICIT (&parser)->function_name; | |
3005 | ||
7e41c8db | 3006 | std::vector<block_symbol> function_symbols; |
c2a031c5 | 3007 | std::vector<bound_minimal_symbol> minimal_symbols; |
c45ec17c PA |
3008 | find_linespec_symbols (PARSER_STATE (&parser), |
3009 | PARSER_RESULT (&parser)->file_symtabs, | |
a20714ff | 3010 | func_name, match_type, |
c45ec17c PA |
3011 | &function_symbols, &minimal_symbols); |
3012 | ||
7243d011 | 3013 | PARSER_RESULT (&parser)->function_symbols |
7e41c8db | 3014 | = new std::vector<block_symbol> (std::move (function_symbols)); |
c2a031c5 KS |
3015 | PARSER_RESULT (&parser)->minimal_symbols |
3016 | = new std::vector<bound_minimal_symbol> (std::move (minimal_symbols)); | |
c45ec17c PA |
3017 | |
3018 | complete_label (tracker, &parser, parser.completion_word); | |
3019 | } | |
3020 | else if (parser.complete_what == linespec_complete_what::FUNCTION) | |
3021 | { | |
3022 | /* While parsing/lexing, we didn't know whether the completion | |
3023 | word completes to a unique function/source name already or | |
3024 | not. | |
3025 | ||
3026 | E.g.: | |
3027 | "b function() <tab>" | |
3028 | may need to complete either to: | |
3029 | "b function() const" | |
3030 | or to: | |
3031 | "b function() if/thread/task" | |
3032 | ||
3033 | Or, this: | |
3034 | "b foo t" | |
3035 | may need to complete either to: | |
3036 | "b foo template_fun<T>()" | |
3037 | with "foo" being the template function's return type, or to: | |
3038 | "b foo thread/task" | |
3039 | ||
3040 | Or, this: | |
3041 | "b file<TAB>" | |
3042 | may need to complete either to a source file name: | |
3043 | "b file.c" | |
3044 | or this, also a filename, but a unique completion: | |
3045 | "b file.c:" | |
3046 | or to a function name: | |
3047 | "b file_function" | |
3048 | ||
3049 | Address that by completing assuming source or function, and | |
3050 | seeing if we find a completion that matches exactly the | |
3051 | completion word. If so, then it must be a function (see note | |
3052 | below) and we advance the completion word to the end of input | |
3053 | and switch to KEYWORD completion mode. | |
3054 | ||
3055 | Note: if we find a unique completion for a source filename, | |
3056 | then it won't match the completion word, because the LCD will | |
3057 | contain a trailing ':'. And if we're completing at or after | |
3058 | the ':', then complete_linespec_component won't try to | |
3059 | complete on source filenames. */ | |
3060 | ||
c45ec17c PA |
3061 | const char *word = parser.completion_word; |
3062 | ||
3063 | complete_linespec_component (&parser, tracker, | |
3064 | parser.completion_word, | |
3065 | linespec_complete_what::FUNCTION, | |
3066 | PARSER_EXPLICIT (&parser)->source_filename); | |
3067 | ||
3068 | parser.complete_what = linespec_complete_what::NOTHING; | |
3069 | ||
3070 | if (tracker.quote_char ()) | |
3071 | { | |
3072 | /* The function/file name was not close-quoted, so this | |
3073 | can't be a keyword. Note: complete_linespec_component | |
3074 | may have swapped the original quote char for ':' when we | |
3075 | get here, but that still indicates the same. */ | |
3076 | } | |
3077 | else if (!tracker.have_completions ()) | |
3078 | { | |
3079 | size_t key_start; | |
3080 | size_t wordlen = strlen (parser.completion_word); | |
3081 | ||
3082 | key_start | |
3083 | = string_find_incomplete_keyword_at_end (linespec_keywords, | |
3084 | parser.completion_word, | |
3085 | wordlen); | |
3086 | ||
3087 | if (key_start != -1 | |
3088 | || (wordlen > 0 | |
3089 | && parser.completion_word[wordlen - 1] == ' ')) | |
3090 | { | |
3091 | parser.completion_word += key_start; | |
3092 | parser.complete_what = linespec_complete_what::KEYWORD; | |
3093 | } | |
3094 | } | |
3095 | else if (tracker.completes_to_completion_word (word)) | |
3096 | { | |
3097 | /* Skip the function and complete on keywords. */ | |
3098 | parser.completion_word += strlen (word); | |
3099 | parser.complete_what = linespec_complete_what::KEYWORD; | |
3100 | tracker.discard_completions (); | |
3101 | } | |
3102 | } | |
3103 | ||
3104 | tracker.advance_custom_word_point_by (parser.completion_word - orig); | |
3105 | ||
3106 | complete_linespec_component (&parser, tracker, | |
3107 | parser.completion_word, | |
3108 | parser.complete_what, | |
3109 | PARSER_EXPLICIT (&parser)->source_filename); | |
3110 | ||
3111 | /* If we're past the "filename:function:label:offset" linespec, and | |
3112 | didn't find any match, then assume the user might want to create | |
3113 | a pending breakpoint anyway and offer the keyword | |
3114 | completions. */ | |
3115 | if (!parser.completion_quote_char | |
3116 | && (parser.complete_what == linespec_complete_what::FUNCTION | |
3117 | || parser.complete_what == linespec_complete_what::LABEL | |
3118 | || parser.complete_what == linespec_complete_what::NOTHING) | |
3119 | && !tracker.have_completions ()) | |
3120 | { | |
3121 | const char *end | |
3122 | = parser.completion_word + strlen (parser.completion_word); | |
3123 | ||
3124 | if (end > orig && end[-1] == ' ') | |
3125 | { | |
3126 | tracker.advance_custom_word_point_by (end - parser.completion_word); | |
3127 | ||
3128 | complete_linespec_component (&parser, tracker, end, | |
3129 | linespec_complete_what::KEYWORD, | |
3130 | NULL); | |
3131 | } | |
3132 | } | |
c45ec17c PA |
3133 | } |
3134 | ||
f00aae0f | 3135 | /* A helper function for decode_line_full and decode_line_1 to |
6c5b2ebe | 3136 | turn LOCATION into std::vector<symtab_and_line>. */ |
f00aae0f | 3137 | |
6c5b2ebe | 3138 | static std::vector<symtab_and_line> |
f00aae0f KS |
3139 | event_location_to_sals (linespec_parser *parser, |
3140 | const struct event_location *location) | |
3141 | { | |
6c5b2ebe | 3142 | std::vector<symtab_and_line> result; |
f00aae0f KS |
3143 | |
3144 | switch (event_location_type (location)) | |
3145 | { | |
3146 | case LINESPEC_LOCATION: | |
3147 | { | |
00e52e53 | 3148 | PARSER_STATE (parser)->is_linespec = 1; |
a70b8144 | 3149 | try |
f00aae0f | 3150 | { |
a20714ff PA |
3151 | const linespec_location *ls = get_linespec_location (location); |
3152 | result = parse_linespec (parser, | |
3153 | ls->spec_string, ls->match_type); | |
f00aae0f | 3154 | } |
230d2906 | 3155 | catch (const gdb_exception_error &except) |
f00aae0f | 3156 | { |
eedc3f4f | 3157 | throw; |
f00aae0f | 3158 | } |
f00aae0f KS |
3159 | } |
3160 | break; | |
3161 | ||
a06efdd6 | 3162 | case ADDRESS_LOCATION: |
305e13e6 JB |
3163 | { |
3164 | const char *addr_string = get_address_string_location (location); | |
3165 | CORE_ADDR addr = get_address_location (location); | |
3166 | ||
3167 | if (addr_string != NULL) | |
3168 | { | |
9be2c17a | 3169 | addr = linespec_expression_to_pc (&addr_string); |
305e13e6 JB |
3170 | if (PARSER_STATE (parser)->canonical != NULL) |
3171 | PARSER_STATE (parser)->canonical->location | |
8e9e35b1 | 3172 | = copy_event_location (location); |
305e13e6 JB |
3173 | } |
3174 | ||
3175 | result = convert_address_location_to_sals (PARSER_STATE (parser), | |
3176 | addr); | |
3177 | } | |
a06efdd6 KS |
3178 | break; |
3179 | ||
00e52e53 KS |
3180 | case EXPLICIT_LOCATION: |
3181 | { | |
67994074 | 3182 | const struct explicit_location *explicit_loc; |
00e52e53 | 3183 | |
67994074 | 3184 | explicit_loc = get_explicit_location_const (location); |
00e52e53 KS |
3185 | result = convert_explicit_location_to_sals (PARSER_STATE (parser), |
3186 | PARSER_RESULT (parser), | |
67994074 | 3187 | explicit_loc); |
00e52e53 KS |
3188 | } |
3189 | break; | |
3190 | ||
5b56227b KS |
3191 | case PROBE_LOCATION: |
3192 | /* Probes are handled by their own decoders. */ | |
3193 | gdb_assert_not_reached ("attempt to decode probe location"); | |
3194 | break; | |
3195 | ||
f00aae0f KS |
3196 | default: |
3197 | gdb_assert_not_reached ("unhandled event location type"); | |
3198 | } | |
3199 | ||
3200 | return result; | |
3201 | } | |
3202 | ||
f8eba3c6 | 3203 | /* See linespec.h. */ |
44fe14ab | 3204 | |
f8eba3c6 | 3205 | void |
f00aae0f | 3206 | decode_line_full (const struct event_location *location, int flags, |
c2f4122d | 3207 | struct program_space *search_pspace, |
f8eba3c6 TT |
3208 | struct symtab *default_symtab, |
3209 | int default_line, struct linespec_result *canonical, | |
3210 | const char *select_mode, | |
3211 | const char *filter) | |
44fe14ab | 3212 | { |
f73c6ece | 3213 | std::vector<const char *> filters; |
40e084e1 | 3214 | struct linespec_state *state; |
f8eba3c6 TT |
3215 | |
3216 | gdb_assert (canonical != NULL); | |
3217 | /* The filter only makes sense for 'all'. */ | |
3218 | gdb_assert (filter == NULL || select_mode == multiple_symbols_all); | |
3219 | gdb_assert (select_mode == NULL | |
3220 | || select_mode == multiple_symbols_all | |
3221 | || select_mode == multiple_symbols_ask | |
3222 | || select_mode == multiple_symbols_cancel); | |
3223 | gdb_assert ((flags & DECODE_LINE_LIST_MODE) == 0); | |
3224 | ||
3a6ae42d TT |
3225 | linespec_parser parser (flags, current_language, |
3226 | search_pspace, default_symtab, | |
3227 | default_line, canonical); | |
5ed8105e PA |
3228 | |
3229 | scoped_restore_current_program_space restore_pspace; | |
f8eba3c6 | 3230 | |
6c5b2ebe PA |
3231 | std::vector<symtab_and_line> result = event_location_to_sals (&parser, |
3232 | location); | |
40e084e1 | 3233 | state = PARSER_STATE (&parser); |
f8eba3c6 | 3234 | |
6c5b2ebe | 3235 | gdb_assert (result.size () == 1 || canonical->pre_expanded); |
f8eba3c6 TT |
3236 | canonical->pre_expanded = 1; |
3237 | ||
66f1999b | 3238 | /* Arrange for allocated canonical names to be freed. */ |
3a6ae42d TT |
3239 | std::vector<gdb::unique_xmalloc_ptr<char>> hold_names; |
3240 | for (int i = 0; i < result.size (); ++i) | |
f8eba3c6 | 3241 | { |
3a6ae42d TT |
3242 | gdb_assert (state->canonical_names[i].suffix != NULL); |
3243 | hold_names.emplace_back (state->canonical_names[i].suffix); | |
f8eba3c6 TT |
3244 | } |
3245 | ||
3246 | if (select_mode == NULL) | |
3247 | { | |
29f94340 | 3248 | if (top_level_interpreter ()->interp_ui_out ()->is_mi_like_p ()) |
f8eba3c6 TT |
3249 | select_mode = multiple_symbols_all; |
3250 | else | |
3251 | select_mode = multiple_symbols_select_mode (); | |
3252 | } | |
3253 | ||
3254 | if (select_mode == multiple_symbols_all) | |
3255 | { | |
3256 | if (filter != NULL) | |
3257 | { | |
f73c6ece | 3258 | filters.push_back (filter); |
40e084e1 | 3259 | filter_results (state, &result, filters); |
f8eba3c6 TT |
3260 | } |
3261 | else | |
40e084e1 | 3262 | convert_results_to_lsals (state, &result); |
f8eba3c6 TT |
3263 | } |
3264 | else | |
40e084e1 | 3265 | decode_line_2 (state, &result, select_mode); |
f8eba3c6 TT |
3266 | } |
3267 | ||
39cf75f7 DE |
3268 | /* See linespec.h. */ |
3269 | ||
6c5b2ebe | 3270 | std::vector<symtab_and_line> |
f00aae0f | 3271 | decode_line_1 (const struct event_location *location, int flags, |
c2f4122d | 3272 | struct program_space *search_pspace, |
f8eba3c6 TT |
3273 | struct symtab *default_symtab, |
3274 | int default_line) | |
3275 | { | |
3a6ae42d TT |
3276 | linespec_parser parser (flags, current_language, |
3277 | search_pspace, default_symtab, | |
3278 | default_line, NULL); | |
5ed8105e PA |
3279 | |
3280 | scoped_restore_current_program_space restore_pspace; | |
f8eba3c6 | 3281 | |
3a6ae42d | 3282 | return event_location_to_sals (&parser, location); |
f8eba3c6 TT |
3283 | } |
3284 | ||
39cf75f7 DE |
3285 | /* See linespec.h. */ |
3286 | ||
6c5b2ebe | 3287 | std::vector<symtab_and_line> |
f2fc3015 | 3288 | decode_line_with_current_source (const char *string, int flags) |
39cf75f7 | 3289 | { |
39cf75f7 DE |
3290 | if (string == 0) |
3291 | error (_("Empty line specification.")); | |
3292 | ||
3293 | /* We use whatever is set as the current source line. We do not try | |
3294 | and get a default source symtab+line or it will recursively call us! */ | |
6c5b2ebe | 3295 | symtab_and_line cursal = get_current_source_symtab_and_line (); |
39cf75f7 | 3296 | |
ffc2605c TT |
3297 | event_location_up location = string_to_event_location (&string, |
3298 | current_language); | |
6c5b2ebe PA |
3299 | std::vector<symtab_and_line> sals |
3300 | = decode_line_1 (location.get (), flags, NULL, cursal.symtab, cursal.line); | |
39cf75f7 DE |
3301 | |
3302 | if (*string) | |
3303 | error (_("Junk at end of line specification: %s"), string); | |
f00aae0f | 3304 | |
39cf75f7 DE |
3305 | return sals; |
3306 | } | |
3307 | ||
3308 | /* See linespec.h. */ | |
3309 | ||
6c5b2ebe | 3310 | std::vector<symtab_and_line> |
f2fc3015 | 3311 | decode_line_with_last_displayed (const char *string, int flags) |
39cf75f7 | 3312 | { |
39cf75f7 DE |
3313 | if (string == 0) |
3314 | error (_("Empty line specification.")); | |
3315 | ||
ffc2605c TT |
3316 | event_location_up location = string_to_event_location (&string, |
3317 | current_language); | |
6c5b2ebe PA |
3318 | std::vector<symtab_and_line> sals |
3319 | = (last_displayed_sal_is_valid () | |
3320 | ? decode_line_1 (location.get (), flags, NULL, | |
3321 | get_last_displayed_symtab (), | |
3322 | get_last_displayed_line ()) | |
cafb3438 | 3323 | : decode_line_1 (location.get (), flags, NULL, NULL, 0)); |
39cf75f7 DE |
3324 | |
3325 | if (*string) | |
3326 | error (_("Junk at end of line specification: %s"), string); | |
f00aae0f | 3327 | |
39cf75f7 DE |
3328 | return sals; |
3329 | } | |
3330 | ||
f8eba3c6 TT |
3331 | \f |
3332 | ||
85102364 | 3333 | /* First, some functions to initialize stuff at the beginning of the |
f8eba3c6 TT |
3334 | function. */ |
3335 | ||
3336 | static void | |
3337 | initialize_defaults (struct symtab **default_symtab, int *default_line) | |
3338 | { | |
3339 | if (*default_symtab == 0) | |
3340 | { | |
3341 | /* Use whatever we have for the default source line. We don't use | |
3342 | get_current_or_default_symtab_and_line as it can recurse and call | |
3343 | us back! */ | |
3344 | struct symtab_and_line cursal = | |
3345 | get_current_source_symtab_and_line (); | |
3346 | ||
3347 | *default_symtab = cursal.symtab; | |
3348 | *default_line = cursal.line; | |
3349 | } | |
3350 | } | |
3351 | ||
3352 | \f | |
3353 | ||
40e084e1 KS |
3354 | /* Evaluate the expression pointed to by EXP_PTR into a CORE_ADDR, |
3355 | advancing EXP_PTR past any parsed text. */ | |
f8eba3c6 | 3356 | |
a06efdd6 | 3357 | CORE_ADDR |
bbc13ae3 | 3358 | linespec_expression_to_pc (const char **exp_ptr) |
f8eba3c6 | 3359 | { |
f8eba3c6 TT |
3360 | if (current_program_space->executing_startup) |
3361 | /* The error message doesn't really matter, because this case | |
3362 | should only hit during breakpoint reset. */ | |
3363 | throw_error (NOT_FOUND_ERROR, _("cannot evaluate expressions while " | |
3364 | "program space is in startup")); | |
3365 | ||
40e084e1 KS |
3366 | (*exp_ptr)++; |
3367 | return value_as_address (parse_to_comma_and_eval (exp_ptr)); | |
0960f083 DC |
3368 | } |
3369 | ||
3370 | \f | |
3371 | ||
d2630e69 AF |
3372 | /* Here's where we recognise an Objective-C Selector. An Objective C |
3373 | selector may be implemented by more than one class, therefore it | |
3374 | may represent more than one method/function. This gives us a | |
3375 | situation somewhat analogous to C++ overloading. If there's more | |
3376 | than one method that could represent the selector, then use some of | |
3377 | the existing C++ code to let the user choose one. */ | |
3378 | ||
6c5b2ebe | 3379 | static std::vector<symtab_and_line> |
f00aae0f | 3380 | decode_objc (struct linespec_state *self, linespec_p ls, const char *arg) |
d2630e69 | 3381 | { |
f8eba3c6 | 3382 | struct collect_info info; |
9b2f8581 | 3383 | std::vector<const char *> symbol_names; |
d7561cbb | 3384 | const char *new_argptr; |
f8eba3c6 TT |
3385 | |
3386 | info.state = self; | |
2a908241 KS |
3387 | std::vector<symtab *> symtabs; |
3388 | symtabs.push_back (nullptr); | |
3389 | ||
3390 | info.file_symtabs = &symtabs; | |
7243d011 | 3391 | |
7e41c8db | 3392 | std::vector<block_symbol> symbols; |
7243d011 | 3393 | info.result.symbols = &symbols; |
c2a031c5 KS |
3394 | std::vector<bound_minimal_symbol> minimal_symbols; |
3395 | info.result.minimal_symbols = &minimal_symbols; | |
f8eba3c6 | 3396 | |
f00aae0f | 3397 | new_argptr = find_imps (arg, &symbol_names); |
9b2f8581 | 3398 | if (symbol_names.empty ()) |
2a908241 | 3399 | return {}; |
d2630e69 | 3400 | |
56d87ef7 PA |
3401 | add_all_symbol_names_from_pspace (&info, NULL, symbol_names, |
3402 | FUNCTIONS_DOMAIN); | |
d2630e69 | 3403 | |
6c5b2ebe | 3404 | std::vector<symtab_and_line> values; |
c2a031c5 | 3405 | if (!symbols.empty () || !minimal_symbols.empty ()) |
d2630e69 | 3406 | { |
f8eba3c6 | 3407 | char *saved_arg; |
d2630e69 | 3408 | |
224c3ddb | 3409 | saved_arg = (char *) alloca (new_argptr - arg + 1); |
f00aae0f KS |
3410 | memcpy (saved_arg, arg, new_argptr - arg); |
3411 | saved_arg[new_argptr - arg] = '\0'; | |
d2630e69 | 3412 | |
67994074 | 3413 | ls->explicit_loc.function_name = xstrdup (saved_arg); |
7e41c8db KS |
3414 | ls->function_symbols |
3415 | = new std::vector<block_symbol> (std::move (symbols)); | |
c2a031c5 KS |
3416 | ls->minimal_symbols |
3417 | = new std::vector<bound_minimal_symbol> (std::move (minimal_symbols)); | |
40e084e1 KS |
3418 | values = convert_linespec_to_sals (self, ls); |
3419 | ||
f8eba3c6 | 3420 | if (self->canonical) |
d2630e69 | 3421 | { |
f2fc3015 TT |
3422 | std::string holder; |
3423 | const char *str; | |
f00aae0f | 3424 | |
f8eba3c6 | 3425 | self->canonical->pre_expanded = 1; |
f00aae0f | 3426 | |
67994074 | 3427 | if (ls->explicit_loc.source_filename) |
f00aae0f | 3428 | { |
f2fc3015 TT |
3429 | holder = string_printf ("%s:%s", |
3430 | ls->explicit_loc.source_filename, | |
3431 | saved_arg); | |
3432 | str = holder.c_str (); | |
f00aae0f | 3433 | } |
f8eba3c6 | 3434 | else |
f2fc3015 | 3435 | str = saved_arg; |
f00aae0f | 3436 | |
a20714ff PA |
3437 | self->canonical->location |
3438 | = new_linespec_location (&str, symbol_name_match_type::FULL); | |
d2630e69 | 3439 | } |
d2630e69 AF |
3440 | } |
3441 | ||
40e084e1 | 3442 | return values; |
f8eba3c6 | 3443 | } |
c00f8484 | 3444 | |
ffdbe864 YQ |
3445 | namespace { |
3446 | ||
14bc53a8 PA |
3447 | /* A function object that serves as symbol_found_callback_ftype |
3448 | callback for iterate_over_symbols. This is used by | |
3449 | lookup_prefix_sym to collect type symbols. */ | |
3450 | class decode_compound_collector | |
f8eba3c6 | 3451 | { |
14bc53a8 | 3452 | public: |
fc4007c9 | 3453 | decode_compound_collector () |
fc4007c9 | 3454 | { |
14bc53a8 PA |
3455 | m_unique_syms = htab_create_alloc (1, htab_hash_pointer, |
3456 | htab_eq_pointer, NULL, | |
3457 | xcalloc, xfree); | |
fc4007c9 TT |
3458 | } |
3459 | ||
3460 | ~decode_compound_collector () | |
3461 | { | |
14bc53a8 PA |
3462 | if (m_unique_syms != NULL) |
3463 | htab_delete (m_unique_syms); | |
fc4007c9 | 3464 | } |
3a93a0c2 | 3465 | |
4dedf84d | 3466 | /* Return all symbols collected. */ |
7e41c8db | 3467 | std::vector<block_symbol> release_symbols () |
14bc53a8 | 3468 | { |
4dedf84d | 3469 | return std::move (m_symbols); |
14bc53a8 | 3470 | } |
c00f8484 | 3471 | |
14bc53a8 | 3472 | /* Callable as a symbol_found_callback_ftype callback. */ |
7e41c8db | 3473 | bool operator () (block_symbol *bsym); |
14bc53a8 PA |
3474 | |
3475 | private: | |
3476 | /* A hash table of all symbols we found. We use this to avoid | |
3477 | adding any symbol more than once. */ | |
3478 | htab_t m_unique_syms; | |
3479 | ||
3480 | /* The result vector. */ | |
7e41c8db | 3481 | std::vector<block_symbol> m_symbols; |
14bc53a8 PA |
3482 | }; |
3483 | ||
3484 | bool | |
7e41c8db | 3485 | decode_compound_collector::operator () (block_symbol *bsym) |
f8eba3c6 | 3486 | { |
f8eba3c6 TT |
3487 | void **slot; |
3488 | struct type *t; | |
7e41c8db | 3489 | struct symbol *sym = bsym->symbol; |
614b3b14 | 3490 | |
f8eba3c6 | 3491 | if (SYMBOL_CLASS (sym) != LOC_TYPEDEF) |
14bc53a8 | 3492 | return true; /* Continue iterating. */ |
f8eba3c6 TT |
3493 | |
3494 | t = SYMBOL_TYPE (sym); | |
f168693b | 3495 | t = check_typedef (t); |
f8eba3c6 TT |
3496 | if (TYPE_CODE (t) != TYPE_CODE_STRUCT |
3497 | && TYPE_CODE (t) != TYPE_CODE_UNION | |
3498 | && TYPE_CODE (t) != TYPE_CODE_NAMESPACE) | |
14bc53a8 | 3499 | return true; /* Continue iterating. */ |
614b3b14 | 3500 | |
14bc53a8 | 3501 | slot = htab_find_slot (m_unique_syms, sym, INSERT); |
f8eba3c6 TT |
3502 | if (!*slot) |
3503 | { | |
3504 | *slot = sym; | |
7e41c8db | 3505 | m_symbols.push_back (*bsym); |
f8eba3c6 TT |
3506 | } |
3507 | ||
14bc53a8 | 3508 | return true; /* Continue iterating. */ |
f8eba3c6 | 3509 | } |
93d91629 | 3510 | |
ffdbe864 YQ |
3511 | } // namespace |
3512 | ||
40e084e1 | 3513 | /* Return any symbols corresponding to CLASS_NAME in FILE_SYMTABS. */ |
93d91629 | 3514 | |
7e41c8db | 3515 | static std::vector<block_symbol> |
2a908241 KS |
3516 | lookup_prefix_sym (struct linespec_state *state, |
3517 | std::vector<symtab *> *file_symtabs, | |
40e084e1 | 3518 | const char *class_name) |
93d91629 | 3519 | { |
14bc53a8 | 3520 | decode_compound_collector collector; |
e0881a8e | 3521 | |
b5ec771e PA |
3522 | lookup_name_info lookup_name (class_name, symbol_name_match_type::FULL); |
3523 | ||
2a908241 | 3524 | for (const auto &elt : *file_symtabs) |
f8eba3c6 | 3525 | { |
2a908241 | 3526 | if (elt == nullptr) |
f8eba3c6 | 3527 | { |
b5ec771e | 3528 | iterate_over_all_matching_symtabs (state, lookup_name, |
56d87ef7 PA |
3529 | STRUCT_DOMAIN, ALL_DOMAIN, |
3530 | NULL, false, collector); | |
b5ec771e | 3531 | iterate_over_all_matching_symtabs (state, lookup_name, |
56d87ef7 PA |
3532 | VAR_DOMAIN, ALL_DOMAIN, |
3533 | NULL, false, collector); | |
f8eba3c6 TT |
3534 | } |
3535 | else | |
3536 | { | |
f8eba3c6 TT |
3537 | /* Program spaces that are executing startup should have |
3538 | been filtered out earlier. */ | |
3539 | gdb_assert (!SYMTAB_PSPACE (elt)->executing_startup); | |
3540 | set_current_program_space (SYMTAB_PSPACE (elt)); | |
b5ec771e PA |
3541 | iterate_over_file_blocks (elt, lookup_name, STRUCT_DOMAIN, collector); |
3542 | iterate_over_file_blocks (elt, lookup_name, VAR_DOMAIN, collector); | |
1e5a1abc KS |
3543 | } |
3544 | } | |
3545 | ||
14bc53a8 | 3546 | return collector.release_symbols (); |
93d91629 DC |
3547 | } |
3548 | ||
7243d011 KS |
3549 | /* A std::sort comparison function for symbols. The resulting order does |
3550 | not actually matter; we just need to be able to sort them so that | |
3551 | symbols with the same program space end up next to each other. */ | |
3552 | ||
3553 | static bool | |
7e41c8db | 3554 | compare_symbols (const block_symbol &a, const block_symbol &b) |
7243d011 KS |
3555 | { |
3556 | uintptr_t uia, uib; | |
3557 | ||
7e41c8db KS |
3558 | uia = (uintptr_t) SYMTAB_PSPACE (symbol_symtab (a.symbol)); |
3559 | uib = (uintptr_t) SYMTAB_PSPACE (symbol_symtab (b.symbol)); | |
7243d011 KS |
3560 | |
3561 | if (uia < uib) | |
3562 | return true; | |
3563 | if (uia > uib) | |
3564 | return false; | |
3565 | ||
7e41c8db KS |
3566 | uia = (uintptr_t) a.symbol; |
3567 | uib = (uintptr_t) b.symbol; | |
7243d011 KS |
3568 | |
3569 | if (uia < uib) | |
3570 | return true; | |
3571 | ||
3572 | return false; | |
3573 | } | |
3574 | ||
40e084e1 | 3575 | /* Like compare_symbols but for minimal symbols. */ |
4224873a | 3576 | |
c2a031c5 KS |
3577 | static bool |
3578 | compare_msymbols (const bound_minimal_symbol &a, const bound_minimal_symbol &b) | |
4224873a | 3579 | { |
f8eba3c6 TT |
3580 | uintptr_t uia, uib; |
3581 | ||
c2a031c5 KS |
3582 | uia = (uintptr_t) a.objfile->pspace; |
3583 | uib = (uintptr_t) a.objfile->pspace; | |
f8eba3c6 TT |
3584 | |
3585 | if (uia < uib) | |
c2a031c5 | 3586 | return true; |
f8eba3c6 | 3587 | if (uia > uib) |
c2a031c5 | 3588 | return false; |
f8eba3c6 | 3589 | |
c2a031c5 KS |
3590 | uia = (uintptr_t) a.minsym; |
3591 | uib = (uintptr_t) b.minsym; | |
f8eba3c6 TT |
3592 | |
3593 | if (uia < uib) | |
c2a031c5 | 3594 | return true; |
f8eba3c6 | 3595 | |
c2a031c5 | 3596 | return false; |
f8eba3c6 TT |
3597 | } |
3598 | ||
3599 | /* Look for all the matching instances of each symbol in NAMES. Only | |
3600 | instances from PSPACE are considered; other program spaces are | |
3601 | handled by our caller. If PSPACE is NULL, then all program spaces | |
3602 | are considered. Results are stored into INFO. */ | |
3603 | ||
3604 | static void | |
3605 | add_all_symbol_names_from_pspace (struct collect_info *info, | |
3606 | struct program_space *pspace, | |
9b2f8581 | 3607 | const std::vector<const char *> &names, |
56d87ef7 | 3608 | enum search_domain search_domain) |
f8eba3c6 | 3609 | { |
9b2f8581 | 3610 | for (const char *iter : names) |
b5ec771e PA |
3611 | add_matching_symbols_to_info (iter, |
3612 | symbol_name_match_type::FULL, | |
56d87ef7 | 3613 | search_domain, info, pspace); |
f8eba3c6 TT |
3614 | } |
3615 | ||
3616 | static void | |
8e8d776e | 3617 | find_superclass_methods (std::vector<struct type *> &&superclasses, |
b5ec771e | 3618 | const char *name, enum language name_lang, |
9b2f8581 | 3619 | std::vector<const char *> *result_names) |
f8eba3c6 | 3620 | { |
9b2f8581 | 3621 | size_t old_len = result_names->size (); |
f8eba3c6 | 3622 | |
f8eba3c6 TT |
3623 | while (1) |
3624 | { | |
8e8d776e | 3625 | std::vector<struct type *> new_supers; |
f8eba3c6 | 3626 | |
52941706 | 3627 | for (type *t : superclasses) |
b5ec771e | 3628 | find_methods (t, name_lang, name, result_names, &new_supers); |
f8eba3c6 | 3629 | |
8e8d776e | 3630 | if (result_names->size () != old_len || new_supers.empty ()) |
f8eba3c6 | 3631 | break; |
4224873a | 3632 | |
8e8d776e | 3633 | superclasses = std::move (new_supers); |
f8eba3c6 | 3634 | } |
f8eba3c6 TT |
3635 | } |
3636 | ||
40e084e1 KS |
3637 | /* This finds the method METHOD_NAME in the class CLASS_NAME whose type is |
3638 | given by one of the symbols in SYM_CLASSES. Matches are returned | |
3639 | in SYMBOLS (for debug symbols) and MINSYMS (for minimal symbols). */ | |
f8eba3c6 | 3640 | |
40e084e1 | 3641 | static void |
2a908241 | 3642 | find_method (struct linespec_state *self, std::vector<symtab *> *file_symtabs, |
40e084e1 | 3643 | const char *class_name, const char *method_name, |
7e41c8db KS |
3644 | std::vector<block_symbol> *sym_classes, |
3645 | std::vector<block_symbol> *symbols, | |
c2a031c5 | 3646 | std::vector<bound_minimal_symbol> *minsyms) |
f8eba3c6 | 3647 | { |
9b2f8581 | 3648 | size_t last_result_len; |
8e8d776e | 3649 | std::vector<struct type *> superclass_vec; |
9b2f8581 | 3650 | std::vector<const char *> result_names; |
f8eba3c6 | 3651 | struct collect_info info; |
4224873a | 3652 | |
f8eba3c6 TT |
3653 | /* Sort symbols so that symbols with the same program space are next |
3654 | to each other. */ | |
4dedf84d KS |
3655 | std::sort (sym_classes->begin (), sym_classes->end (), |
3656 | compare_symbols); | |
f8eba3c6 TT |
3657 | |
3658 | info.state = self; | |
40e084e1 | 3659 | info.file_symtabs = file_symtabs; |
7243d011 | 3660 | info.result.symbols = symbols; |
c2a031c5 | 3661 | info.result.minimal_symbols = minsyms; |
f8eba3c6 TT |
3662 | |
3663 | /* Iterate over all the types, looking for the names of existing | |
40e084e1 | 3664 | methods matching METHOD_NAME. If we cannot find a direct method in a |
f8eba3c6 TT |
3665 | given program space, then we consider inherited methods; this is |
3666 | not ideal (ideal would be to respect C++ hiding rules), but it | |
3667 | seems good enough and is what GDB has historically done. We only | |
3668 | need to collect the names because later we find all symbols with | |
3669 | those names. This loop is written in a somewhat funny way | |
3670 | because we collect data across the program space before deciding | |
3671 | what to do. */ | |
f8eba3c6 | 3672 | last_result_len = 0; |
4dedf84d | 3673 | unsigned int ix = 0; |
7e41c8db | 3674 | for (const auto &elt : *sym_classes) |
f8eba3c6 TT |
3675 | { |
3676 | struct type *t; | |
3677 | struct program_space *pspace; | |
7e41c8db | 3678 | struct symbol *sym = elt.symbol; |
f8eba3c6 TT |
3679 | |
3680 | /* Program spaces that are executing startup should have | |
3681 | been filtered out earlier. */ | |
08be3fe3 DE |
3682 | pspace = SYMTAB_PSPACE (symbol_symtab (sym)); |
3683 | gdb_assert (!pspace->executing_startup); | |
f8eba3c6 TT |
3684 | set_current_program_space (pspace); |
3685 | t = check_typedef (SYMBOL_TYPE (sym)); | |
c1b5c1eb | 3686 | find_methods (t, sym->language (), |
b5ec771e | 3687 | method_name, &result_names, &superclass_vec); |
f8eba3c6 TT |
3688 | |
3689 | /* Handle all items from a single program space at once; and be | |
3690 | sure not to miss the last batch. */ | |
4dedf84d | 3691 | if (ix == sym_classes->size () - 1 |
f8eba3c6 | 3692 | || (pspace |
7e41c8db | 3693 | != SYMTAB_PSPACE (symbol_symtab (sym_classes->at (ix + 1).symbol)))) |
4224873a | 3694 | { |
f8eba3c6 TT |
3695 | /* If we did not find a direct implementation anywhere in |
3696 | this program space, consider superclasses. */ | |
9b2f8581 | 3697 | if (result_names.size () == last_result_len) |
8e8d776e | 3698 | find_superclass_methods (std::move (superclass_vec), method_name, |
c1b5c1eb | 3699 | sym->language (), &result_names); |
f8eba3c6 TT |
3700 | |
3701 | /* We have a list of candidate symbol names, so now we | |
3702 | iterate over the symbol tables looking for all | |
3703 | matches in this pspace. */ | |
56d87ef7 PA |
3704 | add_all_symbol_names_from_pspace (&info, pspace, result_names, |
3705 | FUNCTIONS_DOMAIN); | |
f8eba3c6 | 3706 | |
8e8d776e | 3707 | superclass_vec.clear (); |
9b2f8581 | 3708 | last_result_len = result_names.size (); |
4dedf84d | 3709 | ++ix; |
4224873a | 3710 | } |
4224873a | 3711 | } |
f8eba3c6 | 3712 | |
c2a031c5 KS |
3713 | if (!symbols->empty () || !minsyms->empty ()) |
3714 | return; | |
f8eba3c6 | 3715 | |
40e084e1 KS |
3716 | /* Throw an NOT_FOUND_ERROR. This will be caught by the caller |
3717 | and other attempts to locate the symbol will be made. */ | |
3718 | throw_error (NOT_FOUND_ERROR, _("see caller, this text doesn't matter")); | |
f8eba3c6 TT |
3719 | } |
3720 | ||
3721 | \f | |
3722 | ||
ffdbe864 YQ |
3723 | namespace { |
3724 | ||
14bc53a8 PA |
3725 | /* This function object is a callback for iterate_over_symtabs, used |
3726 | when collecting all matching symtabs. */ | |
f8eba3c6 | 3727 | |
14bc53a8 | 3728 | class symtab_collector |
f8eba3c6 | 3729 | { |
14bc53a8 | 3730 | public: |
fc4007c9 | 3731 | symtab_collector () |
fc4007c9 | 3732 | { |
14bc53a8 PA |
3733 | m_symtab_table = htab_create (1, htab_hash_pointer, htab_eq_pointer, |
3734 | NULL); | |
fc4007c9 TT |
3735 | } |
3736 | ||
3737 | ~symtab_collector () | |
3738 | { | |
14bc53a8 PA |
3739 | if (m_symtab_table != NULL) |
3740 | htab_delete (m_symtab_table); | |
fc4007c9 | 3741 | } |
f8eba3c6 | 3742 | |
14bc53a8 PA |
3743 | /* Callable as a symbol_found_callback_ftype callback. */ |
3744 | bool operator () (symtab *sym); | |
f8eba3c6 | 3745 | |
4717cec4 SM |
3746 | /* Return an rvalue reference to the collected symtabs. */ |
3747 | std::vector<symtab *> &&release_symtabs () | |
14bc53a8 | 3748 | { |
2a908241 | 3749 | return std::move (m_symtabs); |
14bc53a8 PA |
3750 | } |
3751 | ||
3752 | private: | |
3753 | /* The result vector of symtabs. */ | |
4717cec4 | 3754 | std::vector<symtab *> m_symtabs; |
14bc53a8 PA |
3755 | |
3756 | /* This is used to ensure the symtabs are unique. */ | |
3757 | htab_t m_symtab_table; | |
3758 | }; | |
3759 | ||
3760 | bool | |
3761 | symtab_collector::operator () (struct symtab *symtab) | |
f8eba3c6 | 3762 | { |
f8eba3c6 TT |
3763 | void **slot; |
3764 | ||
14bc53a8 | 3765 | slot = htab_find_slot (m_symtab_table, symtab, INSERT); |
f8eba3c6 | 3766 | if (!*slot) |
4224873a | 3767 | { |
f8eba3c6 | 3768 | *slot = symtab; |
4717cec4 | 3769 | m_symtabs.push_back (symtab); |
4224873a | 3770 | } |
f8eba3c6 | 3771 | |
14bc53a8 | 3772 | return false; |
4224873a DC |
3773 | } |
3774 | ||
ffdbe864 YQ |
3775 | } // namespace |
3776 | ||
2a908241 | 3777 | /* Given a file name, return a list of all matching symtabs. If |
c2f4122d PA |
3778 | SEARCH_PSPACE is not NULL, the search is restricted to just that |
3779 | program space. */ | |
f8eba3c6 | 3780 | |
4717cec4 | 3781 | static std::vector<symtab *> |
c2f4122d PA |
3782 | collect_symtabs_from_filename (const char *file, |
3783 | struct program_space *search_pspace) | |
f8eba3c6 | 3784 | { |
14bc53a8 | 3785 | symtab_collector collector; |
f8eba3c6 TT |
3786 | |
3787 | /* Find that file's data. */ | |
c2f4122d PA |
3788 | if (search_pspace == NULL) |
3789 | { | |
14bc53a8 PA |
3790 | struct program_space *pspace; |
3791 | ||
c2f4122d PA |
3792 | ALL_PSPACES (pspace) |
3793 | { | |
3794 | if (pspace->executing_startup) | |
3795 | continue; | |
f8eba3c6 | 3796 | |
c2f4122d | 3797 | set_current_program_space (pspace); |
14bc53a8 | 3798 | iterate_over_symtabs (file, collector); |
c2f4122d PA |
3799 | } |
3800 | } | |
3801 | else | |
3802 | { | |
3803 | set_current_program_space (search_pspace); | |
14bc53a8 | 3804 | iterate_over_symtabs (file, collector); |
c2f4122d | 3805 | } |
f3c39e76 | 3806 | |
14bc53a8 | 3807 | return collector.release_symtabs (); |
f8eba3c6 TT |
3808 | } |
3809 | ||
c2f4122d PA |
3810 | /* Return all the symtabs associated to the FILENAME. If SEARCH_PSPACE is |
3811 | not NULL, the search is restricted to just that program space. */ | |
f8eba3c6 | 3812 | |
4717cec4 | 3813 | static std::vector<symtab *> |
c2f4122d PA |
3814 | symtabs_from_filename (const char *filename, |
3815 | struct program_space *search_pspace) | |
40e084e1 | 3816 | { |
4717cec4 | 3817 | std::vector<symtab *> result |
2a908241 | 3818 | = collect_symtabs_from_filename (filename, search_pspace); |
f8eba3c6 | 3819 | |
4717cec4 | 3820 | if (result.empty ()) |
f8eba3c6 | 3821 | { |
40e084e1 KS |
3822 | if (!have_full_symbols () && !have_partial_symbols ()) |
3823 | throw_error (NOT_FOUND_ERROR, | |
3824 | _("No symbol table is loaded. " | |
3825 | "Use the \"file\" command.")); | |
00e52e53 | 3826 | source_file_not_found_error (filename); |
f8eba3c6 TT |
3827 | } |
3828 | ||
40e084e1 | 3829 | return result; |
84fba31b | 3830 | } |
f3c39e76 | 3831 | |
fcaad03c KS |
3832 | /* See symtab.h. */ |
3833 | ||
3834 | void | |
3835 | symbol_searcher::find_all_symbols (const std::string &name, | |
3836 | const struct language_defn *language, | |
3837 | enum search_domain search_domain, | |
3838 | std::vector<symtab *> *search_symtabs, | |
3839 | struct program_space *search_pspace) | |
3840 | { | |
3841 | symbol_searcher_collect_info info; | |
3842 | struct linespec_state state; | |
3843 | ||
3844 | memset (&state, 0, sizeof (state)); | |
3845 | state.language = language; | |
3846 | info.state = &state; | |
3847 | ||
3848 | info.result.symbols = &m_symbols; | |
3849 | info.result.minimal_symbols = &m_minimal_symbols; | |
3850 | std::vector<symtab *> all_symtabs; | |
3851 | if (search_symtabs == nullptr) | |
3852 | { | |
3853 | all_symtabs.push_back (nullptr); | |
3854 | search_symtabs = &all_symtabs; | |
3855 | } | |
3856 | info.file_symtabs = search_symtabs; | |
3857 | ||
3858 | add_matching_symbols_to_info (name.c_str (), symbol_name_match_type::WILD, | |
3859 | search_domain, &info, search_pspace); | |
3860 | } | |
3861 | ||
40e084e1 KS |
3862 | /* Look up a function symbol named NAME in symtabs FILE_SYMTABS. Matching |
3863 | debug symbols are returned in SYMBOLS. Matching minimal symbols are | |
3864 | returned in MINSYMS. */ | |
14e91ac5 | 3865 | |
40e084e1 KS |
3866 | static void |
3867 | find_function_symbols (struct linespec_state *state, | |
2a908241 | 3868 | std::vector<symtab *> *file_symtabs, const char *name, |
a20714ff | 3869 | symbol_name_match_type name_match_type, |
7e41c8db | 3870 | std::vector<block_symbol> *symbols, |
c2a031c5 | 3871 | std::vector<bound_minimal_symbol> *minsyms) |
14e91ac5 | 3872 | { |
40e084e1 | 3873 | struct collect_info info; |
9b2f8581 | 3874 | std::vector<const char *> symbol_names; |
14e91ac5 | 3875 | |
40e084e1 | 3876 | info.state = state; |
7243d011 | 3877 | info.result.symbols = symbols; |
c2a031c5 | 3878 | info.result.minimal_symbols = minsyms; |
40e084e1 | 3879 | info.file_symtabs = file_symtabs; |
e0881a8e | 3880 | |
40e084e1 | 3881 | /* Try NAME as an Objective-C selector. */ |
d7561cbb | 3882 | find_imps (name, &symbol_names); |
9b2f8581 | 3883 | if (!symbol_names.empty ()) |
c2f4122d | 3884 | add_all_symbol_names_from_pspace (&info, state->search_pspace, |
56d87ef7 | 3885 | symbol_names, FUNCTIONS_DOMAIN); |
40e084e1 | 3886 | else |
a20714ff | 3887 | add_matching_symbols_to_info (name, name_match_type, FUNCTIONS_DOMAIN, |
b5ec771e | 3888 | &info, state->search_pspace); |
40e084e1 KS |
3889 | } |
3890 | ||
3891 | /* Find all symbols named NAME in FILE_SYMTABS, returning debug symbols | |
3892 | in SYMBOLS and minimal symbols in MINSYMS. */ | |
14e91ac5 | 3893 | |
b1ae631a | 3894 | static void |
40e084e1 | 3895 | find_linespec_symbols (struct linespec_state *state, |
2a908241 | 3896 | std::vector<symtab *> *file_symtabs, |
b5ec771e | 3897 | const char *lookup_name, |
a20714ff | 3898 | symbol_name_match_type name_match_type, |
7e41c8db | 3899 | std::vector <block_symbol> *symbols, |
c2a031c5 | 3900 | std::vector<bound_minimal_symbol> *minsyms) |
40e084e1 | 3901 | { |
2f408ecb PA |
3902 | std::string canon = cp_canonicalize_string_no_typedefs (lookup_name); |
3903 | if (!canon.empty ()) | |
3904 | lookup_name = canon.c_str (); | |
3905 | ||
cc81e1c6 DE |
3906 | /* It's important to not call expand_symtabs_matching unnecessarily |
3907 | as it can really slow things down (by unnecessarily expanding | |
3908 | potentially 1000s of symtabs, which when debugging some apps can | |
3909 | cost 100s of seconds). Avoid this to some extent by *first* calling | |
3910 | find_function_symbols, and only if that doesn't find anything | |
3911 | *then* call find_method. This handles two important cases: | |
3912 | 1) break (anonymous namespace)::foo | |
3913 | 2) break class::method where method is in class (and not a baseclass) */ | |
14e91ac5 | 3914 | |
cc81e1c6 | 3915 | find_function_symbols (state, file_symtabs, lookup_name, |
7243d011 | 3916 | name_match_type, symbols, minsyms); |
14e91ac5 | 3917 | |
cc81e1c6 DE |
3918 | /* If we were unable to locate a symbol of the same name, try dividing |
3919 | the name into class and method names and searching the class and its | |
3920 | baseclasses. */ | |
c2a031c5 | 3921 | if (symbols->empty () && minsyms->empty ()) |
40e084e1 | 3922 | { |
2f408ecb | 3923 | std::string klass, method; |
cc81e1c6 | 3924 | const char *last, *p, *scope_op; |
14e91ac5 | 3925 | |
cc81e1c6 DE |
3926 | /* See if we can find a scope operator and break this symbol |
3927 | name into namespaces${SCOPE_OPERATOR}class_name and method_name. */ | |
3928 | scope_op = "::"; | |
3929 | p = find_toplevel_string (lookup_name, scope_op); | |
14e91ac5 | 3930 | |
cc81e1c6 DE |
3931 | last = NULL; |
3932 | while (p != NULL) | |
f8eba3c6 | 3933 | { |
cc81e1c6 DE |
3934 | last = p; |
3935 | p = find_toplevel_string (p + strlen (scope_op), scope_op); | |
f8eba3c6 | 3936 | } |
14e91ac5 | 3937 | |
cc81e1c6 DE |
3938 | /* If no scope operator was found, there is nothing more we can do; |
3939 | we already attempted to lookup the entire name as a symbol | |
3940 | and failed. */ | |
3941 | if (last == NULL) | |
2f408ecb | 3942 | return; |
cc81e1c6 DE |
3943 | |
3944 | /* LOOKUP_NAME points to the class name. | |
3945 | LAST points to the method name. */ | |
2f408ecb | 3946 | klass = std::string (lookup_name, last - lookup_name); |
cc81e1c6 DE |
3947 | |
3948 | /* Skip past the scope operator. */ | |
3949 | last += strlen (scope_op); | |
2f408ecb | 3950 | method = last; |
cc81e1c6 DE |
3951 | |
3952 | /* Find a list of classes named KLASS. */ | |
7e41c8db | 3953 | std::vector<block_symbol> classes |
4dedf84d KS |
3954 | = lookup_prefix_sym (state, file_symtabs, klass.c_str ()); |
3955 | if (!classes.empty ()) | |
cc81e1c6 DE |
3956 | { |
3957 | /* Now locate a list of suitable methods named METHOD. */ | |
a70b8144 | 3958 | try |
cc81e1c6 | 3959 | { |
2f408ecb PA |
3960 | find_method (state, file_symtabs, |
3961 | klass.c_str (), method.c_str (), | |
4dedf84d | 3962 | &classes, symbols, minsyms); |
cc81e1c6 DE |
3963 | } |
3964 | ||
3965 | /* If successful, we're done. If NOT_FOUND_ERROR | |
3966 | was not thrown, rethrow the exception that we did get. */ | |
230d2906 | 3967 | catch (const gdb_exception_error &except) |
7556d4a4 PA |
3968 | { |
3969 | if (except.error != NOT_FOUND_ERROR) | |
eedc3f4f | 3970 | throw; |
7556d4a4 | 3971 | } |
cc81e1c6 | 3972 | } |
2f408ecb | 3973 | } |
14e91ac5 DC |
3974 | } |
3975 | ||
a2459270 PA |
3976 | /* Helper for find_label_symbols. Find all labels that match name |
3977 | NAME in BLOCK. Return all labels that match in FUNCTION_SYMBOLS. | |
3978 | Return the actual function symbol in which the label was found in | |
3979 | LABEL_FUNC_RET. If COMPLETION_MODE is true, then NAME is | |
3980 | interpreted as a label name prefix. Otherwise, only a label named | |
3981 | exactly NAME match. */ | |
3982 | ||
3983 | static void | |
3984 | find_label_symbols_in_block (const struct block *block, | |
3985 | const char *name, struct symbol *fn_sym, | |
3986 | bool completion_mode, | |
7e41c8db KS |
3987 | std::vector<block_symbol> *result, |
3988 | std::vector<block_symbol> *label_funcs_ret) | |
a2459270 PA |
3989 | { |
3990 | if (completion_mode) | |
3991 | { | |
3992 | struct block_iterator iter; | |
3993 | struct symbol *sym; | |
3994 | size_t name_len = strlen (name); | |
3995 | ||
3996 | int (*cmp) (const char *, const char *, size_t); | |
3997 | cmp = case_sensitivity == case_sensitive_on ? strncmp : strncasecmp; | |
3998 | ||
3999 | ALL_BLOCK_SYMBOLS (block, iter, sym) | |
4000 | { | |
c1b5c1eb | 4001 | if (symbol_matches_domain (sym->language (), |
a2459270 | 4002 | SYMBOL_DOMAIN (sym), LABEL_DOMAIN) |
987012b8 | 4003 | && cmp (sym->search_name (), name, name_len) == 0) |
a2459270 | 4004 | { |
7e41c8db KS |
4005 | result->push_back ({sym, block}); |
4006 | label_funcs_ret->push_back ({fn_sym, block}); | |
a2459270 PA |
4007 | } |
4008 | } | |
4009 | } | |
4010 | else | |
4011 | { | |
7e41c8db KS |
4012 | struct block_symbol label_sym |
4013 | = lookup_symbol (name, block, LABEL_DOMAIN, 0); | |
a2459270 | 4014 | |
7e41c8db | 4015 | if (label_sym.symbol != NULL) |
a2459270 | 4016 | { |
7e41c8db KS |
4017 | result->push_back (label_sym); |
4018 | label_funcs_ret->push_back ({fn_sym, block}); | |
a2459270 PA |
4019 | } |
4020 | } | |
4021 | } | |
4022 | ||
3553eadc KS |
4023 | /* Return all labels that match name NAME in FUNCTION_SYMBOLS or NULL |
4024 | if no matches were found. | |
4025 | ||
4026 | Return the actual function symbol in which the label was found in | |
a2459270 PA |
4027 | LABEL_FUNC_RET. If COMPLETION_MODE is true, then NAME is |
4028 | interpreted as a label name prefix. Otherwise, only labels named | |
4029 | exactly NAME match. */ | |
0f5238ed | 4030 | |
7e41c8db KS |
4031 | |
4032 | static std::vector<block_symbol> * | |
40e084e1 | 4033 | find_label_symbols (struct linespec_state *self, |
7e41c8db KS |
4034 | std::vector<block_symbol> *function_symbols, |
4035 | std::vector<block_symbol> *label_funcs_ret, | |
4036 | const char *name, | |
a2459270 | 4037 | bool completion_mode) |
0f5238ed | 4038 | { |
3977b71f | 4039 | const struct block *block; |
40e084e1 | 4040 | struct symbol *fn_sym; |
7e41c8db | 4041 | std::vector<block_symbol> result; |
9ef07c8c | 4042 | |
f8eba3c6 | 4043 | if (function_symbols == NULL) |
9ef07c8c | 4044 | { |
f8eba3c6 | 4045 | set_current_program_space (self->program_space); |
4eeaa230 | 4046 | block = get_current_search_block (); |
f8eba3c6 | 4047 | |
9ef07c8c TT |
4048 | for (; |
4049 | block && !BLOCK_FUNCTION (block); | |
4050 | block = BLOCK_SUPERBLOCK (block)) | |
4051 | ; | |
4052 | if (!block) | |
40e084e1 | 4053 | return NULL; |
f8eba3c6 TT |
4054 | fn_sym = BLOCK_FUNCTION (block); |
4055 | ||
a2459270 PA |
4056 | find_label_symbols_in_block (block, name, fn_sym, completion_mode, |
4057 | &result, label_funcs_ret); | |
40e084e1 KS |
4058 | } |
4059 | else | |
4060 | { | |
7243d011 | 4061 | for (const auto &elt : *function_symbols) |
f8eba3c6 | 4062 | { |
7e41c8db KS |
4063 | fn_sym = elt.symbol; |
4064 | set_current_program_space (SYMTAB_PSPACE (symbol_symtab (fn_sym))); | |
4065 | block = SYMBOL_BLOCK_VALUE (fn_sym); | |
40e084e1 | 4066 | |
7e41c8db | 4067 | find_label_symbols_in_block (block, name, fn_sym, completion_mode, |
a2459270 | 4068 | &result, label_funcs_ret); |
f8eba3c6 | 4069 | } |
40e084e1 | 4070 | } |
f8eba3c6 | 4071 | |
3553eadc | 4072 | if (!result.empty ()) |
7e41c8db | 4073 | return new std::vector<block_symbol> (std::move (result)); |
3553eadc | 4074 | return nullptr; |
40e084e1 | 4075 | } |
f8eba3c6 | 4076 | |
40e084e1 KS |
4077 | \f |
4078 | ||
4079 | /* A helper for create_sals_line_offset that handles the 'list_mode' case. */ | |
4080 | ||
6c5b2ebe | 4081 | static std::vector<symtab_and_line> |
40e084e1 KS |
4082 | decode_digits_list_mode (struct linespec_state *self, |
4083 | linespec_p ls, | |
40e084e1 KS |
4084 | struct symtab_and_line val) |
4085 | { | |
40e084e1 KS |
4086 | gdb_assert (self->list_mode); |
4087 | ||
6c5b2ebe PA |
4088 | std::vector<symtab_and_line> values; |
4089 | ||
2a908241 | 4090 | for (const auto &elt : *ls->file_symtabs) |
40e084e1 KS |
4091 | { |
4092 | /* The logic above should ensure this. */ | |
4093 | gdb_assert (elt != NULL); | |
4094 | ||
4095 | set_current_program_space (SYMTAB_PSPACE (elt)); | |
4096 | ||
4097 | /* Simplistic search just for the list command. */ | |
4098 | val.symtab = find_line_symtab (elt, val.line, NULL, NULL); | |
4099 | if (val.symtab == NULL) | |
4100 | val.symtab = elt; | |
4101 | val.pspace = SYMTAB_PSPACE (elt); | |
4102 | val.pc = 0; | |
5b0e2db4 | 4103 | val.explicit_line = true; |
40e084e1 | 4104 | |
6c5b2ebe | 4105 | add_sal_to_sals (self, &values, &val, NULL, 0); |
f8eba3c6 | 4106 | } |
6c5b2ebe PA |
4107 | |
4108 | return values; | |
40e084e1 | 4109 | } |
f8eba3c6 | 4110 | |
791b7405 AB |
4111 | /* A helper for create_sals_line_offset that iterates over the symtabs |
4112 | associated with LS and returns a vector of corresponding symtab_and_line | |
4113 | structures. */ | |
40e084e1 | 4114 | |
6c5b2ebe | 4115 | static std::vector<symtab_and_line> |
40e084e1 KS |
4116 | decode_digits_ordinary (struct linespec_state *self, |
4117 | linespec_p ls, | |
4118 | int line, | |
40e084e1 KS |
4119 | struct linetable_entry **best_entry) |
4120 | { | |
6c5b2ebe | 4121 | std::vector<symtab_and_line> sals; |
2a908241 | 4122 | for (const auto &elt : *ls->file_symtabs) |
f8eba3c6 | 4123 | { |
67d89901 | 4124 | std::vector<CORE_ADDR> pcs; |
40e084e1 KS |
4125 | |
4126 | /* The logic above should ensure this. */ | |
4127 | gdb_assert (elt != NULL); | |
f8eba3c6 | 4128 | |
40e084e1 | 4129 | set_current_program_space (SYMTAB_PSPACE (elt)); |
f8eba3c6 | 4130 | |
40e084e1 | 4131 | pcs = find_pcs_for_symtab_line (elt, line, best_entry); |
67d89901 | 4132 | for (CORE_ADDR pc : pcs) |
f8eba3c6 | 4133 | { |
51abb421 | 4134 | symtab_and_line sal; |
40e084e1 KS |
4135 | sal.pspace = SYMTAB_PSPACE (elt); |
4136 | sal.symtab = elt; | |
4137 | sal.line = line; | |
5b0e2db4 | 4138 | sal.explicit_line = true; |
40e084e1 | 4139 | sal.pc = pc; |
6c5b2ebe | 4140 | sals.push_back (std::move (sal)); |
f8eba3c6 TT |
4141 | } |
4142 | } | |
6c5b2ebe PA |
4143 | |
4144 | return sals; | |
40e084e1 KS |
4145 | } |
4146 | ||
4147 | \f | |
4148 | ||
4149 | /* Return the line offset represented by VARIABLE. */ | |
4150 | ||
4151 | static struct line_offset | |
4152 | linespec_parse_variable (struct linespec_state *self, const char *variable) | |
4153 | { | |
4154 | int index = 0; | |
4155 | const char *p; | |
4156 | struct line_offset offset = {0, LINE_OFFSET_NONE}; | |
f8eba3c6 | 4157 | |
40e084e1 KS |
4158 | p = (variable[1] == '$') ? variable + 2 : variable + 1; |
4159 | if (*p == '$') | |
4160 | ++p; | |
4161 | while (*p >= '0' && *p <= '9') | |
4162 | ++p; | |
4163 | if (!*p) /* Reached end of token without hitting non-digit. */ | |
f8eba3c6 | 4164 | { |
40e084e1 KS |
4165 | /* We have a value history reference. */ |
4166 | struct value *val_history; | |
f8eba3c6 | 4167 | |
40e084e1 KS |
4168 | sscanf ((variable[1] == '$') ? variable + 2 : variable + 1, "%d", &index); |
4169 | val_history | |
4170 | = access_value_history ((variable[1] == '$') ? -index : index); | |
4171 | if (TYPE_CODE (value_type (val_history)) != TYPE_CODE_INT) | |
4172 | error (_("History values used in line " | |
4173 | "specs must have integer values.")); | |
4174 | offset.offset = value_as_long (val_history); | |
4175 | } | |
4176 | else | |
4177 | { | |
4178 | /* Not all digits -- may be user variable/function or a | |
4179 | convenience variable. */ | |
4180 | LONGEST valx; | |
4181 | struct internalvar *ivar; | |
4182 | ||
4183 | /* Try it as a convenience variable. If it is not a convenience | |
4184 | variable, return and allow normal symbol lookup to occur. */ | |
4185 | ivar = lookup_only_internalvar (variable + 1); | |
4186 | if (ivar == NULL) | |
4187 | /* No internal variable with that name. Mark the offset | |
4188 | as unknown to allow the name to be looked up as a symbol. */ | |
4189 | offset.sign = LINE_OFFSET_UNKNOWN; | |
4190 | else | |
4191 | { | |
4192 | /* We found a valid variable name. If it is not an integer, | |
4193 | throw an error. */ | |
4194 | if (!get_internalvar_integer (ivar, &valx)) | |
4195 | error (_("Convenience variables used in line " | |
4196 | "specs must have integer values.")); | |
4197 | else | |
4198 | offset.offset = valx; | |
4199 | } | |
f8eba3c6 TT |
4200 | } |
4201 | ||
40e084e1 | 4202 | return offset; |
f8eba3c6 | 4203 | } |
40e084e1 | 4204 | \f |
f8eba3c6 | 4205 | |
40e084e1 | 4206 | /* We've found a minimal symbol MSYMBOL in OBJFILE to associate with our |
6e22494e JK |
4207 | linespec; return the SAL in RESULT. This function should return SALs |
4208 | matching those from find_function_start_sal, otherwise false | |
4209 | multiple-locations breakpoints could be placed. */ | |
f8eba3c6 TT |
4210 | |
4211 | static void | |
4212 | minsym_found (struct linespec_state *self, struct objfile *objfile, | |
4213 | struct minimal_symbol *msymbol, | |
6c5b2ebe | 4214 | std::vector<symtab_and_line> *result) |
f8eba3c6 | 4215 | { |
3467ec66 | 4216 | bool want_start_sal; |
f8eba3c6 | 4217 | |
4024cf2b | 4218 | CORE_ADDR func_addr; |
3467ec66 PA |
4219 | bool is_function = msymbol_is_function (objfile, msymbol, &func_addr); |
4220 | ||
4221 | if (is_function) | |
4222 | { | |
c9d95fa3 | 4223 | const char *msym_name = msymbol->linkage_name (); |
3467ec66 | 4224 | |
f50776aa PA |
4225 | if (MSYMBOL_TYPE (msymbol) == mst_text_gnu_ifunc |
4226 | || MSYMBOL_TYPE (msymbol) == mst_data_gnu_ifunc) | |
3467ec66 PA |
4227 | want_start_sal = gnu_ifunc_resolve_name (msym_name, &func_addr); |
4228 | else | |
4229 | want_start_sal = true; | |
4230 | } | |
4231 | ||
4232 | symtab_and_line sal; | |
4233 | ||
4234 | if (is_function && want_start_sal) | |
42ddae10 | 4235 | sal = find_function_start_sal (func_addr, NULL, self->funfirstline); |
e5f25bc5 PA |
4236 | else |
4237 | { | |
4238 | sal.objfile = objfile; | |
3467ec66 PA |
4239 | sal.msymbol = msymbol; |
4240 | /* Store func_addr, not the minsym's address in case this was an | |
4241 | ifunc that hasn't been resolved yet. */ | |
4242 | if (is_function) | |
4243 | sal.pc = func_addr; | |
4244 | else | |
4245 | sal.pc = MSYMBOL_VALUE_ADDRESS (objfile, msymbol); | |
e5f25bc5 | 4246 | sal.pspace = current_program_space; |
6e22494e | 4247 | } |
f8eba3c6 | 4248 | |
6b05c8bd YQ |
4249 | sal.section = MSYMBOL_OBJ_SECTION (objfile, msymbol); |
4250 | ||
07fea4b4 | 4251 | if (maybe_add_address (self->addr_set, objfile->pspace, sal.pc)) |
c9d95fa3 | 4252 | add_sal_to_sals (self, result, &sal, msymbol->natural_name (), 0); |
f8eba3c6 TT |
4253 | } |
4254 | ||
39b856a4 TT |
4255 | /* A helper function to classify a minimal_symbol_type according to |
4256 | priority. */ | |
4257 | ||
4258 | static int | |
4259 | classify_mtype (enum minimal_symbol_type t) | |
4260 | { | |
4261 | switch (t) | |
f8eba3c6 | 4262 | { |
39b856a4 TT |
4263 | case mst_file_text: |
4264 | case mst_file_data: | |
4265 | case mst_file_bss: | |
4266 | /* Intermediate priority. */ | |
4267 | return 1; | |
4268 | ||
4269 | case mst_solib_trampoline: | |
4270 | /* Lowest priority. */ | |
4271 | return 2; | |
4272 | ||
4273 | default: | |
4274 | /* Highest priority. */ | |
4275 | return 0; | |
f8eba3c6 | 4276 | } |
39b856a4 TT |
4277 | } |
4278 | ||
41c1efc6 | 4279 | /* Callback for std::sort that sorts symbols by priority. */ |
39b856a4 | 4280 | |
41c1efc6 TT |
4281 | static bool |
4282 | compare_msyms (const bound_minimal_symbol &a, const bound_minimal_symbol &b) | |
39b856a4 | 4283 | { |
41c1efc6 TT |
4284 | enum minimal_symbol_type ta = MSYMBOL_TYPE (a.minsym); |
4285 | enum minimal_symbol_type tb = MSYMBOL_TYPE (b.minsym); | |
39b856a4 | 4286 | |
41c1efc6 | 4287 | return classify_mtype (ta) < classify_mtype (tb); |
39b856a4 TT |
4288 | } |
4289 | ||
41c1efc6 TT |
4290 | /* Helper for search_minsyms_for_name that adds the symbol to the |
4291 | result. */ | |
39b856a4 TT |
4292 | |
4293 | static void | |
41c1efc6 TT |
4294 | add_minsym (struct minimal_symbol *minsym, struct objfile *objfile, |
4295 | struct symtab *symtab, int list_mode, | |
4296 | std::vector<struct bound_minimal_symbol> *msyms) | |
39b856a4 | 4297 | { |
41c1efc6 | 4298 | if (symtab != NULL) |
87186c6a | 4299 | { |
4024cf2b PA |
4300 | /* We're looking for a label for which we don't have debug |
4301 | info. */ | |
4302 | CORE_ADDR func_addr; | |
41c1efc6 | 4303 | if (msymbol_is_function (objfile, minsym, &func_addr)) |
4024cf2b PA |
4304 | { |
4305 | symtab_and_line sal = find_pc_sect_line (func_addr, NULL, 0); | |
87186c6a | 4306 | |
41c1efc6 | 4307 | if (symtab != sal.symtab) |
4024cf2b PA |
4308 | return; |
4309 | } | |
87186c6a MMN |
4310 | } |
4311 | ||
4024cf2b | 4312 | /* Exclude data symbols when looking for breakpoint locations. */ |
41c1efc6 | 4313 | if (!list_mode && !msymbol_is_function (objfile, minsym)) |
4024cf2b | 4314 | return; |
095bcf5e | 4315 | |
41c1efc6 TT |
4316 | struct bound_minimal_symbol mo = {minsym, objfile}; |
4317 | msyms->push_back (mo); | |
ca31ab1d | 4318 | return; |
f8eba3c6 TT |
4319 | } |
4320 | ||
87186c6a | 4321 | /* Search for minimal symbols called NAME. If SEARCH_PSPACE |
f8eba3c6 | 4322 | is not NULL, the search is restricted to just that program |
87186c6a MMN |
4323 | space. |
4324 | ||
4325 | If SYMTAB is NULL, search all objfiles, otherwise | |
4326 | restrict results to the given SYMTAB. */ | |
f8eba3c6 TT |
4327 | |
4328 | static void | |
b5ec771e PA |
4329 | search_minsyms_for_name (struct collect_info *info, |
4330 | const lookup_name_info &name, | |
87186c6a MMN |
4331 | struct program_space *search_pspace, |
4332 | struct symtab *symtab) | |
f8eba3c6 | 4333 | { |
41c1efc6 | 4334 | std::vector<struct bound_minimal_symbol> minsyms; |
f8eba3c6 | 4335 | |
87186c6a MMN |
4336 | if (symtab == NULL) |
4337 | { | |
4338 | struct program_space *pspace; | |
f8eba3c6 | 4339 | |
87186c6a MMN |
4340 | ALL_PSPACES (pspace) |
4341 | { | |
87186c6a MMN |
4342 | if (search_pspace != NULL && search_pspace != pspace) |
4343 | continue; | |
4344 | if (pspace->executing_startup) | |
4345 | continue; | |
39b856a4 | 4346 | |
87186c6a MMN |
4347 | set_current_program_space (pspace); |
4348 | ||
2030c079 | 4349 | for (objfile *objfile : current_program_space->objfiles ()) |
aed57c53 TT |
4350 | { |
4351 | iterate_over_minimal_symbols (objfile, name, | |
4352 | [&] (struct minimal_symbol *msym) | |
41c1efc6 TT |
4353 | { |
4354 | add_minsym (msym, objfile, nullptr, | |
4355 | info->state->list_mode, | |
4356 | &minsyms); | |
ca31ab1d | 4357 | return false; |
41c1efc6 | 4358 | }); |
aed57c53 | 4359 | } |
87186c6a MMN |
4360 | } |
4361 | } | |
4362 | else | |
f8eba3c6 | 4363 | { |
87186c6a MMN |
4364 | if (search_pspace == NULL || SYMTAB_PSPACE (symtab) == search_pspace) |
4365 | { | |
4366 | set_current_program_space (SYMTAB_PSPACE (symtab)); | |
41c1efc6 TT |
4367 | iterate_over_minimal_symbols |
4368 | (SYMTAB_OBJFILE (symtab), name, | |
4369 | [&] (struct minimal_symbol *msym) | |
4370 | { | |
4371 | add_minsym (msym, SYMTAB_OBJFILE (symtab), symtab, | |
4372 | info->state->list_mode, &minsyms); | |
ca31ab1d | 4373 | return false; |
41c1efc6 | 4374 | }); |
87186c6a | 4375 | } |
9ef07c8c | 4376 | } |
39b856a4 | 4377 | |
41c1efc6 TT |
4378 | if (!minsyms.empty ()) |
4379 | { | |
4380 | int classification; | |
39b856a4 | 4381 | |
41c1efc6 | 4382 | std::sort (minsyms.begin (), minsyms.end (), compare_msyms); |
39b856a4 | 4383 | |
41c1efc6 TT |
4384 | /* Now the minsyms are in classification order. So, we walk |
4385 | over them and process just the minsyms with the same | |
4386 | classification as the very first minsym in the list. */ | |
4387 | classification = classify_mtype (MSYMBOL_TYPE (minsyms[0].minsym)); | |
4388 | ||
52941706 | 4389 | for (const bound_minimal_symbol &item : minsyms) |
41c1efc6 TT |
4390 | { |
4391 | if (classify_mtype (MSYMBOL_TYPE (item.minsym)) != classification) | |
4392 | break; | |
4393 | ||
c2a031c5 | 4394 | info->result.minimal_symbols->push_back (item); |
41c1efc6 TT |
4395 | } |
4396 | } | |
f8eba3c6 TT |
4397 | } |
4398 | ||
4399 | /* A helper function to add all symbols matching NAME to INFO. If | |
4400 | PSPACE is not NULL, the search is restricted to just that program | |
4401 | space. */ | |
0f5238ed | 4402 | |
f8eba3c6 TT |
4403 | static void |
4404 | add_matching_symbols_to_info (const char *name, | |
b5ec771e | 4405 | symbol_name_match_type name_match_type, |
56d87ef7 | 4406 | enum search_domain search_domain, |
f8eba3c6 TT |
4407 | struct collect_info *info, |
4408 | struct program_space *pspace) | |
4409 | { | |
b5ec771e PA |
4410 | lookup_name_info lookup_name (name, name_match_type); |
4411 | ||
2a908241 | 4412 | for (const auto &elt : *info->file_symtabs) |
f8eba3c6 | 4413 | { |
2a908241 | 4414 | if (elt == nullptr) |
f8eba3c6 | 4415 | { |
b5ec771e | 4416 | iterate_over_all_matching_symtabs (info->state, lookup_name, |
56d87ef7 | 4417 | VAR_DOMAIN, search_domain, |
7e41c8db KS |
4418 | pspace, true, |
4419 | [&] (block_symbol *bsym) | |
4420 | { return info->add_symbol (bsym); }); | |
b5ec771e | 4421 | search_minsyms_for_name (info, lookup_name, pspace, NULL); |
f8eba3c6 TT |
4422 | } |
4423 | else if (pspace == NULL || pspace == SYMTAB_PSPACE (elt)) | |
4424 | { | |
7243d011 | 4425 | int prev_len = info->result.symbols->size (); |
87186c6a | 4426 | |
f8eba3c6 TT |
4427 | /* Program spaces that are executing startup should have |
4428 | been filtered out earlier. */ | |
4429 | gdb_assert (!SYMTAB_PSPACE (elt)->executing_startup); | |
4430 | set_current_program_space (SYMTAB_PSPACE (elt)); | |
b5ec771e | 4431 | iterate_over_file_blocks (elt, lookup_name, VAR_DOMAIN, |
7e41c8db KS |
4432 | [&] (block_symbol *bsym) |
4433 | { return info->add_symbol (bsym); }); | |
87186c6a MMN |
4434 | |
4435 | /* If no new symbols were found in this iteration and this symtab | |
4436 | is in assembler, we might actually be looking for a label for | |
4437 | which we don't have debug info. Check for a minimal symbol in | |
4438 | this case. */ | |
7243d011 | 4439 | if (prev_len == info->result.symbols->size () |
87186c6a | 4440 | && elt->language == language_asm) |
b5ec771e | 4441 | search_minsyms_for_name (info, lookup_name, pspace, elt); |
f8eba3c6 TT |
4442 | } |
4443 | } | |
0f5238ed TT |
4444 | } |
4445 | ||
14e91ac5 DC |
4446 | \f |
4447 | ||
413dad4d DC |
4448 | /* Now come some functions that are called from multiple places within |
4449 | decode_line_1. */ | |
4450 | ||
f8eba3c6 TT |
4451 | static int |
4452 | symbol_to_sal (struct symtab_and_line *result, | |
4453 | int funfirstline, struct symbol *sym) | |
413dad4d | 4454 | { |
413dad4d | 4455 | if (SYMBOL_CLASS (sym) == LOC_BLOCK) |
50641945 | 4456 | { |
f8eba3c6 TT |
4457 | *result = find_function_start_sal (sym, funfirstline); |
4458 | return 1; | |
50641945 | 4459 | } |
413dad4d DC |
4460 | else |
4461 | { | |
62853458 | 4462 | if (SYMBOL_CLASS (sym) == LOC_LABEL && SYMBOL_VALUE_ADDRESS (sym) != 0) |
413dad4d | 4463 | { |
51abb421 | 4464 | *result = {}; |
08be3fe3 | 4465 | result->symtab = symbol_symtab (sym); |
06871ae8 | 4466 | result->symbol = sym; |
f8eba3c6 TT |
4467 | result->line = SYMBOL_LINE (sym); |
4468 | result->pc = SYMBOL_VALUE_ADDRESS (sym); | |
08be3fe3 | 4469 | result->pspace = SYMTAB_PSPACE (result->symtab); |
f8eba3c6 TT |
4470 | result->explicit_pc = 1; |
4471 | return 1; | |
413dad4d | 4472 | } |
62853458 | 4473 | else if (funfirstline) |
dcf9f4ab | 4474 | { |
f8eba3c6 | 4475 | /* Nothing. */ |
dcf9f4ab | 4476 | } |
62853458 TT |
4477 | else if (SYMBOL_LINE (sym) != 0) |
4478 | { | |
4479 | /* We know its line number. */ | |
51abb421 | 4480 | *result = {}; |
08be3fe3 | 4481 | result->symtab = symbol_symtab (sym); |
06871ae8 | 4482 | result->symbol = sym; |
f8eba3c6 | 4483 | result->line = SYMBOL_LINE (sym); |
e5f25bc5 | 4484 | result->pc = SYMBOL_VALUE_ADDRESS (sym); |
08be3fe3 | 4485 | result->pspace = SYMTAB_PSPACE (result->symtab); |
f8eba3c6 | 4486 | return 1; |
62853458 | 4487 | } |
413dad4d | 4488 | } |
f8eba3c6 TT |
4489 | |
4490 | return 0; | |
413dad4d | 4491 | } |
50641945 | 4492 | |
16e802b9 | 4493 | linespec_result::~linespec_result () |
f8eba3c6 | 4494 | { |
6c5b2ebe PA |
4495 | for (linespec_sals &lsal : lsals) |
4496 | xfree (lsal.canonical); | |
7efd8fc2 | 4497 | } |
87f0e720 KS |
4498 | |
4499 | /* Return the quote characters permitted by the linespec parser. */ | |
4500 | ||
4501 | const char * | |
4502 | get_gdb_linespec_parser_quote_characters (void) | |
4503 | { | |
4504 | return linespec_quote_characters; | |
4505 | } |