]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/cp/mangle.c
re PR c++/67130 (ICE: tree check: expected identifier_node, have template_decl in...
[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 = get_first_fn (fn);
2826 if (DECL_P (fn))
2827 fn = DECL_NAME (fn);
2828 if (IDENTIFIER_OPNAME_P (fn))
2829 write_string ("on");
2830 write_unqualified_id (fn);
2831 write_template_args (TREE_OPERAND (expr, 1));
2832 }
2833 else if (TREE_CODE (expr) == MODOP_EXPR)
2834 {
2835 enum tree_code subop = TREE_CODE (TREE_OPERAND (expr, 1));
2836 const char *name = (assignment_operator_name_info[(int) subop]
2837 .mangled_name);
2838 write_string (name);
2839 write_expression (TREE_OPERAND (expr, 0));
2840 write_expression (TREE_OPERAND (expr, 2));
2841 }
2842 else if (code == NEW_EXPR || code == VEC_NEW_EXPR)
2843 {
2844 /* ::= [gs] nw <expression>* _ <type> E
2845 ::= [gs] nw <expression>* _ <type> <initializer>
2846 ::= [gs] na <expression>* _ <type> E
2847 ::= [gs] na <expression>* _ <type> <initializer>
2848 <initializer> ::= pi <expression>* E */
2849 tree placement = TREE_OPERAND (expr, 0);
2850 tree type = TREE_OPERAND (expr, 1);
2851 tree nelts = TREE_OPERAND (expr, 2);
2852 tree init = TREE_OPERAND (expr, 3);
2853 tree t;
2854
2855 gcc_assert (code == NEW_EXPR);
2856 if (TREE_OPERAND (expr, 2))
2857 code = VEC_NEW_EXPR;
2858
2859 if (NEW_EXPR_USE_GLOBAL (expr))
2860 write_string ("gs");
2861
2862 write_string (operator_name_info[(int) code].mangled_name);
2863
2864 for (t = placement; t; t = TREE_CHAIN (t))
2865 write_expression (TREE_VALUE (t));
2866
2867 write_char ('_');
2868
2869 if (nelts)
2870 {
2871 tree domain;
2872 ++processing_template_decl;
2873 domain = compute_array_index_type (NULL_TREE, nelts,
2874 tf_warning_or_error);
2875 type = build_cplus_array_type (type, domain);
2876 --processing_template_decl;
2877 }
2878 write_type (type);
2879
2880 if (init && TREE_CODE (init) == TREE_LIST
2881 && DIRECT_LIST_INIT_P (TREE_VALUE (init)))
2882 write_expression (TREE_VALUE (init));
2883 else
2884 {
2885 if (init)
2886 write_string ("pi");
2887 if (init && init != void_node)
2888 for (t = init; t; t = TREE_CHAIN (t))
2889 write_expression (TREE_VALUE (t));
2890 write_char ('E');
2891 }
2892 }
2893 else if (code == DELETE_EXPR || code == VEC_DELETE_EXPR)
2894 {
2895 gcc_assert (code == DELETE_EXPR);
2896 if (DELETE_EXPR_USE_VEC (expr))
2897 code = VEC_DELETE_EXPR;
2898
2899 if (DELETE_EXPR_USE_GLOBAL (expr))
2900 write_string ("gs");
2901
2902 write_string (operator_name_info[(int) code].mangled_name);
2903
2904 write_expression (TREE_OPERAND (expr, 0));
2905 }
2906 else if (code == THROW_EXPR)
2907 {
2908 tree op = TREE_OPERAND (expr, 0);
2909 if (op)
2910 {
2911 write_string ("tw");
2912 write_expression (op);
2913 }
2914 else
2915 write_string ("tr");
2916 }
2917 else if (code == CONSTRUCTOR)
2918 {
2919 vec<constructor_elt, va_gc> *elts = CONSTRUCTOR_ELTS (expr);
2920 unsigned i; tree val;
2921
2922 if (BRACE_ENCLOSED_INITIALIZER_P (expr))
2923 write_string ("il");
2924 else
2925 {
2926 write_string ("tl");
2927 write_type (TREE_TYPE (expr));
2928 }
2929 FOR_EACH_CONSTRUCTOR_VALUE (elts, i, val)
2930 write_expression (val);
2931 write_char ('E');
2932 }
2933 else if (dependent_name (expr))
2934 {
2935 write_unqualified_id (dependent_name (expr));
2936 }
2937 else
2938 {
2939 int i, len;
2940 const char *name;
2941
2942 /* When we bind a variable or function to a non-type template
2943 argument with reference type, we create an ADDR_EXPR to show
2944 the fact that the entity's address has been taken. But, we
2945 don't actually want to output a mangling code for the `&'. */
2946 if (TREE_CODE (expr) == ADDR_EXPR
2947 && TREE_TYPE (expr)
2948 && TREE_CODE (TREE_TYPE (expr)) == REFERENCE_TYPE)
2949 {
2950 expr = TREE_OPERAND (expr, 0);
2951 if (DECL_P (expr))
2952 {
2953 write_expression (expr);
2954 return;
2955 }
2956
2957 code = TREE_CODE (expr);
2958 }
2959
2960 if (code == COMPONENT_REF)
2961 {
2962 tree ob = TREE_OPERAND (expr, 0);
2963
2964 if (TREE_CODE (ob) == ARROW_EXPR)
2965 {
2966 write_string (operator_name_info[(int)code].mangled_name);
2967 ob = TREE_OPERAND (ob, 0);
2968 write_expression (ob);
2969 }
2970 else if (!is_dummy_object (ob))
2971 {
2972 write_string ("dt");
2973 write_expression (ob);
2974 }
2975 /* else, for a non-static data member with no associated object (in
2976 unevaluated context), use the unresolved-name mangling. */
2977
2978 write_member_name (TREE_OPERAND (expr, 1));
2979 return;
2980 }
2981
2982 /* If it wasn't any of those, recursively expand the expression. */
2983 name = operator_name_info[(int) code].mangled_name;
2984
2985 /* We used to mangle const_cast and static_cast like a C cast. */
2986 if (code == CONST_CAST_EXPR
2987 || code == STATIC_CAST_EXPR)
2988 {
2989 if (abi_version_crosses (6))
2990 G.need_abi_warning = 1;
2991 if (!abi_version_at_least (6))
2992 name = operator_name_info[CAST_EXPR].mangled_name;
2993 }
2994
2995 if (name == NULL)
2996 {
2997 switch (code)
2998 {
2999 case TRAIT_EXPR:
3000 error ("use of built-in trait %qE in function signature; "
3001 "use library traits instead", expr);
3002 break;
3003
3004 default:
3005 sorry ("mangling %C", code);
3006 break;
3007 }
3008 return;
3009 }
3010 else
3011 write_string (name);
3012
3013 switch (code)
3014 {
3015 case CALL_EXPR:
3016 {
3017 tree fn = CALL_EXPR_FN (expr);
3018
3019 if (TREE_CODE (fn) == ADDR_EXPR)
3020 fn = TREE_OPERAND (fn, 0);
3021
3022 /* Mangle a dependent name as the name, not whatever happens to
3023 be the first function in the overload set. */
3024 if ((TREE_CODE (fn) == FUNCTION_DECL
3025 || TREE_CODE (fn) == OVERLOAD)
3026 && type_dependent_expression_p_push (expr))
3027 fn = DECL_NAME (get_first_fn (fn));
3028
3029 write_expression (fn);
3030 }
3031
3032 for (i = 0; i < call_expr_nargs (expr); ++i)
3033 write_expression (CALL_EXPR_ARG (expr, i));
3034 write_char ('E');
3035 break;
3036
3037 case CAST_EXPR:
3038 write_type (TREE_TYPE (expr));
3039 if (list_length (TREE_OPERAND (expr, 0)) == 1)
3040 write_expression (TREE_VALUE (TREE_OPERAND (expr, 0)));
3041 else
3042 {
3043 tree args = TREE_OPERAND (expr, 0);
3044 write_char ('_');
3045 for (; args; args = TREE_CHAIN (args))
3046 write_expression (TREE_VALUE (args));
3047 write_char ('E');
3048 }
3049 break;
3050
3051 case DYNAMIC_CAST_EXPR:
3052 case REINTERPRET_CAST_EXPR:
3053 case STATIC_CAST_EXPR:
3054 case CONST_CAST_EXPR:
3055 write_type (TREE_TYPE (expr));
3056 write_expression (TREE_OPERAND (expr, 0));
3057 break;
3058
3059 case PREINCREMENT_EXPR:
3060 case PREDECREMENT_EXPR:
3061 if (abi_version_at_least (6))
3062 write_char ('_');
3063 if (abi_version_crosses (6))
3064 G.need_abi_warning = 1;
3065 /* Fall through. */
3066
3067 default:
3068 /* In the middle-end, some expressions have more operands than
3069 they do in templates (and mangling). */
3070 len = cp_tree_operand_length (expr);
3071
3072 for (i = 0; i < len; ++i)
3073 {
3074 tree operand = TREE_OPERAND (expr, i);
3075 /* As a GNU extension, the middle operand of a
3076 conditional may be omitted. Since expression
3077 manglings are supposed to represent the input token
3078 stream, there's no good way to mangle such an
3079 expression without extending the C++ ABI. */
3080 if (code == COND_EXPR && i == 1 && !operand)
3081 {
3082 error ("omitted middle operand to %<?:%> operand "
3083 "cannot be mangled");
3084 continue;
3085 }
3086 write_expression (operand);
3087 }
3088 }
3089 }
3090 }
3091
3092 /* Literal subcase of non-terminal <template-arg>.
3093
3094 "Literal arguments, e.g. "A<42L>", are encoded with their type
3095 and value. Negative integer values are preceded with "n"; for
3096 example, "A<-42L>" becomes "1AILln42EE". The bool value false is
3097 encoded as 0, true as 1." */
3098
3099 static void
3100 write_template_arg_literal (const tree value)
3101 {
3102 write_char ('L');
3103 write_type (TREE_TYPE (value));
3104
3105 /* Write a null member pointer value as (type)0, regardless of its
3106 real representation. */
3107 if (null_member_pointer_value_p (value))
3108 write_integer_cst (integer_zero_node);
3109 else
3110 switch (TREE_CODE (value))
3111 {
3112 case CONST_DECL:
3113 write_integer_cst (DECL_INITIAL (value));
3114 break;
3115
3116 case INTEGER_CST:
3117 gcc_assert (!same_type_p (TREE_TYPE (value), boolean_type_node)
3118 || integer_zerop (value) || integer_onep (value));
3119 write_integer_cst (value);
3120 break;
3121
3122 case REAL_CST:
3123 write_real_cst (value);
3124 break;
3125
3126 case COMPLEX_CST:
3127 if (TREE_CODE (TREE_REALPART (value)) == INTEGER_CST
3128 && TREE_CODE (TREE_IMAGPART (value)) == INTEGER_CST)
3129 {
3130 write_integer_cst (TREE_REALPART (value));
3131 write_char ('_');
3132 write_integer_cst (TREE_IMAGPART (value));
3133 }
3134 else if (TREE_CODE (TREE_REALPART (value)) == REAL_CST
3135 && TREE_CODE (TREE_IMAGPART (value)) == REAL_CST)
3136 {
3137 write_real_cst (TREE_REALPART (value));
3138 write_char ('_');
3139 write_real_cst (TREE_IMAGPART (value));
3140 }
3141 else
3142 gcc_unreachable ();
3143 break;
3144
3145 case STRING_CST:
3146 sorry ("string literal in function template signature");
3147 break;
3148
3149 default:
3150 gcc_unreachable ();
3151 }
3152
3153 write_char ('E');
3154 }
3155
3156 /* Non-terminal <template-arg>.
3157
3158 <template-arg> ::= <type> # type
3159 ::= L <type> </value/ number> E # literal
3160 ::= LZ <name> E # external name
3161 ::= X <expression> E # expression */
3162
3163 static void
3164 write_template_arg (tree node)
3165 {
3166 enum tree_code code = TREE_CODE (node);
3167
3168 MANGLE_TRACE_TREE ("template-arg", node);
3169
3170 /* A template template parameter's argument list contains TREE_LIST
3171 nodes of which the value field is the actual argument. */
3172 if (code == TREE_LIST)
3173 {
3174 node = TREE_VALUE (node);
3175 /* If it's a decl, deal with its type instead. */
3176 if (DECL_P (node))
3177 {
3178 node = TREE_TYPE (node);
3179 code = TREE_CODE (node);
3180 }
3181 }
3182
3183 if (REFERENCE_REF_P (node))
3184 node = TREE_OPERAND (node, 0);
3185 if (TREE_CODE (node) == NOP_EXPR
3186 && TREE_CODE (TREE_TYPE (node)) == REFERENCE_TYPE)
3187 {
3188 /* Template parameters can be of reference type. To maintain
3189 internal consistency, such arguments use a conversion from
3190 address of object to reference type. */
3191 gcc_assert (TREE_CODE (TREE_OPERAND (node, 0)) == ADDR_EXPR);
3192 node = TREE_OPERAND (TREE_OPERAND (node, 0), 0);
3193 }
3194
3195 if (TREE_CODE (node) == BASELINK
3196 && !type_unknown_p (node))
3197 {
3198 if (abi_version_at_least (6))
3199 node = BASELINK_FUNCTIONS (node);
3200 if (abi_version_crosses (6))
3201 /* We wrongly wrapped a class-scope function in X/E. */
3202 G.need_abi_warning = 1;
3203 }
3204
3205 if (ARGUMENT_PACK_P (node))
3206 {
3207 /* Expand the template argument pack. */
3208 tree args = ARGUMENT_PACK_ARGS (node);
3209 int i, length = TREE_VEC_LENGTH (args);
3210 if (abi_version_at_least (6))
3211 write_char ('J');
3212 else
3213 write_char ('I');
3214 if (abi_version_crosses (6))
3215 G.need_abi_warning = 1;
3216 for (i = 0; i < length; ++i)
3217 write_template_arg (TREE_VEC_ELT (args, i));
3218 write_char ('E');
3219 }
3220 else if (TYPE_P (node))
3221 write_type (node);
3222 else if (code == TEMPLATE_DECL)
3223 /* A template appearing as a template arg is a template template arg. */
3224 write_template_template_arg (node);
3225 else if ((TREE_CODE_CLASS (code) == tcc_constant && code != PTRMEM_CST)
3226 || code == CONST_DECL
3227 || null_member_pointer_value_p (node))
3228 write_template_arg_literal (node);
3229 else if (DECL_P (node))
3230 {
3231 write_char ('L');
3232 /* Until ABI version 3, the underscore before the mangled name
3233 was incorrectly omitted. */
3234 if (!abi_version_at_least (3))
3235 write_char ('Z');
3236 else
3237 write_string ("_Z");
3238 if (abi_version_crosses (3))
3239 G.need_abi_warning = 1;
3240 write_encoding (node);
3241 write_char ('E');
3242 }
3243 else
3244 {
3245 /* Template arguments may be expressions. */
3246 write_char ('X');
3247 write_expression (node);
3248 write_char ('E');
3249 }
3250 }
3251
3252 /* <template-template-arg>
3253 ::= <name>
3254 ::= <substitution> */
3255
3256 static void
3257 write_template_template_arg (const tree decl)
3258 {
3259 MANGLE_TRACE_TREE ("template-template-arg", decl);
3260
3261 if (find_substitution (decl))
3262 return;
3263 write_name (decl, /*ignore_local_scope=*/0);
3264 add_substitution (decl);
3265 }
3266
3267
3268 /* Non-terminal <array-type>. TYPE is an ARRAY_TYPE.
3269
3270 <array-type> ::= A [</dimension/ number>] _ </element/ type>
3271 ::= A <expression> _ </element/ type>
3272
3273 "Array types encode the dimension (number of elements) and the
3274 element type. For variable length arrays, the dimension (but not
3275 the '_' separator) is omitted." */
3276
3277 static void
3278 write_array_type (const tree type)
3279 {
3280 write_char ('A');
3281 if (TYPE_DOMAIN (type))
3282 {
3283 tree index_type;
3284 tree max;
3285
3286 index_type = TYPE_DOMAIN (type);
3287 /* The INDEX_TYPE gives the upper and lower bounds of the
3288 array. */
3289 max = TYPE_MAX_VALUE (index_type);
3290 if (TREE_CODE (max) == INTEGER_CST)
3291 {
3292 /* The ABI specifies that we should mangle the number of
3293 elements in the array, not the largest allowed index. */
3294 offset_int wmax = wi::to_offset (max) + 1;
3295 /* Truncate the result - this will mangle [0, SIZE_INT_MAX]
3296 number of elements as zero. */
3297 wmax = wi::zext (wmax, TYPE_PRECISION (TREE_TYPE (max)));
3298 gcc_assert (wi::fits_uhwi_p (wmax));
3299 write_unsigned_number (wmax.to_uhwi ());
3300 }
3301 else
3302 {
3303 max = TREE_OPERAND (max, 0);
3304 write_expression (max);
3305 }
3306
3307 }
3308 write_char ('_');
3309 write_type (TREE_TYPE (type));
3310 }
3311
3312 /* Non-terminal <pointer-to-member-type> for pointer-to-member
3313 variables. TYPE is a pointer-to-member POINTER_TYPE.
3314
3315 <pointer-to-member-type> ::= M </class/ type> </member/ type> */
3316
3317 static void
3318 write_pointer_to_member_type (const tree type)
3319 {
3320 write_char ('M');
3321 write_type (TYPE_PTRMEM_CLASS_TYPE (type));
3322 write_type (TYPE_PTRMEM_POINTED_TO_TYPE (type));
3323 }
3324
3325 /* Non-terminal <template-param>. PARM is a TEMPLATE_TYPE_PARM,
3326 TEMPLATE_TEMPLATE_PARM, BOUND_TEMPLATE_TEMPLATE_PARM or a
3327 TEMPLATE_PARM_INDEX.
3328
3329 <template-param> ::= T </parameter/ number> _ */
3330
3331 static void
3332 write_template_param (const tree parm)
3333 {
3334 int parm_index;
3335
3336 MANGLE_TRACE_TREE ("template-parm", parm);
3337
3338 switch (TREE_CODE (parm))
3339 {
3340 case TEMPLATE_TYPE_PARM:
3341 case TEMPLATE_TEMPLATE_PARM:
3342 case BOUND_TEMPLATE_TEMPLATE_PARM:
3343 parm_index = TEMPLATE_TYPE_IDX (parm);
3344 break;
3345
3346 case TEMPLATE_PARM_INDEX:
3347 parm_index = TEMPLATE_PARM_IDX (parm);
3348 break;
3349
3350 default:
3351 gcc_unreachable ();
3352 }
3353
3354 write_char ('T');
3355 /* NUMBER as it appears in the mangling is (-1)-indexed, with the
3356 earliest template param denoted by `_'. */
3357 write_compact_number (parm_index);
3358 }
3359
3360 /* <template-template-param>
3361 ::= <template-param>
3362 ::= <substitution> */
3363
3364 static void
3365 write_template_template_param (const tree parm)
3366 {
3367 tree templ = NULL_TREE;
3368
3369 /* PARM, a TEMPLATE_TEMPLATE_PARM, is an instantiation of the
3370 template template parameter. The substitution candidate here is
3371 only the template. */
3372 if (TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
3373 {
3374 templ
3375 = TI_TEMPLATE (TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (parm));
3376 if (find_substitution (templ))
3377 return;
3378 }
3379
3380 /* <template-param> encodes only the template parameter position,
3381 not its template arguments, which is fine here. */
3382 write_template_param (parm);
3383 if (templ)
3384 add_substitution (templ);
3385 }
3386
3387 /* Non-terminal <substitution>.
3388
3389 <substitution> ::= S <seq-id> _
3390 ::= S_ */
3391
3392 static void
3393 write_substitution (const int seq_id)
3394 {
3395 MANGLE_TRACE ("substitution", "");
3396
3397 write_char ('S');
3398 if (seq_id > 0)
3399 write_number (seq_id - 1, /*unsigned=*/1, 36);
3400 write_char ('_');
3401 }
3402
3403 /* Start mangling ENTITY. */
3404
3405 static inline void
3406 start_mangling (const tree entity)
3407 {
3408 G.entity = entity;
3409 G.need_abi_warning = false;
3410 obstack_free (&name_obstack, name_base);
3411 mangle_obstack = &name_obstack;
3412 name_base = obstack_alloc (&name_obstack, 0);
3413 }
3414
3415 /* Done with mangling. If WARN is true, and the name of G.entity will
3416 be mangled differently in a future version of the ABI, issue a
3417 warning. */
3418
3419 static void
3420 finish_mangling_internal (void)
3421 {
3422 /* Clear all the substitutions. */
3423 vec_safe_truncate (G.substitutions, 0);
3424
3425 /* Null-terminate the string. */
3426 write_char ('\0');
3427 }
3428
3429
3430 /* Like finish_mangling_internal, but return the mangled string. */
3431
3432 static inline const char *
3433 finish_mangling (void)
3434 {
3435 finish_mangling_internal ();
3436 return (const char *) obstack_finish (mangle_obstack);
3437 }
3438
3439 /* Like finish_mangling_internal, but return an identifier. */
3440
3441 static tree
3442 finish_mangling_get_identifier (void)
3443 {
3444 finish_mangling_internal ();
3445 /* Don't obstack_finish here, and the next start_mangling will
3446 remove the identifier. */
3447 return get_identifier ((const char *) obstack_base (mangle_obstack));
3448 }
3449
3450 /* Initialize data structures for mangling. */
3451
3452 void
3453 init_mangle (void)
3454 {
3455 gcc_obstack_init (&name_obstack);
3456 name_base = obstack_alloc (&name_obstack, 0);
3457 vec_alloc (G.substitutions, 0);
3458
3459 /* Cache these identifiers for quick comparison when checking for
3460 standard substitutions. */
3461 subst_identifiers[SUBID_ALLOCATOR] = get_identifier ("allocator");
3462 subst_identifiers[SUBID_BASIC_STRING] = get_identifier ("basic_string");
3463 subst_identifiers[SUBID_CHAR_TRAITS] = get_identifier ("char_traits");
3464 subst_identifiers[SUBID_BASIC_ISTREAM] = get_identifier ("basic_istream");
3465 subst_identifiers[SUBID_BASIC_OSTREAM] = get_identifier ("basic_ostream");
3466 subst_identifiers[SUBID_BASIC_IOSTREAM] = get_identifier ("basic_iostream");
3467 }
3468
3469 /* Generate the mangled name of DECL. */
3470
3471 static tree
3472 mangle_decl_string (const tree decl)
3473 {
3474 tree result;
3475 location_t saved_loc = input_location;
3476 tree saved_fn = NULL_TREE;
3477 bool template_p = false;
3478
3479 /* We shouldn't be trying to mangle an uninstantiated template. */
3480 gcc_assert (!type_dependent_expression_p (decl));
3481
3482 if (DECL_LANG_SPECIFIC (decl) && DECL_USE_TEMPLATE (decl))
3483 {
3484 struct tinst_level *tl = current_instantiation ();
3485 if ((!tl || tl->decl != decl)
3486 && push_tinst_level (decl))
3487 {
3488 template_p = true;
3489 saved_fn = current_function_decl;
3490 current_function_decl = NULL_TREE;
3491 }
3492 }
3493 input_location = DECL_SOURCE_LOCATION (decl);
3494
3495 start_mangling (decl);
3496
3497 if (TREE_CODE (decl) == TYPE_DECL)
3498 write_type (TREE_TYPE (decl));
3499 else
3500 write_mangled_name (decl, true);
3501
3502 result = finish_mangling_get_identifier ();
3503 if (DEBUG_MANGLE)
3504 fprintf (stderr, "mangle_decl_string = '%s'\n\n",
3505 IDENTIFIER_POINTER (result));
3506
3507 if (template_p)
3508 {
3509 pop_tinst_level ();
3510 current_function_decl = saved_fn;
3511 }
3512 input_location = saved_loc;
3513
3514 return result;
3515 }
3516
3517 /* Return an identifier for the external mangled name of DECL. */
3518
3519 static tree
3520 get_mangled_id (tree decl)
3521 {
3522 tree id = mangle_decl_string (decl);
3523 return targetm.mangle_decl_assembler_name (decl, id);
3524 }
3525
3526 /* If DECL is an implicit mangling alias, return its symtab node; otherwise
3527 return NULL. */
3528
3529 static symtab_node *
3530 decl_implicit_alias_p (tree decl)
3531 {
3532 if (DECL_P (decl) && DECL_ARTIFICIAL (decl)
3533 && DECL_IGNORED_P (decl)
3534 && (TREE_CODE (decl) == FUNCTION_DECL
3535 || (VAR_P (decl) && TREE_STATIC (decl))))
3536 {
3537 symtab_node *n = symtab_node::get (decl);
3538 if (n && n->cpp_implicit_alias)
3539 return n;
3540 }
3541 return NULL;
3542 }
3543
3544 /* If DECL is a mangling alias, remove it from the symbol table and return
3545 true; otherwise return false. */
3546
3547 bool
3548 maybe_remove_implicit_alias (tree decl)
3549 {
3550 if (symtab_node *n = decl_implicit_alias_p (decl))
3551 {
3552 n->remove();
3553 return true;
3554 }
3555 return false;
3556 }
3557
3558 /* Create an identifier for the external mangled name of DECL. */
3559
3560 void
3561 mangle_decl (const tree decl)
3562 {
3563 tree id;
3564 bool dep;
3565
3566 /* Don't bother mangling uninstantiated templates. */
3567 ++processing_template_decl;
3568 if (TREE_CODE (decl) == TYPE_DECL)
3569 dep = dependent_type_p (TREE_TYPE (decl));
3570 else
3571 dep = (DECL_LANG_SPECIFIC (decl) && DECL_TEMPLATE_INFO (decl)
3572 && any_dependent_template_arguments_p (DECL_TI_ARGS (decl)));
3573 --processing_template_decl;
3574 if (dep)
3575 return;
3576
3577 /* During LTO we keep mangled names of TYPE_DECLs for ODR type merging.
3578 It is not needed to assign names to anonymous namespace, but we use the
3579 "<anon>" marker to be able to tell if type is C++ ODR type or type
3580 produced by other language. */
3581 if (TREE_CODE (decl) == TYPE_DECL
3582 && TYPE_STUB_DECL (TREE_TYPE (decl))
3583 && !TREE_PUBLIC (TYPE_STUB_DECL (TREE_TYPE (decl))))
3584 id = get_identifier ("<anon>");
3585 else
3586 {
3587 gcc_assert (TREE_CODE (decl) != TYPE_DECL
3588 || !no_linkage_check (TREE_TYPE (decl), true));
3589 id = get_mangled_id (decl);
3590 }
3591 SET_DECL_ASSEMBLER_NAME (decl, id);
3592
3593 if (id != DECL_NAME (decl)
3594 && !DECL_REALLY_EXTERN (decl)
3595 /* Don't do this for a fake symbol we aren't going to emit anyway. */
3596 && TREE_CODE (decl) != TYPE_DECL
3597 && !DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (decl)
3598 && !DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P (decl))
3599 {
3600 bool set = false;
3601
3602 /* Check IDENTIFIER_GLOBAL_VALUE before setting to avoid redundant
3603 errors from multiple definitions. */
3604 tree d = IDENTIFIER_GLOBAL_VALUE (id);
3605 if (!d || decl_implicit_alias_p (d))
3606 {
3607 set = true;
3608 SET_IDENTIFIER_GLOBAL_VALUE (id, decl);
3609 }
3610
3611 if (!G.need_abi_warning)
3612 return;
3613
3614 /* If the mangling will change in the future, emit an alias with the
3615 future mangled name for forward-compatibility. */
3616 int save_ver;
3617 tree id2;
3618
3619 if (!set)
3620 {
3621 SET_IDENTIFIER_GLOBAL_VALUE (id, decl);
3622 inform (DECL_SOURCE_LOCATION (decl), "a later -fabi-version= (or "
3623 "=0) avoids this error with a change in mangling");
3624 }
3625
3626 save_ver = flag_abi_version;
3627 flag_abi_version = flag_abi_compat_version;
3628 id2 = mangle_decl_string (decl);
3629 id2 = targetm.mangle_decl_assembler_name (decl, id2);
3630 flag_abi_version = save_ver;
3631
3632 if (id2 == id)
3633 return;
3634
3635 if (warn_abi)
3636 {
3637 if (flag_abi_compat_version != 0
3638 && abi_version_at_least (flag_abi_compat_version))
3639 warning_at (DECL_SOURCE_LOCATION (G.entity), OPT_Wabi,
3640 "the mangled name of %qD changed between "
3641 "-fabi-version=%d (%D) and -fabi-version=%d (%D)",
3642 G.entity, flag_abi_compat_version, id2,
3643 flag_abi_version, id);
3644 else
3645 warning_at (DECL_SOURCE_LOCATION (G.entity), OPT_Wabi,
3646 "the mangled name of %qD changes between "
3647 "-fabi-version=%d (%D) and -fabi-version=%d (%D)",
3648 G.entity, flag_abi_version, id,
3649 flag_abi_compat_version, id2);
3650 }
3651
3652 note_mangling_alias (decl, id2);
3653 }
3654 }
3655
3656 /* Generate the mangled representation of TYPE. */
3657
3658 const char *
3659 mangle_type_string (const tree type)
3660 {
3661 const char *result;
3662
3663 start_mangling (type);
3664 write_type (type);
3665 result = finish_mangling ();
3666 if (DEBUG_MANGLE)
3667 fprintf (stderr, "mangle_type_string = '%s'\n\n", result);
3668 return result;
3669 }
3670
3671 /* Create an identifier for the mangled name of a special component
3672 for belonging to TYPE. CODE is the ABI-specified code for this
3673 component. */
3674
3675 static tree
3676 mangle_special_for_type (const tree type, const char *code)
3677 {
3678 tree result;
3679
3680 /* We don't have an actual decl here for the special component, so
3681 we can't just process the <encoded-name>. Instead, fake it. */
3682 start_mangling (type);
3683
3684 /* Start the mangling. */
3685 write_string ("_Z");
3686 write_string (code);
3687
3688 /* Add the type. */
3689 write_type (type);
3690 result = finish_mangling_get_identifier ();
3691
3692 if (DEBUG_MANGLE)
3693 fprintf (stderr, "mangle_special_for_type = %s\n\n",
3694 IDENTIFIER_POINTER (result));
3695
3696 return result;
3697 }
3698
3699 /* Create an identifier for the mangled representation of the typeinfo
3700 structure for TYPE. */
3701
3702 tree
3703 mangle_typeinfo_for_type (const tree type)
3704 {
3705 return mangle_special_for_type (type, "TI");
3706 }
3707
3708 /* Create an identifier for the mangled name of the NTBS containing
3709 the mangled name of TYPE. */
3710
3711 tree
3712 mangle_typeinfo_string_for_type (const tree type)
3713 {
3714 return mangle_special_for_type (type, "TS");
3715 }
3716
3717 /* Create an identifier for the mangled name of the vtable for TYPE. */
3718
3719 tree
3720 mangle_vtbl_for_type (const tree type)
3721 {
3722 return mangle_special_for_type (type, "TV");
3723 }
3724
3725 /* Returns an identifier for the mangled name of the VTT for TYPE. */
3726
3727 tree
3728 mangle_vtt_for_type (const tree type)
3729 {
3730 return mangle_special_for_type (type, "TT");
3731 }
3732
3733 /* Return an identifier for a construction vtable group. TYPE is
3734 the most derived class in the hierarchy; BINFO is the base
3735 subobject for which this construction vtable group will be used.
3736
3737 This mangling isn't part of the ABI specification; in the ABI
3738 specification, the vtable group is dumped in the same COMDAT as the
3739 main vtable, and is referenced only from that vtable, so it doesn't
3740 need an external name. For binary formats without COMDAT sections,
3741 though, we need external names for the vtable groups.
3742
3743 We use the production
3744
3745 <special-name> ::= CT <type> <offset number> _ <base type> */
3746
3747 tree
3748 mangle_ctor_vtbl_for_type (const tree type, const tree binfo)
3749 {
3750 tree result;
3751
3752 start_mangling (type);
3753
3754 write_string ("_Z");
3755 write_string ("TC");
3756 write_type (type);
3757 write_integer_cst (BINFO_OFFSET (binfo));
3758 write_char ('_');
3759 write_type (BINFO_TYPE (binfo));
3760
3761 result = finish_mangling_get_identifier ();
3762 if (DEBUG_MANGLE)
3763 fprintf (stderr, "mangle_ctor_vtbl_for_type = %s\n\n",
3764 IDENTIFIER_POINTER (result));
3765 return result;
3766 }
3767
3768 /* Mangle a this pointer or result pointer adjustment.
3769
3770 <call-offset> ::= h <fixed offset number> _
3771 ::= v <fixed offset number> _ <virtual offset number> _ */
3772
3773 static void
3774 mangle_call_offset (const tree fixed_offset, const tree virtual_offset)
3775 {
3776 write_char (virtual_offset ? 'v' : 'h');
3777
3778 /* For either flavor, write the fixed offset. */
3779 write_integer_cst (fixed_offset);
3780 write_char ('_');
3781
3782 /* For a virtual thunk, add the virtual offset. */
3783 if (virtual_offset)
3784 {
3785 write_integer_cst (virtual_offset);
3786 write_char ('_');
3787 }
3788 }
3789
3790 /* Return an identifier for the mangled name of a this-adjusting or
3791 covariant thunk to FN_DECL. FIXED_OFFSET is the initial adjustment
3792 to this used to find the vptr. If VIRTUAL_OFFSET is non-NULL, this
3793 is a virtual thunk, and it is the vtbl offset in
3794 bytes. THIS_ADJUSTING is nonzero for a this adjusting thunk and
3795 zero for a covariant thunk. Note, that FN_DECL might be a covariant
3796 thunk itself. A covariant thunk name always includes the adjustment
3797 for the this pointer, even if there is none.
3798
3799 <special-name> ::= T <call-offset> <base encoding>
3800 ::= Tc <this_adjust call-offset> <result_adjust call-offset>
3801 <base encoding> */
3802
3803 tree
3804 mangle_thunk (tree fn_decl, const int this_adjusting, tree fixed_offset,
3805 tree virtual_offset)
3806 {
3807 tree result;
3808
3809 start_mangling (fn_decl);
3810
3811 write_string ("_Z");
3812 write_char ('T');
3813
3814 if (!this_adjusting)
3815 {
3816 /* Covariant thunk with no this adjustment */
3817 write_char ('c');
3818 mangle_call_offset (integer_zero_node, NULL_TREE);
3819 mangle_call_offset (fixed_offset, virtual_offset);
3820 }
3821 else if (!DECL_THUNK_P (fn_decl))
3822 /* Plain this adjusting thunk. */
3823 mangle_call_offset (fixed_offset, virtual_offset);
3824 else
3825 {
3826 /* This adjusting thunk to covariant thunk. */
3827 write_char ('c');
3828 mangle_call_offset (fixed_offset, virtual_offset);
3829 fixed_offset = ssize_int (THUNK_FIXED_OFFSET (fn_decl));
3830 virtual_offset = THUNK_VIRTUAL_OFFSET (fn_decl);
3831 if (virtual_offset)
3832 virtual_offset = BINFO_VPTR_FIELD (virtual_offset);
3833 mangle_call_offset (fixed_offset, virtual_offset);
3834 fn_decl = THUNK_TARGET (fn_decl);
3835 }
3836
3837 /* Scoped name. */
3838 write_encoding (fn_decl);
3839
3840 result = finish_mangling_get_identifier ();
3841 if (DEBUG_MANGLE)
3842 fprintf (stderr, "mangle_thunk = %s\n\n", IDENTIFIER_POINTER (result));
3843 return result;
3844 }
3845
3846 struct conv_type_hasher : ggc_ptr_hash<tree_node>
3847 {
3848 static hashval_t hash (tree);
3849 static bool equal (tree, tree);
3850 };
3851
3852 /* This hash table maps TYPEs to the IDENTIFIER for a conversion
3853 operator to TYPE. The nodes are IDENTIFIERs whose TREE_TYPE is the
3854 TYPE. */
3855
3856 static GTY (()) hash_table<conv_type_hasher> *conv_type_names;
3857
3858 /* Hash a node (VAL1) in the table. */
3859
3860 hashval_t
3861 conv_type_hasher::hash (tree val)
3862 {
3863 return (hashval_t) TYPE_UID (TREE_TYPE (val));
3864 }
3865
3866 /* Compare VAL1 (a node in the table) with VAL2 (a TYPE). */
3867
3868 bool
3869 conv_type_hasher::equal (tree val1, tree val2)
3870 {
3871 return TREE_TYPE (val1) == val2;
3872 }
3873
3874 /* Return an identifier for the mangled unqualified name for a
3875 conversion operator to TYPE. This mangling is not specified by the
3876 ABI spec; it is only used internally. */
3877
3878 tree
3879 mangle_conv_op_name_for_type (const tree type)
3880 {
3881 tree *slot;
3882 tree identifier;
3883
3884 if (type == error_mark_node)
3885 return error_mark_node;
3886
3887 if (conv_type_names == NULL)
3888 conv_type_names = hash_table<conv_type_hasher>::create_ggc (31);
3889
3890 slot = conv_type_names->find_slot_with_hash (type,
3891 (hashval_t) TYPE_UID (type),
3892 INSERT);
3893 identifier = *slot;
3894 if (!identifier)
3895 {
3896 char buffer[64];
3897
3898 /* Create a unique name corresponding to TYPE. */
3899 sprintf (buffer, "operator %lu",
3900 (unsigned long) conv_type_names->elements ());
3901 identifier = get_identifier (buffer);
3902 *slot = identifier;
3903
3904 /* Hang TYPE off the identifier so it can be found easily later
3905 when performing conversions. */
3906 TREE_TYPE (identifier) = type;
3907
3908 /* Set bits on the identifier so we know later it's a conversion. */
3909 IDENTIFIER_OPNAME_P (identifier) = 1;
3910 IDENTIFIER_TYPENAME_P (identifier) = 1;
3911 }
3912
3913 return identifier;
3914 }
3915
3916 /* Write out the appropriate string for this variable when generating
3917 another mangled name based on this one. */
3918
3919 static void
3920 write_guarded_var_name (const tree variable)
3921 {
3922 if (DECL_NAME (variable)
3923 && strncmp (IDENTIFIER_POINTER (DECL_NAME (variable)), "_ZGR", 4) == 0)
3924 /* The name of a guard variable for a reference temporary should refer
3925 to the reference, not the temporary. */
3926 write_string (IDENTIFIER_POINTER (DECL_NAME (variable)) + 4);
3927 else
3928 write_name (variable, /*ignore_local_scope=*/0);
3929 }
3930
3931 /* Return an identifier for the name of an initialization guard
3932 variable for indicated VARIABLE. */
3933
3934 tree
3935 mangle_guard_variable (const tree variable)
3936 {
3937 start_mangling (variable);
3938 write_string ("_ZGV");
3939 write_guarded_var_name (variable);
3940 return finish_mangling_get_identifier ();
3941 }
3942
3943 /* Return an identifier for the name of a thread_local initialization
3944 function for VARIABLE. */
3945
3946 tree
3947 mangle_tls_init_fn (const tree variable)
3948 {
3949 start_mangling (variable);
3950 write_string ("_ZTH");
3951 write_guarded_var_name (variable);
3952 return finish_mangling_get_identifier ();
3953 }
3954
3955 /* Return an identifier for the name of a thread_local wrapper
3956 function for VARIABLE. */
3957
3958 #define TLS_WRAPPER_PREFIX "_ZTW"
3959
3960 tree
3961 mangle_tls_wrapper_fn (const tree variable)
3962 {
3963 start_mangling (variable);
3964 write_string (TLS_WRAPPER_PREFIX);
3965 write_guarded_var_name (variable);
3966 return finish_mangling_get_identifier ();
3967 }
3968
3969 /* Return true iff FN is a thread_local wrapper function. */
3970
3971 bool
3972 decl_tls_wrapper_p (const tree fn)
3973 {
3974 if (TREE_CODE (fn) != FUNCTION_DECL)
3975 return false;
3976 tree name = DECL_NAME (fn);
3977 return strncmp (IDENTIFIER_POINTER (name), TLS_WRAPPER_PREFIX,
3978 strlen (TLS_WRAPPER_PREFIX)) == 0;
3979 }
3980
3981 /* Return an identifier for the name of a temporary variable used to
3982 initialize a static reference. This isn't part of the ABI, but we might
3983 as well call them something readable. */
3984
3985 static GTY(()) int temp_count;
3986
3987 tree
3988 mangle_ref_init_variable (const tree variable)
3989 {
3990 start_mangling (variable);
3991 write_string ("_ZGR");
3992 write_name (variable, /*ignore_local_scope=*/0);
3993 /* Avoid name clashes with aggregate initialization of multiple
3994 references at once. */
3995 write_unsigned_number (temp_count++);
3996 return finish_mangling_get_identifier ();
3997 }
3998 \f
3999
4000 /* Foreign language type mangling section. */
4001
4002 /* How to write the type codes for the integer Java type. */
4003
4004 static void
4005 write_java_integer_type_codes (const tree type)
4006 {
4007 if (type == java_int_type_node)
4008 write_char ('i');
4009 else if (type == java_short_type_node)
4010 write_char ('s');
4011 else if (type == java_byte_type_node)
4012 write_char ('c');
4013 else if (type == java_char_type_node)
4014 write_char ('w');
4015 else if (type == java_long_type_node)
4016 write_char ('x');
4017 else if (type == java_boolean_type_node)
4018 write_char ('b');
4019 else
4020 gcc_unreachable ();
4021 }
4022
4023 /* Given a CLASS_TYPE, such as a record for std::bad_exception this
4024 function generates a mangled name for the vtable map variable of
4025 the class type. For example, if the class type is
4026 "std::bad_exception", the mangled name for the class is
4027 "St13bad_exception". This function would generate the name
4028 "_ZN4_VTVISt13bad_exceptionE12__vtable_mapE", which unmangles as:
4029 "_VTV<std::bad_exception>::__vtable_map". */
4030
4031
4032 char *
4033 get_mangled_vtable_map_var_name (tree class_type)
4034 {
4035 char *var_name = NULL;
4036 const char *prefix = "_ZN4_VTVI";
4037 const char *postfix = "E12__vtable_mapE";
4038
4039 gcc_assert (TREE_CODE (class_type) == RECORD_TYPE);
4040
4041 tree class_id = DECL_ASSEMBLER_NAME (TYPE_NAME (class_type));
4042
4043 if (strstr (IDENTIFIER_POINTER (class_id), "<anon>") != NULL)
4044 {
4045 class_id = get_mangled_id (TYPE_NAME (class_type));
4046 vtbl_register_mangled_name (TYPE_NAME (class_type), class_id);
4047 }
4048
4049 unsigned int len = strlen (IDENTIFIER_POINTER (class_id)) +
4050 strlen (prefix) +
4051 strlen (postfix) + 1;
4052
4053 var_name = (char *) xmalloc (len);
4054
4055 sprintf (var_name, "%s%s%s", prefix, IDENTIFIER_POINTER (class_id), postfix);
4056
4057 return var_name;
4058 }
4059
4060 #include "gt-cp-mangle.h"