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