Support rvalue reference type in parser
[deliverable/binutils-gdb.git] / gdb / cp-support.c
CommitLineData
de17c821 1/* Helper routines for C++ support in GDB.
61baf725 2 Copyright (C) 2002-2017 Free Software Foundation, Inc.
de17c821
DJ
3
4 Contributed by MontaVista Software.
5
6 This file is part of GDB.
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
a9762ec7 10 the Free Software Foundation; either version 3 of the License, or
de17c821
DJ
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
a9762ec7 19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
de17c821
DJ
20
21#include "defs.h"
22#include "cp-support.h"
de17c821 23#include "demangle.h"
9219021c 24#include "gdbcmd.h"
b6429628
DC
25#include "dictionary.h"
26#include "objfiles.h"
27#include "frame.h"
28#include "symtab.h"
29#include "block.h"
b2a7f303 30#include "complaints.h"
362ff856 31#include "gdbtypes.h"
12907978
KS
32#include "expression.h"
33#include "value.h"
c4aeac85 34#include "cp-abi.h"
22cee43f 35#include "namespace.h"
992c7d70 36#include <signal.h>
173981bc 37#include "gdb_setjmp.h"
f88e9fd3
DJ
38#include "safe-ctype.h"
39
fb4c6eba
DJ
40#define d_left(dc) (dc)->u.s_binary.left
41#define d_right(dc) (dc)->u.s_binary.right
b2a7f303 42
fb4c6eba 43/* Functions related to demangled name parsing. */
b2a7f303
DC
44
45static unsigned int cp_find_first_component_aux (const char *name,
46 int permissive);
47
48static void demangled_name_complaint (const char *name);
b6429628
DC
49
50/* Functions/variables related to overload resolution. */
51
7322dca9 52static int sym_return_val_size = -1;
b6429628
DC
53static int sym_return_val_index;
54static struct symbol **sym_return_val;
55
8d577d32
DC
56static void overload_list_add_symbol (struct symbol *sym,
57 const char *oload_name);
58
59static void make_symbol_overload_list_using (const char *func_name,
fe978cb0 60 const char *the_namespace);
8d577d32
DC
61
62static void make_symbol_overload_list_qualified (const char *func_name);
63
9219021c
DC
64/* The list of "maint cplus" commands. */
65
5c4e30ca 66struct cmd_list_element *maint_cplus_cmd_list = NULL;
9219021c
DC
67
68/* The actual commands. */
69
70static void maint_cplus_command (char *arg, int from_tty);
71static void first_component_command (char *arg, int from_tty);
72
3a93a0c2
KS
73/* A list of typedefs which should not be substituted by replace_typedefs. */
74static const char * const ignore_typedefs[] =
75 {
76 "std::istream", "std::iostream", "std::ostream", "std::string"
77 };
78
79static void
80 replace_typedefs (struct demangle_parse_info *info,
2621e0fd
TT
81 struct demangle_component *ret_comp,
82 canonicalization_ftype *finder,
83 void *data);
3a93a0c2
KS
84
85/* A convenience function to copy STRING into OBSTACK, returning a pointer
86 to the newly allocated string and saving the number of bytes saved in LEN.
87
88 It does not copy the terminating '\0' byte! */
89
90static char *
91copy_string_to_obstack (struct obstack *obstack, const char *string,
92 long *len)
93{
94 *len = strlen (string);
224c3ddb 95 return (char *) obstack_copy (obstack, string, *len);
3a93a0c2
KS
96}
97
f88e9fd3
DJ
98/* Return 1 if STRING is clearly already in canonical form. This
99 function is conservative; things which it does not recognize are
100 assumed to be non-canonical, and the parser will sort them out
101 afterwards. This speeds up the critical path for alphanumeric
102 identifiers. */
103
104static int
105cp_already_canonical (const char *string)
106{
107 /* Identifier start character [a-zA-Z_]. */
108 if (!ISIDST (string[0]))
109 return 0;
110
111 /* These are the only two identifiers which canonicalize to other
112 than themselves or an error: unsigned -> unsigned int and
113 signed -> int. */
114 if (string[0] == 'u' && strcmp (&string[1], "nsigned") == 0)
115 return 0;
116 else if (string[0] == 's' && strcmp (&string[1], "igned") == 0)
117 return 0;
118
119 /* Identifier character [a-zA-Z0-9_]. */
120 while (ISIDNUM (string[1]))
121 string++;
122
123 if (string[1] == '\0')
124 return 1;
125 else
126 return 0;
127}
9219021c 128
3a93a0c2
KS
129/* Inspect the given RET_COMP for its type. If it is a typedef,
130 replace the node with the typedef's tree.
131
132 Returns 1 if any typedef substitutions were made, 0 otherwise. */
133
134static int
135inspect_type (struct demangle_parse_info *info,
2621e0fd
TT
136 struct demangle_component *ret_comp,
137 canonicalization_ftype *finder,
138 void *data)
3a93a0c2
KS
139{
140 int i;
141 char *name;
142 struct symbol *sym;
3a93a0c2
KS
143
144 /* Copy the symbol's name from RET_COMP and look it up
145 in the symbol table. */
146 name = (char *) alloca (ret_comp->u.s_name.len + 1);
147 memcpy (name, ret_comp->u.s_name.s, ret_comp->u.s_name.len);
148 name[ret_comp->u.s_name.len] = '\0';
149
150 /* Ignore any typedefs that should not be substituted. */
151 for (i = 0; i < ARRAY_SIZE (ignore_typedefs); ++i)
152 {
153 if (strcmp (name, ignore_typedefs[i]) == 0)
154 return 0;
155 }
156
157 sym = NULL;
3a93a0c2 158
492d29ea
PA
159 TRY
160 {
d12307c1 161 sym = lookup_symbol (name, 0, VAR_DOMAIN, 0).symbol;
492d29ea
PA
162 }
163 CATCH (except, RETURN_MASK_ALL)
164 {
165 return 0;
166 }
167 END_CATCH
168
169 if (sym != NULL)
3a93a0c2
KS
170 {
171 struct type *otype = SYMBOL_TYPE (sym);
172
2621e0fd
TT
173 if (finder != NULL)
174 {
175 const char *new_name = (*finder) (otype, data);
176
177 if (new_name != NULL)
178 {
179 ret_comp->u.s_name.s = new_name;
180 ret_comp->u.s_name.len = strlen (new_name);
181 return 1;
182 }
183
184 return 0;
185 }
186
74921315
KS
187 /* If the type is a typedef or namespace alias, replace it. */
188 if (TYPE_CODE (otype) == TYPE_CODE_TYPEDEF
189 || TYPE_CODE (otype) == TYPE_CODE_NAMESPACE)
3a93a0c2
KS
190 {
191 long len;
192 int is_anon;
193 struct type *type;
c8b23b3f 194 std::unique_ptr<demangle_parse_info> i;
3a93a0c2
KS
195
196 /* Get the real type of the typedef. */
197 type = check_typedef (otype);
198
74921315
KS
199 /* If the symbol is a namespace and its type name is no different
200 than the name we looked up, this symbol is not a namespace
201 alias and does not need to be substituted. */
202 if (TYPE_CODE (otype) == TYPE_CODE_NAMESPACE
203 && strcmp (TYPE_NAME (type), name) == 0)
204 return 0;
205
3a93a0c2
KS
206 is_anon = (TYPE_TAG_NAME (type) == NULL
207 && (TYPE_CODE (type) == TYPE_CODE_ENUM
208 || TYPE_CODE (type) == TYPE_CODE_STRUCT
209 || TYPE_CODE (type) == TYPE_CODE_UNION));
210 if (is_anon)
211 {
212 struct type *last = otype;
213
214 /* Find the last typedef for the type. */
215 while (TYPE_TARGET_TYPE (last) != NULL
216 && (TYPE_CODE (TYPE_TARGET_TYPE (last))
217 == TYPE_CODE_TYPEDEF))
218 last = TYPE_TARGET_TYPE (last);
219
220 /* If there is only one typedef for this anonymous type,
221 do not substitute it. */
222 if (type == otype)
223 return 0;
224 else
225 /* Use the last typedef seen as the type for this
226 anonymous type. */
227 type = last;
228 }
229
d7e74731 230 string_file buf;
492d29ea 231 TRY
d7e74731
PA
232 {
233 type_print (type, "", &buf, -1);
234 }
3a93a0c2
KS
235 /* If type_print threw an exception, there is little point
236 in continuing, so just bow out gracefully. */
492d29ea 237 CATCH (except, RETURN_MASK_ERROR)
3a93a0c2 238 {
3a93a0c2
KS
239 return 0;
240 }
492d29ea 241 END_CATCH
3a93a0c2 242
d7e74731
PA
243 len = buf.size ();
244 name = (char *) obstack_copy0 (&info->obstack, buf.c_str (), len);
3a93a0c2
KS
245
246 /* Turn the result into a new tree. Note that this
247 tree will contain pointers into NAME, so NAME cannot
248 be free'd until all typedef conversion is done and
249 the final result is converted into a string. */
250 i = cp_demangled_name_to_comp (name, NULL);
251 if (i != NULL)
252 {
253 /* Merge the two trees. */
c8b23b3f 254 cp_merge_demangle_parse_infos (info, ret_comp, i.get ());
3a93a0c2
KS
255
256 /* Replace any newly introduced typedefs -- but not
257 if the type is anonymous (that would lead to infinite
258 looping). */
259 if (!is_anon)
2621e0fd 260 replace_typedefs (info, ret_comp, finder, data);
3a93a0c2
KS
261 }
262 else
263 {
264 /* This shouldn't happen unless the type printer has
265 output something that the name parser cannot grok.
266 Nonetheless, an ounce of prevention...
267
268 Canonicalize the name again, and store it in the
269 current node (RET_COMP). */
2f408ecb 270 std::string canon = cp_canonicalize_string_no_typedefs (name);
3a93a0c2 271
2f408ecb 272 if (!canon.empty ())
3a93a0c2 273 {
2f408ecb
PA
274 /* Copy the canonicalization into the obstack. */
275 name = copy_string_to_obstack (&info->obstack, canon.c_str (), &len);
3a93a0c2
KS
276 }
277
278 ret_comp->u.s_name.s = name;
279 ret_comp->u.s_name.len = len;
280 }
281
282 return 1;
283 }
284 }
285
286 return 0;
287}
288
289/* Replace any typedefs appearing in the qualified name
290 (DEMANGLE_COMPONENT_QUAL_NAME) represented in RET_COMP for the name parse
291 given in INFO. */
292
293static void
294replace_typedefs_qualified_name (struct demangle_parse_info *info,
2621e0fd
TT
295 struct demangle_component *ret_comp,
296 canonicalization_ftype *finder,
297 void *data)
3a93a0c2
KS
298{
299 long len;
300 char *name;
d7e74731 301 string_file buf;
3a93a0c2
KS
302 struct demangle_component *comp = ret_comp;
303
304 /* Walk each node of the qualified name, reconstructing the name of
305 this element. With every node, check for any typedef substitutions.
306 If a substitution has occurred, replace the qualified name node
307 with a DEMANGLE_COMPONENT_NAME node representing the new, typedef-
308 substituted name. */
309 while (comp->type == DEMANGLE_COMPONENT_QUAL_NAME)
310 {
311 if (d_left (comp)->type == DEMANGLE_COMPONENT_NAME)
312 {
fe978cb0 313 struct demangle_component newobj;
3a93a0c2 314
d7e74731
PA
315 buf.write (d_left (comp)->u.s_name.s, d_left (comp)->u.s_name.len);
316 len = buf.size ();
317 name = (char *) obstack_copy0 (&info->obstack, buf.c_str (), len);
fe978cb0
PA
318 newobj.type = DEMANGLE_COMPONENT_NAME;
319 newobj.u.s_name.s = name;
320 newobj.u.s_name.len = len;
321 if (inspect_type (info, &newobj, finder, data))
3a93a0c2
KS
322 {
323 char *n, *s;
324 long slen;
325
326 /* A typedef was substituted in NEW. Convert it to a
327 string and replace the top DEMANGLE_COMPONENT_QUAL_NAME
328 node. */
329
d7e74731 330 buf.clear ();
fe978cb0 331 n = cp_comp_to_string (&newobj, 100);
3a93a0c2
KS
332 if (n == NULL)
333 {
334 /* If something went astray, abort typedef substitutions. */
3a93a0c2
KS
335 return;
336 }
337
338 s = copy_string_to_obstack (&info->obstack, n, &slen);
339 xfree (n);
340
341 d_left (ret_comp)->type = DEMANGLE_COMPONENT_NAME;
342 d_left (ret_comp)->u.s_name.s = s;
343 d_left (ret_comp)->u.s_name.len = slen;
344 d_right (ret_comp) = d_right (comp);
345 comp = ret_comp;
346 continue;
347 }
348 }
349 else
350 {
351 /* The current node is not a name, so simply replace any
352 typedefs in it. Then print it to the stream to continue
353 checking for more typedefs in the tree. */
2621e0fd 354 replace_typedefs (info, d_left (comp), finder, data);
3a93a0c2
KS
355 name = cp_comp_to_string (d_left (comp), 100);
356 if (name == NULL)
357 {
358 /* If something went astray, abort typedef substitutions. */
3a93a0c2
KS
359 return;
360 }
d7e74731 361 buf.puts (name);
3a93a0c2
KS
362 xfree (name);
363 }
2621e0fd 364
d7e74731 365 buf.write ("::", 2);
3a93a0c2
KS
366 comp = d_right (comp);
367 }
368
369 /* If the next component is DEMANGLE_COMPONENT_NAME, save the qualified
370 name assembled above and append the name given by COMP. Then use this
371 reassembled name to check for a typedef. */
372
373 if (comp->type == DEMANGLE_COMPONENT_NAME)
374 {
d7e74731
PA
375 buf.write (comp->u.s_name.s, comp->u.s_name.len);
376 len = buf.size ();
377 name = (char *) obstack_copy0 (&info->obstack, buf.c_str (), len);
3a93a0c2
KS
378
379 /* Replace the top (DEMANGLE_COMPONENT_QUAL_NAME) node
380 with a DEMANGLE_COMPONENT_NAME node containing the whole
381 name. */
382 ret_comp->type = DEMANGLE_COMPONENT_NAME;
383 ret_comp->u.s_name.s = name;
384 ret_comp->u.s_name.len = len;
2621e0fd 385 inspect_type (info, ret_comp, finder, data);
3a93a0c2
KS
386 }
387 else
2621e0fd 388 replace_typedefs (info, comp, finder, data);
3a93a0c2
KS
389}
390
391
392/* A function to check const and volatile qualifiers for argument types.
393
394 "Parameter declarations that differ only in the presence
395 or absence of `const' and/or `volatile' are equivalent."
396 C++ Standard N3290, clause 13.1.3 #4. */
397
398static void
399check_cv_qualifiers (struct demangle_component *ret_comp)
400{
401 while (d_left (ret_comp) != NULL
402 && (d_left (ret_comp)->type == DEMANGLE_COMPONENT_CONST
403 || d_left (ret_comp)->type == DEMANGLE_COMPONENT_VOLATILE))
404 {
405 d_left (ret_comp) = d_left (d_left (ret_comp));
406 }
407}
408
409/* Walk the parse tree given by RET_COMP, replacing any typedefs with
410 their basic types. */
411
412static void
413replace_typedefs (struct demangle_parse_info *info,
2621e0fd
TT
414 struct demangle_component *ret_comp,
415 canonicalization_ftype *finder,
416 void *data)
3a93a0c2
KS
417{
418 if (ret_comp)
419 {
2621e0fd
TT
420 if (finder != NULL
421 && (ret_comp->type == DEMANGLE_COMPONENT_NAME
422 || ret_comp->type == DEMANGLE_COMPONENT_QUAL_NAME
423 || ret_comp->type == DEMANGLE_COMPONENT_TEMPLATE
424 || ret_comp->type == DEMANGLE_COMPONENT_BUILTIN_TYPE))
425 {
426 char *local_name = cp_comp_to_string (ret_comp, 10);
427
428 if (local_name != NULL)
429 {
492d29ea 430 struct symbol *sym = NULL;
2621e0fd
TT
431
432 sym = NULL;
492d29ea 433 TRY
2621e0fd 434 {
d12307c1 435 sym = lookup_symbol (local_name, 0, VAR_DOMAIN, 0).symbol;
2621e0fd 436 }
492d29ea
PA
437 CATCH (except, RETURN_MASK_ALL)
438 {
439 }
440 END_CATCH
441
2621e0fd
TT
442 xfree (local_name);
443
492d29ea 444 if (sym != NULL)
2621e0fd
TT
445 {
446 struct type *otype = SYMBOL_TYPE (sym);
447 const char *new_name = (*finder) (otype, data);
448
449 if (new_name != NULL)
450 {
451 ret_comp->type = DEMANGLE_COMPONENT_NAME;
452 ret_comp->u.s_name.s = new_name;
453 ret_comp->u.s_name.len = strlen (new_name);
454 return;
455 }
456 }
457 }
458 }
459
3a93a0c2
KS
460 switch (ret_comp->type)
461 {
462 case DEMANGLE_COMPONENT_ARGLIST:
463 check_cv_qualifiers (ret_comp);
464 /* Fall through */
465
466 case DEMANGLE_COMPONENT_FUNCTION_TYPE:
467 case DEMANGLE_COMPONENT_TEMPLATE:
468 case DEMANGLE_COMPONENT_TEMPLATE_ARGLIST:
469 case DEMANGLE_COMPONENT_TYPED_NAME:
2621e0fd
TT
470 replace_typedefs (info, d_left (ret_comp), finder, data);
471 replace_typedefs (info, d_right (ret_comp), finder, data);
3a93a0c2
KS
472 break;
473
474 case DEMANGLE_COMPONENT_NAME:
2621e0fd 475 inspect_type (info, ret_comp, finder, data);
3a93a0c2
KS
476 break;
477
478 case DEMANGLE_COMPONENT_QUAL_NAME:
2621e0fd 479 replace_typedefs_qualified_name (info, ret_comp, finder, data);
3a93a0c2
KS
480 break;
481
482 case DEMANGLE_COMPONENT_LOCAL_NAME:
483 case DEMANGLE_COMPONENT_CTOR:
484 case DEMANGLE_COMPONENT_ARRAY_TYPE:
485 case DEMANGLE_COMPONENT_PTRMEM_TYPE:
2621e0fd 486 replace_typedefs (info, d_right (ret_comp), finder, data);
3a93a0c2
KS
487 break;
488
489 case DEMANGLE_COMPONENT_CONST:
490 case DEMANGLE_COMPONENT_RESTRICT:
491 case DEMANGLE_COMPONENT_VOLATILE:
492 case DEMANGLE_COMPONENT_VOLATILE_THIS:
493 case DEMANGLE_COMPONENT_CONST_THIS:
494 case DEMANGLE_COMPONENT_RESTRICT_THIS:
495 case DEMANGLE_COMPONENT_POINTER:
496 case DEMANGLE_COMPONENT_REFERENCE:
2621e0fd 497 replace_typedefs (info, d_left (ret_comp), finder, data);
3a93a0c2
KS
498 break;
499
500 default:
501 break;
502 }
503 }
504}
505
2f408ecb
PA
506/* Parse STRING and convert it to canonical form, resolving any
507 typedefs. If parsing fails, or if STRING is already canonical,
508 return the empty string. Otherwise return the canonical form. If
509 FINDER is not NULL, then type components are passed to FINDER to be
510 looked up. DATA is passed verbatim to FINDER. */
3a93a0c2 511
2f408ecb 512std::string
2621e0fd
TT
513cp_canonicalize_string_full (const char *string,
514 canonicalization_ftype *finder,
515 void *data)
3a93a0c2 516{
2f408ecb 517 std::string ret;
3a93a0c2 518 unsigned int estimated_len;
c8b23b3f 519 std::unique_ptr<demangle_parse_info> info;
3a93a0c2 520
3a93a0c2
KS
521 estimated_len = strlen (string) * 2;
522 info = cp_demangled_name_to_comp (string, NULL);
523 if (info != NULL)
524 {
525 /* Replace all the typedefs in the tree. */
c8b23b3f 526 replace_typedefs (info.get (), info->tree, finder, data);
3a93a0c2
KS
527
528 /* Convert the tree back into a string. */
529 ret = cp_comp_to_string (info->tree, estimated_len);
2f408ecb 530 gdb_assert (!ret.empty ());
3a93a0c2 531
3a93a0c2
KS
532 /* Finally, compare the original string with the computed
533 name, returning NULL if they are the same. */
2f408ecb
PA
534 if (ret == string)
535 return std::string ();
3a93a0c2
KS
536 }
537
538 return ret;
539}
540
2621e0fd
TT
541/* Like cp_canonicalize_string_full, but always passes NULL for
542 FINDER. */
543
2f408ecb 544std::string
2621e0fd
TT
545cp_canonicalize_string_no_typedefs (const char *string)
546{
547 return cp_canonicalize_string_full (string, NULL, NULL);
548}
549
f88e9fd3 550/* Parse STRING and convert it to canonical form. If parsing fails,
2f408ecb
PA
551 or if STRING is already canonical, return the empty string.
552 Otherwise return the canonical form. */
9219021c 553
2f408ecb 554std::string
fb4c6eba
DJ
555cp_canonicalize_string (const char *string)
556{
c8b23b3f 557 std::unique_ptr<demangle_parse_info> info;
f88e9fd3 558 unsigned int estimated_len;
9219021c 559
f88e9fd3 560 if (cp_already_canonical (string))
2f408ecb 561 return std::string ();
9219021c 562
3a93a0c2
KS
563 info = cp_demangled_name_to_comp (string, NULL);
564 if (info == NULL)
2f408ecb 565 return std::string ();
9219021c 566
f88e9fd3 567 estimated_len = strlen (string) * 2;
2f408ecb 568 std::string ret = cp_comp_to_string (info->tree, estimated_len);
9219021c 569
2f408ecb 570 if (ret.empty ())
9934703b
JK
571 {
572 warning (_("internal error: string \"%s\" failed to be canonicalized"),
573 string);
2f408ecb 574 return std::string ();
9934703b
JK
575 }
576
2f408ecb
PA
577 if (ret == string)
578 return std::string ();
de17c821 579
fb4c6eba
DJ
580 return ret;
581}
de17c821 582
aff410f1
MS
583/* Convert a mangled name to a demangle_component tree. *MEMORY is
584 set to the block of used memory that should be freed when finished
585 with the tree. DEMANGLED_P is set to the char * that should be
586 freed when finished with the tree, or NULL if none was needed.
587 OPTIONS will be passed to the demangler. */
de17c821 588
c8b23b3f 589static std::unique_ptr<demangle_parse_info>
fb4c6eba
DJ
590mangled_name_to_comp (const char *mangled_name, int options,
591 void **memory, char **demangled_p)
de17c821 592{
fb4c6eba 593 char *demangled_name;
de17c821 594
fb4c6eba
DJ
595 /* If it looks like a v3 mangled name, then try to go directly
596 to trees. */
597 if (mangled_name[0] == '_' && mangled_name[1] == 'Z')
de17c821 598 {
3a93a0c2
KS
599 struct demangle_component *ret;
600
aff410f1
MS
601 ret = cplus_demangle_v3_components (mangled_name,
602 options, memory);
fb4c6eba
DJ
603 if (ret)
604 {
c8b23b3f 605 std::unique_ptr<demangle_parse_info> info (new demangle_parse_info);
3a93a0c2 606 info->tree = ret;
fb4c6eba 607 *demangled_p = NULL;
3a93a0c2 608 return info;
fb4c6eba 609 }
de17c821
DJ
610 }
611
aff410f1
MS
612 /* If it doesn't, or if that failed, then try to demangle the
613 name. */
8de20a37 614 demangled_name = gdb_demangle (mangled_name, options);
fb4c6eba
DJ
615 if (demangled_name == NULL)
616 return NULL;
617
aff410f1
MS
618 /* If we could demangle the name, parse it to build the component
619 tree. */
c8b23b3f
TT
620 std::unique_ptr<demangle_parse_info> info
621 = cp_demangled_name_to_comp (demangled_name, NULL);
de17c821 622
3a93a0c2 623 if (info == NULL)
fb4c6eba 624 {
6c761d9c 625 xfree (demangled_name);
fb4c6eba
DJ
626 return NULL;
627 }
de17c821 628
fb4c6eba 629 *demangled_p = demangled_name;
3a93a0c2 630 return info;
de17c821
DJ
631}
632
633/* Return the name of the class containing method PHYSNAME. */
634
635char *
31c27f77 636cp_class_name_from_physname (const char *physname)
de17c821 637{
de237128 638 void *storage = NULL;
fb4c6eba 639 char *demangled_name = NULL, *ret;
5e5100cb 640 struct demangle_component *ret_comp, *prev_comp, *cur_comp;
c8b23b3f 641 std::unique_ptr<demangle_parse_info> info;
fb4c6eba
DJ
642 int done;
643
3a93a0c2
KS
644 info = mangled_name_to_comp (physname, DMGL_ANSI,
645 &storage, &demangled_name);
646 if (info == NULL)
de17c821
DJ
647 return NULL;
648
fb4c6eba 649 done = 0;
3a93a0c2 650 ret_comp = info->tree;
5e5100cb 651
aff410f1
MS
652 /* First strip off any qualifiers, if we have a function or
653 method. */
fb4c6eba
DJ
654 while (!done)
655 switch (ret_comp->type)
656 {
fb4c6eba
DJ
657 case DEMANGLE_COMPONENT_CONST:
658 case DEMANGLE_COMPONENT_RESTRICT:
659 case DEMANGLE_COMPONENT_VOLATILE:
660 case DEMANGLE_COMPONENT_CONST_THIS:
661 case DEMANGLE_COMPONENT_RESTRICT_THIS:
662 case DEMANGLE_COMPONENT_VOLATILE_THIS:
663 case DEMANGLE_COMPONENT_VENDOR_TYPE_QUAL:
fb4c6eba
DJ
664 ret_comp = d_left (ret_comp);
665 break;
5e5100cb
DJ
666 default:
667 done = 1;
668 break;
669 }
670
671 /* If what we have now is a function, discard the argument list. */
672 if (ret_comp->type == DEMANGLE_COMPONENT_TYPED_NAME)
673 ret_comp = d_left (ret_comp);
674
675 /* If what we have now is a template, strip off the template
676 arguments. The left subtree may be a qualified name. */
677 if (ret_comp->type == DEMANGLE_COMPONENT_TEMPLATE)
678 ret_comp = d_left (ret_comp);
679
aff410f1
MS
680 /* What we have now should be a name, possibly qualified.
681 Additional qualifiers could live in the left subtree or the right
682 subtree. Find the last piece. */
5e5100cb
DJ
683 done = 0;
684 prev_comp = NULL;
685 cur_comp = ret_comp;
686 while (!done)
687 switch (cur_comp->type)
688 {
689 case DEMANGLE_COMPONENT_QUAL_NAME:
690 case DEMANGLE_COMPONENT_LOCAL_NAME:
691 prev_comp = cur_comp;
692 cur_comp = d_right (cur_comp);
693 break;
fb4c6eba 694 case DEMANGLE_COMPONENT_TEMPLATE:
5e5100cb 695 case DEMANGLE_COMPONENT_NAME:
fb4c6eba
DJ
696 case DEMANGLE_COMPONENT_CTOR:
697 case DEMANGLE_COMPONENT_DTOR:
698 case DEMANGLE_COMPONENT_OPERATOR:
699 case DEMANGLE_COMPONENT_EXTENDED_OPERATOR:
700 done = 1;
701 break;
702 default:
703 done = 1;
5e5100cb 704 cur_comp = NULL;
fb4c6eba
DJ
705 break;
706 }
707
708 ret = NULL;
5e5100cb 709 if (cur_comp != NULL && prev_comp != NULL)
de17c821 710 {
5e5100cb 711 /* We want to discard the rightmost child of PREV_COMP. */
fb4c6eba 712 *prev_comp = *d_left (prev_comp);
aff410f1
MS
713 /* The ten is completely arbitrary; we don't have a good
714 estimate. */
5e5100cb 715 ret = cp_comp_to_string (ret_comp, 10);
de17c821
DJ
716 }
717
fb4c6eba 718 xfree (storage);
3a93a0c2 719 xfree (demangled_name);
de17c821
DJ
720 return ret;
721}
722
aff410f1
MS
723/* Return the child of COMP which is the basename of a method,
724 variable, et cetera. All scope qualifiers are discarded, but
725 template arguments will be included. The component tree may be
726 modified. */
de17c821 727
5e5100cb
DJ
728static struct demangle_component *
729unqualified_name_from_comp (struct demangle_component *comp)
de17c821 730{
5e5100cb 731 struct demangle_component *ret_comp = comp, *last_template;
fb4c6eba
DJ
732 int done;
733
fb4c6eba 734 done = 0;
5e5100cb 735 last_template = NULL;
fb4c6eba
DJ
736 while (!done)
737 switch (ret_comp->type)
738 {
739 case DEMANGLE_COMPONENT_QUAL_NAME:
740 case DEMANGLE_COMPONENT_LOCAL_NAME:
fb4c6eba
DJ
741 ret_comp = d_right (ret_comp);
742 break;
5e5100cb
DJ
743 case DEMANGLE_COMPONENT_TYPED_NAME:
744 ret_comp = d_left (ret_comp);
745 break;
746 case DEMANGLE_COMPONENT_TEMPLATE:
747 gdb_assert (last_template == NULL);
748 last_template = ret_comp;
749 ret_comp = d_left (ret_comp);
750 break;
fb4c6eba
DJ
751 case DEMANGLE_COMPONENT_CONST:
752 case DEMANGLE_COMPONENT_RESTRICT:
753 case DEMANGLE_COMPONENT_VOLATILE:
754 case DEMANGLE_COMPONENT_CONST_THIS:
755 case DEMANGLE_COMPONENT_RESTRICT_THIS:
756 case DEMANGLE_COMPONENT_VOLATILE_THIS:
757 case DEMANGLE_COMPONENT_VENDOR_TYPE_QUAL:
758 ret_comp = d_left (ret_comp);
759 break;
760 case DEMANGLE_COMPONENT_NAME:
fb4c6eba
DJ
761 case DEMANGLE_COMPONENT_CTOR:
762 case DEMANGLE_COMPONENT_DTOR:
763 case DEMANGLE_COMPONENT_OPERATOR:
764 case DEMANGLE_COMPONENT_EXTENDED_OPERATOR:
765 done = 1;
766 break;
767 default:
5e5100cb 768 return NULL;
fb4c6eba
DJ
769 break;
770 }
771
5e5100cb
DJ
772 if (last_template)
773 {
774 d_left (last_template) = ret_comp;
775 return last_template;
776 }
777
778 return ret_comp;
779}
780
781/* Return the name of the method whose linkage name is PHYSNAME. */
782
783char *
784method_name_from_physname (const char *physname)
785{
de237128 786 void *storage = NULL;
5e5100cb
DJ
787 char *demangled_name = NULL, *ret;
788 struct demangle_component *ret_comp;
c8b23b3f 789 std::unique_ptr<demangle_parse_info> info;
5e5100cb 790
3a93a0c2
KS
791 info = mangled_name_to_comp (physname, DMGL_ANSI,
792 &storage, &demangled_name);
793 if (info == NULL)
5e5100cb
DJ
794 return NULL;
795
3a93a0c2 796 ret_comp = unqualified_name_from_comp (info->tree);
5e5100cb 797
fb4c6eba
DJ
798 ret = NULL;
799 if (ret_comp != NULL)
aff410f1
MS
800 /* The ten is completely arbitrary; we don't have a good
801 estimate. */
fb4c6eba
DJ
802 ret = cp_comp_to_string (ret_comp, 10);
803
804 xfree (storage);
3a93a0c2 805 xfree (demangled_name);
fb4c6eba
DJ
806 return ret;
807}
de17c821 808
5e5100cb
DJ
809/* If FULL_NAME is the demangled name of a C++ function (including an
810 arg list, possibly including namespace/class qualifications),
811 return a new string containing only the function name (without the
812 arg list/class qualifications). Otherwise, return NULL. The
813 caller is responsible for freeing the memory in question. */
814
815char *
816cp_func_name (const char *full_name)
817{
5e5100cb
DJ
818 char *ret;
819 struct demangle_component *ret_comp;
c8b23b3f 820 std::unique_ptr<demangle_parse_info> info;
5e5100cb 821
3a93a0c2
KS
822 info = cp_demangled_name_to_comp (full_name, NULL);
823 if (!info)
5e5100cb
DJ
824 return NULL;
825
3a93a0c2 826 ret_comp = unqualified_name_from_comp (info->tree);
5e5100cb
DJ
827
828 ret = NULL;
829 if (ret_comp != NULL)
830 ret = cp_comp_to_string (ret_comp, 10);
831
5e5100cb
DJ
832 return ret;
833}
834
835/* DEMANGLED_NAME is the name of a function, including parameters and
836 (optionally) a return type. Return the name of the function without
837 parameters or return type, or NULL if we can not parse the name. */
838
3567439c
DJ
839char *
840cp_remove_params (const char *demangled_name)
5e5100cb
DJ
841{
842 int done = 0;
843 struct demangle_component *ret_comp;
c8b23b3f 844 std::unique_ptr<demangle_parse_info> info;
5e5100cb
DJ
845 char *ret = NULL;
846
847 if (demangled_name == NULL)
848 return NULL;
849
3a93a0c2
KS
850 info = cp_demangled_name_to_comp (demangled_name, NULL);
851 if (info == NULL)
5e5100cb
DJ
852 return NULL;
853
854 /* First strip off any qualifiers, if we have a function or method. */
3a93a0c2 855 ret_comp = info->tree;
5e5100cb
DJ
856 while (!done)
857 switch (ret_comp->type)
858 {
859 case DEMANGLE_COMPONENT_CONST:
860 case DEMANGLE_COMPONENT_RESTRICT:
861 case DEMANGLE_COMPONENT_VOLATILE:
862 case DEMANGLE_COMPONENT_CONST_THIS:
863 case DEMANGLE_COMPONENT_RESTRICT_THIS:
864 case DEMANGLE_COMPONENT_VOLATILE_THIS:
865 case DEMANGLE_COMPONENT_VENDOR_TYPE_QUAL:
866 ret_comp = d_left (ret_comp);
867 break;
868 default:
869 done = 1;
870 break;
871 }
872
873 /* What we have now should be a function. Return its name. */
874 if (ret_comp->type == DEMANGLE_COMPONENT_TYPED_NAME)
875 ret = cp_comp_to_string (d_left (ret_comp), 10);
876
5e5100cb
DJ
877 return ret;
878}
879
fb4c6eba
DJ
880/* Here are some random pieces of trivia to keep in mind while trying
881 to take apart demangled names:
de17c821 882
fb4c6eba
DJ
883 - Names can contain function arguments or templates, so the process
884 has to be, to some extent recursive: maybe keep track of your
885 depth based on encountering <> and ().
886
887 - Parentheses don't just have to happen at the end of a name: they
888 can occur even if the name in question isn't a function, because
889 a template argument might be a type that's a function.
890
891 - Conversely, even if you're trying to deal with a function, its
892 demangled name might not end with ')': it could be a const or
893 volatile class method, in which case it ends with "const" or
894 "volatile".
895
896 - Parentheses are also used in anonymous namespaces: a variable
897 'foo' in an anonymous namespace gets demangled as "(anonymous
898 namespace)::foo".
899
900 - And operator names can contain parentheses or angle brackets. */
901
902/* FIXME: carlton/2003-03-13: We have several functions here with
903 overlapping functionality; can we combine them? Also, do they
904 handle all the above considerations correctly? */
de17c821 905
9219021c
DC
906
907/* This returns the length of first component of NAME, which should be
908 the demangled name of a C++ variable/function/method/etc.
909 Specifically, it returns the index of the first colon forming the
910 boundary of the first component: so, given 'A::foo' or 'A::B::foo'
911 it returns the 1, and given 'foo', it returns 0. */
912
b2a7f303
DC
913/* The character in NAME indexed by the return value is guaranteed to
914 always be either ':' or '\0'. */
9219021c
DC
915
916/* NOTE: carlton/2003-03-13: This function is currently only intended
917 for internal use: it's probably not entirely safe when called on
b2a7f303
DC
918 user-generated input, because some of the 'index += 2' lines in
919 cp_find_first_component_aux might go past the end of malformed
920 input. */
921
922unsigned int
923cp_find_first_component (const char *name)
924{
925 return cp_find_first_component_aux (name, 0);
926}
927
928/* Helper function for cp_find_first_component. Like that function,
929 it returns the length of the first component of NAME, but to make
930 the recursion easier, it also stops if it reaches an unexpected ')'
931 or '>' if the value of PERMISSIVE is nonzero. */
9219021c
DC
932
933/* Let's optimize away calls to strlen("operator"). */
934
935#define LENGTH_OF_OPERATOR 8
936
b2a7f303
DC
937static unsigned int
938cp_find_first_component_aux (const char *name, int permissive)
9219021c 939{
9219021c 940 unsigned int index = 0;
0f20eeea
DC
941 /* Operator names can show up in unexpected places. Since these can
942 contain parentheses or angle brackets, they can screw up the
943 recursion. But not every string 'operator' is part of an
944 operater name: e.g. you could have a variable 'cooperator'. So
945 this variable tells us whether or not we should treat the string
946 'operator' as starting an operator. */
947 int operator_possible = 1;
9219021c
DC
948
949 for (;; ++index)
950 {
951 switch (name[index])
952 {
953 case '<':
954 /* Template; eat it up. The calls to cp_first_component
955 should only return (I hope!) when they reach the '>'
956 terminating the component or a '::' between two
957 components. (Hence the '+ 2'.) */
958 index += 1;
b2a7f303 959 for (index += cp_find_first_component_aux (name + index, 1);
9219021c 960 name[index] != '>';
b2a7f303 961 index += cp_find_first_component_aux (name + index, 1))
9219021c 962 {
b2a7f303
DC
963 if (name[index] != ':')
964 {
965 demangled_name_complaint (name);
966 return strlen (name);
967 }
9219021c
DC
968 index += 2;
969 }
0f20eeea 970 operator_possible = 1;
9219021c
DC
971 break;
972 case '(':
973 /* Similar comment as to '<'. */
974 index += 1;
b2a7f303 975 for (index += cp_find_first_component_aux (name + index, 1);
9219021c 976 name[index] != ')';
b2a7f303 977 index += cp_find_first_component_aux (name + index, 1))
9219021c 978 {
b2a7f303
DC
979 if (name[index] != ':')
980 {
981 demangled_name_complaint (name);
982 return strlen (name);
983 }
9219021c
DC
984 index += 2;
985 }
0f20eeea 986 operator_possible = 1;
9219021c
DC
987 break;
988 case '>':
989 case ')':
b2a7f303 990 if (permissive)
7a20f2c2 991 return index;
b2a7f303
DC
992 else
993 {
994 demangled_name_complaint (name);
995 return strlen (name);
996 }
9219021c 997 case '\0':
9219021c 998 return index;
1cafadb4
DB
999 case ':':
1000 /* ':' marks a component iff the next character is also a ':'.
1001 Otherwise it is probably malformed input. */
1002 if (name[index + 1] == ':')
1003 return index;
1004 break;
0f20eeea
DC
1005 case 'o':
1006 /* Operator names can screw up the recursion. */
1007 if (operator_possible
aff410f1
MS
1008 && strncmp (name + index, "operator",
1009 LENGTH_OF_OPERATOR) == 0)
0f20eeea
DC
1010 {
1011 index += LENGTH_OF_OPERATOR;
f88e9fd3 1012 while (ISSPACE(name[index]))
0f20eeea
DC
1013 ++index;
1014 switch (name[index])
1015 {
1016 /* Skip over one less than the appropriate number of
1017 characters: the for loop will skip over the last
1018 one. */
1019 case '<':
1020 if (name[index + 1] == '<')
1021 index += 1;
1022 else
1023 index += 0;
1024 break;
1025 case '>':
1026 case '-':
1027 if (name[index + 1] == '>')
1028 index += 1;
1029 else
1030 index += 0;
1031 break;
1032 case '(':
1033 index += 1;
1034 break;
1035 default:
1036 index += 0;
1037 break;
1038 }
1039 }
1040 operator_possible = 0;
1041 break;
1042 case ' ':
1043 case ',':
1044 case '.':
1045 case '&':
1046 case '*':
1047 /* NOTE: carlton/2003-04-18: I'm not sure what the precise
1048 set of relevant characters are here: it's necessary to
1049 include any character that can show up before 'operator'
1050 in a demangled name, and it's safe to include any
1051 character that can't be part of an identifier's name. */
1052 operator_possible = 1;
1053 break;
9219021c 1054 default:
0f20eeea 1055 operator_possible = 0;
9219021c
DC
1056 break;
1057 }
1058 }
1059}
1060
b2a7f303
DC
1061/* Complain about a demangled name that we don't know how to parse.
1062 NAME is the demangled name in question. */
1063
1064static void
1065demangled_name_complaint (const char *name)
1066{
1067 complaint (&symfile_complaints,
1068 "unexpected demangled name '%s'", name);
1069}
1070
9219021c
DC
1071/* If NAME is the fully-qualified name of a C++
1072 function/variable/method/etc., this returns the length of its
1073 entire prefix: all of the namespaces and classes that make up its
1074 name. Given 'A::foo', it returns 1, given 'A::B::foo', it returns
1075 4, given 'foo', it returns 0. */
1076
1077unsigned int
1078cp_entire_prefix_len (const char *name)
1079{
1080 unsigned int current_len = cp_find_first_component (name);
1081 unsigned int previous_len = 0;
1082
1083 while (name[current_len] != '\0')
1084 {
1085 gdb_assert (name[current_len] == ':');
1086 previous_len = current_len;
1087 /* Skip the '::'. */
1088 current_len += 2;
1089 current_len += cp_find_first_component (name + current_len);
1090 }
1091
1092 return previous_len;
1093}
1094
b6429628
DC
1095/* Overload resolution functions. */
1096
8d577d32
DC
1097/* Test to see if SYM is a symbol that we haven't seen corresponding
1098 to a function named OLOAD_NAME. If so, add it to the current
aff410f1 1099 completion list. */
b6429628
DC
1100
1101static void
aff410f1
MS
1102overload_list_add_symbol (struct symbol *sym,
1103 const char *oload_name)
b6429628
DC
1104{
1105 int newsize;
1106 int i;
1107 char *sym_name;
1108
aff410f1
MS
1109 /* If there is no type information, we can't do anything, so
1110 skip. */
b6429628
DC
1111 if (SYMBOL_TYPE (sym) == NULL)
1112 return;
1113
aff410f1 1114 /* skip any symbols that we've already considered. */
b6429628 1115 for (i = 0; i < sym_return_val_index; ++i)
8d577d32
DC
1116 if (strcmp (SYMBOL_LINKAGE_NAME (sym),
1117 SYMBOL_LINKAGE_NAME (sym_return_val[i])) == 0)
b6429628
DC
1118 return;
1119
1120 /* Get the demangled name without parameters */
3567439c 1121 sym_name = cp_remove_params (SYMBOL_NATURAL_NAME (sym));
b6429628
DC
1122 if (!sym_name)
1123 return;
1124
1125 /* skip symbols that cannot match */
1126 if (strcmp (sym_name, oload_name) != 0)
1127 {
1128 xfree (sym_name);
1129 return;
1130 }
1131
1132 xfree (sym_name);
1133
aff410f1
MS
1134 /* We have a match for an overload instance, so add SYM to the
1135 current list of overload instances */
b6429628
DC
1136 if (sym_return_val_index + 3 > sym_return_val_size)
1137 {
1138 newsize = (sym_return_val_size *= 2) * sizeof (struct symbol *);
aff410f1
MS
1139 sym_return_val = (struct symbol **)
1140 xrealloc ((char *) sym_return_val, newsize);
b6429628
DC
1141 }
1142 sym_return_val[sym_return_val_index++] = sym;
1143 sym_return_val[sym_return_val_index] = NULL;
1144}
1145
1146/* Return a null-terminated list of pointers to function symbols that
8d577d32 1147 are named FUNC_NAME and are visible within NAMESPACE. */
b6429628
DC
1148
1149struct symbol **
8d577d32 1150make_symbol_overload_list (const char *func_name,
fe978cb0 1151 const char *the_namespace)
b6429628 1152{
8d577d32 1153 struct cleanup *old_cleanups;
245040d7 1154 const char *name;
b6429628 1155
8d577d32
DC
1156 sym_return_val_size = 100;
1157 sym_return_val_index = 0;
8d749320 1158 sym_return_val = XNEWVEC (struct symbol *, sym_return_val_size + 1);
8d577d32 1159 sym_return_val[0] = NULL;
b6429628 1160
8d577d32
DC
1161 old_cleanups = make_cleanup (xfree, sym_return_val);
1162
fe978cb0 1163 make_symbol_overload_list_using (func_name, the_namespace);
8d577d32 1164
fe978cb0 1165 if (the_namespace[0] == '\0')
245040d7
SW
1166 name = func_name;
1167 else
1168 {
1169 char *concatenated_name
224c3ddb 1170 = (char *) alloca (strlen (the_namespace) + 2 + strlen (func_name) + 1);
fe978cb0 1171 strcpy (concatenated_name, the_namespace);
245040d7
SW
1172 strcat (concatenated_name, "::");
1173 strcat (concatenated_name, func_name);
1174 name = concatenated_name;
1175 }
1176
1177 make_symbol_overload_list_qualified (name);
1178
8d577d32
DC
1179 discard_cleanups (old_cleanups);
1180
1181 return sym_return_val;
1182}
1183
245040d7
SW
1184/* Add all symbols with a name matching NAME in BLOCK to the overload
1185 list. */
1186
1187static void
1188make_symbol_overload_list_block (const char *name,
1189 const struct block *block)
1190{
8157b174 1191 struct block_iterator iter;
245040d7
SW
1192 struct symbol *sym;
1193
358d6ab3 1194 ALL_BLOCK_SYMBOLS_WITH_NAME (block, name, iter, sym)
245040d7
SW
1195 overload_list_add_symbol (sym, name);
1196}
1197
7322dca9
SW
1198/* Adds the function FUNC_NAME from NAMESPACE to the overload set. */
1199
1200static void
1201make_symbol_overload_list_namespace (const char *func_name,
fe978cb0 1202 const char *the_namespace)
7322dca9 1203{
245040d7
SW
1204 const char *name;
1205 const struct block *block = NULL;
1206
fe978cb0 1207 if (the_namespace[0] == '\0')
245040d7 1208 name = func_name;
7322dca9
SW
1209 else
1210 {
1211 char *concatenated_name
224c3ddb 1212 = (char *) alloca (strlen (the_namespace) + 2 + strlen (func_name) + 1);
c5504eaf 1213
fe978cb0 1214 strcpy (concatenated_name, the_namespace);
7322dca9
SW
1215 strcat (concatenated_name, "::");
1216 strcat (concatenated_name, func_name);
245040d7 1217 name = concatenated_name;
7322dca9 1218 }
245040d7
SW
1219
1220 /* Look in the static block. */
1221 block = block_static_block (get_selected_block (0));
eeaafae2
JK
1222 if (block)
1223 make_symbol_overload_list_block (name, block);
245040d7
SW
1224
1225 /* Look in the global block. */
1226 block = block_global_block (block);
eeaafae2
JK
1227 if (block)
1228 make_symbol_overload_list_block (name, block);
245040d7 1229
7322dca9
SW
1230}
1231
aff410f1
MS
1232/* Search the namespace of the given type and namespace of and public
1233 base types. */
7322dca9
SW
1234
1235static void
1236make_symbol_overload_list_adl_namespace (struct type *type,
1237 const char *func_name)
1238{
fe978cb0 1239 char *the_namespace;
0d5cff50 1240 const char *type_name;
7322dca9
SW
1241 int i, prefix_len;
1242
aff410f1
MS
1243 while (TYPE_CODE (type) == TYPE_CODE_PTR
1244 || TYPE_CODE (type) == TYPE_CODE_REF
7322dca9
SW
1245 || TYPE_CODE (type) == TYPE_CODE_ARRAY
1246 || TYPE_CODE (type) == TYPE_CODE_TYPEDEF)
1247 {
1248 if (TYPE_CODE (type) == TYPE_CODE_TYPEDEF)
1249 type = check_typedef(type);
1250 else
1251 type = TYPE_TARGET_TYPE (type);
1252 }
1253
1254 type_name = TYPE_NAME (type);
1255
7d3fe98e
SW
1256 if (type_name == NULL)
1257 return;
1258
7322dca9
SW
1259 prefix_len = cp_entire_prefix_len (type_name);
1260
1261 if (prefix_len != 0)
1262 {
224c3ddb 1263 the_namespace = (char *) alloca (prefix_len + 1);
fe978cb0
PA
1264 strncpy (the_namespace, type_name, prefix_len);
1265 the_namespace[prefix_len] = '\0';
7322dca9 1266
fe978cb0 1267 make_symbol_overload_list_namespace (func_name, the_namespace);
7322dca9
SW
1268 }
1269
1270 /* Check public base type */
4753d33b 1271 if (TYPE_CODE (type) == TYPE_CODE_STRUCT)
7322dca9
SW
1272 for (i = 0; i < TYPE_N_BASECLASSES (type); i++)
1273 {
1274 if (BASETYPE_VIA_PUBLIC (type, i))
aff410f1
MS
1275 make_symbol_overload_list_adl_namespace (TYPE_BASECLASS (type,
1276 i),
7322dca9
SW
1277 func_name);
1278 }
1279}
1280
b021a221 1281/* Adds the overload list overload candidates for FUNC_NAME found
aff410f1 1282 through argument dependent lookup. */
7322dca9
SW
1283
1284struct symbol **
1285make_symbol_overload_list_adl (struct type **arg_types, int nargs,
1286 const char *func_name)
1287{
1288 int i;
1289
1290 gdb_assert (sym_return_val_size != -1);
1291
1292 for (i = 1; i <= nargs; i++)
aff410f1
MS
1293 make_symbol_overload_list_adl_namespace (arg_types[i - 1],
1294 func_name);
7322dca9
SW
1295
1296 return sym_return_val;
1297}
1298
aff410f1
MS
1299/* Used for cleanups to reset the "searched" flag in case of an
1300 error. */
19c0c0f8
UW
1301
1302static void
1303reset_directive_searched (void *data)
1304{
9a3c8263 1305 struct using_direct *direct = (struct using_direct *) data;
19c0c0f8
UW
1306 direct->searched = 0;
1307}
1308
8d577d32
DC
1309/* This applies the using directives to add namespaces to search in,
1310 and then searches for overloads in all of those namespaces. It
1311 adds the symbols found to sym_return_val. Arguments are as in
1312 make_symbol_overload_list. */
1313
1314static void
1315make_symbol_overload_list_using (const char *func_name,
fe978cb0 1316 const char *the_namespace)
8d577d32 1317{
19c0c0f8 1318 struct using_direct *current;
4c3376c8 1319 const struct block *block;
8d577d32
DC
1320
1321 /* First, go through the using directives. If any of them apply,
1322 look in the appropriate namespaces for new functions to match
1323 on. */
b6429628 1324
4c3376c8
SW
1325 for (block = get_selected_block (0);
1326 block != NULL;
1327 block = BLOCK_SUPERBLOCK (block))
1328 for (current = block_using (block);
1329 current != NULL;
1330 current = current->next)
1331 {
19c0c0f8
UW
1332 /* Prevent recursive calls. */
1333 if (current->searched)
1334 continue;
1335
aff410f1
MS
1336 /* If this is a namespace alias or imported declaration ignore
1337 it. */
4c3376c8
SW
1338 if (current->alias != NULL || current->declaration != NULL)
1339 continue;
1340
fe978cb0 1341 if (strcmp (the_namespace, current->import_dest) == 0)
19c0c0f8 1342 {
aff410f1
MS
1343 /* Mark this import as searched so that the recursive call
1344 does not search it again. */
19c0c0f8
UW
1345 struct cleanup *old_chain;
1346 current->searched = 1;
aff410f1
MS
1347 old_chain = make_cleanup (reset_directive_searched,
1348 current);
19c0c0f8 1349
aff410f1
MS
1350 make_symbol_overload_list_using (func_name,
1351 current->import_src);
19c0c0f8
UW
1352
1353 current->searched = 0;
1354 discard_cleanups (old_chain);
1355 }
4c3376c8 1356 }
b6429628 1357
8d577d32 1358 /* Now, add names for this namespace. */
fe978cb0 1359 make_symbol_overload_list_namespace (func_name, the_namespace);
8d577d32 1360}
b6429628 1361
8d577d32
DC
1362/* This does the bulk of the work of finding overloaded symbols.
1363 FUNC_NAME is the name of the overloaded function we're looking for
1364 (possibly including namespace info). */
b6429628 1365
8d577d32
DC
1366static void
1367make_symbol_overload_list_qualified (const char *func_name)
1368{
43f3e411 1369 struct compunit_symtab *cust;
8d577d32
DC
1370 struct objfile *objfile;
1371 const struct block *b, *surrounding_static_block = 0;
b6429628 1372
aff410f1
MS
1373 /* Look through the partial symtabs for all symbols which begin by
1374 matching FUNC_NAME. Make sure we read that symbol table in. */
b6429628 1375
ccefe4c4
TT
1376 ALL_OBJFILES (objfile)
1377 {
1378 if (objfile->sf)
1379 objfile->sf->qf->expand_symtabs_for_function (objfile, func_name);
1380 }
b6429628
DC
1381
1382 /* Search upwards from currently selected frame (so that we can
1383 complete on local vars. */
1384
1385 for (b = get_selected_block (0); b != NULL; b = BLOCK_SUPERBLOCK (b))
245040d7 1386 make_symbol_overload_list_block (func_name, b);
b6429628 1387
8d577d32
DC
1388 surrounding_static_block = block_static_block (get_selected_block (0));
1389
b6429628
DC
1390 /* Go through the symtabs and check the externs and statics for
1391 symbols which match. */
1392
43f3e411 1393 ALL_COMPUNITS (objfile, cust)
b6429628
DC
1394 {
1395 QUIT;
43f3e411 1396 b = BLOCKVECTOR_BLOCK (COMPUNIT_BLOCKVECTOR (cust), GLOBAL_BLOCK);
245040d7 1397 make_symbol_overload_list_block (func_name, b);
b6429628
DC
1398 }
1399
43f3e411 1400 ALL_COMPUNITS (objfile, cust)
b6429628
DC
1401 {
1402 QUIT;
43f3e411 1403 b = BLOCKVECTOR_BLOCK (COMPUNIT_BLOCKVECTOR (cust), STATIC_BLOCK);
b6429628
DC
1404 /* Don't do this block twice. */
1405 if (b == surrounding_static_block)
1406 continue;
245040d7 1407 make_symbol_overload_list_block (func_name, b);
b6429628 1408 }
8d577d32
DC
1409}
1410
aff410f1 1411/* Lookup the rtti type for a class name. */
362ff856
MC
1412
1413struct type *
1414cp_lookup_rtti_type (const char *name, struct block *block)
1415{
1416 struct symbol * rtti_sym;
1417 struct type * rtti_type;
1418
82c7be31
DE
1419 /* Use VAR_DOMAIN here as NAME may be a typedef. PR 18141, 18417.
1420 Classes "live" in both STRUCT_DOMAIN and VAR_DOMAIN. */
d12307c1 1421 rtti_sym = lookup_symbol (name, block, VAR_DOMAIN, NULL).symbol;
362ff856
MC
1422
1423 if (rtti_sym == NULL)
1424 {
8a3fe4f8 1425 warning (_("RTTI symbol not found for class '%s'"), name);
362ff856
MC
1426 return NULL;
1427 }
1428
1429 if (SYMBOL_CLASS (rtti_sym) != LOC_TYPEDEF)
1430 {
8a3fe4f8 1431 warning (_("RTTI symbol for class '%s' is not a type"), name);
362ff856
MC
1432 return NULL;
1433 }
1434
82c7be31 1435 rtti_type = check_typedef (SYMBOL_TYPE (rtti_sym));
362ff856
MC
1436
1437 switch (TYPE_CODE (rtti_type))
1438 {
4753d33b 1439 case TYPE_CODE_STRUCT:
362ff856
MC
1440 break;
1441 case TYPE_CODE_NAMESPACE:
1442 /* chastain/2003-11-26: the symbol tables often contain fake
1443 symbols for namespaces with the same name as the struct.
1444 This warning is an indication of a bug in the lookup order
1445 or a bug in the way that the symbol tables are populated. */
8a3fe4f8 1446 warning (_("RTTI symbol for class '%s' is a namespace"), name);
362ff856
MC
1447 return NULL;
1448 default:
8a3fe4f8 1449 warning (_("RTTI symbol for class '%s' has bad type"), name);
362ff856
MC
1450 return NULL;
1451 }
1452
1453 return rtti_type;
1454}
b6429628 1455
992c7d70
GB
1456#ifdef HAVE_WORKING_FORK
1457
1458/* If nonzero, attempt to catch crashes in the demangler and print
1459 useful debugging information. */
1460
1461static int catch_demangler_crashes = 1;
1462
992c7d70
GB
1463/* Stack context and environment for demangler crash recovery. */
1464
1465static SIGJMP_BUF gdb_demangle_jmp_buf;
1466
1467/* If nonzero, attempt to dump core from the signal handler. */
1468
1469static int gdb_demangle_attempt_core_dump = 1;
1470
1471/* Signal handler for gdb_demangle. */
1472
1473static void
1474gdb_demangle_signal_handler (int signo)
1475{
1476 if (gdb_demangle_attempt_core_dump)
1477 {
1478 if (fork () == 0)
1479 dump_core ();
1480
1481 gdb_demangle_attempt_core_dump = 0;
1482 }
1483
1484 SIGLONGJMP (gdb_demangle_jmp_buf, signo);
1485}
1486
1487#endif
1488
8de20a37
TT
1489/* A wrapper for bfd_demangle. */
1490
1491char *
1492gdb_demangle (const char *name, int options)
1493{
992c7d70
GB
1494 char *result = NULL;
1495 int crash_signal = 0;
1496
1497#ifdef HAVE_WORKING_FORK
1498#if defined (HAVE_SIGACTION) && defined (SA_RESTART)
1499 struct sigaction sa, old_sa;
1500#else
a40805d4 1501 sighandler_t ofunc;
992c7d70
GB
1502#endif
1503 static int core_dump_allowed = -1;
1504
1505 if (core_dump_allowed == -1)
1506 {
1507 core_dump_allowed = can_dump_core (LIMIT_CUR);
1508
1509 if (!core_dump_allowed)
1510 gdb_demangle_attempt_core_dump = 0;
1511 }
1512
1513 if (catch_demangler_crashes)
1514 {
1515#if defined (HAVE_SIGACTION) && defined (SA_RESTART)
1516 sa.sa_handler = gdb_demangle_signal_handler;
1517 sigemptyset (&sa.sa_mask);
91b52240 1518#ifdef HAVE_SIGALTSTACK
992c7d70 1519 sa.sa_flags = SA_ONSTACK;
91b52240
GB
1520#else
1521 sa.sa_flags = 0;
1522#endif
992c7d70
GB
1523 sigaction (SIGSEGV, &sa, &old_sa);
1524#else
a40805d4 1525 ofunc = signal (SIGSEGV, gdb_demangle_signal_handler);
992c7d70
GB
1526#endif
1527
1528 crash_signal = SIGSETJMP (gdb_demangle_jmp_buf);
1529 }
1530#endif
1531
1532 if (crash_signal == 0)
1533 result = bfd_demangle (NULL, name, options);
1534
1535#ifdef HAVE_WORKING_FORK
1536 if (catch_demangler_crashes)
1537 {
1538#if defined (HAVE_SIGACTION) && defined (SA_RESTART)
1539 sigaction (SIGSEGV, &old_sa, NULL);
1540#else
1541 signal (SIGSEGV, ofunc);
1542#endif
1543
1544 if (crash_signal != 0)
1545 {
1546 static int error_reported = 0;
1547
1548 if (!error_reported)
1549 {
1550 char *short_msg, *long_msg;
1551 struct cleanup *back_to;
1552
1553 short_msg = xstrprintf (_("unable to demangle '%s' "
1554 "(demangler failed with signal %d)"),
1555 name, crash_signal);
1556 back_to = make_cleanup (xfree, short_msg);
1557
1558 long_msg = xstrprintf ("%s:%d: %s: %s", __FILE__, __LINE__,
1559 "demangler-warning", short_msg);
1560 make_cleanup (xfree, long_msg);
1561
c509f1e1
PA
1562 make_cleanup_restore_target_terminal ();
1563 target_terminal_ours_for_output ();
1564
992c7d70
GB
1565 begin_line ();
1566 if (core_dump_allowed)
1567 fprintf_unfiltered (gdb_stderr,
1568 _("%s\nAttempting to dump core.\n"),
1569 long_msg);
1570 else
1571 warn_cant_dump_core (long_msg);
1572
1573 demangler_warning (__FILE__, __LINE__, "%s", short_msg);
1574
1575 do_cleanups (back_to);
1576
1577 error_reported = 1;
1578 }
1579
1580 result = NULL;
1581 }
1582 }
1583#endif
1584
1585 return result;
8de20a37
TT
1586}
1587
8b302db8
TT
1588/* See cp-support.h. */
1589
1590int
1591gdb_sniff_from_mangled_name (const char *mangled, char **demangled)
1592{
1593 *demangled = gdb_demangle (mangled, DMGL_PARAMS | DMGL_ANSI);
1594 return *demangled != NULL;
1595}
1596
9219021c
DC
1597/* Don't allow just "maintenance cplus". */
1598
1599static void
1600maint_cplus_command (char *arg, int from_tty)
1601{
3e43a32a
MS
1602 printf_unfiltered (_("\"maintenance cplus\" must be followed "
1603 "by the name of a command.\n"));
aff410f1
MS
1604 help_list (maint_cplus_cmd_list,
1605 "maintenance cplus ",
635c7e8a 1606 all_commands, gdb_stdout);
9219021c
DC
1607}
1608
1609/* This is a front end for cp_find_first_component, for unit testing.
1610 Be careful when using it: see the NOTE above
1611 cp_find_first_component. */
1612
1613static void
1614first_component_command (char *arg, int from_tty)
1615{
c836824f
AR
1616 int len;
1617 char *prefix;
1618
1619 if (!arg)
1620 return;
1621
1622 len = cp_find_first_component (arg);
224c3ddb 1623 prefix = (char *) alloca (len + 1);
9219021c
DC
1624
1625 memcpy (prefix, arg, len);
1626 prefix[len] = '\0';
1627
1628 printf_unfiltered ("%s\n", prefix);
1629}
1630
b9362cc7
AC
1631extern initialize_file_ftype _initialize_cp_support; /* -Wmissing-prototypes */
1632
12907978 1633
57651221 1634/* Implement "info vtbl". */
c4aeac85
TT
1635
1636static void
1637info_vtbl_command (char *arg, int from_tty)
1638{
1639 struct value *value;
1640
1641 value = parse_and_eval (arg);
1642 cplus_print_vtable (value);
1643}
1644
9219021c
DC
1645void
1646_initialize_cp_support (void)
1647{
aff410f1
MS
1648 add_prefix_cmd ("cplus", class_maintenance,
1649 maint_cplus_command,
1650 _("C++ maintenance commands."),
1651 &maint_cplus_cmd_list,
1652 "maintenance cplus ",
1653 0, &maintenancelist);
1654 add_alias_cmd ("cp", "cplus",
1655 class_maintenance, 1,
1656 &maintenancelist);
1657
1658 add_cmd ("first_component",
1659 class_maintenance,
1660 first_component_command,
1a966eab 1661 _("Print the first class/namespace component of NAME."),
9219021c 1662 &maint_cplus_cmd_list);
c4aeac85
TT
1663
1664 add_info ("vtbl", info_vtbl_command,
57651221 1665 _("Show the virtual function table for a C++ object.\n\
c4aeac85
TT
1666Usage: info vtbl EXPRESSION\n\
1667Evaluate EXPRESSION and display the virtual function table for the\n\
1668resulting object."));
992c7d70
GB
1669
1670#ifdef HAVE_WORKING_FORK
1671 add_setshow_boolean_cmd ("catch-demangler-crashes", class_maintenance,
1672 &catch_demangler_crashes, _("\
1673Set whether to attempt to catch demangler crashes."), _("\
1674Show whether to attempt to catch demangler crashes."), _("\
1675If enabled GDB will attempt to catch demangler crashes and\n\
1676display the offending symbol."),
1677 NULL,
1678 NULL,
1679 &maintenance_set_cmdlist,
1680 &maintenance_show_cmdlist);
1681#endif
9219021c 1682}
This page took 1.04808 seconds and 4 git commands to generate.