1 /* Demangler for g++ V3 ABI.
2 Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
3 Free Software Foundation, Inc.
4 Written by Ian Lance Taylor <ian@wasabisystems.com>.
6 This file is part of the libiberty library, which is part of GCC.
8 This file is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 In addition to the permissions in the GNU General Public License, the
14 Free Software Foundation gives you unlimited permission to link the
15 compiled version of this file into combinations with other programs,
16 and to distribute those combinations without any restriction coming
17 from the use of this file. (The General Public License restrictions
18 do apply in other respects; for example, they cover modification of
19 the file, and distribution when not linked into a combined
22 This program is distributed in the hope that it will be useful,
23 but WITHOUT ANY WARRANTY; without even the implied warranty of
24 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 GNU General Public License for more details.
27 You should have received a copy of the GNU General Public License
28 along with this program; if not, write to the Free Software
29 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
32 /* This code implements a demangler for the g++ V3 ABI. The ABI is
33 described on this web page:
34 http://www.codesourcery.com/cxx-abi/abi.html#mangling
36 This code was written while looking at the demangler written by
37 Alex Samuel <samuel@codesourcery.com>.
39 This code first pulls the mangled name apart into a list of
40 components, and then walks the list generating the demangled
43 This file will normally define the following functions, q.v.:
44 char *cplus_demangle_v3(const char *mangled, int options)
45 char *java_demangle_v3(const char *mangled)
46 int cplus_demangle_v3_callback(const char *mangled, int options,
47 demangle_callbackref callback)
48 int java_demangle_v3_callback(const char *mangled,
49 demangle_callbackref callback)
50 enum gnu_v3_ctor_kinds is_gnu_v3_mangled_ctor (const char *name)
51 enum gnu_v3_dtor_kinds is_gnu_v3_mangled_dtor (const char *name)
53 Also, the interface to the component list is public, and defined in
54 demangle.h. The interface consists of these types, which are
55 defined in demangle.h:
56 enum demangle_component_type
57 struct demangle_component
59 and these functions defined in this file:
60 cplus_demangle_fill_name
61 cplus_demangle_fill_extended_operator
62 cplus_demangle_fill_ctor
63 cplus_demangle_fill_dtor
65 cplus_demangle_print_callback
66 and other functions defined in the file cp-demint.c.
68 This file also defines some other functions and variables which are
69 only to be used by the file cp-demint.c.
71 Preprocessor macros you can define while compiling this file:
74 If defined, this file defines the following functions, q.v.:
75 char *__cxa_demangle (const char *mangled, char *buf, size_t *len,
77 int __gcclibcxx_demangle_callback (const char *,
79 (const char *, size_t, void *),
81 instead of cplus_demangle_v3[_callback]() and
82 java_demangle_v3[_callback]().
85 If defined, this file defines only __cxa_demangle() and
86 __gcclibcxx_demangle_callback(), and no other publically visible
87 functions or variables.
90 If defined, this file defines a main() function which demangles
91 any arguments, or, if none, demangles stdin.
94 If defined, turns on debugging mode, which prints information on
95 stdout about the mangled string. This is not generally useful.
98 #if defined (_AIX) && !defined (__GNUC__)
120 # define alloca __builtin_alloca
122 extern char *alloca ();
123 # endif /* __GNUC__ */
125 #endif /* HAVE_ALLOCA_H */
127 #include "ansidecl.h"
128 #include "libiberty.h"
129 #include "demangle.h"
130 #include "cp-demangle.h"
132 /* If IN_GLIBCPP_V3 is defined, some functions are made static. We
133 also rename them via #define to avoid compiler errors when the
134 static definition conflicts with the extern declaration in a header
138 #define CP_STATIC_IF_GLIBCPP_V3 static
140 #define cplus_demangle_fill_name d_fill_name
141 static int d_fill_name (struct demangle_component
*, const char *, int);
143 #define cplus_demangle_fill_extended_operator d_fill_extended_operator
145 d_fill_extended_operator (struct demangle_component
*, int,
146 struct demangle_component
*);
148 #define cplus_demangle_fill_ctor d_fill_ctor
150 d_fill_ctor (struct demangle_component
*, enum gnu_v3_ctor_kinds
,
151 struct demangle_component
*);
153 #define cplus_demangle_fill_dtor d_fill_dtor
155 d_fill_dtor (struct demangle_component
*, enum gnu_v3_dtor_kinds
,
156 struct demangle_component
*);
158 #define cplus_demangle_mangled_name d_mangled_name
159 static struct demangle_component
*d_mangled_name (struct d_info
*, int);
161 #define cplus_demangle_type d_type
162 static struct demangle_component
*d_type (struct d_info
*);
164 #define cplus_demangle_print d_print
165 static char *d_print (int, const struct demangle_component
*, int, size_t *);
167 #define cplus_demangle_print_callback d_print_callback
168 static int d_print_callback (int, const struct demangle_component
*,
169 demangle_callbackref
, void *);
171 #define cplus_demangle_init_info d_init_info
172 static void d_init_info (const char *, int, size_t, struct d_info
*);
174 #else /* ! defined(IN_GLIBCPP_V3) */
175 #define CP_STATIC_IF_GLIBCPP_V3
176 #endif /* ! defined(IN_GLIBCPP_V3) */
178 /* See if the compiler supports dynamic arrays. */
181 #define CP_DYNAMIC_ARRAYS
184 #ifdef __STDC_VERSION__
185 #if __STDC_VERSION__ >= 199901L
186 #define CP_DYNAMIC_ARRAYS
187 #endif /* __STDC__VERSION >= 199901L */
188 #endif /* defined (__STDC_VERSION__) */
189 #endif /* defined (__STDC__) */
190 #endif /* ! defined (__GNUC__) */
192 /* We avoid pulling in the ctype tables, to prevent pulling in
193 additional unresolved symbols when this code is used in a library.
194 FIXME: Is this really a valid reason? This comes from the original
197 As of this writing this file has the following undefined references
198 when compiled with -DIN_GLIBCPP_V3: realloc, free, memcpy, strcpy,
201 #define IS_DIGIT(c) ((c) >= '0' && (c) <= '9')
202 #define IS_UPPER(c) ((c) >= 'A' && (c) <= 'Z')
203 #define IS_LOWER(c) ((c) >= 'a' && (c) <= 'z')
205 /* The prefix prepended by GCC to an identifier represnting the
206 anonymous namespace. */
207 #define ANONYMOUS_NAMESPACE_PREFIX "_GLOBAL_"
208 #define ANONYMOUS_NAMESPACE_PREFIX_LEN \
209 (sizeof (ANONYMOUS_NAMESPACE_PREFIX) - 1)
211 /* Information we keep for the standard substitutions. */
213 struct d_standard_sub_info
215 /* The code for this substitution. */
217 /* The simple string it expands to. */
218 const char *simple_expansion
;
219 /* The length of the simple expansion. */
221 /* The results of a full, verbose, expansion. This is used when
222 qualifying a constructor/destructor, or when in verbose mode. */
223 const char *full_expansion
;
224 /* The length of the full expansion. */
226 /* What to set the last_name field of d_info to; NULL if we should
227 not set it. This is only relevant when qualifying a
228 constructor/destructor. */
229 const char *set_last_name
;
230 /* The length of set_last_name. */
231 int set_last_name_len
;
234 /* Accessors for subtrees of struct demangle_component. */
236 #define d_left(dc) ((dc)->u.s_binary.left)
237 #define d_right(dc) ((dc)->u.s_binary.right)
239 /* A list of templates. This is used while printing. */
241 struct d_print_template
243 /* Next template on the list. */
244 struct d_print_template
*next
;
246 const struct demangle_component
*template_decl
;
249 /* A list of type modifiers. This is used while printing. */
253 /* Next modifier on the list. These are in the reverse of the order
254 in which they appeared in the mangled string. */
255 struct d_print_mod
*next
;
257 const struct demangle_component
*mod
;
258 /* Whether this modifier was printed. */
260 /* The list of templates which applies to this modifier. */
261 struct d_print_template
*templates
;
264 /* We use these structures to hold information during printing. */
266 struct d_growable_string
268 /* Buffer holding the result. */
270 /* Current length of data in buffer. */
272 /* Allocated size of buffer. */
274 /* Set to 1 if we had a memory allocation failure. */
275 int allocation_failure
;
278 enum { D_PRINT_BUFFER_LENGTH
= 256 };
281 /* Fixed-length allocated buffer for demangled data, flushed to the
282 callback with a NUL termination once full. */
283 char buf
[D_PRINT_BUFFER_LENGTH
];
284 /* Current length of data in buffer. */
286 /* The last character printed, saved individually so that it survives
289 /* Callback function to handle demangled buffer flush. */
290 demangle_callbackref callback
;
291 /* Opaque callback argument. */
293 /* The current list of templates, if any. */
294 struct d_print_template
*templates
;
295 /* The current list of modifiers (e.g., pointer, reference, etc.),
297 struct d_print_mod
*modifiers
;
298 /* Set to 1 if we saw a demangling error. */
299 int demangle_failure
;
300 /* The current index into any template argument packs we are using
303 /* Number of d_print_flush calls so far. */
304 unsigned long int flush_count
;
307 #ifdef CP_DEMANGLE_DEBUG
308 static void d_dump (struct demangle_component
*, int);
311 static struct demangle_component
*
312 d_make_empty (struct d_info
*);
314 static struct demangle_component
*
315 d_make_comp (struct d_info
*, enum demangle_component_type
,
316 struct demangle_component
*,
317 struct demangle_component
*);
319 static struct demangle_component
*
320 d_make_name (struct d_info
*, const char *, int);
322 static struct demangle_component
*
323 d_make_demangle_mangled_name (struct d_info
*, const char *);
325 static struct demangle_component
*
326 d_make_builtin_type (struct d_info
*,
327 const struct demangle_builtin_type_info
*);
329 static struct demangle_component
*
330 d_make_operator (struct d_info
*,
331 const struct demangle_operator_info
*);
333 static struct demangle_component
*
334 d_make_extended_operator (struct d_info
*, int,
335 struct demangle_component
*);
337 static struct demangle_component
*
338 d_make_ctor (struct d_info
*, enum gnu_v3_ctor_kinds
,
339 struct demangle_component
*);
341 static struct demangle_component
*
342 d_make_dtor (struct d_info
*, enum gnu_v3_dtor_kinds
,
343 struct demangle_component
*);
345 static struct demangle_component
*
346 d_make_template_param (struct d_info
*, long);
348 static struct demangle_component
*
349 d_make_sub (struct d_info
*, const char *, int);
352 has_return_type (struct demangle_component
*);
355 is_ctor_dtor_or_conversion (struct demangle_component
*);
357 static struct demangle_component
*d_encoding (struct d_info
*, int);
359 static struct demangle_component
*d_name (struct d_info
*);
361 static struct demangle_component
*d_nested_name (struct d_info
*);
363 static struct demangle_component
*d_prefix (struct d_info
*);
365 static struct demangle_component
*d_unqualified_name (struct d_info
*);
367 static struct demangle_component
*d_source_name (struct d_info
*);
369 static long d_number (struct d_info
*);
371 static struct demangle_component
*d_identifier (struct d_info
*, int);
373 static struct demangle_component
*d_operator_name (struct d_info
*);
375 static struct demangle_component
*d_special_name (struct d_info
*);
377 static int d_call_offset (struct d_info
*, int);
379 static struct demangle_component
*d_ctor_dtor_name (struct d_info
*);
381 static struct demangle_component
**
382 d_cv_qualifiers (struct d_info
*, struct demangle_component
**, int);
384 static struct demangle_component
*
385 d_function_type (struct d_info
*);
387 static struct demangle_component
*
388 d_bare_function_type (struct d_info
*, int);
390 static struct demangle_component
*
391 d_class_enum_type (struct d_info
*);
393 static struct demangle_component
*d_array_type (struct d_info
*);
395 static struct demangle_component
*d_vector_type (struct d_info
*);
397 static struct demangle_component
*
398 d_pointer_to_member_type (struct d_info
*);
400 static struct demangle_component
*
401 d_template_param (struct d_info
*);
403 static struct demangle_component
*d_template_args (struct d_info
*);
405 static struct demangle_component
*
406 d_template_arg (struct d_info
*);
408 static struct demangle_component
*d_expression (struct d_info
*);
410 static struct demangle_component
*d_expr_primary (struct d_info
*);
412 static struct demangle_component
*d_local_name (struct d_info
*);
414 static int d_discriminator (struct d_info
*);
416 static struct demangle_component
*d_lambda (struct d_info
*);
418 static struct demangle_component
*d_unnamed_type (struct d_info
*);
420 static struct demangle_component
*
421 d_clone_suffix (struct d_info
*, struct demangle_component
*);
424 d_add_substitution (struct d_info
*, struct demangle_component
*);
426 static struct demangle_component
*d_substitution (struct d_info
*, int);
428 static void d_growable_string_init (struct d_growable_string
*, size_t);
431 d_growable_string_resize (struct d_growable_string
*, size_t);
434 d_growable_string_append_buffer (struct d_growable_string
*,
435 const char *, size_t);
437 d_growable_string_callback_adapter (const char *, size_t, void *);
440 d_print_init (struct d_print_info
*, demangle_callbackref
, void *);
442 static inline void d_print_error (struct d_print_info
*);
444 static inline int d_print_saw_error (struct d_print_info
*);
446 static inline void d_print_flush (struct d_print_info
*);
448 static inline void d_append_char (struct d_print_info
*, char);
450 static inline void d_append_buffer (struct d_print_info
*,
451 const char *, size_t);
453 static inline void d_append_string (struct d_print_info
*, const char *);
455 static inline char d_last_char (struct d_print_info
*);
458 d_print_comp (struct d_print_info
*, int, const struct demangle_component
*);
461 d_print_java_identifier (struct d_print_info
*, const char *, int);
464 d_print_mod_list (struct d_print_info
*, int, struct d_print_mod
*, int);
467 d_print_mod (struct d_print_info
*, int, const struct demangle_component
*);
470 d_print_function_type (struct d_print_info
*, int,
471 const struct demangle_component
*,
472 struct d_print_mod
*);
475 d_print_array_type (struct d_print_info
*, int,
476 const struct demangle_component
*,
477 struct d_print_mod
*);
480 d_print_expr_op (struct d_print_info
*, int, const struct demangle_component
*);
483 d_print_cast (struct d_print_info
*, int, const struct demangle_component
*);
485 static int d_demangle_callback (const char *, int,
486 demangle_callbackref
, void *);
487 static char *d_demangle (const char *, int, size_t *);
489 #ifdef CP_DEMANGLE_DEBUG
492 d_dump (struct demangle_component
*dc
, int indent
)
499 printf ("failed demangling\n");
503 for (i
= 0; i
< indent
; ++i
)
508 case DEMANGLE_COMPONENT_NAME
:
509 printf ("name '%.*s'\n", dc
->u
.s_name
.len
, dc
->u
.s_name
.s
);
511 case DEMANGLE_COMPONENT_TEMPLATE_PARAM
:
512 printf ("template parameter %ld\n", dc
->u
.s_number
.number
);
514 case DEMANGLE_COMPONENT_CTOR
:
515 printf ("constructor %d\n", (int) dc
->u
.s_ctor
.kind
);
516 d_dump (dc
->u
.s_ctor
.name
, indent
+ 2);
518 case DEMANGLE_COMPONENT_DTOR
:
519 printf ("destructor %d\n", (int) dc
->u
.s_dtor
.kind
);
520 d_dump (dc
->u
.s_dtor
.name
, indent
+ 2);
522 case DEMANGLE_COMPONENT_SUB_STD
:
523 printf ("standard substitution %s\n", dc
->u
.s_string
.string
);
525 case DEMANGLE_COMPONENT_BUILTIN_TYPE
:
526 printf ("builtin type %s\n", dc
->u
.s_builtin
.type
->name
);
528 case DEMANGLE_COMPONENT_OPERATOR
:
529 printf ("operator %s\n", dc
->u
.s_operator
.op
->name
);
531 case DEMANGLE_COMPONENT_EXTENDED_OPERATOR
:
532 printf ("extended operator with %d args\n",
533 dc
->u
.s_extended_operator
.args
);
534 d_dump (dc
->u
.s_extended_operator
.name
, indent
+ 2);
537 case DEMANGLE_COMPONENT_QUAL_NAME
:
538 printf ("qualified name\n");
540 case DEMANGLE_COMPONENT_LOCAL_NAME
:
541 printf ("local name\n");
543 case DEMANGLE_COMPONENT_TYPED_NAME
:
544 printf ("typed name\n");
546 case DEMANGLE_COMPONENT_TEMPLATE
:
547 printf ("template\n");
549 case DEMANGLE_COMPONENT_VTABLE
:
552 case DEMANGLE_COMPONENT_VTT
:
555 case DEMANGLE_COMPONENT_CONSTRUCTION_VTABLE
:
556 printf ("construction vtable\n");
558 case DEMANGLE_COMPONENT_TYPEINFO
:
559 printf ("typeinfo\n");
561 case DEMANGLE_COMPONENT_TYPEINFO_NAME
:
562 printf ("typeinfo name\n");
564 case DEMANGLE_COMPONENT_TYPEINFO_FN
:
565 printf ("typeinfo function\n");
567 case DEMANGLE_COMPONENT_THUNK
:
570 case DEMANGLE_COMPONENT_VIRTUAL_THUNK
:
571 printf ("virtual thunk\n");
573 case DEMANGLE_COMPONENT_COVARIANT_THUNK
:
574 printf ("covariant thunk\n");
576 case DEMANGLE_COMPONENT_JAVA_CLASS
:
577 printf ("java class\n");
579 case DEMANGLE_COMPONENT_GUARD
:
582 case DEMANGLE_COMPONENT_REFTEMP
:
583 printf ("reference temporary\n");
585 case DEMANGLE_COMPONENT_HIDDEN_ALIAS
:
586 printf ("hidden alias\n");
588 case DEMANGLE_COMPONENT_TRANSACTION_CLONE
:
589 printf ("transaction clone\n");
591 case DEMANGLE_COMPONENT_NONTRANSACTION_CLONE
:
592 printf ("non-transaction clone\n");
594 case DEMANGLE_COMPONENT_RESTRICT
:
595 printf ("restrict\n");
597 case DEMANGLE_COMPONENT_VOLATILE
:
598 printf ("volatile\n");
600 case DEMANGLE_COMPONENT_CONST
:
603 case DEMANGLE_COMPONENT_RESTRICT_THIS
:
604 printf ("restrict this\n");
606 case DEMANGLE_COMPONENT_VOLATILE_THIS
:
607 printf ("volatile this\n");
609 case DEMANGLE_COMPONENT_CONST_THIS
:
610 printf ("const this\n");
612 case DEMANGLE_COMPONENT_VENDOR_TYPE_QUAL
:
613 printf ("vendor type qualifier\n");
615 case DEMANGLE_COMPONENT_POINTER
:
616 printf ("pointer\n");
618 case DEMANGLE_COMPONENT_REFERENCE
:
619 printf ("reference\n");
621 case DEMANGLE_COMPONENT_RVALUE_REFERENCE
:
622 printf ("rvalue reference\n");
624 case DEMANGLE_COMPONENT_COMPLEX
:
625 printf ("complex\n");
627 case DEMANGLE_COMPONENT_IMAGINARY
:
628 printf ("imaginary\n");
630 case DEMANGLE_COMPONENT_VENDOR_TYPE
:
631 printf ("vendor type\n");
633 case DEMANGLE_COMPONENT_FUNCTION_TYPE
:
634 printf ("function type\n");
636 case DEMANGLE_COMPONENT_ARRAY_TYPE
:
637 printf ("array type\n");
639 case DEMANGLE_COMPONENT_PTRMEM_TYPE
:
640 printf ("pointer to member type\n");
642 case DEMANGLE_COMPONENT_FIXED_TYPE
:
643 printf ("fixed-point type\n");
645 case DEMANGLE_COMPONENT_ARGLIST
:
646 printf ("argument list\n");
648 case DEMANGLE_COMPONENT_TEMPLATE_ARGLIST
:
649 printf ("template argument list\n");
651 case DEMANGLE_COMPONENT_INITIALIZER_LIST
:
652 printf ("initializer list\n");
654 case DEMANGLE_COMPONENT_CAST
:
657 case DEMANGLE_COMPONENT_NULLARY
:
658 printf ("nullary operator\n");
660 case DEMANGLE_COMPONENT_UNARY
:
661 printf ("unary operator\n");
663 case DEMANGLE_COMPONENT_BINARY
:
664 printf ("binary operator\n");
666 case DEMANGLE_COMPONENT_BINARY_ARGS
:
667 printf ("binary operator arguments\n");
669 case DEMANGLE_COMPONENT_TRINARY
:
670 printf ("trinary operator\n");
672 case DEMANGLE_COMPONENT_TRINARY_ARG1
:
673 printf ("trinary operator arguments 1\n");
675 case DEMANGLE_COMPONENT_TRINARY_ARG2
:
676 printf ("trinary operator arguments 1\n");
678 case DEMANGLE_COMPONENT_LITERAL
:
679 printf ("literal\n");
681 case DEMANGLE_COMPONENT_LITERAL_NEG
:
682 printf ("negative literal\n");
684 case DEMANGLE_COMPONENT_JAVA_RESOURCE
:
685 printf ("java resource\n");
687 case DEMANGLE_COMPONENT_COMPOUND_NAME
:
688 printf ("compound name\n");
690 case DEMANGLE_COMPONENT_CHARACTER
:
691 printf ("character '%c'\n", dc
->u
.s_character
.character
);
693 case DEMANGLE_COMPONENT_DECLTYPE
:
694 printf ("decltype\n");
696 case DEMANGLE_COMPONENT_PACK_EXPANSION
:
697 printf ("pack expansion\n");
699 case DEMANGLE_COMPONENT_TLS_INIT
:
700 printf ("tls init function\n");
702 case DEMANGLE_COMPONENT_TLS_WRAPPER
:
703 printf ("tls wrapper function\n");
707 d_dump (d_left (dc
), indent
+ 2);
708 d_dump (d_right (dc
), indent
+ 2);
711 #endif /* CP_DEMANGLE_DEBUG */
713 /* Fill in a DEMANGLE_COMPONENT_NAME. */
715 CP_STATIC_IF_GLIBCPP_V3
717 cplus_demangle_fill_name (struct demangle_component
*p
, const char *s
, int len
)
719 if (p
== NULL
|| s
== NULL
|| len
== 0)
721 p
->type
= DEMANGLE_COMPONENT_NAME
;
723 p
->u
.s_name
.len
= len
;
727 /* Fill in a DEMANGLE_COMPONENT_EXTENDED_OPERATOR. */
729 CP_STATIC_IF_GLIBCPP_V3
731 cplus_demangle_fill_extended_operator (struct demangle_component
*p
, int args
,
732 struct demangle_component
*name
)
734 if (p
== NULL
|| args
< 0 || name
== NULL
)
736 p
->type
= DEMANGLE_COMPONENT_EXTENDED_OPERATOR
;
737 p
->u
.s_extended_operator
.args
= args
;
738 p
->u
.s_extended_operator
.name
= name
;
742 /* Fill in a DEMANGLE_COMPONENT_CTOR. */
744 CP_STATIC_IF_GLIBCPP_V3
746 cplus_demangle_fill_ctor (struct demangle_component
*p
,
747 enum gnu_v3_ctor_kinds kind
,
748 struct demangle_component
*name
)
752 || (int) kind
< gnu_v3_complete_object_ctor
753 || (int) kind
> gnu_v3_object_ctor_group
)
755 p
->type
= DEMANGLE_COMPONENT_CTOR
;
756 p
->u
.s_ctor
.kind
= kind
;
757 p
->u
.s_ctor
.name
= name
;
761 /* Fill in a DEMANGLE_COMPONENT_DTOR. */
763 CP_STATIC_IF_GLIBCPP_V3
765 cplus_demangle_fill_dtor (struct demangle_component
*p
,
766 enum gnu_v3_dtor_kinds kind
,
767 struct demangle_component
*name
)
771 || (int) kind
< gnu_v3_deleting_dtor
772 || (int) kind
> gnu_v3_object_dtor_group
)
774 p
->type
= DEMANGLE_COMPONENT_DTOR
;
775 p
->u
.s_dtor
.kind
= kind
;
776 p
->u
.s_dtor
.name
= name
;
780 /* Add a new component. */
782 static struct demangle_component
*
783 d_make_empty (struct d_info
*di
)
785 struct demangle_component
*p
;
787 if (di
->next_comp
>= di
->num_comps
)
789 p
= &di
->comps
[di
->next_comp
];
794 /* Add a new generic component. */
796 static struct demangle_component
*
797 d_make_comp (struct d_info
*di
, enum demangle_component_type type
,
798 struct demangle_component
*left
,
799 struct demangle_component
*right
)
801 struct demangle_component
*p
;
803 /* We check for errors here. A typical error would be a NULL return
804 from a subroutine. We catch those here, and return NULL
808 /* These types require two parameters. */
809 case DEMANGLE_COMPONENT_QUAL_NAME
:
810 case DEMANGLE_COMPONENT_LOCAL_NAME
:
811 case DEMANGLE_COMPONENT_TYPED_NAME
:
812 case DEMANGLE_COMPONENT_TEMPLATE
:
813 case DEMANGLE_COMPONENT_CONSTRUCTION_VTABLE
:
814 case DEMANGLE_COMPONENT_VENDOR_TYPE_QUAL
:
815 case DEMANGLE_COMPONENT_PTRMEM_TYPE
:
816 case DEMANGLE_COMPONENT_UNARY
:
817 case DEMANGLE_COMPONENT_BINARY
:
818 case DEMANGLE_COMPONENT_BINARY_ARGS
:
819 case DEMANGLE_COMPONENT_TRINARY
:
820 case DEMANGLE_COMPONENT_TRINARY_ARG1
:
821 case DEMANGLE_COMPONENT_LITERAL
:
822 case DEMANGLE_COMPONENT_LITERAL_NEG
:
823 case DEMANGLE_COMPONENT_COMPOUND_NAME
:
824 case DEMANGLE_COMPONENT_VECTOR_TYPE
:
825 case DEMANGLE_COMPONENT_CLONE
:
826 if (left
== NULL
|| right
== NULL
)
830 /* These types only require one parameter. */
831 case DEMANGLE_COMPONENT_VTABLE
:
832 case DEMANGLE_COMPONENT_VTT
:
833 case DEMANGLE_COMPONENT_TYPEINFO
:
834 case DEMANGLE_COMPONENT_TYPEINFO_NAME
:
835 case DEMANGLE_COMPONENT_TYPEINFO_FN
:
836 case DEMANGLE_COMPONENT_THUNK
:
837 case DEMANGLE_COMPONENT_VIRTUAL_THUNK
:
838 case DEMANGLE_COMPONENT_COVARIANT_THUNK
:
839 case DEMANGLE_COMPONENT_JAVA_CLASS
:
840 case DEMANGLE_COMPONENT_GUARD
:
841 case DEMANGLE_COMPONENT_TLS_INIT
:
842 case DEMANGLE_COMPONENT_TLS_WRAPPER
:
843 case DEMANGLE_COMPONENT_REFTEMP
:
844 case DEMANGLE_COMPONENT_HIDDEN_ALIAS
:
845 case DEMANGLE_COMPONENT_TRANSACTION_CLONE
:
846 case DEMANGLE_COMPONENT_NONTRANSACTION_CLONE
:
847 case DEMANGLE_COMPONENT_POINTER
:
848 case DEMANGLE_COMPONENT_REFERENCE
:
849 case DEMANGLE_COMPONENT_RVALUE_REFERENCE
:
850 case DEMANGLE_COMPONENT_COMPLEX
:
851 case DEMANGLE_COMPONENT_IMAGINARY
:
852 case DEMANGLE_COMPONENT_VENDOR_TYPE
:
853 case DEMANGLE_COMPONENT_CAST
:
854 case DEMANGLE_COMPONENT_JAVA_RESOURCE
:
855 case DEMANGLE_COMPONENT_DECLTYPE
:
856 case DEMANGLE_COMPONENT_PACK_EXPANSION
:
857 case DEMANGLE_COMPONENT_GLOBAL_CONSTRUCTORS
:
858 case DEMANGLE_COMPONENT_GLOBAL_DESTRUCTORS
:
859 case DEMANGLE_COMPONENT_NULLARY
:
860 case DEMANGLE_COMPONENT_TRINARY_ARG2
:
865 /* This needs a right parameter, but the left parameter can be
867 case DEMANGLE_COMPONENT_ARRAY_TYPE
:
868 case DEMANGLE_COMPONENT_INITIALIZER_LIST
:
873 /* These are allowed to have no parameters--in some cases they
874 will be filled in later. */
875 case DEMANGLE_COMPONENT_FUNCTION_TYPE
:
876 case DEMANGLE_COMPONENT_RESTRICT
:
877 case DEMANGLE_COMPONENT_VOLATILE
:
878 case DEMANGLE_COMPONENT_CONST
:
879 case DEMANGLE_COMPONENT_RESTRICT_THIS
:
880 case DEMANGLE_COMPONENT_VOLATILE_THIS
:
881 case DEMANGLE_COMPONENT_CONST_THIS
:
882 case DEMANGLE_COMPONENT_ARGLIST
:
883 case DEMANGLE_COMPONENT_TEMPLATE_ARGLIST
:
886 /* Other types should not be seen here. */
891 p
= d_make_empty (di
);
895 p
->u
.s_binary
.left
= left
;
896 p
->u
.s_binary
.right
= right
;
901 /* Add a new demangle mangled name component. */
903 static struct demangle_component
*
904 d_make_demangle_mangled_name (struct d_info
*di
, const char *s
)
906 if (d_peek_char (di
) != '_' || d_peek_next_char (di
) != 'Z')
907 return d_make_name (di
, s
, strlen (s
));
909 return d_encoding (di
, 0);
912 /* Add a new name component. */
914 static struct demangle_component
*
915 d_make_name (struct d_info
*di
, const char *s
, int len
)
917 struct demangle_component
*p
;
919 p
= d_make_empty (di
);
920 if (! cplus_demangle_fill_name (p
, s
, len
))
925 /* Add a new builtin type component. */
927 static struct demangle_component
*
928 d_make_builtin_type (struct d_info
*di
,
929 const struct demangle_builtin_type_info
*type
)
931 struct demangle_component
*p
;
935 p
= d_make_empty (di
);
938 p
->type
= DEMANGLE_COMPONENT_BUILTIN_TYPE
;
939 p
->u
.s_builtin
.type
= type
;
944 /* Add a new operator component. */
946 static struct demangle_component
*
947 d_make_operator (struct d_info
*di
, const struct demangle_operator_info
*op
)
949 struct demangle_component
*p
;
951 p
= d_make_empty (di
);
954 p
->type
= DEMANGLE_COMPONENT_OPERATOR
;
955 p
->u
.s_operator
.op
= op
;
960 /* Add a new extended operator component. */
962 static struct demangle_component
*
963 d_make_extended_operator (struct d_info
*di
, int args
,
964 struct demangle_component
*name
)
966 struct demangle_component
*p
;
968 p
= d_make_empty (di
);
969 if (! cplus_demangle_fill_extended_operator (p
, args
, name
))
974 static struct demangle_component
*
975 d_make_default_arg (struct d_info
*di
, int num
,
976 struct demangle_component
*sub
)
978 struct demangle_component
*p
= d_make_empty (di
);
981 p
->type
= DEMANGLE_COMPONENT_DEFAULT_ARG
;
982 p
->u
.s_unary_num
.num
= num
;
983 p
->u
.s_unary_num
.sub
= sub
;
988 /* Add a new constructor component. */
990 static struct demangle_component
*
991 d_make_ctor (struct d_info
*di
, enum gnu_v3_ctor_kinds kind
,
992 struct demangle_component
*name
)
994 struct demangle_component
*p
;
996 p
= d_make_empty (di
);
997 if (! cplus_demangle_fill_ctor (p
, kind
, name
))
1002 /* Add a new destructor component. */
1004 static struct demangle_component
*
1005 d_make_dtor (struct d_info
*di
, enum gnu_v3_dtor_kinds kind
,
1006 struct demangle_component
*name
)
1008 struct demangle_component
*p
;
1010 p
= d_make_empty (di
);
1011 if (! cplus_demangle_fill_dtor (p
, kind
, name
))
1016 /* Add a new template parameter. */
1018 static struct demangle_component
*
1019 d_make_template_param (struct d_info
*di
, long i
)
1021 struct demangle_component
*p
;
1023 p
= d_make_empty (di
);
1026 p
->type
= DEMANGLE_COMPONENT_TEMPLATE_PARAM
;
1027 p
->u
.s_number
.number
= i
;
1032 /* Add a new function parameter. */
1034 static struct demangle_component
*
1035 d_make_function_param (struct d_info
*di
, long i
)
1037 struct demangle_component
*p
;
1039 p
= d_make_empty (di
);
1042 p
->type
= DEMANGLE_COMPONENT_FUNCTION_PARAM
;
1043 p
->u
.s_number
.number
= i
;
1048 /* Add a new standard substitution component. */
1050 static struct demangle_component
*
1051 d_make_sub (struct d_info
*di
, const char *name
, int len
)
1053 struct demangle_component
*p
;
1055 p
= d_make_empty (di
);
1058 p
->type
= DEMANGLE_COMPONENT_SUB_STD
;
1059 p
->u
.s_string
.string
= name
;
1060 p
->u
.s_string
.len
= len
;
1065 /* <mangled-name> ::= _Z <encoding> [<clone-suffix>]*
1067 TOP_LEVEL is non-zero when called at the top level. */
1069 CP_STATIC_IF_GLIBCPP_V3
1070 struct demangle_component
*
1071 cplus_demangle_mangled_name (struct d_info
*di
, int top_level
)
1073 struct demangle_component
*p
;
1075 if (! d_check_char (di
, '_')
1076 /* Allow missing _ if not at toplevel to work around a
1077 bug in G++ abi-version=2 mangling; see the comment in
1078 write_template_arg. */
1081 if (! d_check_char (di
, 'Z'))
1083 p
= d_encoding (di
, top_level
);
1085 /* If at top level and parsing parameters, check for a clone
1087 if (top_level
&& (di
->options
& DMGL_PARAMS
) != 0)
1088 while (d_peek_char (di
) == '.'
1089 && (IS_LOWER (d_peek_next_char (di
))
1090 || d_peek_next_char (di
) == '_'
1091 || IS_DIGIT (d_peek_next_char (di
))))
1092 p
= d_clone_suffix (di
, p
);
1097 /* Return whether a function should have a return type. The argument
1098 is the function name, which may be qualified in various ways. The
1099 rules are that template functions have return types with some
1100 exceptions, function types which are not part of a function name
1101 mangling have return types with some exceptions, and non-template
1102 function names do not have return types. The exceptions are that
1103 constructors, destructors, and conversion operators do not have
1107 has_return_type (struct demangle_component
*dc
)
1115 case DEMANGLE_COMPONENT_TEMPLATE
:
1116 return ! is_ctor_dtor_or_conversion (d_left (dc
));
1117 case DEMANGLE_COMPONENT_RESTRICT_THIS
:
1118 case DEMANGLE_COMPONENT_VOLATILE_THIS
:
1119 case DEMANGLE_COMPONENT_CONST_THIS
:
1120 return has_return_type (d_left (dc
));
1124 /* Return whether a name is a constructor, a destructor, or a
1125 conversion operator. */
1128 is_ctor_dtor_or_conversion (struct demangle_component
*dc
)
1136 case DEMANGLE_COMPONENT_QUAL_NAME
:
1137 case DEMANGLE_COMPONENT_LOCAL_NAME
:
1138 return is_ctor_dtor_or_conversion (d_right (dc
));
1139 case DEMANGLE_COMPONENT_CTOR
:
1140 case DEMANGLE_COMPONENT_DTOR
:
1141 case DEMANGLE_COMPONENT_CAST
:
1146 /* <encoding> ::= <(function) name> <bare-function-type>
1150 TOP_LEVEL is non-zero when called at the top level, in which case
1151 if DMGL_PARAMS is not set we do not demangle the function
1152 parameters. We only set this at the top level, because otherwise
1153 we would not correctly demangle names in local scopes. */
1155 static struct demangle_component
*
1156 d_encoding (struct d_info
*di
, int top_level
)
1158 char peek
= d_peek_char (di
);
1160 if (peek
== 'G' || peek
== 'T')
1161 return d_special_name (di
);
1164 struct demangle_component
*dc
;
1168 if (dc
!= NULL
&& top_level
&& (di
->options
& DMGL_PARAMS
) == 0)
1170 /* Strip off any initial CV-qualifiers, as they really apply
1171 to the `this' parameter, and they were not output by the
1172 v2 demangler without DMGL_PARAMS. */
1173 while (dc
->type
== DEMANGLE_COMPONENT_RESTRICT_THIS
1174 || dc
->type
== DEMANGLE_COMPONENT_VOLATILE_THIS
1175 || dc
->type
== DEMANGLE_COMPONENT_CONST_THIS
)
1178 /* If the top level is a DEMANGLE_COMPONENT_LOCAL_NAME, then
1179 there may be CV-qualifiers on its right argument which
1180 really apply here; this happens when parsing a class
1181 which is local to a function. */
1182 if (dc
->type
== DEMANGLE_COMPONENT_LOCAL_NAME
)
1184 struct demangle_component
*dcr
;
1187 while (dcr
->type
== DEMANGLE_COMPONENT_RESTRICT_THIS
1188 || dcr
->type
== DEMANGLE_COMPONENT_VOLATILE_THIS
1189 || dcr
->type
== DEMANGLE_COMPONENT_CONST_THIS
)
1191 dc
->u
.s_binary
.right
= dcr
;
1197 peek
= d_peek_char (di
);
1198 if (dc
== NULL
|| peek
== '\0' || peek
== 'E')
1200 return d_make_comp (di
, DEMANGLE_COMPONENT_TYPED_NAME
, dc
,
1201 d_bare_function_type (di
, has_return_type (dc
)));
1205 /* <name> ::= <nested-name>
1207 ::= <unscoped-template-name> <template-args>
1210 <unscoped-name> ::= <unqualified-name>
1211 ::= St <unqualified-name>
1213 <unscoped-template-name> ::= <unscoped-name>
1217 static struct demangle_component
*
1218 d_name (struct d_info
*di
)
1220 char peek
= d_peek_char (di
);
1221 struct demangle_component
*dc
;
1226 return d_nested_name (di
);
1229 return d_local_name (di
);
1233 return d_unqualified_name (di
);
1239 if (d_peek_next_char (di
) != 't')
1241 dc
= d_substitution (di
, 0);
1247 dc
= d_make_comp (di
, DEMANGLE_COMPONENT_QUAL_NAME
,
1248 d_make_name (di
, "std", 3),
1249 d_unqualified_name (di
));
1254 if (d_peek_char (di
) != 'I')
1256 /* The grammar does not permit this case to occur if we
1257 called d_substitution() above (i.e., subst == 1). We
1258 don't bother to check. */
1262 /* This is <template-args>, which means that we just saw
1263 <unscoped-template-name>, which is a substitution
1264 candidate if we didn't just get it from a
1268 if (! d_add_substitution (di
, dc
))
1271 dc
= d_make_comp (di
, DEMANGLE_COMPONENT_TEMPLATE
, dc
,
1272 d_template_args (di
));
1279 dc
= d_unqualified_name (di
);
1280 if (d_peek_char (di
) == 'I')
1282 /* This is <template-args>, which means that we just saw
1283 <unscoped-template-name>, which is a substitution
1285 if (! d_add_substitution (di
, dc
))
1287 dc
= d_make_comp (di
, DEMANGLE_COMPONENT_TEMPLATE
, dc
,
1288 d_template_args (di
));
1294 /* <nested-name> ::= N [<CV-qualifiers>] <prefix> <unqualified-name> E
1295 ::= N [<CV-qualifiers>] <template-prefix> <template-args> E
1298 static struct demangle_component
*
1299 d_nested_name (struct d_info
*di
)
1301 struct demangle_component
*ret
;
1302 struct demangle_component
**pret
;
1304 if (! d_check_char (di
, 'N'))
1307 pret
= d_cv_qualifiers (di
, &ret
, 1);
1311 *pret
= d_prefix (di
);
1315 if (! d_check_char (di
, 'E'))
1321 /* <prefix> ::= <prefix> <unqualified-name>
1322 ::= <template-prefix> <template-args>
1323 ::= <template-param>
1328 <template-prefix> ::= <prefix> <(template) unqualified-name>
1329 ::= <template-param>
1333 static struct demangle_component
*
1334 d_prefix (struct d_info
*di
)
1336 struct demangle_component
*ret
= NULL
;
1341 enum demangle_component_type comb_type
;
1342 struct demangle_component
*dc
;
1344 peek
= d_peek_char (di
);
1348 /* The older code accepts a <local-name> here, but I don't see
1349 that in the grammar. The older code does not accept a
1350 <template-param> here. */
1352 comb_type
= DEMANGLE_COMPONENT_QUAL_NAME
;
1355 char peek2
= d_peek_next_char (di
);
1356 if (peek2
== 'T' || peek2
== 't')
1358 dc
= cplus_demangle_type (di
);
1360 /* Destructor name. */
1361 dc
= d_unqualified_name (di
);
1363 else if (IS_DIGIT (peek
)
1368 dc
= d_unqualified_name (di
);
1369 else if (peek
== 'S')
1370 dc
= d_substitution (di
, 1);
1371 else if (peek
== 'I')
1375 comb_type
= DEMANGLE_COMPONENT_TEMPLATE
;
1376 dc
= d_template_args (di
);
1378 else if (peek
== 'T')
1379 dc
= d_template_param (di
);
1380 else if (peek
== 'E')
1382 else if (peek
== 'M')
1384 /* Initializer scope for a lambda. We don't need to represent
1385 this; the normal code will just treat the variable as a type
1386 scope, which gives appropriate output. */
1398 ret
= d_make_comp (di
, comb_type
, ret
, dc
);
1400 if (peek
!= 'S' && d_peek_char (di
) != 'E')
1402 if (! d_add_substitution (di
, ret
))
1408 /* <unqualified-name> ::= <operator-name>
1409 ::= <ctor-dtor-name>
1411 ::= <local-source-name>
1413 <local-source-name> ::= L <source-name> <discriminator>
1416 static struct demangle_component
*
1417 d_unqualified_name (struct d_info
*di
)
1421 peek
= d_peek_char (di
);
1422 if (IS_DIGIT (peek
))
1423 return d_source_name (di
);
1424 else if (IS_LOWER (peek
))
1426 struct demangle_component
*ret
;
1428 ret
= d_operator_name (di
);
1429 if (ret
!= NULL
&& ret
->type
== DEMANGLE_COMPONENT_OPERATOR
)
1431 di
->expansion
+= sizeof "operator" + ret
->u
.s_operator
.op
->len
- 2;
1432 if (!strcmp (ret
->u
.s_operator
.op
->code
, "li"))
1433 ret
= d_make_comp (di
, DEMANGLE_COMPONENT_UNARY
, ret
,
1434 d_source_name (di
));
1438 else if (peek
== 'C' || peek
== 'D')
1439 return d_ctor_dtor_name (di
);
1440 else if (peek
== 'L')
1442 struct demangle_component
* ret
;
1446 ret
= d_source_name (di
);
1449 if (! d_discriminator (di
))
1453 else if (peek
== 'U')
1455 switch (d_peek_next_char (di
))
1458 return d_lambda (di
);
1460 return d_unnamed_type (di
);
1469 /* <source-name> ::= <(positive length) number> <identifier> */
1471 static struct demangle_component
*
1472 d_source_name (struct d_info
*di
)
1475 struct demangle_component
*ret
;
1477 len
= d_number (di
);
1480 ret
= d_identifier (di
, len
);
1481 di
->last_name
= ret
;
1485 /* number ::= [n] <(non-negative decimal integer)> */
1488 d_number (struct d_info
*di
)
1495 peek
= d_peek_char (di
);
1500 peek
= d_peek_char (di
);
1506 if (! IS_DIGIT (peek
))
1512 ret
= ret
* 10 + peek
- '0';
1514 peek
= d_peek_char (di
);
1518 /* Like d_number, but returns a demangle_component. */
1520 static struct demangle_component
*
1521 d_number_component (struct d_info
*di
)
1523 struct demangle_component
*ret
= d_make_empty (di
);
1526 ret
->type
= DEMANGLE_COMPONENT_NUMBER
;
1527 ret
->u
.s_number
.number
= d_number (di
);
1532 /* identifier ::= <(unqualified source code identifier)> */
1534 static struct demangle_component
*
1535 d_identifier (struct d_info
*di
, int len
)
1541 if (di
->send
- name
< len
)
1544 d_advance (di
, len
);
1546 /* A Java mangled name may have a trailing '$' if it is a C++
1547 keyword. This '$' is not included in the length count. We just
1549 if ((di
->options
& DMGL_JAVA
) != 0
1550 && d_peek_char (di
) == '$')
1553 /* Look for something which looks like a gcc encoding of an
1554 anonymous namespace, and replace it with a more user friendly
1556 if (len
>= (int) ANONYMOUS_NAMESPACE_PREFIX_LEN
+ 2
1557 && memcmp (name
, ANONYMOUS_NAMESPACE_PREFIX
,
1558 ANONYMOUS_NAMESPACE_PREFIX_LEN
) == 0)
1562 s
= name
+ ANONYMOUS_NAMESPACE_PREFIX_LEN
;
1563 if ((*s
== '.' || *s
== '_' || *s
== '$')
1566 di
->expansion
-= len
- sizeof "(anonymous namespace)";
1567 return d_make_name (di
, "(anonymous namespace)",
1568 sizeof "(anonymous namespace)" - 1);
1572 return d_make_name (di
, name
, len
);
1575 /* operator_name ::= many different two character encodings.
1577 ::= v <digit> <source-name>
1579 This list is sorted for binary search. */
1581 #define NL(s) s, (sizeof s) - 1
1583 CP_STATIC_IF_GLIBCPP_V3
1584 const struct demangle_operator_info cplus_demangle_operators
[] =
1586 { "aN", NL ("&="), 2 },
1587 { "aS", NL ("="), 2 },
1588 { "aa", NL ("&&"), 2 },
1589 { "ad", NL ("&"), 1 },
1590 { "an", NL ("&"), 2 },
1591 { "at", NL ("alignof "), 1 },
1592 { "az", NL ("alignof "), 1 },
1593 { "cc", NL ("const_cast"), 2 },
1594 { "cl", NL ("()"), 2 },
1595 { "cm", NL (","), 2 },
1596 { "co", NL ("~"), 1 },
1597 { "dV", NL ("/="), 2 },
1598 { "da", NL ("delete[] "), 1 },
1599 { "dc", NL ("dynamic_cast"), 2 },
1600 { "de", NL ("*"), 1 },
1601 { "dl", NL ("delete "), 1 },
1602 { "ds", NL (".*"), 2 },
1603 { "dt", NL ("."), 2 },
1604 { "dv", NL ("/"), 2 },
1605 { "eO", NL ("^="), 2 },
1606 { "eo", NL ("^"), 2 },
1607 { "eq", NL ("=="), 2 },
1608 { "ge", NL (">="), 2 },
1609 { "gs", NL ("::"), 1 },
1610 { "gt", NL (">"), 2 },
1611 { "ix", NL ("[]"), 2 },
1612 { "lS", NL ("<<="), 2 },
1613 { "le", NL ("<="), 2 },
1614 { "li", NL ("operator\"\" "), 1 },
1615 { "ls", NL ("<<"), 2 },
1616 { "lt", NL ("<"), 2 },
1617 { "mI", NL ("-="), 2 },
1618 { "mL", NL ("*="), 2 },
1619 { "mi", NL ("-"), 2 },
1620 { "ml", NL ("*"), 2 },
1621 { "mm", NL ("--"), 1 },
1622 { "na", NL ("new[]"), 3 },
1623 { "ne", NL ("!="), 2 },
1624 { "ng", NL ("-"), 1 },
1625 { "nt", NL ("!"), 1 },
1626 { "nw", NL ("new"), 3 },
1627 { "oR", NL ("|="), 2 },
1628 { "oo", NL ("||"), 2 },
1629 { "or", NL ("|"), 2 },
1630 { "pL", NL ("+="), 2 },
1631 { "pl", NL ("+"), 2 },
1632 { "pm", NL ("->*"), 2 },
1633 { "pp", NL ("++"), 1 },
1634 { "ps", NL ("+"), 1 },
1635 { "pt", NL ("->"), 2 },
1636 { "qu", NL ("?"), 3 },
1637 { "rM", NL ("%="), 2 },
1638 { "rS", NL (">>="), 2 },
1639 { "rc", NL ("reinterpret_cast"), 2 },
1640 { "rm", NL ("%"), 2 },
1641 { "rs", NL (">>"), 2 },
1642 { "sc", NL ("static_cast"), 2 },
1643 { "st", NL ("sizeof "), 1 },
1644 { "sz", NL ("sizeof "), 1 },
1645 { "tr", NL ("throw"), 0 },
1646 { "tw", NL ("throw "), 1 },
1647 { NULL
, NULL
, 0, 0 }
1650 static struct demangle_component
*
1651 d_operator_name (struct d_info
*di
)
1656 c1
= d_next_char (di
);
1657 c2
= d_next_char (di
);
1658 if (c1
== 'v' && IS_DIGIT (c2
))
1659 return d_make_extended_operator (di
, c2
- '0', d_source_name (di
));
1660 else if (c1
== 'c' && c2
== 'v')
1661 return d_make_comp (di
, DEMANGLE_COMPONENT_CAST
,
1662 cplus_demangle_type (di
), NULL
);
1665 /* LOW is the inclusive lower bound. */
1667 /* HIGH is the exclusive upper bound. We subtract one to ignore
1668 the sentinel at the end of the array. */
1669 int high
= ((sizeof (cplus_demangle_operators
)
1670 / sizeof (cplus_demangle_operators
[0]))
1676 const struct demangle_operator_info
*p
;
1678 i
= low
+ (high
- low
) / 2;
1679 p
= cplus_demangle_operators
+ i
;
1681 if (c1
== p
->code
[0] && c2
== p
->code
[1])
1682 return d_make_operator (di
, p
);
1684 if (c1
< p
->code
[0] || (c1
== p
->code
[0] && c2
< p
->code
[1]))
1694 static struct demangle_component
*
1695 d_make_character (struct d_info
*di
, int c
)
1697 struct demangle_component
*p
;
1698 p
= d_make_empty (di
);
1701 p
->type
= DEMANGLE_COMPONENT_CHARACTER
;
1702 p
->u
.s_character
.character
= c
;
1707 static struct demangle_component
*
1708 d_java_resource (struct d_info
*di
)
1710 struct demangle_component
*p
= NULL
;
1711 struct demangle_component
*next
= NULL
;
1716 len
= d_number (di
);
1720 /* Eat the leading '_'. */
1721 if (d_next_char (di
) != '_')
1734 /* Each chunk is either a '$' escape... */
1752 next
= d_make_character (di
, c
);
1760 /* ... or a sequence of characters. */
1763 while (i
< len
&& str
[i
] && str
[i
] != '$')
1766 next
= d_make_name (di
, str
, i
);
1779 p
= d_make_comp (di
, DEMANGLE_COMPONENT_COMPOUND_NAME
, p
, next
);
1785 p
= d_make_comp (di
, DEMANGLE_COMPONENT_JAVA_RESOURCE
, p
, NULL
);
1790 /* <special-name> ::= TV <type>
1794 ::= GV <(object) name>
1795 ::= T <call-offset> <(base) encoding>
1796 ::= Tc <call-offset> <call-offset> <(base) encoding>
1797 Also g++ extensions:
1798 ::= TC <type> <(offset) number> _ <(base) type>
1803 ::= Gr <resource name>
1808 static struct demangle_component
*
1809 d_special_name (struct d_info
*di
)
1811 di
->expansion
+= 20;
1812 if (d_check_char (di
, 'T'))
1814 switch (d_next_char (di
))
1818 return d_make_comp (di
, DEMANGLE_COMPONENT_VTABLE
,
1819 cplus_demangle_type (di
), NULL
);
1821 di
->expansion
-= 10;
1822 return d_make_comp (di
, DEMANGLE_COMPONENT_VTT
,
1823 cplus_demangle_type (di
), NULL
);
1825 return d_make_comp (di
, DEMANGLE_COMPONENT_TYPEINFO
,
1826 cplus_demangle_type (di
), NULL
);
1828 return d_make_comp (di
, DEMANGLE_COMPONENT_TYPEINFO_NAME
,
1829 cplus_demangle_type (di
), NULL
);
1832 if (! d_call_offset (di
, 'h'))
1834 return d_make_comp (di
, DEMANGLE_COMPONENT_THUNK
,
1835 d_encoding (di
, 0), NULL
);
1838 if (! d_call_offset (di
, 'v'))
1840 return d_make_comp (di
, DEMANGLE_COMPONENT_VIRTUAL_THUNK
,
1841 d_encoding (di
, 0), NULL
);
1844 if (! d_call_offset (di
, '\0'))
1846 if (! d_call_offset (di
, '\0'))
1848 return d_make_comp (di
, DEMANGLE_COMPONENT_COVARIANT_THUNK
,
1849 d_encoding (di
, 0), NULL
);
1853 struct demangle_component
*derived_type
;
1855 struct demangle_component
*base_type
;
1857 derived_type
= cplus_demangle_type (di
);
1858 offset
= d_number (di
);
1861 if (! d_check_char (di
, '_'))
1863 base_type
= cplus_demangle_type (di
);
1864 /* We don't display the offset. FIXME: We should display
1865 it in verbose mode. */
1867 return d_make_comp (di
, DEMANGLE_COMPONENT_CONSTRUCTION_VTABLE
,
1868 base_type
, derived_type
);
1872 return d_make_comp (di
, DEMANGLE_COMPONENT_TYPEINFO_FN
,
1873 cplus_demangle_type (di
), NULL
);
1875 return d_make_comp (di
, DEMANGLE_COMPONENT_JAVA_CLASS
,
1876 cplus_demangle_type (di
), NULL
);
1879 return d_make_comp (di
, DEMANGLE_COMPONENT_TLS_INIT
,
1883 return d_make_comp (di
, DEMANGLE_COMPONENT_TLS_WRAPPER
,
1890 else if (d_check_char (di
, 'G'))
1892 switch (d_next_char (di
))
1895 return d_make_comp (di
, DEMANGLE_COMPONENT_GUARD
, d_name (di
), NULL
);
1899 struct demangle_component
*name
= d_name (di
);
1900 return d_make_comp (di
, DEMANGLE_COMPONENT_REFTEMP
, name
,
1901 d_number_component (di
));
1905 return d_make_comp (di
, DEMANGLE_COMPONENT_HIDDEN_ALIAS
,
1906 d_encoding (di
, 0), NULL
);
1909 switch (d_next_char (di
))
1912 return d_make_comp (di
, DEMANGLE_COMPONENT_NONTRANSACTION_CLONE
,
1913 d_encoding (di
, 0), NULL
);
1915 /* ??? The proposal is that other letters (such as 'h') stand
1916 for different variants of transaction cloning, such as
1917 compiling directly for hardware transaction support. But
1918 they still should all be transactional clones of some sort
1919 so go ahead and call them that. */
1921 return d_make_comp (di
, DEMANGLE_COMPONENT_TRANSACTION_CLONE
,
1922 d_encoding (di
, 0), NULL
);
1926 return d_java_resource (di
);
1936 /* <call-offset> ::= h <nv-offset> _
1939 <nv-offset> ::= <(offset) number>
1941 <v-offset> ::= <(offset) number> _ <(virtual offset) number>
1943 The C parameter, if not '\0', is a character we just read which is
1944 the start of the <call-offset>.
1946 We don't display the offset information anywhere. FIXME: We should
1947 display it in verbose mode. */
1950 d_call_offset (struct d_info
*di
, int c
)
1953 c
= d_next_char (di
);
1960 if (! d_check_char (di
, '_'))
1967 if (! d_check_char (di
, '_'))
1973 /* <ctor-dtor-name> ::= C1
1981 static struct demangle_component
*
1982 d_ctor_dtor_name (struct d_info
*di
)
1984 if (di
->last_name
!= NULL
)
1986 if (di
->last_name
->type
== DEMANGLE_COMPONENT_NAME
)
1987 di
->expansion
+= di
->last_name
->u
.s_name
.len
;
1988 else if (di
->last_name
->type
== DEMANGLE_COMPONENT_SUB_STD
)
1989 di
->expansion
+= di
->last_name
->u
.s_string
.len
;
1991 switch (d_peek_char (di
))
1995 enum gnu_v3_ctor_kinds kind
;
1997 switch (d_peek_next_char (di
))
2000 kind
= gnu_v3_complete_object_ctor
;
2003 kind
= gnu_v3_base_object_ctor
;
2006 kind
= gnu_v3_complete_object_allocating_ctor
;
2009 kind
= gnu_v3_object_ctor_group
;
2015 return d_make_ctor (di
, kind
, di
->last_name
);
2020 enum gnu_v3_dtor_kinds kind
;
2022 switch (d_peek_next_char (di
))
2025 kind
= gnu_v3_deleting_dtor
;
2028 kind
= gnu_v3_complete_object_dtor
;
2031 kind
= gnu_v3_base_object_dtor
;
2034 kind
= gnu_v3_object_dtor_group
;
2040 return d_make_dtor (di
, kind
, di
->last_name
);
2048 /* <type> ::= <builtin-type>
2050 ::= <class-enum-type>
2052 ::= <pointer-to-member-type>
2053 ::= <template-param>
2054 ::= <template-template-param> <template-args>
2056 ::= <CV-qualifiers> <type>
2059 ::= O <type> (C++0x)
2062 ::= U <source-name> <type>
2064 <builtin-type> ::= various one letter codes
2068 CP_STATIC_IF_GLIBCPP_V3
2069 const struct demangle_builtin_type_info
2070 cplus_demangle_builtin_types
[D_BUILTIN_TYPE_COUNT
] =
2072 /* a */ { NL ("signed char"), NL ("signed char"), D_PRINT_DEFAULT
},
2073 /* b */ { NL ("bool"), NL ("boolean"), D_PRINT_BOOL
},
2074 /* c */ { NL ("char"), NL ("byte"), D_PRINT_DEFAULT
},
2075 /* d */ { NL ("double"), NL ("double"), D_PRINT_FLOAT
},
2076 /* e */ { NL ("long double"), NL ("long double"), D_PRINT_FLOAT
},
2077 /* f */ { NL ("float"), NL ("float"), D_PRINT_FLOAT
},
2078 /* g */ { NL ("__float128"), NL ("__float128"), D_PRINT_FLOAT
},
2079 /* h */ { NL ("unsigned char"), NL ("unsigned char"), D_PRINT_DEFAULT
},
2080 /* i */ { NL ("int"), NL ("int"), D_PRINT_INT
},
2081 /* j */ { NL ("unsigned int"), NL ("unsigned"), D_PRINT_UNSIGNED
},
2082 /* k */ { NULL
, 0, NULL
, 0, D_PRINT_DEFAULT
},
2083 /* l */ { NL ("long"), NL ("long"), D_PRINT_LONG
},
2084 /* m */ { NL ("unsigned long"), NL ("unsigned long"), D_PRINT_UNSIGNED_LONG
},
2085 /* n */ { NL ("__int128"), NL ("__int128"), D_PRINT_DEFAULT
},
2086 /* o */ { NL ("unsigned __int128"), NL ("unsigned __int128"),
2088 /* p */ { NULL
, 0, NULL
, 0, D_PRINT_DEFAULT
},
2089 /* q */ { NULL
, 0, NULL
, 0, D_PRINT_DEFAULT
},
2090 /* r */ { NULL
, 0, NULL
, 0, D_PRINT_DEFAULT
},
2091 /* s */ { NL ("short"), NL ("short"), D_PRINT_DEFAULT
},
2092 /* t */ { NL ("unsigned short"), NL ("unsigned short"), D_PRINT_DEFAULT
},
2093 /* u */ { NULL
, 0, NULL
, 0, D_PRINT_DEFAULT
},
2094 /* v */ { NL ("void"), NL ("void"), D_PRINT_VOID
},
2095 /* w */ { NL ("wchar_t"), NL ("char"), D_PRINT_DEFAULT
},
2096 /* x */ { NL ("long long"), NL ("long"), D_PRINT_LONG_LONG
},
2097 /* y */ { NL ("unsigned long long"), NL ("unsigned long long"),
2098 D_PRINT_UNSIGNED_LONG_LONG
},
2099 /* z */ { NL ("..."), NL ("..."), D_PRINT_DEFAULT
},
2100 /* 26 */ { NL ("decimal32"), NL ("decimal32"), D_PRINT_DEFAULT
},
2101 /* 27 */ { NL ("decimal64"), NL ("decimal64"), D_PRINT_DEFAULT
},
2102 /* 28 */ { NL ("decimal128"), NL ("decimal128"), D_PRINT_DEFAULT
},
2103 /* 29 */ { NL ("half"), NL ("half"), D_PRINT_FLOAT
},
2104 /* 30 */ { NL ("char16_t"), NL ("char16_t"), D_PRINT_DEFAULT
},
2105 /* 31 */ { NL ("char32_t"), NL ("char32_t"), D_PRINT_DEFAULT
},
2106 /* 32 */ { NL ("decltype(nullptr)"), NL ("decltype(nullptr)"),
2110 CP_STATIC_IF_GLIBCPP_V3
2111 struct demangle_component
*
2112 cplus_demangle_type (struct d_info
*di
)
2115 struct demangle_component
*ret
;
2118 /* The ABI specifies that when CV-qualifiers are used, the base type
2119 is substitutable, and the fully qualified type is substitutable,
2120 but the base type with a strict subset of the CV-qualifiers is
2121 not substitutable. The natural recursive implementation of the
2122 CV-qualifiers would cause subsets to be substitutable, so instead
2123 we pull them all off now.
2125 FIXME: The ABI says that order-insensitive vendor qualifiers
2126 should be handled in the same way, but we have no way to tell
2127 which vendor qualifiers are order-insensitive and which are
2128 order-sensitive. So we just assume that they are all
2129 order-sensitive. g++ 3.4 supports only one vendor qualifier,
2130 __vector, and it treats it as order-sensitive when mangling
2133 peek
= d_peek_char (di
);
2134 if (peek
== 'r' || peek
== 'V' || peek
== 'K')
2136 struct demangle_component
**pret
;
2138 pret
= d_cv_qualifiers (di
, &ret
, 0);
2141 *pret
= cplus_demangle_type (di
);
2142 if (! *pret
|| ! d_add_substitution (di
, ret
))
2151 case 'a': case 'b': case 'c': case 'd': case 'e': case 'f': case 'g':
2152 case 'h': case 'i': case 'j': case 'l': case 'm': case 'n':
2153 case 'o': case 's': case 't':
2154 case 'v': case 'w': case 'x': case 'y': case 'z':
2155 ret
= d_make_builtin_type (di
,
2156 &cplus_demangle_builtin_types
[peek
- 'a']);
2157 di
->expansion
+= ret
->u
.s_builtin
.type
->len
;
2164 ret
= d_make_comp (di
, DEMANGLE_COMPONENT_VENDOR_TYPE
,
2165 d_source_name (di
), NULL
);
2169 ret
= d_function_type (di
);
2172 case '0': case '1': case '2': case '3': case '4':
2173 case '5': case '6': case '7': case '8': case '9':
2176 ret
= d_class_enum_type (di
);
2180 ret
= d_array_type (di
);
2184 ret
= d_pointer_to_member_type (di
);
2188 ret
= d_template_param (di
);
2189 if (d_peek_char (di
) == 'I')
2191 /* This is <template-template-param> <template-args>. The
2192 <template-template-param> part is a substitution
2194 if (! d_add_substitution (di
, ret
))
2196 ret
= d_make_comp (di
, DEMANGLE_COMPONENT_TEMPLATE
, ret
,
2197 d_template_args (di
));
2202 /* If this is a special substitution, then it is the start of
2203 <class-enum-type>. */
2207 peek_next
= d_peek_next_char (di
);
2208 if (IS_DIGIT (peek_next
)
2210 || IS_UPPER (peek_next
))
2212 ret
= d_substitution (di
, 0);
2213 /* The substituted name may have been a template name and
2214 may be followed by tepmlate args. */
2215 if (d_peek_char (di
) == 'I')
2216 ret
= d_make_comp (di
, DEMANGLE_COMPONENT_TEMPLATE
, ret
,
2217 d_template_args (di
));
2223 ret
= d_class_enum_type (di
);
2224 /* If the substitution was a complete type, then it is not
2225 a new substitution candidate. However, if the
2226 substitution was followed by template arguments, then
2227 the whole thing is a substitution candidate. */
2228 if (ret
!= NULL
&& ret
->type
== DEMANGLE_COMPONENT_SUB_STD
)
2236 ret
= d_make_comp (di
, DEMANGLE_COMPONENT_RVALUE_REFERENCE
,
2237 cplus_demangle_type (di
), NULL
);
2242 ret
= d_make_comp (di
, DEMANGLE_COMPONENT_POINTER
,
2243 cplus_demangle_type (di
), NULL
);
2248 ret
= d_make_comp (di
, DEMANGLE_COMPONENT_REFERENCE
,
2249 cplus_demangle_type (di
), NULL
);
2254 ret
= d_make_comp (di
, DEMANGLE_COMPONENT_COMPLEX
,
2255 cplus_demangle_type (di
), NULL
);
2260 ret
= d_make_comp (di
, DEMANGLE_COMPONENT_IMAGINARY
,
2261 cplus_demangle_type (di
), NULL
);
2266 ret
= d_source_name (di
);
2267 ret
= d_make_comp (di
, DEMANGLE_COMPONENT_VENDOR_TYPE_QUAL
,
2268 cplus_demangle_type (di
), ret
);
2274 peek
= d_next_char (di
);
2279 /* decltype (expression) */
2280 ret
= d_make_comp (di
, DEMANGLE_COMPONENT_DECLTYPE
,
2281 d_expression (di
), NULL
);
2282 if (ret
&& d_next_char (di
) != 'E')
2288 /* Pack expansion. */
2289 ret
= d_make_comp (di
, DEMANGLE_COMPONENT_PACK_EXPANSION
,
2290 cplus_demangle_type (di
), NULL
);
2296 ret
= d_make_name (di
, "auto", 4);
2300 /* 32-bit decimal floating point */
2301 ret
= d_make_builtin_type (di
, &cplus_demangle_builtin_types
[26]);
2302 di
->expansion
+= ret
->u
.s_builtin
.type
->len
;
2306 ret
= d_make_builtin_type (di
, &cplus_demangle_builtin_types
[27]);
2307 di
->expansion
+= ret
->u
.s_builtin
.type
->len
;
2311 ret
= d_make_builtin_type (di
, &cplus_demangle_builtin_types
[28]);
2312 di
->expansion
+= ret
->u
.s_builtin
.type
->len
;
2315 /* 16-bit half-precision FP */
2316 ret
= d_make_builtin_type (di
, &cplus_demangle_builtin_types
[29]);
2317 di
->expansion
+= ret
->u
.s_builtin
.type
->len
;
2321 ret
= d_make_builtin_type (di
, &cplus_demangle_builtin_types
[30]);
2322 di
->expansion
+= ret
->u
.s_builtin
.type
->len
;
2326 ret
= d_make_builtin_type (di
, &cplus_demangle_builtin_types
[31]);
2327 di
->expansion
+= ret
->u
.s_builtin
.type
->len
;
2331 /* Fixed point types. DF<int bits><length><fract bits><sat> */
2332 ret
= d_make_empty (di
);
2333 ret
->type
= DEMANGLE_COMPONENT_FIXED_TYPE
;
2334 if ((ret
->u
.s_fixed
.accum
= IS_DIGIT (d_peek_char (di
))))
2335 /* For demangling we don't care about the bits. */
2337 ret
->u
.s_fixed
.length
= cplus_demangle_type (di
);
2338 if (ret
->u
.s_fixed
.length
== NULL
)
2341 peek
= d_next_char (di
);
2342 ret
->u
.s_fixed
.sat
= (peek
== 's');
2346 ret
= d_vector_type (di
);
2351 /* decltype(nullptr) */
2352 ret
= d_make_builtin_type (di
, &cplus_demangle_builtin_types
[32]);
2353 di
->expansion
+= ret
->u
.s_builtin
.type
->len
;
2367 if (! d_add_substitution (di
, ret
))
2374 /* <CV-qualifiers> ::= [r] [V] [K] */
2376 static struct demangle_component
**
2377 d_cv_qualifiers (struct d_info
*di
,
2378 struct demangle_component
**pret
, int member_fn
)
2380 struct demangle_component
**pstart
;
2384 peek
= d_peek_char (di
);
2385 while (peek
== 'r' || peek
== 'V' || peek
== 'K')
2387 enum demangle_component_type t
;
2393 ? DEMANGLE_COMPONENT_RESTRICT_THIS
2394 : DEMANGLE_COMPONENT_RESTRICT
);
2395 di
->expansion
+= sizeof "restrict";
2397 else if (peek
== 'V')
2400 ? DEMANGLE_COMPONENT_VOLATILE_THIS
2401 : DEMANGLE_COMPONENT_VOLATILE
);
2402 di
->expansion
+= sizeof "volatile";
2407 ? DEMANGLE_COMPONENT_CONST_THIS
2408 : DEMANGLE_COMPONENT_CONST
);
2409 di
->expansion
+= sizeof "const";
2412 *pret
= d_make_comp (di
, t
, NULL
, NULL
);
2415 pret
= &d_left (*pret
);
2417 peek
= d_peek_char (di
);
2420 if (!member_fn
&& peek
== 'F')
2422 while (pstart
!= pret
)
2424 switch ((*pstart
)->type
)
2426 case DEMANGLE_COMPONENT_RESTRICT
:
2427 (*pstart
)->type
= DEMANGLE_COMPONENT_RESTRICT_THIS
;
2429 case DEMANGLE_COMPONENT_VOLATILE
:
2430 (*pstart
)->type
= DEMANGLE_COMPONENT_VOLATILE_THIS
;
2432 case DEMANGLE_COMPONENT_CONST
:
2433 (*pstart
)->type
= DEMANGLE_COMPONENT_CONST_THIS
;
2438 pstart
= &d_left (*pstart
);
2445 /* <function-type> ::= F [Y] <bare-function-type> E */
2447 static struct demangle_component
*
2448 d_function_type (struct d_info
*di
)
2450 struct demangle_component
*ret
;
2452 if (! d_check_char (di
, 'F'))
2454 if (d_peek_char (di
) == 'Y')
2456 /* Function has C linkage. We don't print this information.
2457 FIXME: We should print it in verbose mode. */
2460 ret
= d_bare_function_type (di
, 1);
2461 if (! d_check_char (di
, 'E'))
2468 static struct demangle_component
*
2469 d_parmlist (struct d_info
*di
)
2471 struct demangle_component
*tl
;
2472 struct demangle_component
**ptl
;
2478 struct demangle_component
*type
;
2480 char peek
= d_peek_char (di
);
2481 if (peek
== '\0' || peek
== 'E' || peek
== '.')
2483 type
= cplus_demangle_type (di
);
2486 *ptl
= d_make_comp (di
, DEMANGLE_COMPONENT_ARGLIST
, type
, NULL
);
2489 ptl
= &d_right (*ptl
);
2492 /* There should be at least one parameter type besides the optional
2493 return type. A function which takes no arguments will have a
2494 single parameter type void. */
2498 /* If we have a single parameter type void, omit it. */
2499 if (d_right (tl
) == NULL
2500 && d_left (tl
)->type
== DEMANGLE_COMPONENT_BUILTIN_TYPE
2501 && d_left (tl
)->u
.s_builtin
.type
->print
== D_PRINT_VOID
)
2503 di
->expansion
-= d_left (tl
)->u
.s_builtin
.type
->len
;
2510 /* <bare-function-type> ::= [J]<type>+ */
2512 static struct demangle_component
*
2513 d_bare_function_type (struct d_info
*di
, int has_return_type
)
2515 struct demangle_component
*return_type
;
2516 struct demangle_component
*tl
;
2519 /* Detect special qualifier indicating that the first argument
2520 is the return type. */
2521 peek
= d_peek_char (di
);
2525 has_return_type
= 1;
2528 if (has_return_type
)
2530 return_type
= cplus_demangle_type (di
);
2531 if (return_type
== NULL
)
2537 tl
= d_parmlist (di
);
2541 return d_make_comp (di
, DEMANGLE_COMPONENT_FUNCTION_TYPE
,
2545 /* <class-enum-type> ::= <name> */
2547 static struct demangle_component
*
2548 d_class_enum_type (struct d_info
*di
)
2553 /* <array-type> ::= A <(positive dimension) number> _ <(element) type>
2554 ::= A [<(dimension) expression>] _ <(element) type>
2557 static struct demangle_component
*
2558 d_array_type (struct d_info
*di
)
2561 struct demangle_component
*dim
;
2563 if (! d_check_char (di
, 'A'))
2566 peek
= d_peek_char (di
);
2569 else if (IS_DIGIT (peek
))
2577 peek
= d_peek_char (di
);
2579 while (IS_DIGIT (peek
));
2580 dim
= d_make_name (di
, s
, d_str (di
) - s
);
2586 dim
= d_expression (di
);
2591 if (! d_check_char (di
, '_'))
2594 return d_make_comp (di
, DEMANGLE_COMPONENT_ARRAY_TYPE
, dim
,
2595 cplus_demangle_type (di
));
2598 /* <vector-type> ::= Dv <number> _ <type>
2599 ::= Dv _ <expression> _ <type> */
2601 static struct demangle_component
*
2602 d_vector_type (struct d_info
*di
)
2605 struct demangle_component
*dim
;
2607 peek
= d_peek_char (di
);
2611 dim
= d_expression (di
);
2614 dim
= d_number_component (di
);
2619 if (! d_check_char (di
, '_'))
2622 return d_make_comp (di
, DEMANGLE_COMPONENT_VECTOR_TYPE
, dim
,
2623 cplus_demangle_type (di
));
2626 /* <pointer-to-member-type> ::= M <(class) type> <(member) type> */
2628 static struct demangle_component
*
2629 d_pointer_to_member_type (struct d_info
*di
)
2631 struct demangle_component
*cl
;
2632 struct demangle_component
*mem
;
2633 struct demangle_component
**pmem
;
2635 if (! d_check_char (di
, 'M'))
2638 cl
= cplus_demangle_type (di
);
2640 /* The ABI specifies that any type can be a substitution source, and
2641 that M is followed by two types, and that when a CV-qualified
2642 type is seen both the base type and the CV-qualified types are
2643 substitution sources. The ABI also specifies that for a pointer
2644 to a CV-qualified member function, the qualifiers are attached to
2645 the second type. Given the grammar, a plain reading of the ABI
2646 suggests that both the CV-qualified member function and the
2647 non-qualified member function are substitution sources. However,
2648 g++ does not work that way. g++ treats only the CV-qualified
2649 member function as a substitution source. FIXME. So to work
2650 with g++, we need to pull off the CV-qualifiers here, in order to
2651 avoid calling add_substitution() in cplus_demangle_type(). But
2652 for a CV-qualified member which is not a function, g++ does
2653 follow the ABI, so we need to handle that case here by calling
2654 d_add_substitution ourselves. */
2656 pmem
= d_cv_qualifiers (di
, &mem
, 1);
2659 *pmem
= cplus_demangle_type (di
);
2663 if (pmem
!= &mem
&& (*pmem
)->type
!= DEMANGLE_COMPONENT_FUNCTION_TYPE
)
2665 if (! d_add_substitution (di
, mem
))
2669 return d_make_comp (di
, DEMANGLE_COMPONENT_PTRMEM_TYPE
, cl
, mem
);
2672 /* <non-negative number> _ */
2675 d_compact_number (struct d_info
*di
)
2678 if (d_peek_char (di
) == '_')
2680 else if (d_peek_char (di
) == 'n')
2683 num
= d_number (di
) + 1;
2685 if (! d_check_char (di
, '_'))
2690 /* <template-param> ::= T_
2691 ::= T <(parameter-2 non-negative) number> _
2694 static struct demangle_component
*
2695 d_template_param (struct d_info
*di
)
2699 if (! d_check_char (di
, 'T'))
2702 param
= d_compact_number (di
);
2708 return d_make_template_param (di
, param
);
2711 /* <template-args> ::= I <template-arg>+ E */
2713 static struct demangle_component
*
2714 d_template_args (struct d_info
*di
)
2716 struct demangle_component
*hold_last_name
;
2717 struct demangle_component
*al
;
2718 struct demangle_component
**pal
;
2720 /* Preserve the last name we saw--don't let the template arguments
2721 clobber it, as that would give us the wrong name for a subsequent
2722 constructor or destructor. */
2723 hold_last_name
= di
->last_name
;
2725 if (d_peek_char (di
) != 'I'
2726 && d_peek_char (di
) != 'J')
2730 if (d_peek_char (di
) == 'E')
2732 /* An argument pack can be empty. */
2734 return d_make_comp (di
, DEMANGLE_COMPONENT_TEMPLATE_ARGLIST
, NULL
, NULL
);
2741 struct demangle_component
*a
;
2743 a
= d_template_arg (di
);
2747 *pal
= d_make_comp (di
, DEMANGLE_COMPONENT_TEMPLATE_ARGLIST
, a
, NULL
);
2750 pal
= &d_right (*pal
);
2752 if (d_peek_char (di
) == 'E')
2759 di
->last_name
= hold_last_name
;
2764 /* <template-arg> ::= <type>
2765 ::= X <expression> E
2769 static struct demangle_component
*
2770 d_template_arg (struct d_info
*di
)
2772 struct demangle_component
*ret
;
2774 switch (d_peek_char (di
))
2778 ret
= d_expression (di
);
2779 if (! d_check_char (di
, 'E'))
2784 return d_expr_primary (di
);
2788 /* An argument pack. */
2789 return d_template_args (di
);
2792 return cplus_demangle_type (di
);
2796 /* Parse a sequence of expressions until we hit the terminator
2799 static struct demangle_component
*
2800 d_exprlist (struct d_info
*di
, char terminator
)
2802 struct demangle_component
*list
= NULL
;
2803 struct demangle_component
**p
= &list
;
2805 if (d_peek_char (di
) == terminator
)
2808 return d_make_comp (di
, DEMANGLE_COMPONENT_ARGLIST
, NULL
, NULL
);
2813 struct demangle_component
*arg
= d_expression (di
);
2817 *p
= d_make_comp (di
, DEMANGLE_COMPONENT_ARGLIST
, arg
, NULL
);
2822 if (d_peek_char (di
) == terminator
)
2832 /* Returns nonzero iff OP is an operator for a C++ cast: const_cast,
2833 dynamic_cast, static_cast or reinterpret_cast. */
2836 op_is_new_cast (struct demangle_component
*op
)
2838 const char *code
= op
->u
.s_operator
.op
->code
;
2839 return (code
[1] == 'c'
2840 && (code
[0] == 's' || code
[0] == 'd'
2841 || code
[0] == 'c' || code
[0] == 'r'));
2844 /* <expression> ::= <(unary) operator-name> <expression>
2845 ::= <(binary) operator-name> <expression> <expression>
2846 ::= <(trinary) operator-name> <expression> <expression> <expression>
2847 ::= cl <expression>+ E
2849 ::= <template-param>
2850 ::= sr <type> <unqualified-name>
2851 ::= sr <type> <unqualified-name> <template-args>
2855 static struct demangle_component
*
2856 d_expression (struct d_info
*di
)
2860 peek
= d_peek_char (di
);
2862 return d_expr_primary (di
);
2863 else if (peek
== 'T')
2864 return d_template_param (di
);
2865 else if (peek
== 's' && d_peek_next_char (di
) == 'r')
2867 struct demangle_component
*type
;
2868 struct demangle_component
*name
;
2871 type
= cplus_demangle_type (di
);
2872 name
= d_unqualified_name (di
);
2873 if (d_peek_char (di
) != 'I')
2874 return d_make_comp (di
, DEMANGLE_COMPONENT_QUAL_NAME
, type
, name
);
2876 return d_make_comp (di
, DEMANGLE_COMPONENT_QUAL_NAME
, type
,
2877 d_make_comp (di
, DEMANGLE_COMPONENT_TEMPLATE
, name
,
2878 d_template_args (di
)));
2880 else if (peek
== 's' && d_peek_next_char (di
) == 'p')
2883 return d_make_comp (di
, DEMANGLE_COMPONENT_PACK_EXPANSION
,
2884 d_expression (di
), NULL
);
2886 else if (peek
== 'f' && d_peek_next_char (di
) == 'p')
2888 /* Function parameter used in a late-specified return type. */
2891 if (d_peek_char (di
) == 'T')
2893 /* 'this' parameter. */
2899 index
= d_compact_number (di
) + 1;
2903 return d_make_function_param (di
, index
);
2905 else if (IS_DIGIT (peek
)
2906 || (peek
== 'o' && d_peek_next_char (di
) == 'n'))
2908 /* We can get an unqualified name as an expression in the case of
2909 a dependent function call, i.e. decltype(f(t)). */
2910 struct demangle_component
*name
;
2913 /* operator-function-id, i.e. operator+(t). */
2916 name
= d_unqualified_name (di
);
2919 if (d_peek_char (di
) == 'I')
2920 return d_make_comp (di
, DEMANGLE_COMPONENT_TEMPLATE
, name
,
2921 d_template_args (di
));
2925 else if ((peek
== 'i' || peek
== 't')
2926 && d_peek_next_char (di
) == 'l')
2928 /* Brace-enclosed initializer list, untyped or typed. */
2929 struct demangle_component
*type
= NULL
;
2931 type
= cplus_demangle_type (di
);
2933 return d_make_comp (di
, DEMANGLE_COMPONENT_INITIALIZER_LIST
,
2934 type
, d_exprlist (di
, 'E'));
2938 struct demangle_component
*op
;
2939 const char *code
= NULL
;
2942 op
= d_operator_name (di
);
2946 if (op
->type
== DEMANGLE_COMPONENT_OPERATOR
)
2948 code
= op
->u
.s_operator
.op
->code
;
2949 di
->expansion
+= op
->u
.s_operator
.op
->len
- 2;
2950 if (strcmp (code
, "st") == 0)
2951 return d_make_comp (di
, DEMANGLE_COMPONENT_UNARY
, op
,
2952 cplus_demangle_type (di
));
2959 case DEMANGLE_COMPONENT_OPERATOR
:
2960 args
= op
->u
.s_operator
.op
->args
;
2962 case DEMANGLE_COMPONENT_EXTENDED_OPERATOR
:
2963 args
= op
->u
.s_extended_operator
.args
;
2965 case DEMANGLE_COMPONENT_CAST
:
2973 return d_make_comp (di
, DEMANGLE_COMPONENT_NULLARY
, op
, NULL
);
2977 struct demangle_component
*operand
;
2980 if (code
&& (code
[0] == 'p' || code
[0] == 'm')
2981 && code
[1] == code
[0])
2982 /* pp_ and mm_ are the prefix variants. */
2983 suffix
= !d_check_char (di
, '_');
2985 if (op
->type
== DEMANGLE_COMPONENT_CAST
2986 && d_check_char (di
, '_'))
2987 operand
= d_exprlist (di
, 'E');
2989 operand
= d_expression (di
);
2992 /* Indicate the suffix variant for d_print_comp. */
2993 return d_make_comp (di
, DEMANGLE_COMPONENT_UNARY
, op
,
2995 DEMANGLE_COMPONENT_BINARY_ARGS
,
2998 return d_make_comp (di
, DEMANGLE_COMPONENT_UNARY
, op
,
3003 struct demangle_component
*left
;
3004 struct demangle_component
*right
;
3006 if (op_is_new_cast (op
))
3007 left
= cplus_demangle_type (di
);
3009 left
= d_expression (di
);
3010 if (!strcmp (code
, "cl"))
3011 right
= d_exprlist (di
, 'E');
3012 else if (!strcmp (code
, "dt") || !strcmp (code
, "pt"))
3014 right
= d_unqualified_name (di
);
3015 if (d_peek_char (di
) == 'I')
3016 right
= d_make_comp (di
, DEMANGLE_COMPONENT_TEMPLATE
,
3017 right
, d_template_args (di
));
3020 right
= d_expression (di
);
3022 return d_make_comp (di
, DEMANGLE_COMPONENT_BINARY
, op
,
3024 DEMANGLE_COMPONENT_BINARY_ARGS
,
3029 struct demangle_component
*first
;
3030 struct demangle_component
*second
;
3031 struct demangle_component
*third
;
3033 if (!strcmp (code
, "qu"))
3035 /* ?: expression. */
3036 first
= d_expression (di
);
3037 second
= d_expression (di
);
3038 third
= d_expression (di
);
3040 else if (code
[0] == 'n')
3042 /* new-expression. */
3043 if (code
[1] != 'w' && code
[1] != 'a')
3045 first
= d_exprlist (di
, '_');
3046 second
= cplus_demangle_type (di
);
3047 if (d_peek_char (di
) == 'E')
3052 else if (d_peek_char (di
) == 'p'
3053 && d_peek_next_char (di
) == 'i')
3055 /* Parenthesized initializer. */
3057 third
= d_exprlist (di
, 'E');
3059 else if (d_peek_char (di
) == 'i'
3060 && d_peek_next_char (di
) == 'l')
3061 /* initializer-list. */
3062 third
= d_expression (di
);
3068 return d_make_comp (di
, DEMANGLE_COMPONENT_TRINARY
, op
,
3070 DEMANGLE_COMPONENT_TRINARY_ARG1
,
3073 DEMANGLE_COMPONENT_TRINARY_ARG2
,
3082 /* <expr-primary> ::= L <type> <(value) number> E
3083 ::= L <type> <(value) float> E
3084 ::= L <mangled-name> E
3087 static struct demangle_component
*
3088 d_expr_primary (struct d_info
*di
)
3090 struct demangle_component
*ret
;
3092 if (! d_check_char (di
, 'L'))
3094 if (d_peek_char (di
) == '_'
3095 /* Workaround for G++ bug; see comment in write_template_arg. */
3096 || d_peek_char (di
) == 'Z')
3097 ret
= cplus_demangle_mangled_name (di
, 0);
3100 struct demangle_component
*type
;
3101 enum demangle_component_type t
;
3104 type
= cplus_demangle_type (di
);
3108 /* If we have a type we know how to print, we aren't going to
3109 print the type name itself. */
3110 if (type
->type
== DEMANGLE_COMPONENT_BUILTIN_TYPE
3111 && type
->u
.s_builtin
.type
->print
!= D_PRINT_DEFAULT
)
3112 di
->expansion
-= type
->u
.s_builtin
.type
->len
;
3114 /* Rather than try to interpret the literal value, we just
3115 collect it as a string. Note that it's possible to have a
3116 floating point literal here. The ABI specifies that the
3117 format of such literals is machine independent. That's fine,
3118 but what's not fine is that versions of g++ up to 3.2 with
3119 -fabi-version=1 used upper case letters in the hex constant,
3120 and dumped out gcc's internal representation. That makes it
3121 hard to tell where the constant ends, and hard to dump the
3122 constant in any readable form anyhow. We don't attempt to
3123 handle these cases. */
3125 t
= DEMANGLE_COMPONENT_LITERAL
;
3126 if (d_peek_char (di
) == 'n')
3128 t
= DEMANGLE_COMPONENT_LITERAL_NEG
;
3132 while (d_peek_char (di
) != 'E')
3134 if (d_peek_char (di
) == '\0')
3138 ret
= d_make_comp (di
, t
, type
, d_make_name (di
, s
, d_str (di
) - s
));
3140 if (! d_check_char (di
, 'E'))
3145 /* <local-name> ::= Z <(function) encoding> E <(entity) name> [<discriminator>]
3146 ::= Z <(function) encoding> E s [<discriminator>]
3149 static struct demangle_component
*
3150 d_local_name (struct d_info
*di
)
3152 struct demangle_component
*function
;
3154 if (! d_check_char (di
, 'Z'))
3157 function
= d_encoding (di
, 0);
3159 if (! d_check_char (di
, 'E'))
3162 if (d_peek_char (di
) == 's')
3165 if (! d_discriminator (di
))
3167 return d_make_comp (di
, DEMANGLE_COMPONENT_LOCAL_NAME
, function
,
3168 d_make_name (di
, "string literal",
3169 sizeof "string literal" - 1));
3173 struct demangle_component
*name
;
3176 if (d_peek_char (di
) == 'd')
3178 /* Default argument scope: d <number> _. */
3180 num
= d_compact_number (di
);
3189 /* Lambdas and unnamed types have internal discriminators. */
3190 case DEMANGLE_COMPONENT_LAMBDA
:
3191 case DEMANGLE_COMPONENT_UNNAMED_TYPE
:
3194 if (! d_discriminator (di
))
3198 name
= d_make_default_arg (di
, num
, name
);
3199 return d_make_comp (di
, DEMANGLE_COMPONENT_LOCAL_NAME
, function
, name
);
3203 /* <discriminator> ::= _ <(non-negative) number>
3205 We demangle the discriminator, but we don't print it out. FIXME:
3206 We should print it out in verbose mode. */
3209 d_discriminator (struct d_info
*di
)
3213 if (d_peek_char (di
) != '_')
3216 discrim
= d_number (di
);
3222 /* <closure-type-name> ::= Ul <lambda-sig> E [ <nonnegative number> ] _ */
3224 static struct demangle_component
*
3225 d_lambda (struct d_info
*di
)
3227 struct demangle_component
*tl
;
3228 struct demangle_component
*ret
;
3231 if (! d_check_char (di
, 'U'))
3233 if (! d_check_char (di
, 'l'))
3236 tl
= d_parmlist (di
);
3240 if (! d_check_char (di
, 'E'))
3243 num
= d_compact_number (di
);
3247 ret
= d_make_empty (di
);
3250 ret
->type
= DEMANGLE_COMPONENT_LAMBDA
;
3251 ret
->u
.s_unary_num
.sub
= tl
;
3252 ret
->u
.s_unary_num
.num
= num
;
3255 if (! d_add_substitution (di
, ret
))
3261 /* <unnamed-type-name> ::= Ut [ <nonnegative number> ] _ */
3263 static struct demangle_component
*
3264 d_unnamed_type (struct d_info
*di
)
3266 struct demangle_component
*ret
;
3269 if (! d_check_char (di
, 'U'))
3271 if (! d_check_char (di
, 't'))
3274 num
= d_compact_number (di
);
3278 ret
= d_make_empty (di
);
3281 ret
->type
= DEMANGLE_COMPONENT_UNNAMED_TYPE
;
3282 ret
->u
.s_number
.number
= num
;
3285 if (! d_add_substitution (di
, ret
))
3291 /* <clone-suffix> ::= [ . <clone-type-identifier> ] [ . <nonnegative number> ]*
3294 static struct demangle_component
*
3295 d_clone_suffix (struct d_info
*di
, struct demangle_component
*encoding
)
3297 const char *suffix
= d_str (di
);
3298 const char *pend
= suffix
;
3299 struct demangle_component
*n
;
3301 if (*pend
== '.' && (IS_LOWER (pend
[1]) || pend
[1] == '_'))
3304 while (IS_LOWER (*pend
) || *pend
== '_')
3307 while (*pend
== '.' && IS_DIGIT (pend
[1]))
3310 while (IS_DIGIT (*pend
))
3313 d_advance (di
, pend
- suffix
);
3314 n
= d_make_name (di
, suffix
, pend
- suffix
);
3315 return d_make_comp (di
, DEMANGLE_COMPONENT_CLONE
, encoding
, n
);
3318 /* Add a new substitution. */
3321 d_add_substitution (struct d_info
*di
, struct demangle_component
*dc
)
3325 if (di
->next_sub
>= di
->num_subs
)
3327 di
->subs
[di
->next_sub
] = dc
;
3332 /* <substitution> ::= S <seq-id> _
3342 If PREFIX is non-zero, then this type is being used as a prefix in
3343 a qualified name. In this case, for the standard substitutions, we
3344 need to check whether we are being used as a prefix for a
3345 constructor or destructor, and return a full template name.
3346 Otherwise we will get something like std::iostream::~iostream()
3347 which does not correspond particularly well to any function which
3348 actually appears in the source.
3351 static const struct d_standard_sub_info standard_subs
[] =
3356 { 'a', NL ("std::allocator"),
3357 NL ("std::allocator"),
3359 { 'b', NL ("std::basic_string"),
3360 NL ("std::basic_string"),
3361 NL ("basic_string") },
3362 { 's', NL ("std::string"),
3363 NL ("std::basic_string<char, std::char_traits<char>, std::allocator<char> >"),
3364 NL ("basic_string") },
3365 { 'i', NL ("std::istream"),
3366 NL ("std::basic_istream<char, std::char_traits<char> >"),
3367 NL ("basic_istream") },
3368 { 'o', NL ("std::ostream"),
3369 NL ("std::basic_ostream<char, std::char_traits<char> >"),
3370 NL ("basic_ostream") },
3371 { 'd', NL ("std::iostream"),
3372 NL ("std::basic_iostream<char, std::char_traits<char> >"),
3373 NL ("basic_iostream") }
3376 static struct demangle_component
*
3377 d_substitution (struct d_info
*di
, int prefix
)
3381 if (! d_check_char (di
, 'S'))
3384 c
= d_next_char (di
);
3385 if (c
== '_' || IS_DIGIT (c
) || IS_UPPER (c
))
3394 unsigned int new_id
;
3397 new_id
= id
* 36 + c
- '0';
3398 else if (IS_UPPER (c
))
3399 new_id
= id
* 36 + c
- 'A' + 10;
3405 c
= d_next_char (di
);
3412 if (id
>= (unsigned int) di
->next_sub
)
3417 return di
->subs
[id
];
3422 const struct d_standard_sub_info
*p
;
3423 const struct d_standard_sub_info
*pend
;
3425 verbose
= (di
->options
& DMGL_VERBOSE
) != 0;
3426 if (! verbose
&& prefix
)
3430 peek
= d_peek_char (di
);
3431 if (peek
== 'C' || peek
== 'D')
3435 pend
= (&standard_subs
[0]
3436 + sizeof standard_subs
/ sizeof standard_subs
[0]);
3437 for (p
= &standard_subs
[0]; p
< pend
; ++p
)
3444 if (p
->set_last_name
!= NULL
)
3445 di
->last_name
= d_make_sub (di
, p
->set_last_name
,
3446 p
->set_last_name_len
);
3449 s
= p
->full_expansion
;
3454 s
= p
->simple_expansion
;
3455 len
= p
->simple_len
;
3457 di
->expansion
+= len
;
3458 return d_make_sub (di
, s
, len
);
3466 /* Initialize a growable string. */
3469 d_growable_string_init (struct d_growable_string
*dgs
, size_t estimate
)
3474 dgs
->allocation_failure
= 0;
3477 d_growable_string_resize (dgs
, estimate
);
3480 /* Grow a growable string to a given size. */
3483 d_growable_string_resize (struct d_growable_string
*dgs
, size_t need
)
3488 if (dgs
->allocation_failure
)
3491 /* Start allocation at two bytes to avoid any possibility of confusion
3492 with the special value of 1 used as a return in *palc to indicate
3493 allocation failures. */
3494 newalc
= dgs
->alc
> 0 ? dgs
->alc
: 2;
3495 while (newalc
< need
)
3498 newbuf
= (char *) realloc (dgs
->buf
, newalc
);
3505 dgs
->allocation_failure
= 1;
3512 /* Append a buffer to a growable string. */
3515 d_growable_string_append_buffer (struct d_growable_string
*dgs
,
3516 const char *s
, size_t l
)
3520 need
= dgs
->len
+ l
+ 1;
3521 if (need
> dgs
->alc
)
3522 d_growable_string_resize (dgs
, need
);
3524 if (dgs
->allocation_failure
)
3527 memcpy (dgs
->buf
+ dgs
->len
, s
, l
);
3528 dgs
->buf
[dgs
->len
+ l
] = '\0';
3532 /* Bridge growable strings to the callback mechanism. */
3535 d_growable_string_callback_adapter (const char *s
, size_t l
, void *opaque
)
3537 struct d_growable_string
*dgs
= (struct d_growable_string
*) opaque
;
3539 d_growable_string_append_buffer (dgs
, s
, l
);
3542 /* Initialize a print information structure. */
3545 d_print_init (struct d_print_info
*dpi
, demangle_callbackref callback
,
3549 dpi
->last_char
= '\0';
3550 dpi
->templates
= NULL
;
3551 dpi
->modifiers
= NULL
;
3552 dpi
->pack_index
= 0;
3553 dpi
->flush_count
= 0;
3555 dpi
->callback
= callback
;
3556 dpi
->opaque
= opaque
;
3558 dpi
->demangle_failure
= 0;
3561 /* Indicate that an error occurred during printing, and test for error. */
3564 d_print_error (struct d_print_info
*dpi
)
3566 dpi
->demangle_failure
= 1;
3570 d_print_saw_error (struct d_print_info
*dpi
)
3572 return dpi
->demangle_failure
!= 0;
3575 /* Flush buffered characters to the callback. */
3578 d_print_flush (struct d_print_info
*dpi
)
3580 dpi
->buf
[dpi
->len
] = '\0';
3581 dpi
->callback (dpi
->buf
, dpi
->len
, dpi
->opaque
);
3586 /* Append characters and buffers for printing. */
3589 d_append_char (struct d_print_info
*dpi
, char c
)
3591 if (dpi
->len
== sizeof (dpi
->buf
) - 1)
3592 d_print_flush (dpi
);
3594 dpi
->buf
[dpi
->len
++] = c
;
3599 d_append_buffer (struct d_print_info
*dpi
, const char *s
, size_t l
)
3603 for (i
= 0; i
< l
; i
++)
3604 d_append_char (dpi
, s
[i
]);
3608 d_append_string (struct d_print_info
*dpi
, const char *s
)
3610 d_append_buffer (dpi
, s
, strlen (s
));
3614 d_append_num (struct d_print_info
*dpi
, long l
)
3617 sprintf (buf
,"%ld", l
);
3618 d_append_string (dpi
, buf
);
3622 d_last_char (struct d_print_info
*dpi
)
3624 return dpi
->last_char
;
3627 /* Turn components into a human readable string. OPTIONS is the
3628 options bits passed to the demangler. DC is the tree to print.
3629 CALLBACK is a function to call to flush demangled string segments
3630 as they fill the intermediate buffer, and OPAQUE is a generalized
3631 callback argument. On success, this returns 1. On failure,
3632 it returns 0, indicating a bad parse. It does not use heap
3633 memory to build an output string, so cannot encounter memory
3634 allocation failure. */
3636 CP_STATIC_IF_GLIBCPP_V3
3638 cplus_demangle_print_callback (int options
,
3639 const struct demangle_component
*dc
,
3640 demangle_callbackref callback
, void *opaque
)
3642 struct d_print_info dpi
;
3644 d_print_init (&dpi
, callback
, opaque
);
3646 d_print_comp (&dpi
, options
, dc
);
3648 d_print_flush (&dpi
);
3650 return ! d_print_saw_error (&dpi
);
3653 /* Turn components into a human readable string. OPTIONS is the
3654 options bits passed to the demangler. DC is the tree to print.
3655 ESTIMATE is a guess at the length of the result. This returns a
3656 string allocated by malloc, or NULL on error. On success, this
3657 sets *PALC to the size of the allocated buffer. On failure, this
3658 sets *PALC to 0 for a bad parse, or to 1 for a memory allocation
3661 CP_STATIC_IF_GLIBCPP_V3
3663 cplus_demangle_print (int options
, const struct demangle_component
*dc
,
3664 int estimate
, size_t *palc
)
3666 struct d_growable_string dgs
;
3668 d_growable_string_init (&dgs
, estimate
);
3670 if (! cplus_demangle_print_callback (options
, dc
,
3671 d_growable_string_callback_adapter
,
3679 *palc
= dgs
.allocation_failure
? 1 : dgs
.alc
;
3683 /* Returns the I'th element of the template arglist ARGS, or NULL on
3686 static struct demangle_component
*
3687 d_index_template_argument (struct demangle_component
*args
, int i
)
3689 struct demangle_component
*a
;
3695 if (a
->type
!= DEMANGLE_COMPONENT_TEMPLATE_ARGLIST
)
3701 if (i
!= 0 || a
== NULL
)
3707 /* Returns the template argument from the current context indicated by DC,
3708 which is a DEMANGLE_COMPONENT_TEMPLATE_PARAM, or NULL. */
3710 static struct demangle_component
*
3711 d_lookup_template_argument (struct d_print_info
*dpi
,
3712 const struct demangle_component
*dc
)
3714 if (dpi
->templates
== NULL
)
3716 d_print_error (dpi
);
3720 return d_index_template_argument
3721 (d_right (dpi
->templates
->template_decl
),
3722 dc
->u
.s_number
.number
);
3725 /* Returns a template argument pack used in DC (any will do), or NULL. */
3727 static struct demangle_component
*
3728 d_find_pack (struct d_print_info
*dpi
,
3729 const struct demangle_component
*dc
)
3731 struct demangle_component
*a
;
3737 case DEMANGLE_COMPONENT_TEMPLATE_PARAM
:
3738 a
= d_lookup_template_argument (dpi
, dc
);
3739 if (a
&& a
->type
== DEMANGLE_COMPONENT_TEMPLATE_ARGLIST
)
3743 case DEMANGLE_COMPONENT_PACK_EXPANSION
:
3746 case DEMANGLE_COMPONENT_LAMBDA
:
3747 case DEMANGLE_COMPONENT_NAME
:
3748 case DEMANGLE_COMPONENT_OPERATOR
:
3749 case DEMANGLE_COMPONENT_BUILTIN_TYPE
:
3750 case DEMANGLE_COMPONENT_SUB_STD
:
3751 case DEMANGLE_COMPONENT_CHARACTER
:
3752 case DEMANGLE_COMPONENT_FUNCTION_PARAM
:
3753 case DEMANGLE_COMPONENT_UNNAMED_TYPE
:
3756 case DEMANGLE_COMPONENT_EXTENDED_OPERATOR
:
3757 return d_find_pack (dpi
, dc
->u
.s_extended_operator
.name
);
3758 case DEMANGLE_COMPONENT_CTOR
:
3759 return d_find_pack (dpi
, dc
->u
.s_ctor
.name
);
3760 case DEMANGLE_COMPONENT_DTOR
:
3761 return d_find_pack (dpi
, dc
->u
.s_dtor
.name
);
3764 a
= d_find_pack (dpi
, d_left (dc
));
3767 return d_find_pack (dpi
, d_right (dc
));
3771 /* Returns the length of the template argument pack DC. */
3774 d_pack_length (const struct demangle_component
*dc
)
3777 while (dc
&& dc
->type
== DEMANGLE_COMPONENT_TEMPLATE_ARGLIST
3778 && d_left (dc
) != NULL
)
3786 /* DC is a component of a mangled expression. Print it, wrapped in parens
3790 d_print_subexpr (struct d_print_info
*dpi
, int options
,
3791 const struct demangle_component
*dc
)
3794 if (dc
->type
== DEMANGLE_COMPONENT_NAME
3795 || dc
->type
== DEMANGLE_COMPONENT_QUAL_NAME
3796 || dc
->type
== DEMANGLE_COMPONENT_INITIALIZER_LIST
3797 || dc
->type
== DEMANGLE_COMPONENT_FUNCTION_PARAM
)
3800 d_append_char (dpi
, '(');
3801 d_print_comp (dpi
, options
, dc
);
3803 d_append_char (dpi
, ')');
3806 /* Subroutine to handle components. */
3809 d_print_comp (struct d_print_info
*dpi
, int options
,
3810 const struct demangle_component
*dc
)
3812 /* Magic variable to let reference smashing skip over the next modifier
3813 without needing to modify *dc. */
3814 const struct demangle_component
*mod_inner
= NULL
;
3818 d_print_error (dpi
);
3821 if (d_print_saw_error (dpi
))
3826 case DEMANGLE_COMPONENT_NAME
:
3827 if ((options
& DMGL_JAVA
) == 0)
3828 d_append_buffer (dpi
, dc
->u
.s_name
.s
, dc
->u
.s_name
.len
);
3830 d_print_java_identifier (dpi
, dc
->u
.s_name
.s
, dc
->u
.s_name
.len
);
3833 case DEMANGLE_COMPONENT_QUAL_NAME
:
3834 case DEMANGLE_COMPONENT_LOCAL_NAME
:
3835 d_print_comp (dpi
, options
, d_left (dc
));
3836 if ((options
& DMGL_JAVA
) == 0)
3837 d_append_string (dpi
, "::");
3839 d_append_char (dpi
, '.');
3840 d_print_comp (dpi
, options
, d_right (dc
));
3843 case DEMANGLE_COMPONENT_TYPED_NAME
:
3845 struct d_print_mod
*hold_modifiers
;
3846 struct demangle_component
*typed_name
;
3847 struct d_print_mod adpm
[4];
3849 struct d_print_template dpt
;
3851 /* Pass the name down to the type so that it can be printed in
3852 the right place for the type. We also have to pass down
3853 any CV-qualifiers, which apply to the this parameter. */
3854 hold_modifiers
= dpi
->modifiers
;
3857 typed_name
= d_left (dc
);
3858 while (typed_name
!= NULL
)
3860 if (i
>= sizeof adpm
/ sizeof adpm
[0])
3862 d_print_error (dpi
);
3866 adpm
[i
].next
= dpi
->modifiers
;
3867 dpi
->modifiers
= &adpm
[i
];
3868 adpm
[i
].mod
= typed_name
;
3869 adpm
[i
].printed
= 0;
3870 adpm
[i
].templates
= dpi
->templates
;
3873 if (typed_name
->type
!= DEMANGLE_COMPONENT_RESTRICT_THIS
3874 && typed_name
->type
!= DEMANGLE_COMPONENT_VOLATILE_THIS
3875 && typed_name
->type
!= DEMANGLE_COMPONENT_CONST_THIS
)
3878 typed_name
= d_left (typed_name
);
3881 if (typed_name
== NULL
)
3883 d_print_error (dpi
);
3887 /* If typed_name is a template, then it applies to the
3888 function type as well. */
3889 if (typed_name
->type
== DEMANGLE_COMPONENT_TEMPLATE
)
3891 dpt
.next
= dpi
->templates
;
3892 dpi
->templates
= &dpt
;
3893 dpt
.template_decl
= typed_name
;
3896 /* If typed_name is a DEMANGLE_COMPONENT_LOCAL_NAME, then
3897 there may be CV-qualifiers on its right argument which
3898 really apply here; this happens when parsing a class which
3899 is local to a function. */
3900 if (typed_name
->type
== DEMANGLE_COMPONENT_LOCAL_NAME
)
3902 struct demangle_component
*local_name
;
3904 local_name
= d_right (typed_name
);
3905 if (local_name
->type
== DEMANGLE_COMPONENT_DEFAULT_ARG
)
3906 local_name
= local_name
->u
.s_unary_num
.sub
;
3907 while (local_name
->type
== DEMANGLE_COMPONENT_RESTRICT_THIS
3908 || local_name
->type
== DEMANGLE_COMPONENT_VOLATILE_THIS
3909 || local_name
->type
== DEMANGLE_COMPONENT_CONST_THIS
)
3911 if (i
>= sizeof adpm
/ sizeof adpm
[0])
3913 d_print_error (dpi
);
3917 adpm
[i
] = adpm
[i
- 1];
3918 adpm
[i
].next
= &adpm
[i
- 1];
3919 dpi
->modifiers
= &adpm
[i
];
3921 adpm
[i
- 1].mod
= local_name
;
3922 adpm
[i
- 1].printed
= 0;
3923 adpm
[i
- 1].templates
= dpi
->templates
;
3926 local_name
= d_left (local_name
);
3930 d_print_comp (dpi
, options
, d_right (dc
));
3932 if (typed_name
->type
== DEMANGLE_COMPONENT_TEMPLATE
)
3933 dpi
->templates
= dpt
.next
;
3935 /* If the modifiers didn't get printed by the type, print them
3940 if (! adpm
[i
].printed
)
3942 d_append_char (dpi
, ' ');
3943 d_print_mod (dpi
, options
, adpm
[i
].mod
);
3947 dpi
->modifiers
= hold_modifiers
;
3952 case DEMANGLE_COMPONENT_TEMPLATE
:
3954 struct d_print_mod
*hold_dpm
;
3955 struct demangle_component
*dcl
;
3957 /* Don't push modifiers into a template definition. Doing so
3958 could give the wrong definition for a template argument.
3959 Instead, treat the template essentially as a name. */
3961 hold_dpm
= dpi
->modifiers
;
3962 dpi
->modifiers
= NULL
;
3966 if ((options
& DMGL_JAVA
) != 0
3967 && dcl
->type
== DEMANGLE_COMPONENT_NAME
3968 && dcl
->u
.s_name
.len
== 6
3969 && strncmp (dcl
->u
.s_name
.s
, "JArray", 6) == 0)
3971 /* Special-case Java arrays, so that JArray<TYPE> appears
3972 instead as TYPE[]. */
3974 d_print_comp (dpi
, options
, d_right (dc
));
3975 d_append_string (dpi
, "[]");
3979 d_print_comp (dpi
, options
, dcl
);
3980 if (d_last_char (dpi
) == '<')
3981 d_append_char (dpi
, ' ');
3982 d_append_char (dpi
, '<');
3983 d_print_comp (dpi
, options
, d_right (dc
));
3984 /* Avoid generating two consecutive '>' characters, to avoid
3985 the C++ syntactic ambiguity. */
3986 if (d_last_char (dpi
) == '>')
3987 d_append_char (dpi
, ' ');
3988 d_append_char (dpi
, '>');
3991 dpi
->modifiers
= hold_dpm
;
3996 case DEMANGLE_COMPONENT_TEMPLATE_PARAM
:
3998 struct d_print_template
*hold_dpt
;
3999 struct demangle_component
*a
= d_lookup_template_argument (dpi
, dc
);
4001 if (a
&& a
->type
== DEMANGLE_COMPONENT_TEMPLATE_ARGLIST
)
4002 a
= d_index_template_argument (a
, dpi
->pack_index
);
4006 d_print_error (dpi
);
4010 /* While processing this parameter, we need to pop the list of
4011 templates. This is because the template parameter may
4012 itself be a reference to a parameter of an outer
4015 hold_dpt
= dpi
->templates
;
4016 dpi
->templates
= hold_dpt
->next
;
4018 d_print_comp (dpi
, options
, a
);
4020 dpi
->templates
= hold_dpt
;
4025 case DEMANGLE_COMPONENT_CTOR
:
4026 d_print_comp (dpi
, options
, dc
->u
.s_ctor
.name
);
4029 case DEMANGLE_COMPONENT_DTOR
:
4030 d_append_char (dpi
, '~');
4031 d_print_comp (dpi
, options
, dc
->u
.s_dtor
.name
);
4034 case DEMANGLE_COMPONENT_VTABLE
:
4035 d_append_string (dpi
, "vtable for ");
4036 d_print_comp (dpi
, options
, d_left (dc
));
4039 case DEMANGLE_COMPONENT_VTT
:
4040 d_append_string (dpi
, "VTT for ");
4041 d_print_comp (dpi
, options
, d_left (dc
));
4044 case DEMANGLE_COMPONENT_CONSTRUCTION_VTABLE
:
4045 d_append_string (dpi
, "construction vtable for ");
4046 d_print_comp (dpi
, options
, d_left (dc
));
4047 d_append_string (dpi
, "-in-");
4048 d_print_comp (dpi
, options
, d_right (dc
));
4051 case DEMANGLE_COMPONENT_TYPEINFO
:
4052 d_append_string (dpi
, "typeinfo for ");
4053 d_print_comp (dpi
, options
, d_left (dc
));
4056 case DEMANGLE_COMPONENT_TYPEINFO_NAME
:
4057 d_append_string (dpi
, "typeinfo name for ");
4058 d_print_comp (dpi
, options
, d_left (dc
));
4061 case DEMANGLE_COMPONENT_TYPEINFO_FN
:
4062 d_append_string (dpi
, "typeinfo fn for ");
4063 d_print_comp (dpi
, options
, d_left (dc
));
4066 case DEMANGLE_COMPONENT_THUNK
:
4067 d_append_string (dpi
, "non-virtual thunk to ");
4068 d_print_comp (dpi
, options
, d_left (dc
));
4071 case DEMANGLE_COMPONENT_VIRTUAL_THUNK
:
4072 d_append_string (dpi
, "virtual thunk to ");
4073 d_print_comp (dpi
, options
, d_left (dc
));
4076 case DEMANGLE_COMPONENT_COVARIANT_THUNK
:
4077 d_append_string (dpi
, "covariant return thunk to ");
4078 d_print_comp (dpi
, options
, d_left (dc
));
4081 case DEMANGLE_COMPONENT_JAVA_CLASS
:
4082 d_append_string (dpi
, "java Class for ");
4083 d_print_comp (dpi
, options
, d_left (dc
));
4086 case DEMANGLE_COMPONENT_GUARD
:
4087 d_append_string (dpi
, "guard variable for ");
4088 d_print_comp (dpi
, options
, d_left (dc
));
4091 case DEMANGLE_COMPONENT_TLS_INIT
:
4092 d_append_string (dpi
, "TLS init function for ");
4093 d_print_comp (dpi
, options
, d_left (dc
));
4096 case DEMANGLE_COMPONENT_TLS_WRAPPER
:
4097 d_append_string (dpi
, "TLS wrapper function for ");
4098 d_print_comp (dpi
, options
, d_left (dc
));
4101 case DEMANGLE_COMPONENT_REFTEMP
:
4102 d_append_string (dpi
, "reference temporary #");
4103 d_print_comp (dpi
, options
, d_right (dc
));
4104 d_append_string (dpi
, " for ");
4105 d_print_comp (dpi
, options
, d_left (dc
));
4108 case DEMANGLE_COMPONENT_HIDDEN_ALIAS
:
4109 d_append_string (dpi
, "hidden alias for ");
4110 d_print_comp (dpi
, options
, d_left (dc
));
4113 case DEMANGLE_COMPONENT_TRANSACTION_CLONE
:
4114 d_append_string (dpi
, "transaction clone for ");
4115 d_print_comp (dpi
, options
, d_left (dc
));
4118 case DEMANGLE_COMPONENT_NONTRANSACTION_CLONE
:
4119 d_append_string (dpi
, "non-transaction clone for ");
4120 d_print_comp (dpi
, options
, d_left (dc
));
4123 case DEMANGLE_COMPONENT_SUB_STD
:
4124 d_append_buffer (dpi
, dc
->u
.s_string
.string
, dc
->u
.s_string
.len
);
4127 case DEMANGLE_COMPONENT_RESTRICT
:
4128 case DEMANGLE_COMPONENT_VOLATILE
:
4129 case DEMANGLE_COMPONENT_CONST
:
4131 struct d_print_mod
*pdpm
;
4133 /* When printing arrays, it's possible to have cases where the
4134 same CV-qualifier gets pushed on the stack multiple times.
4135 We only need to print it once. */
4137 for (pdpm
= dpi
->modifiers
; pdpm
!= NULL
; pdpm
= pdpm
->next
)
4139 if (! pdpm
->printed
)
4141 if (pdpm
->mod
->type
!= DEMANGLE_COMPONENT_RESTRICT
4142 && pdpm
->mod
->type
!= DEMANGLE_COMPONENT_VOLATILE
4143 && pdpm
->mod
->type
!= DEMANGLE_COMPONENT_CONST
)
4145 if (pdpm
->mod
->type
== dc
->type
)
4147 d_print_comp (dpi
, options
, d_left (dc
));
4155 case DEMANGLE_COMPONENT_REFERENCE
:
4156 case DEMANGLE_COMPONENT_RVALUE_REFERENCE
:
4158 /* Handle reference smashing: & + && = &. */
4159 const struct demangle_component
*sub
= d_left (dc
);
4160 if (sub
->type
== DEMANGLE_COMPONENT_TEMPLATE_PARAM
)
4162 struct demangle_component
*a
= d_lookup_template_argument (dpi
, sub
);
4163 if (a
&& a
->type
== DEMANGLE_COMPONENT_TEMPLATE_ARGLIST
)
4164 a
= d_index_template_argument (a
, dpi
->pack_index
);
4168 d_print_error (dpi
);
4175 if (sub
->type
== DEMANGLE_COMPONENT_REFERENCE
4176 || sub
->type
== dc
->type
)
4178 else if (sub
->type
== DEMANGLE_COMPONENT_RVALUE_REFERENCE
)
4179 mod_inner
= d_left (sub
);
4183 case DEMANGLE_COMPONENT_RESTRICT_THIS
:
4184 case DEMANGLE_COMPONENT_VOLATILE_THIS
:
4185 case DEMANGLE_COMPONENT_CONST_THIS
:
4186 case DEMANGLE_COMPONENT_VENDOR_TYPE_QUAL
:
4187 case DEMANGLE_COMPONENT_POINTER
:
4188 case DEMANGLE_COMPONENT_COMPLEX
:
4189 case DEMANGLE_COMPONENT_IMAGINARY
:
4192 /* We keep a list of modifiers on the stack. */
4193 struct d_print_mod dpm
;
4195 dpm
.next
= dpi
->modifiers
;
4196 dpi
->modifiers
= &dpm
;
4199 dpm
.templates
= dpi
->templates
;
4202 mod_inner
= d_left (dc
);
4204 d_print_comp (dpi
, options
, mod_inner
);
4206 /* If the modifier didn't get printed by the type, print it
4209 d_print_mod (dpi
, options
, dc
);
4211 dpi
->modifiers
= dpm
.next
;
4216 case DEMANGLE_COMPONENT_BUILTIN_TYPE
:
4217 if ((options
& DMGL_JAVA
) == 0)
4218 d_append_buffer (dpi
, dc
->u
.s_builtin
.type
->name
,
4219 dc
->u
.s_builtin
.type
->len
);
4221 d_append_buffer (dpi
, dc
->u
.s_builtin
.type
->java_name
,
4222 dc
->u
.s_builtin
.type
->java_len
);
4225 case DEMANGLE_COMPONENT_VENDOR_TYPE
:
4226 d_print_comp (dpi
, options
, d_left (dc
));
4229 case DEMANGLE_COMPONENT_FUNCTION_TYPE
:
4231 if ((options
& DMGL_RET_POSTFIX
) != 0)
4232 d_print_function_type (dpi
,
4233 options
& ~(DMGL_RET_POSTFIX
| DMGL_RET_DROP
),
4234 dc
, dpi
->modifiers
);
4236 /* Print return type if present */
4237 if (d_left (dc
) != NULL
&& (options
& DMGL_RET_POSTFIX
) != 0)
4238 d_print_comp (dpi
, options
& ~(DMGL_RET_POSTFIX
| DMGL_RET_DROP
),
4240 else if (d_left (dc
) != NULL
&& (options
& DMGL_RET_DROP
) == 0)
4242 struct d_print_mod dpm
;
4244 /* We must pass this type down as a modifier in order to
4245 print it in the right location. */
4246 dpm
.next
= dpi
->modifiers
;
4247 dpi
->modifiers
= &dpm
;
4250 dpm
.templates
= dpi
->templates
;
4252 d_print_comp (dpi
, options
& ~(DMGL_RET_POSTFIX
| DMGL_RET_DROP
),
4255 dpi
->modifiers
= dpm
.next
;
4260 /* In standard prefix notation, there is a space between the
4261 return type and the function signature. */
4262 if ((options
& DMGL_RET_POSTFIX
) == 0)
4263 d_append_char (dpi
, ' ');
4266 if ((options
& DMGL_RET_POSTFIX
) == 0)
4267 d_print_function_type (dpi
,
4268 options
& ~(DMGL_RET_POSTFIX
| DMGL_RET_DROP
),
4269 dc
, dpi
->modifiers
);
4274 case DEMANGLE_COMPONENT_ARRAY_TYPE
:
4276 struct d_print_mod
*hold_modifiers
;
4277 struct d_print_mod adpm
[4];
4279 struct d_print_mod
*pdpm
;
4281 /* We must pass this type down as a modifier in order to print
4282 multi-dimensional arrays correctly. If the array itself is
4283 CV-qualified, we act as though the element type were
4284 CV-qualified. We do this by copying the modifiers down
4285 rather than fiddling pointers, so that we don't wind up
4286 with a d_print_mod higher on the stack pointing into our
4287 stack frame after we return. */
4289 hold_modifiers
= dpi
->modifiers
;
4291 adpm
[0].next
= hold_modifiers
;
4292 dpi
->modifiers
= &adpm
[0];
4294 adpm
[0].printed
= 0;
4295 adpm
[0].templates
= dpi
->templates
;
4298 pdpm
= hold_modifiers
;
4300 && (pdpm
->mod
->type
== DEMANGLE_COMPONENT_RESTRICT
4301 || pdpm
->mod
->type
== DEMANGLE_COMPONENT_VOLATILE
4302 || pdpm
->mod
->type
== DEMANGLE_COMPONENT_CONST
))
4304 if (! pdpm
->printed
)
4306 if (i
>= sizeof adpm
/ sizeof adpm
[0])
4308 d_print_error (dpi
);
4313 adpm
[i
].next
= dpi
->modifiers
;
4314 dpi
->modifiers
= &adpm
[i
];
4322 d_print_comp (dpi
, options
, d_right (dc
));
4324 dpi
->modifiers
= hold_modifiers
;
4326 if (adpm
[0].printed
)
4332 d_print_mod (dpi
, options
, adpm
[i
].mod
);
4335 d_print_array_type (dpi
, options
, dc
, dpi
->modifiers
);
4340 case DEMANGLE_COMPONENT_PTRMEM_TYPE
:
4341 case DEMANGLE_COMPONENT_VECTOR_TYPE
:
4343 struct d_print_mod dpm
;
4345 dpm
.next
= dpi
->modifiers
;
4346 dpi
->modifiers
= &dpm
;
4349 dpm
.templates
= dpi
->templates
;
4351 d_print_comp (dpi
, options
, d_right (dc
));
4353 /* If the modifier didn't get printed by the type, print it
4356 d_print_mod (dpi
, options
, dc
);
4358 dpi
->modifiers
= dpm
.next
;
4363 case DEMANGLE_COMPONENT_FIXED_TYPE
:
4364 if (dc
->u
.s_fixed
.sat
)
4365 d_append_string (dpi
, "_Sat ");
4366 /* Don't print "int _Accum". */
4367 if (dc
->u
.s_fixed
.length
->u
.s_builtin
.type
4368 != &cplus_demangle_builtin_types
['i'-'a'])
4370 d_print_comp (dpi
, options
, dc
->u
.s_fixed
.length
);
4371 d_append_char (dpi
, ' ');
4373 if (dc
->u
.s_fixed
.accum
)
4374 d_append_string (dpi
, "_Accum");
4376 d_append_string (dpi
, "_Fract");
4379 case DEMANGLE_COMPONENT_ARGLIST
:
4380 case DEMANGLE_COMPONENT_TEMPLATE_ARGLIST
:
4381 if (d_left (dc
) != NULL
)
4382 d_print_comp (dpi
, options
, d_left (dc
));
4383 if (d_right (dc
) != NULL
)
4386 unsigned long int flush_count
;
4387 /* Make sure ", " isn't flushed by d_append_string, otherwise
4388 dpi->len -= 2 wouldn't work. */
4389 if (dpi
->len
>= sizeof (dpi
->buf
) - 2)
4390 d_print_flush (dpi
);
4391 d_append_string (dpi
, ", ");
4393 flush_count
= dpi
->flush_count
;
4394 d_print_comp (dpi
, options
, d_right (dc
));
4395 /* If that didn't print anything (which can happen with empty
4396 template argument packs), remove the comma and space. */
4397 if (dpi
->flush_count
== flush_count
&& dpi
->len
== len
)
4402 case DEMANGLE_COMPONENT_INITIALIZER_LIST
:
4404 struct demangle_component
*type
= d_left (dc
);
4405 struct demangle_component
*list
= d_right (dc
);
4408 d_print_comp (dpi
, options
, type
);
4409 d_append_char (dpi
, '{');
4410 d_print_comp (dpi
, options
, list
);
4411 d_append_char (dpi
, '}');
4415 case DEMANGLE_COMPONENT_OPERATOR
:
4417 const struct demangle_operator_info
*op
= dc
->u
.s_operator
.op
;
4420 d_append_string (dpi
, "operator");
4421 /* Add a space before new/delete. */
4422 if (IS_LOWER (op
->name
[0]))
4423 d_append_char (dpi
, ' ');
4424 /* Omit a trailing space. */
4425 if (op
->name
[len
-1] == ' ')
4427 d_append_buffer (dpi
, op
->name
, len
);
4431 case DEMANGLE_COMPONENT_EXTENDED_OPERATOR
:
4432 d_append_string (dpi
, "operator ");
4433 d_print_comp (dpi
, options
, dc
->u
.s_extended_operator
.name
);
4436 case DEMANGLE_COMPONENT_CAST
:
4437 d_append_string (dpi
, "operator ");
4438 d_print_cast (dpi
, options
, dc
);
4441 case DEMANGLE_COMPONENT_NULLARY
:
4442 d_print_expr_op (dpi
, options
, d_left (dc
));
4445 case DEMANGLE_COMPONENT_UNARY
:
4447 struct demangle_component
*op
= d_left (dc
);
4448 struct demangle_component
*operand
= d_right (dc
);
4449 const char *code
= NULL
;
4451 if (op
->type
== DEMANGLE_COMPONENT_OPERATOR
)
4453 code
= op
->u
.s_operator
.op
->code
;
4454 if (!strcmp (code
, "ad"))
4456 /* Don't print the argument list for the address of a
4458 if (operand
->type
== DEMANGLE_COMPONENT_TYPED_NAME
4459 && d_left (operand
)->type
== DEMANGLE_COMPONENT_QUAL_NAME
4460 && d_right (operand
)->type
== DEMANGLE_COMPONENT_FUNCTION_TYPE
)
4461 operand
= d_left (operand
);
4463 if (operand
->type
== DEMANGLE_COMPONENT_BINARY_ARGS
)
4465 /* This indicates a suffix operator. */
4466 operand
= d_left (operand
);
4467 d_print_subexpr (dpi
, options
, operand
);
4468 d_print_expr_op (dpi
, options
, op
);
4473 if (op
->type
!= DEMANGLE_COMPONENT_CAST
)
4474 d_print_expr_op (dpi
, options
, op
);
4477 d_append_char (dpi
, '(');
4478 d_print_cast (dpi
, options
, op
);
4479 d_append_char (dpi
, ')');
4481 if (code
&& !strcmp (code
, "gs"))
4482 /* Avoid parens after '::'. */
4483 d_print_comp (dpi
, options
, operand
);
4484 else if (code
&& !strcmp (code
, "st"))
4485 /* Always print parens for sizeof (type). */
4487 d_append_char (dpi
, '(');
4488 d_print_comp (dpi
, options
, operand
);
4489 d_append_char (dpi
, ')');
4492 d_print_subexpr (dpi
, options
, operand
);
4496 case DEMANGLE_COMPONENT_BINARY
:
4497 if (d_right (dc
)->type
!= DEMANGLE_COMPONENT_BINARY_ARGS
)
4499 d_print_error (dpi
);
4503 if (op_is_new_cast (d_left (dc
)))
4505 d_print_expr_op (dpi
, options
, d_left (dc
));
4506 d_append_char (dpi
, '<');
4507 d_print_comp (dpi
, options
, d_left (d_right (dc
)));
4508 d_append_string (dpi
, ">(");
4509 d_print_comp (dpi
, options
, d_right (d_right (dc
)));
4510 d_append_char (dpi
, ')');
4514 /* We wrap an expression which uses the greater-than operator in
4515 an extra layer of parens so that it does not get confused
4516 with the '>' which ends the template parameters. */
4517 if (d_left (dc
)->type
== DEMANGLE_COMPONENT_OPERATOR
4518 && d_left (dc
)->u
.s_operator
.op
->len
== 1
4519 && d_left (dc
)->u
.s_operator
.op
->name
[0] == '>')
4520 d_append_char (dpi
, '(');
4522 if (strcmp (d_left (dc
)->u
.s_operator
.op
->code
, "cl") == 0
4523 && d_left (d_right (dc
))->type
== DEMANGLE_COMPONENT_TYPED_NAME
)
4525 /* Function call used in an expression should not have printed types
4526 of the function arguments. Values of the function arguments still
4527 get printed below. */
4529 const struct demangle_component
*func
= d_left (d_right (dc
));
4531 if (d_right (func
)->type
!= DEMANGLE_COMPONENT_FUNCTION_TYPE
)
4532 d_print_error (dpi
);
4533 d_print_subexpr (dpi
, options
, d_left (func
));
4536 d_print_subexpr (dpi
, options
, d_left (d_right (dc
)));
4537 if (strcmp (d_left (dc
)->u
.s_operator
.op
->code
, "ix") == 0)
4539 d_append_char (dpi
, '[');
4540 d_print_comp (dpi
, options
, d_right (d_right (dc
)));
4541 d_append_char (dpi
, ']');
4545 if (strcmp (d_left (dc
)->u
.s_operator
.op
->code
, "cl") != 0)
4546 d_print_expr_op (dpi
, options
, d_left (dc
));
4547 d_print_subexpr (dpi
, options
, d_right (d_right (dc
)));
4550 if (d_left (dc
)->type
== DEMANGLE_COMPONENT_OPERATOR
4551 && d_left (dc
)->u
.s_operator
.op
->len
== 1
4552 && d_left (dc
)->u
.s_operator
.op
->name
[0] == '>')
4553 d_append_char (dpi
, ')');
4557 case DEMANGLE_COMPONENT_BINARY_ARGS
:
4558 /* We should only see this as part of DEMANGLE_COMPONENT_BINARY. */
4559 d_print_error (dpi
);
4562 case DEMANGLE_COMPONENT_TRINARY
:
4563 if (d_right (dc
)->type
!= DEMANGLE_COMPONENT_TRINARY_ARG1
4564 || d_right (d_right (dc
))->type
!= DEMANGLE_COMPONENT_TRINARY_ARG2
)
4566 d_print_error (dpi
);
4570 struct demangle_component
*op
= d_left (dc
);
4571 struct demangle_component
*first
= d_left (d_right (dc
));
4572 struct demangle_component
*second
= d_left (d_right (d_right (dc
)));
4573 struct demangle_component
*third
= d_right (d_right (d_right (dc
)));
4575 if (!strcmp (op
->u
.s_operator
.op
->code
, "qu"))
4577 d_print_subexpr (dpi
, options
, first
);
4578 d_print_expr_op (dpi
, options
, op
);
4579 d_print_subexpr (dpi
, options
, second
);
4580 d_append_string (dpi
, " : ");
4581 d_print_subexpr (dpi
, options
, third
);
4585 d_append_string (dpi
, "new ");
4586 if (d_left (first
) != NULL
)
4588 d_print_subexpr (dpi
, options
, first
);
4589 d_append_char (dpi
, ' ');
4591 d_print_comp (dpi
, options
, second
);
4593 d_print_subexpr (dpi
, options
, third
);
4598 case DEMANGLE_COMPONENT_TRINARY_ARG1
:
4599 case DEMANGLE_COMPONENT_TRINARY_ARG2
:
4600 /* We should only see these are part of DEMANGLE_COMPONENT_TRINARY. */
4601 d_print_error (dpi
);
4604 case DEMANGLE_COMPONENT_LITERAL
:
4605 case DEMANGLE_COMPONENT_LITERAL_NEG
:
4607 enum d_builtin_type_print tp
;
4609 /* For some builtin types, produce simpler output. */
4610 tp
= D_PRINT_DEFAULT
;
4611 if (d_left (dc
)->type
== DEMANGLE_COMPONENT_BUILTIN_TYPE
)
4613 tp
= d_left (dc
)->u
.s_builtin
.type
->print
;
4617 case D_PRINT_UNSIGNED
:
4619 case D_PRINT_UNSIGNED_LONG
:
4620 case D_PRINT_LONG_LONG
:
4621 case D_PRINT_UNSIGNED_LONG_LONG
:
4622 if (d_right (dc
)->type
== DEMANGLE_COMPONENT_NAME
)
4624 if (dc
->type
== DEMANGLE_COMPONENT_LITERAL_NEG
)
4625 d_append_char (dpi
, '-');
4626 d_print_comp (dpi
, options
, d_right (dc
));
4631 case D_PRINT_UNSIGNED
:
4632 d_append_char (dpi
, 'u');
4635 d_append_char (dpi
, 'l');
4637 case D_PRINT_UNSIGNED_LONG
:
4638 d_append_string (dpi
, "ul");
4640 case D_PRINT_LONG_LONG
:
4641 d_append_string (dpi
, "ll");
4643 case D_PRINT_UNSIGNED_LONG_LONG
:
4644 d_append_string (dpi
, "ull");
4652 if (d_right (dc
)->type
== DEMANGLE_COMPONENT_NAME
4653 && d_right (dc
)->u
.s_name
.len
== 1
4654 && dc
->type
== DEMANGLE_COMPONENT_LITERAL
)
4656 switch (d_right (dc
)->u
.s_name
.s
[0])
4659 d_append_string (dpi
, "false");
4662 d_append_string (dpi
, "true");
4675 d_append_char (dpi
, '(');
4676 d_print_comp (dpi
, options
, d_left (dc
));
4677 d_append_char (dpi
, ')');
4678 if (dc
->type
== DEMANGLE_COMPONENT_LITERAL_NEG
)
4679 d_append_char (dpi
, '-');
4680 if (tp
== D_PRINT_FLOAT
)
4681 d_append_char (dpi
, '[');
4682 d_print_comp (dpi
, options
, d_right (dc
));
4683 if (tp
== D_PRINT_FLOAT
)
4684 d_append_char (dpi
, ']');
4688 case DEMANGLE_COMPONENT_NUMBER
:
4689 d_append_num (dpi
, dc
->u
.s_number
.number
);
4692 case DEMANGLE_COMPONENT_JAVA_RESOURCE
:
4693 d_append_string (dpi
, "java resource ");
4694 d_print_comp (dpi
, options
, d_left (dc
));
4697 case DEMANGLE_COMPONENT_COMPOUND_NAME
:
4698 d_print_comp (dpi
, options
, d_left (dc
));
4699 d_print_comp (dpi
, options
, d_right (dc
));
4702 case DEMANGLE_COMPONENT_CHARACTER
:
4703 d_append_char (dpi
, dc
->u
.s_character
.character
);
4706 case DEMANGLE_COMPONENT_DECLTYPE
:
4707 d_append_string (dpi
, "decltype (");
4708 d_print_comp (dpi
, options
, d_left (dc
));
4709 d_append_char (dpi
, ')');
4712 case DEMANGLE_COMPONENT_PACK_EXPANSION
:
4716 struct demangle_component
*a
= d_find_pack (dpi
, d_left (dc
));
4719 /* d_find_pack won't find anything if the only packs involved
4720 in this expansion are function parameter packs; in that
4721 case, just print the pattern and "...". */
4722 d_print_subexpr (dpi
, options
, d_left (dc
));
4723 d_append_string (dpi
, "...");
4727 len
= d_pack_length (a
);
4729 for (i
= 0; i
< len
; ++i
)
4731 dpi
->pack_index
= i
;
4732 d_print_comp (dpi
, options
, dc
);
4734 d_append_string (dpi
, ", ");
4739 case DEMANGLE_COMPONENT_FUNCTION_PARAM
:
4741 long num
= dc
->u
.s_number
.number
;
4743 d_append_string (dpi
, "this");
4746 d_append_string (dpi
, "{parm#");
4747 d_append_num (dpi
, num
);
4748 d_append_char (dpi
, '}');
4753 case DEMANGLE_COMPONENT_GLOBAL_CONSTRUCTORS
:
4754 d_append_string (dpi
, "global constructors keyed to ");
4755 d_print_comp (dpi
, options
, dc
->u
.s_binary
.left
);
4758 case DEMANGLE_COMPONENT_GLOBAL_DESTRUCTORS
:
4759 d_append_string (dpi
, "global destructors keyed to ");
4760 d_print_comp (dpi
, options
, dc
->u
.s_binary
.left
);
4763 case DEMANGLE_COMPONENT_LAMBDA
:
4764 d_append_string (dpi
, "{lambda(");
4765 d_print_comp (dpi
, options
, dc
->u
.s_unary_num
.sub
);
4766 d_append_string (dpi
, ")#");
4767 d_append_num (dpi
, dc
->u
.s_unary_num
.num
+ 1);
4768 d_append_char (dpi
, '}');
4771 case DEMANGLE_COMPONENT_UNNAMED_TYPE
:
4772 d_append_string (dpi
, "{unnamed type#");
4773 d_append_num (dpi
, dc
->u
.s_number
.number
+ 1);
4774 d_append_char (dpi
, '}');
4777 case DEMANGLE_COMPONENT_CLONE
:
4778 d_print_comp (dpi
, options
, d_left (dc
));
4779 d_append_string (dpi
, " [clone ");
4780 d_print_comp (dpi
, options
, d_right (dc
));
4781 d_append_char (dpi
, ']');
4785 d_print_error (dpi
);
4790 /* Print a Java dentifier. For Java we try to handle encoded extended
4791 Unicode characters. The C++ ABI doesn't mention Unicode encoding,
4792 so we don't it for C++. Characters are encoded as
4796 d_print_java_identifier (struct d_print_info
*dpi
, const char *name
, int len
)
4802 for (p
= name
; p
< end
; ++p
)
4813 for (q
= p
+ 3; q
< end
; ++q
)
4819 else if (*q
>= 'A' && *q
<= 'F')
4820 dig
= *q
- 'A' + 10;
4821 else if (*q
>= 'a' && *q
<= 'f')
4822 dig
= *q
- 'a' + 10;
4828 /* If the Unicode character is larger than 256, we don't try
4829 to deal with it here. FIXME. */
4830 if (q
< end
&& *q
== '_' && c
< 256)
4832 d_append_char (dpi
, c
);
4838 d_append_char (dpi
, *p
);
4842 /* Print a list of modifiers. SUFFIX is 1 if we are printing
4843 qualifiers on this after printing a function. */
4846 d_print_mod_list (struct d_print_info
*dpi
, int options
,
4847 struct d_print_mod
*mods
, int suffix
)
4849 struct d_print_template
*hold_dpt
;
4851 if (mods
== NULL
|| d_print_saw_error (dpi
))
4856 && (mods
->mod
->type
== DEMANGLE_COMPONENT_RESTRICT_THIS
4857 || mods
->mod
->type
== DEMANGLE_COMPONENT_VOLATILE_THIS
4858 || mods
->mod
->type
== DEMANGLE_COMPONENT_CONST_THIS
)))
4860 d_print_mod_list (dpi
, options
, mods
->next
, suffix
);
4866 hold_dpt
= dpi
->templates
;
4867 dpi
->templates
= mods
->templates
;
4869 if (mods
->mod
->type
== DEMANGLE_COMPONENT_FUNCTION_TYPE
)
4871 d_print_function_type (dpi
, options
, mods
->mod
, mods
->next
);
4872 dpi
->templates
= hold_dpt
;
4875 else if (mods
->mod
->type
== DEMANGLE_COMPONENT_ARRAY_TYPE
)
4877 d_print_array_type (dpi
, options
, mods
->mod
, mods
->next
);
4878 dpi
->templates
= hold_dpt
;
4881 else if (mods
->mod
->type
== DEMANGLE_COMPONENT_LOCAL_NAME
)
4883 struct d_print_mod
*hold_modifiers
;
4884 struct demangle_component
*dc
;
4886 /* When this is on the modifier stack, we have pulled any
4887 qualifiers off the right argument already. Otherwise, we
4888 print it as usual, but don't let the left argument see any
4891 hold_modifiers
= dpi
->modifiers
;
4892 dpi
->modifiers
= NULL
;
4893 d_print_comp (dpi
, options
, d_left (mods
->mod
));
4894 dpi
->modifiers
= hold_modifiers
;
4896 if ((options
& DMGL_JAVA
) == 0)
4897 d_append_string (dpi
, "::");
4899 d_append_char (dpi
, '.');
4901 dc
= d_right (mods
->mod
);
4903 if (dc
->type
== DEMANGLE_COMPONENT_DEFAULT_ARG
)
4905 d_append_string (dpi
, "{default arg#");
4906 d_append_num (dpi
, dc
->u
.s_unary_num
.num
+ 1);
4907 d_append_string (dpi
, "}::");
4908 dc
= dc
->u
.s_unary_num
.sub
;
4911 while (dc
->type
== DEMANGLE_COMPONENT_RESTRICT_THIS
4912 || dc
->type
== DEMANGLE_COMPONENT_VOLATILE_THIS
4913 || dc
->type
== DEMANGLE_COMPONENT_CONST_THIS
)
4916 d_print_comp (dpi
, options
, dc
);
4918 dpi
->templates
= hold_dpt
;
4922 d_print_mod (dpi
, options
, mods
->mod
);
4924 dpi
->templates
= hold_dpt
;
4926 d_print_mod_list (dpi
, options
, mods
->next
, suffix
);
4929 /* Print a modifier. */
4932 d_print_mod (struct d_print_info
*dpi
, int options
,
4933 const struct demangle_component
*mod
)
4937 case DEMANGLE_COMPONENT_RESTRICT
:
4938 case DEMANGLE_COMPONENT_RESTRICT_THIS
:
4939 d_append_string (dpi
, " restrict");
4941 case DEMANGLE_COMPONENT_VOLATILE
:
4942 case DEMANGLE_COMPONENT_VOLATILE_THIS
:
4943 d_append_string (dpi
, " volatile");
4945 case DEMANGLE_COMPONENT_CONST
:
4946 case DEMANGLE_COMPONENT_CONST_THIS
:
4947 d_append_string (dpi
, " const");
4949 case DEMANGLE_COMPONENT_VENDOR_TYPE_QUAL
:
4950 d_append_char (dpi
, ' ');
4951 d_print_comp (dpi
, options
, d_right (mod
));
4953 case DEMANGLE_COMPONENT_POINTER
:
4954 /* There is no pointer symbol in Java. */
4955 if ((options
& DMGL_JAVA
) == 0)
4956 d_append_char (dpi
, '*');
4958 case DEMANGLE_COMPONENT_REFERENCE
:
4959 d_append_char (dpi
, '&');
4961 case DEMANGLE_COMPONENT_RVALUE_REFERENCE
:
4962 d_append_string (dpi
, "&&");
4964 case DEMANGLE_COMPONENT_COMPLEX
:
4965 d_append_string (dpi
, "complex ");
4967 case DEMANGLE_COMPONENT_IMAGINARY
:
4968 d_append_string (dpi
, "imaginary ");
4970 case DEMANGLE_COMPONENT_PTRMEM_TYPE
:
4971 if (d_last_char (dpi
) != '(')
4972 d_append_char (dpi
, ' ');
4973 d_print_comp (dpi
, options
, d_left (mod
));
4974 d_append_string (dpi
, "::*");
4976 case DEMANGLE_COMPONENT_TYPED_NAME
:
4977 d_print_comp (dpi
, options
, d_left (mod
));
4979 case DEMANGLE_COMPONENT_VECTOR_TYPE
:
4980 d_append_string (dpi
, " __vector(");
4981 d_print_comp (dpi
, options
, d_left (mod
));
4982 d_append_char (dpi
, ')');
4986 /* Otherwise, we have something that won't go back on the
4987 modifier stack, so we can just print it. */
4988 d_print_comp (dpi
, options
, mod
);
4993 /* Print a function type, except for the return type. */
4996 d_print_function_type (struct d_print_info
*dpi
, int options
,
4997 const struct demangle_component
*dc
,
4998 struct d_print_mod
*mods
)
5002 struct d_print_mod
*p
;
5003 struct d_print_mod
*hold_modifiers
;
5007 for (p
= mods
; p
!= NULL
; p
= p
->next
)
5012 switch (p
->mod
->type
)
5014 case DEMANGLE_COMPONENT_POINTER
:
5015 case DEMANGLE_COMPONENT_REFERENCE
:
5016 case DEMANGLE_COMPONENT_RVALUE_REFERENCE
:
5019 case DEMANGLE_COMPONENT_RESTRICT
:
5020 case DEMANGLE_COMPONENT_VOLATILE
:
5021 case DEMANGLE_COMPONENT_CONST
:
5022 case DEMANGLE_COMPONENT_VENDOR_TYPE_QUAL
:
5023 case DEMANGLE_COMPONENT_COMPLEX
:
5024 case DEMANGLE_COMPONENT_IMAGINARY
:
5025 case DEMANGLE_COMPONENT_PTRMEM_TYPE
:
5029 case DEMANGLE_COMPONENT_RESTRICT_THIS
:
5030 case DEMANGLE_COMPONENT_VOLATILE_THIS
:
5031 case DEMANGLE_COMPONENT_CONST_THIS
:
5044 if (d_last_char (dpi
) != '('
5045 && d_last_char (dpi
) != '*')
5048 if (need_space
&& d_last_char (dpi
) != ' ')
5049 d_append_char (dpi
, ' ');
5050 d_append_char (dpi
, '(');
5053 hold_modifiers
= dpi
->modifiers
;
5054 dpi
->modifiers
= NULL
;
5056 d_print_mod_list (dpi
, options
, mods
, 0);
5059 d_append_char (dpi
, ')');
5061 d_append_char (dpi
, '(');
5063 if (d_right (dc
) != NULL
)
5064 d_print_comp (dpi
, options
, d_right (dc
));
5066 d_append_char (dpi
, ')');
5068 d_print_mod_list (dpi
, options
, mods
, 1);
5070 dpi
->modifiers
= hold_modifiers
;
5073 /* Print an array type, except for the element type. */
5076 d_print_array_type (struct d_print_info
*dpi
, int options
,
5077 const struct demangle_component
*dc
,
5078 struct d_print_mod
*mods
)
5086 struct d_print_mod
*p
;
5089 for (p
= mods
; p
!= NULL
; p
= p
->next
)
5093 if (p
->mod
->type
== DEMANGLE_COMPONENT_ARRAY_TYPE
)
5108 d_append_string (dpi
, " (");
5110 d_print_mod_list (dpi
, options
, mods
, 0);
5113 d_append_char (dpi
, ')');
5117 d_append_char (dpi
, ' ');
5119 d_append_char (dpi
, '[');
5121 if (d_left (dc
) != NULL
)
5122 d_print_comp (dpi
, options
, d_left (dc
));
5124 d_append_char (dpi
, ']');
5127 /* Print an operator in an expression. */
5130 d_print_expr_op (struct d_print_info
*dpi
, int options
,
5131 const struct demangle_component
*dc
)
5133 if (dc
->type
== DEMANGLE_COMPONENT_OPERATOR
)
5134 d_append_buffer (dpi
, dc
->u
.s_operator
.op
->name
,
5135 dc
->u
.s_operator
.op
->len
);
5137 d_print_comp (dpi
, options
, dc
);
5143 d_print_cast (struct d_print_info
*dpi
, int options
,
5144 const struct demangle_component
*dc
)
5146 if (d_left (dc
)->type
!= DEMANGLE_COMPONENT_TEMPLATE
)
5147 d_print_comp (dpi
, options
, d_left (dc
));
5150 struct d_print_mod
*hold_dpm
;
5151 struct d_print_template dpt
;
5153 /* It appears that for a templated cast operator, we need to put
5154 the template parameters in scope for the operator name, but
5155 not for the parameters. The effect is that we need to handle
5156 the template printing here. */
5158 hold_dpm
= dpi
->modifiers
;
5159 dpi
->modifiers
= NULL
;
5161 dpt
.next
= dpi
->templates
;
5162 dpi
->templates
= &dpt
;
5163 dpt
.template_decl
= d_left (dc
);
5165 d_print_comp (dpi
, options
, d_left (d_left (dc
)));
5167 dpi
->templates
= dpt
.next
;
5169 if (d_last_char (dpi
) == '<')
5170 d_append_char (dpi
, ' ');
5171 d_append_char (dpi
, '<');
5172 d_print_comp (dpi
, options
, d_right (d_left (dc
)));
5173 /* Avoid generating two consecutive '>' characters, to avoid
5174 the C++ syntactic ambiguity. */
5175 if (d_last_char (dpi
) == '>')
5176 d_append_char (dpi
, ' ');
5177 d_append_char (dpi
, '>');
5179 dpi
->modifiers
= hold_dpm
;
5183 /* Initialize the information structure we use to pass around
5186 CP_STATIC_IF_GLIBCPP_V3
5188 cplus_demangle_init_info (const char *mangled
, int options
, size_t len
,
5192 di
->send
= mangled
+ len
;
5193 di
->options
= options
;
5197 /* We can not need more components than twice the number of chars in
5198 the mangled string. Most components correspond directly to
5199 chars, but the ARGLIST types are exceptions. */
5200 di
->num_comps
= 2 * len
;
5203 /* Similarly, we can not need more substitutions than there are
5204 chars in the mangled string. */
5209 di
->last_name
= NULL
;
5214 /* Internal implementation for the demangler. If MANGLED is a g++ v3 ABI
5215 mangled name, return strings in repeated callback giving the demangled
5216 name. OPTIONS is the usual libiberty demangler options. On success,
5217 this returns 1. On failure, returns 0. */
5220 d_demangle_callback (const char *mangled
, int options
,
5221 demangle_callbackref callback
, void *opaque
)
5232 struct demangle_component
*dc
;
5235 if (mangled
[0] == '_' && mangled
[1] == 'Z')
5237 else if (strncmp (mangled
, "_GLOBAL_", 8) == 0
5238 && (mangled
[8] == '.' || mangled
[8] == '_' || mangled
[8] == '$')
5239 && (mangled
[9] == 'D' || mangled
[9] == 'I')
5240 && mangled
[10] == '_')
5241 type
= mangled
[9] == 'I' ? DCT_GLOBAL_CTORS
: DCT_GLOBAL_DTORS
;
5244 if ((options
& DMGL_TYPES
) == 0)
5249 cplus_demangle_init_info (mangled
, options
, strlen (mangled
), &di
);
5252 #ifdef CP_DYNAMIC_ARRAYS
5253 __extension__
struct demangle_component comps
[di
.num_comps
];
5254 __extension__
struct demangle_component
*subs
[di
.num_subs
];
5259 di
.comps
= alloca (di
.num_comps
* sizeof (*di
.comps
));
5260 di
.subs
= alloca (di
.num_subs
* sizeof (*di
.subs
));
5266 dc
= cplus_demangle_type (&di
);
5269 dc
= cplus_demangle_mangled_name (&di
, 1);
5271 case DCT_GLOBAL_CTORS
:
5272 case DCT_GLOBAL_DTORS
:
5273 d_advance (&di
, 11);
5274 dc
= d_make_comp (&di
,
5275 (type
== DCT_GLOBAL_CTORS
5276 ? DEMANGLE_COMPONENT_GLOBAL_CONSTRUCTORS
5277 : DEMANGLE_COMPONENT_GLOBAL_DESTRUCTORS
),
5278 d_make_demangle_mangled_name (&di
, d_str (&di
)),
5280 d_advance (&di
, strlen (d_str (&di
)));
5284 /* If DMGL_PARAMS is set, then if we didn't consume the entire
5285 mangled string, then we didn't successfully demangle it. If
5286 DMGL_PARAMS is not set, we didn't look at the trailing
5288 if (((options
& DMGL_PARAMS
) != 0) && d_peek_char (&di
) != '\0')
5291 #ifdef CP_DEMANGLE_DEBUG
5295 status
= (dc
!= NULL
)
5296 ? cplus_demangle_print_callback (options
, dc
, callback
, opaque
)
5303 /* Entry point for the demangler. If MANGLED is a g++ v3 ABI mangled
5304 name, return a buffer allocated with malloc holding the demangled
5305 name. OPTIONS is the usual libiberty demangler options. On
5306 success, this sets *PALC to the allocated size of the returned
5307 buffer. On failure, this sets *PALC to 0 for a bad name, or 1 for
5308 a memory allocation failure, and returns NULL. */
5311 d_demangle (const char *mangled
, int options
, size_t *palc
)
5313 struct d_growable_string dgs
;
5316 d_growable_string_init (&dgs
, 0);
5318 status
= d_demangle_callback (mangled
, options
,
5319 d_growable_string_callback_adapter
, &dgs
);
5327 *palc
= dgs
.allocation_failure
? 1 : dgs
.alc
;
5331 #if defined(IN_LIBGCC2) || defined(IN_GLIBCPP_V3)
5333 extern char *__cxa_demangle (const char *, char *, size_t *, int *);
5335 /* ia64 ABI-mandated entry point in the C++ runtime library for
5336 performing demangling. MANGLED_NAME is a NUL-terminated character
5337 string containing the name to be demangled.
5339 OUTPUT_BUFFER is a region of memory, allocated with malloc, of
5340 *LENGTH bytes, into which the demangled name is stored. If
5341 OUTPUT_BUFFER is not long enough, it is expanded using realloc.
5342 OUTPUT_BUFFER may instead be NULL; in that case, the demangled name
5343 is placed in a region of memory allocated with malloc.
5345 If LENGTH is non-NULL, the length of the buffer containing the
5346 demangled name, is placed in *LENGTH.
5348 The return value is a pointer to the start of the NUL-terminated
5349 demangled name, or NULL if the demangling fails. The caller is
5350 responsible for deallocating this memory using free.
5352 *STATUS is set to one of the following values:
5353 0: The demangling operation succeeded.
5354 -1: A memory allocation failure occurred.
5355 -2: MANGLED_NAME is not a valid name under the C++ ABI mangling rules.
5356 -3: One of the arguments is invalid.
5358 The demangling is performed using the C++ ABI mangling rules, with
5362 __cxa_demangle (const char *mangled_name
, char *output_buffer
,
5363 size_t *length
, int *status
)
5368 if (mangled_name
== NULL
)
5375 if (output_buffer
!= NULL
&& length
== NULL
)
5382 demangled
= d_demangle (mangled_name
, DMGL_PARAMS
| DMGL_TYPES
, &alc
);
5384 if (demangled
== NULL
)
5396 if (output_buffer
== NULL
)
5403 if (strlen (demangled
) < *length
)
5405 strcpy (output_buffer
, demangled
);
5407 demangled
= output_buffer
;
5411 free (output_buffer
);
5422 extern int __gcclibcxx_demangle_callback (const char *,
5424 (const char *, size_t, void *),
5427 /* Alternative, allocationless entry point in the C++ runtime library
5428 for performing demangling. MANGLED_NAME is a NUL-terminated character
5429 string containing the name to be demangled.
5431 CALLBACK is a callback function, called with demangled string
5432 segments as demangling progresses; it is called at least once,
5433 but may be called more than once. OPAQUE is a generalized pointer
5434 used as a callback argument.
5436 The return code is one of the following values, equivalent to
5437 the STATUS values of __cxa_demangle() (excluding -1, since this
5438 function performs no memory allocations):
5439 0: The demangling operation succeeded.
5440 -2: MANGLED_NAME is not a valid name under the C++ ABI mangling rules.
5441 -3: One of the arguments is invalid.
5443 The demangling is performed using the C++ ABI mangling rules, with
5447 __gcclibcxx_demangle_callback (const char *mangled_name
,
5448 void (*callback
) (const char *, size_t, void *),
5453 if (mangled_name
== NULL
|| callback
== NULL
)
5456 status
= d_demangle_callback (mangled_name
, DMGL_PARAMS
| DMGL_TYPES
,
5464 #else /* ! (IN_LIBGCC2 || IN_GLIBCPP_V3) */
5466 /* Entry point for libiberty demangler. If MANGLED is a g++ v3 ABI
5467 mangled name, return a buffer allocated with malloc holding the
5468 demangled name. Otherwise, return NULL. */
5471 cplus_demangle_v3 (const char *mangled
, int options
)
5475 return d_demangle (mangled
, options
, &alc
);
5479 cplus_demangle_v3_callback (const char *mangled
, int options
,
5480 demangle_callbackref callback
, void *opaque
)
5482 return d_demangle_callback (mangled
, options
, callback
, opaque
);
5485 /* Demangle a Java symbol. Java uses a subset of the V3 ABI C++ mangling
5486 conventions, but the output formatting is a little different.
5487 This instructs the C++ demangler not to emit pointer characters ("*"), to
5488 use Java's namespace separator symbol ("." instead of "::"), and to output
5489 JArray<TYPE> as TYPE[]. */
5492 java_demangle_v3 (const char *mangled
)
5496 return d_demangle (mangled
, DMGL_JAVA
| DMGL_PARAMS
| DMGL_RET_POSTFIX
, &alc
);
5500 java_demangle_v3_callback (const char *mangled
,
5501 demangle_callbackref callback
, void *opaque
)
5503 return d_demangle_callback (mangled
,
5504 DMGL_JAVA
| DMGL_PARAMS
| DMGL_RET_POSTFIX
,
5508 #endif /* IN_LIBGCC2 || IN_GLIBCPP_V3 */
5510 #ifndef IN_GLIBCPP_V3
5512 /* Demangle a string in order to find out whether it is a constructor
5513 or destructor. Return non-zero on success. Set *CTOR_KIND and
5514 *DTOR_KIND appropriately. */
5517 is_ctor_or_dtor (const char *mangled
,
5518 enum gnu_v3_ctor_kinds
*ctor_kind
,
5519 enum gnu_v3_dtor_kinds
*dtor_kind
)
5522 struct demangle_component
*dc
;
5525 *ctor_kind
= (enum gnu_v3_ctor_kinds
) 0;
5526 *dtor_kind
= (enum gnu_v3_dtor_kinds
) 0;
5528 cplus_demangle_init_info (mangled
, DMGL_GNU_V3
, strlen (mangled
), &di
);
5531 #ifdef CP_DYNAMIC_ARRAYS
5532 __extension__
struct demangle_component comps
[di
.num_comps
];
5533 __extension__
struct demangle_component
*subs
[di
.num_subs
];
5538 di
.comps
= alloca (di
.num_comps
* sizeof (*di
.comps
));
5539 di
.subs
= alloca (di
.num_subs
* sizeof (*di
.subs
));
5542 dc
= cplus_demangle_mangled_name (&di
, 1);
5544 /* Note that because we did not pass DMGL_PARAMS, we don't expect
5545 to demangle the entire string. */
5555 case DEMANGLE_COMPONENT_TYPED_NAME
:
5556 case DEMANGLE_COMPONENT_TEMPLATE
:
5557 case DEMANGLE_COMPONENT_RESTRICT_THIS
:
5558 case DEMANGLE_COMPONENT_VOLATILE_THIS
:
5559 case DEMANGLE_COMPONENT_CONST_THIS
:
5562 case DEMANGLE_COMPONENT_QUAL_NAME
:
5563 case DEMANGLE_COMPONENT_LOCAL_NAME
:
5566 case DEMANGLE_COMPONENT_CTOR
:
5567 *ctor_kind
= dc
->u
.s_ctor
.kind
;
5571 case DEMANGLE_COMPONENT_DTOR
:
5572 *dtor_kind
= dc
->u
.s_dtor
.kind
;
5583 /* Return whether NAME is the mangled form of a g++ V3 ABI constructor
5584 name. A non-zero return indicates the type of constructor. */
5586 enum gnu_v3_ctor_kinds
5587 is_gnu_v3_mangled_ctor (const char *name
)
5589 enum gnu_v3_ctor_kinds ctor_kind
;
5590 enum gnu_v3_dtor_kinds dtor_kind
;
5592 if (! is_ctor_or_dtor (name
, &ctor_kind
, &dtor_kind
))
5593 return (enum gnu_v3_ctor_kinds
) 0;
5598 /* Return whether NAME is the mangled form of a g++ V3 ABI destructor
5599 name. A non-zero return indicates the type of destructor. */
5601 enum gnu_v3_dtor_kinds
5602 is_gnu_v3_mangled_dtor (const char *name
)
5604 enum gnu_v3_ctor_kinds ctor_kind
;
5605 enum gnu_v3_dtor_kinds dtor_kind
;
5607 if (! is_ctor_or_dtor (name
, &ctor_kind
, &dtor_kind
))
5608 return (enum gnu_v3_dtor_kinds
) 0;
5612 #endif /* IN_GLIBCPP_V3 */
5614 #ifdef STANDALONE_DEMANGLER
5617 #include "dyn-string.h"
5619 static void print_usage (FILE* fp
, int exit_value
);
5621 #define IS_ALPHA(CHAR) \
5622 (((CHAR) >= 'a' && (CHAR) <= 'z') \
5623 || ((CHAR) >= 'A' && (CHAR) <= 'Z'))
5625 /* Non-zero if CHAR is a character than can occur in a mangled name. */
5626 #define is_mangled_char(CHAR) \
5627 (IS_ALPHA (CHAR) || IS_DIGIT (CHAR) \
5628 || (CHAR) == '_' || (CHAR) == '.' || (CHAR) == '$')
5630 /* The name of this program, as invoked. */
5631 const char* program_name
;
5633 /* Prints usage summary to FP and then exits with EXIT_VALUE. */
5636 print_usage (FILE* fp
, int exit_value
)
5638 fprintf (fp
, "Usage: %s [options] [names ...]\n", program_name
);
5639 fprintf (fp
, "Options:\n");
5640 fprintf (fp
, " -h,--help Display this message.\n");
5641 fprintf (fp
, " -p,--no-params Don't display function parameters\n");
5642 fprintf (fp
, " -v,--verbose Produce verbose demanglings.\n");
5643 fprintf (fp
, "If names are provided, they are demangled. Otherwise filters standard input.\n");
5648 /* Option specification for getopt_long. */
5649 static const struct option long_options
[] =
5651 { "help", no_argument
, NULL
, 'h' },
5652 { "no-params", no_argument
, NULL
, 'p' },
5653 { "verbose", no_argument
, NULL
, 'v' },
5654 { NULL
, no_argument
, NULL
, 0 },
5657 /* Main entry for a demangling filter executable. It will demangle
5658 its command line arguments, if any. If none are provided, it will
5659 filter stdin to stdout, replacing any recognized mangled C++ names
5660 with their demangled equivalents. */
5663 main (int argc
, char *argv
[])
5667 int options
= DMGL_PARAMS
| DMGL_ANSI
| DMGL_TYPES
;
5669 /* Use the program name of this program, as invoked. */
5670 program_name
= argv
[0];
5672 /* Parse options. */
5675 opt_char
= getopt_long (argc
, argv
, "hpv", long_options
, NULL
);
5678 case '?': /* Unrecognized option. */
5679 print_usage (stderr
, 1);
5683 print_usage (stdout
, 0);
5687 options
&= ~ DMGL_PARAMS
;
5691 options
|= DMGL_VERBOSE
;
5695 while (opt_char
!= -1);
5698 /* No command line arguments were provided. Filter stdin. */
5700 dyn_string_t mangled
= dyn_string_new (3);
5703 /* Read all of input. */
5704 while (!feof (stdin
))
5708 /* Pile characters into mangled until we hit one that can't
5709 occur in a mangled name. */
5711 while (!feof (stdin
) && is_mangled_char (c
))
5713 dyn_string_append_char (mangled
, c
);
5719 if (dyn_string_length (mangled
) > 0)
5721 #ifdef IN_GLIBCPP_V3
5722 s
= __cxa_demangle (dyn_string_buf (mangled
), NULL
, NULL
, NULL
);
5724 s
= cplus_demangle_v3 (dyn_string_buf (mangled
), options
);
5734 /* It might not have been a mangled name. Print the
5736 fputs (dyn_string_buf (mangled
), stdout
);
5739 dyn_string_clear (mangled
);
5742 /* If we haven't hit EOF yet, we've read one character that
5743 can't occur in a mangled name, so print it out. */
5748 dyn_string_delete (mangled
);
5751 /* Demangle command line arguments. */
5753 /* Loop over command line arguments. */
5754 for (i
= optind
; i
< argc
; ++i
)
5757 #ifdef IN_GLIBCPP_V3
5761 /* Attempt to demangle. */
5762 #ifdef IN_GLIBCPP_V3
5763 s
= __cxa_demangle (argv
[i
], NULL
, NULL
, &status
);
5765 s
= cplus_demangle_v3 (argv
[i
], options
);
5768 /* If it worked, print the demangled name. */
5776 #ifdef IN_GLIBCPP_V3
5777 fprintf (stderr
, "Failed: %s (status %d)\n", argv
[i
], status
);
5779 fprintf (stderr
, "Failed: %s\n", argv
[i
]);
5788 #endif /* STANDALONE_DEMANGLER */