]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/cp/mangle.c
Wrap option names in gcc internal messages with %< and %>.
[thirdparty/gcc.git] / gcc / cp / mangle.c
CommitLineData
a5b4465c 1/* Name mangling for the 3.0 -*- C++ -*- ABI.
fbd26352 2 Copyright (C) 2000-2019 Free Software Foundation, Inc.
de5ccbfb 3 Written by Alex Samuel <samuel@codesourcery.com>
98eaf693 4
6f0d25a6 5 This file is part of GCC.
98eaf693 6
6f0d25a6 7 GCC is free software; you can redistribute it and/or modify it
98eaf693 8 under the terms of the GNU General Public License as published by
aa139c3f 9 the Free Software Foundation; either version 3, or (at your option)
98eaf693 10 any later version.
11
6f0d25a6 12 GCC is distributed in the hope that it will be useful, but
98eaf693 13 WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 General Public License for more details.
16
aa139c3f 17You should have received a copy of the GNU General Public License
18along with GCC; see the file COPYING3. If not see
19<http://www.gnu.org/licenses/>. */
98eaf693 20
21/* This file implements mangling of C++ names according to the IA64
22 C++ ABI specification. A mangled name encodes a function or
23 variable's name, scope, type, and/or template arguments into a text
24 identifier. This identifier is used as the function's or
25 variable's linkage name, to preserve compatibility between C++'s
26 language features (templates, scoping, and overloading) and C
27 linkers.
28
29 Additionally, g++ uses mangled names internally. To support this,
30 mangling of types is allowed, even though the mangled name of a
31 type should not appear by itself as an exported name. Ditto for
32 uninstantiated templates.
33
34 The primary entry point for this module is mangle_decl, which
35 returns an identifier containing the mangled name for a decl.
36 Additional entry points are provided to build mangled names of
37 particular constructs when the appropriate decl for that construct
38 is not available. These are:
39
653e5405 40 mangle_typeinfo_for_type: typeinfo data
41 mangle_typeinfo_string_for_type: typeinfo type name
42 mangle_vtbl_for_type: virtual table data
43 mangle_vtt_for_type: VTT data
44 mangle_ctor_vtbl_for_type: `C-in-B' constructor virtual table data
074ab442 45 mangle_thunk: thunk function or entry */
98eaf693 46
47#include "config.h"
48#include "system.h"
805e22b2 49#include "coretypes.h"
4cba6f60 50#include "target.h"
51#include "vtable-verify.h"
4cba6f60 52#include "cp-tree.h"
4cba6f60 53#include "stringpool.h"
54#include "cgraph.h"
9ed99284 55#include "stor-layout.h"
e100aadc 56#include "flags.h"
399fbdbd 57#include "attribs.h"
98eaf693 58
59/* Debugging support. */
60
61/* Define DEBUG_MANGLE to enable very verbose trace messages. */
62#ifndef DEBUG_MANGLE
63#define DEBUG_MANGLE 0
64#endif
65
66/* Macros for tracing the write_* functions. */
67#if DEBUG_MANGLE
68# define MANGLE_TRACE(FN, INPUT) \
0a8caa99 69 fprintf (stderr, " %-24s: %-24s\n", (FN), (INPUT))
98eaf693 70# define MANGLE_TRACE_TREE(FN, NODE) \
71 fprintf (stderr, " %-24s: %-24s (%p)\n", \
f3d35d4d 72 (FN), get_tree_code_name (TREE_CODE (NODE)), (void *) (NODE))
98eaf693 73#else
74# define MANGLE_TRACE(FN, INPUT)
75# define MANGLE_TRACE_TREE(FN, NODE)
76#endif
77
3160db1d 78/* Nonzero if NODE is a class template-id. We can't rely on
8762fbe2 79 CLASSTYPE_USE_TEMPLATE here because of tricky bugs in the parser
80 that hard to distinguish A<T> from A, where A<T> is the type as
81 instantiated outside of the template, and A is the type used
bbb9efab 82 without parameters inside the template. */
18f2b9d5 83#define CLASSTYPE_TEMPLATE_ID_P(NODE) \
49a669e2 84 (TREE_CODE (NODE) == BOUND_TEMPLATE_TEMPLATE_PARM \
85 || (CLASS_TYPE_P (NODE) \
86 && CLASSTYPE_TEMPLATE_INFO (NODE) != NULL \
87 && PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (NODE))))
98eaf693 88
229a58b1 89/* For deciding whether to set G.need_abi_warning, we need to consider both
90 warn_abi_version and flag_abi_compat_version. */
91#define abi_warn_or_compat_version_crosses(N) \
92 (abi_version_crosses (N) || abi_compat_version_crosses (N))
93
2b463b9a 94/* And sometimes we can simplify the code path if we don't need to worry about
95 previous ABIs. */
96#define abi_flag_at_least(flag,N) (flag == 0 || flag >= N)
97#define any_abi_below(N) \
98 (!abi_version_at_least (N) \
99 || !abi_flag_at_least (warn_abi_version, (N)) \
100 || !abi_flag_at_least (flag_abi_compat_version, (N)))
101
98eaf693 102/* Things we only need one of. This module is not reentrant. */
6dc50383 103struct GTY(()) globals {
98eaf693 104 /* An array of the current substitution candidates, in the order
105 we've seen them. */
f1f41a6c 106 vec<tree, va_gc> *substitutions;
16497dfb 107
18f2b9d5 108 /* The entity that is being mangled. */
f13b585c 109 tree GTY ((skip)) entity;
18f2b9d5 110
4d7aaf8e 111 /* How many parameter scopes we are inside. */
112 int parm_depth;
113
18f2b9d5 114 /* True if the mangling will be different in a future version of the
115 ABI. */
116 bool need_abi_warning;
2e9e9363 117
118 /* True if the mangling will be different in C++17 mode. */
40e2decb 119 bool need_cxx17_warning;
6dc50383 120};
f13b585c 121
122static GTY (()) globals G;
123
124/* The obstack on which we build mangled names. */
125static struct obstack *mangle_obstack;
126
127/* The obstack on which we build mangled names that are not going to
128 be IDENTIFIER_NODEs. */
129static struct obstack name_obstack;
130
1eff44ec 131/* The first object on the name_obstack; we use this to free memory
132 allocated on the name_obstack. */
f13b585c 133static void *name_base;
98eaf693 134
135/* Indices into subst_identifiers. These are identifiers used in
136 special substitution rules. */
137typedef enum
138{
139 SUBID_ALLOCATOR,
140 SUBID_BASIC_STRING,
141 SUBID_CHAR_TRAITS,
142 SUBID_BASIC_ISTREAM,
143 SUBID_BASIC_OSTREAM,
144 SUBID_BASIC_IOSTREAM,
145 SUBID_MAX
146}
147substitution_identifier_index_t;
148
149/* For quick substitution checks, look up these common identifiers
150 once only. */
652c3635 151static GTY(()) tree subst_identifiers[SUBID_MAX];
98eaf693 152
153/* Single-letter codes for builtin integer types, defined in
154 <builtin-type>. These are indexed by integer_type_kind values. */
b14b6cce 155static const char
98eaf693 156integer_type_codes[itk_none] =
157{
158 'c', /* itk_char */
159 'a', /* itk_signed_char */
160 'h', /* itk_unsigned_char */
161 's', /* itk_short */
162 't', /* itk_unsigned_short */
163 'i', /* itk_int */
164 'j', /* itk_unsigned_int */
165 'l', /* itk_long */
166 'm', /* itk_unsigned_long */
167 'x', /* itk_long_long */
6388cfe2 168 'y', /* itk_unsigned_long_long */
9f75f026 169 /* __intN types are handled separately */
170 '\0', '\0', '\0', '\0', '\0', '\0', '\0', '\0'
98eaf693 171};
172
61e3d157 173static int decl_is_template_id (const tree, tree* const);
8762fbe2 174
98eaf693 175/* Functions for handling substitutions. */
176
61e3d157 177static inline tree canonicalize_for_substitution (tree);
178static void add_substitution (tree);
179static inline int is_std_substitution (const tree,
180 const substitution_identifier_index_t);
181static inline int is_std_substitution_char (const tree,
182 const substitution_identifier_index_t);
183static int find_substitution (tree);
184static void mangle_call_offset (const tree, const tree);
98eaf693 185
186/* Functions for emitting mangled representations of things. */
187
1da3f78a 188static void write_mangled_name (const tree, bool);
61e3d157 189static void write_encoding (const tree);
190static void write_name (tree, const int);
d4701f6c 191static void write_abi_tags (tree);
61e3d157 192static void write_unscoped_name (const tree);
193static void write_unscoped_template_name (const tree);
194static void write_nested_name (const tree);
195static void write_prefix (const tree);
196static void write_template_prefix (const tree);
42a2bdf5 197static void write_unqualified_name (tree);
61e3d157 198static void write_conversion_operator_name (const tree);
199static void write_source_name (tree);
244db24d 200static void write_literal_operator_name (tree);
a8b75081 201static void write_unnamed_type_name (const tree);
202static void write_closure_type_name (const tree);
61e3d157 203static int hwint_to_ascii (unsigned HOST_WIDE_INT, const unsigned int, char *,
204 const unsigned int);
205static void write_number (unsigned HOST_WIDE_INT, const int,
206 const unsigned int);
a8b75081 207static void write_compact_number (int num);
61e3d157 208static void write_integer_cst (const tree);
209static void write_real_cst (const tree);
210static void write_identifier (const char *);
211static void write_special_name_constructor (const tree);
212static void write_special_name_destructor (const tree);
213static void write_type (tree);
214static int write_CV_qualifiers_for_type (const tree);
215static void write_builtin_type (tree);
216static void write_function_type (const tree);
217static void write_bare_function_type (const tree, const int, const tree);
218static void write_method_parms (tree, const int, const tree);
219static void write_class_enum_type (const tree);
220static void write_template_args (tree);
221static void write_expression (tree);
222static void write_template_arg_literal (const tree);
223static void write_template_arg (tree);
224static void write_template_template_arg (const tree);
225static void write_array_type (const tree);
226static void write_pointer_to_member_type (const tree);
227static void write_template_param (const tree);
228static void write_template_template_param (const tree);
229static void write_substitution (const int);
230static int discriminator_for_local_entity (tree);
231static int discriminator_for_string_literal (tree, tree);
232static void write_discriminator (const int);
a8b75081 233static void write_local_name (tree, const tree, const tree);
61e3d157 234static void dump_substitution_candidates (void);
dfecde36 235static tree mangle_decl_string (const tree);
a4a311c3 236static void maybe_check_abi_tags (tree, tree = NULL_TREE, int = 10);
2b463b9a 237static bool equal_abi_tags (tree, tree);
98eaf693 238
239/* Control functions. */
240
dfecde36 241static inline void start_mangling (const tree);
61e3d157 242static tree mangle_special_for_type (const tree, const char *);
98eaf693 243
244/* Append a single character to the end of the mangled
245 representation. */
653e5405 246#define write_char(CHAR) \
f13b585c 247 obstack_1grow (mangle_obstack, (CHAR))
98eaf693 248
47cd6605 249/* Append a sized buffer to the end of the mangled representation. */
653e5405 250#define write_chars(CHAR, LEN) \
f13b585c 251 obstack_grow (mangle_obstack, (CHAR), (LEN))
2ec35239 252
98eaf693 253/* Append a NUL-terminated string to the end of the mangled
254 representation. */
653e5405 255#define write_string(STRING) \
f13b585c 256 obstack_grow (mangle_obstack, (STRING), strlen (STRING))
98eaf693 257
3160db1d 258/* Nonzero if NODE1 and NODE2 are both TREE_LIST nodes and have the
f753592a 259 same purpose (context, which may be a type) and value (template
98eaf693 260 decl). See write_template_prefix for more information on what this
261 is used for. */
653e5405 262#define NESTED_TEMPLATE_MATCH(NODE1, NODE2) \
263 (TREE_CODE (NODE1) == TREE_LIST \
264 && TREE_CODE (NODE2) == TREE_LIST \
265 && ((TYPE_P (TREE_PURPOSE (NODE1)) \
266 && same_type_p (TREE_PURPOSE (NODE1), TREE_PURPOSE (NODE2))) \
267 || TREE_PURPOSE (NODE1) == TREE_PURPOSE (NODE2)) \
98eaf693 268 && TREE_VALUE (NODE1) == TREE_VALUE (NODE2))
269
e75e76ea 270/* Write out an unsigned quantity in base 10. */
653e5405 271#define write_unsigned_number(NUMBER) \
0a8caa99 272 write_number ((NUMBER), /*unsigned_p=*/1, 10)
e75e76ea 273
22b930cb 274/* If DECL is a template instance (including the uninstantiated template
275 itself), return nonzero and, if TEMPLATE_INFO is non-NULL, set
276 *TEMPLATE_INFO to its template info. Otherwise return zero. */
8762fbe2 277
278static int
61e3d157 279decl_is_template_id (const tree decl, tree* const template_info)
8762fbe2 280{
281 if (TREE_CODE (decl) == TYPE_DECL)
282 {
283 /* TYPE_DECLs are handled specially. Look at its type to decide
284 if this is a template instantiation. */
61e3d157 285 const tree type = TREE_TYPE (decl);
8762fbe2 286
287 if (CLASS_TYPE_P (type) && CLASSTYPE_TEMPLATE_ID_P (type))
288 {
289 if (template_info != NULL)
290 /* For a templated TYPE_DECL, the template info is hanging
291 off the type. */
18f2b9d5 292 *template_info = TYPE_TEMPLATE_INFO (type);
8762fbe2 293 return 1;
294 }
9031d10b 295 }
8762fbe2 296 else
297 {
298 /* Check if this is a primary template. */
299 if (DECL_LANG_SPECIFIC (decl) != NULL
22b930cb 300 && VAR_OR_FUNCTION_DECL_P (decl)
301 && DECL_TEMPLATE_INFO (decl)
8762fbe2 302 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl))
303 && TREE_CODE (decl) != TEMPLATE_DECL)
304 {
305 if (template_info != NULL)
306 /* For most templated decls, the template info is hanging
307 off the decl. */
308 *template_info = DECL_TEMPLATE_INFO (decl);
309 return 1;
310 }
311 }
312
313 /* It's not a template id. */
314 return 0;
315}
316
98eaf693 317/* Produce debugging output of current substitution candidates. */
318
319static void
eb32e911 320dump_substitution_candidates (void)
98eaf693 321{
322 unsigned i;
db5d9b05 323 tree el;
98eaf693 324
325 fprintf (stderr, " ++ substitutions ");
f1f41a6c 326 FOR_EACH_VEC_ELT (*G.substitutions, i, el)
98eaf693 327 {
98eaf693 328 const char *name = "???";
329
330 if (i > 0)
331 fprintf (stderr, " ");
332 if (DECL_P (el))
333 name = IDENTIFIER_POINTER (DECL_NAME (el));
334 else if (TREE_CODE (el) == TREE_LIST)
335 name = IDENTIFIER_POINTER (DECL_NAME (TREE_VALUE (el)));
336 else if (TYPE_NAME (el))
eb192f47 337 name = TYPE_NAME_STRING (el);
98eaf693 338 fprintf (stderr, " S%d_ = ", i - 1);
9031d10b 339 if (TYPE_P (el) &&
340 (CP_TYPE_RESTRICT_P (el)
341 || CP_TYPE_VOLATILE_P (el)
98eaf693 342 || CP_TYPE_CONST_P (el)))
343 fprintf (stderr, "CV-");
9031d10b 344 fprintf (stderr, "%s (%s at %p)\n",
f3d35d4d 345 name, get_tree_code_name (TREE_CODE (el)), (void *) el);
98eaf693 346 }
347}
348
2e9e9363 349/* <exception-spec> ::=
350 Do -- non-throwing exception specification
351 DO <expression> E -- computed (instantiation-dependent) noexcept
352 Dw <type>* E -- throw (types) */
353
354static void
355write_exception_spec (tree spec)
356{
357
358 if (!spec || spec == noexcept_false_spec)
359 /* Nothing. */
360 return;
361
362 if (!flag_noexcept_type)
363 {
40e2decb 364 G.need_cxx17_warning = true;
2e9e9363 365 return;
366 }
367
4afe894b 368 if (spec == noexcept_true_spec || spec == empty_except_spec)
2e9e9363 369 write_string ("Do");
4afe894b 370 else if (tree expr = TREE_PURPOSE (spec))
2e9e9363 371 {
4afe894b 372 /* noexcept (expr) */
373 gcc_assert (uses_template_parms (expr));
2e9e9363 374 write_string ("DO");
4afe894b 375 write_expression (expr);
2e9e9363 376 write_char ('E');
377 }
378 else
379 {
4afe894b 380 /* throw (type-list) */
2e9e9363 381 write_string ("Dw");
382 for (tree t = spec; t; t = TREE_CHAIN (t))
383 write_type (TREE_VALUE (t));
384 write_char ('E');
385 }
386}
387
98eaf693 388/* Both decls and types can be substitution candidates, but sometimes
389 they refer to the same thing. For instance, a TYPE_DECL and
390 RECORD_TYPE for the same class refer to the same thing, and should
755edffd 391 be treated accordingly in substitutions. This function returns a
98eaf693 392 canonicalized tree node representing NODE that is used when adding
393 and substitution candidates and finding matches. */
394
395static inline tree
61e3d157 396canonicalize_for_substitution (tree node)
98eaf693 397{
398 /* For a TYPE_DECL, use the type instead. */
399 if (TREE_CODE (node) == TYPE_DECL)
400 node = TREE_TYPE (node);
2fb61329 401 if (TYPE_P (node)
402 && TYPE_CANONICAL (node) != node
403 && TYPE_MAIN_VARIANT (node) != node)
f962c310 404 {
2ba14c1f 405 tree orig = node;
2fb61329 406 /* Here we want to strip the topmost typedef only.
407 We need to do that so is_std_substitution can do proper
408 name matching. */
f962c310 409 if (TREE_CODE (node) == FUNCTION_TYPE)
410 /* Use build_qualified_type and TYPE_QUALS here to preserve
411 the old buggy mangling of attribute noreturn with abi<5. */
412 node = build_qualified_type (TYPE_MAIN_VARIANT (node),
413 TYPE_QUALS (node));
414 else
415 node = cp_build_qualified_type (TYPE_MAIN_VARIANT (node),
416 cp_type_quals (node));
2ba14c1f 417 if (TREE_CODE (node) == FUNCTION_TYPE
418 || TREE_CODE (node) == METHOD_TYPE)
2e9e9363 419 {
420 node = build_ref_qualified_type (node, type_memfn_rqual (orig));
421 tree r = canonical_eh_spec (TYPE_RAISES_EXCEPTIONS (orig));
422 if (flag_noexcept_type)
423 node = build_exception_variant (node, r);
424 else
425 /* Set the warning flag if appropriate. */
426 write_exception_spec (r);
427 }
f962c310 428 }
98eaf693 429 return node;
430}
431
432/* Add NODE as a substitution candidate. NODE must not already be on
433 the list of candidates. */
434
435static void
61e3d157 436add_substitution (tree node)
98eaf693 437{
438 tree c;
439
440 if (DEBUG_MANGLE)
9031d10b 441 fprintf (stderr, " ++ add_substitution (%s at %10p)\n",
f3d35d4d 442 get_tree_code_name (TREE_CODE (node)), (void *) node);
98eaf693 443
444 /* Get the canonicalized substitution candidate for NODE. */
445 c = canonicalize_for_substitution (node);
446 if (DEBUG_MANGLE && c != node)
447 fprintf (stderr, " ++ using candidate (%s at %10p)\n",
f3d35d4d 448 get_tree_code_name (TREE_CODE (node)), (void *) node);
98eaf693 449 node = c;
450
98eaf693 451 /* Make sure NODE isn't already a candidate. */
5e8689fb 452 if (flag_checking)
453 {
454 int i;
455 tree candidate;
456
457 FOR_EACH_VEC_SAFE_ELT (G.substitutions, i, candidate)
458 {
459 gcc_assert (!(DECL_P (node) && node == candidate));
460 gcc_assert (!(TYPE_P (node) && TYPE_P (candidate)
092b1d6f 461 && same_type_p (node, candidate)));
5e8689fb 462 }
463 }
98eaf693 464
465 /* Put the decl onto the varray of substitution candidates. */
f1f41a6c 466 vec_safe_push (G.substitutions, node);
98eaf693 467
468 if (DEBUG_MANGLE)
469 dump_substitution_candidates ();
470}
471
3160db1d 472/* Helper function for find_substitution. Returns nonzero if NODE,
98eaf693 473 which may be a decl or a CLASS_TYPE, is a template-id with template
474 name of substitution_index[INDEX] in the ::std namespace. */
475
9031d10b 476static inline int
61e3d157 477is_std_substitution (const tree node,
478 const substitution_identifier_index_t index)
98eaf693 479{
480 tree type = NULL;
481 tree decl = NULL;
482
483 if (DECL_P (node))
484 {
485 type = TREE_TYPE (node);
486 decl = node;
487 }
488 else if (CLASS_TYPE_P (node))
489 {
490 type = node;
491 decl = TYPE_NAME (node);
492 }
9031d10b 493 else
98eaf693 494 /* These are not the droids you're looking for. */
495 return 0;
496
f753592a 497 return (DECL_NAMESPACE_STD_P (CP_DECL_CONTEXT (decl))
9031d10b 498 && TYPE_LANG_SPECIFIC (type)
18f2b9d5 499 && TYPE_TEMPLATE_INFO (type)
9031d10b 500 && (DECL_NAME (TYPE_TI_TEMPLATE (type))
f753592a 501 == subst_identifiers[index]));
98eaf693 502}
503
b795d0cb 504/* Return the ABI tags (the TREE_VALUE of the "abi_tag" attribute entry) for T,
505 which can be a decl or type. */
506
507static tree
508get_abi_tags (tree t)
509{
510 if (!t || TREE_CODE (t) == NAMESPACE_DECL)
511 return NULL_TREE;
512
513 if (DECL_P (t) && DECL_DECLARES_TYPE_P (t))
514 t = TREE_TYPE (t);
515
516 tree attrs;
517 if (TYPE_P (t))
518 attrs = TYPE_ATTRIBUTES (t);
519 else
520 attrs = DECL_ATTRIBUTES (t);
521
522 tree tags = lookup_attribute ("abi_tag", attrs);
523 if (tags)
524 tags = TREE_VALUE (tags);
525 return tags;
526}
527
3160db1d 528/* Helper function for find_substitution. Returns nonzero if NODE,
98eaf693 529 which may be a decl or a CLASS_TYPE, is the template-id
530 ::std::identifier<char>, where identifier is
531 substitution_index[INDEX]. */
532
533static inline int
61e3d157 534is_std_substitution_char (const tree node,
535 const substitution_identifier_index_t index)
98eaf693 536{
537 tree args;
538 /* Check NODE's name is ::std::identifier. */
539 if (!is_std_substitution (node, index))
540 return 0;
541 /* Figure out its template args. */
542 if (DECL_P (node))
9031d10b 543 args = DECL_TI_ARGS (node);
98eaf693 544 else if (CLASS_TYPE_P (node))
545 args = CLASSTYPE_TI_ARGS (node);
546 else
547 /* Oops, not a template. */
548 return 0;
549 /* NODE's template arg list should be <char>. */
9031d10b 550 return
98eaf693 551 TREE_VEC_LENGTH (args) == 1
552 && TREE_VEC_ELT (args, 0) == char_type_node;
553}
554
555/* Check whether a substitution should be used to represent NODE in
556 the mangling.
557
558 First, check standard special-case substitutions.
559
9031d10b 560 <substitution> ::= St
653e5405 561 # ::std
98eaf693 562
653e5405 563 ::= Sa
98eaf693 564 # ::std::allocator
565
653e5405 566 ::= Sb
567 # ::std::basic_string
98eaf693 568
653e5405 569 ::= Ss
570 # ::std::basic_string<char,
98eaf693 571 ::std::char_traits<char>,
572 ::std::allocator<char> >
573
653e5405 574 ::= Si
575 # ::std::basic_istream<char, ::std::char_traits<char> >
98eaf693 576
653e5405 577 ::= So
578 # ::std::basic_ostream<char, ::std::char_traits<char> >
98eaf693 579
653e5405 580 ::= Sd
581 # ::std::basic_iostream<char, ::std::char_traits<char> >
98eaf693 582
583 Then examine the stack of currently available substitution
584 candidates for entities appearing earlier in the same mangling
585
586 If a substitution is found, write its mangled representation and
3160db1d 587 return nonzero. If none is found, just return zero. */
98eaf693 588
589static int
61e3d157 590find_substitution (tree node)
98eaf693 591{
592 int i;
f1f41a6c 593 const int size = vec_safe_length (G.substitutions);
98eaf693 594 tree decl;
595 tree type;
7cd4e87d 596 const char *abbr = NULL;
98eaf693 597
598 if (DEBUG_MANGLE)
599 fprintf (stderr, " ++ find_substitution (%s at %p)\n",
f3d35d4d 600 get_tree_code_name (TREE_CODE (node)), (void *) node);
98eaf693 601
602 /* Obtain the canonicalized substitution representation for NODE.
603 This is what we'll compare against. */
604 node = canonicalize_for_substitution (node);
605
606 /* Check for builtin substitutions. */
607
608 decl = TYPE_P (node) ? TYPE_NAME (node) : node;
609 type = TYPE_P (node) ? node : TREE_TYPE (node);
610
611 /* Check for std::allocator. */
9031d10b 612 if (decl
f753592a 613 && is_std_substitution (decl, SUBID_ALLOCATOR)
614 && !CLASSTYPE_USE_TEMPLATE (TREE_TYPE (decl)))
7cd4e87d 615 abbr = "Sa";
98eaf693 616
617 /* Check for std::basic_string. */
7cd4e87d 618 else if (decl && is_std_substitution (decl, SUBID_BASIC_STRING))
98eaf693 619 {
e75e76ea 620 if (TYPE_P (node))
98eaf693 621 {
9031d10b 622 /* If this is a type (i.e. a fully-qualified template-id),
623 check for
653e5405 624 std::basic_string <char,
625 std::char_traits<char>,
98eaf693 626 std::allocator<char> > . */
3119c950 627 if (cp_type_quals (type) == TYPE_UNQUALIFIED
98eaf693 628 && CLASSTYPE_USE_TEMPLATE (type))
629 {
630 tree args = CLASSTYPE_TI_ARGS (type);
631 if (TREE_VEC_LENGTH (args) == 3
b7f68aff 632 && same_type_p (TREE_VEC_ELT (args, 0), char_type_node)
98eaf693 633 && is_std_substitution_char (TREE_VEC_ELT (args, 1),
634 SUBID_CHAR_TRAITS)
635 && is_std_substitution_char (TREE_VEC_ELT (args, 2),
636 SUBID_ALLOCATOR))
7cd4e87d 637 abbr = "Ss";
98eaf693 638 }
639 }
640 else
641 /* Substitute for the template name only if this isn't a type. */
7cd4e87d 642 abbr = "Sb";
98eaf693 643 }
644
645 /* Check for basic_{i,o,io}stream. */
7cd4e87d 646 else if (TYPE_P (node)
647 && cp_type_quals (type) == TYPE_UNQUALIFIED
648 && CLASS_TYPE_P (type)
649 && CLASSTYPE_USE_TEMPLATE (type)
650 && CLASSTYPE_TEMPLATE_INFO (type) != NULL)
98eaf693 651 {
9031d10b 652 /* First, check for the template
98eaf693 653 args <char, std::char_traits<char> > . */
654 tree args = CLASSTYPE_TI_ARGS (type);
655 if (TREE_VEC_LENGTH (args) == 2
e4f430b5 656 && TYPE_P (TREE_VEC_ELT (args, 0))
b7f68aff 657 && same_type_p (TREE_VEC_ELT (args, 0), char_type_node)
98eaf693 658 && is_std_substitution_char (TREE_VEC_ELT (args, 1),
659 SUBID_CHAR_TRAITS))
660 {
661 /* Got them. Is this basic_istream? */
290031a3 662 if (is_std_substitution (decl, SUBID_BASIC_ISTREAM))
7cd4e87d 663 abbr = "Si";
98eaf693 664 /* Or basic_ostream? */
290031a3 665 else if (is_std_substitution (decl, SUBID_BASIC_OSTREAM))
7cd4e87d 666 abbr = "So";
98eaf693 667 /* Or basic_iostream? */
290031a3 668 else if (is_std_substitution (decl, SUBID_BASIC_IOSTREAM))
7cd4e87d 669 abbr = "Sd";
98eaf693 670 }
671 }
672
673 /* Check for namespace std. */
7cd4e87d 674 else if (decl && DECL_NAMESPACE_STD_P (decl))
98eaf693 675 {
676 write_string ("St");
677 return 1;
678 }
679
7cd4e87d 680 tree tags = NULL_TREE;
776bb221 681 if (OVERLOAD_TYPE_P (node) || DECL_CLASS_TEMPLATE_P (node))
b795d0cb 682 tags = get_abi_tags (type);
98eaf693 683 /* Now check the list of available substitutions for this mangling
47cd6605 684 operation. */
7cd4e87d 685 if (!abbr || tags) for (i = 0; i < size; ++i)
98eaf693 686 {
f1f41a6c 687 tree candidate = (*G.substitutions)[i];
98eaf693 688 /* NODE is a matched to a candidate if it's the same decl node or
689 if it's the same type. */
690 if (decl == candidate
272bba4d 691 || (TYPE_P (candidate) && type && TYPE_P (node)
98eaf693 692 && same_type_p (type, candidate))
693 || NESTED_TEMPLATE_MATCH (node, candidate))
694 {
695 write_substitution (i);
696 return 1;
697 }
698 }
699
7cd4e87d 700 if (!abbr)
701 /* No substitution found. */
702 return 0;
703
704 write_string (abbr);
705 if (tags)
706 {
707 /* If there are ABI tags on the abbreviation, it becomes
708 a substitution candidate. */
709 write_abi_tags (tags);
710 add_substitution (node);
711 }
712 return 1;
98eaf693 713}
714
527cb890 715/* Returns whether DECL's symbol name should be the plain unqualified-id
716 rather than a more complicated mangled name. */
717
718static bool
719unmangled_name_p (const tree decl)
720{
721 if (TREE_CODE (decl) == FUNCTION_DECL)
722 {
723 /* The names of `extern "C"' functions are not mangled. */
724 return (DECL_EXTERN_C_FUNCTION_P (decl)
725 /* But overloaded operator names *are* mangled. */
726 && !DECL_OVERLOADED_OPERATOR_P (decl));
727 }
728 else if (VAR_P (decl))
729 {
730 /* static variables are mangled. */
731 if (!DECL_EXTERNAL_LINKAGE_P (decl))
732 return false;
733
734 /* extern "C" declarations aren't mangled. */
735 if (DECL_EXTERN_C_P (decl))
736 return true;
737
738 /* Other variables at non-global scope are mangled. */
739 if (CP_DECL_CONTEXT (decl) != global_namespace)
740 return false;
741
742 /* Variable template instantiations are mangled. */
743 if (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl)
744 && variable_template_p (DECL_TI_TEMPLATE (decl)))
745 return false;
746
747 /* Declarations with ABI tags are mangled. */
b795d0cb 748 if (get_abi_tags (decl))
527cb890 749 return false;
750
751 /* The names of non-static global variables aren't mangled. */
752 return true;
753 }
754
755 return false;
756}
98eaf693 757
1da3f78a 758/* TOP_LEVEL is true, if this is being called at outermost level of
759 mangling. It should be false when mangling a decl appearing in an
760 expression within some other mangling.
9031d10b 761
1da3f78a 762 <mangled-name> ::= _Z <encoding> */
98eaf693 763
89df180d 764static void
1da3f78a 765write_mangled_name (const tree decl, bool top_level)
98eaf693 766{
767 MANGLE_TRACE_TREE ("mangled-name", decl);
768
527cb890 769 check_abi_tags (decl);
9031d10b 770
527cb890 771 if (unmangled_name_p (decl))
772 {
1da3f78a 773 if (top_level)
774 write_string (IDENTIFIER_POINTER (DECL_NAME (decl)));
775 else
776 {
777 /* The standard notes: "The <encoding> of an extern "C"
653e5405 778 function is treated like global-scope data, i.e. as its
779 <source-name> without a type." We cannot write
780 overloaded operators that way though, because it contains
781 characters invalid in assembler. */
f591db9a 782 write_string ("_Z");
1da3f78a 783 write_source_name (DECL_NAME (decl));
784 }
785 }
98eaf693 786 else
98eaf693 787 {
788 write_string ("_Z");
789 write_encoding (decl);
790 }
791}
792
527cb890 793/* Returns true if the return type of DECL is part of its signature, and
794 therefore its mangling. */
795
796bool
797mangle_return_type_p (tree decl)
798{
799 return (!DECL_CONSTRUCTOR_P (decl)
800 && !DECL_DESTRUCTOR_P (decl)
801 && !DECL_CONV_FN_P (decl)
802 && decl_is_template_id (decl, NULL));
803}
804
98eaf693 805/* <encoding> ::= <function name> <bare-function-type>
b7f68aff 806 ::= <data name> */
98eaf693 807
808static void
61e3d157 809write_encoding (const tree decl)
98eaf693 810{
811 MANGLE_TRACE_TREE ("encoding", decl);
812
98eaf693 813 if (DECL_LANG_SPECIFIC (decl) && DECL_EXTERN_C_FUNCTION_P (decl))
814 {
9d8c6ec8 815 /* For overloaded operators write just the mangled name
816 without arguments. */
817 if (DECL_OVERLOADED_OPERATOR_P (decl))
818 write_name (decl, /*ignore_local_scope=*/0);
819 else
820 write_source_name (DECL_NAME (decl));
98eaf693 821 return;
822 }
823
bbb9efab 824 write_name (decl, /*ignore_local_scope=*/0);
98eaf693 825 if (TREE_CODE (decl) == FUNCTION_DECL)
826 {
827 tree fn_type;
d5460724 828 tree d;
2e9e9363 829 bool tmpl = decl_is_template_id (decl, NULL);
98eaf693 830
2e9e9363 831 if (tmpl)
d5460724 832 {
833 fn_type = get_mostly_instantiated_function_type (decl);
834 /* FN_TYPE will not have parameter types for in-charge or
835 VTT parameters. Therefore, we pass NULL_TREE to
836 write_bare_function_type -- otherwise, it will get
837 confused about which artificial parameters to skip. */
838 d = NULL_TREE;
839 }
98eaf693 840 else
d5460724 841 {
842 fn_type = TREE_TYPE (decl);
843 d = decl;
844 }
98eaf693 845
9031d10b 846 write_bare_function_type (fn_type,
527cb890 847 mangle_return_type_p (decl),
d5460724 848 d);
98eaf693 849 }
98eaf693 850}
851
a8b75081 852/* Lambdas can have a bit more context for mangling, specifically VAR_DECL
853 or PARM_DECL context, which doesn't belong in DECL_CONTEXT. */
854
855static tree
856decl_mangling_context (tree decl)
857{
16a1895e 858 tree tcontext = targetm.cxx.decl_mangling_context (decl);
859
860 if (tcontext != NULL_TREE)
861 return tcontext;
862
5e410273 863 if (TREE_CODE (decl) == TEMPLATE_DECL
864 && DECL_TEMPLATE_RESULT (decl))
865 decl = DECL_TEMPLATE_RESULT (decl);
866
a8b75081 867 if (TREE_CODE (decl) == TYPE_DECL
868 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
869 {
870 tree extra = LAMBDA_TYPE_EXTRA_SCOPE (TREE_TYPE (decl));
871 if (extra)
872 return extra;
873 }
e422db1c 874 else if (template_type_parameter_p (decl))
8a03d6ff 875 /* template type parms have no mangling context. */
876 return NULL_TREE;
a8b75081 877 return CP_DECL_CONTEXT (decl);
878}
879
98eaf693 880/* <name> ::= <unscoped-name>
653e5405 881 ::= <unscoped-template-name> <template-args>
98eaf693 882 ::= <nested-name>
9031d10b 883 ::= <local-name>
bbb9efab 884
3160db1d 885 If IGNORE_LOCAL_SCOPE is nonzero, this production of <name> is
bbb9efab 886 called from <local-name>, which mangles the enclosing scope
887 elsewhere and then uses this function to mangle just the part
888 underneath the function scope. So don't use the <local-name>
889 production, to avoid an infinite recursion. */
98eaf693 890
891static void
61e3d157 892write_name (tree decl, const int ignore_local_scope)
98eaf693 893{
e75e76ea 894 tree context;
895
98eaf693 896 MANGLE_TRACE_TREE ("name", decl);
897
8762fbe2 898 if (TREE_CODE (decl) == TYPE_DECL)
899 {
900 /* In case this is a typedef, fish out the corresponding
901 TYPE_DECL for the main variant. */
902 decl = TYPE_NAME (TYPE_MAIN_VARIANT (TREE_TYPE (decl)));
8762fbe2 903 }
a8b75081 904
905 context = decl_mangling_context (decl);
62164d4c 906
f7b5b4ed 907 gcc_assert (context != NULL_TREE);
908
229a58b1 909 if (abi_warn_or_compat_version_crosses (7)
74b777e5 910 && ignore_local_scope
911 && TREE_CODE (context) == PARM_DECL)
912 G.need_abi_warning = 1;
913
57b47eb0 914 /* A decl in :: or ::std scope is treated specially. The former is
915 mangled using <unscoped-name> or <unscoped-template-name>, the
916 latter with a special substitution. Also, a name that is
917 directly in a local function scope is also mangled with
918 <unscoped-name> rather than a full <nested-name>. */
f7b5b4ed 919 if (context == global_namespace
57b47eb0 920 || DECL_NAMESPACE_STD_P (context)
dc78d83a 921 || (ignore_local_scope
922 && (TREE_CODE (context) == FUNCTION_DECL
923 || (abi_version_at_least (7)
924 && TREE_CODE (context) == PARM_DECL))))
98eaf693 925 {
8762fbe2 926 tree template_info;
927 /* Is this a template instance? */
928 if (decl_is_template_id (decl, &template_info))
98eaf693 929 {
8762fbe2 930 /* Yes: use <unscoped-template-name>. */
931 write_unscoped_template_name (TI_TEMPLATE (template_info));
932 write_template_args (TI_ARGS (template_info));
98eaf693 933 }
934 else
935 /* Everything else gets an <unqualified-name>. */
936 write_unscoped_name (decl);
937 }
98eaf693 938 else
bbb9efab 939 {
940 /* Handle local names, unless we asked not to (that is, invoked
653e5405 941 under <local-name>, to handle only the part of the name under
942 the local scope). */
bbb9efab 943 if (!ignore_local_scope)
653e5405 944 {
bbb9efab 945 /* Scan up the list of scope context, looking for a
946 function. If we find one, this entity is in local
947 function scope. local_entity tracks context one scope
948 level down, so it will contain the element that's
949 directly in that function's scope, either decl or one of
950 its enclosing scopes. */
951 tree local_entity = decl;
f7b5b4ed 952 while (context != global_namespace)
bbb9efab 953 {
954 /* Make sure we're always dealing with decls. */
f7b5b4ed 955 if (TYPE_P (context))
bbb9efab 956 context = TYPE_NAME (context);
957 /* Is this a function? */
a8b75081 958 if (TREE_CODE (context) == FUNCTION_DECL
959 || TREE_CODE (context) == PARM_DECL)
bbb9efab 960 {
961 /* Yes, we have local scope. Use the <local-name>
962 production for the innermost function scope. */
963 write_local_name (context, local_entity, decl);
964 return;
965 }
966 /* Up one scope level. */
967 local_entity = context;
a8b75081 968 context = decl_mangling_context (context);
bbb9efab 969 }
970
971 /* No local scope found? Fall through to <nested-name>. */
972 }
973
974 /* Other decls get a <nested-name> to encode their scope. */
975 write_nested_name (decl);
976 }
98eaf693 977}
978
979/* <unscoped-name> ::= <unqualified-name>
653e5405 980 ::= St <unqualified-name> # ::std:: */
98eaf693 981
982static void
61e3d157 983write_unscoped_name (const tree decl)
98eaf693 984{
16a1895e 985 tree context = decl_mangling_context (decl);
98eaf693 986
987 MANGLE_TRACE_TREE ("unscoped-name", decl);
988
989 /* Is DECL in ::std? */
990 if (DECL_NAMESPACE_STD_P (context))
991 {
992 write_string ("St");
993 write_unqualified_name (decl);
994 }
092b1d6f 995 else
996 {
997 /* If not, it should be either in the global namespace, or directly
f7b5b4ed 998 in a local function scope. A lambda can also be mangled in the
999 scope of a default argument. */
9031d10b 1000 gcc_assert (context == global_namespace
f7b5b4ed 1001 || TREE_CODE (context) == PARM_DECL
092b1d6f 1002 || TREE_CODE (context) == FUNCTION_DECL);
9031d10b 1003
092b1d6f 1004 write_unqualified_name (decl);
1005 }
98eaf693 1006}
1007
1008/* <unscoped-template-name> ::= <unscoped-name>
653e5405 1009 ::= <substitution> */
98eaf693 1010
1011static void
61e3d157 1012write_unscoped_template_name (const tree decl)
98eaf693 1013{
1014 MANGLE_TRACE_TREE ("unscoped-template-name", decl);
1015
1016 if (find_substitution (decl))
1017 return;
1018 write_unscoped_name (decl);
1019 add_substitution (decl);
1020}
1021
1022/* Write the nested name, including CV-qualifiers, of DECL.
1023
2ba14c1f 1024 <nested-name> ::= N [<CV-qualifiers>] [<ref-qualifier>] <prefix> <unqualified-name> E
1025 ::= N [<CV-qualifiers>] [<ref-qualifier>] <template-prefix> <template-args> E
98eaf693 1026
2ba14c1f 1027 <ref-qualifier> ::= R # & ref-qualifier
1028 ::= O # && ref-qualifier
98eaf693 1029 <CV-qualifiers> ::= [r] [V] [K] */
1030
1031static void
61e3d157 1032write_nested_name (const tree decl)
98eaf693 1033{
8762fbe2 1034 tree template_info;
1035
98eaf693 1036 MANGLE_TRACE_TREE ("nested-name", decl);
1037
1038 write_char ('N');
9031d10b 1039
98eaf693 1040 /* Write CV-qualifiers, if this is a member function. */
9031d10b 1041 if (TREE_CODE (decl) == FUNCTION_DECL
98eaf693 1042 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
1043 {
1044 if (DECL_VOLATILE_MEMFUNC_P (decl))
1045 write_char ('V');
1046 if (DECL_CONST_MEMFUNC_P (decl))
1047 write_char ('K');
2ba14c1f 1048 if (FUNCTION_REF_QUALIFIED (TREE_TYPE (decl)))
1049 {
1050 if (FUNCTION_RVALUE_QUALIFIED (TREE_TYPE (decl)))
1051 write_char ('O');
1052 else
1053 write_char ('R');
1054 }
98eaf693 1055 }
1056
8762fbe2 1057 /* Is this a template instance? */
1058 if (decl_is_template_id (decl, &template_info))
98eaf693 1059 {
8762fbe2 1060 /* Yes, use <template-prefix>. */
98eaf693 1061 write_template_prefix (decl);
8762fbe2 1062 write_template_args (TI_ARGS (template_info));
98eaf693 1063 }
42af8c2a 1064 else if ((!abi_version_at_least (10) || TREE_CODE (decl) == TYPE_DECL)
fbfe1b55 1065 && TREE_CODE (TREE_TYPE (decl)) == TYPENAME_TYPE)
4682b6fe 1066 {
1067 tree name = TYPENAME_TYPE_FULLNAME (TREE_TYPE (decl));
1068 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
1069 {
1070 write_template_prefix (decl);
1071 write_template_args (TREE_OPERAND (name, 1));
1072 }
1073 else
1074 {
7abd84e4 1075 write_prefix (decl_mangling_context (decl));
4682b6fe 1076 write_unqualified_name (decl);
1077 }
1078 }
98eaf693 1079 else
1080 {
8762fbe2 1081 /* No, just use <prefix> */
272bba4d 1082 write_prefix (decl_mangling_context (decl));
bbb9efab 1083 write_unqualified_name (decl);
98eaf693 1084 }
1085 write_char ('E');
1086}
1087
18f2b9d5 1088/* <prefix> ::= <prefix> <unqualified-name>
653e5405 1089 ::= <template-param>
1090 ::= <template-prefix> <template-args>
c5a7bf9e 1091 ::= <decltype>
98eaf693 1092 ::= # empty
1093 ::= <substitution> */
1094
1095static void
61e3d157 1096write_prefix (const tree node)
98eaf693 1097{
1098 tree decl;
8762fbe2 1099 /* Non-NULL if NODE represents a template-id. */
1100 tree template_info = NULL;
1101
98eaf693 1102 if (node == NULL
1103 || node == global_namespace)
1104 return;
1105
a8b75081 1106 MANGLE_TRACE_TREE ("prefix", node);
1107
c5a7bf9e 1108 if (TREE_CODE (node) == DECLTYPE_TYPE)
1109 {
1110 write_type (node);
1111 return;
1112 }
1113
98eaf693 1114 if (find_substitution (node))
1115 return;
1116
8762fbe2 1117 if (DECL_P (node))
98eaf693 1118 {
a8b75081 1119 /* If this is a function or parm decl, that means we've hit function
bbb9efab 1120 scope, so this prefix must be for a local name. In this
1121 case, we're under the <local-name> production, which encodes
1122 the enclosing function scope elsewhere. So don't continue
1123 here. */
a8b75081 1124 if (TREE_CODE (node) == FUNCTION_DECL
1125 || TREE_CODE (node) == PARM_DECL)
bbb9efab 1126 return;
1127
8762fbe2 1128 decl = node;
1129 decl_is_template_id (decl, &template_info);
98eaf693 1130 }
8762fbe2 1131 else
8762fbe2 1132 {
18f2b9d5 1133 /* Node is a type. */
8762fbe2 1134 decl = TYPE_NAME (node);
1135 if (CLASSTYPE_TEMPLATE_ID_P (node))
18f2b9d5 1136 template_info = TYPE_TEMPLATE_INFO (node);
8762fbe2 1137 }
1138
f591db9a 1139 if (TREE_CODE (node) == TEMPLATE_TYPE_PARM)
18f2b9d5 1140 write_template_param (node);
1141 else if (template_info != NULL)
8762fbe2 1142 /* Templated. */
98eaf693 1143 {
8762fbe2 1144 write_template_prefix (decl);
1145 write_template_args (TI_ARGS (template_info));
98eaf693 1146 }
4682b6fe 1147 else if (TREE_CODE (TREE_TYPE (decl)) == TYPENAME_TYPE)
1148 {
1149 tree name = TYPENAME_TYPE_FULLNAME (TREE_TYPE (decl));
1150 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
1151 {
1152 write_template_prefix (decl);
1153 write_template_args (TREE_OPERAND (name, 1));
1154 }
1155 else
1156 {
7abd84e4 1157 write_prefix (decl_mangling_context (decl));
4682b6fe 1158 write_unqualified_name (decl);
1159 }
1160 }
98eaf693 1161 else
1162 /* Not templated. */
1163 {
a8b75081 1164 write_prefix (decl_mangling_context (decl));
bbb9efab 1165 write_unqualified_name (decl);
80a58eb0 1166 if (VAR_P (decl)
a8b75081 1167 || TREE_CODE (decl) == FIELD_DECL)
1168 {
1169 /* <data-member-prefix> := <member source-name> M */
1170 write_char ('M');
1171 return;
1172 }
98eaf693 1173 }
1174
1175 add_substitution (node);
1176}
1177
1178/* <template-prefix> ::= <prefix> <template component>
653e5405 1179 ::= <template-param>
1180 ::= <substitution> */
98eaf693 1181
1182static void
61e3d157 1183write_template_prefix (const tree node)
98eaf693 1184{
1185 tree decl = DECL_P (node) ? node : TYPE_NAME (node);
1186 tree type = DECL_P (node) ? TREE_TYPE (node) : node;
7abd84e4 1187 tree context = decl_mangling_context (decl);
8762fbe2 1188 tree template_info;
607a5d68 1189 tree templ;
98eaf693 1190 tree substitution;
1191
1192 MANGLE_TRACE_TREE ("template-prefix", node);
1193
1194 /* Find the template decl. */
8762fbe2 1195 if (decl_is_template_id (decl, &template_info))
607a5d68 1196 templ = TI_TEMPLATE (template_info);
4682b6fe 1197 else if (TREE_CODE (type) == TYPENAME_TYPE)
1198 /* For a typename type, all we have is the name. */
1199 templ = DECL_NAME (decl);
98eaf693 1200 else
092b1d6f 1201 {
1202 gcc_assert (CLASSTYPE_TEMPLATE_ID_P (type));
9031d10b 1203
607a5d68 1204 templ = TYPE_TI_TEMPLATE (type);
092b1d6f 1205 }
98eaf693 1206
f753592a 1207 /* For a member template, though, the template name for the
1208 innermost name must have all the outer template levels
1209 instantiated. For instance, consider
1210
1211 template<typename T> struct Outer {
1212 template<typename U> struct Inner {};
1213 };
1214
1215 The template name for `Inner' in `Outer<int>::Inner<float>' is
1216 `Outer<int>::Inner<U>'. In g++, we don't instantiate the template
1217 levels separately, so there's no TEMPLATE_DECL available for this
1218 (there's only `Outer<T>::Inner<U>').
1219
1220 In order to get the substitutions right, we create a special
1221 TREE_LIST to represent the substitution candidate for a nested
1222 template. The TREE_PURPOSE is the template's context, fully
1223 instantiated, and the TREE_VALUE is the TEMPLATE_DECL for the inner
1224 template.
1225
1226 So, for the example above, `Outer<int>::Inner' is represented as a
1227 substitution candidate by a TREE_LIST whose purpose is `Outer<int>'
1228 and whose value is `Outer<T>::Inner<U>'. */
c57ab0e8 1229 if (context && TYPE_P (context))
607a5d68 1230 substitution = build_tree_list (context, templ);
f753592a 1231 else
607a5d68 1232 substitution = templ;
98eaf693 1233
1234 if (find_substitution (substitution))
1235 return;
1236
4682b6fe 1237 if (TREE_TYPE (templ)
f591db9a 1238 && TREE_CODE (TREE_TYPE (templ)) == TEMPLATE_TEMPLATE_PARM)
607a5d68 1239 write_template_param (TREE_TYPE (templ));
18f2b9d5 1240 else
1241 {
1242 write_prefix (context);
1243 write_unqualified_name (decl);
1244 }
98eaf693 1245
1246 add_substitution (substitution);
1247}
1248
aa996a7a 1249/* As the list of identifiers for the structured binding declaration
1250 DECL is likely gone, try to recover the DC <source-name>+ E portion
1251 from its mangled name. Return pointer to the DC and set len to
1252 the length up to and including the terminating E. On failure
1253 return NULL. */
1254
1255static const char *
1256find_decomp_unqualified_name (tree decl, size_t *len)
1257{
1258 const char *p = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
1259 const char *end = p + IDENTIFIER_LENGTH (DECL_ASSEMBLER_NAME (decl));
1260 bool nested = false;
1261 if (strncmp (p, "_Z", 2))
1262 return NULL;
1263 p += 2;
1264 if (!strncmp (p, "St", 2))
1265 p += 2;
1266 else if (*p == 'N')
1267 {
1268 nested = true;
1269 ++p;
1270 while (ISDIGIT (p[0]))
1271 {
1272 char *e;
1273 long num = strtol (p, &e, 10);
1274 if (num >= 1 && num < end - e)
1275 p = e + num;
1276 else
1277 break;
1278 }
1279 }
1280 if (strncmp (p, "DC", 2))
1281 return NULL;
1282 if (nested)
1283 {
1284 if (end[-1] != 'E')
1285 return NULL;
1286 --end;
1287 }
1288 if (end[-1] != 'E')
1289 return NULL;
1290 *len = end - p;
1291 return p;
1292}
1293
98eaf693 1294/* We don't need to handle thunks, vtables, or VTTs here. Those are
9031d10b 1295 mangled through special entry points.
98eaf693 1296
1297 <unqualified-name> ::= <operator-name>
9031d10b 1298 ::= <special-name>
9751796f 1299 ::= <source-name>
a8b75081 1300 ::= <unnamed-type-name>
9751796f 1301 ::= <local-source-name>
1302
1303 <local-source-name> ::= L <source-name> <discriminator> */
98eaf693 1304
c44a7393 1305static void
1306write_unqualified_id (tree identifier)
1307{
991449b2 1308 if (IDENTIFIER_CONV_OP_P (identifier))
c44a7393 1309 write_conversion_operator_name (TREE_TYPE (identifier));
816659f9 1310 else if (IDENTIFIER_OVL_OP_P (identifier))
c44a7393 1311 {
a543234d 1312 const ovl_op_info_t *ovl_op = IDENTIFIER_OVL_OP_INFO (identifier);
1313 write_string (ovl_op->mangled_name);
c44a7393 1314 }
244db24d 1315 else if (UDLIT_OPER_P (identifier))
1316 write_literal_operator_name (identifier);
c44a7393 1317 else
1318 write_source_name (identifier);
1319}
1320
98eaf693 1321static void
42a2bdf5 1322write_unqualified_name (tree decl)
98eaf693 1323{
1324 MANGLE_TRACE_TREE ("unqualified-name", decl);
1325
694683bb 1326 if (identifier_p (decl))
c44a7393 1327 {
1328 write_unqualified_id (decl);
1329 return;
1330 }
1331
d4701f6c 1332 bool found = false;
1333
39e70cbf 1334 if (DECL_NAME (decl) == NULL_TREE)
2336da2a 1335 {
d4701f6c 1336 found = true;
2336da2a 1337 gcc_assert (DECL_ASSEMBLER_NAME_SET_P (decl));
aa996a7a 1338 const char *decomp_str = NULL;
1339 size_t decomp_len = 0;
1340 if (VAR_P (decl)
1341 && DECL_DECOMPOSITION_P (decl)
1342 && DECL_NAME (decl) == NULL_TREE
1343 && DECL_NAMESPACE_SCOPE_P (decl))
1344 decomp_str = find_decomp_unqualified_name (decl, &decomp_len);
1345 if (decomp_str)
1346 write_chars (decomp_str, decomp_len);
1347 else
1348 write_source_name (DECL_ASSEMBLER_NAME (decl));
2336da2a 1349 }
39e70cbf 1350 else if (DECL_DECLARES_FUNCTION_P (decl))
98eaf693 1351 {
d4701f6c 1352 found = true;
39e70cbf 1353 if (DECL_CONSTRUCTOR_P (decl))
1354 write_special_name_constructor (decl);
1355 else if (DECL_DESTRUCTOR_P (decl))
1356 write_special_name_destructor (decl);
1357 else if (DECL_CONV_FN_P (decl))
33927c59 1358 {
39e70cbf 1359 /* Conversion operator. Handle it right here.
1360 <operator> ::= cv <type> */
1361 tree type;
1362 if (decl_is_template_id (decl, NULL))
1363 {
1364 tree fn_type;
1365 fn_type = get_mostly_instantiated_function_type (decl);
1366 type = TREE_TYPE (fn_type);
1367 }
18bb3b80 1368 else if (FNDECL_USED_AUTO (decl))
1369 type = (DECL_STRUCT_FUNCTION (decl)->language
1370 ->x_auto_return_pattern);
39e70cbf 1371 else
1372 type = DECL_CONV_FN_TYPE (decl);
1373 write_conversion_operator_name (type);
1374 }
1375 else if (DECL_OVERLOADED_OPERATOR_P (decl))
1376 {
ca16a224 1377 const char *mangled_name
2cc899e0 1378 = (ovl_op_info[DECL_ASSIGNMENT_OPERATOR_P (decl)]
1379 [DECL_OVERLOADED_OPERATOR_CODE_RAW (decl)].mangled_name);
ca16a224 1380 write_string (mangled_name);
33927c59 1381 }
244db24d 1382 else if (UDLIT_OPER_P (DECL_NAME (decl)))
1383 write_literal_operator_name (DECL_NAME (decl));
33927c59 1384 else
39e70cbf 1385 found = false;
98eaf693 1386 }
39e70cbf 1387
d4701f6c 1388 if (found)
1389 /* OK */;
1390 else if (VAR_OR_FUNCTION_DECL_P (decl) && ! TREE_PUBLIC (decl)
1391 && DECL_NAMESPACE_SCOPE_P (decl)
1392 && decl_linkage (decl) == lk_internal)
9751796f 1393 {
1394 MANGLE_TRACE_TREE ("local-source-name", decl);
1395 write_char ('L');
1396 write_source_name (DECL_NAME (decl));
1397 /* The default discriminator is 1, and that's all we ever use,
1398 so there's no code to output one here. */
1399 }
98eaf693 1400 else
a8b75081 1401 {
1402 tree type = TREE_TYPE (decl);
1403
1404 if (TREE_CODE (decl) == TYPE_DECL
4f86cbb0 1405 && TYPE_UNNAMED_P (type))
a8b75081 1406 write_unnamed_type_name (type);
1407 else if (TREE_CODE (decl) == TYPE_DECL
1408 && LAMBDA_TYPE_P (type))
1409 write_closure_type_name (type);
1410 else
1411 write_source_name (DECL_NAME (decl));
1412 }
d4701f6c 1413
2b463b9a 1414 /* We use the ABI tags from the primary class template, ignoring tags on any
42a2bdf5 1415 specializations. This is necessary because C++ doesn't require a
2b463b9a 1416 specialization to be declared before it is used unless the use requires a
1417 complete type, but we need to get the tags right on incomplete types as
1418 well. */
42a2bdf5 1419 if (tree tmpl = most_general_template (decl))
2b463b9a 1420 {
1421 tree res = DECL_TEMPLATE_RESULT (tmpl);
1422 if (res == NULL_TREE)
1423 /* UNBOUND_CLASS_TEMPLATE. */;
1424 else if (DECL_DECLARES_TYPE_P (decl))
1425 decl = res;
1426 else if (any_abi_below (11))
1427 {
1428 /* ABI v10 implicit tags on the template. */
1429 tree mtags = missing_abi_tags (res);
1430 /* Explicit tags on the template. */
1431 tree ttags = get_abi_tags (res);
1432 /* Tags on the instantiation. */
1433 tree dtags = get_abi_tags (decl);
1434
1435 if (mtags && abi_warn_or_compat_version_crosses (10))
1436 G.need_abi_warning = 1;
1437
1438 /* Add the v10 tags to the explicit tags now. */
1439 mtags = chainon (mtags, ttags);
1440
1441 if (!G.need_abi_warning
1442 && abi_warn_or_compat_version_crosses (11)
1443 && !equal_abi_tags (dtags, mtags))
1444 G.need_abi_warning = 1;
1445
1446 if (!abi_version_at_least (10))
1447 /* In abi <10, we only got the explicit tags. */
1448 decl = res;
1449 else if (flag_abi_version == 10)
1450 {
1451 /* In ABI 10, we want explict and implicit tags. */
1452 write_abi_tags (mtags);
1453 return;
1454 }
1455 }
1456 }
1457
1458 tree tags = get_abi_tags (decl);
b3b6f5b5 1459 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_CONV_FN_P (decl)
1460 && any_abi_below (11))
1461 if (tree mtags = missing_abi_tags (decl))
1462 {
1463 if (abi_warn_or_compat_version_crosses (11))
1464 G.need_abi_warning = true;
1465 if (!abi_version_at_least (11))
1466 tags = chainon (mtags, tags);
1467 }
2b463b9a 1468 write_abi_tags (tags);
98eaf693 1469}
1470
94302392 1471/* Write the unqualified-name for a conversion operator to TYPE. */
1472
1473static void
61e3d157 1474write_conversion_operator_name (const tree type)
94302392 1475{
1476 write_string ("cv");
1477 write_type (type);
1478}
1479
9031d10b 1480/* Non-terminal <source-name>. IDENTIFIER is an IDENTIFIER_NODE.
98eaf693 1481
1482 <source-name> ::= </length/ number> <identifier> */
1483
1484static void
61e3d157 1485write_source_name (tree identifier)
98eaf693 1486{
1487 MANGLE_TRACE_TREE ("source-name", identifier);
1488
e75e76ea 1489 write_unsigned_number (IDENTIFIER_LENGTH (identifier));
98eaf693 1490 write_identifier (IDENTIFIER_POINTER (identifier));
1491}
1492
d4701f6c 1493/* Compare two TREE_STRINGs like strcmp. */
1494
1495int
1496tree_string_cmp (const void *p1, const void *p2)
1497{
1498 if (p1 == p2)
1499 return 0;
1500 tree s1 = *(const tree*)p1;
1501 tree s2 = *(const tree*)p2;
1502 return strcmp (TREE_STRING_POINTER (s1),
1503 TREE_STRING_POINTER (s2));
1504}
1505
2b463b9a 1506/* Return the TREE_LIST of TAGS as a sorted VEC. */
d4701f6c 1507
2b463b9a 1508static vec<tree, va_gc> *
1509sorted_abi_tags (tree tags)
d4701f6c 1510{
f1f41a6c 1511 vec<tree, va_gc> * vec = make_tree_vector();
d4701f6c 1512
1513 for (tree t = tags; t; t = TREE_CHAIN (t))
1514 {
9d78c80e 1515 if (ABI_TAG_IMPLICIT (t))
1516 continue;
d4701f6c 1517 tree str = TREE_VALUE (t);
f1f41a6c 1518 vec_safe_push (vec, str);
d4701f6c 1519 }
1520
f1f41a6c 1521 vec->qsort (tree_string_cmp);
d4701f6c 1522
2b463b9a 1523 return vec;
1524}
1525
1526/* ID is the name of a function or type with abi_tags attribute TAGS.
1527 Write out the name, suitably decorated. */
1528
1529static void
1530write_abi_tags (tree tags)
1531{
1532 if (tags == NULL_TREE)
1533 return;
1534
1535 vec<tree, va_gc> * vec = sorted_abi_tags (tags);
1536
d4701f6c 1537 unsigned i; tree str;
f1f41a6c 1538 FOR_EACH_VEC_ELT (*vec, i, str)
d4701f6c 1539 {
1540 write_string ("B");
1541 write_unsigned_number (TREE_STRING_LENGTH (str) - 1);
1542 write_identifier (TREE_STRING_POINTER (str));
1543 }
1544
1545 release_tree_vector (vec);
1546}
1547
2b463b9a 1548/* True iff the TREE_LISTS T1 and T2 of ABI tags are equivalent. */
1549
1550static bool
1551equal_abi_tags (tree t1, tree t2)
1552{
1553 releasing_vec v1 = sorted_abi_tags (t1);
1554 releasing_vec v2 = sorted_abi_tags (t2);
1555
1556 unsigned len1 = v1->length();
1557 if (len1 != v2->length())
1558 return false;
1559 for (unsigned i = 0; i < len1; ++i)
1560 if (tree_string_cmp (v1[i], v2[i]) != 0)
1561 return false;
1562 return true;
1563}
1564
244db24d 1565/* Write a user-defined literal operator.
b9eba7af 1566 ::= li <source-name> # "" <source-name>
244db24d 1567 IDENTIFIER is an LITERAL_IDENTIFIER_NODE. */
1568
1569static void
1570write_literal_operator_name (tree identifier)
1571{
1572 const char* suffix = UDLIT_OP_SUFFIX (identifier);
b9eba7af 1573 write_identifier (UDLIT_OP_MANGLED_PREFIX);
1574 write_unsigned_number (strlen (suffix));
1575 write_identifier (suffix);
244db24d 1576}
1577
a8b75081 1578/* Encode 0 as _, and 1+ as n-1_. */
1579
1580static void
1581write_compact_number (int num)
1582{
1583 if (num > 0)
1584 write_unsigned_number (num - 1);
1585 write_char ('_');
1586}
1587
fb5d6a4f 1588/* Return how many unnamed types precede TYPE in its enclosing class. */
1589
1590static int
1591nested_anon_class_index (tree type)
1592{
1593 int index = 0;
1594 tree member = TYPE_FIELDS (TYPE_CONTEXT (type));
1767a056 1595 for (; member; member = DECL_CHAIN (member))
fb5d6a4f 1596 if (DECL_IMPLICIT_TYPEDEF_P (member))
1597 {
1598 tree memtype = TREE_TYPE (member);
1599 if (memtype == type)
1600 return index;
4f86cbb0 1601 else if (TYPE_UNNAMED_P (memtype))
fb5d6a4f 1602 ++index;
1603 }
1604
70a397b0 1605 if (seen_error ())
1606 return -1;
1607
fb5d6a4f 1608 gcc_unreachable ();
1609}
1610
1611/* <unnamed-type-name> ::= Ut [ <nonnegative number> ] _ */
1612
a8b75081 1613static void
a49c5913 1614write_unnamed_type_name (const tree type)
a8b75081 1615{
fb5d6a4f 1616 int discriminator;
a8b75081 1617 MANGLE_TRACE_TREE ("unnamed-type-name", type);
1618
fb5d6a4f 1619 if (TYPE_FUNCTION_SCOPE_P (type))
772b23aa 1620 discriminator = discriminator_for_local_entity (TYPE_NAME (type));
fb5d6a4f 1621 else if (TYPE_CLASS_SCOPE_P (type))
1622 discriminator = nested_anon_class_index (type);
1623 else
1624 {
1625 gcc_assert (no_linkage_check (type, /*relaxed_p=*/true));
1626 /* Just use the old mangling at namespace scope. */
1627 write_source_name (TYPE_IDENTIFIER (type));
1628 return;
1629 }
1630
a8b75081 1631 write_string ("Ut");
fb5d6a4f 1632 write_compact_number (discriminator);
a8b75081 1633}
1634
1635/* <closure-type-name> ::= Ul <lambda-sig> E [ <nonnegative number> ] _
1636 <lambda-sig> ::= <parameter type>+ # Parameter types or "v" if the lambda has no parameters */
1637
1638static void
1639write_closure_type_name (const tree type)
1640{
1641 tree fn = lambda_function (type);
1642 tree lambda = CLASSTYPE_LAMBDA_EXPR (type);
1643 tree parms = TYPE_ARG_TYPES (TREE_TYPE (fn));
1644
1645 MANGLE_TRACE_TREE ("closure-type-name", type);
1646
1647 write_string ("Ul");
43936711 1648 write_method_parms (parms, /*method_p=*/1, fn);
a8b75081 1649 write_char ('E');
1650 write_compact_number (LAMBDA_EXPR_DISCRIMINATOR (lambda));
1651}
1652
2ec35239 1653/* Convert NUMBER to ascii using base BASE and generating at least
1654 MIN_DIGITS characters. BUFFER points to the _end_ of the buffer
1655 into which to store the characters. Returns the number of
88aa6d3e 1656 characters generated (these will be laid out in advance of where
2ec35239 1657 BUFFER points). */
1658
1659static int
61e3d157 1660hwint_to_ascii (unsigned HOST_WIDE_INT number, const unsigned int base,
1661 char *buffer, const unsigned int min_digits)
2ec35239 1662{
1663 static const char base_digits[] = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
1664 unsigned digits = 0;
9031d10b 1665
2ec35239 1666 while (number)
1667 {
1668 unsigned HOST_WIDE_INT d = number / base;
9031d10b 1669
2ec35239 1670 *--buffer = base_digits[number - d * base];
1671 digits++;
1672 number = d;
1673 }
1674 while (digits < min_digits)
1675 {
1676 *--buffer = base_digits[0];
1677 digits++;
1678 }
1679 return digits;
1680}
1681
98eaf693 1682/* Non-terminal <number>.
1683
1684 <number> ::= [n] </decimal integer/> */
1685
1686static void
61e3d157 1687write_number (unsigned HOST_WIDE_INT number, const int unsigned_p,
1688 const unsigned int base)
98eaf693 1689{
2ec35239 1690 char buffer[sizeof (HOST_WIDE_INT) * 8];
1691 unsigned count = 0;
98eaf693 1692
e75e76ea 1693 if (!unsigned_p && (HOST_WIDE_INT) number < 0)
98eaf693 1694 {
1695 write_char ('n');
e75e76ea 1696 number = -((HOST_WIDE_INT) number);
98eaf693 1697 }
2ec35239 1698 count = hwint_to_ascii (number, base, buffer + sizeof (buffer), 1);
1699 write_chars (buffer + sizeof (buffer) - count, count);
98eaf693 1700}
1701
2ec35239 1702/* Write out an integral CST in decimal. Most numbers are small, and
1703 representable in a HOST_WIDE_INT. Occasionally we'll have numbers
47cd6605 1704 bigger than that, which we must deal with. */
98eaf693 1705
1706static inline void
61e3d157 1707write_integer_cst (const tree cst)
98eaf693 1708{
2ec35239 1709 int sign = tree_int_cst_sgn (cst);
e1d65c9f 1710 widest_int abs_value = wi::abs (wi::to_widest (cst));
1711 if (!wi::fits_uhwi_p (abs_value))
e75e76ea 1712 {
2ec35239 1713 /* A bignum. We do this in chunks, each of which fits in a
47cd6605 1714 HOST_WIDE_INT. */
2ec35239 1715 char buffer[sizeof (HOST_WIDE_INT) * 8 * 2];
1716 unsigned HOST_WIDE_INT chunk;
1717 unsigned chunk_digits;
1718 char *ptr = buffer + sizeof (buffer);
1719 unsigned count = 0;
1720 tree n, base, type;
1721 int done;
1722
1723 /* HOST_WIDE_INT must be at least 32 bits, so 10^9 is
47cd6605 1724 representable. */
2ec35239 1725 chunk = 1000000000;
1726 chunk_digits = 9;
9031d10b 1727
2ec35239 1728 if (sizeof (HOST_WIDE_INT) >= 8)
1729 {
47cd6605 1730 /* It is at least 64 bits, so 10^18 is representable. */
2ec35239 1731 chunk_digits = 18;
1732 chunk *= chunk;
1733 }
9031d10b 1734
4070745f 1735 type = c_common_signed_or_unsigned_type (1, TREE_TYPE (cst));
7016c612 1736 base = build_int_cstu (type, chunk);
e3d0f65c 1737 n = wide_int_to_tree (type, wi::to_wide (cst));
2ec35239 1738
1739 if (sign < 0)
1740 {
1741 write_char ('n');
389dd41b 1742 n = fold_build1_loc (input_location, NEGATE_EXPR, type, n);
2ec35239 1743 }
1744 do
1745 {
389dd41b 1746 tree d = fold_build2_loc (input_location, FLOOR_DIV_EXPR, type, n, base);
1747 tree tmp = fold_build2_loc (input_location, MULT_EXPR, type, d, base);
2ec35239 1748 unsigned c;
61e3d157 1749
2ec35239 1750 done = integer_zerop (d);
389dd41b 1751 tmp = fold_build2_loc (input_location, MINUS_EXPR, type, n, tmp);
f9ae6f95 1752 c = hwint_to_ascii (TREE_INT_CST_LOW (tmp), 10, ptr,
831d52a2 1753 done ? 1 : chunk_digits);
2ec35239 1754 ptr -= c;
1755 count += c;
1756 n = d;
1757 }
1758 while (!done);
1759 write_chars (ptr, count);
1760 }
9031d10b 1761 else
2ec35239 1762 {
1763 /* A small num. */
2ec35239 1764 if (sign < 0)
e1d65c9f 1765 write_char ('n');
1766 write_unsigned_number (abs_value.to_uhwi ());
e75e76ea 1767 }
98eaf693 1768}
1769
9031d10b 1770/* Write out a floating-point literal.
1771
cc116129 1772 "Floating-point literals are encoded using the bit pattern of the
1773 target processor's internal representation of that number, as a
1774 fixed-length lowercase hexadecimal string, high-order bytes first
1775 (even if the target processor would store low-order bytes first).
1776 The "n" prefix is not used for floating-point literals; the sign
1777 bit is encoded with the rest of the number.
1778
1779 Here are some examples, assuming the IEEE standard representation
1780 for floating point numbers. (Spaces are for readability, not
1781 part of the encoding.)
1782
653e5405 1783 1.0f Lf 3f80 0000 E
1784 -1.0f Lf bf80 0000 E
1785 1.17549435e-38f Lf 0080 0000 E
1786 1.40129846e-45f Lf 0000 0001 E
1787 0.0f Lf 0000 0000 E"
cc116129 1788
1789 Caller is responsible for the Lx and the E. */
1790static void
61e3d157 1791write_real_cst (const tree value)
cc116129 1792{
f591db9a 1793 long target_real[4]; /* largest supported float */
b18dea91 1794 /* Buffer for eight hex digits in a 32-bit number but big enough
1795 even for 64-bit long to avoid warnings. */
1796 char buffer[17];
f591db9a 1797 int i, limit, dir;
1798
1799 tree type = TREE_TYPE (value);
299dd9fa 1800 int words = GET_MODE_BITSIZE (SCALAR_FLOAT_TYPE_MODE (type)) / 32;
f591db9a 1801
1802 real_to_target (target_real, &TREE_REAL_CST (value),
1803 TYPE_MODE (type));
1804
1805 /* The value in target_real is in the target word order,
1806 so we must write it out backward if that happens to be
1807 little-endian. write_number cannot be used, it will
1808 produce uppercase. */
1809 if (FLOAT_WORDS_BIG_ENDIAN)
1810 i = 0, limit = words, dir = 1;
cc116129 1811 else
f591db9a 1812 i = words - 1, limit = -1, dir = -1;
1813
1814 for (; i != limit; i += dir)
cc116129 1815 {
f591db9a 1816 sprintf (buffer, "%08lx", (unsigned long) target_real[i]);
1817 write_chars (buffer, 8);
cc116129 1818 }
1819}
1820
98eaf693 1821/* Non-terminal <identifier>.
1822
1823 <identifier> ::= </unqualified source code identifier> */
1824
1825static void
61e3d157 1826write_identifier (const char *identifier)
98eaf693 1827{
1828 MANGLE_TRACE ("identifier", identifier);
1829 write_string (identifier);
1830}
1831
1832/* Handle constructor productions of non-terminal <special-name>.
9031d10b 1833 CTOR is a constructor FUNCTION_DECL.
98eaf693 1834
1835 <special-name> ::= C1 # complete object constructor
653e5405 1836 ::= C2 # base object constructor
1837 ::= C3 # complete object allocating constructor
98eaf693 1838
468088ac 1839 Currently, allocating constructors are never used. */
98eaf693 1840
1841static void
61e3d157 1842write_special_name_constructor (const tree ctor)
98eaf693 1843{
7896267d 1844 write_char ('C');
1845 bool new_inh = (flag_new_inheriting_ctors
1846 && DECL_INHERITED_CTOR (ctor));
1847 if (new_inh)
1848 write_char ('I');
092b1d6f 1849 if (DECL_BASE_CONSTRUCTOR_P (ctor))
7896267d 1850 write_char ('2');
468088ac 1851 /* This is the old-style "[unified]" constructor.
1852 In some cases, we may emit this function and call
1853 it from the clones in order to share code and save space. */
1854 else if (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (ctor))
7896267d 1855 write_char ('4');
f2b8a47d 1856 else
092b1d6f 1857 {
468088ac 1858 gcc_assert (DECL_COMPLETE_CONSTRUCTOR_P (ctor));
7896267d 1859 write_char ('1');
092b1d6f 1860 }
7896267d 1861 if (new_inh)
1862 write_type (DECL_INHERITED_CTOR_BASE (ctor));
98eaf693 1863}
1864
1865/* Handle destructor productions of non-terminal <special-name>.
9031d10b 1866 DTOR is a destructor FUNCTION_DECL.
98eaf693 1867
1868 <special-name> ::= D0 # deleting (in-charge) destructor
653e5405 1869 ::= D1 # complete object (in-charge) destructor
468088ac 1870 ::= D2 # base object (not-in-charge) destructor */
98eaf693 1871
1872static void
61e3d157 1873write_special_name_destructor (const tree dtor)
98eaf693 1874{
1875 if (DECL_DELETING_DESTRUCTOR_P (dtor))
1876 write_string ("D0");
98eaf693 1877 else if (DECL_BASE_DESTRUCTOR_P (dtor))
1878 write_string ("D2");
468088ac 1879 else if (DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P (dtor))
1880 /* This is the old-style "[unified]" destructor.
1881 In some cases, we may emit this function and call
1882 it from the clones in order to share code and save space. */
1883 write_string ("D4");
f2b8a47d 1884 else
092b1d6f 1885 {
468088ac 1886 gcc_assert (DECL_COMPLETE_DESTRUCTOR_P (dtor));
092b1d6f 1887 write_string ("D1");
1888 }
98eaf693 1889}
1890
1891/* Return the discriminator for ENTITY appearing inside
772b23aa 1892 FUNCTION. The discriminator is the lexical ordinal of VAR or TYPE among
1893 entities with the same name and kind in the same FUNCTION. */
98eaf693 1894
1895static int
61e3d157 1896discriminator_for_local_entity (tree entity)
98eaf693 1897{
772b23aa 1898 if (!DECL_LANG_SPECIFIC (entity))
fb5d6a4f 1899 {
772b23aa 1900 /* Some decls, like __FUNCTION__, don't need a discriminator. */
1901 gcc_checking_assert (DECL_ARTIFICIAL (entity));
1902 return 0;
9031d10b 1903 }
772b23aa 1904 else if (tree disc = DECL_DISCRIMINATOR (entity))
1905 return TREE_INT_CST_LOW (disc);
fb5d6a4f 1906 else
772b23aa 1907 /* The first entity with a particular name doesn't get
1908 DECL_DISCRIMINATOR set up. */
1909 return 0;
98eaf693 1910}
1911
1912/* Return the discriminator for STRING, a string literal used inside
63eff20d 1913 FUNCTION. The discriminator is the lexical ordinal of STRING among
98eaf693 1914 string literals used in FUNCTION. */
1915
1916static int
a49c5913 1917discriminator_for_string_literal (tree /*function*/,
1918 tree /*string*/)
98eaf693 1919{
1920 /* For now, we don't discriminate amongst string literals. */
1921 return 0;
1922}
1923
a2929a3a 1924/* <discriminator> := _ <number> # when number < 10
1925 := __ <number> _ # when number >= 10
98eaf693 1926
1927 The discriminator is used only for the second and later occurrences
1928 of the same name within a single function. In this case <number> is
1929 n - 2, if this is the nth occurrence, in lexical order. */
1930
1931static void
61e3d157 1932write_discriminator (const int discriminator)
98eaf693 1933{
47cd6605 1934 /* If discriminator is zero, don't write anything. Otherwise... */
98eaf693 1935 if (discriminator > 0)
1936 {
1937 write_char ('_');
32d3ed1d 1938 if (discriminator - 1 >= 10)
a2929a3a 1939 {
a2929a3a 1940 if (abi_warn_or_compat_version_crosses (11))
1941 G.need_abi_warning = 1;
32d3ed1d 1942 if (abi_version_at_least (11))
1943 write_char ('_');
a2929a3a 1944 }
5a4fcef0 1945 write_unsigned_number (discriminator - 1);
a2929a3a 1946 if (abi_version_at_least (11) && discriminator - 1 >= 10)
1947 write_char ('_');
98eaf693 1948 }
1949}
1950
1951/* Mangle the name of a function-scope entity. FUNCTION is the
a8b75081 1952 FUNCTION_DECL for the enclosing function, or a PARM_DECL for lambdas in
1953 default argument scope. ENTITY is the decl for the entity itself.
1954 LOCAL_ENTITY is the entity that's directly scoped in FUNCTION_DECL,
1955 either ENTITY itself or an enclosing scope of ENTITY.
98eaf693 1956
1957 <local-name> := Z <function encoding> E <entity name> [<discriminator>]
a8b75081 1958 := Z <function encoding> E s [<discriminator>]
1959 := Z <function encoding> Ed [ <parameter number> ] _ <entity name> */
98eaf693 1960
1961static void
a8b75081 1962write_local_name (tree function, const tree local_entity,
61e3d157 1963 const tree entity)
98eaf693 1964{
a8b75081 1965 tree parm = NULL_TREE;
1966
98eaf693 1967 MANGLE_TRACE_TREE ("local-name", entity);
1968
a8b75081 1969 if (TREE_CODE (function) == PARM_DECL)
1970 {
1971 parm = function;
1972 function = DECL_CONTEXT (parm);
1973 }
1974
98eaf693 1975 write_char ('Z');
1976 write_encoding (function);
1977 write_char ('E');
a8b75081 1978
1979 /* For this purpose, parameters are numbered from right-to-left. */
1980 if (parm)
1981 {
1982 tree t;
1983 int i = 0;
1767a056 1984 for (t = DECL_ARGUMENTS (function); t; t = DECL_CHAIN (t))
a8b75081 1985 {
1986 if (t == parm)
1987 i = 1;
1988 else if (i)
1989 ++i;
1990 }
1991 write_char ('d');
1992 write_compact_number (i - 1);
1993 }
1994
98eaf693 1995 if (TREE_CODE (entity) == STRING_CST)
1996 {
1997 write_char ('s');
9031d10b 1998 write_discriminator (discriminator_for_string_literal (function,
98eaf693 1999 entity));
2000 }
2001 else
2002 {
bbb9efab 2003 /* Now the <entity name>. Let write_name know its being called
2004 from <local-name>, so it doesn't try to process the enclosing
2005 function scope again. */
2006 write_name (entity, /*ignore_local_scope=*/1);
772b23aa 2007 if (DECL_DISCRIMINATOR_P (local_entity)
2008 && !(TREE_CODE (local_entity) == TYPE_DECL
2009 && (LAMBDA_TYPE_P (TREE_TYPE (local_entity))
2010 || TYPE_UNNAMED_P (TREE_TYPE (local_entity)))))
2011 write_discriminator (discriminator_for_local_entity (local_entity));
98eaf693 2012 }
2013}
2014
9031d10b 2015/* Non-terminals <type> and <CV-qualifier>.
98eaf693 2016
2017 <type> ::= <builtin-type>
653e5405 2018 ::= <function-type>
2019 ::= <class-enum-type>
2020 ::= <array-type>
2021 ::= <pointer-to-member-type>
2022 ::= <template-param>
2023 ::= <substitution>
2024 ::= <CV-qualifier>
2025 ::= P <type> # pointer-to
2026 ::= R <type> # reference-to
2027 ::= C <type> # complex pair (C 2000)
2028 ::= G <type> # imaginary (C 2000) [not supported]
2029 ::= U <source-name> <type> # vendor extended type qualifier
98eaf693 2030
63949b38 2031 C++0x extensions
2032
2033 <type> ::= RR <type> # rvalue reference-to
34da8800 2034 <type> ::= Dt <expression> # decltype of an id-expression or
2035 # class member access
2036 <type> ::= DT <expression> # decltype of an expression
6fe11077 2037 <type> ::= Dn # decltype of nullptr
63949b38 2038
98eaf693 2039 TYPE is a type node. */
2040
9031d10b 2041static void
61e3d157 2042write_type (tree type)
98eaf693 2043{
3160db1d 2044 /* This gets set to nonzero if TYPE turns out to be a (possibly
98eaf693 2045 CV-qualified) builtin type. */
2046 int is_builtin_type = 0;
2047
2048 MANGLE_TRACE_TREE ("type", type);
2049
0cd69b17 2050 if (type == error_mark_node)
2051 return;
2052
f962c310 2053 type = canonicalize_for_substitution (type);
98eaf693 2054 if (find_substitution (type))
2055 return;
9031d10b 2056
8df5a43d 2057
98eaf693 2058 if (write_CV_qualifiers_for_type (type) > 0)
2059 /* If TYPE was CV-qualified, we just wrote the qualifiers; now
2060 mangle the unqualified type. The recursive call is needed here
755edffd 2061 since both the qualified and unqualified types are substitution
98eaf693 2062 candidates. */
2ba14c1f 2063 {
2064 tree t = TYPE_MAIN_VARIANT (type);
399fbdbd 2065 if (TYPE_ATTRIBUTES (t) && !OVERLOAD_TYPE_P (t))
6d02e6b2 2066 {
2067 tree attrs = NULL_TREE;
2068 if (tx_safe_fn_type_p (type))
2069 attrs = tree_cons (get_identifier ("transaction_safe"),
2070 NULL_TREE, attrs);
2071 t = cp_build_type_attribute_variant (t, attrs);
2072 }
399fbdbd 2073 gcc_assert (t != type);
2ba14c1f 2074 if (TREE_CODE (t) == FUNCTION_TYPE
2075 || TREE_CODE (t) == METHOD_TYPE)
862e5b6d 2076 {
2077 t = build_ref_qualified_type (t, type_memfn_rqual (type));
c2ca6e19 2078 if (flag_noexcept_type)
2079 {
2080 tree r = TYPE_RAISES_EXCEPTIONS (type);
2081 t = build_exception_variant (t, r);
2082 }
399fbdbd 2083 if (abi_version_at_least (8)
2084 || type == TYPE_MAIN_VARIANT (type))
862e5b6d 2085 /* Avoid adding the unqualified function type as a substitution. */
2086 write_function_type (t);
2087 else
2088 write_type (t);
229a58b1 2089 if (abi_warn_or_compat_version_crosses (8))
74b777e5 2090 G.need_abi_warning = 1;
862e5b6d 2091 }
2092 else
2093 write_type (t);
2ba14c1f 2094 }
621eb26c 2095 else if (TREE_CODE (type) == ARRAY_TYPE)
2096 /* It is important not to use the TYPE_MAIN_VARIANT of TYPE here
2097 so that the cv-qualification of the element type is available
2098 in write_array_type. */
2099 write_array_type (type);
98eaf693 2100 else
e75e76ea 2101 {
eddcdde1 2102 tree type_orig = type;
2103
e75e76ea 2104 /* See through any typedefs. */
2105 type = TYPE_MAIN_VARIANT (type);
2ba14c1f 2106 if (TREE_CODE (type) == FUNCTION_TYPE
2107 || TREE_CODE (type) == METHOD_TYPE)
e5122931 2108 type = cxx_copy_lang_qualifiers (type, type_orig);
e75e76ea 2109
480e417f 2110 /* According to the C++ ABI, some library classes are passed the
2111 same as the scalar type of their single member and use the same
2112 mangling. */
2113 if (TREE_CODE (type) == RECORD_TYPE && TYPE_TRANSPARENT_AGGR (type))
2114 type = TREE_TYPE (first_field (type));
2115
05765a91 2116 if (TYPE_PTRDATAMEM_P (type))
120c0017 2117 write_pointer_to_member_type (type);
eddcdde1 2118 else
2119 {
333715c2 2120 /* Handle any target-specific fundamental types. */
2121 const char *target_mangling
eddcdde1 2122 = targetm.mangle_type (type_orig);
333715c2 2123
2124 if (target_mangling)
2125 {
2126 write_string (target_mangling);
43bf2fc5 2127 /* Add substitutions for types other than fundamental
2128 types. */
c21c015b 2129 if (!VOID_TYPE_P (type)
43bf2fc5 2130 && TREE_CODE (type) != INTEGER_TYPE
2131 && TREE_CODE (type) != REAL_TYPE
2132 && TREE_CODE (type) != BOOLEAN_TYPE)
2133 add_substitution (type);
333715c2 2134 return;
2135 }
2136
eddcdde1 2137 switch (TREE_CODE (type))
2138 {
2139 case VOID_TYPE:
2140 case BOOLEAN_TYPE:
2141 case INTEGER_TYPE: /* Includes wchar_t. */
2142 case REAL_TYPE:
e4583147 2143 case FIXED_POINT_TYPE:
eddcdde1 2144 {
2145 /* If this is a typedef, TYPE may not be one of
2146 the standard builtin type nodes, but an alias of one. Use
2147 TYPE_MAIN_VARIANT to get to the underlying builtin type. */
2148 write_builtin_type (TYPE_MAIN_VARIANT (type));
2149 ++is_builtin_type;
2150 }
2151 break;
2152
2153 case COMPLEX_TYPE:
2154 write_char ('C');
2155 write_type (TREE_TYPE (type));
2156 break;
2157
2158 case FUNCTION_TYPE:
2159 case METHOD_TYPE:
2160 write_function_type (type);
2161 break;
2162
2163 case UNION_TYPE:
2164 case RECORD_TYPE:
2165 case ENUMERAL_TYPE:
2166 /* A pointer-to-member function is represented as a special
2167 RECORD_TYPE, so check for this first. */
2168 if (TYPE_PTRMEMFUNC_P (type))
2169 write_pointer_to_member_type (type);
2170 else
2171 write_class_enum_type (type);
2172 break;
2173
2174 case TYPENAME_TYPE:
2175 case UNBOUND_CLASS_TEMPLATE:
2176 /* We handle TYPENAME_TYPEs and UNBOUND_CLASS_TEMPLATEs like
2177 ordinary nested names. */
2178 write_nested_name (TYPE_STUB_DECL (type));
2179 break;
2180
2181 case POINTER_TYPE:
eddcdde1 2182 case REFERENCE_TYPE:
c21c015b 2183 if (TYPE_PTR_P (type))
80e93d60 2184 write_char ('P');
2185 else if (TYPE_REF_IS_RVALUE (type))
2186 write_char ('O');
c4692e04 2187 else
2188 write_char ('R');
80e93d60 2189 {
2190 tree target = TREE_TYPE (type);
2191 /* Attribute const/noreturn are not reflected in mangling.
2192 We strip them here rather than at a lower level because
2193 a typedef or template argument can have function type
2194 with function-cv-quals (that use the same representation),
2195 but you can't have a pointer/reference to such a type. */
74b777e5 2196 if (TREE_CODE (target) == FUNCTION_TYPE)
2197 {
229a58b1 2198 if (abi_warn_or_compat_version_crosses (5)
74b777e5 2199 && TYPE_QUALS (target) != TYPE_UNQUALIFIED)
2200 G.need_abi_warning = 1;
2201 if (abi_version_at_least (5))
2202 target = build_qualified_type (target, TYPE_UNQUALIFIED);
2203 }
80e93d60 2204 write_type (target);
2205 }
eddcdde1 2206 break;
2207
2208 case TEMPLATE_TYPE_PARM:
1610993e 2209 if (is_auto (type))
2210 {
5357d7fd 2211 if (AUTO_IS_DECLTYPE (type))
2212 write_identifier ("Dc");
2213 else
2214 write_identifier ("Da");
1610993e 2215 ++is_builtin_type;
2216 break;
2217 }
e3533433 2218 /* fall through. */
eddcdde1 2219 case TEMPLATE_PARM_INDEX:
2220 write_template_param (type);
2221 break;
2222
2223 case TEMPLATE_TEMPLATE_PARM:
2224 write_template_template_param (type);
2225 break;
2226
2227 case BOUND_TEMPLATE_TEMPLATE_PARM:
2228 write_template_template_param (type);
2229 write_template_args
2230 (TI_ARGS (TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (type)));
2231 break;
2232
2233 case VECTOR_TYPE:
29e2e80a 2234 if (abi_version_at_least (4))
2235 {
2236 write_string ("Dv");
2237 /* Non-constant vector size would be encoded with
2238 _ expression, but we don't support that yet. */
f08ee65f 2239 write_unsigned_number (TYPE_VECTOR_SUBPARTS (type)
2240 .to_constant ());
29e2e80a 2241 write_char ('_');
2242 }
2243 else
74b777e5 2244 write_string ("U8__vector");
229a58b1 2245 if (abi_warn_or_compat_version_crosses (4))
74b777e5 2246 G.need_abi_warning = 1;
eddcdde1 2247 write_type (TREE_TYPE (type));
2248 break;
2249
2250 case TYPE_PACK_EXPANSION:
4682b6fe 2251 write_string ("Dp");
eddcdde1 2252 write_type (PACK_EXPANSION_PATTERN (type));
2253 break;
2254
34da8800 2255 case DECLTYPE_TYPE:
a8b75081 2256 /* These shouldn't make it into mangling. */
2257 gcc_assert (!DECLTYPE_FOR_LAMBDA_CAPTURE (type)
a75d43a4 2258 && !DECLTYPE_FOR_LAMBDA_PROXY (type));
a8b75081 2259
87d553db 2260 /* In ABI <5, we stripped decltype of a plain decl. */
74b777e5 2261 if (DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (type))
4d7aaf8e 2262 {
2263 tree expr = DECLTYPE_TYPE_EXPR (type);
2264 tree etype = NULL_TREE;
2265 switch (TREE_CODE (expr))
2266 {
2267 case VAR_DECL:
2268 case PARM_DECL:
2269 case RESULT_DECL:
2270 case FUNCTION_DECL:
2271 case CONST_DECL:
2272 case TEMPLATE_PARM_INDEX:
2273 etype = TREE_TYPE (expr);
2274 break;
2275
2276 default:
2277 break;
2278 }
2279
2280 if (etype && !type_uses_auto (etype))
2281 {
229a58b1 2282 if (abi_warn_or_compat_version_crosses (5))
74b777e5 2283 G.need_abi_warning = 1;
2284 if (!abi_version_at_least (5))
2285 {
2286 write_type (etype);
2287 return;
2288 }
4d7aaf8e 2289 }
2290 }
2291
34da8800 2292 write_char ('D');
2293 if (DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (type))
2294 write_char ('t');
2295 else
2296 write_char ('T');
48d94ede 2297 ++cp_unevaluated_operand;
34da8800 2298 write_expression (DECLTYPE_TYPE_EXPR (type));
48d94ede 2299 --cp_unevaluated_operand;
34da8800 2300 write_char ('E');
2301 break;
2302
fa67d8e8 2303 case NULLPTR_TYPE:
2304 write_string ("Dn");
fbcdace8 2305 if (abi_version_at_least (7))
2306 ++is_builtin_type;
229a58b1 2307 if (abi_warn_or_compat_version_crosses (7))
74b777e5 2308 G.need_abi_warning = 1;
fa67d8e8 2309 break;
2310
e56ff3c4 2311 case TYPEOF_TYPE:
2312 sorry ("mangling typeof, use decltype instead");
2313 break;
2314
8de5c43e 2315 case UNDERLYING_TYPE:
2316 sorry ("mangling __underlying_type");
2317 break;
2318
c7ca48ea 2319 case LANG_TYPE:
fa67d8e8 2320 /* fall through. */
c7ca48ea 2321
eddcdde1 2322 default:
2323 gcc_unreachable ();
2324 }
e75e76ea 2325 }
2326 }
98eaf693 2327
2328 /* Types other than builtin types are substitution candidates. */
2329 if (!is_builtin_type)
2330 add_substitution (type);
2331}
2332
399fbdbd 2333/* qsort callback for sorting a vector of attribute entries. */
2334
2335static int
2336attr_strcmp (const void *p1, const void *p2)
2337{
2338 tree a1 = *(const tree*)p1;
2339 tree a2 = *(const tree*)p2;
2340
2341 const attribute_spec *as1 = lookup_attribute_spec (get_attribute_name (a1));
2342 const attribute_spec *as2 = lookup_attribute_spec (get_attribute_name (a2));
2343
2344 return strcmp (as1->name, as2->name);
2345}
2346
98eaf693 2347/* Non-terminal <CV-qualifiers> for type nodes. Returns the number of
2348 CV-qualifiers written for TYPE.
2349
2350 <CV-qualifiers> ::= [r] [V] [K] */
2351
2352static int
61e3d157 2353write_CV_qualifiers_for_type (const tree type)
98eaf693 2354{
2355 int num_qualifiers = 0;
2356
2357 /* The order is specified by:
2358
2359 "In cases where multiple order-insensitive qualifiers are
2360 present, they should be ordered 'K' (closest to the base type),
399fbdbd 2361 'V', 'r', and 'U' (farthest from the base type) ..." */
2362
2363 /* Mangle attributes that affect type identity as extended qualifiers.
2364
399fbdbd 2365 We don't do this with classes and enums because their attributes
2366 are part of their definitions, not something added on. */
2367
e07f1d23 2368 if (!OVERLOAD_TYPE_P (type))
399fbdbd 2369 {
2370 auto_vec<tree> vec;
2371 for (tree a = TYPE_ATTRIBUTES (type); a; a = TREE_CHAIN (a))
2372 {
2373 tree name = get_attribute_name (a);
2374 const attribute_spec *as = lookup_attribute_spec (name);
2375 if (as && as->affects_type_identity
6d02e6b2 2376 && !is_attribute_p ("transaction_safe", name)
399fbdbd 2377 && !is_attribute_p ("abi_tag", name))
2378 vec.safe_push (a);
2379 }
229a58b1 2380 if (abi_warn_or_compat_version_crosses (10) && !vec.is_empty ())
e07f1d23 2381 G.need_abi_warning = true;
2382 if (abi_version_at_least (10))
399fbdbd 2383 {
e07f1d23 2384 vec.qsort (attr_strcmp);
2385 while (!vec.is_empty())
399fbdbd 2386 {
e07f1d23 2387 tree a = vec.pop();
2388 const attribute_spec *as
2389 = lookup_attribute_spec (get_attribute_name (a));
2390
2391 write_char ('U');
2392 write_unsigned_number (strlen (as->name));
2393 write_string (as->name);
2394 if (TREE_VALUE (a))
399fbdbd 2395 {
e07f1d23 2396 write_char ('I');
2397 for (tree args = TREE_VALUE (a); args;
2398 args = TREE_CHAIN (args))
2399 {
2400 tree arg = TREE_VALUE (args);
2401 write_template_arg (arg);
2402 }
2403 write_char ('E');
399fbdbd 2404 }
399fbdbd 2405
e07f1d23 2406 ++num_qualifiers;
2407 }
399fbdbd 2408 }
2409 }
621eb26c 2410
399fbdbd 2411 /* Note that we do not use cp_type_quals below; given "const
621eb26c 2412 int[3]", the "const" is emitted with the "int", not with the
2413 array. */
ce494fcf 2414 cp_cv_quals quals = TYPE_QUALS (type);
98eaf693 2415
ce494fcf 2416 if (quals & TYPE_QUAL_RESTRICT)
98eaf693 2417 {
2418 write_char ('r');
2419 ++num_qualifiers;
2420 }
ce494fcf 2421 if (quals & TYPE_QUAL_VOLATILE)
98eaf693 2422 {
2423 write_char ('V');
2424 ++num_qualifiers;
2425 }
ce494fcf 2426 if (quals & TYPE_QUAL_CONST)
98eaf693 2427 {
2428 write_char ('K');
2429 ++num_qualifiers;
2430 }
2431
2432 return num_qualifiers;
2433}
2434
9031d10b 2435/* Non-terminal <builtin-type>.
98eaf693 2436
9031d10b 2437 <builtin-type> ::= v # void
653e5405 2438 ::= b # bool
2439 ::= w # wchar_t
2440 ::= c # char
2441 ::= a # signed char
2442 ::= h # unsigned char
2443 ::= s # short
2444 ::= t # unsigned short
2445 ::= i # int
2446 ::= j # unsigned int
2447 ::= l # long
2448 ::= m # unsigned long
2449 ::= x # long long, __int64
2450 ::= y # unsigned long long, __int64
2451 ::= n # __int128
2452 ::= o # unsigned __int128
2453 ::= f # float
2454 ::= d # double
2455 ::= e # long double, __float80
2456 ::= g # __float128 [not supported]
2457 ::= u <source-name> # vendor extended type */
98eaf693 2458
9031d10b 2459static void
61e3d157 2460write_builtin_type (tree type)
98eaf693 2461{
9a984729 2462 if (TYPE_CANONICAL (type))
2463 type = TYPE_CANONICAL (type);
2464
98eaf693 2465 switch (TREE_CODE (type))
2466 {
2467 case VOID_TYPE:
2468 write_char ('v');
2469 break;
2470
2471 case BOOLEAN_TYPE:
2472 write_char ('b');
2473 break;
2474
2475 case INTEGER_TYPE:
82362779 2476 /* TYPE may still be wchar_t, char8_t, char16_t, or char32_t, since that
924bbf02 2477 isn't in integer_type_nodes. */
84ea6a1d 2478 if (type == wchar_type_node)
98eaf693 2479 write_char ('w');
82362779 2480 else if (type == char8_type_node)
2481 write_string ("Du");
924bbf02 2482 else if (type == char16_type_node)
4682b6fe 2483 write_string ("Ds");
924bbf02 2484 else if (type == char32_type_node)
4682b6fe 2485 write_string ("Di");
98eaf693 2486 else
2487 {
2488 size_t itk;
2489 /* Assume TYPE is one of the shared integer type nodes. Find
2490 it in the array of these nodes. */
90a83261 2491 iagain:
98eaf693 2492 for (itk = 0; itk < itk_none; ++itk)
890d0caa 2493 if (integer_types[itk] != NULL_TREE
9f75f026 2494 && integer_type_codes[itk] != '\0'
890d0caa 2495 && type == integer_types[itk])
98eaf693 2496 {
2497 /* Print the corresponding single-letter code. */
2498 write_char (integer_type_codes[itk]);
2499 break;
2500 }
52eb8ed3 2501
98eaf693 2502 if (itk == itk_none)
90a83261 2503 {
771d21fa 2504 tree t = c_common_type_for_mode (TYPE_MODE (type),
78a8ed03 2505 TYPE_UNSIGNED (type));
42a8ab57 2506 if (type != t)
52eb8ed3 2507 {
42a8ab57 2508 type = t;
2509 goto iagain;
52eb8ed3 2510 }
42a8ab57 2511
2512 if (TYPE_PRECISION (type) == 128)
2513 write_char (TYPE_UNSIGNED (type) ? 'o' : 'n');
6526d3a8 2514 else
2515 {
42a8ab57 2516 /* Allow for cases where TYPE is not one of the shared
2517 integer type nodes and write a "vendor extended builtin
2518 type" with a name the form intN or uintN, respectively.
2519 Situations like this can happen if you have an
2520 __attribute__((__mode__(__SI__))) type and use exotic
9fb415cc 2521 switches like '-mint8' on AVR. Of course, this is
2522 undefined by the C++ ABI (and '-mint8' is not even
2523 Standard C conforming), but when using such special
2524 options you're pretty much in nowhere land anyway. */
42a8ab57 2525 const char *prefix;
2526 char prec[11]; /* up to ten digits for an unsigned */
2527
2528 prefix = TYPE_UNSIGNED (type) ? "uint" : "int";
2529 sprintf (prec, "%u", (unsigned) TYPE_PRECISION (type));
2530 write_char ('u'); /* "vendor extended builtin type" */
2531 write_unsigned_number (strlen (prefix) + strlen (prec));
2532 write_string (prefix);
2533 write_string (prec);
6526d3a8 2534 }
90a83261 2535 }
98eaf693 2536 }
2537 break;
2538
2539 case REAL_TYPE:
c93d719b 2540 if (type == float_type_node)
98eaf693 2541 write_char ('f');
c93d719b 2542 else if (type == double_type_node)
98eaf693 2543 write_char ('d');
84ea6a1d 2544 else if (type == long_double_type_node)
98eaf693 2545 write_char ('e');
dcd70a22 2546 else if (type == dfloat32_type_node)
2547 write_string ("Df");
2548 else if (type == dfloat64_type_node)
2549 write_string ("Dd");
2550 else if (type == dfloat128_type_node)
2551 write_string ("De");
98eaf693 2552 else
092b1d6f 2553 gcc_unreachable ();
98eaf693 2554 break;
2555
e4583147 2556 case FIXED_POINT_TYPE:
2557 write_string ("DF");
2558 if (GET_MODE_IBIT (TYPE_MODE (type)) > 0)
2559 write_unsigned_number (GET_MODE_IBIT (TYPE_MODE (type)));
2560 if (type == fract_type_node
2561 || type == sat_fract_type_node
2562 || type == accum_type_node
2563 || type == sat_accum_type_node)
2564 write_char ('i');
2565 else if (type == unsigned_fract_type_node
2566 || type == sat_unsigned_fract_type_node
2567 || type == unsigned_accum_type_node
2568 || type == sat_unsigned_accum_type_node)
2569 write_char ('j');
2570 else if (type == short_fract_type_node
2571 || type == sat_short_fract_type_node
2572 || type == short_accum_type_node
2573 || type == sat_short_accum_type_node)
2574 write_char ('s');
2575 else if (type == unsigned_short_fract_type_node
2576 || type == sat_unsigned_short_fract_type_node
2577 || type == unsigned_short_accum_type_node
2578 || type == sat_unsigned_short_accum_type_node)
2579 write_char ('t');
2580 else if (type == long_fract_type_node
2581 || type == sat_long_fract_type_node
2582 || type == long_accum_type_node
2583 || type == sat_long_accum_type_node)
2584 write_char ('l');
2585 else if (type == unsigned_long_fract_type_node
2586 || type == sat_unsigned_long_fract_type_node
2587 || type == unsigned_long_accum_type_node
2588 || type == sat_unsigned_long_accum_type_node)
2589 write_char ('m');
2590 else if (type == long_long_fract_type_node
2591 || type == sat_long_long_fract_type_node
2592 || type == long_long_accum_type_node
2593 || type == sat_long_long_accum_type_node)
2594 write_char ('x');
2595 else if (type == unsigned_long_long_fract_type_node
2596 || type == sat_unsigned_long_long_fract_type_node
2597 || type == unsigned_long_long_accum_type_node
2598 || type == sat_unsigned_long_long_accum_type_node)
2599 write_char ('y');
2600 else
2601 sorry ("mangling unknown fixed point type");
2602 write_unsigned_number (GET_MODE_FBIT (TYPE_MODE (type)));
2603 if (TYPE_SATURATING (type))
2604 write_char ('s');
2605 else
2606 write_char ('n');
2607 break;
2608
98eaf693 2609 default:
092b1d6f 2610 gcc_unreachable ();
98eaf693 2611 }
2612}
2613
2614/* Non-terminal <function-type>. NODE is a FUNCTION_TYPE or
aa6b4383 2615 METHOD_TYPE. The return type is mangled before the parameter
2616 types.
98eaf693 2617
2ba14c1f 2618 <function-type> ::= F [Y] <bare-function-type> [<ref-qualifier>] E */
98eaf693 2619
2620static void
61e3d157 2621write_function_type (const tree type)
98eaf693 2622{
2623 MANGLE_TRACE_TREE ("function-type", type);
2624
58274fe8 2625 /* For a pointer to member function, the function type may have
2626 cv-qualifiers, indicating the quals for the artificial 'this'
2627 parameter. */
2628 if (TREE_CODE (type) == METHOD_TYPE)
2629 {
2630 /* The first parameter must be a POINTER_TYPE pointing to the
2631 `this' parameter. */
a8d966c1 2632 tree this_type = class_of_this_parm (type);
58274fe8 2633 write_CV_qualifiers_for_type (this_type);
2634 }
2635
2e9e9363 2636 write_exception_spec (TYPE_RAISES_EXCEPTIONS (type));
2637
6d02e6b2 2638 if (tx_safe_fn_type_p (type))
2639 write_string ("Dx");
2640
98eaf693 2641 write_char ('F');
2642 /* We don't track whether or not a type is `extern "C"'. Note that
2643 you can have an `extern "C"' function that does not have
2644 `extern "C"' type, and vice versa:
2645
2646 extern "C" typedef void function_t();
2647 function_t f; // f has C++ linkage, but its type is
653e5405 2648 // `extern "C"'
98eaf693 2649
2650 typedef void function_t();
2651 extern "C" function_t f; // Vice versa.
2652
2653 See [dcl.link]. */
9031d10b 2654 write_bare_function_type (type, /*include_return_type_p=*/1,
7c8696b2 2655 /*decl=*/NULL);
2ba14c1f 2656 if (FUNCTION_REF_QUALIFIED (type))
2657 {
2658 if (FUNCTION_RVALUE_QUALIFIED (type))
2659 write_char ('O');
2660 else
2661 write_char ('R');
2662 }
98eaf693 2663 write_char ('E');
2664}
2665
7c8696b2 2666/* Non-terminal <bare-function-type>. TYPE is a FUNCTION_TYPE or
3160db1d 2667 METHOD_TYPE. If INCLUDE_RETURN_TYPE is nonzero, the return value
7c8696b2 2668 is mangled before the parameter types. If non-NULL, DECL is
c93d719b 2669 FUNCTION_DECL for the function whose type is being emitted. */
98eaf693 2670
2671static void
61e3d157 2672write_bare_function_type (const tree type, const int include_return_type_p,
2673 const tree decl)
98eaf693 2674{
2675 MANGLE_TRACE_TREE ("bare-function-type", type);
2676
2677 /* Mangle the return type, if requested. */
c93d719b 2678 if (include_return_type_p)
98eaf693 2679 write_type (TREE_TYPE (type));
2680
2681 /* Now mangle the types of the arguments. */
4d7aaf8e 2682 ++G.parm_depth;
9031d10b 2683 write_method_parms (TYPE_ARG_TYPES (type),
7c8696b2 2684 TREE_CODE (type) == METHOD_TYPE,
2685 decl);
4d7aaf8e 2686 --G.parm_depth;
98eaf693 2687}
2688
2689/* Write the mangled representation of a method parameter list of
3160db1d 2690 types given in PARM_TYPES. If METHOD_P is nonzero, the function is
7c8696b2 2691 considered a non-static method, and the this parameter is omitted.
2692 If non-NULL, DECL is the FUNCTION_DECL for the function whose
2693 parameters are being emitted. */
98eaf693 2694
2695static void
61e3d157 2696write_method_parms (tree parm_types, const int method_p, const tree decl)
98eaf693 2697{
7c8696b2 2698 tree first_parm_type;
2699 tree parm_decl = decl ? DECL_ARGUMENTS (decl) : NULL_TREE;
2700
98eaf693 2701 /* Assume this parameter type list is variable-length. If it ends
2702 with a void type, then it's not. */
2703 int varargs_p = 1;
2704
2705 /* If this is a member function, skip the first arg, which is the
9031d10b 2706 this pointer.
98eaf693 2707 "Member functions do not encode the type of their implicit this
9031d10b 2708 parameter."
2709
7c8696b2 2710 Similarly, there's no need to mangle artificial parameters, like
2711 the VTT parameters for constructors and destructors. */
98eaf693 2712 if (method_p)
98eaf693 2713 {
7c8696b2 2714 parm_types = TREE_CHAIN (parm_types);
1767a056 2715 parm_decl = parm_decl ? DECL_CHAIN (parm_decl) : NULL_TREE;
98eaf693 2716
7c8696b2 2717 while (parm_decl && DECL_ARTIFICIAL (parm_decl))
2718 {
2719 parm_types = TREE_CHAIN (parm_types);
1767a056 2720 parm_decl = DECL_CHAIN (parm_decl);
7c8696b2 2721 }
b4c5b883 2722
2723 if (decl && ctor_omit_inherited_parms (decl))
2724 /* Bring back parameters omitted from an inherited ctor. */
2725 parm_types = FUNCTION_FIRST_USER_PARMTYPE (DECL_ORIGIN (decl));
7c8696b2 2726 }
2727
9031d10b 2728 for (first_parm_type = parm_types;
2729 parm_types;
7c8696b2 2730 parm_types = TREE_CHAIN (parm_types))
2731 {
2732 tree parm = TREE_VALUE (parm_types);
e3cfe3ce 2733 if (parm == void_type_node)
98eaf693 2734 {
2735 /* "Empty parameter lists, whether declared as () or
2736 conventionally as (void), are encoded with a void parameter
2737 (v)." */
7c8696b2 2738 if (parm_types == first_parm_type)
98eaf693 2739 write_type (parm);
2740 /* If the parm list is terminated with a void type, it's
2741 fixed-length. */
2742 varargs_p = 0;
2743 /* A void type better be the last one. */
b4df430b 2744 gcc_assert (TREE_CHAIN (parm_types) == NULL);
98eaf693 2745 }
2746 else
2747 write_type (parm);
2748 }
2749
2750 if (varargs_p)
2751 /* <builtin-type> ::= z # ellipsis */
2752 write_char ('z');
2753}
2754
2755/* <class-enum-type> ::= <name> */
2756
9031d10b 2757static void
61e3d157 2758write_class_enum_type (const tree type)
98eaf693 2759{
bbb9efab 2760 write_name (TYPE_NAME (type), /*ignore_local_scope=*/0);
98eaf693 2761}
2762
2763/* Non-terminal <template-args>. ARGS is a TREE_VEC of template
2764 arguments.
2765
f59dc0de 2766 <template-args> ::= I <template-arg>* E */
98eaf693 2767
2768static void
61e3d157 2769write_template_args (tree args)
98eaf693 2770{
25f4fc1e 2771 int i;
f59dc0de 2772 int length = 0;
9031d10b 2773
98eaf693 2774 MANGLE_TRACE_TREE ("template-args", args);
2775
94302392 2776 write_char ('I');
98eaf693 2777
f59dc0de 2778 if (args)
2779 length = TREE_VEC_LENGTH (args);
94302392 2780
fbfe1b55 2781 if (args && length && TREE_CODE (TREE_VEC_ELT (args, 0)) == TREE_VEC)
94302392 2782 {
25f4fc1e 2783 /* We have nested template args. We want the innermost template
2784 argument list. */
2785 args = TREE_VEC_ELT (args, length - 1);
2786 length = TREE_VEC_LENGTH (args);
98eaf693 2787 }
25f4fc1e 2788 for (i = 0; i < length; ++i)
2789 write_template_arg (TREE_VEC_ELT (args, i));
9031d10b 2790
98eaf693 2791 write_char ('E');
2792}
2793
4682b6fe 2794/* Write out the
2795 <unqualified-name>
2796 <unqualified-name> <template-args>
2797 part of SCOPE_REF or COMPONENT_REF mangling. */
2798
2799static void
2800write_member_name (tree member)
2801{
991449b2 2802 if (identifier_p (member))
322066d8 2803 {
991449b2 2804 if (abi_version_at_least (11) && IDENTIFIER_ANY_OP_P (member))
2805 {
2806 write_string ("on");
2807 if (abi_warn_or_compat_version_crosses (11))
2808 G.need_abi_warning = 1;
2809 }
2810 write_unqualified_id (member);
322066d8 2811 }
4682b6fe 2812 else if (DECL_P (member))
fb3127b9 2813 write_unqualified_name (member);
4682b6fe 2814 else if (TREE_CODE (member) == TEMPLATE_ID_EXPR)
2815 {
2816 tree name = TREE_OPERAND (member, 0);
6767ca9a 2817 name = OVL_FIRST (name);
4682b6fe 2818 write_member_name (name);
2819 write_template_args (TREE_OPERAND (member, 1));
2820 }
2821 else
2822 write_expression (member);
2823}
2824
98eaf693 2825/* <expression> ::= <unary operator-name> <expression>
2826 ::= <binary operator-name> <expression> <expression>
2827 ::= <expr-primary>
2828
2829 <expr-primary> ::= <template-param>
653e5405 2830 ::= L <type> <value number> E # literal
2831 ::= L <mangled-name> E # external name
34eac767 2832 ::= st <type> # sizeof
2833 ::= sr <type> <unqualified-name> # dependent name
653e5405 2834 ::= sr <type> <unqualified-name> <template-args> */
98eaf693 2835
2836static void
61e3d157 2837write_expression (tree expr)
98eaf693 2838{
3986b463 2839 enum tree_code code = TREE_CODE (expr);
98eaf693 2840
1ed9e78d 2841 if (TREE_CODE (expr) == TARGET_EXPR)
2842 {
2843 expr = TARGET_EXPR_INITIAL (expr);
2844 code = TREE_CODE (expr);
2845 }
2846
f0474a47 2847 /* Skip NOP_EXPR and CONVERT_EXPR. They can occur when (say) a pointer
2848 argument is converted (via qualification conversions) to another type. */
2849 while (CONVERT_EXPR_CODE_P (code)
d76863c8 2850 || location_wrapper_p (expr)
07850d16 2851 /* Parentheses aren't mangled. */
2852 || code == PAREN_EXPR
1ed9e78d 2853 || code == NON_LVALUE_EXPR
2854 || (code == VIEW_CONVERT_EXPR
2855 && TREE_CODE (TREE_OPERAND (expr, 0)) == TEMPLATE_PARM_INDEX))
b312a686 2856 {
2857 expr = TREE_OPERAND (expr, 0);
2858 code = TREE_CODE (expr);
2859 }
2860
8272c334 2861 if (code == BASELINK
2862 && (!type_unknown_p (expr)
2863 || !BASELINK_QUALIFIED_P (expr)))
0e5cde0c 2864 {
2865 expr = BASELINK_FUNCTIONS (expr);
2866 code = TREE_CODE (expr);
2867 }
2868
98eaf693 2869 /* Handle pointers-to-members by making them look like expression
2870 nodes. */
2871 if (code == PTRMEM_CST)
2872 {
2873 expr = build_nt (ADDR_EXPR,
fbb01da7 2874 build_qualified_name (/*type=*/NULL_TREE,
2875 PTRMEM_CST_CLASS (expr),
2876 PTRMEM_CST_MEMBER (expr),
2877 /*template_p=*/false));
98eaf693 2878 code = TREE_CODE (expr);
2879 }
2880
47cd6605 2881 /* Handle template parameters. */
9031d10b 2882 if (code == TEMPLATE_TYPE_PARM
98eaf693 2883 || code == TEMPLATE_TEMPLATE_PARM
1e93ca27 2884 || code == BOUND_TEMPLATE_TEMPLATE_PARM
2885 || code == TEMPLATE_PARM_INDEX)
98eaf693 2886 write_template_param (expr);
2887 /* Handle literals. */
ce45a448 2888 else if (TREE_CODE_CLASS (code) == tcc_constant
f591db9a 2889 || code == CONST_DECL)
98eaf693 2890 write_template_arg_literal (expr);
56f83c40 2891 else if (code == PARM_DECL && DECL_ARTIFICIAL (expr))
2892 {
e34c848a 2893 gcc_assert (id_equal (DECL_NAME (expr), "this"));
56f83c40 2894 write_string ("fpT");
2895 }
34eac767 2896 else if (code == PARM_DECL)
2897 {
e92154af 2898 /* A function parameter used in a late-specified return type. */
32d008d9 2899 int index = DECL_PARM_INDEX (expr);
4d7aaf8e 2900 int level = DECL_PARM_LEVEL (expr);
2901 int delta = G.parm_depth - level + 1;
32d008d9 2902 gcc_assert (index >= 1);
4d7aaf8e 2903 write_char ('f');
2904 if (delta != 0)
2905 {
87d553db 2906 if (abi_version_at_least (5))
4d7aaf8e 2907 {
2908 /* Let L be the number of function prototype scopes from the
2909 innermost one (in which the parameter reference occurs) up
2910 to (and including) the one containing the declaration of
2911 the referenced parameter. If the parameter declaration
2912 clause of the innermost function prototype scope has been
2913 completely seen, it is not counted (in that case -- which
2914 is perhaps the most common -- L can be zero). */
2915 write_char ('L');
2916 write_unsigned_number (delta - 1);
2917 }
229a58b1 2918 if (abi_warn_or_compat_version_crosses (5))
4d7aaf8e 2919 G.need_abi_warning = true;
2920 }
2921 write_char ('p');
a8b75081 2922 write_compact_number (index - 1);
34eac767 2923 }
98eaf693 2924 else if (DECL_P (expr))
2925 {
2926 write_char ('L');
1da3f78a 2927 write_mangled_name (expr, false);
98eaf693 2928 write_char ('E');
2929 }
17fdf85c 2930 else if (TREE_CODE (expr) == SIZEOF_EXPR)
121296ee 2931 {
17fdf85c 2932 tree op = TREE_OPERAND (expr, 0);
2933
2934 if (PACK_EXPANSION_P (op))
2935 {
2936 if (abi_warn_or_compat_version_crosses (11))
2937 G.need_abi_warning = true;
2938 if (abi_version_at_least (11))
2939 {
2940 /* sZ rather than szDp. */
2941 write_string ("sZ");
2942 write_expression (PACK_EXPANSION_PATTERN (op));
2943 return;
2944 }
2945 }
2946
2947 if (SIZEOF_EXPR_TYPE_P (expr))
2948 {
2949 write_string ("st");
2950 write_type (TREE_TYPE (op));
2951 }
2952 else if (ARGUMENT_PACK_P (op))
2953 {
2954 tree args = ARGUMENT_PACK_ARGS (op);
2955 int length = TREE_VEC_LENGTH (args);
2956 if (abi_warn_or_compat_version_crosses (10))
2957 G.need_abi_warning = true;
2958 if (abi_version_at_least (10))
2959 {
2960 /* sP <template-arg>* E # sizeof...(T), size of a captured
2961 template parameter pack from an alias template */
2962 write_string ("sP");
2963 for (int i = 0; i < length; ++i)
2964 write_template_arg (TREE_VEC_ELT (args, i));
2965 write_char ('E');
2966 }
2967 else
2968 {
2969 /* In GCC 5 we represented this sizeof wrong, with the effect
2970 that we mangled it as the last element of the pack. */
2971 tree arg = TREE_VEC_ELT (args, length-1);
2972 if (TYPE_P (op))
2973 {
2974 write_string ("st");
2975 write_type (arg);
2976 }
2977 else
2978 {
2979 write_string ("sz");
2980 write_expression (arg);
2981 }
2982 }
2983 }
2984 else if (TYPE_P (TREE_OPERAND (expr, 0)))
2985 {
2986 write_string ("st");
2987 write_type (TREE_OPERAND (expr, 0));
2988 }
2989 else
2990 goto normal_expr;
74c75ba5 2991 }
e92154af 2992 else if (TREE_CODE (expr) == ALIGNOF_EXPR
2993 && TYPE_P (TREE_OPERAND (expr, 0)))
2994 {
2995 write_string ("at");
2996 write_type (TREE_OPERAND (expr, 0));
2997 }
8272c334 2998 else if (code == SCOPE_REF
2999 || code == BASELINK)
94302392 3000 {
8272c334 3001 tree scope, member;
3002 if (code == SCOPE_REF)
3003 {
3004 scope = TREE_OPERAND (expr, 0);
3005 member = TREE_OPERAND (expr, 1);
af48cea2 3006 if (BASELINK_P (member))
3007 member = BASELINK_FUNCTIONS (member);
8272c334 3008 }
3009 else
3010 {
3011 scope = BINFO_TYPE (BASELINK_ACCESS_BINFO (expr));
3012 member = BASELINK_FUNCTIONS (expr);
3013 }
94302392 3014
3015 /* If the MEMBER is a real declaration, then the qualifying
3016 scope was not dependent. Ideally, we would not have a
3017 SCOPE_REF in those cases, but sometimes we do. If the second
3018 argument is a DECL, then the name must not have been
3019 dependent. */
f591db9a 3020 if (DECL_P (member))
94302392 3021 write_expression (member);
3022 else
3023 {
94302392 3024 write_string ("sr");
3025 write_type (scope);
c44a7393 3026 write_member_name (member);
94302392 3027 }
3028 }
86ccc124 3029 else if (INDIRECT_REF_P (expr)
e92154af 3030 && TREE_TYPE (TREE_OPERAND (expr, 0))
90ad495b 3031 && TYPE_REF_P (TREE_TYPE (TREE_OPERAND (expr, 0))))
e92154af 3032 {
3033 write_expression (TREE_OPERAND (expr, 0));
3034 }
694683bb 3035 else if (identifier_p (expr))
c44a7393 3036 {
3037 /* An operator name appearing as a dependent name needs to be
3038 specially marked to disambiguate between a use of the operator
3039 name and a use of the operator in an expression. */
991449b2 3040 if (IDENTIFIER_ANY_OP_P (expr))
c44a7393 3041 write_string ("on");
3042 write_unqualified_id (expr);
3043 }
3044 else if (TREE_CODE (expr) == TEMPLATE_ID_EXPR)
3045 {
3046 tree fn = TREE_OPERAND (expr, 0);
6767ca9a 3047 fn = OVL_NAME (fn);
991449b2 3048 if (IDENTIFIER_ANY_OP_P (fn))
c44a7393 3049 write_string ("on");
3050 write_unqualified_id (fn);
3051 write_template_args (TREE_OPERAND (expr, 1));
3052 }
cc5f60f5 3053 else if (TREE_CODE (expr) == MODOP_EXPR)
3054 {
3055 enum tree_code subop = TREE_CODE (TREE_OPERAND (expr, 1));
ca16a224 3056 const char *name = OVL_OP_INFO (true, subop)->mangled_name;
3057
cc5f60f5 3058 write_string (name);
3059 write_expression (TREE_OPERAND (expr, 0));
3060 write_expression (TREE_OPERAND (expr, 2));
3061 }
2d847c18 3062 else if (code == NEW_EXPR || code == VEC_NEW_EXPR)
3063 {
3064 /* ::= [gs] nw <expression>* _ <type> E
3065 ::= [gs] nw <expression>* _ <type> <initializer>
3066 ::= [gs] na <expression>* _ <type> E
3067 ::= [gs] na <expression>* _ <type> <initializer>
3068 <initializer> ::= pi <expression>* E */
3069 tree placement = TREE_OPERAND (expr, 0);
3070 tree type = TREE_OPERAND (expr, 1);
3071 tree nelts = TREE_OPERAND (expr, 2);
3072 tree init = TREE_OPERAND (expr, 3);
3073 tree t;
3074
3075 gcc_assert (code == NEW_EXPR);
3076 if (TREE_OPERAND (expr, 2))
3077 code = VEC_NEW_EXPR;
3078
3079 if (NEW_EXPR_USE_GLOBAL (expr))
3080 write_string ("gs");
3081
ca16a224 3082 write_string (OVL_OP_INFO (false, code)->mangled_name);
2d847c18 3083
3084 for (t = placement; t; t = TREE_CHAIN (t))
3085 write_expression (TREE_VALUE (t));
3086
3087 write_char ('_');
3088
3089 if (nelts)
3090 {
3091 tree domain;
3092 ++processing_template_decl;
3093 domain = compute_array_index_type (NULL_TREE, nelts,
3094 tf_warning_or_error);
3095 type = build_cplus_array_type (type, domain);
3096 --processing_template_decl;
3097 }
3098 write_type (type);
3099
3100 if (init && TREE_CODE (init) == TREE_LIST
8e8713cd 3101 && DIRECT_LIST_INIT_P (TREE_VALUE (init)))
2d847c18 3102 write_expression (TREE_VALUE (init));
3103 else
3104 {
3105 if (init)
3106 write_string ("pi");
3ab4693e 3107 if (init && init != void_node)
2d847c18 3108 for (t = init; t; t = TREE_CHAIN (t))
3109 write_expression (TREE_VALUE (t));
3110 write_char ('E');
3111 }
3112 }
3113 else if (code == DELETE_EXPR || code == VEC_DELETE_EXPR)
3114 {
3115 gcc_assert (code == DELETE_EXPR);
3116 if (DELETE_EXPR_USE_VEC (expr))
3117 code = VEC_DELETE_EXPR;
3118
3119 if (DELETE_EXPR_USE_GLOBAL (expr))
3120 write_string ("gs");
3121
ca16a224 3122 write_string (OVL_OP_INFO (false, code)->mangled_name);
2d847c18 3123
3124 write_expression (TREE_OPERAND (expr, 0));
3125 }
3126 else if (code == THROW_EXPR)
3127 {
3128 tree op = TREE_OPERAND (expr, 0);
3129 if (op)
3130 {
3131 write_string ("tw");
3132 write_expression (op);
3133 }
3134 else
3135 write_string ("tr");
3136 }
3137 else if (code == CONSTRUCTOR)
3138 {
f1f41a6c 3139 vec<constructor_elt, va_gc> *elts = CONSTRUCTOR_ELTS (expr);
2d847c18 3140 unsigned i; tree val;
3141
3142 if (BRACE_ENCLOSED_INITIALIZER_P (expr))
3143 write_string ("il");
3144 else
3145 {
3146 write_string ("tl");
3147 write_type (TREE_TYPE (expr));
3148 }
3149 FOR_EACH_CONSTRUCTOR_VALUE (elts, i, val)
3150 write_expression (val);
3151 write_char ('E');
3152 }
9c093b14 3153 else if (code == LAMBDA_EXPR)
3154 {
3155 /* [temp.over.link] Two lambda-expressions are never considered
3156 equivalent.
3157
3158 So just use the closure type mangling. */
3159 write_string ("tl");
3160 write_type (LAMBDA_EXPR_CLOSURE (expr));
3161 write_char ('E');
3162 }
2d847c18 3163 else if (dependent_name (expr))
3164 {
3165 write_unqualified_id (dependent_name (expr));
3166 }
98eaf693 3167 else
3168 {
17fdf85c 3169 normal_expr:
e9b1be72 3170 int i, len;
e92154af 3171 const char *name;
98eaf693 3172
148e86d7 3173 /* When we bind a variable or function to a non-type template
3174 argument with reference type, we create an ADDR_EXPR to show
3175 the fact that the entity's address has been taken. But, we
3176 don't actually want to output a mangling code for the `&'. */
3177 if (TREE_CODE (expr) == ADDR_EXPR
3178 && TREE_TYPE (expr)
90ad495b 3179 && TYPE_REF_P (TREE_TYPE (expr)))
e75e76ea 3180 {
3181 expr = TREE_OPERAND (expr, 0);
3182 if (DECL_P (expr))
3183 {
3184 write_expression (expr);
3185 return;
3186 }
148e86d7 3187
e75e76ea 3188 code = TREE_CODE (expr);
3189 }
94302392 3190
59280ded 3191 if (code == COMPONENT_REF)
3192 {
3193 tree ob = TREE_OPERAND (expr, 0);
3194
3195 if (TREE_CODE (ob) == ARROW_EXPR)
3196 {
ca16a224 3197 write_string (OVL_OP_INFO (false, code)->mangled_name);
59280ded 3198 ob = TREE_OPERAND (ob, 0);
dc66dd88 3199 write_expression (ob);
59280ded 3200 }
dc66dd88 3201 else if (!is_dummy_object (ob))
3202 {
3203 write_string ("dt");
3204 write_expression (ob);
3205 }
3206 /* else, for a non-static data member with no associated object (in
3207 unevaluated context), use the unresolved-name mangling. */
59280ded 3208
59280ded 3209 write_member_name (TREE_OPERAND (expr, 1));
3210 return;
3211 }
3212
98eaf693 3213 /* If it wasn't any of those, recursively expand the expression. */
ca16a224 3214 name = OVL_OP_INFO (false, code)->mangled_name;
2d847c18 3215
3216 /* We used to mangle const_cast and static_cast like a C cast. */
74b777e5 3217 if (code == CONST_CAST_EXPR
3218 || code == STATIC_CAST_EXPR)
2d847c18 3219 {
229a58b1 3220 if (abi_warn_or_compat_version_crosses (6))
74b777e5 3221 G.need_abi_warning = 1;
3222 if (!abi_version_at_least (6))
ca16a224 3223 name = OVL_OP_INFO (false, CAST_EXPR)->mangled_name;
2d847c18 3224 }
3225
e92154af 3226 if (name == NULL)
3227 {
c5d17c88 3228 switch (code)
3229 {
3230 case TRAIT_EXPR:
3231 error ("use of built-in trait %qE in function signature; "
3232 "use library traits instead", expr);
3233 break;
3234
3235 default:
3236 sorry ("mangling %C", code);
3237 break;
3238 }
e92154af 3239 return;
3240 }
3241 else
3242 write_string (name);
98eaf693 3243
ee95f490 3244 switch (code)
98eaf693 3245 {
653e5405 3246 case CALL_EXPR:
c6ac8f0e 3247 {
3248 tree fn = CALL_EXPR_FN (expr);
3249
3250 if (TREE_CODE (fn) == ADDR_EXPR)
3251 fn = TREE_OPERAND (fn, 0);
3252
3253 /* Mangle a dependent name as the name, not whatever happens to
3254 be the first function in the overload set. */
3255 if ((TREE_CODE (fn) == FUNCTION_DECL
3256 || TREE_CODE (fn) == OVERLOAD)
3257 && type_dependent_expression_p_push (expr))
6767ca9a 3258 fn = OVL_NAME (fn);
c6ac8f0e 3259
c44a7393 3260 write_expression (fn);
c6ac8f0e 3261 }
3262
34eac767 3263 for (i = 0; i < call_expr_nargs (expr); ++i)
3264 write_expression (CALL_EXPR_ARG (expr, i));
3265 write_char ('E');
653e5405 3266 break;
33df020e 3267
ee95f490 3268 case CAST_EXPR:
3269 write_type (TREE_TYPE (expr));
e92154af 3270 if (list_length (TREE_OPERAND (expr, 0)) == 1)
d6828f49 3271 write_expression (TREE_VALUE (TREE_OPERAND (expr, 0)));
e92154af 3272 else
3273 {
3274 tree args = TREE_OPERAND (expr, 0);
3275 write_char ('_');
3276 for (; args; args = TREE_CHAIN (args))
3277 write_expression (TREE_VALUE (args));
3278 write_char ('E');
3279 }
ee95f490 3280 break;
3281
2d847c18 3282 case DYNAMIC_CAST_EXPR:
3283 case REINTERPRET_CAST_EXPR:
ee95f490 3284 case STATIC_CAST_EXPR:
3285 case CONST_CAST_EXPR:
3286 write_type (TREE_TYPE (expr));
3287 write_expression (TREE_OPERAND (expr, 0));
3288 break;
3289
2d847c18 3290 case PREINCREMENT_EXPR:
3291 case PREDECREMENT_EXPR:
3292 if (abi_version_at_least (6))
3293 write_char ('_');
229a58b1 3294 if (abi_warn_or_compat_version_crosses (6))
2d847c18 3295 G.need_abi_warning = 1;
3296 /* Fall through. */
e92154af 3297
ee95f490 3298 default:
e9b1be72 3299 /* In the middle-end, some expressions have more operands than
3300 they do in templates (and mangling). */
d558fa9c 3301 len = cp_tree_operand_length (expr);
e9b1be72 3302
3303 for (i = 0; i < len; ++i)
716521b5 3304 {
3305 tree operand = TREE_OPERAND (expr, i);
fbb01da7 3306 /* As a GNU extension, the middle operand of a
716521b5 3307 conditional may be omitted. Since expression
3308 manglings are supposed to represent the input token
3309 stream, there's no good way to mangle such an
3310 expression without extending the C++ ABI. */
3311 if (code == COND_EXPR && i == 1 && !operand)
3312 {
1e5fcbe2 3313 error ("omitted middle operand to %<?:%> operand "
716521b5 3314 "cannot be mangled");
3315 continue;
3316 }
c09c7fa4 3317 else if (FOLD_EXPR_P (expr))
3318 {
3319 /* The first 'operand' of a fold-expression is the operator
3320 that it folds over. */
3321 if (i == 0)
3322 {
3323 int fcode = TREE_INT_CST_LOW (operand);
ca16a224 3324 write_string (OVL_OP_INFO (false, fcode)->mangled_name);
c09c7fa4 3325 continue;
3326 }
3327 else if (code == BINARY_LEFT_FOLD_EXPR)
3328 {
3329 /* The order of operands of the binary left and right
3330 folds is the same, but we want to mangle them in
3331 lexical order, i.e. non-pack first. */
3332 if (i == 1)
3333 operand = FOLD_EXPR_INIT (expr);
3334 else
3335 operand = FOLD_EXPR_PACK (expr);
3336 }
3337 if (PACK_EXPANSION_P (operand))
3338 operand = PACK_EXPANSION_PATTERN (operand);
3339 }
716521b5 3340 write_expression (operand);
3341 }
98eaf693 3342 }
98eaf693 3343 }
3344}
3345
9031d10b 3346/* Literal subcase of non-terminal <template-arg>.
98eaf693 3347
3348 "Literal arguments, e.g. "A<42L>", are encoded with their type
3349 and value. Negative integer values are preceded with "n"; for
3350 example, "A<-42L>" becomes "1AILln42EE". The bool value false is
cc116129 3351 encoded as 0, true as 1." */
98eaf693 3352
3353static void
61e3d157 3354write_template_arg_literal (const tree value)
98eaf693 3355{
98eaf693 3356 write_char ('L');
092b1d6f 3357 write_type (TREE_TYPE (value));
98eaf693 3358
b5cdaa0b 3359 /* Write a null member pointer value as (type)0, regardless of its
3360 real representation. */
3361 if (null_member_pointer_value_p (value))
3362 write_integer_cst (integer_zero_node);
3363 else
3364 switch (TREE_CODE (value))
3365 {
3366 case CONST_DECL:
3367 write_integer_cst (DECL_INITIAL (value));
3368 break;
9031d10b 3369
b5cdaa0b 3370 case INTEGER_CST:
3371 gcc_assert (!same_type_p (TREE_TYPE (value), boolean_type_node)
3372 || integer_zerop (value) || integer_onep (value));
3373 write_integer_cst (value);
3374 break;
092b1d6f 3375
b5cdaa0b 3376 case REAL_CST:
3377 write_real_cst (value);
3378 break;
98eaf693 3379
193dc72f 3380 case COMPLEX_CST:
3381 if (TREE_CODE (TREE_REALPART (value)) == INTEGER_CST
3382 && TREE_CODE (TREE_IMAGPART (value)) == INTEGER_CST)
3383 {
3384 write_integer_cst (TREE_REALPART (value));
3385 write_char ('_');
3386 write_integer_cst (TREE_IMAGPART (value));
3387 }
3388 else if (TREE_CODE (TREE_REALPART (value)) == REAL_CST
3389 && TREE_CODE (TREE_IMAGPART (value)) == REAL_CST)
3390 {
3391 write_real_cst (TREE_REALPART (value));
3392 write_char ('_');
3393 write_real_cst (TREE_IMAGPART (value));
3394 }
3395 else
3396 gcc_unreachable ();
3397 break;
3398
b5cdaa0b 3399 case STRING_CST:
3400 sorry ("string literal in function template signature");
3401 break;
99fddf6e 3402
b5cdaa0b 3403 default:
3404 gcc_unreachable ();
3405 }
9031d10b 3406
98eaf693 3407 write_char ('E');
3408}
3409
9031d10b 3410/* Non-terminal <template-arg>.
98eaf693 3411
653e5405 3412 <template-arg> ::= <type> # type
3413 ::= L <type> </value/ number> E # literal
3414 ::= LZ <name> E # external name
3415 ::= X <expression> E # expression */
98eaf693 3416
3417static void
61e3d157 3418write_template_arg (tree node)
98eaf693 3419{
3420 enum tree_code code = TREE_CODE (node);
3421
3422 MANGLE_TRACE_TREE ("template-arg", node);
3423
a5268b2f 3424 /* A template template parameter's argument list contains TREE_LIST
dfea972c 3425 nodes of which the value field is the actual argument. */
98eaf693 3426 if (code == TREE_LIST)
3427 {
3428 node = TREE_VALUE (node);
3429 /* If it's a decl, deal with its type instead. */
3430 if (DECL_P (node))
3431 {
3432 node = TREE_TYPE (node);
3433 code = TREE_CODE (node);
3434 }
3435 }
9031d10b 3436
95f798aa 3437 if (template_parm_object_p (node))
3438 /* We want to mangle the argument, not the var we stored it in. */
3439 node = DECL_INITIAL (node);
3440
44677b54 3441 /* Strip a conversion added by convert_nontype_argument. */
3442 if (TREE_CODE (node) == IMPLICIT_CONV_EXPR)
3443 node = TREE_OPERAND (node, 0);
80fe9b6a 3444 if (REFERENCE_REF_P (node))
3445 node = TREE_OPERAND (node, 0);
25f4fc1e 3446 if (TREE_CODE (node) == NOP_EXPR
90ad495b 3447 && TYPE_REF_P (TREE_TYPE (node)))
25f4fc1e 3448 {
3449 /* Template parameters can be of reference type. To maintain
3450 internal consistency, such arguments use a conversion from
3451 address of object to reference type. */
b4df430b 3452 gcc_assert (TREE_CODE (TREE_OPERAND (node, 0)) == ADDR_EXPR);
f591db9a 3453 node = TREE_OPERAND (TREE_OPERAND (node, 0), 0);
25f4fc1e 3454 }
98eaf693 3455
2d847c18 3456 if (TREE_CODE (node) == BASELINK
3457 && !type_unknown_p (node))
3458 {
3459 if (abi_version_at_least (6))
3460 node = BASELINK_FUNCTIONS (node);
229a58b1 3461 if (abi_warn_or_compat_version_crosses (6))
2d847c18 3462 /* We wrongly wrapped a class-scope function in X/E. */
3463 G.need_abi_warning = 1;
3464 }
3465
d95d815d 3466 if (ARGUMENT_PACK_P (node))
3467 {
3468 /* Expand the template argument pack. */
3469 tree args = ARGUMENT_PACK_ARGS (node);
3470 int i, length = TREE_VEC_LENGTH (args);
2d847c18 3471 if (abi_version_at_least (6))
3472 write_char ('J');
3473 else
74b777e5 3474 write_char ('I');
229a58b1 3475 if (abi_warn_or_compat_version_crosses (6))
74b777e5 3476 G.need_abi_warning = 1;
d95d815d 3477 for (i = 0; i < length; ++i)
3478 write_template_arg (TREE_VEC_ELT (args, i));
4682b6fe 3479 write_char ('E');
d95d815d 3480 }
3481 else if (TYPE_P (node))
98eaf693 3482 write_type (node);
3483 else if (code == TEMPLATE_DECL)
3484 /* A template appearing as a template arg is a template template arg. */
3485 write_template_template_arg (node);
ce45a448 3486 else if ((TREE_CODE_CLASS (code) == tcc_constant && code != PTRMEM_CST)
f591db9a 3487 || code == CONST_DECL
b5cdaa0b 3488 || null_member_pointer_value_p (node))
d5f9419c 3489 write_template_arg_literal (node);
98eaf693 3490 else if (DECL_P (node))
3491 {
3492 write_char ('L');
f10ff0e0 3493 /* Until ABI version 3, the underscore before the mangled name
3494 was incorrectly omitted. */
3495 if (!abi_version_at_least (3))
74b777e5 3496 write_char ('Z');
f10ff0e0 3497 else
3498 write_string ("_Z");
229a58b1 3499 if (abi_warn_or_compat_version_crosses (3))
74b777e5 3500 G.need_abi_warning = 1;
98eaf693 3501 write_encoding (node);
3502 write_char ('E');
3503 }
98eaf693 3504 else
3505 {
3506 /* Template arguments may be expressions. */
3507 write_char ('X');
3508 write_expression (node);
3509 write_char ('E');
3510 }
3511}
3512
3513/* <template-template-arg>
3514 ::= <name>
3515 ::= <substitution> */
3516
9140e457 3517static void
61e3d157 3518write_template_template_arg (const tree decl)
98eaf693 3519{
3520 MANGLE_TRACE_TREE ("template-template-arg", decl);
3521
3522 if (find_substitution (decl))
3523 return;
bbb9efab 3524 write_name (decl, /*ignore_local_scope=*/0);
98eaf693 3525 add_substitution (decl);
3526}
3527
3528
9031d10b 3529/* Non-terminal <array-type>. TYPE is an ARRAY_TYPE.
98eaf693 3530
9031d10b 3531 <array-type> ::= A [</dimension/ number>] _ </element/ type>
653e5405 3532 ::= A <expression> _ </element/ type>
98eaf693 3533
3534 "Array types encode the dimension (number of elements) and the
6b94e133 3535 element type. For variable length arrays, the dimension (but not
3536 the '_' separator) is omitted."
3537 Note that for flexible array members, like for other arrays of
3538 unspecified size, the dimension is also omitted. */
98eaf693 3539
61e3d157 3540static void
3541write_array_type (const tree type)
98eaf693 3542{
3543 write_char ('A');
3544 if (TYPE_DOMAIN (type))
3545 {
3546 tree index_type;
98eaf693 3547
3548 index_type = TYPE_DOMAIN (type);
6b94e133 3549 /* The INDEX_TYPE gives the upper and lower bounds of the array.
3550 It's null for flexible array members which have no upper bound
3551 (this is a change from GCC 5 and prior where such members were
3552 incorrectly mangled as zero-length arrays). */
3553 if (tree max = TYPE_MAX_VALUE (index_type))
f753592a 3554 {
6b94e133 3555 if (TREE_CODE (max) == INTEGER_CST)
3556 {
3557 /* The ABI specifies that we should mangle the number of
3558 elements in the array, not the largest allowed index. */
3559 offset_int wmax = wi::to_offset (max) + 1;
3560 /* Truncate the result - this will mangle [0, SIZE_INT_MAX]
3561 number of elements as zero. */
3562 wmax = wi::zext (wmax, TYPE_PRECISION (TREE_TYPE (max)));
3563 gcc_assert (wi::fits_uhwi_p (wmax));
3564 write_unsigned_number (wmax.to_uhwi ());
3565 }
3566 else
3567 {
3568 max = TREE_OPERAND (max, 0);
3569 write_expression (max);
3570 }
1cd6548d 3571 }
98eaf693 3572 }
3573 write_char ('_');
3574 write_type (TREE_TYPE (type));
3575}
3576
3577/* Non-terminal <pointer-to-member-type> for pointer-to-member
3578 variables. TYPE is a pointer-to-member POINTER_TYPE.
3579
3580 <pointer-to-member-type> ::= M </class/ type> </member/ type> */
3581
3582static void
61e3d157 3583write_pointer_to_member_type (const tree type)
98eaf693 3584{
3585 write_char ('M');
58274fe8 3586 write_type (TYPE_PTRMEM_CLASS_TYPE (type));
98eaf693 3587 write_type (TYPE_PTRMEM_POINTED_TO_TYPE (type));
3588}
3589
3590/* Non-terminal <template-param>. PARM is a TEMPLATE_TYPE_PARM,
1e93ca27 3591 TEMPLATE_TEMPLATE_PARM, BOUND_TEMPLATE_TEMPLATE_PARM or a
3592 TEMPLATE_PARM_INDEX.
98eaf693 3593
ef4534a3 3594 <template-param> ::= T </parameter/ number> _ */
98eaf693 3595
3596static void
61e3d157 3597write_template_param (const tree parm)
98eaf693 3598{
3599 int parm_index;
3600
3601 MANGLE_TRACE_TREE ("template-parm", parm);
3602
3603 switch (TREE_CODE (parm))
3604 {
3605 case TEMPLATE_TYPE_PARM:
3606 case TEMPLATE_TEMPLATE_PARM:
1e93ca27 3607 case BOUND_TEMPLATE_TEMPLATE_PARM:
98eaf693 3608 parm_index = TEMPLATE_TYPE_IDX (parm);
3609 break;
3610
3611 case TEMPLATE_PARM_INDEX:
3612 parm_index = TEMPLATE_PARM_IDX (parm);
3613 break;
3614
3615 default:
092b1d6f 3616 gcc_unreachable ();
98eaf693 3617 }
3618
3619 write_char ('T');
3620 /* NUMBER as it appears in the mangling is (-1)-indexed, with the
3621 earliest template param denoted by `_'. */
a8b75081 3622 write_compact_number (parm_index);
98eaf693 3623}
3624
3625/* <template-template-param>
653e5405 3626 ::= <template-param>
98eaf693 3627 ::= <substitution> */
3628
3629static void
61e3d157 3630write_template_template_param (const tree parm)
98eaf693 3631{
607a5d68 3632 tree templ = NULL_TREE;
98eaf693 3633
3634 /* PARM, a TEMPLATE_TEMPLATE_PARM, is an instantiation of the
3635 template template parameter. The substitution candidate here is
3636 only the template. */
1e93ca27 3637 if (TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
98eaf693 3638 {
607a5d68 3639 templ
98eaf693 3640 = TI_TEMPLATE (TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (parm));
607a5d68 3641 if (find_substitution (templ))
98eaf693 3642 return;
3643 }
3644
3645 /* <template-param> encodes only the template parameter position,
3646 not its template arguments, which is fine here. */
3647 write_template_param (parm);
607a5d68 3648 if (templ)
3649 add_substitution (templ);
98eaf693 3650}
3651
9031d10b 3652/* Non-terminal <substitution>.
98eaf693 3653
3654 <substitution> ::= S <seq-id> _
653e5405 3655 ::= S_ */
98eaf693 3656
3657static void
61e3d157 3658write_substitution (const int seq_id)
98eaf693 3659{
3660 MANGLE_TRACE ("substitution", "");
3661
3662 write_char ('S');
3663 if (seq_id > 0)
e75e76ea 3664 write_number (seq_id - 1, /*unsigned=*/1, 36);
98eaf693 3665 write_char ('_');
3666}
3667
18f2b9d5 3668/* Start mangling ENTITY. */
98eaf693 3669
3670static inline void
dfecde36 3671start_mangling (const tree entity)
98eaf693 3672{
18f2b9d5 3673 G.entity = entity;
3674 G.need_abi_warning = false;
40e2decb 3675 G.need_cxx17_warning = false;
dfecde36 3676 obstack_free (&name_obstack, name_base);
3677 mangle_obstack = &name_obstack;
3678 name_base = obstack_alloc (&name_obstack, 0);
98eaf693 3679}
3680
dfecde36 3681/* Done with mangling. If WARN is true, and the name of G.entity will
3682 be mangled differently in a future version of the ABI, issue a
3683 warning. */
98eaf693 3684
dfecde36 3685static void
74b777e5 3686finish_mangling_internal (void)
98eaf693 3687{
3688 /* Clear all the substitutions. */
f1f41a6c 3689 vec_safe_truncate (G.substitutions, 0);
98eaf693 3690
3691 /* Null-terminate the string. */
3692 write_char ('\0');
dfecde36 3693}
3694
98eaf693 3695
dfecde36 3696/* Like finish_mangling_internal, but return the mangled string. */
3697
3698static inline const char *
74b777e5 3699finish_mangling (void)
dfecde36 3700{
74b777e5 3701 finish_mangling_internal ();
f13b585c 3702 return (const char *) obstack_finish (mangle_obstack);
98eaf693 3703}
3704
dfecde36 3705/* Like finish_mangling_internal, but return an identifier. */
3706
3707static tree
74b777e5 3708finish_mangling_get_identifier (void)
dfecde36 3709{
74b777e5 3710 finish_mangling_internal ();
dfecde36 3711 /* Don't obstack_finish here, and the next start_mangling will
3712 remove the identifier. */
4cd09d28 3713 return get_identifier ((const char *) obstack_base (mangle_obstack));
dfecde36 3714}
3715
98eaf693 3716/* Initialize data structures for mangling. */
3717
3718void
eb32e911 3719init_mangle (void)
98eaf693 3720{
f13b585c 3721 gcc_obstack_init (&name_obstack);
3722 name_base = obstack_alloc (&name_obstack, 0);
f1f41a6c 3723 vec_alloc (G.substitutions, 0);
98eaf693 3724
3725 /* Cache these identifiers for quick comparison when checking for
3726 standard substitutions. */
3727 subst_identifiers[SUBID_ALLOCATOR] = get_identifier ("allocator");
3728 subst_identifiers[SUBID_BASIC_STRING] = get_identifier ("basic_string");
3729 subst_identifiers[SUBID_CHAR_TRAITS] = get_identifier ("char_traits");
3730 subst_identifiers[SUBID_BASIC_ISTREAM] = get_identifier ("basic_istream");
3731 subst_identifiers[SUBID_BASIC_OSTREAM] = get_identifier ("basic_ostream");
3732 subst_identifiers[SUBID_BASIC_IOSTREAM] = get_identifier ("basic_iostream");
3733}
3734
3735/* Generate the mangled name of DECL. */
3736
dfecde36 3737static tree
61e3d157 3738mangle_decl_string (const tree decl)
98eaf693 3739{
dfecde36 3740 tree result;
df63172d 3741 location_t saved_loc = input_location;
3742 tree saved_fn = NULL_TREE;
3743 bool template_p = false;
3744
97de3401 3745 /* We shouldn't be trying to mangle an uninstantiated template. */
3746 gcc_assert (!type_dependent_expression_p (decl));
3747
df63172d 3748 if (DECL_LANG_SPECIFIC (decl) && DECL_USE_TEMPLATE (decl))
3749 {
3750 struct tinst_level *tl = current_instantiation ();
f5cb81c6 3751 if ((!tl || tl->maybe_get_node () != decl)
6ba663d6 3752 && push_tinst_level (decl))
df63172d 3753 {
3754 template_p = true;
3755 saved_fn = current_function_decl;
df63172d 3756 current_function_decl = NULL_TREE;
3757 }
3758 }
3759 input_location = DECL_SOURCE_LOCATION (decl);
98eaf693 3760
dfecde36 3761 start_mangling (decl);
98eaf693 3762
3763 if (TREE_CODE (decl) == TYPE_DECL)
3764 write_type (TREE_TYPE (decl));
3765 else
1da3f78a 3766 write_mangled_name (decl, true);
9031d10b 3767
74b777e5 3768 result = finish_mangling_get_identifier ();
98eaf693 3769 if (DEBUG_MANGLE)
dfecde36 3770 fprintf (stderr, "mangle_decl_string = '%s'\n\n",
3771 IDENTIFIER_POINTER (result));
df63172d 3772
3773 if (template_p)
3774 {
3775 pop_tinst_level ();
3776 current_function_decl = saved_fn;
3777 }
3778 input_location = saved_loc;
3779
98eaf693 3780 return result;
3781}
3782
3e5c885b 3783/* Return an identifier for the external mangled name of DECL. */
3784
3785static tree
3786get_mangled_id (tree decl)
3787{
3788 tree id = mangle_decl_string (decl);
3789 return targetm.mangle_decl_assembler_name (decl, id);
3790}
3791
98eaf693 3792/* Create an identifier for the external mangled name of DECL. */
3793
7e64c604 3794void
61e3d157 3795mangle_decl (const tree decl)
98eaf693 3796{
71d3f205 3797 tree id;
3798 bool dep;
3799
3800 /* Don't bother mangling uninstantiated templates. */
3801 ++processing_template_decl;
3802 if (TREE_CODE (decl) == TYPE_DECL)
3803 dep = dependent_type_p (TREE_TYPE (decl));
3804 else
3805 dep = (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl)
3806 && any_dependent_template_arguments_p (DECL_TI_ARGS (decl)));
3807 --processing_template_decl;
3808 if (dep)
3809 return;
3810
960a5573 3811 /* During LTO we keep mangled names of TYPE_DECLs for ODR type merging.
3812 It is not needed to assign names to anonymous namespace, but we use the
3813 "<anon>" marker to be able to tell if type is C++ ODR type or type
3814 produced by other language. */
3815 if (TREE_CODE (decl) == TYPE_DECL
3816 && TYPE_STUB_DECL (TREE_TYPE (decl))
3817 && !TREE_PUBLIC (TYPE_STUB_DECL (TREE_TYPE (decl))))
3818 id = get_identifier ("<anon>");
3819 else
3820 {
3821 gcc_assert (TREE_CODE (decl) != TYPE_DECL
3822 || !no_linkage_check (TREE_TYPE (decl), true));
f67cece7 3823 if (abi_version_at_least (10))
3824 if (tree fn = decl_function_context (decl))
3825 maybe_check_abi_tags (fn, decl);
960a5573 3826 id = get_mangled_id (decl);
3827 }
97a424bc 3828 SET_DECL_ASSEMBLER_NAME (decl, id);
20009fe3 3829
40e2decb 3830 if (G.need_cxx17_warning
a08fc382 3831 && (TREE_PUBLIC (decl) || DECL_REALLY_EXTERN (decl)))
957a727b 3832 warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wnoexcept_type,
2e9e9363 3833 "mangled name for %qD will change in C++17 because the "
3834 "exception specification is part of a function type",
3835 decl);
3836
6ad47359 3837 if (id != DECL_NAME (decl)
fb5491a0 3838 /* Don't do this for a fake symbol we aren't going to emit anyway. */
a1d8686f 3839 && TREE_CODE (decl) != TYPE_DECL
c6e04fca 3840 && !DECL_MAYBE_IN_CHARGE_CDTOR_P (decl))
20009fe3 3841 {
c6b4d6c1 3842 int save_ver = flag_abi_version;
3843 tree id2 = NULL_TREE;
6ad47359 3844
c6b4d6c1 3845 if (!DECL_REALLY_EXTERN (decl))
6ad47359 3846 {
e845448c 3847 record_mangling (decl, G.need_abi_warning);
6ad47359 3848
c6b4d6c1 3849 if (!G.need_abi_warning)
3850 return;
20009fe3 3851
c6b4d6c1 3852 flag_abi_version = flag_abi_compat_version;
3853 id2 = mangle_decl_string (decl);
3854 id2 = targetm.mangle_decl_assembler_name (decl, id2);
3855 flag_abi_version = save_ver;
20009fe3 3856
c6b4d6c1 3857 if (id2 != id)
3858 note_mangling_alias (decl, id2);
3859 }
74b777e5 3860
3861 if (warn_abi)
3862 {
8c41abe8 3863 const char fabi_version[] = "-fabi-version";
3864
c6b4d6c1 3865 if (flag_abi_compat_version != warn_abi_version
3866 || id2 == NULL_TREE)
229a58b1 3867 {
3868 flag_abi_version = warn_abi_version;
3869 id2 = mangle_decl_string (decl);
3870 id2 = targetm.mangle_decl_assembler_name (decl, id2);
3871 }
a5b4465c 3872 flag_abi_version = save_ver;
229a58b1 3873
3874 if (id2 == id)
3875 /* OK. */;
3876 else if (warn_abi_version != 0
3877 && abi_version_at_least (warn_abi_version))
66ed189d 3878 warning_at (DECL_SOURCE_LOCATION (G.entity), OPT_Wabi,
3879 "the mangled name of %qD changed between "
8c41abe8 3880 "%<%s=%d%> (%qD) and %<%s=%d%> (%qD)",
3881 G.entity, fabi_version, warn_abi_version, id2,
3882 fabi_version, save_ver, id);
74b777e5 3883 else
66ed189d 3884 warning_at (DECL_SOURCE_LOCATION (G.entity), OPT_Wabi,
3885 "the mangled name of %qD changes between "
8c41abe8 3886 "%<%s=%d%> (%qD) and %<%s=%d%> (%qD)",
3887 G.entity, fabi_version, save_ver, id,
3888 fabi_version, warn_abi_version, id2);
74b777e5 3889 }
3890
229a58b1 3891 flag_abi_version = save_ver;
a03f54f4 3892 }
98eaf693 3893}
3894
ec46af50 3895/* Generate the mangled representation of TYPE. */
98eaf693 3896
3897const char *
ec46af50 3898mangle_type_string (const tree type)
98eaf693 3899{
3900 const char *result;
3901
dfecde36 3902 start_mangling (type);
98eaf693 3903 write_type (type);
74b777e5 3904 result = finish_mangling ();
98eaf693 3905 if (DEBUG_MANGLE)
3906 fprintf (stderr, "mangle_type_string = '%s'\n\n", result);
3907 return result;
3908}
3909
98eaf693 3910/* Create an identifier for the mangled name of a special component
3911 for belonging to TYPE. CODE is the ABI-specified code for this
3912 component. */
3913
3914static tree
61e3d157 3915mangle_special_for_type (const tree type, const char *code)
98eaf693 3916{
dfecde36 3917 tree result;
98eaf693 3918
3919 /* We don't have an actual decl here for the special component, so
3920 we can't just process the <encoded-name>. Instead, fake it. */
dfecde36 3921 start_mangling (type);
98eaf693 3922
3923 /* Start the mangling. */
3924 write_string ("_Z");
3925 write_string (code);
3926
3927 /* Add the type. */
3928 write_type (type);
74b777e5 3929 result = finish_mangling_get_identifier ();
98eaf693 3930
3931 if (DEBUG_MANGLE)
dfecde36 3932 fprintf (stderr, "mangle_special_for_type = %s\n\n",
3933 IDENTIFIER_POINTER (result));
98eaf693 3934
dfecde36 3935 return result;
98eaf693 3936}
3937
3938/* Create an identifier for the mangled representation of the typeinfo
3939 structure for TYPE. */
3940
3941tree
61e3d157 3942mangle_typeinfo_for_type (const tree type)
98eaf693 3943{
3944 return mangle_special_for_type (type, "TI");
3945}
3946
3947/* Create an identifier for the mangled name of the NTBS containing
3948 the mangled name of TYPE. */
3949
3950tree
61e3d157 3951mangle_typeinfo_string_for_type (const tree type)
98eaf693 3952{
3953 return mangle_special_for_type (type, "TS");
3954}
3955
3956/* Create an identifier for the mangled name of the vtable for TYPE. */
3957
3958tree
61e3d157 3959mangle_vtbl_for_type (const tree type)
98eaf693 3960{
3961 return mangle_special_for_type (type, "TV");
3962}
3963
3964/* Returns an identifier for the mangled name of the VTT for TYPE. */
3965
3966tree
61e3d157 3967mangle_vtt_for_type (const tree type)
98eaf693 3968{
3969 return mangle_special_for_type (type, "TT");
3970}
3971
a6f4466c 3972/* Returns an identifier for the mangled name of the decomposition
3973 artificial variable DECL. DECLS is the vector of the VAR_DECLs
3974 for the identifier-list. */
3975
3976tree
3977mangle_decomp (const tree decl, vec<tree> &decls)
3978{
3979 gcc_assert (!type_dependent_expression_p (decl));
3980
3981 location_t saved_loc = input_location;
3982 input_location = DECL_SOURCE_LOCATION (decl);
3983
3984 start_mangling (decl);
3985 write_string ("_Z");
3986
3987 tree context = decl_mangling_context (decl);
3988 gcc_assert (context != NULL_TREE);
3989
3990 bool nested = false;
3991 if (DECL_NAMESPACE_STD_P (context))
3992 write_string ("St");
3993 else if (context != global_namespace)
3994 {
3995 nested = true;
3996 write_char ('N');
3997 write_prefix (decl_mangling_context (decl));
3998 }
3999
4000 write_string ("DC");
4001 unsigned int i;
4002 tree d;
4003 FOR_EACH_VEC_ELT (decls, i, d)
4004 write_unqualified_name (d);
4005 write_char ('E');
4006
4007 if (nested)
4008 write_char ('E');
4009
4010 tree id = finish_mangling_get_identifier ();
4011 if (DEBUG_MANGLE)
4012 fprintf (stderr, "mangle_decomp = '%s'\n\n",
4013 IDENTIFIER_POINTER (id));
4014
4015 input_location = saved_loc;
4016 return id;
4017}
4018
98eaf693 4019/* Return an identifier for a construction vtable group. TYPE is
4020 the most derived class in the hierarchy; BINFO is the base
9031d10b 4021 subobject for which this construction vtable group will be used.
98eaf693 4022
4023 This mangling isn't part of the ABI specification; in the ABI
4024 specification, the vtable group is dumped in the same COMDAT as the
4025 main vtable, and is referenced only from that vtable, so it doesn't
4026 need an external name. For binary formats without COMDAT sections,
9031d10b 4027 though, we need external names for the vtable groups.
98eaf693 4028
4029 We use the production
4030
4031 <special-name> ::= CT <type> <offset number> _ <base type> */
4032
4033tree
61e3d157 4034mangle_ctor_vtbl_for_type (const tree type, const tree binfo)
98eaf693 4035{
dfecde36 4036 tree result;
98eaf693 4037
dfecde36 4038 start_mangling (type);
98eaf693 4039
4040 write_string ("_Z");
4041 write_string ("TC");
4042 write_type (type);
4043 write_integer_cst (BINFO_OFFSET (binfo));
4044 write_char ('_');
4045 write_type (BINFO_TYPE (binfo));
4046
74b777e5 4047 result = finish_mangling_get_identifier ();
98eaf693 4048 if (DEBUG_MANGLE)
dfecde36 4049 fprintf (stderr, "mangle_ctor_vtbl_for_type = %s\n\n",
4050 IDENTIFIER_POINTER (result));
4051 return result;
98eaf693 4052}
4053
805e22b2 4054/* Mangle a this pointer or result pointer adjustment.
9031d10b 4055
805e22b2 4056 <call-offset> ::= h <fixed offset number> _
4057 ::= v <fixed offset number> _ <virtual offset number> _ */
9031d10b 4058
805e22b2 4059static void
61e3d157 4060mangle_call_offset (const tree fixed_offset, const tree virtual_offset)
805e22b2 4061{
71b1859a 4062 write_char (virtual_offset ? 'v' : 'h');
98eaf693 4063
805e22b2 4064 /* For either flavor, write the fixed offset. */
4065 write_integer_cst (fixed_offset);
4066 write_char ('_');
4067
4068 /* For a virtual thunk, add the virtual offset. */
4069 if (virtual_offset)
4070 {
4071 write_integer_cst (virtual_offset);
4072 write_char ('_');
4073 }
4074}
4075
4076/* Return an identifier for the mangled name of a this-adjusting or
4077 covariant thunk to FN_DECL. FIXED_OFFSET is the initial adjustment
4078 to this used to find the vptr. If VIRTUAL_OFFSET is non-NULL, this
4079 is a virtual thunk, and it is the vtbl offset in
f1d555e3 4080 bytes. THIS_ADJUSTING is nonzero for a this adjusting thunk and
805e22b2 4081 zero for a covariant thunk. Note, that FN_DECL might be a covariant
4082 thunk itself. A covariant thunk name always includes the adjustment
4083 for the this pointer, even if there is none.
4084
4085 <special-name> ::= T <call-offset> <base encoding>
653e5405 4086 ::= Tc <this_adjust call-offset> <result_adjust call-offset>
074ab442 4087 <base encoding> */
98eaf693 4088
4089tree
61e3d157 4090mangle_thunk (tree fn_decl, const int this_adjusting, tree fixed_offset,
a4a311c3 4091 tree virtual_offset, tree thunk)
98eaf693 4092{
dfecde36 4093 tree result;
9031d10b 4094
a4a311c3 4095 if (abi_version_at_least (11))
4096 maybe_check_abi_tags (fn_decl, thunk, 11);
4097
dfecde36 4098 start_mangling (fn_decl);
98eaf693 4099
4100 write_string ("_Z");
98eaf693 4101 write_char ('T');
9031d10b 4102
71b1859a 4103 if (!this_adjusting)
805e22b2 4104 {
4105 /* Covariant thunk with no this adjustment */
4106 write_char ('c');
4107 mangle_call_offset (integer_zero_node, NULL_TREE);
4108 mangle_call_offset (fixed_offset, virtual_offset);
4109 }
71b1859a 4110 else if (!DECL_THUNK_P (fn_decl))
4111 /* Plain this adjusting thunk. */
4112 mangle_call_offset (fixed_offset, virtual_offset);
98eaf693 4113 else
98eaf693 4114 {
805e22b2 4115 /* This adjusting thunk to covariant thunk. */
4116 write_char ('c');
4117 mangle_call_offset (fixed_offset, virtual_offset);
71b1859a 4118 fixed_offset = ssize_int (THUNK_FIXED_OFFSET (fn_decl));
4119 virtual_offset = THUNK_VIRTUAL_OFFSET (fn_decl);
4120 if (virtual_offset)
4121 virtual_offset = BINFO_VPTR_FIELD (virtual_offset);
4122 mangle_call_offset (fixed_offset, virtual_offset);
4123 fn_decl = THUNK_TARGET (fn_decl);
98eaf693 4124 }
4125
4126 /* Scoped name. */
4127 write_encoding (fn_decl);
4128
74b777e5 4129 result = finish_mangling_get_identifier ();
98eaf693 4130 if (DEBUG_MANGLE)
dfecde36 4131 fprintf (stderr, "mangle_thunk = %s\n\n", IDENTIFIER_POINTER (result));
4132 return result;
98eaf693 4133}
4134
b2c95551 4135/* Handle ABI backwards compatibility for past bugs where we didn't call
4136 check_abi_tags in places where it's needed: call check_abi_tags and warn if
f67cece7 4137 it makes a difference. If FOR_DECL is non-null, it's the declaration
4138 that we're actually trying to mangle; if it's null, we're mangling the
4139 guard variable for T. */
b2c95551 4140
4141static void
a4a311c3 4142maybe_check_abi_tags (tree t, tree for_decl, int ver)
b2c95551 4143{
f67cece7 4144 if (DECL_ASSEMBLER_NAME_SET_P (t))
4145 return;
4146
b795d0cb 4147 tree oldtags = get_abi_tags (t);
b2c95551 4148
f67cece7 4149 mangle_decl (t);
b2c95551 4150
b795d0cb 4151 tree newtags = get_abi_tags (t);
4152 if (newtags && newtags != oldtags
a4a311c3 4153 && abi_version_crosses (ver))
f67cece7 4154 {
a4a311c3 4155 if (for_decl && DECL_THUNK_P (for_decl))
4156 warning_at (DECL_SOURCE_LOCATION (t), OPT_Wabi,
4157 "the mangled name of a thunk for %qD changes between "
2f6d557f 4158 "%<-fabi-version=%d%> and %<-fabi-version=%d%>",
a4a311c3 4159 t, flag_abi_version, warn_abi_version);
4160 else if (for_decl)
f67cece7 4161 warning_at (DECL_SOURCE_LOCATION (for_decl), OPT_Wabi,
4162 "the mangled name of %qD changes between "
2f6d557f 4163 "%<-fabi-version=%d%> and %<-fabi-version=%d%>",
f67cece7 4164 for_decl, flag_abi_version, warn_abi_version);
4165 else
4166 warning_at (DECL_SOURCE_LOCATION (t), OPT_Wabi,
67af79be 4167 "the mangled name of the initialization guard variable "
2f6d557f 4168 "for %qD changes between %<-fabi-version=%d%> and "
4169 "%<-fabi-version=%d%>",
f67cece7 4170 t, flag_abi_version, warn_abi_version);
4171 }
b2c95551 4172}
4173
462819c8 4174/* Write out the appropriate string for this variable when generating
4175 another mangled name based on this one. */
98eaf693 4176
462819c8 4177static void
4178write_guarded_var_name (const tree variable)
98eaf693 4179{
580d697f 4180 if (DECL_NAME (variable)
4181 && strncmp (IDENTIFIER_POINTER (DECL_NAME (variable)), "_ZGR", 4) == 0)
ca106ab1 4182 /* The name of a guard variable for a reference temporary should refer
4183 to the reference, not the temporary. */
4184 write_string (IDENTIFIER_POINTER (DECL_NAME (variable)) + 4);
4185 else
f67cece7 4186 write_name (variable, /*ignore_local_scope=*/0);
462819c8 4187}
4188
4189/* Return an identifier for the name of an initialization guard
4190 variable for indicated VARIABLE. */
4191
4192tree
4193mangle_guard_variable (const tree variable)
4194{
f67cece7 4195 if (abi_version_at_least (10))
4196 maybe_check_abi_tags (variable);
462819c8 4197 start_mangling (variable);
4198 write_string ("_ZGV");
4199 write_guarded_var_name (variable);
74b777e5 4200 return finish_mangling_get_identifier ();
462819c8 4201}
4202
4203/* Return an identifier for the name of a thread_local initialization
4204 function for VARIABLE. */
4205
4206tree
4207mangle_tls_init_fn (const tree variable)
4208{
e1c52611 4209 check_abi_tags (variable);
462819c8 4210 start_mangling (variable);
4211 write_string ("_ZTH");
4212 write_guarded_var_name (variable);
74b777e5 4213 return finish_mangling_get_identifier ();
462819c8 4214}
4215
4216/* Return an identifier for the name of a thread_local wrapper
4217 function for VARIABLE. */
4218
4219#define TLS_WRAPPER_PREFIX "_ZTW"
4220
4221tree
4222mangle_tls_wrapper_fn (const tree variable)
4223{
e1c52611 4224 check_abi_tags (variable);
462819c8 4225 start_mangling (variable);
4226 write_string (TLS_WRAPPER_PREFIX);
4227 write_guarded_var_name (variable);
74b777e5 4228 return finish_mangling_get_identifier ();
98eaf693 4229}
47fc2356 4230
462819c8 4231/* Return true iff FN is a thread_local wrapper function. */
4232
4233bool
4234decl_tls_wrapper_p (const tree fn)
4235{
4236 if (TREE_CODE (fn) != FUNCTION_DECL)
4237 return false;
4238 tree name = DECL_NAME (fn);
4239 return strncmp (IDENTIFIER_POINTER (name), TLS_WRAPPER_PREFIX,
4240 strlen (TLS_WRAPPER_PREFIX)) == 0;
4241}
4242
ca106ab1 4243/* Return an identifier for the name of a temporary variable used to
8c89c5fc 4244 initialize a static reference. This is now part of the ABI. */
c7b89256 4245
ca106ab1 4246tree
61e3d157 4247mangle_ref_init_variable (const tree variable)
ca106ab1 4248{
dfecde36 4249 start_mangling (variable);
ca106ab1 4250 write_string ("_ZGR");
b2c95551 4251 check_abi_tags (variable);
ca106ab1 4252 write_name (variable, /*ignore_local_scope=*/0);
c7b89256 4253 /* Avoid name clashes with aggregate initialization of multiple
4254 references at once. */
8c89c5fc 4255 write_compact_number (current_ref_temp_count++);
74b777e5 4256 return finish_mangling_get_identifier ();
ca106ab1 4257}
95f798aa 4258
4259/* Return an identifier for the mangled name of a C++20 template parameter
4260 object for template argument EXPR. */
4261
4262tree
4263mangle_template_parm_object (tree expr)
4264{
4265 start_mangling (expr);
4266 write_string ("_ZTAX");
4267 write_expression (expr);
4268 write_char ('E');
4269 return finish_mangling_get_identifier ();
4270}
47fc2356 4271\f
b710ec85 4272/* Given a CLASS_TYPE, such as a record for std::bad_exception this
4273 function generates a mangled name for the vtable map variable of
4274 the class type. For example, if the class type is
4275 "std::bad_exception", the mangled name for the class is
4276 "St13bad_exception". This function would generate the name
4277 "_ZN4_VTVISt13bad_exceptionE12__vtable_mapE", which unmangles as:
4278 "_VTV<std::bad_exception>::__vtable_map". */
4279
4280
4281char *
4282get_mangled_vtable_map_var_name (tree class_type)
4283{
4284 char *var_name = NULL;
4285 const char *prefix = "_ZN4_VTVI";
4286 const char *postfix = "E12__vtable_mapE";
4287
4288 gcc_assert (TREE_CODE (class_type) == RECORD_TYPE);
4289
4290 tree class_id = DECL_ASSEMBLER_NAME (TYPE_NAME (class_type));
68a98a70 4291
4292 if (strstr (IDENTIFIER_POINTER (class_id), "<anon>") != NULL)
4293 {
4294 class_id = get_mangled_id (TYPE_NAME (class_type));
4295 vtbl_register_mangled_name (TYPE_NAME (class_type), class_id);
4296 }
4297
b710ec85 4298 unsigned int len = strlen (IDENTIFIER_POINTER (class_id)) +
4299 strlen (prefix) +
4300 strlen (postfix) + 1;
4301
4302 var_name = (char *) xmalloc (len);
4303
4304 sprintf (var_name, "%s%s%s", prefix, IDENTIFIER_POINTER (class_id), postfix);
4305
4306 return var_name;
4307}
4308
652c3635 4309#include "gt-cp-mangle.h"