]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/cp/mangle.c
Update copyright years.
[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:
924bbf02 2476 /* TYPE may still be wchar_t, char16_t, or char32_t, since that
2477 isn't in integer_type_nodes. */
84ea6a1d 2478 if (type == wchar_type_node)
98eaf693 2479 write_char ('w');
924bbf02 2480 else if (type == char16_type_node)
4682b6fe 2481 write_string ("Ds");
924bbf02 2482 else if (type == char32_type_node)
4682b6fe 2483 write_string ("Di");
98eaf693 2484 else
2485 {
2486 size_t itk;
2487 /* Assume TYPE is one of the shared integer type nodes. Find
2488 it in the array of these nodes. */
90a83261 2489 iagain:
98eaf693 2490 for (itk = 0; itk < itk_none; ++itk)
890d0caa 2491 if (integer_types[itk] != NULL_TREE
9f75f026 2492 && integer_type_codes[itk] != '\0'
890d0caa 2493 && type == integer_types[itk])
98eaf693 2494 {
2495 /* Print the corresponding single-letter code. */
2496 write_char (integer_type_codes[itk]);
2497 break;
2498 }
52eb8ed3 2499
98eaf693 2500 if (itk == itk_none)
90a83261 2501 {
771d21fa 2502 tree t = c_common_type_for_mode (TYPE_MODE (type),
78a8ed03 2503 TYPE_UNSIGNED (type));
42a8ab57 2504 if (type != t)
52eb8ed3 2505 {
42a8ab57 2506 type = t;
2507 goto iagain;
52eb8ed3 2508 }
42a8ab57 2509
2510 if (TYPE_PRECISION (type) == 128)
2511 write_char (TYPE_UNSIGNED (type) ? 'o' : 'n');
6526d3a8 2512 else
2513 {
42a8ab57 2514 /* Allow for cases where TYPE is not one of the shared
2515 integer type nodes and write a "vendor extended builtin
2516 type" with a name the form intN or uintN, respectively.
2517 Situations like this can happen if you have an
2518 __attribute__((__mode__(__SI__))) type and use exotic
9fb415cc 2519 switches like '-mint8' on AVR. Of course, this is
2520 undefined by the C++ ABI (and '-mint8' is not even
2521 Standard C conforming), but when using such special
2522 options you're pretty much in nowhere land anyway. */
42a8ab57 2523 const char *prefix;
2524 char prec[11]; /* up to ten digits for an unsigned */
2525
2526 prefix = TYPE_UNSIGNED (type) ? "uint" : "int";
2527 sprintf (prec, "%u", (unsigned) TYPE_PRECISION (type));
2528 write_char ('u'); /* "vendor extended builtin type" */
2529 write_unsigned_number (strlen (prefix) + strlen (prec));
2530 write_string (prefix);
2531 write_string (prec);
6526d3a8 2532 }
90a83261 2533 }
98eaf693 2534 }
2535 break;
2536
2537 case REAL_TYPE:
c93d719b 2538 if (type == float_type_node)
98eaf693 2539 write_char ('f');
c93d719b 2540 else if (type == double_type_node)
98eaf693 2541 write_char ('d');
84ea6a1d 2542 else if (type == long_double_type_node)
98eaf693 2543 write_char ('e');
dcd70a22 2544 else if (type == dfloat32_type_node)
2545 write_string ("Df");
2546 else if (type == dfloat64_type_node)
2547 write_string ("Dd");
2548 else if (type == dfloat128_type_node)
2549 write_string ("De");
98eaf693 2550 else
092b1d6f 2551 gcc_unreachable ();
98eaf693 2552 break;
2553
e4583147 2554 case FIXED_POINT_TYPE:
2555 write_string ("DF");
2556 if (GET_MODE_IBIT (TYPE_MODE (type)) > 0)
2557 write_unsigned_number (GET_MODE_IBIT (TYPE_MODE (type)));
2558 if (type == fract_type_node
2559 || type == sat_fract_type_node
2560 || type == accum_type_node
2561 || type == sat_accum_type_node)
2562 write_char ('i');
2563 else if (type == unsigned_fract_type_node
2564 || type == sat_unsigned_fract_type_node
2565 || type == unsigned_accum_type_node
2566 || type == sat_unsigned_accum_type_node)
2567 write_char ('j');
2568 else if (type == short_fract_type_node
2569 || type == sat_short_fract_type_node
2570 || type == short_accum_type_node
2571 || type == sat_short_accum_type_node)
2572 write_char ('s');
2573 else if (type == unsigned_short_fract_type_node
2574 || type == sat_unsigned_short_fract_type_node
2575 || type == unsigned_short_accum_type_node
2576 || type == sat_unsigned_short_accum_type_node)
2577 write_char ('t');
2578 else if (type == long_fract_type_node
2579 || type == sat_long_fract_type_node
2580 || type == long_accum_type_node
2581 || type == sat_long_accum_type_node)
2582 write_char ('l');
2583 else if (type == unsigned_long_fract_type_node
2584 || type == sat_unsigned_long_fract_type_node
2585 || type == unsigned_long_accum_type_node
2586 || type == sat_unsigned_long_accum_type_node)
2587 write_char ('m');
2588 else if (type == long_long_fract_type_node
2589 || type == sat_long_long_fract_type_node
2590 || type == long_long_accum_type_node
2591 || type == sat_long_long_accum_type_node)
2592 write_char ('x');
2593 else if (type == unsigned_long_long_fract_type_node
2594 || type == sat_unsigned_long_long_fract_type_node
2595 || type == unsigned_long_long_accum_type_node
2596 || type == sat_unsigned_long_long_accum_type_node)
2597 write_char ('y');
2598 else
2599 sorry ("mangling unknown fixed point type");
2600 write_unsigned_number (GET_MODE_FBIT (TYPE_MODE (type)));
2601 if (TYPE_SATURATING (type))
2602 write_char ('s');
2603 else
2604 write_char ('n');
2605 break;
2606
98eaf693 2607 default:
092b1d6f 2608 gcc_unreachable ();
98eaf693 2609 }
2610}
2611
2612/* Non-terminal <function-type>. NODE is a FUNCTION_TYPE or
aa6b4383 2613 METHOD_TYPE. The return type is mangled before the parameter
2614 types.
98eaf693 2615
2ba14c1f 2616 <function-type> ::= F [Y] <bare-function-type> [<ref-qualifier>] E */
98eaf693 2617
2618static void
61e3d157 2619write_function_type (const tree type)
98eaf693 2620{
2621 MANGLE_TRACE_TREE ("function-type", type);
2622
58274fe8 2623 /* For a pointer to member function, the function type may have
2624 cv-qualifiers, indicating the quals for the artificial 'this'
2625 parameter. */
2626 if (TREE_CODE (type) == METHOD_TYPE)
2627 {
2628 /* The first parameter must be a POINTER_TYPE pointing to the
2629 `this' parameter. */
a8d966c1 2630 tree this_type = class_of_this_parm (type);
58274fe8 2631 write_CV_qualifiers_for_type (this_type);
2632 }
2633
2e9e9363 2634 write_exception_spec (TYPE_RAISES_EXCEPTIONS (type));
2635
6d02e6b2 2636 if (tx_safe_fn_type_p (type))
2637 write_string ("Dx");
2638
98eaf693 2639 write_char ('F');
2640 /* We don't track whether or not a type is `extern "C"'. Note that
2641 you can have an `extern "C"' function that does not have
2642 `extern "C"' type, and vice versa:
2643
2644 extern "C" typedef void function_t();
2645 function_t f; // f has C++ linkage, but its type is
653e5405 2646 // `extern "C"'
98eaf693 2647
2648 typedef void function_t();
2649 extern "C" function_t f; // Vice versa.
2650
2651 See [dcl.link]. */
9031d10b 2652 write_bare_function_type (type, /*include_return_type_p=*/1,
7c8696b2 2653 /*decl=*/NULL);
2ba14c1f 2654 if (FUNCTION_REF_QUALIFIED (type))
2655 {
2656 if (FUNCTION_RVALUE_QUALIFIED (type))
2657 write_char ('O');
2658 else
2659 write_char ('R');
2660 }
98eaf693 2661 write_char ('E');
2662}
2663
7c8696b2 2664/* Non-terminal <bare-function-type>. TYPE is a FUNCTION_TYPE or
3160db1d 2665 METHOD_TYPE. If INCLUDE_RETURN_TYPE is nonzero, the return value
7c8696b2 2666 is mangled before the parameter types. If non-NULL, DECL is
c93d719b 2667 FUNCTION_DECL for the function whose type is being emitted. */
98eaf693 2668
2669static void
61e3d157 2670write_bare_function_type (const tree type, const int include_return_type_p,
2671 const tree decl)
98eaf693 2672{
2673 MANGLE_TRACE_TREE ("bare-function-type", type);
2674
2675 /* Mangle the return type, if requested. */
c93d719b 2676 if (include_return_type_p)
98eaf693 2677 write_type (TREE_TYPE (type));
2678
2679 /* Now mangle the types of the arguments. */
4d7aaf8e 2680 ++G.parm_depth;
9031d10b 2681 write_method_parms (TYPE_ARG_TYPES (type),
7c8696b2 2682 TREE_CODE (type) == METHOD_TYPE,
2683 decl);
4d7aaf8e 2684 --G.parm_depth;
98eaf693 2685}
2686
2687/* Write the mangled representation of a method parameter list of
3160db1d 2688 types given in PARM_TYPES. If METHOD_P is nonzero, the function is
7c8696b2 2689 considered a non-static method, and the this parameter is omitted.
2690 If non-NULL, DECL is the FUNCTION_DECL for the function whose
2691 parameters are being emitted. */
98eaf693 2692
2693static void
61e3d157 2694write_method_parms (tree parm_types, const int method_p, const tree decl)
98eaf693 2695{
7c8696b2 2696 tree first_parm_type;
2697 tree parm_decl = decl ? DECL_ARGUMENTS (decl) : NULL_TREE;
2698
98eaf693 2699 /* Assume this parameter type list is variable-length. If it ends
2700 with a void type, then it's not. */
2701 int varargs_p = 1;
2702
2703 /* If this is a member function, skip the first arg, which is the
9031d10b 2704 this pointer.
98eaf693 2705 "Member functions do not encode the type of their implicit this
9031d10b 2706 parameter."
2707
7c8696b2 2708 Similarly, there's no need to mangle artificial parameters, like
2709 the VTT parameters for constructors and destructors. */
98eaf693 2710 if (method_p)
98eaf693 2711 {
7c8696b2 2712 parm_types = TREE_CHAIN (parm_types);
1767a056 2713 parm_decl = parm_decl ? DECL_CHAIN (parm_decl) : NULL_TREE;
98eaf693 2714
7c8696b2 2715 while (parm_decl && DECL_ARTIFICIAL (parm_decl))
2716 {
2717 parm_types = TREE_CHAIN (parm_types);
1767a056 2718 parm_decl = DECL_CHAIN (parm_decl);
7c8696b2 2719 }
b4c5b883 2720
2721 if (decl && ctor_omit_inherited_parms (decl))
2722 /* Bring back parameters omitted from an inherited ctor. */
2723 parm_types = FUNCTION_FIRST_USER_PARMTYPE (DECL_ORIGIN (decl));
7c8696b2 2724 }
2725
9031d10b 2726 for (first_parm_type = parm_types;
2727 parm_types;
7c8696b2 2728 parm_types = TREE_CHAIN (parm_types))
2729 {
2730 tree parm = TREE_VALUE (parm_types);
e3cfe3ce 2731 if (parm == void_type_node)
98eaf693 2732 {
2733 /* "Empty parameter lists, whether declared as () or
2734 conventionally as (void), are encoded with a void parameter
2735 (v)." */
7c8696b2 2736 if (parm_types == first_parm_type)
98eaf693 2737 write_type (parm);
2738 /* If the parm list is terminated with a void type, it's
2739 fixed-length. */
2740 varargs_p = 0;
2741 /* A void type better be the last one. */
b4df430b 2742 gcc_assert (TREE_CHAIN (parm_types) == NULL);
98eaf693 2743 }
2744 else
2745 write_type (parm);
2746 }
2747
2748 if (varargs_p)
2749 /* <builtin-type> ::= z # ellipsis */
2750 write_char ('z');
2751}
2752
2753/* <class-enum-type> ::= <name> */
2754
9031d10b 2755static void
61e3d157 2756write_class_enum_type (const tree type)
98eaf693 2757{
bbb9efab 2758 write_name (TYPE_NAME (type), /*ignore_local_scope=*/0);
98eaf693 2759}
2760
2761/* Non-terminal <template-args>. ARGS is a TREE_VEC of template
2762 arguments.
2763
f59dc0de 2764 <template-args> ::= I <template-arg>* E */
98eaf693 2765
2766static void
61e3d157 2767write_template_args (tree args)
98eaf693 2768{
25f4fc1e 2769 int i;
f59dc0de 2770 int length = 0;
9031d10b 2771
98eaf693 2772 MANGLE_TRACE_TREE ("template-args", args);
2773
94302392 2774 write_char ('I');
98eaf693 2775
f59dc0de 2776 if (args)
2777 length = TREE_VEC_LENGTH (args);
94302392 2778
fbfe1b55 2779 if (args && length && TREE_CODE (TREE_VEC_ELT (args, 0)) == TREE_VEC)
94302392 2780 {
25f4fc1e 2781 /* We have nested template args. We want the innermost template
2782 argument list. */
2783 args = TREE_VEC_ELT (args, length - 1);
2784 length = TREE_VEC_LENGTH (args);
98eaf693 2785 }
25f4fc1e 2786 for (i = 0; i < length; ++i)
2787 write_template_arg (TREE_VEC_ELT (args, i));
9031d10b 2788
98eaf693 2789 write_char ('E');
2790}
2791
4682b6fe 2792/* Write out the
2793 <unqualified-name>
2794 <unqualified-name> <template-args>
2795 part of SCOPE_REF or COMPONENT_REF mangling. */
2796
2797static void
2798write_member_name (tree member)
2799{
991449b2 2800 if (identifier_p (member))
322066d8 2801 {
991449b2 2802 if (abi_version_at_least (11) && IDENTIFIER_ANY_OP_P (member))
2803 {
2804 write_string ("on");
2805 if (abi_warn_or_compat_version_crosses (11))
2806 G.need_abi_warning = 1;
2807 }
2808 write_unqualified_id (member);
322066d8 2809 }
4682b6fe 2810 else if (DECL_P (member))
fb3127b9 2811 write_unqualified_name (member);
4682b6fe 2812 else if (TREE_CODE (member) == TEMPLATE_ID_EXPR)
2813 {
2814 tree name = TREE_OPERAND (member, 0);
6767ca9a 2815 name = OVL_FIRST (name);
4682b6fe 2816 write_member_name (name);
2817 write_template_args (TREE_OPERAND (member, 1));
2818 }
2819 else
2820 write_expression (member);
2821}
2822
98eaf693 2823/* <expression> ::= <unary operator-name> <expression>
2824 ::= <binary operator-name> <expression> <expression>
2825 ::= <expr-primary>
2826
2827 <expr-primary> ::= <template-param>
653e5405 2828 ::= L <type> <value number> E # literal
2829 ::= L <mangled-name> E # external name
34eac767 2830 ::= st <type> # sizeof
2831 ::= sr <type> <unqualified-name> # dependent name
653e5405 2832 ::= sr <type> <unqualified-name> <template-args> */
98eaf693 2833
2834static void
61e3d157 2835write_expression (tree expr)
98eaf693 2836{
3986b463 2837 enum tree_code code = TREE_CODE (expr);
98eaf693 2838
1ed9e78d 2839 if (TREE_CODE (expr) == TARGET_EXPR)
2840 {
2841 expr = TARGET_EXPR_INITIAL (expr);
2842 code = TREE_CODE (expr);
2843 }
2844
f0474a47 2845 /* Skip NOP_EXPR and CONVERT_EXPR. They can occur when (say) a pointer
2846 argument is converted (via qualification conversions) to another type. */
2847 while (CONVERT_EXPR_CODE_P (code)
d76863c8 2848 || location_wrapper_p (expr)
07850d16 2849 /* Parentheses aren't mangled. */
2850 || code == PAREN_EXPR
1ed9e78d 2851 || code == NON_LVALUE_EXPR
2852 || (code == VIEW_CONVERT_EXPR
2853 && TREE_CODE (TREE_OPERAND (expr, 0)) == TEMPLATE_PARM_INDEX))
b312a686 2854 {
2855 expr = TREE_OPERAND (expr, 0);
2856 code = TREE_CODE (expr);
2857 }
2858
8272c334 2859 if (code == BASELINK
2860 && (!type_unknown_p (expr)
2861 || !BASELINK_QUALIFIED_P (expr)))
0e5cde0c 2862 {
2863 expr = BASELINK_FUNCTIONS (expr);
2864 code = TREE_CODE (expr);
2865 }
2866
98eaf693 2867 /* Handle pointers-to-members by making them look like expression
2868 nodes. */
2869 if (code == PTRMEM_CST)
2870 {
2871 expr = build_nt (ADDR_EXPR,
fbb01da7 2872 build_qualified_name (/*type=*/NULL_TREE,
2873 PTRMEM_CST_CLASS (expr),
2874 PTRMEM_CST_MEMBER (expr),
2875 /*template_p=*/false));
98eaf693 2876 code = TREE_CODE (expr);
2877 }
2878
47cd6605 2879 /* Handle template parameters. */
9031d10b 2880 if (code == TEMPLATE_TYPE_PARM
98eaf693 2881 || code == TEMPLATE_TEMPLATE_PARM
1e93ca27 2882 || code == BOUND_TEMPLATE_TEMPLATE_PARM
2883 || code == TEMPLATE_PARM_INDEX)
98eaf693 2884 write_template_param (expr);
2885 /* Handle literals. */
ce45a448 2886 else if (TREE_CODE_CLASS (code) == tcc_constant
f591db9a 2887 || code == CONST_DECL)
98eaf693 2888 write_template_arg_literal (expr);
56f83c40 2889 else if (code == PARM_DECL && DECL_ARTIFICIAL (expr))
2890 {
e34c848a 2891 gcc_assert (id_equal (DECL_NAME (expr), "this"));
56f83c40 2892 write_string ("fpT");
2893 }
34eac767 2894 else if (code == PARM_DECL)
2895 {
e92154af 2896 /* A function parameter used in a late-specified return type. */
32d008d9 2897 int index = DECL_PARM_INDEX (expr);
4d7aaf8e 2898 int level = DECL_PARM_LEVEL (expr);
2899 int delta = G.parm_depth - level + 1;
32d008d9 2900 gcc_assert (index >= 1);
4d7aaf8e 2901 write_char ('f');
2902 if (delta != 0)
2903 {
87d553db 2904 if (abi_version_at_least (5))
4d7aaf8e 2905 {
2906 /* Let L be the number of function prototype scopes from the
2907 innermost one (in which the parameter reference occurs) up
2908 to (and including) the one containing the declaration of
2909 the referenced parameter. If the parameter declaration
2910 clause of the innermost function prototype scope has been
2911 completely seen, it is not counted (in that case -- which
2912 is perhaps the most common -- L can be zero). */
2913 write_char ('L');
2914 write_unsigned_number (delta - 1);
2915 }
229a58b1 2916 if (abi_warn_or_compat_version_crosses (5))
4d7aaf8e 2917 G.need_abi_warning = true;
2918 }
2919 write_char ('p');
a8b75081 2920 write_compact_number (index - 1);
34eac767 2921 }
98eaf693 2922 else if (DECL_P (expr))
2923 {
2924 write_char ('L');
1da3f78a 2925 write_mangled_name (expr, false);
98eaf693 2926 write_char ('E');
2927 }
17fdf85c 2928 else if (TREE_CODE (expr) == SIZEOF_EXPR)
121296ee 2929 {
17fdf85c 2930 tree op = TREE_OPERAND (expr, 0);
2931
2932 if (PACK_EXPANSION_P (op))
2933 {
2934 if (abi_warn_or_compat_version_crosses (11))
2935 G.need_abi_warning = true;
2936 if (abi_version_at_least (11))
2937 {
2938 /* sZ rather than szDp. */
2939 write_string ("sZ");
2940 write_expression (PACK_EXPANSION_PATTERN (op));
2941 return;
2942 }
2943 }
2944
2945 if (SIZEOF_EXPR_TYPE_P (expr))
2946 {
2947 write_string ("st");
2948 write_type (TREE_TYPE (op));
2949 }
2950 else if (ARGUMENT_PACK_P (op))
2951 {
2952 tree args = ARGUMENT_PACK_ARGS (op);
2953 int length = TREE_VEC_LENGTH (args);
2954 if (abi_warn_or_compat_version_crosses (10))
2955 G.need_abi_warning = true;
2956 if (abi_version_at_least (10))
2957 {
2958 /* sP <template-arg>* E # sizeof...(T), size of a captured
2959 template parameter pack from an alias template */
2960 write_string ("sP");
2961 for (int i = 0; i < length; ++i)
2962 write_template_arg (TREE_VEC_ELT (args, i));
2963 write_char ('E');
2964 }
2965 else
2966 {
2967 /* In GCC 5 we represented this sizeof wrong, with the effect
2968 that we mangled it as the last element of the pack. */
2969 tree arg = TREE_VEC_ELT (args, length-1);
2970 if (TYPE_P (op))
2971 {
2972 write_string ("st");
2973 write_type (arg);
2974 }
2975 else
2976 {
2977 write_string ("sz");
2978 write_expression (arg);
2979 }
2980 }
2981 }
2982 else if (TYPE_P (TREE_OPERAND (expr, 0)))
2983 {
2984 write_string ("st");
2985 write_type (TREE_OPERAND (expr, 0));
2986 }
2987 else
2988 goto normal_expr;
74c75ba5 2989 }
e92154af 2990 else if (TREE_CODE (expr) == ALIGNOF_EXPR
2991 && TYPE_P (TREE_OPERAND (expr, 0)))
2992 {
2993 write_string ("at");
2994 write_type (TREE_OPERAND (expr, 0));
2995 }
8272c334 2996 else if (code == SCOPE_REF
2997 || code == BASELINK)
94302392 2998 {
8272c334 2999 tree scope, member;
3000 if (code == SCOPE_REF)
3001 {
3002 scope = TREE_OPERAND (expr, 0);
3003 member = TREE_OPERAND (expr, 1);
9e6bae05 3004 gcc_assert (!BASELINK_P (member));
8272c334 3005 }
3006 else
3007 {
3008 scope = BINFO_TYPE (BASELINK_ACCESS_BINFO (expr));
3009 member = BASELINK_FUNCTIONS (expr);
3010 }
94302392 3011
3012 /* If the MEMBER is a real declaration, then the qualifying
3013 scope was not dependent. Ideally, we would not have a
3014 SCOPE_REF in those cases, but sometimes we do. If the second
3015 argument is a DECL, then the name must not have been
3016 dependent. */
f591db9a 3017 if (DECL_P (member))
94302392 3018 write_expression (member);
3019 else
3020 {
94302392 3021 write_string ("sr");
3022 write_type (scope);
c44a7393 3023 write_member_name (member);
94302392 3024 }
3025 }
86ccc124 3026 else if (INDIRECT_REF_P (expr)
e92154af 3027 && TREE_TYPE (TREE_OPERAND (expr, 0))
90ad495b 3028 && TYPE_REF_P (TREE_TYPE (TREE_OPERAND (expr, 0))))
e92154af 3029 {
3030 write_expression (TREE_OPERAND (expr, 0));
3031 }
694683bb 3032 else if (identifier_p (expr))
c44a7393 3033 {
3034 /* An operator name appearing as a dependent name needs to be
3035 specially marked to disambiguate between a use of the operator
3036 name and a use of the operator in an expression. */
991449b2 3037 if (IDENTIFIER_ANY_OP_P (expr))
c44a7393 3038 write_string ("on");
3039 write_unqualified_id (expr);
3040 }
3041 else if (TREE_CODE (expr) == TEMPLATE_ID_EXPR)
3042 {
3043 tree fn = TREE_OPERAND (expr, 0);
6767ca9a 3044 fn = OVL_NAME (fn);
991449b2 3045 if (IDENTIFIER_ANY_OP_P (fn))
c44a7393 3046 write_string ("on");
3047 write_unqualified_id (fn);
3048 write_template_args (TREE_OPERAND (expr, 1));
3049 }
cc5f60f5 3050 else if (TREE_CODE (expr) == MODOP_EXPR)
3051 {
3052 enum tree_code subop = TREE_CODE (TREE_OPERAND (expr, 1));
ca16a224 3053 const char *name = OVL_OP_INFO (true, subop)->mangled_name;
3054
cc5f60f5 3055 write_string (name);
3056 write_expression (TREE_OPERAND (expr, 0));
3057 write_expression (TREE_OPERAND (expr, 2));
3058 }
2d847c18 3059 else if (code == NEW_EXPR || code == VEC_NEW_EXPR)
3060 {
3061 /* ::= [gs] nw <expression>* _ <type> E
3062 ::= [gs] nw <expression>* _ <type> <initializer>
3063 ::= [gs] na <expression>* _ <type> E
3064 ::= [gs] na <expression>* _ <type> <initializer>
3065 <initializer> ::= pi <expression>* E */
3066 tree placement = TREE_OPERAND (expr, 0);
3067 tree type = TREE_OPERAND (expr, 1);
3068 tree nelts = TREE_OPERAND (expr, 2);
3069 tree init = TREE_OPERAND (expr, 3);
3070 tree t;
3071
3072 gcc_assert (code == NEW_EXPR);
3073 if (TREE_OPERAND (expr, 2))
3074 code = VEC_NEW_EXPR;
3075
3076 if (NEW_EXPR_USE_GLOBAL (expr))
3077 write_string ("gs");
3078
ca16a224 3079 write_string (OVL_OP_INFO (false, code)->mangled_name);
2d847c18 3080
3081 for (t = placement; t; t = TREE_CHAIN (t))
3082 write_expression (TREE_VALUE (t));
3083
3084 write_char ('_');
3085
3086 if (nelts)
3087 {
3088 tree domain;
3089 ++processing_template_decl;
3090 domain = compute_array_index_type (NULL_TREE, nelts,
3091 tf_warning_or_error);
3092 type = build_cplus_array_type (type, domain);
3093 --processing_template_decl;
3094 }
3095 write_type (type);
3096
3097 if (init && TREE_CODE (init) == TREE_LIST
8e8713cd 3098 && DIRECT_LIST_INIT_P (TREE_VALUE (init)))
2d847c18 3099 write_expression (TREE_VALUE (init));
3100 else
3101 {
3102 if (init)
3103 write_string ("pi");
3ab4693e 3104 if (init && init != void_node)
2d847c18 3105 for (t = init; t; t = TREE_CHAIN (t))
3106 write_expression (TREE_VALUE (t));
3107 write_char ('E');
3108 }
3109 }
3110 else if (code == DELETE_EXPR || code == VEC_DELETE_EXPR)
3111 {
3112 gcc_assert (code == DELETE_EXPR);
3113 if (DELETE_EXPR_USE_VEC (expr))
3114 code = VEC_DELETE_EXPR;
3115
3116 if (DELETE_EXPR_USE_GLOBAL (expr))
3117 write_string ("gs");
3118
ca16a224 3119 write_string (OVL_OP_INFO (false, code)->mangled_name);
2d847c18 3120
3121 write_expression (TREE_OPERAND (expr, 0));
3122 }
3123 else if (code == THROW_EXPR)
3124 {
3125 tree op = TREE_OPERAND (expr, 0);
3126 if (op)
3127 {
3128 write_string ("tw");
3129 write_expression (op);
3130 }
3131 else
3132 write_string ("tr");
3133 }
3134 else if (code == CONSTRUCTOR)
3135 {
f1f41a6c 3136 vec<constructor_elt, va_gc> *elts = CONSTRUCTOR_ELTS (expr);
2d847c18 3137 unsigned i; tree val;
3138
3139 if (BRACE_ENCLOSED_INITIALIZER_P (expr))
3140 write_string ("il");
3141 else
3142 {
3143 write_string ("tl");
3144 write_type (TREE_TYPE (expr));
3145 }
3146 FOR_EACH_CONSTRUCTOR_VALUE (elts, i, val)
3147 write_expression (val);
3148 write_char ('E');
3149 }
9c093b14 3150 else if (code == LAMBDA_EXPR)
3151 {
3152 /* [temp.over.link] Two lambda-expressions are never considered
3153 equivalent.
3154
3155 So just use the closure type mangling. */
3156 write_string ("tl");
3157 write_type (LAMBDA_EXPR_CLOSURE (expr));
3158 write_char ('E');
3159 }
2d847c18 3160 else if (dependent_name (expr))
3161 {
3162 write_unqualified_id (dependent_name (expr));
3163 }
98eaf693 3164 else
3165 {
17fdf85c 3166 normal_expr:
e9b1be72 3167 int i, len;
e92154af 3168 const char *name;
98eaf693 3169
148e86d7 3170 /* When we bind a variable or function to a non-type template
3171 argument with reference type, we create an ADDR_EXPR to show
3172 the fact that the entity's address has been taken. But, we
3173 don't actually want to output a mangling code for the `&'. */
3174 if (TREE_CODE (expr) == ADDR_EXPR
3175 && TREE_TYPE (expr)
90ad495b 3176 && TYPE_REF_P (TREE_TYPE (expr)))
e75e76ea 3177 {
3178 expr = TREE_OPERAND (expr, 0);
3179 if (DECL_P (expr))
3180 {
3181 write_expression (expr);
3182 return;
3183 }
148e86d7 3184
e75e76ea 3185 code = TREE_CODE (expr);
3186 }
94302392 3187
59280ded 3188 if (code == COMPONENT_REF)
3189 {
3190 tree ob = TREE_OPERAND (expr, 0);
3191
3192 if (TREE_CODE (ob) == ARROW_EXPR)
3193 {
ca16a224 3194 write_string (OVL_OP_INFO (false, code)->mangled_name);
59280ded 3195 ob = TREE_OPERAND (ob, 0);
dc66dd88 3196 write_expression (ob);
59280ded 3197 }
dc66dd88 3198 else if (!is_dummy_object (ob))
3199 {
3200 write_string ("dt");
3201 write_expression (ob);
3202 }
3203 /* else, for a non-static data member with no associated object (in
3204 unevaluated context), use the unresolved-name mangling. */
59280ded 3205
59280ded 3206 write_member_name (TREE_OPERAND (expr, 1));
3207 return;
3208 }
3209
98eaf693 3210 /* If it wasn't any of those, recursively expand the expression. */
ca16a224 3211 name = OVL_OP_INFO (false, code)->mangled_name;
2d847c18 3212
3213 /* We used to mangle const_cast and static_cast like a C cast. */
74b777e5 3214 if (code == CONST_CAST_EXPR
3215 || code == STATIC_CAST_EXPR)
2d847c18 3216 {
229a58b1 3217 if (abi_warn_or_compat_version_crosses (6))
74b777e5 3218 G.need_abi_warning = 1;
3219 if (!abi_version_at_least (6))
ca16a224 3220 name = OVL_OP_INFO (false, CAST_EXPR)->mangled_name;
2d847c18 3221 }
3222
e92154af 3223 if (name == NULL)
3224 {
c5d17c88 3225 switch (code)
3226 {
3227 case TRAIT_EXPR:
3228 error ("use of built-in trait %qE in function signature; "
3229 "use library traits instead", expr);
3230 break;
3231
3232 default:
3233 sorry ("mangling %C", code);
3234 break;
3235 }
e92154af 3236 return;
3237 }
3238 else
3239 write_string (name);
98eaf693 3240
ee95f490 3241 switch (code)
98eaf693 3242 {
653e5405 3243 case CALL_EXPR:
c6ac8f0e 3244 {
3245 tree fn = CALL_EXPR_FN (expr);
3246
3247 if (TREE_CODE (fn) == ADDR_EXPR)
3248 fn = TREE_OPERAND (fn, 0);
3249
3250 /* Mangle a dependent name as the name, not whatever happens to
3251 be the first function in the overload set. */
3252 if ((TREE_CODE (fn) == FUNCTION_DECL
3253 || TREE_CODE (fn) == OVERLOAD)
3254 && type_dependent_expression_p_push (expr))
6767ca9a 3255 fn = OVL_NAME (fn);
c6ac8f0e 3256
c44a7393 3257 write_expression (fn);
c6ac8f0e 3258 }
3259
34eac767 3260 for (i = 0; i < call_expr_nargs (expr); ++i)
3261 write_expression (CALL_EXPR_ARG (expr, i));
3262 write_char ('E');
653e5405 3263 break;
33df020e 3264
ee95f490 3265 case CAST_EXPR:
3266 write_type (TREE_TYPE (expr));
e92154af 3267 if (list_length (TREE_OPERAND (expr, 0)) == 1)
d6828f49 3268 write_expression (TREE_VALUE (TREE_OPERAND (expr, 0)));
e92154af 3269 else
3270 {
3271 tree args = TREE_OPERAND (expr, 0);
3272 write_char ('_');
3273 for (; args; args = TREE_CHAIN (args))
3274 write_expression (TREE_VALUE (args));
3275 write_char ('E');
3276 }
ee95f490 3277 break;
3278
2d847c18 3279 case DYNAMIC_CAST_EXPR:
3280 case REINTERPRET_CAST_EXPR:
ee95f490 3281 case STATIC_CAST_EXPR:
3282 case CONST_CAST_EXPR:
3283 write_type (TREE_TYPE (expr));
3284 write_expression (TREE_OPERAND (expr, 0));
3285 break;
3286
2d847c18 3287 case PREINCREMENT_EXPR:
3288 case PREDECREMENT_EXPR:
3289 if (abi_version_at_least (6))
3290 write_char ('_');
229a58b1 3291 if (abi_warn_or_compat_version_crosses (6))
2d847c18 3292 G.need_abi_warning = 1;
3293 /* Fall through. */
e92154af 3294
ee95f490 3295 default:
e9b1be72 3296 /* In the middle-end, some expressions have more operands than
3297 they do in templates (and mangling). */
d558fa9c 3298 len = cp_tree_operand_length (expr);
e9b1be72 3299
3300 for (i = 0; i < len; ++i)
716521b5 3301 {
3302 tree operand = TREE_OPERAND (expr, i);
fbb01da7 3303 /* As a GNU extension, the middle operand of a
716521b5 3304 conditional may be omitted. Since expression
3305 manglings are supposed to represent the input token
3306 stream, there's no good way to mangle such an
3307 expression without extending the C++ ABI. */
3308 if (code == COND_EXPR && i == 1 && !operand)
3309 {
1e5fcbe2 3310 error ("omitted middle operand to %<?:%> operand "
716521b5 3311 "cannot be mangled");
3312 continue;
3313 }
c09c7fa4 3314 else if (FOLD_EXPR_P (expr))
3315 {
3316 /* The first 'operand' of a fold-expression is the operator
3317 that it folds over. */
3318 if (i == 0)
3319 {
3320 int fcode = TREE_INT_CST_LOW (operand);
ca16a224 3321 write_string (OVL_OP_INFO (false, fcode)->mangled_name);
c09c7fa4 3322 continue;
3323 }
3324 else if (code == BINARY_LEFT_FOLD_EXPR)
3325 {
3326 /* The order of operands of the binary left and right
3327 folds is the same, but we want to mangle them in
3328 lexical order, i.e. non-pack first. */
3329 if (i == 1)
3330 operand = FOLD_EXPR_INIT (expr);
3331 else
3332 operand = FOLD_EXPR_PACK (expr);
3333 }
3334 if (PACK_EXPANSION_P (operand))
3335 operand = PACK_EXPANSION_PATTERN (operand);
3336 }
716521b5 3337 write_expression (operand);
3338 }
98eaf693 3339 }
98eaf693 3340 }
3341}
3342
9031d10b 3343/* Literal subcase of non-terminal <template-arg>.
98eaf693 3344
3345 "Literal arguments, e.g. "A<42L>", are encoded with their type
3346 and value. Negative integer values are preceded with "n"; for
3347 example, "A<-42L>" becomes "1AILln42EE". The bool value false is
cc116129 3348 encoded as 0, true as 1." */
98eaf693 3349
3350static void
61e3d157 3351write_template_arg_literal (const tree value)
98eaf693 3352{
98eaf693 3353 write_char ('L');
092b1d6f 3354 write_type (TREE_TYPE (value));
98eaf693 3355
b5cdaa0b 3356 /* Write a null member pointer value as (type)0, regardless of its
3357 real representation. */
3358 if (null_member_pointer_value_p (value))
3359 write_integer_cst (integer_zero_node);
3360 else
3361 switch (TREE_CODE (value))
3362 {
3363 case CONST_DECL:
3364 write_integer_cst (DECL_INITIAL (value));
3365 break;
9031d10b 3366
b5cdaa0b 3367 case INTEGER_CST:
3368 gcc_assert (!same_type_p (TREE_TYPE (value), boolean_type_node)
3369 || integer_zerop (value) || integer_onep (value));
3370 write_integer_cst (value);
3371 break;
092b1d6f 3372
b5cdaa0b 3373 case REAL_CST:
3374 write_real_cst (value);
3375 break;
98eaf693 3376
193dc72f 3377 case COMPLEX_CST:
3378 if (TREE_CODE (TREE_REALPART (value)) == INTEGER_CST
3379 && TREE_CODE (TREE_IMAGPART (value)) == INTEGER_CST)
3380 {
3381 write_integer_cst (TREE_REALPART (value));
3382 write_char ('_');
3383 write_integer_cst (TREE_IMAGPART (value));
3384 }
3385 else if (TREE_CODE (TREE_REALPART (value)) == REAL_CST
3386 && TREE_CODE (TREE_IMAGPART (value)) == REAL_CST)
3387 {
3388 write_real_cst (TREE_REALPART (value));
3389 write_char ('_');
3390 write_real_cst (TREE_IMAGPART (value));
3391 }
3392 else
3393 gcc_unreachable ();
3394 break;
3395
b5cdaa0b 3396 case STRING_CST:
3397 sorry ("string literal in function template signature");
3398 break;
99fddf6e 3399
b5cdaa0b 3400 default:
3401 gcc_unreachable ();
3402 }
9031d10b 3403
98eaf693 3404 write_char ('E');
3405}
3406
9031d10b 3407/* Non-terminal <template-arg>.
98eaf693 3408
653e5405 3409 <template-arg> ::= <type> # type
3410 ::= L <type> </value/ number> E # literal
3411 ::= LZ <name> E # external name
3412 ::= X <expression> E # expression */
98eaf693 3413
3414static void
61e3d157 3415write_template_arg (tree node)
98eaf693 3416{
3417 enum tree_code code = TREE_CODE (node);
3418
3419 MANGLE_TRACE_TREE ("template-arg", node);
3420
a5268b2f 3421 /* A template template parameter's argument list contains TREE_LIST
dfea972c 3422 nodes of which the value field is the actual argument. */
98eaf693 3423 if (code == TREE_LIST)
3424 {
3425 node = TREE_VALUE (node);
3426 /* If it's a decl, deal with its type instead. */
3427 if (DECL_P (node))
3428 {
3429 node = TREE_TYPE (node);
3430 code = TREE_CODE (node);
3431 }
3432 }
9031d10b 3433
95f798aa 3434 if (template_parm_object_p (node))
3435 /* We want to mangle the argument, not the var we stored it in. */
3436 node = DECL_INITIAL (node);
3437
44677b54 3438 /* Strip a conversion added by convert_nontype_argument. */
3439 if (TREE_CODE (node) == IMPLICIT_CONV_EXPR)
3440 node = TREE_OPERAND (node, 0);
80fe9b6a 3441 if (REFERENCE_REF_P (node))
3442 node = TREE_OPERAND (node, 0);
25f4fc1e 3443 if (TREE_CODE (node) == NOP_EXPR
90ad495b 3444 && TYPE_REF_P (TREE_TYPE (node)))
25f4fc1e 3445 {
3446 /* Template parameters can be of reference type. To maintain
3447 internal consistency, such arguments use a conversion from
3448 address of object to reference type. */
b4df430b 3449 gcc_assert (TREE_CODE (TREE_OPERAND (node, 0)) == ADDR_EXPR);
f591db9a 3450 node = TREE_OPERAND (TREE_OPERAND (node, 0), 0);
25f4fc1e 3451 }
98eaf693 3452
2d847c18 3453 if (TREE_CODE (node) == BASELINK
3454 && !type_unknown_p (node))
3455 {
3456 if (abi_version_at_least (6))
3457 node = BASELINK_FUNCTIONS (node);
229a58b1 3458 if (abi_warn_or_compat_version_crosses (6))
2d847c18 3459 /* We wrongly wrapped a class-scope function in X/E. */
3460 G.need_abi_warning = 1;
3461 }
3462
d95d815d 3463 if (ARGUMENT_PACK_P (node))
3464 {
3465 /* Expand the template argument pack. */
3466 tree args = ARGUMENT_PACK_ARGS (node);
3467 int i, length = TREE_VEC_LENGTH (args);
2d847c18 3468 if (abi_version_at_least (6))
3469 write_char ('J');
3470 else
74b777e5 3471 write_char ('I');
229a58b1 3472 if (abi_warn_or_compat_version_crosses (6))
74b777e5 3473 G.need_abi_warning = 1;
d95d815d 3474 for (i = 0; i < length; ++i)
3475 write_template_arg (TREE_VEC_ELT (args, i));
4682b6fe 3476 write_char ('E');
d95d815d 3477 }
3478 else if (TYPE_P (node))
98eaf693 3479 write_type (node);
3480 else if (code == TEMPLATE_DECL)
3481 /* A template appearing as a template arg is a template template arg. */
3482 write_template_template_arg (node);
ce45a448 3483 else if ((TREE_CODE_CLASS (code) == tcc_constant && code != PTRMEM_CST)
f591db9a 3484 || code == CONST_DECL
b5cdaa0b 3485 || null_member_pointer_value_p (node))
d5f9419c 3486 write_template_arg_literal (node);
98eaf693 3487 else if (DECL_P (node))
3488 {
3489 write_char ('L');
f10ff0e0 3490 /* Until ABI version 3, the underscore before the mangled name
3491 was incorrectly omitted. */
3492 if (!abi_version_at_least (3))
74b777e5 3493 write_char ('Z');
f10ff0e0 3494 else
3495 write_string ("_Z");
229a58b1 3496 if (abi_warn_or_compat_version_crosses (3))
74b777e5 3497 G.need_abi_warning = 1;
98eaf693 3498 write_encoding (node);
3499 write_char ('E');
3500 }
98eaf693 3501 else
3502 {
3503 /* Template arguments may be expressions. */
3504 write_char ('X');
3505 write_expression (node);
3506 write_char ('E');
3507 }
3508}
3509
3510/* <template-template-arg>
3511 ::= <name>
3512 ::= <substitution> */
3513
9140e457 3514static void
61e3d157 3515write_template_template_arg (const tree decl)
98eaf693 3516{
3517 MANGLE_TRACE_TREE ("template-template-arg", decl);
3518
3519 if (find_substitution (decl))
3520 return;
bbb9efab 3521 write_name (decl, /*ignore_local_scope=*/0);
98eaf693 3522 add_substitution (decl);
3523}
3524
3525
9031d10b 3526/* Non-terminal <array-type>. TYPE is an ARRAY_TYPE.
98eaf693 3527
9031d10b 3528 <array-type> ::= A [</dimension/ number>] _ </element/ type>
653e5405 3529 ::= A <expression> _ </element/ type>
98eaf693 3530
3531 "Array types encode the dimension (number of elements) and the
6b94e133 3532 element type. For variable length arrays, the dimension (but not
3533 the '_' separator) is omitted."
3534 Note that for flexible array members, like for other arrays of
3535 unspecified size, the dimension is also omitted. */
98eaf693 3536
61e3d157 3537static void
3538write_array_type (const tree type)
98eaf693 3539{
3540 write_char ('A');
3541 if (TYPE_DOMAIN (type))
3542 {
3543 tree index_type;
98eaf693 3544
3545 index_type = TYPE_DOMAIN (type);
6b94e133 3546 /* The INDEX_TYPE gives the upper and lower bounds of the array.
3547 It's null for flexible array members which have no upper bound
3548 (this is a change from GCC 5 and prior where such members were
3549 incorrectly mangled as zero-length arrays). */
3550 if (tree max = TYPE_MAX_VALUE (index_type))
f753592a 3551 {
6b94e133 3552 if (TREE_CODE (max) == INTEGER_CST)
3553 {
3554 /* The ABI specifies that we should mangle the number of
3555 elements in the array, not the largest allowed index. */
3556 offset_int wmax = wi::to_offset (max) + 1;
3557 /* Truncate the result - this will mangle [0, SIZE_INT_MAX]
3558 number of elements as zero. */
3559 wmax = wi::zext (wmax, TYPE_PRECISION (TREE_TYPE (max)));
3560 gcc_assert (wi::fits_uhwi_p (wmax));
3561 write_unsigned_number (wmax.to_uhwi ());
3562 }
3563 else
3564 {
3565 max = TREE_OPERAND (max, 0);
3566 write_expression (max);
3567 }
1cd6548d 3568 }
98eaf693 3569 }
3570 write_char ('_');
3571 write_type (TREE_TYPE (type));
3572}
3573
3574/* Non-terminal <pointer-to-member-type> for pointer-to-member
3575 variables. TYPE is a pointer-to-member POINTER_TYPE.
3576
3577 <pointer-to-member-type> ::= M </class/ type> </member/ type> */
3578
3579static void
61e3d157 3580write_pointer_to_member_type (const tree type)
98eaf693 3581{
3582 write_char ('M');
58274fe8 3583 write_type (TYPE_PTRMEM_CLASS_TYPE (type));
98eaf693 3584 write_type (TYPE_PTRMEM_POINTED_TO_TYPE (type));
3585}
3586
3587/* Non-terminal <template-param>. PARM is a TEMPLATE_TYPE_PARM,
1e93ca27 3588 TEMPLATE_TEMPLATE_PARM, BOUND_TEMPLATE_TEMPLATE_PARM or a
3589 TEMPLATE_PARM_INDEX.
98eaf693 3590
ef4534a3 3591 <template-param> ::= T </parameter/ number> _ */
98eaf693 3592
3593static void
61e3d157 3594write_template_param (const tree parm)
98eaf693 3595{
3596 int parm_index;
3597
3598 MANGLE_TRACE_TREE ("template-parm", parm);
3599
3600 switch (TREE_CODE (parm))
3601 {
3602 case TEMPLATE_TYPE_PARM:
3603 case TEMPLATE_TEMPLATE_PARM:
1e93ca27 3604 case BOUND_TEMPLATE_TEMPLATE_PARM:
98eaf693 3605 parm_index = TEMPLATE_TYPE_IDX (parm);
3606 break;
3607
3608 case TEMPLATE_PARM_INDEX:
3609 parm_index = TEMPLATE_PARM_IDX (parm);
3610 break;
3611
3612 default:
092b1d6f 3613 gcc_unreachable ();
98eaf693 3614 }
3615
3616 write_char ('T');
3617 /* NUMBER as it appears in the mangling is (-1)-indexed, with the
3618 earliest template param denoted by `_'. */
a8b75081 3619 write_compact_number (parm_index);
98eaf693 3620}
3621
3622/* <template-template-param>
653e5405 3623 ::= <template-param>
98eaf693 3624 ::= <substitution> */
3625
3626static void
61e3d157 3627write_template_template_param (const tree parm)
98eaf693 3628{
607a5d68 3629 tree templ = NULL_TREE;
98eaf693 3630
3631 /* PARM, a TEMPLATE_TEMPLATE_PARM, is an instantiation of the
3632 template template parameter. The substitution candidate here is
3633 only the template. */
1e93ca27 3634 if (TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
98eaf693 3635 {
607a5d68 3636 templ
98eaf693 3637 = TI_TEMPLATE (TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (parm));
607a5d68 3638 if (find_substitution (templ))
98eaf693 3639 return;
3640 }
3641
3642 /* <template-param> encodes only the template parameter position,
3643 not its template arguments, which is fine here. */
3644 write_template_param (parm);
607a5d68 3645 if (templ)
3646 add_substitution (templ);
98eaf693 3647}
3648
9031d10b 3649/* Non-terminal <substitution>.
98eaf693 3650
3651 <substitution> ::= S <seq-id> _
653e5405 3652 ::= S_ */
98eaf693 3653
3654static void
61e3d157 3655write_substitution (const int seq_id)
98eaf693 3656{
3657 MANGLE_TRACE ("substitution", "");
3658
3659 write_char ('S');
3660 if (seq_id > 0)
e75e76ea 3661 write_number (seq_id - 1, /*unsigned=*/1, 36);
98eaf693 3662 write_char ('_');
3663}
3664
18f2b9d5 3665/* Start mangling ENTITY. */
98eaf693 3666
3667static inline void
dfecde36 3668start_mangling (const tree entity)
98eaf693 3669{
18f2b9d5 3670 G.entity = entity;
3671 G.need_abi_warning = false;
40e2decb 3672 G.need_cxx17_warning = false;
dfecde36 3673 obstack_free (&name_obstack, name_base);
3674 mangle_obstack = &name_obstack;
3675 name_base = obstack_alloc (&name_obstack, 0);
98eaf693 3676}
3677
dfecde36 3678/* Done with mangling. If WARN is true, and the name of G.entity will
3679 be mangled differently in a future version of the ABI, issue a
3680 warning. */
98eaf693 3681
dfecde36 3682static void
74b777e5 3683finish_mangling_internal (void)
98eaf693 3684{
3685 /* Clear all the substitutions. */
f1f41a6c 3686 vec_safe_truncate (G.substitutions, 0);
98eaf693 3687
3688 /* Null-terminate the string. */
3689 write_char ('\0');
dfecde36 3690}
3691
98eaf693 3692
dfecde36 3693/* Like finish_mangling_internal, but return the mangled string. */
3694
3695static inline const char *
74b777e5 3696finish_mangling (void)
dfecde36 3697{
74b777e5 3698 finish_mangling_internal ();
f13b585c 3699 return (const char *) obstack_finish (mangle_obstack);
98eaf693 3700}
3701
dfecde36 3702/* Like finish_mangling_internal, but return an identifier. */
3703
3704static tree
74b777e5 3705finish_mangling_get_identifier (void)
dfecde36 3706{
74b777e5 3707 finish_mangling_internal ();
dfecde36 3708 /* Don't obstack_finish here, and the next start_mangling will
3709 remove the identifier. */
4cd09d28 3710 return get_identifier ((const char *) obstack_base (mangle_obstack));
dfecde36 3711}
3712
98eaf693 3713/* Initialize data structures for mangling. */
3714
3715void
eb32e911 3716init_mangle (void)
98eaf693 3717{
f13b585c 3718 gcc_obstack_init (&name_obstack);
3719 name_base = obstack_alloc (&name_obstack, 0);
f1f41a6c 3720 vec_alloc (G.substitutions, 0);
98eaf693 3721
3722 /* Cache these identifiers for quick comparison when checking for
3723 standard substitutions. */
3724 subst_identifiers[SUBID_ALLOCATOR] = get_identifier ("allocator");
3725 subst_identifiers[SUBID_BASIC_STRING] = get_identifier ("basic_string");
3726 subst_identifiers[SUBID_CHAR_TRAITS] = get_identifier ("char_traits");
3727 subst_identifiers[SUBID_BASIC_ISTREAM] = get_identifier ("basic_istream");
3728 subst_identifiers[SUBID_BASIC_OSTREAM] = get_identifier ("basic_ostream");
3729 subst_identifiers[SUBID_BASIC_IOSTREAM] = get_identifier ("basic_iostream");
3730}
3731
3732/* Generate the mangled name of DECL. */
3733
dfecde36 3734static tree
61e3d157 3735mangle_decl_string (const tree decl)
98eaf693 3736{
dfecde36 3737 tree result;
df63172d 3738 location_t saved_loc = input_location;
3739 tree saved_fn = NULL_TREE;
3740 bool template_p = false;
3741
97de3401 3742 /* We shouldn't be trying to mangle an uninstantiated template. */
3743 gcc_assert (!type_dependent_expression_p (decl));
3744
df63172d 3745 if (DECL_LANG_SPECIFIC (decl) && DECL_USE_TEMPLATE (decl))
3746 {
3747 struct tinst_level *tl = current_instantiation ();
f5cb81c6 3748 if ((!tl || tl->maybe_get_node () != decl)
6ba663d6 3749 && push_tinst_level (decl))
df63172d 3750 {
3751 template_p = true;
3752 saved_fn = current_function_decl;
df63172d 3753 current_function_decl = NULL_TREE;
3754 }
3755 }
3756 input_location = DECL_SOURCE_LOCATION (decl);
98eaf693 3757
dfecde36 3758 start_mangling (decl);
98eaf693 3759
3760 if (TREE_CODE (decl) == TYPE_DECL)
3761 write_type (TREE_TYPE (decl));
3762 else
1da3f78a 3763 write_mangled_name (decl, true);
9031d10b 3764
74b777e5 3765 result = finish_mangling_get_identifier ();
98eaf693 3766 if (DEBUG_MANGLE)
dfecde36 3767 fprintf (stderr, "mangle_decl_string = '%s'\n\n",
3768 IDENTIFIER_POINTER (result));
df63172d 3769
3770 if (template_p)
3771 {
3772 pop_tinst_level ();
3773 current_function_decl = saved_fn;
3774 }
3775 input_location = saved_loc;
3776
98eaf693 3777 return result;
3778}
3779
3e5c885b 3780/* Return an identifier for the external mangled name of DECL. */
3781
3782static tree
3783get_mangled_id (tree decl)
3784{
3785 tree id = mangle_decl_string (decl);
3786 return targetm.mangle_decl_assembler_name (decl, id);
3787}
3788
98eaf693 3789/* Create an identifier for the external mangled name of DECL. */
3790
7e64c604 3791void
61e3d157 3792mangle_decl (const tree decl)
98eaf693 3793{
71d3f205 3794 tree id;
3795 bool dep;
3796
3797 /* Don't bother mangling uninstantiated templates. */
3798 ++processing_template_decl;
3799 if (TREE_CODE (decl) == TYPE_DECL)
3800 dep = dependent_type_p (TREE_TYPE (decl));
3801 else
3802 dep = (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl)
3803 && any_dependent_template_arguments_p (DECL_TI_ARGS (decl)));
3804 --processing_template_decl;
3805 if (dep)
3806 return;
3807
960a5573 3808 /* During LTO we keep mangled names of TYPE_DECLs for ODR type merging.
3809 It is not needed to assign names to anonymous namespace, but we use the
3810 "<anon>" marker to be able to tell if type is C++ ODR type or type
3811 produced by other language. */
3812 if (TREE_CODE (decl) == TYPE_DECL
3813 && TYPE_STUB_DECL (TREE_TYPE (decl))
3814 && !TREE_PUBLIC (TYPE_STUB_DECL (TREE_TYPE (decl))))
3815 id = get_identifier ("<anon>");
3816 else
3817 {
3818 gcc_assert (TREE_CODE (decl) != TYPE_DECL
3819 || !no_linkage_check (TREE_TYPE (decl), true));
f67cece7 3820 if (abi_version_at_least (10))
3821 if (tree fn = decl_function_context (decl))
3822 maybe_check_abi_tags (fn, decl);
960a5573 3823 id = get_mangled_id (decl);
3824 }
97a424bc 3825 SET_DECL_ASSEMBLER_NAME (decl, id);
20009fe3 3826
40e2decb 3827 if (G.need_cxx17_warning
a08fc382 3828 && (TREE_PUBLIC (decl) || DECL_REALLY_EXTERN (decl)))
957a727b 3829 warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wnoexcept_type,
2e9e9363 3830 "mangled name for %qD will change in C++17 because the "
3831 "exception specification is part of a function type",
3832 decl);
3833
6ad47359 3834 if (id != DECL_NAME (decl)
fb5491a0 3835 /* Don't do this for a fake symbol we aren't going to emit anyway. */
a1d8686f 3836 && TREE_CODE (decl) != TYPE_DECL
c6e04fca 3837 && !DECL_MAYBE_IN_CHARGE_CDTOR_P (decl))
20009fe3 3838 {
c6b4d6c1 3839 int save_ver = flag_abi_version;
3840 tree id2 = NULL_TREE;
6ad47359 3841
c6b4d6c1 3842 if (!DECL_REALLY_EXTERN (decl))
6ad47359 3843 {
e845448c 3844 record_mangling (decl, G.need_abi_warning);
6ad47359 3845
c6b4d6c1 3846 if (!G.need_abi_warning)
3847 return;
20009fe3 3848
c6b4d6c1 3849 flag_abi_version = flag_abi_compat_version;
3850 id2 = mangle_decl_string (decl);
3851 id2 = targetm.mangle_decl_assembler_name (decl, id2);
3852 flag_abi_version = save_ver;
20009fe3 3853
c6b4d6c1 3854 if (id2 != id)
3855 note_mangling_alias (decl, id2);
3856 }
74b777e5 3857
3858 if (warn_abi)
3859 {
8c41abe8 3860 const char fabi_version[] = "-fabi-version";
3861
c6b4d6c1 3862 if (flag_abi_compat_version != warn_abi_version
3863 || id2 == NULL_TREE)
229a58b1 3864 {
3865 flag_abi_version = warn_abi_version;
3866 id2 = mangle_decl_string (decl);
3867 id2 = targetm.mangle_decl_assembler_name (decl, id2);
3868 }
a5b4465c 3869 flag_abi_version = save_ver;
229a58b1 3870
3871 if (id2 == id)
3872 /* OK. */;
3873 else if (warn_abi_version != 0
3874 && abi_version_at_least (warn_abi_version))
66ed189d 3875 warning_at (DECL_SOURCE_LOCATION (G.entity), OPT_Wabi,
3876 "the mangled name of %qD changed between "
8c41abe8 3877 "%<%s=%d%> (%qD) and %<%s=%d%> (%qD)",
3878 G.entity, fabi_version, warn_abi_version, id2,
3879 fabi_version, save_ver, id);
74b777e5 3880 else
66ed189d 3881 warning_at (DECL_SOURCE_LOCATION (G.entity), OPT_Wabi,
3882 "the mangled name of %qD changes between "
8c41abe8 3883 "%<%s=%d%> (%qD) and %<%s=%d%> (%qD)",
3884 G.entity, fabi_version, save_ver, id,
3885 fabi_version, warn_abi_version, id2);
74b777e5 3886 }
3887
229a58b1 3888 flag_abi_version = save_ver;
a03f54f4 3889 }
98eaf693 3890}
3891
ec46af50 3892/* Generate the mangled representation of TYPE. */
98eaf693 3893
3894const char *
ec46af50 3895mangle_type_string (const tree type)
98eaf693 3896{
3897 const char *result;
3898
dfecde36 3899 start_mangling (type);
98eaf693 3900 write_type (type);
74b777e5 3901 result = finish_mangling ();
98eaf693 3902 if (DEBUG_MANGLE)
3903 fprintf (stderr, "mangle_type_string = '%s'\n\n", result);
3904 return result;
3905}
3906
98eaf693 3907/* Create an identifier for the mangled name of a special component
3908 for belonging to TYPE. CODE is the ABI-specified code for this
3909 component. */
3910
3911static tree
61e3d157 3912mangle_special_for_type (const tree type, const char *code)
98eaf693 3913{
dfecde36 3914 tree result;
98eaf693 3915
3916 /* We don't have an actual decl here for the special component, so
3917 we can't just process the <encoded-name>. Instead, fake it. */
dfecde36 3918 start_mangling (type);
98eaf693 3919
3920 /* Start the mangling. */
3921 write_string ("_Z");
3922 write_string (code);
3923
3924 /* Add the type. */
3925 write_type (type);
74b777e5 3926 result = finish_mangling_get_identifier ();
98eaf693 3927
3928 if (DEBUG_MANGLE)
dfecde36 3929 fprintf (stderr, "mangle_special_for_type = %s\n\n",
3930 IDENTIFIER_POINTER (result));
98eaf693 3931
dfecde36 3932 return result;
98eaf693 3933}
3934
3935/* Create an identifier for the mangled representation of the typeinfo
3936 structure for TYPE. */
3937
3938tree
61e3d157 3939mangle_typeinfo_for_type (const tree type)
98eaf693 3940{
3941 return mangle_special_for_type (type, "TI");
3942}
3943
3944/* Create an identifier for the mangled name of the NTBS containing
3945 the mangled name of TYPE. */
3946
3947tree
61e3d157 3948mangle_typeinfo_string_for_type (const tree type)
98eaf693 3949{
3950 return mangle_special_for_type (type, "TS");
3951}
3952
3953/* Create an identifier for the mangled name of the vtable for TYPE. */
3954
3955tree
61e3d157 3956mangle_vtbl_for_type (const tree type)
98eaf693 3957{
3958 return mangle_special_for_type (type, "TV");
3959}
3960
3961/* Returns an identifier for the mangled name of the VTT for TYPE. */
3962
3963tree
61e3d157 3964mangle_vtt_for_type (const tree type)
98eaf693 3965{
3966 return mangle_special_for_type (type, "TT");
3967}
3968
a6f4466c 3969/* Returns an identifier for the mangled name of the decomposition
3970 artificial variable DECL. DECLS is the vector of the VAR_DECLs
3971 for the identifier-list. */
3972
3973tree
3974mangle_decomp (const tree decl, vec<tree> &decls)
3975{
3976 gcc_assert (!type_dependent_expression_p (decl));
3977
3978 location_t saved_loc = input_location;
3979 input_location = DECL_SOURCE_LOCATION (decl);
3980
3981 start_mangling (decl);
3982 write_string ("_Z");
3983
3984 tree context = decl_mangling_context (decl);
3985 gcc_assert (context != NULL_TREE);
3986
3987 bool nested = false;
3988 if (DECL_NAMESPACE_STD_P (context))
3989 write_string ("St");
3990 else if (context != global_namespace)
3991 {
3992 nested = true;
3993 write_char ('N');
3994 write_prefix (decl_mangling_context (decl));
3995 }
3996
3997 write_string ("DC");
3998 unsigned int i;
3999 tree d;
4000 FOR_EACH_VEC_ELT (decls, i, d)
4001 write_unqualified_name (d);
4002 write_char ('E');
4003
4004 if (nested)
4005 write_char ('E');
4006
4007 tree id = finish_mangling_get_identifier ();
4008 if (DEBUG_MANGLE)
4009 fprintf (stderr, "mangle_decomp = '%s'\n\n",
4010 IDENTIFIER_POINTER (id));
4011
4012 input_location = saved_loc;
4013 return id;
4014}
4015
98eaf693 4016/* Return an identifier for a construction vtable group. TYPE is
4017 the most derived class in the hierarchy; BINFO is the base
9031d10b 4018 subobject for which this construction vtable group will be used.
98eaf693 4019
4020 This mangling isn't part of the ABI specification; in the ABI
4021 specification, the vtable group is dumped in the same COMDAT as the
4022 main vtable, and is referenced only from that vtable, so it doesn't
4023 need an external name. For binary formats without COMDAT sections,
9031d10b 4024 though, we need external names for the vtable groups.
98eaf693 4025
4026 We use the production
4027
4028 <special-name> ::= CT <type> <offset number> _ <base type> */
4029
4030tree
61e3d157 4031mangle_ctor_vtbl_for_type (const tree type, const tree binfo)
98eaf693 4032{
dfecde36 4033 tree result;
98eaf693 4034
dfecde36 4035 start_mangling (type);
98eaf693 4036
4037 write_string ("_Z");
4038 write_string ("TC");
4039 write_type (type);
4040 write_integer_cst (BINFO_OFFSET (binfo));
4041 write_char ('_');
4042 write_type (BINFO_TYPE (binfo));
4043
74b777e5 4044 result = finish_mangling_get_identifier ();
98eaf693 4045 if (DEBUG_MANGLE)
dfecde36 4046 fprintf (stderr, "mangle_ctor_vtbl_for_type = %s\n\n",
4047 IDENTIFIER_POINTER (result));
4048 return result;
98eaf693 4049}
4050
805e22b2 4051/* Mangle a this pointer or result pointer adjustment.
9031d10b 4052
805e22b2 4053 <call-offset> ::= h <fixed offset number> _
4054 ::= v <fixed offset number> _ <virtual offset number> _ */
9031d10b 4055
805e22b2 4056static void
61e3d157 4057mangle_call_offset (const tree fixed_offset, const tree virtual_offset)
805e22b2 4058{
71b1859a 4059 write_char (virtual_offset ? 'v' : 'h');
98eaf693 4060
805e22b2 4061 /* For either flavor, write the fixed offset. */
4062 write_integer_cst (fixed_offset);
4063 write_char ('_');
4064
4065 /* For a virtual thunk, add the virtual offset. */
4066 if (virtual_offset)
4067 {
4068 write_integer_cst (virtual_offset);
4069 write_char ('_');
4070 }
4071}
4072
4073/* Return an identifier for the mangled name of a this-adjusting or
4074 covariant thunk to FN_DECL. FIXED_OFFSET is the initial adjustment
4075 to this used to find the vptr. If VIRTUAL_OFFSET is non-NULL, this
4076 is a virtual thunk, and it is the vtbl offset in
f1d555e3 4077 bytes. THIS_ADJUSTING is nonzero for a this adjusting thunk and
805e22b2 4078 zero for a covariant thunk. Note, that FN_DECL might be a covariant
4079 thunk itself. A covariant thunk name always includes the adjustment
4080 for the this pointer, even if there is none.
4081
4082 <special-name> ::= T <call-offset> <base encoding>
653e5405 4083 ::= Tc <this_adjust call-offset> <result_adjust call-offset>
074ab442 4084 <base encoding> */
98eaf693 4085
4086tree
61e3d157 4087mangle_thunk (tree fn_decl, const int this_adjusting, tree fixed_offset,
a4a311c3 4088 tree virtual_offset, tree thunk)
98eaf693 4089{
dfecde36 4090 tree result;
9031d10b 4091
a4a311c3 4092 if (abi_version_at_least (11))
4093 maybe_check_abi_tags (fn_decl, thunk, 11);
4094
dfecde36 4095 start_mangling (fn_decl);
98eaf693 4096
4097 write_string ("_Z");
98eaf693 4098 write_char ('T');
9031d10b 4099
71b1859a 4100 if (!this_adjusting)
805e22b2 4101 {
4102 /* Covariant thunk with no this adjustment */
4103 write_char ('c');
4104 mangle_call_offset (integer_zero_node, NULL_TREE);
4105 mangle_call_offset (fixed_offset, virtual_offset);
4106 }
71b1859a 4107 else if (!DECL_THUNK_P (fn_decl))
4108 /* Plain this adjusting thunk. */
4109 mangle_call_offset (fixed_offset, virtual_offset);
98eaf693 4110 else
98eaf693 4111 {
805e22b2 4112 /* This adjusting thunk to covariant thunk. */
4113 write_char ('c');
4114 mangle_call_offset (fixed_offset, virtual_offset);
71b1859a 4115 fixed_offset = ssize_int (THUNK_FIXED_OFFSET (fn_decl));
4116 virtual_offset = THUNK_VIRTUAL_OFFSET (fn_decl);
4117 if (virtual_offset)
4118 virtual_offset = BINFO_VPTR_FIELD (virtual_offset);
4119 mangle_call_offset (fixed_offset, virtual_offset);
4120 fn_decl = THUNK_TARGET (fn_decl);
98eaf693 4121 }
4122
4123 /* Scoped name. */
4124 write_encoding (fn_decl);
4125
74b777e5 4126 result = finish_mangling_get_identifier ();
98eaf693 4127 if (DEBUG_MANGLE)
dfecde36 4128 fprintf (stderr, "mangle_thunk = %s\n\n", IDENTIFIER_POINTER (result));
4129 return result;
98eaf693 4130}
4131
b2c95551 4132/* Handle ABI backwards compatibility for past bugs where we didn't call
4133 check_abi_tags in places where it's needed: call check_abi_tags and warn if
f67cece7 4134 it makes a difference. If FOR_DECL is non-null, it's the declaration
4135 that we're actually trying to mangle; if it's null, we're mangling the
4136 guard variable for T. */
b2c95551 4137
4138static void
a4a311c3 4139maybe_check_abi_tags (tree t, tree for_decl, int ver)
b2c95551 4140{
f67cece7 4141 if (DECL_ASSEMBLER_NAME_SET_P (t))
4142 return;
4143
b795d0cb 4144 tree oldtags = get_abi_tags (t);
b2c95551 4145
f67cece7 4146 mangle_decl (t);
b2c95551 4147
b795d0cb 4148 tree newtags = get_abi_tags (t);
4149 if (newtags && newtags != oldtags
a4a311c3 4150 && abi_version_crosses (ver))
f67cece7 4151 {
a4a311c3 4152 if (for_decl && DECL_THUNK_P (for_decl))
4153 warning_at (DECL_SOURCE_LOCATION (t), OPT_Wabi,
4154 "the mangled name of a thunk for %qD changes between "
4155 "-fabi-version=%d and -fabi-version=%d",
4156 t, flag_abi_version, warn_abi_version);
4157 else if (for_decl)
f67cece7 4158 warning_at (DECL_SOURCE_LOCATION (for_decl), OPT_Wabi,
4159 "the mangled name of %qD changes between "
4160 "-fabi-version=%d and -fabi-version=%d",
4161 for_decl, flag_abi_version, warn_abi_version);
4162 else
4163 warning_at (DECL_SOURCE_LOCATION (t), OPT_Wabi,
67af79be 4164 "the mangled name of the initialization guard variable "
4165 "for %qD changes between -fabi-version=%d and "
4166 "-fabi-version=%d",
f67cece7 4167 t, flag_abi_version, warn_abi_version);
4168 }
b2c95551 4169}
4170
462819c8 4171/* Write out the appropriate string for this variable when generating
4172 another mangled name based on this one. */
98eaf693 4173
462819c8 4174static void
4175write_guarded_var_name (const tree variable)
98eaf693 4176{
580d697f 4177 if (DECL_NAME (variable)
4178 && strncmp (IDENTIFIER_POINTER (DECL_NAME (variable)), "_ZGR", 4) == 0)
ca106ab1 4179 /* The name of a guard variable for a reference temporary should refer
4180 to the reference, not the temporary. */
4181 write_string (IDENTIFIER_POINTER (DECL_NAME (variable)) + 4);
4182 else
f67cece7 4183 write_name (variable, /*ignore_local_scope=*/0);
462819c8 4184}
4185
4186/* Return an identifier for the name of an initialization guard
4187 variable for indicated VARIABLE. */
4188
4189tree
4190mangle_guard_variable (const tree variable)
4191{
f67cece7 4192 if (abi_version_at_least (10))
4193 maybe_check_abi_tags (variable);
462819c8 4194 start_mangling (variable);
4195 write_string ("_ZGV");
4196 write_guarded_var_name (variable);
74b777e5 4197 return finish_mangling_get_identifier ();
462819c8 4198}
4199
4200/* Return an identifier for the name of a thread_local initialization
4201 function for VARIABLE. */
4202
4203tree
4204mangle_tls_init_fn (const tree variable)
4205{
e1c52611 4206 check_abi_tags (variable);
462819c8 4207 start_mangling (variable);
4208 write_string ("_ZTH");
4209 write_guarded_var_name (variable);
74b777e5 4210 return finish_mangling_get_identifier ();
462819c8 4211}
4212
4213/* Return an identifier for the name of a thread_local wrapper
4214 function for VARIABLE. */
4215
4216#define TLS_WRAPPER_PREFIX "_ZTW"
4217
4218tree
4219mangle_tls_wrapper_fn (const tree variable)
4220{
e1c52611 4221 check_abi_tags (variable);
462819c8 4222 start_mangling (variable);
4223 write_string (TLS_WRAPPER_PREFIX);
4224 write_guarded_var_name (variable);
74b777e5 4225 return finish_mangling_get_identifier ();
98eaf693 4226}
47fc2356 4227
462819c8 4228/* Return true iff FN is a thread_local wrapper function. */
4229
4230bool
4231decl_tls_wrapper_p (const tree fn)
4232{
4233 if (TREE_CODE (fn) != FUNCTION_DECL)
4234 return false;
4235 tree name = DECL_NAME (fn);
4236 return strncmp (IDENTIFIER_POINTER (name), TLS_WRAPPER_PREFIX,
4237 strlen (TLS_WRAPPER_PREFIX)) == 0;
4238}
4239
ca106ab1 4240/* Return an identifier for the name of a temporary variable used to
4241 initialize a static reference. This isn't part of the ABI, but we might
4242 as well call them something readable. */
4243
c7b89256 4244static GTY(()) int temp_count;
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. */
4255 write_unsigned_number (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"