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