* gdb-add-index.sh: Really remove.
[deliverable/binutils-gdb.git] / libiberty / cp-demangle.c
CommitLineData
d00edca5 1/* Demangler for g++ V3 ABI.
cbc43128 2 Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
dddc49b7 3 Free Software Foundation, Inc.
d00edca5 4 Written by Ian Lance Taylor <ian@wasabisystems.com>.
eb383413 5
9ad1aa29 6 This file is part of the libiberty library, which is part of GCC.
74bcd529 7
9ad1aa29 8 This file is free software; you can redistribute it and/or modify
eb383413
L
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.
12
35efcd67
DD
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
20 executable.)
21
eb383413
L
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.
26
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
979c05d3 29 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
eb383413
L
30*/
31
858b45cf
DD
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
35
36 This code was written while looking at the demangler written by
37 Alex Samuel <samuel@codesourcery.com>.
38
39 This code first pulls the mangled name apart into a list of
40 components, and then walks the list generating the demangled
41 name.
42
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)
208c1674
DD
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)
858b45cf
DD
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)
52
59727473
DD
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
208c1674 58 demangle_callbackref
59727473
DD
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
64 cplus_demangle_print
208c1674 65 cplus_demangle_print_callback
59727473
DD
66 and other functions defined in the file cp-demint.c.
67
68 This file also defines some other functions and variables which are
69 only to be used by the file cp-demint.c.
70
858b45cf
DD
71 Preprocessor macros you can define while compiling this file:
72
73 IN_LIBGCC2
208c1674 74 If defined, this file defines the following functions, q.v.:
858b45cf
DD
75 char *__cxa_demangle (const char *mangled, char *buf, size_t *len,
76 int *status)
208c1674
DD
77 int __gcclibcxx_demangle_callback (const char *,
78 void (*)
79 (const char *, size_t, void *),
80 void *)
81 instead of cplus_demangle_v3[_callback]() and
82 java_demangle_v3[_callback]().
858b45cf
DD
83
84 IN_GLIBCPP_V3
208c1674
DD
85 If defined, this file defines only __cxa_demangle() and
86 __gcclibcxx_demangle_callback(), and no other publically visible
87 functions or variables.
858b45cf
DD
88
89 STANDALONE_DEMANGLER
90 If defined, this file defines a main() function which demangles
91 any arguments, or, if none, demangles stdin.
92
93 CP_DEMANGLE_DEBUG
94 If defined, turns on debugging mode, which prints information on
95 stdout about the mangled string. This is not generally useful.
96*/
97
208c1674
DD
98#if defined (_AIX) && !defined (__GNUC__)
99 #pragma alloca
100#endif
101
eb383413
L
102#ifdef HAVE_CONFIG_H
103#include "config.h"
104#endif
105
d00edca5 106#include <stdio.h>
b1233257 107
eb383413
L
108#ifdef HAVE_STDLIB_H
109#include <stdlib.h>
110#endif
eb383413
L
111#ifdef HAVE_STRING_H
112#include <string.h>
113#endif
114
208c1674
DD
115#ifdef HAVE_ALLOCA_H
116# include <alloca.h>
117#else
118# ifndef alloca
119# ifdef __GNUC__
120# define alloca __builtin_alloca
121# else
122extern char *alloca ();
123# endif /* __GNUC__ */
124# endif /* alloca */
125#endif /* HAVE_ALLOCA_H */
126
eb383413
L
127#include "ansidecl.h"
128#include "libiberty.h"
eb383413 129#include "demangle.h"
59727473
DD
130#include "cp-demangle.h"
131
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
135 file. */
136#ifdef IN_GLIBCPP_V3
137
138#define CP_STATIC_IF_GLIBCPP_V3 static
139
140#define cplus_demangle_fill_name d_fill_name
9334f9c6 141static int d_fill_name (struct demangle_component *, const char *, int);
59727473
DD
142
143#define cplus_demangle_fill_extended_operator d_fill_extended_operator
144static int
9334f9c6
DD
145d_fill_extended_operator (struct demangle_component *, int,
146 struct demangle_component *);
59727473
DD
147
148#define cplus_demangle_fill_ctor d_fill_ctor
149static int
9334f9c6
DD
150d_fill_ctor (struct demangle_component *, enum gnu_v3_ctor_kinds,
151 struct demangle_component *);
59727473
DD
152
153#define cplus_demangle_fill_dtor d_fill_dtor
154static int
9334f9c6
DD
155d_fill_dtor (struct demangle_component *, enum gnu_v3_dtor_kinds,
156 struct demangle_component *);
59727473
DD
157
158#define cplus_demangle_mangled_name d_mangled_name
9334f9c6 159static struct demangle_component *d_mangled_name (struct d_info *, int);
59727473
DD
160
161#define cplus_demangle_type d_type
9334f9c6 162static struct demangle_component *d_type (struct d_info *);
59727473
DD
163
164#define cplus_demangle_print d_print
9334f9c6 165static char *d_print (int, const struct demangle_component *, int, size_t *);
59727473 166
208c1674
DD
167#define cplus_demangle_print_callback d_print_callback
168static int d_print_callback (int, const struct demangle_component *,
169 demangle_callbackref, void *);
170
59727473 171#define cplus_demangle_init_info d_init_info
9334f9c6 172static void d_init_info (const char *, int, size_t, struct d_info *);
59727473
DD
173
174#else /* ! defined(IN_GLIBCPP_V3) */
175#define CP_STATIC_IF_GLIBCPP_V3
176#endif /* ! defined(IN_GLIBCPP_V3) */
eb383413 177
b6fb00c0
DD
178/* See if the compiler supports dynamic arrays. */
179
180#ifdef __GNUC__
181#define CP_DYNAMIC_ARRAYS
182#else
183#ifdef __STDC__
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__) */
191
858b45cf
DD
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
195 V3 demangler code.
d00edca5 196
858b45cf 197 As of this writing this file has the following undefined references
208c1674
DD
198 when compiled with -DIN_GLIBCPP_V3: realloc, free, memcpy, strcpy,
199 strcat, strlen. */
d00edca5 200
d00edca5 201#define IS_DIGIT(c) ((c) >= '0' && (c) <= '9')
858b45cf
DD
202#define IS_UPPER(c) ((c) >= 'A' && (c) <= 'Z')
203#define IS_LOWER(c) ((c) >= 'a' && (c) <= 'z')
03d5f569 204
74bcd529
DD
205/* The prefix prepended by GCC to an identifier represnting the
206 anonymous namespace. */
207#define ANONYMOUS_NAMESPACE_PREFIX "_GLOBAL_"
d00edca5
DD
208#define ANONYMOUS_NAMESPACE_PREFIX_LEN \
209 (sizeof (ANONYMOUS_NAMESPACE_PREFIX) - 1)
74bcd529 210
97ceaf5b
DD
211/* Information we keep for the standard substitutions. */
212
213struct d_standard_sub_info
214{
215 /* The code for this substitution. */
216 char code;
217 /* The simple string it expands to. */
218 const char *simple_expansion;
b6fb00c0
DD
219 /* The length of the simple expansion. */
220 int simple_len;
97ceaf5b
DD
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;
b6fb00c0
DD
224 /* The length of the full expansion. */
225 int full_len;
97ceaf5b
DD
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;
b6fb00c0
DD
230 /* The length of set_last_name. */
231 int set_last_name_len;
97ceaf5b
DD
232};
233
59727473 234/* Accessors for subtrees of struct demangle_component. */
eb383413 235
d00edca5
DD
236#define d_left(dc) ((dc)->u.s_binary.left)
237#define d_right(dc) ((dc)->u.s_binary.right)
238
d00edca5 239/* A list of templates. This is used while printing. */
eb383413 240
d00edca5
DD
241struct d_print_template
242{
243 /* Next template on the list. */
244 struct d_print_template *next;
245 /* This template. */
abf6a75b 246 const struct demangle_component *template_decl;
d00edca5 247};
eb383413 248
d00edca5 249/* A list of type modifiers. This is used while printing. */
eb383413 250
d00edca5
DD
251struct d_print_mod
252{
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;
256 /* The modifier. */
59727473 257 const struct demangle_component *mod;
d00edca5
DD
258 /* Whether this modifier was printed. */
259 int printed;
331c3da2
DD
260 /* The list of templates which applies to this modifier. */
261 struct d_print_template *templates;
d00edca5 262};
eb383413 263
208c1674 264/* We use these structures to hold information during printing. */
d00edca5 265
208c1674 266struct d_growable_string
d00edca5 267{
d00edca5
DD
268 /* Buffer holding the result. */
269 char *buf;
270 /* Current length of data in buffer. */
271 size_t len;
272 /* Allocated size of buffer. */
273 size_t alc;
208c1674
DD
274 /* Set to 1 if we had a memory allocation failure. */
275 int allocation_failure;
276};
277
278enum { D_PRINT_BUFFER_LENGTH = 256 };
279struct d_print_info
280{
281 /* The options passed to the demangler. */
282 int options;
283 /* Fixed-length allocated buffer for demangled data, flushed to the
284 callback with a NUL termination once full. */
285 char buf[D_PRINT_BUFFER_LENGTH];
286 /* Current length of data in buffer. */
287 size_t len;
288 /* The last character printed, saved individually so that it survives
289 any buffer flush. */
290 char last_char;
291 /* Callback function to handle demangled buffer flush. */
292 demangle_callbackref callback;
293 /* Opaque callback argument. */
294 void *opaque;
d00edca5
DD
295 /* The current list of templates, if any. */
296 struct d_print_template *templates;
297 /* The current list of modifiers (e.g., pointer, reference, etc.),
298 if any. */
299 struct d_print_mod *modifiers;
208c1674
DD
300 /* Set to 1 if we saw a demangling error. */
301 int demangle_failure;
1c08f2c8
DD
302 /* The current index into any template argument packs we are using
303 for printing. */
304 int pack_index;
3baae9d6
JJ
305 /* Number of d_print_flush calls so far. */
306 unsigned long int flush_count;
d00edca5 307};
e61231f1 308
eb383413 309#ifdef CP_DEMANGLE_DEBUG
9334f9c6 310static void d_dump (struct demangle_component *, int);
eb383413 311#endif
59727473
DD
312
313static struct demangle_component *
9334f9c6 314d_make_empty (struct d_info *);
59727473
DD
315
316static struct demangle_component *
9334f9c6
DD
317d_make_comp (struct d_info *, enum demangle_component_type,
318 struct demangle_component *,
319 struct demangle_component *);
59727473
DD
320
321static struct demangle_component *
9334f9c6 322d_make_name (struct d_info *, const char *, int);
59727473
DD
323
324static struct demangle_component *
9334f9c6
DD
325d_make_builtin_type (struct d_info *,
326 const struct demangle_builtin_type_info *);
59727473
DD
327
328static struct demangle_component *
9334f9c6
DD
329d_make_operator (struct d_info *,
330 const struct demangle_operator_info *);
59727473
DD
331
332static struct demangle_component *
9334f9c6
DD
333d_make_extended_operator (struct d_info *, int,
334 struct demangle_component *);
59727473
DD
335
336static struct demangle_component *
9334f9c6
DD
337d_make_ctor (struct d_info *, enum gnu_v3_ctor_kinds,
338 struct demangle_component *);
59727473
DD
339
340static struct demangle_component *
9334f9c6
DD
341d_make_dtor (struct d_info *, enum gnu_v3_dtor_kinds,
342 struct demangle_component *);
59727473
DD
343
344static struct demangle_component *
9334f9c6 345d_make_template_param (struct d_info *, long);
59727473
DD
346
347static struct demangle_component *
9334f9c6 348d_make_sub (struct d_info *, const char *, int);
59727473
DD
349
350static int
9334f9c6 351has_return_type (struct demangle_component *);
59727473
DD
352
353static int
9334f9c6 354is_ctor_dtor_or_conversion (struct demangle_component *);
59727473 355
9334f9c6 356static struct demangle_component *d_encoding (struct d_info *, int);
59727473 357
9334f9c6 358static struct demangle_component *d_name (struct d_info *);
59727473 359
9334f9c6 360static struct demangle_component *d_nested_name (struct d_info *);
59727473 361
9334f9c6 362static struct demangle_component *d_prefix (struct d_info *);
59727473 363
9334f9c6 364static struct demangle_component *d_unqualified_name (struct d_info *);
59727473 365
9334f9c6 366static struct demangle_component *d_source_name (struct d_info *);
59727473 367
9334f9c6 368static long d_number (struct d_info *);
59727473 369
9334f9c6 370static struct demangle_component *d_identifier (struct d_info *, int);
59727473 371
9334f9c6 372static struct demangle_component *d_operator_name (struct d_info *);
59727473 373
9334f9c6 374static struct demangle_component *d_special_name (struct d_info *);
59727473 375
9334f9c6 376static int d_call_offset (struct d_info *, int);
59727473 377
9334f9c6 378static struct demangle_component *d_ctor_dtor_name (struct d_info *);
59727473
DD
379
380static struct demangle_component **
9334f9c6 381d_cv_qualifiers (struct d_info *, struct demangle_component **, int);
59727473
DD
382
383static struct demangle_component *
9334f9c6 384d_function_type (struct d_info *);
59727473
DD
385
386static struct demangle_component *
9334f9c6 387d_bare_function_type (struct d_info *, int);
59727473
DD
388
389static struct demangle_component *
9334f9c6 390d_class_enum_type (struct d_info *);
59727473 391
9334f9c6 392static struct demangle_component *d_array_type (struct d_info *);
59727473 393
cbc43128
DD
394static struct demangle_component *d_vector_type (struct d_info *);
395
59727473 396static struct demangle_component *
9334f9c6 397d_pointer_to_member_type (struct d_info *);
59727473
DD
398
399static struct demangle_component *
9334f9c6 400d_template_param (struct d_info *);
59727473 401
9334f9c6 402static struct demangle_component *d_template_args (struct d_info *);
59727473
DD
403
404static struct demangle_component *
9334f9c6 405d_template_arg (struct d_info *);
59727473 406
9334f9c6 407static struct demangle_component *d_expression (struct d_info *);
59727473 408
9334f9c6 409static struct demangle_component *d_expr_primary (struct d_info *);
59727473 410
9334f9c6 411static struct demangle_component *d_local_name (struct d_info *);
59727473 412
9334f9c6 413static int d_discriminator (struct d_info *);
59727473 414
664aa91f
DD
415static struct demangle_component *d_lambda (struct d_info *);
416
417static struct demangle_component *d_unnamed_type (struct d_info *);
418
59727473 419static int
9334f9c6 420d_add_substitution (struct d_info *, struct demangle_component *);
59727473 421
9334f9c6 422static struct demangle_component *d_substitution (struct d_info *, int);
59727473 423
208c1674 424static void d_growable_string_init (struct d_growable_string *, size_t);
59727473 425
208c1674
DD
426static inline void
427d_growable_string_resize (struct d_growable_string *, size_t);
59727473 428
208c1674
DD
429static inline void
430d_growable_string_append_buffer (struct d_growable_string *,
431 const char *, size_t);
59727473 432static void
208c1674
DD
433d_growable_string_callback_adapter (const char *, size_t, void *);
434
435static void
436d_print_init (struct d_print_info *, int, demangle_callbackref, void *);
437
438static inline void d_print_error (struct d_print_info *);
439
440static inline int d_print_saw_error (struct d_print_info *);
441
442static inline void d_print_flush (struct d_print_info *);
443
444static inline void d_append_char (struct d_print_info *, char);
59727473 445
208c1674
DD
446static inline void d_append_buffer (struct d_print_info *,
447 const char *, size_t);
448
449static inline void d_append_string (struct d_print_info *, const char *);
450
451static inline char d_last_char (struct d_print_info *);
59727473
DD
452
453static void
9334f9c6 454d_print_comp (struct d_print_info *, const struct demangle_component *);
59727473
DD
455
456static void
9334f9c6 457d_print_java_identifier (struct d_print_info *, const char *, int);
59727473
DD
458
459static void
9334f9c6 460d_print_mod_list (struct d_print_info *, struct d_print_mod *, int);
59727473
DD
461
462static void
9334f9c6 463d_print_mod (struct d_print_info *, const struct demangle_component *);
59727473
DD
464
465static void
9334f9c6
DD
466d_print_function_type (struct d_print_info *,
467 const struct demangle_component *,
468 struct d_print_mod *);
59727473
DD
469
470static void
9334f9c6
DD
471d_print_array_type (struct d_print_info *,
472 const struct demangle_component *,
473 struct d_print_mod *);
59727473
DD
474
475static void
9334f9c6 476d_print_expr_op (struct d_print_info *, const struct demangle_component *);
59727473
DD
477
478static void
9334f9c6 479d_print_cast (struct d_print_info *, const struct demangle_component *);
59727473 480
208c1674
DD
481static int d_demangle_callback (const char *, int,
482 demangle_callbackref, void *);
9334f9c6 483static char *d_demangle (const char *, int, size_t *);
d00edca5 484
eb383413 485#ifdef CP_DEMANGLE_DEBUG
d00edca5
DD
486
487static void
9334f9c6 488d_dump (struct demangle_component *dc, int indent)
eb383413
L
489{
490 int i;
eb383413 491
d00edca5 492 if (dc == NULL)
208c1674
DD
493 {
494 if (indent == 0)
495 printf ("failed demangling\n");
496 return;
497 }
d00edca5
DD
498
499 for (i = 0; i < indent; ++i)
500 putchar (' ');
501
502 switch (dc->type)
503 {
59727473 504 case DEMANGLE_COMPONENT_NAME:
d00edca5
DD
505 printf ("name '%.*s'\n", dc->u.s_name.len, dc->u.s_name.s);
506 return;
59727473 507 case DEMANGLE_COMPONENT_TEMPLATE_PARAM:
d00edca5
DD
508 printf ("template parameter %ld\n", dc->u.s_number.number);
509 return;
59727473 510 case DEMANGLE_COMPONENT_CTOR:
d00edca5
DD
511 printf ("constructor %d\n", (int) dc->u.s_ctor.kind);
512 d_dump (dc->u.s_ctor.name, indent + 2);
513 return;
59727473 514 case DEMANGLE_COMPONENT_DTOR:
d00edca5
DD
515 printf ("destructor %d\n", (int) dc->u.s_dtor.kind);
516 d_dump (dc->u.s_dtor.name, indent + 2);
517 return;
59727473 518 case DEMANGLE_COMPONENT_SUB_STD:
d00edca5
DD
519 printf ("standard substitution %s\n", dc->u.s_string.string);
520 return;
59727473 521 case DEMANGLE_COMPONENT_BUILTIN_TYPE:
d00edca5
DD
522 printf ("builtin type %s\n", dc->u.s_builtin.type->name);
523 return;
59727473 524 case DEMANGLE_COMPONENT_OPERATOR:
d00edca5
DD
525 printf ("operator %s\n", dc->u.s_operator.op->name);
526 return;
59727473 527 case DEMANGLE_COMPONENT_EXTENDED_OPERATOR:
d00edca5
DD
528 printf ("extended operator with %d args\n",
529 dc->u.s_extended_operator.args);
530 d_dump (dc->u.s_extended_operator.name, indent + 2);
531 return;
532
59727473 533 case DEMANGLE_COMPONENT_QUAL_NAME:
d00edca5
DD
534 printf ("qualified name\n");
535 break;
59727473 536 case DEMANGLE_COMPONENT_LOCAL_NAME:
d4edd112
DD
537 printf ("local name\n");
538 break;
59727473 539 case DEMANGLE_COMPONENT_TYPED_NAME:
d00edca5
DD
540 printf ("typed name\n");
541 break;
59727473 542 case DEMANGLE_COMPONENT_TEMPLATE:
d00edca5
DD
543 printf ("template\n");
544 break;
59727473 545 case DEMANGLE_COMPONENT_VTABLE:
d00edca5
DD
546 printf ("vtable\n");
547 break;
59727473 548 case DEMANGLE_COMPONENT_VTT:
d00edca5
DD
549 printf ("VTT\n");
550 break;
59727473 551 case DEMANGLE_COMPONENT_CONSTRUCTION_VTABLE:
d00edca5
DD
552 printf ("construction vtable\n");
553 break;
59727473 554 case DEMANGLE_COMPONENT_TYPEINFO:
d00edca5
DD
555 printf ("typeinfo\n");
556 break;
59727473 557 case DEMANGLE_COMPONENT_TYPEINFO_NAME:
d00edca5
DD
558 printf ("typeinfo name\n");
559 break;
59727473 560 case DEMANGLE_COMPONENT_TYPEINFO_FN:
d00edca5
DD
561 printf ("typeinfo function\n");
562 break;
59727473 563 case DEMANGLE_COMPONENT_THUNK:
d00edca5
DD
564 printf ("thunk\n");
565 break;
59727473 566 case DEMANGLE_COMPONENT_VIRTUAL_THUNK:
d00edca5
DD
567 printf ("virtual thunk\n");
568 break;
59727473 569 case DEMANGLE_COMPONENT_COVARIANT_THUNK:
d00edca5
DD
570 printf ("covariant thunk\n");
571 break;
59727473 572 case DEMANGLE_COMPONENT_JAVA_CLASS:
d00edca5
DD
573 printf ("java class\n");
574 break;
59727473 575 case DEMANGLE_COMPONENT_GUARD:
d00edca5
DD
576 printf ("guard\n");
577 break;
59727473 578 case DEMANGLE_COMPONENT_REFTEMP:
d00edca5
DD
579 printf ("reference temporary\n");
580 break;
839e4798
RH
581 case DEMANGLE_COMPONENT_HIDDEN_ALIAS:
582 printf ("hidden alias\n");
583 break;
59727473 584 case DEMANGLE_COMPONENT_RESTRICT:
d00edca5
DD
585 printf ("restrict\n");
586 break;
59727473 587 case DEMANGLE_COMPONENT_VOLATILE:
d00edca5
DD
588 printf ("volatile\n");
589 break;
59727473 590 case DEMANGLE_COMPONENT_CONST:
d00edca5
DD
591 printf ("const\n");
592 break;
59727473 593 case DEMANGLE_COMPONENT_RESTRICT_THIS:
858b45cf
DD
594 printf ("restrict this\n");
595 break;
59727473 596 case DEMANGLE_COMPONENT_VOLATILE_THIS:
858b45cf
DD
597 printf ("volatile this\n");
598 break;
59727473 599 case DEMANGLE_COMPONENT_CONST_THIS:
858b45cf
DD
600 printf ("const this\n");
601 break;
59727473 602 case DEMANGLE_COMPONENT_VENDOR_TYPE_QUAL:
d00edca5
DD
603 printf ("vendor type qualifier\n");
604 break;
59727473 605 case DEMANGLE_COMPONENT_POINTER:
d00edca5
DD
606 printf ("pointer\n");
607 break;
59727473 608 case DEMANGLE_COMPONENT_REFERENCE:
d00edca5
DD
609 printf ("reference\n");
610 break;
8969a67f
DD
611 case DEMANGLE_COMPONENT_RVALUE_REFERENCE:
612 printf ("rvalue reference\n");
613 break;
59727473 614 case DEMANGLE_COMPONENT_COMPLEX:
d00edca5
DD
615 printf ("complex\n");
616 break;
59727473 617 case DEMANGLE_COMPONENT_IMAGINARY:
d00edca5
DD
618 printf ("imaginary\n");
619 break;
59727473 620 case DEMANGLE_COMPONENT_VENDOR_TYPE:
d00edca5
DD
621 printf ("vendor type\n");
622 break;
59727473 623 case DEMANGLE_COMPONENT_FUNCTION_TYPE:
d00edca5
DD
624 printf ("function type\n");
625 break;
59727473 626 case DEMANGLE_COMPONENT_ARRAY_TYPE:
d00edca5
DD
627 printf ("array type\n");
628 break;
59727473 629 case DEMANGLE_COMPONENT_PTRMEM_TYPE:
d00edca5
DD
630 printf ("pointer to member type\n");
631 break;
d2825c1a
DD
632 case DEMANGLE_COMPONENT_FIXED_TYPE:
633 printf ("fixed-point type\n");
634 break;
59727473 635 case DEMANGLE_COMPONENT_ARGLIST:
d00edca5
DD
636 printf ("argument list\n");
637 break;
59727473 638 case DEMANGLE_COMPONENT_TEMPLATE_ARGLIST:
d00edca5
DD
639 printf ("template argument list\n");
640 break;
59727473 641 case DEMANGLE_COMPONENT_CAST:
d00edca5
DD
642 printf ("cast\n");
643 break;
59727473 644 case DEMANGLE_COMPONENT_UNARY:
d00edca5
DD
645 printf ("unary operator\n");
646 break;
59727473 647 case DEMANGLE_COMPONENT_BINARY:
d00edca5
DD
648 printf ("binary operator\n");
649 break;
59727473 650 case DEMANGLE_COMPONENT_BINARY_ARGS:
d00edca5
DD
651 printf ("binary operator arguments\n");
652 break;
59727473 653 case DEMANGLE_COMPONENT_TRINARY:
d00edca5
DD
654 printf ("trinary operator\n");
655 break;
59727473 656 case DEMANGLE_COMPONENT_TRINARY_ARG1:
d00edca5
DD
657 printf ("trinary operator arguments 1\n");
658 break;
59727473 659 case DEMANGLE_COMPONENT_TRINARY_ARG2:
d00edca5
DD
660 printf ("trinary operator arguments 1\n");
661 break;
59727473 662 case DEMANGLE_COMPONENT_LITERAL:
d00edca5
DD
663 printf ("literal\n");
664 break;
59727473 665 case DEMANGLE_COMPONENT_LITERAL_NEG:
97ceaf5b
DD
666 printf ("negative literal\n");
667 break;
830ef634
DD
668 case DEMANGLE_COMPONENT_JAVA_RESOURCE:
669 printf ("java resource\n");
670 break;
671 case DEMANGLE_COMPONENT_COMPOUND_NAME:
672 printf ("compound name\n");
673 break;
674 case DEMANGLE_COMPONENT_CHARACTER:
675 printf ("character '%c'\n", dc->u.s_character.character);
676 return;
ba8cb4ba
DD
677 case DEMANGLE_COMPONENT_DECLTYPE:
678 printf ("decltype\n");
679 break;
1c08f2c8
DD
680 case DEMANGLE_COMPONENT_PACK_EXPANSION:
681 printf ("pack expansion\n");
682 break;
eb383413
L
683 }
684
d00edca5
DD
685 d_dump (d_left (dc), indent + 2);
686 d_dump (d_right (dc), indent + 2);
687}
688
689#endif /* CP_DEMANGLE_DEBUG */
690
59727473
DD
691/* Fill in a DEMANGLE_COMPONENT_NAME. */
692
693CP_STATIC_IF_GLIBCPP_V3
694int
9334f9c6 695cplus_demangle_fill_name (struct demangle_component *p, const char *s, int len)
59727473
DD
696{
697 if (p == NULL || s == NULL || len == 0)
698 return 0;
699 p->type = DEMANGLE_COMPONENT_NAME;
700 p->u.s_name.s = s;
701 p->u.s_name.len = len;
702 return 1;
703}
704
705/* Fill in a DEMANGLE_COMPONENT_EXTENDED_OPERATOR. */
706
707CP_STATIC_IF_GLIBCPP_V3
708int
9334f9c6
DD
709cplus_demangle_fill_extended_operator (struct demangle_component *p, int args,
710 struct demangle_component *name)
59727473
DD
711{
712 if (p == NULL || args < 0 || name == NULL)
713 return 0;
714 p->type = DEMANGLE_COMPONENT_EXTENDED_OPERATOR;
715 p->u.s_extended_operator.args = args;
716 p->u.s_extended_operator.name = name;
717 return 1;
718}
719
720/* Fill in a DEMANGLE_COMPONENT_CTOR. */
721
722CP_STATIC_IF_GLIBCPP_V3
723int
9334f9c6
DD
724cplus_demangle_fill_ctor (struct demangle_component *p,
725 enum gnu_v3_ctor_kinds kind,
726 struct demangle_component *name)
59727473
DD
727{
728 if (p == NULL
729 || name == NULL
4e55d6c3
DD
730 || (int) kind < gnu_v3_complete_object_ctor
731 || (int) kind > gnu_v3_complete_object_allocating_ctor)
59727473
DD
732 return 0;
733 p->type = DEMANGLE_COMPONENT_CTOR;
734 p->u.s_ctor.kind = kind;
735 p->u.s_ctor.name = name;
736 return 1;
737}
738
739/* Fill in a DEMANGLE_COMPONENT_DTOR. */
740
741CP_STATIC_IF_GLIBCPP_V3
742int
9334f9c6
DD
743cplus_demangle_fill_dtor (struct demangle_component *p,
744 enum gnu_v3_dtor_kinds kind,
745 struct demangle_component *name)
59727473
DD
746{
747 if (p == NULL
748 || name == NULL
4e55d6c3
DD
749 || (int) kind < gnu_v3_deleting_dtor
750 || (int) kind > gnu_v3_base_object_dtor)
59727473
DD
751 return 0;
752 p->type = DEMANGLE_COMPONENT_DTOR;
753 p->u.s_dtor.kind = kind;
754 p->u.s_dtor.name = name;
755 return 1;
756}
757
d00edca5
DD
758/* Add a new component. */
759
59727473 760static struct demangle_component *
9334f9c6 761d_make_empty (struct d_info *di)
d00edca5 762{
59727473 763 struct demangle_component *p;
d00edca5
DD
764
765 if (di->next_comp >= di->num_comps)
766 return NULL;
767 p = &di->comps[di->next_comp];
d00edca5
DD
768 ++di->next_comp;
769 return p;
770}
771
772/* Add a new generic component. */
773
59727473 774static struct demangle_component *
9334f9c6
DD
775d_make_comp (struct d_info *di, enum demangle_component_type type,
776 struct demangle_component *left,
777 struct demangle_component *right)
d00edca5 778{
59727473 779 struct demangle_component *p;
d00edca5
DD
780
781 /* We check for errors here. A typical error would be a NULL return
331c3da2
DD
782 from a subroutine. We catch those here, and return NULL
783 upward. */
d00edca5
DD
784 switch (type)
785 {
786 /* These types require two parameters. */
59727473
DD
787 case DEMANGLE_COMPONENT_QUAL_NAME:
788 case DEMANGLE_COMPONENT_LOCAL_NAME:
789 case DEMANGLE_COMPONENT_TYPED_NAME:
790 case DEMANGLE_COMPONENT_TEMPLATE:
2d6520ee 791 case DEMANGLE_COMPONENT_CONSTRUCTION_VTABLE:
59727473
DD
792 case DEMANGLE_COMPONENT_VENDOR_TYPE_QUAL:
793 case DEMANGLE_COMPONENT_PTRMEM_TYPE:
794 case DEMANGLE_COMPONENT_UNARY:
795 case DEMANGLE_COMPONENT_BINARY:
796 case DEMANGLE_COMPONENT_BINARY_ARGS:
797 case DEMANGLE_COMPONENT_TRINARY:
798 case DEMANGLE_COMPONENT_TRINARY_ARG1:
799 case DEMANGLE_COMPONENT_TRINARY_ARG2:
800 case DEMANGLE_COMPONENT_LITERAL:
801 case DEMANGLE_COMPONENT_LITERAL_NEG:
830ef634 802 case DEMANGLE_COMPONENT_COMPOUND_NAME:
cbc43128 803 case DEMANGLE_COMPONENT_VECTOR_TYPE:
d00edca5
DD
804 if (left == NULL || right == NULL)
805 return NULL;
806 break;
807
808 /* These types only require one parameter. */
59727473
DD
809 case DEMANGLE_COMPONENT_VTABLE:
810 case DEMANGLE_COMPONENT_VTT:
59727473
DD
811 case DEMANGLE_COMPONENT_TYPEINFO:
812 case DEMANGLE_COMPONENT_TYPEINFO_NAME:
813 case DEMANGLE_COMPONENT_TYPEINFO_FN:
814 case DEMANGLE_COMPONENT_THUNK:
815 case DEMANGLE_COMPONENT_VIRTUAL_THUNK:
816 case DEMANGLE_COMPONENT_COVARIANT_THUNK:
817 case DEMANGLE_COMPONENT_JAVA_CLASS:
818 case DEMANGLE_COMPONENT_GUARD:
819 case DEMANGLE_COMPONENT_REFTEMP:
839e4798 820 case DEMANGLE_COMPONENT_HIDDEN_ALIAS:
59727473
DD
821 case DEMANGLE_COMPONENT_POINTER:
822 case DEMANGLE_COMPONENT_REFERENCE:
8969a67f 823 case DEMANGLE_COMPONENT_RVALUE_REFERENCE:
59727473
DD
824 case DEMANGLE_COMPONENT_COMPLEX:
825 case DEMANGLE_COMPONENT_IMAGINARY:
826 case DEMANGLE_COMPONENT_VENDOR_TYPE:
59727473 827 case DEMANGLE_COMPONENT_CAST:
830ef634 828 case DEMANGLE_COMPONENT_JAVA_RESOURCE:
ba8cb4ba 829 case DEMANGLE_COMPONENT_DECLTYPE:
1c08f2c8 830 case DEMANGLE_COMPONENT_PACK_EXPANSION:
d5031754
DD
831 case DEMANGLE_COMPONENT_GLOBAL_CONSTRUCTORS:
832 case DEMANGLE_COMPONENT_GLOBAL_DESTRUCTORS:
d00edca5
DD
833 if (left == NULL)
834 return NULL;
835 break;
836
837 /* This needs a right parameter, but the left parameter can be
838 empty. */
59727473 839 case DEMANGLE_COMPONENT_ARRAY_TYPE:
d00edca5
DD
840 if (right == NULL)
841 return NULL;
842 break;
843
844 /* These are allowed to have no parameters--in some cases they
845 will be filled in later. */
59727473
DD
846 case DEMANGLE_COMPONENT_FUNCTION_TYPE:
847 case DEMANGLE_COMPONENT_RESTRICT:
848 case DEMANGLE_COMPONENT_VOLATILE:
849 case DEMANGLE_COMPONENT_CONST:
850 case DEMANGLE_COMPONENT_RESTRICT_THIS:
851 case DEMANGLE_COMPONENT_VOLATILE_THIS:
852 case DEMANGLE_COMPONENT_CONST_THIS:
1c08f2c8
DD
853 case DEMANGLE_COMPONENT_ARGLIST:
854 case DEMANGLE_COMPONENT_TEMPLATE_ARGLIST:
d00edca5
DD
855 break;
856
857 /* Other types should not be seen here. */
858 default:
859 return NULL;
eb383413 860 }
d00edca5 861
59727473 862 p = d_make_empty (di);
d00edca5 863 if (p != NULL)
eb383413 864 {
59727473 865 p->type = type;
d00edca5
DD
866 p->u.s_binary.left = left;
867 p->u.s_binary.right = right;
eb383413 868 }
d00edca5
DD
869 return p;
870}
eb383413 871
d00edca5 872/* Add a new name component. */
03d5f569 873
59727473 874static struct demangle_component *
9334f9c6 875d_make_name (struct d_info *di, const char *s, int len)
d00edca5 876{
59727473 877 struct demangle_component *p;
03d5f569 878
59727473
DD
879 p = d_make_empty (di);
880 if (! cplus_demangle_fill_name (p, s, len))
858b45cf 881 return NULL;
d00edca5 882 return p;
eb383413
L
883}
884
d00edca5 885/* Add a new builtin type component. */
eb383413 886
59727473 887static struct demangle_component *
9334f9c6
DD
888d_make_builtin_type (struct d_info *di,
889 const struct demangle_builtin_type_info *type)
eb383413 890{
59727473 891 struct demangle_component *p;
d00edca5 892
331c3da2
DD
893 if (type == NULL)
894 return NULL;
59727473 895 p = d_make_empty (di);
d00edca5 896 if (p != NULL)
59727473
DD
897 {
898 p->type = DEMANGLE_COMPONENT_BUILTIN_TYPE;
899 p->u.s_builtin.type = type;
900 }
d00edca5
DD
901 return p;
902}
eb383413 903
d00edca5 904/* Add a new operator component. */
eb383413 905
59727473 906static struct demangle_component *
9334f9c6 907d_make_operator (struct d_info *di, const struct demangle_operator_info *op)
eb383413 908{
59727473 909 struct demangle_component *p;
d00edca5 910
59727473 911 p = d_make_empty (di);
d00edca5 912 if (p != NULL)
59727473
DD
913 {
914 p->type = DEMANGLE_COMPONENT_OPERATOR;
915 p->u.s_operator.op = op;
916 }
d00edca5 917 return p;
eb383413
L
918}
919
d00edca5 920/* Add a new extended operator component. */
eb383413 921
59727473 922static struct demangle_component *
9334f9c6
DD
923d_make_extended_operator (struct d_info *di, int args,
924 struct demangle_component *name)
eb383413 925{
59727473 926 struct demangle_component *p;
03d5f569 927
59727473
DD
928 p = d_make_empty (di);
929 if (! cplus_demangle_fill_extended_operator (p, args, name))
331c3da2 930 return NULL;
d00edca5 931 return p;
eb383413
L
932}
933
664aa91f
DD
934static struct demangle_component *
935d_make_default_arg (struct d_info *di, int num,
936 struct demangle_component *sub)
937{
938 struct demangle_component *p = d_make_empty (di);
939 if (p)
940 {
941 p->type = DEMANGLE_COMPONENT_DEFAULT_ARG;
942 p->u.s_unary_num.num = num;
943 p->u.s_unary_num.sub = sub;
944 }
945 return p;
946}
947
d00edca5 948/* Add a new constructor component. */
eb383413 949
59727473 950static struct demangle_component *
9334f9c6
DD
951d_make_ctor (struct d_info *di, enum gnu_v3_ctor_kinds kind,
952 struct demangle_component *name)
eb383413 953{
59727473 954 struct demangle_component *p;
d00edca5 955
59727473
DD
956 p = d_make_empty (di);
957 if (! cplus_demangle_fill_ctor (p, kind, name))
331c3da2 958 return NULL;
d00edca5 959 return p;
eb383413
L
960}
961
d00edca5 962/* Add a new destructor component. */
eb383413 963
59727473 964static struct demangle_component *
9334f9c6
DD
965d_make_dtor (struct d_info *di, enum gnu_v3_dtor_kinds kind,
966 struct demangle_component *name)
eb383413 967{
59727473 968 struct demangle_component *p;
d00edca5 969
59727473
DD
970 p = d_make_empty (di);
971 if (! cplus_demangle_fill_dtor (p, kind, name))
331c3da2 972 return NULL;
d00edca5 973 return p;
eb383413
L
974}
975
d00edca5 976/* Add a new template parameter. */
59666b35 977
59727473 978static struct demangle_component *
9334f9c6 979d_make_template_param (struct d_info *di, long i)
59666b35 980{
59727473 981 struct demangle_component *p;
d00edca5 982
59727473 983 p = d_make_empty (di);
d00edca5 984 if (p != NULL)
59727473
DD
985 {
986 p->type = DEMANGLE_COMPONENT_TEMPLATE_PARAM;
987 p->u.s_number.number = i;
988 }
d00edca5 989 return p;
59666b35
DD
990}
991
c743cf5d
DD
992/* Add a new function parameter. */
993
994static struct demangle_component *
995d_make_function_param (struct d_info *di, long i)
996{
997 struct demangle_component *p;
998
999 p = d_make_empty (di);
1000 if (p != NULL)
1001 {
1002 p->type = DEMANGLE_COMPONENT_FUNCTION_PARAM;
1003 p->u.s_number.number = i;
1004 }
1005 return p;
1006}
1007
d00edca5 1008/* Add a new standard substitution component. */
59666b35 1009
59727473 1010static struct demangle_component *
9334f9c6 1011d_make_sub (struct d_info *di, const char *name, int len)
59666b35 1012{
59727473 1013 struct demangle_component *p;
d00edca5 1014
59727473 1015 p = d_make_empty (di);
d00edca5 1016 if (p != NULL)
b6fb00c0 1017 {
59727473 1018 p->type = DEMANGLE_COMPONENT_SUB_STD;
b6fb00c0
DD
1019 p->u.s_string.string = name;
1020 p->u.s_string.len = len;
1021 }
d00edca5 1022 return p;
59666b35
DD
1023}
1024
331c3da2
DD
1025/* <mangled-name> ::= _Z <encoding>
1026
1027 TOP_LEVEL is non-zero when called at the top level. */
59666b35 1028
59727473
DD
1029CP_STATIC_IF_GLIBCPP_V3
1030struct demangle_component *
9334f9c6 1031cplus_demangle_mangled_name (struct d_info *di, int top_level)
59666b35 1032{
c743cf5d
DD
1033 if (! d_check_char (di, '_')
1034 /* Allow missing _ if not at toplevel to work around a
1035 bug in G++ abi-version=2 mangling; see the comment in
1036 write_template_arg. */
1037 && top_level)
d00edca5 1038 return NULL;
6ef6358e 1039 if (! d_check_char (di, 'Z'))
d00edca5 1040 return NULL;
331c3da2 1041 return d_encoding (di, top_level);
59666b35
DD
1042}
1043
d00edca5
DD
1044/* Return whether a function should have a return type. The argument
1045 is the function name, which may be qualified in various ways. The
1046 rules are that template functions have return types with some
1047 exceptions, function types which are not part of a function name
1048 mangling have return types with some exceptions, and non-template
1049 function names do not have return types. The exceptions are that
1050 constructors, destructors, and conversion operators do not have
1051 return types. */
59666b35
DD
1052
1053static int
9334f9c6 1054has_return_type (struct demangle_component *dc)
59666b35 1055{
d00edca5
DD
1056 if (dc == NULL)
1057 return 0;
1058 switch (dc->type)
1059 {
1060 default:
1061 return 0;
59727473 1062 case DEMANGLE_COMPONENT_TEMPLATE:
d00edca5 1063 return ! is_ctor_dtor_or_conversion (d_left (dc));
59727473
DD
1064 case DEMANGLE_COMPONENT_RESTRICT_THIS:
1065 case DEMANGLE_COMPONENT_VOLATILE_THIS:
1066 case DEMANGLE_COMPONENT_CONST_THIS:
54a962d9 1067 return has_return_type (d_left (dc));
d00edca5 1068 }
59666b35
DD
1069}
1070
d00edca5
DD
1071/* Return whether a name is a constructor, a destructor, or a
1072 conversion operator. */
eb383413
L
1073
1074static int
9334f9c6 1075is_ctor_dtor_or_conversion (struct demangle_component *dc)
eb383413 1076{
d00edca5
DD
1077 if (dc == NULL)
1078 return 0;
1079 switch (dc->type)
1080 {
1081 default:
1082 return 0;
59727473
DD
1083 case DEMANGLE_COMPONENT_QUAL_NAME:
1084 case DEMANGLE_COMPONENT_LOCAL_NAME:
d00edca5 1085 return is_ctor_dtor_or_conversion (d_right (dc));
59727473
DD
1086 case DEMANGLE_COMPONENT_CTOR:
1087 case DEMANGLE_COMPONENT_DTOR:
1088 case DEMANGLE_COMPONENT_CAST:
d00edca5
DD
1089 return 1;
1090 }
eb383413
L
1091}
1092
d00edca5
DD
1093/* <encoding> ::= <(function) name> <bare-function-type>
1094 ::= <(data) name>
6d95373e
DD
1095 ::= <special-name>
1096
1097 TOP_LEVEL is non-zero when called at the top level, in which case
1098 if DMGL_PARAMS is not set we do not demangle the function
1099 parameters. We only set this at the top level, because otherwise
1100 we would not correctly demangle names in local scopes. */
eb383413 1101
59727473 1102static struct demangle_component *
9334f9c6 1103d_encoding (struct d_info *di, int top_level)
eb383413 1104{
d00edca5 1105 char peek = d_peek_char (di);
03d5f569 1106
d00edca5
DD
1107 if (peek == 'G' || peek == 'T')
1108 return d_special_name (di);
1109 else
03d5f569 1110 {
59727473 1111 struct demangle_component *dc;
d00edca5
DD
1112
1113 dc = d_name (di);
331c3da2
DD
1114
1115 if (dc != NULL && top_level && (di->options & DMGL_PARAMS) == 0)
1116 {
1117 /* Strip off any initial CV-qualifiers, as they really apply
1118 to the `this' parameter, and they were not output by the
1119 v2 demangler without DMGL_PARAMS. */
59727473
DD
1120 while (dc->type == DEMANGLE_COMPONENT_RESTRICT_THIS
1121 || dc->type == DEMANGLE_COMPONENT_VOLATILE_THIS
1122 || dc->type == DEMANGLE_COMPONENT_CONST_THIS)
331c3da2 1123 dc = d_left (dc);
820542c9 1124
59727473
DD
1125 /* If the top level is a DEMANGLE_COMPONENT_LOCAL_NAME, then
1126 there may be CV-qualifiers on its right argument which
1127 really apply here; this happens when parsing a class
1128 which is local to a function. */
1129 if (dc->type == DEMANGLE_COMPONENT_LOCAL_NAME)
820542c9 1130 {
59727473 1131 struct demangle_component *dcr;
820542c9
DD
1132
1133 dcr = d_right (dc);
59727473
DD
1134 while (dcr->type == DEMANGLE_COMPONENT_RESTRICT_THIS
1135 || dcr->type == DEMANGLE_COMPONENT_VOLATILE_THIS
1136 || dcr->type == DEMANGLE_COMPONENT_CONST_THIS)
820542c9
DD
1137 dcr = d_left (dcr);
1138 dc->u.s_binary.right = dcr;
1139 }
1140
331c3da2
DD
1141 return dc;
1142 }
1143
d00edca5 1144 peek = d_peek_char (di);
8d301070 1145 if (dc == NULL || peek == '\0' || peek == 'E')
d00edca5 1146 return dc;
59727473 1147 return d_make_comp (di, DEMANGLE_COMPONENT_TYPED_NAME, dc,
d00edca5 1148 d_bare_function_type (di, has_return_type (dc)));
03d5f569 1149 }
d00edca5
DD
1150}
1151
1152/* <name> ::= <nested-name>
1153 ::= <unscoped-name>
1154 ::= <unscoped-template-name> <template-args>
1155 ::= <local-name>
1156
1157 <unscoped-name> ::= <unqualified-name>
1158 ::= St <unqualified-name>
eb383413 1159
d00edca5
DD
1160 <unscoped-template-name> ::= <unscoped-name>
1161 ::= <substitution>
1162*/
1163
59727473 1164static struct demangle_component *
9334f9c6 1165d_name (struct d_info *di)
d00edca5
DD
1166{
1167 char peek = d_peek_char (di);
59727473 1168 struct demangle_component *dc;
d00edca5
DD
1169
1170 switch (peek)
eb383413 1171 {
d00edca5
DD
1172 case 'N':
1173 return d_nested_name (di);
1174
1175 case 'Z':
1176 return d_local_name (di);
1177
8bf955e1 1178 case 'L':
664aa91f 1179 case 'U':
8bf955e1 1180 return d_unqualified_name (di);
664aa91f 1181
d00edca5
DD
1182 case 'S':
1183 {
1184 int subst;
1185
1186 if (d_peek_next_char (di) != 't')
1187 {
97ceaf5b 1188 dc = d_substitution (di, 0);
d00edca5
DD
1189 subst = 1;
1190 }
1191 else
1192 {
1193 d_advance (di, 2);
59727473
DD
1194 dc = d_make_comp (di, DEMANGLE_COMPONENT_QUAL_NAME,
1195 d_make_name (di, "std", 3),
d00edca5 1196 d_unqualified_name (di));
b6fb00c0 1197 di->expansion += 3;
d00edca5
DD
1198 subst = 0;
1199 }
1200
1201 if (d_peek_char (di) != 'I')
1202 {
1203 /* The grammar does not permit this case to occur if we
1204 called d_substitution() above (i.e., subst == 1). We
1205 don't bother to check. */
1206 }
1207 else
1208 {
1209 /* This is <template-args>, which means that we just saw
1210 <unscoped-template-name>, which is a substitution
1211 candidate if we didn't just get it from a
1212 substitution. */
1213 if (! subst)
1214 {
1215 if (! d_add_substitution (di, dc))
1216 return NULL;
1217 }
59727473
DD
1218 dc = d_make_comp (di, DEMANGLE_COMPONENT_TEMPLATE, dc,
1219 d_template_args (di));
d00edca5
DD
1220 }
1221
1222 return dc;
1223 }
1224
1225 default:
1226 dc = d_unqualified_name (di);
1227 if (d_peek_char (di) == 'I')
03d5f569 1228 {
d00edca5
DD
1229 /* This is <template-args>, which means that we just saw
1230 <unscoped-template-name>, which is a substitution
1231 candidate. */
1232 if (! d_add_substitution (di, dc))
1233 return NULL;
59727473
DD
1234 dc = d_make_comp (di, DEMANGLE_COMPONENT_TEMPLATE, dc,
1235 d_template_args (di));
03d5f569 1236 }
d00edca5 1237 return dc;
eb383413 1238 }
d00edca5 1239}
eb383413 1240
d00edca5
DD
1241/* <nested-name> ::= N [<CV-qualifiers>] <prefix> <unqualified-name> E
1242 ::= N [<CV-qualifiers>] <template-prefix> <template-args> E
1243*/
eb383413 1244
59727473 1245static struct demangle_component *
9334f9c6 1246d_nested_name (struct d_info *di)
d00edca5 1247{
59727473
DD
1248 struct demangle_component *ret;
1249 struct demangle_component **pret;
03d5f569 1250
6ef6358e 1251 if (! d_check_char (di, 'N'))
d00edca5 1252 return NULL;
eb383413 1253
858b45cf 1254 pret = d_cv_qualifiers (di, &ret, 1);
d00edca5
DD
1255 if (pret == NULL)
1256 return NULL;
1257
1258 *pret = d_prefix (di);
1259 if (*pret == NULL)
1260 return NULL;
eb383413 1261
6ef6358e 1262 if (! d_check_char (di, 'E'))
eb383413
L
1263 return NULL;
1264
d00edca5 1265 return ret;
eb383413
L
1266}
1267
d00edca5
DD
1268/* <prefix> ::= <prefix> <unqualified-name>
1269 ::= <template-prefix> <template-args>
1270 ::= <template-param>
1271 ::=
1272 ::= <substitution>
eb383413 1273
d00edca5
DD
1274 <template-prefix> ::= <prefix> <(template) unqualified-name>
1275 ::= <template-param>
1276 ::= <substitution>
1277*/
1278
59727473 1279static struct demangle_component *
9334f9c6 1280d_prefix (struct d_info *di)
eb383413 1281{
59727473 1282 struct demangle_component *ret = NULL;
eb383413 1283
d00edca5 1284 while (1)
eb383413 1285 {
d00edca5 1286 char peek;
59727473
DD
1287 enum demangle_component_type comb_type;
1288 struct demangle_component *dc;
d00edca5
DD
1289
1290 peek = d_peek_char (di);
1291 if (peek == '\0')
1292 return NULL;
1293
1294 /* The older code accepts a <local-name> here, but I don't see
1295 that in the grammar. The older code does not accept a
1296 <template-param> here. */
eb383413 1297
59727473 1298 comb_type = DEMANGLE_COMPONENT_QUAL_NAME;
d00edca5 1299 if (IS_DIGIT (peek)
858b45cf 1300 || IS_LOWER (peek)
d00edca5 1301 || peek == 'C'
8bf955e1 1302 || peek == 'D'
664aa91f 1303 || peek == 'U'
8bf955e1 1304 || peek == 'L')
d00edca5
DD
1305 dc = d_unqualified_name (di);
1306 else if (peek == 'S')
97ceaf5b 1307 dc = d_substitution (di, 1);
d00edca5
DD
1308 else if (peek == 'I')
1309 {
1310 if (ret == NULL)
1311 return NULL;
59727473 1312 comb_type = DEMANGLE_COMPONENT_TEMPLATE;
d00edca5
DD
1313 dc = d_template_args (di);
1314 }
1315 else if (peek == 'T')
1316 dc = d_template_param (di);
1317 else if (peek == 'E')
1318 return ret;
664aa91f
DD
1319 else if (peek == 'M')
1320 {
1321 /* Initializer scope for a lambda. We don't need to represent
1322 this; the normal code will just treat the variable as a type
1323 scope, which gives appropriate output. */
1324 if (ret == NULL)
1325 return NULL;
1326 d_advance (di, 1);
1327 continue;
1328 }
d00edca5
DD
1329 else
1330 return NULL;
1331
1332 if (ret == NULL)
1333 ret = dc;
eb383413 1334 else
d00edca5
DD
1335 ret = d_make_comp (di, comb_type, ret, dc);
1336
1337 if (peek != 'S' && d_peek_char (di) != 'E')
1338 {
1339 if (! d_add_substitution (di, ret))
1340 return NULL;
1341 }
eb383413
L
1342 }
1343}
1344
d00edca5
DD
1345/* <unqualified-name> ::= <operator-name>
1346 ::= <ctor-dtor-name>
1347 ::= <source-name>
8bf955e1
GK
1348 ::= <local-source-name>
1349
1350 <local-source-name> ::= L <source-name> <discriminator>
d00edca5 1351*/
eb383413 1352
59727473 1353static struct demangle_component *
9334f9c6 1354d_unqualified_name (struct d_info *di)
eb383413 1355{
d00edca5
DD
1356 char peek;
1357
1358 peek = d_peek_char (di);
1359 if (IS_DIGIT (peek))
1360 return d_source_name (di);
858b45cf 1361 else if (IS_LOWER (peek))
b6fb00c0 1362 {
59727473 1363 struct demangle_component *ret;
b6fb00c0
DD
1364
1365 ret = d_operator_name (di);
59727473 1366 if (ret != NULL && ret->type == DEMANGLE_COMPONENT_OPERATOR)
b6fb00c0
DD
1367 di->expansion += sizeof "operator" + ret->u.s_operator.op->len - 2;
1368 return ret;
1369 }
d00edca5
DD
1370 else if (peek == 'C' || peek == 'D')
1371 return d_ctor_dtor_name (di);
8bf955e1
GK
1372 else if (peek == 'L')
1373 {
1374 struct demangle_component * ret;
1375
1376 d_advance (di, 1);
1377
1378 ret = d_source_name (di);
1379 if (ret == NULL)
1380 return NULL;
1381 if (! d_discriminator (di))
1382 return NULL;
1383 return ret;
1384 }
664aa91f
DD
1385 else if (peek == 'U')
1386 {
1387 switch (d_peek_next_char (di))
1388 {
1389 case 'l':
1390 return d_lambda (di);
1391 case 't':
1392 return d_unnamed_type (di);
1393 default:
1394 return NULL;
1395 }
1396 }
d00edca5 1397 else
03d5f569 1398 return NULL;
eb383413
L
1399}
1400
d00edca5 1401/* <source-name> ::= <(positive length) number> <identifier> */
eb383413 1402
59727473 1403static struct demangle_component *
9334f9c6 1404d_source_name (struct d_info *di)
eb383413 1405{
d00edca5 1406 long len;
59727473 1407 struct demangle_component *ret;
d00edca5
DD
1408
1409 len = d_number (di);
1410 if (len <= 0)
1411 return NULL;
1412 ret = d_identifier (di, len);
1413 di->last_name = ret;
1414 return ret;
eb383413
L
1415}
1416
d00edca5 1417/* number ::= [n] <(non-negative decimal integer)> */
eb383413 1418
d00edca5 1419static long
9334f9c6 1420d_number (struct d_info *di)
eb383413 1421{
b6fb00c0 1422 int negative;
d00edca5
DD
1423 char peek;
1424 long ret;
eb383413 1425
b6fb00c0 1426 negative = 0;
d00edca5
DD
1427 peek = d_peek_char (di);
1428 if (peek == 'n')
1429 {
b6fb00c0 1430 negative = 1;
d00edca5
DD
1431 d_advance (di, 1);
1432 peek = d_peek_char (di);
1433 }
eb383413 1434
d00edca5
DD
1435 ret = 0;
1436 while (1)
eb383413 1437 {
d00edca5 1438 if (! IS_DIGIT (peek))
b6fb00c0
DD
1439 {
1440 if (negative)
1441 ret = - ret;
1442 return ret;
1443 }
d00edca5
DD
1444 ret = ret * 10 + peek - '0';
1445 d_advance (di, 1);
1446 peek = d_peek_char (di);
eb383413 1447 }
eb383413
L
1448}
1449
cbc43128
DD
1450/* Like d_number, but returns a demangle_component. */
1451
1452static struct demangle_component *
1453d_number_component (struct d_info *di)
1454{
1455 struct demangle_component *ret = d_make_empty (di);
1456 if (ret)
1457 {
1458 ret->type = DEMANGLE_COMPONENT_NUMBER;
1459 ret->u.s_number.number = d_number (di);
1460 }
1461 return ret;
1462}
1463
d00edca5 1464/* identifier ::= <(unqualified source code identifier)> */
eb383413 1465
59727473 1466static struct demangle_component *
9334f9c6 1467d_identifier (struct d_info *di, int len)
eb383413 1468{
d00edca5 1469 const char *name;
eb383413 1470
d00edca5 1471 name = d_str (di);
b6fb00c0
DD
1472
1473 if (di->send - name < len)
1474 return NULL;
1475
d00edca5 1476 d_advance (di, len);
eb383413 1477
2730f651
DD
1478 /* A Java mangled name may have a trailing '$' if it is a C++
1479 keyword. This '$' is not included in the length count. We just
1480 ignore the '$'. */
1481 if ((di->options & DMGL_JAVA) != 0
1482 && d_peek_char (di) == '$')
1483 d_advance (di, 1);
1484
d00edca5
DD
1485 /* Look for something which looks like a gcc encoding of an
1486 anonymous namespace, and replace it with a more user friendly
1487 name. */
1488 if (len >= (int) ANONYMOUS_NAMESPACE_PREFIX_LEN + 2
1489 && memcmp (name, ANONYMOUS_NAMESPACE_PREFIX,
1490 ANONYMOUS_NAMESPACE_PREFIX_LEN) == 0)
eb383413 1491 {
d00edca5
DD
1492 const char *s;
1493
1494 s = name + ANONYMOUS_NAMESPACE_PREFIX_LEN;
1495 if ((*s == '.' || *s == '_' || *s == '$')
1496 && s[1] == 'N')
b6fb00c0
DD
1497 {
1498 di->expansion -= len - sizeof "(anonymous namespace)";
1499 return d_make_name (di, "(anonymous namespace)",
1500 sizeof "(anonymous namespace)" - 1);
1501 }
eb383413 1502 }
d00edca5
DD
1503
1504 return d_make_name (di, name, len);
eb383413
L
1505}
1506
d00edca5
DD
1507/* operator_name ::= many different two character encodings.
1508 ::= cv <type>
1509 ::= v <digit> <source-name>
1510*/
eb383413 1511
b6fb00c0
DD
1512#define NL(s) s, (sizeof s) - 1
1513
59727473
DD
1514CP_STATIC_IF_GLIBCPP_V3
1515const struct demangle_operator_info cplus_demangle_operators[] =
d00edca5 1516{
b6fb00c0
DD
1517 { "aN", NL ("&="), 2 },
1518 { "aS", NL ("="), 2 },
1519 { "aa", NL ("&&"), 2 },
1520 { "ad", NL ("&"), 1 },
1521 { "an", NL ("&"), 2 },
ba8cb4ba 1522 { "cl", NL ("()"), 2 },
b6fb00c0
DD
1523 { "cm", NL (","), 2 },
1524 { "co", NL ("~"), 1 },
1525 { "dV", NL ("/="), 2 },
1526 { "da", NL ("delete[]"), 1 },
1527 { "de", NL ("*"), 1 },
1528 { "dl", NL ("delete"), 1 },
1c08f2c8 1529 { "dt", NL ("."), 2 },
b6fb00c0
DD
1530 { "dv", NL ("/"), 2 },
1531 { "eO", NL ("^="), 2 },
1532 { "eo", NL ("^"), 2 },
1533 { "eq", NL ("=="), 2 },
1534 { "ge", NL (">="), 2 },
1535 { "gt", NL (">"), 2 },
1536 { "ix", NL ("[]"), 2 },
1537 { "lS", NL ("<<="), 2 },
1538 { "le", NL ("<="), 2 },
1539 { "ls", NL ("<<"), 2 },
1540 { "lt", NL ("<"), 2 },
1541 { "mI", NL ("-="), 2 },
1542 { "mL", NL ("*="), 2 },
1543 { "mi", NL ("-"), 2 },
1544 { "ml", NL ("*"), 2 },
1545 { "mm", NL ("--"), 1 },
1546 { "na", NL ("new[]"), 1 },
1547 { "ne", NL ("!="), 2 },
1548 { "ng", NL ("-"), 1 },
1549 { "nt", NL ("!"), 1 },
1550 { "nw", NL ("new"), 1 },
1551 { "oR", NL ("|="), 2 },
1552 { "oo", NL ("||"), 2 },
1553 { "or", NL ("|"), 2 },
1554 { "pL", NL ("+="), 2 },
1555 { "pl", NL ("+"), 2 },
1556 { "pm", NL ("->*"), 2 },
1557 { "pp", NL ("++"), 1 },
1558 { "ps", NL ("+"), 1 },
1559 { "pt", NL ("->"), 2 },
1560 { "qu", NL ("?"), 3 },
1561 { "rM", NL ("%="), 2 },
1562 { "rS", NL (">>="), 2 },
1563 { "rm", NL ("%"), 2 },
1564 { "rs", NL (">>"), 2 },
1565 { "st", NL ("sizeof "), 1 },
59727473 1566 { "sz", NL ("sizeof "), 1 },
c743cf5d
DD
1567 { "at", NL ("alignof "), 1 },
1568 { "az", NL ("alignof "), 1 },
59727473 1569 { NULL, NULL, 0, 0 }
d00edca5 1570};
eb383413 1571
59727473 1572static struct demangle_component *
9334f9c6 1573d_operator_name (struct d_info *di)
eb383413 1574{
d00edca5
DD
1575 char c1;
1576 char c2;
eb383413 1577
d00edca5
DD
1578 c1 = d_next_char (di);
1579 c2 = d_next_char (di);
1580 if (c1 == 'v' && IS_DIGIT (c2))
1581 return d_make_extended_operator (di, c2 - '0', d_source_name (di));
1582 else if (c1 == 'c' && c2 == 'v')
59727473
DD
1583 return d_make_comp (di, DEMANGLE_COMPONENT_CAST,
1584 cplus_demangle_type (di), NULL);
d00edca5 1585 else
eb383413 1586 {
59727473 1587 /* LOW is the inclusive lower bound. */
d00edca5 1588 int low = 0;
59727473
DD
1589 /* HIGH is the exclusive upper bound. We subtract one to ignore
1590 the sentinel at the end of the array. */
1591 int high = ((sizeof (cplus_demangle_operators)
1592 / sizeof (cplus_demangle_operators[0]))
1593 - 1);
eb383413 1594
d00edca5
DD
1595 while (1)
1596 {
1597 int i;
59727473 1598 const struct demangle_operator_info *p;
eb383413 1599
d00edca5 1600 i = low + (high - low) / 2;
59727473 1601 p = cplus_demangle_operators + i;
eb383413 1602
d00edca5
DD
1603 if (c1 == p->code[0] && c2 == p->code[1])
1604 return d_make_operator (di, p);
1605
1606 if (c1 < p->code[0] || (c1 == p->code[0] && c2 < p->code[1]))
1607 high = i;
1608 else
1609 low = i + 1;
1610 if (low == high)
1611 return NULL;
1612 }
1613 }
eb383413
L
1614}
1615
830ef634
DD
1616static struct demangle_component *
1617d_make_character (struct d_info *di, int c)
1618{
1619 struct demangle_component *p;
1620 p = d_make_empty (di);
1621 if (p != NULL)
1622 {
1623 p->type = DEMANGLE_COMPONENT_CHARACTER;
1624 p->u.s_character.character = c;
1625 }
1626 return p;
1627}
1628
1629static struct demangle_component *
1630d_java_resource (struct d_info *di)
1631{
1632 struct demangle_component *p = NULL;
1633 struct demangle_component *next = NULL;
1634 long len, i;
1635 char c;
1636 const char *str;
1637
1638 len = d_number (di);
1639 if (len <= 1)
1640 return NULL;
1641
1642 /* Eat the leading '_'. */
1643 if (d_next_char (di) != '_')
1644 return NULL;
1645 len--;
1646
1647 str = d_str (di);
1648 i = 0;
1649
1650 while (len > 0)
1651 {
1652 c = str[i];
1653 if (!c)
1654 return NULL;
1655
1656 /* Each chunk is either a '$' escape... */
1657 if (c == '$')
1658 {
1659 i++;
1660 switch (str[i++])
1661 {
1662 case 'S':
1663 c = '/';
1664 break;
1665 case '_':
1666 c = '.';
1667 break;
1668 case '$':
1669 c = '$';
1670 break;
1671 default:
1672 return NULL;
1673 }
1674 next = d_make_character (di, c);
1675 d_advance (di, i);
1676 str = d_str (di);
1677 len -= i;
1678 i = 0;
1679 if (next == NULL)
1680 return NULL;
1681 }
1682 /* ... or a sequence of characters. */
1683 else
1684 {
1685 while (i < len && str[i] && str[i] != '$')
1686 i++;
1687
1688 next = d_make_name (di, str, i);
1689 d_advance (di, i);
1690 str = d_str (di);
1691 len -= i;
1692 i = 0;
1693 if (next == NULL)
1694 return NULL;
1695 }
1696
1697 if (p == NULL)
1698 p = next;
1699 else
1700 {
1701 p = d_make_comp (di, DEMANGLE_COMPONENT_COMPOUND_NAME, p, next);
1702 if (p == NULL)
1703 return NULL;
1704 }
1705 }
1706
1707 p = d_make_comp (di, DEMANGLE_COMPONENT_JAVA_RESOURCE, p, NULL);
1708
1709 return p;
1710}
1711
d00edca5
DD
1712/* <special-name> ::= TV <type>
1713 ::= TT <type>
1714 ::= TI <type>
1715 ::= TS <type>
1716 ::= GV <(object) name>
1717 ::= T <call-offset> <(base) encoding>
1718 ::= Tc <call-offset> <call-offset> <(base) encoding>
1719 Also g++ extensions:
1720 ::= TC <type> <(offset) number> _ <(base) type>
1721 ::= TF <type>
1722 ::= TJ <type>
1723 ::= GR <name>
839e4798 1724 ::= GA <encoding>
830ef634 1725 ::= Gr <resource name>
d00edca5 1726*/
eb383413 1727
59727473 1728static struct demangle_component *
9334f9c6 1729d_special_name (struct d_info *di)
eb383413 1730{
b6fb00c0 1731 di->expansion += 20;
6ef6358e 1732 if (d_check_char (di, 'T'))
03d5f569 1733 {
d00edca5
DD
1734 switch (d_next_char (di))
1735 {
1736 case 'V':
b6fb00c0 1737 di->expansion -= 5;
59727473
DD
1738 return d_make_comp (di, DEMANGLE_COMPONENT_VTABLE,
1739 cplus_demangle_type (di), NULL);
d00edca5 1740 case 'T':
b6fb00c0 1741 di->expansion -= 10;
59727473
DD
1742 return d_make_comp (di, DEMANGLE_COMPONENT_VTT,
1743 cplus_demangle_type (di), NULL);
d00edca5 1744 case 'I':
59727473
DD
1745 return d_make_comp (di, DEMANGLE_COMPONENT_TYPEINFO,
1746 cplus_demangle_type (di), NULL);
d00edca5 1747 case 'S':
59727473
DD
1748 return d_make_comp (di, DEMANGLE_COMPONENT_TYPEINFO_NAME,
1749 cplus_demangle_type (di), NULL);
eb383413 1750
d00edca5
DD
1751 case 'h':
1752 if (! d_call_offset (di, 'h'))
1753 return NULL;
59727473
DD
1754 return d_make_comp (di, DEMANGLE_COMPONENT_THUNK,
1755 d_encoding (di, 0), NULL);
eb383413 1756
d00edca5
DD
1757 case 'v':
1758 if (! d_call_offset (di, 'v'))
1759 return NULL;
59727473
DD
1760 return d_make_comp (di, DEMANGLE_COMPONENT_VIRTUAL_THUNK,
1761 d_encoding (di, 0), NULL);
eb383413 1762
d00edca5
DD
1763 case 'c':
1764 if (! d_call_offset (di, '\0'))
1765 return NULL;
1766 if (! d_call_offset (di, '\0'))
1767 return NULL;
59727473
DD
1768 return d_make_comp (di, DEMANGLE_COMPONENT_COVARIANT_THUNK,
1769 d_encoding (di, 0), NULL);
eb383413 1770
d00edca5
DD
1771 case 'C':
1772 {
59727473 1773 struct demangle_component *derived_type;
d00edca5 1774 long offset;
59727473 1775 struct demangle_component *base_type;
d00edca5 1776
59727473 1777 derived_type = cplus_demangle_type (di);
d00edca5
DD
1778 offset = d_number (di);
1779 if (offset < 0)
1780 return NULL;
6ef6358e 1781 if (! d_check_char (di, '_'))
d00edca5 1782 return NULL;
59727473 1783 base_type = cplus_demangle_type (di);
d00edca5
DD
1784 /* We don't display the offset. FIXME: We should display
1785 it in verbose mode. */
b6fb00c0 1786 di->expansion += 5;
59727473
DD
1787 return d_make_comp (di, DEMANGLE_COMPONENT_CONSTRUCTION_VTABLE,
1788 base_type, derived_type);
d00edca5 1789 }
eb383413 1790
d00edca5 1791 case 'F':
59727473
DD
1792 return d_make_comp (di, DEMANGLE_COMPONENT_TYPEINFO_FN,
1793 cplus_demangle_type (di), NULL);
d00edca5 1794 case 'J':
59727473
DD
1795 return d_make_comp (di, DEMANGLE_COMPONENT_JAVA_CLASS,
1796 cplus_demangle_type (di), NULL);
eb383413 1797
d00edca5
DD
1798 default:
1799 return NULL;
1800 }
eb383413 1801 }
6ef6358e 1802 else if (d_check_char (di, 'G'))
eb383413 1803 {
d00edca5
DD
1804 switch (d_next_char (di))
1805 {
1806 case 'V':
59727473 1807 return d_make_comp (di, DEMANGLE_COMPONENT_GUARD, d_name (di), NULL);
d00edca5
DD
1808
1809 case 'R':
59727473
DD
1810 return d_make_comp (di, DEMANGLE_COMPONENT_REFTEMP, d_name (di),
1811 NULL);
d00edca5 1812
839e4798
RH
1813 case 'A':
1814 return d_make_comp (di, DEMANGLE_COMPONENT_HIDDEN_ALIAS,
1815 d_encoding (di, 0), NULL);
1816
830ef634
DD
1817 case 'r':
1818 return d_java_resource (di);
1819
d00edca5
DD
1820 default:
1821 return NULL;
1822 }
eb383413 1823 }
d00edca5
DD
1824 else
1825 return NULL;
eb383413
L
1826}
1827
d00edca5
DD
1828/* <call-offset> ::= h <nv-offset> _
1829 ::= v <v-offset> _
eb383413 1830
d00edca5 1831 <nv-offset> ::= <(offset) number>
eb383413 1832
d00edca5 1833 <v-offset> ::= <(offset) number> _ <(virtual offset) number>
eb383413 1834
d00edca5
DD
1835 The C parameter, if not '\0', is a character we just read which is
1836 the start of the <call-offset>.
eb383413 1837
d00edca5
DD
1838 We don't display the offset information anywhere. FIXME: We should
1839 display it in verbose mode. */
eb383413 1840
d00edca5 1841static int
9334f9c6 1842d_call_offset (struct d_info *di, int c)
eb383413 1843{
d00edca5
DD
1844 if (c == '\0')
1845 c = d_next_char (di);
eb383413 1846
d00edca5 1847 if (c == 'h')
eb129e35 1848 d_number (di);
d00edca5 1849 else if (c == 'v')
eb383413 1850 {
eb129e35 1851 d_number (di);
6ef6358e 1852 if (! d_check_char (di, '_'))
d00edca5 1853 return 0;
eb129e35 1854 d_number (di);
eb383413 1855 }
d00edca5
DD
1856 else
1857 return 0;
eb383413 1858
6ef6358e 1859 if (! d_check_char (di, '_'))
d00edca5 1860 return 0;
eb383413 1861
d00edca5 1862 return 1;
eb383413
L
1863}
1864
d00edca5
DD
1865/* <ctor-dtor-name> ::= C1
1866 ::= C2
1867 ::= C3
1868 ::= D0
1869 ::= D1
1870 ::= D2
1871*/
1872
59727473 1873static struct demangle_component *
9334f9c6 1874d_ctor_dtor_name (struct d_info *di)
d00edca5 1875{
b6fb00c0
DD
1876 if (di->last_name != NULL)
1877 {
59727473 1878 if (di->last_name->type == DEMANGLE_COMPONENT_NAME)
b6fb00c0 1879 di->expansion += di->last_name->u.s_name.len;
59727473 1880 else if (di->last_name->type == DEMANGLE_COMPONENT_SUB_STD)
b6fb00c0
DD
1881 di->expansion += di->last_name->u.s_string.len;
1882 }
6ef6358e 1883 switch (d_peek_char (di))
d00edca5
DD
1884 {
1885 case 'C':
1886 {
1887 enum gnu_v3_ctor_kinds kind;
1888
6ef6358e 1889 switch (d_peek_next_char (di))
d00edca5
DD
1890 {
1891 case '1':
1892 kind = gnu_v3_complete_object_ctor;
1893 break;
1894 case '2':
1895 kind = gnu_v3_base_object_ctor;
1896 break;
1897 case '3':
1898 kind = gnu_v3_complete_object_allocating_ctor;
1899 break;
1900 default:
1901 return NULL;
1902 }
6ef6358e 1903 d_advance (di, 2);
d00edca5
DD
1904 return d_make_ctor (di, kind, di->last_name);
1905 }
1906
1907 case 'D':
1908 {
1909 enum gnu_v3_dtor_kinds kind;
1910
6ef6358e 1911 switch (d_peek_next_char (di))
d00edca5
DD
1912 {
1913 case '0':
1914 kind = gnu_v3_deleting_dtor;
1915 break;
1916 case '1':
1917 kind = gnu_v3_complete_object_dtor;
1918 break;
1919 case '2':
1920 kind = gnu_v3_base_object_dtor;
1921 break;
1922 default:
1923 return NULL;
1924 }
6ef6358e 1925 d_advance (di, 2);
d00edca5
DD
1926 return d_make_dtor (di, kind, di->last_name);
1927 }
eb383413 1928
d00edca5
DD
1929 default:
1930 return NULL;
1931 }
1932}
eb383413 1933
d00edca5
DD
1934/* <type> ::= <builtin-type>
1935 ::= <function-type>
1936 ::= <class-enum-type>
1937 ::= <array-type>
1938 ::= <pointer-to-member-type>
1939 ::= <template-param>
1940 ::= <template-template-param> <template-args>
1941 ::= <substitution>
1942 ::= <CV-qualifiers> <type>
1943 ::= P <type>
1944 ::= R <type>
8969a67f 1945 ::= O <type> (C++0x)
d00edca5
DD
1946 ::= C <type>
1947 ::= G <type>
1948 ::= U <source-name> <type>
1949
1950 <builtin-type> ::= various one letter codes
1951 ::= u <source-name>
1952*/
eb383413 1953
59727473
DD
1954CP_STATIC_IF_GLIBCPP_V3
1955const struct demangle_builtin_type_info
1956cplus_demangle_builtin_types[D_BUILTIN_TYPE_COUNT] =
d00edca5 1957{
2d733211 1958 /* a */ { NL ("signed char"), NL ("signed char"), D_PRINT_DEFAULT },
b6fb00c0 1959 /* b */ { NL ("bool"), NL ("boolean"), D_PRINT_BOOL },
2d733211
DD
1960 /* c */ { NL ("char"), NL ("byte"), D_PRINT_DEFAULT },
1961 /* d */ { NL ("double"), NL ("double"), D_PRINT_FLOAT },
1962 /* e */ { NL ("long double"), NL ("long double"), D_PRINT_FLOAT },
1963 /* f */ { NL ("float"), NL ("float"), D_PRINT_FLOAT },
1964 /* g */ { NL ("__float128"), NL ("__float128"), D_PRINT_FLOAT },
1965 /* h */ { NL ("unsigned char"), NL ("unsigned char"), D_PRINT_DEFAULT },
b6fb00c0 1966 /* i */ { NL ("int"), NL ("int"), D_PRINT_INT },
2d733211 1967 /* j */ { NL ("unsigned int"), NL ("unsigned"), D_PRINT_UNSIGNED },
b6fb00c0
DD
1968 /* k */ { NULL, 0, NULL, 0, D_PRINT_DEFAULT },
1969 /* l */ { NL ("long"), NL ("long"), D_PRINT_LONG },
2d733211 1970 /* m */ { NL ("unsigned long"), NL ("unsigned long"), D_PRINT_UNSIGNED_LONG },
b6fb00c0 1971 /* n */ { NL ("__int128"), NL ("__int128"), D_PRINT_DEFAULT },
2d733211
DD
1972 /* o */ { NL ("unsigned __int128"), NL ("unsigned __int128"),
1973 D_PRINT_DEFAULT },
1c08f2c8
DD
1974 /* p */ { NULL, 0, NULL, 0, D_PRINT_DEFAULT },
1975 /* q */ { NULL, 0, NULL, 0, D_PRINT_DEFAULT },
1976 /* r */ { NULL, 0, NULL, 0, D_PRINT_DEFAULT },
2d733211
DD
1977 /* s */ { NL ("short"), NL ("short"), D_PRINT_DEFAULT },
1978 /* t */ { NL ("unsigned short"), NL ("unsigned short"), D_PRINT_DEFAULT },
1c08f2c8 1979 /* u */ { NULL, 0, NULL, 0, D_PRINT_DEFAULT },
b6fb00c0 1980 /* v */ { NL ("void"), NL ("void"), D_PRINT_VOID },
2d733211
DD
1981 /* w */ { NL ("wchar_t"), NL ("char"), D_PRINT_DEFAULT },
1982 /* x */ { NL ("long long"), NL ("long"), D_PRINT_LONG_LONG },
1983 /* y */ { NL ("unsigned long long"), NL ("unsigned long long"),
1984 D_PRINT_UNSIGNED_LONG_LONG },
b6fb00c0 1985 /* z */ { NL ("..."), NL ("..."), D_PRINT_DEFAULT },
1c08f2c8
DD
1986 /* 26 */ { NL ("decimal32"), NL ("decimal32"), D_PRINT_DEFAULT },
1987 /* 27 */ { NL ("decimal64"), NL ("decimal64"), D_PRINT_DEFAULT },
1988 /* 28 */ { NL ("decimal128"), NL ("decimal128"), D_PRINT_DEFAULT },
1989 /* 29 */ { NL ("half"), NL ("half"), D_PRINT_FLOAT },
1990 /* 30 */ { NL ("char16_t"), NL ("char16_t"), D_PRINT_DEFAULT },
1991 /* 31 */ { NL ("char32_t"), NL ("char32_t"), D_PRINT_DEFAULT },
cf383746
DD
1992 /* 32 */ { NL ("decltype(nullptr)"), NL ("decltype(nullptr)"),
1993 D_PRINT_DEFAULT },
d00edca5 1994};
eb383413 1995
59727473
DD
1996CP_STATIC_IF_GLIBCPP_V3
1997struct demangle_component *
9334f9c6 1998cplus_demangle_type (struct d_info *di)
eb383413 1999{
d00edca5 2000 char peek;
59727473 2001 struct demangle_component *ret;
d00edca5
DD
2002 int can_subst;
2003
2004 /* The ABI specifies that when CV-qualifiers are used, the base type
2005 is substitutable, and the fully qualified type is substitutable,
2006 but the base type with a strict subset of the CV-qualifiers is
2007 not substitutable. The natural recursive implementation of the
2008 CV-qualifiers would cause subsets to be substitutable, so instead
2009 we pull them all off now.
2010
331c3da2
DD
2011 FIXME: The ABI says that order-insensitive vendor qualifiers
2012 should be handled in the same way, but we have no way to tell
2013 which vendor qualifiers are order-insensitive and which are
2014 order-sensitive. So we just assume that they are all
2015 order-sensitive. g++ 3.4 supports only one vendor qualifier,
2016 __vector, and it treats it as order-sensitive when mangling
2017 names. */
d00edca5
DD
2018
2019 peek = d_peek_char (di);
2020 if (peek == 'r' || peek == 'V' || peek == 'K')
2021 {
59727473 2022 struct demangle_component **pret;
74bcd529 2023
858b45cf 2024 pret = d_cv_qualifiers (di, &ret, 0);
331c3da2
DD
2025 if (pret == NULL)
2026 return NULL;
59727473 2027 *pret = cplus_demangle_type (di);
8d301070 2028 if (! *pret || ! d_add_substitution (di, ret))
d00edca5
DD
2029 return NULL;
2030 return ret;
2031 }
eb383413 2032
d00edca5 2033 can_subst = 1;
eb383413 2034
74bcd529 2035 switch (peek)
eb383413 2036 {
d00edca5
DD
2037 case 'a': case 'b': case 'c': case 'd': case 'e': case 'f': case 'g':
2038 case 'h': case 'i': case 'j': case 'l': case 'm': case 'n':
2039 case 'o': case 's': case 't':
2040 case 'v': case 'w': case 'x': case 'y': case 'z':
59727473
DD
2041 ret = d_make_builtin_type (di,
2042 &cplus_demangle_builtin_types[peek - 'a']);
b6fb00c0 2043 di->expansion += ret->u.s_builtin.type->len;
d00edca5
DD
2044 can_subst = 0;
2045 d_advance (di, 1);
2046 break;
2047
2048 case 'u':
2049 d_advance (di, 1);
59727473
DD
2050 ret = d_make_comp (di, DEMANGLE_COMPONENT_VENDOR_TYPE,
2051 d_source_name (di), NULL);
d00edca5
DD
2052 break;
2053
2054 case 'F':
2055 ret = d_function_type (di);
eb383413
L
2056 break;
2057
d00edca5
DD
2058 case '0': case '1': case '2': case '3': case '4':
2059 case '5': case '6': case '7': case '8': case '9':
2060 case 'N':
eb383413 2061 case 'Z':
d00edca5 2062 ret = d_class_enum_type (di);
eb383413
L
2063 break;
2064
d00edca5
DD
2065 case 'A':
2066 ret = d_array_type (di);
2067 break;
2068
2069 case 'M':
2070 ret = d_pointer_to_member_type (di);
2071 break;
2072
2073 case 'T':
2074 ret = d_template_param (di);
2075 if (d_peek_char (di) == 'I')
03d5f569 2076 {
d00edca5
DD
2077 /* This is <template-template-param> <template-args>. The
2078 <template-template-param> part is a substitution
2079 candidate. */
2080 if (! d_add_substitution (di, ret))
2081 return NULL;
59727473
DD
2082 ret = d_make_comp (di, DEMANGLE_COMPONENT_TEMPLATE, ret,
2083 d_template_args (di));
03d5f569 2084 }
d00edca5
DD
2085 break;
2086
2087 case 'S':
2088 /* If this is a special substitution, then it is the start of
2089 <class-enum-type>. */
2090 {
2091 char peek_next;
74bcd529 2092
d00edca5
DD
2093 peek_next = d_peek_next_char (di);
2094 if (IS_DIGIT (peek_next)
2095 || peek_next == '_'
858b45cf 2096 || IS_UPPER (peek_next))
d00edca5 2097 {
97ceaf5b 2098 ret = d_substitution (di, 0);
d00edca5
DD
2099 /* The substituted name may have been a template name and
2100 may be followed by tepmlate args. */
2101 if (d_peek_char (di) == 'I')
59727473 2102 ret = d_make_comp (di, DEMANGLE_COMPONENT_TEMPLATE, ret,
d00edca5
DD
2103 d_template_args (di));
2104 else
2105 can_subst = 0;
2106 }
2107 else
2108 {
2109 ret = d_class_enum_type (di);
2110 /* If the substitution was a complete type, then it is not
2111 a new substitution candidate. However, if the
2112 substitution was followed by template arguments, then
2113 the whole thing is a substitution candidate. */
59727473 2114 if (ret != NULL && ret->type == DEMANGLE_COMPONENT_SUB_STD)
d00edca5
DD
2115 can_subst = 0;
2116 }
2117 }
eb383413
L
2118 break;
2119
8969a67f
DD
2120 case 'O':
2121 d_advance (di, 1);
2122 ret = d_make_comp (di, DEMANGLE_COMPONENT_RVALUE_REFERENCE,
2123 cplus_demangle_type (di), NULL);
2124 break;
2125
d00edca5
DD
2126 case 'P':
2127 d_advance (di, 1);
59727473
DD
2128 ret = d_make_comp (di, DEMANGLE_COMPONENT_POINTER,
2129 cplus_demangle_type (di), NULL);
d00edca5 2130 break;
eb383413 2131
d00edca5
DD
2132 case 'R':
2133 d_advance (di, 1);
59727473 2134 ret = d_make_comp (di, DEMANGLE_COMPONENT_REFERENCE,
8969a67f 2135 cplus_demangle_type (di), NULL);
d00edca5 2136 break;
eb383413 2137
d00edca5
DD
2138 case 'C':
2139 d_advance (di, 1);
59727473
DD
2140 ret = d_make_comp (di, DEMANGLE_COMPONENT_COMPLEX,
2141 cplus_demangle_type (di), NULL);
d00edca5
DD
2142 break;
2143
2144 case 'G':
2145 d_advance (di, 1);
59727473
DD
2146 ret = d_make_comp (di, DEMANGLE_COMPONENT_IMAGINARY,
2147 cplus_demangle_type (di), NULL);
d00edca5 2148 break;
eb383413 2149
d00edca5
DD
2150 case 'U':
2151 d_advance (di, 1);
2152 ret = d_source_name (di);
59727473
DD
2153 ret = d_make_comp (di, DEMANGLE_COMPONENT_VENDOR_TYPE_QUAL,
2154 cplus_demangle_type (di), ret);
eb383413 2155 break;
d00edca5 2156
ba8cb4ba
DD
2157 case 'D':
2158 can_subst = 0;
2159 d_advance (di, 1);
2160 peek = d_next_char (di);
2161 switch (peek)
2162 {
2163 case 'T':
2164 case 't':
2165 /* decltype (expression) */
2166 ret = d_make_comp (di, DEMANGLE_COMPONENT_DECLTYPE,
2167 d_expression (di), NULL);
2168 if (ret && d_next_char (di) != 'E')
2169 ret = NULL;
2170 break;
2171
2172 case 'p':
2173 /* Pack expansion. */
1c08f2c8
DD
2174 ret = d_make_comp (di, DEMANGLE_COMPONENT_PACK_EXPANSION,
2175 cplus_demangle_type (di), NULL);
2176 break;
ba8cb4ba
DD
2177
2178 case 'f':
1c08f2c8
DD
2179 /* 32-bit decimal floating point */
2180 ret = d_make_builtin_type (di, &cplus_demangle_builtin_types[26]);
ba8cb4ba
DD
2181 di->expansion += ret->u.s_builtin.type->len;
2182 break;
2183 case 'd':
1c08f2c8
DD
2184 /* 64-bit DFP */
2185 ret = d_make_builtin_type (di, &cplus_demangle_builtin_types[27]);
ba8cb4ba
DD
2186 di->expansion += ret->u.s_builtin.type->len;
2187 break;
2188 case 'e':
2189 /* 128-bit DFP */
1c08f2c8 2190 ret = d_make_builtin_type (di, &cplus_demangle_builtin_types[28]);
ba8cb4ba
DD
2191 di->expansion += ret->u.s_builtin.type->len;
2192 break;
2193 case 'h':
2194 /* 16-bit half-precision FP */
1c08f2c8
DD
2195 ret = d_make_builtin_type (di, &cplus_demangle_builtin_types[29]);
2196 di->expansion += ret->u.s_builtin.type->len;
2197 break;
2198 case 's':
2199 /* char16_t */
2200 ret = d_make_builtin_type (di, &cplus_demangle_builtin_types[30]);
2201 di->expansion += ret->u.s_builtin.type->len;
2202 break;
2203 case 'i':
2204 /* char32_t */
2205 ret = d_make_builtin_type (di, &cplus_demangle_builtin_types[31]);
ba8cb4ba
DD
2206 di->expansion += ret->u.s_builtin.type->len;
2207 break;
d2825c1a
DD
2208
2209 case 'F':
2210 /* Fixed point types. DF<int bits><length><fract bits><sat> */
2211 ret = d_make_empty (di);
2212 ret->type = DEMANGLE_COMPONENT_FIXED_TYPE;
2213 if ((ret->u.s_fixed.accum = IS_DIGIT (d_peek_char (di))))
2214 /* For demangling we don't care about the bits. */
2215 d_number (di);
2216 ret->u.s_fixed.length = cplus_demangle_type (di);
cbc43128
DD
2217 if (ret->u.s_fixed.length == NULL)
2218 return NULL;
d2825c1a
DD
2219 d_number (di);
2220 peek = d_next_char (di);
2221 ret->u.s_fixed.sat = (peek == 's');
2222 break;
60cf58f5 2223
cbc43128
DD
2224 case 'v':
2225 ret = d_vector_type (di);
2226 break;
2227
cf383746
DD
2228 case 'n':
2229 /* decltype(nullptr) */
2230 ret = d_make_builtin_type (di, &cplus_demangle_builtin_types[32]);
2231 di->expansion += ret->u.s_builtin.type->len;
2232 break;
2233
60cf58f5
DD
2234 default:
2235 return NULL;
ba8cb4ba
DD
2236 }
2237 break;
2238
d00edca5
DD
2239 default:
2240 return NULL;
eb383413
L
2241 }
2242
d00edca5
DD
2243 if (can_subst)
2244 {
2245 if (! d_add_substitution (di, ret))
2246 return NULL;
2247 }
eb383413 2248
d00edca5
DD
2249 return ret;
2250}
eb383413 2251
d00edca5 2252/* <CV-qualifiers> ::= [r] [V] [K] */
eb383413 2253
59727473 2254static struct demangle_component **
9334f9c6
DD
2255d_cv_qualifiers (struct d_info *di,
2256 struct demangle_component **pret, int member_fn)
eb383413
L
2257{
2258 char peek;
2259
d00edca5
DD
2260 peek = d_peek_char (di);
2261 while (peek == 'r' || peek == 'V' || peek == 'K')
eb383413 2262 {
59727473 2263 enum demangle_component_type t;
59666b35 2264
d00edca5
DD
2265 d_advance (di, 1);
2266 if (peek == 'r')
b6fb00c0 2267 {
59727473
DD
2268 t = (member_fn
2269 ? DEMANGLE_COMPONENT_RESTRICT_THIS
2270 : DEMANGLE_COMPONENT_RESTRICT);
b6fb00c0
DD
2271 di->expansion += sizeof "restrict";
2272 }
d00edca5 2273 else if (peek == 'V')
b6fb00c0 2274 {
59727473
DD
2275 t = (member_fn
2276 ? DEMANGLE_COMPONENT_VOLATILE_THIS
2277 : DEMANGLE_COMPONENT_VOLATILE);
b6fb00c0
DD
2278 di->expansion += sizeof "volatile";
2279 }
d00edca5 2280 else
b6fb00c0 2281 {
59727473
DD
2282 t = (member_fn
2283 ? DEMANGLE_COMPONENT_CONST_THIS
2284 : DEMANGLE_COMPONENT_CONST);
b6fb00c0
DD
2285 di->expansion += sizeof "const";
2286 }
eb383413 2287
d00edca5
DD
2288 *pret = d_make_comp (di, t, NULL, NULL);
2289 if (*pret == NULL)
2290 return NULL;
2291 pret = &d_left (*pret);
eb383413 2292
d00edca5
DD
2293 peek = d_peek_char (di);
2294 }
eb383413 2295
d00edca5
DD
2296 return pret;
2297}
eb383413 2298
d00edca5 2299/* <function-type> ::= F [Y] <bare-function-type> E */
eb383413 2300
59727473 2301static struct demangle_component *
9334f9c6 2302d_function_type (struct d_info *di)
eb383413 2303{
59727473 2304 struct demangle_component *ret;
eb383413 2305
6ef6358e 2306 if (! d_check_char (di, 'F'))
d00edca5
DD
2307 return NULL;
2308 if (d_peek_char (di) == 'Y')
2309 {
2310 /* Function has C linkage. We don't print this information.
2311 FIXME: We should print it in verbose mode. */
2312 d_advance (di, 1);
2313 }
2314 ret = d_bare_function_type (di, 1);
6ef6358e 2315 if (! d_check_char (di, 'E'))
d00edca5
DD
2316 return NULL;
2317 return ret;
2318}
74bcd529 2319
664aa91f 2320/* <type>+ */
eb383413 2321
59727473 2322static struct demangle_component *
664aa91f 2323d_parmlist (struct d_info *di)
d00edca5 2324{
59727473
DD
2325 struct demangle_component *tl;
2326 struct demangle_component **ptl;
7887b2ce 2327
d00edca5
DD
2328 tl = NULL;
2329 ptl = &tl;
eb383413
L
2330 while (1)
2331 {
59727473 2332 struct demangle_component *type;
eb383413 2333
664aa91f 2334 char peek = d_peek_char (di);
d00edca5
DD
2335 if (peek == '\0' || peek == 'E')
2336 break;
59727473 2337 type = cplus_demangle_type (di);
d00edca5
DD
2338 if (type == NULL)
2339 return NULL;
664aa91f
DD
2340 *ptl = d_make_comp (di, DEMANGLE_COMPONENT_ARGLIST, type, NULL);
2341 if (*ptl == NULL)
2342 return NULL;
2343 ptl = &d_right (*ptl);
eb383413 2344 }
eb383413 2345
d00edca5
DD
2346 /* There should be at least one parameter type besides the optional
2347 return type. A function which takes no arguments will have a
2348 single parameter type void. */
2349 if (tl == NULL)
2350 return NULL;
eb383413 2351
d00edca5
DD
2352 /* If we have a single parameter type void, omit it. */
2353 if (d_right (tl) == NULL
59727473 2354 && d_left (tl)->type == DEMANGLE_COMPONENT_BUILTIN_TYPE
d00edca5 2355 && d_left (tl)->u.s_builtin.type->print == D_PRINT_VOID)
b6fb00c0
DD
2356 {
2357 di->expansion -= d_left (tl)->u.s_builtin.type->len;
664aa91f 2358 d_left (tl) = NULL;
b6fb00c0 2359 }
eb383413 2360
664aa91f
DD
2361 return tl;
2362}
2363
2364/* <bare-function-type> ::= [J]<type>+ */
2365
2366static struct demangle_component *
2367d_bare_function_type (struct d_info *di, int has_return_type)
2368{
2369 struct demangle_component *return_type;
2370 struct demangle_component *tl;
2371 char peek;
2372
2373 /* Detect special qualifier indicating that the first argument
2374 is the return type. */
2375 peek = d_peek_char (di);
2376 if (peek == 'J')
2377 {
2378 d_advance (di, 1);
2379 has_return_type = 1;
2380 }
2381
2382 if (has_return_type)
2383 {
2384 return_type = cplus_demangle_type (di);
2385 if (return_type == NULL)
2386 return NULL;
2387 }
2388 else
2389 return_type = NULL;
2390
2391 tl = d_parmlist (di);
2392 if (tl == NULL)
2393 return NULL;
2394
2395 return d_make_comp (di, DEMANGLE_COMPONENT_FUNCTION_TYPE,
2396 return_type, tl);
d00edca5 2397}
eb383413 2398
d00edca5 2399/* <class-enum-type> ::= <name> */
eb383413 2400
59727473 2401static struct demangle_component *
9334f9c6 2402d_class_enum_type (struct d_info *di)
d00edca5
DD
2403{
2404 return d_name (di);
2405}
74bcd529 2406
d00edca5
DD
2407/* <array-type> ::= A <(positive dimension) number> _ <(element) type>
2408 ::= A [<(dimension) expression>] _ <(element) type>
2409*/
74bcd529 2410
59727473 2411static struct demangle_component *
9334f9c6 2412d_array_type (struct d_info *di)
d00edca5
DD
2413{
2414 char peek;
59727473 2415 struct demangle_component *dim;
74bcd529 2416
6ef6358e 2417 if (! d_check_char (di, 'A'))
d00edca5
DD
2418 return NULL;
2419
2420 peek = d_peek_char (di);
2421 if (peek == '_')
2422 dim = NULL;
2423 else if (IS_DIGIT (peek))
74bcd529 2424 {
d00edca5 2425 const char *s;
74bcd529 2426
d00edca5
DD
2427 s = d_str (di);
2428 do
2429 {
2430 d_advance (di, 1);
2431 peek = d_peek_char (di);
2432 }
2433 while (IS_DIGIT (peek));
2434 dim = d_make_name (di, s, d_str (di) - s);
331c3da2
DD
2435 if (dim == NULL)
2436 return NULL;
74bcd529 2437 }
eb383413 2438 else
d00edca5
DD
2439 {
2440 dim = d_expression (di);
2441 if (dim == NULL)
2442 return NULL;
2443 }
eb383413 2444
6ef6358e 2445 if (! d_check_char (di, '_'))
d00edca5 2446 return NULL;
eb383413 2447
59727473
DD
2448 return d_make_comp (di, DEMANGLE_COMPONENT_ARRAY_TYPE, dim,
2449 cplus_demangle_type (di));
d00edca5 2450}
eb383413 2451
cbc43128
DD
2452/* <vector-type> ::= Dv <number> _ <type>
2453 ::= Dv _ <expression> _ <type> */
2454
2455static struct demangle_component *
2456d_vector_type (struct d_info *di)
2457{
2458 char peek;
2459 struct demangle_component *dim;
2460
2461 peek = d_peek_char (di);
2462 if (peek == '_')
2463 {
2464 d_advance (di, 1);
2465 dim = d_expression (di);
2466 }
2467 else
2468 dim = d_number_component (di);
2469
2470 if (dim == NULL)
2471 return NULL;
2472
2473 if (! d_check_char (di, '_'))
2474 return NULL;
2475
2476 return d_make_comp (di, DEMANGLE_COMPONENT_VECTOR_TYPE, dim,
2477 cplus_demangle_type (di));
2478}
2479
d00edca5 2480/* <pointer-to-member-type> ::= M <(class) type> <(member) type> */
eb383413 2481
59727473 2482static struct demangle_component *
9334f9c6 2483d_pointer_to_member_type (struct d_info *di)
eb383413 2484{
59727473
DD
2485 struct demangle_component *cl;
2486 struct demangle_component *mem;
2487 struct demangle_component **pmem;
eb383413 2488
6ef6358e 2489 if (! d_check_char (di, 'M'))
d00edca5 2490 return NULL;
eb383413 2491
59727473 2492 cl = cplus_demangle_type (di);
eb383413 2493
d00edca5
DD
2494 /* The ABI specifies that any type can be a substitution source, and
2495 that M is followed by two types, and that when a CV-qualified
2496 type is seen both the base type and the CV-qualified types are
2497 substitution sources. The ABI also specifies that for a pointer
2498 to a CV-qualified member function, the qualifiers are attached to
2499 the second type. Given the grammar, a plain reading of the ABI
2500 suggests that both the CV-qualified member function and the
2501 non-qualified member function are substitution sources. However,
2502 g++ does not work that way. g++ treats only the CV-qualified
2503 member function as a substitution source. FIXME. So to work
2504 with g++, we need to pull off the CV-qualifiers here, in order to
cb6c09ac
DD
2505 avoid calling add_substitution() in cplus_demangle_type(). But
2506 for a CV-qualified member which is not a function, g++ does
2507 follow the ABI, so we need to handle that case here by calling
2508 d_add_substitution ourselves. */
eb383413 2509
858b45cf 2510 pmem = d_cv_qualifiers (di, &mem, 1);
331c3da2
DD
2511 if (pmem == NULL)
2512 return NULL;
59727473 2513 *pmem = cplus_demangle_type (di);
8d301070
GK
2514 if (*pmem == NULL)
2515 return NULL;
eb383413 2516
cb6c09ac
DD
2517 if (pmem != &mem && (*pmem)->type != DEMANGLE_COMPONENT_FUNCTION_TYPE)
2518 {
2519 if (! d_add_substitution (di, mem))
2520 return NULL;
2521 }
2522
59727473 2523 return d_make_comp (di, DEMANGLE_COMPONENT_PTRMEM_TYPE, cl, mem);
eb383413
L
2524}
2525
664aa91f
DD
2526/* <non-negative number> _ */
2527
2528static long
2529d_compact_number (struct d_info *di)
2530{
2531 long num;
2532 if (d_peek_char (di) == '_')
2533 num = 0;
2534 else if (d_peek_char (di) == 'n')
2535 return -1;
2536 else
2537 num = d_number (di) + 1;
2538
2539 if (! d_check_char (di, '_'))
2540 return -1;
2541 return num;
2542}
2543
d00edca5
DD
2544/* <template-param> ::= T_
2545 ::= T <(parameter-2 non-negative) number> _
2546*/
eb383413 2547
59727473 2548static struct demangle_component *
9334f9c6 2549d_template_param (struct d_info *di)
eb383413 2550{
d00edca5 2551 long param;
eb383413 2552
6ef6358e 2553 if (! d_check_char (di, 'T'))
d00edca5 2554 return NULL;
eb383413 2555
664aa91f
DD
2556 param = d_compact_number (di);
2557 if (param < 0)
d00edca5 2558 return NULL;
eb383413 2559
b6fb00c0
DD
2560 ++di->did_subs;
2561
d00edca5 2562 return d_make_template_param (di, param);
eb383413
L
2563}
2564
d00edca5
DD
2565/* <template-args> ::= I <template-arg>+ E */
2566
59727473 2567static struct demangle_component *
9334f9c6 2568d_template_args (struct d_info *di)
eb383413 2569{
59727473
DD
2570 struct demangle_component *hold_last_name;
2571 struct demangle_component *al;
2572 struct demangle_component **pal;
eb383413 2573
d00edca5
DD
2574 /* Preserve the last name we saw--don't let the template arguments
2575 clobber it, as that would give us the wrong name for a subsequent
2576 constructor or destructor. */
2577 hold_last_name = di->last_name;
eb383413 2578
6ef6358e 2579 if (! d_check_char (di, 'I'))
d00edca5 2580 return NULL;
eb383413 2581
1c08f2c8
DD
2582 if (d_peek_char (di) == 'E')
2583 {
2584 /* An argument pack can be empty. */
2585 d_advance (di, 1);
2586 return d_make_comp (di, DEMANGLE_COMPONENT_TEMPLATE_ARGLIST, NULL, NULL);
2587 }
2588
d00edca5
DD
2589 al = NULL;
2590 pal = &al;
eb383413
L
2591 while (1)
2592 {
59727473 2593 struct demangle_component *a;
d00edca5
DD
2594
2595 a = d_template_arg (di);
2596 if (a == NULL)
2597 return NULL;
2598
59727473 2599 *pal = d_make_comp (di, DEMANGLE_COMPONENT_TEMPLATE_ARGLIST, a, NULL);
331c3da2
DD
2600 if (*pal == NULL)
2601 return NULL;
d00edca5
DD
2602 pal = &d_right (*pal);
2603
2604 if (d_peek_char (di) == 'E')
03d5f569 2605 {
d00edca5
DD
2606 d_advance (di, 1);
2607 break;
03d5f569 2608 }
eb383413
L
2609 }
2610
d00edca5
DD
2611 di->last_name = hold_last_name;
2612
2613 return al;
eb383413
L
2614}
2615
d00edca5
DD
2616/* <template-arg> ::= <type>
2617 ::= X <expression> E
2618 ::= <expr-primary>
2619*/
eb383413 2620
59727473 2621static struct demangle_component *
9334f9c6 2622d_template_arg (struct d_info *di)
eb383413 2623{
59727473 2624 struct demangle_component *ret;
03d5f569 2625
d00edca5 2626 switch (d_peek_char (di))
eb383413 2627 {
d00edca5
DD
2628 case 'X':
2629 d_advance (di, 1);
2630 ret = d_expression (di);
6ef6358e 2631 if (! d_check_char (di, 'E'))
d00edca5
DD
2632 return NULL;
2633 return ret;
b851d07b 2634
d00edca5
DD
2635 case 'L':
2636 return d_expr_primary (di);
eb383413 2637
1c08f2c8
DD
2638 case 'I':
2639 /* An argument pack. */
2640 return d_template_args (di);
2641
d00edca5 2642 default:
59727473 2643 return cplus_demangle_type (di);
74bcd529 2644 }
eb383413
L
2645}
2646
ba8cb4ba
DD
2647/* Subroutine of <expression> ::= cl <expression>+ E */
2648
2649static struct demangle_component *
2650d_exprlist (struct d_info *di)
2651{
2652 struct demangle_component *list = NULL;
2653 struct demangle_component **p = &list;
2654
1c08f2c8
DD
2655 if (d_peek_char (di) == 'E')
2656 {
2657 d_advance (di, 1);
2658 return d_make_comp (di, DEMANGLE_COMPONENT_ARGLIST, NULL, NULL);
2659 }
2660
ba8cb4ba
DD
2661 while (1)
2662 {
2663 struct demangle_component *arg = d_expression (di);
2664 if (arg == NULL)
2665 return NULL;
2666
2667 *p = d_make_comp (di, DEMANGLE_COMPONENT_ARGLIST, arg, NULL);
2668 if (*p == NULL)
2669 return NULL;
2670 p = &d_right (*p);
2671
2672 if (d_peek_char (di) == 'E')
2673 {
2674 d_advance (di, 1);
2675 break;
2676 }
2677 }
2678
2679 return list;
2680}
2681
d00edca5
DD
2682/* <expression> ::= <(unary) operator-name> <expression>
2683 ::= <(binary) operator-name> <expression> <expression>
2684 ::= <(trinary) operator-name> <expression> <expression> <expression>
ba8cb4ba 2685 ::= cl <expression>+ E
d00edca5
DD
2686 ::= st <type>
2687 ::= <template-param>
2688 ::= sr <type> <unqualified-name>
2689 ::= sr <type> <unqualified-name> <template-args>
2690 ::= <expr-primary>
2691*/
2692
59727473 2693static struct demangle_component *
9334f9c6 2694d_expression (struct d_info *di)
eb383413 2695{
d00edca5 2696 char peek;
eb383413 2697
d00edca5
DD
2698 peek = d_peek_char (di);
2699 if (peek == 'L')
2700 return d_expr_primary (di);
2701 else if (peek == 'T')
2702 return d_template_param (di);
2703 else if (peek == 's' && d_peek_next_char (di) == 'r')
eb383413 2704 {
59727473
DD
2705 struct demangle_component *type;
2706 struct demangle_component *name;
eb383413 2707
d00edca5 2708 d_advance (di, 2);
59727473 2709 type = cplus_demangle_type (di);
d00edca5
DD
2710 name = d_unqualified_name (di);
2711 if (d_peek_char (di) != 'I')
59727473 2712 return d_make_comp (di, DEMANGLE_COMPONENT_QUAL_NAME, type, name);
d00edca5 2713 else
59727473
DD
2714 return d_make_comp (di, DEMANGLE_COMPONENT_QUAL_NAME, type,
2715 d_make_comp (di, DEMANGLE_COMPONENT_TEMPLATE, name,
d00edca5 2716 d_template_args (di)));
793011ca 2717 }
e2e1864d
DD
2718 else if (peek == 's' && d_peek_next_char (di) == 'p')
2719 {
2720 d_advance (di, 2);
2721 return d_make_comp (di, DEMANGLE_COMPONENT_PACK_EXPANSION,
2722 d_expression (di), NULL);
2723 }
c743cf5d 2724 else if (peek == 'f' && d_peek_next_char (di) == 'p')
ba8cb4ba 2725 {
c743cf5d
DD
2726 /* Function parameter used in a late-specified return type. */
2727 int index;
ba8cb4ba 2728 d_advance (di, 2);
664aa91f
DD
2729 index = d_compact_number (di);
2730 if (index < 0)
c743cf5d
DD
2731 return NULL;
2732
2733 return d_make_function_param (di, index);
ba8cb4ba 2734 }
cbc43128
DD
2735 else if (IS_DIGIT (peek)
2736 || (peek == 'o' && d_peek_next_char (di) == 'n'))
1c08f2c8
DD
2737 {
2738 /* We can get an unqualified name as an expression in the case of
cbc43128
DD
2739 a dependent function call, i.e. decltype(f(t)). */
2740 struct demangle_component *name;
2741
2742 if (peek == 'o')
2743 /* operator-function-id, i.e. operator+(t). */
2744 d_advance (di, 2);
2745
2746 name = d_unqualified_name (di);
1c08f2c8
DD
2747 if (name == NULL)
2748 return NULL;
2749 if (d_peek_char (di) == 'I')
2750 return d_make_comp (di, DEMANGLE_COMPONENT_TEMPLATE, name,
2751 d_template_args (di));
2752 else
2753 return name;
2754 }
d00edca5 2755 else
eb383413 2756 {
59727473 2757 struct demangle_component *op;
d00edca5 2758 int args;
eb383413 2759
d00edca5
DD
2760 op = d_operator_name (di);
2761 if (op == NULL)
2762 return NULL;
eb383413 2763
59727473 2764 if (op->type == DEMANGLE_COMPONENT_OPERATOR)
b6fb00c0
DD
2765 di->expansion += op->u.s_operator.op->len - 2;
2766
59727473 2767 if (op->type == DEMANGLE_COMPONENT_OPERATOR
d00edca5 2768 && strcmp (op->u.s_operator.op->code, "st") == 0)
59727473
DD
2769 return d_make_comp (di, DEMANGLE_COMPONENT_UNARY, op,
2770 cplus_demangle_type (di));
eb383413 2771
d00edca5
DD
2772 switch (op->type)
2773 {
2774 default:
2775 return NULL;
59727473 2776 case DEMANGLE_COMPONENT_OPERATOR:
d00edca5
DD
2777 args = op->u.s_operator.op->args;
2778 break;
59727473 2779 case DEMANGLE_COMPONENT_EXTENDED_OPERATOR:
d00edca5
DD
2780 args = op->u.s_extended_operator.args;
2781 break;
59727473 2782 case DEMANGLE_COMPONENT_CAST:
60cf58f5 2783 args = 1;
d00edca5
DD
2784 break;
2785 }
2786
2787 switch (args)
2788 {
2789 case 1:
c743cf5d
DD
2790 {
2791 struct demangle_component *operand;
2792 if (op->type == DEMANGLE_COMPONENT_CAST
2793 && d_check_char (di, '_'))
2794 operand = d_exprlist (di);
2795 else
2796 operand = d_expression (di);
2797 return d_make_comp (di, DEMANGLE_COMPONENT_UNARY, op,
2798 operand);
2799 }
d00edca5
DD
2800 case 2:
2801 {
59727473 2802 struct demangle_component *left;
ba8cb4ba 2803 struct demangle_component *right;
cbc43128 2804 const char *code = op->u.s_operator.op->code;
d00edca5
DD
2805
2806 left = d_expression (di);
cbc43128 2807 if (!strcmp (code, "cl"))
ba8cb4ba 2808 right = d_exprlist (di);
cbc43128
DD
2809 else if (!strcmp (code, "dt") || !strcmp (code, "pt"))
2810 {
2811 right = d_unqualified_name (di);
2812 if (d_peek_char (di) == 'I')
2813 right = d_make_comp (di, DEMANGLE_COMPONENT_TEMPLATE,
2814 right, d_template_args (di));
2815 }
ba8cb4ba
DD
2816 else
2817 right = d_expression (di);
2818
59727473
DD
2819 return d_make_comp (di, DEMANGLE_COMPONENT_BINARY, op,
2820 d_make_comp (di,
2821 DEMANGLE_COMPONENT_BINARY_ARGS,
ba8cb4ba 2822 left, right));
d00edca5
DD
2823 }
2824 case 3:
2825 {
59727473
DD
2826 struct demangle_component *first;
2827 struct demangle_component *second;
d00edca5
DD
2828
2829 first = d_expression (di);
2830 second = d_expression (di);
59727473
DD
2831 return d_make_comp (di, DEMANGLE_COMPONENT_TRINARY, op,
2832 d_make_comp (di,
2833 DEMANGLE_COMPONENT_TRINARY_ARG1,
2834 first,
d00edca5 2835 d_make_comp (di,
59727473 2836 DEMANGLE_COMPONENT_TRINARY_ARG2,
d00edca5
DD
2837 second,
2838 d_expression (di))));
2839 }
2840 default:
2841 return NULL;
2842 }
eb383413
L
2843 }
2844}
2845
d00edca5
DD
2846/* <expr-primary> ::= L <type> <(value) number> E
2847 ::= L <type> <(value) float> E
2848 ::= L <mangled-name> E
2849*/
74bcd529 2850
59727473 2851static struct demangle_component *
9334f9c6 2852d_expr_primary (struct d_info *di)
74bcd529 2853{
59727473 2854 struct demangle_component *ret;
74bcd529 2855
6ef6358e 2856 if (! d_check_char (di, 'L'))
d00edca5 2857 return NULL;
c743cf5d
DD
2858 if (d_peek_char (di) == '_'
2859 /* Workaround for G++ bug; see comment in write_template_arg. */
2860 || d_peek_char (di) == 'Z')
59727473 2861 ret = cplus_demangle_mangled_name (di, 0);
d00edca5 2862 else
74bcd529 2863 {
59727473
DD
2864 struct demangle_component *type;
2865 enum demangle_component_type t;
d00edca5
DD
2866 const char *s;
2867
59727473 2868 type = cplus_demangle_type (di);
a21da8bf
DD
2869 if (type == NULL)
2870 return NULL;
d00edca5 2871
b6fb00c0
DD
2872 /* If we have a type we know how to print, we aren't going to
2873 print the type name itself. */
59727473 2874 if (type->type == DEMANGLE_COMPONENT_BUILTIN_TYPE
b6fb00c0
DD
2875 && type->u.s_builtin.type->print != D_PRINT_DEFAULT)
2876 di->expansion -= type->u.s_builtin.type->len;
2877
d00edca5
DD
2878 /* Rather than try to interpret the literal value, we just
2879 collect it as a string. Note that it's possible to have a
2880 floating point literal here. The ABI specifies that the
2881 format of such literals is machine independent. That's fine,
2882 but what's not fine is that versions of g++ up to 3.2 with
2883 -fabi-version=1 used upper case letters in the hex constant,
2884 and dumped out gcc's internal representation. That makes it
2885 hard to tell where the constant ends, and hard to dump the
2886 constant in any readable form anyhow. We don't attempt to
2887 handle these cases. */
2888
59727473 2889 t = DEMANGLE_COMPONENT_LITERAL;
97ceaf5b
DD
2890 if (d_peek_char (di) == 'n')
2891 {
59727473 2892 t = DEMANGLE_COMPONENT_LITERAL_NEG;
97ceaf5b
DD
2893 d_advance (di, 1);
2894 }
d00edca5
DD
2895 s = d_str (di);
2896 while (d_peek_char (di) != 'E')
6ba85b8c
DD
2897 {
2898 if (d_peek_char (di) == '\0')
2899 return NULL;
2900 d_advance (di, 1);
2901 }
97ceaf5b 2902 ret = d_make_comp (di, t, type, d_make_name (di, s, d_str (di) - s));
d00edca5 2903 }
6ef6358e 2904 if (! d_check_char (di, 'E'))
d00edca5
DD
2905 return NULL;
2906 return ret;
74bcd529
DD
2907}
2908
d00edca5
DD
2909/* <local-name> ::= Z <(function) encoding> E <(entity) name> [<discriminator>]
2910 ::= Z <(function) encoding> E s [<discriminator>]
2911*/
74bcd529 2912
59727473 2913static struct demangle_component *
9334f9c6 2914d_local_name (struct d_info *di)
74bcd529 2915{
59727473 2916 struct demangle_component *function;
74bcd529 2917
6ef6358e 2918 if (! d_check_char (di, 'Z'))
d00edca5 2919 return NULL;
74bcd529 2920
6d95373e 2921 function = d_encoding (di, 0);
74bcd529 2922
6ef6358e 2923 if (! d_check_char (di, 'E'))
d00edca5 2924 return NULL;
74bcd529 2925
d00edca5 2926 if (d_peek_char (di) == 's')
74bcd529 2927 {
d00edca5
DD
2928 d_advance (di, 1);
2929 if (! d_discriminator (di))
2930 return NULL;
59727473 2931 return d_make_comp (di, DEMANGLE_COMPONENT_LOCAL_NAME, function,
d00edca5
DD
2932 d_make_name (di, "string literal",
2933 sizeof "string literal" - 1));
74bcd529 2934 }
d00edca5 2935 else
74bcd529 2936 {
59727473 2937 struct demangle_component *name;
664aa91f
DD
2938 int num = -1;
2939
2940 if (d_peek_char (di) == 'd')
2941 {
2942 /* Default argument scope: d <number> _. */
2943 d_advance (di, 1);
2944 num = d_compact_number (di);
2945 if (num < 0)
2946 return NULL;
2947 }
74bcd529 2948
d00edca5 2949 name = d_name (di);
664aa91f
DD
2950 if (name)
2951 switch (name->type)
2952 {
2953 /* Lambdas and unnamed types have internal discriminators. */
2954 case DEMANGLE_COMPONENT_LAMBDA:
2955 case DEMANGLE_COMPONENT_UNNAMED_TYPE:
2956 break;
2957 default:
2958 if (! d_discriminator (di))
2959 return NULL;
2960 }
2961 if (num >= 0)
2962 name = d_make_default_arg (di, num, name);
59727473 2963 return d_make_comp (di, DEMANGLE_COMPONENT_LOCAL_NAME, function, name);
74bcd529 2964 }
74bcd529
DD
2965}
2966
d00edca5 2967/* <discriminator> ::= _ <(non-negative) number>
eb383413 2968
d00edca5
DD
2969 We demangle the discriminator, but we don't print it out. FIXME:
2970 We should print it out in verbose mode. */
74bcd529 2971
d00edca5 2972static int
9334f9c6 2973d_discriminator (struct d_info *di)
d00edca5
DD
2974{
2975 long discrim;
74bcd529 2976
d00edca5
DD
2977 if (d_peek_char (di) != '_')
2978 return 1;
2979 d_advance (di, 1);
2980 discrim = d_number (di);
2981 if (discrim < 0)
2982 return 0;
2983 return 1;
2984}
eb383413 2985
664aa91f
DD
2986/* <closure-type-name> ::= Ul <lambda-sig> E [ <nonnegative number> ] _ */
2987
2988static struct demangle_component *
2989d_lambda (struct d_info *di)
2990{
2991 struct demangle_component *tl;
2992 struct demangle_component *ret;
2993 int num;
2994
2995 if (! d_check_char (di, 'U'))
2996 return NULL;
2997 if (! d_check_char (di, 'l'))
2998 return NULL;
2999
3000 tl = d_parmlist (di);
3001 if (tl == NULL)
3002 return NULL;
3003
3004 if (! d_check_char (di, 'E'))
3005 return NULL;
3006
3007 num = d_compact_number (di);
3008 if (num < 0)
3009 return NULL;
3010
3011 ret = d_make_empty (di);
3012 if (ret)
3013 {
3014 ret->type = DEMANGLE_COMPONENT_LAMBDA;
3015 ret->u.s_unary_num.sub = tl;
3016 ret->u.s_unary_num.num = num;
3017 }
3018
3019 if (! d_add_substitution (di, ret))
3020 return NULL;
3021
3022 return ret;
3023}
3024
3025/* <unnamed-type-name> ::= Ut [ <nonnegative number> ] _ */
3026
3027static struct demangle_component *
3028d_unnamed_type (struct d_info *di)
3029{
3030 struct demangle_component *ret;
3031 long num;
3032
3033 if (! d_check_char (di, 'U'))
3034 return NULL;
3035 if (! d_check_char (di, 't'))
3036 return NULL;
3037
3038 num = d_compact_number (di);
3039 if (num < 0)
3040 return NULL;
3041
3042 ret = d_make_empty (di);
3043 if (ret)
3044 {
3045 ret->type = DEMANGLE_COMPONENT_UNNAMED_TYPE;
3046 ret->u.s_number.number = num;
3047 }
3048
3049 if (! d_add_substitution (di, ret))
3050 return NULL;
3051
3052 return ret;
3053}
3054
d00edca5 3055/* Add a new substitution. */
eb383413 3056
d00edca5 3057static int
9334f9c6 3058d_add_substitution (struct d_info *di, struct demangle_component *dc)
eb383413 3059{
331c3da2
DD
3060 if (dc == NULL)
3061 return 0;
d00edca5
DD
3062 if (di->next_sub >= di->num_subs)
3063 return 0;
3064 di->subs[di->next_sub] = dc;
3065 ++di->next_sub;
3066 return 1;
3067}
3068
3069/* <substitution> ::= S <seq-id> _
3070 ::= S_
3071 ::= St
3072 ::= Sa
3073 ::= Sb
3074 ::= Ss
3075 ::= Si
3076 ::= So
3077 ::= Sd
97ceaf5b
DD
3078
3079 If PREFIX is non-zero, then this type is being used as a prefix in
3080 a qualified name. In this case, for the standard substitutions, we
3081 need to check whether we are being used as a prefix for a
3082 constructor or destructor, and return a full template name.
3083 Otherwise we will get something like std::iostream::~iostream()
3084 which does not correspond particularly well to any function which
3085 actually appears in the source.
d00edca5 3086*/
eb383413 3087
97ceaf5b
DD
3088static const struct d_standard_sub_info standard_subs[] =
3089{
b6fb00c0
DD
3090 { 't', NL ("std"),
3091 NL ("std"),
3092 NULL, 0 },
3093 { 'a', NL ("std::allocator"),
3094 NL ("std::allocator"),
3095 NL ("allocator") },
3096 { 'b', NL ("std::basic_string"),
3097 NL ("std::basic_string"),
3098 NL ("basic_string") },
3099 { 's', NL ("std::string"),
3100 NL ("std::basic_string<char, std::char_traits<char>, std::allocator<char> >"),
3101 NL ("basic_string") },
3102 { 'i', NL ("std::istream"),
3103 NL ("std::basic_istream<char, std::char_traits<char> >"),
3104 NL ("basic_istream") },
3105 { 'o', NL ("std::ostream"),
3106 NL ("std::basic_ostream<char, std::char_traits<char> >"),
3107 NL ("basic_ostream") },
3108 { 'd', NL ("std::iostream"),
3109 NL ("std::basic_iostream<char, std::char_traits<char> >"),
3110 NL ("basic_iostream") }
97ceaf5b
DD
3111};
3112
59727473 3113static struct demangle_component *
9334f9c6 3114d_substitution (struct d_info *di, int prefix)
d00edca5
DD
3115{
3116 char c;
eb383413 3117
6ef6358e 3118 if (! d_check_char (di, 'S'))
d00edca5 3119 return NULL;
e7e9b069 3120
d00edca5 3121 c = d_next_char (di);
858b45cf 3122 if (c == '_' || IS_DIGIT (c) || IS_UPPER (c))
eb383413 3123 {
dddc49b7 3124 unsigned int id;
eb383413 3125
d00edca5
DD
3126 id = 0;
3127 if (c != '_')
eb383413 3128 {
d00edca5 3129 do
eb383413 3130 {
dddc49b7
DD
3131 unsigned int new_id;
3132
d00edca5 3133 if (IS_DIGIT (c))
dddc49b7 3134 new_id = id * 36 + c - '0';
858b45cf 3135 else if (IS_UPPER (c))
dddc49b7 3136 new_id = id * 36 + c - 'A' + 10;
d00edca5
DD
3137 else
3138 return NULL;
dddc49b7 3139 if (new_id < id)
e63f184e 3140 return NULL;
dddc49b7 3141 id = new_id;
d00edca5 3142 c = d_next_char (di);
eb383413 3143 }
d00edca5 3144 while (c != '_');
eb383413 3145
d00edca5 3146 ++id;
eb383413 3147 }
eb383413 3148
dddc49b7 3149 if (id >= (unsigned int) di->next_sub)
d00edca5 3150 return NULL;
eb383413 3151
b6fb00c0
DD
3152 ++di->did_subs;
3153
d00edca5 3154 return di->subs[id];
eb383413 3155 }
d00edca5 3156 else
eb383413 3157 {
97ceaf5b
DD
3158 int verbose;
3159 const struct d_standard_sub_info *p;
3160 const struct d_standard_sub_info *pend;
3161
3162 verbose = (di->options & DMGL_VERBOSE) != 0;
3163 if (! verbose && prefix)
e61231f1 3164 {
97ceaf5b
DD
3165 char peek;
3166
3167 peek = d_peek_char (di);
3168 if (peek == 'C' || peek == 'D')
3169 verbose = 1;
eb383413 3170 }
97ceaf5b
DD
3171
3172 pend = (&standard_subs[0]
3173 + sizeof standard_subs / sizeof standard_subs[0]);
3174 for (p = &standard_subs[0]; p < pend; ++p)
3175 {
3176 if (c == p->code)
3177 {
b6fb00c0
DD
3178 const char *s;
3179 int len;
3180
97ceaf5b 3181 if (p->set_last_name != NULL)
b6fb00c0
DD
3182 di->last_name = d_make_sub (di, p->set_last_name,
3183 p->set_last_name_len);
97ceaf5b 3184 if (verbose)
b6fb00c0
DD
3185 {
3186 s = p->full_expansion;
3187 len = p->full_len;
3188 }
97ceaf5b 3189 else
b6fb00c0
DD
3190 {
3191 s = p->simple_expansion;
3192 len = p->simple_len;
3193 }
3194 di->expansion += len;
3195 return d_make_sub (di, s, len);
97ceaf5b
DD
3196 }
3197 }
3198
3199 return NULL;
eb383413 3200 }
eb383413
L
3201}
3202
208c1674 3203/* Initialize a growable string. */
eb383413 3204
d00edca5 3205static void
208c1674 3206d_growable_string_init (struct d_growable_string *dgs, size_t estimate)
d00edca5 3207{
208c1674
DD
3208 dgs->buf = NULL;
3209 dgs->len = 0;
3210 dgs->alc = 0;
3211 dgs->allocation_failure = 0;
eb383413 3212
208c1674
DD
3213 if (estimate > 0)
3214 d_growable_string_resize (dgs, estimate);
3215}
3216
3217/* Grow a growable string to a given size. */
3218
3219static inline void
3220d_growable_string_resize (struct d_growable_string *dgs, size_t need)
3221{
3222 size_t newalc;
3223 char *newbuf;
3224
3225 if (dgs->allocation_failure)
331c3da2 3226 return;
59666b35 3227
208c1674
DD
3228 /* Start allocation at two bytes to avoid any possibility of confusion
3229 with the special value of 1 used as a return in *palc to indicate
3230 allocation failures. */
3231 newalc = dgs->alc > 0 ? dgs->alc : 2;
3232 while (newalc < need)
3233 newalc <<= 1;
3234
3235 newbuf = (char *) realloc (dgs->buf, newalc);
3236 if (newbuf == NULL)
3237 {
3238 free (dgs->buf);
3239 dgs->buf = NULL;
3240 dgs->len = 0;
3241 dgs->alc = 0;
3242 dgs->allocation_failure = 1;
3243 return;
eb383413 3244 }
208c1674
DD
3245 dgs->buf = newbuf;
3246 dgs->alc = newalc;
d00edca5 3247}
0976f6a7 3248
208c1674 3249/* Append a buffer to a growable string. */
0976f6a7 3250
208c1674
DD
3251static inline void
3252d_growable_string_append_buffer (struct d_growable_string *dgs,
3253 const char *s, size_t l)
d00edca5 3254{
208c1674 3255 size_t need;
0976f6a7 3256
208c1674
DD
3257 need = dgs->len + l + 1;
3258 if (need > dgs->alc)
3259 d_growable_string_resize (dgs, need);
3260
3261 if (dgs->allocation_failure)
3262 return;
3263
3264 memcpy (dgs->buf + dgs->len, s, l);
3265 dgs->buf[dgs->len + l] = '\0';
3266 dgs->len += l;
eb383413
L
3267}
3268
208c1674 3269/* Bridge growable strings to the callback mechanism. */
d00edca5
DD
3270
3271static void
208c1674 3272d_growable_string_callback_adapter (const char *s, size_t l, void *opaque)
eb383413 3273{
208c1674 3274 struct d_growable_string *dgs = (struct d_growable_string*) opaque;
eb383413 3275
208c1674 3276 d_growable_string_append_buffer (dgs, s, l);
eb383413
L
3277}
3278
208c1674 3279/* Initialize a print information structure. */
eb383413 3280
d00edca5 3281static void
208c1674
DD
3282d_print_init (struct d_print_info *dpi, int options,
3283 demangle_callbackref callback, void *opaque)
3284{
3285 dpi->options = options;
3286 dpi->len = 0;
3287 dpi->last_char = '\0';
3288 dpi->templates = NULL;
3289 dpi->modifiers = NULL;
3baae9d6 3290 dpi->flush_count = 0;
208c1674
DD
3291
3292 dpi->callback = callback;
3293 dpi->opaque = opaque;
3294
3295 dpi->demangle_failure = 0;
3296}
3297
3298/* Indicate that an error occurred during printing, and test for error. */
3299
3300static inline void
9334f9c6 3301d_print_error (struct d_print_info *dpi)
bc9bf259 3302{
208c1674
DD
3303 dpi->demangle_failure = 1;
3304}
3305
3306static inline int
3307d_print_saw_error (struct d_print_info *dpi)
3308{
3309 return dpi->demangle_failure != 0;
3310}
3311
3312/* Flush buffered characters to the callback. */
3313
3314static inline void
3315d_print_flush (struct d_print_info *dpi)
3316{
3317 dpi->buf[dpi->len] = '\0';
3318 dpi->callback (dpi->buf, dpi->len, dpi->opaque);
3319 dpi->len = 0;
3baae9d6 3320 dpi->flush_count++;
208c1674
DD
3321}
3322
3323/* Append characters and buffers for printing. */
3324
3325static inline void
3326d_append_char (struct d_print_info *dpi, char c)
3327{
3328 if (dpi->len == sizeof (dpi->buf) - 1)
3329 d_print_flush (dpi);
3330
3331 dpi->buf[dpi->len++] = c;
3332 dpi->last_char = c;
3333}
3334
3335static inline void
3336d_append_buffer (struct d_print_info *dpi, const char *s, size_t l)
3337{
3338 size_t i;
3339
3340 for (i = 0; i < l; i++)
3341 d_append_char (dpi, s[i]);
3342}
3343
3344static inline void
3345d_append_string (struct d_print_info *dpi, const char *s)
3346{
3347 d_append_buffer (dpi, s, strlen (s));
3348}
3349
664aa91f
DD
3350static inline void
3351d_append_num (struct d_print_info *dpi, long l)
3352{
3353 char buf[25];
3354 sprintf (buf,"%ld", l);
3355 d_append_string (dpi, buf);
3356}
3357
208c1674
DD
3358static inline char
3359d_last_char (struct d_print_info *dpi)
3360{
3361 return dpi->last_char;
3362}
3363
3364/* Turn components into a human readable string. OPTIONS is the
3365 options bits passed to the demangler. DC is the tree to print.
3366 CALLBACK is a function to call to flush demangled string segments
3367 as they fill the intermediate buffer, and OPAQUE is a generalized
3368 callback argument. On success, this returns 1. On failure,
3369 it returns 0, indicating a bad parse. It does not use heap
3370 memory to build an output string, so cannot encounter memory
3371 allocation failure. */
3372
3373CP_STATIC_IF_GLIBCPP_V3
3374int
3375cplus_demangle_print_callback (int options,
3376 const struct demangle_component *dc,
3377 demangle_callbackref callback, void *opaque)
3378{
3379 struct d_print_info dpi;
3380
3381 d_print_init (&dpi, options, callback, opaque);
3382
3383 d_print_comp (&dpi, dc);
3384
3385 d_print_flush (&dpi);
3386
3387 return ! d_print_saw_error (&dpi);
d00edca5 3388}
bc9bf259 3389
b6fb00c0
DD
3390/* Turn components into a human readable string. OPTIONS is the
3391 options bits passed to the demangler. DC is the tree to print.
3392 ESTIMATE is a guess at the length of the result. This returns a
3393 string allocated by malloc, or NULL on error. On success, this
3394 sets *PALC to the size of the allocated buffer. On failure, this
3395 sets *PALC to 0 for a bad parse, or to 1 for a memory allocation
3396 failure. */
eb383413 3397
59727473
DD
3398CP_STATIC_IF_GLIBCPP_V3
3399char *
9334f9c6
DD
3400cplus_demangle_print (int options, const struct demangle_component *dc,
3401 int estimate, size_t *palc)
d00edca5 3402{
208c1674 3403 struct d_growable_string dgs;
eb383413 3404
208c1674 3405 d_growable_string_init (&dgs, estimate);
eb383413 3406
208c1674
DD
3407 if (! cplus_demangle_print_callback (options, dc,
3408 d_growable_string_callback_adapter,
3409 &dgs))
eb383413 3410 {
208c1674
DD
3411 free (dgs.buf);
3412 *palc = 0;
d00edca5 3413 return NULL;
eb383413 3414 }
eb383413 3415
208c1674
DD
3416 *palc = dgs.allocation_failure ? 1 : dgs.alc;
3417 return dgs.buf;
eb383413
L
3418}
3419
1c08f2c8
DD
3420/* Returns the I'th element of the template arglist ARGS, or NULL on
3421 failure. */
3422
3423static struct demangle_component *
3424d_index_template_argument (struct demangle_component *args, int i)
3425{
3426 struct demangle_component *a;
3427
3428 for (a = args;
3429 a != NULL;
3430 a = d_right (a))
3431 {
3432 if (a->type != DEMANGLE_COMPONENT_TEMPLATE_ARGLIST)
3433 return NULL;
3434 if (i <= 0)
3435 break;
3436 --i;
3437 }
3438 if (i != 0 || a == NULL)
3439 return NULL;
3440
3441 return d_left (a);
3442}
3443
3444/* Returns the template argument from the current context indicated by DC,
3445 which is a DEMANGLE_COMPONENT_TEMPLATE_PARAM, or NULL. */
3446
3447static struct demangle_component *
3448d_lookup_template_argument (struct d_print_info *dpi,
3449 const struct demangle_component *dc)
3450{
3451 if (dpi->templates == NULL)
3452 {
3453 d_print_error (dpi);
3454 return NULL;
3455 }
3456
3457 return d_index_template_argument
3458 (d_right (dpi->templates->template_decl),
3459 dc->u.s_number.number);
3460}
3461
3462/* Returns a template argument pack used in DC (any will do), or NULL. */
3463
3464static struct demangle_component *
3465d_find_pack (struct d_print_info *dpi,
3466 const struct demangle_component *dc)
3467{
3468 struct demangle_component *a;
3469 if (dc == NULL)
3470 return NULL;
3471
3472 switch (dc->type)
3473 {
3474 case DEMANGLE_COMPONENT_TEMPLATE_PARAM:
3475 a = d_lookup_template_argument (dpi, dc);
3476 if (a && a->type == DEMANGLE_COMPONENT_TEMPLATE_ARGLIST)
3477 return a;
3478 return NULL;
3479
3480 case DEMANGLE_COMPONENT_PACK_EXPANSION:
3481 return NULL;
3482
57cf60a5 3483 case DEMANGLE_COMPONENT_LAMBDA:
1c08f2c8
DD
3484 case DEMANGLE_COMPONENT_NAME:
3485 case DEMANGLE_COMPONENT_OPERATOR:
3486 case DEMANGLE_COMPONENT_BUILTIN_TYPE:
3487 case DEMANGLE_COMPONENT_SUB_STD:
3488 case DEMANGLE_COMPONENT_CHARACTER:
e2e1864d 3489 case DEMANGLE_COMPONENT_FUNCTION_PARAM:
1c08f2c8
DD
3490 return NULL;
3491
3492 case DEMANGLE_COMPONENT_EXTENDED_OPERATOR:
3493 return d_find_pack (dpi, dc->u.s_extended_operator.name);
3494 case DEMANGLE_COMPONENT_CTOR:
3495 return d_find_pack (dpi, dc->u.s_ctor.name);
3496 case DEMANGLE_COMPONENT_DTOR:
3497 return d_find_pack (dpi, dc->u.s_dtor.name);
3498
3499 default:
3500 a = d_find_pack (dpi, d_left (dc));
3501 if (a)
3502 return a;
3503 return d_find_pack (dpi, d_right (dc));
3504 }
3505}
3506
3507/* Returns the length of the template argument pack DC. */
3508
3509static int
3510d_pack_length (const struct demangle_component *dc)
3511{
3512 int count = 0;
3513 while (dc && dc->type == DEMANGLE_COMPONENT_TEMPLATE_ARGLIST
3514 && d_left (dc) != NULL)
3515 {
3516 ++count;
3517 dc = d_right (dc);
3518 }
3519 return count;
3520}
3521
3522/* DC is a component of a mangled expression. Print it, wrapped in parens
3523 if needed. */
3524
3525static void
3526d_print_subexpr (struct d_print_info *dpi,
3527 const struct demangle_component *dc)
3528{
3529 int simple = 0;
e2e1864d
DD
3530 if (dc->type == DEMANGLE_COMPONENT_NAME
3531 || dc->type == DEMANGLE_COMPONENT_FUNCTION_PARAM)
1c08f2c8
DD
3532 simple = 1;
3533 if (!simple)
3534 d_append_char (dpi, '(');
3535 d_print_comp (dpi, dc);
3536 if (!simple)
3537 d_append_char (dpi, ')');
3538}
3539
d00edca5 3540/* Subroutine to handle components. */
eb383413 3541
d00edca5 3542static void
9334f9c6
DD
3543d_print_comp (struct d_print_info *dpi,
3544 const struct demangle_component *dc)
eb383413 3545{
d00edca5 3546 if (dc == NULL)
eb383413 3547 {
d00edca5
DD
3548 d_print_error (dpi);
3549 return;
eb383413 3550 }
d00edca5
DD
3551 if (d_print_saw_error (dpi))
3552 return;
eb383413 3553
d00edca5 3554 switch (dc->type)
eb383413 3555 {
59727473 3556 case DEMANGLE_COMPONENT_NAME:
b6fb00c0
DD
3557 if ((dpi->options & DMGL_JAVA) == 0)
3558 d_append_buffer (dpi, dc->u.s_name.s, dc->u.s_name.len);
3559 else
3560 d_print_java_identifier (dpi, dc->u.s_name.s, dc->u.s_name.len);
d00edca5 3561 return;
eb383413 3562
59727473
DD
3563 case DEMANGLE_COMPONENT_QUAL_NAME:
3564 case DEMANGLE_COMPONENT_LOCAL_NAME:
d00edca5 3565 d_print_comp (dpi, d_left (dc));
b6fb00c0 3566 if ((dpi->options & DMGL_JAVA) == 0)
208c1674 3567 d_append_string (dpi, "::");
b6fb00c0
DD
3568 else
3569 d_append_char (dpi, '.');
d00edca5
DD
3570 d_print_comp (dpi, d_right (dc));
3571 return;
eb383413 3572
59727473 3573 case DEMANGLE_COMPONENT_TYPED_NAME:
d00edca5 3574 {
858b45cf 3575 struct d_print_mod *hold_modifiers;
59727473 3576 struct demangle_component *typed_name;
858b45cf
DD
3577 struct d_print_mod adpm[4];
3578 unsigned int i;
d00edca5
DD
3579 struct d_print_template dpt;
3580
3581 /* Pass the name down to the type so that it can be printed in
858b45cf
DD
3582 the right place for the type. We also have to pass down
3583 any CV-qualifiers, which apply to the this parameter. */
3584 hold_modifiers = dpi->modifiers;
c743cf5d 3585 dpi->modifiers = 0;
858b45cf 3586 i = 0;
d00edca5 3587 typed_name = d_left (dc);
858b45cf
DD
3588 while (typed_name != NULL)
3589 {
3590 if (i >= sizeof adpm / sizeof adpm[0])
3591 {
3592 d_print_error (dpi);
3593 return;
3594 }
d00edca5 3595
858b45cf
DD
3596 adpm[i].next = dpi->modifiers;
3597 dpi->modifiers = &adpm[i];
3598 adpm[i].mod = typed_name;
3599 adpm[i].printed = 0;
3600 adpm[i].templates = dpi->templates;
3601 ++i;
3602
59727473
DD
3603 if (typed_name->type != DEMANGLE_COMPONENT_RESTRICT_THIS
3604 && typed_name->type != DEMANGLE_COMPONENT_VOLATILE_THIS
3605 && typed_name->type != DEMANGLE_COMPONENT_CONST_THIS)
858b45cf
DD
3606 break;
3607
3608 typed_name = d_left (typed_name);
3609 }
d00edca5 3610
168b8298
MS
3611 if (typed_name == NULL)
3612 {
3613 d_print_error (dpi);
3614 return;
3615 }
3616
d00edca5
DD
3617 /* If typed_name is a template, then it applies to the
3618 function type as well. */
59727473 3619 if (typed_name->type == DEMANGLE_COMPONENT_TEMPLATE)
d00edca5
DD
3620 {
3621 dpt.next = dpi->templates;
3622 dpi->templates = &dpt;
abf6a75b 3623 dpt.template_decl = typed_name;
d00edca5 3624 }
eb383413 3625
59727473
DD
3626 /* If typed_name is a DEMANGLE_COMPONENT_LOCAL_NAME, then
3627 there may be CV-qualifiers on its right argument which
3628 really apply here; this happens when parsing a class which
3629 is local to a function. */
3630 if (typed_name->type == DEMANGLE_COMPONENT_LOCAL_NAME)
d4edd112 3631 {
59727473 3632 struct demangle_component *local_name;
d4edd112
DD
3633
3634 local_name = d_right (typed_name);
664aa91f
DD
3635 if (local_name->type == DEMANGLE_COMPONENT_DEFAULT_ARG)
3636 local_name = local_name->u.s_unary_num.sub;
59727473
DD
3637 while (local_name->type == DEMANGLE_COMPONENT_RESTRICT_THIS
3638 || local_name->type == DEMANGLE_COMPONENT_VOLATILE_THIS
3639 || local_name->type == DEMANGLE_COMPONENT_CONST_THIS)
d4edd112
DD
3640 {
3641 if (i >= sizeof adpm / sizeof adpm[0])
3642 {
3643 d_print_error (dpi);
3644 return;
3645 }
3646
3647 adpm[i] = adpm[i - 1];
3648 adpm[i].next = &adpm[i - 1];
3649 dpi->modifiers = &adpm[i];
3650
3651 adpm[i - 1].mod = local_name;
3652 adpm[i - 1].printed = 0;
3653 adpm[i - 1].templates = dpi->templates;
3654 ++i;
3655
3656 local_name = d_left (local_name);
3657 }
3658 }
3659
d00edca5 3660 d_print_comp (dpi, d_right (dc));
74bcd529 3661
59727473 3662 if (typed_name->type == DEMANGLE_COMPONENT_TEMPLATE)
d00edca5 3663 dpi->templates = dpt.next;
eb383413 3664
858b45cf 3665 /* If the modifiers didn't get printed by the type, print them
d00edca5 3666 now. */
858b45cf 3667 while (i > 0)
d00edca5 3668 {
858b45cf
DD
3669 --i;
3670 if (! adpm[i].printed)
3671 {
3672 d_append_char (dpi, ' ');
3673 d_print_mod (dpi, adpm[i].mod);
3674 }
d00edca5 3675 }
eb383413 3676
858b45cf 3677 dpi->modifiers = hold_modifiers;
eb383413 3678
d00edca5
DD
3679 return;
3680 }
eb383413 3681
59727473 3682 case DEMANGLE_COMPONENT_TEMPLATE:
331c3da2
DD
3683 {
3684 struct d_print_mod *hold_dpm;
208c1674 3685 struct demangle_component *dcl;
331c3da2
DD
3686
3687 /* Don't push modifiers into a template definition. Doing so
3688 could give the wrong definition for a template argument.
3689 Instead, treat the template essentially as a name. */
3690
3691 hold_dpm = dpi->modifiers;
3692 dpi->modifiers = NULL;
3693
208c1674
DD
3694 dcl = d_left (dc);
3695
3696 if ((dpi->options & DMGL_JAVA) != 0
3697 && dcl->type == DEMANGLE_COMPONENT_NAME
3698 && dcl->u.s_name.len == 6
3699 && strncmp (dcl->u.s_name.s, "JArray", 6) == 0)
3700 {
3701 /* Special-case Java arrays, so that JArray<TYPE> appears
3702 instead as TYPE[]. */
3703
3704 d_print_comp (dpi, d_right (dc));
3705 d_append_string (dpi, "[]");
3706 }
3707 else
3708 {
3709 d_print_comp (dpi, dcl);
3710 if (d_last_char (dpi) == '<')
3711 d_append_char (dpi, ' ');
3712 d_append_char (dpi, '<');
3713 d_print_comp (dpi, d_right (dc));
3714 /* Avoid generating two consecutive '>' characters, to avoid
3715 the C++ syntactic ambiguity. */
3716 if (d_last_char (dpi) == '>')
3717 d_append_char (dpi, ' ');
3718 d_append_char (dpi, '>');
3719 }
331c3da2
DD
3720
3721 dpi->modifiers = hold_dpm;
3722
3723 return;
3724 }
d00edca5 3725
59727473 3726 case DEMANGLE_COMPONENT_TEMPLATE_PARAM:
d00edca5 3727 {
d00edca5 3728 struct d_print_template *hold_dpt;
1c08f2c8 3729 struct demangle_component *a = d_lookup_template_argument (dpi, dc);
eb383413 3730
1c08f2c8
DD
3731 if (a && a->type == DEMANGLE_COMPONENT_TEMPLATE_ARGLIST)
3732 a = d_index_template_argument (a, dpi->pack_index);
3733
3734 if (a == NULL)
d00edca5
DD
3735 {
3736 d_print_error (dpi);
3737 return;
3738 }
59666b35 3739
d00edca5
DD
3740 /* While processing this parameter, we need to pop the list of
3741 templates. This is because the template parameter may
3742 itself be a reference to a parameter of an outer
3743 template. */
59666b35 3744
d00edca5
DD
3745 hold_dpt = dpi->templates;
3746 dpi->templates = hold_dpt->next;
eb383413 3747
1c08f2c8 3748 d_print_comp (dpi, a);
03d5f569 3749
d00edca5 3750 dpi->templates = hold_dpt;
59666b35 3751
d00edca5
DD
3752 return;
3753 }
eb383413 3754
59727473 3755 case DEMANGLE_COMPONENT_CTOR:
d00edca5
DD
3756 d_print_comp (dpi, dc->u.s_ctor.name);
3757 return;
3758
59727473 3759 case DEMANGLE_COMPONENT_DTOR:
d00edca5
DD
3760 d_append_char (dpi, '~');
3761 d_print_comp (dpi, dc->u.s_dtor.name);
3762 return;
3763
59727473 3764 case DEMANGLE_COMPONENT_VTABLE:
208c1674 3765 d_append_string (dpi, "vtable for ");
d00edca5
DD
3766 d_print_comp (dpi, d_left (dc));
3767 return;
3768
59727473 3769 case DEMANGLE_COMPONENT_VTT:
208c1674 3770 d_append_string (dpi, "VTT for ");
d00edca5
DD
3771 d_print_comp (dpi, d_left (dc));
3772 return;
3773
59727473 3774 case DEMANGLE_COMPONENT_CONSTRUCTION_VTABLE:
208c1674 3775 d_append_string (dpi, "construction vtable for ");
d00edca5 3776 d_print_comp (dpi, d_left (dc));
208c1674 3777 d_append_string (dpi, "-in-");
d00edca5
DD
3778 d_print_comp (dpi, d_right (dc));
3779 return;
3780
59727473 3781 case DEMANGLE_COMPONENT_TYPEINFO:
208c1674 3782 d_append_string (dpi, "typeinfo for ");
d00edca5
DD
3783 d_print_comp (dpi, d_left (dc));
3784 return;
3785
59727473 3786 case DEMANGLE_COMPONENT_TYPEINFO_NAME:
208c1674 3787 d_append_string (dpi, "typeinfo name for ");
d00edca5
DD
3788 d_print_comp (dpi, d_left (dc));
3789 return;
3790
59727473 3791 case DEMANGLE_COMPONENT_TYPEINFO_FN:
208c1674 3792 d_append_string (dpi, "typeinfo fn for ");
d00edca5
DD
3793 d_print_comp (dpi, d_left (dc));
3794 return;
3795
59727473 3796 case DEMANGLE_COMPONENT_THUNK:
208c1674 3797 d_append_string (dpi, "non-virtual thunk to ");
d00edca5
DD
3798 d_print_comp (dpi, d_left (dc));
3799 return;
3800
59727473 3801 case DEMANGLE_COMPONENT_VIRTUAL_THUNK:
208c1674 3802 d_append_string (dpi, "virtual thunk to ");
d00edca5
DD
3803 d_print_comp (dpi, d_left (dc));
3804 return;
3805
59727473 3806 case DEMANGLE_COMPONENT_COVARIANT_THUNK:
208c1674 3807 d_append_string (dpi, "covariant return thunk to ");
d00edca5
DD
3808 d_print_comp (dpi, d_left (dc));
3809 return;
3810
59727473 3811 case DEMANGLE_COMPONENT_JAVA_CLASS:
208c1674 3812 d_append_string (dpi, "java Class for ");
d00edca5
DD
3813 d_print_comp (dpi, d_left (dc));
3814 return;
3815
59727473 3816 case DEMANGLE_COMPONENT_GUARD:
208c1674 3817 d_append_string (dpi, "guard variable for ");
d00edca5
DD
3818 d_print_comp (dpi, d_left (dc));
3819 return;
3820
59727473 3821 case DEMANGLE_COMPONENT_REFTEMP:
208c1674 3822 d_append_string (dpi, "reference temporary for ");
d00edca5
DD
3823 d_print_comp (dpi, d_left (dc));
3824 return;
3825
839e4798 3826 case DEMANGLE_COMPONENT_HIDDEN_ALIAS:
208c1674 3827 d_append_string (dpi, "hidden alias for ");
839e4798
RH
3828 d_print_comp (dpi, d_left (dc));
3829 return;
3830
59727473 3831 case DEMANGLE_COMPONENT_SUB_STD:
b6fb00c0 3832 d_append_buffer (dpi, dc->u.s_string.string, dc->u.s_string.len);
d00edca5
DD
3833 return;
3834
59727473
DD
3835 case DEMANGLE_COMPONENT_RESTRICT:
3836 case DEMANGLE_COMPONENT_VOLATILE:
3837 case DEMANGLE_COMPONENT_CONST:
74aee4eb
DD
3838 {
3839 struct d_print_mod *pdpm;
3840
3841 /* When printing arrays, it's possible to have cases where the
3842 same CV-qualifier gets pushed on the stack multiple times.
3843 We only need to print it once. */
3844
3845 for (pdpm = dpi->modifiers; pdpm != NULL; pdpm = pdpm->next)
3846 {
3847 if (! pdpm->printed)
3848 {
3849 if (pdpm->mod->type != DEMANGLE_COMPONENT_RESTRICT
3850 && pdpm->mod->type != DEMANGLE_COMPONENT_VOLATILE
3851 && pdpm->mod->type != DEMANGLE_COMPONENT_CONST)
3852 break;
3853 if (pdpm->mod->type == dc->type)
3854 {
3855 d_print_comp (dpi, d_left (dc));
3856 return;
3857 }
3858 }
3859 }
3860 }
3861 /* Fall through. */
59727473
DD
3862 case DEMANGLE_COMPONENT_RESTRICT_THIS:
3863 case DEMANGLE_COMPONENT_VOLATILE_THIS:
3864 case DEMANGLE_COMPONENT_CONST_THIS:
3865 case DEMANGLE_COMPONENT_VENDOR_TYPE_QUAL:
3866 case DEMANGLE_COMPONENT_POINTER:
3867 case DEMANGLE_COMPONENT_REFERENCE:
8969a67f 3868 case DEMANGLE_COMPONENT_RVALUE_REFERENCE:
59727473
DD
3869 case DEMANGLE_COMPONENT_COMPLEX:
3870 case DEMANGLE_COMPONENT_IMAGINARY:
d00edca5
DD
3871 {
3872 /* We keep a list of modifiers on the stack. */
3873 struct d_print_mod dpm;
eb383413 3874
d00edca5
DD
3875 dpm.next = dpi->modifiers;
3876 dpi->modifiers = &dpm;
3877 dpm.mod = dc;
3878 dpm.printed = 0;
331c3da2 3879 dpm.templates = dpi->templates;
eb383413 3880
d00edca5 3881 d_print_comp (dpi, d_left (dc));
59666b35 3882
d00edca5
DD
3883 /* If the modifier didn't get printed by the type, print it
3884 now. */
3885 if (! dpm.printed)
3886 d_print_mod (dpi, dc);
eb383413 3887
d00edca5 3888 dpi->modifiers = dpm.next;
eb383413 3889
d00edca5
DD
3890 return;
3891 }
eb383413 3892
59727473 3893 case DEMANGLE_COMPONENT_BUILTIN_TYPE:
d00edca5 3894 if ((dpi->options & DMGL_JAVA) == 0)
b6fb00c0
DD
3895 d_append_buffer (dpi, dc->u.s_builtin.type->name,
3896 dc->u.s_builtin.type->len);
d00edca5 3897 else
b6fb00c0
DD
3898 d_append_buffer (dpi, dc->u.s_builtin.type->java_name,
3899 dc->u.s_builtin.type->java_len);
d00edca5 3900 return;
eb383413 3901
59727473 3902 case DEMANGLE_COMPONENT_VENDOR_TYPE:
d00edca5
DD
3903 d_print_comp (dpi, d_left (dc));
3904 return;
eb383413 3905
59727473 3906 case DEMANGLE_COMPONENT_FUNCTION_TYPE:
d00edca5 3907 {
7887b2ce
DD
3908 if ((dpi->options & DMGL_RET_POSTFIX) != 0)
3909 d_print_function_type (dpi, dc, dpi->modifiers);
3910
3911 /* Print return type if present */
d00edca5
DD
3912 if (d_left (dc) != NULL)
3913 {
3914 struct d_print_mod dpm;
eb383413 3915
d00edca5
DD
3916 /* We must pass this type down as a modifier in order to
3917 print it in the right location. */
d00edca5
DD
3918 dpm.next = dpi->modifiers;
3919 dpi->modifiers = &dpm;
3920 dpm.mod = dc;
3921 dpm.printed = 0;
331c3da2 3922 dpm.templates = dpi->templates;
eb383413 3923
d00edca5 3924 d_print_comp (dpi, d_left (dc));
eb383413 3925
d00edca5 3926 dpi->modifiers = dpm.next;
eb383413 3927
d00edca5
DD
3928 if (dpm.printed)
3929 return;
eb383413 3930
7887b2ce
DD
3931 /* In standard prefix notation, there is a space between the
3932 return type and the function signature. */
3933 if ((dpi->options & DMGL_RET_POSTFIX) == 0)
3934 d_append_char (dpi, ' ');
d00edca5 3935 }
eb383413 3936
7887b2ce
DD
3937 if ((dpi->options & DMGL_RET_POSTFIX) == 0)
3938 d_print_function_type (dpi, dc, dpi->modifiers);
03d5f569 3939
d00edca5
DD
3940 return;
3941 }
eb383413 3942
59727473 3943 case DEMANGLE_COMPONENT_ARRAY_TYPE:
d00edca5 3944 {
74aee4eb
DD
3945 struct d_print_mod *hold_modifiers;
3946 struct d_print_mod adpm[4];
3947 unsigned int i;
3948 struct d_print_mod *pdpm;
eb383413 3949
d00edca5 3950 /* We must pass this type down as a modifier in order to print
74aee4eb
DD
3951 multi-dimensional arrays correctly. If the array itself is
3952 CV-qualified, we act as though the element type were
3953 CV-qualified. We do this by copying the modifiers down
3954 rather than fiddling pointers, so that we don't wind up
3955 with a d_print_mod higher on the stack pointing into our
3956 stack frame after we return. */
03d5f569 3957
74aee4eb
DD
3958 hold_modifiers = dpi->modifiers;
3959
3960 adpm[0].next = hold_modifiers;
3961 dpi->modifiers = &adpm[0];
3962 adpm[0].mod = dc;
3963 adpm[0].printed = 0;
3964 adpm[0].templates = dpi->templates;
3965
3966 i = 1;
3967 pdpm = hold_modifiers;
3968 while (pdpm != NULL
3969 && (pdpm->mod->type == DEMANGLE_COMPONENT_RESTRICT
3970 || pdpm->mod->type == DEMANGLE_COMPONENT_VOLATILE
3971 || pdpm->mod->type == DEMANGLE_COMPONENT_CONST))
3972 {
3973 if (! pdpm->printed)
3974 {
3975 if (i >= sizeof adpm / sizeof adpm[0])
3976 {
3977 d_print_error (dpi);
3978 return;
3979 }
3980
3981 adpm[i] = *pdpm;
3982 adpm[i].next = dpi->modifiers;
3983 dpi->modifiers = &adpm[i];
3984 pdpm->printed = 1;
3985 ++i;
3986 }
3987
3988 pdpm = pdpm->next;
3989 }
eb383413 3990
d00edca5 3991 d_print_comp (dpi, d_right (dc));
eb383413 3992
74aee4eb 3993 dpi->modifiers = hold_modifiers;
eb383413 3994
74aee4eb 3995 if (adpm[0].printed)
d00edca5 3996 return;
eb383413 3997
74aee4eb
DD
3998 while (i > 1)
3999 {
4000 --i;
4001 d_print_mod (dpi, adpm[i].mod);
4002 }
4003
d00edca5 4004 d_print_array_type (dpi, dc, dpi->modifiers);
eb383413 4005
d00edca5
DD
4006 return;
4007 }
eb383413 4008
59727473 4009 case DEMANGLE_COMPONENT_PTRMEM_TYPE:
cbc43128 4010 case DEMANGLE_COMPONENT_VECTOR_TYPE:
d00edca5 4011 {
d00edca5
DD
4012 struct d_print_mod dpm;
4013
d00edca5
DD
4014 dpm.next = dpi->modifiers;
4015 dpi->modifiers = &dpm;
4016 dpm.mod = dc;
4017 dpm.printed = 0;
331c3da2 4018 dpm.templates = dpi->templates;
d00edca5 4019
858b45cf 4020 d_print_comp (dpi, d_right (dc));
d00edca5
DD
4021
4022 /* If the modifier didn't get printed by the type, print it
4023 now. */
4024 if (! dpm.printed)
cbc43128 4025 d_print_mod (dpi, dc);
eb383413 4026
d00edca5 4027 dpi->modifiers = dpm.next;
eb383413 4028
d00edca5
DD
4029 return;
4030 }
eb383413 4031
d2825c1a
DD
4032 case DEMANGLE_COMPONENT_FIXED_TYPE:
4033 if (dc->u.s_fixed.sat)
4034 d_append_string (dpi, "_Sat ");
4035 /* Don't print "int _Accum". */
4036 if (dc->u.s_fixed.length->u.s_builtin.type
4037 != &cplus_demangle_builtin_types['i'-'a'])
4038 {
4039 d_print_comp (dpi, dc->u.s_fixed.length);
4040 d_append_char (dpi, ' ');
4041 }
4042 if (dc->u.s_fixed.accum)
4043 d_append_string (dpi, "_Accum");
4044 else
4045 d_append_string (dpi, "_Fract");
4046 return;
4047
59727473
DD
4048 case DEMANGLE_COMPONENT_ARGLIST:
4049 case DEMANGLE_COMPONENT_TEMPLATE_ARGLIST:
1c08f2c8
DD
4050 if (d_left (dc) != NULL)
4051 d_print_comp (dpi, d_left (dc));
d00edca5
DD
4052 if (d_right (dc) != NULL)
4053 {
4e59450e 4054 size_t len;
3baae9d6
JJ
4055 unsigned long int flush_count;
4056 /* Make sure ", " isn't flushed by d_append_string, otherwise
4057 dpi->len -= 2 wouldn't work. */
4058 if (dpi->len >= sizeof (dpi->buf) - 2)
4059 d_print_flush (dpi);
208c1674 4060 d_append_string (dpi, ", ");
4e59450e 4061 len = dpi->len;
3baae9d6 4062 flush_count = dpi->flush_count;
d00edca5 4063 d_print_comp (dpi, d_right (dc));
4e59450e
DD
4064 /* If that didn't print anything (which can happen with empty
4065 template argument packs), remove the comma and space. */
3baae9d6 4066 if (dpi->flush_count == flush_count && dpi->len == len)
4e59450e 4067 dpi->len -= 2;
d00edca5
DD
4068 }
4069 return;
eb383413 4070
59727473 4071 case DEMANGLE_COMPONENT_OPERATOR:
d00edca5
DD
4072 {
4073 char c;
4074
208c1674 4075 d_append_string (dpi, "operator");
d00edca5 4076 c = dc->u.s_operator.op->name[0];
858b45cf 4077 if (IS_LOWER (c))
d00edca5 4078 d_append_char (dpi, ' ');
b6fb00c0
DD
4079 d_append_buffer (dpi, dc->u.s_operator.op->name,
4080 dc->u.s_operator.op->len);
d00edca5
DD
4081 return;
4082 }
eb383413 4083
59727473 4084 case DEMANGLE_COMPONENT_EXTENDED_OPERATOR:
208c1674 4085 d_append_string (dpi, "operator ");
d00edca5
DD
4086 d_print_comp (dpi, dc->u.s_extended_operator.name);
4087 return;
eb383413 4088
59727473 4089 case DEMANGLE_COMPONENT_CAST:
208c1674 4090 d_append_string (dpi, "operator ");
d00edca5
DD
4091 d_print_cast (dpi, dc);
4092 return;
eb383413 4093
59727473
DD
4094 case DEMANGLE_COMPONENT_UNARY:
4095 if (d_left (dc)->type != DEMANGLE_COMPONENT_CAST)
d00edca5
DD
4096 d_print_expr_op (dpi, d_left (dc));
4097 else
eb383413 4098 {
099f84cf 4099 d_append_char (dpi, '(');
d00edca5
DD
4100 d_print_cast (dpi, d_left (dc));
4101 d_append_char (dpi, ')');
eb383413 4102 }
60cf58f5 4103 d_print_subexpr (dpi, d_right (dc));
d00edca5
DD
4104 return;
4105
59727473
DD
4106 case DEMANGLE_COMPONENT_BINARY:
4107 if (d_right (dc)->type != DEMANGLE_COMPONENT_BINARY_ARGS)
eb383413 4108 {
d00edca5
DD
4109 d_print_error (dpi);
4110 return;
eb383413 4111 }
858b45cf
DD
4112
4113 /* We wrap an expression which uses the greater-than operator in
4114 an extra layer of parens so that it does not get confused
4115 with the '>' which ends the template parameters. */
59727473 4116 if (d_left (dc)->type == DEMANGLE_COMPONENT_OPERATOR
b6fb00c0
DD
4117 && d_left (dc)->u.s_operator.op->len == 1
4118 && d_left (dc)->u.s_operator.op->name[0] == '>')
858b45cf
DD
4119 d_append_char (dpi, '(');
4120
1c08f2c8 4121 d_print_subexpr (dpi, d_left (d_right (dc)));
9ac9c2b6
DD
4122 if (strcmp (d_left (dc)->u.s_operator.op->code, "ix") == 0)
4123 {
4124 d_append_char (dpi, '[');
4125 d_print_comp (dpi, d_right (d_right (dc)));
4126 d_append_char (dpi, ']');
4127 }
4128 else
4129 {
4130 if (strcmp (d_left (dc)->u.s_operator.op->code, "cl") != 0)
4131 d_print_expr_op (dpi, d_left (dc));
4132 d_print_subexpr (dpi, d_right (d_right (dc)));
4133 }
858b45cf 4134
59727473 4135 if (d_left (dc)->type == DEMANGLE_COMPONENT_OPERATOR
b6fb00c0
DD
4136 && d_left (dc)->u.s_operator.op->len == 1
4137 && d_left (dc)->u.s_operator.op->name[0] == '>')
858b45cf
DD
4138 d_append_char (dpi, ')');
4139
d00edca5
DD
4140 return;
4141
59727473
DD
4142 case DEMANGLE_COMPONENT_BINARY_ARGS:
4143 /* We should only see this as part of DEMANGLE_COMPONENT_BINARY. */
d00edca5
DD
4144 d_print_error (dpi);
4145 return;
4146
59727473
DD
4147 case DEMANGLE_COMPONENT_TRINARY:
4148 if (d_right (dc)->type != DEMANGLE_COMPONENT_TRINARY_ARG1
4149 || d_right (d_right (dc))->type != DEMANGLE_COMPONENT_TRINARY_ARG2)
d00edca5
DD
4150 {
4151 d_print_error (dpi);
4152 return;
4153 }
1c08f2c8 4154 d_print_subexpr (dpi, d_left (d_right (dc)));
d00edca5 4155 d_print_expr_op (dpi, d_left (dc));
1c08f2c8
DD
4156 d_print_subexpr (dpi, d_left (d_right (d_right (dc))));
4157 d_append_string (dpi, " : ");
4158 d_print_subexpr (dpi, d_right (d_right (d_right (dc))));
d00edca5
DD
4159 return;
4160
59727473
DD
4161 case DEMANGLE_COMPONENT_TRINARY_ARG1:
4162 case DEMANGLE_COMPONENT_TRINARY_ARG2:
4163 /* We should only see these are part of DEMANGLE_COMPONENT_TRINARY. */
d00edca5
DD
4164 d_print_error (dpi);
4165 return;
4166
59727473
DD
4167 case DEMANGLE_COMPONENT_LITERAL:
4168 case DEMANGLE_COMPONENT_LITERAL_NEG:
2d733211
DD
4169 {
4170 enum d_builtin_type_print tp;
d00edca5 4171
2d733211
DD
4172 /* For some builtin types, produce simpler output. */
4173 tp = D_PRINT_DEFAULT;
4174 if (d_left (dc)->type == DEMANGLE_COMPONENT_BUILTIN_TYPE)
4175 {
4176 tp = d_left (dc)->u.s_builtin.type->print;
4177 switch (tp)
4178 {
4179 case D_PRINT_INT:
4180 case D_PRINT_UNSIGNED:
4181 case D_PRINT_LONG:
4182 case D_PRINT_UNSIGNED_LONG:
4183 case D_PRINT_LONG_LONG:
4184 case D_PRINT_UNSIGNED_LONG_LONG:
4185 if (d_right (dc)->type == DEMANGLE_COMPONENT_NAME)
4186 {
4187 if (dc->type == DEMANGLE_COMPONENT_LITERAL_NEG)
4188 d_append_char (dpi, '-');
4189 d_print_comp (dpi, d_right (dc));
4190 switch (tp)
4191 {
4192 default:
4193 break;
4194 case D_PRINT_UNSIGNED:
4195 d_append_char (dpi, 'u');
4196 break;
4197 case D_PRINT_LONG:
4198 d_append_char (dpi, 'l');
4199 break;
4200 case D_PRINT_UNSIGNED_LONG:
208c1674 4201 d_append_string (dpi, "ul");
2d733211
DD
4202 break;
4203 case D_PRINT_LONG_LONG:
208c1674 4204 d_append_string (dpi, "ll");
2d733211
DD
4205 break;
4206 case D_PRINT_UNSIGNED_LONG_LONG:
208c1674 4207 d_append_string (dpi, "ull");
2d733211
DD
4208 break;
4209 }
4210 return;
4211 }
4212 break;
eb383413 4213
2d733211
DD
4214 case D_PRINT_BOOL:
4215 if (d_right (dc)->type == DEMANGLE_COMPONENT_NAME
4216 && d_right (dc)->u.s_name.len == 1
4217 && dc->type == DEMANGLE_COMPONENT_LITERAL)
4218 {
4219 switch (d_right (dc)->u.s_name.s[0])
4220 {
4221 case '0':
208c1674 4222 d_append_string (dpi, "false");
2d733211
DD
4223 return;
4224 case '1':
208c1674 4225 d_append_string (dpi, "true");
2d733211
DD
4226 return;
4227 default:
4228 break;
4229 }
4230 }
4231 break;
03d5f569 4232
2d733211
DD
4233 default:
4234 break;
4235 }
4236 }
eb383413 4237
2d733211
DD
4238 d_append_char (dpi, '(');
4239 d_print_comp (dpi, d_left (dc));
4240 d_append_char (dpi, ')');
4241 if (dc->type == DEMANGLE_COMPONENT_LITERAL_NEG)
4242 d_append_char (dpi, '-');
4243 if (tp == D_PRINT_FLOAT)
4244 d_append_char (dpi, '[');
4245 d_print_comp (dpi, d_right (dc));
4246 if (tp == D_PRINT_FLOAT)
4247 d_append_char (dpi, ']');
4248 }
d00edca5 4249 return;
eb383413 4250
cbc43128
DD
4251 case DEMANGLE_COMPONENT_NUMBER:
4252 d_append_num (dpi, dc->u.s_number.number);
4253 return;
4254
830ef634
DD
4255 case DEMANGLE_COMPONENT_JAVA_RESOURCE:
4256 d_append_string (dpi, "java resource ");
4257 d_print_comp (dpi, d_left (dc));
4258 return;
4259
4260 case DEMANGLE_COMPONENT_COMPOUND_NAME:
4261 d_print_comp (dpi, d_left (dc));
4262 d_print_comp (dpi, d_right (dc));
4263 return;
4264
4265 case DEMANGLE_COMPONENT_CHARACTER:
4266 d_append_char (dpi, dc->u.s_character.character);
4267 return;
4268
ba8cb4ba
DD
4269 case DEMANGLE_COMPONENT_DECLTYPE:
4270 d_append_string (dpi, "decltype (");
4271 d_print_comp (dpi, d_left (dc));
4272 d_append_char (dpi, ')');
4273 return;
4274
1c08f2c8
DD
4275 case DEMANGLE_COMPONENT_PACK_EXPANSION:
4276 {
e2e1864d 4277 int len;
1c08f2c8 4278 int i;
e2e1864d
DD
4279 struct demangle_component *a = d_find_pack (dpi, d_left (dc));
4280 if (a == NULL)
4281 {
4282 /* d_find_pack won't find anything if the only packs involved
4283 in this expansion are function parameter packs; in that
4284 case, just print the pattern and "...". */
4285 d_print_subexpr (dpi, d_left (dc));
4286 d_append_string (dpi, "...");
4287 return;
4288 }
1c08f2c8 4289
e2e1864d 4290 len = d_pack_length (a);
1c08f2c8
DD
4291 dc = d_left (dc);
4292 for (i = 0; i < len; ++i)
4293 {
4294 dpi->pack_index = i;
4295 d_print_comp (dpi, dc);
4296 if (i < len-1)
4297 d_append_string (dpi, ", ");
4298 }
4299 }
4300 return;
4301
c743cf5d 4302 case DEMANGLE_COMPONENT_FUNCTION_PARAM:
664aa91f
DD
4303 d_append_string (dpi, "{parm#");
4304 d_append_num (dpi, dc->u.s_number.number + 1);
4305 d_append_char (dpi, '}');
4306 return;
c743cf5d 4307
d5031754
DD
4308 case DEMANGLE_COMPONENT_GLOBAL_CONSTRUCTORS:
4309 d_append_string (dpi, "global constructors keyed to ");
4310 d_print_comp (dpi, dc->u.s_binary.left);
4311 return;
4312
4313 case DEMANGLE_COMPONENT_GLOBAL_DESTRUCTORS:
4314 d_append_string (dpi, "global destructors keyed to ");
4315 d_print_comp (dpi, dc->u.s_binary.left);
4316 return;
4317
664aa91f
DD
4318 case DEMANGLE_COMPONENT_LAMBDA:
4319 d_append_string (dpi, "{lambda(");
4320 d_print_comp (dpi, dc->u.s_unary_num.sub);
4321 d_append_string (dpi, ")#");
4322 d_append_num (dpi, dc->u.s_unary_num.num + 1);
4323 d_append_char (dpi, '}');
4324 return;
4325
4326 case DEMANGLE_COMPONENT_UNNAMED_TYPE:
4327 d_append_string (dpi, "{unnamed type#");
4328 d_append_num (dpi, dc->u.s_number.number + 1);
4329 d_append_char (dpi, '}');
4330 return;
4331
d00edca5
DD
4332 default:
4333 d_print_error (dpi);
4334 return;
4335 }
eb383413
L
4336}
4337
b6fb00c0
DD
4338/* Print a Java dentifier. For Java we try to handle encoded extended
4339 Unicode characters. The C++ ABI doesn't mention Unicode encoding,
4340 so we don't it for C++. Characters are encoded as
4341 __U<hex-char>+_. */
eb383413 4342
d00edca5 4343static void
9334f9c6 4344d_print_java_identifier (struct d_print_info *dpi, const char *name, int len)
eb383413 4345{
b6fb00c0
DD
4346 const char *p;
4347 const char *end;
eb383413 4348
b6fb00c0
DD
4349 end = name + len;
4350 for (p = name; p < end; ++p)
4351 {
4352 if (end - p > 3
4353 && p[0] == '_'
4354 && p[1] == '_'
4355 && p[2] == 'U')
eb383413 4356 {
b6fb00c0
DD
4357 unsigned long c;
4358 const char *q;
4359
4360 c = 0;
4361 for (q = p + 3; q < end; ++q)
d00edca5 4362 {
b6fb00c0
DD
4363 int dig;
4364
4365 if (IS_DIGIT (*q))
4366 dig = *q - '0';
4367 else if (*q >= 'A' && *q <= 'F')
4368 dig = *q - 'A' + 10;
4369 else if (*q >= 'a' && *q <= 'f')
4370 dig = *q - 'a' + 10;
4371 else
4372 break;
eb383413 4373
b6fb00c0
DD
4374 c = c * 16 + dig;
4375 }
4376 /* If the Unicode character is larger than 256, we don't try
4377 to deal with it here. FIXME. */
4378 if (q < end && *q == '_' && c < 256)
4379 {
4380 d_append_char (dpi, c);
4381 p = q;
4382 continue;
d00edca5 4383 }
d00edca5 4384 }
b6fb00c0
DD
4385
4386 d_append_char (dpi, *p);
eb383413 4387 }
eb383413
L
4388}
4389
858b45cf
DD
4390/* Print a list of modifiers. SUFFIX is 1 if we are printing
4391 qualifiers on this after printing a function. */
eb383413 4392
d00edca5 4393static void
9334f9c6
DD
4394d_print_mod_list (struct d_print_info *dpi,
4395 struct d_print_mod *mods, int suffix)
eb383413 4396{
331c3da2
DD
4397 struct d_print_template *hold_dpt;
4398
858b45cf 4399 if (mods == NULL || d_print_saw_error (dpi))
d00edca5 4400 return;
eb383413 4401
858b45cf
DD
4402 if (mods->printed
4403 || (! suffix
59727473
DD
4404 && (mods->mod->type == DEMANGLE_COMPONENT_RESTRICT_THIS
4405 || mods->mod->type == DEMANGLE_COMPONENT_VOLATILE_THIS
4406 || mods->mod->type == DEMANGLE_COMPONENT_CONST_THIS)))
858b45cf
DD
4407 {
4408 d_print_mod_list (dpi, mods->next, suffix);
4409 return;
4410 }
4411
331c3da2
DD
4412 mods->printed = 1;
4413
4414 hold_dpt = dpi->templates;
4415 dpi->templates = mods->templates;
4416
59727473 4417 if (mods->mod->type == DEMANGLE_COMPONENT_FUNCTION_TYPE)
eb383413 4418 {
d00edca5 4419 d_print_function_type (dpi, mods->mod, mods->next);
331c3da2 4420 dpi->templates = hold_dpt;
d00edca5
DD
4421 return;
4422 }
59727473 4423 else if (mods->mod->type == DEMANGLE_COMPONENT_ARRAY_TYPE)
d00edca5 4424 {
d00edca5 4425 d_print_array_type (dpi, mods->mod, mods->next);
331c3da2 4426 dpi->templates = hold_dpt;
d00edca5
DD
4427 return;
4428 }
59727473 4429 else if (mods->mod->type == DEMANGLE_COMPONENT_LOCAL_NAME)
d4edd112
DD
4430 {
4431 struct d_print_mod *hold_modifiers;
59727473 4432 struct demangle_component *dc;
d4edd112
DD
4433
4434 /* When this is on the modifier stack, we have pulled any
4435 qualifiers off the right argument already. Otherwise, we
4436 print it as usual, but don't let the left argument see any
4437 modifiers. */
4438
4439 hold_modifiers = dpi->modifiers;
4440 dpi->modifiers = NULL;
4441 d_print_comp (dpi, d_left (mods->mod));
4442 dpi->modifiers = hold_modifiers;
4443
b6fb00c0 4444 if ((dpi->options & DMGL_JAVA) == 0)
208c1674 4445 d_append_string (dpi, "::");
b6fb00c0
DD
4446 else
4447 d_append_char (dpi, '.');
d4edd112
DD
4448
4449 dc = d_right (mods->mod);
664aa91f
DD
4450
4451 if (dc->type == DEMANGLE_COMPONENT_DEFAULT_ARG)
4452 {
4453 d_append_string (dpi, "{default arg#");
4454 d_append_num (dpi, dc->u.s_unary_num.num + 1);
4455 d_append_string (dpi, "}::");
4456 dc = dc->u.s_unary_num.sub;
4457 }
4458
59727473
DD
4459 while (dc->type == DEMANGLE_COMPONENT_RESTRICT_THIS
4460 || dc->type == DEMANGLE_COMPONENT_VOLATILE_THIS
4461 || dc->type == DEMANGLE_COMPONENT_CONST_THIS)
d4edd112
DD
4462 dc = d_left (dc);
4463
4464 d_print_comp (dpi, dc);
4465
4466 dpi->templates = hold_dpt;
4467 return;
4468 }
eb383413 4469
d00edca5 4470 d_print_mod (dpi, mods->mod);
eb383413 4471
331c3da2
DD
4472 dpi->templates = hold_dpt;
4473
858b45cf 4474 d_print_mod_list (dpi, mods->next, suffix);
eb383413 4475}
331c3da2 4476
d00edca5 4477/* Print a modifier. */
eb383413 4478
d00edca5 4479static void
9334f9c6
DD
4480d_print_mod (struct d_print_info *dpi,
4481 const struct demangle_component *mod)
d00edca5
DD
4482{
4483 switch (mod->type)
4484 {
59727473
DD
4485 case DEMANGLE_COMPONENT_RESTRICT:
4486 case DEMANGLE_COMPONENT_RESTRICT_THIS:
208c1674 4487 d_append_string (dpi, " restrict");
d00edca5 4488 return;
59727473
DD
4489 case DEMANGLE_COMPONENT_VOLATILE:
4490 case DEMANGLE_COMPONENT_VOLATILE_THIS:
208c1674 4491 d_append_string (dpi, " volatile");
d00edca5 4492 return;
59727473
DD
4493 case DEMANGLE_COMPONENT_CONST:
4494 case DEMANGLE_COMPONENT_CONST_THIS:
208c1674 4495 d_append_string (dpi, " const");
d00edca5 4496 return;
59727473 4497 case DEMANGLE_COMPONENT_VENDOR_TYPE_QUAL:
d00edca5
DD
4498 d_append_char (dpi, ' ');
4499 d_print_comp (dpi, d_right (mod));
4500 return;
59727473 4501 case DEMANGLE_COMPONENT_POINTER:
d00edca5
DD
4502 /* There is no pointer symbol in Java. */
4503 if ((dpi->options & DMGL_JAVA) == 0)
4504 d_append_char (dpi, '*');
4505 return;
59727473 4506 case DEMANGLE_COMPONENT_REFERENCE:
d00edca5
DD
4507 d_append_char (dpi, '&');
4508 return;
8969a67f
DD
4509 case DEMANGLE_COMPONENT_RVALUE_REFERENCE:
4510 d_append_string (dpi, "&&");
4511 return;
59727473 4512 case DEMANGLE_COMPONENT_COMPLEX:
208c1674 4513 d_append_string (dpi, "complex ");
d00edca5 4514 return;
59727473 4515 case DEMANGLE_COMPONENT_IMAGINARY:
208c1674 4516 d_append_string (dpi, "imaginary ");
d00edca5 4517 return;
59727473 4518 case DEMANGLE_COMPONENT_PTRMEM_TYPE:
858b45cf 4519 if (d_last_char (dpi) != '(')
d00edca5
DD
4520 d_append_char (dpi, ' ');
4521 d_print_comp (dpi, d_left (mod));
208c1674 4522 d_append_string (dpi, "::*");
d00edca5 4523 return;
59727473 4524 case DEMANGLE_COMPONENT_TYPED_NAME:
d00edca5
DD
4525 d_print_comp (dpi, d_left (mod));
4526 return;
cbc43128 4527 case DEMANGLE_COMPONENT_VECTOR_TYPE:
f9b58c5b 4528 d_append_string (dpi, " __vector(");
cbc43128 4529 d_print_comp (dpi, d_left (mod));
f9b58c5b 4530 d_append_char (dpi, ')');
cbc43128
DD
4531 return;
4532
d00edca5
DD
4533 default:
4534 /* Otherwise, we have something that won't go back on the
4535 modifier stack, so we can just print it. */
4536 d_print_comp (dpi, mod);
4537 return;
4538 }
4539}
eb383413 4540
d00edca5 4541/* Print a function type, except for the return type. */
eb383413 4542
d00edca5 4543static void
9334f9c6
DD
4544d_print_function_type (struct d_print_info *dpi,
4545 const struct demangle_component *dc,
4546 struct d_print_mod *mods)
eb383413 4547{
331c3da2 4548 int need_paren;
2d733211 4549 int need_space;
331c3da2 4550 struct d_print_mod *p;
d4edd112 4551 struct d_print_mod *hold_modifiers;
331c3da2
DD
4552
4553 need_paren = 0;
2d733211 4554 need_space = 0;
331c3da2 4555 for (p = mods; p != NULL; p = p->next)
d00edca5 4556 {
331c3da2
DD
4557 if (p->printed)
4558 break;
eb383413 4559
331c3da2 4560 switch (p->mod->type)
d00edca5 4561 {
2d733211
DD
4562 case DEMANGLE_COMPONENT_POINTER:
4563 case DEMANGLE_COMPONENT_REFERENCE:
8969a67f 4564 case DEMANGLE_COMPONENT_RVALUE_REFERENCE:
2d733211
DD
4565 need_paren = 1;
4566 break;
59727473
DD
4567 case DEMANGLE_COMPONENT_RESTRICT:
4568 case DEMANGLE_COMPONENT_VOLATILE:
4569 case DEMANGLE_COMPONENT_CONST:
4570 case DEMANGLE_COMPONENT_VENDOR_TYPE_QUAL:
59727473
DD
4571 case DEMANGLE_COMPONENT_COMPLEX:
4572 case DEMANGLE_COMPONENT_IMAGINARY:
4573 case DEMANGLE_COMPONENT_PTRMEM_TYPE:
2d733211 4574 need_space = 1;
331c3da2
DD
4575 need_paren = 1;
4576 break;
59727473
DD
4577 case DEMANGLE_COMPONENT_RESTRICT_THIS:
4578 case DEMANGLE_COMPONENT_VOLATILE_THIS:
4579 case DEMANGLE_COMPONENT_CONST_THIS:
858b45cf 4580 break;
331c3da2
DD
4581 default:
4582 break;
d00edca5 4583 }
331c3da2
DD
4584 if (need_paren)
4585 break;
4586 }
eb383413 4587
331c3da2 4588 if (need_paren)
858b45cf 4589 {
2d733211 4590 if (! need_space)
858b45cf 4591 {
2d733211
DD
4592 if (d_last_char (dpi) != '('
4593 && d_last_char (dpi) != '*')
4594 need_space = 1;
858b45cf 4595 }
2d733211
DD
4596 if (need_space && d_last_char (dpi) != ' ')
4597 d_append_char (dpi, ' ');
858b45cf
DD
4598 d_append_char (dpi, '(');
4599 }
eb383413 4600
d4edd112
DD
4601 hold_modifiers = dpi->modifiers;
4602 dpi->modifiers = NULL;
4603
858b45cf 4604 d_print_mod_list (dpi, mods, 0);
eb383413 4605
331c3da2
DD
4606 if (need_paren)
4607 d_append_char (dpi, ')');
eb383413 4608
d00edca5 4609 d_append_char (dpi, '(');
eb383413 4610
d00edca5 4611 if (d_right (dc) != NULL)
d4edd112 4612 d_print_comp (dpi, d_right (dc));
eb383413 4613
d00edca5 4614 d_append_char (dpi, ')');
858b45cf
DD
4615
4616 d_print_mod_list (dpi, mods, 1);
d4edd112
DD
4617
4618 dpi->modifiers = hold_modifiers;
d00edca5 4619}
eb383413 4620
d00edca5 4621/* Print an array type, except for the element type. */
eb383413 4622
d00edca5 4623static void
9334f9c6
DD
4624d_print_array_type (struct d_print_info *dpi,
4625 const struct demangle_component *dc,
4626 struct d_print_mod *mods)
d00edca5
DD
4627{
4628 int need_space;
eb383413 4629
d00edca5
DD
4630 need_space = 1;
4631 if (mods != NULL)
eb383413 4632 {
d00edca5
DD
4633 int need_paren;
4634 struct d_print_mod *p;
03d5f569 4635
d00edca5
DD
4636 need_paren = 0;
4637 for (p = mods; p != NULL; p = p->next)
eb383413 4638 {
74aee4eb 4639 if (! p->printed)
eb383413 4640 {
74aee4eb
DD
4641 if (p->mod->type == DEMANGLE_COMPONENT_ARRAY_TYPE)
4642 {
4643 need_space = 0;
4644 break;
4645 }
4646 else
4647 {
4648 need_paren = 1;
4649 need_space = 1;
4650 break;
4651 }
eb383413 4652 }
d00edca5 4653 }
eb383413 4654
d00edca5 4655 if (need_paren)
208c1674 4656 d_append_string (dpi, " (");
eb383413 4657
858b45cf 4658 d_print_mod_list (dpi, mods, 0);
eb383413 4659
d00edca5
DD
4660 if (need_paren)
4661 d_append_char (dpi, ')');
4662 }
eb383413 4663
d00edca5
DD
4664 if (need_space)
4665 d_append_char (dpi, ' ');
03d5f569 4666
d00edca5 4667 d_append_char (dpi, '[');
03d5f569 4668
d00edca5
DD
4669 if (d_left (dc) != NULL)
4670 d_print_comp (dpi, d_left (dc));
eb383413 4671
d00edca5
DD
4672 d_append_char (dpi, ']');
4673}
eb383413 4674
d00edca5 4675/* Print an operator in an expression. */
eb383413 4676
d00edca5 4677static void
9334f9c6
DD
4678d_print_expr_op (struct d_print_info *dpi,
4679 const struct demangle_component *dc)
d00edca5 4680{
59727473 4681 if (dc->type == DEMANGLE_COMPONENT_OPERATOR)
b6fb00c0
DD
4682 d_append_buffer (dpi, dc->u.s_operator.op->name,
4683 dc->u.s_operator.op->len);
d00edca5
DD
4684 else
4685 d_print_comp (dpi, dc);
eb383413
L
4686}
4687
d00edca5 4688/* Print a cast. */
eb383413 4689
d00edca5 4690static void
9334f9c6
DD
4691d_print_cast (struct d_print_info *dpi,
4692 const struct demangle_component *dc)
eb383413 4693{
59727473 4694 if (d_left (dc)->type != DEMANGLE_COMPONENT_TEMPLATE)
d00edca5
DD
4695 d_print_comp (dpi, d_left (dc));
4696 else
4697 {
331c3da2 4698 struct d_print_mod *hold_dpm;
d00edca5 4699 struct d_print_template dpt;
0976f6a7 4700
d00edca5
DD
4701 /* It appears that for a templated cast operator, we need to put
4702 the template parameters in scope for the operator name, but
4703 not for the parameters. The effect is that we need to handle
24afc00d 4704 the template printing here. */
eb383413 4705
331c3da2
DD
4706 hold_dpm = dpi->modifiers;
4707 dpi->modifiers = NULL;
4708
d00edca5
DD
4709 dpt.next = dpi->templates;
4710 dpi->templates = &dpt;
abf6a75b 4711 dpt.template_decl = d_left (dc);
0976f6a7 4712
d00edca5 4713 d_print_comp (dpi, d_left (d_left (dc)));
0976f6a7 4714
d00edca5 4715 dpi->templates = dpt.next;
eb383413 4716
858b45cf
DD
4717 if (d_last_char (dpi) == '<')
4718 d_append_char (dpi, ' ');
d00edca5
DD
4719 d_append_char (dpi, '<');
4720 d_print_comp (dpi, d_right (d_left (dc)));
4721 /* Avoid generating two consecutive '>' characters, to avoid
4722 the C++ syntactic ambiguity. */
858b45cf 4723 if (d_last_char (dpi) == '>')
d00edca5
DD
4724 d_append_char (dpi, ' ');
4725 d_append_char (dpi, '>');
331c3da2
DD
4726
4727 dpi->modifiers = hold_dpm;
eb383413 4728 }
d00edca5
DD
4729}
4730
4731/* Initialize the information structure we use to pass around
4732 information. */
4733
59727473
DD
4734CP_STATIC_IF_GLIBCPP_V3
4735void
9334f9c6
DD
4736cplus_demangle_init_info (const char *mangled, int options, size_t len,
4737 struct d_info *di)
eb383413 4738{
d00edca5 4739 di->s = mangled;
b6fb00c0 4740 di->send = mangled + len;
d00edca5 4741 di->options = options;
eb383413 4742
d00edca5
DD
4743 di->n = mangled;
4744
4745 /* We can not need more components than twice the number of chars in
4746 the mangled string. Most components correspond directly to
4747 chars, but the ARGLIST types are exceptions. */
4748 di->num_comps = 2 * len;
d00edca5
DD
4749 di->next_comp = 0;
4750
4751 /* Similarly, we can not need more substitutions than there are
331c3da2
DD
4752 chars in the mangled string. */
4753 di->num_subs = len;
d00edca5 4754 di->next_sub = 0;
b6fb00c0 4755 di->did_subs = 0;
d00edca5
DD
4756
4757 di->last_name = NULL;
4758
b6fb00c0 4759 di->expansion = 0;
eb383413
L
4760}
4761
208c1674
DD
4762/* Internal implementation for the demangler. If MANGLED is a g++ v3 ABI
4763 mangled name, return strings in repeated callback giving the demangled
4764 name. OPTIONS is the usual libiberty demangler options. On success,
4765 this returns 1. On failure, returns 0. */
eb383413 4766
208c1674
DD
4767static int
4768d_demangle_callback (const char *mangled, int options,
4769 demangle_callbackref callback, void *opaque)
eb383413 4770{
d5031754
DD
4771 enum
4772 {
4773 DCT_TYPE,
4774 DCT_MANGLED,
4775 DCT_GLOBAL_CTORS,
4776 DCT_GLOBAL_DTORS
4777 }
4778 type;
d00edca5 4779 struct d_info di;
59727473 4780 struct demangle_component *dc;
208c1674 4781 int status;
d00edca5
DD
4782
4783 if (mangled[0] == '_' && mangled[1] == 'Z')
d5031754 4784 type = DCT_MANGLED;
d00edca5
DD
4785 else if (strncmp (mangled, "_GLOBAL_", 8) == 0
4786 && (mangled[8] == '.' || mangled[8] == '_' || mangled[8] == '$')
4787 && (mangled[9] == 'D' || mangled[9] == 'I')
4788 && mangled[10] == '_')
d5031754 4789 type = mangled[9] == 'I' ? DCT_GLOBAL_CTORS : DCT_GLOBAL_DTORS;
eb383413
L
4790 else
4791 {
d00edca5 4792 if ((options & DMGL_TYPES) == 0)
208c1674 4793 return 0;
d5031754 4794 type = DCT_TYPE;
eb383413
L
4795 }
4796
208c1674 4797 cplus_demangle_init_info (mangled, options, strlen (mangled), &di);
03d5f569 4798
b6fb00c0
DD
4799 {
4800#ifdef CP_DYNAMIC_ARRAYS
59727473
DD
4801 __extension__ struct demangle_component comps[di.num_comps];
4802 __extension__ struct demangle_component *subs[di.num_subs];
b6fb00c0 4803
208c1674
DD
4804 di.comps = comps;
4805 di.subs = subs;
b6fb00c0 4806#else
208c1674
DD
4807 di.comps = alloca (di.num_comps * sizeof (*di.comps));
4808 di.subs = alloca (di.num_subs * sizeof (*di.subs));
b6fb00c0
DD
4809#endif
4810
d5031754
DD
4811 switch (type)
4812 {
4813 case DCT_TYPE:
4814 dc = cplus_demangle_type (&di);
4815 break;
4816 case DCT_MANGLED:
4817 dc = cplus_demangle_mangled_name (&di, 1);
4818 break;
4819 case DCT_GLOBAL_CTORS:
4820 case DCT_GLOBAL_DTORS:
4821 d_advance (&di, 11);
4822 dc = d_make_comp (&di,
4823 (type == DCT_GLOBAL_CTORS
4824 ? DEMANGLE_COMPONENT_GLOBAL_CONSTRUCTORS
4825 : DEMANGLE_COMPONENT_GLOBAL_DESTRUCTORS),
4826 d_make_name (&di, d_str (&di), strlen (d_str (&di))),
4827 NULL);
4828 d_advance (&di, strlen (d_str (&di)));
4829 break;
4830 }
d00edca5 4831
b6fb00c0
DD
4832 /* If DMGL_PARAMS is set, then if we didn't consume the entire
4833 mangled string, then we didn't successfully demangle it. If
4834 DMGL_PARAMS is not set, we didn't look at the trailing
4835 parameters. */
4836 if (((options & DMGL_PARAMS) != 0) && d_peek_char (&di) != '\0')
4837 dc = NULL;
24afc00d 4838
d00edca5 4839#ifdef CP_DEMANGLE_DEBUG
208c1674 4840 d_dump (dc, 0);
d00edca5
DD
4841#endif
4842
208c1674
DD
4843 status = (dc != NULL)
4844 ? cplus_demangle_print_callback (options, dc, callback, opaque)
4845 : 0;
4846 }
03d5f569 4847
208c1674
DD
4848 return status;
4849}
03d5f569 4850
208c1674
DD
4851/* Entry point for the demangler. If MANGLED is a g++ v3 ABI mangled
4852 name, return a buffer allocated with malloc holding the demangled
4853 name. OPTIONS is the usual libiberty demangler options. On
4854 success, this sets *PALC to the allocated size of the returned
4855 buffer. On failure, this sets *PALC to 0 for a bad name, or 1 for
4856 a memory allocation failure, and returns NULL. */
b6fb00c0 4857
208c1674
DD
4858static char *
4859d_demangle (const char *mangled, int options, size_t *palc)
4860{
4861 struct d_growable_string dgs;
4862 int status;
03d5f569 4863
208c1674
DD
4864 d_growable_string_init (&dgs, 0);
4865
4866 status = d_demangle_callback (mangled, options,
4867 d_growable_string_callback_adapter, &dgs);
4868 if (status == 0)
4869 {
4870 free (dgs.buf);
4871 *palc = 0;
4872 return NULL;
4873 }
4874
ffe7cfdf 4875 *palc = dgs.allocation_failure ? 1 : dgs.alc;
208c1674 4876 return dgs.buf;
eb383413
L
4877}
4878
0c4460bb 4879#if defined(IN_LIBGCC2) || defined(IN_GLIBCPP_V3)
d00edca5 4880
9334f9c6 4881extern char *__cxa_demangle (const char *, char *, size_t *, int *);
03d5f569 4882
d00edca5
DD
4883/* ia64 ABI-mandated entry point in the C++ runtime library for
4884 performing demangling. MANGLED_NAME is a NUL-terminated character
4885 string containing the name to be demangled.
03d5f569
JM
4886
4887 OUTPUT_BUFFER is a region of memory, allocated with malloc, of
4888 *LENGTH bytes, into which the demangled name is stored. If
4889 OUTPUT_BUFFER is not long enough, it is expanded using realloc.
4890 OUTPUT_BUFFER may instead be NULL; in that case, the demangled name
d00edca5 4891 is placed in a region of memory allocated with malloc.
03d5f569 4892
208c1674 4893 If LENGTH is non-NULL, the length of the buffer containing the
d00edca5 4894 demangled name, is placed in *LENGTH.
03d5f569
JM
4895
4896 The return value is a pointer to the start of the NUL-terminated
4897 demangled name, or NULL if the demangling fails. The caller is
d00edca5 4898 responsible for deallocating this memory using free.
03d5f569
JM
4899
4900 *STATUS is set to one of the following values:
4901 0: The demangling operation succeeded.
d00edca5 4902 -1: A memory allocation failure occurred.
03d5f569
JM
4903 -2: MANGLED_NAME is not a valid name under the C++ ABI mangling rules.
4904 -3: One of the arguments is invalid.
4905
d00edca5 4906 The demangling is performed using the C++ ABI mangling rules, with
03d5f569
JM
4907 GNU extensions. */
4908
4909char *
9334f9c6
DD
4910__cxa_demangle (const char *mangled_name, char *output_buffer,
4911 size_t *length, int *status)
03d5f569 4912{
d00edca5
DD
4913 char *demangled;
4914 size_t alc;
03d5f569 4915
d00edca5
DD
4916 if (mangled_name == NULL)
4917 {
74aee4eb
DD
4918 if (status != NULL)
4919 *status = -3;
03d5f569
JM
4920 return NULL;
4921 }
03d5f569 4922
d00edca5 4923 if (output_buffer != NULL && length == NULL)
03d5f569 4924 {
74aee4eb
DD
4925 if (status != NULL)
4926 *status = -3;
d00edca5 4927 return NULL;
03d5f569 4928 }
d00edca5 4929
74aee4eb 4930 demangled = d_demangle (mangled_name, DMGL_PARAMS | DMGL_TYPES, &alc);
d00edca5
DD
4931
4932 if (demangled == NULL)
03d5f569 4933 {
74aee4eb
DD
4934 if (status != NULL)
4935 {
4936 if (alc == 1)
4937 *status = -1;
4938 else
4939 *status = -2;
4940 }
03d5f569
JM
4941 return NULL;
4942 }
d00edca5
DD
4943
4944 if (output_buffer == NULL)
4945 {
4946 if (length != NULL)
4947 *length = alc;
4948 }
03d5f569 4949 else
03d5f569 4950 {
d00edca5
DD
4951 if (strlen (demangled) < *length)
4952 {
4953 strcpy (output_buffer, demangled);
4954 free (demangled);
4955 demangled = output_buffer;
4956 }
4957 else
4958 {
4959 free (output_buffer);
4960 *length = alc;
4961 }
03d5f569 4962 }
d00edca5 4963
74aee4eb
DD
4964 if (status != NULL)
4965 *status = 0;
d00edca5
DD
4966
4967 return demangled;
03d5f569
JM
4968}
4969
208c1674
DD
4970extern int __gcclibcxx_demangle_callback (const char *,
4971 void (*)
4972 (const char *, size_t, void *),
4973 void *);
4974
4975/* Alternative, allocationless entry point in the C++ runtime library
4976 for performing demangling. MANGLED_NAME is a NUL-terminated character
4977 string containing the name to be demangled.
4978
4979 CALLBACK is a callback function, called with demangled string
4980 segments as demangling progresses; it is called at least once,
4981 but may be called more than once. OPAQUE is a generalized pointer
4982 used as a callback argument.
4983
4984 The return code is one of the following values, equivalent to
4985 the STATUS values of __cxa_demangle() (excluding -1, since this
4986 function performs no memory allocations):
4987 0: The demangling operation succeeded.
4988 -2: MANGLED_NAME is not a valid name under the C++ ABI mangling rules.
4989 -3: One of the arguments is invalid.
4990
4991 The demangling is performed using the C++ ABI mangling rules, with
4992 GNU extensions. */
4993
4994int
4995__gcclibcxx_demangle_callback (const char *mangled_name,
4996 void (*callback) (const char *, size_t, void *),
4997 void *opaque)
4998{
4999 int status;
5000
5001 if (mangled_name == NULL || callback == NULL)
5002 return -3;
5003
5004 status = d_demangle_callback (mangled_name, DMGL_PARAMS | DMGL_TYPES,
5005 callback, opaque);
5006 if (status == 0)
5007 return -2;
5008
5009 return 0;
5010}
5011
0c4460bb 5012#else /* ! (IN_LIBGCC2 || IN_GLIBCPP_V3) */
03d5f569 5013
d00edca5
DD
5014/* Entry point for libiberty demangler. If MANGLED is a g++ v3 ABI
5015 mangled name, return a buffer allocated with malloc holding the
5016 demangled name. Otherwise, return NULL. */
eb383413
L
5017
5018char *
208c1674 5019cplus_demangle_v3 (const char *mangled, int options)
eb383413 5020{
d00edca5 5021 size_t alc;
849ee224 5022
d00edca5 5023 return d_demangle (mangled, options, &alc);
eb383413
L
5024}
5025
208c1674
DD
5026int
5027cplus_demangle_v3_callback (const char *mangled, int options,
5028 demangle_callbackref callback, void *opaque)
5029{
5030 return d_demangle_callback (mangled, options, callback, opaque);
5031}
5032
bc9bf259
DD
5033/* Demangle a Java symbol. Java uses a subset of the V3 ABI C++ mangling
5034 conventions, but the output formatting is a little different.
208c1674
DD
5035 This instructs the C++ demangler not to emit pointer characters ("*"), to
5036 use Java's namespace separator symbol ("." instead of "::"), and to output
5037 JArray<TYPE> as TYPE[]. */
bc9bf259
DD
5038
5039char *
208c1674 5040java_demangle_v3 (const char *mangled)
bc9bf259 5041{
d00edca5 5042 size_t alc;
bc9bf259 5043
208c1674
DD
5044 return d_demangle (mangled, DMGL_JAVA | DMGL_PARAMS | DMGL_RET_POSTFIX, &alc);
5045}
f2160d2b 5046
208c1674
DD
5047int
5048java_demangle_v3_callback (const char *mangled,
5049 demangle_callbackref callback, void *opaque)
5050{
5051 return d_demangle_callback (mangled,
5052 DMGL_JAVA | DMGL_PARAMS | DMGL_RET_POSTFIX,
5053 callback, opaque);
bc9bf259
DD
5054}
5055
0c4460bb 5056#endif /* IN_LIBGCC2 || IN_GLIBCPP_V3 */
03d5f569 5057
2a9dffbf 5058#ifndef IN_GLIBCPP_V3
d00edca5
DD
5059
5060/* Demangle a string in order to find out whether it is a constructor
5061 or destructor. Return non-zero on success. Set *CTOR_KIND and
5062 *DTOR_KIND appropriately. */
5063
5064static int
9334f9c6
DD
5065is_ctor_or_dtor (const char *mangled,
5066 enum gnu_v3_ctor_kinds *ctor_kind,
5067 enum gnu_v3_dtor_kinds *dtor_kind)
e61231f1 5068{
d00edca5 5069 struct d_info di;
59727473 5070 struct demangle_component *dc;
858b45cf 5071 int ret;
e61231f1 5072
d00edca5
DD
5073 *ctor_kind = (enum gnu_v3_ctor_kinds) 0;
5074 *dtor_kind = (enum gnu_v3_dtor_kinds) 0;
5075
59727473 5076 cplus_demangle_init_info (mangled, DMGL_GNU_V3, strlen (mangled), &di);
e61231f1 5077
b6fb00c0
DD
5078 {
5079#ifdef CP_DYNAMIC_ARRAYS
59727473
DD
5080 __extension__ struct demangle_component comps[di.num_comps];
5081 __extension__ struct demangle_component *subs[di.num_subs];
b6fb00c0 5082
208c1674
DD
5083 di.comps = comps;
5084 di.subs = subs;
b6fb00c0 5085#else
208c1674
DD
5086 di.comps = alloca (di.num_comps * sizeof (*di.comps));
5087 di.subs = alloca (di.num_subs * sizeof (*di.subs));
b6fb00c0 5088#endif
d00edca5 5089
59727473 5090 dc = cplus_demangle_mangled_name (&di, 1);
d35d0cd4 5091
b6fb00c0
DD
5092 /* Note that because we did not pass DMGL_PARAMS, we don't expect
5093 to demangle the entire string. */
e61231f1 5094
b6fb00c0
DD
5095 ret = 0;
5096 while (dc != NULL)
5097 {
5098 switch (dc->type)
5099 {
5100 default:
5101 dc = NULL;
5102 break;
59727473
DD
5103 case DEMANGLE_COMPONENT_TYPED_NAME:
5104 case DEMANGLE_COMPONENT_TEMPLATE:
5105 case DEMANGLE_COMPONENT_RESTRICT_THIS:
5106 case DEMANGLE_COMPONENT_VOLATILE_THIS:
5107 case DEMANGLE_COMPONENT_CONST_THIS:
b6fb00c0
DD
5108 dc = d_left (dc);
5109 break;
59727473
DD
5110 case DEMANGLE_COMPONENT_QUAL_NAME:
5111 case DEMANGLE_COMPONENT_LOCAL_NAME:
b6fb00c0
DD
5112 dc = d_right (dc);
5113 break;
59727473 5114 case DEMANGLE_COMPONENT_CTOR:
b6fb00c0
DD
5115 *ctor_kind = dc->u.s_ctor.kind;
5116 ret = 1;
5117 dc = NULL;
5118 break;
59727473 5119 case DEMANGLE_COMPONENT_DTOR:
b6fb00c0
DD
5120 *dtor_kind = dc->u.s_dtor.kind;
5121 ret = 1;
5122 dc = NULL;
5123 break;
5124 }
5125 }
b6fb00c0 5126 }
858b45cf
DD
5127
5128 return ret;
e61231f1
JB
5129}
5130
d00edca5
DD
5131/* Return whether NAME is the mangled form of a g++ V3 ABI constructor
5132 name. A non-zero return indicates the type of constructor. */
e61231f1 5133
e61231f1 5134enum gnu_v3_ctor_kinds
9334f9c6 5135is_gnu_v3_mangled_ctor (const char *name)
e61231f1 5136{
d00edca5
DD
5137 enum gnu_v3_ctor_kinds ctor_kind;
5138 enum gnu_v3_dtor_kinds dtor_kind;
e61231f1 5139
d00edca5 5140 if (! is_ctor_or_dtor (name, &ctor_kind, &dtor_kind))
585cc78f 5141 return (enum gnu_v3_ctor_kinds) 0;
d00edca5 5142 return ctor_kind;
e61231f1
JB
5143}
5144
5145
d00edca5
DD
5146/* Return whether NAME is the mangled form of a g++ V3 ABI destructor
5147 name. A non-zero return indicates the type of destructor. */
5148
e61231f1 5149enum gnu_v3_dtor_kinds
9334f9c6 5150is_gnu_v3_mangled_dtor (const char *name)
e61231f1 5151{
d00edca5
DD
5152 enum gnu_v3_ctor_kinds ctor_kind;
5153 enum gnu_v3_dtor_kinds dtor_kind;
e61231f1 5154
d00edca5 5155 if (! is_ctor_or_dtor (name, &ctor_kind, &dtor_kind))
585cc78f 5156 return (enum gnu_v3_dtor_kinds) 0;
d00edca5 5157 return dtor_kind;
e61231f1
JB
5158}
5159
d00edca5 5160#endif /* IN_GLIBCPP_V3 */
e61231f1 5161
eb383413
L
5162#ifdef STANDALONE_DEMANGLER
5163
5164#include "getopt.h"
d00edca5
DD
5165#include "dyn-string.h"
5166
e064c173 5167static void print_usage (FILE* fp, int exit_value);
eb383413 5168
d00edca5
DD
5169#define IS_ALPHA(CHAR) \
5170 (((CHAR) >= 'a' && (CHAR) <= 'z') \
5171 || ((CHAR) >= 'A' && (CHAR) <= 'Z'))
eb383413
L
5172
5173/* Non-zero if CHAR is a character than can occur in a mangled name. */
5174#define is_mangled_char(CHAR) \
74bcd529
DD
5175 (IS_ALPHA (CHAR) || IS_DIGIT (CHAR) \
5176 || (CHAR) == '_' || (CHAR) == '.' || (CHAR) == '$')
eb383413
L
5177
5178/* The name of this program, as invoked. */
5179const char* program_name;
5180
5181/* Prints usage summary to FP and then exits with EXIT_VALUE. */
5182
5183static void
9334f9c6 5184print_usage (FILE* fp, int exit_value)
eb383413
L
5185{
5186 fprintf (fp, "Usage: %s [options] [names ...]\n", program_name);
74bcd529 5187 fprintf (fp, "Options:\n");
eb383413 5188 fprintf (fp, " -h,--help Display this message.\n");
6d95373e 5189 fprintf (fp, " -p,--no-params Don't display function parameters\n");
eb383413
L
5190 fprintf (fp, " -v,--verbose Produce verbose demanglings.\n");
5191 fprintf (fp, "If names are provided, they are demangled. Otherwise filters standard input.\n");
5192
5193 exit (exit_value);
5194}
5195
5196/* Option specification for getopt_long. */
c23795e2 5197static const struct option long_options[] =
eb383413 5198{
6d95373e
DD
5199 { "help", no_argument, NULL, 'h' },
5200 { "no-params", no_argument, NULL, 'p' },
5201 { "verbose", no_argument, NULL, 'v' },
5202 { NULL, no_argument, NULL, 0 },
eb383413
L
5203};
5204
5205/* Main entry for a demangling filter executable. It will demangle
5206 its command line arguments, if any. If none are provided, it will
5207 filter stdin to stdout, replacing any recognized mangled C++ names
5208 with their demangled equivalents. */
5209
5210int
9334f9c6 5211main (int argc, char *argv[])
eb383413 5212{
eb383413
L
5213 int i;
5214 int opt_char;
d00edca5 5215 int options = DMGL_PARAMS | DMGL_ANSI | DMGL_TYPES;
eb383413
L
5216
5217 /* Use the program name of this program, as invoked. */
5218 program_name = argv[0];
5219
5220 /* Parse options. */
5221 do
5222 {
6d95373e 5223 opt_char = getopt_long (argc, argv, "hpv", long_options, NULL);
eb383413
L
5224 switch (opt_char)
5225 {
5226 case '?': /* Unrecognized option. */
5227 print_usage (stderr, 1);
5228 break;
5229
5230 case 'h':
5231 print_usage (stdout, 0);
5232 break;
5233
6d95373e
DD
5234 case 'p':
5235 options &= ~ DMGL_PARAMS;
5236 break;
5237
eb383413 5238 case 'v':
d00edca5 5239 options |= DMGL_VERBOSE;
eb383413
L
5240 break;
5241 }
5242 }
5243 while (opt_char != -1);
5244
5245 if (optind == argc)
5246 /* No command line arguments were provided. Filter stdin. */
5247 {
5248 dyn_string_t mangled = dyn_string_new (3);
d00edca5 5249 char *s;
eb383413
L
5250
5251 /* Read all of input. */
5252 while (!feof (stdin))
5253 {
d00edca5 5254 char c;
eb383413
L
5255
5256 /* Pile characters into mangled until we hit one that can't
5257 occur in a mangled name. */
5258 c = getchar ();
5259 while (!feof (stdin) && is_mangled_char (c))
5260 {
5261 dyn_string_append_char (mangled, c);
5262 if (feof (stdin))
5263 break;
5264 c = getchar ();
5265 }
5266
d00edca5 5267 if (dyn_string_length (mangled) > 0)
03d5f569 5268 {
74aee4eb
DD
5269#ifdef IN_GLIBCPP_V3
5270 s = __cxa_demangle (dyn_string_buf (mangled), NULL, NULL, NULL);
5271#else
d00edca5 5272 s = cplus_demangle_v3 (dyn_string_buf (mangled), options);
74aee4eb 5273#endif
d00edca5
DD
5274
5275 if (s != NULL)
5276 {
5277 fputs (s, stdout);
5278 free (s);
5279 }
5280 else
5281 {
5282 /* It might not have been a mangled name. Print the
5283 original text. */
5284 fputs (dyn_string_buf (mangled), stdout);
5285 }
5286
5287 dyn_string_clear (mangled);
03d5f569 5288 }
eb383413
L
5289
5290 /* If we haven't hit EOF yet, we've read one character that
5291 can't occur in a mangled name, so print it out. */
5292 if (!feof (stdin))
5293 putchar (c);
eb383413
L
5294 }
5295
5296 dyn_string_delete (mangled);
eb383413
L
5297 }
5298 else
5299 /* Demangle command line arguments. */
5300 {
eb383413
L
5301 /* Loop over command line arguments. */
5302 for (i = optind; i < argc; ++i)
5303 {
d00edca5 5304 char *s;
74aee4eb
DD
5305#ifdef IN_GLIBCPP_V3
5306 int status;
5307#endif
d00edca5 5308
eb383413 5309 /* Attempt to demangle. */
74aee4eb
DD
5310#ifdef IN_GLIBCPP_V3
5311 s = __cxa_demangle (argv[i], NULL, NULL, &status);
5312#else
d00edca5 5313 s = cplus_demangle_v3 (argv[i], options);
74aee4eb 5314#endif
eb383413
L
5315
5316 /* If it worked, print the demangled name. */
d00edca5 5317 if (s != NULL)
03d5f569 5318 {
d00edca5
DD
5319 printf ("%s\n", s);
5320 free (s);
03d5f569 5321 }
d00edca5 5322 else
74aee4eb
DD
5323 {
5324#ifdef IN_GLIBCPP_V3
5325 fprintf (stderr, "Failed: %s (status %d)\n", argv[i], status);
5326#else
5327 fprintf (stderr, "Failed: %s\n", argv[i]);
5328#endif
5329 }
eb383413 5330 }
eb383413
L
5331 }
5332
5333 return 0;
5334}
5335
5336#endif /* STANDALONE_DEMANGLER */
This page took 0.978044 seconds and 4 git commands to generate.