Retry rdrand if the carry flag isn't valid.
[official-gcc.git] / gcc / cp / mangle.c
blobe8259521adb92cec5c256686fc533a1f00d01e96
1 /* Name mangling for the 3.0 C++ ABI.
2 Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2007, 2008, 2009
3 Free Software Foundation, Inc.
4 Written by Alex Samuel <samuel@codesourcery.com>
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it
9 under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
11 any later version.
13 GCC is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
22 /* This file implements mangling of C++ names according to the IA64
23 C++ ABI specification. A mangled name encodes a function or
24 variable's name, scope, type, and/or template arguments into a text
25 identifier. This identifier is used as the function's or
26 variable's linkage name, to preserve compatibility between C++'s
27 language features (templates, scoping, and overloading) and C
28 linkers.
30 Additionally, g++ uses mangled names internally. To support this,
31 mangling of types is allowed, even though the mangled name of a
32 type should not appear by itself as an exported name. Ditto for
33 uninstantiated templates.
35 The primary entry point for this module is mangle_decl, which
36 returns an identifier containing the mangled name for a decl.
37 Additional entry points are provided to build mangled names of
38 particular constructs when the appropriate decl for that construct
39 is not available. These are:
41 mangle_typeinfo_for_type: typeinfo data
42 mangle_typeinfo_string_for_type: typeinfo type name
43 mangle_vtbl_for_type: virtual table data
44 mangle_vtt_for_type: VTT data
45 mangle_ctor_vtbl_for_type: `C-in-B' constructor virtual table data
46 mangle_thunk: thunk function or entry */
48 #include "config.h"
49 #include "system.h"
50 #include "coretypes.h"
51 #include "tm.h"
52 #include "tree.h"
53 #include "tm_p.h"
54 #include "cp-tree.h"
55 #include "obstack.h"
56 #include "toplev.h"
57 #include "flags.h"
58 #include "target.h"
59 #include "cgraph.h"
61 /* Debugging support. */
63 /* Define DEBUG_MANGLE to enable very verbose trace messages. */
64 #ifndef DEBUG_MANGLE
65 #define DEBUG_MANGLE 0
66 #endif
68 /* Macros for tracing the write_* functions. */
69 #if DEBUG_MANGLE
70 # define MANGLE_TRACE(FN, INPUT) \
71 fprintf (stderr, " %-24s: %-24s\n", (FN), (INPUT))
72 # define MANGLE_TRACE_TREE(FN, NODE) \
73 fprintf (stderr, " %-24s: %-24s (%p)\n", \
74 (FN), tree_code_name[TREE_CODE (NODE)], (void *) (NODE))
75 #else
76 # define MANGLE_TRACE(FN, INPUT)
77 # define MANGLE_TRACE_TREE(FN, NODE)
78 #endif
80 /* Nonzero if NODE is a class template-id. We can't rely on
81 CLASSTYPE_USE_TEMPLATE here because of tricky bugs in the parser
82 that hard to distinguish A<T> from A, where A<T> is the type as
83 instantiated outside of the template, and A is the type used
84 without parameters inside the template. */
85 #define CLASSTYPE_TEMPLATE_ID_P(NODE) \
86 (TYPE_LANG_SPECIFIC (NODE) != NULL \
87 && (TREE_CODE (NODE) == BOUND_TEMPLATE_TEMPLATE_PARM \
88 || (CLASSTYPE_TEMPLATE_INFO (NODE) != NULL \
89 && (PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (NODE))))))
91 /* Things we only need one of. This module is not reentrant. */
92 typedef struct GTY(()) globals {
93 /* An array of the current substitution candidates, in the order
94 we've seen them. */
95 VEC(tree,gc) *substitutions;
97 /* The entity that is being mangled. */
98 tree GTY ((skip)) entity;
100 /* True if the mangling will be different in a future version of the
101 ABI. */
102 bool need_abi_warning;
103 } globals;
105 static GTY (()) globals G;
107 /* The obstack on which we build mangled names. */
108 static struct obstack *mangle_obstack;
110 /* The obstack on which we build mangled names that are not going to
111 be IDENTIFIER_NODEs. */
112 static struct obstack name_obstack;
114 /* The first object on the name_obstack; we use this to free memory
115 allocated on the name_obstack. */
116 static void *name_base;
118 /* Indices into subst_identifiers. These are identifiers used in
119 special substitution rules. */
120 typedef enum
122 SUBID_ALLOCATOR,
123 SUBID_BASIC_STRING,
124 SUBID_CHAR_TRAITS,
125 SUBID_BASIC_ISTREAM,
126 SUBID_BASIC_OSTREAM,
127 SUBID_BASIC_IOSTREAM,
128 SUBID_MAX
130 substitution_identifier_index_t;
132 /* For quick substitution checks, look up these common identifiers
133 once only. */
134 static GTY(()) tree subst_identifiers[SUBID_MAX];
136 /* Single-letter codes for builtin integer types, defined in
137 <builtin-type>. These are indexed by integer_type_kind values. */
138 static const char
139 integer_type_codes[itk_none] =
141 'c', /* itk_char */
142 'a', /* itk_signed_char */
143 'h', /* itk_unsigned_char */
144 's', /* itk_short */
145 't', /* itk_unsigned_short */
146 'i', /* itk_int */
147 'j', /* itk_unsigned_int */
148 'l', /* itk_long */
149 'm', /* itk_unsigned_long */
150 'x', /* itk_long_long */
151 'y', /* itk_unsigned_long_long */
152 'n', /* itk_int128 */
153 'o', /* itk_unsigned_int128 */
156 static int decl_is_template_id (const tree, tree* const);
158 /* Functions for handling substitutions. */
160 static inline tree canonicalize_for_substitution (tree);
161 static void add_substitution (tree);
162 static inline int is_std_substitution (const tree,
163 const substitution_identifier_index_t);
164 static inline int is_std_substitution_char (const tree,
165 const substitution_identifier_index_t);
166 static int find_substitution (tree);
167 static void mangle_call_offset (const tree, const tree);
169 /* Functions for emitting mangled representations of things. */
171 static void write_mangled_name (const tree, bool);
172 static void write_encoding (const tree);
173 static void write_name (tree, const int);
174 static void write_unscoped_name (const tree);
175 static void write_unscoped_template_name (const tree);
176 static void write_nested_name (const tree);
177 static void write_prefix (const tree);
178 static void write_template_prefix (const tree);
179 static void write_unqualified_name (const tree);
180 static void write_conversion_operator_name (const tree);
181 static void write_source_name (tree);
182 static void write_unnamed_type_name (const tree);
183 static void write_closure_type_name (const tree);
184 static int hwint_to_ascii (unsigned HOST_WIDE_INT, const unsigned int, char *,
185 const unsigned int);
186 static void write_number (unsigned HOST_WIDE_INT, const int,
187 const unsigned int);
188 static void write_compact_number (int num);
189 static void write_integer_cst (const tree);
190 static void write_real_cst (const tree);
191 static void write_identifier (const char *);
192 static void write_special_name_constructor (const tree);
193 static void write_special_name_destructor (const tree);
194 static void write_type (tree);
195 static int write_CV_qualifiers_for_type (const tree);
196 static void write_builtin_type (tree);
197 static void write_function_type (const tree);
198 static void write_bare_function_type (const tree, const int, const tree);
199 static void write_method_parms (tree, const int, const tree);
200 static void write_class_enum_type (const tree);
201 static void write_template_args (tree);
202 static void write_expression (tree);
203 static void write_template_arg_literal (const tree);
204 static void write_template_arg (tree);
205 static void write_template_template_arg (const tree);
206 static void write_array_type (const tree);
207 static void write_pointer_to_member_type (const tree);
208 static void write_template_param (const tree);
209 static void write_template_template_param (const tree);
210 static void write_substitution (const int);
211 static int discriminator_for_local_entity (tree);
212 static int discriminator_for_string_literal (tree, tree);
213 static void write_discriminator (const int);
214 static void write_local_name (tree, const tree, const tree);
215 static void dump_substitution_candidates (void);
216 static tree mangle_decl_string (const tree);
217 static int local_class_index (tree);
219 /* Control functions. */
221 static inline void start_mangling (const tree);
222 static inline const char *finish_mangling (const bool);
223 static tree mangle_special_for_type (const tree, const char *);
225 /* Foreign language functions. */
227 static void write_java_integer_type_codes (const tree);
229 /* Append a single character to the end of the mangled
230 representation. */
231 #define write_char(CHAR) \
232 obstack_1grow (mangle_obstack, (CHAR))
234 /* Append a sized buffer to the end of the mangled representation. */
235 #define write_chars(CHAR, LEN) \
236 obstack_grow (mangle_obstack, (CHAR), (LEN))
238 /* Append a NUL-terminated string to the end of the mangled
239 representation. */
240 #define write_string(STRING) \
241 obstack_grow (mangle_obstack, (STRING), strlen (STRING))
243 /* Nonzero if NODE1 and NODE2 are both TREE_LIST nodes and have the
244 same purpose (context, which may be a type) and value (template
245 decl). See write_template_prefix for more information on what this
246 is used for. */
247 #define NESTED_TEMPLATE_MATCH(NODE1, NODE2) \
248 (TREE_CODE (NODE1) == TREE_LIST \
249 && TREE_CODE (NODE2) == TREE_LIST \
250 && ((TYPE_P (TREE_PURPOSE (NODE1)) \
251 && same_type_p (TREE_PURPOSE (NODE1), TREE_PURPOSE (NODE2))) \
252 || TREE_PURPOSE (NODE1) == TREE_PURPOSE (NODE2)) \
253 && TREE_VALUE (NODE1) == TREE_VALUE (NODE2))
255 /* Write out an unsigned quantity in base 10. */
256 #define write_unsigned_number(NUMBER) \
257 write_number ((NUMBER), /*unsigned_p=*/1, 10)
259 /* If DECL is a template instance, return nonzero and, if
260 TEMPLATE_INFO is non-NULL, set *TEMPLATE_INFO to its template info.
261 Otherwise return zero. */
263 static int
264 decl_is_template_id (const tree decl, tree* const template_info)
266 if (TREE_CODE (decl) == TYPE_DECL)
268 /* TYPE_DECLs are handled specially. Look at its type to decide
269 if this is a template instantiation. */
270 const tree type = TREE_TYPE (decl);
272 if (CLASS_TYPE_P (type) && CLASSTYPE_TEMPLATE_ID_P (type))
274 if (template_info != NULL)
275 /* For a templated TYPE_DECL, the template info is hanging
276 off the type. */
277 *template_info = TYPE_TEMPLATE_INFO (type);
278 return 1;
281 else
283 /* Check if this is a primary template. */
284 if (DECL_LANG_SPECIFIC (decl) != NULL
285 && DECL_USE_TEMPLATE (decl)
286 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl))
287 && TREE_CODE (decl) != TEMPLATE_DECL)
289 if (template_info != NULL)
290 /* For most templated decls, the template info is hanging
291 off the decl. */
292 *template_info = DECL_TEMPLATE_INFO (decl);
293 return 1;
297 /* It's not a template id. */
298 return 0;
301 /* Produce debugging output of current substitution candidates. */
303 static void
304 dump_substitution_candidates (void)
306 unsigned i;
307 tree el;
309 fprintf (stderr, " ++ substitutions ");
310 for (i = 0; VEC_iterate (tree, G.substitutions, i, el); ++i)
312 const char *name = "???";
314 if (i > 0)
315 fprintf (stderr, " ");
316 if (DECL_P (el))
317 name = IDENTIFIER_POINTER (DECL_NAME (el));
318 else if (TREE_CODE (el) == TREE_LIST)
319 name = IDENTIFIER_POINTER (DECL_NAME (TREE_VALUE (el)));
320 else if (TYPE_NAME (el))
321 name = IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (el)));
322 fprintf (stderr, " S%d_ = ", i - 1);
323 if (TYPE_P (el) &&
324 (CP_TYPE_RESTRICT_P (el)
325 || CP_TYPE_VOLATILE_P (el)
326 || CP_TYPE_CONST_P (el)))
327 fprintf (stderr, "CV-");
328 fprintf (stderr, "%s (%s at %p)\n",
329 name, tree_code_name[TREE_CODE (el)], (void *) el);
333 /* Both decls and types can be substitution candidates, but sometimes
334 they refer to the same thing. For instance, a TYPE_DECL and
335 RECORD_TYPE for the same class refer to the same thing, and should
336 be treated accordingly in substitutions. This function returns a
337 canonicalized tree node representing NODE that is used when adding
338 and substitution candidates and finding matches. */
340 static inline tree
341 canonicalize_for_substitution (tree node)
343 /* For a TYPE_DECL, use the type instead. */
344 if (TREE_CODE (node) == TYPE_DECL)
345 node = TREE_TYPE (node);
346 if (TYPE_P (node)
347 && TYPE_CANONICAL (node) != node
348 && TYPE_MAIN_VARIANT (node) != node)
349 /* Here we want to strip the topmost typedef only.
350 We need to do that so is_std_substitution can do proper
351 name matching. */
352 node = cp_build_qualified_type (TYPE_MAIN_VARIANT (node),
353 cp_type_quals (node));
354 return node;
357 /* Add NODE as a substitution candidate. NODE must not already be on
358 the list of candidates. */
360 static void
361 add_substitution (tree node)
363 tree c;
365 if (DEBUG_MANGLE)
366 fprintf (stderr, " ++ add_substitution (%s at %10p)\n",
367 tree_code_name[TREE_CODE (node)], (void *) node);
369 /* Get the canonicalized substitution candidate for NODE. */
370 c = canonicalize_for_substitution (node);
371 if (DEBUG_MANGLE && c != node)
372 fprintf (stderr, " ++ using candidate (%s at %10p)\n",
373 tree_code_name[TREE_CODE (node)], (void *) node);
374 node = c;
376 #if ENABLE_CHECKING
377 /* Make sure NODE isn't already a candidate. */
379 int i;
380 tree candidate;
382 for (i = 0; VEC_iterate (tree, G.substitutions, i, candidate); i++)
384 gcc_assert (!(DECL_P (node) && node == candidate));
385 gcc_assert (!(TYPE_P (node) && TYPE_P (candidate)
386 && same_type_p (node, candidate)));
389 #endif /* ENABLE_CHECKING */
391 /* Put the decl onto the varray of substitution candidates. */
392 VEC_safe_push (tree, gc, G.substitutions, node);
394 if (DEBUG_MANGLE)
395 dump_substitution_candidates ();
398 /* Helper function for find_substitution. Returns nonzero if NODE,
399 which may be a decl or a CLASS_TYPE, is a template-id with template
400 name of substitution_index[INDEX] in the ::std namespace. */
402 static inline int
403 is_std_substitution (const tree node,
404 const substitution_identifier_index_t index)
406 tree type = NULL;
407 tree decl = NULL;
409 if (DECL_P (node))
411 type = TREE_TYPE (node);
412 decl = node;
414 else if (CLASS_TYPE_P (node))
416 type = node;
417 decl = TYPE_NAME (node);
419 else
420 /* These are not the droids you're looking for. */
421 return 0;
423 return (DECL_NAMESPACE_STD_P (CP_DECL_CONTEXT (decl))
424 && TYPE_LANG_SPECIFIC (type)
425 && TYPE_TEMPLATE_INFO (type)
426 && (DECL_NAME (TYPE_TI_TEMPLATE (type))
427 == subst_identifiers[index]));
430 /* Helper function for find_substitution. Returns nonzero if NODE,
431 which may be a decl or a CLASS_TYPE, is the template-id
432 ::std::identifier<char>, where identifier is
433 substitution_index[INDEX]. */
435 static inline int
436 is_std_substitution_char (const tree node,
437 const substitution_identifier_index_t index)
439 tree args;
440 /* Check NODE's name is ::std::identifier. */
441 if (!is_std_substitution (node, index))
442 return 0;
443 /* Figure out its template args. */
444 if (DECL_P (node))
445 args = DECL_TI_ARGS (node);
446 else if (CLASS_TYPE_P (node))
447 args = CLASSTYPE_TI_ARGS (node);
448 else
449 /* Oops, not a template. */
450 return 0;
451 /* NODE's template arg list should be <char>. */
452 return
453 TREE_VEC_LENGTH (args) == 1
454 && TREE_VEC_ELT (args, 0) == char_type_node;
457 /* Check whether a substitution should be used to represent NODE in
458 the mangling.
460 First, check standard special-case substitutions.
462 <substitution> ::= St
463 # ::std
465 ::= Sa
466 # ::std::allocator
468 ::= Sb
469 # ::std::basic_string
471 ::= Ss
472 # ::std::basic_string<char,
473 ::std::char_traits<char>,
474 ::std::allocator<char> >
476 ::= Si
477 # ::std::basic_istream<char, ::std::char_traits<char> >
479 ::= So
480 # ::std::basic_ostream<char, ::std::char_traits<char> >
482 ::= Sd
483 # ::std::basic_iostream<char, ::std::char_traits<char> >
485 Then examine the stack of currently available substitution
486 candidates for entities appearing earlier in the same mangling
488 If a substitution is found, write its mangled representation and
489 return nonzero. If none is found, just return zero. */
491 static int
492 find_substitution (tree node)
494 int i;
495 const int size = VEC_length (tree, G.substitutions);
496 tree decl;
497 tree type;
499 if (DEBUG_MANGLE)
500 fprintf (stderr, " ++ find_substitution (%s at %p)\n",
501 tree_code_name[TREE_CODE (node)], (void *) node);
503 /* Obtain the canonicalized substitution representation for NODE.
504 This is what we'll compare against. */
505 node = canonicalize_for_substitution (node);
507 /* Check for builtin substitutions. */
509 decl = TYPE_P (node) ? TYPE_NAME (node) : node;
510 type = TYPE_P (node) ? node : TREE_TYPE (node);
512 /* Check for std::allocator. */
513 if (decl
514 && is_std_substitution (decl, SUBID_ALLOCATOR)
515 && !CLASSTYPE_USE_TEMPLATE (TREE_TYPE (decl)))
517 write_string ("Sa");
518 return 1;
521 /* Check for std::basic_string. */
522 if (decl && is_std_substitution (decl, SUBID_BASIC_STRING))
524 if (TYPE_P (node))
526 /* If this is a type (i.e. a fully-qualified template-id),
527 check for
528 std::basic_string <char,
529 std::char_traits<char>,
530 std::allocator<char> > . */
531 if (cp_type_quals (type) == TYPE_UNQUALIFIED
532 && CLASSTYPE_USE_TEMPLATE (type))
534 tree args = CLASSTYPE_TI_ARGS (type);
535 if (TREE_VEC_LENGTH (args) == 3
536 && same_type_p (TREE_VEC_ELT (args, 0), char_type_node)
537 && is_std_substitution_char (TREE_VEC_ELT (args, 1),
538 SUBID_CHAR_TRAITS)
539 && is_std_substitution_char (TREE_VEC_ELT (args, 2),
540 SUBID_ALLOCATOR))
542 write_string ("Ss");
543 return 1;
547 else
548 /* Substitute for the template name only if this isn't a type. */
550 write_string ("Sb");
551 return 1;
555 /* Check for basic_{i,o,io}stream. */
556 if (TYPE_P (node)
557 && cp_type_quals (type) == TYPE_UNQUALIFIED
558 && CLASS_TYPE_P (type)
559 && CLASSTYPE_USE_TEMPLATE (type)
560 && CLASSTYPE_TEMPLATE_INFO (type) != NULL)
562 /* First, check for the template
563 args <char, std::char_traits<char> > . */
564 tree args = CLASSTYPE_TI_ARGS (type);
565 if (TREE_VEC_LENGTH (args) == 2
566 && TYPE_P (TREE_VEC_ELT (args, 0))
567 && same_type_p (TREE_VEC_ELT (args, 0), char_type_node)
568 && is_std_substitution_char (TREE_VEC_ELT (args, 1),
569 SUBID_CHAR_TRAITS))
571 /* Got them. Is this basic_istream? */
572 if (is_std_substitution (decl, SUBID_BASIC_ISTREAM))
574 write_string ("Si");
575 return 1;
577 /* Or basic_ostream? */
578 else if (is_std_substitution (decl, SUBID_BASIC_OSTREAM))
580 write_string ("So");
581 return 1;
583 /* Or basic_iostream? */
584 else if (is_std_substitution (decl, SUBID_BASIC_IOSTREAM))
586 write_string ("Sd");
587 return 1;
592 /* Check for namespace std. */
593 if (decl && DECL_NAMESPACE_STD_P (decl))
595 write_string ("St");
596 return 1;
599 /* Now check the list of available substitutions for this mangling
600 operation. */
601 for (i = 0; i < size; ++i)
603 tree candidate = VEC_index (tree, G.substitutions, i);
604 /* NODE is a matched to a candidate if it's the same decl node or
605 if it's the same type. */
606 if (decl == candidate
607 || (TYPE_P (candidate) && type && TYPE_P (type)
608 && same_type_p (type, candidate))
609 || NESTED_TEMPLATE_MATCH (node, candidate))
611 write_substitution (i);
612 return 1;
616 /* No substitution found. */
617 return 0;
621 /* TOP_LEVEL is true, if this is being called at outermost level of
622 mangling. It should be false when mangling a decl appearing in an
623 expression within some other mangling.
625 <mangled-name> ::= _Z <encoding> */
627 static void
628 write_mangled_name (const tree decl, bool top_level)
630 MANGLE_TRACE_TREE ("mangled-name", decl);
632 if (/* The names of `extern "C"' functions are not mangled. */
633 DECL_EXTERN_C_FUNCTION_P (decl)
634 /* But overloaded operator names *are* mangled. */
635 && !DECL_OVERLOADED_OPERATOR_P (decl))
637 unmangled_name:;
639 if (top_level)
640 write_string (IDENTIFIER_POINTER (DECL_NAME (decl)));
641 else
643 /* The standard notes: "The <encoding> of an extern "C"
644 function is treated like global-scope data, i.e. as its
645 <source-name> without a type." We cannot write
646 overloaded operators that way though, because it contains
647 characters invalid in assembler. */
648 if (abi_version_at_least (2))
649 write_string ("_Z");
650 else
651 G.need_abi_warning = true;
652 write_source_name (DECL_NAME (decl));
655 else if (TREE_CODE (decl) == VAR_DECL
656 /* The names of non-static global variables aren't mangled. */
657 && DECL_EXTERNAL_LINKAGE_P (decl)
658 && (CP_DECL_CONTEXT (decl) == global_namespace
659 /* And neither are `extern "C"' variables. */
660 || DECL_EXTERN_C_P (decl)))
662 if (top_level || abi_version_at_least (2))
663 goto unmangled_name;
664 else
666 G.need_abi_warning = true;
667 goto mangled_name;
670 else
672 mangled_name:;
673 write_string ("_Z");
674 write_encoding (decl);
675 if (DECL_LANG_SPECIFIC (decl)
676 && (DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P (decl)
677 || DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (decl)))
678 /* We need a distinct mangled name for these entities, but
679 we should never actually output it. So, we append some
680 characters the assembler won't like. */
681 write_string (" *INTERNAL* ");
685 /* <encoding> ::= <function name> <bare-function-type>
686 ::= <data name> */
688 static void
689 write_encoding (const tree decl)
691 MANGLE_TRACE_TREE ("encoding", decl);
693 if (DECL_LANG_SPECIFIC (decl) && DECL_EXTERN_C_FUNCTION_P (decl))
695 /* For overloaded operators write just the mangled name
696 without arguments. */
697 if (DECL_OVERLOADED_OPERATOR_P (decl))
698 write_name (decl, /*ignore_local_scope=*/0);
699 else
700 write_source_name (DECL_NAME (decl));
701 return;
704 write_name (decl, /*ignore_local_scope=*/0);
705 if (TREE_CODE (decl) == FUNCTION_DECL)
707 tree fn_type;
708 tree d;
710 if (decl_is_template_id (decl, NULL))
712 fn_type = get_mostly_instantiated_function_type (decl);
713 /* FN_TYPE will not have parameter types for in-charge or
714 VTT parameters. Therefore, we pass NULL_TREE to
715 write_bare_function_type -- otherwise, it will get
716 confused about which artificial parameters to skip. */
717 d = NULL_TREE;
719 else
721 fn_type = TREE_TYPE (decl);
722 d = decl;
725 write_bare_function_type (fn_type,
726 (!DECL_CONSTRUCTOR_P (decl)
727 && !DECL_DESTRUCTOR_P (decl)
728 && !DECL_CONV_FN_P (decl)
729 && decl_is_template_id (decl, NULL)),
734 /* Lambdas can have a bit more context for mangling, specifically VAR_DECL
735 or PARM_DECL context, which doesn't belong in DECL_CONTEXT. */
737 static tree
738 decl_mangling_context (tree decl)
740 if (TREE_CODE (decl) == TYPE_DECL
741 && LAMBDA_TYPE_P (TREE_TYPE (decl)))
743 tree extra = LAMBDA_TYPE_EXTRA_SCOPE (TREE_TYPE (decl));
744 if (extra)
745 return extra;
747 else if (TREE_CODE (decl) == TYPE_DECL
748 && TREE_CODE (TREE_TYPE (decl)) == TEMPLATE_TYPE_PARM)
749 /* template type parms have no mangling context. */
750 return NULL_TREE;
751 return CP_DECL_CONTEXT (decl);
754 /* <name> ::= <unscoped-name>
755 ::= <unscoped-template-name> <template-args>
756 ::= <nested-name>
757 ::= <local-name>
759 If IGNORE_LOCAL_SCOPE is nonzero, this production of <name> is
760 called from <local-name>, which mangles the enclosing scope
761 elsewhere and then uses this function to mangle just the part
762 underneath the function scope. So don't use the <local-name>
763 production, to avoid an infinite recursion. */
765 static void
766 write_name (tree decl, const int ignore_local_scope)
768 tree context;
770 MANGLE_TRACE_TREE ("name", decl);
772 if (TREE_CODE (decl) == TYPE_DECL)
774 /* In case this is a typedef, fish out the corresponding
775 TYPE_DECL for the main variant. */
776 decl = TYPE_NAME (TYPE_MAIN_VARIANT (TREE_TYPE (decl)));
779 context = decl_mangling_context (decl);
781 /* A decl in :: or ::std scope is treated specially. The former is
782 mangled using <unscoped-name> or <unscoped-template-name>, the
783 latter with a special substitution. Also, a name that is
784 directly in a local function scope is also mangled with
785 <unscoped-name> rather than a full <nested-name>. */
786 if (context == NULL
787 || context == global_namespace
788 || DECL_NAMESPACE_STD_P (context)
789 || (ignore_local_scope && TREE_CODE (context) == FUNCTION_DECL))
791 tree template_info;
792 /* Is this a template instance? */
793 if (decl_is_template_id (decl, &template_info))
795 /* Yes: use <unscoped-template-name>. */
796 write_unscoped_template_name (TI_TEMPLATE (template_info));
797 write_template_args (TI_ARGS (template_info));
799 else
800 /* Everything else gets an <unqualified-name>. */
801 write_unscoped_name (decl);
803 else
805 /* Handle local names, unless we asked not to (that is, invoked
806 under <local-name>, to handle only the part of the name under
807 the local scope). */
808 if (!ignore_local_scope)
810 /* Scan up the list of scope context, looking for a
811 function. If we find one, this entity is in local
812 function scope. local_entity tracks context one scope
813 level down, so it will contain the element that's
814 directly in that function's scope, either decl or one of
815 its enclosing scopes. */
816 tree local_entity = decl;
817 while (context != NULL && context != global_namespace)
819 /* Make sure we're always dealing with decls. */
820 if (context != NULL && TYPE_P (context))
821 context = TYPE_NAME (context);
822 /* Is this a function? */
823 if (TREE_CODE (context) == FUNCTION_DECL
824 || TREE_CODE (context) == PARM_DECL)
826 /* Yes, we have local scope. Use the <local-name>
827 production for the innermost function scope. */
828 write_local_name (context, local_entity, decl);
829 return;
831 /* Up one scope level. */
832 local_entity = context;
833 context = decl_mangling_context (context);
836 /* No local scope found? Fall through to <nested-name>. */
839 /* Other decls get a <nested-name> to encode their scope. */
840 write_nested_name (decl);
844 /* <unscoped-name> ::= <unqualified-name>
845 ::= St <unqualified-name> # ::std:: */
847 static void
848 write_unscoped_name (const tree decl)
850 tree context = CP_DECL_CONTEXT (decl);
852 MANGLE_TRACE_TREE ("unscoped-name", decl);
854 /* Is DECL in ::std? */
855 if (DECL_NAMESPACE_STD_P (context))
857 write_string ("St");
858 write_unqualified_name (decl);
860 else
862 /* If not, it should be either in the global namespace, or directly
863 in a local function scope. */
864 gcc_assert (context == global_namespace
865 || context != NULL
866 || TREE_CODE (context) == FUNCTION_DECL);
868 write_unqualified_name (decl);
872 /* <unscoped-template-name> ::= <unscoped-name>
873 ::= <substitution> */
875 static void
876 write_unscoped_template_name (const tree decl)
878 MANGLE_TRACE_TREE ("unscoped-template-name", decl);
880 if (find_substitution (decl))
881 return;
882 write_unscoped_name (decl);
883 add_substitution (decl);
886 /* Write the nested name, including CV-qualifiers, of DECL.
888 <nested-name> ::= N [<CV-qualifiers>] <prefix> <unqualified-name> E
889 ::= N [<CV-qualifiers>] <template-prefix> <template-args> E
891 <CV-qualifiers> ::= [r] [V] [K] */
893 static void
894 write_nested_name (const tree decl)
896 tree template_info;
898 MANGLE_TRACE_TREE ("nested-name", decl);
900 write_char ('N');
902 /* Write CV-qualifiers, if this is a member function. */
903 if (TREE_CODE (decl) == FUNCTION_DECL
904 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
906 if (DECL_VOLATILE_MEMFUNC_P (decl))
907 write_char ('V');
908 if (DECL_CONST_MEMFUNC_P (decl))
909 write_char ('K');
912 /* Is this a template instance? */
913 if (decl_is_template_id (decl, &template_info))
915 /* Yes, use <template-prefix>. */
916 write_template_prefix (decl);
917 write_template_args (TI_ARGS (template_info));
919 else if (TREE_CODE (TREE_TYPE (decl)) == TYPENAME_TYPE)
921 tree name = TYPENAME_TYPE_FULLNAME (TREE_TYPE (decl));
922 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
924 write_template_prefix (decl);
925 write_template_args (TREE_OPERAND (name, 1));
927 else
929 write_prefix (CP_DECL_CONTEXT (decl));
930 write_unqualified_name (decl);
933 else
935 /* No, just use <prefix> */
936 write_prefix (DECL_CONTEXT (decl));
937 write_unqualified_name (decl);
939 write_char ('E');
942 /* <prefix> ::= <prefix> <unqualified-name>
943 ::= <template-param>
944 ::= <template-prefix> <template-args>
945 ::= # empty
946 ::= <substitution> */
948 static void
949 write_prefix (const tree node)
951 tree decl;
952 /* Non-NULL if NODE represents a template-id. */
953 tree template_info = NULL;
955 if (node == NULL
956 || node == global_namespace)
957 return;
959 MANGLE_TRACE_TREE ("prefix", node);
961 if (find_substitution (node))
962 return;
964 if (DECL_P (node))
966 /* If this is a function or parm decl, that means we've hit function
967 scope, so this prefix must be for a local name. In this
968 case, we're under the <local-name> production, which encodes
969 the enclosing function scope elsewhere. So don't continue
970 here. */
971 if (TREE_CODE (node) == FUNCTION_DECL
972 || TREE_CODE (node) == PARM_DECL)
973 return;
975 decl = node;
976 decl_is_template_id (decl, &template_info);
978 else
980 /* Node is a type. */
981 decl = TYPE_NAME (node);
982 if (CLASSTYPE_TEMPLATE_ID_P (node))
983 template_info = TYPE_TEMPLATE_INFO (node);
986 /* In G++ 3.2, the name of the template parameter was used. */
987 if (TREE_CODE (node) == TEMPLATE_TYPE_PARM
988 && !abi_version_at_least (2))
989 G.need_abi_warning = true;
991 if (TREE_CODE (node) == TEMPLATE_TYPE_PARM
992 && abi_version_at_least (2))
993 write_template_param (node);
994 else if (template_info != NULL)
995 /* Templated. */
997 write_template_prefix (decl);
998 write_template_args (TI_ARGS (template_info));
1000 else if (TREE_CODE (TREE_TYPE (decl)) == TYPENAME_TYPE)
1002 tree name = TYPENAME_TYPE_FULLNAME (TREE_TYPE (decl));
1003 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
1005 write_template_prefix (decl);
1006 write_template_args (TREE_OPERAND (name, 1));
1008 else
1010 write_prefix (CP_DECL_CONTEXT (decl));
1011 write_unqualified_name (decl);
1014 else
1015 /* Not templated. */
1017 write_prefix (decl_mangling_context (decl));
1018 write_unqualified_name (decl);
1019 if (TREE_CODE (decl) == VAR_DECL
1020 || TREE_CODE (decl) == FIELD_DECL)
1022 /* <data-member-prefix> := <member source-name> M */
1023 write_char ('M');
1024 return;
1028 add_substitution (node);
1031 /* <template-prefix> ::= <prefix> <template component>
1032 ::= <template-param>
1033 ::= <substitution> */
1035 static void
1036 write_template_prefix (const tree node)
1038 tree decl = DECL_P (node) ? node : TYPE_NAME (node);
1039 tree type = DECL_P (node) ? TREE_TYPE (node) : node;
1040 tree context = CP_DECL_CONTEXT (decl);
1041 tree template_info;
1042 tree templ;
1043 tree substitution;
1045 MANGLE_TRACE_TREE ("template-prefix", node);
1047 /* Find the template decl. */
1048 if (decl_is_template_id (decl, &template_info))
1049 templ = TI_TEMPLATE (template_info);
1050 else if (TREE_CODE (type) == TYPENAME_TYPE)
1051 /* For a typename type, all we have is the name. */
1052 templ = DECL_NAME (decl);
1053 else
1055 gcc_assert (CLASSTYPE_TEMPLATE_ID_P (type));
1057 templ = TYPE_TI_TEMPLATE (type);
1060 /* For a member template, though, the template name for the
1061 innermost name must have all the outer template levels
1062 instantiated. For instance, consider
1064 template<typename T> struct Outer {
1065 template<typename U> struct Inner {};
1068 The template name for `Inner' in `Outer<int>::Inner<float>' is
1069 `Outer<int>::Inner<U>'. In g++, we don't instantiate the template
1070 levels separately, so there's no TEMPLATE_DECL available for this
1071 (there's only `Outer<T>::Inner<U>').
1073 In order to get the substitutions right, we create a special
1074 TREE_LIST to represent the substitution candidate for a nested
1075 template. The TREE_PURPOSE is the template's context, fully
1076 instantiated, and the TREE_VALUE is the TEMPLATE_DECL for the inner
1077 template.
1079 So, for the example above, `Outer<int>::Inner' is represented as a
1080 substitution candidate by a TREE_LIST whose purpose is `Outer<int>'
1081 and whose value is `Outer<T>::Inner<U>'. */
1082 if (TYPE_P (context))
1083 substitution = build_tree_list (context, templ);
1084 else
1085 substitution = templ;
1087 if (find_substitution (substitution))
1088 return;
1090 /* In G++ 3.2, the name of the template template parameter was used. */
1091 if (TREE_TYPE (templ)
1092 && TREE_CODE (TREE_TYPE (templ)) == TEMPLATE_TEMPLATE_PARM
1093 && !abi_version_at_least (2))
1094 G.need_abi_warning = true;
1096 if (TREE_TYPE (templ)
1097 && TREE_CODE (TREE_TYPE (templ)) == TEMPLATE_TEMPLATE_PARM
1098 && abi_version_at_least (2))
1099 write_template_param (TREE_TYPE (templ));
1100 else
1102 write_prefix (context);
1103 write_unqualified_name (decl);
1106 add_substitution (substitution);
1109 /* We don't need to handle thunks, vtables, or VTTs here. Those are
1110 mangled through special entry points.
1112 <unqualified-name> ::= <operator-name>
1113 ::= <special-name>
1114 ::= <source-name>
1115 ::= <unnamed-type-name>
1116 ::= <local-source-name>
1118 <local-source-name> ::= L <source-name> <discriminator> */
1120 static void
1121 write_unqualified_id (tree identifier)
1123 if (IDENTIFIER_TYPENAME_P (identifier))
1124 write_conversion_operator_name (TREE_TYPE (identifier));
1125 else if (IDENTIFIER_OPNAME_P (identifier))
1127 int i;
1128 const char *mangled_name = NULL;
1130 /* Unfortunately, there is no easy way to go from the
1131 name of the operator back to the corresponding tree
1132 code. */
1133 for (i = 0; i < MAX_TREE_CODES; ++i)
1134 if (operator_name_info[i].identifier == identifier)
1136 /* The ABI says that we prefer binary operator
1137 names to unary operator names. */
1138 if (operator_name_info[i].arity == 2)
1140 mangled_name = operator_name_info[i].mangled_name;
1141 break;
1143 else if (!mangled_name)
1144 mangled_name = operator_name_info[i].mangled_name;
1146 else if (assignment_operator_name_info[i].identifier
1147 == identifier)
1149 mangled_name
1150 = assignment_operator_name_info[i].mangled_name;
1151 break;
1153 write_string (mangled_name);
1155 else
1156 write_source_name (identifier);
1159 static void
1160 write_unqualified_name (const tree decl)
1162 MANGLE_TRACE_TREE ("unqualified-name", decl);
1164 if (TREE_CODE (decl) == IDENTIFIER_NODE)
1166 write_unqualified_id (decl);
1167 return;
1170 if (DECL_NAME (decl) == NULL_TREE)
1172 gcc_assert (DECL_ASSEMBLER_NAME_SET_P (decl));
1173 write_source_name (DECL_ASSEMBLER_NAME (decl));
1174 return;
1176 else if (DECL_DECLARES_FUNCTION_P (decl))
1178 bool found = true;
1179 if (DECL_CONSTRUCTOR_P (decl))
1180 write_special_name_constructor (decl);
1181 else if (DECL_DESTRUCTOR_P (decl))
1182 write_special_name_destructor (decl);
1183 else if (DECL_CONV_FN_P (decl))
1185 /* Conversion operator. Handle it right here.
1186 <operator> ::= cv <type> */
1187 tree type;
1188 if (decl_is_template_id (decl, NULL))
1190 tree fn_type;
1191 fn_type = get_mostly_instantiated_function_type (decl);
1192 type = TREE_TYPE (fn_type);
1194 else
1195 type = DECL_CONV_FN_TYPE (decl);
1196 write_conversion_operator_name (type);
1198 else if (DECL_OVERLOADED_OPERATOR_P (decl))
1200 operator_name_info_t *oni;
1201 if (DECL_ASSIGNMENT_OPERATOR_P (decl))
1202 oni = assignment_operator_name_info;
1203 else
1204 oni = operator_name_info;
1206 write_string (oni[DECL_OVERLOADED_OPERATOR_P (decl)].mangled_name);
1208 else
1209 found = false;
1211 if (found)
1212 return;
1215 if (VAR_OR_FUNCTION_DECL_P (decl) && ! TREE_PUBLIC (decl)
1216 && DECL_NAMESPACE_SCOPE_P (decl)
1217 && decl_linkage (decl) == lk_internal)
1219 MANGLE_TRACE_TREE ("local-source-name", decl);
1220 write_char ('L');
1221 write_source_name (DECL_NAME (decl));
1222 /* The default discriminator is 1, and that's all we ever use,
1223 so there's no code to output one here. */
1225 else
1227 tree type = TREE_TYPE (decl);
1229 if (TREE_CODE (decl) == TYPE_DECL
1230 && TYPE_ANONYMOUS_P (type))
1231 write_unnamed_type_name (type);
1232 else if (TREE_CODE (decl) == TYPE_DECL
1233 && LAMBDA_TYPE_P (type))
1234 write_closure_type_name (type);
1235 else
1236 write_source_name (DECL_NAME (decl));
1240 /* Write the unqualified-name for a conversion operator to TYPE. */
1242 static void
1243 write_conversion_operator_name (const tree type)
1245 write_string ("cv");
1246 write_type (type);
1249 /* Non-terminal <source-name>. IDENTIFIER is an IDENTIFIER_NODE.
1251 <source-name> ::= </length/ number> <identifier> */
1253 static void
1254 write_source_name (tree identifier)
1256 MANGLE_TRACE_TREE ("source-name", identifier);
1258 /* Never write the whole template-id name including the template
1259 arguments; we only want the template name. */
1260 if (IDENTIFIER_TEMPLATE (identifier))
1261 identifier = IDENTIFIER_TEMPLATE (identifier);
1263 write_unsigned_number (IDENTIFIER_LENGTH (identifier));
1264 write_identifier (IDENTIFIER_POINTER (identifier));
1267 /* Encode 0 as _, and 1+ as n-1_. */
1269 static void
1270 write_compact_number (int num)
1272 if (num > 0)
1273 write_unsigned_number (num - 1);
1274 write_char ('_');
1277 /* Return how many unnamed types precede TYPE in its enclosing class. */
1279 static int
1280 nested_anon_class_index (tree type)
1282 int index = 0;
1283 tree member = TYPE_FIELDS (TYPE_CONTEXT (type));
1284 for (; member; member = TREE_CHAIN (member))
1285 if (DECL_IMPLICIT_TYPEDEF_P (member))
1287 tree memtype = TREE_TYPE (member);
1288 if (memtype == type)
1289 return index;
1290 else if (TYPE_ANONYMOUS_P (memtype))
1291 ++index;
1294 gcc_unreachable ();
1297 /* <unnamed-type-name> ::= Ut [ <nonnegative number> ] _ */
1299 static void
1300 write_unnamed_type_name (const tree type __attribute__ ((__unused__)))
1302 int discriminator;
1303 MANGLE_TRACE_TREE ("unnamed-type-name", type);
1305 if (TYPE_FUNCTION_SCOPE_P (type))
1306 discriminator = local_class_index (type);
1307 else if (TYPE_CLASS_SCOPE_P (type))
1308 discriminator = nested_anon_class_index (type);
1309 else
1311 gcc_assert (no_linkage_check (type, /*relaxed_p=*/true));
1312 /* Just use the old mangling at namespace scope. */
1313 write_source_name (TYPE_IDENTIFIER (type));
1314 return;
1317 write_string ("Ut");
1318 write_compact_number (discriminator);
1321 /* <closure-type-name> ::= Ul <lambda-sig> E [ <nonnegative number> ] _
1322 <lambda-sig> ::= <parameter type>+ # Parameter types or "v" if the lambda has no parameters */
1324 static void
1325 write_closure_type_name (const tree type)
1327 tree fn = lambda_function (type);
1328 tree lambda = CLASSTYPE_LAMBDA_EXPR (type);
1329 tree parms = TYPE_ARG_TYPES (TREE_TYPE (fn));
1331 MANGLE_TRACE_TREE ("closure-type-name", type);
1333 write_string ("Ul");
1334 write_method_parms (parms, /*method_p=*/1, fn);
1335 write_char ('E');
1336 write_compact_number (LAMBDA_EXPR_DISCRIMINATOR (lambda));
1339 /* Convert NUMBER to ascii using base BASE and generating at least
1340 MIN_DIGITS characters. BUFFER points to the _end_ of the buffer
1341 into which to store the characters. Returns the number of
1342 characters generated (these will be layed out in advance of where
1343 BUFFER points). */
1345 static int
1346 hwint_to_ascii (unsigned HOST_WIDE_INT number, const unsigned int base,
1347 char *buffer, const unsigned int min_digits)
1349 static const char base_digits[] = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
1350 unsigned digits = 0;
1352 while (number)
1354 unsigned HOST_WIDE_INT d = number / base;
1356 *--buffer = base_digits[number - d * base];
1357 digits++;
1358 number = d;
1360 while (digits < min_digits)
1362 *--buffer = base_digits[0];
1363 digits++;
1365 return digits;
1368 /* Non-terminal <number>.
1370 <number> ::= [n] </decimal integer/> */
1372 static void
1373 write_number (unsigned HOST_WIDE_INT number, const int unsigned_p,
1374 const unsigned int base)
1376 char buffer[sizeof (HOST_WIDE_INT) * 8];
1377 unsigned count = 0;
1379 if (!unsigned_p && (HOST_WIDE_INT) number < 0)
1381 write_char ('n');
1382 number = -((HOST_WIDE_INT) number);
1384 count = hwint_to_ascii (number, base, buffer + sizeof (buffer), 1);
1385 write_chars (buffer + sizeof (buffer) - count, count);
1388 /* Write out an integral CST in decimal. Most numbers are small, and
1389 representable in a HOST_WIDE_INT. Occasionally we'll have numbers
1390 bigger than that, which we must deal with. */
1392 static inline void
1393 write_integer_cst (const tree cst)
1395 int sign = tree_int_cst_sgn (cst);
1397 if (TREE_INT_CST_HIGH (cst) + (sign < 0))
1399 /* A bignum. We do this in chunks, each of which fits in a
1400 HOST_WIDE_INT. */
1401 char buffer[sizeof (HOST_WIDE_INT) * 8 * 2];
1402 unsigned HOST_WIDE_INT chunk;
1403 unsigned chunk_digits;
1404 char *ptr = buffer + sizeof (buffer);
1405 unsigned count = 0;
1406 tree n, base, type;
1407 int done;
1409 /* HOST_WIDE_INT must be at least 32 bits, so 10^9 is
1410 representable. */
1411 chunk = 1000000000;
1412 chunk_digits = 9;
1414 if (sizeof (HOST_WIDE_INT) >= 8)
1416 /* It is at least 64 bits, so 10^18 is representable. */
1417 chunk_digits = 18;
1418 chunk *= chunk;
1421 type = c_common_signed_or_unsigned_type (1, TREE_TYPE (cst));
1422 base = build_int_cstu (type, chunk);
1423 n = build_int_cst_wide (type,
1424 TREE_INT_CST_LOW (cst), TREE_INT_CST_HIGH (cst));
1426 if (sign < 0)
1428 write_char ('n');
1429 n = fold_build1_loc (input_location, NEGATE_EXPR, type, n);
1433 tree d = fold_build2_loc (input_location, FLOOR_DIV_EXPR, type, n, base);
1434 tree tmp = fold_build2_loc (input_location, MULT_EXPR, type, d, base);
1435 unsigned c;
1437 done = integer_zerop (d);
1438 tmp = fold_build2_loc (input_location, MINUS_EXPR, type, n, tmp);
1439 c = hwint_to_ascii (TREE_INT_CST_LOW (tmp), 10, ptr,
1440 done ? 1 : chunk_digits);
1441 ptr -= c;
1442 count += c;
1443 n = d;
1445 while (!done);
1446 write_chars (ptr, count);
1448 else
1450 /* A small num. */
1451 unsigned HOST_WIDE_INT low = TREE_INT_CST_LOW (cst);
1453 if (sign < 0)
1455 write_char ('n');
1456 low = -low;
1458 write_unsigned_number (low);
1462 /* Write out a floating-point literal.
1464 "Floating-point literals are encoded using the bit pattern of the
1465 target processor's internal representation of that number, as a
1466 fixed-length lowercase hexadecimal string, high-order bytes first
1467 (even if the target processor would store low-order bytes first).
1468 The "n" prefix is not used for floating-point literals; the sign
1469 bit is encoded with the rest of the number.
1471 Here are some examples, assuming the IEEE standard representation
1472 for floating point numbers. (Spaces are for readability, not
1473 part of the encoding.)
1475 1.0f Lf 3f80 0000 E
1476 -1.0f Lf bf80 0000 E
1477 1.17549435e-38f Lf 0080 0000 E
1478 1.40129846e-45f Lf 0000 0001 E
1479 0.0f Lf 0000 0000 E"
1481 Caller is responsible for the Lx and the E. */
1482 static void
1483 write_real_cst (const tree value)
1485 if (abi_version_at_least (2))
1487 long target_real[4]; /* largest supported float */
1488 char buffer[9]; /* eight hex digits in a 32-bit number */
1489 int i, limit, dir;
1491 tree type = TREE_TYPE (value);
1492 int words = GET_MODE_BITSIZE (TYPE_MODE (type)) / 32;
1494 real_to_target (target_real, &TREE_REAL_CST (value),
1495 TYPE_MODE (type));
1497 /* The value in target_real is in the target word order,
1498 so we must write it out backward if that happens to be
1499 little-endian. write_number cannot be used, it will
1500 produce uppercase. */
1501 if (FLOAT_WORDS_BIG_ENDIAN)
1502 i = 0, limit = words, dir = 1;
1503 else
1504 i = words - 1, limit = -1, dir = -1;
1506 for (; i != limit; i += dir)
1508 sprintf (buffer, "%08lx", (unsigned long) target_real[i]);
1509 write_chars (buffer, 8);
1512 else
1514 /* In G++ 3.3 and before the REAL_VALUE_TYPE was written out
1515 literally. Note that compatibility with 3.2 is impossible,
1516 because the old floating-point emulator used a different
1517 format for REAL_VALUE_TYPE. */
1518 size_t i;
1519 for (i = 0; i < sizeof (TREE_REAL_CST (value)); ++i)
1520 write_number (((unsigned char *) &TREE_REAL_CST (value))[i],
1521 /*unsigned_p*/ 1,
1522 /*base*/ 16);
1523 G.need_abi_warning = 1;
1527 /* Non-terminal <identifier>.
1529 <identifier> ::= </unqualified source code identifier> */
1531 static void
1532 write_identifier (const char *identifier)
1534 MANGLE_TRACE ("identifier", identifier);
1535 write_string (identifier);
1538 /* Handle constructor productions of non-terminal <special-name>.
1539 CTOR is a constructor FUNCTION_DECL.
1541 <special-name> ::= C1 # complete object constructor
1542 ::= C2 # base object constructor
1543 ::= C3 # complete object allocating constructor
1545 Currently, allocating constructors are never used.
1547 We also need to provide mangled names for the maybe-in-charge
1548 constructor, so we treat it here too. mangle_decl_string will
1549 append *INTERNAL* to that, to make sure we never emit it. */
1551 static void
1552 write_special_name_constructor (const tree ctor)
1554 if (DECL_BASE_CONSTRUCTOR_P (ctor))
1555 write_string ("C2");
1556 else
1558 gcc_assert (DECL_COMPLETE_CONSTRUCTOR_P (ctor)
1559 /* Even though we don't ever emit a definition of
1560 the old-style destructor, we still have to
1561 consider entities (like static variables) nested
1562 inside it. */
1563 || DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (ctor));
1564 write_string ("C1");
1568 /* Handle destructor productions of non-terminal <special-name>.
1569 DTOR is a destructor FUNCTION_DECL.
1571 <special-name> ::= D0 # deleting (in-charge) destructor
1572 ::= D1 # complete object (in-charge) destructor
1573 ::= D2 # base object (not-in-charge) destructor
1575 We also need to provide mangled names for the maybe-incharge
1576 destructor, so we treat it here too. mangle_decl_string will
1577 append *INTERNAL* to that, to make sure we never emit it. */
1579 static void
1580 write_special_name_destructor (const tree dtor)
1582 if (DECL_DELETING_DESTRUCTOR_P (dtor))
1583 write_string ("D0");
1584 else if (DECL_BASE_DESTRUCTOR_P (dtor))
1585 write_string ("D2");
1586 else
1588 gcc_assert (DECL_COMPLETE_DESTRUCTOR_P (dtor)
1589 /* Even though we don't ever emit a definition of
1590 the old-style destructor, we still have to
1591 consider entities (like static variables) nested
1592 inside it. */
1593 || DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P (dtor));
1594 write_string ("D1");
1598 /* Scan the vector of local classes and return how many others with the
1599 same name (or same no name) and context precede ENTITY. */
1601 static int
1602 local_class_index (tree entity)
1604 int ix, discriminator = 0;
1605 tree name = (TYPE_ANONYMOUS_P (entity) ? NULL_TREE
1606 : TYPE_IDENTIFIER (entity));
1607 tree ctx = TYPE_CONTEXT (entity);
1608 for (ix = 0; ; ix++)
1610 tree type = VEC_index (tree, local_classes, ix);
1611 if (type == entity)
1612 return discriminator;
1613 if (TYPE_CONTEXT (type) == ctx
1614 && (name ? TYPE_IDENTIFIER (type) == name
1615 : TYPE_ANONYMOUS_P (type)))
1616 ++discriminator;
1618 gcc_unreachable ();
1621 /* Return the discriminator for ENTITY appearing inside
1622 FUNCTION. The discriminator is the lexical ordinal of VAR among
1623 entities with the same name in the same FUNCTION. */
1625 static int
1626 discriminator_for_local_entity (tree entity)
1628 if (DECL_DISCRIMINATOR_P (entity))
1630 if (DECL_DISCRIMINATOR_SET_P (entity))
1631 return DECL_DISCRIMINATOR (entity);
1632 else
1633 /* The first entity with a particular name doesn't get
1634 DECL_DISCRIMINATOR set up. */
1635 return 0;
1637 else if (TREE_CODE (entity) == TYPE_DECL)
1639 /* Scan the list of local classes. */
1640 entity = TREE_TYPE (entity);
1642 /* Lambdas and unnamed types have their own discriminators. */
1643 if (LAMBDA_TYPE_P (entity) || TYPE_ANONYMOUS_P (entity))
1644 return 0;
1646 return local_class_index (entity);
1648 else
1649 gcc_unreachable ();
1652 /* Return the discriminator for STRING, a string literal used inside
1653 FUNCTION. The discriminator is the lexical ordinal of STRING among
1654 string literals used in FUNCTION. */
1656 static int
1657 discriminator_for_string_literal (tree function ATTRIBUTE_UNUSED,
1658 tree string ATTRIBUTE_UNUSED)
1660 /* For now, we don't discriminate amongst string literals. */
1661 return 0;
1664 /* <discriminator> := _ <number>
1666 The discriminator is used only for the second and later occurrences
1667 of the same name within a single function. In this case <number> is
1668 n - 2, if this is the nth occurrence, in lexical order. */
1670 static void
1671 write_discriminator (const int discriminator)
1673 /* If discriminator is zero, don't write anything. Otherwise... */
1674 if (discriminator > 0)
1676 write_char ('_');
1677 write_unsigned_number (discriminator - 1);
1681 /* Mangle the name of a function-scope entity. FUNCTION is the
1682 FUNCTION_DECL for the enclosing function, or a PARM_DECL for lambdas in
1683 default argument scope. ENTITY is the decl for the entity itself.
1684 LOCAL_ENTITY is the entity that's directly scoped in FUNCTION_DECL,
1685 either ENTITY itself or an enclosing scope of ENTITY.
1687 <local-name> := Z <function encoding> E <entity name> [<discriminator>]
1688 := Z <function encoding> E s [<discriminator>]
1689 := Z <function encoding> Ed [ <parameter number> ] _ <entity name> */
1691 static void
1692 write_local_name (tree function, const tree local_entity,
1693 const tree entity)
1695 tree parm = NULL_TREE;
1697 MANGLE_TRACE_TREE ("local-name", entity);
1699 if (TREE_CODE (function) == PARM_DECL)
1701 parm = function;
1702 function = DECL_CONTEXT (parm);
1705 write_char ('Z');
1706 write_encoding (function);
1707 write_char ('E');
1709 /* For this purpose, parameters are numbered from right-to-left. */
1710 if (parm)
1712 tree t;
1713 int i = 0;
1714 for (t = DECL_ARGUMENTS (function); t; t = TREE_CHAIN (t))
1716 if (t == parm)
1717 i = 1;
1718 else if (i)
1719 ++i;
1721 write_char ('d');
1722 write_compact_number (i - 1);
1725 if (TREE_CODE (entity) == STRING_CST)
1727 write_char ('s');
1728 write_discriminator (discriminator_for_string_literal (function,
1729 entity));
1731 else
1733 /* Now the <entity name>. Let write_name know its being called
1734 from <local-name>, so it doesn't try to process the enclosing
1735 function scope again. */
1736 write_name (entity, /*ignore_local_scope=*/1);
1737 write_discriminator (discriminator_for_local_entity (local_entity));
1741 /* Non-terminals <type> and <CV-qualifier>.
1743 <type> ::= <builtin-type>
1744 ::= <function-type>
1745 ::= <class-enum-type>
1746 ::= <array-type>
1747 ::= <pointer-to-member-type>
1748 ::= <template-param>
1749 ::= <substitution>
1750 ::= <CV-qualifier>
1751 ::= P <type> # pointer-to
1752 ::= R <type> # reference-to
1753 ::= C <type> # complex pair (C 2000)
1754 ::= G <type> # imaginary (C 2000) [not supported]
1755 ::= U <source-name> <type> # vendor extended type qualifier
1757 C++0x extensions
1759 <type> ::= RR <type> # rvalue reference-to
1760 <type> ::= Dt <expression> # decltype of an id-expression or
1761 # class member access
1762 <type> ::= DT <expression> # decltype of an expression
1763 <type> ::= Dn # decltype of nullptr
1765 TYPE is a type node. */
1767 static void
1768 write_type (tree type)
1770 /* This gets set to nonzero if TYPE turns out to be a (possibly
1771 CV-qualified) builtin type. */
1772 int is_builtin_type = 0;
1774 MANGLE_TRACE_TREE ("type", type);
1776 if (type == error_mark_node)
1777 return;
1779 if (find_substitution (type))
1780 return;
1782 /* According to the C++ ABI, some library classes are passed the
1783 same as the scalar type of their single member and use the same
1784 mangling. */
1785 if (TREE_CODE (type) == RECORD_TYPE && TYPE_TRANSPARENT_AGGR (type))
1786 type = TREE_TYPE (first_field (type));
1788 if (write_CV_qualifiers_for_type (type) > 0)
1789 /* If TYPE was CV-qualified, we just wrote the qualifiers; now
1790 mangle the unqualified type. The recursive call is needed here
1791 since both the qualified and unqualified types are substitution
1792 candidates. */
1793 write_type (TYPE_MAIN_VARIANT (type));
1794 else if (TREE_CODE (type) == ARRAY_TYPE)
1795 /* It is important not to use the TYPE_MAIN_VARIANT of TYPE here
1796 so that the cv-qualification of the element type is available
1797 in write_array_type. */
1798 write_array_type (type);
1799 else
1801 tree type_orig = type;
1803 /* See through any typedefs. */
1804 type = TYPE_MAIN_VARIANT (type);
1806 if (TYPE_PTRMEM_P (type))
1807 write_pointer_to_member_type (type);
1808 else
1810 /* Handle any target-specific fundamental types. */
1811 const char *target_mangling
1812 = targetm.mangle_type (type_orig);
1814 if (target_mangling)
1816 write_string (target_mangling);
1817 /* Add substitutions for types other than fundamental
1818 types. */
1819 if (TREE_CODE (type) != VOID_TYPE
1820 && TREE_CODE (type) != INTEGER_TYPE
1821 && TREE_CODE (type) != REAL_TYPE
1822 && TREE_CODE (type) != BOOLEAN_TYPE)
1823 add_substitution (type);
1824 return;
1827 switch (TREE_CODE (type))
1829 case VOID_TYPE:
1830 case BOOLEAN_TYPE:
1831 case INTEGER_TYPE: /* Includes wchar_t. */
1832 case REAL_TYPE:
1833 case FIXED_POINT_TYPE:
1835 /* If this is a typedef, TYPE may not be one of
1836 the standard builtin type nodes, but an alias of one. Use
1837 TYPE_MAIN_VARIANT to get to the underlying builtin type. */
1838 write_builtin_type (TYPE_MAIN_VARIANT (type));
1839 ++is_builtin_type;
1841 break;
1843 case COMPLEX_TYPE:
1844 write_char ('C');
1845 write_type (TREE_TYPE (type));
1846 break;
1848 case FUNCTION_TYPE:
1849 case METHOD_TYPE:
1850 write_function_type (type);
1851 break;
1853 case UNION_TYPE:
1854 case RECORD_TYPE:
1855 case ENUMERAL_TYPE:
1856 /* A pointer-to-member function is represented as a special
1857 RECORD_TYPE, so check for this first. */
1858 if (TYPE_PTRMEMFUNC_P (type))
1859 write_pointer_to_member_type (type);
1860 else
1861 write_class_enum_type (type);
1862 break;
1864 case TYPENAME_TYPE:
1865 case UNBOUND_CLASS_TEMPLATE:
1866 /* We handle TYPENAME_TYPEs and UNBOUND_CLASS_TEMPLATEs like
1867 ordinary nested names. */
1868 write_nested_name (TYPE_STUB_DECL (type));
1869 break;
1871 case POINTER_TYPE:
1872 write_char ('P');
1873 write_type (TREE_TYPE (type));
1874 break;
1876 case REFERENCE_TYPE:
1877 if (TYPE_REF_IS_RVALUE (type))
1878 write_char('O');
1879 else
1880 write_char ('R');
1881 write_type (TREE_TYPE (type));
1882 break;
1884 case TEMPLATE_TYPE_PARM:
1885 case TEMPLATE_PARM_INDEX:
1886 write_template_param (type);
1887 break;
1889 case TEMPLATE_TEMPLATE_PARM:
1890 write_template_template_param (type);
1891 break;
1893 case BOUND_TEMPLATE_TEMPLATE_PARM:
1894 write_template_template_param (type);
1895 write_template_args
1896 (TI_ARGS (TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (type)));
1897 break;
1899 case VECTOR_TYPE:
1900 if (abi_version_at_least (4))
1902 write_string ("Dv");
1903 /* Non-constant vector size would be encoded with
1904 _ expression, but we don't support that yet. */
1905 write_unsigned_number (TYPE_VECTOR_SUBPARTS (type));
1906 write_char ('_');
1908 else
1910 G.need_abi_warning = 1;
1911 write_string ("U8__vector");
1913 write_type (TREE_TYPE (type));
1914 break;
1916 case TYPE_PACK_EXPANSION:
1917 write_string ("Dp");
1918 write_type (PACK_EXPANSION_PATTERN (type));
1919 break;
1921 case DECLTYPE_TYPE:
1922 /* These shouldn't make it into mangling. */
1923 gcc_assert (!DECLTYPE_FOR_LAMBDA_CAPTURE (type)
1924 && !DECLTYPE_FOR_LAMBDA_RETURN (type));
1926 write_char ('D');
1927 if (DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (type))
1928 write_char ('t');
1929 else
1930 write_char ('T');
1931 ++cp_unevaluated_operand;
1932 write_expression (DECLTYPE_TYPE_EXPR (type));
1933 --cp_unevaluated_operand;
1934 write_char ('E');
1935 break;
1937 case TYPEOF_TYPE:
1938 sorry ("mangling typeof, use decltype instead");
1939 break;
1941 case LANG_TYPE:
1942 if (NULLPTR_TYPE_P (type))
1944 write_string ("Dn");
1945 break;
1947 /* else fall through. */
1949 default:
1950 gcc_unreachable ();
1955 /* Types other than builtin types are substitution candidates. */
1956 if (!is_builtin_type)
1957 add_substitution (type);
1960 /* Non-terminal <CV-qualifiers> for type nodes. Returns the number of
1961 CV-qualifiers written for TYPE.
1963 <CV-qualifiers> ::= [r] [V] [K] */
1965 static int
1966 write_CV_qualifiers_for_type (const tree type)
1968 int num_qualifiers = 0;
1970 /* The order is specified by:
1972 "In cases where multiple order-insensitive qualifiers are
1973 present, they should be ordered 'K' (closest to the base type),
1974 'V', 'r', and 'U' (farthest from the base type) ..."
1976 Note that we do not use cp_type_quals below; given "const
1977 int[3]", the "const" is emitted with the "int", not with the
1978 array. */
1979 cp_cv_quals quals = TYPE_QUALS (type);
1981 if (quals & TYPE_QUAL_RESTRICT)
1983 write_char ('r');
1984 ++num_qualifiers;
1986 if (quals & TYPE_QUAL_VOLATILE)
1988 write_char ('V');
1989 ++num_qualifiers;
1991 if (quals & TYPE_QUAL_CONST)
1993 write_char ('K');
1994 ++num_qualifiers;
1997 return num_qualifiers;
2000 /* Non-terminal <builtin-type>.
2002 <builtin-type> ::= v # void
2003 ::= b # bool
2004 ::= w # wchar_t
2005 ::= c # char
2006 ::= a # signed char
2007 ::= h # unsigned char
2008 ::= s # short
2009 ::= t # unsigned short
2010 ::= i # int
2011 ::= j # unsigned int
2012 ::= l # long
2013 ::= m # unsigned long
2014 ::= x # long long, __int64
2015 ::= y # unsigned long long, __int64
2016 ::= n # __int128
2017 ::= o # unsigned __int128
2018 ::= f # float
2019 ::= d # double
2020 ::= e # long double, __float80
2021 ::= g # __float128 [not supported]
2022 ::= u <source-name> # vendor extended type */
2024 static void
2025 write_builtin_type (tree type)
2027 if (TYPE_CANONICAL (type))
2028 type = TYPE_CANONICAL (type);
2030 switch (TREE_CODE (type))
2032 case VOID_TYPE:
2033 write_char ('v');
2034 break;
2036 case BOOLEAN_TYPE:
2037 write_char ('b');
2038 break;
2040 case INTEGER_TYPE:
2041 /* TYPE may still be wchar_t, char16_t, or char32_t, since that
2042 isn't in integer_type_nodes. */
2043 if (type == wchar_type_node)
2044 write_char ('w');
2045 else if (type == char16_type_node)
2046 write_string ("Ds");
2047 else if (type == char32_type_node)
2048 write_string ("Di");
2049 else if (TYPE_FOR_JAVA (type))
2050 write_java_integer_type_codes (type);
2051 else
2053 size_t itk;
2054 /* Assume TYPE is one of the shared integer type nodes. Find
2055 it in the array of these nodes. */
2056 iagain:
2057 for (itk = 0; itk < itk_none; ++itk)
2058 if (integer_types[itk] != NULL_TREE
2059 && type == integer_types[itk])
2061 /* Print the corresponding single-letter code. */
2062 write_char (integer_type_codes[itk]);
2063 break;
2066 if (itk == itk_none)
2068 tree t = c_common_type_for_mode (TYPE_MODE (type),
2069 TYPE_UNSIGNED (type));
2070 if (type != t)
2072 type = t;
2073 goto iagain;
2076 if (TYPE_PRECISION (type) == 128)
2077 write_char (TYPE_UNSIGNED (type) ? 'o' : 'n');
2078 else
2080 /* Allow for cases where TYPE is not one of the shared
2081 integer type nodes and write a "vendor extended builtin
2082 type" with a name the form intN or uintN, respectively.
2083 Situations like this can happen if you have an
2084 __attribute__((__mode__(__SI__))) type and use exotic
2085 switches like '-mint8' on AVR. Of course, this is
2086 undefined by the C++ ABI (and '-mint8' is not even
2087 Standard C conforming), but when using such special
2088 options you're pretty much in nowhere land anyway. */
2089 const char *prefix;
2090 char prec[11]; /* up to ten digits for an unsigned */
2092 prefix = TYPE_UNSIGNED (type) ? "uint" : "int";
2093 sprintf (prec, "%u", (unsigned) TYPE_PRECISION (type));
2094 write_char ('u'); /* "vendor extended builtin type" */
2095 write_unsigned_number (strlen (prefix) + strlen (prec));
2096 write_string (prefix);
2097 write_string (prec);
2101 break;
2103 case REAL_TYPE:
2104 if (type == float_type_node
2105 || type == java_float_type_node)
2106 write_char ('f');
2107 else if (type == double_type_node
2108 || type == java_double_type_node)
2109 write_char ('d');
2110 else if (type == long_double_type_node)
2111 write_char ('e');
2112 else if (type == dfloat32_type_node)
2113 write_string ("Df");
2114 else if (type == dfloat64_type_node)
2115 write_string ("Dd");
2116 else if (type == dfloat128_type_node)
2117 write_string ("De");
2118 else
2119 gcc_unreachable ();
2120 break;
2122 case FIXED_POINT_TYPE:
2123 write_string ("DF");
2124 if (GET_MODE_IBIT (TYPE_MODE (type)) > 0)
2125 write_unsigned_number (GET_MODE_IBIT (TYPE_MODE (type)));
2126 if (type == fract_type_node
2127 || type == sat_fract_type_node
2128 || type == accum_type_node
2129 || type == sat_accum_type_node)
2130 write_char ('i');
2131 else if (type == unsigned_fract_type_node
2132 || type == sat_unsigned_fract_type_node
2133 || type == unsigned_accum_type_node
2134 || type == sat_unsigned_accum_type_node)
2135 write_char ('j');
2136 else if (type == short_fract_type_node
2137 || type == sat_short_fract_type_node
2138 || type == short_accum_type_node
2139 || type == sat_short_accum_type_node)
2140 write_char ('s');
2141 else if (type == unsigned_short_fract_type_node
2142 || type == sat_unsigned_short_fract_type_node
2143 || type == unsigned_short_accum_type_node
2144 || type == sat_unsigned_short_accum_type_node)
2145 write_char ('t');
2146 else if (type == long_fract_type_node
2147 || type == sat_long_fract_type_node
2148 || type == long_accum_type_node
2149 || type == sat_long_accum_type_node)
2150 write_char ('l');
2151 else if (type == unsigned_long_fract_type_node
2152 || type == sat_unsigned_long_fract_type_node
2153 || type == unsigned_long_accum_type_node
2154 || type == sat_unsigned_long_accum_type_node)
2155 write_char ('m');
2156 else if (type == long_long_fract_type_node
2157 || type == sat_long_long_fract_type_node
2158 || type == long_long_accum_type_node
2159 || type == sat_long_long_accum_type_node)
2160 write_char ('x');
2161 else if (type == unsigned_long_long_fract_type_node
2162 || type == sat_unsigned_long_long_fract_type_node
2163 || type == unsigned_long_long_accum_type_node
2164 || type == sat_unsigned_long_long_accum_type_node)
2165 write_char ('y');
2166 else
2167 sorry ("mangling unknown fixed point type");
2168 write_unsigned_number (GET_MODE_FBIT (TYPE_MODE (type)));
2169 if (TYPE_SATURATING (type))
2170 write_char ('s');
2171 else
2172 write_char ('n');
2173 break;
2175 default:
2176 gcc_unreachable ();
2180 /* Non-terminal <function-type>. NODE is a FUNCTION_TYPE or
2181 METHOD_TYPE. The return type is mangled before the parameter
2182 types.
2184 <function-type> ::= F [Y] <bare-function-type> E */
2186 static void
2187 write_function_type (const tree type)
2189 MANGLE_TRACE_TREE ("function-type", type);
2191 /* For a pointer to member function, the function type may have
2192 cv-qualifiers, indicating the quals for the artificial 'this'
2193 parameter. */
2194 if (TREE_CODE (type) == METHOD_TYPE)
2196 /* The first parameter must be a POINTER_TYPE pointing to the
2197 `this' parameter. */
2198 tree this_type = TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (type)));
2199 write_CV_qualifiers_for_type (this_type);
2202 write_char ('F');
2203 /* We don't track whether or not a type is `extern "C"'. Note that
2204 you can have an `extern "C"' function that does not have
2205 `extern "C"' type, and vice versa:
2207 extern "C" typedef void function_t();
2208 function_t f; // f has C++ linkage, but its type is
2209 // `extern "C"'
2211 typedef void function_t();
2212 extern "C" function_t f; // Vice versa.
2214 See [dcl.link]. */
2215 write_bare_function_type (type, /*include_return_type_p=*/1,
2216 /*decl=*/NULL);
2217 write_char ('E');
2220 /* Non-terminal <bare-function-type>. TYPE is a FUNCTION_TYPE or
2221 METHOD_TYPE. If INCLUDE_RETURN_TYPE is nonzero, the return value
2222 is mangled before the parameter types. If non-NULL, DECL is
2223 FUNCTION_DECL for the function whose type is being emitted.
2225 If DECL is a member of a Java type, then a literal 'J'
2226 is output and the return type is mangled as if INCLUDE_RETURN_TYPE
2227 were nonzero.
2229 <bare-function-type> ::= [J]</signature/ type>+ */
2231 static void
2232 write_bare_function_type (const tree type, const int include_return_type_p,
2233 const tree decl)
2235 int java_method_p;
2237 MANGLE_TRACE_TREE ("bare-function-type", type);
2239 /* Detect Java methods and emit special encoding. */
2240 if (decl != NULL
2241 && DECL_FUNCTION_MEMBER_P (decl)
2242 && TYPE_FOR_JAVA (DECL_CONTEXT (decl))
2243 && !DECL_CONSTRUCTOR_P (decl)
2244 && !DECL_DESTRUCTOR_P (decl)
2245 && !DECL_CONV_FN_P (decl))
2247 java_method_p = 1;
2248 write_char ('J');
2250 else
2252 java_method_p = 0;
2255 /* Mangle the return type, if requested. */
2256 if (include_return_type_p || java_method_p)
2257 write_type (TREE_TYPE (type));
2259 /* Now mangle the types of the arguments. */
2260 write_method_parms (TYPE_ARG_TYPES (type),
2261 TREE_CODE (type) == METHOD_TYPE,
2262 decl);
2265 /* Write the mangled representation of a method parameter list of
2266 types given in PARM_TYPES. If METHOD_P is nonzero, the function is
2267 considered a non-static method, and the this parameter is omitted.
2268 If non-NULL, DECL is the FUNCTION_DECL for the function whose
2269 parameters are being emitted. */
2271 static void
2272 write_method_parms (tree parm_types, const int method_p, const tree decl)
2274 tree first_parm_type;
2275 tree parm_decl = decl ? DECL_ARGUMENTS (decl) : NULL_TREE;
2277 /* Assume this parameter type list is variable-length. If it ends
2278 with a void type, then it's not. */
2279 int varargs_p = 1;
2281 /* If this is a member function, skip the first arg, which is the
2282 this pointer.
2283 "Member functions do not encode the type of their implicit this
2284 parameter."
2286 Similarly, there's no need to mangle artificial parameters, like
2287 the VTT parameters for constructors and destructors. */
2288 if (method_p)
2290 parm_types = TREE_CHAIN (parm_types);
2291 parm_decl = parm_decl ? TREE_CHAIN (parm_decl) : NULL_TREE;
2293 while (parm_decl && DECL_ARTIFICIAL (parm_decl))
2295 parm_types = TREE_CHAIN (parm_types);
2296 parm_decl = TREE_CHAIN (parm_decl);
2300 for (first_parm_type = parm_types;
2301 parm_types;
2302 parm_types = TREE_CHAIN (parm_types))
2304 tree parm = TREE_VALUE (parm_types);
2305 if (parm == void_type_node)
2307 /* "Empty parameter lists, whether declared as () or
2308 conventionally as (void), are encoded with a void parameter
2309 (v)." */
2310 if (parm_types == first_parm_type)
2311 write_type (parm);
2312 /* If the parm list is terminated with a void type, it's
2313 fixed-length. */
2314 varargs_p = 0;
2315 /* A void type better be the last one. */
2316 gcc_assert (TREE_CHAIN (parm_types) == NULL);
2318 else
2319 write_type (parm);
2322 if (varargs_p)
2323 /* <builtin-type> ::= z # ellipsis */
2324 write_char ('z');
2327 /* <class-enum-type> ::= <name> */
2329 static void
2330 write_class_enum_type (const tree type)
2332 write_name (TYPE_NAME (type), /*ignore_local_scope=*/0);
2335 /* Non-terminal <template-args>. ARGS is a TREE_VEC of template
2336 arguments.
2338 <template-args> ::= I <template-arg>* E */
2340 static void
2341 write_template_args (tree args)
2343 int i;
2344 int length = 0;
2346 MANGLE_TRACE_TREE ("template-args", args);
2348 write_char ('I');
2350 if (args)
2351 length = TREE_VEC_LENGTH (args);
2353 if (args && TREE_CODE (TREE_VEC_ELT (args, 0)) == TREE_VEC)
2355 /* We have nested template args. We want the innermost template
2356 argument list. */
2357 args = TREE_VEC_ELT (args, length - 1);
2358 length = TREE_VEC_LENGTH (args);
2360 for (i = 0; i < length; ++i)
2361 write_template_arg (TREE_VEC_ELT (args, i));
2363 write_char ('E');
2366 /* Write out the
2367 <unqualified-name>
2368 <unqualified-name> <template-args>
2369 part of SCOPE_REF or COMPONENT_REF mangling. */
2371 static void
2372 write_member_name (tree member)
2374 if (TREE_CODE (member) == IDENTIFIER_NODE)
2375 write_unqualified_id (member);
2376 else if (DECL_P (member))
2377 write_unqualified_name (member);
2378 else if (TREE_CODE (member) == TEMPLATE_ID_EXPR)
2380 tree name = TREE_OPERAND (member, 0);
2381 if (TREE_CODE (name) == OVERLOAD)
2382 name = OVL_FUNCTION (name);
2383 write_member_name (name);
2384 write_template_args (TREE_OPERAND (member, 1));
2386 else
2387 write_expression (member);
2390 /* <expression> ::= <unary operator-name> <expression>
2391 ::= <binary operator-name> <expression> <expression>
2392 ::= <expr-primary>
2394 <expr-primary> ::= <template-param>
2395 ::= L <type> <value number> E # literal
2396 ::= L <mangled-name> E # external name
2397 ::= st <type> # sizeof
2398 ::= sr <type> <unqualified-name> # dependent name
2399 ::= sr <type> <unqualified-name> <template-args> */
2401 static void
2402 write_expression (tree expr)
2404 enum tree_code code = TREE_CODE (expr);
2406 /* Skip NOP_EXPRs. They can occur when (say) a pointer argument
2407 is converted (via qualification conversions) to another
2408 type. */
2409 while (TREE_CODE (expr) == NOP_EXPR
2410 || TREE_CODE (expr) == NON_LVALUE_EXPR)
2412 expr = TREE_OPERAND (expr, 0);
2413 code = TREE_CODE (expr);
2416 if (code == BASELINK)
2418 expr = BASELINK_FUNCTIONS (expr);
2419 code = TREE_CODE (expr);
2422 /* Handle pointers-to-members by making them look like expression
2423 nodes. */
2424 if (code == PTRMEM_CST)
2426 expr = build_nt (ADDR_EXPR,
2427 build_qualified_name (/*type=*/NULL_TREE,
2428 PTRMEM_CST_CLASS (expr),
2429 PTRMEM_CST_MEMBER (expr),
2430 /*template_p=*/false));
2431 code = TREE_CODE (expr);
2434 /* Handle template parameters. */
2435 if (code == TEMPLATE_TYPE_PARM
2436 || code == TEMPLATE_TEMPLATE_PARM
2437 || code == BOUND_TEMPLATE_TEMPLATE_PARM
2438 || code == TEMPLATE_PARM_INDEX)
2439 write_template_param (expr);
2440 /* Handle literals. */
2441 else if (TREE_CODE_CLASS (code) == tcc_constant
2442 || (abi_version_at_least (2) && code == CONST_DECL))
2443 write_template_arg_literal (expr);
2444 else if (code == PARM_DECL)
2446 /* A function parameter used in a late-specified return type. */
2447 int index = DECL_PARM_INDEX (expr);
2448 gcc_assert (index >= 1);
2449 write_string ("fp");
2450 write_compact_number (index - 1);
2452 else if (DECL_P (expr))
2454 /* G++ 3.2 incorrectly mangled non-type template arguments of
2455 enumeration type using their names. */
2456 if (code == CONST_DECL)
2457 G.need_abi_warning = 1;
2458 write_char ('L');
2459 write_mangled_name (expr, false);
2460 write_char ('E');
2462 else if (TREE_CODE (expr) == SIZEOF_EXPR
2463 && TYPE_P (TREE_OPERAND (expr, 0)))
2465 write_string ("st");
2466 write_type (TREE_OPERAND (expr, 0));
2468 else if (TREE_CODE (expr) == ALIGNOF_EXPR
2469 && TYPE_P (TREE_OPERAND (expr, 0)))
2471 write_string ("at");
2472 write_type (TREE_OPERAND (expr, 0));
2474 else if (TREE_CODE (expr) == SCOPE_REF)
2476 tree scope = TREE_OPERAND (expr, 0);
2477 tree member = TREE_OPERAND (expr, 1);
2479 if (!abi_version_at_least (2))
2481 write_string ("sr");
2482 write_type (scope);
2483 /* G++ 3.2 incorrectly put out both the "sr" code and
2484 the nested name of the qualified name. */
2485 G.need_abi_warning = 1;
2486 write_encoding (member);
2489 /* If the MEMBER is a real declaration, then the qualifying
2490 scope was not dependent. Ideally, we would not have a
2491 SCOPE_REF in those cases, but sometimes we do. If the second
2492 argument is a DECL, then the name must not have been
2493 dependent. */
2494 else if (DECL_P (member))
2495 write_expression (member);
2496 else
2498 write_string ("sr");
2499 write_type (scope);
2500 write_member_name (member);
2503 else if (TREE_CODE (expr) == INDIRECT_REF
2504 && TREE_TYPE (TREE_OPERAND (expr, 0))
2505 && TREE_CODE (TREE_TYPE (TREE_OPERAND (expr, 0))) == REFERENCE_TYPE)
2507 write_expression (TREE_OPERAND (expr, 0));
2509 else if (TREE_CODE (expr) == IDENTIFIER_NODE)
2511 /* An operator name appearing as a dependent name needs to be
2512 specially marked to disambiguate between a use of the operator
2513 name and a use of the operator in an expression. */
2514 if (IDENTIFIER_OPNAME_P (expr))
2515 write_string ("on");
2516 write_unqualified_id (expr);
2518 else if (TREE_CODE (expr) == TEMPLATE_ID_EXPR)
2520 tree fn = TREE_OPERAND (expr, 0);
2521 if (is_overloaded_fn (fn))
2522 fn = DECL_NAME (get_first_fn (fn));
2523 if (IDENTIFIER_OPNAME_P (fn))
2524 write_string ("on");
2525 write_unqualified_id (fn);
2526 write_template_args (TREE_OPERAND (expr, 1));
2528 else
2530 int i, len;
2531 const char *name;
2533 /* When we bind a variable or function to a non-type template
2534 argument with reference type, we create an ADDR_EXPR to show
2535 the fact that the entity's address has been taken. But, we
2536 don't actually want to output a mangling code for the `&'. */
2537 if (TREE_CODE (expr) == ADDR_EXPR
2538 && TREE_TYPE (expr)
2539 && TREE_CODE (TREE_TYPE (expr)) == REFERENCE_TYPE)
2541 expr = TREE_OPERAND (expr, 0);
2542 if (DECL_P (expr))
2544 write_expression (expr);
2545 return;
2548 code = TREE_CODE (expr);
2551 if (code == COMPONENT_REF)
2553 tree ob = TREE_OPERAND (expr, 0);
2555 if (TREE_CODE (ob) == ARROW_EXPR)
2557 write_string (operator_name_info[(int)code].mangled_name);
2558 ob = TREE_OPERAND (ob, 0);
2560 else
2561 write_string ("dt");
2563 write_expression (ob);
2564 write_member_name (TREE_OPERAND (expr, 1));
2565 return;
2568 /* If it wasn't any of those, recursively expand the expression. */
2569 name = operator_name_info[(int) code].mangled_name;
2570 if (name == NULL)
2572 sorry ("mangling %C", code);
2573 return;
2575 else
2576 write_string (name);
2578 switch (code)
2580 case CALL_EXPR:
2582 tree fn = CALL_EXPR_FN (expr);
2584 if (TREE_CODE (fn) == ADDR_EXPR)
2585 fn = TREE_OPERAND (fn, 0);
2587 /* Mangle a dependent name as the name, not whatever happens to
2588 be the first function in the overload set. */
2589 if ((TREE_CODE (fn) == FUNCTION_DECL
2590 || TREE_CODE (fn) == OVERLOAD)
2591 && type_dependent_expression_p_push (expr))
2592 fn = DECL_NAME (get_first_fn (fn));
2594 write_expression (fn);
2597 for (i = 0; i < call_expr_nargs (expr); ++i)
2598 write_expression (CALL_EXPR_ARG (expr, i));
2599 write_char ('E');
2600 break;
2602 case CAST_EXPR:
2603 write_type (TREE_TYPE (expr));
2604 if (list_length (TREE_OPERAND (expr, 0)) == 1)
2605 write_expression (TREE_VALUE (TREE_OPERAND (expr, 0)));
2606 else
2608 tree args = TREE_OPERAND (expr, 0);
2609 write_char ('_');
2610 for (; args; args = TREE_CHAIN (args))
2611 write_expression (TREE_VALUE (args));
2612 write_char ('E');
2614 break;
2616 /* FIXME these should have a distinct mangling. */
2617 case STATIC_CAST_EXPR:
2618 case CONST_CAST_EXPR:
2619 write_type (TREE_TYPE (expr));
2620 write_expression (TREE_OPERAND (expr, 0));
2621 break;
2623 case NEW_EXPR:
2624 sorry ("mangling new-expression");
2625 break;
2627 default:
2628 /* In the middle-end, some expressions have more operands than
2629 they do in templates (and mangling). */
2630 switch (code)
2632 case PREINCREMENT_EXPR:
2633 case PREDECREMENT_EXPR:
2634 case POSTINCREMENT_EXPR:
2635 case POSTDECREMENT_EXPR:
2636 len = 1;
2637 break;
2639 case ARRAY_REF:
2640 len = 2;
2641 break;
2643 default:
2644 len = TREE_OPERAND_LENGTH (expr);
2645 break;
2648 for (i = 0; i < len; ++i)
2650 tree operand = TREE_OPERAND (expr, i);
2651 /* As a GNU extension, the middle operand of a
2652 conditional may be omitted. Since expression
2653 manglings are supposed to represent the input token
2654 stream, there's no good way to mangle such an
2655 expression without extending the C++ ABI. */
2656 if (code == COND_EXPR && i == 1 && !operand)
2658 error ("omitted middle operand to %<?:%> operand "
2659 "cannot be mangled");
2660 continue;
2662 write_expression (operand);
2668 /* Literal subcase of non-terminal <template-arg>.
2670 "Literal arguments, e.g. "A<42L>", are encoded with their type
2671 and value. Negative integer values are preceded with "n"; for
2672 example, "A<-42L>" becomes "1AILln42EE". The bool value false is
2673 encoded as 0, true as 1." */
2675 static void
2676 write_template_arg_literal (const tree value)
2678 write_char ('L');
2679 write_type (TREE_TYPE (value));
2681 switch (TREE_CODE (value))
2683 case CONST_DECL:
2684 write_integer_cst (DECL_INITIAL (value));
2685 break;
2687 case INTEGER_CST:
2688 gcc_assert (!same_type_p (TREE_TYPE (value), boolean_type_node)
2689 || integer_zerop (value) || integer_onep (value));
2690 write_integer_cst (value);
2691 break;
2693 case REAL_CST:
2694 write_real_cst (value);
2695 break;
2697 default:
2698 gcc_unreachable ();
2701 write_char ('E');
2704 /* Non-terminal <template-arg>.
2706 <template-arg> ::= <type> # type
2707 ::= L <type> </value/ number> E # literal
2708 ::= LZ <name> E # external name
2709 ::= X <expression> E # expression */
2711 static void
2712 write_template_arg (tree node)
2714 enum tree_code code = TREE_CODE (node);
2716 MANGLE_TRACE_TREE ("template-arg", node);
2718 /* A template template parameter's argument list contains TREE_LIST
2719 nodes of which the value field is the actual argument. */
2720 if (code == TREE_LIST)
2722 node = TREE_VALUE (node);
2723 /* If it's a decl, deal with its type instead. */
2724 if (DECL_P (node))
2726 node = TREE_TYPE (node);
2727 code = TREE_CODE (node);
2731 if (TREE_CODE (node) == NOP_EXPR
2732 && TREE_CODE (TREE_TYPE (node)) == REFERENCE_TYPE)
2734 /* Template parameters can be of reference type. To maintain
2735 internal consistency, such arguments use a conversion from
2736 address of object to reference type. */
2737 gcc_assert (TREE_CODE (TREE_OPERAND (node, 0)) == ADDR_EXPR);
2738 if (abi_version_at_least (2))
2739 node = TREE_OPERAND (TREE_OPERAND (node, 0), 0);
2740 else
2741 G.need_abi_warning = 1;
2744 if (ARGUMENT_PACK_P (node))
2746 /* Expand the template argument pack. */
2747 tree args = ARGUMENT_PACK_ARGS (node);
2748 int i, length = TREE_VEC_LENGTH (args);
2749 write_char ('I');
2750 for (i = 0; i < length; ++i)
2751 write_template_arg (TREE_VEC_ELT (args, i));
2752 write_char ('E');
2754 else if (TYPE_P (node))
2755 write_type (node);
2756 else if (code == TEMPLATE_DECL)
2757 /* A template appearing as a template arg is a template template arg. */
2758 write_template_template_arg (node);
2759 else if ((TREE_CODE_CLASS (code) == tcc_constant && code != PTRMEM_CST)
2760 || (abi_version_at_least (2) && code == CONST_DECL))
2761 write_template_arg_literal (node);
2762 else if (DECL_P (node))
2764 /* Until ABI version 2, non-type template arguments of
2765 enumeration type were mangled using their names. */
2766 if (code == CONST_DECL && !abi_version_at_least (2))
2767 G.need_abi_warning = 1;
2768 write_char ('L');
2769 /* Until ABI version 3, the underscore before the mangled name
2770 was incorrectly omitted. */
2771 if (!abi_version_at_least (3))
2773 G.need_abi_warning = 1;
2774 write_char ('Z');
2776 else
2777 write_string ("_Z");
2778 write_encoding (node);
2779 write_char ('E');
2781 else
2783 /* Template arguments may be expressions. */
2784 write_char ('X');
2785 write_expression (node);
2786 write_char ('E');
2790 /* <template-template-arg>
2791 ::= <name>
2792 ::= <substitution> */
2794 static void
2795 write_template_template_arg (const tree decl)
2797 MANGLE_TRACE_TREE ("template-template-arg", decl);
2799 if (find_substitution (decl))
2800 return;
2801 write_name (decl, /*ignore_local_scope=*/0);
2802 add_substitution (decl);
2806 /* Non-terminal <array-type>. TYPE is an ARRAY_TYPE.
2808 <array-type> ::= A [</dimension/ number>] _ </element/ type>
2809 ::= A <expression> _ </element/ type>
2811 "Array types encode the dimension (number of elements) and the
2812 element type. For variable length arrays, the dimension (but not
2813 the '_' separator) is omitted." */
2815 static void
2816 write_array_type (const tree type)
2818 write_char ('A');
2819 if (TYPE_DOMAIN (type))
2821 tree index_type;
2822 tree max;
2824 index_type = TYPE_DOMAIN (type);
2825 /* The INDEX_TYPE gives the upper and lower bounds of the
2826 array. */
2827 max = TYPE_MAX_VALUE (index_type);
2828 if (TREE_CODE (max) == INTEGER_CST)
2830 /* The ABI specifies that we should mangle the number of
2831 elements in the array, not the largest allowed index. */
2832 max = size_binop (PLUS_EXPR, max, size_one_node);
2833 write_unsigned_number (tree_low_cst (max, 1));
2835 else
2837 max = TREE_OPERAND (max, 0);
2838 if (!abi_version_at_least (2))
2840 /* value_dependent_expression_p presumes nothing is
2841 dependent when PROCESSING_TEMPLATE_DECL is zero. */
2842 ++processing_template_decl;
2843 if (!value_dependent_expression_p (max))
2844 G.need_abi_warning = 1;
2845 --processing_template_decl;
2847 write_expression (max);
2851 write_char ('_');
2852 write_type (TREE_TYPE (type));
2855 /* Non-terminal <pointer-to-member-type> for pointer-to-member
2856 variables. TYPE is a pointer-to-member POINTER_TYPE.
2858 <pointer-to-member-type> ::= M </class/ type> </member/ type> */
2860 static void
2861 write_pointer_to_member_type (const tree type)
2863 write_char ('M');
2864 write_type (TYPE_PTRMEM_CLASS_TYPE (type));
2865 write_type (TYPE_PTRMEM_POINTED_TO_TYPE (type));
2868 /* Non-terminal <template-param>. PARM is a TEMPLATE_TYPE_PARM,
2869 TEMPLATE_TEMPLATE_PARM, BOUND_TEMPLATE_TEMPLATE_PARM or a
2870 TEMPLATE_PARM_INDEX.
2872 <template-param> ::= T </parameter/ number> _ */
2874 static void
2875 write_template_param (const tree parm)
2877 int parm_index;
2879 MANGLE_TRACE_TREE ("template-parm", parm);
2881 switch (TREE_CODE (parm))
2883 case TEMPLATE_TYPE_PARM:
2884 case TEMPLATE_TEMPLATE_PARM:
2885 case BOUND_TEMPLATE_TEMPLATE_PARM:
2886 parm_index = TEMPLATE_TYPE_IDX (parm);
2887 break;
2889 case TEMPLATE_PARM_INDEX:
2890 parm_index = TEMPLATE_PARM_IDX (parm);
2891 break;
2893 default:
2894 gcc_unreachable ();
2897 write_char ('T');
2898 /* NUMBER as it appears in the mangling is (-1)-indexed, with the
2899 earliest template param denoted by `_'. */
2900 write_compact_number (parm_index);
2903 /* <template-template-param>
2904 ::= <template-param>
2905 ::= <substitution> */
2907 static void
2908 write_template_template_param (const tree parm)
2910 tree templ = NULL_TREE;
2912 /* PARM, a TEMPLATE_TEMPLATE_PARM, is an instantiation of the
2913 template template parameter. The substitution candidate here is
2914 only the template. */
2915 if (TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
2917 templ
2918 = TI_TEMPLATE (TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (parm));
2919 if (find_substitution (templ))
2920 return;
2923 /* <template-param> encodes only the template parameter position,
2924 not its template arguments, which is fine here. */
2925 write_template_param (parm);
2926 if (templ)
2927 add_substitution (templ);
2930 /* Non-terminal <substitution>.
2932 <substitution> ::= S <seq-id> _
2933 ::= S_ */
2935 static void
2936 write_substitution (const int seq_id)
2938 MANGLE_TRACE ("substitution", "");
2940 write_char ('S');
2941 if (seq_id > 0)
2942 write_number (seq_id - 1, /*unsigned=*/1, 36);
2943 write_char ('_');
2946 /* Start mangling ENTITY. */
2948 static inline void
2949 start_mangling (const tree entity)
2951 G.entity = entity;
2952 G.need_abi_warning = false;
2953 obstack_free (&name_obstack, name_base);
2954 mangle_obstack = &name_obstack;
2955 name_base = obstack_alloc (&name_obstack, 0);
2958 /* Done with mangling. If WARN is true, and the name of G.entity will
2959 be mangled differently in a future version of the ABI, issue a
2960 warning. */
2962 static void
2963 finish_mangling_internal (const bool warn)
2965 if (warn_abi && warn && G.need_abi_warning)
2966 warning (OPT_Wabi, "the mangled name of %qD will change in a future "
2967 "version of GCC",
2968 G.entity);
2970 /* Clear all the substitutions. */
2971 VEC_truncate (tree, G.substitutions, 0);
2973 /* Null-terminate the string. */
2974 write_char ('\0');
2978 /* Like finish_mangling_internal, but return the mangled string. */
2980 static inline const char *
2981 finish_mangling (const bool warn)
2983 finish_mangling_internal (warn);
2984 return (const char *) obstack_finish (mangle_obstack);
2987 /* Like finish_mangling_internal, but return an identifier. */
2989 static tree
2990 finish_mangling_get_identifier (const bool warn)
2992 finish_mangling_internal (warn);
2993 /* Don't obstack_finish here, and the next start_mangling will
2994 remove the identifier. */
2995 return get_identifier ((const char *) obstack_base (mangle_obstack));
2998 /* Initialize data structures for mangling. */
3000 void
3001 init_mangle (void)
3003 gcc_obstack_init (&name_obstack);
3004 name_base = obstack_alloc (&name_obstack, 0);
3005 G.substitutions = NULL;
3007 /* Cache these identifiers for quick comparison when checking for
3008 standard substitutions. */
3009 subst_identifiers[SUBID_ALLOCATOR] = get_identifier ("allocator");
3010 subst_identifiers[SUBID_BASIC_STRING] = get_identifier ("basic_string");
3011 subst_identifiers[SUBID_CHAR_TRAITS] = get_identifier ("char_traits");
3012 subst_identifiers[SUBID_BASIC_ISTREAM] = get_identifier ("basic_istream");
3013 subst_identifiers[SUBID_BASIC_OSTREAM] = get_identifier ("basic_ostream");
3014 subst_identifiers[SUBID_BASIC_IOSTREAM] = get_identifier ("basic_iostream");
3017 /* Generate the mangled name of DECL. */
3019 static tree
3020 mangle_decl_string (const tree decl)
3022 tree result;
3023 location_t saved_loc = input_location;
3024 tree saved_fn = NULL_TREE;
3025 bool template_p = false;
3027 if (DECL_LANG_SPECIFIC (decl) && DECL_USE_TEMPLATE (decl))
3029 struct tinst_level *tl = current_instantiation ();
3030 if (!tl || tl->decl != decl)
3032 template_p = true;
3033 saved_fn = current_function_decl;
3034 push_tinst_level (decl);
3035 current_function_decl = NULL_TREE;
3038 input_location = DECL_SOURCE_LOCATION (decl);
3040 start_mangling (decl);
3042 if (TREE_CODE (decl) == TYPE_DECL)
3043 write_type (TREE_TYPE (decl));
3044 else
3045 write_mangled_name (decl, true);
3047 result = finish_mangling_get_identifier (/*warn=*/true);
3048 if (DEBUG_MANGLE)
3049 fprintf (stderr, "mangle_decl_string = '%s'\n\n",
3050 IDENTIFIER_POINTER (result));
3052 if (template_p)
3054 pop_tinst_level ();
3055 current_function_decl = saved_fn;
3057 input_location = saved_loc;
3059 return result;
3062 /* Create an identifier for the external mangled name of DECL. */
3064 void
3065 mangle_decl (const tree decl)
3067 tree id = mangle_decl_string (decl);
3068 id = targetm.mangle_decl_assembler_name (decl, id);
3069 SET_DECL_ASSEMBLER_NAME (decl, id);
3071 if (G.need_abi_warning)
3073 #ifdef ASM_OUTPUT_DEF
3074 /* If the mangling will change in the future, emit an alias with the
3075 future mangled name for forward-compatibility. */
3076 int save_ver;
3077 tree id2, alias;
3078 #endif
3080 SET_IDENTIFIER_GLOBAL_VALUE (id, decl);
3081 if (IDENTIFIER_GLOBAL_VALUE (id) != decl)
3082 inform (DECL_SOURCE_LOCATION (decl), "-fabi-version=4 (or =0) "
3083 "avoids this error with a change in vector mangling");
3085 #ifdef ASM_OUTPUT_DEF
3086 save_ver = flag_abi_version;
3087 flag_abi_version = 0;
3088 id2 = mangle_decl_string (decl);
3089 id2 = targetm.mangle_decl_assembler_name (decl, id2);
3090 flag_abi_version = save_ver;
3092 alias = make_alias_for (decl, id2);
3093 DECL_IGNORED_P (alias) = 1;
3094 TREE_PUBLIC (alias) = TREE_PUBLIC (decl);
3095 DECL_VISIBILITY (alias) = DECL_VISIBILITY (decl);
3096 if (vague_linkage_p (decl))
3097 DECL_WEAK (alias) = 1;
3098 if (TREE_CODE (decl) == FUNCTION_DECL)
3099 cgraph_same_body_alias (alias, decl);
3100 else
3101 varpool_extra_name_alias (alias, decl);
3102 #endif
3106 /* Generate the mangled representation of TYPE. */
3108 const char *
3109 mangle_type_string (const tree type)
3111 const char *result;
3113 start_mangling (type);
3114 write_type (type);
3115 result = finish_mangling (/*warn=*/false);
3116 if (DEBUG_MANGLE)
3117 fprintf (stderr, "mangle_type_string = '%s'\n\n", result);
3118 return result;
3121 /* Create an identifier for the mangled name of a special component
3122 for belonging to TYPE. CODE is the ABI-specified code for this
3123 component. */
3125 static tree
3126 mangle_special_for_type (const tree type, const char *code)
3128 tree result;
3130 /* We don't have an actual decl here for the special component, so
3131 we can't just process the <encoded-name>. Instead, fake it. */
3132 start_mangling (type);
3134 /* Start the mangling. */
3135 write_string ("_Z");
3136 write_string (code);
3138 /* Add the type. */
3139 write_type (type);
3140 result = finish_mangling_get_identifier (/*warn=*/false);
3142 if (DEBUG_MANGLE)
3143 fprintf (stderr, "mangle_special_for_type = %s\n\n",
3144 IDENTIFIER_POINTER (result));
3146 return result;
3149 /* Create an identifier for the mangled representation of the typeinfo
3150 structure for TYPE. */
3152 tree
3153 mangle_typeinfo_for_type (const tree type)
3155 return mangle_special_for_type (type, "TI");
3158 /* Create an identifier for the mangled name of the NTBS containing
3159 the mangled name of TYPE. */
3161 tree
3162 mangle_typeinfo_string_for_type (const tree type)
3164 return mangle_special_for_type (type, "TS");
3167 /* Create an identifier for the mangled name of the vtable for TYPE. */
3169 tree
3170 mangle_vtbl_for_type (const tree type)
3172 return mangle_special_for_type (type, "TV");
3175 /* Returns an identifier for the mangled name of the VTT for TYPE. */
3177 tree
3178 mangle_vtt_for_type (const tree type)
3180 return mangle_special_for_type (type, "TT");
3183 /* Return an identifier for a construction vtable group. TYPE is
3184 the most derived class in the hierarchy; BINFO is the base
3185 subobject for which this construction vtable group will be used.
3187 This mangling isn't part of the ABI specification; in the ABI
3188 specification, the vtable group is dumped in the same COMDAT as the
3189 main vtable, and is referenced only from that vtable, so it doesn't
3190 need an external name. For binary formats without COMDAT sections,
3191 though, we need external names for the vtable groups.
3193 We use the production
3195 <special-name> ::= CT <type> <offset number> _ <base type> */
3197 tree
3198 mangle_ctor_vtbl_for_type (const tree type, const tree binfo)
3200 tree result;
3202 start_mangling (type);
3204 write_string ("_Z");
3205 write_string ("TC");
3206 write_type (type);
3207 write_integer_cst (BINFO_OFFSET (binfo));
3208 write_char ('_');
3209 write_type (BINFO_TYPE (binfo));
3211 result = finish_mangling_get_identifier (/*warn=*/false);
3212 if (DEBUG_MANGLE)
3213 fprintf (stderr, "mangle_ctor_vtbl_for_type = %s\n\n",
3214 IDENTIFIER_POINTER (result));
3215 return result;
3218 /* Mangle a this pointer or result pointer adjustment.
3220 <call-offset> ::= h <fixed offset number> _
3221 ::= v <fixed offset number> _ <virtual offset number> _ */
3223 static void
3224 mangle_call_offset (const tree fixed_offset, const tree virtual_offset)
3226 write_char (virtual_offset ? 'v' : 'h');
3228 /* For either flavor, write the fixed offset. */
3229 write_integer_cst (fixed_offset);
3230 write_char ('_');
3232 /* For a virtual thunk, add the virtual offset. */
3233 if (virtual_offset)
3235 write_integer_cst (virtual_offset);
3236 write_char ('_');
3240 /* Return an identifier for the mangled name of a this-adjusting or
3241 covariant thunk to FN_DECL. FIXED_OFFSET is the initial adjustment
3242 to this used to find the vptr. If VIRTUAL_OFFSET is non-NULL, this
3243 is a virtual thunk, and it is the vtbl offset in
3244 bytes. THIS_ADJUSTING is nonzero for a this adjusting thunk and
3245 zero for a covariant thunk. Note, that FN_DECL might be a covariant
3246 thunk itself. A covariant thunk name always includes the adjustment
3247 for the this pointer, even if there is none.
3249 <special-name> ::= T <call-offset> <base encoding>
3250 ::= Tc <this_adjust call-offset> <result_adjust call-offset>
3251 <base encoding> */
3253 tree
3254 mangle_thunk (tree fn_decl, const int this_adjusting, tree fixed_offset,
3255 tree virtual_offset)
3257 tree result;
3259 start_mangling (fn_decl);
3261 write_string ("_Z");
3262 write_char ('T');
3264 if (!this_adjusting)
3266 /* Covariant thunk with no this adjustment */
3267 write_char ('c');
3268 mangle_call_offset (integer_zero_node, NULL_TREE);
3269 mangle_call_offset (fixed_offset, virtual_offset);
3271 else if (!DECL_THUNK_P (fn_decl))
3272 /* Plain this adjusting thunk. */
3273 mangle_call_offset (fixed_offset, virtual_offset);
3274 else
3276 /* This adjusting thunk to covariant thunk. */
3277 write_char ('c');
3278 mangle_call_offset (fixed_offset, virtual_offset);
3279 fixed_offset = ssize_int (THUNK_FIXED_OFFSET (fn_decl));
3280 virtual_offset = THUNK_VIRTUAL_OFFSET (fn_decl);
3281 if (virtual_offset)
3282 virtual_offset = BINFO_VPTR_FIELD (virtual_offset);
3283 mangle_call_offset (fixed_offset, virtual_offset);
3284 fn_decl = THUNK_TARGET (fn_decl);
3287 /* Scoped name. */
3288 write_encoding (fn_decl);
3290 result = finish_mangling_get_identifier (/*warn=*/false);
3291 if (DEBUG_MANGLE)
3292 fprintf (stderr, "mangle_thunk = %s\n\n", IDENTIFIER_POINTER (result));
3293 return result;
3296 /* This hash table maps TYPEs to the IDENTIFIER for a conversion
3297 operator to TYPE. The nodes are IDENTIFIERs whose TREE_TYPE is the
3298 TYPE. */
3300 static GTY ((param_is (union tree_node))) htab_t conv_type_names;
3302 /* Hash a node (VAL1) in the table. */
3304 static hashval_t
3305 hash_type (const void *val)
3307 return (hashval_t) TYPE_UID (TREE_TYPE ((const_tree) val));
3310 /* Compare VAL1 (a node in the table) with VAL2 (a TYPE). */
3312 static int
3313 compare_type (const void *val1, const void *val2)
3315 return TREE_TYPE ((const_tree) val1) == (const_tree) val2;
3318 /* Return an identifier for the mangled unqualified name for a
3319 conversion operator to TYPE. This mangling is not specified by the
3320 ABI spec; it is only used internally. */
3322 tree
3323 mangle_conv_op_name_for_type (const tree type)
3325 void **slot;
3326 tree identifier;
3328 if (type == error_mark_node)
3329 return error_mark_node;
3331 if (conv_type_names == NULL)
3332 conv_type_names = htab_create_ggc (31, &hash_type, &compare_type, NULL);
3334 slot = htab_find_slot_with_hash (conv_type_names, type,
3335 (hashval_t) TYPE_UID (type), INSERT);
3336 identifier = (tree)*slot;
3337 if (!identifier)
3339 char buffer[64];
3341 /* Create a unique name corresponding to TYPE. */
3342 sprintf (buffer, "operator %lu",
3343 (unsigned long) htab_elements (conv_type_names));
3344 identifier = get_identifier (buffer);
3345 *slot = identifier;
3347 /* Hang TYPE off the identifier so it can be found easily later
3348 when performing conversions. */
3349 TREE_TYPE (identifier) = type;
3351 /* Set bits on the identifier so we know later it's a conversion. */
3352 IDENTIFIER_OPNAME_P (identifier) = 1;
3353 IDENTIFIER_TYPENAME_P (identifier) = 1;
3356 return identifier;
3359 /* Return an identifier for the name of an initialization guard
3360 variable for indicated VARIABLE. */
3362 tree
3363 mangle_guard_variable (const tree variable)
3365 start_mangling (variable);
3366 write_string ("_ZGV");
3367 if (strncmp (IDENTIFIER_POINTER (DECL_NAME (variable)), "_ZGR", 4) == 0)
3368 /* The name of a guard variable for a reference temporary should refer
3369 to the reference, not the temporary. */
3370 write_string (IDENTIFIER_POINTER (DECL_NAME (variable)) + 4);
3371 else
3372 write_name (variable, /*ignore_local_scope=*/0);
3373 return finish_mangling_get_identifier (/*warn=*/false);
3376 /* Return an identifier for the name of a temporary variable used to
3377 initialize a static reference. This isn't part of the ABI, but we might
3378 as well call them something readable. */
3380 tree
3381 mangle_ref_init_variable (const tree variable)
3383 start_mangling (variable);
3384 write_string ("_ZGR");
3385 write_name (variable, /*ignore_local_scope=*/0);
3386 return finish_mangling_get_identifier (/*warn=*/false);
3390 /* Foreign language type mangling section. */
3392 /* How to write the type codes for the integer Java type. */
3394 static void
3395 write_java_integer_type_codes (const tree type)
3397 if (type == java_int_type_node)
3398 write_char ('i');
3399 else if (type == java_short_type_node)
3400 write_char ('s');
3401 else if (type == java_byte_type_node)
3402 write_char ('c');
3403 else if (type == java_char_type_node)
3404 write_char ('w');
3405 else if (type == java_long_type_node)
3406 write_char ('x');
3407 else if (type == java_boolean_type_node)
3408 write_char ('b');
3409 else
3410 gcc_unreachable ();
3413 #include "gt-cp-mangle.h"