1 /* Demangler for g++ V3 ABI.
2 Copyright (C) 2003-2022 Free Software Foundation, Inc.
3 Written by Ian Lance Taylor <ian@wasabisystems.com>.
5 This file is part of the libiberty library, which is part of GCC.
7 This file is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 In addition to the permissions in the GNU General Public License, the
13 Free Software Foundation gives you unlimited permission to link the
14 compiled version of this file into combinations with other programs,
15 and to distribute those combinations without any restriction coming
16 from the use of this file. (The General Public License restrictions
17 do apply in other respects; for example, they cover modification of
18 the file, and distribution when not linked into a combined
21 This program is distributed in the hope that it will be useful,
22 but WITHOUT ANY WARRANTY; without even the implied warranty of
23 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 GNU General Public License for more details.
26 You should have received a copy of the GNU General Public License
27 along with this program; if not, write to the Free Software
28 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
31 /* This code implements a demangler for the g++ V3 ABI. The ABI is
32 described on this web page:
33 https://itanium-cxx-abi.github.io/cxx-abi/abi.html#mangling
35 This code was written while looking at the demangler written by
36 Alex Samuel <samuel@codesourcery.com>.
38 This code first pulls the mangled name apart into a list of
39 components, and then walks the list generating the demangled
42 This file will normally define the following functions, q.v.:
43 char *cplus_demangle_v3(const char *mangled, int options)
44 char *java_demangle_v3(const char *mangled)
45 int cplus_demangle_v3_callback(const char *mangled, int options,
46 demangle_callbackref callback)
47 int java_demangle_v3_callback(const char *mangled,
48 demangle_callbackref callback)
49 enum gnu_v3_ctor_kinds is_gnu_v3_mangled_ctor (const char *name)
50 enum gnu_v3_dtor_kinds is_gnu_v3_mangled_dtor (const char *name)
52 Also, the interface to the component list is public, and defined in
53 demangle.h. The interface consists of these types, which are
54 defined in demangle.h:
55 enum demangle_component_type
56 struct demangle_component
58 and these functions defined in this file:
59 cplus_demangle_fill_name
60 cplus_demangle_fill_extended_operator
61 cplus_demangle_fill_ctor
62 cplus_demangle_fill_dtor
64 cplus_demangle_print_callback
65 and other functions defined in the file cp-demint.c.
67 This file also defines some other functions and variables which are
68 only to be used by the file cp-demint.c.
70 Preprocessor macros you can define while compiling this file:
73 If defined, this file defines the following functions, q.v.:
74 char *__cxa_demangle (const char *mangled, char *buf, size_t *len,
76 int __gcclibcxx_demangle_callback (const char *,
78 (const char *, size_t, void *),
80 instead of cplus_demangle_v3[_callback]() and
81 java_demangle_v3[_callback]().
84 If defined, this file defines only __cxa_demangle() and
85 __gcclibcxx_demangle_callback(), and no other publically visible
86 functions or variables.
89 If defined, this file defines a main() function which demangles
90 any arguments, or, if none, demangles stdin.
93 If defined, turns on debugging mode, which prints information on
94 stdout about the mangled string. This is not generally useful.
97 If defined, additional sanity checks will be performed. It will
98 cause some slowdown, but will allow to catch out-of-bound access
99 errors earlier. This macro is intended for testing and debugging. */
101 #if defined (_AIX) && !defined (__GNUC__)
123 # define alloca __builtin_alloca
125 extern char *alloca ();
126 # endif /* __GNUC__ */
128 #endif /* HAVE_ALLOCA_H */
134 # define INT_MAX (int)(((unsigned int) ~0) >> 1) /* 0x7FFFFFFF */
137 #include "ansidecl.h"
138 #include "libiberty.h"
139 #include "demangle.h"
140 #include "cp-demangle.h"
142 /* If IN_GLIBCPP_V3 is defined, some functions are made static. We
143 also rename them via #define to avoid compiler errors when the
144 static definition conflicts with the extern declaration in a header
148 #define CP_STATIC_IF_GLIBCPP_V3 static
150 #define cplus_demangle_fill_name d_fill_name
151 static int d_fill_name (struct demangle_component
*, const char *, int);
153 #define cplus_demangle_fill_extended_operator d_fill_extended_operator
155 d_fill_extended_operator (struct demangle_component
*, int,
156 struct demangle_component
*);
158 #define cplus_demangle_fill_ctor d_fill_ctor
160 d_fill_ctor (struct demangle_component
*, enum gnu_v3_ctor_kinds
,
161 struct demangle_component
*);
163 #define cplus_demangle_fill_dtor d_fill_dtor
165 d_fill_dtor (struct demangle_component
*, enum gnu_v3_dtor_kinds
,
166 struct demangle_component
*);
168 #define cplus_demangle_mangled_name d_mangled_name
169 static struct demangle_component
*d_mangled_name (struct d_info
*, int);
171 #define cplus_demangle_type d_type
172 static struct demangle_component
*d_type (struct d_info
*);
174 #define cplus_demangle_print d_print
175 static char *d_print (int, struct demangle_component
*, int, size_t *);
177 #define cplus_demangle_print_callback d_print_callback
178 static int d_print_callback (int, struct demangle_component
*,
179 demangle_callbackref
, void *);
181 #define cplus_demangle_init_info d_init_info
182 static void d_init_info (const char *, int, size_t, struct d_info
*);
184 #else /* ! defined(IN_GLIBCPP_V3) */
185 #define CP_STATIC_IF_GLIBCPP_V3
186 #endif /* ! defined(IN_GLIBCPP_V3) */
188 /* See if the compiler supports dynamic arrays. */
191 #define CP_DYNAMIC_ARRAYS
194 #ifdef __STDC_VERSION__
195 #if __STDC_VERSION__ >= 199901L && !__STDC_NO_VLA__
196 #define CP_DYNAMIC_ARRAYS
197 #endif /* __STDC_VERSION__ >= 199901L && !__STDC_NO_VLA__ */
198 #endif /* defined (__STDC_VERSION__) */
199 #endif /* defined (__STDC__) */
200 #endif /* ! defined (__GNUC__) */
202 /* We avoid pulling in the ctype tables, to prevent pulling in
203 additional unresolved symbols when this code is used in a library.
204 FIXME: Is this really a valid reason? This comes from the original
207 As of this writing this file has the following undefined references
208 when compiled with -DIN_GLIBCPP_V3: realloc, free, memcpy, strcpy,
211 #define IS_DIGIT(c) ((c) >= '0' && (c) <= '9')
212 #define IS_UPPER(c) ((c) >= 'A' && (c) <= 'Z')
213 #define IS_LOWER(c) ((c) >= 'a' && (c) <= 'z')
215 /* The prefix prepended by GCC to an identifier represnting the
216 anonymous namespace. */
217 #define ANONYMOUS_NAMESPACE_PREFIX "_GLOBAL_"
218 #define ANONYMOUS_NAMESPACE_PREFIX_LEN \
219 (sizeof (ANONYMOUS_NAMESPACE_PREFIX) - 1)
221 /* Information we keep for the standard substitutions. */
223 struct d_standard_sub_info
225 /* The code for this substitution. */
227 /* The simple string it expands to. */
228 const char *simple_expansion
;
229 /* The length of the simple expansion. */
231 /* The results of a full, verbose, expansion. This is used when
232 qualifying a constructor/destructor, or when in verbose mode. */
233 const char *full_expansion
;
234 /* The length of the full expansion. */
236 /* What to set the last_name field of d_info to; NULL if we should
237 not set it. This is only relevant when qualifying a
238 constructor/destructor. */
239 const char *set_last_name
;
240 /* The length of set_last_name. */
241 int set_last_name_len
;
244 /* Accessors for subtrees of struct demangle_component. */
246 #define d_left(dc) ((dc)->u.s_binary.left)
247 #define d_right(dc) ((dc)->u.s_binary.right)
249 /* A list of templates. This is used while printing. */
251 struct d_print_template
253 /* Next template on the list. */
254 struct d_print_template
*next
;
256 const struct demangle_component
*template_decl
;
259 /* A list of type modifiers. This is used while printing. */
263 /* Next modifier on the list. These are in the reverse of the order
264 in which they appeared in the mangled string. */
265 struct d_print_mod
*next
;
267 struct demangle_component
*mod
;
268 /* Whether this modifier was printed. */
270 /* The list of templates which applies to this modifier. */
271 struct d_print_template
*templates
;
274 /* We use these structures to hold information during printing. */
276 struct d_growable_string
278 /* Buffer holding the result. */
280 /* Current length of data in buffer. */
282 /* Allocated size of buffer. */
284 /* Set to 1 if we had a memory allocation failure. */
285 int allocation_failure
;
288 /* Stack of components, innermost first, used to avoid loops. */
290 struct d_component_stack
292 /* This component. */
293 const struct demangle_component
*dc
;
294 /* This component's parent. */
295 const struct d_component_stack
*parent
;
298 /* A demangle component and some scope captured when it was first
303 /* The component whose scope this is. */
304 const struct demangle_component
*container
;
305 /* The list of templates, if any, that was current when this
306 scope was captured. */
307 struct d_print_template
*templates
;
310 /* Checkpoint structure to allow backtracking. This holds copies
311 of the fields of struct d_info that need to be restored
312 if a trial parse needs to be backtracked over. */
314 struct d_info_checkpoint
322 /* Maximum number of times d_print_comp may be called recursively. */
323 #define MAX_RECURSION_COUNT 1024
325 enum { D_PRINT_BUFFER_LENGTH
= 256 };
328 /* Fixed-length allocated buffer for demangled data, flushed to the
329 callback with a NUL termination once full. */
330 char buf
[D_PRINT_BUFFER_LENGTH
];
331 /* Current length of data in buffer. */
333 /* The last character printed, saved individually so that it survives
336 /* Callback function to handle demangled buffer flush. */
337 demangle_callbackref callback
;
338 /* Opaque callback argument. */
340 /* The current list of templates, if any. */
341 struct d_print_template
*templates
;
342 /* The current list of modifiers (e.g., pointer, reference, etc.),
344 struct d_print_mod
*modifiers
;
345 /* Set to 1 if we saw a demangling error. */
346 int demangle_failure
;
347 /* Number of times d_print_comp was recursively called. Should not
348 be bigger than MAX_RECURSION_COUNT. */
350 /* Non-zero if we're printing a lambda argument. A template
351 parameter reference actually means 'auto'. */
353 /* The current index into any template argument packs we are using
354 for printing, or -1 to print the whole pack. */
356 /* Number of d_print_flush calls so far. */
357 unsigned long int flush_count
;
358 /* Stack of components, innermost first, used to avoid loops. */
359 const struct d_component_stack
*component_stack
;
360 /* Array of saved scopes for evaluating substitutions. */
361 struct d_saved_scope
*saved_scopes
;
362 /* Index of the next unused saved scope in the above array. */
363 int next_saved_scope
;
364 /* Number of saved scopes in the above array. */
365 int num_saved_scopes
;
366 /* Array of templates for saving into scopes. */
367 struct d_print_template
*copy_templates
;
368 /* Index of the next unused copy template in the above array. */
369 int next_copy_template
;
370 /* Number of copy templates in the above array. */
371 int num_copy_templates
;
372 /* The nearest enclosing template, if any. */
373 const struct demangle_component
*current_template
;
376 #ifdef CP_DEMANGLE_DEBUG
377 static void d_dump (struct demangle_component
*, int);
380 static struct demangle_component
*
381 d_make_empty (struct d_info
*);
383 static struct demangle_component
*
384 d_make_comp (struct d_info
*, enum demangle_component_type
,
385 struct demangle_component
*,
386 struct demangle_component
*);
388 static struct demangle_component
*
389 d_make_name (struct d_info
*, const char *, int);
391 static struct demangle_component
*
392 d_make_demangle_mangled_name (struct d_info
*, const char *);
394 static struct demangle_component
*
395 d_make_builtin_type (struct d_info
*,
396 const struct demangle_builtin_type_info
*);
398 static struct demangle_component
*
399 d_make_operator (struct d_info
*,
400 const struct demangle_operator_info
*);
402 static struct demangle_component
*
403 d_make_extended_operator (struct d_info
*, int,
404 struct demangle_component
*);
406 static struct demangle_component
*
407 d_make_ctor (struct d_info
*, enum gnu_v3_ctor_kinds
,
408 struct demangle_component
*);
410 static struct demangle_component
*
411 d_make_dtor (struct d_info
*, enum gnu_v3_dtor_kinds
,
412 struct demangle_component
*);
414 static struct demangle_component
*
415 d_make_template_param (struct d_info
*, int);
417 static struct demangle_component
*
418 d_make_sub (struct d_info
*, const char *, int);
421 has_return_type (struct demangle_component
*);
424 is_ctor_dtor_or_conversion (struct demangle_component
*);
426 static struct demangle_component
*d_encoding (struct d_info
*, int);
428 static struct demangle_component
*d_name (struct d_info
*);
430 static struct demangle_component
*d_nested_name (struct d_info
*);
432 static struct demangle_component
*d_prefix (struct d_info
*, int);
434 static struct demangle_component
*d_unqualified_name (struct d_info
*);
436 static struct demangle_component
*d_source_name (struct d_info
*);
438 static int d_number (struct d_info
*);
440 static struct demangle_component
*d_identifier (struct d_info
*, int);
442 static struct demangle_component
*d_operator_name (struct d_info
*);
444 static struct demangle_component
*d_special_name (struct d_info
*);
446 static struct demangle_component
*d_parmlist (struct d_info
*);
448 static int d_call_offset (struct d_info
*, int);
450 static struct demangle_component
*d_ctor_dtor_name (struct d_info
*);
452 static struct demangle_component
**
453 d_cv_qualifiers (struct d_info
*, struct demangle_component
**, int);
455 static struct demangle_component
*
456 d_ref_qualifier (struct d_info
*, struct demangle_component
*);
458 static struct demangle_component
*
459 d_function_type (struct d_info
*);
461 static struct demangle_component
*
462 d_bare_function_type (struct d_info
*, int);
464 static struct demangle_component
*
465 d_class_enum_type (struct d_info
*);
467 static struct demangle_component
*d_array_type (struct d_info
*);
469 static struct demangle_component
*d_vector_type (struct d_info
*);
471 static struct demangle_component
*
472 d_pointer_to_member_type (struct d_info
*);
474 static struct demangle_component
*
475 d_template_param (struct d_info
*);
477 static struct demangle_component
*d_template_args (struct d_info
*);
478 static struct demangle_component
*d_template_args_1 (struct d_info
*);
480 static struct demangle_component
*
481 d_template_arg (struct d_info
*);
483 static struct demangle_component
*d_expression (struct d_info
*);
485 static struct demangle_component
*d_expr_primary (struct d_info
*);
487 static struct demangle_component
*d_local_name (struct d_info
*);
489 static int d_discriminator (struct d_info
*);
491 static struct demangle_component
*d_lambda (struct d_info
*);
493 static struct demangle_component
*d_unnamed_type (struct d_info
*);
495 static struct demangle_component
*
496 d_clone_suffix (struct d_info
*, struct demangle_component
*);
499 d_add_substitution (struct d_info
*, struct demangle_component
*);
501 static struct demangle_component
*d_substitution (struct d_info
*, int);
503 static void d_checkpoint (struct d_info
*, struct d_info_checkpoint
*);
505 static void d_backtrack (struct d_info
*, struct d_info_checkpoint
*);
507 static void d_growable_string_init (struct d_growable_string
*, size_t);
510 d_growable_string_resize (struct d_growable_string
*, size_t);
513 d_growable_string_append_buffer (struct d_growable_string
*,
514 const char *, size_t);
516 d_growable_string_callback_adapter (const char *, size_t, void *);
519 d_print_init (struct d_print_info
*, demangle_callbackref
, void *,
520 struct demangle_component
*);
522 static inline void d_print_error (struct d_print_info
*);
524 static inline int d_print_saw_error (struct d_print_info
*);
526 static inline void d_print_flush (struct d_print_info
*);
528 static inline void d_append_char (struct d_print_info
*, char);
530 static inline void d_append_buffer (struct d_print_info
*,
531 const char *, size_t);
533 static inline void d_append_string (struct d_print_info
*, const char *);
535 static inline char d_last_char (struct d_print_info
*);
538 d_print_comp (struct d_print_info
*, int, struct demangle_component
*);
541 d_print_java_identifier (struct d_print_info
*, const char *, int);
544 d_print_mod_list (struct d_print_info
*, int, struct d_print_mod
*, int);
547 d_print_mod (struct d_print_info
*, int, struct demangle_component
*);
550 d_print_function_type (struct d_print_info
*, int,
551 struct demangle_component
*,
552 struct d_print_mod
*);
555 d_print_array_type (struct d_print_info
*, int,
556 struct demangle_component
*,
557 struct d_print_mod
*);
560 d_print_expr_op (struct d_print_info
*, int, struct demangle_component
*);
562 static void d_print_cast (struct d_print_info
*, int,
563 struct demangle_component
*);
564 static void d_print_conversion (struct d_print_info
*, int,
565 struct demangle_component
*);
567 static int d_demangle_callback (const char *, int,
568 demangle_callbackref
, void *);
569 static char *d_demangle (const char *, int, size_t *);
571 #define FNQUAL_COMPONENT_CASE \
572 case DEMANGLE_COMPONENT_RESTRICT_THIS: \
573 case DEMANGLE_COMPONENT_VOLATILE_THIS: \
574 case DEMANGLE_COMPONENT_CONST_THIS: \
575 case DEMANGLE_COMPONENT_REFERENCE_THIS: \
576 case DEMANGLE_COMPONENT_RVALUE_REFERENCE_THIS: \
577 case DEMANGLE_COMPONENT_TRANSACTION_SAFE: \
578 case DEMANGLE_COMPONENT_NOEXCEPT: \
579 case DEMANGLE_COMPONENT_THROW_SPEC
581 /* True iff TYPE is a demangling component representing a
582 function-type-qualifier. */
585 is_fnqual_component_type (enum demangle_component_type type
)
589 FNQUAL_COMPONENT_CASE
:
598 #ifdef CP_DEMANGLE_DEBUG
601 d_dump (struct demangle_component
*dc
, int indent
)
608 printf ("failed demangling\n");
612 for (i
= 0; i
< indent
; ++i
)
617 case DEMANGLE_COMPONENT_NAME
:
618 printf ("name '%.*s'\n", dc
->u
.s_name
.len
, dc
->u
.s_name
.s
);
620 case DEMANGLE_COMPONENT_TAGGED_NAME
:
621 printf ("tagged name\n");
622 d_dump (dc
->u
.s_binary
.left
, indent
+ 2);
623 d_dump (dc
->u
.s_binary
.right
, indent
+ 2);
625 case DEMANGLE_COMPONENT_TEMPLATE_PARAM
:
626 printf ("template parameter %ld\n", dc
->u
.s_number
.number
);
628 case DEMANGLE_COMPONENT_TPARM_OBJ
:
629 printf ("template parameter object\n");
631 case DEMANGLE_COMPONENT_FUNCTION_PARAM
:
632 printf ("function parameter %ld\n", dc
->u
.s_number
.number
);
634 case DEMANGLE_COMPONENT_CTOR
:
635 printf ("constructor %d\n", (int) dc
->u
.s_ctor
.kind
);
636 d_dump (dc
->u
.s_ctor
.name
, indent
+ 2);
638 case DEMANGLE_COMPONENT_DTOR
:
639 printf ("destructor %d\n", (int) dc
->u
.s_dtor
.kind
);
640 d_dump (dc
->u
.s_dtor
.name
, indent
+ 2);
642 case DEMANGLE_COMPONENT_SUB_STD
:
643 printf ("standard substitution %s\n", dc
->u
.s_string
.string
);
645 case DEMANGLE_COMPONENT_BUILTIN_TYPE
:
646 printf ("builtin type %s\n", dc
->u
.s_builtin
.type
->name
);
648 case DEMANGLE_COMPONENT_OPERATOR
:
649 printf ("operator %s\n", dc
->u
.s_operator
.op
->name
);
651 case DEMANGLE_COMPONENT_EXTENDED_OPERATOR
:
652 printf ("extended operator with %d args\n",
653 dc
->u
.s_extended_operator
.args
);
654 d_dump (dc
->u
.s_extended_operator
.name
, indent
+ 2);
657 case DEMANGLE_COMPONENT_QUAL_NAME
:
658 printf ("qualified name\n");
660 case DEMANGLE_COMPONENT_LOCAL_NAME
:
661 printf ("local name\n");
663 case DEMANGLE_COMPONENT_TYPED_NAME
:
664 printf ("typed name\n");
666 case DEMANGLE_COMPONENT_TEMPLATE
:
667 printf ("template\n");
669 case DEMANGLE_COMPONENT_VTABLE
:
672 case DEMANGLE_COMPONENT_VTT
:
675 case DEMANGLE_COMPONENT_CONSTRUCTION_VTABLE
:
676 printf ("construction vtable\n");
678 case DEMANGLE_COMPONENT_TYPEINFO
:
679 printf ("typeinfo\n");
681 case DEMANGLE_COMPONENT_TYPEINFO_NAME
:
682 printf ("typeinfo name\n");
684 case DEMANGLE_COMPONENT_TYPEINFO_FN
:
685 printf ("typeinfo function\n");
687 case DEMANGLE_COMPONENT_THUNK
:
690 case DEMANGLE_COMPONENT_VIRTUAL_THUNK
:
691 printf ("virtual thunk\n");
693 case DEMANGLE_COMPONENT_COVARIANT_THUNK
:
694 printf ("covariant thunk\n");
696 case DEMANGLE_COMPONENT_JAVA_CLASS
:
697 printf ("java class\n");
699 case DEMANGLE_COMPONENT_GUARD
:
702 case DEMANGLE_COMPONENT_REFTEMP
:
703 printf ("reference temporary\n");
705 case DEMANGLE_COMPONENT_HIDDEN_ALIAS
:
706 printf ("hidden alias\n");
708 case DEMANGLE_COMPONENT_TRANSACTION_CLONE
:
709 printf ("transaction clone\n");
711 case DEMANGLE_COMPONENT_NONTRANSACTION_CLONE
:
712 printf ("non-transaction clone\n");
714 case DEMANGLE_COMPONENT_RESTRICT
:
715 printf ("restrict\n");
717 case DEMANGLE_COMPONENT_VOLATILE
:
718 printf ("volatile\n");
720 case DEMANGLE_COMPONENT_CONST
:
723 case DEMANGLE_COMPONENT_RESTRICT_THIS
:
724 printf ("restrict this\n");
726 case DEMANGLE_COMPONENT_VOLATILE_THIS
:
727 printf ("volatile this\n");
729 case DEMANGLE_COMPONENT_CONST_THIS
:
730 printf ("const this\n");
732 case DEMANGLE_COMPONENT_REFERENCE_THIS
:
733 printf ("reference this\n");
735 case DEMANGLE_COMPONENT_RVALUE_REFERENCE_THIS
:
736 printf ("rvalue reference this\n");
738 case DEMANGLE_COMPONENT_TRANSACTION_SAFE
:
739 printf ("transaction_safe this\n");
741 case DEMANGLE_COMPONENT_VENDOR_TYPE_QUAL
:
742 printf ("vendor type qualifier\n");
744 case DEMANGLE_COMPONENT_POINTER
:
745 printf ("pointer\n");
747 case DEMANGLE_COMPONENT_REFERENCE
:
748 printf ("reference\n");
750 case DEMANGLE_COMPONENT_RVALUE_REFERENCE
:
751 printf ("rvalue reference\n");
753 case DEMANGLE_COMPONENT_COMPLEX
:
754 printf ("complex\n");
756 case DEMANGLE_COMPONENT_IMAGINARY
:
757 printf ("imaginary\n");
759 case DEMANGLE_COMPONENT_VENDOR_TYPE
:
760 printf ("vendor type\n");
762 case DEMANGLE_COMPONENT_FUNCTION_TYPE
:
763 printf ("function type\n");
765 case DEMANGLE_COMPONENT_ARRAY_TYPE
:
766 printf ("array type\n");
768 case DEMANGLE_COMPONENT_PTRMEM_TYPE
:
769 printf ("pointer to member type\n");
771 case DEMANGLE_COMPONENT_FIXED_TYPE
:
772 printf ("fixed-point type, accum? %d, sat? %d\n",
773 dc
->u
.s_fixed
.accum
, dc
->u
.s_fixed
.sat
);
774 d_dump (dc
->u
.s_fixed
.length
, indent
+ 2);
776 case DEMANGLE_COMPONENT_ARGLIST
:
777 printf ("argument list\n");
779 case DEMANGLE_COMPONENT_TEMPLATE_ARGLIST
:
780 printf ("template argument list\n");
782 case DEMANGLE_COMPONENT_INITIALIZER_LIST
:
783 printf ("initializer list\n");
785 case DEMANGLE_COMPONENT_CAST
:
788 case DEMANGLE_COMPONENT_CONVERSION
:
789 printf ("conversion operator\n");
791 case DEMANGLE_COMPONENT_NULLARY
:
792 printf ("nullary operator\n");
794 case DEMANGLE_COMPONENT_UNARY
:
795 printf ("unary operator\n");
797 case DEMANGLE_COMPONENT_BINARY
:
798 printf ("binary operator\n");
800 case DEMANGLE_COMPONENT_BINARY_ARGS
:
801 printf ("binary operator arguments\n");
803 case DEMANGLE_COMPONENT_TRINARY
:
804 printf ("trinary operator\n");
806 case DEMANGLE_COMPONENT_TRINARY_ARG1
:
807 printf ("trinary operator arguments 1\n");
809 case DEMANGLE_COMPONENT_TRINARY_ARG2
:
810 printf ("trinary operator arguments 1\n");
812 case DEMANGLE_COMPONENT_LITERAL
:
813 printf ("literal\n");
815 case DEMANGLE_COMPONENT_LITERAL_NEG
:
816 printf ("negative literal\n");
818 case DEMANGLE_COMPONENT_VENDOR_EXPR
:
819 printf ("vendor expression\n");
821 case DEMANGLE_COMPONENT_JAVA_RESOURCE
:
822 printf ("java resource\n");
824 case DEMANGLE_COMPONENT_COMPOUND_NAME
:
825 printf ("compound name\n");
827 case DEMANGLE_COMPONENT_CHARACTER
:
828 printf ("character '%c'\n", dc
->u
.s_character
.character
);
830 case DEMANGLE_COMPONENT_NUMBER
:
831 printf ("number %ld\n", dc
->u
.s_number
.number
);
833 case DEMANGLE_COMPONENT_DECLTYPE
:
834 printf ("decltype\n");
836 case DEMANGLE_COMPONENT_PACK_EXPANSION
:
837 printf ("pack expansion\n");
839 case DEMANGLE_COMPONENT_TLS_INIT
:
840 printf ("tls init function\n");
842 case DEMANGLE_COMPONENT_TLS_WRAPPER
:
843 printf ("tls wrapper function\n");
845 case DEMANGLE_COMPONENT_DEFAULT_ARG
:
846 printf ("default argument %d\n", dc
->u
.s_unary_num
.num
);
847 d_dump (dc
->u
.s_unary_num
.sub
, indent
+2);
849 case DEMANGLE_COMPONENT_LAMBDA
:
850 printf ("lambda %d\n", dc
->u
.s_unary_num
.num
);
851 d_dump (dc
->u
.s_unary_num
.sub
, indent
+2);
855 d_dump (d_left (dc
), indent
+ 2);
856 d_dump (d_right (dc
), indent
+ 2);
859 #endif /* CP_DEMANGLE_DEBUG */
861 /* Fill in a DEMANGLE_COMPONENT_NAME. */
863 CP_STATIC_IF_GLIBCPP_V3
865 cplus_demangle_fill_name (struct demangle_component
*p
, const char *s
, int len
)
867 if (p
== NULL
|| s
== NULL
|| len
<= 0)
871 p
->type
= DEMANGLE_COMPONENT_NAME
;
873 p
->u
.s_name
.len
= len
;
877 /* Fill in a DEMANGLE_COMPONENT_EXTENDED_OPERATOR. */
879 CP_STATIC_IF_GLIBCPP_V3
881 cplus_demangle_fill_extended_operator (struct demangle_component
*p
, int args
,
882 struct demangle_component
*name
)
884 if (p
== NULL
|| args
< 0 || name
== NULL
)
888 p
->type
= DEMANGLE_COMPONENT_EXTENDED_OPERATOR
;
889 p
->u
.s_extended_operator
.args
= args
;
890 p
->u
.s_extended_operator
.name
= name
;
894 /* Fill in a DEMANGLE_COMPONENT_CTOR. */
896 CP_STATIC_IF_GLIBCPP_V3
898 cplus_demangle_fill_ctor (struct demangle_component
*p
,
899 enum gnu_v3_ctor_kinds kind
,
900 struct demangle_component
*name
)
904 || (int) kind
< gnu_v3_complete_object_ctor
905 || (int) kind
> gnu_v3_object_ctor_group
)
909 p
->type
= DEMANGLE_COMPONENT_CTOR
;
910 p
->u
.s_ctor
.kind
= kind
;
911 p
->u
.s_ctor
.name
= name
;
915 /* Fill in a DEMANGLE_COMPONENT_DTOR. */
917 CP_STATIC_IF_GLIBCPP_V3
919 cplus_demangle_fill_dtor (struct demangle_component
*p
,
920 enum gnu_v3_dtor_kinds kind
,
921 struct demangle_component
*name
)
925 || (int) kind
< gnu_v3_deleting_dtor
926 || (int) kind
> gnu_v3_object_dtor_group
)
930 p
->type
= DEMANGLE_COMPONENT_DTOR
;
931 p
->u
.s_dtor
.kind
= kind
;
932 p
->u
.s_dtor
.name
= name
;
936 /* Add a new component. */
938 static struct demangle_component
*
939 d_make_empty (struct d_info
*di
)
941 struct demangle_component
*p
;
943 if (di
->next_comp
>= di
->num_comps
)
945 p
= &di
->comps
[di
->next_comp
];
952 /* Add a new generic component. */
954 static struct demangle_component
*
955 d_make_comp (struct d_info
*di
, enum demangle_component_type type
,
956 struct demangle_component
*left
,
957 struct demangle_component
*right
)
959 struct demangle_component
*p
;
961 /* We check for errors here. A typical error would be a NULL return
962 from a subroutine. We catch those here, and return NULL
966 /* These types require two parameters. */
967 case DEMANGLE_COMPONENT_QUAL_NAME
:
968 case DEMANGLE_COMPONENT_LOCAL_NAME
:
969 case DEMANGLE_COMPONENT_TYPED_NAME
:
970 case DEMANGLE_COMPONENT_TAGGED_NAME
:
971 case DEMANGLE_COMPONENT_TEMPLATE
:
972 case DEMANGLE_COMPONENT_CONSTRUCTION_VTABLE
:
973 case DEMANGLE_COMPONENT_VENDOR_TYPE_QUAL
:
974 case DEMANGLE_COMPONENT_PTRMEM_TYPE
:
975 case DEMANGLE_COMPONENT_UNARY
:
976 case DEMANGLE_COMPONENT_BINARY
:
977 case DEMANGLE_COMPONENT_BINARY_ARGS
:
978 case DEMANGLE_COMPONENT_TRINARY
:
979 case DEMANGLE_COMPONENT_TRINARY_ARG1
:
980 case DEMANGLE_COMPONENT_LITERAL
:
981 case DEMANGLE_COMPONENT_LITERAL_NEG
:
982 case DEMANGLE_COMPONENT_VENDOR_EXPR
:
983 case DEMANGLE_COMPONENT_COMPOUND_NAME
:
984 case DEMANGLE_COMPONENT_VECTOR_TYPE
:
985 case DEMANGLE_COMPONENT_CLONE
:
986 if (left
== NULL
|| right
== NULL
)
990 /* These types only require one parameter. */
991 case DEMANGLE_COMPONENT_VTABLE
:
992 case DEMANGLE_COMPONENT_VTT
:
993 case DEMANGLE_COMPONENT_TYPEINFO
:
994 case DEMANGLE_COMPONENT_TYPEINFO_NAME
:
995 case DEMANGLE_COMPONENT_TYPEINFO_FN
:
996 case DEMANGLE_COMPONENT_THUNK
:
997 case DEMANGLE_COMPONENT_VIRTUAL_THUNK
:
998 case DEMANGLE_COMPONENT_COVARIANT_THUNK
:
999 case DEMANGLE_COMPONENT_JAVA_CLASS
:
1000 case DEMANGLE_COMPONENT_GUARD
:
1001 case DEMANGLE_COMPONENT_TLS_INIT
:
1002 case DEMANGLE_COMPONENT_TLS_WRAPPER
:
1003 case DEMANGLE_COMPONENT_REFTEMP
:
1004 case DEMANGLE_COMPONENT_HIDDEN_ALIAS
:
1005 case DEMANGLE_COMPONENT_TRANSACTION_CLONE
:
1006 case DEMANGLE_COMPONENT_NONTRANSACTION_CLONE
:
1007 case DEMANGLE_COMPONENT_POINTER
:
1008 case DEMANGLE_COMPONENT_REFERENCE
:
1009 case DEMANGLE_COMPONENT_RVALUE_REFERENCE
:
1010 case DEMANGLE_COMPONENT_COMPLEX
:
1011 case DEMANGLE_COMPONENT_IMAGINARY
:
1012 case DEMANGLE_COMPONENT_VENDOR_TYPE
:
1013 case DEMANGLE_COMPONENT_CAST
:
1014 case DEMANGLE_COMPONENT_CONVERSION
:
1015 case DEMANGLE_COMPONENT_JAVA_RESOURCE
:
1016 case DEMANGLE_COMPONENT_DECLTYPE
:
1017 case DEMANGLE_COMPONENT_PACK_EXPANSION
:
1018 case DEMANGLE_COMPONENT_GLOBAL_CONSTRUCTORS
:
1019 case DEMANGLE_COMPONENT_GLOBAL_DESTRUCTORS
:
1020 case DEMANGLE_COMPONENT_NULLARY
:
1021 case DEMANGLE_COMPONENT_TRINARY_ARG2
:
1022 case DEMANGLE_COMPONENT_TPARM_OBJ
:
1027 /* This needs a right parameter, but the left parameter can be
1029 case DEMANGLE_COMPONENT_ARRAY_TYPE
:
1030 case DEMANGLE_COMPONENT_INITIALIZER_LIST
:
1035 /* These are allowed to have no parameters--in some cases they
1036 will be filled in later. */
1037 case DEMANGLE_COMPONENT_FUNCTION_TYPE
:
1038 case DEMANGLE_COMPONENT_RESTRICT
:
1039 case DEMANGLE_COMPONENT_VOLATILE
:
1040 case DEMANGLE_COMPONENT_CONST
:
1041 case DEMANGLE_COMPONENT_ARGLIST
:
1042 case DEMANGLE_COMPONENT_TEMPLATE_ARGLIST
:
1043 FNQUAL_COMPONENT_CASE
:
1046 /* Other types should not be seen here. */
1051 p
= d_make_empty (di
);
1055 p
->u
.s_binary
.left
= left
;
1056 p
->u
.s_binary
.right
= right
;
1061 /* Add a new demangle mangled name component. */
1063 static struct demangle_component
*
1064 d_make_demangle_mangled_name (struct d_info
*di
, const char *s
)
1066 if (d_peek_char (di
) != '_' || d_peek_next_char (di
) != 'Z')
1067 return d_make_name (di
, s
, strlen (s
));
1069 return d_encoding (di
, 0);
1072 /* Add a new name component. */
1074 static struct demangle_component
*
1075 d_make_name (struct d_info
*di
, const char *s
, int len
)
1077 struct demangle_component
*p
;
1079 p
= d_make_empty (di
);
1080 if (! cplus_demangle_fill_name (p
, s
, len
))
1085 /* Add a new builtin type component. */
1087 static struct demangle_component
*
1088 d_make_builtin_type (struct d_info
*di
,
1089 const struct demangle_builtin_type_info
*type
)
1091 struct demangle_component
*p
;
1095 p
= d_make_empty (di
);
1098 p
->type
= DEMANGLE_COMPONENT_BUILTIN_TYPE
;
1099 p
->u
.s_builtin
.type
= type
;
1104 /* Add a new operator component. */
1106 static struct demangle_component
*
1107 d_make_operator (struct d_info
*di
, const struct demangle_operator_info
*op
)
1109 struct demangle_component
*p
;
1111 p
= d_make_empty (di
);
1114 p
->type
= DEMANGLE_COMPONENT_OPERATOR
;
1115 p
->u
.s_operator
.op
= op
;
1120 /* Add a new extended operator component. */
1122 static struct demangle_component
*
1123 d_make_extended_operator (struct d_info
*di
, int args
,
1124 struct demangle_component
*name
)
1126 struct demangle_component
*p
;
1128 p
= d_make_empty (di
);
1129 if (! cplus_demangle_fill_extended_operator (p
, args
, name
))
1134 static struct demangle_component
*
1135 d_make_default_arg (struct d_info
*di
, int num
,
1136 struct demangle_component
*sub
)
1138 struct demangle_component
*p
= d_make_empty (di
);
1141 p
->type
= DEMANGLE_COMPONENT_DEFAULT_ARG
;
1142 p
->u
.s_unary_num
.num
= num
;
1143 p
->u
.s_unary_num
.sub
= sub
;
1148 /* Add a new constructor component. */
1150 static struct demangle_component
*
1151 d_make_ctor (struct d_info
*di
, enum gnu_v3_ctor_kinds kind
,
1152 struct demangle_component
*name
)
1154 struct demangle_component
*p
;
1156 p
= d_make_empty (di
);
1157 if (! cplus_demangle_fill_ctor (p
, kind
, name
))
1162 /* Add a new destructor component. */
1164 static struct demangle_component
*
1165 d_make_dtor (struct d_info
*di
, enum gnu_v3_dtor_kinds kind
,
1166 struct demangle_component
*name
)
1168 struct demangle_component
*p
;
1170 p
= d_make_empty (di
);
1171 if (! cplus_demangle_fill_dtor (p
, kind
, name
))
1176 /* Add a new template parameter. */
1178 static struct demangle_component
*
1179 d_make_template_param (struct d_info
*di
, int i
)
1181 struct demangle_component
*p
;
1183 p
= d_make_empty (di
);
1186 p
->type
= DEMANGLE_COMPONENT_TEMPLATE_PARAM
;
1187 p
->u
.s_number
.number
= i
;
1192 /* Add a new function parameter. */
1194 static struct demangle_component
*
1195 d_make_function_param (struct d_info
*di
, int i
)
1197 struct demangle_component
*p
;
1199 p
= d_make_empty (di
);
1202 p
->type
= DEMANGLE_COMPONENT_FUNCTION_PARAM
;
1203 p
->u
.s_number
.number
= i
;
1208 /* Add a new standard substitution component. */
1210 static struct demangle_component
*
1211 d_make_sub (struct d_info
*di
, const char *name
, int len
)
1213 struct demangle_component
*p
;
1215 p
= d_make_empty (di
);
1218 p
->type
= DEMANGLE_COMPONENT_SUB_STD
;
1219 p
->u
.s_string
.string
= name
;
1220 p
->u
.s_string
.len
= len
;
1225 /* <mangled-name> ::= _Z <encoding> [<clone-suffix>]*
1227 TOP_LEVEL is non-zero when called at the top level. */
1229 CP_STATIC_IF_GLIBCPP_V3
1230 struct demangle_component
*
1231 cplus_demangle_mangled_name (struct d_info
*di
, int top_level
)
1233 struct demangle_component
*p
;
1235 if (! d_check_char (di
, '_')
1236 /* Allow missing _ if not at toplevel to work around a
1237 bug in G++ abi-version=2 mangling; see the comment in
1238 write_template_arg. */
1241 if (! d_check_char (di
, 'Z'))
1243 p
= d_encoding (di
, top_level
);
1245 /* If at top level and parsing parameters, check for a clone
1247 if (top_level
&& (di
->options
& DMGL_PARAMS
) != 0)
1248 while (d_peek_char (di
) == '.'
1249 && (IS_LOWER (d_peek_next_char (di
))
1250 || d_peek_next_char (di
) == '_'
1251 || IS_DIGIT (d_peek_next_char (di
))))
1252 p
= d_clone_suffix (di
, p
);
1257 /* Return whether a function should have a return type. The argument
1258 is the function name, which may be qualified in various ways. The
1259 rules are that template functions have return types with some
1260 exceptions, function types which are not part of a function name
1261 mangling have return types with some exceptions, and non-template
1262 function names do not have return types. The exceptions are that
1263 constructors, destructors, and conversion operators do not have
1267 has_return_type (struct demangle_component
*dc
)
1275 case DEMANGLE_COMPONENT_LOCAL_NAME
:
1276 return has_return_type (d_right (dc
));
1277 case DEMANGLE_COMPONENT_TEMPLATE
:
1278 return ! is_ctor_dtor_or_conversion (d_left (dc
));
1279 FNQUAL_COMPONENT_CASE
:
1280 return has_return_type (d_left (dc
));
1284 /* Return whether a name is a constructor, a destructor, or a
1285 conversion operator. */
1288 is_ctor_dtor_or_conversion (struct demangle_component
*dc
)
1296 case DEMANGLE_COMPONENT_QUAL_NAME
:
1297 case DEMANGLE_COMPONENT_LOCAL_NAME
:
1298 return is_ctor_dtor_or_conversion (d_right (dc
));
1299 case DEMANGLE_COMPONENT_CTOR
:
1300 case DEMANGLE_COMPONENT_DTOR
:
1301 case DEMANGLE_COMPONENT_CONVERSION
:
1306 /* <encoding> ::= <(function) name> <bare-function-type>
1310 TOP_LEVEL is non-zero when called at the top level, in which case
1311 if DMGL_PARAMS is not set we do not demangle the function
1312 parameters. We only set this at the top level, because otherwise
1313 we would not correctly demangle names in local scopes. */
1315 static struct demangle_component
*
1316 d_encoding (struct d_info
*di
, int top_level
)
1318 char peek
= d_peek_char (di
);
1319 struct demangle_component
*dc
;
1321 if (peek
== 'G' || peek
== 'T')
1322 dc
= d_special_name (di
);
1328 /* Failed already. */;
1329 else if (top_level
&& (di
->options
& DMGL_PARAMS
) == 0)
1331 /* Strip off any initial CV-qualifiers, as they really apply
1332 to the `this' parameter, and they were not output by the
1333 v2 demangler without DMGL_PARAMS. */
1334 while (is_fnqual_component_type (dc
->type
))
1337 /* If the top level is a DEMANGLE_COMPONENT_LOCAL_NAME, then
1338 there may be function-qualifiers on its right argument which
1339 really apply here; this happens when parsing a class
1340 which is local to a function. */
1341 if (dc
->type
== DEMANGLE_COMPONENT_LOCAL_NAME
)
1343 while (d_right (dc
) != NULL
1344 && is_fnqual_component_type (d_right (dc
)->type
))
1345 d_right (dc
) = d_left (d_right (dc
));
1347 if (d_right (dc
) == NULL
)
1353 peek
= d_peek_char (di
);
1354 if (peek
!= '\0' && peek
!= 'E')
1356 struct demangle_component
*ftype
;
1358 ftype
= d_bare_function_type (di
, has_return_type (dc
));
1361 /* If this is a non-top-level local-name, clear the
1362 return type, so it doesn't confuse the user by
1363 being confused with the return type of whaever
1364 this is nested within. */
1365 if (!top_level
&& dc
->type
== DEMANGLE_COMPONENT_LOCAL_NAME
1366 && ftype
->type
== DEMANGLE_COMPONENT_FUNCTION_TYPE
)
1367 d_left (ftype
) = NULL
;
1369 dc
= d_make_comp (di
, DEMANGLE_COMPONENT_TYPED_NAME
,
1381 /* <tagged-name> ::= <name> B <source-name> */
1383 static struct demangle_component
*
1384 d_abi_tags (struct d_info
*di
, struct demangle_component
*dc
)
1386 struct demangle_component
*hold_last_name
;
1389 /* Preserve the last name, so the ABI tag doesn't clobber it. */
1390 hold_last_name
= di
->last_name
;
1392 while (peek
= d_peek_char (di
),
1395 struct demangle_component
*tag
;
1397 tag
= d_source_name (di
);
1398 dc
= d_make_comp (di
, DEMANGLE_COMPONENT_TAGGED_NAME
, dc
, tag
);
1401 di
->last_name
= hold_last_name
;
1406 /* <name> ::= <nested-name>
1408 ::= <unscoped-template-name> <template-args>
1411 <unscoped-name> ::= <unqualified-name>
1412 ::= St <unqualified-name>
1414 <unscoped-template-name> ::= <unscoped-name>
1418 static struct demangle_component
*
1419 d_name (struct d_info
*di
)
1421 char peek
= d_peek_char (di
);
1422 struct demangle_component
*dc
;
1427 return d_nested_name (di
);
1430 return d_local_name (di
);
1433 return d_unqualified_name (di
);
1439 if (d_peek_next_char (di
) != 't')
1441 dc
= d_substitution (di
, 0);
1447 dc
= d_make_comp (di
, DEMANGLE_COMPONENT_QUAL_NAME
,
1448 d_make_name (di
, "std", 3),
1449 d_unqualified_name (di
));
1454 if (d_peek_char (di
) != 'I')
1456 /* The grammar does not permit this case to occur if we
1457 called d_substitution() above (i.e., subst == 1). We
1458 don't bother to check. */
1462 /* This is <template-args>, which means that we just saw
1463 <unscoped-template-name>, which is a substitution
1464 candidate if we didn't just get it from a
1468 if (! d_add_substitution (di
, dc
))
1471 dc
= d_make_comp (di
, DEMANGLE_COMPONENT_TEMPLATE
, dc
,
1472 d_template_args (di
));
1480 dc
= d_unqualified_name (di
);
1481 if (d_peek_char (di
) == 'I')
1483 /* This is <template-args>, which means that we just saw
1484 <unscoped-template-name>, which is a substitution
1486 if (! d_add_substitution (di
, dc
))
1488 dc
= d_make_comp (di
, DEMANGLE_COMPONENT_TEMPLATE
, dc
,
1489 d_template_args (di
));
1495 /* <nested-name> ::= N [<CV-qualifiers>] [<ref-qualifier>] <prefix> <unqualified-name> E
1496 ::= N [<CV-qualifiers>] [<ref-qualifier>] <template-prefix> <template-args> E
1499 static struct demangle_component
*
1500 d_nested_name (struct d_info
*di
)
1502 struct demangle_component
*ret
;
1503 struct demangle_component
**pret
;
1504 struct demangle_component
*rqual
;
1506 if (! d_check_char (di
, 'N'))
1509 pret
= d_cv_qualifiers (di
, &ret
, 1);
1513 /* Parse the ref-qualifier now and then attach it
1514 once we have something to attach it to. */
1515 rqual
= d_ref_qualifier (di
, NULL
);
1517 *pret
= d_prefix (di
, 1);
1523 d_left (rqual
) = ret
;
1527 if (! d_check_char (di
, 'E'))
1533 /* <prefix> ::= <prefix> <unqualified-name>
1534 ::= <template-prefix> <template-args>
1535 ::= <template-param>
1540 <template-prefix> ::= <prefix> <(template) unqualified-name>
1541 ::= <template-param>
1544 SUBST is true if we should add substitutions (as normal), false
1545 if not (in an unresolved-name). */
1547 static struct demangle_component
*
1548 d_prefix (struct d_info
*di
, int subst
)
1550 struct demangle_component
*ret
= NULL
;
1555 enum demangle_component_type comb_type
;
1556 struct demangle_component
*dc
;
1558 peek
= d_peek_char (di
);
1562 /* The older code accepts a <local-name> here, but I don't see
1563 that in the grammar. The older code does not accept a
1564 <template-param> here. */
1566 comb_type
= DEMANGLE_COMPONENT_QUAL_NAME
;
1569 char peek2
= d_peek_next_char (di
);
1570 if (peek2
== 'T' || peek2
== 't')
1572 dc
= cplus_demangle_type (di
);
1574 /* Destructor name. */
1575 dc
= d_unqualified_name (di
);
1577 else if (IS_DIGIT (peek
)
1582 dc
= d_unqualified_name (di
);
1583 else if (peek
== 'S')
1584 dc
= d_substitution (di
, 1);
1585 else if (peek
== 'I')
1589 comb_type
= DEMANGLE_COMPONENT_TEMPLATE
;
1590 dc
= d_template_args (di
);
1592 else if (peek
== 'T')
1593 dc
= d_template_param (di
);
1594 else if (peek
== 'E')
1596 else if (peek
== 'M')
1598 /* Initializer scope for a lambda. We don't need to represent
1599 this; the normal code will just treat the variable as a type
1600 scope, which gives appropriate output. */
1612 ret
= d_make_comp (di
, comb_type
, ret
, dc
);
1614 if (peek
!= 'S' && d_peek_char (di
) != 'E' && subst
)
1616 if (! d_add_substitution (di
, ret
))
1622 /* <unqualified-name> ::= <operator-name>
1623 ::= <ctor-dtor-name>
1625 ::= <local-source-name>
1627 <local-source-name> ::= L <source-name> <discriminator>
1630 static struct demangle_component
*
1631 d_unqualified_name (struct d_info
*di
)
1633 struct demangle_component
*ret
;
1636 peek
= d_peek_char (di
);
1637 if (IS_DIGIT (peek
))
1638 ret
= d_source_name (di
);
1639 else if (IS_LOWER (peek
))
1641 int was_expr
= di
->is_expression
;
1642 if (peek
== 'o' && d_peek_next_char (di
) == 'n')
1645 /* Treat cv as naming a conversion operator. */
1646 di
->is_expression
= 0;
1648 ret
= d_operator_name (di
);
1649 di
->is_expression
= was_expr
;
1650 if (ret
!= NULL
&& ret
->type
== DEMANGLE_COMPONENT_OPERATOR
)
1652 di
->expansion
+= sizeof "operator" + ret
->u
.s_operator
.op
->len
- 2;
1653 if (!strcmp (ret
->u
.s_operator
.op
->code
, "li"))
1654 ret
= d_make_comp (di
, DEMANGLE_COMPONENT_UNARY
, ret
,
1655 d_source_name (di
));
1658 else if (peek
== 'C' || peek
== 'D')
1659 ret
= d_ctor_dtor_name (di
);
1660 else if (peek
== 'L')
1664 ret
= d_source_name (di
);
1667 if (! d_discriminator (di
))
1670 else if (peek
== 'U')
1672 switch (d_peek_next_char (di
))
1675 ret
= d_lambda (di
);
1678 ret
= d_unnamed_type (di
);
1687 if (d_peek_char (di
) == 'B')
1688 ret
= d_abi_tags (di
, ret
);
1692 /* <source-name> ::= <(positive length) number> <identifier> */
1694 static struct demangle_component
*
1695 d_source_name (struct d_info
*di
)
1698 struct demangle_component
*ret
;
1700 len
= d_number (di
);
1703 ret
= d_identifier (di
, len
);
1704 di
->last_name
= ret
;
1708 /* number ::= [n] <(non-negative decimal integer)> */
1711 d_number (struct d_info
*di
)
1718 peek
= d_peek_char (di
);
1723 peek
= d_peek_char (di
);
1729 if (! IS_DIGIT (peek
))
1735 if (ret
> ((INT_MAX
- (peek
- '0')) / 10))
1737 ret
= ret
* 10 + (peek
- '0');
1739 peek
= d_peek_char (di
);
1743 /* Like d_number, but returns a demangle_component. */
1745 static struct demangle_component
*
1746 d_number_component (struct d_info
*di
)
1748 struct demangle_component
*ret
= d_make_empty (di
);
1751 ret
->type
= DEMANGLE_COMPONENT_NUMBER
;
1752 ret
->u
.s_number
.number
= d_number (di
);
1757 /* identifier ::= <(unqualified source code identifier)> */
1759 static struct demangle_component
*
1760 d_identifier (struct d_info
*di
, int len
)
1766 if (di
->send
- name
< len
)
1769 d_advance (di
, len
);
1771 /* A Java mangled name may have a trailing '$' if it is a C++
1772 keyword. This '$' is not included in the length count. We just
1774 if ((di
->options
& DMGL_JAVA
) != 0
1775 && d_peek_char (di
) == '$')
1778 /* Look for something which looks like a gcc encoding of an
1779 anonymous namespace, and replace it with a more user friendly
1781 if (len
>= (int) ANONYMOUS_NAMESPACE_PREFIX_LEN
+ 2
1782 && memcmp (name
, ANONYMOUS_NAMESPACE_PREFIX
,
1783 ANONYMOUS_NAMESPACE_PREFIX_LEN
) == 0)
1787 s
= name
+ ANONYMOUS_NAMESPACE_PREFIX_LEN
;
1788 if ((*s
== '.' || *s
== '_' || *s
== '$')
1791 di
->expansion
-= len
- sizeof "(anonymous namespace)";
1792 return d_make_name (di
, "(anonymous namespace)",
1793 sizeof "(anonymous namespace)" - 1);
1797 return d_make_name (di
, name
, len
);
1800 /* operator_name ::= many different two character encodings.
1802 ::= v <digit> <source-name>
1804 This list is sorted for binary search. */
1806 #define NL(s) s, (sizeof s) - 1
1808 CP_STATIC_IF_GLIBCPP_V3
1809 const struct demangle_operator_info cplus_demangle_operators
[] =
1811 { "aN", NL ("&="), 2 },
1812 { "aS", NL ("="), 2 },
1813 { "aa", NL ("&&"), 2 },
1814 { "ad", NL ("&"), 1 },
1815 { "an", NL ("&"), 2 },
1816 { "at", NL ("alignof "), 1 },
1817 { "aw", NL ("co_await "), 1 },
1818 { "az", NL ("alignof "), 1 },
1819 { "cc", NL ("const_cast"), 2 },
1820 { "cl", NL ("()"), 2 },
1821 { "cm", NL (","), 2 },
1822 { "co", NL ("~"), 1 },
1823 { "dV", NL ("/="), 2 },
1824 { "dX", NL ("[...]="), 3 }, /* [expr...expr] = expr */
1825 { "da", NL ("delete[] "), 1 },
1826 { "dc", NL ("dynamic_cast"), 2 },
1827 { "de", NL ("*"), 1 },
1828 { "di", NL ("="), 2 }, /* .name = expr */
1829 { "dl", NL ("delete "), 1 },
1830 { "ds", NL (".*"), 2 },
1831 { "dt", NL ("."), 2 },
1832 { "dv", NL ("/"), 2 },
1833 { "dx", NL ("]="), 2 }, /* [expr] = expr */
1834 { "eO", NL ("^="), 2 },
1835 { "eo", NL ("^"), 2 },
1836 { "eq", NL ("=="), 2 },
1837 { "fL", NL ("..."), 3 },
1838 { "fR", NL ("..."), 3 },
1839 { "fl", NL ("..."), 2 },
1840 { "fr", NL ("..."), 2 },
1841 { "ge", NL (">="), 2 },
1842 { "gs", NL ("::"), 1 },
1843 { "gt", NL (">"), 2 },
1844 { "ix", NL ("[]"), 2 },
1845 { "lS", NL ("<<="), 2 },
1846 { "le", NL ("<="), 2 },
1847 { "li", NL ("operator\"\" "), 1 },
1848 { "ls", NL ("<<"), 2 },
1849 { "lt", NL ("<"), 2 },
1850 { "mI", NL ("-="), 2 },
1851 { "mL", NL ("*="), 2 },
1852 { "mi", NL ("-"), 2 },
1853 { "ml", NL ("*"), 2 },
1854 { "mm", NL ("--"), 1 },
1855 { "na", NL ("new[]"), 3 },
1856 { "ne", NL ("!="), 2 },
1857 { "ng", NL ("-"), 1 },
1858 { "nt", NL ("!"), 1 },
1859 { "nw", NL ("new"), 3 },
1860 { "oR", NL ("|="), 2 },
1861 { "oo", NL ("||"), 2 },
1862 { "or", NL ("|"), 2 },
1863 { "pL", NL ("+="), 2 },
1864 { "pl", NL ("+"), 2 },
1865 { "pm", NL ("->*"), 2 },
1866 { "pp", NL ("++"), 1 },
1867 { "ps", NL ("+"), 1 },
1868 { "pt", NL ("->"), 2 },
1869 { "qu", NL ("?"), 3 },
1870 { "rM", NL ("%="), 2 },
1871 { "rS", NL (">>="), 2 },
1872 { "rc", NL ("reinterpret_cast"), 2 },
1873 { "rm", NL ("%"), 2 },
1874 { "rs", NL (">>"), 2 },
1875 { "sP", NL ("sizeof..."), 1 },
1876 { "sZ", NL ("sizeof..."), 1 },
1877 { "sc", NL ("static_cast"), 2 },
1878 { "ss", NL ("<=>"), 2 },
1879 { "st", NL ("sizeof "), 1 },
1880 { "sz", NL ("sizeof "), 1 },
1881 { "tr", NL ("throw"), 0 },
1882 { "tw", NL ("throw "), 1 },
1883 { NULL
, NULL
, 0, 0 }
1886 static struct demangle_component
*
1887 d_operator_name (struct d_info
*di
)
1892 c1
= d_next_char (di
);
1893 c2
= d_next_char (di
);
1894 if (c1
== 'v' && IS_DIGIT (c2
))
1895 return d_make_extended_operator (di
, c2
- '0', d_source_name (di
));
1896 else if (c1
== 'c' && c2
== 'v')
1898 struct demangle_component
*type
;
1899 int was_conversion
= di
->is_conversion
;
1900 struct demangle_component
*res
;
1902 di
->is_conversion
= ! di
->is_expression
;
1903 type
= cplus_demangle_type (di
);
1904 if (di
->is_conversion
)
1905 res
= d_make_comp (di
, DEMANGLE_COMPONENT_CONVERSION
, type
, NULL
);
1907 res
= d_make_comp (di
, DEMANGLE_COMPONENT_CAST
, type
, NULL
);
1908 di
->is_conversion
= was_conversion
;
1913 /* LOW is the inclusive lower bound. */
1915 /* HIGH is the exclusive upper bound. We subtract one to ignore
1916 the sentinel at the end of the array. */
1917 int high
= ((sizeof (cplus_demangle_operators
)
1918 / sizeof (cplus_demangle_operators
[0]))
1924 const struct demangle_operator_info
*p
;
1926 i
= low
+ (high
- low
) / 2;
1927 p
= cplus_demangle_operators
+ i
;
1929 if (c1
== p
->code
[0] && c2
== p
->code
[1])
1930 return d_make_operator (di
, p
);
1932 if (c1
< p
->code
[0] || (c1
== p
->code
[0] && c2
< p
->code
[1]))
1942 static struct demangle_component
*
1943 d_make_character (struct d_info
*di
, int c
)
1945 struct demangle_component
*p
;
1946 p
= d_make_empty (di
);
1949 p
->type
= DEMANGLE_COMPONENT_CHARACTER
;
1950 p
->u
.s_character
.character
= c
;
1955 static struct demangle_component
*
1956 d_java_resource (struct d_info
*di
)
1958 struct demangle_component
*p
= NULL
;
1959 struct demangle_component
*next
= NULL
;
1964 len
= d_number (di
);
1968 /* Eat the leading '_'. */
1969 if (d_next_char (di
) != '_')
1982 /* Each chunk is either a '$' escape... */
2000 next
= d_make_character (di
, c
);
2008 /* ... or a sequence of characters. */
2011 while (i
< len
&& str
[i
] && str
[i
] != '$')
2014 next
= d_make_name (di
, str
, i
);
2027 p
= d_make_comp (di
, DEMANGLE_COMPONENT_COMPOUND_NAME
, p
, next
);
2033 p
= d_make_comp (di
, DEMANGLE_COMPONENT_JAVA_RESOURCE
, p
, NULL
);
2038 /* <special-name> ::= TV <type>
2042 ::= TA <template-arg>
2043 ::= GV <(object) name>
2044 ::= T <call-offset> <(base) encoding>
2045 ::= Tc <call-offset> <call-offset> <(base) encoding>
2046 Also g++ extensions:
2047 ::= TC <type> <(offset) number> _ <(base) type>
2052 ::= Gr <resource name>
2057 static struct demangle_component
*
2058 d_special_name (struct d_info
*di
)
2060 di
->expansion
+= 20;
2061 if (d_check_char (di
, 'T'))
2063 switch (d_next_char (di
))
2067 return d_make_comp (di
, DEMANGLE_COMPONENT_VTABLE
,
2068 cplus_demangle_type (di
), NULL
);
2070 di
->expansion
-= 10;
2071 return d_make_comp (di
, DEMANGLE_COMPONENT_VTT
,
2072 cplus_demangle_type (di
), NULL
);
2074 return d_make_comp (di
, DEMANGLE_COMPONENT_TYPEINFO
,
2075 cplus_demangle_type (di
), NULL
);
2077 return d_make_comp (di
, DEMANGLE_COMPONENT_TYPEINFO_NAME
,
2078 cplus_demangle_type (di
), NULL
);
2081 if (! d_call_offset (di
, 'h'))
2083 return d_make_comp (di
, DEMANGLE_COMPONENT_THUNK
,
2084 d_encoding (di
, 0), NULL
);
2087 if (! d_call_offset (di
, 'v'))
2089 return d_make_comp (di
, DEMANGLE_COMPONENT_VIRTUAL_THUNK
,
2090 d_encoding (di
, 0), NULL
);
2093 if (! d_call_offset (di
, '\0'))
2095 if (! d_call_offset (di
, '\0'))
2097 return d_make_comp (di
, DEMANGLE_COMPONENT_COVARIANT_THUNK
,
2098 d_encoding (di
, 0), NULL
);
2102 struct demangle_component
*derived_type
;
2104 struct demangle_component
*base_type
;
2106 derived_type
= cplus_demangle_type (di
);
2107 offset
= d_number (di
);
2110 if (! d_check_char (di
, '_'))
2112 base_type
= cplus_demangle_type (di
);
2113 /* We don't display the offset. FIXME: We should display
2114 it in verbose mode. */
2116 return d_make_comp (di
, DEMANGLE_COMPONENT_CONSTRUCTION_VTABLE
,
2117 base_type
, derived_type
);
2121 return d_make_comp (di
, DEMANGLE_COMPONENT_TYPEINFO_FN
,
2122 cplus_demangle_type (di
), NULL
);
2124 return d_make_comp (di
, DEMANGLE_COMPONENT_JAVA_CLASS
,
2125 cplus_demangle_type (di
), NULL
);
2128 return d_make_comp (di
, DEMANGLE_COMPONENT_TLS_INIT
,
2132 return d_make_comp (di
, DEMANGLE_COMPONENT_TLS_WRAPPER
,
2136 return d_make_comp (di
, DEMANGLE_COMPONENT_TPARM_OBJ
,
2137 d_template_arg (di
), NULL
);
2143 else if (d_check_char (di
, 'G'))
2145 switch (d_next_char (di
))
2148 return d_make_comp (di
, DEMANGLE_COMPONENT_GUARD
,
2153 struct demangle_component
*name
= d_name (di
);
2154 return d_make_comp (di
, DEMANGLE_COMPONENT_REFTEMP
, name
,
2155 d_number_component (di
));
2159 return d_make_comp (di
, DEMANGLE_COMPONENT_HIDDEN_ALIAS
,
2160 d_encoding (di
, 0), NULL
);
2163 switch (d_next_char (di
))
2166 return d_make_comp (di
, DEMANGLE_COMPONENT_NONTRANSACTION_CLONE
,
2167 d_encoding (di
, 0), NULL
);
2169 /* ??? The proposal is that other letters (such as 'h') stand
2170 for different variants of transaction cloning, such as
2171 compiling directly for hardware transaction support. But
2172 they still should all be transactional clones of some sort
2173 so go ahead and call them that. */
2175 return d_make_comp (di
, DEMANGLE_COMPONENT_TRANSACTION_CLONE
,
2176 d_encoding (di
, 0), NULL
);
2180 return d_java_resource (di
);
2190 /* <call-offset> ::= h <nv-offset> _
2193 <nv-offset> ::= <(offset) number>
2195 <v-offset> ::= <(offset) number> _ <(virtual offset) number>
2197 The C parameter, if not '\0', is a character we just read which is
2198 the start of the <call-offset>.
2200 We don't display the offset information anywhere. FIXME: We should
2201 display it in verbose mode. */
2204 d_call_offset (struct d_info
*di
, int c
)
2207 c
= d_next_char (di
);
2214 if (! d_check_char (di
, '_'))
2221 if (! d_check_char (di
, '_'))
2227 /* <ctor-dtor-name> ::= C1
2235 static struct demangle_component
*
2236 d_ctor_dtor_name (struct d_info
*di
)
2238 if (di
->last_name
!= NULL
)
2240 if (di
->last_name
->type
== DEMANGLE_COMPONENT_NAME
)
2241 di
->expansion
+= di
->last_name
->u
.s_name
.len
;
2242 else if (di
->last_name
->type
== DEMANGLE_COMPONENT_SUB_STD
)
2243 di
->expansion
+= di
->last_name
->u
.s_string
.len
;
2245 switch (d_peek_char (di
))
2249 enum gnu_v3_ctor_kinds kind
;
2252 if (d_peek_next_char (di
) == 'I')
2258 switch (d_peek_next_char (di
))
2261 kind
= gnu_v3_complete_object_ctor
;
2264 kind
= gnu_v3_base_object_ctor
;
2267 kind
= gnu_v3_complete_object_allocating_ctor
;
2270 kind
= gnu_v3_unified_ctor
;
2273 kind
= gnu_v3_object_ctor_group
;
2282 cplus_demangle_type (di
);
2284 return d_make_ctor (di
, kind
, di
->last_name
);
2289 enum gnu_v3_dtor_kinds kind
;
2291 switch (d_peek_next_char (di
))
2294 kind
= gnu_v3_deleting_dtor
;
2297 kind
= gnu_v3_complete_object_dtor
;
2300 kind
= gnu_v3_base_object_dtor
;
2302 /* digit '3' is not used */
2304 kind
= gnu_v3_unified_dtor
;
2307 kind
= gnu_v3_object_dtor_group
;
2313 return d_make_dtor (di
, kind
, di
->last_name
);
2321 /* True iff we're looking at an order-insensitive type-qualifier, including
2322 function-type-qualifiers. */
2325 next_is_type_qual (struct d_info
*di
)
2327 char peek
= d_peek_char (di
);
2328 if (peek
== 'r' || peek
== 'V' || peek
== 'K')
2332 peek
= d_peek_next_char (di
);
2333 if (peek
== 'x' || peek
== 'o' || peek
== 'O' || peek
== 'w')
2339 /* <type> ::= <builtin-type>
2341 ::= <class-enum-type>
2343 ::= <pointer-to-member-type>
2344 ::= <template-param>
2345 ::= <template-template-param> <template-args>
2347 ::= <CV-qualifiers> <type>
2350 ::= O <type> (C++0x)
2353 ::= U <source-name> <type>
2355 <builtin-type> ::= various one letter codes
2359 CP_STATIC_IF_GLIBCPP_V3
2360 const struct demangle_builtin_type_info
2361 cplus_demangle_builtin_types
[D_BUILTIN_TYPE_COUNT
] =
2363 /* a */ { NL ("signed char"), NL ("signed char"), D_PRINT_DEFAULT
},
2364 /* b */ { NL ("bool"), NL ("boolean"), D_PRINT_BOOL
},
2365 /* c */ { NL ("char"), NL ("byte"), D_PRINT_DEFAULT
},
2366 /* d */ { NL ("double"), NL ("double"), D_PRINT_FLOAT
},
2367 /* e */ { NL ("long double"), NL ("long double"), D_PRINT_FLOAT
},
2368 /* f */ { NL ("float"), NL ("float"), D_PRINT_FLOAT
},
2369 /* g */ { NL ("__float128"), NL ("__float128"), D_PRINT_FLOAT
},
2370 /* h */ { NL ("unsigned char"), NL ("unsigned char"), D_PRINT_DEFAULT
},
2371 /* i */ { NL ("int"), NL ("int"), D_PRINT_INT
},
2372 /* j */ { NL ("unsigned int"), NL ("unsigned"), D_PRINT_UNSIGNED
},
2373 /* k */ { NULL
, 0, NULL
, 0, D_PRINT_DEFAULT
},
2374 /* l */ { NL ("long"), NL ("long"), D_PRINT_LONG
},
2375 /* m */ { NL ("unsigned long"), NL ("unsigned long"), D_PRINT_UNSIGNED_LONG
},
2376 /* n */ { NL ("__int128"), NL ("__int128"), D_PRINT_DEFAULT
},
2377 /* o */ { NL ("unsigned __int128"), NL ("unsigned __int128"),
2379 /* p */ { NULL
, 0, NULL
, 0, D_PRINT_DEFAULT
},
2380 /* q */ { NULL
, 0, NULL
, 0, D_PRINT_DEFAULT
},
2381 /* r */ { NULL
, 0, NULL
, 0, D_PRINT_DEFAULT
},
2382 /* s */ { NL ("short"), NL ("short"), D_PRINT_DEFAULT
},
2383 /* t */ { NL ("unsigned short"), NL ("unsigned short"), D_PRINT_DEFAULT
},
2384 /* u */ { NULL
, 0, NULL
, 0, D_PRINT_DEFAULT
},
2385 /* v */ { NL ("void"), NL ("void"), D_PRINT_VOID
},
2386 /* w */ { NL ("wchar_t"), NL ("char"), D_PRINT_DEFAULT
},
2387 /* x */ { NL ("long long"), NL ("long"), D_PRINT_LONG_LONG
},
2388 /* y */ { NL ("unsigned long long"), NL ("unsigned long long"),
2389 D_PRINT_UNSIGNED_LONG_LONG
},
2390 /* z */ { NL ("..."), NL ("..."), D_PRINT_DEFAULT
},
2391 /* 26 */ { NL ("decimal32"), NL ("decimal32"), D_PRINT_DEFAULT
},
2392 /* 27 */ { NL ("decimal64"), NL ("decimal64"), D_PRINT_DEFAULT
},
2393 /* 28 */ { NL ("decimal128"), NL ("decimal128"), D_PRINT_DEFAULT
},
2394 /* 29 */ { NL ("half"), NL ("half"), D_PRINT_FLOAT
},
2395 /* 30 */ { NL ("char8_t"), NL ("char8_t"), D_PRINT_DEFAULT
},
2396 /* 31 */ { NL ("char16_t"), NL ("char16_t"), D_PRINT_DEFAULT
},
2397 /* 32 */ { NL ("char32_t"), NL ("char32_t"), D_PRINT_DEFAULT
},
2398 /* 33 */ { NL ("decltype(nullptr)"), NL ("decltype(nullptr)"),
2402 CP_STATIC_IF_GLIBCPP_V3
2403 struct demangle_component
*
2404 cplus_demangle_type (struct d_info
*di
)
2407 struct demangle_component
*ret
;
2410 /* The ABI specifies that when CV-qualifiers are used, the base type
2411 is substitutable, and the fully qualified type is substitutable,
2412 but the base type with a strict subset of the CV-qualifiers is
2413 not substitutable. The natural recursive implementation of the
2414 CV-qualifiers would cause subsets to be substitutable, so instead
2415 we pull them all off now.
2417 FIXME: The ABI says that order-insensitive vendor qualifiers
2418 should be handled in the same way, but we have no way to tell
2419 which vendor qualifiers are order-insensitive and which are
2420 order-sensitive. So we just assume that they are all
2421 order-sensitive. g++ 3.4 supports only one vendor qualifier,
2422 __vector, and it treats it as order-sensitive when mangling
2425 if (next_is_type_qual (di
))
2427 struct demangle_component
**pret
;
2429 pret
= d_cv_qualifiers (di
, &ret
, 0);
2432 if (d_peek_char (di
) == 'F')
2434 /* cv-qualifiers before a function type apply to 'this',
2435 so avoid adding the unqualified function type to
2436 the substitution list. */
2437 *pret
= d_function_type (di
);
2440 *pret
= cplus_demangle_type (di
);
2443 if ((*pret
)->type
== DEMANGLE_COMPONENT_RVALUE_REFERENCE_THIS
2444 || (*pret
)->type
== DEMANGLE_COMPONENT_REFERENCE_THIS
)
2446 /* Move the ref-qualifier outside the cv-qualifiers so that
2447 they are printed in the right order. */
2448 struct demangle_component
*fn
= d_left (*pret
);
2449 d_left (*pret
) = ret
;
2453 if (! d_add_substitution (di
, ret
))
2460 peek
= d_peek_char (di
);
2463 case 'a': case 'b': case 'c': case 'd': case 'e': case 'f': case 'g':
2464 case 'h': case 'i': case 'j': case 'l': case 'm': case 'n':
2465 case 'o': case 's': case 't':
2466 case 'v': case 'w': case 'x': case 'y': case 'z':
2467 ret
= d_make_builtin_type (di
,
2468 &cplus_demangle_builtin_types
[peek
- 'a']);
2469 di
->expansion
+= ret
->u
.s_builtin
.type
->len
;
2476 ret
= d_make_comp (di
, DEMANGLE_COMPONENT_VENDOR_TYPE
,
2477 d_source_name (di
), NULL
);
2481 ret
= d_function_type (di
);
2484 case '0': case '1': case '2': case '3': case '4':
2485 case '5': case '6': case '7': case '8': case '9':
2488 ret
= d_class_enum_type (di
);
2492 ret
= d_array_type (di
);
2496 ret
= d_pointer_to_member_type (di
);
2500 ret
= d_template_param (di
);
2501 if (d_peek_char (di
) == 'I')
2503 /* This may be <template-template-param> <template-args>.
2504 If this is the type for a conversion operator, we can
2505 have a <template-template-param> here only by following
2506 a derivation like this:
2509 -> <template-prefix> <template-args>
2510 -> <prefix> <template-unqualified-name> <template-args>
2511 -> <unqualified-name> <template-unqualified-name> <template-args>
2512 -> <source-name> <template-unqualified-name> <template-args>
2513 -> <source-name> <operator-name> <template-args>
2514 -> <source-name> cv <type> <template-args>
2515 -> <source-name> cv <template-template-param> <template-args> <template-args>
2517 where the <template-args> is followed by another.
2518 Otherwise, we must have a derivation like this:
2521 -> <template-prefix> <template-args>
2522 -> <prefix> <template-unqualified-name> <template-args>
2523 -> <unqualified-name> <template-unqualified-name> <template-args>
2524 -> <source-name> <template-unqualified-name> <template-args>
2525 -> <source-name> <operator-name> <template-args>
2526 -> <source-name> cv <type> <template-args>
2527 -> <source-name> cv <template-param> <template-args>
2529 where we need to leave the <template-args> to be processed
2530 by d_prefix (following the <template-prefix>).
2532 The <template-template-param> part is a substitution
2534 if (! di
->is_conversion
)
2536 if (! d_add_substitution (di
, ret
))
2538 ret
= d_make_comp (di
, DEMANGLE_COMPONENT_TEMPLATE
, ret
,
2539 d_template_args (di
));
2543 struct demangle_component
*args
;
2544 struct d_info_checkpoint checkpoint
;
2546 d_checkpoint (di
, &checkpoint
);
2547 args
= d_template_args (di
);
2548 if (d_peek_char (di
) == 'I')
2550 if (! d_add_substitution (di
, ret
))
2552 ret
= d_make_comp (di
, DEMANGLE_COMPONENT_TEMPLATE
, ret
,
2556 d_backtrack (di
, &checkpoint
);
2562 /* If this is a special substitution, then it is the start of
2563 <class-enum-type>. */
2567 peek_next
= d_peek_next_char (di
);
2568 if (IS_DIGIT (peek_next
)
2570 || IS_UPPER (peek_next
))
2572 ret
= d_substitution (di
, 0);
2573 /* The substituted name may have been a template name and
2574 may be followed by tepmlate args. */
2575 if (d_peek_char (di
) == 'I')
2576 ret
= d_make_comp (di
, DEMANGLE_COMPONENT_TEMPLATE
, ret
,
2577 d_template_args (di
));
2583 ret
= d_class_enum_type (di
);
2584 /* If the substitution was a complete type, then it is not
2585 a new substitution candidate. However, if the
2586 substitution was followed by template arguments, then
2587 the whole thing is a substitution candidate. */
2588 if (ret
!= NULL
&& ret
->type
== DEMANGLE_COMPONENT_SUB_STD
)
2596 ret
= d_make_comp (di
, DEMANGLE_COMPONENT_RVALUE_REFERENCE
,
2597 cplus_demangle_type (di
), NULL
);
2602 ret
= d_make_comp (di
, DEMANGLE_COMPONENT_POINTER
,
2603 cplus_demangle_type (di
), NULL
);
2608 ret
= d_make_comp (di
, DEMANGLE_COMPONENT_REFERENCE
,
2609 cplus_demangle_type (di
), NULL
);
2614 ret
= d_make_comp (di
, DEMANGLE_COMPONENT_COMPLEX
,
2615 cplus_demangle_type (di
), NULL
);
2620 ret
= d_make_comp (di
, DEMANGLE_COMPONENT_IMAGINARY
,
2621 cplus_demangle_type (di
), NULL
);
2626 ret
= d_source_name (di
);
2627 if (d_peek_char (di
) == 'I')
2628 ret
= d_make_comp (di
, DEMANGLE_COMPONENT_TEMPLATE
, ret
,
2629 d_template_args (di
));
2630 ret
= d_make_comp (di
, DEMANGLE_COMPONENT_VENDOR_TYPE_QUAL
,
2631 cplus_demangle_type (di
), ret
);
2637 peek
= d_next_char (di
);
2642 /* decltype (expression) */
2643 ret
= d_make_comp (di
, DEMANGLE_COMPONENT_DECLTYPE
,
2644 d_expression (di
), NULL
);
2645 if (ret
&& d_next_char (di
) != 'E')
2651 /* Pack expansion. */
2652 ret
= d_make_comp (di
, DEMANGLE_COMPONENT_PACK_EXPANSION
,
2653 cplus_demangle_type (di
), NULL
);
2659 ret
= d_make_name (di
, "auto", 4);
2662 /* decltype(auto) */
2663 ret
= d_make_name (di
, "decltype(auto)", 14);
2667 /* 32-bit decimal floating point */
2668 ret
= d_make_builtin_type (di
, &cplus_demangle_builtin_types
[26]);
2669 di
->expansion
+= ret
->u
.s_builtin
.type
->len
;
2673 ret
= d_make_builtin_type (di
, &cplus_demangle_builtin_types
[27]);
2674 di
->expansion
+= ret
->u
.s_builtin
.type
->len
;
2678 ret
= d_make_builtin_type (di
, &cplus_demangle_builtin_types
[28]);
2679 di
->expansion
+= ret
->u
.s_builtin
.type
->len
;
2682 /* 16-bit half-precision FP */
2683 ret
= d_make_builtin_type (di
, &cplus_demangle_builtin_types
[29]);
2684 di
->expansion
+= ret
->u
.s_builtin
.type
->len
;
2688 ret
= d_make_builtin_type (di
, &cplus_demangle_builtin_types
[30]);
2689 di
->expansion
+= ret
->u
.s_builtin
.type
->len
;
2693 ret
= d_make_builtin_type (di
, &cplus_demangle_builtin_types
[31]);
2694 di
->expansion
+= ret
->u
.s_builtin
.type
->len
;
2698 ret
= d_make_builtin_type (di
, &cplus_demangle_builtin_types
[32]);
2699 di
->expansion
+= ret
->u
.s_builtin
.type
->len
;
2703 /* Fixed point types. DF<int bits><length><fract bits><sat> */
2704 ret
= d_make_empty (di
);
2705 ret
->type
= DEMANGLE_COMPONENT_FIXED_TYPE
;
2706 if ((ret
->u
.s_fixed
.accum
= IS_DIGIT (d_peek_char (di
))))
2707 /* For demangling we don't care about the bits. */
2709 ret
->u
.s_fixed
.length
= cplus_demangle_type (di
);
2710 if (ret
->u
.s_fixed
.length
== NULL
)
2713 peek
= d_next_char (di
);
2714 ret
->u
.s_fixed
.sat
= (peek
== 's');
2718 ret
= d_vector_type (di
);
2723 /* decltype(nullptr) */
2724 ret
= d_make_builtin_type (di
, &cplus_demangle_builtin_types
[33]);
2725 di
->expansion
+= ret
->u
.s_builtin
.type
->len
;
2739 if (! d_add_substitution (di
, ret
))
2746 /* <CV-qualifiers> ::= [r] [V] [K] [Dx] */
2748 static struct demangle_component
**
2749 d_cv_qualifiers (struct d_info
*di
,
2750 struct demangle_component
**pret
, int member_fn
)
2752 struct demangle_component
**pstart
;
2756 peek
= d_peek_char (di
);
2757 while (next_is_type_qual (di
))
2759 enum demangle_component_type t
;
2760 struct demangle_component
*right
= NULL
;
2766 ? DEMANGLE_COMPONENT_RESTRICT_THIS
2767 : DEMANGLE_COMPONENT_RESTRICT
);
2768 di
->expansion
+= sizeof "restrict";
2770 else if (peek
== 'V')
2773 ? DEMANGLE_COMPONENT_VOLATILE_THIS
2774 : DEMANGLE_COMPONENT_VOLATILE
);
2775 di
->expansion
+= sizeof "volatile";
2777 else if (peek
== 'K')
2780 ? DEMANGLE_COMPONENT_CONST_THIS
2781 : DEMANGLE_COMPONENT_CONST
);
2782 di
->expansion
+= sizeof "const";
2786 peek
= d_next_char (di
);
2789 t
= DEMANGLE_COMPONENT_TRANSACTION_SAFE
;
2790 di
->expansion
+= sizeof "transaction_safe";
2792 else if (peek
== 'o'
2795 t
= DEMANGLE_COMPONENT_NOEXCEPT
;
2796 di
->expansion
+= sizeof "noexcept";
2799 right
= d_expression (di
);
2802 if (! d_check_char (di
, 'E'))
2806 else if (peek
== 'w')
2808 t
= DEMANGLE_COMPONENT_THROW_SPEC
;
2809 di
->expansion
+= sizeof "throw";
2810 right
= d_parmlist (di
);
2813 if (! d_check_char (di
, 'E'))
2820 *pret
= d_make_comp (di
, t
, NULL
, right
);
2823 pret
= &d_left (*pret
);
2825 peek
= d_peek_char (di
);
2828 if (!member_fn
&& peek
== 'F')
2830 while (pstart
!= pret
)
2832 switch ((*pstart
)->type
)
2834 case DEMANGLE_COMPONENT_RESTRICT
:
2835 (*pstart
)->type
= DEMANGLE_COMPONENT_RESTRICT_THIS
;
2837 case DEMANGLE_COMPONENT_VOLATILE
:
2838 (*pstart
)->type
= DEMANGLE_COMPONENT_VOLATILE_THIS
;
2840 case DEMANGLE_COMPONENT_CONST
:
2841 (*pstart
)->type
= DEMANGLE_COMPONENT_CONST_THIS
;
2846 pstart
= &d_left (*pstart
);
2853 /* <ref-qualifier> ::= R
2856 static struct demangle_component
*
2857 d_ref_qualifier (struct d_info
*di
, struct demangle_component
*sub
)
2859 struct demangle_component
*ret
= sub
;
2862 peek
= d_peek_char (di
);
2863 if (peek
== 'R' || peek
== 'O')
2865 enum demangle_component_type t
;
2868 t
= DEMANGLE_COMPONENT_REFERENCE_THIS
;
2869 di
->expansion
+= sizeof "&";
2873 t
= DEMANGLE_COMPONENT_RVALUE_REFERENCE_THIS
;
2874 di
->expansion
+= sizeof "&&";
2878 ret
= d_make_comp (di
, t
, ret
, NULL
);
2884 /* <function-type> ::= F [Y] <bare-function-type> [<ref-qualifier>] [T] E */
2886 static struct demangle_component
*
2887 d_function_type (struct d_info
*di
)
2889 struct demangle_component
*ret
= NULL
;
2891 if ((di
->options
& DMGL_NO_RECURSE_LIMIT
) == 0)
2893 if (di
->recursion_level
> DEMANGLE_RECURSION_LIMIT
)
2894 /* FIXME: There ought to be a way to report
2895 that the recursion limit has been reached. */
2898 di
->recursion_level
++;
2901 if (d_check_char (di
, 'F'))
2903 if (d_peek_char (di
) == 'Y')
2905 /* Function has C linkage. We don't print this information.
2906 FIXME: We should print it in verbose mode. */
2909 ret
= d_bare_function_type (di
, 1);
2910 ret
= d_ref_qualifier (di
, ret
);
2912 if (! d_check_char (di
, 'E'))
2916 if ((di
->options
& DMGL_NO_RECURSE_LIMIT
) == 0)
2917 di
->recursion_level
--;
2923 static struct demangle_component
*
2924 d_parmlist (struct d_info
*di
)
2926 struct demangle_component
*tl
;
2927 struct demangle_component
**ptl
;
2933 struct demangle_component
*type
;
2935 char peek
= d_peek_char (di
);
2936 if (peek
== '\0' || peek
== 'E' || peek
== '.')
2938 if ((peek
== 'R' || peek
== 'O')
2939 && d_peek_next_char (di
) == 'E')
2940 /* Function ref-qualifier, not a ref prefix for a parameter type. */
2942 type
= cplus_demangle_type (di
);
2945 *ptl
= d_make_comp (di
, DEMANGLE_COMPONENT_ARGLIST
, type
, NULL
);
2948 ptl
= &d_right (*ptl
);
2951 /* There should be at least one parameter type besides the optional
2952 return type. A function which takes no arguments will have a
2953 single parameter type void. */
2957 /* If we have a single parameter type void, omit it. */
2958 if (d_right (tl
) == NULL
2959 && d_left (tl
)->type
== DEMANGLE_COMPONENT_BUILTIN_TYPE
2960 && d_left (tl
)->u
.s_builtin
.type
->print
== D_PRINT_VOID
)
2962 di
->expansion
-= d_left (tl
)->u
.s_builtin
.type
->len
;
2969 /* <bare-function-type> ::= [J]<type>+ */
2971 static struct demangle_component
*
2972 d_bare_function_type (struct d_info
*di
, int has_return_type
)
2974 struct demangle_component
*return_type
;
2975 struct demangle_component
*tl
;
2978 /* Detect special qualifier indicating that the first argument
2979 is the return type. */
2980 peek
= d_peek_char (di
);
2984 has_return_type
= 1;
2987 if (has_return_type
)
2989 return_type
= cplus_demangle_type (di
);
2990 if (return_type
== NULL
)
2996 tl
= d_parmlist (di
);
3000 return d_make_comp (di
, DEMANGLE_COMPONENT_FUNCTION_TYPE
,
3004 /* <class-enum-type> ::= <name> */
3006 static struct demangle_component
*
3007 d_class_enum_type (struct d_info
*di
)
3012 /* <array-type> ::= A <(positive dimension) number> _ <(element) type>
3013 ::= A [<(dimension) expression>] _ <(element) type>
3016 static struct demangle_component
*
3017 d_array_type (struct d_info
*di
)
3020 struct demangle_component
*dim
;
3022 if (! d_check_char (di
, 'A'))
3025 peek
= d_peek_char (di
);
3028 else if (IS_DIGIT (peek
))
3036 peek
= d_peek_char (di
);
3038 while (IS_DIGIT (peek
));
3039 dim
= d_make_name (di
, s
, d_str (di
) - s
);
3045 dim
= d_expression (di
);
3050 if (! d_check_char (di
, '_'))
3053 return d_make_comp (di
, DEMANGLE_COMPONENT_ARRAY_TYPE
, dim
,
3054 cplus_demangle_type (di
));
3057 /* <vector-type> ::= Dv <number> _ <type>
3058 ::= Dv _ <expression> _ <type> */
3060 static struct demangle_component
*
3061 d_vector_type (struct d_info
*di
)
3064 struct demangle_component
*dim
;
3066 peek
= d_peek_char (di
);
3070 dim
= d_expression (di
);
3073 dim
= d_number_component (di
);
3078 if (! d_check_char (di
, '_'))
3081 return d_make_comp (di
, DEMANGLE_COMPONENT_VECTOR_TYPE
, dim
,
3082 cplus_demangle_type (di
));
3085 /* <pointer-to-member-type> ::= M <(class) type> <(member) type> */
3087 static struct demangle_component
*
3088 d_pointer_to_member_type (struct d_info
*di
)
3090 struct demangle_component
*cl
;
3091 struct demangle_component
*mem
;
3093 if (! d_check_char (di
, 'M'))
3096 cl
= cplus_demangle_type (di
);
3100 /* The ABI says, "The type of a non-static member function is considered
3101 to be different, for the purposes of substitution, from the type of a
3102 namespace-scope or static member function whose type appears
3103 similar. The types of two non-static member functions are considered
3104 to be different, for the purposes of substitution, if the functions
3105 are members of different classes. In other words, for the purposes of
3106 substitution, the class of which the function is a member is
3107 considered part of the type of function."
3109 For a pointer to member function, this call to cplus_demangle_type
3110 will end up adding a (possibly qualified) non-member function type to
3111 the substitution table, which is not correct; however, the member
3112 function type will never be used in a substitution, so putting the
3113 wrong type in the substitution table is harmless. */
3115 mem
= cplus_demangle_type (di
);
3119 return d_make_comp (di
, DEMANGLE_COMPONENT_PTRMEM_TYPE
, cl
, mem
);
3122 /* <non-negative number> _ */
3125 d_compact_number (struct d_info
*di
)
3128 if (d_peek_char (di
) == '_')
3130 else if (d_peek_char (di
) == 'n')
3133 num
= d_number (di
) + 1;
3135 if (num
< 0 || ! d_check_char (di
, '_'))
3140 /* <template-param> ::= T_
3141 ::= T <(parameter-2 non-negative) number> _
3144 static struct demangle_component
*
3145 d_template_param (struct d_info
*di
)
3149 if (! d_check_char (di
, 'T'))
3152 param
= d_compact_number (di
);
3156 return d_make_template_param (di
, param
);
3159 /* <template-args> ::= I <template-arg>+ E */
3161 static struct demangle_component
*
3162 d_template_args (struct d_info
*di
)
3164 if (d_peek_char (di
) != 'I'
3165 && d_peek_char (di
) != 'J')
3169 return d_template_args_1 (di
);
3172 /* <template-arg>* E */
3174 static struct demangle_component
*
3175 d_template_args_1 (struct d_info
*di
)
3177 struct demangle_component
*hold_last_name
;
3178 struct demangle_component
*al
;
3179 struct demangle_component
**pal
;
3181 /* Preserve the last name we saw--don't let the template arguments
3182 clobber it, as that would give us the wrong name for a subsequent
3183 constructor or destructor. */
3184 hold_last_name
= di
->last_name
;
3186 if (d_peek_char (di
) == 'E')
3188 /* An argument pack can be empty. */
3190 return d_make_comp (di
, DEMANGLE_COMPONENT_TEMPLATE_ARGLIST
, NULL
, NULL
);
3197 struct demangle_component
*a
;
3199 a
= d_template_arg (di
);
3203 *pal
= d_make_comp (di
, DEMANGLE_COMPONENT_TEMPLATE_ARGLIST
, a
, NULL
);
3206 pal
= &d_right (*pal
);
3208 if (d_peek_char (di
) == 'E')
3215 di
->last_name
= hold_last_name
;
3220 /* <template-arg> ::= <type>
3221 ::= X <expression> E
3225 static struct demangle_component
*
3226 d_template_arg (struct d_info
*di
)
3228 struct demangle_component
*ret
;
3230 switch (d_peek_char (di
))
3234 ret
= d_expression (di
);
3235 if (! d_check_char (di
, 'E'))
3240 return d_expr_primary (di
);
3244 /* An argument pack. */
3245 return d_template_args (di
);
3248 return cplus_demangle_type (di
);
3252 /* Parse a sequence of expressions until we hit the terminator
3255 static struct demangle_component
*
3256 d_exprlist (struct d_info
*di
, char terminator
)
3258 struct demangle_component
*list
= NULL
;
3259 struct demangle_component
**p
= &list
;
3261 if (d_peek_char (di
) == terminator
)
3264 return d_make_comp (di
, DEMANGLE_COMPONENT_ARGLIST
, NULL
, NULL
);
3269 struct demangle_component
*arg
= d_expression (di
);
3273 *p
= d_make_comp (di
, DEMANGLE_COMPONENT_ARGLIST
, arg
, NULL
);
3278 if (d_peek_char (di
) == terminator
)
3288 /* Returns nonzero iff OP is an operator for a C++ cast: const_cast,
3289 dynamic_cast, static_cast or reinterpret_cast. */
3292 op_is_new_cast (struct demangle_component
*op
)
3294 const char *code
= op
->u
.s_operator
.op
->code
;
3295 return (code
[1] == 'c'
3296 && (code
[0] == 's' || code
[0] == 'd'
3297 || code
[0] == 'c' || code
[0] == 'r'));
3300 /* <unresolved-name> ::= [gs] <base-unresolved-name> # x or (with "gs") ::x
3301 ::= sr <unresolved-type> <base-unresolved-name> # T::x / decltype(p)::x
3302 # T::N::x /decltype(p)::N::x
3303 ::= srN <unresolved-type> <unresolved-qualifier-level>+ E <base-unresolved-name>
3304 # A::x, N::y, A<T>::z; "gs" means leading "::"
3305 ::= [gs] sr <unresolved-qualifier-level>+ E <base-unresolved-name>
3307 "gs" is handled elsewhere, as a unary operator. */
3309 static struct demangle_component
*
3310 d_unresolved_name (struct d_info
*di
)
3312 struct demangle_component
*type
;
3313 struct demangle_component
*name
;
3316 /* Consume the "sr". */
3319 peek
= d_peek_char (di
);
3320 if (di
->unresolved_name_state
3327 /* The third production is ambiguous with the old unresolved-name syntax
3328 of <type> <base-unresolved-name>; in the old mangling, A::x was mangled
3329 as sr1A1x, now sr1AE1x. So we first try to demangle using the new
3330 mangling, then with the old if that fails. */
3331 di
->unresolved_name_state
= -1;
3332 type
= d_prefix (di
, 0);
3333 if (d_peek_char (di
) == 'E')
3337 type
= cplus_demangle_type (di
);
3338 name
= d_unqualified_name (di
);
3339 if (d_peek_char (di
) == 'I')
3340 name
= d_make_comp (di
, DEMANGLE_COMPONENT_TEMPLATE
, name
,
3341 d_template_args (di
));
3342 return d_make_comp (di
, DEMANGLE_COMPONENT_QUAL_NAME
, type
, name
);
3345 /* <expression> ::= <(unary) operator-name> <expression>
3346 ::= <(binary) operator-name> <expression> <expression>
3347 ::= <(trinary) operator-name> <expression> <expression> <expression>
3348 ::= cl <expression>+ E
3350 ::= <template-param>
3351 ::= u <source-name> <template-arg>* E # vendor extended expression
3352 ::= <unresolved-name>
3355 <braced-expression> ::= <expression>
3356 ::= di <field source-name> <braced-expression> # .name = expr
3357 ::= dx <index expression> <braced-expression> # [expr] = expr
3358 ::= dX <range begin expression> <range end expression> <braced-expression>
3359 # [expr ... expr] = expr
3362 static struct demangle_component
*
3363 d_expression_1 (struct d_info
*di
)
3367 peek
= d_peek_char (di
);
3369 return d_expr_primary (di
);
3370 else if (peek
== 'T')
3371 return d_template_param (di
);
3372 else if (peek
== 's' && d_peek_next_char (di
) == 'r')
3373 return d_unresolved_name (di
);
3374 else if (peek
== 's' && d_peek_next_char (di
) == 'p')
3377 return d_make_comp (di
, DEMANGLE_COMPONENT_PACK_EXPANSION
,
3378 d_expression_1 (di
), NULL
);
3380 else if (peek
== 'f' && d_peek_next_char (di
) == 'p')
3382 /* Function parameter used in a late-specified return type. */
3385 if (d_peek_char (di
) == 'T')
3387 /* 'this' parameter. */
3393 index
= d_compact_number (di
);
3394 if (index
== INT_MAX
|| index
== -1)
3398 return d_make_function_param (di
, index
);
3400 else if (IS_DIGIT (peek
)
3401 || (peek
== 'o' && d_peek_next_char (di
) == 'n'))
3403 /* We can get an unqualified name as an expression in the case of
3404 a dependent function call, i.e. decltype(f(t)). */
3405 struct demangle_component
*name
;
3408 /* operator-function-id, i.e. operator+(t). */
3411 name
= d_unqualified_name (di
);
3414 if (d_peek_char (di
) == 'I')
3415 return d_make_comp (di
, DEMANGLE_COMPONENT_TEMPLATE
, name
,
3416 d_template_args (di
));
3420 else if ((peek
== 'i' || peek
== 't')
3421 && d_peek_next_char (di
) == 'l')
3423 /* Brace-enclosed initializer list, untyped or typed. */
3424 struct demangle_component
*type
= NULL
;
3427 type
= cplus_demangle_type (di
);
3428 if (!d_peek_char (di
) || !d_peek_next_char (di
))
3430 return d_make_comp (di
, DEMANGLE_COMPONENT_INITIALIZER_LIST
,
3431 type
, d_exprlist (di
, 'E'));
3433 else if (peek
== 'u')
3435 /* A vendor extended expression. */
3436 struct demangle_component
*name
, *args
;
3438 name
= d_source_name (di
);
3439 args
= d_template_args_1 (di
);
3440 return d_make_comp (di
, DEMANGLE_COMPONENT_VENDOR_EXPR
, name
, args
);
3444 struct demangle_component
*op
;
3445 const char *code
= NULL
;
3448 op
= d_operator_name (di
);
3452 if (op
->type
== DEMANGLE_COMPONENT_OPERATOR
)
3454 code
= op
->u
.s_operator
.op
->code
;
3455 di
->expansion
+= op
->u
.s_operator
.op
->len
- 2;
3456 if (strcmp (code
, "st") == 0)
3457 return d_make_comp (di
, DEMANGLE_COMPONENT_UNARY
, op
,
3458 cplus_demangle_type (di
));
3465 case DEMANGLE_COMPONENT_OPERATOR
:
3466 args
= op
->u
.s_operator
.op
->args
;
3468 case DEMANGLE_COMPONENT_EXTENDED_OPERATOR
:
3469 args
= op
->u
.s_extended_operator
.args
;
3471 case DEMANGLE_COMPONENT_CAST
:
3479 return d_make_comp (di
, DEMANGLE_COMPONENT_NULLARY
, op
, NULL
);
3483 struct demangle_component
*operand
;
3486 if (code
&& (code
[0] == 'p' || code
[0] == 'm')
3487 && code
[1] == code
[0])
3488 /* pp_ and mm_ are the prefix variants. */
3489 suffix
= !d_check_char (di
, '_');
3491 if (op
->type
== DEMANGLE_COMPONENT_CAST
3492 && d_check_char (di
, '_'))
3493 operand
= d_exprlist (di
, 'E');
3494 else if (code
&& !strcmp (code
, "sP"))
3495 operand
= d_template_args_1 (di
);
3497 operand
= d_expression_1 (di
);
3500 /* Indicate the suffix variant for d_print_comp. */
3501 operand
= d_make_comp (di
, DEMANGLE_COMPONENT_BINARY_ARGS
,
3504 return d_make_comp (di
, DEMANGLE_COMPONENT_UNARY
, op
, operand
);
3508 struct demangle_component
*left
;
3509 struct demangle_component
*right
;
3513 if (op_is_new_cast (op
))
3514 left
= cplus_demangle_type (di
);
3515 else if (code
[0] == 'f')
3516 /* fold-expression. */
3517 left
= d_operator_name (di
);
3518 else if (!strcmp (code
, "di"))
3519 left
= d_unqualified_name (di
);
3521 left
= d_expression_1 (di
);
3522 if (!strcmp (code
, "cl"))
3523 right
= d_exprlist (di
, 'E');
3524 else if (!strcmp (code
, "dt") || !strcmp (code
, "pt"))
3526 peek
= d_peek_char (di
);
3527 /* These codes start a qualified name. */
3528 if ((peek
== 'g' && d_peek_next_char (di
) == 's')
3529 || (peek
== 's' && d_peek_next_char (di
) == 'r'))
3530 right
= d_expression_1 (di
);
3533 /* Otherwise it's an unqualified name. We use
3534 d_unqualified_name rather than d_expression_1 here for
3535 old mangled names that didn't add 'on' before operator
3537 right
= d_unqualified_name (di
);
3538 if (d_peek_char (di
) == 'I')
3539 right
= d_make_comp (di
, DEMANGLE_COMPONENT_TEMPLATE
,
3540 right
, d_template_args (di
));
3544 right
= d_expression_1 (di
);
3546 return d_make_comp (di
, DEMANGLE_COMPONENT_BINARY
, op
,
3548 DEMANGLE_COMPONENT_BINARY_ARGS
,
3553 struct demangle_component
*first
;
3554 struct demangle_component
*second
;
3555 struct demangle_component
*third
;
3559 else if (!strcmp (code
, "qu")
3560 || !strcmp (code
, "dX"))
3562 /* ?: expression. */
3563 first
= d_expression_1 (di
);
3564 second
= d_expression_1 (di
);
3565 third
= d_expression_1 (di
);
3569 else if (code
[0] == 'f')
3571 /* fold-expression. */
3572 first
= d_operator_name (di
);
3573 second
= d_expression_1 (di
);
3574 third
= d_expression_1 (di
);
3578 else if (code
[0] == 'n')
3580 /* new-expression. */
3581 if (code
[1] != 'w' && code
[1] != 'a')
3583 first
= d_exprlist (di
, '_');
3584 second
= cplus_demangle_type (di
);
3585 if (d_peek_char (di
) == 'E')
3590 else if (d_peek_char (di
) == 'p'
3591 && d_peek_next_char (di
) == 'i')
3593 /* Parenthesized initializer. */
3595 third
= d_exprlist (di
, 'E');
3597 else if (d_peek_char (di
) == 'i'
3598 && d_peek_next_char (di
) == 'l')
3599 /* initializer-list. */
3600 third
= d_expression_1 (di
);
3606 return d_make_comp (di
, DEMANGLE_COMPONENT_TRINARY
, op
,
3608 DEMANGLE_COMPONENT_TRINARY_ARG1
,
3611 DEMANGLE_COMPONENT_TRINARY_ARG2
,
3620 static struct demangle_component
*
3621 d_expression (struct d_info
*di
)
3623 struct demangle_component
*ret
;
3624 int was_expression
= di
->is_expression
;
3626 di
->is_expression
= 1;
3627 ret
= d_expression_1 (di
);
3628 di
->is_expression
= was_expression
;
3632 /* <expr-primary> ::= L <type> <(value) number> E
3633 ::= L <type> <(value) float> E
3634 ::= L <mangled-name> E
3637 static struct demangle_component
*
3638 d_expr_primary (struct d_info
*di
)
3640 struct demangle_component
*ret
;
3642 if (! d_check_char (di
, 'L'))
3644 if (d_peek_char (di
) == '_'
3645 /* Workaround for G++ bug; see comment in write_template_arg. */
3646 || d_peek_char (di
) == 'Z')
3647 ret
= cplus_demangle_mangled_name (di
, 0);
3650 struct demangle_component
*type
;
3651 enum demangle_component_type t
;
3654 type
= cplus_demangle_type (di
);
3658 /* If we have a type we know how to print, we aren't going to
3659 print the type name itself. */
3660 if (type
->type
== DEMANGLE_COMPONENT_BUILTIN_TYPE
3661 && type
->u
.s_builtin
.type
->print
!= D_PRINT_DEFAULT
)
3662 di
->expansion
-= type
->u
.s_builtin
.type
->len
;
3664 if (type
->type
== DEMANGLE_COMPONENT_BUILTIN_TYPE
3665 && strcmp (type
->u
.s_builtin
.type
->name
,
3666 cplus_demangle_builtin_types
[33].name
) == 0)
3668 if (d_peek_char (di
) == 'E')
3675 /* Rather than try to interpret the literal value, we just
3676 collect it as a string. Note that it's possible to have a
3677 floating point literal here. The ABI specifies that the
3678 format of such literals is machine independent. That's fine,
3679 but what's not fine is that versions of g++ up to 3.2 with
3680 -fabi-version=1 used upper case letters in the hex constant,
3681 and dumped out gcc's internal representation. That makes it
3682 hard to tell where the constant ends, and hard to dump the
3683 constant in any readable form anyhow. We don't attempt to
3684 handle these cases. */
3686 t
= DEMANGLE_COMPONENT_LITERAL
;
3687 if (d_peek_char (di
) == 'n')
3689 t
= DEMANGLE_COMPONENT_LITERAL_NEG
;
3693 while (d_peek_char (di
) != 'E')
3695 if (d_peek_char (di
) == '\0')
3699 ret
= d_make_comp (di
, t
, type
, d_make_name (di
, s
, d_str (di
) - s
));
3701 if (! d_check_char (di
, 'E'))
3706 /* <local-name> ::= Z <(function) encoding> E <(entity) name> [<discriminator>]
3707 ::= Z <(function) encoding> E s [<discriminator>]
3708 ::= Z <(function) encoding> E d [<parameter> number>] _ <entity name>
3711 static struct demangle_component
*
3712 d_local_name (struct d_info
*di
)
3714 struct demangle_component
*function
;
3715 struct demangle_component
*name
;
3717 if (! d_check_char (di
, 'Z'))
3720 function
= d_encoding (di
, 0);
3724 if (! d_check_char (di
, 'E'))
3727 if (d_peek_char (di
) == 's')
3730 if (! d_discriminator (di
))
3732 name
= d_make_name (di
, "string literal", sizeof "string literal" - 1);
3738 if (d_peek_char (di
) == 'd')
3740 /* Default argument scope: d <number> _. */
3742 num
= d_compact_number (di
);
3750 /* Lambdas and unnamed types have internal discriminators
3751 and are not functions. */
3752 && name
->type
!= DEMANGLE_COMPONENT_LAMBDA
3753 && name
->type
!= DEMANGLE_COMPONENT_UNNAMED_TYPE
)
3755 /* Read and ignore an optional discriminator. */
3756 if (! d_discriminator (di
))
3761 name
= d_make_default_arg (di
, num
, name
);
3764 /* Elide the return type of the containing function so as to not
3765 confuse the user thinking it is the return type of whatever local
3766 function we might be containing. */
3767 if (function
->type
== DEMANGLE_COMPONENT_TYPED_NAME
3768 && d_right (function
)->type
== DEMANGLE_COMPONENT_FUNCTION_TYPE
)
3769 d_left (d_right (function
)) = NULL
;
3771 return d_make_comp (di
, DEMANGLE_COMPONENT_LOCAL_NAME
, function
, name
);
3774 /* <discriminator> ::= _ <number> # when number < 10
3775 ::= __ <number> _ # when number >= 10
3777 <discriminator> ::= _ <number> # when number >=10
3778 is also accepted to support gcc versions that wrongly mangled that way.
3780 We demangle the discriminator, but we don't print it out. FIXME:
3781 We should print it out in verbose mode. */
3784 d_discriminator (struct d_info
*di
)
3786 int discrim
, num_underscores
= 1;
3788 if (d_peek_char (di
) != '_')
3791 if (d_peek_char (di
) == '_')
3797 discrim
= d_number (di
);
3800 if (num_underscores
> 1 && discrim
>= 10)
3802 if (d_peek_char (di
) == '_')
3811 /* <closure-type-name> ::= Ul <lambda-sig> E [ <nonnegative number> ] _ */
3813 static struct demangle_component
*
3814 d_lambda (struct d_info
*di
)
3816 struct demangle_component
*tl
;
3817 struct demangle_component
*ret
;
3820 if (! d_check_char (di
, 'U'))
3822 if (! d_check_char (di
, 'l'))
3825 tl
= d_parmlist (di
);
3829 if (! d_check_char (di
, 'E'))
3832 num
= d_compact_number (di
);
3836 ret
= d_make_empty (di
);
3839 ret
->type
= DEMANGLE_COMPONENT_LAMBDA
;
3840 ret
->u
.s_unary_num
.sub
= tl
;
3841 ret
->u
.s_unary_num
.num
= num
;
3847 /* <unnamed-type-name> ::= Ut [ <nonnegative number> ] _ */
3849 static struct demangle_component
*
3850 d_unnamed_type (struct d_info
*di
)
3852 struct demangle_component
*ret
;
3855 if (! d_check_char (di
, 'U'))
3857 if (! d_check_char (di
, 't'))
3860 num
= d_compact_number (di
);
3864 ret
= d_make_empty (di
);
3867 ret
->type
= DEMANGLE_COMPONENT_UNNAMED_TYPE
;
3868 ret
->u
.s_number
.number
= num
;
3871 if (! d_add_substitution (di
, ret
))
3877 /* <clone-suffix> ::= [ . <clone-type-identifier> ] [ . <nonnegative number> ]*
3880 static struct demangle_component
*
3881 d_clone_suffix (struct d_info
*di
, struct demangle_component
*encoding
)
3883 const char *suffix
= d_str (di
);
3884 const char *pend
= suffix
;
3885 struct demangle_component
*n
;
3887 if (*pend
== '.' && (IS_LOWER (pend
[1]) || IS_DIGIT (pend
[1])
3891 while (IS_LOWER (*pend
) || IS_DIGIT (*pend
) || *pend
== '_')
3894 while (*pend
== '.' && IS_DIGIT (pend
[1]))
3897 while (IS_DIGIT (*pend
))
3900 d_advance (di
, pend
- suffix
);
3901 n
= d_make_name (di
, suffix
, pend
- suffix
);
3902 return d_make_comp (di
, DEMANGLE_COMPONENT_CLONE
, encoding
, n
);
3905 /* Add a new substitution. */
3908 d_add_substitution (struct d_info
*di
, struct demangle_component
*dc
)
3912 if (di
->next_sub
>= di
->num_subs
)
3914 di
->subs
[di
->next_sub
] = dc
;
3919 /* <substitution> ::= S <seq-id> _
3929 If PREFIX is non-zero, then this type is being used as a prefix in
3930 a qualified name. In this case, for the standard substitutions, we
3931 need to check whether we are being used as a prefix for a
3932 constructor or destructor, and return a full template name.
3933 Otherwise we will get something like std::iostream::~iostream()
3934 which does not correspond particularly well to any function which
3935 actually appears in the source.
3938 static const struct d_standard_sub_info standard_subs
[] =
3943 { 'a', NL ("std::allocator"),
3944 NL ("std::allocator"),
3946 { 'b', NL ("std::basic_string"),
3947 NL ("std::basic_string"),
3948 NL ("basic_string") },
3949 { 's', NL ("std::string"),
3950 NL ("std::basic_string<char, std::char_traits<char>, std::allocator<char> >"),
3951 NL ("basic_string") },
3952 { 'i', NL ("std::istream"),
3953 NL ("std::basic_istream<char, std::char_traits<char> >"),
3954 NL ("basic_istream") },
3955 { 'o', NL ("std::ostream"),
3956 NL ("std::basic_ostream<char, std::char_traits<char> >"),
3957 NL ("basic_ostream") },
3958 { 'd', NL ("std::iostream"),
3959 NL ("std::basic_iostream<char, std::char_traits<char> >"),
3960 NL ("basic_iostream") }
3963 static struct demangle_component
*
3964 d_substitution (struct d_info
*di
, int prefix
)
3968 if (! d_check_char (di
, 'S'))
3971 c
= d_next_char (di
);
3972 if (c
== '_' || IS_DIGIT (c
) || IS_UPPER (c
))
3981 unsigned int new_id
;
3984 new_id
= id
* 36 + c
- '0';
3985 else if (IS_UPPER (c
))
3986 new_id
= id
* 36 + c
- 'A' + 10;
3992 c
= d_next_char (di
);
3999 if (id
>= (unsigned int) di
->next_sub
)
4002 return di
->subs
[id
];
4007 const struct d_standard_sub_info
*p
;
4008 const struct d_standard_sub_info
*pend
;
4010 verbose
= (di
->options
& DMGL_VERBOSE
) != 0;
4011 if (! verbose
&& prefix
)
4015 peek
= d_peek_char (di
);
4016 if (peek
== 'C' || peek
== 'D')
4020 pend
= (&standard_subs
[0]
4021 + sizeof standard_subs
/ sizeof standard_subs
[0]);
4022 for (p
= &standard_subs
[0]; p
< pend
; ++p
)
4028 struct demangle_component
*dc
;
4030 if (p
->set_last_name
!= NULL
)
4031 di
->last_name
= d_make_sub (di
, p
->set_last_name
,
4032 p
->set_last_name_len
);
4035 s
= p
->full_expansion
;
4040 s
= p
->simple_expansion
;
4041 len
= p
->simple_len
;
4043 di
->expansion
+= len
;
4044 dc
= d_make_sub (di
, s
, len
);
4045 if (d_peek_char (di
) == 'B')
4047 /* If there are ABI tags on the abbreviation, it becomes
4048 a substitution candidate. */
4049 dc
= d_abi_tags (di
, dc
);
4050 if (! d_add_substitution (di
, dc
))
4062 d_checkpoint (struct d_info
*di
, struct d_info_checkpoint
*checkpoint
)
4064 checkpoint
->n
= di
->n
;
4065 checkpoint
->next_comp
= di
->next_comp
;
4066 checkpoint
->next_sub
= di
->next_sub
;
4067 checkpoint
->expansion
= di
->expansion
;
4071 d_backtrack (struct d_info
*di
, struct d_info_checkpoint
*checkpoint
)
4073 di
->n
= checkpoint
->n
;
4074 di
->next_comp
= checkpoint
->next_comp
;
4075 di
->next_sub
= checkpoint
->next_sub
;
4076 di
->expansion
= checkpoint
->expansion
;
4079 /* Initialize a growable string. */
4082 d_growable_string_init (struct d_growable_string
*dgs
, size_t estimate
)
4087 dgs
->allocation_failure
= 0;
4090 d_growable_string_resize (dgs
, estimate
);
4093 /* Grow a growable string to a given size. */
4096 d_growable_string_resize (struct d_growable_string
*dgs
, size_t need
)
4101 if (dgs
->allocation_failure
)
4104 /* Start allocation at two bytes to avoid any possibility of confusion
4105 with the special value of 1 used as a return in *palc to indicate
4106 allocation failures. */
4107 newalc
= dgs
->alc
> 0 ? dgs
->alc
: 2;
4108 while (newalc
< need
)
4111 newbuf
= (char *) realloc (dgs
->buf
, newalc
);
4118 dgs
->allocation_failure
= 1;
4125 /* Append a buffer to a growable string. */
4128 d_growable_string_append_buffer (struct d_growable_string
*dgs
,
4129 const char *s
, size_t l
)
4133 need
= dgs
->len
+ l
+ 1;
4134 if (need
> dgs
->alc
)
4135 d_growable_string_resize (dgs
, need
);
4137 if (dgs
->allocation_failure
)
4140 memcpy (dgs
->buf
+ dgs
->len
, s
, l
);
4141 dgs
->buf
[dgs
->len
+ l
] = '\0';
4145 /* Bridge growable strings to the callback mechanism. */
4148 d_growable_string_callback_adapter (const char *s
, size_t l
, void *opaque
)
4150 struct d_growable_string
*dgs
= (struct d_growable_string
*) opaque
;
4152 d_growable_string_append_buffer (dgs
, s
, l
);
4155 /* Walk the tree, counting the number of templates encountered, and
4156 the number of times a scope might be saved. These counts will be
4157 used to allocate data structures for d_print_comp, so the logic
4158 here must mirror the logic d_print_comp will use. It is not
4159 important that the resulting numbers are exact, so long as they
4160 are larger than the actual numbers encountered. */
4163 d_count_templates_scopes (struct d_print_info
*dpi
,
4164 struct demangle_component
*dc
)
4166 if (dc
== NULL
|| dc
->d_counting
> 1 || dpi
->recursion
> MAX_RECURSION_COUNT
)
4173 case DEMANGLE_COMPONENT_NAME
:
4174 case DEMANGLE_COMPONENT_TEMPLATE_PARAM
:
4175 case DEMANGLE_COMPONENT_FUNCTION_PARAM
:
4176 case DEMANGLE_COMPONENT_SUB_STD
:
4177 case DEMANGLE_COMPONENT_BUILTIN_TYPE
:
4178 case DEMANGLE_COMPONENT_OPERATOR
:
4179 case DEMANGLE_COMPONENT_CHARACTER
:
4180 case DEMANGLE_COMPONENT_NUMBER
:
4181 case DEMANGLE_COMPONENT_UNNAMED_TYPE
:
4184 case DEMANGLE_COMPONENT_TEMPLATE
:
4185 dpi
->num_copy_templates
++;
4186 goto recurse_left_right
;
4188 case DEMANGLE_COMPONENT_REFERENCE
:
4189 case DEMANGLE_COMPONENT_RVALUE_REFERENCE
:
4190 if (d_left (dc
)->type
== DEMANGLE_COMPONENT_TEMPLATE_PARAM
)
4191 dpi
->num_saved_scopes
++;
4192 goto recurse_left_right
;
4194 case DEMANGLE_COMPONENT_QUAL_NAME
:
4195 case DEMANGLE_COMPONENT_LOCAL_NAME
:
4196 case DEMANGLE_COMPONENT_TYPED_NAME
:
4197 case DEMANGLE_COMPONENT_VTABLE
:
4198 case DEMANGLE_COMPONENT_VTT
:
4199 case DEMANGLE_COMPONENT_CONSTRUCTION_VTABLE
:
4200 case DEMANGLE_COMPONENT_TYPEINFO
:
4201 case DEMANGLE_COMPONENT_TYPEINFO_NAME
:
4202 case DEMANGLE_COMPONENT_TYPEINFO_FN
:
4203 case DEMANGLE_COMPONENT_THUNK
:
4204 case DEMANGLE_COMPONENT_VIRTUAL_THUNK
:
4205 case DEMANGLE_COMPONENT_COVARIANT_THUNK
:
4206 case DEMANGLE_COMPONENT_JAVA_CLASS
:
4207 case DEMANGLE_COMPONENT_GUARD
:
4208 case DEMANGLE_COMPONENT_TLS_INIT
:
4209 case DEMANGLE_COMPONENT_TLS_WRAPPER
:
4210 case DEMANGLE_COMPONENT_REFTEMP
:
4211 case DEMANGLE_COMPONENT_HIDDEN_ALIAS
:
4212 case DEMANGLE_COMPONENT_RESTRICT
:
4213 case DEMANGLE_COMPONENT_VOLATILE
:
4214 case DEMANGLE_COMPONENT_CONST
:
4215 case DEMANGLE_COMPONENT_RESTRICT_THIS
:
4216 case DEMANGLE_COMPONENT_VOLATILE_THIS
:
4217 case DEMANGLE_COMPONENT_CONST_THIS
:
4218 case DEMANGLE_COMPONENT_REFERENCE_THIS
:
4219 case DEMANGLE_COMPONENT_RVALUE_REFERENCE_THIS
:
4220 case DEMANGLE_COMPONENT_TRANSACTION_SAFE
:
4221 case DEMANGLE_COMPONENT_NOEXCEPT
:
4222 case DEMANGLE_COMPONENT_THROW_SPEC
:
4223 case DEMANGLE_COMPONENT_VENDOR_TYPE_QUAL
:
4224 case DEMANGLE_COMPONENT_POINTER
:
4225 case DEMANGLE_COMPONENT_COMPLEX
:
4226 case DEMANGLE_COMPONENT_IMAGINARY
:
4227 case DEMANGLE_COMPONENT_VENDOR_TYPE
:
4228 case DEMANGLE_COMPONENT_FUNCTION_TYPE
:
4229 case DEMANGLE_COMPONENT_ARRAY_TYPE
:
4230 case DEMANGLE_COMPONENT_PTRMEM_TYPE
:
4231 case DEMANGLE_COMPONENT_VECTOR_TYPE
:
4232 case DEMANGLE_COMPONENT_ARGLIST
:
4233 case DEMANGLE_COMPONENT_TEMPLATE_ARGLIST
:
4234 case DEMANGLE_COMPONENT_TPARM_OBJ
:
4235 case DEMANGLE_COMPONENT_INITIALIZER_LIST
:
4236 case DEMANGLE_COMPONENT_CAST
:
4237 case DEMANGLE_COMPONENT_CONVERSION
:
4238 case DEMANGLE_COMPONENT_NULLARY
:
4239 case DEMANGLE_COMPONENT_UNARY
:
4240 case DEMANGLE_COMPONENT_BINARY
:
4241 case DEMANGLE_COMPONENT_BINARY_ARGS
:
4242 case DEMANGLE_COMPONENT_TRINARY
:
4243 case DEMANGLE_COMPONENT_TRINARY_ARG1
:
4244 case DEMANGLE_COMPONENT_TRINARY_ARG2
:
4245 case DEMANGLE_COMPONENT_LITERAL
:
4246 case DEMANGLE_COMPONENT_LITERAL_NEG
:
4247 case DEMANGLE_COMPONENT_VENDOR_EXPR
:
4248 case DEMANGLE_COMPONENT_JAVA_RESOURCE
:
4249 case DEMANGLE_COMPONENT_COMPOUND_NAME
:
4250 case DEMANGLE_COMPONENT_DECLTYPE
:
4251 case DEMANGLE_COMPONENT_TRANSACTION_CLONE
:
4252 case DEMANGLE_COMPONENT_NONTRANSACTION_CLONE
:
4253 case DEMANGLE_COMPONENT_PACK_EXPANSION
:
4254 case DEMANGLE_COMPONENT_TAGGED_NAME
:
4255 case DEMANGLE_COMPONENT_CLONE
:
4257 /* PR 89394 - Check for too much recursion. */
4258 if (dpi
->recursion
> DEMANGLE_RECURSION_LIMIT
)
4259 /* FIXME: There ought to be a way to report to the
4260 user that the recursion limit has been reached. */
4264 d_count_templates_scopes (dpi
, d_left (dc
));
4265 d_count_templates_scopes (dpi
, d_right (dc
));
4269 case DEMANGLE_COMPONENT_CTOR
:
4270 d_count_templates_scopes (dpi
, dc
->u
.s_ctor
.name
);
4273 case DEMANGLE_COMPONENT_DTOR
:
4274 d_count_templates_scopes (dpi
, dc
->u
.s_dtor
.name
);
4277 case DEMANGLE_COMPONENT_EXTENDED_OPERATOR
:
4278 d_count_templates_scopes (dpi
, dc
->u
.s_extended_operator
.name
);
4281 case DEMANGLE_COMPONENT_FIXED_TYPE
:
4282 d_count_templates_scopes (dpi
, dc
->u
.s_fixed
.length
);
4285 case DEMANGLE_COMPONENT_GLOBAL_CONSTRUCTORS
:
4286 case DEMANGLE_COMPONENT_GLOBAL_DESTRUCTORS
:
4287 d_count_templates_scopes (dpi
, d_left (dc
));
4290 case DEMANGLE_COMPONENT_LAMBDA
:
4291 case DEMANGLE_COMPONENT_DEFAULT_ARG
:
4292 d_count_templates_scopes (dpi
, dc
->u
.s_unary_num
.sub
);
4297 /* Initialize a print information structure. */
4300 d_print_init (struct d_print_info
*dpi
, demangle_callbackref callback
,
4301 void *opaque
, struct demangle_component
*dc
)
4304 dpi
->last_char
= '\0';
4305 dpi
->templates
= NULL
;
4306 dpi
->modifiers
= NULL
;
4307 dpi
->pack_index
= 0;
4308 dpi
->flush_count
= 0;
4310 dpi
->callback
= callback
;
4311 dpi
->opaque
= opaque
;
4313 dpi
->demangle_failure
= 0;
4315 dpi
->is_lambda_arg
= 0;
4317 dpi
->component_stack
= NULL
;
4319 dpi
->saved_scopes
= NULL
;
4320 dpi
->next_saved_scope
= 0;
4321 dpi
->num_saved_scopes
= 0;
4323 dpi
->copy_templates
= NULL
;
4324 dpi
->next_copy_template
= 0;
4325 dpi
->num_copy_templates
= 0;
4327 d_count_templates_scopes (dpi
, dc
);
4328 /* If we did not reach the recursion limit, then reset the
4329 current recursion value back to 0, so that we can print
4331 if (dpi
->recursion
< DEMANGLE_RECURSION_LIMIT
)
4333 dpi
->num_copy_templates
*= dpi
->num_saved_scopes
;
4335 dpi
->current_template
= NULL
;
4338 /* Indicate that an error occurred during printing, and test for error. */
4341 d_print_error (struct d_print_info
*dpi
)
4343 dpi
->demangle_failure
= 1;
4347 d_print_saw_error (struct d_print_info
*dpi
)
4349 return dpi
->demangle_failure
!= 0;
4352 /* Flush buffered characters to the callback. */
4355 d_print_flush (struct d_print_info
*dpi
)
4357 dpi
->buf
[dpi
->len
] = '\0';
4358 dpi
->callback (dpi
->buf
, dpi
->len
, dpi
->opaque
);
4363 /* Append characters and buffers for printing. */
4366 d_append_char (struct d_print_info
*dpi
, char c
)
4368 if (dpi
->len
== sizeof (dpi
->buf
) - 1)
4369 d_print_flush (dpi
);
4371 dpi
->buf
[dpi
->len
++] = c
;
4376 d_append_buffer (struct d_print_info
*dpi
, const char *s
, size_t l
)
4380 for (i
= 0; i
< l
; i
++)
4381 d_append_char (dpi
, s
[i
]);
4385 d_append_string (struct d_print_info
*dpi
, const char *s
)
4387 d_append_buffer (dpi
, s
, strlen (s
));
4391 d_append_num (struct d_print_info
*dpi
, int l
)
4394 sprintf (buf
,"%d", l
);
4395 d_append_string (dpi
, buf
);
4399 d_last_char (struct d_print_info
*dpi
)
4401 return dpi
->last_char
;
4404 /* Turn components into a human readable string. OPTIONS is the
4405 options bits passed to the demangler. DC is the tree to print.
4406 CALLBACK is a function to call to flush demangled string segments
4407 as they fill the intermediate buffer, and OPAQUE is a generalized
4408 callback argument. On success, this returns 1. On failure,
4409 it returns 0, indicating a bad parse. It does not use heap
4410 memory to build an output string, so cannot encounter memory
4411 allocation failure. */
4413 CP_STATIC_IF_GLIBCPP_V3
4415 cplus_demangle_print_callback (int options
,
4416 struct demangle_component
*dc
,
4417 demangle_callbackref callback
, void *opaque
)
4419 struct d_print_info dpi
;
4421 d_print_init (&dpi
, callback
, opaque
, dc
);
4424 #ifdef CP_DYNAMIC_ARRAYS
4425 /* Avoid zero-length VLAs, which are prohibited by the C99 standard
4426 and flagged as errors by Address Sanitizer. */
4427 __extension__
struct d_saved_scope scopes
[(dpi
.num_saved_scopes
> 0)
4428 ? dpi
.num_saved_scopes
: 1];
4429 __extension__
struct d_print_template temps
[(dpi
.num_copy_templates
> 0)
4430 ? dpi
.num_copy_templates
: 1];
4432 dpi
.saved_scopes
= scopes
;
4433 dpi
.copy_templates
= temps
;
4435 dpi
.saved_scopes
= alloca (dpi
.num_saved_scopes
4436 * sizeof (*dpi
.saved_scopes
));
4437 dpi
.copy_templates
= alloca (dpi
.num_copy_templates
4438 * sizeof (*dpi
.copy_templates
));
4441 d_print_comp (&dpi
, options
, dc
);
4444 d_print_flush (&dpi
);
4446 return ! d_print_saw_error (&dpi
);
4449 /* Turn components into a human readable string. OPTIONS is the
4450 options bits passed to the demangler. DC is the tree to print.
4451 ESTIMATE is a guess at the length of the result. This returns a
4452 string allocated by malloc, or NULL on error. On success, this
4453 sets *PALC to the size of the allocated buffer. On failure, this
4454 sets *PALC to 0 for a bad parse, or to 1 for a memory allocation
4457 CP_STATIC_IF_GLIBCPP_V3
4459 cplus_demangle_print (int options
, struct demangle_component
*dc
,
4460 int estimate
, size_t *palc
)
4462 struct d_growable_string dgs
;
4464 d_growable_string_init (&dgs
, estimate
);
4466 if (! cplus_demangle_print_callback (options
, dc
,
4467 d_growable_string_callback_adapter
,
4475 *palc
= dgs
.allocation_failure
? 1 : dgs
.alc
;
4479 /* Returns the I'th element of the template arglist ARGS, or NULL on
4480 failure. If I is negative, return the entire arglist. */
4482 static struct demangle_component
*
4483 d_index_template_argument (struct demangle_component
*args
, int i
)
4485 struct demangle_component
*a
;
4488 /* Print the whole argument pack. */
4495 if (a
->type
!= DEMANGLE_COMPONENT_TEMPLATE_ARGLIST
)
4501 if (i
!= 0 || a
== NULL
)
4507 /* Returns the template argument from the current context indicated by DC,
4508 which is a DEMANGLE_COMPONENT_TEMPLATE_PARAM, or NULL. */
4510 static struct demangle_component
*
4511 d_lookup_template_argument (struct d_print_info
*dpi
,
4512 const struct demangle_component
*dc
)
4514 if (dpi
->templates
== NULL
)
4516 d_print_error (dpi
);
4520 return d_index_template_argument
4521 (d_right (dpi
->templates
->template_decl
),
4522 dc
->u
.s_number
.number
);
4525 /* Returns a template argument pack used in DC (any will do), or NULL. */
4527 static struct demangle_component
*
4528 d_find_pack (struct d_print_info
*dpi
,
4529 const struct demangle_component
*dc
)
4531 struct demangle_component
*a
;
4537 case DEMANGLE_COMPONENT_TEMPLATE_PARAM
:
4538 a
= d_lookup_template_argument (dpi
, dc
);
4539 if (a
&& a
->type
== DEMANGLE_COMPONENT_TEMPLATE_ARGLIST
)
4543 case DEMANGLE_COMPONENT_PACK_EXPANSION
:
4546 case DEMANGLE_COMPONENT_LAMBDA
:
4547 case DEMANGLE_COMPONENT_NAME
:
4548 case DEMANGLE_COMPONENT_TAGGED_NAME
:
4549 case DEMANGLE_COMPONENT_OPERATOR
:
4550 case DEMANGLE_COMPONENT_BUILTIN_TYPE
:
4551 case DEMANGLE_COMPONENT_SUB_STD
:
4552 case DEMANGLE_COMPONENT_CHARACTER
:
4553 case DEMANGLE_COMPONENT_FUNCTION_PARAM
:
4554 case DEMANGLE_COMPONENT_UNNAMED_TYPE
:
4555 case DEMANGLE_COMPONENT_FIXED_TYPE
:
4556 case DEMANGLE_COMPONENT_DEFAULT_ARG
:
4557 case DEMANGLE_COMPONENT_NUMBER
:
4560 case DEMANGLE_COMPONENT_EXTENDED_OPERATOR
:
4561 return d_find_pack (dpi
, dc
->u
.s_extended_operator
.name
);
4562 case DEMANGLE_COMPONENT_CTOR
:
4563 return d_find_pack (dpi
, dc
->u
.s_ctor
.name
);
4564 case DEMANGLE_COMPONENT_DTOR
:
4565 return d_find_pack (dpi
, dc
->u
.s_dtor
.name
);
4568 a
= d_find_pack (dpi
, d_left (dc
));
4571 return d_find_pack (dpi
, d_right (dc
));
4575 /* Returns the length of the template argument pack DC. */
4578 d_pack_length (const struct demangle_component
*dc
)
4581 while (dc
&& dc
->type
== DEMANGLE_COMPONENT_TEMPLATE_ARGLIST
4582 && d_left (dc
) != NULL
)
4590 /* Returns the number of template args in DC, expanding any pack expansions
4594 d_args_length (struct d_print_info
*dpi
, const struct demangle_component
*dc
)
4597 for (; dc
&& dc
->type
== DEMANGLE_COMPONENT_TEMPLATE_ARGLIST
;
4600 struct demangle_component
*elt
= d_left (dc
);
4603 if (elt
->type
== DEMANGLE_COMPONENT_PACK_EXPANSION
)
4605 struct demangle_component
*a
= d_find_pack (dpi
, d_left (elt
));
4606 count
+= d_pack_length (a
);
4614 /* DC is a component of a mangled expression. Print it, wrapped in parens
4618 d_print_subexpr (struct d_print_info
*dpi
, int options
,
4619 struct demangle_component
*dc
)
4622 if (dc
->type
== DEMANGLE_COMPONENT_NAME
4623 || dc
->type
== DEMANGLE_COMPONENT_QUAL_NAME
4624 || dc
->type
== DEMANGLE_COMPONENT_INITIALIZER_LIST
4625 || dc
->type
== DEMANGLE_COMPONENT_FUNCTION_PARAM
)
4628 d_append_char (dpi
, '(');
4629 d_print_comp (dpi
, options
, dc
);
4631 d_append_char (dpi
, ')');
4634 /* Save the current scope. */
4637 d_save_scope (struct d_print_info
*dpi
,
4638 const struct demangle_component
*container
)
4640 struct d_saved_scope
*scope
;
4641 struct d_print_template
*src
, **link
;
4643 if (dpi
->next_saved_scope
>= dpi
->num_saved_scopes
)
4645 d_print_error (dpi
);
4648 scope
= &dpi
->saved_scopes
[dpi
->next_saved_scope
];
4649 dpi
->next_saved_scope
++;
4651 scope
->container
= container
;
4652 link
= &scope
->templates
;
4654 for (src
= dpi
->templates
; src
!= NULL
; src
= src
->next
)
4656 struct d_print_template
*dst
;
4658 if (dpi
->next_copy_template
>= dpi
->num_copy_templates
)
4660 d_print_error (dpi
);
4663 dst
= &dpi
->copy_templates
[dpi
->next_copy_template
];
4664 dpi
->next_copy_template
++;
4666 dst
->template_decl
= src
->template_decl
;
4674 /* Attempt to locate a previously saved scope. Returns NULL if no
4675 corresponding saved scope was found. */
4677 static struct d_saved_scope
*
4678 d_get_saved_scope (struct d_print_info
*dpi
,
4679 const struct demangle_component
*container
)
4683 for (i
= 0; i
< dpi
->next_saved_scope
; i
++)
4684 if (dpi
->saved_scopes
[i
].container
== container
)
4685 return &dpi
->saved_scopes
[i
];
4690 /* If DC is a C++17 fold-expression, print it and return true; otherwise
4694 d_maybe_print_fold_expression (struct d_print_info
*dpi
, int options
,
4695 struct demangle_component
*dc
)
4697 struct demangle_component
*ops
, *operator_
, *op1
, *op2
;
4700 const char *fold_code
= d_left (dc
)->u
.s_operator
.op
->code
;
4701 if (fold_code
[0] != 'f')
4705 operator_
= d_left (ops
);
4706 op1
= d_right (ops
);
4708 if (op1
->type
== DEMANGLE_COMPONENT_TRINARY_ARG2
)
4710 op2
= d_right (op1
);
4714 /* Print the whole pack. */
4715 save_idx
= dpi
->pack_index
;
4716 dpi
->pack_index
= -1;
4718 switch (fold_code
[1])
4720 /* Unary left fold, (... + X). */
4722 d_append_string (dpi
, "(...");
4723 d_print_expr_op (dpi
, options
, operator_
);
4724 d_print_subexpr (dpi
, options
, op1
);
4725 d_append_char (dpi
, ')');
4728 /* Unary right fold, (X + ...). */
4730 d_append_char (dpi
, '(');
4731 d_print_subexpr (dpi
, options
, op1
);
4732 d_print_expr_op (dpi
, options
, operator_
);
4733 d_append_string (dpi
, "...)");
4736 /* Binary left fold, (42 + ... + X). */
4738 /* Binary right fold, (X + ... + 42). */
4740 d_append_char (dpi
, '(');
4741 d_print_subexpr (dpi
, options
, op1
);
4742 d_print_expr_op (dpi
, options
, operator_
);
4743 d_append_string (dpi
, "...");
4744 d_print_expr_op (dpi
, options
, operator_
);
4745 d_print_subexpr (dpi
, options
, op2
);
4746 d_append_char (dpi
, ')');
4750 dpi
->pack_index
= save_idx
;
4754 /* True iff DC represents a C99-style designated initializer. */
4757 is_designated_init (struct demangle_component
*dc
)
4759 if (dc
->type
!= DEMANGLE_COMPONENT_BINARY
4760 && dc
->type
!= DEMANGLE_COMPONENT_TRINARY
)
4763 struct demangle_component
*op
= d_left (dc
);
4764 const char *code
= op
->u
.s_operator
.op
->code
;
4765 return (code
[0] == 'd'
4766 && (code
[1] == 'i' || code
[1] == 'x' || code
[1] == 'X'));
4769 /* If DC represents a C99-style designated initializer, print it and return
4770 true; otherwise, return false. */
4773 d_maybe_print_designated_init (struct d_print_info
*dpi
, int options
,
4774 struct demangle_component
*dc
)
4776 if (!is_designated_init (dc
))
4779 const char *code
= d_left (dc
)->u
.s_operator
.op
->code
;
4781 struct demangle_component
*operands
= d_right (dc
);
4782 struct demangle_component
*op1
= d_left (operands
);
4783 struct demangle_component
*op2
= d_right (operands
);
4786 d_append_char (dpi
, '.');
4788 d_append_char (dpi
, '[');
4790 d_print_comp (dpi
, options
, op1
);
4793 d_append_string (dpi
, " ... ");
4794 d_print_comp (dpi
, options
, d_left (op2
));
4795 op2
= d_right (op2
);
4798 d_append_char (dpi
, ']');
4799 if (is_designated_init (op2
))
4801 /* Don't put '=' or '(' between chained designators. */
4802 d_print_comp (dpi
, options
, op2
);
4806 d_append_char (dpi
, '=');
4807 d_print_subexpr (dpi
, options
, op2
);
4812 /* Subroutine to handle components. */
4815 d_print_comp_inner (struct d_print_info
*dpi
, int options
,
4816 struct demangle_component
*dc
)
4818 /* Magic variable to let reference smashing skip over the next modifier
4819 without needing to modify *dc. */
4820 struct demangle_component
*mod_inner
= NULL
;
4822 /* Variable used to store the current templates while a previously
4823 captured scope is used. */
4824 struct d_print_template
*saved_templates
;
4826 /* Nonzero if templates have been stored in the above variable. */
4827 int need_template_restore
= 0;
4831 d_print_error (dpi
);
4834 if (d_print_saw_error (dpi
))
4839 case DEMANGLE_COMPONENT_NAME
:
4840 if ((options
& DMGL_JAVA
) == 0)
4841 d_append_buffer (dpi
, dc
->u
.s_name
.s
, dc
->u
.s_name
.len
);
4843 d_print_java_identifier (dpi
, dc
->u
.s_name
.s
, dc
->u
.s_name
.len
);
4846 case DEMANGLE_COMPONENT_TAGGED_NAME
:
4847 d_print_comp (dpi
, options
, d_left (dc
));
4848 d_append_string (dpi
, "[abi:");
4849 d_print_comp (dpi
, options
, d_right (dc
));
4850 d_append_char (dpi
, ']');
4853 case DEMANGLE_COMPONENT_QUAL_NAME
:
4854 case DEMANGLE_COMPONENT_LOCAL_NAME
:
4855 d_print_comp (dpi
, options
, d_left (dc
));
4856 if ((options
& DMGL_JAVA
) == 0)
4857 d_append_string (dpi
, "::");
4859 d_append_char (dpi
, '.');
4861 struct demangle_component
*local_name
= d_right (dc
);
4862 if (local_name
->type
== DEMANGLE_COMPONENT_DEFAULT_ARG
)
4864 d_append_string (dpi
, "{default arg#");
4865 d_append_num (dpi
, local_name
->u
.s_unary_num
.num
+ 1);
4866 d_append_string (dpi
, "}::");
4867 local_name
= local_name
->u
.s_unary_num
.sub
;
4869 d_print_comp (dpi
, options
, local_name
);
4873 case DEMANGLE_COMPONENT_TYPED_NAME
:
4875 struct d_print_mod
*hold_modifiers
;
4876 struct demangle_component
*typed_name
;
4877 struct d_print_mod adpm
[4];
4879 struct d_print_template dpt
;
4881 /* Pass the name down to the type so that it can be printed in
4882 the right place for the type. We also have to pass down
4883 any CV-qualifiers, which apply to the this parameter. */
4884 hold_modifiers
= dpi
->modifiers
;
4887 typed_name
= d_left (dc
);
4888 while (typed_name
!= NULL
)
4890 if (i
>= sizeof adpm
/ sizeof adpm
[0])
4892 d_print_error (dpi
);
4896 adpm
[i
].next
= dpi
->modifiers
;
4897 dpi
->modifiers
= &adpm
[i
];
4898 adpm
[i
].mod
= typed_name
;
4899 adpm
[i
].printed
= 0;
4900 adpm
[i
].templates
= dpi
->templates
;
4903 if (!is_fnqual_component_type (typed_name
->type
))
4906 typed_name
= d_left (typed_name
);
4909 if (typed_name
== NULL
)
4911 d_print_error (dpi
);
4915 /* If typed_name is a DEMANGLE_COMPONENT_LOCAL_NAME, then
4916 there may be CV-qualifiers on its right argument which
4917 really apply here; this happens when parsing a class that
4918 is local to a function. */
4919 if (typed_name
->type
== DEMANGLE_COMPONENT_LOCAL_NAME
)
4921 typed_name
= d_right (typed_name
);
4922 if (typed_name
->type
== DEMANGLE_COMPONENT_DEFAULT_ARG
)
4923 typed_name
= typed_name
->u
.s_unary_num
.sub
;
4924 while (typed_name
!= NULL
4925 && is_fnqual_component_type (typed_name
->type
))
4927 if (i
>= sizeof adpm
/ sizeof adpm
[0])
4929 d_print_error (dpi
);
4933 adpm
[i
] = adpm
[i
- 1];
4934 adpm
[i
].next
= &adpm
[i
- 1];
4935 dpi
->modifiers
= &adpm
[i
];
4937 adpm
[i
- 1].mod
= typed_name
;
4938 adpm
[i
- 1].printed
= 0;
4939 adpm
[i
- 1].templates
= dpi
->templates
;
4942 typed_name
= d_left (typed_name
);
4944 if (typed_name
== NULL
)
4946 d_print_error (dpi
);
4951 /* If typed_name is a template, then it applies to the
4952 function type as well. */
4953 if (typed_name
->type
== DEMANGLE_COMPONENT_TEMPLATE
)
4955 dpt
.next
= dpi
->templates
;
4956 dpi
->templates
= &dpt
;
4957 dpt
.template_decl
= typed_name
;
4960 d_print_comp (dpi
, options
, d_right (dc
));
4962 if (typed_name
->type
== DEMANGLE_COMPONENT_TEMPLATE
)
4963 dpi
->templates
= dpt
.next
;
4965 /* If the modifiers didn't get printed by the type, print them
4970 if (! adpm
[i
].printed
)
4972 d_append_char (dpi
, ' ');
4973 d_print_mod (dpi
, options
, adpm
[i
].mod
);
4977 dpi
->modifiers
= hold_modifiers
;
4982 case DEMANGLE_COMPONENT_TEMPLATE
:
4984 struct d_print_mod
*hold_dpm
;
4985 struct demangle_component
*dcl
;
4986 const struct demangle_component
*hold_current
;
4988 /* This template may need to be referenced by a cast operator
4989 contained in its subtree. */
4990 hold_current
= dpi
->current_template
;
4991 dpi
->current_template
= dc
;
4993 /* Don't push modifiers into a template definition. Doing so
4994 could give the wrong definition for a template argument.
4995 Instead, treat the template essentially as a name. */
4997 hold_dpm
= dpi
->modifiers
;
4998 dpi
->modifiers
= NULL
;
5002 if ((options
& DMGL_JAVA
) != 0
5003 && dcl
->type
== DEMANGLE_COMPONENT_NAME
5004 && dcl
->u
.s_name
.len
== 6
5005 && strncmp (dcl
->u
.s_name
.s
, "JArray", 6) == 0)
5007 /* Special-case Java arrays, so that JArray<TYPE> appears
5008 instead as TYPE[]. */
5010 d_print_comp (dpi
, options
, d_right (dc
));
5011 d_append_string (dpi
, "[]");
5015 d_print_comp (dpi
, options
, dcl
);
5016 if (d_last_char (dpi
) == '<')
5017 d_append_char (dpi
, ' ');
5018 d_append_char (dpi
, '<');
5019 d_print_comp (dpi
, options
, d_right (dc
));
5020 /* Avoid generating two consecutive '>' characters, to avoid
5021 the C++ syntactic ambiguity. */
5022 if (d_last_char (dpi
) == '>')
5023 d_append_char (dpi
, ' ');
5024 d_append_char (dpi
, '>');
5027 dpi
->modifiers
= hold_dpm
;
5028 dpi
->current_template
= hold_current
;
5033 case DEMANGLE_COMPONENT_TEMPLATE_PARAM
:
5034 if (dpi
->is_lambda_arg
)
5036 /* Show the template parm index, as that's how g++ displays
5037 these, and future proofs us against potential
5038 '[]<typename T> (T *a, T *b) {...}'. */
5039 d_append_buffer (dpi
, "auto:", 5);
5040 d_append_num (dpi
, dc
->u
.s_number
.number
+ 1);
5044 struct d_print_template
*hold_dpt
;
5045 struct demangle_component
*a
= d_lookup_template_argument (dpi
, dc
);
5047 if (a
&& a
->type
== DEMANGLE_COMPONENT_TEMPLATE_ARGLIST
)
5048 a
= d_index_template_argument (a
, dpi
->pack_index
);
5052 d_print_error (dpi
);
5056 /* While processing this parameter, we need to pop the list
5057 of templates. This is because the template parameter may
5058 itself be a reference to a parameter of an outer
5061 hold_dpt
= dpi
->templates
;
5062 dpi
->templates
= hold_dpt
->next
;
5064 d_print_comp (dpi
, options
, a
);
5066 dpi
->templates
= hold_dpt
;
5070 case DEMANGLE_COMPONENT_TPARM_OBJ
:
5071 d_append_string (dpi
, "template parameter object for ");
5072 d_print_comp (dpi
, options
, d_left (dc
));
5075 case DEMANGLE_COMPONENT_CTOR
:
5076 d_print_comp (dpi
, options
, dc
->u
.s_ctor
.name
);
5079 case DEMANGLE_COMPONENT_DTOR
:
5080 d_append_char (dpi
, '~');
5081 d_print_comp (dpi
, options
, dc
->u
.s_dtor
.name
);
5084 case DEMANGLE_COMPONENT_VTABLE
:
5085 d_append_string (dpi
, "vtable for ");
5086 d_print_comp (dpi
, options
, d_left (dc
));
5089 case DEMANGLE_COMPONENT_VTT
:
5090 d_append_string (dpi
, "VTT for ");
5091 d_print_comp (dpi
, options
, d_left (dc
));
5094 case DEMANGLE_COMPONENT_CONSTRUCTION_VTABLE
:
5095 d_append_string (dpi
, "construction vtable for ");
5096 d_print_comp (dpi
, options
, d_left (dc
));
5097 d_append_string (dpi
, "-in-");
5098 d_print_comp (dpi
, options
, d_right (dc
));
5101 case DEMANGLE_COMPONENT_TYPEINFO
:
5102 d_append_string (dpi
, "typeinfo for ");
5103 d_print_comp (dpi
, options
, d_left (dc
));
5106 case DEMANGLE_COMPONENT_TYPEINFO_NAME
:
5107 d_append_string (dpi
, "typeinfo name for ");
5108 d_print_comp (dpi
, options
, d_left (dc
));
5111 case DEMANGLE_COMPONENT_TYPEINFO_FN
:
5112 d_append_string (dpi
, "typeinfo fn for ");
5113 d_print_comp (dpi
, options
, d_left (dc
));
5116 case DEMANGLE_COMPONENT_THUNK
:
5117 d_append_string (dpi
, "non-virtual thunk to ");
5118 d_print_comp (dpi
, options
, d_left (dc
));
5121 case DEMANGLE_COMPONENT_VIRTUAL_THUNK
:
5122 d_append_string (dpi
, "virtual thunk to ");
5123 d_print_comp (dpi
, options
, d_left (dc
));
5126 case DEMANGLE_COMPONENT_COVARIANT_THUNK
:
5127 d_append_string (dpi
, "covariant return thunk to ");
5128 d_print_comp (dpi
, options
, d_left (dc
));
5131 case DEMANGLE_COMPONENT_JAVA_CLASS
:
5132 d_append_string (dpi
, "java Class for ");
5133 d_print_comp (dpi
, options
, d_left (dc
));
5136 case DEMANGLE_COMPONENT_GUARD
:
5137 d_append_string (dpi
, "guard variable for ");
5138 d_print_comp (dpi
, options
, d_left (dc
));
5141 case DEMANGLE_COMPONENT_TLS_INIT
:
5142 d_append_string (dpi
, "TLS init function for ");
5143 d_print_comp (dpi
, options
, d_left (dc
));
5146 case DEMANGLE_COMPONENT_TLS_WRAPPER
:
5147 d_append_string (dpi
, "TLS wrapper function for ");
5148 d_print_comp (dpi
, options
, d_left (dc
));
5151 case DEMANGLE_COMPONENT_REFTEMP
:
5152 d_append_string (dpi
, "reference temporary #");
5153 d_print_comp (dpi
, options
, d_right (dc
));
5154 d_append_string (dpi
, " for ");
5155 d_print_comp (dpi
, options
, d_left (dc
));
5158 case DEMANGLE_COMPONENT_HIDDEN_ALIAS
:
5159 d_append_string (dpi
, "hidden alias for ");
5160 d_print_comp (dpi
, options
, d_left (dc
));
5163 case DEMANGLE_COMPONENT_TRANSACTION_CLONE
:
5164 d_append_string (dpi
, "transaction clone for ");
5165 d_print_comp (dpi
, options
, d_left (dc
));
5168 case DEMANGLE_COMPONENT_NONTRANSACTION_CLONE
:
5169 d_append_string (dpi
, "non-transaction clone for ");
5170 d_print_comp (dpi
, options
, d_left (dc
));
5173 case DEMANGLE_COMPONENT_SUB_STD
:
5174 d_append_buffer (dpi
, dc
->u
.s_string
.string
, dc
->u
.s_string
.len
);
5177 case DEMANGLE_COMPONENT_RESTRICT
:
5178 case DEMANGLE_COMPONENT_VOLATILE
:
5179 case DEMANGLE_COMPONENT_CONST
:
5181 struct d_print_mod
*pdpm
;
5183 /* When printing arrays, it's possible to have cases where the
5184 same CV-qualifier gets pushed on the stack multiple times.
5185 We only need to print it once. */
5187 for (pdpm
= dpi
->modifiers
; pdpm
!= NULL
; pdpm
= pdpm
->next
)
5189 if (! pdpm
->printed
)
5191 if (pdpm
->mod
->type
!= DEMANGLE_COMPONENT_RESTRICT
5192 && pdpm
->mod
->type
!= DEMANGLE_COMPONENT_VOLATILE
5193 && pdpm
->mod
->type
!= DEMANGLE_COMPONENT_CONST
)
5195 if (pdpm
->mod
->type
== dc
->type
)
5197 d_print_comp (dpi
, options
, d_left (dc
));
5205 case DEMANGLE_COMPONENT_REFERENCE
:
5206 case DEMANGLE_COMPONENT_RVALUE_REFERENCE
:
5208 /* Handle reference smashing: & + && = &. */
5209 struct demangle_component
*sub
= d_left (dc
);
5210 if (!dpi
->is_lambda_arg
5211 && sub
->type
== DEMANGLE_COMPONENT_TEMPLATE_PARAM
)
5213 struct d_saved_scope
*scope
= d_get_saved_scope (dpi
, sub
);
5214 struct demangle_component
*a
;
5218 /* This is the first time SUB has been traversed.
5219 We need to capture the current templates so
5220 they can be restored if SUB is reentered as a
5222 d_save_scope (dpi
, sub
);
5223 if (d_print_saw_error (dpi
))
5228 const struct d_component_stack
*dcse
;
5229 int found_self_or_parent
= 0;
5231 /* This traversal is reentering SUB as a substition.
5232 If we are not beneath SUB or DC in the tree then we
5233 need to restore SUB's template stack temporarily. */
5234 for (dcse
= dpi
->component_stack
; dcse
!= NULL
;
5235 dcse
= dcse
->parent
)
5239 && dcse
!= dpi
->component_stack
))
5241 found_self_or_parent
= 1;
5246 if (!found_self_or_parent
)
5248 saved_templates
= dpi
->templates
;
5249 dpi
->templates
= scope
->templates
;
5250 need_template_restore
= 1;
5254 a
= d_lookup_template_argument (dpi
, sub
);
5255 if (a
&& a
->type
== DEMANGLE_COMPONENT_TEMPLATE_ARGLIST
)
5256 a
= d_index_template_argument (a
, dpi
->pack_index
);
5260 if (need_template_restore
)
5261 dpi
->templates
= saved_templates
;
5263 d_print_error (dpi
);
5270 if (sub
->type
== DEMANGLE_COMPONENT_REFERENCE
5271 || sub
->type
== dc
->type
)
5273 else if (sub
->type
== DEMANGLE_COMPONENT_RVALUE_REFERENCE
)
5274 mod_inner
= d_left (sub
);
5278 case DEMANGLE_COMPONENT_VENDOR_TYPE_QUAL
:
5279 case DEMANGLE_COMPONENT_POINTER
:
5280 case DEMANGLE_COMPONENT_COMPLEX
:
5281 case DEMANGLE_COMPONENT_IMAGINARY
:
5282 FNQUAL_COMPONENT_CASE
:
5285 /* We keep a list of modifiers on the stack. */
5286 struct d_print_mod dpm
;
5288 dpm
.next
= dpi
->modifiers
;
5289 dpi
->modifiers
= &dpm
;
5292 dpm
.templates
= dpi
->templates
;
5295 mod_inner
= d_left (dc
);
5297 d_print_comp (dpi
, options
, mod_inner
);
5299 /* If the modifier didn't get printed by the type, print it
5302 d_print_mod (dpi
, options
, dc
);
5304 dpi
->modifiers
= dpm
.next
;
5306 if (need_template_restore
)
5307 dpi
->templates
= saved_templates
;
5312 case DEMANGLE_COMPONENT_BUILTIN_TYPE
:
5313 if ((options
& DMGL_JAVA
) == 0)
5314 d_append_buffer (dpi
, dc
->u
.s_builtin
.type
->name
,
5315 dc
->u
.s_builtin
.type
->len
);
5317 d_append_buffer (dpi
, dc
->u
.s_builtin
.type
->java_name
,
5318 dc
->u
.s_builtin
.type
->java_len
);
5321 case DEMANGLE_COMPONENT_VENDOR_TYPE
:
5322 d_print_comp (dpi
, options
, d_left (dc
));
5325 case DEMANGLE_COMPONENT_FUNCTION_TYPE
:
5327 if ((options
& DMGL_RET_POSTFIX
) != 0)
5328 d_print_function_type (dpi
,
5329 options
& ~(DMGL_RET_POSTFIX
| DMGL_RET_DROP
),
5330 dc
, dpi
->modifiers
);
5332 /* Print return type if present */
5333 if (d_left (dc
) != NULL
&& (options
& DMGL_RET_POSTFIX
) != 0)
5334 d_print_comp (dpi
, options
& ~(DMGL_RET_POSTFIX
| DMGL_RET_DROP
),
5336 else if (d_left (dc
) != NULL
&& (options
& DMGL_RET_DROP
) == 0)
5338 struct d_print_mod dpm
;
5340 /* We must pass this type down as a modifier in order to
5341 print it in the right location. */
5342 dpm
.next
= dpi
->modifiers
;
5343 dpi
->modifiers
= &dpm
;
5346 dpm
.templates
= dpi
->templates
;
5348 d_print_comp (dpi
, options
& ~(DMGL_RET_POSTFIX
| DMGL_RET_DROP
),
5351 dpi
->modifiers
= dpm
.next
;
5356 /* In standard prefix notation, there is a space between the
5357 return type and the function signature. */
5358 if ((options
& DMGL_RET_POSTFIX
) == 0)
5359 d_append_char (dpi
, ' ');
5362 if ((options
& DMGL_RET_POSTFIX
) == 0)
5363 d_print_function_type (dpi
,
5364 options
& ~(DMGL_RET_POSTFIX
| DMGL_RET_DROP
),
5365 dc
, dpi
->modifiers
);
5370 case DEMANGLE_COMPONENT_ARRAY_TYPE
:
5372 struct d_print_mod
*hold_modifiers
;
5373 struct d_print_mod adpm
[4];
5375 struct d_print_mod
*pdpm
;
5377 /* We must pass this type down as a modifier in order to print
5378 multi-dimensional arrays correctly. If the array itself is
5379 CV-qualified, we act as though the element type were
5380 CV-qualified. We do this by copying the modifiers down
5381 rather than fiddling pointers, so that we don't wind up
5382 with a d_print_mod higher on the stack pointing into our
5383 stack frame after we return. */
5385 hold_modifiers
= dpi
->modifiers
;
5387 adpm
[0].next
= hold_modifiers
;
5388 dpi
->modifiers
= &adpm
[0];
5390 adpm
[0].printed
= 0;
5391 adpm
[0].templates
= dpi
->templates
;
5394 pdpm
= hold_modifiers
;
5396 && (pdpm
->mod
->type
== DEMANGLE_COMPONENT_RESTRICT
5397 || pdpm
->mod
->type
== DEMANGLE_COMPONENT_VOLATILE
5398 || pdpm
->mod
->type
== DEMANGLE_COMPONENT_CONST
))
5400 if (! pdpm
->printed
)
5402 if (i
>= sizeof adpm
/ sizeof adpm
[0])
5404 d_print_error (dpi
);
5409 adpm
[i
].next
= dpi
->modifiers
;
5410 dpi
->modifiers
= &adpm
[i
];
5418 d_print_comp (dpi
, options
, d_right (dc
));
5420 dpi
->modifiers
= hold_modifiers
;
5422 if (adpm
[0].printed
)
5428 d_print_mod (dpi
, options
, adpm
[i
].mod
);
5431 d_print_array_type (dpi
, options
, dc
, dpi
->modifiers
);
5436 case DEMANGLE_COMPONENT_PTRMEM_TYPE
:
5437 case DEMANGLE_COMPONENT_VECTOR_TYPE
:
5439 struct d_print_mod dpm
;
5441 dpm
.next
= dpi
->modifiers
;
5442 dpi
->modifiers
= &dpm
;
5445 dpm
.templates
= dpi
->templates
;
5447 d_print_comp (dpi
, options
, d_right (dc
));
5449 /* If the modifier didn't get printed by the type, print it
5452 d_print_mod (dpi
, options
, dc
);
5454 dpi
->modifiers
= dpm
.next
;
5459 case DEMANGLE_COMPONENT_FIXED_TYPE
:
5460 if (dc
->u
.s_fixed
.sat
)
5461 d_append_string (dpi
, "_Sat ");
5462 /* Don't print "int _Accum". */
5463 if (dc
->u
.s_fixed
.length
->u
.s_builtin
.type
5464 != &cplus_demangle_builtin_types
['i'-'a'])
5466 d_print_comp (dpi
, options
, dc
->u
.s_fixed
.length
);
5467 d_append_char (dpi
, ' ');
5469 if (dc
->u
.s_fixed
.accum
)
5470 d_append_string (dpi
, "_Accum");
5472 d_append_string (dpi
, "_Fract");
5475 case DEMANGLE_COMPONENT_ARGLIST
:
5476 case DEMANGLE_COMPONENT_TEMPLATE_ARGLIST
:
5477 if (d_left (dc
) != NULL
)
5478 d_print_comp (dpi
, options
, d_left (dc
));
5479 if (d_right (dc
) != NULL
)
5482 unsigned long int flush_count
;
5483 /* Make sure ", " isn't flushed by d_append_string, otherwise
5484 dpi->len -= 2 wouldn't work. */
5485 if (dpi
->len
>= sizeof (dpi
->buf
) - 2)
5486 d_print_flush (dpi
);
5487 d_append_string (dpi
, ", ");
5489 flush_count
= dpi
->flush_count
;
5490 d_print_comp (dpi
, options
, d_right (dc
));
5491 /* If that didn't print anything (which can happen with empty
5492 template argument packs), remove the comma and space. */
5493 if (dpi
->flush_count
== flush_count
&& dpi
->len
== len
)
5498 case DEMANGLE_COMPONENT_INITIALIZER_LIST
:
5500 struct demangle_component
*type
= d_left (dc
);
5501 struct demangle_component
*list
= d_right (dc
);
5504 d_print_comp (dpi
, options
, type
);
5505 d_append_char (dpi
, '{');
5506 d_print_comp (dpi
, options
, list
);
5507 d_append_char (dpi
, '}');
5511 case DEMANGLE_COMPONENT_OPERATOR
:
5513 const struct demangle_operator_info
*op
= dc
->u
.s_operator
.op
;
5516 d_append_string (dpi
, "operator");
5517 /* Add a space before new/delete. */
5518 if (IS_LOWER (op
->name
[0]))
5519 d_append_char (dpi
, ' ');
5520 /* Omit a trailing space. */
5521 if (op
->name
[len
-1] == ' ')
5523 d_append_buffer (dpi
, op
->name
, len
);
5527 case DEMANGLE_COMPONENT_EXTENDED_OPERATOR
:
5528 d_append_string (dpi
, "operator ");
5529 d_print_comp (dpi
, options
, dc
->u
.s_extended_operator
.name
);
5532 case DEMANGLE_COMPONENT_CONVERSION
:
5533 d_append_string (dpi
, "operator ");
5534 d_print_conversion (dpi
, options
, dc
);
5537 case DEMANGLE_COMPONENT_NULLARY
:
5538 d_print_expr_op (dpi
, options
, d_left (dc
));
5541 case DEMANGLE_COMPONENT_UNARY
:
5543 struct demangle_component
*op
= d_left (dc
);
5544 struct demangle_component
*operand
= d_right (dc
);
5545 const char *code
= NULL
;
5547 if (op
->type
== DEMANGLE_COMPONENT_OPERATOR
)
5549 code
= op
->u
.s_operator
.op
->code
;
5550 if (!strcmp (code
, "ad"))
5552 /* Don't print the argument list for the address of a
5554 if (operand
->type
== DEMANGLE_COMPONENT_TYPED_NAME
5555 && d_left (operand
)->type
== DEMANGLE_COMPONENT_QUAL_NAME
5556 && d_right (operand
)->type
== DEMANGLE_COMPONENT_FUNCTION_TYPE
)
5557 operand
= d_left (operand
);
5559 if (operand
->type
== DEMANGLE_COMPONENT_BINARY_ARGS
)
5561 /* This indicates a suffix operator. */
5562 operand
= d_left (operand
);
5563 d_print_subexpr (dpi
, options
, operand
);
5564 d_print_expr_op (dpi
, options
, op
);
5569 /* For sizeof..., just print the pack length. */
5570 if (code
&& !strcmp (code
, "sZ"))
5572 struct demangle_component
*a
= d_find_pack (dpi
, operand
);
5573 int len
= d_pack_length (a
);
5574 d_append_num (dpi
, len
);
5577 else if (code
&& !strcmp (code
, "sP"))
5579 int len
= d_args_length (dpi
, operand
);
5580 d_append_num (dpi
, len
);
5584 if (op
->type
!= DEMANGLE_COMPONENT_CAST
)
5585 d_print_expr_op (dpi
, options
, op
);
5588 d_append_char (dpi
, '(');
5589 d_print_cast (dpi
, options
, op
);
5590 d_append_char (dpi
, ')');
5592 if (code
&& !strcmp (code
, "gs"))
5593 /* Avoid parens after '::'. */
5594 d_print_comp (dpi
, options
, operand
);
5595 else if (code
&& !strcmp (code
, "st"))
5596 /* Always print parens for sizeof (type). */
5598 d_append_char (dpi
, '(');
5599 d_print_comp (dpi
, options
, operand
);
5600 d_append_char (dpi
, ')');
5603 d_print_subexpr (dpi
, options
, operand
);
5607 case DEMANGLE_COMPONENT_BINARY
:
5608 if (d_right (dc
)->type
!= DEMANGLE_COMPONENT_BINARY_ARGS
)
5610 d_print_error (dpi
);
5614 if (op_is_new_cast (d_left (dc
)))
5616 d_print_expr_op (dpi
, options
, d_left (dc
));
5617 d_append_char (dpi
, '<');
5618 d_print_comp (dpi
, options
, d_left (d_right (dc
)));
5619 d_append_string (dpi
, ">(");
5620 d_print_comp (dpi
, options
, d_right (d_right (dc
)));
5621 d_append_char (dpi
, ')');
5625 if (d_maybe_print_fold_expression (dpi
, options
, dc
))
5628 if (d_maybe_print_designated_init (dpi
, options
, dc
))
5631 /* We wrap an expression which uses the greater-than operator in
5632 an extra layer of parens so that it does not get confused
5633 with the '>' which ends the template parameters. */
5634 if (d_left (dc
)->type
== DEMANGLE_COMPONENT_OPERATOR
5635 && d_left (dc
)->u
.s_operator
.op
->len
== 1
5636 && d_left (dc
)->u
.s_operator
.op
->name
[0] == '>')
5637 d_append_char (dpi
, '(');
5639 if (strcmp (d_left (dc
)->u
.s_operator
.op
->code
, "cl") == 0
5640 && d_left (d_right (dc
))->type
== DEMANGLE_COMPONENT_TYPED_NAME
)
5642 /* Function call used in an expression should not have printed types
5643 of the function arguments. Values of the function arguments still
5644 get printed below. */
5646 const struct demangle_component
*func
= d_left (d_right (dc
));
5648 if (d_right (func
)->type
!= DEMANGLE_COMPONENT_FUNCTION_TYPE
)
5649 d_print_error (dpi
);
5650 d_print_subexpr (dpi
, options
, d_left (func
));
5653 d_print_subexpr (dpi
, options
, d_left (d_right (dc
)));
5654 if (strcmp (d_left (dc
)->u
.s_operator
.op
->code
, "ix") == 0)
5656 d_append_char (dpi
, '[');
5657 d_print_comp (dpi
, options
, d_right (d_right (dc
)));
5658 d_append_char (dpi
, ']');
5662 if (strcmp (d_left (dc
)->u
.s_operator
.op
->code
, "cl") != 0)
5663 d_print_expr_op (dpi
, options
, d_left (dc
));
5664 d_print_subexpr (dpi
, options
, d_right (d_right (dc
)));
5667 if (d_left (dc
)->type
== DEMANGLE_COMPONENT_OPERATOR
5668 && d_left (dc
)->u
.s_operator
.op
->len
== 1
5669 && d_left (dc
)->u
.s_operator
.op
->name
[0] == '>')
5670 d_append_char (dpi
, ')');
5674 case DEMANGLE_COMPONENT_BINARY_ARGS
:
5675 /* We should only see this as part of DEMANGLE_COMPONENT_BINARY. */
5676 d_print_error (dpi
);
5679 case DEMANGLE_COMPONENT_TRINARY
:
5680 if (d_right (dc
)->type
!= DEMANGLE_COMPONENT_TRINARY_ARG1
5681 || d_right (d_right (dc
))->type
!= DEMANGLE_COMPONENT_TRINARY_ARG2
)
5683 d_print_error (dpi
);
5686 if (d_maybe_print_fold_expression (dpi
, options
, dc
))
5688 if (d_maybe_print_designated_init (dpi
, options
, dc
))
5691 struct demangle_component
*op
= d_left (dc
);
5692 struct demangle_component
*first
= d_left (d_right (dc
));
5693 struct demangle_component
*second
= d_left (d_right (d_right (dc
)));
5694 struct demangle_component
*third
= d_right (d_right (d_right (dc
)));
5696 if (!strcmp (op
->u
.s_operator
.op
->code
, "qu"))
5698 d_print_subexpr (dpi
, options
, first
);
5699 d_print_expr_op (dpi
, options
, op
);
5700 d_print_subexpr (dpi
, options
, second
);
5701 d_append_string (dpi
, " : ");
5702 d_print_subexpr (dpi
, options
, third
);
5706 d_append_string (dpi
, "new ");
5707 if (d_left (first
) != NULL
)
5709 d_print_subexpr (dpi
, options
, first
);
5710 d_append_char (dpi
, ' ');
5712 d_print_comp (dpi
, options
, second
);
5714 d_print_subexpr (dpi
, options
, third
);
5719 case DEMANGLE_COMPONENT_TRINARY_ARG1
:
5720 case DEMANGLE_COMPONENT_TRINARY_ARG2
:
5721 /* We should only see these are part of DEMANGLE_COMPONENT_TRINARY. */
5722 d_print_error (dpi
);
5725 case DEMANGLE_COMPONENT_LITERAL
:
5726 case DEMANGLE_COMPONENT_LITERAL_NEG
:
5728 enum d_builtin_type_print tp
;
5730 /* For some builtin types, produce simpler output. */
5731 tp
= D_PRINT_DEFAULT
;
5732 if (d_left (dc
)->type
== DEMANGLE_COMPONENT_BUILTIN_TYPE
)
5734 tp
= d_left (dc
)->u
.s_builtin
.type
->print
;
5738 case D_PRINT_UNSIGNED
:
5740 case D_PRINT_UNSIGNED_LONG
:
5741 case D_PRINT_LONG_LONG
:
5742 case D_PRINT_UNSIGNED_LONG_LONG
:
5743 if (d_right (dc
)->type
== DEMANGLE_COMPONENT_NAME
)
5745 if (dc
->type
== DEMANGLE_COMPONENT_LITERAL_NEG
)
5746 d_append_char (dpi
, '-');
5747 d_print_comp (dpi
, options
, d_right (dc
));
5752 case D_PRINT_UNSIGNED
:
5753 d_append_char (dpi
, 'u');
5756 d_append_char (dpi
, 'l');
5758 case D_PRINT_UNSIGNED_LONG
:
5759 d_append_string (dpi
, "ul");
5761 case D_PRINT_LONG_LONG
:
5762 d_append_string (dpi
, "ll");
5764 case D_PRINT_UNSIGNED_LONG_LONG
:
5765 d_append_string (dpi
, "ull");
5773 if (d_right (dc
)->type
== DEMANGLE_COMPONENT_NAME
5774 && d_right (dc
)->u
.s_name
.len
== 1
5775 && dc
->type
== DEMANGLE_COMPONENT_LITERAL
)
5777 switch (d_right (dc
)->u
.s_name
.s
[0])
5780 d_append_string (dpi
, "false");
5783 d_append_string (dpi
, "true");
5796 d_append_char (dpi
, '(');
5797 d_print_comp (dpi
, options
, d_left (dc
));
5798 d_append_char (dpi
, ')');
5799 if (dc
->type
== DEMANGLE_COMPONENT_LITERAL_NEG
)
5800 d_append_char (dpi
, '-');
5801 if (tp
== D_PRINT_FLOAT
)
5802 d_append_char (dpi
, '[');
5803 d_print_comp (dpi
, options
, d_right (dc
));
5804 if (tp
== D_PRINT_FLOAT
)
5805 d_append_char (dpi
, ']');
5809 case DEMANGLE_COMPONENT_VENDOR_EXPR
:
5810 d_print_comp (dpi
, options
, d_left (dc
));
5811 d_append_char (dpi
, '(');
5812 d_print_comp (dpi
, options
, d_right (dc
));
5813 d_append_char (dpi
, ')');
5816 case DEMANGLE_COMPONENT_NUMBER
:
5817 d_append_num (dpi
, dc
->u
.s_number
.number
);
5820 case DEMANGLE_COMPONENT_JAVA_RESOURCE
:
5821 d_append_string (dpi
, "java resource ");
5822 d_print_comp (dpi
, options
, d_left (dc
));
5825 case DEMANGLE_COMPONENT_COMPOUND_NAME
:
5826 d_print_comp (dpi
, options
, d_left (dc
));
5827 d_print_comp (dpi
, options
, d_right (dc
));
5830 case DEMANGLE_COMPONENT_CHARACTER
:
5831 d_append_char (dpi
, dc
->u
.s_character
.character
);
5834 case DEMANGLE_COMPONENT_DECLTYPE
:
5835 d_append_string (dpi
, "decltype (");
5836 d_print_comp (dpi
, options
, d_left (dc
));
5837 d_append_char (dpi
, ')');
5840 case DEMANGLE_COMPONENT_PACK_EXPANSION
:
5844 struct demangle_component
*a
= d_find_pack (dpi
, d_left (dc
));
5847 /* d_find_pack won't find anything if the only packs involved
5848 in this expansion are function parameter packs; in that
5849 case, just print the pattern and "...". */
5850 d_print_subexpr (dpi
, options
, d_left (dc
));
5851 d_append_string (dpi
, "...");
5855 len
= d_pack_length (a
);
5857 for (i
= 0; i
< len
; ++i
)
5859 dpi
->pack_index
= i
;
5860 d_print_comp (dpi
, options
, dc
);
5862 d_append_string (dpi
, ", ");
5867 case DEMANGLE_COMPONENT_FUNCTION_PARAM
:
5869 long num
= dc
->u
.s_number
.number
;
5871 d_append_string (dpi
, "this");
5874 d_append_string (dpi
, "{parm#");
5875 d_append_num (dpi
, num
);
5876 d_append_char (dpi
, '}');
5881 case DEMANGLE_COMPONENT_GLOBAL_CONSTRUCTORS
:
5882 d_append_string (dpi
, "global constructors keyed to ");
5883 d_print_comp (dpi
, options
, dc
->u
.s_binary
.left
);
5886 case DEMANGLE_COMPONENT_GLOBAL_DESTRUCTORS
:
5887 d_append_string (dpi
, "global destructors keyed to ");
5888 d_print_comp (dpi
, options
, dc
->u
.s_binary
.left
);
5891 case DEMANGLE_COMPONENT_LAMBDA
:
5892 d_append_string (dpi
, "{lambda(");
5893 /* Generic lambda auto parms are mangled as the template type
5895 dpi
->is_lambda_arg
++;
5896 d_print_comp (dpi
, options
, dc
->u
.s_unary_num
.sub
);
5897 dpi
->is_lambda_arg
--;
5898 d_append_string (dpi
, ")#");
5899 d_append_num (dpi
, dc
->u
.s_unary_num
.num
+ 1);
5900 d_append_char (dpi
, '}');
5903 case DEMANGLE_COMPONENT_UNNAMED_TYPE
:
5904 d_append_string (dpi
, "{unnamed type#");
5905 d_append_num (dpi
, dc
->u
.s_number
.number
+ 1);
5906 d_append_char (dpi
, '}');
5909 case DEMANGLE_COMPONENT_CLONE
:
5910 d_print_comp (dpi
, options
, d_left (dc
));
5911 d_append_string (dpi
, " [clone ");
5912 d_print_comp (dpi
, options
, d_right (dc
));
5913 d_append_char (dpi
, ']');
5917 d_print_error (dpi
);
5923 d_print_comp (struct d_print_info
*dpi
, int options
,
5924 struct demangle_component
*dc
)
5926 struct d_component_stack self
;
5927 if (dc
== NULL
|| dc
->d_printing
> 1 || dpi
->recursion
> MAX_RECURSION_COUNT
)
5929 d_print_error (dpi
);
5937 self
.parent
= dpi
->component_stack
;
5938 dpi
->component_stack
= &self
;
5940 d_print_comp_inner (dpi
, options
, dc
);
5942 dpi
->component_stack
= self
.parent
;
5947 /* Print a Java dentifier. For Java we try to handle encoded extended
5948 Unicode characters. The C++ ABI doesn't mention Unicode encoding,
5949 so we don't it for C++. Characters are encoded as
5953 d_print_java_identifier (struct d_print_info
*dpi
, const char *name
, int len
)
5959 for (p
= name
; p
< end
; ++p
)
5970 for (q
= p
+ 3; q
< end
; ++q
)
5976 else if (*q
>= 'A' && *q
<= 'F')
5977 dig
= *q
- 'A' + 10;
5978 else if (*q
>= 'a' && *q
<= 'f')
5979 dig
= *q
- 'a' + 10;
5985 /* If the Unicode character is larger than 256, we don't try
5986 to deal with it here. FIXME. */
5987 if (q
< end
&& *q
== '_' && c
< 256)
5989 d_append_char (dpi
, c
);
5995 d_append_char (dpi
, *p
);
5999 /* Print a list of modifiers. SUFFIX is 1 if we are printing
6000 qualifiers on this after printing a function. */
6003 d_print_mod_list (struct d_print_info
*dpi
, int options
,
6004 struct d_print_mod
*mods
, int suffix
)
6006 struct d_print_template
*hold_dpt
;
6008 if (mods
== NULL
|| d_print_saw_error (dpi
))
6013 && (is_fnqual_component_type (mods
->mod
->type
))))
6015 d_print_mod_list (dpi
, options
, mods
->next
, suffix
);
6021 hold_dpt
= dpi
->templates
;
6022 dpi
->templates
= mods
->templates
;
6024 if (mods
->mod
->type
== DEMANGLE_COMPONENT_FUNCTION_TYPE
)
6026 d_print_function_type (dpi
, options
, mods
->mod
, mods
->next
);
6027 dpi
->templates
= hold_dpt
;
6030 else if (mods
->mod
->type
== DEMANGLE_COMPONENT_ARRAY_TYPE
)
6032 d_print_array_type (dpi
, options
, mods
->mod
, mods
->next
);
6033 dpi
->templates
= hold_dpt
;
6036 else if (mods
->mod
->type
== DEMANGLE_COMPONENT_LOCAL_NAME
)
6038 struct d_print_mod
*hold_modifiers
;
6039 struct demangle_component
*dc
;
6041 /* When this is on the modifier stack, we have pulled any
6042 qualifiers off the right argument already. Otherwise, we
6043 print it as usual, but don't let the left argument see any
6046 hold_modifiers
= dpi
->modifiers
;
6047 dpi
->modifiers
= NULL
;
6048 d_print_comp (dpi
, options
, d_left (mods
->mod
));
6049 dpi
->modifiers
= hold_modifiers
;
6051 if ((options
& DMGL_JAVA
) == 0)
6052 d_append_string (dpi
, "::");
6054 d_append_char (dpi
, '.');
6056 dc
= d_right (mods
->mod
);
6058 if (dc
->type
== DEMANGLE_COMPONENT_DEFAULT_ARG
)
6060 d_append_string (dpi
, "{default arg#");
6061 d_append_num (dpi
, dc
->u
.s_unary_num
.num
+ 1);
6062 d_append_string (dpi
, "}::");
6063 dc
= dc
->u
.s_unary_num
.sub
;
6066 while (is_fnqual_component_type (dc
->type
))
6069 d_print_comp (dpi
, options
, dc
);
6071 dpi
->templates
= hold_dpt
;
6075 d_print_mod (dpi
, options
, mods
->mod
);
6077 dpi
->templates
= hold_dpt
;
6079 d_print_mod_list (dpi
, options
, mods
->next
, suffix
);
6082 /* Print a modifier. */
6085 d_print_mod (struct d_print_info
*dpi
, int options
,
6086 struct demangle_component
*mod
)
6090 case DEMANGLE_COMPONENT_RESTRICT
:
6091 case DEMANGLE_COMPONENT_RESTRICT_THIS
:
6092 d_append_string (dpi
, " restrict");
6094 case DEMANGLE_COMPONENT_VOLATILE
:
6095 case DEMANGLE_COMPONENT_VOLATILE_THIS
:
6096 d_append_string (dpi
, " volatile");
6098 case DEMANGLE_COMPONENT_CONST
:
6099 case DEMANGLE_COMPONENT_CONST_THIS
:
6100 d_append_string (dpi
, " const");
6102 case DEMANGLE_COMPONENT_TRANSACTION_SAFE
:
6103 d_append_string (dpi
, " transaction_safe");
6105 case DEMANGLE_COMPONENT_NOEXCEPT
:
6106 d_append_string (dpi
, " noexcept");
6109 d_append_char (dpi
, '(');
6110 d_print_comp (dpi
, options
, d_right (mod
));
6111 d_append_char (dpi
, ')');
6114 case DEMANGLE_COMPONENT_THROW_SPEC
:
6115 d_append_string (dpi
, " throw");
6118 d_append_char (dpi
, '(');
6119 d_print_comp (dpi
, options
, d_right (mod
));
6120 d_append_char (dpi
, ')');
6123 case DEMANGLE_COMPONENT_VENDOR_TYPE_QUAL
:
6124 d_append_char (dpi
, ' ');
6125 d_print_comp (dpi
, options
, d_right (mod
));
6127 case DEMANGLE_COMPONENT_POINTER
:
6128 /* There is no pointer symbol in Java. */
6129 if ((options
& DMGL_JAVA
) == 0)
6130 d_append_char (dpi
, '*');
6132 case DEMANGLE_COMPONENT_REFERENCE_THIS
:
6133 /* For the ref-qualifier, put a space before the &. */
6134 d_append_char (dpi
, ' ');
6136 case DEMANGLE_COMPONENT_REFERENCE
:
6137 d_append_char (dpi
, '&');
6139 case DEMANGLE_COMPONENT_RVALUE_REFERENCE_THIS
:
6140 d_append_char (dpi
, ' ');
6142 case DEMANGLE_COMPONENT_RVALUE_REFERENCE
:
6143 d_append_string (dpi
, "&&");
6145 case DEMANGLE_COMPONENT_COMPLEX
:
6146 d_append_string (dpi
, " _Complex");
6148 case DEMANGLE_COMPONENT_IMAGINARY
:
6149 d_append_string (dpi
, " _Imaginary");
6151 case DEMANGLE_COMPONENT_PTRMEM_TYPE
:
6152 if (d_last_char (dpi
) != '(')
6153 d_append_char (dpi
, ' ');
6154 d_print_comp (dpi
, options
, d_left (mod
));
6155 d_append_string (dpi
, "::*");
6157 case DEMANGLE_COMPONENT_TYPED_NAME
:
6158 d_print_comp (dpi
, options
, d_left (mod
));
6160 case DEMANGLE_COMPONENT_VECTOR_TYPE
:
6161 d_append_string (dpi
, " __vector(");
6162 d_print_comp (dpi
, options
, d_left (mod
));
6163 d_append_char (dpi
, ')');
6167 /* Otherwise, we have something that won't go back on the
6168 modifier stack, so we can just print it. */
6169 d_print_comp (dpi
, options
, mod
);
6174 /* Print a function type, except for the return type. */
6177 d_print_function_type (struct d_print_info
*dpi
, int options
,
6178 struct demangle_component
*dc
,
6179 struct d_print_mod
*mods
)
6183 struct d_print_mod
*p
;
6184 struct d_print_mod
*hold_modifiers
;
6188 for (p
= mods
; p
!= NULL
; p
= p
->next
)
6193 switch (p
->mod
->type
)
6195 case DEMANGLE_COMPONENT_POINTER
:
6196 case DEMANGLE_COMPONENT_REFERENCE
:
6197 case DEMANGLE_COMPONENT_RVALUE_REFERENCE
:
6200 case DEMANGLE_COMPONENT_RESTRICT
:
6201 case DEMANGLE_COMPONENT_VOLATILE
:
6202 case DEMANGLE_COMPONENT_CONST
:
6203 case DEMANGLE_COMPONENT_VENDOR_TYPE_QUAL
:
6204 case DEMANGLE_COMPONENT_COMPLEX
:
6205 case DEMANGLE_COMPONENT_IMAGINARY
:
6206 case DEMANGLE_COMPONENT_PTRMEM_TYPE
:
6210 FNQUAL_COMPONENT_CASE
:
6223 if (d_last_char (dpi
) != '('
6224 && d_last_char (dpi
) != '*')
6227 if (need_space
&& d_last_char (dpi
) != ' ')
6228 d_append_char (dpi
, ' ');
6229 d_append_char (dpi
, '(');
6232 hold_modifiers
= dpi
->modifiers
;
6233 dpi
->modifiers
= NULL
;
6235 d_print_mod_list (dpi
, options
, mods
, 0);
6238 d_append_char (dpi
, ')');
6240 d_append_char (dpi
, '(');
6242 if (d_right (dc
) != NULL
)
6243 d_print_comp (dpi
, options
, d_right (dc
));
6245 d_append_char (dpi
, ')');
6247 d_print_mod_list (dpi
, options
, mods
, 1);
6249 dpi
->modifiers
= hold_modifiers
;
6252 /* Print an array type, except for the element type. */
6255 d_print_array_type (struct d_print_info
*dpi
, int options
,
6256 struct demangle_component
*dc
,
6257 struct d_print_mod
*mods
)
6265 struct d_print_mod
*p
;
6268 for (p
= mods
; p
!= NULL
; p
= p
->next
)
6272 if (p
->mod
->type
== DEMANGLE_COMPONENT_ARRAY_TYPE
)
6287 d_append_string (dpi
, " (");
6289 d_print_mod_list (dpi
, options
, mods
, 0);
6292 d_append_char (dpi
, ')');
6296 d_append_char (dpi
, ' ');
6298 d_append_char (dpi
, '[');
6300 if (d_left (dc
) != NULL
)
6301 d_print_comp (dpi
, options
, d_left (dc
));
6303 d_append_char (dpi
, ']');
6306 /* Print an operator in an expression. */
6309 d_print_expr_op (struct d_print_info
*dpi
, int options
,
6310 struct demangle_component
*dc
)
6312 if (dc
->type
== DEMANGLE_COMPONENT_OPERATOR
)
6313 d_append_buffer (dpi
, dc
->u
.s_operator
.op
->name
,
6314 dc
->u
.s_operator
.op
->len
);
6316 d_print_comp (dpi
, options
, dc
);
6322 d_print_cast (struct d_print_info
*dpi
, int options
,
6323 struct demangle_component
*dc
)
6325 d_print_comp (dpi
, options
, d_left (dc
));
6328 /* Print a conversion operator. */
6331 d_print_conversion (struct d_print_info
*dpi
, int options
,
6332 struct demangle_component
*dc
)
6334 struct d_print_template dpt
;
6336 /* For a conversion operator, we need the template parameters from
6337 the enclosing template in scope for processing the type. */
6338 if (dpi
->current_template
!= NULL
)
6340 dpt
.next
= dpi
->templates
;
6341 dpi
->templates
= &dpt
;
6342 dpt
.template_decl
= dpi
->current_template
;
6345 if (d_left (dc
)->type
!= DEMANGLE_COMPONENT_TEMPLATE
)
6347 d_print_comp (dpi
, options
, d_left (dc
));
6348 if (dpi
->current_template
!= NULL
)
6349 dpi
->templates
= dpt
.next
;
6353 d_print_comp (dpi
, options
, d_left (d_left (dc
)));
6355 /* For a templated cast operator, we need to remove the template
6356 parameters from scope after printing the operator name,
6357 so we need to handle the template printing here. */
6358 if (dpi
->current_template
!= NULL
)
6359 dpi
->templates
= dpt
.next
;
6361 if (d_last_char (dpi
) == '<')
6362 d_append_char (dpi
, ' ');
6363 d_append_char (dpi
, '<');
6364 d_print_comp (dpi
, options
, d_right (d_left (dc
)));
6365 /* Avoid generating two consecutive '>' characters, to avoid
6366 the C++ syntactic ambiguity. */
6367 if (d_last_char (dpi
) == '>')
6368 d_append_char (dpi
, ' ');
6369 d_append_char (dpi
, '>');
6373 /* Initialize the information structure we use to pass around
6376 CP_STATIC_IF_GLIBCPP_V3
6378 cplus_demangle_init_info (const char *mangled
, int options
, size_t len
,
6382 di
->send
= mangled
+ len
;
6383 di
->options
= options
;
6387 /* We cannot need more components than twice the number of chars in
6388 the mangled string. Most components correspond directly to
6389 chars, but the ARGLIST types are exceptions. */
6390 di
->num_comps
= 2 * len
;
6393 /* Similarly, we cannot need more substitutions than there are
6394 chars in the mangled string. */
6398 di
->last_name
= NULL
;
6401 di
->is_expression
= 0;
6402 di
->is_conversion
= 0;
6403 di
->recursion_level
= 0;
6406 /* Internal implementation for the demangler. If MANGLED is a g++ v3 ABI
6407 mangled name, return strings in repeated callback giving the demangled
6408 name. OPTIONS is the usual libiberty demangler options. On success,
6409 this returns 1. On failure, returns 0. */
6412 d_demangle_callback (const char *mangled
, int options
,
6413 demangle_callbackref callback
, void *opaque
)
6424 struct demangle_component
*dc
;
6427 if (mangled
[0] == '_' && mangled
[1] == 'Z')
6429 else if (strncmp (mangled
, "_GLOBAL_", 8) == 0
6430 && (mangled
[8] == '.' || mangled
[8] == '_' || mangled
[8] == '$')
6431 && (mangled
[9] == 'D' || mangled
[9] == 'I')
6432 && mangled
[10] == '_')
6433 type
= mangled
[9] == 'I' ? DCT_GLOBAL_CTORS
: DCT_GLOBAL_DTORS
;
6436 if ((options
& DMGL_TYPES
) == 0)
6441 di
.unresolved_name_state
= 1;
6444 cplus_demangle_init_info (mangled
, options
, strlen (mangled
), &di
);
6446 /* PR 87675 - Check for a mangled string that is so long
6447 that we do not have enough stack space to demangle it. */
6448 if (((options
& DMGL_NO_RECURSE_LIMIT
) == 0)
6449 /* This check is a bit arbitrary, since what we really want to do is to
6450 compare the sizes of the di.comps and di.subs arrays against the
6451 amount of stack space remaining. But there is no portable way to do
6452 this, so instead we use the recursion limit as a guide to the maximum
6453 size of the arrays. */
6454 && (unsigned long) di
.num_comps
> DEMANGLE_RECURSION_LIMIT
)
6456 /* FIXME: We need a way to indicate that a stack limit has been reached. */
6461 #ifdef CP_DYNAMIC_ARRAYS
6462 __extension__
struct demangle_component comps
[di
.num_comps
];
6463 __extension__
struct demangle_component
*subs
[di
.num_subs
];
6468 di
.comps
= alloca (di
.num_comps
* sizeof (*di
.comps
));
6469 di
.subs
= alloca (di
.num_subs
* sizeof (*di
.subs
));
6475 dc
= cplus_demangle_type (&di
);
6478 dc
= cplus_demangle_mangled_name (&di
, 1);
6480 case DCT_GLOBAL_CTORS
:
6481 case DCT_GLOBAL_DTORS
:
6482 d_advance (&di
, 11);
6483 dc
= d_make_comp (&di
,
6484 (type
== DCT_GLOBAL_CTORS
6485 ? DEMANGLE_COMPONENT_GLOBAL_CONSTRUCTORS
6486 : DEMANGLE_COMPONENT_GLOBAL_DESTRUCTORS
),
6487 d_make_demangle_mangled_name (&di
, d_str (&di
)),
6489 d_advance (&di
, strlen (d_str (&di
)));
6492 abort (); /* We have listed all the cases. */
6495 /* If DMGL_PARAMS is set, then if we didn't consume the entire
6496 mangled string, then we didn't successfully demangle it. If
6497 DMGL_PARAMS is not set, we didn't look at the trailing
6499 if (((options
& DMGL_PARAMS
) != 0) && d_peek_char (&di
) != '\0')
6502 /* See discussion in d_unresolved_name. */
6503 if (dc
== NULL
&& di
.unresolved_name_state
== -1)
6505 di
.unresolved_name_state
= 0;
6509 #ifdef CP_DEMANGLE_DEBUG
6513 status
= (dc
!= NULL
)
6514 ? cplus_demangle_print_callback (options
, dc
, callback
, opaque
)
6521 /* Entry point for the demangler. If MANGLED is a g++ v3 ABI mangled
6522 name, return a buffer allocated with malloc holding the demangled
6523 name. OPTIONS is the usual libiberty demangler options. On
6524 success, this sets *PALC to the allocated size of the returned
6525 buffer. On failure, this sets *PALC to 0 for a bad name, or 1 for
6526 a memory allocation failure, and returns NULL. */
6529 d_demangle (const char *mangled
, int options
, size_t *palc
)
6531 struct d_growable_string dgs
;
6534 d_growable_string_init (&dgs
, 0);
6536 status
= d_demangle_callback (mangled
, options
,
6537 d_growable_string_callback_adapter
, &dgs
);
6545 *palc
= dgs
.allocation_failure
? 1 : dgs
.alc
;
6549 #if defined(IN_LIBGCC2) || defined(IN_GLIBCPP_V3)
6551 extern char *__cxa_demangle (const char *, char *, size_t *, int *);
6553 /* ia64 ABI-mandated entry point in the C++ runtime library for
6554 performing demangling. MANGLED_NAME is a NUL-terminated character
6555 string containing the name to be demangled.
6557 OUTPUT_BUFFER is a region of memory, allocated with malloc, of
6558 *LENGTH bytes, into which the demangled name is stored. If
6559 OUTPUT_BUFFER is not long enough, it is expanded using realloc.
6560 OUTPUT_BUFFER may instead be NULL; in that case, the demangled name
6561 is placed in a region of memory allocated with malloc.
6563 If LENGTH is non-NULL, the length of the buffer containing the
6564 demangled name, is placed in *LENGTH.
6566 The return value is a pointer to the start of the NUL-terminated
6567 demangled name, or NULL if the demangling fails. The caller is
6568 responsible for deallocating this memory using free.
6570 *STATUS is set to one of the following values:
6571 0: The demangling operation succeeded.
6572 -1: A memory allocation failure occurred.
6573 -2: MANGLED_NAME is not a valid name under the C++ ABI mangling rules.
6574 -3: One of the arguments is invalid.
6576 The demangling is performed using the C++ ABI mangling rules, with
6580 __cxa_demangle (const char *mangled_name
, char *output_buffer
,
6581 size_t *length
, int *status
)
6586 if (mangled_name
== NULL
)
6593 if (output_buffer
!= NULL
&& length
== NULL
)
6600 demangled
= d_demangle (mangled_name
, DMGL_PARAMS
| DMGL_TYPES
, &alc
);
6602 if (demangled
== NULL
)
6614 if (output_buffer
== NULL
)
6621 if (strlen (demangled
) < *length
)
6623 strcpy (output_buffer
, demangled
);
6625 demangled
= output_buffer
;
6629 free (output_buffer
);
6640 extern int __gcclibcxx_demangle_callback (const char *,
6642 (const char *, size_t, void *),
6645 /* Alternative, allocationless entry point in the C++ runtime library
6646 for performing demangling. MANGLED_NAME is a NUL-terminated character
6647 string containing the name to be demangled.
6649 CALLBACK is a callback function, called with demangled string
6650 segments as demangling progresses; it is called at least once,
6651 but may be called more than once. OPAQUE is a generalized pointer
6652 used as a callback argument.
6654 The return code is one of the following values, equivalent to
6655 the STATUS values of __cxa_demangle() (excluding -1, since this
6656 function performs no memory allocations):
6657 0: The demangling operation succeeded.
6658 -2: MANGLED_NAME is not a valid name under the C++ ABI mangling rules.
6659 -3: One of the arguments is invalid.
6661 The demangling is performed using the C++ ABI mangling rules, with
6665 __gcclibcxx_demangle_callback (const char *mangled_name
,
6666 void (*callback
) (const char *, size_t, void *),
6671 if (mangled_name
== NULL
|| callback
== NULL
)
6674 status
= d_demangle_callback (mangled_name
, DMGL_PARAMS
| DMGL_TYPES
,
6682 #else /* ! (IN_LIBGCC2 || IN_GLIBCPP_V3) */
6684 /* Entry point for libiberty demangler. If MANGLED is a g++ v3 ABI
6685 mangled name, return a buffer allocated with malloc holding the
6686 demangled name. Otherwise, return NULL. */
6689 cplus_demangle_v3 (const char *mangled
, int options
)
6693 return d_demangle (mangled
, options
, &alc
);
6697 cplus_demangle_v3_callback (const char *mangled
, int options
,
6698 demangle_callbackref callback
, void *opaque
)
6700 return d_demangle_callback (mangled
, options
, callback
, opaque
);
6703 /* Demangle a Java symbol. Java uses a subset of the V3 ABI C++ mangling
6704 conventions, but the output formatting is a little different.
6705 This instructs the C++ demangler not to emit pointer characters ("*"), to
6706 use Java's namespace separator symbol ("." instead of "::"), and to output
6707 JArray<TYPE> as TYPE[]. */
6710 java_demangle_v3 (const char *mangled
)
6714 return d_demangle (mangled
, DMGL_JAVA
| DMGL_PARAMS
| DMGL_RET_POSTFIX
, &alc
);
6718 java_demangle_v3_callback (const char *mangled
,
6719 demangle_callbackref callback
, void *opaque
)
6721 return d_demangle_callback (mangled
,
6722 DMGL_JAVA
| DMGL_PARAMS
| DMGL_RET_POSTFIX
,
6726 #endif /* IN_LIBGCC2 || IN_GLIBCPP_V3 */
6728 #ifndef IN_GLIBCPP_V3
6730 /* Demangle a string in order to find out whether it is a constructor
6731 or destructor. Return non-zero on success. Set *CTOR_KIND and
6732 *DTOR_KIND appropriately. */
6735 is_ctor_or_dtor (const char *mangled
,
6736 enum gnu_v3_ctor_kinds
*ctor_kind
,
6737 enum gnu_v3_dtor_kinds
*dtor_kind
)
6740 struct demangle_component
*dc
;
6743 *ctor_kind
= (enum gnu_v3_ctor_kinds
) 0;
6744 *dtor_kind
= (enum gnu_v3_dtor_kinds
) 0;
6746 cplus_demangle_init_info (mangled
, DMGL_GNU_V3
, strlen (mangled
), &di
);
6749 #ifdef CP_DYNAMIC_ARRAYS
6750 __extension__
struct demangle_component comps
[di
.num_comps
];
6751 __extension__
struct demangle_component
*subs
[di
.num_subs
];
6756 di
.comps
= alloca (di
.num_comps
* sizeof (*di
.comps
));
6757 di
.subs
= alloca (di
.num_subs
* sizeof (*di
.subs
));
6760 dc
= cplus_demangle_mangled_name (&di
, 1);
6762 /* Note that because we did not pass DMGL_PARAMS, we don't expect
6763 to demangle the entire string. */
6770 /* These cannot appear on a constructor or destructor. */
6771 case DEMANGLE_COMPONENT_RESTRICT_THIS
:
6772 case DEMANGLE_COMPONENT_VOLATILE_THIS
:
6773 case DEMANGLE_COMPONENT_CONST_THIS
:
6774 case DEMANGLE_COMPONENT_REFERENCE_THIS
:
6775 case DEMANGLE_COMPONENT_RVALUE_REFERENCE_THIS
:
6779 case DEMANGLE_COMPONENT_TYPED_NAME
:
6780 case DEMANGLE_COMPONENT_TEMPLATE
:
6783 case DEMANGLE_COMPONENT_QUAL_NAME
:
6784 case DEMANGLE_COMPONENT_LOCAL_NAME
:
6787 case DEMANGLE_COMPONENT_CTOR
:
6788 *ctor_kind
= dc
->u
.s_ctor
.kind
;
6792 case DEMANGLE_COMPONENT_DTOR
:
6793 *dtor_kind
= dc
->u
.s_dtor
.kind
;
6804 /* Return whether NAME is the mangled form of a g++ V3 ABI constructor
6805 name. A non-zero return indicates the type of constructor. */
6807 enum gnu_v3_ctor_kinds
6808 is_gnu_v3_mangled_ctor (const char *name
)
6810 enum gnu_v3_ctor_kinds ctor_kind
;
6811 enum gnu_v3_dtor_kinds dtor_kind
;
6813 if (! is_ctor_or_dtor (name
, &ctor_kind
, &dtor_kind
))
6814 return (enum gnu_v3_ctor_kinds
) 0;
6819 /* Return whether NAME is the mangled form of a g++ V3 ABI destructor
6820 name. A non-zero return indicates the type of destructor. */
6822 enum gnu_v3_dtor_kinds
6823 is_gnu_v3_mangled_dtor (const char *name
)
6825 enum gnu_v3_ctor_kinds ctor_kind
;
6826 enum gnu_v3_dtor_kinds dtor_kind
;
6828 if (! is_ctor_or_dtor (name
, &ctor_kind
, &dtor_kind
))
6829 return (enum gnu_v3_dtor_kinds
) 0;
6833 #endif /* IN_GLIBCPP_V3 */
6835 #ifdef STANDALONE_DEMANGLER
6838 #include "dyn-string.h"
6840 static void print_usage (FILE* fp
, int exit_value
);
6842 #define IS_ALPHA(CHAR) \
6843 (((CHAR) >= 'a' && (CHAR) <= 'z') \
6844 || ((CHAR) >= 'A' && (CHAR) <= 'Z'))
6846 /* Non-zero if CHAR is a character than can occur in a mangled name. */
6847 #define is_mangled_char(CHAR) \
6848 (IS_ALPHA (CHAR) || IS_DIGIT (CHAR) \
6849 || (CHAR) == '_' || (CHAR) == '.' || (CHAR) == '$')
6851 /* The name of this program, as invoked. */
6852 const char* program_name
;
6854 /* Prints usage summary to FP and then exits with EXIT_VALUE. */
6857 print_usage (FILE* fp
, int exit_value
)
6859 fprintf (fp
, "Usage: %s [options] [names ...]\n", program_name
);
6860 fprintf (fp
, "Options:\n");
6861 fprintf (fp
, " -h,--help Display this message.\n");
6862 fprintf (fp
, " -p,--no-params Don't display function parameters\n");
6863 fprintf (fp
, " -v,--verbose Produce verbose demanglings.\n");
6864 fprintf (fp
, "If names are provided, they are demangled. Otherwise filters standard input.\n");
6869 /* Option specification for getopt_long. */
6870 static const struct option long_options
[] =
6872 { "help", no_argument
, NULL
, 'h' },
6873 { "no-params", no_argument
, NULL
, 'p' },
6874 { "verbose", no_argument
, NULL
, 'v' },
6875 { NULL
, no_argument
, NULL
, 0 },
6878 /* Main entry for a demangling filter executable. It will demangle
6879 its command line arguments, if any. If none are provided, it will
6880 filter stdin to stdout, replacing any recognized mangled C++ names
6881 with their demangled equivalents. */
6884 main (int argc
, char *argv
[])
6888 int options
= DMGL_PARAMS
| DMGL_ANSI
| DMGL_TYPES
;
6890 /* Use the program name of this program, as invoked. */
6891 program_name
= argv
[0];
6893 /* Parse options. */
6896 opt_char
= getopt_long (argc
, argv
, "hpv", long_options
, NULL
);
6899 case '?': /* Unrecognized option. */
6900 print_usage (stderr
, 1);
6904 print_usage (stdout
, 0);
6908 options
&= ~ DMGL_PARAMS
;
6912 options
|= DMGL_VERBOSE
;
6916 while (opt_char
!= -1);
6919 /* No command line arguments were provided. Filter stdin. */
6921 dyn_string_t mangled
= dyn_string_new (3);
6924 /* Read all of input. */
6925 while (!feof (stdin
))
6929 /* Pile characters into mangled until we hit one that can't
6930 occur in a mangled name. */
6932 while (!feof (stdin
) && is_mangled_char (c
))
6934 dyn_string_append_char (mangled
, c
);
6940 if (dyn_string_length (mangled
) > 0)
6942 #ifdef IN_GLIBCPP_V3
6943 s
= __cxa_demangle (dyn_string_buf (mangled
), NULL
, NULL
, NULL
);
6945 s
= cplus_demangle_v3 (dyn_string_buf (mangled
), options
);
6955 /* It might not have been a mangled name. Print the
6957 fputs (dyn_string_buf (mangled
), stdout
);
6960 dyn_string_clear (mangled
);
6963 /* If we haven't hit EOF yet, we've read one character that
6964 can't occur in a mangled name, so print it out. */
6969 dyn_string_delete (mangled
);
6972 /* Demangle command line arguments. */
6974 /* Loop over command line arguments. */
6975 for (i
= optind
; i
< argc
; ++i
)
6978 #ifdef IN_GLIBCPP_V3
6982 /* Attempt to demangle. */
6983 #ifdef IN_GLIBCPP_V3
6984 s
= __cxa_demangle (argv
[i
], NULL
, NULL
, &status
);
6986 s
= cplus_demangle_v3 (argv
[i
], options
);
6989 /* If it worked, print the demangled name. */
6997 #ifdef IN_GLIBCPP_V3
6998 fprintf (stderr
, "Failed: %s (status %d)\n", argv
[i
], status
);
7000 fprintf (stderr
, "Failed: %s\n", argv
[i
]);
7009 #endif /* STANDALONE_DEMANGLER */