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