1 /* Demangler for g++ V3 ABI.
2 Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008
3 Free Software Foundation, Inc.
4 Written by Ian Lance Taylor <ian@wasabisystems.com>.
6 This file is part of the libiberty library, which is part of GCC.
8 This file 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 2 of the License, or
11 (at your option) any later version.
13 In addition to the permissions in the GNU General Public License, the
14 Free Software Foundation gives you unlimited permission to link the
15 compiled version of this file into combinations with other programs,
16 and to distribute those combinations without any restriction coming
17 from the use of this file. (The General Public License restrictions
18 do apply in other respects; for example, they cover modification of
19 the file, and distribution when not linked into a combined
22 This program is distributed in the hope that it will be useful,
23 but WITHOUT ANY WARRANTY; without even the implied warranty of
24 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 GNU General Public License for more details.
27 You should have received a copy of the GNU General Public License
28 along with this program; if not, write to the Free Software
29 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
32 /* This code implements a demangler for the g++ V3 ABI. The ABI is
33 described on this web page:
34 http://www.codesourcery.com/cxx-abi/abi.html#mangling
36 This code was written while looking at the demangler written by
37 Alex Samuel <samuel@codesourcery.com>.
39 This code first pulls the mangled name apart into a list of
40 components, and then walks the list generating the demangled
43 This file will normally define the following functions, q.v.:
44 char *cplus_demangle_v3(const char *mangled, int options)
45 char *java_demangle_v3(const char *mangled)
46 int cplus_demangle_v3_callback(const char *mangled, int options,
47 demangle_callbackref callback)
48 int java_demangle_v3_callback(const char *mangled,
49 demangle_callbackref callback)
50 enum gnu_v3_ctor_kinds is_gnu_v3_mangled_ctor (const char *name)
51 enum gnu_v3_dtor_kinds is_gnu_v3_mangled_dtor (const char *name)
53 Also, the interface to the component list is public, and defined in
54 demangle.h. The interface consists of these types, which are
55 defined in demangle.h:
56 enum demangle_component_type
57 struct demangle_component
59 and these functions defined in this file:
60 cplus_demangle_fill_name
61 cplus_demangle_fill_extended_operator
62 cplus_demangle_fill_ctor
63 cplus_demangle_fill_dtor
65 cplus_demangle_print_callback
66 and other functions defined in the file cp-demint.c.
68 This file also defines some other functions and variables which are
69 only to be used by the file cp-demint.c.
71 Preprocessor macros you can define while compiling this file:
74 If defined, this file defines the following functions, q.v.:
75 char *__cxa_demangle (const char *mangled, char *buf, size_t *len,
77 int __gcclibcxx_demangle_callback (const char *,
79 (const char *, size_t, void *),
81 instead of cplus_demangle_v3[_callback]() and
82 java_demangle_v3[_callback]().
85 If defined, this file defines only __cxa_demangle() and
86 __gcclibcxx_demangle_callback(), and no other publically visible
87 functions or variables.
90 If defined, this file defines a main() function which demangles
91 any arguments, or, if none, demangles stdin.
94 If defined, turns on debugging mode, which prints information on
95 stdout about the mangled string. This is not generally useful.
98 #if defined (_AIX) && !defined (__GNUC__)
120 # define alloca __builtin_alloca
122 extern char *alloca ();
123 # endif /* __GNUC__ */
125 #endif /* HAVE_ALLOCA_H */
127 #include "ansidecl.h"
128 #include "libiberty.h"
129 #include "demangle.h"
130 #include "cp-demangle.h"
132 /* If IN_GLIBCPP_V3 is defined, some functions are made static. We
133 also rename them via #define to avoid compiler errors when the
134 static definition conflicts with the extern declaration in a header
138 #define CP_STATIC_IF_GLIBCPP_V3 static
140 #define cplus_demangle_fill_name d_fill_name
141 static int d_fill_name (struct demangle_component
*, const char *, int);
143 #define cplus_demangle_fill_extended_operator d_fill_extended_operator
145 d_fill_extended_operator (struct demangle_component
*, int,
146 struct demangle_component
*);
148 #define cplus_demangle_fill_ctor d_fill_ctor
150 d_fill_ctor (struct demangle_component
*, enum gnu_v3_ctor_kinds
,
151 struct demangle_component
*);
153 #define cplus_demangle_fill_dtor d_fill_dtor
155 d_fill_dtor (struct demangle_component
*, enum gnu_v3_dtor_kinds
,
156 struct demangle_component
*);
158 #define cplus_demangle_mangled_name d_mangled_name
159 static struct demangle_component
*d_mangled_name (struct d_info
*, int);
161 #define cplus_demangle_type d_type
162 static struct demangle_component
*d_type (struct d_info
*);
164 #define cplus_demangle_print d_print
165 static char *d_print (int, const struct demangle_component
*, int, size_t *);
167 #define cplus_demangle_print_callback d_print_callback
168 static int d_print_callback (int, const struct demangle_component
*,
169 demangle_callbackref
, void *);
171 #define cplus_demangle_init_info d_init_info
172 static void d_init_info (const char *, int, size_t, struct d_info
*);
174 #else /* ! defined(IN_GLIBCPP_V3) */
175 #define CP_STATIC_IF_GLIBCPP_V3
176 #endif /* ! defined(IN_GLIBCPP_V3) */
178 /* See if the compiler supports dynamic arrays. */
181 #define CP_DYNAMIC_ARRAYS
184 #ifdef __STDC_VERSION__
185 #if __STDC_VERSION__ >= 199901L
186 #define CP_DYNAMIC_ARRAYS
187 #endif /* __STDC__VERSION >= 199901L */
188 #endif /* defined (__STDC_VERSION__) */
189 #endif /* defined (__STDC__) */
190 #endif /* ! defined (__GNUC__) */
192 /* We avoid pulling in the ctype tables, to prevent pulling in
193 additional unresolved symbols when this code is used in a library.
194 FIXME: Is this really a valid reason? This comes from the original
197 As of this writing this file has the following undefined references
198 when compiled with -DIN_GLIBCPP_V3: realloc, free, memcpy, strcpy,
201 #define IS_DIGIT(c) ((c) >= '0' && (c) <= '9')
202 #define IS_UPPER(c) ((c) >= 'A' && (c) <= 'Z')
203 #define IS_LOWER(c) ((c) >= 'a' && (c) <= 'z')
205 /* The prefix prepended by GCC to an identifier represnting the
206 anonymous namespace. */
207 #define ANONYMOUS_NAMESPACE_PREFIX "_GLOBAL_"
208 #define ANONYMOUS_NAMESPACE_PREFIX_LEN \
209 (sizeof (ANONYMOUS_NAMESPACE_PREFIX) - 1)
211 /* Information we keep for the standard substitutions. */
213 struct d_standard_sub_info
215 /* The code for this substitution. */
217 /* The simple string it expands to. */
218 const char *simple_expansion
;
219 /* The length of the simple expansion. */
221 /* The results of a full, verbose, expansion. This is used when
222 qualifying a constructor/destructor, or when in verbose mode. */
223 const char *full_expansion
;
224 /* The length of the full expansion. */
226 /* What to set the last_name field of d_info to; NULL if we should
227 not set it. This is only relevant when qualifying a
228 constructor/destructor. */
229 const char *set_last_name
;
230 /* The length of set_last_name. */
231 int set_last_name_len
;
234 /* Accessors for subtrees of struct demangle_component. */
236 #define d_left(dc) ((dc)->u.s_binary.left)
237 #define d_right(dc) ((dc)->u.s_binary.right)
239 /* A list of templates. This is used while printing. */
241 struct d_print_template
243 /* Next template on the list. */
244 struct d_print_template
*next
;
246 const struct demangle_component
*template_decl
;
249 /* A list of type modifiers. This is used while printing. */
253 /* Next modifier on the list. These are in the reverse of the order
254 in which they appeared in the mangled string. */
255 struct d_print_mod
*next
;
257 const struct demangle_component
*mod
;
258 /* Whether this modifier was printed. */
260 /* The list of templates which applies to this modifier. */
261 struct d_print_template
*templates
;
264 /* We use these structures to hold information during printing. */
266 struct d_growable_string
268 /* Buffer holding the result. */
270 /* Current length of data in buffer. */
272 /* Allocated size of buffer. */
274 /* Set to 1 if we had a memory allocation failure. */
275 int allocation_failure
;
278 enum { D_PRINT_BUFFER_LENGTH
= 256 };
281 /* The options passed to the demangler. */
283 /* Fixed-length allocated buffer for demangled data, flushed to the
284 callback with a NUL termination once full. */
285 char buf
[D_PRINT_BUFFER_LENGTH
];
286 /* Current length of data in buffer. */
288 /* The last character printed, saved individually so that it survives
291 /* Callback function to handle demangled buffer flush. */
292 demangle_callbackref callback
;
293 /* Opaque callback argument. */
295 /* The current list of templates, if any. */
296 struct d_print_template
*templates
;
297 /* The current list of modifiers (e.g., pointer, reference, etc.),
299 struct d_print_mod
*modifiers
;
300 /* Set to 1 if we saw a demangling error. */
301 int demangle_failure
;
302 /* The current index into any template argument packs we are using
307 #ifdef CP_DEMANGLE_DEBUG
308 static void d_dump (struct demangle_component
*, int);
311 static struct demangle_component
*
312 d_make_empty (struct d_info
*);
314 static struct demangle_component
*
315 d_make_comp (struct d_info
*, enum demangle_component_type
,
316 struct demangle_component
*,
317 struct demangle_component
*);
319 static struct demangle_component
*
320 d_make_name (struct d_info
*, const char *, int);
322 static struct demangle_component
*
323 d_make_builtin_type (struct d_info
*,
324 const struct demangle_builtin_type_info
*);
326 static struct demangle_component
*
327 d_make_operator (struct d_info
*,
328 const struct demangle_operator_info
*);
330 static struct demangle_component
*
331 d_make_extended_operator (struct d_info
*, int,
332 struct demangle_component
*);
334 static struct demangle_component
*
335 d_make_ctor (struct d_info
*, enum gnu_v3_ctor_kinds
,
336 struct demangle_component
*);
338 static struct demangle_component
*
339 d_make_dtor (struct d_info
*, enum gnu_v3_dtor_kinds
,
340 struct demangle_component
*);
342 static struct demangle_component
*
343 d_make_template_param (struct d_info
*, long);
345 static struct demangle_component
*
346 d_make_sub (struct d_info
*, const char *, int);
349 has_return_type (struct demangle_component
*);
352 is_ctor_dtor_or_conversion (struct demangle_component
*);
354 static struct demangle_component
*d_encoding (struct d_info
*, int);
356 static struct demangle_component
*d_name (struct d_info
*);
358 static struct demangle_component
*d_nested_name (struct d_info
*);
360 static struct demangle_component
*d_prefix (struct d_info
*);
362 static struct demangle_component
*d_unqualified_name (struct d_info
*);
364 static struct demangle_component
*d_source_name (struct d_info
*);
366 static long d_number (struct d_info
*);
368 static struct demangle_component
*d_identifier (struct d_info
*, int);
370 static struct demangle_component
*d_operator_name (struct d_info
*);
372 static struct demangle_component
*d_special_name (struct d_info
*);
374 static int d_call_offset (struct d_info
*, int);
376 static struct demangle_component
*d_ctor_dtor_name (struct d_info
*);
378 static struct demangle_component
**
379 d_cv_qualifiers (struct d_info
*, struct demangle_component
**, int);
381 static struct demangle_component
*
382 d_function_type (struct d_info
*);
384 static struct demangle_component
*
385 d_bare_function_type (struct d_info
*, int);
387 static struct demangle_component
*
388 d_class_enum_type (struct d_info
*);
390 static struct demangle_component
*d_array_type (struct d_info
*);
392 static struct demangle_component
*
393 d_pointer_to_member_type (struct d_info
*);
395 static struct demangle_component
*
396 d_template_param (struct d_info
*);
398 static struct demangle_component
*d_template_args (struct d_info
*);
400 static struct demangle_component
*
401 d_template_arg (struct d_info
*);
403 static struct demangle_component
*d_expression (struct d_info
*);
405 static struct demangle_component
*d_expr_primary (struct d_info
*);
407 static struct demangle_component
*d_local_name (struct d_info
*);
409 static int d_discriminator (struct d_info
*);
412 d_add_substitution (struct d_info
*, struct demangle_component
*);
414 static struct demangle_component
*d_substitution (struct d_info
*, int);
416 static void d_growable_string_init (struct d_growable_string
*, size_t);
419 d_growable_string_resize (struct d_growable_string
*, size_t);
422 d_growable_string_append_buffer (struct d_growable_string
*,
423 const char *, size_t);
425 d_growable_string_callback_adapter (const char *, size_t, void *);
428 d_print_init (struct d_print_info
*, int, demangle_callbackref
, void *);
430 static inline void d_print_error (struct d_print_info
*);
432 static inline int d_print_saw_error (struct d_print_info
*);
434 static inline void d_print_flush (struct d_print_info
*);
436 static inline void d_append_char (struct d_print_info
*, char);
438 static inline void d_append_buffer (struct d_print_info
*,
439 const char *, size_t);
441 static inline void d_append_string (struct d_print_info
*, const char *);
443 static inline char d_last_char (struct d_print_info
*);
446 d_print_comp (struct d_print_info
*, const struct demangle_component
*);
449 d_print_java_identifier (struct d_print_info
*, const char *, int);
452 d_print_mod_list (struct d_print_info
*, struct d_print_mod
*, int);
455 d_print_mod (struct d_print_info
*, const struct demangle_component
*);
458 d_print_function_type (struct d_print_info
*,
459 const struct demangle_component
*,
460 struct d_print_mod
*);
463 d_print_array_type (struct d_print_info
*,
464 const struct demangle_component
*,
465 struct d_print_mod
*);
468 d_print_expr_op (struct d_print_info
*, const struct demangle_component
*);
471 d_print_cast (struct d_print_info
*, const struct demangle_component
*);
473 static int d_demangle_callback (const char *, int,
474 demangle_callbackref
, void *);
475 static char *d_demangle (const char *, int, size_t *);
477 #ifdef CP_DEMANGLE_DEBUG
480 d_dump (struct demangle_component
*dc
, int indent
)
487 printf ("failed demangling\n");
491 for (i
= 0; i
< indent
; ++i
)
496 case DEMANGLE_COMPONENT_NAME
:
497 printf ("name '%.*s'\n", dc
->u
.s_name
.len
, dc
->u
.s_name
.s
);
499 case DEMANGLE_COMPONENT_TEMPLATE_PARAM
:
500 printf ("template parameter %ld\n", dc
->u
.s_number
.number
);
502 case DEMANGLE_COMPONENT_CTOR
:
503 printf ("constructor %d\n", (int) dc
->u
.s_ctor
.kind
);
504 d_dump (dc
->u
.s_ctor
.name
, indent
+ 2);
506 case DEMANGLE_COMPONENT_DTOR
:
507 printf ("destructor %d\n", (int) dc
->u
.s_dtor
.kind
);
508 d_dump (dc
->u
.s_dtor
.name
, indent
+ 2);
510 case DEMANGLE_COMPONENT_SUB_STD
:
511 printf ("standard substitution %s\n", dc
->u
.s_string
.string
);
513 case DEMANGLE_COMPONENT_BUILTIN_TYPE
:
514 printf ("builtin type %s\n", dc
->u
.s_builtin
.type
->name
);
516 case DEMANGLE_COMPONENT_OPERATOR
:
517 printf ("operator %s\n", dc
->u
.s_operator
.op
->name
);
519 case DEMANGLE_COMPONENT_EXTENDED_OPERATOR
:
520 printf ("extended operator with %d args\n",
521 dc
->u
.s_extended_operator
.args
);
522 d_dump (dc
->u
.s_extended_operator
.name
, indent
+ 2);
525 case DEMANGLE_COMPONENT_QUAL_NAME
:
526 printf ("qualified name\n");
528 case DEMANGLE_COMPONENT_LOCAL_NAME
:
529 printf ("local name\n");
531 case DEMANGLE_COMPONENT_TYPED_NAME
:
532 printf ("typed name\n");
534 case DEMANGLE_COMPONENT_TEMPLATE
:
535 printf ("template\n");
537 case DEMANGLE_COMPONENT_VTABLE
:
540 case DEMANGLE_COMPONENT_VTT
:
543 case DEMANGLE_COMPONENT_CONSTRUCTION_VTABLE
:
544 printf ("construction vtable\n");
546 case DEMANGLE_COMPONENT_TYPEINFO
:
547 printf ("typeinfo\n");
549 case DEMANGLE_COMPONENT_TYPEINFO_NAME
:
550 printf ("typeinfo name\n");
552 case DEMANGLE_COMPONENT_TYPEINFO_FN
:
553 printf ("typeinfo function\n");
555 case DEMANGLE_COMPONENT_THUNK
:
558 case DEMANGLE_COMPONENT_VIRTUAL_THUNK
:
559 printf ("virtual thunk\n");
561 case DEMANGLE_COMPONENT_COVARIANT_THUNK
:
562 printf ("covariant thunk\n");
564 case DEMANGLE_COMPONENT_JAVA_CLASS
:
565 printf ("java class\n");
567 case DEMANGLE_COMPONENT_GUARD
:
570 case DEMANGLE_COMPONENT_REFTEMP
:
571 printf ("reference temporary\n");
573 case DEMANGLE_COMPONENT_HIDDEN_ALIAS
:
574 printf ("hidden alias\n");
576 case DEMANGLE_COMPONENT_RESTRICT
:
577 printf ("restrict\n");
579 case DEMANGLE_COMPONENT_VOLATILE
:
580 printf ("volatile\n");
582 case DEMANGLE_COMPONENT_CONST
:
585 case DEMANGLE_COMPONENT_RESTRICT_THIS
:
586 printf ("restrict this\n");
588 case DEMANGLE_COMPONENT_VOLATILE_THIS
:
589 printf ("volatile this\n");
591 case DEMANGLE_COMPONENT_CONST_THIS
:
592 printf ("const this\n");
594 case DEMANGLE_COMPONENT_VENDOR_TYPE_QUAL
:
595 printf ("vendor type qualifier\n");
597 case DEMANGLE_COMPONENT_POINTER
:
598 printf ("pointer\n");
600 case DEMANGLE_COMPONENT_REFERENCE
:
601 printf ("reference\n");
603 case DEMANGLE_COMPONENT_RVALUE_REFERENCE
:
604 printf ("rvalue reference\n");
606 case DEMANGLE_COMPONENT_COMPLEX
:
607 printf ("complex\n");
609 case DEMANGLE_COMPONENT_IMAGINARY
:
610 printf ("imaginary\n");
612 case DEMANGLE_COMPONENT_VENDOR_TYPE
:
613 printf ("vendor type\n");
615 case DEMANGLE_COMPONENT_FUNCTION_TYPE
:
616 printf ("function type\n");
618 case DEMANGLE_COMPONENT_ARRAY_TYPE
:
619 printf ("array type\n");
621 case DEMANGLE_COMPONENT_PTRMEM_TYPE
:
622 printf ("pointer to member type\n");
624 case DEMANGLE_COMPONENT_FIXED_TYPE
:
625 printf ("fixed-point type\n");
627 case DEMANGLE_COMPONENT_ARGLIST
:
628 printf ("argument list\n");
630 case DEMANGLE_COMPONENT_TEMPLATE_ARGLIST
:
631 printf ("template argument list\n");
633 case DEMANGLE_COMPONENT_CAST
:
636 case DEMANGLE_COMPONENT_UNARY
:
637 printf ("unary operator\n");
639 case DEMANGLE_COMPONENT_BINARY
:
640 printf ("binary operator\n");
642 case DEMANGLE_COMPONENT_BINARY_ARGS
:
643 printf ("binary operator arguments\n");
645 case DEMANGLE_COMPONENT_TRINARY
:
646 printf ("trinary operator\n");
648 case DEMANGLE_COMPONENT_TRINARY_ARG1
:
649 printf ("trinary operator arguments 1\n");
651 case DEMANGLE_COMPONENT_TRINARY_ARG2
:
652 printf ("trinary operator arguments 1\n");
654 case DEMANGLE_COMPONENT_LITERAL
:
655 printf ("literal\n");
657 case DEMANGLE_COMPONENT_LITERAL_NEG
:
658 printf ("negative literal\n");
660 case DEMANGLE_COMPONENT_JAVA_RESOURCE
:
661 printf ("java resource\n");
663 case DEMANGLE_COMPONENT_COMPOUND_NAME
:
664 printf ("compound name\n");
666 case DEMANGLE_COMPONENT_CHARACTER
:
667 printf ("character '%c'\n", dc
->u
.s_character
.character
);
669 case DEMANGLE_COMPONENT_DECLTYPE
:
670 printf ("decltype\n");
672 case DEMANGLE_COMPONENT_PACK_EXPANSION
:
673 printf ("pack expansion\n");
677 d_dump (d_left (dc
), indent
+ 2);
678 d_dump (d_right (dc
), indent
+ 2);
681 #endif /* CP_DEMANGLE_DEBUG */
683 /* Fill in a DEMANGLE_COMPONENT_NAME. */
685 CP_STATIC_IF_GLIBCPP_V3
687 cplus_demangle_fill_name (struct demangle_component
*p
, const char *s
, int len
)
689 if (p
== NULL
|| s
== NULL
|| len
== 0)
691 p
->type
= DEMANGLE_COMPONENT_NAME
;
693 p
->u
.s_name
.len
= len
;
697 /* Fill in a DEMANGLE_COMPONENT_EXTENDED_OPERATOR. */
699 CP_STATIC_IF_GLIBCPP_V3
701 cplus_demangle_fill_extended_operator (struct demangle_component
*p
, int args
,
702 struct demangle_component
*name
)
704 if (p
== NULL
|| args
< 0 || name
== NULL
)
706 p
->type
= DEMANGLE_COMPONENT_EXTENDED_OPERATOR
;
707 p
->u
.s_extended_operator
.args
= args
;
708 p
->u
.s_extended_operator
.name
= name
;
712 /* Fill in a DEMANGLE_COMPONENT_CTOR. */
714 CP_STATIC_IF_GLIBCPP_V3
716 cplus_demangle_fill_ctor (struct demangle_component
*p
,
717 enum gnu_v3_ctor_kinds kind
,
718 struct demangle_component
*name
)
722 || (int) kind
< gnu_v3_complete_object_ctor
723 || (int) kind
> gnu_v3_complete_object_allocating_ctor
)
725 p
->type
= DEMANGLE_COMPONENT_CTOR
;
726 p
->u
.s_ctor
.kind
= kind
;
727 p
->u
.s_ctor
.name
= name
;
731 /* Fill in a DEMANGLE_COMPONENT_DTOR. */
733 CP_STATIC_IF_GLIBCPP_V3
735 cplus_demangle_fill_dtor (struct demangle_component
*p
,
736 enum gnu_v3_dtor_kinds kind
,
737 struct demangle_component
*name
)
741 || (int) kind
< gnu_v3_deleting_dtor
742 || (int) kind
> gnu_v3_base_object_dtor
)
744 p
->type
= DEMANGLE_COMPONENT_DTOR
;
745 p
->u
.s_dtor
.kind
= kind
;
746 p
->u
.s_dtor
.name
= name
;
750 /* Add a new component. */
752 static struct demangle_component
*
753 d_make_empty (struct d_info
*di
)
755 struct demangle_component
*p
;
757 if (di
->next_comp
>= di
->num_comps
)
759 p
= &di
->comps
[di
->next_comp
];
764 /* Add a new generic component. */
766 static struct demangle_component
*
767 d_make_comp (struct d_info
*di
, enum demangle_component_type type
,
768 struct demangle_component
*left
,
769 struct demangle_component
*right
)
771 struct demangle_component
*p
;
773 /* We check for errors here. A typical error would be a NULL return
774 from a subroutine. We catch those here, and return NULL
778 /* These types require two parameters. */
779 case DEMANGLE_COMPONENT_QUAL_NAME
:
780 case DEMANGLE_COMPONENT_LOCAL_NAME
:
781 case DEMANGLE_COMPONENT_TYPED_NAME
:
782 case DEMANGLE_COMPONENT_TEMPLATE
:
783 case DEMANGLE_COMPONENT_CONSTRUCTION_VTABLE
:
784 case DEMANGLE_COMPONENT_VENDOR_TYPE_QUAL
:
785 case DEMANGLE_COMPONENT_PTRMEM_TYPE
:
786 case DEMANGLE_COMPONENT_UNARY
:
787 case DEMANGLE_COMPONENT_BINARY
:
788 case DEMANGLE_COMPONENT_BINARY_ARGS
:
789 case DEMANGLE_COMPONENT_TRINARY
:
790 case DEMANGLE_COMPONENT_TRINARY_ARG1
:
791 case DEMANGLE_COMPONENT_TRINARY_ARG2
:
792 case DEMANGLE_COMPONENT_LITERAL
:
793 case DEMANGLE_COMPONENT_LITERAL_NEG
:
794 case DEMANGLE_COMPONENT_COMPOUND_NAME
:
795 if (left
== NULL
|| right
== NULL
)
799 /* These types only require one parameter. */
800 case DEMANGLE_COMPONENT_VTABLE
:
801 case DEMANGLE_COMPONENT_VTT
:
802 case DEMANGLE_COMPONENT_TYPEINFO
:
803 case DEMANGLE_COMPONENT_TYPEINFO_NAME
:
804 case DEMANGLE_COMPONENT_TYPEINFO_FN
:
805 case DEMANGLE_COMPONENT_THUNK
:
806 case DEMANGLE_COMPONENT_VIRTUAL_THUNK
:
807 case DEMANGLE_COMPONENT_COVARIANT_THUNK
:
808 case DEMANGLE_COMPONENT_JAVA_CLASS
:
809 case DEMANGLE_COMPONENT_GUARD
:
810 case DEMANGLE_COMPONENT_REFTEMP
:
811 case DEMANGLE_COMPONENT_HIDDEN_ALIAS
:
812 case DEMANGLE_COMPONENT_POINTER
:
813 case DEMANGLE_COMPONENT_REFERENCE
:
814 case DEMANGLE_COMPONENT_RVALUE_REFERENCE
:
815 case DEMANGLE_COMPONENT_COMPLEX
:
816 case DEMANGLE_COMPONENT_IMAGINARY
:
817 case DEMANGLE_COMPONENT_VENDOR_TYPE
:
818 case DEMANGLE_COMPONENT_CAST
:
819 case DEMANGLE_COMPONENT_JAVA_RESOURCE
:
820 case DEMANGLE_COMPONENT_DECLTYPE
:
821 case DEMANGLE_COMPONENT_PACK_EXPANSION
:
822 case DEMANGLE_COMPONENT_GLOBAL_CONSTRUCTORS
:
823 case DEMANGLE_COMPONENT_GLOBAL_DESTRUCTORS
:
828 /* This needs a right parameter, but the left parameter can be
830 case DEMANGLE_COMPONENT_ARRAY_TYPE
:
835 /* These are allowed to have no parameters--in some cases they
836 will be filled in later. */
837 case DEMANGLE_COMPONENT_FUNCTION_TYPE
:
838 case DEMANGLE_COMPONENT_RESTRICT
:
839 case DEMANGLE_COMPONENT_VOLATILE
:
840 case DEMANGLE_COMPONENT_CONST
:
841 case DEMANGLE_COMPONENT_RESTRICT_THIS
:
842 case DEMANGLE_COMPONENT_VOLATILE_THIS
:
843 case DEMANGLE_COMPONENT_CONST_THIS
:
844 case DEMANGLE_COMPONENT_ARGLIST
:
845 case DEMANGLE_COMPONENT_TEMPLATE_ARGLIST
:
848 /* Other types should not be seen here. */
853 p
= d_make_empty (di
);
857 p
->u
.s_binary
.left
= left
;
858 p
->u
.s_binary
.right
= right
;
863 /* Add a new name component. */
865 static struct demangle_component
*
866 d_make_name (struct d_info
*di
, const char *s
, int len
)
868 struct demangle_component
*p
;
870 p
= d_make_empty (di
);
871 if (! cplus_demangle_fill_name (p
, s
, len
))
876 /* Add a new builtin type component. */
878 static struct demangle_component
*
879 d_make_builtin_type (struct d_info
*di
,
880 const struct demangle_builtin_type_info
*type
)
882 struct demangle_component
*p
;
886 p
= d_make_empty (di
);
889 p
->type
= DEMANGLE_COMPONENT_BUILTIN_TYPE
;
890 p
->u
.s_builtin
.type
= type
;
895 /* Add a new operator component. */
897 static struct demangle_component
*
898 d_make_operator (struct d_info
*di
, const struct demangle_operator_info
*op
)
900 struct demangle_component
*p
;
902 p
= d_make_empty (di
);
905 p
->type
= DEMANGLE_COMPONENT_OPERATOR
;
906 p
->u
.s_operator
.op
= op
;
911 /* Add a new extended operator component. */
913 static struct demangle_component
*
914 d_make_extended_operator (struct d_info
*di
, int args
,
915 struct demangle_component
*name
)
917 struct demangle_component
*p
;
919 p
= d_make_empty (di
);
920 if (! cplus_demangle_fill_extended_operator (p
, args
, name
))
925 /* Add a new constructor component. */
927 static struct demangle_component
*
928 d_make_ctor (struct d_info
*di
, enum gnu_v3_ctor_kinds kind
,
929 struct demangle_component
*name
)
931 struct demangle_component
*p
;
933 p
= d_make_empty (di
);
934 if (! cplus_demangle_fill_ctor (p
, kind
, name
))
939 /* Add a new destructor component. */
941 static struct demangle_component
*
942 d_make_dtor (struct d_info
*di
, enum gnu_v3_dtor_kinds kind
,
943 struct demangle_component
*name
)
945 struct demangle_component
*p
;
947 p
= d_make_empty (di
);
948 if (! cplus_demangle_fill_dtor (p
, kind
, name
))
953 /* Add a new template parameter. */
955 static struct demangle_component
*
956 d_make_template_param (struct d_info
*di
, long i
)
958 struct demangle_component
*p
;
960 p
= d_make_empty (di
);
963 p
->type
= DEMANGLE_COMPONENT_TEMPLATE_PARAM
;
964 p
->u
.s_number
.number
= i
;
969 /* Add a new function parameter. */
971 static struct demangle_component
*
972 d_make_function_param (struct d_info
*di
, long i
)
974 struct demangle_component
*p
;
976 p
= d_make_empty (di
);
979 p
->type
= DEMANGLE_COMPONENT_FUNCTION_PARAM
;
980 p
->u
.s_number
.number
= i
;
985 /* Add a new standard substitution component. */
987 static struct demangle_component
*
988 d_make_sub (struct d_info
*di
, const char *name
, int len
)
990 struct demangle_component
*p
;
992 p
= d_make_empty (di
);
995 p
->type
= DEMANGLE_COMPONENT_SUB_STD
;
996 p
->u
.s_string
.string
= name
;
997 p
->u
.s_string
.len
= len
;
1002 /* <mangled-name> ::= _Z <encoding>
1004 TOP_LEVEL is non-zero when called at the top level. */
1006 CP_STATIC_IF_GLIBCPP_V3
1007 struct demangle_component
*
1008 cplus_demangle_mangled_name (struct d_info
*di
, int top_level
)
1010 if (! d_check_char (di
, '_')
1011 /* Allow missing _ if not at toplevel to work around a
1012 bug in G++ abi-version=2 mangling; see the comment in
1013 write_template_arg. */
1016 if (! d_check_char (di
, 'Z'))
1018 return d_encoding (di
, top_level
);
1021 /* Return whether a function should have a return type. The argument
1022 is the function name, which may be qualified in various ways. The
1023 rules are that template functions have return types with some
1024 exceptions, function types which are not part of a function name
1025 mangling have return types with some exceptions, and non-template
1026 function names do not have return types. The exceptions are that
1027 constructors, destructors, and conversion operators do not have
1031 has_return_type (struct demangle_component
*dc
)
1039 case DEMANGLE_COMPONENT_TEMPLATE
:
1040 return ! is_ctor_dtor_or_conversion (d_left (dc
));
1041 case DEMANGLE_COMPONENT_RESTRICT_THIS
:
1042 case DEMANGLE_COMPONENT_VOLATILE_THIS
:
1043 case DEMANGLE_COMPONENT_CONST_THIS
:
1044 return has_return_type (d_left (dc
));
1048 /* Return whether a name is a constructor, a destructor, or a
1049 conversion operator. */
1052 is_ctor_dtor_or_conversion (struct demangle_component
*dc
)
1060 case DEMANGLE_COMPONENT_QUAL_NAME
:
1061 case DEMANGLE_COMPONENT_LOCAL_NAME
:
1062 return is_ctor_dtor_or_conversion (d_right (dc
));
1063 case DEMANGLE_COMPONENT_CTOR
:
1064 case DEMANGLE_COMPONENT_DTOR
:
1065 case DEMANGLE_COMPONENT_CAST
:
1070 /* <encoding> ::= <(function) name> <bare-function-type>
1074 TOP_LEVEL is non-zero when called at the top level, in which case
1075 if DMGL_PARAMS is not set we do not demangle the function
1076 parameters. We only set this at the top level, because otherwise
1077 we would not correctly demangle names in local scopes. */
1079 static struct demangle_component
*
1080 d_encoding (struct d_info
*di
, int top_level
)
1082 char peek
= d_peek_char (di
);
1084 if (peek
== 'G' || peek
== 'T')
1085 return d_special_name (di
);
1088 struct demangle_component
*dc
;
1092 if (dc
!= NULL
&& top_level
&& (di
->options
& DMGL_PARAMS
) == 0)
1094 /* Strip off any initial CV-qualifiers, as they really apply
1095 to the `this' parameter, and they were not output by the
1096 v2 demangler without DMGL_PARAMS. */
1097 while (dc
->type
== DEMANGLE_COMPONENT_RESTRICT_THIS
1098 || dc
->type
== DEMANGLE_COMPONENT_VOLATILE_THIS
1099 || dc
->type
== DEMANGLE_COMPONENT_CONST_THIS
)
1102 /* If the top level is a DEMANGLE_COMPONENT_LOCAL_NAME, then
1103 there may be CV-qualifiers on its right argument which
1104 really apply here; this happens when parsing a class
1105 which is local to a function. */
1106 if (dc
->type
== DEMANGLE_COMPONENT_LOCAL_NAME
)
1108 struct demangle_component
*dcr
;
1111 while (dcr
->type
== DEMANGLE_COMPONENT_RESTRICT_THIS
1112 || dcr
->type
== DEMANGLE_COMPONENT_VOLATILE_THIS
1113 || dcr
->type
== DEMANGLE_COMPONENT_CONST_THIS
)
1115 dc
->u
.s_binary
.right
= dcr
;
1121 peek
= d_peek_char (di
);
1122 if (dc
== NULL
|| peek
== '\0' || peek
== 'E')
1124 return d_make_comp (di
, DEMANGLE_COMPONENT_TYPED_NAME
, dc
,
1125 d_bare_function_type (di
, has_return_type (dc
)));
1129 /* <name> ::= <nested-name>
1131 ::= <unscoped-template-name> <template-args>
1134 <unscoped-name> ::= <unqualified-name>
1135 ::= St <unqualified-name>
1137 <unscoped-template-name> ::= <unscoped-name>
1141 static struct demangle_component
*
1142 d_name (struct d_info
*di
)
1144 char peek
= d_peek_char (di
);
1145 struct demangle_component
*dc
;
1150 return d_nested_name (di
);
1153 return d_local_name (di
);
1156 return d_unqualified_name (di
);
1162 if (d_peek_next_char (di
) != 't')
1164 dc
= d_substitution (di
, 0);
1170 dc
= d_make_comp (di
, DEMANGLE_COMPONENT_QUAL_NAME
,
1171 d_make_name (di
, "std", 3),
1172 d_unqualified_name (di
));
1177 if (d_peek_char (di
) != 'I')
1179 /* The grammar does not permit this case to occur if we
1180 called d_substitution() above (i.e., subst == 1). We
1181 don't bother to check. */
1185 /* This is <template-args>, which means that we just saw
1186 <unscoped-template-name>, which is a substitution
1187 candidate if we didn't just get it from a
1191 if (! d_add_substitution (di
, dc
))
1194 dc
= d_make_comp (di
, DEMANGLE_COMPONENT_TEMPLATE
, dc
,
1195 d_template_args (di
));
1202 dc
= d_unqualified_name (di
);
1203 if (d_peek_char (di
) == 'I')
1205 /* This is <template-args>, which means that we just saw
1206 <unscoped-template-name>, which is a substitution
1208 if (! d_add_substitution (di
, dc
))
1210 dc
= d_make_comp (di
, DEMANGLE_COMPONENT_TEMPLATE
, dc
,
1211 d_template_args (di
));
1217 /* <nested-name> ::= N [<CV-qualifiers>] <prefix> <unqualified-name> E
1218 ::= N [<CV-qualifiers>] <template-prefix> <template-args> E
1221 static struct demangle_component
*
1222 d_nested_name (struct d_info
*di
)
1224 struct demangle_component
*ret
;
1225 struct demangle_component
**pret
;
1227 if (! d_check_char (di
, 'N'))
1230 pret
= d_cv_qualifiers (di
, &ret
, 1);
1234 *pret
= d_prefix (di
);
1238 if (! d_check_char (di
, 'E'))
1244 /* <prefix> ::= <prefix> <unqualified-name>
1245 ::= <template-prefix> <template-args>
1246 ::= <template-param>
1250 <template-prefix> ::= <prefix> <(template) unqualified-name>
1251 ::= <template-param>
1255 static struct demangle_component
*
1256 d_prefix (struct d_info
*di
)
1258 struct demangle_component
*ret
= NULL
;
1263 enum demangle_component_type comb_type
;
1264 struct demangle_component
*dc
;
1266 peek
= d_peek_char (di
);
1270 /* The older code accepts a <local-name> here, but I don't see
1271 that in the grammar. The older code does not accept a
1272 <template-param> here. */
1274 comb_type
= DEMANGLE_COMPONENT_QUAL_NAME
;
1280 dc
= d_unqualified_name (di
);
1281 else if (peek
== 'S')
1282 dc
= d_substitution (di
, 1);
1283 else if (peek
== 'I')
1287 comb_type
= DEMANGLE_COMPONENT_TEMPLATE
;
1288 dc
= d_template_args (di
);
1290 else if (peek
== 'T')
1291 dc
= d_template_param (di
);
1292 else if (peek
== 'E')
1300 ret
= d_make_comp (di
, comb_type
, ret
, dc
);
1302 if (peek
!= 'S' && d_peek_char (di
) != 'E')
1304 if (! d_add_substitution (di
, ret
))
1310 /* <unqualified-name> ::= <operator-name>
1311 ::= <ctor-dtor-name>
1313 ::= <local-source-name>
1315 <local-source-name> ::= L <source-name> <discriminator>
1318 static struct demangle_component
*
1319 d_unqualified_name (struct d_info
*di
)
1323 peek
= d_peek_char (di
);
1324 if (IS_DIGIT (peek
))
1325 return d_source_name (di
);
1326 else if (IS_LOWER (peek
))
1328 struct demangle_component
*ret
;
1330 ret
= d_operator_name (di
);
1331 if (ret
!= NULL
&& ret
->type
== DEMANGLE_COMPONENT_OPERATOR
)
1332 di
->expansion
+= sizeof "operator" + ret
->u
.s_operator
.op
->len
- 2;
1335 else if (peek
== 'C' || peek
== 'D')
1336 return d_ctor_dtor_name (di
);
1337 else if (peek
== 'L')
1339 struct demangle_component
* ret
;
1343 ret
= d_source_name (di
);
1346 if (! d_discriminator (di
))
1354 /* <source-name> ::= <(positive length) number> <identifier> */
1356 static struct demangle_component
*
1357 d_source_name (struct d_info
*di
)
1360 struct demangle_component
*ret
;
1362 len
= d_number (di
);
1365 ret
= d_identifier (di
, len
);
1366 di
->last_name
= ret
;
1370 /* number ::= [n] <(non-negative decimal integer)> */
1373 d_number (struct d_info
*di
)
1380 peek
= d_peek_char (di
);
1385 peek
= d_peek_char (di
);
1391 if (! IS_DIGIT (peek
))
1397 ret
= ret
* 10 + peek
- '0';
1399 peek
= d_peek_char (di
);
1403 /* identifier ::= <(unqualified source code identifier)> */
1405 static struct demangle_component
*
1406 d_identifier (struct d_info
*di
, int len
)
1412 if (di
->send
- name
< len
)
1415 d_advance (di
, len
);
1417 /* A Java mangled name may have a trailing '$' if it is a C++
1418 keyword. This '$' is not included in the length count. We just
1420 if ((di
->options
& DMGL_JAVA
) != 0
1421 && d_peek_char (di
) == '$')
1424 /* Look for something which looks like a gcc encoding of an
1425 anonymous namespace, and replace it with a more user friendly
1427 if (len
>= (int) ANONYMOUS_NAMESPACE_PREFIX_LEN
+ 2
1428 && memcmp (name
, ANONYMOUS_NAMESPACE_PREFIX
,
1429 ANONYMOUS_NAMESPACE_PREFIX_LEN
) == 0)
1433 s
= name
+ ANONYMOUS_NAMESPACE_PREFIX_LEN
;
1434 if ((*s
== '.' || *s
== '_' || *s
== '$')
1437 di
->expansion
-= len
- sizeof "(anonymous namespace)";
1438 return d_make_name (di
, "(anonymous namespace)",
1439 sizeof "(anonymous namespace)" - 1);
1443 return d_make_name (di
, name
, len
);
1446 /* operator_name ::= many different two character encodings.
1448 ::= v <digit> <source-name>
1451 #define NL(s) s, (sizeof s) - 1
1453 CP_STATIC_IF_GLIBCPP_V3
1454 const struct demangle_operator_info cplus_demangle_operators
[] =
1456 { "aN", NL ("&="), 2 },
1457 { "aS", NL ("="), 2 },
1458 { "aa", NL ("&&"), 2 },
1459 { "ad", NL ("&"), 1 },
1460 { "an", NL ("&"), 2 },
1461 { "cl", NL ("()"), 2 },
1462 { "cm", NL (","), 2 },
1463 { "co", NL ("~"), 1 },
1464 { "dV", NL ("/="), 2 },
1465 { "da", NL ("delete[]"), 1 },
1466 { "de", NL ("*"), 1 },
1467 { "dl", NL ("delete"), 1 },
1468 { "dt", NL ("."), 2 },
1469 { "dv", NL ("/"), 2 },
1470 { "eO", NL ("^="), 2 },
1471 { "eo", NL ("^"), 2 },
1472 { "eq", NL ("=="), 2 },
1473 { "ge", NL (">="), 2 },
1474 { "gt", NL (">"), 2 },
1475 { "ix", NL ("[]"), 2 },
1476 { "lS", NL ("<<="), 2 },
1477 { "le", NL ("<="), 2 },
1478 { "ls", NL ("<<"), 2 },
1479 { "lt", NL ("<"), 2 },
1480 { "mI", NL ("-="), 2 },
1481 { "mL", NL ("*="), 2 },
1482 { "mi", NL ("-"), 2 },
1483 { "ml", NL ("*"), 2 },
1484 { "mm", NL ("--"), 1 },
1485 { "na", NL ("new[]"), 1 },
1486 { "ne", NL ("!="), 2 },
1487 { "ng", NL ("-"), 1 },
1488 { "nt", NL ("!"), 1 },
1489 { "nw", NL ("new"), 1 },
1490 { "oR", NL ("|="), 2 },
1491 { "oo", NL ("||"), 2 },
1492 { "or", NL ("|"), 2 },
1493 { "pL", NL ("+="), 2 },
1494 { "pl", NL ("+"), 2 },
1495 { "pm", NL ("->*"), 2 },
1496 { "pp", NL ("++"), 1 },
1497 { "ps", NL ("+"), 1 },
1498 { "pt", NL ("->"), 2 },
1499 { "qu", NL ("?"), 3 },
1500 { "rM", NL ("%="), 2 },
1501 { "rS", NL (">>="), 2 },
1502 { "rm", NL ("%"), 2 },
1503 { "rs", NL (">>"), 2 },
1504 { "st", NL ("sizeof "), 1 },
1505 { "sz", NL ("sizeof "), 1 },
1506 { "at", NL ("alignof "), 1 },
1507 { "az", NL ("alignof "), 1 },
1508 { NULL
, NULL
, 0, 0 }
1511 static struct demangle_component
*
1512 d_operator_name (struct d_info
*di
)
1517 c1
= d_next_char (di
);
1518 c2
= d_next_char (di
);
1519 if (c1
== 'v' && IS_DIGIT (c2
))
1520 return d_make_extended_operator (di
, c2
- '0', d_source_name (di
));
1521 else if (c1
== 'c' && c2
== 'v')
1522 return d_make_comp (di
, DEMANGLE_COMPONENT_CAST
,
1523 cplus_demangle_type (di
), NULL
);
1526 /* LOW is the inclusive lower bound. */
1528 /* HIGH is the exclusive upper bound. We subtract one to ignore
1529 the sentinel at the end of the array. */
1530 int high
= ((sizeof (cplus_demangle_operators
)
1531 / sizeof (cplus_demangle_operators
[0]))
1537 const struct demangle_operator_info
*p
;
1539 i
= low
+ (high
- low
) / 2;
1540 p
= cplus_demangle_operators
+ i
;
1542 if (c1
== p
->code
[0] && c2
== p
->code
[1])
1543 return d_make_operator (di
, p
);
1545 if (c1
< p
->code
[0] || (c1
== p
->code
[0] && c2
< p
->code
[1]))
1555 static struct demangle_component
*
1556 d_make_character (struct d_info
*di
, int c
)
1558 struct demangle_component
*p
;
1559 p
= d_make_empty (di
);
1562 p
->type
= DEMANGLE_COMPONENT_CHARACTER
;
1563 p
->u
.s_character
.character
= c
;
1568 static struct demangle_component
*
1569 d_java_resource (struct d_info
*di
)
1571 struct demangle_component
*p
= NULL
;
1572 struct demangle_component
*next
= NULL
;
1577 len
= d_number (di
);
1581 /* Eat the leading '_'. */
1582 if (d_next_char (di
) != '_')
1595 /* Each chunk is either a '$' escape... */
1613 next
= d_make_character (di
, c
);
1621 /* ... or a sequence of characters. */
1624 while (i
< len
&& str
[i
] && str
[i
] != '$')
1627 next
= d_make_name (di
, str
, i
);
1640 p
= d_make_comp (di
, DEMANGLE_COMPONENT_COMPOUND_NAME
, p
, next
);
1646 p
= d_make_comp (di
, DEMANGLE_COMPONENT_JAVA_RESOURCE
, p
, NULL
);
1651 /* <special-name> ::= TV <type>
1655 ::= GV <(object) name>
1656 ::= T <call-offset> <(base) encoding>
1657 ::= Tc <call-offset> <call-offset> <(base) encoding>
1658 Also g++ extensions:
1659 ::= TC <type> <(offset) number> _ <(base) type>
1664 ::= Gr <resource name>
1667 static struct demangle_component
*
1668 d_special_name (struct d_info
*di
)
1670 di
->expansion
+= 20;
1671 if (d_check_char (di
, 'T'))
1673 switch (d_next_char (di
))
1677 return d_make_comp (di
, DEMANGLE_COMPONENT_VTABLE
,
1678 cplus_demangle_type (di
), NULL
);
1680 di
->expansion
-= 10;
1681 return d_make_comp (di
, DEMANGLE_COMPONENT_VTT
,
1682 cplus_demangle_type (di
), NULL
);
1684 return d_make_comp (di
, DEMANGLE_COMPONENT_TYPEINFO
,
1685 cplus_demangle_type (di
), NULL
);
1687 return d_make_comp (di
, DEMANGLE_COMPONENT_TYPEINFO_NAME
,
1688 cplus_demangle_type (di
), NULL
);
1691 if (! d_call_offset (di
, 'h'))
1693 return d_make_comp (di
, DEMANGLE_COMPONENT_THUNK
,
1694 d_encoding (di
, 0), NULL
);
1697 if (! d_call_offset (di
, 'v'))
1699 return d_make_comp (di
, DEMANGLE_COMPONENT_VIRTUAL_THUNK
,
1700 d_encoding (di
, 0), NULL
);
1703 if (! d_call_offset (di
, '\0'))
1705 if (! d_call_offset (di
, '\0'))
1707 return d_make_comp (di
, DEMANGLE_COMPONENT_COVARIANT_THUNK
,
1708 d_encoding (di
, 0), NULL
);
1712 struct demangle_component
*derived_type
;
1714 struct demangle_component
*base_type
;
1716 derived_type
= cplus_demangle_type (di
);
1717 offset
= d_number (di
);
1720 if (! d_check_char (di
, '_'))
1722 base_type
= cplus_demangle_type (di
);
1723 /* We don't display the offset. FIXME: We should display
1724 it in verbose mode. */
1726 return d_make_comp (di
, DEMANGLE_COMPONENT_CONSTRUCTION_VTABLE
,
1727 base_type
, derived_type
);
1731 return d_make_comp (di
, DEMANGLE_COMPONENT_TYPEINFO_FN
,
1732 cplus_demangle_type (di
), NULL
);
1734 return d_make_comp (di
, DEMANGLE_COMPONENT_JAVA_CLASS
,
1735 cplus_demangle_type (di
), NULL
);
1741 else if (d_check_char (di
, 'G'))
1743 switch (d_next_char (di
))
1746 return d_make_comp (di
, DEMANGLE_COMPONENT_GUARD
, d_name (di
), NULL
);
1749 return d_make_comp (di
, DEMANGLE_COMPONENT_REFTEMP
, d_name (di
),
1753 return d_make_comp (di
, DEMANGLE_COMPONENT_HIDDEN_ALIAS
,
1754 d_encoding (di
, 0), NULL
);
1757 return d_java_resource (di
);
1767 /* <call-offset> ::= h <nv-offset> _
1770 <nv-offset> ::= <(offset) number>
1772 <v-offset> ::= <(offset) number> _ <(virtual offset) number>
1774 The C parameter, if not '\0', is a character we just read which is
1775 the start of the <call-offset>.
1777 We don't display the offset information anywhere. FIXME: We should
1778 display it in verbose mode. */
1781 d_call_offset (struct d_info
*di
, int c
)
1784 c
= d_next_char (di
);
1791 if (! d_check_char (di
, '_'))
1798 if (! d_check_char (di
, '_'))
1804 /* <ctor-dtor-name> ::= C1
1812 static struct demangle_component
*
1813 d_ctor_dtor_name (struct d_info
*di
)
1815 if (di
->last_name
!= NULL
)
1817 if (di
->last_name
->type
== DEMANGLE_COMPONENT_NAME
)
1818 di
->expansion
+= di
->last_name
->u
.s_name
.len
;
1819 else if (di
->last_name
->type
== DEMANGLE_COMPONENT_SUB_STD
)
1820 di
->expansion
+= di
->last_name
->u
.s_string
.len
;
1822 switch (d_peek_char (di
))
1826 enum gnu_v3_ctor_kinds kind
;
1828 switch (d_peek_next_char (di
))
1831 kind
= gnu_v3_complete_object_ctor
;
1834 kind
= gnu_v3_base_object_ctor
;
1837 kind
= gnu_v3_complete_object_allocating_ctor
;
1843 return d_make_ctor (di
, kind
, di
->last_name
);
1848 enum gnu_v3_dtor_kinds kind
;
1850 switch (d_peek_next_char (di
))
1853 kind
= gnu_v3_deleting_dtor
;
1856 kind
= gnu_v3_complete_object_dtor
;
1859 kind
= gnu_v3_base_object_dtor
;
1865 return d_make_dtor (di
, kind
, di
->last_name
);
1873 /* <type> ::= <builtin-type>
1875 ::= <class-enum-type>
1877 ::= <pointer-to-member-type>
1878 ::= <template-param>
1879 ::= <template-template-param> <template-args>
1881 ::= <CV-qualifiers> <type>
1884 ::= O <type> (C++0x)
1887 ::= U <source-name> <type>
1889 <builtin-type> ::= various one letter codes
1893 CP_STATIC_IF_GLIBCPP_V3
1894 const struct demangle_builtin_type_info
1895 cplus_demangle_builtin_types
[D_BUILTIN_TYPE_COUNT
] =
1897 /* a */ { NL ("signed char"), NL ("signed char"), D_PRINT_DEFAULT
},
1898 /* b */ { NL ("bool"), NL ("boolean"), D_PRINT_BOOL
},
1899 /* c */ { NL ("char"), NL ("byte"), D_PRINT_DEFAULT
},
1900 /* d */ { NL ("double"), NL ("double"), D_PRINT_FLOAT
},
1901 /* e */ { NL ("long double"), NL ("long double"), D_PRINT_FLOAT
},
1902 /* f */ { NL ("float"), NL ("float"), D_PRINT_FLOAT
},
1903 /* g */ { NL ("__float128"), NL ("__float128"), D_PRINT_FLOAT
},
1904 /* h */ { NL ("unsigned char"), NL ("unsigned char"), D_PRINT_DEFAULT
},
1905 /* i */ { NL ("int"), NL ("int"), D_PRINT_INT
},
1906 /* j */ { NL ("unsigned int"), NL ("unsigned"), D_PRINT_UNSIGNED
},
1907 /* k */ { NULL
, 0, NULL
, 0, D_PRINT_DEFAULT
},
1908 /* l */ { NL ("long"), NL ("long"), D_PRINT_LONG
},
1909 /* m */ { NL ("unsigned long"), NL ("unsigned long"), D_PRINT_UNSIGNED_LONG
},
1910 /* n */ { NL ("__int128"), NL ("__int128"), D_PRINT_DEFAULT
},
1911 /* o */ { NL ("unsigned __int128"), NL ("unsigned __int128"),
1913 /* p */ { NULL
, 0, NULL
, 0, D_PRINT_DEFAULT
},
1914 /* q */ { NULL
, 0, NULL
, 0, D_PRINT_DEFAULT
},
1915 /* r */ { NULL
, 0, NULL
, 0, D_PRINT_DEFAULT
},
1916 /* s */ { NL ("short"), NL ("short"), D_PRINT_DEFAULT
},
1917 /* t */ { NL ("unsigned short"), NL ("unsigned short"), D_PRINT_DEFAULT
},
1918 /* u */ { NULL
, 0, NULL
, 0, D_PRINT_DEFAULT
},
1919 /* v */ { NL ("void"), NL ("void"), D_PRINT_VOID
},
1920 /* w */ { NL ("wchar_t"), NL ("char"), D_PRINT_DEFAULT
},
1921 /* x */ { NL ("long long"), NL ("long"), D_PRINT_LONG_LONG
},
1922 /* y */ { NL ("unsigned long long"), NL ("unsigned long long"),
1923 D_PRINT_UNSIGNED_LONG_LONG
},
1924 /* z */ { NL ("..."), NL ("..."), D_PRINT_DEFAULT
},
1925 /* 26 */ { NL ("decimal32"), NL ("decimal32"), D_PRINT_DEFAULT
},
1926 /* 27 */ { NL ("decimal64"), NL ("decimal64"), D_PRINT_DEFAULT
},
1927 /* 28 */ { NL ("decimal128"), NL ("decimal128"), D_PRINT_DEFAULT
},
1928 /* 29 */ { NL ("half"), NL ("half"), D_PRINT_FLOAT
},
1929 /* 30 */ { NL ("char16_t"), NL ("char16_t"), D_PRINT_DEFAULT
},
1930 /* 31 */ { NL ("char32_t"), NL ("char32_t"), D_PRINT_DEFAULT
},
1933 CP_STATIC_IF_GLIBCPP_V3
1934 struct demangle_component
*
1935 cplus_demangle_type (struct d_info
*di
)
1938 struct demangle_component
*ret
;
1941 /* The ABI specifies that when CV-qualifiers are used, the base type
1942 is substitutable, and the fully qualified type is substitutable,
1943 but the base type with a strict subset of the CV-qualifiers is
1944 not substitutable. The natural recursive implementation of the
1945 CV-qualifiers would cause subsets to be substitutable, so instead
1946 we pull them all off now.
1948 FIXME: The ABI says that order-insensitive vendor qualifiers
1949 should be handled in the same way, but we have no way to tell
1950 which vendor qualifiers are order-insensitive and which are
1951 order-sensitive. So we just assume that they are all
1952 order-sensitive. g++ 3.4 supports only one vendor qualifier,
1953 __vector, and it treats it as order-sensitive when mangling
1956 peek
= d_peek_char (di
);
1957 if (peek
== 'r' || peek
== 'V' || peek
== 'K')
1959 struct demangle_component
**pret
;
1961 pret
= d_cv_qualifiers (di
, &ret
, 0);
1964 *pret
= cplus_demangle_type (di
);
1965 if (! *pret
|| ! d_add_substitution (di
, ret
))
1974 case 'a': case 'b': case 'c': case 'd': case 'e': case 'f': case 'g':
1975 case 'h': case 'i': case 'j': case 'l': case 'm': case 'n':
1976 case 'o': case 's': case 't':
1977 case 'v': case 'w': case 'x': case 'y': case 'z':
1978 ret
= d_make_builtin_type (di
,
1979 &cplus_demangle_builtin_types
[peek
- 'a']);
1980 di
->expansion
+= ret
->u
.s_builtin
.type
->len
;
1987 ret
= d_make_comp (di
, DEMANGLE_COMPONENT_VENDOR_TYPE
,
1988 d_source_name (di
), NULL
);
1992 ret
= d_function_type (di
);
1995 case '0': case '1': case '2': case '3': case '4':
1996 case '5': case '6': case '7': case '8': case '9':
1999 ret
= d_class_enum_type (di
);
2003 ret
= d_array_type (di
);
2007 ret
= d_pointer_to_member_type (di
);
2011 ret
= d_template_param (di
);
2012 if (d_peek_char (di
) == 'I')
2014 /* This is <template-template-param> <template-args>. The
2015 <template-template-param> part is a substitution
2017 if (! d_add_substitution (di
, ret
))
2019 ret
= d_make_comp (di
, DEMANGLE_COMPONENT_TEMPLATE
, ret
,
2020 d_template_args (di
));
2025 /* If this is a special substitution, then it is the start of
2026 <class-enum-type>. */
2030 peek_next
= d_peek_next_char (di
);
2031 if (IS_DIGIT (peek_next
)
2033 || IS_UPPER (peek_next
))
2035 ret
= d_substitution (di
, 0);
2036 /* The substituted name may have been a template name and
2037 may be followed by tepmlate args. */
2038 if (d_peek_char (di
) == 'I')
2039 ret
= d_make_comp (di
, DEMANGLE_COMPONENT_TEMPLATE
, ret
,
2040 d_template_args (di
));
2046 ret
= d_class_enum_type (di
);
2047 /* If the substitution was a complete type, then it is not
2048 a new substitution candidate. However, if the
2049 substitution was followed by template arguments, then
2050 the whole thing is a substitution candidate. */
2051 if (ret
!= NULL
&& ret
->type
== DEMANGLE_COMPONENT_SUB_STD
)
2059 ret
= d_make_comp (di
, DEMANGLE_COMPONENT_RVALUE_REFERENCE
,
2060 cplus_demangle_type (di
), NULL
);
2065 ret
= d_make_comp (di
, DEMANGLE_COMPONENT_POINTER
,
2066 cplus_demangle_type (di
), NULL
);
2071 ret
= d_make_comp (di
, DEMANGLE_COMPONENT_REFERENCE
,
2072 cplus_demangle_type (di
), NULL
);
2077 ret
= d_make_comp (di
, DEMANGLE_COMPONENT_COMPLEX
,
2078 cplus_demangle_type (di
), NULL
);
2083 ret
= d_make_comp (di
, DEMANGLE_COMPONENT_IMAGINARY
,
2084 cplus_demangle_type (di
), NULL
);
2089 ret
= d_source_name (di
);
2090 ret
= d_make_comp (di
, DEMANGLE_COMPONENT_VENDOR_TYPE_QUAL
,
2091 cplus_demangle_type (di
), ret
);
2097 peek
= d_next_char (di
);
2102 /* decltype (expression) */
2103 ret
= d_make_comp (di
, DEMANGLE_COMPONENT_DECLTYPE
,
2104 d_expression (di
), NULL
);
2105 if (ret
&& d_next_char (di
) != 'E')
2110 /* Pack expansion. */
2111 ret
= d_make_comp (di
, DEMANGLE_COMPONENT_PACK_EXPANSION
,
2112 cplus_demangle_type (di
), NULL
);
2116 /* 32-bit decimal floating point */
2117 ret
= d_make_builtin_type (di
, &cplus_demangle_builtin_types
[26]);
2118 di
->expansion
+= ret
->u
.s_builtin
.type
->len
;
2122 ret
= d_make_builtin_type (di
, &cplus_demangle_builtin_types
[27]);
2123 di
->expansion
+= ret
->u
.s_builtin
.type
->len
;
2127 ret
= d_make_builtin_type (di
, &cplus_demangle_builtin_types
[28]);
2128 di
->expansion
+= ret
->u
.s_builtin
.type
->len
;
2131 /* 16-bit half-precision FP */
2132 ret
= d_make_builtin_type (di
, &cplus_demangle_builtin_types
[29]);
2133 di
->expansion
+= ret
->u
.s_builtin
.type
->len
;
2137 ret
= d_make_builtin_type (di
, &cplus_demangle_builtin_types
[30]);
2138 di
->expansion
+= ret
->u
.s_builtin
.type
->len
;
2142 ret
= d_make_builtin_type (di
, &cplus_demangle_builtin_types
[31]);
2143 di
->expansion
+= ret
->u
.s_builtin
.type
->len
;
2147 /* Fixed point types. DF<int bits><length><fract bits><sat> */
2148 ret
= d_make_empty (di
);
2149 ret
->type
= DEMANGLE_COMPONENT_FIXED_TYPE
;
2150 if ((ret
->u
.s_fixed
.accum
= IS_DIGIT (d_peek_char (di
))))
2151 /* For demangling we don't care about the bits. */
2153 ret
->u
.s_fixed
.length
= cplus_demangle_type (di
);
2155 peek
= d_next_char (di
);
2156 ret
->u
.s_fixed
.sat
= (peek
== 's');
2170 if (! d_add_substitution (di
, ret
))
2177 /* <CV-qualifiers> ::= [r] [V] [K] */
2179 static struct demangle_component
**
2180 d_cv_qualifiers (struct d_info
*di
,
2181 struct demangle_component
**pret
, int member_fn
)
2185 peek
= d_peek_char (di
);
2186 while (peek
== 'r' || peek
== 'V' || peek
== 'K')
2188 enum demangle_component_type t
;
2194 ? DEMANGLE_COMPONENT_RESTRICT_THIS
2195 : DEMANGLE_COMPONENT_RESTRICT
);
2196 di
->expansion
+= sizeof "restrict";
2198 else if (peek
== 'V')
2201 ? DEMANGLE_COMPONENT_VOLATILE_THIS
2202 : DEMANGLE_COMPONENT_VOLATILE
);
2203 di
->expansion
+= sizeof "volatile";
2208 ? DEMANGLE_COMPONENT_CONST_THIS
2209 : DEMANGLE_COMPONENT_CONST
);
2210 di
->expansion
+= sizeof "const";
2213 *pret
= d_make_comp (di
, t
, NULL
, NULL
);
2216 pret
= &d_left (*pret
);
2218 peek
= d_peek_char (di
);
2224 /* <function-type> ::= F [Y] <bare-function-type> E */
2226 static struct demangle_component
*
2227 d_function_type (struct d_info
*di
)
2229 struct demangle_component
*ret
;
2231 if (! d_check_char (di
, 'F'))
2233 if (d_peek_char (di
) == 'Y')
2235 /* Function has C linkage. We don't print this information.
2236 FIXME: We should print it in verbose mode. */
2239 ret
= d_bare_function_type (di
, 1);
2240 if (! d_check_char (di
, 'E'))
2245 /* <bare-function-type> ::= [J]<type>+ */
2247 static struct demangle_component
*
2248 d_bare_function_type (struct d_info
*di
, int has_return_type
)
2250 struct demangle_component
*return_type
;
2251 struct demangle_component
*tl
;
2252 struct demangle_component
**ptl
;
2255 /* Detect special qualifier indicating that the first argument
2256 is the return type. */
2257 peek
= d_peek_char (di
);
2261 has_return_type
= 1;
2269 struct demangle_component
*type
;
2271 peek
= d_peek_char (di
);
2272 if (peek
== '\0' || peek
== 'E')
2274 type
= cplus_demangle_type (di
);
2277 if (has_return_type
)
2280 has_return_type
= 0;
2284 *ptl
= d_make_comp (di
, DEMANGLE_COMPONENT_ARGLIST
, type
, NULL
);
2287 ptl
= &d_right (*ptl
);
2291 /* There should be at least one parameter type besides the optional
2292 return type. A function which takes no arguments will have a
2293 single parameter type void. */
2297 /* If we have a single parameter type void, omit it. */
2298 if (d_right (tl
) == NULL
2299 && d_left (tl
)->type
== DEMANGLE_COMPONENT_BUILTIN_TYPE
2300 && d_left (tl
)->u
.s_builtin
.type
->print
== D_PRINT_VOID
)
2302 di
->expansion
-= d_left (tl
)->u
.s_builtin
.type
->len
;
2306 return d_make_comp (di
, DEMANGLE_COMPONENT_FUNCTION_TYPE
, return_type
, tl
);
2309 /* <class-enum-type> ::= <name> */
2311 static struct demangle_component
*
2312 d_class_enum_type (struct d_info
*di
)
2317 /* <array-type> ::= A <(positive dimension) number> _ <(element) type>
2318 ::= A [<(dimension) expression>] _ <(element) type>
2321 static struct demangle_component
*
2322 d_array_type (struct d_info
*di
)
2325 struct demangle_component
*dim
;
2327 if (! d_check_char (di
, 'A'))
2330 peek
= d_peek_char (di
);
2333 else if (IS_DIGIT (peek
))
2341 peek
= d_peek_char (di
);
2343 while (IS_DIGIT (peek
));
2344 dim
= d_make_name (di
, s
, d_str (di
) - s
);
2350 dim
= d_expression (di
);
2355 if (! d_check_char (di
, '_'))
2358 return d_make_comp (di
, DEMANGLE_COMPONENT_ARRAY_TYPE
, dim
,
2359 cplus_demangle_type (di
));
2362 /* <pointer-to-member-type> ::= M <(class) type> <(member) type> */
2364 static struct demangle_component
*
2365 d_pointer_to_member_type (struct d_info
*di
)
2367 struct demangle_component
*cl
;
2368 struct demangle_component
*mem
;
2369 struct demangle_component
**pmem
;
2371 if (! d_check_char (di
, 'M'))
2374 cl
= cplus_demangle_type (di
);
2376 /* The ABI specifies that any type can be a substitution source, and
2377 that M is followed by two types, and that when a CV-qualified
2378 type is seen both the base type and the CV-qualified types are
2379 substitution sources. The ABI also specifies that for a pointer
2380 to a CV-qualified member function, the qualifiers are attached to
2381 the second type. Given the grammar, a plain reading of the ABI
2382 suggests that both the CV-qualified member function and the
2383 non-qualified member function are substitution sources. However,
2384 g++ does not work that way. g++ treats only the CV-qualified
2385 member function as a substitution source. FIXME. So to work
2386 with g++, we need to pull off the CV-qualifiers here, in order to
2387 avoid calling add_substitution() in cplus_demangle_type(). But
2388 for a CV-qualified member which is not a function, g++ does
2389 follow the ABI, so we need to handle that case here by calling
2390 d_add_substitution ourselves. */
2392 pmem
= d_cv_qualifiers (di
, &mem
, 1);
2395 *pmem
= cplus_demangle_type (di
);
2399 if (pmem
!= &mem
&& (*pmem
)->type
!= DEMANGLE_COMPONENT_FUNCTION_TYPE
)
2401 if (! d_add_substitution (di
, mem
))
2405 return d_make_comp (di
, DEMANGLE_COMPONENT_PTRMEM_TYPE
, cl
, mem
);
2408 /* <template-param> ::= T_
2409 ::= T <(parameter-2 non-negative) number> _
2412 static struct demangle_component
*
2413 d_template_param (struct d_info
*di
)
2417 if (! d_check_char (di
, 'T'))
2420 if (d_peek_char (di
) == '_')
2424 param
= d_number (di
);
2430 if (! d_check_char (di
, '_'))
2435 return d_make_template_param (di
, param
);
2438 /* <template-args> ::= I <template-arg>+ E */
2440 static struct demangle_component
*
2441 d_template_args (struct d_info
*di
)
2443 struct demangle_component
*hold_last_name
;
2444 struct demangle_component
*al
;
2445 struct demangle_component
**pal
;
2447 /* Preserve the last name we saw--don't let the template arguments
2448 clobber it, as that would give us the wrong name for a subsequent
2449 constructor or destructor. */
2450 hold_last_name
= di
->last_name
;
2452 if (! d_check_char (di
, 'I'))
2455 if (d_peek_char (di
) == 'E')
2457 /* An argument pack can be empty. */
2459 return d_make_comp (di
, DEMANGLE_COMPONENT_TEMPLATE_ARGLIST
, NULL
, NULL
);
2466 struct demangle_component
*a
;
2468 a
= d_template_arg (di
);
2472 *pal
= d_make_comp (di
, DEMANGLE_COMPONENT_TEMPLATE_ARGLIST
, a
, NULL
);
2475 pal
= &d_right (*pal
);
2477 if (d_peek_char (di
) == 'E')
2484 di
->last_name
= hold_last_name
;
2489 /* <template-arg> ::= <type>
2490 ::= X <expression> E
2494 static struct demangle_component
*
2495 d_template_arg (struct d_info
*di
)
2497 struct demangle_component
*ret
;
2499 switch (d_peek_char (di
))
2503 ret
= d_expression (di
);
2504 if (! d_check_char (di
, 'E'))
2509 return d_expr_primary (di
);
2512 /* An argument pack. */
2513 return d_template_args (di
);
2516 return cplus_demangle_type (di
);
2520 /* Subroutine of <expression> ::= cl <expression>+ E */
2522 static struct demangle_component
*
2523 d_exprlist (struct d_info
*di
)
2525 struct demangle_component
*list
= NULL
;
2526 struct demangle_component
**p
= &list
;
2528 if (d_peek_char (di
) == 'E')
2531 return d_make_comp (di
, DEMANGLE_COMPONENT_ARGLIST
, NULL
, NULL
);
2536 struct demangle_component
*arg
= d_expression (di
);
2540 *p
= d_make_comp (di
, DEMANGLE_COMPONENT_ARGLIST
, arg
, NULL
);
2545 if (d_peek_char (di
) == 'E')
2555 /* <expression> ::= <(unary) operator-name> <expression>
2556 ::= <(binary) operator-name> <expression> <expression>
2557 ::= <(trinary) operator-name> <expression> <expression> <expression>
2558 ::= cl <expression>+ E
2560 ::= <template-param>
2561 ::= sr <type> <unqualified-name>
2562 ::= sr <type> <unqualified-name> <template-args>
2566 static struct demangle_component
*
2567 d_expression (struct d_info
*di
)
2571 peek
= d_peek_char (di
);
2573 return d_expr_primary (di
);
2574 else if (peek
== 'T')
2575 return d_template_param (di
);
2576 else if (peek
== 's' && d_peek_next_char (di
) == 'r')
2578 struct demangle_component
*type
;
2579 struct demangle_component
*name
;
2582 type
= cplus_demangle_type (di
);
2583 name
= d_unqualified_name (di
);
2584 if (d_peek_char (di
) != 'I')
2585 return d_make_comp (di
, DEMANGLE_COMPONENT_QUAL_NAME
, type
, name
);
2587 return d_make_comp (di
, DEMANGLE_COMPONENT_QUAL_NAME
, type
,
2588 d_make_comp (di
, DEMANGLE_COMPONENT_TEMPLATE
, name
,
2589 d_template_args (di
)));
2591 else if (peek
== 's' && d_peek_next_char (di
) == 'p')
2594 return d_make_comp (di
, DEMANGLE_COMPONENT_PACK_EXPANSION
,
2595 d_expression (di
), NULL
);
2597 else if (peek
== 'f' && d_peek_next_char (di
) == 'p')
2599 /* Function parameter used in a late-specified return type. */
2602 if (d_peek_char (di
) == '_')
2606 index
= d_number (di
);
2612 if (! d_check_char (di
, '_'))
2615 return d_make_function_param (di
, index
);
2617 else if (IS_DIGIT (peek
))
2619 /* We can get an unqualified name as an expression in the case of
2620 a dependent member access, i.e. decltype(T().i). */
2621 struct demangle_component
*name
= d_unqualified_name (di
);
2624 if (d_peek_char (di
) == 'I')
2625 return d_make_comp (di
, DEMANGLE_COMPONENT_TEMPLATE
, name
,
2626 d_template_args (di
));
2632 struct demangle_component
*op
;
2635 op
= d_operator_name (di
);
2639 if (op
->type
== DEMANGLE_COMPONENT_OPERATOR
)
2640 di
->expansion
+= op
->u
.s_operator
.op
->len
- 2;
2642 if (op
->type
== DEMANGLE_COMPONENT_OPERATOR
2643 && strcmp (op
->u
.s_operator
.op
->code
, "st") == 0)
2644 return d_make_comp (di
, DEMANGLE_COMPONENT_UNARY
, op
,
2645 cplus_demangle_type (di
));
2651 case DEMANGLE_COMPONENT_OPERATOR
:
2652 args
= op
->u
.s_operator
.op
->args
;
2654 case DEMANGLE_COMPONENT_EXTENDED_OPERATOR
:
2655 args
= op
->u
.s_extended_operator
.args
;
2657 case DEMANGLE_COMPONENT_CAST
:
2666 struct demangle_component
*operand
;
2667 if (op
->type
== DEMANGLE_COMPONENT_CAST
2668 && d_check_char (di
, '_'))
2669 operand
= d_exprlist (di
);
2671 operand
= d_expression (di
);
2672 return d_make_comp (di
, DEMANGLE_COMPONENT_UNARY
, op
,
2677 struct demangle_component
*left
;
2678 struct demangle_component
*right
;
2680 left
= d_expression (di
);
2681 if (!strcmp (op
->u
.s_operator
.op
->code
, "cl"))
2682 right
= d_exprlist (di
);
2684 right
= d_expression (di
);
2686 return d_make_comp (di
, DEMANGLE_COMPONENT_BINARY
, op
,
2688 DEMANGLE_COMPONENT_BINARY_ARGS
,
2693 struct demangle_component
*first
;
2694 struct demangle_component
*second
;
2696 first
= d_expression (di
);
2697 second
= d_expression (di
);
2698 return d_make_comp (di
, DEMANGLE_COMPONENT_TRINARY
, op
,
2700 DEMANGLE_COMPONENT_TRINARY_ARG1
,
2703 DEMANGLE_COMPONENT_TRINARY_ARG2
,
2705 d_expression (di
))));
2713 /* <expr-primary> ::= L <type> <(value) number> E
2714 ::= L <type> <(value) float> E
2715 ::= L <mangled-name> E
2718 static struct demangle_component
*
2719 d_expr_primary (struct d_info
*di
)
2721 struct demangle_component
*ret
;
2723 if (! d_check_char (di
, 'L'))
2725 if (d_peek_char (di
) == '_'
2726 /* Workaround for G++ bug; see comment in write_template_arg. */
2727 || d_peek_char (di
) == 'Z')
2728 ret
= cplus_demangle_mangled_name (di
, 0);
2731 struct demangle_component
*type
;
2732 enum demangle_component_type t
;
2735 type
= cplus_demangle_type (di
);
2739 /* If we have a type we know how to print, we aren't going to
2740 print the type name itself. */
2741 if (type
->type
== DEMANGLE_COMPONENT_BUILTIN_TYPE
2742 && type
->u
.s_builtin
.type
->print
!= D_PRINT_DEFAULT
)
2743 di
->expansion
-= type
->u
.s_builtin
.type
->len
;
2745 /* Rather than try to interpret the literal value, we just
2746 collect it as a string. Note that it's possible to have a
2747 floating point literal here. The ABI specifies that the
2748 format of such literals is machine independent. That's fine,
2749 but what's not fine is that versions of g++ up to 3.2 with
2750 -fabi-version=1 used upper case letters in the hex constant,
2751 and dumped out gcc's internal representation. That makes it
2752 hard to tell where the constant ends, and hard to dump the
2753 constant in any readable form anyhow. We don't attempt to
2754 handle these cases. */
2756 t
= DEMANGLE_COMPONENT_LITERAL
;
2757 if (d_peek_char (di
) == 'n')
2759 t
= DEMANGLE_COMPONENT_LITERAL_NEG
;
2763 while (d_peek_char (di
) != 'E')
2765 if (d_peek_char (di
) == '\0')
2769 ret
= d_make_comp (di
, t
, type
, d_make_name (di
, s
, d_str (di
) - s
));
2771 if (! d_check_char (di
, 'E'))
2776 /* <local-name> ::= Z <(function) encoding> E <(entity) name> [<discriminator>]
2777 ::= Z <(function) encoding> E s [<discriminator>]
2780 static struct demangle_component
*
2781 d_local_name (struct d_info
*di
)
2783 struct demangle_component
*function
;
2785 if (! d_check_char (di
, 'Z'))
2788 function
= d_encoding (di
, 0);
2790 if (! d_check_char (di
, 'E'))
2793 if (d_peek_char (di
) == 's')
2796 if (! d_discriminator (di
))
2798 return d_make_comp (di
, DEMANGLE_COMPONENT_LOCAL_NAME
, function
,
2799 d_make_name (di
, "string literal",
2800 sizeof "string literal" - 1));
2804 struct demangle_component
*name
;
2807 if (! d_discriminator (di
))
2809 return d_make_comp (di
, DEMANGLE_COMPONENT_LOCAL_NAME
, function
, name
);
2813 /* <discriminator> ::= _ <(non-negative) number>
2815 We demangle the discriminator, but we don't print it out. FIXME:
2816 We should print it out in verbose mode. */
2819 d_discriminator (struct d_info
*di
)
2823 if (d_peek_char (di
) != '_')
2826 discrim
= d_number (di
);
2832 /* Add a new substitution. */
2835 d_add_substitution (struct d_info
*di
, struct demangle_component
*dc
)
2839 if (di
->next_sub
>= di
->num_subs
)
2841 di
->subs
[di
->next_sub
] = dc
;
2846 /* <substitution> ::= S <seq-id> _
2856 If PREFIX is non-zero, then this type is being used as a prefix in
2857 a qualified name. In this case, for the standard substitutions, we
2858 need to check whether we are being used as a prefix for a
2859 constructor or destructor, and return a full template name.
2860 Otherwise we will get something like std::iostream::~iostream()
2861 which does not correspond particularly well to any function which
2862 actually appears in the source.
2865 static const struct d_standard_sub_info standard_subs
[] =
2870 { 'a', NL ("std::allocator"),
2871 NL ("std::allocator"),
2873 { 'b', NL ("std::basic_string"),
2874 NL ("std::basic_string"),
2875 NL ("basic_string") },
2876 { 's', NL ("std::string"),
2877 NL ("std::basic_string<char, std::char_traits<char>, std::allocator<char> >"),
2878 NL ("basic_string") },
2879 { 'i', NL ("std::istream"),
2880 NL ("std::basic_istream<char, std::char_traits<char> >"),
2881 NL ("basic_istream") },
2882 { 'o', NL ("std::ostream"),
2883 NL ("std::basic_ostream<char, std::char_traits<char> >"),
2884 NL ("basic_ostream") },
2885 { 'd', NL ("std::iostream"),
2886 NL ("std::basic_iostream<char, std::char_traits<char> >"),
2887 NL ("basic_iostream") }
2890 static struct demangle_component
*
2891 d_substitution (struct d_info
*di
, int prefix
)
2895 if (! d_check_char (di
, 'S'))
2898 c
= d_next_char (di
);
2899 if (c
== '_' || IS_DIGIT (c
) || IS_UPPER (c
))
2908 unsigned int new_id
;
2911 new_id
= id
* 36 + c
- '0';
2912 else if (IS_UPPER (c
))
2913 new_id
= id
* 36 + c
- 'A' + 10;
2919 c
= d_next_char (di
);
2926 if (id
>= (unsigned int) di
->next_sub
)
2931 return di
->subs
[id
];
2936 const struct d_standard_sub_info
*p
;
2937 const struct d_standard_sub_info
*pend
;
2939 verbose
= (di
->options
& DMGL_VERBOSE
) != 0;
2940 if (! verbose
&& prefix
)
2944 peek
= d_peek_char (di
);
2945 if (peek
== 'C' || peek
== 'D')
2949 pend
= (&standard_subs
[0]
2950 + sizeof standard_subs
/ sizeof standard_subs
[0]);
2951 for (p
= &standard_subs
[0]; p
< pend
; ++p
)
2958 if (p
->set_last_name
!= NULL
)
2959 di
->last_name
= d_make_sub (di
, p
->set_last_name
,
2960 p
->set_last_name_len
);
2963 s
= p
->full_expansion
;
2968 s
= p
->simple_expansion
;
2969 len
= p
->simple_len
;
2971 di
->expansion
+= len
;
2972 return d_make_sub (di
, s
, len
);
2980 /* Initialize a growable string. */
2983 d_growable_string_init (struct d_growable_string
*dgs
, size_t estimate
)
2988 dgs
->allocation_failure
= 0;
2991 d_growable_string_resize (dgs
, estimate
);
2994 /* Grow a growable string to a given size. */
2997 d_growable_string_resize (struct d_growable_string
*dgs
, size_t need
)
3002 if (dgs
->allocation_failure
)
3005 /* Start allocation at two bytes to avoid any possibility of confusion
3006 with the special value of 1 used as a return in *palc to indicate
3007 allocation failures. */
3008 newalc
= dgs
->alc
> 0 ? dgs
->alc
: 2;
3009 while (newalc
< need
)
3012 newbuf
= (char *) realloc (dgs
->buf
, newalc
);
3019 dgs
->allocation_failure
= 1;
3026 /* Append a buffer to a growable string. */
3029 d_growable_string_append_buffer (struct d_growable_string
*dgs
,
3030 const char *s
, size_t l
)
3034 need
= dgs
->len
+ l
+ 1;
3035 if (need
> dgs
->alc
)
3036 d_growable_string_resize (dgs
, need
);
3038 if (dgs
->allocation_failure
)
3041 memcpy (dgs
->buf
+ dgs
->len
, s
, l
);
3042 dgs
->buf
[dgs
->len
+ l
] = '\0';
3046 /* Bridge growable strings to the callback mechanism. */
3049 d_growable_string_callback_adapter (const char *s
, size_t l
, void *opaque
)
3051 struct d_growable_string
*dgs
= (struct d_growable_string
*) opaque
;
3053 d_growable_string_append_buffer (dgs
, s
, l
);
3056 /* Initialize a print information structure. */
3059 d_print_init (struct d_print_info
*dpi
, int options
,
3060 demangle_callbackref callback
, void *opaque
)
3062 dpi
->options
= options
;
3064 dpi
->last_char
= '\0';
3065 dpi
->templates
= NULL
;
3066 dpi
->modifiers
= NULL
;
3068 dpi
->callback
= callback
;
3069 dpi
->opaque
= opaque
;
3071 dpi
->demangle_failure
= 0;
3074 /* Indicate that an error occurred during printing, and test for error. */
3077 d_print_error (struct d_print_info
*dpi
)
3079 dpi
->demangle_failure
= 1;
3083 d_print_saw_error (struct d_print_info
*dpi
)
3085 return dpi
->demangle_failure
!= 0;
3088 /* Flush buffered characters to the callback. */
3091 d_print_flush (struct d_print_info
*dpi
)
3093 dpi
->buf
[dpi
->len
] = '\0';
3094 dpi
->callback (dpi
->buf
, dpi
->len
, dpi
->opaque
);
3098 /* Append characters and buffers for printing. */
3101 d_append_char (struct d_print_info
*dpi
, char c
)
3103 if (dpi
->len
== sizeof (dpi
->buf
) - 1)
3104 d_print_flush (dpi
);
3106 dpi
->buf
[dpi
->len
++] = c
;
3111 d_append_buffer (struct d_print_info
*dpi
, const char *s
, size_t l
)
3115 for (i
= 0; i
< l
; i
++)
3116 d_append_char (dpi
, s
[i
]);
3120 d_append_string (struct d_print_info
*dpi
, const char *s
)
3122 d_append_buffer (dpi
, s
, strlen (s
));
3126 d_last_char (struct d_print_info
*dpi
)
3128 return dpi
->last_char
;
3131 /* Turn components into a human readable string. OPTIONS is the
3132 options bits passed to the demangler. DC is the tree to print.
3133 CALLBACK is a function to call to flush demangled string segments
3134 as they fill the intermediate buffer, and OPAQUE is a generalized
3135 callback argument. On success, this returns 1. On failure,
3136 it returns 0, indicating a bad parse. It does not use heap
3137 memory to build an output string, so cannot encounter memory
3138 allocation failure. */
3140 CP_STATIC_IF_GLIBCPP_V3
3142 cplus_demangle_print_callback (int options
,
3143 const struct demangle_component
*dc
,
3144 demangle_callbackref callback
, void *opaque
)
3146 struct d_print_info dpi
;
3148 d_print_init (&dpi
, options
, callback
, opaque
);
3150 d_print_comp (&dpi
, dc
);
3152 d_print_flush (&dpi
);
3154 return ! d_print_saw_error (&dpi
);
3157 /* Turn components into a human readable string. OPTIONS is the
3158 options bits passed to the demangler. DC is the tree to print.
3159 ESTIMATE is a guess at the length of the result. This returns a
3160 string allocated by malloc, or NULL on error. On success, this
3161 sets *PALC to the size of the allocated buffer. On failure, this
3162 sets *PALC to 0 for a bad parse, or to 1 for a memory allocation
3165 CP_STATIC_IF_GLIBCPP_V3
3167 cplus_demangle_print (int options
, const struct demangle_component
*dc
,
3168 int estimate
, size_t *palc
)
3170 struct d_growable_string dgs
;
3172 d_growable_string_init (&dgs
, estimate
);
3174 if (! cplus_demangle_print_callback (options
, dc
,
3175 d_growable_string_callback_adapter
,
3183 *palc
= dgs
.allocation_failure
? 1 : dgs
.alc
;
3187 /* Returns the I'th element of the template arglist ARGS, or NULL on
3190 static struct demangle_component
*
3191 d_index_template_argument (struct demangle_component
*args
, int i
)
3193 struct demangle_component
*a
;
3199 if (a
->type
!= DEMANGLE_COMPONENT_TEMPLATE_ARGLIST
)
3205 if (i
!= 0 || a
== NULL
)
3211 /* Returns the template argument from the current context indicated by DC,
3212 which is a DEMANGLE_COMPONENT_TEMPLATE_PARAM, or NULL. */
3214 static struct demangle_component
*
3215 d_lookup_template_argument (struct d_print_info
*dpi
,
3216 const struct demangle_component
*dc
)
3218 if (dpi
->templates
== NULL
)
3220 d_print_error (dpi
);
3224 return d_index_template_argument
3225 (d_right (dpi
->templates
->template_decl
),
3226 dc
->u
.s_number
.number
);
3229 /* Returns a template argument pack used in DC (any will do), or NULL. */
3231 static struct demangle_component
*
3232 d_find_pack (struct d_print_info
*dpi
,
3233 const struct demangle_component
*dc
)
3235 struct demangle_component
*a
;
3241 case DEMANGLE_COMPONENT_TEMPLATE_PARAM
:
3242 a
= d_lookup_template_argument (dpi
, dc
);
3243 if (a
&& a
->type
== DEMANGLE_COMPONENT_TEMPLATE_ARGLIST
)
3247 case DEMANGLE_COMPONENT_PACK_EXPANSION
:
3250 case DEMANGLE_COMPONENT_NAME
:
3251 case DEMANGLE_COMPONENT_OPERATOR
:
3252 case DEMANGLE_COMPONENT_BUILTIN_TYPE
:
3253 case DEMANGLE_COMPONENT_SUB_STD
:
3254 case DEMANGLE_COMPONENT_CHARACTER
:
3255 case DEMANGLE_COMPONENT_FUNCTION_PARAM
:
3258 case DEMANGLE_COMPONENT_EXTENDED_OPERATOR
:
3259 return d_find_pack (dpi
, dc
->u
.s_extended_operator
.name
);
3260 case DEMANGLE_COMPONENT_CTOR
:
3261 return d_find_pack (dpi
, dc
->u
.s_ctor
.name
);
3262 case DEMANGLE_COMPONENT_DTOR
:
3263 return d_find_pack (dpi
, dc
->u
.s_dtor
.name
);
3266 a
= d_find_pack (dpi
, d_left (dc
));
3269 return d_find_pack (dpi
, d_right (dc
));
3273 /* Returns the length of the template argument pack DC. */
3276 d_pack_length (const struct demangle_component
*dc
)
3279 while (dc
&& dc
->type
== DEMANGLE_COMPONENT_TEMPLATE_ARGLIST
3280 && d_left (dc
) != NULL
)
3288 /* DC is a component of a mangled expression. Print it, wrapped in parens
3292 d_print_subexpr (struct d_print_info
*dpi
,
3293 const struct demangle_component
*dc
)
3296 if (dc
->type
== DEMANGLE_COMPONENT_NAME
3297 || dc
->type
== DEMANGLE_COMPONENT_FUNCTION_PARAM
)
3300 d_append_char (dpi
, '(');
3301 d_print_comp (dpi
, dc
);
3303 d_append_char (dpi
, ')');
3306 /* Subroutine to handle components. */
3309 d_print_comp (struct d_print_info
*dpi
,
3310 const struct demangle_component
*dc
)
3314 d_print_error (dpi
);
3317 if (d_print_saw_error (dpi
))
3322 case DEMANGLE_COMPONENT_NAME
:
3323 if ((dpi
->options
& DMGL_JAVA
) == 0)
3324 d_append_buffer (dpi
, dc
->u
.s_name
.s
, dc
->u
.s_name
.len
);
3326 d_print_java_identifier (dpi
, dc
->u
.s_name
.s
, dc
->u
.s_name
.len
);
3329 case DEMANGLE_COMPONENT_QUAL_NAME
:
3330 case DEMANGLE_COMPONENT_LOCAL_NAME
:
3331 d_print_comp (dpi
, d_left (dc
));
3332 if ((dpi
->options
& DMGL_JAVA
) == 0)
3333 d_append_string (dpi
, "::");
3335 d_append_char (dpi
, '.');
3336 d_print_comp (dpi
, d_right (dc
));
3339 case DEMANGLE_COMPONENT_TYPED_NAME
:
3341 struct d_print_mod
*hold_modifiers
;
3342 struct demangle_component
*typed_name
;
3343 struct d_print_mod adpm
[4];
3345 struct d_print_template dpt
;
3347 /* Pass the name down to the type so that it can be printed in
3348 the right place for the type. We also have to pass down
3349 any CV-qualifiers, which apply to the this parameter. */
3350 hold_modifiers
= dpi
->modifiers
;
3353 typed_name
= d_left (dc
);
3354 while (typed_name
!= NULL
)
3356 if (i
>= sizeof adpm
/ sizeof adpm
[0])
3358 d_print_error (dpi
);
3362 adpm
[i
].next
= dpi
->modifiers
;
3363 dpi
->modifiers
= &adpm
[i
];
3364 adpm
[i
].mod
= typed_name
;
3365 adpm
[i
].printed
= 0;
3366 adpm
[i
].templates
= dpi
->templates
;
3369 if (typed_name
->type
!= DEMANGLE_COMPONENT_RESTRICT_THIS
3370 && typed_name
->type
!= DEMANGLE_COMPONENT_VOLATILE_THIS
3371 && typed_name
->type
!= DEMANGLE_COMPONENT_CONST_THIS
)
3374 typed_name
= d_left (typed_name
);
3377 if (typed_name
== NULL
)
3379 d_print_error (dpi
);
3383 /* If typed_name is a template, then it applies to the
3384 function type as well. */
3385 if (typed_name
->type
== DEMANGLE_COMPONENT_TEMPLATE
)
3387 dpt
.next
= dpi
->templates
;
3388 dpi
->templates
= &dpt
;
3389 dpt
.template_decl
= typed_name
;
3392 /* If typed_name is a DEMANGLE_COMPONENT_LOCAL_NAME, then
3393 there may be CV-qualifiers on its right argument which
3394 really apply here; this happens when parsing a class which
3395 is local to a function. */
3396 if (typed_name
->type
== DEMANGLE_COMPONENT_LOCAL_NAME
)
3398 struct demangle_component
*local_name
;
3400 local_name
= d_right (typed_name
);
3401 while (local_name
->type
== DEMANGLE_COMPONENT_RESTRICT_THIS
3402 || local_name
->type
== DEMANGLE_COMPONENT_VOLATILE_THIS
3403 || local_name
->type
== DEMANGLE_COMPONENT_CONST_THIS
)
3405 if (i
>= sizeof adpm
/ sizeof adpm
[0])
3407 d_print_error (dpi
);
3411 adpm
[i
] = adpm
[i
- 1];
3412 adpm
[i
].next
= &adpm
[i
- 1];
3413 dpi
->modifiers
= &adpm
[i
];
3415 adpm
[i
- 1].mod
= local_name
;
3416 adpm
[i
- 1].printed
= 0;
3417 adpm
[i
- 1].templates
= dpi
->templates
;
3420 local_name
= d_left (local_name
);
3424 d_print_comp (dpi
, d_right (dc
));
3426 if (typed_name
->type
== DEMANGLE_COMPONENT_TEMPLATE
)
3427 dpi
->templates
= dpt
.next
;
3429 /* If the modifiers didn't get printed by the type, print them
3434 if (! adpm
[i
].printed
)
3436 d_append_char (dpi
, ' ');
3437 d_print_mod (dpi
, adpm
[i
].mod
);
3441 dpi
->modifiers
= hold_modifiers
;
3446 case DEMANGLE_COMPONENT_TEMPLATE
:
3448 struct d_print_mod
*hold_dpm
;
3449 struct demangle_component
*dcl
;
3451 /* Don't push modifiers into a template definition. Doing so
3452 could give the wrong definition for a template argument.
3453 Instead, treat the template essentially as a name. */
3455 hold_dpm
= dpi
->modifiers
;
3456 dpi
->modifiers
= NULL
;
3460 if ((dpi
->options
& DMGL_JAVA
) != 0
3461 && dcl
->type
== DEMANGLE_COMPONENT_NAME
3462 && dcl
->u
.s_name
.len
== 6
3463 && strncmp (dcl
->u
.s_name
.s
, "JArray", 6) == 0)
3465 /* Special-case Java arrays, so that JArray<TYPE> appears
3466 instead as TYPE[]. */
3468 d_print_comp (dpi
, d_right (dc
));
3469 d_append_string (dpi
, "[]");
3473 d_print_comp (dpi
, dcl
);
3474 if (d_last_char (dpi
) == '<')
3475 d_append_char (dpi
, ' ');
3476 d_append_char (dpi
, '<');
3477 d_print_comp (dpi
, d_right (dc
));
3478 /* Avoid generating two consecutive '>' characters, to avoid
3479 the C++ syntactic ambiguity. */
3480 if (d_last_char (dpi
) == '>')
3481 d_append_char (dpi
, ' ');
3482 d_append_char (dpi
, '>');
3485 dpi
->modifiers
= hold_dpm
;
3490 case DEMANGLE_COMPONENT_TEMPLATE_PARAM
:
3492 struct d_print_template
*hold_dpt
;
3493 struct demangle_component
*a
= d_lookup_template_argument (dpi
, dc
);
3495 if (a
&& a
->type
== DEMANGLE_COMPONENT_TEMPLATE_ARGLIST
)
3496 a
= d_index_template_argument (a
, dpi
->pack_index
);
3500 d_print_error (dpi
);
3504 /* While processing this parameter, we need to pop the list of
3505 templates. This is because the template parameter may
3506 itself be a reference to a parameter of an outer
3509 hold_dpt
= dpi
->templates
;
3510 dpi
->templates
= hold_dpt
->next
;
3512 d_print_comp (dpi
, a
);
3514 dpi
->templates
= hold_dpt
;
3519 case DEMANGLE_COMPONENT_CTOR
:
3520 d_print_comp (dpi
, dc
->u
.s_ctor
.name
);
3523 case DEMANGLE_COMPONENT_DTOR
:
3524 d_append_char (dpi
, '~');
3525 d_print_comp (dpi
, dc
->u
.s_dtor
.name
);
3528 case DEMANGLE_COMPONENT_VTABLE
:
3529 d_append_string (dpi
, "vtable for ");
3530 d_print_comp (dpi
, d_left (dc
));
3533 case DEMANGLE_COMPONENT_VTT
:
3534 d_append_string (dpi
, "VTT for ");
3535 d_print_comp (dpi
, d_left (dc
));
3538 case DEMANGLE_COMPONENT_CONSTRUCTION_VTABLE
:
3539 d_append_string (dpi
, "construction vtable for ");
3540 d_print_comp (dpi
, d_left (dc
));
3541 d_append_string (dpi
, "-in-");
3542 d_print_comp (dpi
, d_right (dc
));
3545 case DEMANGLE_COMPONENT_TYPEINFO
:
3546 d_append_string (dpi
, "typeinfo for ");
3547 d_print_comp (dpi
, d_left (dc
));
3550 case DEMANGLE_COMPONENT_TYPEINFO_NAME
:
3551 d_append_string (dpi
, "typeinfo name for ");
3552 d_print_comp (dpi
, d_left (dc
));
3555 case DEMANGLE_COMPONENT_TYPEINFO_FN
:
3556 d_append_string (dpi
, "typeinfo fn for ");
3557 d_print_comp (dpi
, d_left (dc
));
3560 case DEMANGLE_COMPONENT_THUNK
:
3561 d_append_string (dpi
, "non-virtual thunk to ");
3562 d_print_comp (dpi
, d_left (dc
));
3565 case DEMANGLE_COMPONENT_VIRTUAL_THUNK
:
3566 d_append_string (dpi
, "virtual thunk to ");
3567 d_print_comp (dpi
, d_left (dc
));
3570 case DEMANGLE_COMPONENT_COVARIANT_THUNK
:
3571 d_append_string (dpi
, "covariant return thunk to ");
3572 d_print_comp (dpi
, d_left (dc
));
3575 case DEMANGLE_COMPONENT_JAVA_CLASS
:
3576 d_append_string (dpi
, "java Class for ");
3577 d_print_comp (dpi
, d_left (dc
));
3580 case DEMANGLE_COMPONENT_GUARD
:
3581 d_append_string (dpi
, "guard variable for ");
3582 d_print_comp (dpi
, d_left (dc
));
3585 case DEMANGLE_COMPONENT_REFTEMP
:
3586 d_append_string (dpi
, "reference temporary for ");
3587 d_print_comp (dpi
, d_left (dc
));
3590 case DEMANGLE_COMPONENT_HIDDEN_ALIAS
:
3591 d_append_string (dpi
, "hidden alias for ");
3592 d_print_comp (dpi
, d_left (dc
));
3595 case DEMANGLE_COMPONENT_SUB_STD
:
3596 d_append_buffer (dpi
, dc
->u
.s_string
.string
, dc
->u
.s_string
.len
);
3599 case DEMANGLE_COMPONENT_RESTRICT
:
3600 case DEMANGLE_COMPONENT_VOLATILE
:
3601 case DEMANGLE_COMPONENT_CONST
:
3603 struct d_print_mod
*pdpm
;
3605 /* When printing arrays, it's possible to have cases where the
3606 same CV-qualifier gets pushed on the stack multiple times.
3607 We only need to print it once. */
3609 for (pdpm
= dpi
->modifiers
; pdpm
!= NULL
; pdpm
= pdpm
->next
)
3611 if (! pdpm
->printed
)
3613 if (pdpm
->mod
->type
!= DEMANGLE_COMPONENT_RESTRICT
3614 && pdpm
->mod
->type
!= DEMANGLE_COMPONENT_VOLATILE
3615 && pdpm
->mod
->type
!= DEMANGLE_COMPONENT_CONST
)
3617 if (pdpm
->mod
->type
== dc
->type
)
3619 d_print_comp (dpi
, d_left (dc
));
3626 case DEMANGLE_COMPONENT_RESTRICT_THIS
:
3627 case DEMANGLE_COMPONENT_VOLATILE_THIS
:
3628 case DEMANGLE_COMPONENT_CONST_THIS
:
3629 case DEMANGLE_COMPONENT_VENDOR_TYPE_QUAL
:
3630 case DEMANGLE_COMPONENT_POINTER
:
3631 case DEMANGLE_COMPONENT_REFERENCE
:
3632 case DEMANGLE_COMPONENT_RVALUE_REFERENCE
:
3633 case DEMANGLE_COMPONENT_COMPLEX
:
3634 case DEMANGLE_COMPONENT_IMAGINARY
:
3636 /* We keep a list of modifiers on the stack. */
3637 struct d_print_mod dpm
;
3639 dpm
.next
= dpi
->modifiers
;
3640 dpi
->modifiers
= &dpm
;
3643 dpm
.templates
= dpi
->templates
;
3645 d_print_comp (dpi
, d_left (dc
));
3647 /* If the modifier didn't get printed by the type, print it
3650 d_print_mod (dpi
, dc
);
3652 dpi
->modifiers
= dpm
.next
;
3657 case DEMANGLE_COMPONENT_BUILTIN_TYPE
:
3658 if ((dpi
->options
& DMGL_JAVA
) == 0)
3659 d_append_buffer (dpi
, dc
->u
.s_builtin
.type
->name
,
3660 dc
->u
.s_builtin
.type
->len
);
3662 d_append_buffer (dpi
, dc
->u
.s_builtin
.type
->java_name
,
3663 dc
->u
.s_builtin
.type
->java_len
);
3666 case DEMANGLE_COMPONENT_VENDOR_TYPE
:
3667 d_print_comp (dpi
, d_left (dc
));
3670 case DEMANGLE_COMPONENT_FUNCTION_TYPE
:
3672 if ((dpi
->options
& DMGL_RET_POSTFIX
) != 0)
3673 d_print_function_type (dpi
, dc
, dpi
->modifiers
);
3675 /* Print return type if present */
3676 if (d_left (dc
) != NULL
)
3678 struct d_print_mod dpm
;
3680 /* We must pass this type down as a modifier in order to
3681 print it in the right location. */
3682 dpm
.next
= dpi
->modifiers
;
3683 dpi
->modifiers
= &dpm
;
3686 dpm
.templates
= dpi
->templates
;
3688 d_print_comp (dpi
, d_left (dc
));
3690 dpi
->modifiers
= dpm
.next
;
3695 /* In standard prefix notation, there is a space between the
3696 return type and the function signature. */
3697 if ((dpi
->options
& DMGL_RET_POSTFIX
) == 0)
3698 d_append_char (dpi
, ' ');
3701 if ((dpi
->options
& DMGL_RET_POSTFIX
) == 0)
3702 d_print_function_type (dpi
, dc
, dpi
->modifiers
);
3707 case DEMANGLE_COMPONENT_ARRAY_TYPE
:
3709 struct d_print_mod
*hold_modifiers
;
3710 struct d_print_mod adpm
[4];
3712 struct d_print_mod
*pdpm
;
3714 /* We must pass this type down as a modifier in order to print
3715 multi-dimensional arrays correctly. If the array itself is
3716 CV-qualified, we act as though the element type were
3717 CV-qualified. We do this by copying the modifiers down
3718 rather than fiddling pointers, so that we don't wind up
3719 with a d_print_mod higher on the stack pointing into our
3720 stack frame after we return. */
3722 hold_modifiers
= dpi
->modifiers
;
3724 adpm
[0].next
= hold_modifiers
;
3725 dpi
->modifiers
= &adpm
[0];
3727 adpm
[0].printed
= 0;
3728 adpm
[0].templates
= dpi
->templates
;
3731 pdpm
= hold_modifiers
;
3733 && (pdpm
->mod
->type
== DEMANGLE_COMPONENT_RESTRICT
3734 || pdpm
->mod
->type
== DEMANGLE_COMPONENT_VOLATILE
3735 || pdpm
->mod
->type
== DEMANGLE_COMPONENT_CONST
))
3737 if (! pdpm
->printed
)
3739 if (i
>= sizeof adpm
/ sizeof adpm
[0])
3741 d_print_error (dpi
);
3746 adpm
[i
].next
= dpi
->modifiers
;
3747 dpi
->modifiers
= &adpm
[i
];
3755 d_print_comp (dpi
, d_right (dc
));
3757 dpi
->modifiers
= hold_modifiers
;
3759 if (adpm
[0].printed
)
3765 d_print_mod (dpi
, adpm
[i
].mod
);
3768 d_print_array_type (dpi
, dc
, dpi
->modifiers
);
3773 case DEMANGLE_COMPONENT_PTRMEM_TYPE
:
3775 struct d_print_mod dpm
;
3777 dpm
.next
= dpi
->modifiers
;
3778 dpi
->modifiers
= &dpm
;
3781 dpm
.templates
= dpi
->templates
;
3783 d_print_comp (dpi
, d_right (dc
));
3785 /* If the modifier didn't get printed by the type, print it
3789 d_append_char (dpi
, ' ');
3790 d_print_comp (dpi
, d_left (dc
));
3791 d_append_string (dpi
, "::*");
3794 dpi
->modifiers
= dpm
.next
;
3799 case DEMANGLE_COMPONENT_FIXED_TYPE
:
3800 if (dc
->u
.s_fixed
.sat
)
3801 d_append_string (dpi
, "_Sat ");
3802 /* Don't print "int _Accum". */
3803 if (dc
->u
.s_fixed
.length
->u
.s_builtin
.type
3804 != &cplus_demangle_builtin_types
['i'-'a'])
3806 d_print_comp (dpi
, dc
->u
.s_fixed
.length
);
3807 d_append_char (dpi
, ' ');
3809 if (dc
->u
.s_fixed
.accum
)
3810 d_append_string (dpi
, "_Accum");
3812 d_append_string (dpi
, "_Fract");
3815 case DEMANGLE_COMPONENT_ARGLIST
:
3816 case DEMANGLE_COMPONENT_TEMPLATE_ARGLIST
:
3817 if (d_left (dc
) != NULL
)
3818 d_print_comp (dpi
, d_left (dc
));
3819 if (d_right (dc
) != NULL
)
3822 d_append_string (dpi
, ", ");
3824 d_print_comp (dpi
, d_right (dc
));
3825 /* If that didn't print anything (which can happen with empty
3826 template argument packs), remove the comma and space. */
3827 if (dpi
->len
== len
)
3832 case DEMANGLE_COMPONENT_OPERATOR
:
3836 d_append_string (dpi
, "operator");
3837 c
= dc
->u
.s_operator
.op
->name
[0];
3839 d_append_char (dpi
, ' ');
3840 d_append_buffer (dpi
, dc
->u
.s_operator
.op
->name
,
3841 dc
->u
.s_operator
.op
->len
);
3845 case DEMANGLE_COMPONENT_EXTENDED_OPERATOR
:
3846 d_append_string (dpi
, "operator ");
3847 d_print_comp (dpi
, dc
->u
.s_extended_operator
.name
);
3850 case DEMANGLE_COMPONENT_CAST
:
3851 d_append_string (dpi
, "operator ");
3852 d_print_cast (dpi
, dc
);
3855 case DEMANGLE_COMPONENT_UNARY
:
3856 if (d_left (dc
)->type
!= DEMANGLE_COMPONENT_CAST
)
3857 d_print_expr_op (dpi
, d_left (dc
));
3860 d_append_char (dpi
, '(');
3861 d_print_cast (dpi
, d_left (dc
));
3862 d_append_char (dpi
, ')');
3864 d_print_subexpr (dpi
, d_right (dc
));
3867 case DEMANGLE_COMPONENT_BINARY
:
3868 if (d_right (dc
)->type
!= DEMANGLE_COMPONENT_BINARY_ARGS
)
3870 d_print_error (dpi
);
3874 /* We wrap an expression which uses the greater-than operator in
3875 an extra layer of parens so that it does not get confused
3876 with the '>' which ends the template parameters. */
3877 if (d_left (dc
)->type
== DEMANGLE_COMPONENT_OPERATOR
3878 && d_left (dc
)->u
.s_operator
.op
->len
== 1
3879 && d_left (dc
)->u
.s_operator
.op
->name
[0] == '>')
3880 d_append_char (dpi
, '(');
3882 d_print_subexpr (dpi
, d_left (d_right (dc
)));
3883 if (strcmp (d_left (dc
)->u
.s_operator
.op
->code
, "cl") != 0)
3884 d_print_expr_op (dpi
, d_left (dc
));
3885 d_print_subexpr (dpi
, d_right (d_right (dc
)));
3887 if (d_left (dc
)->type
== DEMANGLE_COMPONENT_OPERATOR
3888 && d_left (dc
)->u
.s_operator
.op
->len
== 1
3889 && d_left (dc
)->u
.s_operator
.op
->name
[0] == '>')
3890 d_append_char (dpi
, ')');
3894 case DEMANGLE_COMPONENT_BINARY_ARGS
:
3895 /* We should only see this as part of DEMANGLE_COMPONENT_BINARY. */
3896 d_print_error (dpi
);
3899 case DEMANGLE_COMPONENT_TRINARY
:
3900 if (d_right (dc
)->type
!= DEMANGLE_COMPONENT_TRINARY_ARG1
3901 || d_right (d_right (dc
))->type
!= DEMANGLE_COMPONENT_TRINARY_ARG2
)
3903 d_print_error (dpi
);
3906 d_print_subexpr (dpi
, d_left (d_right (dc
)));
3907 d_print_expr_op (dpi
, d_left (dc
));
3908 d_print_subexpr (dpi
, d_left (d_right (d_right (dc
))));
3909 d_append_string (dpi
, " : ");
3910 d_print_subexpr (dpi
, d_right (d_right (d_right (dc
))));
3913 case DEMANGLE_COMPONENT_TRINARY_ARG1
:
3914 case DEMANGLE_COMPONENT_TRINARY_ARG2
:
3915 /* We should only see these are part of DEMANGLE_COMPONENT_TRINARY. */
3916 d_print_error (dpi
);
3919 case DEMANGLE_COMPONENT_LITERAL
:
3920 case DEMANGLE_COMPONENT_LITERAL_NEG
:
3922 enum d_builtin_type_print tp
;
3924 /* For some builtin types, produce simpler output. */
3925 tp
= D_PRINT_DEFAULT
;
3926 if (d_left (dc
)->type
== DEMANGLE_COMPONENT_BUILTIN_TYPE
)
3928 tp
= d_left (dc
)->u
.s_builtin
.type
->print
;
3932 case D_PRINT_UNSIGNED
:
3934 case D_PRINT_UNSIGNED_LONG
:
3935 case D_PRINT_LONG_LONG
:
3936 case D_PRINT_UNSIGNED_LONG_LONG
:
3937 if (d_right (dc
)->type
== DEMANGLE_COMPONENT_NAME
)
3939 if (dc
->type
== DEMANGLE_COMPONENT_LITERAL_NEG
)
3940 d_append_char (dpi
, '-');
3941 d_print_comp (dpi
, d_right (dc
));
3946 case D_PRINT_UNSIGNED
:
3947 d_append_char (dpi
, 'u');
3950 d_append_char (dpi
, 'l');
3952 case D_PRINT_UNSIGNED_LONG
:
3953 d_append_string (dpi
, "ul");
3955 case D_PRINT_LONG_LONG
:
3956 d_append_string (dpi
, "ll");
3958 case D_PRINT_UNSIGNED_LONG_LONG
:
3959 d_append_string (dpi
, "ull");
3967 if (d_right (dc
)->type
== DEMANGLE_COMPONENT_NAME
3968 && d_right (dc
)->u
.s_name
.len
== 1
3969 && dc
->type
== DEMANGLE_COMPONENT_LITERAL
)
3971 switch (d_right (dc
)->u
.s_name
.s
[0])
3974 d_append_string (dpi
, "false");
3977 d_append_string (dpi
, "true");
3990 d_append_char (dpi
, '(');
3991 d_print_comp (dpi
, d_left (dc
));
3992 d_append_char (dpi
, ')');
3993 if (dc
->type
== DEMANGLE_COMPONENT_LITERAL_NEG
)
3994 d_append_char (dpi
, '-');
3995 if (tp
== D_PRINT_FLOAT
)
3996 d_append_char (dpi
, '[');
3997 d_print_comp (dpi
, d_right (dc
));
3998 if (tp
== D_PRINT_FLOAT
)
3999 d_append_char (dpi
, ']');
4003 case DEMANGLE_COMPONENT_JAVA_RESOURCE
:
4004 d_append_string (dpi
, "java resource ");
4005 d_print_comp (dpi
, d_left (dc
));
4008 case DEMANGLE_COMPONENT_COMPOUND_NAME
:
4009 d_print_comp (dpi
, d_left (dc
));
4010 d_print_comp (dpi
, d_right (dc
));
4013 case DEMANGLE_COMPONENT_CHARACTER
:
4014 d_append_char (dpi
, dc
->u
.s_character
.character
);
4017 case DEMANGLE_COMPONENT_DECLTYPE
:
4018 d_append_string (dpi
, "decltype (");
4019 d_print_comp (dpi
, d_left (dc
));
4020 d_append_char (dpi
, ')');
4023 case DEMANGLE_COMPONENT_PACK_EXPANSION
:
4027 struct demangle_component
*a
= d_find_pack (dpi
, d_left (dc
));
4030 /* d_find_pack won't find anything if the only packs involved
4031 in this expansion are function parameter packs; in that
4032 case, just print the pattern and "...". */
4033 d_print_subexpr (dpi
, d_left (dc
));
4034 d_append_string (dpi
, "...");
4038 len
= d_pack_length (a
);
4040 for (i
= 0; i
< len
; ++i
)
4042 dpi
->pack_index
= i
;
4043 d_print_comp (dpi
, dc
);
4045 d_append_string (dpi
, ", ");
4050 case DEMANGLE_COMPONENT_FUNCTION_PARAM
:
4053 d_append_string (dpi
, "parm#");
4054 sprintf(buf
,"%ld", dc
->u
.s_number
.number
);
4055 d_append_string (dpi
, buf
);
4059 case DEMANGLE_COMPONENT_GLOBAL_CONSTRUCTORS
:
4060 d_append_string (dpi
, "global constructors keyed to ");
4061 d_print_comp (dpi
, dc
->u
.s_binary
.left
);
4064 case DEMANGLE_COMPONENT_GLOBAL_DESTRUCTORS
:
4065 d_append_string (dpi
, "global destructors keyed to ");
4066 d_print_comp (dpi
, dc
->u
.s_binary
.left
);
4070 d_print_error (dpi
);
4075 /* Print a Java dentifier. For Java we try to handle encoded extended
4076 Unicode characters. The C++ ABI doesn't mention Unicode encoding,
4077 so we don't it for C++. Characters are encoded as
4081 d_print_java_identifier (struct d_print_info
*dpi
, const char *name
, int len
)
4087 for (p
= name
; p
< end
; ++p
)
4098 for (q
= p
+ 3; q
< end
; ++q
)
4104 else if (*q
>= 'A' && *q
<= 'F')
4105 dig
= *q
- 'A' + 10;
4106 else if (*q
>= 'a' && *q
<= 'f')
4107 dig
= *q
- 'a' + 10;
4113 /* If the Unicode character is larger than 256, we don't try
4114 to deal with it here. FIXME. */
4115 if (q
< end
&& *q
== '_' && c
< 256)
4117 d_append_char (dpi
, c
);
4123 d_append_char (dpi
, *p
);
4127 /* Print a list of modifiers. SUFFIX is 1 if we are printing
4128 qualifiers on this after printing a function. */
4131 d_print_mod_list (struct d_print_info
*dpi
,
4132 struct d_print_mod
*mods
, int suffix
)
4134 struct d_print_template
*hold_dpt
;
4136 if (mods
== NULL
|| d_print_saw_error (dpi
))
4141 && (mods
->mod
->type
== DEMANGLE_COMPONENT_RESTRICT_THIS
4142 || mods
->mod
->type
== DEMANGLE_COMPONENT_VOLATILE_THIS
4143 || mods
->mod
->type
== DEMANGLE_COMPONENT_CONST_THIS
)))
4145 d_print_mod_list (dpi
, mods
->next
, suffix
);
4151 hold_dpt
= dpi
->templates
;
4152 dpi
->templates
= mods
->templates
;
4154 if (mods
->mod
->type
== DEMANGLE_COMPONENT_FUNCTION_TYPE
)
4156 d_print_function_type (dpi
, mods
->mod
, mods
->next
);
4157 dpi
->templates
= hold_dpt
;
4160 else if (mods
->mod
->type
== DEMANGLE_COMPONENT_ARRAY_TYPE
)
4162 d_print_array_type (dpi
, mods
->mod
, mods
->next
);
4163 dpi
->templates
= hold_dpt
;
4166 else if (mods
->mod
->type
== DEMANGLE_COMPONENT_LOCAL_NAME
)
4168 struct d_print_mod
*hold_modifiers
;
4169 struct demangle_component
*dc
;
4171 /* When this is on the modifier stack, we have pulled any
4172 qualifiers off the right argument already. Otherwise, we
4173 print it as usual, but don't let the left argument see any
4176 hold_modifiers
= dpi
->modifiers
;
4177 dpi
->modifiers
= NULL
;
4178 d_print_comp (dpi
, d_left (mods
->mod
));
4179 dpi
->modifiers
= hold_modifiers
;
4181 if ((dpi
->options
& DMGL_JAVA
) == 0)
4182 d_append_string (dpi
, "::");
4184 d_append_char (dpi
, '.');
4186 dc
= d_right (mods
->mod
);
4187 while (dc
->type
== DEMANGLE_COMPONENT_RESTRICT_THIS
4188 || dc
->type
== DEMANGLE_COMPONENT_VOLATILE_THIS
4189 || dc
->type
== DEMANGLE_COMPONENT_CONST_THIS
)
4192 d_print_comp (dpi
, dc
);
4194 dpi
->templates
= hold_dpt
;
4198 d_print_mod (dpi
, mods
->mod
);
4200 dpi
->templates
= hold_dpt
;
4202 d_print_mod_list (dpi
, mods
->next
, suffix
);
4205 /* Print a modifier. */
4208 d_print_mod (struct d_print_info
*dpi
,
4209 const struct demangle_component
*mod
)
4213 case DEMANGLE_COMPONENT_RESTRICT
:
4214 case DEMANGLE_COMPONENT_RESTRICT_THIS
:
4215 d_append_string (dpi
, " restrict");
4217 case DEMANGLE_COMPONENT_VOLATILE
:
4218 case DEMANGLE_COMPONENT_VOLATILE_THIS
:
4219 d_append_string (dpi
, " volatile");
4221 case DEMANGLE_COMPONENT_CONST
:
4222 case DEMANGLE_COMPONENT_CONST_THIS
:
4223 d_append_string (dpi
, " const");
4225 case DEMANGLE_COMPONENT_VENDOR_TYPE_QUAL
:
4226 d_append_char (dpi
, ' ');
4227 d_print_comp (dpi
, d_right (mod
));
4229 case DEMANGLE_COMPONENT_POINTER
:
4230 /* There is no pointer symbol in Java. */
4231 if ((dpi
->options
& DMGL_JAVA
) == 0)
4232 d_append_char (dpi
, '*');
4234 case DEMANGLE_COMPONENT_REFERENCE
:
4235 d_append_char (dpi
, '&');
4237 case DEMANGLE_COMPONENT_RVALUE_REFERENCE
:
4238 d_append_string (dpi
, "&&");
4240 case DEMANGLE_COMPONENT_COMPLEX
:
4241 d_append_string (dpi
, "complex ");
4243 case DEMANGLE_COMPONENT_IMAGINARY
:
4244 d_append_string (dpi
, "imaginary ");
4246 case DEMANGLE_COMPONENT_PTRMEM_TYPE
:
4247 if (d_last_char (dpi
) != '(')
4248 d_append_char (dpi
, ' ');
4249 d_print_comp (dpi
, d_left (mod
));
4250 d_append_string (dpi
, "::*");
4252 case DEMANGLE_COMPONENT_TYPED_NAME
:
4253 d_print_comp (dpi
, d_left (mod
));
4256 /* Otherwise, we have something that won't go back on the
4257 modifier stack, so we can just print it. */
4258 d_print_comp (dpi
, mod
);
4263 /* Print a function type, except for the return type. */
4266 d_print_function_type (struct d_print_info
*dpi
,
4267 const struct demangle_component
*dc
,
4268 struct d_print_mod
*mods
)
4273 struct d_print_mod
*p
;
4274 struct d_print_mod
*hold_modifiers
;
4279 for (p
= mods
; p
!= NULL
; p
= p
->next
)
4285 switch (p
->mod
->type
)
4287 case DEMANGLE_COMPONENT_POINTER
:
4288 case DEMANGLE_COMPONENT_REFERENCE
:
4289 case DEMANGLE_COMPONENT_RVALUE_REFERENCE
:
4292 case DEMANGLE_COMPONENT_RESTRICT
:
4293 case DEMANGLE_COMPONENT_VOLATILE
:
4294 case DEMANGLE_COMPONENT_CONST
:
4295 case DEMANGLE_COMPONENT_VENDOR_TYPE_QUAL
:
4296 case DEMANGLE_COMPONENT_COMPLEX
:
4297 case DEMANGLE_COMPONENT_IMAGINARY
:
4298 case DEMANGLE_COMPONENT_PTRMEM_TYPE
:
4302 case DEMANGLE_COMPONENT_RESTRICT_THIS
:
4303 case DEMANGLE_COMPONENT_VOLATILE_THIS
:
4304 case DEMANGLE_COMPONENT_CONST_THIS
:
4313 if (d_left (dc
) != NULL
&& ! saw_mod
)
4320 if (d_last_char (dpi
) != '('
4321 && d_last_char (dpi
) != '*')
4324 if (need_space
&& d_last_char (dpi
) != ' ')
4325 d_append_char (dpi
, ' ');
4326 d_append_char (dpi
, '(');
4329 hold_modifiers
= dpi
->modifiers
;
4330 dpi
->modifiers
= NULL
;
4332 d_print_mod_list (dpi
, mods
, 0);
4335 d_append_char (dpi
, ')');
4337 d_append_char (dpi
, '(');
4339 if (d_right (dc
) != NULL
)
4340 d_print_comp (dpi
, d_right (dc
));
4342 d_append_char (dpi
, ')');
4344 d_print_mod_list (dpi
, mods
, 1);
4346 dpi
->modifiers
= hold_modifiers
;
4349 /* Print an array type, except for the element type. */
4352 d_print_array_type (struct d_print_info
*dpi
,
4353 const struct demangle_component
*dc
,
4354 struct d_print_mod
*mods
)
4362 struct d_print_mod
*p
;
4365 for (p
= mods
; p
!= NULL
; p
= p
->next
)
4369 if (p
->mod
->type
== DEMANGLE_COMPONENT_ARRAY_TYPE
)
4384 d_append_string (dpi
, " (");
4386 d_print_mod_list (dpi
, mods
, 0);
4389 d_append_char (dpi
, ')');
4393 d_append_char (dpi
, ' ');
4395 d_append_char (dpi
, '[');
4397 if (d_left (dc
) != NULL
)
4398 d_print_comp (dpi
, d_left (dc
));
4400 d_append_char (dpi
, ']');
4403 /* Print an operator in an expression. */
4406 d_print_expr_op (struct d_print_info
*dpi
,
4407 const struct demangle_component
*dc
)
4409 if (dc
->type
== DEMANGLE_COMPONENT_OPERATOR
)
4410 d_append_buffer (dpi
, dc
->u
.s_operator
.op
->name
,
4411 dc
->u
.s_operator
.op
->len
);
4413 d_print_comp (dpi
, dc
);
4419 d_print_cast (struct d_print_info
*dpi
,
4420 const struct demangle_component
*dc
)
4422 if (d_left (dc
)->type
!= DEMANGLE_COMPONENT_TEMPLATE
)
4423 d_print_comp (dpi
, d_left (dc
));
4426 struct d_print_mod
*hold_dpm
;
4427 struct d_print_template dpt
;
4429 /* It appears that for a templated cast operator, we need to put
4430 the template parameters in scope for the operator name, but
4431 not for the parameters. The effect is that we need to handle
4432 the template printing here. */
4434 hold_dpm
= dpi
->modifiers
;
4435 dpi
->modifiers
= NULL
;
4437 dpt
.next
= dpi
->templates
;
4438 dpi
->templates
= &dpt
;
4439 dpt
.template_decl
= d_left (dc
);
4441 d_print_comp (dpi
, d_left (d_left (dc
)));
4443 dpi
->templates
= dpt
.next
;
4445 if (d_last_char (dpi
) == '<')
4446 d_append_char (dpi
, ' ');
4447 d_append_char (dpi
, '<');
4448 d_print_comp (dpi
, d_right (d_left (dc
)));
4449 /* Avoid generating two consecutive '>' characters, to avoid
4450 the C++ syntactic ambiguity. */
4451 if (d_last_char (dpi
) == '>')
4452 d_append_char (dpi
, ' ');
4453 d_append_char (dpi
, '>');
4455 dpi
->modifiers
= hold_dpm
;
4459 /* Initialize the information structure we use to pass around
4462 CP_STATIC_IF_GLIBCPP_V3
4464 cplus_demangle_init_info (const char *mangled
, int options
, size_t len
,
4468 di
->send
= mangled
+ len
;
4469 di
->options
= options
;
4473 /* We can not need more components than twice the number of chars in
4474 the mangled string. Most components correspond directly to
4475 chars, but the ARGLIST types are exceptions. */
4476 di
->num_comps
= 2 * len
;
4479 /* Similarly, we can not need more substitutions than there are
4480 chars in the mangled string. */
4485 di
->last_name
= NULL
;
4490 /* Internal implementation for the demangler. If MANGLED is a g++ v3 ABI
4491 mangled name, return strings in repeated callback giving the demangled
4492 name. OPTIONS is the usual libiberty demangler options. On success,
4493 this returns 1. On failure, returns 0. */
4496 d_demangle_callback (const char *mangled
, int options
,
4497 demangle_callbackref callback
, void *opaque
)
4508 struct demangle_component
*dc
;
4511 if (mangled
[0] == '_' && mangled
[1] == 'Z')
4513 else if (strncmp (mangled
, "_GLOBAL_", 8) == 0
4514 && (mangled
[8] == '.' || mangled
[8] == '_' || mangled
[8] == '$')
4515 && (mangled
[9] == 'D' || mangled
[9] == 'I')
4516 && mangled
[10] == '_')
4517 type
= mangled
[9] == 'I' ? DCT_GLOBAL_CTORS
: DCT_GLOBAL_DTORS
;
4520 if ((options
& DMGL_TYPES
) == 0)
4525 cplus_demangle_init_info (mangled
, options
, strlen (mangled
), &di
);
4528 #ifdef CP_DYNAMIC_ARRAYS
4529 __extension__
struct demangle_component comps
[di
.num_comps
];
4530 __extension__
struct demangle_component
*subs
[di
.num_subs
];
4535 di
.comps
= alloca (di
.num_comps
* sizeof (*di
.comps
));
4536 di
.subs
= alloca (di
.num_subs
* sizeof (*di
.subs
));
4542 dc
= cplus_demangle_type (&di
);
4545 dc
= cplus_demangle_mangled_name (&di
, 1);
4547 case DCT_GLOBAL_CTORS
:
4548 case DCT_GLOBAL_DTORS
:
4549 d_advance (&di
, 11);
4550 dc
= d_make_comp (&di
,
4551 (type
== DCT_GLOBAL_CTORS
4552 ? DEMANGLE_COMPONENT_GLOBAL_CONSTRUCTORS
4553 : DEMANGLE_COMPONENT_GLOBAL_DESTRUCTORS
),
4554 d_make_name (&di
, d_str (&di
), strlen (d_str (&di
))),
4556 d_advance (&di
, strlen (d_str (&di
)));
4560 /* If DMGL_PARAMS is set, then if we didn't consume the entire
4561 mangled string, then we didn't successfully demangle it. If
4562 DMGL_PARAMS is not set, we didn't look at the trailing
4564 if (((options
& DMGL_PARAMS
) != 0) && d_peek_char (&di
) != '\0')
4567 #ifdef CP_DEMANGLE_DEBUG
4571 status
= (dc
!= NULL
)
4572 ? cplus_demangle_print_callback (options
, dc
, callback
, opaque
)
4579 /* Entry point for the demangler. If MANGLED is a g++ v3 ABI mangled
4580 name, return a buffer allocated with malloc holding the demangled
4581 name. OPTIONS is the usual libiberty demangler options. On
4582 success, this sets *PALC to the allocated size of the returned
4583 buffer. On failure, this sets *PALC to 0 for a bad name, or 1 for
4584 a memory allocation failure, and returns NULL. */
4587 d_demangle (const char *mangled
, int options
, size_t *palc
)
4589 struct d_growable_string dgs
;
4592 d_growable_string_init (&dgs
, 0);
4594 status
= d_demangle_callback (mangled
, options
,
4595 d_growable_string_callback_adapter
, &dgs
);
4603 *palc
= dgs
.allocation_failure
? 1 : 0;
4607 #if defined(IN_LIBGCC2) || defined(IN_GLIBCPP_V3)
4609 extern char *__cxa_demangle (const char *, char *, size_t *, int *);
4611 /* ia64 ABI-mandated entry point in the C++ runtime library for
4612 performing demangling. MANGLED_NAME is a NUL-terminated character
4613 string containing the name to be demangled.
4615 OUTPUT_BUFFER is a region of memory, allocated with malloc, of
4616 *LENGTH bytes, into which the demangled name is stored. If
4617 OUTPUT_BUFFER is not long enough, it is expanded using realloc.
4618 OUTPUT_BUFFER may instead be NULL; in that case, the demangled name
4619 is placed in a region of memory allocated with malloc.
4621 If LENGTH is non-NULL, the length of the buffer containing the
4622 demangled name, is placed in *LENGTH.
4624 The return value is a pointer to the start of the NUL-terminated
4625 demangled name, or NULL if the demangling fails. The caller is
4626 responsible for deallocating this memory using free.
4628 *STATUS is set to one of the following values:
4629 0: The demangling operation succeeded.
4630 -1: A memory allocation failure occurred.
4631 -2: MANGLED_NAME is not a valid name under the C++ ABI mangling rules.
4632 -3: One of the arguments is invalid.
4634 The demangling is performed using the C++ ABI mangling rules, with
4638 __cxa_demangle (const char *mangled_name
, char *output_buffer
,
4639 size_t *length
, int *status
)
4644 if (mangled_name
== NULL
)
4651 if (output_buffer
!= NULL
&& length
== NULL
)
4658 demangled
= d_demangle (mangled_name
, DMGL_PARAMS
| DMGL_TYPES
, &alc
);
4660 if (demangled
== NULL
)
4672 if (output_buffer
== NULL
)
4679 if (strlen (demangled
) < *length
)
4681 strcpy (output_buffer
, demangled
);
4683 demangled
= output_buffer
;
4687 free (output_buffer
);
4698 extern int __gcclibcxx_demangle_callback (const char *,
4700 (const char *, size_t, void *),
4703 /* Alternative, allocationless entry point in the C++ runtime library
4704 for performing demangling. MANGLED_NAME is a NUL-terminated character
4705 string containing the name to be demangled.
4707 CALLBACK is a callback function, called with demangled string
4708 segments as demangling progresses; it is called at least once,
4709 but may be called more than once. OPAQUE is a generalized pointer
4710 used as a callback argument.
4712 The return code is one of the following values, equivalent to
4713 the STATUS values of __cxa_demangle() (excluding -1, since this
4714 function performs no memory allocations):
4715 0: The demangling operation succeeded.
4716 -2: MANGLED_NAME is not a valid name under the C++ ABI mangling rules.
4717 -3: One of the arguments is invalid.
4719 The demangling is performed using the C++ ABI mangling rules, with
4723 __gcclibcxx_demangle_callback (const char *mangled_name
,
4724 void (*callback
) (const char *, size_t, void *),
4729 if (mangled_name
== NULL
|| callback
== NULL
)
4732 status
= d_demangle_callback (mangled_name
, DMGL_PARAMS
| DMGL_TYPES
,
4740 #else /* ! (IN_LIBGCC2 || IN_GLIBCPP_V3) */
4742 /* Entry point for libiberty demangler. If MANGLED is a g++ v3 ABI
4743 mangled name, return a buffer allocated with malloc holding the
4744 demangled name. Otherwise, return NULL. */
4747 cplus_demangle_v3 (const char *mangled
, int options
)
4751 return d_demangle (mangled
, options
, &alc
);
4755 cplus_demangle_v3_callback (const char *mangled
, int options
,
4756 demangle_callbackref callback
, void *opaque
)
4758 return d_demangle_callback (mangled
, options
, callback
, opaque
);
4761 /* Demangle a Java symbol. Java uses a subset of the V3 ABI C++ mangling
4762 conventions, but the output formatting is a little different.
4763 This instructs the C++ demangler not to emit pointer characters ("*"), to
4764 use Java's namespace separator symbol ("." instead of "::"), and to output
4765 JArray<TYPE> as TYPE[]. */
4768 java_demangle_v3 (const char *mangled
)
4772 return d_demangle (mangled
, DMGL_JAVA
| DMGL_PARAMS
| DMGL_RET_POSTFIX
, &alc
);
4776 java_demangle_v3_callback (const char *mangled
,
4777 demangle_callbackref callback
, void *opaque
)
4779 return d_demangle_callback (mangled
,
4780 DMGL_JAVA
| DMGL_PARAMS
| DMGL_RET_POSTFIX
,
4784 #endif /* IN_LIBGCC2 || IN_GLIBCPP_V3 */
4786 #ifndef IN_GLIBCPP_V3
4788 /* Demangle a string in order to find out whether it is a constructor
4789 or destructor. Return non-zero on success. Set *CTOR_KIND and
4790 *DTOR_KIND appropriately. */
4793 is_ctor_or_dtor (const char *mangled
,
4794 enum gnu_v3_ctor_kinds
*ctor_kind
,
4795 enum gnu_v3_dtor_kinds
*dtor_kind
)
4798 struct demangle_component
*dc
;
4801 *ctor_kind
= (enum gnu_v3_ctor_kinds
) 0;
4802 *dtor_kind
= (enum gnu_v3_dtor_kinds
) 0;
4804 cplus_demangle_init_info (mangled
, DMGL_GNU_V3
, strlen (mangled
), &di
);
4807 #ifdef CP_DYNAMIC_ARRAYS
4808 __extension__
struct demangle_component comps
[di
.num_comps
];
4809 __extension__
struct demangle_component
*subs
[di
.num_subs
];
4814 di
.comps
= alloca (di
.num_comps
* sizeof (*di
.comps
));
4815 di
.subs
= alloca (di
.num_subs
* sizeof (*di
.subs
));
4818 dc
= cplus_demangle_mangled_name (&di
, 1);
4820 /* Note that because we did not pass DMGL_PARAMS, we don't expect
4821 to demangle the entire string. */
4831 case DEMANGLE_COMPONENT_TYPED_NAME
:
4832 case DEMANGLE_COMPONENT_TEMPLATE
:
4833 case DEMANGLE_COMPONENT_RESTRICT_THIS
:
4834 case DEMANGLE_COMPONENT_VOLATILE_THIS
:
4835 case DEMANGLE_COMPONENT_CONST_THIS
:
4838 case DEMANGLE_COMPONENT_QUAL_NAME
:
4839 case DEMANGLE_COMPONENT_LOCAL_NAME
:
4842 case DEMANGLE_COMPONENT_CTOR
:
4843 *ctor_kind
= dc
->u
.s_ctor
.kind
;
4847 case DEMANGLE_COMPONENT_DTOR
:
4848 *dtor_kind
= dc
->u
.s_dtor
.kind
;
4859 /* Return whether NAME is the mangled form of a g++ V3 ABI constructor
4860 name. A non-zero return indicates the type of constructor. */
4862 enum gnu_v3_ctor_kinds
4863 is_gnu_v3_mangled_ctor (const char *name
)
4865 enum gnu_v3_ctor_kinds ctor_kind
;
4866 enum gnu_v3_dtor_kinds dtor_kind
;
4868 if (! is_ctor_or_dtor (name
, &ctor_kind
, &dtor_kind
))
4869 return (enum gnu_v3_ctor_kinds
) 0;
4874 /* Return whether NAME is the mangled form of a g++ V3 ABI destructor
4875 name. A non-zero return indicates the type of destructor. */
4877 enum gnu_v3_dtor_kinds
4878 is_gnu_v3_mangled_dtor (const char *name
)
4880 enum gnu_v3_ctor_kinds ctor_kind
;
4881 enum gnu_v3_dtor_kinds dtor_kind
;
4883 if (! is_ctor_or_dtor (name
, &ctor_kind
, &dtor_kind
))
4884 return (enum gnu_v3_dtor_kinds
) 0;
4888 #endif /* IN_GLIBCPP_V3 */
4890 #ifdef STANDALONE_DEMANGLER
4893 #include "dyn-string.h"
4895 static void print_usage (FILE* fp
, int exit_value
);
4897 #define IS_ALPHA(CHAR) \
4898 (((CHAR) >= 'a' && (CHAR) <= 'z') \
4899 || ((CHAR) >= 'A' && (CHAR) <= 'Z'))
4901 /* Non-zero if CHAR is a character than can occur in a mangled name. */
4902 #define is_mangled_char(CHAR) \
4903 (IS_ALPHA (CHAR) || IS_DIGIT (CHAR) \
4904 || (CHAR) == '_' || (CHAR) == '.' || (CHAR) == '$')
4906 /* The name of this program, as invoked. */
4907 const char* program_name
;
4909 /* Prints usage summary to FP and then exits with EXIT_VALUE. */
4912 print_usage (FILE* fp
, int exit_value
)
4914 fprintf (fp
, "Usage: %s [options] [names ...]\n", program_name
);
4915 fprintf (fp
, "Options:\n");
4916 fprintf (fp
, " -h,--help Display this message.\n");
4917 fprintf (fp
, " -p,--no-params Don't display function parameters\n");
4918 fprintf (fp
, " -v,--verbose Produce verbose demanglings.\n");
4919 fprintf (fp
, "If names are provided, they are demangled. Otherwise filters standard input.\n");
4924 /* Option specification for getopt_long. */
4925 static const struct option long_options
[] =
4927 { "help", no_argument
, NULL
, 'h' },
4928 { "no-params", no_argument
, NULL
, 'p' },
4929 { "verbose", no_argument
, NULL
, 'v' },
4930 { NULL
, no_argument
, NULL
, 0 },
4933 /* Main entry for a demangling filter executable. It will demangle
4934 its command line arguments, if any. If none are provided, it will
4935 filter stdin to stdout, replacing any recognized mangled C++ names
4936 with their demangled equivalents. */
4939 main (int argc
, char *argv
[])
4943 int options
= DMGL_PARAMS
| DMGL_ANSI
| DMGL_TYPES
;
4945 /* Use the program name of this program, as invoked. */
4946 program_name
= argv
[0];
4948 /* Parse options. */
4951 opt_char
= getopt_long (argc
, argv
, "hpv", long_options
, NULL
);
4954 case '?': /* Unrecognized option. */
4955 print_usage (stderr
, 1);
4959 print_usage (stdout
, 0);
4963 options
&= ~ DMGL_PARAMS
;
4967 options
|= DMGL_VERBOSE
;
4971 while (opt_char
!= -1);
4974 /* No command line arguments were provided. Filter stdin. */
4976 dyn_string_t mangled
= dyn_string_new (3);
4979 /* Read all of input. */
4980 while (!feof (stdin
))
4984 /* Pile characters into mangled until we hit one that can't
4985 occur in a mangled name. */
4987 while (!feof (stdin
) && is_mangled_char (c
))
4989 dyn_string_append_char (mangled
, c
);
4995 if (dyn_string_length (mangled
) > 0)
4997 #ifdef IN_GLIBCPP_V3
4998 s
= __cxa_demangle (dyn_string_buf (mangled
), NULL
, NULL
, NULL
);
5000 s
= cplus_demangle_v3 (dyn_string_buf (mangled
), options
);
5010 /* It might not have been a mangled name. Print the
5012 fputs (dyn_string_buf (mangled
), stdout
);
5015 dyn_string_clear (mangled
);
5018 /* If we haven't hit EOF yet, we've read one character that
5019 can't occur in a mangled name, so print it out. */
5024 dyn_string_delete (mangled
);
5027 /* Demangle command line arguments. */
5029 /* Loop over command line arguments. */
5030 for (i
= optind
; i
< argc
; ++i
)
5033 #ifdef IN_GLIBCPP_V3
5037 /* Attempt to demangle. */
5038 #ifdef IN_GLIBCPP_V3
5039 s
= __cxa_demangle (argv
[i
], NULL
, NULL
, &status
);
5041 s
= cplus_demangle_v3 (argv
[i
], options
);
5044 /* If it worked, print the demangled name. */
5052 #ifdef IN_GLIBCPP_V3
5053 fprintf (stderr
, "Failed: %s (status %d)\n", argv
[i
], status
);
5055 fprintf (stderr
, "Failed: %s\n", argv
[i
]);
5064 #endif /* STANDALONE_DEMANGLER */