]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/cp/mangle.c
C++: more location wrapper nodes (PR c++/43064, PR c++/43486)
[thirdparty/gcc.git] / gcc / cp / mangle.c
1 /* Name mangling for the 3.0 -*- C++ -*- ABI.
2 Copyright (C) 2000-2018 Free Software Foundation, Inc.
3 Written by Alex Samuel <samuel@codesourcery.com>
4
5 This file is part of GCC.
6
7 GCC is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
10 any later version.
11
12 GCC is distributed in the hope that it will be useful, but
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
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
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
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
45 mangle_thunk: thunk function or entry */
46
47 #include "config.h"
48 #include "system.h"
49 #include "coretypes.h"
50 #include "target.h"
51 #include "vtable-verify.h"
52 #include "cp-tree.h"
53 #include "stringpool.h"
54 #include "cgraph.h"
55 #include "stor-layout.h"
56 #include "flags.h"
57 #include "attribs.h"
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) \
69 fprintf (stderr, " %-24s: %-24s\n", (FN), (INPUT))
70 # define MANGLE_TRACE_TREE(FN, NODE) \
71 fprintf (stderr, " %-24s: %-24s (%p)\n", \
72 (FN), get_tree_code_name (TREE_CODE (NODE)), (void *) (NODE))
73 #else
74 # define MANGLE_TRACE(FN, INPUT)
75 # define MANGLE_TRACE_TREE(FN, NODE)
76 #endif
77
78 /* Nonzero if NODE is a class template-id. We can't rely on
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
82 without parameters inside the template. */
83 #define CLASSTYPE_TEMPLATE_ID_P(NODE) \
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))))
88
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
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
102 /* Things we only need one of. This module is not reentrant. */
103 struct GTY(()) globals {
104 /* An array of the current substitution candidates, in the order
105 we've seen them. */
106 vec<tree, va_gc> *substitutions;
107
108 /* The entity that is being mangled. */
109 tree GTY ((skip)) entity;
110
111 /* How many parameter scopes we are inside. */
112 int parm_depth;
113
114 /* True if the mangling will be different in a future version of the
115 ABI. */
116 bool need_abi_warning;
117
118 /* True if the mangling will be different in C++17 mode. */
119 bool need_cxx17_warning;
120 };
121
122 static GTY (()) globals G;
123
124 /* The obstack on which we build mangled names. */
125 static struct obstack *mangle_obstack;
126
127 /* The obstack on which we build mangled names that are not going to
128 be IDENTIFIER_NODEs. */
129 static struct obstack name_obstack;
130
131 /* The first object on the name_obstack; we use this to free memory
132 allocated on the name_obstack. */
133 static void *name_base;
134
135 /* Indices into subst_identifiers. These are identifiers used in
136 special substitution rules. */
137 typedef 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 }
147 substitution_identifier_index_t;
148
149 /* For quick substitution checks, look up these common identifiers
150 once only. */
151 static GTY(()) tree subst_identifiers[SUBID_MAX];
152
153 /* Single-letter codes for builtin integer types, defined in
154 <builtin-type>. These are indexed by integer_type_kind values. */
155 static const char
156 integer_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 */
168 'y', /* itk_unsigned_long_long */
169 /* __intN types are handled separately */
170 '\0', '\0', '\0', '\0', '\0', '\0', '\0', '\0'
171 };
172
173 static int decl_is_template_id (const tree, tree* const);
174
175 /* Functions for handling substitutions. */
176
177 static inline tree canonicalize_for_substitution (tree);
178 static void add_substitution (tree);
179 static inline int is_std_substitution (const tree,
180 const substitution_identifier_index_t);
181 static inline int is_std_substitution_char (const tree,
182 const substitution_identifier_index_t);
183 static int find_substitution (tree);
184 static void mangle_call_offset (const tree, const tree);
185
186 /* Functions for emitting mangled representations of things. */
187
188 static void write_mangled_name (const tree, bool);
189 static void write_encoding (const tree);
190 static void write_name (tree, const int);
191 static void write_abi_tags (tree);
192 static void write_unscoped_name (const tree);
193 static void write_unscoped_template_name (const tree);
194 static void write_nested_name (const tree);
195 static void write_prefix (const tree);
196 static void write_template_prefix (const tree);
197 static void write_unqualified_name (tree);
198 static void write_conversion_operator_name (const tree);
199 static void write_source_name (tree);
200 static void write_literal_operator_name (tree);
201 static void write_unnamed_type_name (const tree);
202 static void write_closure_type_name (const tree);
203 static int hwint_to_ascii (unsigned HOST_WIDE_INT, const unsigned int, char *,
204 const unsigned int);
205 static void write_number (unsigned HOST_WIDE_INT, const int,
206 const unsigned int);
207 static void write_compact_number (int num);
208 static void write_integer_cst (const tree);
209 static void write_real_cst (const tree);
210 static void write_identifier (const char *);
211 static void write_special_name_constructor (const tree);
212 static void write_special_name_destructor (const tree);
213 static void write_type (tree);
214 static int write_CV_qualifiers_for_type (const tree);
215 static void write_builtin_type (tree);
216 static void write_function_type (const tree);
217 static void write_bare_function_type (const tree, const int, const tree);
218 static void write_method_parms (tree, const int, const tree);
219 static void write_class_enum_type (const tree);
220 static void write_template_args (tree);
221 static void write_expression (tree);
222 static void write_template_arg_literal (const tree);
223 static void write_template_arg (tree);
224 static void write_template_template_arg (const tree);
225 static void write_array_type (const tree);
226 static void write_pointer_to_member_type (const tree);
227 static void write_template_param (const tree);
228 static void write_template_template_param (const tree);
229 static void write_substitution (const int);
230 static int discriminator_for_local_entity (tree);
231 static int discriminator_for_string_literal (tree, tree);
232 static void write_discriminator (const int);
233 static void write_local_name (tree, const tree, const tree);
234 static void dump_substitution_candidates (void);
235 static tree mangle_decl_string (const tree);
236 static void maybe_check_abi_tags (tree, tree = NULL_TREE, int = 10);
237 static bool equal_abi_tags (tree, tree);
238
239 /* Control functions. */
240
241 static inline void start_mangling (const tree);
242 static tree mangle_special_for_type (const tree, const char *);
243
244 /* Append a single character to the end of the mangled
245 representation. */
246 #define write_char(CHAR) \
247 obstack_1grow (mangle_obstack, (CHAR))
248
249 /* Append a sized buffer to the end of the mangled representation. */
250 #define write_chars(CHAR, LEN) \
251 obstack_grow (mangle_obstack, (CHAR), (LEN))
252
253 /* Append a NUL-terminated string to the end of the mangled
254 representation. */
255 #define write_string(STRING) \
256 obstack_grow (mangle_obstack, (STRING), strlen (STRING))
257
258 /* Nonzero if NODE1 and NODE2 are both TREE_LIST nodes and have the
259 same purpose (context, which may be a type) and value (template
260 decl). See write_template_prefix for more information on what this
261 is used for. */
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)) \
268 && TREE_VALUE (NODE1) == TREE_VALUE (NODE2))
269
270 /* Write out an unsigned quantity in base 10. */
271 #define write_unsigned_number(NUMBER) \
272 write_number ((NUMBER), /*unsigned_p=*/1, 10)
273
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. */
277
278 static int
279 decl_is_template_id (const tree decl, tree* const template_info)
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. */
285 const tree type = TREE_TYPE (decl);
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. */
292 *template_info = TYPE_TEMPLATE_INFO (type);
293 return 1;
294 }
295 }
296 else
297 {
298 /* Check if this is a primary template. */
299 if (DECL_LANG_SPECIFIC (decl) != NULL
300 && VAR_OR_FUNCTION_DECL_P (decl)
301 && DECL_TEMPLATE_INFO (decl)
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
317 /* Produce debugging output of current substitution candidates. */
318
319 static void
320 dump_substitution_candidates (void)
321 {
322 unsigned i;
323 tree el;
324
325 fprintf (stderr, " ++ substitutions ");
326 FOR_EACH_VEC_ELT (*G.substitutions, i, el)
327 {
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))
337 name = TYPE_NAME_STRING (el);
338 fprintf (stderr, " S%d_ = ", i - 1);
339 if (TYPE_P (el) &&
340 (CP_TYPE_RESTRICT_P (el)
341 || CP_TYPE_VOLATILE_P (el)
342 || CP_TYPE_CONST_P (el)))
343 fprintf (stderr, "CV-");
344 fprintf (stderr, "%s (%s at %p)\n",
345 name, get_tree_code_name (TREE_CODE (el)), (void *) el);
346 }
347 }
348
349 /* <exception-spec> ::=
350 Do -- non-throwing exception specification
351 DO <expression> E -- computed (instantiation-dependent) noexcept
352 Dw <type>* E -- throw (types) */
353
354 static void
355 write_exception_spec (tree spec)
356 {
357
358 if (!spec || spec == noexcept_false_spec)
359 /* Nothing. */
360 return;
361
362 if (!flag_noexcept_type)
363 {
364 G.need_cxx17_warning = true;
365 return;
366 }
367
368 if (spec == noexcept_true_spec || spec == empty_except_spec)
369 write_string ("Do");
370 else if (tree expr = TREE_PURPOSE (spec))
371 {
372 /* noexcept (expr) */
373 gcc_assert (uses_template_parms (expr));
374 write_string ("DO");
375 write_expression (expr);
376 write_char ('E');
377 }
378 else
379 {
380 /* throw (type-list) */
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
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
391 be treated accordingly in substitutions. This function returns a
392 canonicalized tree node representing NODE that is used when adding
393 and substitution candidates and finding matches. */
394
395 static inline tree
396 canonicalize_for_substitution (tree node)
397 {
398 /* For a TYPE_DECL, use the type instead. */
399 if (TREE_CODE (node) == TYPE_DECL)
400 node = TREE_TYPE (node);
401 if (TYPE_P (node)
402 && TYPE_CANONICAL (node) != node
403 && TYPE_MAIN_VARIANT (node) != node)
404 {
405 tree orig = node;
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. */
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));
417 if (TREE_CODE (node) == FUNCTION_TYPE
418 || TREE_CODE (node) == METHOD_TYPE)
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 }
428 }
429 return node;
430 }
431
432 /* Add NODE as a substitution candidate. NODE must not already be on
433 the list of candidates. */
434
435 static void
436 add_substitution (tree node)
437 {
438 tree c;
439
440 if (DEBUG_MANGLE)
441 fprintf (stderr, " ++ add_substitution (%s at %10p)\n",
442 get_tree_code_name (TREE_CODE (node)), (void *) node);
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",
448 get_tree_code_name (TREE_CODE (node)), (void *) node);
449 node = c;
450
451 /* Make sure NODE isn't already a candidate. */
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)
461 && same_type_p (node, candidate)));
462 }
463 }
464
465 /* Put the decl onto the varray of substitution candidates. */
466 vec_safe_push (G.substitutions, node);
467
468 if (DEBUG_MANGLE)
469 dump_substitution_candidates ();
470 }
471
472 /* Helper function for find_substitution. Returns nonzero if NODE,
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
476 static inline int
477 is_std_substitution (const tree node,
478 const substitution_identifier_index_t index)
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 }
493 else
494 /* These are not the droids you're looking for. */
495 return 0;
496
497 return (DECL_NAMESPACE_STD_P (CP_DECL_CONTEXT (decl))
498 && TYPE_LANG_SPECIFIC (type)
499 && TYPE_TEMPLATE_INFO (type)
500 && (DECL_NAME (TYPE_TI_TEMPLATE (type))
501 == subst_identifiers[index]));
502 }
503
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
507 static tree
508 get_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
528 /* Helper function for find_substitution. Returns nonzero if NODE,
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
533 static inline int
534 is_std_substitution_char (const tree node,
535 const substitution_identifier_index_t index)
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))
543 args = DECL_TI_ARGS (node);
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>. */
550 return
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
560 <substitution> ::= St
561 # ::std
562
563 ::= Sa
564 # ::std::allocator
565
566 ::= Sb
567 # ::std::basic_string
568
569 ::= Ss
570 # ::std::basic_string<char,
571 ::std::char_traits<char>,
572 ::std::allocator<char> >
573
574 ::= Si
575 # ::std::basic_istream<char, ::std::char_traits<char> >
576
577 ::= So
578 # ::std::basic_ostream<char, ::std::char_traits<char> >
579
580 ::= Sd
581 # ::std::basic_iostream<char, ::std::char_traits<char> >
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
587 return nonzero. If none is found, just return zero. */
588
589 static int
590 find_substitution (tree node)
591 {
592 int i;
593 const int size = vec_safe_length (G.substitutions);
594 tree decl;
595 tree type;
596 const char *abbr = NULL;
597
598 if (DEBUG_MANGLE)
599 fprintf (stderr, " ++ find_substitution (%s at %p)\n",
600 get_tree_code_name (TREE_CODE (node)), (void *) node);
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. */
612 if (decl
613 && is_std_substitution (decl, SUBID_ALLOCATOR)
614 && !CLASSTYPE_USE_TEMPLATE (TREE_TYPE (decl)))
615 abbr = "Sa";
616
617 /* Check for std::basic_string. */
618 else if (decl && is_std_substitution (decl, SUBID_BASIC_STRING))
619 {
620 if (TYPE_P (node))
621 {
622 /* If this is a type (i.e. a fully-qualified template-id),
623 check for
624 std::basic_string <char,
625 std::char_traits<char>,
626 std::allocator<char> > . */
627 if (cp_type_quals (type) == TYPE_UNQUALIFIED
628 && CLASSTYPE_USE_TEMPLATE (type))
629 {
630 tree args = CLASSTYPE_TI_ARGS (type);
631 if (TREE_VEC_LENGTH (args) == 3
632 && same_type_p (TREE_VEC_ELT (args, 0), char_type_node)
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))
637 abbr = "Ss";
638 }
639 }
640 else
641 /* Substitute for the template name only if this isn't a type. */
642 abbr = "Sb";
643 }
644
645 /* Check for basic_{i,o,io}stream. */
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)
651 {
652 /* First, check for the template
653 args <char, std::char_traits<char> > . */
654 tree args = CLASSTYPE_TI_ARGS (type);
655 if (TREE_VEC_LENGTH (args) == 2
656 && TYPE_P (TREE_VEC_ELT (args, 0))
657 && same_type_p (TREE_VEC_ELT (args, 0), char_type_node)
658 && is_std_substitution_char (TREE_VEC_ELT (args, 1),
659 SUBID_CHAR_TRAITS))
660 {
661 /* Got them. Is this basic_istream? */
662 if (is_std_substitution (decl, SUBID_BASIC_ISTREAM))
663 abbr = "Si";
664 /* Or basic_ostream? */
665 else if (is_std_substitution (decl, SUBID_BASIC_OSTREAM))
666 abbr = "So";
667 /* Or basic_iostream? */
668 else if (is_std_substitution (decl, SUBID_BASIC_IOSTREAM))
669 abbr = "Sd";
670 }
671 }
672
673 /* Check for namespace std. */
674 else if (decl && DECL_NAMESPACE_STD_P (decl))
675 {
676 write_string ("St");
677 return 1;
678 }
679
680 tree tags = NULL_TREE;
681 if (OVERLOAD_TYPE_P (node) || DECL_CLASS_TEMPLATE_P (node))
682 tags = get_abi_tags (type);
683 /* Now check the list of available substitutions for this mangling
684 operation. */
685 if (!abbr || tags) for (i = 0; i < size; ++i)
686 {
687 tree candidate = (*G.substitutions)[i];
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
691 || (TYPE_P (candidate) && type && TYPE_P (node)
692 && same_type_p (type, candidate))
693 || NESTED_TEMPLATE_MATCH (node, candidate))
694 {
695 write_substitution (i);
696 return 1;
697 }
698 }
699
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;
713 }
714
715 /* Returns whether DECL's symbol name should be the plain unqualified-id
716 rather than a more complicated mangled name. */
717
718 static bool
719 unmangled_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. */
748 if (get_abi_tags (decl))
749 return false;
750
751 /* The names of non-static global variables aren't mangled. */
752 return true;
753 }
754
755 return false;
756 }
757
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.
761
762 <mangled-name> ::= _Z <encoding> */
763
764 static void
765 write_mangled_name (const tree decl, bool top_level)
766 {
767 MANGLE_TRACE_TREE ("mangled-name", decl);
768
769 check_abi_tags (decl);
770
771 if (unmangled_name_p (decl))
772 {
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"
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. */
782 write_string ("_Z");
783 write_source_name (DECL_NAME (decl));
784 }
785 }
786 else
787 {
788 write_string ("_Z");
789 write_encoding (decl);
790 }
791 }
792
793 /* Returns true if the return type of DECL is part of its signature, and
794 therefore its mangling. */
795
796 bool
797 mangle_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
805 /* <encoding> ::= <function name> <bare-function-type>
806 ::= <data name> */
807
808 static void
809 write_encoding (const tree decl)
810 {
811 MANGLE_TRACE_TREE ("encoding", decl);
812
813 if (DECL_LANG_SPECIFIC (decl) && DECL_EXTERN_C_FUNCTION_P (decl))
814 {
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));
821 return;
822 }
823
824 write_name (decl, /*ignore_local_scope=*/0);
825 if (TREE_CODE (decl) == FUNCTION_DECL)
826 {
827 tree fn_type;
828 tree d;
829 bool tmpl = decl_is_template_id (decl, NULL);
830
831 if (tmpl)
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 }
840 else
841 {
842 fn_type = TREE_TYPE (decl);
843 d = decl;
844 }
845
846 write_bare_function_type (fn_type,
847 mangle_return_type_p (decl),
848 d);
849 }
850 }
851
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
855 static tree
856 decl_mangling_context (tree decl)
857 {
858 tree tcontext = targetm.cxx.decl_mangling_context (decl);
859
860 if (tcontext != NULL_TREE)
861 return tcontext;
862
863 if (TREE_CODE (decl) == TEMPLATE_DECL
864 && DECL_TEMPLATE_RESULT (decl))
865 decl = DECL_TEMPLATE_RESULT (decl);
866
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 }
874 else if (template_type_parameter_p (decl))
875 /* template type parms have no mangling context. */
876 return NULL_TREE;
877 return CP_DECL_CONTEXT (decl);
878 }
879
880 /* <name> ::= <unscoped-name>
881 ::= <unscoped-template-name> <template-args>
882 ::= <nested-name>
883 ::= <local-name>
884
885 If IGNORE_LOCAL_SCOPE is nonzero, this production of <name> is
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. */
890
891 static void
892 write_name (tree decl, const int ignore_local_scope)
893 {
894 tree context;
895
896 MANGLE_TRACE_TREE ("name", decl);
897
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)));
903 }
904
905 context = decl_mangling_context (decl);
906
907 gcc_assert (context != NULL_TREE);
908
909 if (abi_warn_or_compat_version_crosses (7)
910 && ignore_local_scope
911 && TREE_CODE (context) == PARM_DECL)
912 G.need_abi_warning = 1;
913
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>. */
919 if (context == global_namespace
920 || DECL_NAMESPACE_STD_P (context)
921 || (ignore_local_scope
922 && (TREE_CODE (context) == FUNCTION_DECL
923 || (abi_version_at_least (7)
924 && TREE_CODE (context) == PARM_DECL))))
925 {
926 tree template_info;
927 /* Is this a template instance? */
928 if (decl_is_template_id (decl, &template_info))
929 {
930 /* Yes: use <unscoped-template-name>. */
931 write_unscoped_template_name (TI_TEMPLATE (template_info));
932 write_template_args (TI_ARGS (template_info));
933 }
934 else
935 /* Everything else gets an <unqualified-name>. */
936 write_unscoped_name (decl);
937 }
938 else
939 {
940 /* Handle local names, unless we asked not to (that is, invoked
941 under <local-name>, to handle only the part of the name under
942 the local scope). */
943 if (!ignore_local_scope)
944 {
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;
952 while (context != global_namespace)
953 {
954 /* Make sure we're always dealing with decls. */
955 if (TYPE_P (context))
956 context = TYPE_NAME (context);
957 /* Is this a function? */
958 if (TREE_CODE (context) == FUNCTION_DECL
959 || TREE_CODE (context) == PARM_DECL)
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;
968 context = decl_mangling_context (context);
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 }
977 }
978
979 /* <unscoped-name> ::= <unqualified-name>
980 ::= St <unqualified-name> # ::std:: */
981
982 static void
983 write_unscoped_name (const tree decl)
984 {
985 tree context = decl_mangling_context (decl);
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 }
995 else
996 {
997 /* If not, it should be either in the global namespace, or directly
998 in a local function scope. A lambda can also be mangled in the
999 scope of a default argument. */
1000 gcc_assert (context == global_namespace
1001 || TREE_CODE (context) == PARM_DECL
1002 || TREE_CODE (context) == FUNCTION_DECL);
1003
1004 write_unqualified_name (decl);
1005 }
1006 }
1007
1008 /* <unscoped-template-name> ::= <unscoped-name>
1009 ::= <substitution> */
1010
1011 static void
1012 write_unscoped_template_name (const tree decl)
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
1024 <nested-name> ::= N [<CV-qualifiers>] [<ref-qualifier>] <prefix> <unqualified-name> E
1025 ::= N [<CV-qualifiers>] [<ref-qualifier>] <template-prefix> <template-args> E
1026
1027 <ref-qualifier> ::= R # & ref-qualifier
1028 ::= O # && ref-qualifier
1029 <CV-qualifiers> ::= [r] [V] [K] */
1030
1031 static void
1032 write_nested_name (const tree decl)
1033 {
1034 tree template_info;
1035
1036 MANGLE_TRACE_TREE ("nested-name", decl);
1037
1038 write_char ('N');
1039
1040 /* Write CV-qualifiers, if this is a member function. */
1041 if (TREE_CODE (decl) == FUNCTION_DECL
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');
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 }
1055 }
1056
1057 /* Is this a template instance? */
1058 if (decl_is_template_id (decl, &template_info))
1059 {
1060 /* Yes, use <template-prefix>. */
1061 write_template_prefix (decl);
1062 write_template_args (TI_ARGS (template_info));
1063 }
1064 else if ((!abi_version_at_least (10) || TREE_CODE (decl) == TYPE_DECL)
1065 && TREE_CODE (TREE_TYPE (decl)) == TYPENAME_TYPE)
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 {
1075 write_prefix (decl_mangling_context (decl));
1076 write_unqualified_name (decl);
1077 }
1078 }
1079 else
1080 {
1081 /* No, just use <prefix> */
1082 write_prefix (decl_mangling_context (decl));
1083 write_unqualified_name (decl);
1084 }
1085 write_char ('E');
1086 }
1087
1088 /* <prefix> ::= <prefix> <unqualified-name>
1089 ::= <template-param>
1090 ::= <template-prefix> <template-args>
1091 ::= <decltype>
1092 ::= # empty
1093 ::= <substitution> */
1094
1095 static void
1096 write_prefix (const tree node)
1097 {
1098 tree decl;
1099 /* Non-NULL if NODE represents a template-id. */
1100 tree template_info = NULL;
1101
1102 if (node == NULL
1103 || node == global_namespace)
1104 return;
1105
1106 MANGLE_TRACE_TREE ("prefix", node);
1107
1108 if (TREE_CODE (node) == DECLTYPE_TYPE)
1109 {
1110 write_type (node);
1111 return;
1112 }
1113
1114 if (find_substitution (node))
1115 return;
1116
1117 if (DECL_P (node))
1118 {
1119 /* If this is a function or parm decl, that means we've hit function
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. */
1124 if (TREE_CODE (node) == FUNCTION_DECL
1125 || TREE_CODE (node) == PARM_DECL)
1126 return;
1127
1128 decl = node;
1129 decl_is_template_id (decl, &template_info);
1130 }
1131 else
1132 {
1133 /* Node is a type. */
1134 decl = TYPE_NAME (node);
1135 if (CLASSTYPE_TEMPLATE_ID_P (node))
1136 template_info = TYPE_TEMPLATE_INFO (node);
1137 }
1138
1139 if (TREE_CODE (node) == TEMPLATE_TYPE_PARM)
1140 write_template_param (node);
1141 else if (template_info != NULL)
1142 /* Templated. */
1143 {
1144 write_template_prefix (decl);
1145 write_template_args (TI_ARGS (template_info));
1146 }
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 {
1157 write_prefix (decl_mangling_context (decl));
1158 write_unqualified_name (decl);
1159 }
1160 }
1161 else
1162 /* Not templated. */
1163 {
1164 write_prefix (decl_mangling_context (decl));
1165 write_unqualified_name (decl);
1166 if (VAR_P (decl)
1167 || TREE_CODE (decl) == FIELD_DECL)
1168 {
1169 /* <data-member-prefix> := <member source-name> M */
1170 write_char ('M');
1171 return;
1172 }
1173 }
1174
1175 add_substitution (node);
1176 }
1177
1178 /* <template-prefix> ::= <prefix> <template component>
1179 ::= <template-param>
1180 ::= <substitution> */
1181
1182 static void
1183 write_template_prefix (const tree node)
1184 {
1185 tree decl = DECL_P (node) ? node : TYPE_NAME (node);
1186 tree type = DECL_P (node) ? TREE_TYPE (node) : node;
1187 tree context = decl_mangling_context (decl);
1188 tree template_info;
1189 tree templ;
1190 tree substitution;
1191
1192 MANGLE_TRACE_TREE ("template-prefix", node);
1193
1194 /* Find the template decl. */
1195 if (decl_is_template_id (decl, &template_info))
1196 templ = TI_TEMPLATE (template_info);
1197 else if (TREE_CODE (type) == TYPENAME_TYPE)
1198 /* For a typename type, all we have is the name. */
1199 templ = DECL_NAME (decl);
1200 else
1201 {
1202 gcc_assert (CLASSTYPE_TEMPLATE_ID_P (type));
1203
1204 templ = TYPE_TI_TEMPLATE (type);
1205 }
1206
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>'. */
1229 if (context && TYPE_P (context))
1230 substitution = build_tree_list (context, templ);
1231 else
1232 substitution = templ;
1233
1234 if (find_substitution (substitution))
1235 return;
1236
1237 if (TREE_TYPE (templ)
1238 && TREE_CODE (TREE_TYPE (templ)) == TEMPLATE_TEMPLATE_PARM)
1239 write_template_param (TREE_TYPE (templ));
1240 else
1241 {
1242 write_prefix (context);
1243 write_unqualified_name (decl);
1244 }
1245
1246 add_substitution (substitution);
1247 }
1248
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
1255 static const char *
1256 find_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
1294 /* We don't need to handle thunks, vtables, or VTTs here. Those are
1295 mangled through special entry points.
1296
1297 <unqualified-name> ::= <operator-name>
1298 ::= <special-name>
1299 ::= <source-name>
1300 ::= <unnamed-type-name>
1301 ::= <local-source-name>
1302
1303 <local-source-name> ::= L <source-name> <discriminator> */
1304
1305 static void
1306 write_unqualified_id (tree identifier)
1307 {
1308 if (IDENTIFIER_CONV_OP_P (identifier))
1309 write_conversion_operator_name (TREE_TYPE (identifier));
1310 else if (IDENTIFIER_OVL_OP_P (identifier))
1311 {
1312 const ovl_op_info_t *ovl_op = IDENTIFIER_OVL_OP_INFO (identifier);
1313 write_string (ovl_op->mangled_name);
1314 }
1315 else if (UDLIT_OPER_P (identifier))
1316 write_literal_operator_name (identifier);
1317 else
1318 write_source_name (identifier);
1319 }
1320
1321 static void
1322 write_unqualified_name (tree decl)
1323 {
1324 MANGLE_TRACE_TREE ("unqualified-name", decl);
1325
1326 if (identifier_p (decl))
1327 {
1328 write_unqualified_id (decl);
1329 return;
1330 }
1331
1332 bool found = false;
1333
1334 if (DECL_NAME (decl) == NULL_TREE)
1335 {
1336 found = true;
1337 gcc_assert (DECL_ASSEMBLER_NAME_SET_P (decl));
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));
1349 }
1350 else if (DECL_DECLARES_FUNCTION_P (decl))
1351 {
1352 found = true;
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))
1358 {
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 }
1368 else if (FNDECL_USED_AUTO (decl))
1369 type = (DECL_STRUCT_FUNCTION (decl)->language
1370 ->x_auto_return_pattern);
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 {
1377 const char *mangled_name
1378 = (ovl_op_info[DECL_ASSIGNMENT_OPERATOR_P (decl)]
1379 [DECL_OVERLOADED_OPERATOR_CODE_RAW (decl)].mangled_name);
1380 write_string (mangled_name);
1381 }
1382 else if (UDLIT_OPER_P (DECL_NAME (decl)))
1383 write_literal_operator_name (DECL_NAME (decl));
1384 else
1385 found = false;
1386 }
1387
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)
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 }
1400 else
1401 {
1402 tree type = TREE_TYPE (decl);
1403
1404 if (TREE_CODE (decl) == TYPE_DECL
1405 && TYPE_UNNAMED_P (type))
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 }
1413
1414 /* We use the ABI tags from the primary class template, ignoring tags on any
1415 specializations. This is necessary because C++ doesn't require a
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. */
1419 if (tree tmpl = most_general_template (decl))
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);
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 }
1468 write_abi_tags (tags);
1469 }
1470
1471 /* Write the unqualified-name for a conversion operator to TYPE. */
1472
1473 static void
1474 write_conversion_operator_name (const tree type)
1475 {
1476 write_string ("cv");
1477 write_type (type);
1478 }
1479
1480 /* Non-terminal <source-name>. IDENTIFIER is an IDENTIFIER_NODE.
1481
1482 <source-name> ::= </length/ number> <identifier> */
1483
1484 static void
1485 write_source_name (tree identifier)
1486 {
1487 MANGLE_TRACE_TREE ("source-name", identifier);
1488
1489 write_unsigned_number (IDENTIFIER_LENGTH (identifier));
1490 write_identifier (IDENTIFIER_POINTER (identifier));
1491 }
1492
1493 /* Compare two TREE_STRINGs like strcmp. */
1494
1495 int
1496 tree_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
1506 /* Return the TREE_LIST of TAGS as a sorted VEC. */
1507
1508 static vec<tree, va_gc> *
1509 sorted_abi_tags (tree tags)
1510 {
1511 vec<tree, va_gc> * vec = make_tree_vector();
1512
1513 for (tree t = tags; t; t = TREE_CHAIN (t))
1514 {
1515 if (ABI_TAG_IMPLICIT (t))
1516 continue;
1517 tree str = TREE_VALUE (t);
1518 vec_safe_push (vec, str);
1519 }
1520
1521 vec->qsort (tree_string_cmp);
1522
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
1529 static void
1530 write_abi_tags (tree tags)
1531 {
1532 if (tags == NULL_TREE)
1533 return;
1534
1535 vec<tree, va_gc> * vec = sorted_abi_tags (tags);
1536
1537 unsigned i; tree str;
1538 FOR_EACH_VEC_ELT (*vec, i, str)
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
1548 /* True iff the TREE_LISTS T1 and T2 of ABI tags are equivalent. */
1549
1550 static bool
1551 equal_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
1565 /* Write a user-defined literal operator.
1566 ::= li <source-name> # "" <source-name>
1567 IDENTIFIER is an LITERAL_IDENTIFIER_NODE. */
1568
1569 static void
1570 write_literal_operator_name (tree identifier)
1571 {
1572 const char* suffix = UDLIT_OP_SUFFIX (identifier);
1573 write_identifier (UDLIT_OP_MANGLED_PREFIX);
1574 write_unsigned_number (strlen (suffix));
1575 write_identifier (suffix);
1576 }
1577
1578 /* Encode 0 as _, and 1+ as n-1_. */
1579
1580 static void
1581 write_compact_number (int num)
1582 {
1583 if (num > 0)
1584 write_unsigned_number (num - 1);
1585 write_char ('_');
1586 }
1587
1588 /* Return how many unnamed types precede TYPE in its enclosing class. */
1589
1590 static int
1591 nested_anon_class_index (tree type)
1592 {
1593 int index = 0;
1594 tree member = TYPE_FIELDS (TYPE_CONTEXT (type));
1595 for (; member; member = DECL_CHAIN (member))
1596 if (DECL_IMPLICIT_TYPEDEF_P (member))
1597 {
1598 tree memtype = TREE_TYPE (member);
1599 if (memtype == type)
1600 return index;
1601 else if (TYPE_UNNAMED_P (memtype))
1602 ++index;
1603 }
1604
1605 if (seen_error ())
1606 return -1;
1607
1608 gcc_unreachable ();
1609 }
1610
1611 /* <unnamed-type-name> ::= Ut [ <nonnegative number> ] _ */
1612
1613 static void
1614 write_unnamed_type_name (const tree type)
1615 {
1616 int discriminator;
1617 MANGLE_TRACE_TREE ("unnamed-type-name", type);
1618
1619 if (TYPE_FUNCTION_SCOPE_P (type))
1620 discriminator = discriminator_for_local_entity (TYPE_NAME (type));
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
1631 write_string ("Ut");
1632 write_compact_number (discriminator);
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
1638 static void
1639 write_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");
1648 write_method_parms (parms, /*method_p=*/1, fn);
1649 write_char ('E');
1650 write_compact_number (LAMBDA_EXPR_DISCRIMINATOR (lambda));
1651 }
1652
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
1656 characters generated (these will be laid out in advance of where
1657 BUFFER points). */
1658
1659 static int
1660 hwint_to_ascii (unsigned HOST_WIDE_INT number, const unsigned int base,
1661 char *buffer, const unsigned int min_digits)
1662 {
1663 static const char base_digits[] = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
1664 unsigned digits = 0;
1665
1666 while (number)
1667 {
1668 unsigned HOST_WIDE_INT d = number / base;
1669
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
1682 /* Non-terminal <number>.
1683
1684 <number> ::= [n] </decimal integer/> */
1685
1686 static void
1687 write_number (unsigned HOST_WIDE_INT number, const int unsigned_p,
1688 const unsigned int base)
1689 {
1690 char buffer[sizeof (HOST_WIDE_INT) * 8];
1691 unsigned count = 0;
1692
1693 if (!unsigned_p && (HOST_WIDE_INT) number < 0)
1694 {
1695 write_char ('n');
1696 number = -((HOST_WIDE_INT) number);
1697 }
1698 count = hwint_to_ascii (number, base, buffer + sizeof (buffer), 1);
1699 write_chars (buffer + sizeof (buffer) - count, count);
1700 }
1701
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
1704 bigger than that, which we must deal with. */
1705
1706 static inline void
1707 write_integer_cst (const tree cst)
1708 {
1709 int sign = tree_int_cst_sgn (cst);
1710 widest_int abs_value = wi::abs (wi::to_widest (cst));
1711 if (!wi::fits_uhwi_p (abs_value))
1712 {
1713 /* A bignum. We do this in chunks, each of which fits in a
1714 HOST_WIDE_INT. */
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
1724 representable. */
1725 chunk = 1000000000;
1726 chunk_digits = 9;
1727
1728 if (sizeof (HOST_WIDE_INT) >= 8)
1729 {
1730 /* It is at least 64 bits, so 10^18 is representable. */
1731 chunk_digits = 18;
1732 chunk *= chunk;
1733 }
1734
1735 type = c_common_signed_or_unsigned_type (1, TREE_TYPE (cst));
1736 base = build_int_cstu (type, chunk);
1737 n = wide_int_to_tree (type, wi::to_wide (cst));
1738
1739 if (sign < 0)
1740 {
1741 write_char ('n');
1742 n = fold_build1_loc (input_location, NEGATE_EXPR, type, n);
1743 }
1744 do
1745 {
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);
1748 unsigned c;
1749
1750 done = integer_zerop (d);
1751 tmp = fold_build2_loc (input_location, MINUS_EXPR, type, n, tmp);
1752 c = hwint_to_ascii (TREE_INT_CST_LOW (tmp), 10, ptr,
1753 done ? 1 : chunk_digits);
1754 ptr -= c;
1755 count += c;
1756 n = d;
1757 }
1758 while (!done);
1759 write_chars (ptr, count);
1760 }
1761 else
1762 {
1763 /* A small num. */
1764 if (sign < 0)
1765 write_char ('n');
1766 write_unsigned_number (abs_value.to_uhwi ());
1767 }
1768 }
1769
1770 /* Write out a floating-point literal.
1771
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
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"
1788
1789 Caller is responsible for the Lx and the E. */
1790 static void
1791 write_real_cst (const tree value)
1792 {
1793 long target_real[4]; /* largest supported float */
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];
1797 int i, limit, dir;
1798
1799 tree type = TREE_TYPE (value);
1800 int words = GET_MODE_BITSIZE (SCALAR_FLOAT_TYPE_MODE (type)) / 32;
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;
1811 else
1812 i = words - 1, limit = -1, dir = -1;
1813
1814 for (; i != limit; i += dir)
1815 {
1816 sprintf (buffer, "%08lx", (unsigned long) target_real[i]);
1817 write_chars (buffer, 8);
1818 }
1819 }
1820
1821 /* Non-terminal <identifier>.
1822
1823 <identifier> ::= </unqualified source code identifier> */
1824
1825 static void
1826 write_identifier (const char *identifier)
1827 {
1828 MANGLE_TRACE ("identifier", identifier);
1829 write_string (identifier);
1830 }
1831
1832 /* Handle constructor productions of non-terminal <special-name>.
1833 CTOR is a constructor FUNCTION_DECL.
1834
1835 <special-name> ::= C1 # complete object constructor
1836 ::= C2 # base object constructor
1837 ::= C3 # complete object allocating constructor
1838
1839 Currently, allocating constructors are never used. */
1840
1841 static void
1842 write_special_name_constructor (const tree ctor)
1843 {
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');
1849 if (DECL_BASE_CONSTRUCTOR_P (ctor))
1850 write_char ('2');
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))
1855 write_char ('4');
1856 else
1857 {
1858 gcc_assert (DECL_COMPLETE_CONSTRUCTOR_P (ctor));
1859 write_char ('1');
1860 }
1861 if (new_inh)
1862 write_type (DECL_INHERITED_CTOR_BASE (ctor));
1863 }
1864
1865 /* Handle destructor productions of non-terminal <special-name>.
1866 DTOR is a destructor FUNCTION_DECL.
1867
1868 <special-name> ::= D0 # deleting (in-charge) destructor
1869 ::= D1 # complete object (in-charge) destructor
1870 ::= D2 # base object (not-in-charge) destructor */
1871
1872 static void
1873 write_special_name_destructor (const tree dtor)
1874 {
1875 if (DECL_DELETING_DESTRUCTOR_P (dtor))
1876 write_string ("D0");
1877 else if (DECL_BASE_DESTRUCTOR_P (dtor))
1878 write_string ("D2");
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");
1884 else
1885 {
1886 gcc_assert (DECL_COMPLETE_DESTRUCTOR_P (dtor));
1887 write_string ("D1");
1888 }
1889 }
1890
1891 /* Return the discriminator for ENTITY appearing inside
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. */
1894
1895 static int
1896 discriminator_for_local_entity (tree entity)
1897 {
1898 if (!DECL_LANG_SPECIFIC (entity))
1899 {
1900 /* Some decls, like __FUNCTION__, don't need a discriminator. */
1901 gcc_checking_assert (DECL_ARTIFICIAL (entity));
1902 return 0;
1903 }
1904 else if (tree disc = DECL_DISCRIMINATOR (entity))
1905 return TREE_INT_CST_LOW (disc);
1906 else
1907 /* The first entity with a particular name doesn't get
1908 DECL_DISCRIMINATOR set up. */
1909 return 0;
1910 }
1911
1912 /* Return the discriminator for STRING, a string literal used inside
1913 FUNCTION. The discriminator is the lexical ordinal of STRING among
1914 string literals used in FUNCTION. */
1915
1916 static int
1917 discriminator_for_string_literal (tree /*function*/,
1918 tree /*string*/)
1919 {
1920 /* For now, we don't discriminate amongst string literals. */
1921 return 0;
1922 }
1923
1924 /* <discriminator> := _ <number> # when number < 10
1925 := __ <number> _ # when number >= 10
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
1931 static void
1932 write_discriminator (const int discriminator)
1933 {
1934 /* If discriminator is zero, don't write anything. Otherwise... */
1935 if (discriminator > 0)
1936 {
1937 write_char ('_');
1938 if (discriminator - 1 >= 10)
1939 {
1940 if (abi_warn_or_compat_version_crosses (11))
1941 G.need_abi_warning = 1;
1942 if (abi_version_at_least (11))
1943 write_char ('_');
1944 }
1945 write_unsigned_number (discriminator - 1);
1946 if (abi_version_at_least (11) && discriminator - 1 >= 10)
1947 write_char ('_');
1948 }
1949 }
1950
1951 /* Mangle the name of a function-scope entity. FUNCTION is the
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.
1956
1957 <local-name> := Z <function encoding> E <entity name> [<discriminator>]
1958 := Z <function encoding> E s [<discriminator>]
1959 := Z <function encoding> Ed [ <parameter number> ] _ <entity name> */
1960
1961 static void
1962 write_local_name (tree function, const tree local_entity,
1963 const tree entity)
1964 {
1965 tree parm = NULL_TREE;
1966
1967 MANGLE_TRACE_TREE ("local-name", entity);
1968
1969 if (TREE_CODE (function) == PARM_DECL)
1970 {
1971 parm = function;
1972 function = DECL_CONTEXT (parm);
1973 }
1974
1975 write_char ('Z');
1976 write_encoding (function);
1977 write_char ('E');
1978
1979 /* For this purpose, parameters are numbered from right-to-left. */
1980 if (parm)
1981 {
1982 tree t;
1983 int i = 0;
1984 for (t = DECL_ARGUMENTS (function); t; t = DECL_CHAIN (t))
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
1995 if (TREE_CODE (entity) == STRING_CST)
1996 {
1997 write_char ('s');
1998 write_discriminator (discriminator_for_string_literal (function,
1999 entity));
2000 }
2001 else
2002 {
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);
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));
2012 }
2013 }
2014
2015 /* Non-terminals <type> and <CV-qualifier>.
2016
2017 <type> ::= <builtin-type>
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
2030
2031 C++0x extensions
2032
2033 <type> ::= RR <type> # rvalue reference-to
2034 <type> ::= Dt <expression> # decltype of an id-expression or
2035 # class member access
2036 <type> ::= DT <expression> # decltype of an expression
2037 <type> ::= Dn # decltype of nullptr
2038
2039 TYPE is a type node. */
2040
2041 static void
2042 write_type (tree type)
2043 {
2044 /* This gets set to nonzero if TYPE turns out to be a (possibly
2045 CV-qualified) builtin type. */
2046 int is_builtin_type = 0;
2047
2048 MANGLE_TRACE_TREE ("type", type);
2049
2050 if (type == error_mark_node)
2051 return;
2052
2053 type = canonicalize_for_substitution (type);
2054 if (find_substitution (type))
2055 return;
2056
2057
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
2061 since both the qualified and unqualified types are substitution
2062 candidates. */
2063 {
2064 tree t = TYPE_MAIN_VARIANT (type);
2065 if (TYPE_ATTRIBUTES (t) && !OVERLOAD_TYPE_P (t))
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 }
2073 gcc_assert (t != type);
2074 if (TREE_CODE (t) == FUNCTION_TYPE
2075 || TREE_CODE (t) == METHOD_TYPE)
2076 {
2077 t = build_ref_qualified_type (t, type_memfn_rqual (type));
2078 if (flag_noexcept_type)
2079 {
2080 tree r = TYPE_RAISES_EXCEPTIONS (type);
2081 t = build_exception_variant (t, r);
2082 }
2083 if (abi_version_at_least (8)
2084 || type == TYPE_MAIN_VARIANT (type))
2085 /* Avoid adding the unqualified function type as a substitution. */
2086 write_function_type (t);
2087 else
2088 write_type (t);
2089 if (abi_warn_or_compat_version_crosses (8))
2090 G.need_abi_warning = 1;
2091 }
2092 else
2093 write_type (t);
2094 }
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);
2100 else
2101 {
2102 tree type_orig = type;
2103
2104 /* See through any typedefs. */
2105 type = TYPE_MAIN_VARIANT (type);
2106 if (TREE_CODE (type) == FUNCTION_TYPE
2107 || TREE_CODE (type) == METHOD_TYPE)
2108 type = cxx_copy_lang_qualifiers (type, type_orig);
2109
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
2116 if (TYPE_PTRDATAMEM_P (type))
2117 write_pointer_to_member_type (type);
2118 else
2119 {
2120 /* Handle any target-specific fundamental types. */
2121 const char *target_mangling
2122 = targetm.mangle_type (type_orig);
2123
2124 if (target_mangling)
2125 {
2126 write_string (target_mangling);
2127 /* Add substitutions for types other than fundamental
2128 types. */
2129 if (!VOID_TYPE_P (type)
2130 && TREE_CODE (type) != INTEGER_TYPE
2131 && TREE_CODE (type) != REAL_TYPE
2132 && TREE_CODE (type) != BOOLEAN_TYPE)
2133 add_substitution (type);
2134 return;
2135 }
2136
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:
2143 case FIXED_POINT_TYPE:
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:
2182 case REFERENCE_TYPE:
2183 if (TYPE_PTR_P (type))
2184 write_char ('P');
2185 else if (TYPE_REF_IS_RVALUE (type))
2186 write_char ('O');
2187 else
2188 write_char ('R');
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. */
2196 if (TREE_CODE (target) == FUNCTION_TYPE)
2197 {
2198 if (abi_warn_or_compat_version_crosses (5)
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 }
2204 write_type (target);
2205 }
2206 break;
2207
2208 case TEMPLATE_TYPE_PARM:
2209 if (is_auto (type))
2210 {
2211 if (AUTO_IS_DECLTYPE (type))
2212 write_identifier ("Dc");
2213 else
2214 write_identifier ("Da");
2215 ++is_builtin_type;
2216 break;
2217 }
2218 /* fall through. */
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:
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. */
2239 write_unsigned_number (TYPE_VECTOR_SUBPARTS (type)
2240 .to_constant ());
2241 write_char ('_');
2242 }
2243 else
2244 write_string ("U8__vector");
2245 if (abi_warn_or_compat_version_crosses (4))
2246 G.need_abi_warning = 1;
2247 write_type (TREE_TYPE (type));
2248 break;
2249
2250 case TYPE_PACK_EXPANSION:
2251 write_string ("Dp");
2252 write_type (PACK_EXPANSION_PATTERN (type));
2253 break;
2254
2255 case DECLTYPE_TYPE:
2256 /* These shouldn't make it into mangling. */
2257 gcc_assert (!DECLTYPE_FOR_LAMBDA_CAPTURE (type)
2258 && !DECLTYPE_FOR_LAMBDA_PROXY (type));
2259
2260 /* In ABI <5, we stripped decltype of a plain decl. */
2261 if (DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (type))
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 {
2282 if (abi_warn_or_compat_version_crosses (5))
2283 G.need_abi_warning = 1;
2284 if (!abi_version_at_least (5))
2285 {
2286 write_type (etype);
2287 return;
2288 }
2289 }
2290 }
2291
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');
2297 ++cp_unevaluated_operand;
2298 write_expression (DECLTYPE_TYPE_EXPR (type));
2299 --cp_unevaluated_operand;
2300 write_char ('E');
2301 break;
2302
2303 case NULLPTR_TYPE:
2304 write_string ("Dn");
2305 if (abi_version_at_least (7))
2306 ++is_builtin_type;
2307 if (abi_warn_or_compat_version_crosses (7))
2308 G.need_abi_warning = 1;
2309 break;
2310
2311 case TYPEOF_TYPE:
2312 sorry ("mangling typeof, use decltype instead");
2313 break;
2314
2315 case UNDERLYING_TYPE:
2316 sorry ("mangling __underlying_type");
2317 break;
2318
2319 case LANG_TYPE:
2320 /* fall through. */
2321
2322 default:
2323 gcc_unreachable ();
2324 }
2325 }
2326 }
2327
2328 /* Types other than builtin types are substitution candidates. */
2329 if (!is_builtin_type)
2330 add_substitution (type);
2331 }
2332
2333 /* qsort callback for sorting a vector of attribute entries. */
2334
2335 static int
2336 attr_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
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
2352 static int
2353 write_CV_qualifiers_for_type (const tree type)
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),
2361 'V', 'r', and 'U' (farthest from the base type) ..." */
2362
2363 /* Mangle attributes that affect type identity as extended qualifiers.
2364
2365 We don't do this with classes and enums because their attributes
2366 are part of their definitions, not something added on. */
2367
2368 if (!OVERLOAD_TYPE_P (type))
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
2376 && !is_attribute_p ("transaction_safe", name)
2377 && !is_attribute_p ("abi_tag", name))
2378 vec.safe_push (a);
2379 }
2380 if (abi_warn_or_compat_version_crosses (10) && !vec.is_empty ())
2381 G.need_abi_warning = true;
2382 if (abi_version_at_least (10))
2383 {
2384 vec.qsort (attr_strcmp);
2385 while (!vec.is_empty())
2386 {
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))
2395 {
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');
2404 }
2405
2406 ++num_qualifiers;
2407 }
2408 }
2409 }
2410
2411 /* Note that we do not use cp_type_quals below; given "const
2412 int[3]", the "const" is emitted with the "int", not with the
2413 array. */
2414 cp_cv_quals quals = TYPE_QUALS (type);
2415
2416 if (quals & TYPE_QUAL_RESTRICT)
2417 {
2418 write_char ('r');
2419 ++num_qualifiers;
2420 }
2421 if (quals & TYPE_QUAL_VOLATILE)
2422 {
2423 write_char ('V');
2424 ++num_qualifiers;
2425 }
2426 if (quals & TYPE_QUAL_CONST)
2427 {
2428 write_char ('K');
2429 ++num_qualifiers;
2430 }
2431
2432 return num_qualifiers;
2433 }
2434
2435 /* Non-terminal <builtin-type>.
2436
2437 <builtin-type> ::= v # void
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 */
2458
2459 static void
2460 write_builtin_type (tree type)
2461 {
2462 if (TYPE_CANONICAL (type))
2463 type = TYPE_CANONICAL (type);
2464
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:
2476 /* TYPE may still be wchar_t, char16_t, or char32_t, since that
2477 isn't in integer_type_nodes. */
2478 if (type == wchar_type_node)
2479 write_char ('w');
2480 else if (type == char16_type_node)
2481 write_string ("Ds");
2482 else if (type == char32_type_node)
2483 write_string ("Di");
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. */
2489 iagain:
2490 for (itk = 0; itk < itk_none; ++itk)
2491 if (integer_types[itk] != NULL_TREE
2492 && integer_type_codes[itk] != '\0'
2493 && type == integer_types[itk])
2494 {
2495 /* Print the corresponding single-letter code. */
2496 write_char (integer_type_codes[itk]);
2497 break;
2498 }
2499
2500 if (itk == itk_none)
2501 {
2502 tree t = c_common_type_for_mode (TYPE_MODE (type),
2503 TYPE_UNSIGNED (type));
2504 if (type != t)
2505 {
2506 type = t;
2507 goto iagain;
2508 }
2509
2510 if (TYPE_PRECISION (type) == 128)
2511 write_char (TYPE_UNSIGNED (type) ? 'o' : 'n');
2512 else
2513 {
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
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. */
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);
2532 }
2533 }
2534 }
2535 break;
2536
2537 case REAL_TYPE:
2538 if (type == float_type_node)
2539 write_char ('f');
2540 else if (type == double_type_node)
2541 write_char ('d');
2542 else if (type == long_double_type_node)
2543 write_char ('e');
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");
2550 else
2551 gcc_unreachable ();
2552 break;
2553
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
2607 default:
2608 gcc_unreachable ();
2609 }
2610 }
2611
2612 /* Non-terminal <function-type>. NODE is a FUNCTION_TYPE or
2613 METHOD_TYPE. The return type is mangled before the parameter
2614 types.
2615
2616 <function-type> ::= F [Y] <bare-function-type> [<ref-qualifier>] E */
2617
2618 static void
2619 write_function_type (const tree type)
2620 {
2621 MANGLE_TRACE_TREE ("function-type", type);
2622
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. */
2630 tree this_type = class_of_this_parm (type);
2631 write_CV_qualifiers_for_type (this_type);
2632 }
2633
2634 write_exception_spec (TYPE_RAISES_EXCEPTIONS (type));
2635
2636 if (tx_safe_fn_type_p (type))
2637 write_string ("Dx");
2638
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
2646 // `extern "C"'
2647
2648 typedef void function_t();
2649 extern "C" function_t f; // Vice versa.
2650
2651 See [dcl.link]. */
2652 write_bare_function_type (type, /*include_return_type_p=*/1,
2653 /*decl=*/NULL);
2654 if (FUNCTION_REF_QUALIFIED (type))
2655 {
2656 if (FUNCTION_RVALUE_QUALIFIED (type))
2657 write_char ('O');
2658 else
2659 write_char ('R');
2660 }
2661 write_char ('E');
2662 }
2663
2664 /* Non-terminal <bare-function-type>. TYPE is a FUNCTION_TYPE or
2665 METHOD_TYPE. If INCLUDE_RETURN_TYPE is nonzero, the return value
2666 is mangled before the parameter types. If non-NULL, DECL is
2667 FUNCTION_DECL for the function whose type is being emitted. */
2668
2669 static void
2670 write_bare_function_type (const tree type, const int include_return_type_p,
2671 const tree decl)
2672 {
2673 MANGLE_TRACE_TREE ("bare-function-type", type);
2674
2675 /* Mangle the return type, if requested. */
2676 if (include_return_type_p)
2677 write_type (TREE_TYPE (type));
2678
2679 /* Now mangle the types of the arguments. */
2680 ++G.parm_depth;
2681 write_method_parms (TYPE_ARG_TYPES (type),
2682 TREE_CODE (type) == METHOD_TYPE,
2683 decl);
2684 --G.parm_depth;
2685 }
2686
2687 /* Write the mangled representation of a method parameter list of
2688 types given in PARM_TYPES. If METHOD_P is nonzero, the function is
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. */
2692
2693 static void
2694 write_method_parms (tree parm_types, const int method_p, const tree decl)
2695 {
2696 tree first_parm_type;
2697 tree parm_decl = decl ? DECL_ARGUMENTS (decl) : NULL_TREE;
2698
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
2704 this pointer.
2705 "Member functions do not encode the type of their implicit this
2706 parameter."
2707
2708 Similarly, there's no need to mangle artificial parameters, like
2709 the VTT parameters for constructors and destructors. */
2710 if (method_p)
2711 {
2712 parm_types = TREE_CHAIN (parm_types);
2713 parm_decl = parm_decl ? DECL_CHAIN (parm_decl) : NULL_TREE;
2714
2715 while (parm_decl && DECL_ARTIFICIAL (parm_decl))
2716 {
2717 parm_types = TREE_CHAIN (parm_types);
2718 parm_decl = DECL_CHAIN (parm_decl);
2719 }
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));
2724 }
2725
2726 for (first_parm_type = parm_types;
2727 parm_types;
2728 parm_types = TREE_CHAIN (parm_types))
2729 {
2730 tree parm = TREE_VALUE (parm_types);
2731 if (parm == void_type_node)
2732 {
2733 /* "Empty parameter lists, whether declared as () or
2734 conventionally as (void), are encoded with a void parameter
2735 (v)." */
2736 if (parm_types == first_parm_type)
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. */
2742 gcc_assert (TREE_CHAIN (parm_types) == NULL);
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
2755 static void
2756 write_class_enum_type (const tree type)
2757 {
2758 write_name (TYPE_NAME (type), /*ignore_local_scope=*/0);
2759 }
2760
2761 /* Non-terminal <template-args>. ARGS is a TREE_VEC of template
2762 arguments.
2763
2764 <template-args> ::= I <template-arg>* E */
2765
2766 static void
2767 write_template_args (tree args)
2768 {
2769 int i;
2770 int length = 0;
2771
2772 MANGLE_TRACE_TREE ("template-args", args);
2773
2774 write_char ('I');
2775
2776 if (args)
2777 length = TREE_VEC_LENGTH (args);
2778
2779 if (args && length && TREE_CODE (TREE_VEC_ELT (args, 0)) == TREE_VEC)
2780 {
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);
2785 }
2786 for (i = 0; i < length; ++i)
2787 write_template_arg (TREE_VEC_ELT (args, i));
2788
2789 write_char ('E');
2790 }
2791
2792 /* Write out the
2793 <unqualified-name>
2794 <unqualified-name> <template-args>
2795 part of SCOPE_REF or COMPONENT_REF mangling. */
2796
2797 static void
2798 write_member_name (tree member)
2799 {
2800 if (identifier_p (member))
2801 {
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);
2809 }
2810 else if (DECL_P (member))
2811 write_unqualified_name (member);
2812 else if (TREE_CODE (member) == TEMPLATE_ID_EXPR)
2813 {
2814 tree name = TREE_OPERAND (member, 0);
2815 name = OVL_FIRST (name);
2816 write_member_name (name);
2817 write_template_args (TREE_OPERAND (member, 1));
2818 }
2819 else
2820 write_expression (member);
2821 }
2822
2823 /* <expression> ::= <unary operator-name> <expression>
2824 ::= <binary operator-name> <expression> <expression>
2825 ::= <expr-primary>
2826
2827 <expr-primary> ::= <template-param>
2828 ::= L <type> <value number> E # literal
2829 ::= L <mangled-name> E # external name
2830 ::= st <type> # sizeof
2831 ::= sr <type> <unqualified-name> # dependent name
2832 ::= sr <type> <unqualified-name> <template-args> */
2833
2834 static void
2835 write_expression (tree expr)
2836 {
2837 enum tree_code code = TREE_CODE (expr);
2838
2839 if (TREE_CODE (expr) == TARGET_EXPR)
2840 {
2841 expr = TARGET_EXPR_INITIAL (expr);
2842 code = TREE_CODE (expr);
2843 }
2844
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)
2848 || location_wrapper_p (expr)
2849 /* Parentheses aren't mangled. */
2850 || code == PAREN_EXPR
2851 || code == NON_LVALUE_EXPR
2852 || (code == VIEW_CONVERT_EXPR
2853 && TREE_CODE (TREE_OPERAND (expr, 0)) == TEMPLATE_PARM_INDEX))
2854 {
2855 expr = TREE_OPERAND (expr, 0);
2856 code = TREE_CODE (expr);
2857 }
2858
2859 if (code == BASELINK
2860 && (!type_unknown_p (expr)
2861 || !BASELINK_QUALIFIED_P (expr)))
2862 {
2863 expr = BASELINK_FUNCTIONS (expr);
2864 code = TREE_CODE (expr);
2865 }
2866
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,
2872 build_qualified_name (/*type=*/NULL_TREE,
2873 PTRMEM_CST_CLASS (expr),
2874 PTRMEM_CST_MEMBER (expr),
2875 /*template_p=*/false));
2876 code = TREE_CODE (expr);
2877 }
2878
2879 /* Handle template parameters. */
2880 if (code == TEMPLATE_TYPE_PARM
2881 || code == TEMPLATE_TEMPLATE_PARM
2882 || code == BOUND_TEMPLATE_TEMPLATE_PARM
2883 || code == TEMPLATE_PARM_INDEX)
2884 write_template_param (expr);
2885 /* Handle literals. */
2886 else if (TREE_CODE_CLASS (code) == tcc_constant
2887 || code == CONST_DECL)
2888 write_template_arg_literal (expr);
2889 else if (code == PARM_DECL && DECL_ARTIFICIAL (expr))
2890 {
2891 gcc_assert (id_equal (DECL_NAME (expr), "this"));
2892 write_string ("fpT");
2893 }
2894 else if (code == PARM_DECL)
2895 {
2896 /* A function parameter used in a late-specified return type. */
2897 int index = DECL_PARM_INDEX (expr);
2898 int level = DECL_PARM_LEVEL (expr);
2899 int delta = G.parm_depth - level + 1;
2900 gcc_assert (index >= 1);
2901 write_char ('f');
2902 if (delta != 0)
2903 {
2904 if (abi_version_at_least (5))
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 }
2916 if (abi_warn_or_compat_version_crosses (5))
2917 G.need_abi_warning = true;
2918 }
2919 write_char ('p');
2920 write_compact_number (index - 1);
2921 }
2922 else if (DECL_P (expr))
2923 {
2924 write_char ('L');
2925 write_mangled_name (expr, false);
2926 write_char ('E');
2927 }
2928 else if (TREE_CODE (expr) == SIZEOF_EXPR)
2929 {
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;
2989 }
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 }
2996 else if (code == SCOPE_REF
2997 || code == BASELINK)
2998 {
2999 tree scope, member;
3000 if (code == SCOPE_REF)
3001 {
3002 scope = TREE_OPERAND (expr, 0);
3003 member = TREE_OPERAND (expr, 1);
3004 gcc_assert (!BASELINK_P (member));
3005 }
3006 else
3007 {
3008 scope = BINFO_TYPE (BASELINK_ACCESS_BINFO (expr));
3009 member = BASELINK_FUNCTIONS (expr);
3010 }
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. */
3017 if (DECL_P (member))
3018 write_expression (member);
3019 else
3020 {
3021 write_string ("sr");
3022 write_type (scope);
3023 write_member_name (member);
3024 }
3025 }
3026 else if (INDIRECT_REF_P (expr)
3027 && TREE_TYPE (TREE_OPERAND (expr, 0))
3028 && TYPE_REF_P (TREE_TYPE (TREE_OPERAND (expr, 0))))
3029 {
3030 write_expression (TREE_OPERAND (expr, 0));
3031 }
3032 else if (identifier_p (expr))
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. */
3037 if (IDENTIFIER_ANY_OP_P (expr))
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);
3044 fn = OVL_NAME (fn);
3045 if (IDENTIFIER_ANY_OP_P (fn))
3046 write_string ("on");
3047 write_unqualified_id (fn);
3048 write_template_args (TREE_OPERAND (expr, 1));
3049 }
3050 else if (TREE_CODE (expr) == MODOP_EXPR)
3051 {
3052 enum tree_code subop = TREE_CODE (TREE_OPERAND (expr, 1));
3053 const char *name = OVL_OP_INFO (true, subop)->mangled_name;
3054
3055 write_string (name);
3056 write_expression (TREE_OPERAND (expr, 0));
3057 write_expression (TREE_OPERAND (expr, 2));
3058 }
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
3079 write_string (OVL_OP_INFO (false, code)->mangled_name);
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
3098 && DIRECT_LIST_INIT_P (TREE_VALUE (init)))
3099 write_expression (TREE_VALUE (init));
3100 else
3101 {
3102 if (init)
3103 write_string ("pi");
3104 if (init && init != void_node)
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
3119 write_string (OVL_OP_INFO (false, code)->mangled_name);
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 {
3136 vec<constructor_elt, va_gc> *elts = CONSTRUCTOR_ELTS (expr);
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 }
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 }
3160 else if (dependent_name (expr))
3161 {
3162 write_unqualified_id (dependent_name (expr));
3163 }
3164 else
3165 {
3166 normal_expr:
3167 int i, len;
3168 const char *name;
3169
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)
3176 && TYPE_REF_P (TREE_TYPE (expr)))
3177 {
3178 expr = TREE_OPERAND (expr, 0);
3179 if (DECL_P (expr))
3180 {
3181 write_expression (expr);
3182 return;
3183 }
3184
3185 code = TREE_CODE (expr);
3186 }
3187
3188 if (code == COMPONENT_REF)
3189 {
3190 tree ob = TREE_OPERAND (expr, 0);
3191
3192 if (TREE_CODE (ob) == ARROW_EXPR)
3193 {
3194 write_string (OVL_OP_INFO (false, code)->mangled_name);
3195 ob = TREE_OPERAND (ob, 0);
3196 write_expression (ob);
3197 }
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. */
3205
3206 write_member_name (TREE_OPERAND (expr, 1));
3207 return;
3208 }
3209
3210 /* If it wasn't any of those, recursively expand the expression. */
3211 name = OVL_OP_INFO (false, code)->mangled_name;
3212
3213 /* We used to mangle const_cast and static_cast like a C cast. */
3214 if (code == CONST_CAST_EXPR
3215 || code == STATIC_CAST_EXPR)
3216 {
3217 if (abi_warn_or_compat_version_crosses (6))
3218 G.need_abi_warning = 1;
3219 if (!abi_version_at_least (6))
3220 name = OVL_OP_INFO (false, CAST_EXPR)->mangled_name;
3221 }
3222
3223 if (name == NULL)
3224 {
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 }
3236 return;
3237 }
3238 else
3239 write_string (name);
3240
3241 switch (code)
3242 {
3243 case CALL_EXPR:
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))
3255 fn = OVL_NAME (fn);
3256
3257 write_expression (fn);
3258 }
3259
3260 for (i = 0; i < call_expr_nargs (expr); ++i)
3261 write_expression (CALL_EXPR_ARG (expr, i));
3262 write_char ('E');
3263 break;
3264
3265 case CAST_EXPR:
3266 write_type (TREE_TYPE (expr));
3267 if (list_length (TREE_OPERAND (expr, 0)) == 1)
3268 write_expression (TREE_VALUE (TREE_OPERAND (expr, 0)));
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 }
3277 break;
3278
3279 case DYNAMIC_CAST_EXPR:
3280 case REINTERPRET_CAST_EXPR:
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
3287 case PREINCREMENT_EXPR:
3288 case PREDECREMENT_EXPR:
3289 if (abi_version_at_least (6))
3290 write_char ('_');
3291 if (abi_warn_or_compat_version_crosses (6))
3292 G.need_abi_warning = 1;
3293 /* Fall through. */
3294
3295 default:
3296 /* In the middle-end, some expressions have more operands than
3297 they do in templates (and mangling). */
3298 len = cp_tree_operand_length (expr);
3299
3300 for (i = 0; i < len; ++i)
3301 {
3302 tree operand = TREE_OPERAND (expr, i);
3303 /* As a GNU extension, the middle operand of a
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 {
3310 error ("omitted middle operand to %<?:%> operand "
3311 "cannot be mangled");
3312 continue;
3313 }
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);
3321 write_string (OVL_OP_INFO (false, fcode)->mangled_name);
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 }
3337 write_expression (operand);
3338 }
3339 }
3340 }
3341 }
3342
3343 /* Literal subcase of non-terminal <template-arg>.
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
3348 encoded as 0, true as 1." */
3349
3350 static void
3351 write_template_arg_literal (const tree value)
3352 {
3353 write_char ('L');
3354 write_type (TREE_TYPE (value));
3355
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;
3366
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;
3372
3373 case REAL_CST:
3374 write_real_cst (value);
3375 break;
3376
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
3396 case STRING_CST:
3397 sorry ("string literal in function template signature");
3398 break;
3399
3400 default:
3401 gcc_unreachable ();
3402 }
3403
3404 write_char ('E');
3405 }
3406
3407 /* Non-terminal <template-arg>.
3408
3409 <template-arg> ::= <type> # type
3410 ::= L <type> </value/ number> E # literal
3411 ::= LZ <name> E # external name
3412 ::= X <expression> E # expression */
3413
3414 static void
3415 write_template_arg (tree node)
3416 {
3417 enum tree_code code = TREE_CODE (node);
3418
3419 MANGLE_TRACE_TREE ("template-arg", node);
3420
3421 /* A template template parameter's argument list contains TREE_LIST
3422 nodes of which the value field is the actual argument. */
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 }
3433
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
3438 /* Strip a conversion added by convert_nontype_argument. */
3439 if (TREE_CODE (node) == IMPLICIT_CONV_EXPR)
3440 node = TREE_OPERAND (node, 0);
3441 if (REFERENCE_REF_P (node))
3442 node = TREE_OPERAND (node, 0);
3443 if (TREE_CODE (node) == NOP_EXPR
3444 && TYPE_REF_P (TREE_TYPE (node)))
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. */
3449 gcc_assert (TREE_CODE (TREE_OPERAND (node, 0)) == ADDR_EXPR);
3450 node = TREE_OPERAND (TREE_OPERAND (node, 0), 0);
3451 }
3452
3453 if (TREE_CODE (node) == BASELINK
3454 && !type_unknown_p (node))
3455 {
3456 if (abi_version_at_least (6))
3457 node = BASELINK_FUNCTIONS (node);
3458 if (abi_warn_or_compat_version_crosses (6))
3459 /* We wrongly wrapped a class-scope function in X/E. */
3460 G.need_abi_warning = 1;
3461 }
3462
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);
3468 if (abi_version_at_least (6))
3469 write_char ('J');
3470 else
3471 write_char ('I');
3472 if (abi_warn_or_compat_version_crosses (6))
3473 G.need_abi_warning = 1;
3474 for (i = 0; i < length; ++i)
3475 write_template_arg (TREE_VEC_ELT (args, i));
3476 write_char ('E');
3477 }
3478 else if (TYPE_P (node))
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);
3483 else if ((TREE_CODE_CLASS (code) == tcc_constant && code != PTRMEM_CST)
3484 || code == CONST_DECL
3485 || null_member_pointer_value_p (node))
3486 write_template_arg_literal (node);
3487 else if (DECL_P (node))
3488 {
3489 write_char ('L');
3490 /* Until ABI version 3, the underscore before the mangled name
3491 was incorrectly omitted. */
3492 if (!abi_version_at_least (3))
3493 write_char ('Z');
3494 else
3495 write_string ("_Z");
3496 if (abi_warn_or_compat_version_crosses (3))
3497 G.need_abi_warning = 1;
3498 write_encoding (node);
3499 write_char ('E');
3500 }
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
3514 static void
3515 write_template_template_arg (const tree decl)
3516 {
3517 MANGLE_TRACE_TREE ("template-template-arg", decl);
3518
3519 if (find_substitution (decl))
3520 return;
3521 write_name (decl, /*ignore_local_scope=*/0);
3522 add_substitution (decl);
3523 }
3524
3525
3526 /* Non-terminal <array-type>. TYPE is an ARRAY_TYPE.
3527
3528 <array-type> ::= A [</dimension/ number>] _ </element/ type>
3529 ::= A <expression> _ </element/ type>
3530
3531 "Array types encode the dimension (number of elements) and the
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. */
3536
3537 static void
3538 write_array_type (const tree type)
3539 {
3540 write_char ('A');
3541 if (TYPE_DOMAIN (type))
3542 {
3543 tree index_type;
3544
3545 index_type = TYPE_DOMAIN (type);
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))
3551 {
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 }
3568 }
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
3579 static void
3580 write_pointer_to_member_type (const tree type)
3581 {
3582 write_char ('M');
3583 write_type (TYPE_PTRMEM_CLASS_TYPE (type));
3584 write_type (TYPE_PTRMEM_POINTED_TO_TYPE (type));
3585 }
3586
3587 /* Non-terminal <template-param>. PARM is a TEMPLATE_TYPE_PARM,
3588 TEMPLATE_TEMPLATE_PARM, BOUND_TEMPLATE_TEMPLATE_PARM or a
3589 TEMPLATE_PARM_INDEX.
3590
3591 <template-param> ::= T </parameter/ number> _ */
3592
3593 static void
3594 write_template_param (const tree parm)
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:
3604 case BOUND_TEMPLATE_TEMPLATE_PARM:
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:
3613 gcc_unreachable ();
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 `_'. */
3619 write_compact_number (parm_index);
3620 }
3621
3622 /* <template-template-param>
3623 ::= <template-param>
3624 ::= <substitution> */
3625
3626 static void
3627 write_template_template_param (const tree parm)
3628 {
3629 tree templ = NULL_TREE;
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. */
3634 if (TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
3635 {
3636 templ
3637 = TI_TEMPLATE (TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (parm));
3638 if (find_substitution (templ))
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);
3645 if (templ)
3646 add_substitution (templ);
3647 }
3648
3649 /* Non-terminal <substitution>.
3650
3651 <substitution> ::= S <seq-id> _
3652 ::= S_ */
3653
3654 static void
3655 write_substitution (const int seq_id)
3656 {
3657 MANGLE_TRACE ("substitution", "");
3658
3659 write_char ('S');
3660 if (seq_id > 0)
3661 write_number (seq_id - 1, /*unsigned=*/1, 36);
3662 write_char ('_');
3663 }
3664
3665 /* Start mangling ENTITY. */
3666
3667 static inline void
3668 start_mangling (const tree entity)
3669 {
3670 G.entity = entity;
3671 G.need_abi_warning = false;
3672 G.need_cxx17_warning = false;
3673 obstack_free (&name_obstack, name_base);
3674 mangle_obstack = &name_obstack;
3675 name_base = obstack_alloc (&name_obstack, 0);
3676 }
3677
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. */
3681
3682 static void
3683 finish_mangling_internal (void)
3684 {
3685 /* Clear all the substitutions. */
3686 vec_safe_truncate (G.substitutions, 0);
3687
3688 /* Null-terminate the string. */
3689 write_char ('\0');
3690 }
3691
3692
3693 /* Like finish_mangling_internal, but return the mangled string. */
3694
3695 static inline const char *
3696 finish_mangling (void)
3697 {
3698 finish_mangling_internal ();
3699 return (const char *) obstack_finish (mangle_obstack);
3700 }
3701
3702 /* Like finish_mangling_internal, but return an identifier. */
3703
3704 static tree
3705 finish_mangling_get_identifier (void)
3706 {
3707 finish_mangling_internal ();
3708 /* Don't obstack_finish here, and the next start_mangling will
3709 remove the identifier. */
3710 return get_identifier ((const char *) obstack_base (mangle_obstack));
3711 }
3712
3713 /* Initialize data structures for mangling. */
3714
3715 void
3716 init_mangle (void)
3717 {
3718 gcc_obstack_init (&name_obstack);
3719 name_base = obstack_alloc (&name_obstack, 0);
3720 vec_alloc (G.substitutions, 0);
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
3734 static tree
3735 mangle_decl_string (const tree decl)
3736 {
3737 tree result;
3738 location_t saved_loc = input_location;
3739 tree saved_fn = NULL_TREE;
3740 bool template_p = false;
3741
3742 /* We shouldn't be trying to mangle an uninstantiated template. */
3743 gcc_assert (!type_dependent_expression_p (decl));
3744
3745 if (DECL_LANG_SPECIFIC (decl) && DECL_USE_TEMPLATE (decl))
3746 {
3747 struct tinst_level *tl = current_instantiation ();
3748 if ((!tl || tl->maybe_get_node () != decl)
3749 && push_tinst_level (decl))
3750 {
3751 template_p = true;
3752 saved_fn = current_function_decl;
3753 current_function_decl = NULL_TREE;
3754 }
3755 }
3756 input_location = DECL_SOURCE_LOCATION (decl);
3757
3758 start_mangling (decl);
3759
3760 if (TREE_CODE (decl) == TYPE_DECL)
3761 write_type (TREE_TYPE (decl));
3762 else
3763 write_mangled_name (decl, true);
3764
3765 result = finish_mangling_get_identifier ();
3766 if (DEBUG_MANGLE)
3767 fprintf (stderr, "mangle_decl_string = '%s'\n\n",
3768 IDENTIFIER_POINTER (result));
3769
3770 if (template_p)
3771 {
3772 pop_tinst_level ();
3773 current_function_decl = saved_fn;
3774 }
3775 input_location = saved_loc;
3776
3777 return result;
3778 }
3779
3780 /* Return an identifier for the external mangled name of DECL. */
3781
3782 static tree
3783 get_mangled_id (tree decl)
3784 {
3785 tree id = mangle_decl_string (decl);
3786 return targetm.mangle_decl_assembler_name (decl, id);
3787 }
3788
3789 /* Create an identifier for the external mangled name of DECL. */
3790
3791 void
3792 mangle_decl (const tree decl)
3793 {
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
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));
3820 if (abi_version_at_least (10))
3821 if (tree fn = decl_function_context (decl))
3822 maybe_check_abi_tags (fn, decl);
3823 id = get_mangled_id (decl);
3824 }
3825 SET_DECL_ASSEMBLER_NAME (decl, id);
3826
3827 if (G.need_cxx17_warning
3828 && (TREE_PUBLIC (decl) || DECL_REALLY_EXTERN (decl)))
3829 warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wnoexcept_type,
3830 "mangled name for %qD will change in C++17 because the "
3831 "exception specification is part of a function type",
3832 decl);
3833
3834 if (id != DECL_NAME (decl)
3835 /* Don't do this for a fake symbol we aren't going to emit anyway. */
3836 && TREE_CODE (decl) != TYPE_DECL
3837 && !DECL_MAYBE_IN_CHARGE_CDTOR_P (decl))
3838 {
3839 int save_ver = flag_abi_version;
3840 tree id2 = NULL_TREE;
3841
3842 if (!DECL_REALLY_EXTERN (decl))
3843 {
3844 record_mangling (decl, G.need_abi_warning);
3845
3846 if (!G.need_abi_warning)
3847 return;
3848
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;
3853
3854 if (id2 != id)
3855 note_mangling_alias (decl, id2);
3856 }
3857
3858 if (warn_abi)
3859 {
3860 const char fabi_version[] = "-fabi-version";
3861
3862 if (flag_abi_compat_version != warn_abi_version
3863 || id2 == NULL_TREE)
3864 {
3865 flag_abi_version = warn_abi_version;
3866 id2 = mangle_decl_string (decl);
3867 id2 = targetm.mangle_decl_assembler_name (decl, id2);
3868 }
3869 flag_abi_version = save_ver;
3870
3871 if (id2 == id)
3872 /* OK. */;
3873 else if (warn_abi_version != 0
3874 && abi_version_at_least (warn_abi_version))
3875 warning_at (DECL_SOURCE_LOCATION (G.entity), OPT_Wabi,
3876 "the mangled name of %qD changed between "
3877 "%<%s=%d%> (%qD) and %<%s=%d%> (%qD)",
3878 G.entity, fabi_version, warn_abi_version, id2,
3879 fabi_version, save_ver, id);
3880 else
3881 warning_at (DECL_SOURCE_LOCATION (G.entity), OPT_Wabi,
3882 "the mangled name of %qD changes between "
3883 "%<%s=%d%> (%qD) and %<%s=%d%> (%qD)",
3884 G.entity, fabi_version, save_ver, id,
3885 fabi_version, warn_abi_version, id2);
3886 }
3887
3888 flag_abi_version = save_ver;
3889 }
3890 }
3891
3892 /* Generate the mangled representation of TYPE. */
3893
3894 const char *
3895 mangle_type_string (const tree type)
3896 {
3897 const char *result;
3898
3899 start_mangling (type);
3900 write_type (type);
3901 result = finish_mangling ();
3902 if (DEBUG_MANGLE)
3903 fprintf (stderr, "mangle_type_string = '%s'\n\n", result);
3904 return result;
3905 }
3906
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
3911 static tree
3912 mangle_special_for_type (const tree type, const char *code)
3913 {
3914 tree result;
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. */
3918 start_mangling (type);
3919
3920 /* Start the mangling. */
3921 write_string ("_Z");
3922 write_string (code);
3923
3924 /* Add the type. */
3925 write_type (type);
3926 result = finish_mangling_get_identifier ();
3927
3928 if (DEBUG_MANGLE)
3929 fprintf (stderr, "mangle_special_for_type = %s\n\n",
3930 IDENTIFIER_POINTER (result));
3931
3932 return result;
3933 }
3934
3935 /* Create an identifier for the mangled representation of the typeinfo
3936 structure for TYPE. */
3937
3938 tree
3939 mangle_typeinfo_for_type (const tree type)
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
3947 tree
3948 mangle_typeinfo_string_for_type (const tree type)
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
3955 tree
3956 mangle_vtbl_for_type (const tree type)
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
3963 tree
3964 mangle_vtt_for_type (const tree type)
3965 {
3966 return mangle_special_for_type (type, "TT");
3967 }
3968
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
3973 tree
3974 mangle_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
4016 /* Return an identifier for a construction vtable group. TYPE is
4017 the most derived class in the hierarchy; BINFO is the base
4018 subobject for which this construction vtable group will be used.
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,
4024 though, we need external names for the vtable groups.
4025
4026 We use the production
4027
4028 <special-name> ::= CT <type> <offset number> _ <base type> */
4029
4030 tree
4031 mangle_ctor_vtbl_for_type (const tree type, const tree binfo)
4032 {
4033 tree result;
4034
4035 start_mangling (type);
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
4044 result = finish_mangling_get_identifier ();
4045 if (DEBUG_MANGLE)
4046 fprintf (stderr, "mangle_ctor_vtbl_for_type = %s\n\n",
4047 IDENTIFIER_POINTER (result));
4048 return result;
4049 }
4050
4051 /* Mangle a this pointer or result pointer adjustment.
4052
4053 <call-offset> ::= h <fixed offset number> _
4054 ::= v <fixed offset number> _ <virtual offset number> _ */
4055
4056 static void
4057 mangle_call_offset (const tree fixed_offset, const tree virtual_offset)
4058 {
4059 write_char (virtual_offset ? 'v' : 'h');
4060
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
4077 bytes. THIS_ADJUSTING is nonzero for a this adjusting thunk and
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>
4083 ::= Tc <this_adjust call-offset> <result_adjust call-offset>
4084 <base encoding> */
4085
4086 tree
4087 mangle_thunk (tree fn_decl, const int this_adjusting, tree fixed_offset,
4088 tree virtual_offset, tree thunk)
4089 {
4090 tree result;
4091
4092 if (abi_version_at_least (11))
4093 maybe_check_abi_tags (fn_decl, thunk, 11);
4094
4095 start_mangling (fn_decl);
4096
4097 write_string ("_Z");
4098 write_char ('T');
4099
4100 if (!this_adjusting)
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 }
4107 else if (!DECL_THUNK_P (fn_decl))
4108 /* Plain this adjusting thunk. */
4109 mangle_call_offset (fixed_offset, virtual_offset);
4110 else
4111 {
4112 /* This adjusting thunk to covariant thunk. */
4113 write_char ('c');
4114 mangle_call_offset (fixed_offset, virtual_offset);
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);
4121 }
4122
4123 /* Scoped name. */
4124 write_encoding (fn_decl);
4125
4126 result = finish_mangling_get_identifier ();
4127 if (DEBUG_MANGLE)
4128 fprintf (stderr, "mangle_thunk = %s\n\n", IDENTIFIER_POINTER (result));
4129 return result;
4130 }
4131
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
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. */
4137
4138 static void
4139 maybe_check_abi_tags (tree t, tree for_decl, int ver)
4140 {
4141 if (DECL_ASSEMBLER_NAME_SET_P (t))
4142 return;
4143
4144 tree oldtags = get_abi_tags (t);
4145
4146 mangle_decl (t);
4147
4148 tree newtags = get_abi_tags (t);
4149 if (newtags && newtags != oldtags
4150 && abi_version_crosses (ver))
4151 {
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)
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,
4164 "the mangled name of the initialization guard variable "
4165 "for %qD changes between -fabi-version=%d and "
4166 "-fabi-version=%d",
4167 t, flag_abi_version, warn_abi_version);
4168 }
4169 }
4170
4171 /* Write out the appropriate string for this variable when generating
4172 another mangled name based on this one. */
4173
4174 static void
4175 write_guarded_var_name (const tree variable)
4176 {
4177 if (DECL_NAME (variable)
4178 && strncmp (IDENTIFIER_POINTER (DECL_NAME (variable)), "_ZGR", 4) == 0)
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
4183 write_name (variable, /*ignore_local_scope=*/0);
4184 }
4185
4186 /* Return an identifier for the name of an initialization guard
4187 variable for indicated VARIABLE. */
4188
4189 tree
4190 mangle_guard_variable (const tree variable)
4191 {
4192 if (abi_version_at_least (10))
4193 maybe_check_abi_tags (variable);
4194 start_mangling (variable);
4195 write_string ("_ZGV");
4196 write_guarded_var_name (variable);
4197 return finish_mangling_get_identifier ();
4198 }
4199
4200 /* Return an identifier for the name of a thread_local initialization
4201 function for VARIABLE. */
4202
4203 tree
4204 mangle_tls_init_fn (const tree variable)
4205 {
4206 check_abi_tags (variable);
4207 start_mangling (variable);
4208 write_string ("_ZTH");
4209 write_guarded_var_name (variable);
4210 return finish_mangling_get_identifier ();
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
4218 tree
4219 mangle_tls_wrapper_fn (const tree variable)
4220 {
4221 check_abi_tags (variable);
4222 start_mangling (variable);
4223 write_string (TLS_WRAPPER_PREFIX);
4224 write_guarded_var_name (variable);
4225 return finish_mangling_get_identifier ();
4226 }
4227
4228 /* Return true iff FN is a thread_local wrapper function. */
4229
4230 bool
4231 decl_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
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
4244 static GTY(()) int temp_count;
4245
4246 tree
4247 mangle_ref_init_variable (const tree variable)
4248 {
4249 start_mangling (variable);
4250 write_string ("_ZGR");
4251 check_abi_tags (variable);
4252 write_name (variable, /*ignore_local_scope=*/0);
4253 /* Avoid name clashes with aggregate initialization of multiple
4254 references at once. */
4255 write_unsigned_number (temp_count++);
4256 return finish_mangling_get_identifier ();
4257 }
4258
4259 /* Return an identifier for the mangled name of a C++20 template parameter
4260 object for template argument EXPR. */
4261
4262 tree
4263 mangle_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 }
4271 \f
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
4281 char *
4282 get_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));
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
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
4309 #include "gt-cp-mangle.h"