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