Merge -r 127928:132243 from trunk
[official-gcc.git] / gcc / cp / mangle.c
blob09a34562e8d3b31cff888d1ecad8286dbc088e6f
1 /* Name mangling for the 3.0 C++ ABI.
2 Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2007
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 "real.h"
56 #include "obstack.h"
57 #include "toplev.h"
58 #include "varray.h"
59 #include "flags.h"
60 #include "target.h"
62 /* Debugging support. */
64 /* Define DEBUG_MANGLE to enable very verbose trace messages. */
65 #ifndef DEBUG_MANGLE
66 #define DEBUG_MANGLE 0
67 #endif
69 /* Macros for tracing the write_* functions. */
70 #if DEBUG_MANGLE
71 # define MANGLE_TRACE(FN, INPUT) \
72 fprintf (stderr, " %-24s: %-24s\n", (FN), (INPUT))
73 # define MANGLE_TRACE_TREE(FN, NODE) \
74 fprintf (stderr, " %-24s: %-24s (%p)\n", \
75 (FN), tree_code_name[TREE_CODE (NODE)], (void *) (NODE))
76 #else
77 # define MANGLE_TRACE(FN, INPUT)
78 # define MANGLE_TRACE_TREE(FN, NODE)
79 #endif
81 /* Nonzero if NODE is a class template-id. We can't rely on
82 CLASSTYPE_USE_TEMPLATE here because of tricky bugs in the parser
83 that hard to distinguish A<T> from A, where A<T> is the type as
84 instantiated outside of the template, and A is the type used
85 without parameters inside the template. */
86 #define CLASSTYPE_TEMPLATE_ID_P(NODE) \
87 (TYPE_LANG_SPECIFIC (NODE) != NULL \
88 && (TREE_CODE (NODE) == BOUND_TEMPLATE_TEMPLATE_PARM \
89 || (CLASSTYPE_TEMPLATE_INFO (NODE) != NULL \
90 && (PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (NODE))))))
92 /* Things we only need one of. This module is not reentrant. */
93 typedef struct globals GTY(())
95 /* An array of the current substitution candidates, in the order
96 we've seen them. */
97 VEC(tree,gc) *substitutions;
99 /* The entity that is being mangled. */
100 tree GTY ((skip)) entity;
102 /* True if the mangling will be different in a future version of the
103 ABI. */
104 bool need_abi_warning;
105 } globals;
107 static GTY (()) globals G;
109 /* The obstack on which we build mangled names. */
110 static struct obstack *mangle_obstack;
112 /* The obstack on which we build mangled names that are not going to
113 be IDENTIFIER_NODEs. */
114 static struct obstack name_obstack;
116 /* The first object on the name_obstack; we use this to free memory
117 allocated on the name_obstack. */
118 static void *name_base;
120 /* An incomplete mangled name. There will be no NUL terminator. If
121 there is no incomplete mangled name, this variable is NULL. */
122 static char *partially_mangled_name;
124 /* The number of characters in the PARTIALLY_MANGLED_NAME. */
125 static size_t partially_mangled_name_len;
127 /* Indices into subst_identifiers. These are identifiers used in
128 special substitution rules. */
129 typedef enum
131 SUBID_ALLOCATOR,
132 SUBID_BASIC_STRING,
133 SUBID_CHAR_TRAITS,
134 SUBID_BASIC_ISTREAM,
135 SUBID_BASIC_OSTREAM,
136 SUBID_BASIC_IOSTREAM,
137 SUBID_MAX
139 substitution_identifier_index_t;
141 /* For quick substitution checks, look up these common identifiers
142 once only. */
143 static GTY(()) tree subst_identifiers[SUBID_MAX];
145 /* Single-letter codes for builtin integer types, defined in
146 <builtin-type>. These are indexed by integer_type_kind values. */
147 static const char
148 integer_type_codes[itk_none] =
150 'c', /* itk_char */
151 'a', /* itk_signed_char */
152 'h', /* itk_unsigned_char */
153 's', /* itk_short */
154 't', /* itk_unsigned_short */
155 'i', /* itk_int */
156 'j', /* itk_unsigned_int */
157 'l', /* itk_long */
158 'm', /* itk_unsigned_long */
159 'x', /* itk_long_long */
160 'y' /* itk_unsigned_long_long */
163 static int decl_is_template_id (const tree, tree* const);
165 /* Functions for handling substitutions. */
167 static inline tree canonicalize_for_substitution (tree);
168 static void add_substitution (tree);
169 static inline int is_std_substitution (const tree,
170 const substitution_identifier_index_t);
171 static inline int is_std_substitution_char (const tree,
172 const substitution_identifier_index_t);
173 static int find_substitution (tree);
174 static void mangle_call_offset (const tree, const tree);
176 /* Functions for emitting mangled representations of things. */
178 static void write_mangled_name (const tree, bool);
179 static void write_encoding (const tree);
180 static void write_name (tree, const int);
181 static void write_unscoped_name (const tree);
182 static void write_unscoped_template_name (const tree);
183 static void write_nested_name (const tree);
184 static void write_prefix (const tree);
185 static void write_template_prefix (const tree);
186 static void write_unqualified_name (const tree);
187 static void write_conversion_operator_name (const tree);
188 static void write_source_name (tree);
189 static int hwint_to_ascii (unsigned HOST_WIDE_INT, const unsigned int, char *,
190 const unsigned int);
191 static void write_number (unsigned HOST_WIDE_INT, const int,
192 const unsigned int);
193 static void write_integer_cst (const tree);
194 static void write_real_cst (const tree);
195 static void write_identifier (const char *);
196 static void write_special_name_constructor (const tree);
197 static void write_special_name_destructor (const tree);
198 static void write_type (tree);
199 static int write_CV_qualifiers_for_type (const tree);
200 static void write_builtin_type (tree);
201 static void write_function_type (const tree);
202 static void write_bare_function_type (const tree, const int, const tree);
203 static void write_method_parms (tree, const int, const tree);
204 static void write_class_enum_type (const tree);
205 static void write_template_args (tree);
206 static void write_expression (tree);
207 static void write_template_arg_literal (const tree);
208 static void write_template_arg (tree);
209 static void write_template_template_arg (const tree);
210 static void write_array_type (const tree);
211 static void write_pointer_to_member_type (const tree);
212 static void write_template_param (const tree);
213 static void write_template_template_param (const tree);
214 static void write_substitution (const int);
215 static int discriminator_for_local_entity (tree);
216 static int discriminator_for_string_literal (tree, tree);
217 static void write_discriminator (const int);
218 static void write_local_name (const tree, const tree, const tree);
219 static void dump_substitution_candidates (void);
220 static const char *mangle_decl_string (const tree);
222 /* Control functions. */
224 static inline void start_mangling (const tree, bool);
225 static inline const char *finish_mangling (const bool);
226 static tree mangle_special_for_type (const tree, const char *);
228 /* Foreign language functions. */
230 static void write_java_integer_type_codes (const tree);
232 /* Append a single character to the end of the mangled
233 representation. */
234 #define write_char(CHAR) \
235 obstack_1grow (mangle_obstack, (CHAR))
237 /* Append a sized buffer to the end of the mangled representation. */
238 #define write_chars(CHAR, LEN) \
239 obstack_grow (mangle_obstack, (CHAR), (LEN))
241 /* Append a NUL-terminated string to the end of the mangled
242 representation. */
243 #define write_string(STRING) \
244 obstack_grow (mangle_obstack, (STRING), strlen (STRING))
246 /* Nonzero if NODE1 and NODE2 are both TREE_LIST nodes and have the
247 same purpose (context, which may be a type) and value (template
248 decl). See write_template_prefix for more information on what this
249 is used for. */
250 #define NESTED_TEMPLATE_MATCH(NODE1, NODE2) \
251 (TREE_CODE (NODE1) == TREE_LIST \
252 && TREE_CODE (NODE2) == TREE_LIST \
253 && ((TYPE_P (TREE_PURPOSE (NODE1)) \
254 && same_type_p (TREE_PURPOSE (NODE1), TREE_PURPOSE (NODE2))) \
255 || TREE_PURPOSE (NODE1) == TREE_PURPOSE (NODE2)) \
256 && TREE_VALUE (NODE1) == TREE_VALUE (NODE2))
258 /* Write out an unsigned quantity in base 10. */
259 #define write_unsigned_number(NUMBER) \
260 write_number ((NUMBER), /*unsigned_p=*/1, 10)
262 /* Save the current (incomplete) mangled name and release the obstack
263 storage holding it. This function should be used during mangling
264 when making a call that could result in a call to get_identifier,
265 as such a call will clobber the same obstack being used for
266 mangling. This function may not be called twice without an
267 intervening call to restore_partially_mangled_name. */
269 static void
270 save_partially_mangled_name (void)
272 if (mangle_obstack == &ident_hash->stack)
274 gcc_assert (!partially_mangled_name);
275 partially_mangled_name_len = obstack_object_size (mangle_obstack);
276 partially_mangled_name = XNEWVEC (char, partially_mangled_name_len);
277 memcpy (partially_mangled_name, obstack_base (mangle_obstack),
278 partially_mangled_name_len);
279 obstack_free (mangle_obstack, obstack_finish (mangle_obstack));
283 /* Restore the incomplete mangled name saved with
284 save_partially_mangled_name. */
286 static void
287 restore_partially_mangled_name (void)
289 if (partially_mangled_name)
291 obstack_grow (mangle_obstack, partially_mangled_name,
292 partially_mangled_name_len);
293 free (partially_mangled_name);
294 partially_mangled_name = NULL;
298 /* If DECL is a template instance, return nonzero and, if
299 TEMPLATE_INFO is non-NULL, set *TEMPLATE_INFO to its template info.
300 Otherwise return zero. */
302 static int
303 decl_is_template_id (const tree decl, tree* const template_info)
305 if (TREE_CODE (decl) == TYPE_DECL)
307 /* TYPE_DECLs are handled specially. Look at its type to decide
308 if this is a template instantiation. */
309 const tree type = TREE_TYPE (decl);
311 if (CLASS_TYPE_P (type) && CLASSTYPE_TEMPLATE_ID_P (type))
313 if (template_info != NULL)
314 /* For a templated TYPE_DECL, the template info is hanging
315 off the type. */
316 *template_info = TYPE_TEMPLATE_INFO (type);
317 return 1;
320 else
322 /* Check if this is a primary template. */
323 if (DECL_LANG_SPECIFIC (decl) != NULL
324 && DECL_USE_TEMPLATE (decl)
325 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl))
326 && TREE_CODE (decl) != TEMPLATE_DECL)
328 if (template_info != NULL)
329 /* For most templated decls, the template info is hanging
330 off the decl. */
331 *template_info = DECL_TEMPLATE_INFO (decl);
332 return 1;
336 /* It's not a template id. */
337 return 0;
340 /* Produce debugging output of current substitution candidates. */
342 static void
343 dump_substitution_candidates (void)
345 unsigned i;
346 tree el;
348 fprintf (stderr, " ++ substitutions ");
349 for (i = 0; VEC_iterate (tree, G.substitutions, i, el); ++i)
351 const char *name = "???";
353 if (i > 0)
354 fprintf (stderr, " ");
355 if (DECL_P (el))
356 name = IDENTIFIER_POINTER (DECL_NAME (el));
357 else if (TREE_CODE (el) == TREE_LIST)
358 name = IDENTIFIER_POINTER (DECL_NAME (TREE_VALUE (el)));
359 else if (TYPE_NAME (el))
360 name = IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (el)));
361 fprintf (stderr, " S%d_ = ", i - 1);
362 if (TYPE_P (el) &&
363 (CP_TYPE_RESTRICT_P (el)
364 || CP_TYPE_VOLATILE_P (el)
365 || CP_TYPE_CONST_P (el)))
366 fprintf (stderr, "CV-");
367 fprintf (stderr, "%s (%s at %p)\n",
368 name, tree_code_name[TREE_CODE (el)], (void *) el);
372 /* Both decls and types can be substitution candidates, but sometimes
373 they refer to the same thing. For instance, a TYPE_DECL and
374 RECORD_TYPE for the same class refer to the same thing, and should
375 be treated accordingly in substitutions. This function returns a
376 canonicalized tree node representing NODE that is used when adding
377 and substitution candidates and finding matches. */
379 static inline tree
380 canonicalize_for_substitution (tree node)
382 /* For a TYPE_DECL, use the type instead. */
383 if (TREE_CODE (node) == TYPE_DECL)
384 node = TREE_TYPE (node);
385 if (TYPE_P (node))
386 node = canonical_type_variant (node);
388 return node;
391 /* Add NODE as a substitution candidate. NODE must not already be on
392 the list of candidates. */
394 static void
395 add_substitution (tree node)
397 tree c;
399 if (DEBUG_MANGLE)
400 fprintf (stderr, " ++ add_substitution (%s at %10p)\n",
401 tree_code_name[TREE_CODE (node)], (void *) node);
403 /* Get the canonicalized substitution candidate for NODE. */
404 c = canonicalize_for_substitution (node);
405 if (DEBUG_MANGLE && c != node)
406 fprintf (stderr, " ++ using candidate (%s at %10p)\n",
407 tree_code_name[TREE_CODE (node)], (void *) node);
408 node = c;
410 #if ENABLE_CHECKING
411 /* Make sure NODE isn't already a candidate. */
413 int i;
414 tree candidate;
416 for (i = 0; VEC_iterate (tree, G.substitutions, i, candidate); i++)
418 gcc_assert (!(DECL_P (node) && node == candidate));
419 gcc_assert (!(TYPE_P (node) && TYPE_P (candidate)
420 && same_type_p (node, candidate)));
423 #endif /* ENABLE_CHECKING */
425 /* Put the decl onto the varray of substitution candidates. */
426 VEC_safe_push (tree, gc, G.substitutions, node);
428 if (DEBUG_MANGLE)
429 dump_substitution_candidates ();
432 /* Helper function for find_substitution. Returns nonzero if NODE,
433 which may be a decl or a CLASS_TYPE, is a template-id with template
434 name of substitution_index[INDEX] in the ::std namespace. */
436 static inline int
437 is_std_substitution (const tree node,
438 const substitution_identifier_index_t index)
440 tree type = NULL;
441 tree decl = NULL;
443 if (DECL_P (node))
445 type = TREE_TYPE (node);
446 decl = node;
448 else if (CLASS_TYPE_P (node))
450 type = node;
451 decl = TYPE_NAME (node);
453 else
454 /* These are not the droids you're looking for. */
455 return 0;
457 return (DECL_NAMESPACE_STD_P (CP_DECL_CONTEXT (decl))
458 && TYPE_LANG_SPECIFIC (type)
459 && TYPE_TEMPLATE_INFO (type)
460 && (DECL_NAME (TYPE_TI_TEMPLATE (type))
461 == subst_identifiers[index]));
464 /* Helper function for find_substitution. Returns nonzero if NODE,
465 which may be a decl or a CLASS_TYPE, is the template-id
466 ::std::identifier<char>, where identifier is
467 substitution_index[INDEX]. */
469 static inline int
470 is_std_substitution_char (const tree node,
471 const substitution_identifier_index_t index)
473 tree args;
474 /* Check NODE's name is ::std::identifier. */
475 if (!is_std_substitution (node, index))
476 return 0;
477 /* Figure out its template args. */
478 if (DECL_P (node))
479 args = DECL_TI_ARGS (node);
480 else if (CLASS_TYPE_P (node))
481 args = CLASSTYPE_TI_ARGS (node);
482 else
483 /* Oops, not a template. */
484 return 0;
485 /* NODE's template arg list should be <char>. */
486 return
487 TREE_VEC_LENGTH (args) == 1
488 && TREE_VEC_ELT (args, 0) == char_type_node;
491 /* Check whether a substitution should be used to represent NODE in
492 the mangling.
494 First, check standard special-case substitutions.
496 <substitution> ::= St
497 # ::std
499 ::= Sa
500 # ::std::allocator
502 ::= Sb
503 # ::std::basic_string
505 ::= Ss
506 # ::std::basic_string<char,
507 ::std::char_traits<char>,
508 ::std::allocator<char> >
510 ::= Si
511 # ::std::basic_istream<char, ::std::char_traits<char> >
513 ::= So
514 # ::std::basic_ostream<char, ::std::char_traits<char> >
516 ::= Sd
517 # ::std::basic_iostream<char, ::std::char_traits<char> >
519 Then examine the stack of currently available substitution
520 candidates for entities appearing earlier in the same mangling
522 If a substitution is found, write its mangled representation and
523 return nonzero. If none is found, just return zero. */
525 static int
526 find_substitution (tree node)
528 int i;
529 const int size = VEC_length (tree, G.substitutions);
530 tree decl;
531 tree type;
533 if (DEBUG_MANGLE)
534 fprintf (stderr, " ++ find_substitution (%s at %p)\n",
535 tree_code_name[TREE_CODE (node)], (void *) node);
537 /* Obtain the canonicalized substitution representation for NODE.
538 This is what we'll compare against. */
539 node = canonicalize_for_substitution (node);
541 /* Check for builtin substitutions. */
543 decl = TYPE_P (node) ? TYPE_NAME (node) : node;
544 type = TYPE_P (node) ? node : TREE_TYPE (node);
546 /* Check for std::allocator. */
547 if (decl
548 && is_std_substitution (decl, SUBID_ALLOCATOR)
549 && !CLASSTYPE_USE_TEMPLATE (TREE_TYPE (decl)))
551 write_string ("Sa");
552 return 1;
555 /* Check for std::basic_string. */
556 if (decl && is_std_substitution (decl, SUBID_BASIC_STRING))
558 if (TYPE_P (node))
560 /* If this is a type (i.e. a fully-qualified template-id),
561 check for
562 std::basic_string <char,
563 std::char_traits<char>,
564 std::allocator<char> > . */
565 if (cp_type_quals (type) == TYPE_UNQUALIFIED
566 && CLASSTYPE_USE_TEMPLATE (type))
568 tree args = CLASSTYPE_TI_ARGS (type);
569 if (TREE_VEC_LENGTH (args) == 3
570 && same_type_p (TREE_VEC_ELT (args, 0), char_type_node)
571 && is_std_substitution_char (TREE_VEC_ELT (args, 1),
572 SUBID_CHAR_TRAITS)
573 && is_std_substitution_char (TREE_VEC_ELT (args, 2),
574 SUBID_ALLOCATOR))
576 write_string ("Ss");
577 return 1;
581 else
582 /* Substitute for the template name only if this isn't a type. */
584 write_string ("Sb");
585 return 1;
589 /* Check for basic_{i,o,io}stream. */
590 if (TYPE_P (node)
591 && cp_type_quals (type) == TYPE_UNQUALIFIED
592 && CLASS_TYPE_P (type)
593 && CLASSTYPE_USE_TEMPLATE (type)
594 && CLASSTYPE_TEMPLATE_INFO (type) != NULL)
596 /* First, check for the template
597 args <char, std::char_traits<char> > . */
598 tree args = CLASSTYPE_TI_ARGS (type);
599 if (TREE_VEC_LENGTH (args) == 2
600 && TYPE_P (TREE_VEC_ELT (args, 0))
601 && same_type_p (TREE_VEC_ELT (args, 0), char_type_node)
602 && is_std_substitution_char (TREE_VEC_ELT (args, 1),
603 SUBID_CHAR_TRAITS))
605 /* Got them. Is this basic_istream? */
606 if (is_std_substitution (decl, SUBID_BASIC_ISTREAM))
608 write_string ("Si");
609 return 1;
611 /* Or basic_ostream? */
612 else if (is_std_substitution (decl, SUBID_BASIC_OSTREAM))
614 write_string ("So");
615 return 1;
617 /* Or basic_iostream? */
618 else if (is_std_substitution (decl, SUBID_BASIC_IOSTREAM))
620 write_string ("Sd");
621 return 1;
626 /* Check for namespace std. */
627 if (decl && DECL_NAMESPACE_STD_P (decl))
629 write_string ("St");
630 return 1;
633 /* Now check the list of available substitutions for this mangling
634 operation. */
635 for (i = 0; i < size; ++i)
637 tree candidate = VEC_index (tree, G.substitutions, i);
638 /* NODE is a matched to a candidate if it's the same decl node or
639 if it's the same type. */
640 if (decl == candidate
641 || (TYPE_P (candidate) && type && TYPE_P (type)
642 && same_type_p (type, candidate))
643 || NESTED_TEMPLATE_MATCH (node, candidate))
645 write_substitution (i);
646 return 1;
650 /* No substitution found. */
651 return 0;
655 /* TOP_LEVEL is true, if this is being called at outermost level of
656 mangling. It should be false when mangling a decl appearing in an
657 expression within some other mangling.
659 <mangled-name> ::= _Z <encoding> */
661 static void
662 write_mangled_name (const tree decl, bool top_level)
664 MANGLE_TRACE_TREE ("mangled-name", decl);
666 if (/* The names of `extern "C"' functions are not mangled. */
667 DECL_EXTERN_C_FUNCTION_P (decl)
668 /* But overloaded operator names *are* mangled. */
669 && !DECL_OVERLOADED_OPERATOR_P (decl))
671 unmangled_name:;
673 if (top_level)
674 write_string (IDENTIFIER_POINTER (DECL_NAME (decl)));
675 else
677 /* The standard notes: "The <encoding> of an extern "C"
678 function is treated like global-scope data, i.e. as its
679 <source-name> without a type." We cannot write
680 overloaded operators that way though, because it contains
681 characters invalid in assembler. */
682 if (abi_version_at_least (2))
683 write_string ("_Z");
684 else
685 G.need_abi_warning = true;
686 write_source_name (DECL_NAME (decl));
689 else if (TREE_CODE (decl) == VAR_DECL
690 /* The names of non-static global variables aren't mangled. */
691 && DECL_EXTERNAL_LINKAGE_P (decl)
692 && (CP_DECL_CONTEXT (decl) == global_namespace
693 /* And neither are `extern "C"' variables. */
694 || DECL_EXTERN_C_P (decl)))
696 if (top_level || abi_version_at_least (2))
697 goto unmangled_name;
698 else
700 G.need_abi_warning = true;
701 goto mangled_name;
704 else
706 mangled_name:;
707 write_string ("_Z");
708 write_encoding (decl);
709 if (DECL_LANG_SPECIFIC (decl)
710 && (DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P (decl)
711 || DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (decl)))
712 /* We need a distinct mangled name for these entities, but
713 we should never actually output it. So, we append some
714 characters the assembler won't like. */
715 write_string (" *INTERNAL* ");
719 /* <encoding> ::= <function name> <bare-function-type>
720 ::= <data name> */
722 static void
723 write_encoding (const tree decl)
725 MANGLE_TRACE_TREE ("encoding", decl);
727 if (DECL_LANG_SPECIFIC (decl) && DECL_EXTERN_C_FUNCTION_P (decl))
729 /* For overloaded operators write just the mangled name
730 without arguments. */
731 if (DECL_OVERLOADED_OPERATOR_P (decl))
732 write_name (decl, /*ignore_local_scope=*/0);
733 else
734 write_source_name (DECL_NAME (decl));
735 return;
738 write_name (decl, /*ignore_local_scope=*/0);
739 if (TREE_CODE (decl) == FUNCTION_DECL)
741 tree fn_type;
742 tree d;
744 if (decl_is_template_id (decl, NULL))
746 save_partially_mangled_name ();
747 fn_type = get_mostly_instantiated_function_type (decl);
748 restore_partially_mangled_name ();
749 /* FN_TYPE will not have parameter types for in-charge or
750 VTT parameters. Therefore, we pass NULL_TREE to
751 write_bare_function_type -- otherwise, it will get
752 confused about which artificial parameters to skip. */
753 d = NULL_TREE;
755 else
757 fn_type = TREE_TYPE (decl);
758 d = decl;
761 write_bare_function_type (fn_type,
762 (!DECL_CONSTRUCTOR_P (decl)
763 && !DECL_DESTRUCTOR_P (decl)
764 && !DECL_CONV_FN_P (decl)
765 && decl_is_template_id (decl, NULL)),
770 /* <name> ::= <unscoped-name>
771 ::= <unscoped-template-name> <template-args>
772 ::= <nested-name>
773 ::= <local-name>
775 If IGNORE_LOCAL_SCOPE is nonzero, this production of <name> is
776 called from <local-name>, which mangles the enclosing scope
777 elsewhere and then uses this function to mangle just the part
778 underneath the function scope. So don't use the <local-name>
779 production, to avoid an infinite recursion. */
781 static void
782 write_name (tree decl, const int ignore_local_scope)
784 tree context;
786 MANGLE_TRACE_TREE ("name", decl);
788 if (TREE_CODE (decl) == TYPE_DECL)
790 /* In case this is a typedef, fish out the corresponding
791 TYPE_DECL for the main variant. */
792 decl = TYPE_NAME (TYPE_MAIN_VARIANT (TREE_TYPE (decl)));
793 context = TYPE_CONTEXT (TYPE_MAIN_VARIANT (TREE_TYPE (decl)));
795 else
796 context = (DECL_CONTEXT (decl) == NULL) ? NULL : CP_DECL_CONTEXT (decl);
798 /* A decl in :: or ::std scope is treated specially. The former is
799 mangled using <unscoped-name> or <unscoped-template-name>, the
800 latter with a special substitution. Also, a name that is
801 directly in a local function scope is also mangled with
802 <unscoped-name> rather than a full <nested-name>. */
803 if (context == NULL
804 || context == global_namespace
805 || DECL_NAMESPACE_STD_P (context)
806 || (ignore_local_scope && TREE_CODE (context) == FUNCTION_DECL))
808 tree template_info;
809 /* Is this a template instance? */
810 if (decl_is_template_id (decl, &template_info))
812 /* Yes: use <unscoped-template-name>. */
813 write_unscoped_template_name (TI_TEMPLATE (template_info));
814 write_template_args (TI_ARGS (template_info));
816 else
817 /* Everything else gets an <unqualified-name>. */
818 write_unscoped_name (decl);
820 else
822 /* Handle local names, unless we asked not to (that is, invoked
823 under <local-name>, to handle only the part of the name under
824 the local scope). */
825 if (!ignore_local_scope)
827 /* Scan up the list of scope context, looking for a
828 function. If we find one, this entity is in local
829 function scope. local_entity tracks context one scope
830 level down, so it will contain the element that's
831 directly in that function's scope, either decl or one of
832 its enclosing scopes. */
833 tree local_entity = decl;
834 while (context != NULL && context != global_namespace)
836 /* Make sure we're always dealing with decls. */
837 if (context != NULL && TYPE_P (context))
838 context = TYPE_NAME (context);
839 /* Is this a function? */
840 if (TREE_CODE (context) == FUNCTION_DECL)
842 /* Yes, we have local scope. Use the <local-name>
843 production for the innermost function scope. */
844 write_local_name (context, local_entity, decl);
845 return;
847 /* Up one scope level. */
848 local_entity = context;
849 context = CP_DECL_CONTEXT (context);
852 /* No local scope found? Fall through to <nested-name>. */
855 /* Other decls get a <nested-name> to encode their scope. */
856 write_nested_name (decl);
860 /* <unscoped-name> ::= <unqualified-name>
861 ::= St <unqualified-name> # ::std:: */
863 static void
864 write_unscoped_name (const tree decl)
866 tree context = CP_DECL_CONTEXT (decl);
868 MANGLE_TRACE_TREE ("unscoped-name", decl);
870 /* Is DECL in ::std? */
871 if (DECL_NAMESPACE_STD_P (context))
873 write_string ("St");
874 write_unqualified_name (decl);
876 else
878 /* If not, it should be either in the global namespace, or directly
879 in a local function scope. */
880 gcc_assert (context == global_namespace
881 || context == NULL
882 || TREE_CODE (context) == FUNCTION_DECL);
884 write_unqualified_name (decl);
888 /* <unscoped-template-name> ::= <unscoped-name>
889 ::= <substitution> */
891 static void
892 write_unscoped_template_name (const tree decl)
894 MANGLE_TRACE_TREE ("unscoped-template-name", decl);
896 if (find_substitution (decl))
897 return;
898 write_unscoped_name (decl);
899 add_substitution (decl);
902 /* Write the nested name, including CV-qualifiers, of DECL.
904 <nested-name> ::= N [<CV-qualifiers>] <prefix> <unqualified-name> E
905 ::= N [<CV-qualifiers>] <template-prefix> <template-args> E
907 <CV-qualifiers> ::= [r] [V] [K] */
909 static void
910 write_nested_name (const tree decl)
912 tree template_info;
914 MANGLE_TRACE_TREE ("nested-name", decl);
916 write_char ('N');
918 /* Write CV-qualifiers, if this is a member function. */
919 if (TREE_CODE (decl) == FUNCTION_DECL
920 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
922 if (DECL_VOLATILE_MEMFUNC_P (decl))
923 write_char ('V');
924 if (DECL_CONST_MEMFUNC_P (decl))
925 write_char ('K');
928 /* Is this a template instance? */
929 if (decl_is_template_id (decl, &template_info))
931 /* Yes, use <template-prefix>. */
932 write_template_prefix (decl);
933 write_template_args (TI_ARGS (template_info));
935 else
937 /* No, just use <prefix> */
938 write_prefix (DECL_CONTEXT (decl));
939 write_unqualified_name (decl);
941 write_char ('E');
944 /* <prefix> ::= <prefix> <unqualified-name>
945 ::= <template-param>
946 ::= <template-prefix> <template-args>
947 ::= # empty
948 ::= <substitution> */
950 static void
951 write_prefix (const tree node)
953 tree decl;
954 /* Non-NULL if NODE represents a template-id. */
955 tree template_info = NULL;
957 MANGLE_TRACE_TREE ("prefix", node);
959 if (node == NULL
960 || node == global_namespace)
961 return;
963 if (find_substitution (node))
964 return;
966 if (DECL_P (node))
968 /* If this is a function decl, that means we've hit function
969 scope, so this prefix must be for a local name. In this
970 case, we're under the <local-name> production, which encodes
971 the enclosing function scope elsewhere. So don't continue
972 here. */
973 if (TREE_CODE (node) == FUNCTION_DECL)
974 return;
976 decl = node;
977 decl_is_template_id (decl, &template_info);
979 else
981 /* Node is a type. */
982 decl = TYPE_NAME (node);
983 if (CLASSTYPE_TEMPLATE_ID_P (node))
984 template_info = TYPE_TEMPLATE_INFO (node);
987 /* In G++ 3.2, the name of the template parameter was used. */
988 if (TREE_CODE (node) == TEMPLATE_TYPE_PARM
989 && !abi_version_at_least (2))
990 G.need_abi_warning = true;
992 if (TREE_CODE (node) == TEMPLATE_TYPE_PARM
993 && abi_version_at_least (2))
994 write_template_param (node);
995 else if (template_info != NULL)
996 /* Templated. */
998 write_template_prefix (decl);
999 write_template_args (TI_ARGS (template_info));
1001 else
1002 /* Not templated. */
1004 write_prefix (CP_DECL_CONTEXT (decl));
1005 write_unqualified_name (decl);
1008 add_substitution (node);
1011 /* <template-prefix> ::= <prefix> <template component>
1012 ::= <template-param>
1013 ::= <substitution> */
1015 static void
1016 write_template_prefix (const tree node)
1018 tree decl = DECL_P (node) ? node : TYPE_NAME (node);
1019 tree type = DECL_P (node) ? TREE_TYPE (node) : node;
1020 tree context = CP_DECL_CONTEXT (decl);
1021 tree template_info;
1022 tree template;
1023 tree substitution;
1025 MANGLE_TRACE_TREE ("template-prefix", node);
1027 /* Find the template decl. */
1028 if (decl_is_template_id (decl, &template_info))
1029 template = TI_TEMPLATE (template_info);
1030 else
1032 gcc_assert (CLASSTYPE_TEMPLATE_ID_P (type));
1034 template = TYPE_TI_TEMPLATE (type);
1037 /* For a member template, though, the template name for the
1038 innermost name must have all the outer template levels
1039 instantiated. For instance, consider
1041 template<typename T> struct Outer {
1042 template<typename U> struct Inner {};
1045 The template name for `Inner' in `Outer<int>::Inner<float>' is
1046 `Outer<int>::Inner<U>'. In g++, we don't instantiate the template
1047 levels separately, so there's no TEMPLATE_DECL available for this
1048 (there's only `Outer<T>::Inner<U>').
1050 In order to get the substitutions right, we create a special
1051 TREE_LIST to represent the substitution candidate for a nested
1052 template. The TREE_PURPOSE is the template's context, fully
1053 instantiated, and the TREE_VALUE is the TEMPLATE_DECL for the inner
1054 template.
1056 So, for the example above, `Outer<int>::Inner' is represented as a
1057 substitution candidate by a TREE_LIST whose purpose is `Outer<int>'
1058 and whose value is `Outer<T>::Inner<U>'. */
1059 if (TYPE_P (context))
1060 substitution = build_tree_list (context, template);
1061 else
1062 substitution = template;
1064 if (find_substitution (substitution))
1065 return;
1067 /* In G++ 3.2, the name of the template template parameter was used. */
1068 if (TREE_CODE (TREE_TYPE (template)) == TEMPLATE_TEMPLATE_PARM
1069 && !abi_version_at_least (2))
1070 G.need_abi_warning = true;
1072 if (TREE_CODE (TREE_TYPE (template)) == TEMPLATE_TEMPLATE_PARM
1073 && abi_version_at_least (2))
1074 write_template_param (TREE_TYPE (template));
1075 else
1077 write_prefix (context);
1078 write_unqualified_name (decl);
1081 add_substitution (substitution);
1084 /* We don't need to handle thunks, vtables, or VTTs here. Those are
1085 mangled through special entry points.
1087 <unqualified-name> ::= <operator-name>
1088 ::= <special-name>
1089 ::= <source-name>
1090 ::= <local-source-name>
1092 <local-source-name> ::= L <source-name> <discriminator> */
1094 static void
1095 write_unqualified_name (const tree decl)
1097 MANGLE_TRACE_TREE ("unqualified-name", decl);
1099 if (DECL_LANG_SPECIFIC (decl) != NULL && DECL_CONSTRUCTOR_P (decl))
1100 write_special_name_constructor (decl);
1101 else if (DECL_LANG_SPECIFIC (decl) != NULL && DECL_DESTRUCTOR_P (decl))
1102 write_special_name_destructor (decl);
1103 else if (DECL_NAME (decl) == NULL_TREE)
1104 write_source_name (DECL_ASSEMBLER_NAME (decl));
1105 else if (DECL_CONV_FN_P (decl))
1107 /* Conversion operator. Handle it right here.
1108 <operator> ::= cv <type> */
1109 tree type;
1110 if (decl_is_template_id (decl, NULL))
1112 tree fn_type;
1113 save_partially_mangled_name ();
1114 fn_type = get_mostly_instantiated_function_type (decl);
1115 restore_partially_mangled_name ();
1116 type = TREE_TYPE (fn_type);
1118 else
1119 type = DECL_CONV_FN_TYPE (decl);
1120 write_conversion_operator_name (type);
1122 else if (DECL_OVERLOADED_OPERATOR_P (decl))
1124 operator_name_info_t *oni;
1125 if (DECL_ASSIGNMENT_OPERATOR_P (decl))
1126 oni = assignment_operator_name_info;
1127 else
1128 oni = operator_name_info;
1130 write_string (oni[DECL_OVERLOADED_OPERATOR_P (decl)].mangled_name);
1132 else if (VAR_OR_FUNCTION_DECL_P (decl) && ! TREE_PUBLIC (decl)
1133 && DECL_NAMESPACE_SCOPE_P (decl)
1134 && decl_linkage (decl) == lk_internal)
1136 MANGLE_TRACE_TREE ("local-source-name", decl);
1137 write_char ('L');
1138 write_source_name (DECL_NAME (decl));
1139 /* The default discriminator is 1, and that's all we ever use,
1140 so there's no code to output one here. */
1142 else
1143 write_source_name (DECL_NAME (decl));
1146 /* Write the unqualified-name for a conversion operator to TYPE. */
1148 static void
1149 write_conversion_operator_name (const tree type)
1151 write_string ("cv");
1152 write_type (type);
1155 /* Non-terminal <source-name>. IDENTIFIER is an IDENTIFIER_NODE.
1157 <source-name> ::= </length/ number> <identifier> */
1159 static void
1160 write_source_name (tree identifier)
1162 MANGLE_TRACE_TREE ("source-name", identifier);
1164 /* Never write the whole template-id name including the template
1165 arguments; we only want the template name. */
1166 if (IDENTIFIER_TEMPLATE (identifier))
1167 identifier = IDENTIFIER_TEMPLATE (identifier);
1169 write_unsigned_number (IDENTIFIER_LENGTH (identifier));
1170 write_identifier (IDENTIFIER_POINTER (identifier));
1173 /* Convert NUMBER to ascii using base BASE and generating at least
1174 MIN_DIGITS characters. BUFFER points to the _end_ of the buffer
1175 into which to store the characters. Returns the number of
1176 characters generated (these will be layed out in advance of where
1177 BUFFER points). */
1179 static int
1180 hwint_to_ascii (unsigned HOST_WIDE_INT number, const unsigned int base,
1181 char *buffer, const unsigned int min_digits)
1183 static const char base_digits[] = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
1184 unsigned digits = 0;
1186 while (number)
1188 unsigned HOST_WIDE_INT d = number / base;
1190 *--buffer = base_digits[number - d * base];
1191 digits++;
1192 number = d;
1194 while (digits < min_digits)
1196 *--buffer = base_digits[0];
1197 digits++;
1199 return digits;
1202 /* Non-terminal <number>.
1204 <number> ::= [n] </decimal integer/> */
1206 static void
1207 write_number (unsigned HOST_WIDE_INT number, const int unsigned_p,
1208 const unsigned int base)
1210 char buffer[sizeof (HOST_WIDE_INT) * 8];
1211 unsigned count = 0;
1213 if (!unsigned_p && (HOST_WIDE_INT) number < 0)
1215 write_char ('n');
1216 number = -((HOST_WIDE_INT) number);
1218 count = hwint_to_ascii (number, base, buffer + sizeof (buffer), 1);
1219 write_chars (buffer + sizeof (buffer) - count, count);
1222 /* Write out an integral CST in decimal. Most numbers are small, and
1223 representable in a HOST_WIDE_INT. Occasionally we'll have numbers
1224 bigger than that, which we must deal with. */
1226 static inline void
1227 write_integer_cst (const tree cst)
1229 int sign = tree_int_cst_sgn (cst);
1231 if (TREE_INT_CST_HIGH (cst) + (sign < 0))
1233 /* A bignum. We do this in chunks, each of which fits in a
1234 HOST_WIDE_INT. */
1235 char buffer[sizeof (HOST_WIDE_INT) * 8 * 2];
1236 unsigned HOST_WIDE_INT chunk;
1237 unsigned chunk_digits;
1238 char *ptr = buffer + sizeof (buffer);
1239 unsigned count = 0;
1240 tree n, base, type;
1241 int done;
1243 /* HOST_WIDE_INT must be at least 32 bits, so 10^9 is
1244 representable. */
1245 chunk = 1000000000;
1246 chunk_digits = 9;
1248 if (sizeof (HOST_WIDE_INT) >= 8)
1250 /* It is at least 64 bits, so 10^18 is representable. */
1251 chunk_digits = 18;
1252 chunk *= chunk;
1255 type = c_common_signed_or_unsigned_type (1, TREE_TYPE (cst));
1256 base = build_int_cstu (type, chunk);
1257 n = build_int_cst_wide (type,
1258 TREE_INT_CST_LOW (cst), TREE_INT_CST_HIGH (cst));
1260 if (sign < 0)
1262 write_char ('n');
1263 n = fold_build1 (NEGATE_EXPR, type, n);
1267 tree d = fold_build2 (FLOOR_DIV_EXPR, type, n, base);
1268 tree tmp = fold_build2 (MULT_EXPR, type, d, base);
1269 unsigned c;
1271 done = integer_zerop (d);
1272 tmp = fold_build2 (MINUS_EXPR, type, n, tmp);
1273 c = hwint_to_ascii (TREE_INT_CST_LOW (tmp), 10, ptr,
1274 done ? 1 : chunk_digits);
1275 ptr -= c;
1276 count += c;
1277 n = d;
1279 while (!done);
1280 write_chars (ptr, count);
1282 else
1284 /* A small num. */
1285 unsigned HOST_WIDE_INT low = TREE_INT_CST_LOW (cst);
1287 if (sign < 0)
1289 write_char ('n');
1290 low = -low;
1292 write_unsigned_number (low);
1296 /* Write out a floating-point literal.
1298 "Floating-point literals are encoded using the bit pattern of the
1299 target processor's internal representation of that number, as a
1300 fixed-length lowercase hexadecimal string, high-order bytes first
1301 (even if the target processor would store low-order bytes first).
1302 The "n" prefix is not used for floating-point literals; the sign
1303 bit is encoded with the rest of the number.
1305 Here are some examples, assuming the IEEE standard representation
1306 for floating point numbers. (Spaces are for readability, not
1307 part of the encoding.)
1309 1.0f Lf 3f80 0000 E
1310 -1.0f Lf bf80 0000 E
1311 1.17549435e-38f Lf 0080 0000 E
1312 1.40129846e-45f Lf 0000 0001 E
1313 0.0f Lf 0000 0000 E"
1315 Caller is responsible for the Lx and the E. */
1316 static void
1317 write_real_cst (const tree value)
1319 if (abi_version_at_least (2))
1321 long target_real[4]; /* largest supported float */
1322 char buffer[9]; /* eight hex digits in a 32-bit number */
1323 int i, limit, dir;
1325 tree type = TREE_TYPE (value);
1326 int words = GET_MODE_BITSIZE (TYPE_MODE (type)) / 32;
1328 real_to_target (target_real, &TREE_REAL_CST (value),
1329 TYPE_MODE (type));
1331 /* The value in target_real is in the target word order,
1332 so we must write it out backward if that happens to be
1333 little-endian. write_number cannot be used, it will
1334 produce uppercase. */
1335 if (FLOAT_WORDS_BIG_ENDIAN)
1336 i = 0, limit = words, dir = 1;
1337 else
1338 i = words - 1, limit = -1, dir = -1;
1340 for (; i != limit; i += dir)
1342 sprintf (buffer, "%08lx", (unsigned long) target_real[i]);
1343 write_chars (buffer, 8);
1346 else
1348 /* In G++ 3.3 and before the REAL_VALUE_TYPE was written out
1349 literally. Note that compatibility with 3.2 is impossible,
1350 because the old floating-point emulator used a different
1351 format for REAL_VALUE_TYPE. */
1352 size_t i;
1353 for (i = 0; i < sizeof (TREE_REAL_CST (value)); ++i)
1354 write_number (((unsigned char *) &TREE_REAL_CST (value))[i],
1355 /*unsigned_p*/ 1,
1356 /*base*/ 16);
1357 G.need_abi_warning = 1;
1361 /* Non-terminal <identifier>.
1363 <identifier> ::= </unqualified source code identifier> */
1365 static void
1366 write_identifier (const char *identifier)
1368 MANGLE_TRACE ("identifier", identifier);
1369 write_string (identifier);
1372 /* Handle constructor productions of non-terminal <special-name>.
1373 CTOR is a constructor FUNCTION_DECL.
1375 <special-name> ::= C1 # complete object constructor
1376 ::= C2 # base object constructor
1377 ::= C3 # complete object allocating constructor
1379 Currently, allocating constructors are never used.
1381 We also need to provide mangled names for the maybe-in-charge
1382 constructor, so we treat it here too. mangle_decl_string will
1383 append *INTERNAL* to that, to make sure we never emit it. */
1385 static void
1386 write_special_name_constructor (const tree ctor)
1388 if (DECL_BASE_CONSTRUCTOR_P (ctor))
1389 write_string ("C2");
1390 else
1392 gcc_assert (DECL_COMPLETE_CONSTRUCTOR_P (ctor)
1393 /* Even though we don't ever emit a definition of
1394 the old-style destructor, we still have to
1395 consider entities (like static variables) nested
1396 inside it. */
1397 || DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (ctor));
1398 write_string ("C1");
1402 /* Handle destructor productions of non-terminal <special-name>.
1403 DTOR is a destructor FUNCTION_DECL.
1405 <special-name> ::= D0 # deleting (in-charge) destructor
1406 ::= D1 # complete object (in-charge) destructor
1407 ::= D2 # base object (not-in-charge) destructor
1409 We also need to provide mangled names for the maybe-incharge
1410 destructor, so we treat it here too. mangle_decl_string will
1411 append *INTERNAL* to that, to make sure we never emit it. */
1413 static void
1414 write_special_name_destructor (const tree dtor)
1416 if (DECL_DELETING_DESTRUCTOR_P (dtor))
1417 write_string ("D0");
1418 else if (DECL_BASE_DESTRUCTOR_P (dtor))
1419 write_string ("D2");
1420 else
1422 gcc_assert (DECL_COMPLETE_DESTRUCTOR_P (dtor)
1423 /* Even though we don't ever emit a definition of
1424 the old-style destructor, we still have to
1425 consider entities (like static variables) nested
1426 inside it. */
1427 || DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P (dtor));
1428 write_string ("D1");
1432 /* Return the discriminator for ENTITY appearing inside
1433 FUNCTION. The discriminator is the lexical ordinal of VAR among
1434 entities with the same name in the same FUNCTION. */
1436 static int
1437 discriminator_for_local_entity (tree entity)
1439 /* Assume this is the only local entity with this name. */
1440 int discriminator = 0;
1442 if (DECL_DISCRIMINATOR_P (entity) && DECL_LANG_SPECIFIC (entity))
1443 discriminator = DECL_DISCRIMINATOR (entity);
1444 else if (TREE_CODE (entity) == TYPE_DECL)
1446 int ix;
1448 /* Scan the list of local classes. */
1449 entity = TREE_TYPE (entity);
1450 for (ix = 0; ; ix++)
1452 tree type = VEC_index (tree, local_classes, ix);
1453 if (type == entity)
1454 break;
1455 if (TYPE_IDENTIFIER (type) == TYPE_IDENTIFIER (entity)
1456 && TYPE_CONTEXT (type) == TYPE_CONTEXT (entity))
1457 ++discriminator;
1461 return discriminator;
1464 /* Return the discriminator for STRING, a string literal used inside
1465 FUNCTION. The discriminator is the lexical ordinal of STRING among
1466 string literals used in FUNCTION. */
1468 static int
1469 discriminator_for_string_literal (tree function ATTRIBUTE_UNUSED,
1470 tree string ATTRIBUTE_UNUSED)
1472 /* For now, we don't discriminate amongst string literals. */
1473 return 0;
1476 /* <discriminator> := _ <number>
1478 The discriminator is used only for the second and later occurrences
1479 of the same name within a single function. In this case <number> is
1480 n - 2, if this is the nth occurrence, in lexical order. */
1482 static void
1483 write_discriminator (const int discriminator)
1485 /* If discriminator is zero, don't write anything. Otherwise... */
1486 if (discriminator > 0)
1488 write_char ('_');
1489 write_unsigned_number (discriminator - 1);
1493 /* Mangle the name of a function-scope entity. FUNCTION is the
1494 FUNCTION_DECL for the enclosing function. ENTITY is the decl for
1495 the entity itself. LOCAL_ENTITY is the entity that's directly
1496 scoped in FUNCTION_DECL, either ENTITY itself or an enclosing scope
1497 of ENTITY.
1499 <local-name> := Z <function encoding> E <entity name> [<discriminator>]
1500 := Z <function encoding> E s [<discriminator>] */
1502 static void
1503 write_local_name (const tree function, const tree local_entity,
1504 const tree entity)
1506 MANGLE_TRACE_TREE ("local-name", entity);
1508 write_char ('Z');
1509 write_encoding (function);
1510 write_char ('E');
1511 if (TREE_CODE (entity) == STRING_CST)
1513 write_char ('s');
1514 write_discriminator (discriminator_for_string_literal (function,
1515 entity));
1517 else
1519 /* Now the <entity name>. Let write_name know its being called
1520 from <local-name>, so it doesn't try to process the enclosing
1521 function scope again. */
1522 write_name (entity, /*ignore_local_scope=*/1);
1523 write_discriminator (discriminator_for_local_entity (local_entity));
1527 /* Non-terminals <type> and <CV-qualifier>.
1529 <type> ::= <builtin-type>
1530 ::= <function-type>
1531 ::= <class-enum-type>
1532 ::= <array-type>
1533 ::= <pointer-to-member-type>
1534 ::= <template-param>
1535 ::= <substitution>
1536 ::= <CV-qualifier>
1537 ::= P <type> # pointer-to
1538 ::= R <type> # reference-to
1539 ::= C <type> # complex pair (C 2000)
1540 ::= G <type> # imaginary (C 2000) [not supported]
1541 ::= U <source-name> <type> # vendor extended type qualifier
1543 C++0x extensions
1545 <type> ::= RR <type> # rvalue reference-to
1546 <type> ::= Dt <expression> # decltype of an id-expression or
1547 # class member access
1548 <type> ::= DT <expression> # decltype of an expression
1550 TYPE is a type node. */
1552 static void
1553 write_type (tree type)
1555 /* This gets set to nonzero if TYPE turns out to be a (possibly
1556 CV-qualified) builtin type. */
1557 int is_builtin_type = 0;
1559 MANGLE_TRACE_TREE ("type", type);
1561 if (type == error_mark_node)
1562 return;
1564 if (find_substitution (type))
1565 return;
1567 if (write_CV_qualifiers_for_type (type) > 0)
1568 /* If TYPE was CV-qualified, we just wrote the qualifiers; now
1569 mangle the unqualified type. The recursive call is needed here
1570 since both the qualified and unqualified types are substitution
1571 candidates. */
1572 write_type (TYPE_MAIN_VARIANT (type));
1573 else if (TREE_CODE (type) == ARRAY_TYPE)
1574 /* It is important not to use the TYPE_MAIN_VARIANT of TYPE here
1575 so that the cv-qualification of the element type is available
1576 in write_array_type. */
1577 write_array_type (type);
1578 else
1580 tree type_orig = type;
1582 /* See through any typedefs. */
1583 type = TYPE_MAIN_VARIANT (type);
1585 if (TYPE_PTRMEM_P (type))
1586 write_pointer_to_member_type (type);
1587 else
1589 /* Handle any target-specific fundamental types. */
1590 const char *target_mangling
1591 = targetm.mangle_type (type_orig);
1593 if (target_mangling)
1595 write_string (target_mangling);
1596 return;
1599 switch (TREE_CODE (type))
1601 case VOID_TYPE:
1602 case BOOLEAN_TYPE:
1603 case INTEGER_TYPE: /* Includes wchar_t. */
1604 case REAL_TYPE:
1606 /* If this is a typedef, TYPE may not be one of
1607 the standard builtin type nodes, but an alias of one. Use
1608 TYPE_MAIN_VARIANT to get to the underlying builtin type. */
1609 write_builtin_type (TYPE_MAIN_VARIANT (type));
1610 ++is_builtin_type;
1612 break;
1614 case COMPLEX_TYPE:
1615 write_char ('C');
1616 write_type (TREE_TYPE (type));
1617 break;
1619 case FUNCTION_TYPE:
1620 case METHOD_TYPE:
1621 write_function_type (type);
1622 break;
1624 case UNION_TYPE:
1625 case RECORD_TYPE:
1626 case ENUMERAL_TYPE:
1627 /* A pointer-to-member function is represented as a special
1628 RECORD_TYPE, so check for this first. */
1629 if (TYPE_PTRMEMFUNC_P (type))
1630 write_pointer_to_member_type (type);
1631 else
1632 write_class_enum_type (type);
1633 break;
1635 case TYPENAME_TYPE:
1636 case UNBOUND_CLASS_TEMPLATE:
1637 /* We handle TYPENAME_TYPEs and UNBOUND_CLASS_TEMPLATEs like
1638 ordinary nested names. */
1639 write_nested_name (TYPE_STUB_DECL (type));
1640 break;
1642 case POINTER_TYPE:
1643 write_char ('P');
1644 write_type (TREE_TYPE (type));
1645 break;
1647 case REFERENCE_TYPE:
1648 if (TYPE_REF_IS_RVALUE (type))
1649 write_char('O');
1650 else
1651 write_char ('R');
1652 write_type (TREE_TYPE (type));
1653 break;
1655 case TEMPLATE_TYPE_PARM:
1656 case TEMPLATE_PARM_INDEX:
1657 write_template_param (type);
1658 break;
1660 case TEMPLATE_TEMPLATE_PARM:
1661 write_template_template_param (type);
1662 break;
1664 case BOUND_TEMPLATE_TEMPLATE_PARM:
1665 write_template_template_param (type);
1666 write_template_args
1667 (TI_ARGS (TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (type)));
1668 break;
1670 case VECTOR_TYPE:
1671 write_string ("U8__vector");
1672 write_type (TREE_TYPE (type));
1673 break;
1675 case TYPE_PACK_EXPANSION:
1676 write_string ("U10__variadic");
1677 write_type (PACK_EXPANSION_PATTERN (type));
1678 break;
1680 case DECLTYPE_TYPE:
1681 write_char ('D');
1682 if (DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (type))
1683 write_char ('t');
1684 else
1685 write_char ('T');
1686 write_expression (DECLTYPE_TYPE_EXPR (type));
1687 write_char ('E');
1688 break;
1690 case TYPEOF_TYPE:
1691 sorry ("mangling typeof, use decltype instead");
1692 break;
1694 default:
1695 gcc_unreachable ();
1700 /* Types other than builtin types are substitution candidates. */
1701 if (!is_builtin_type)
1702 add_substitution (type);
1705 /* Non-terminal <CV-qualifiers> for type nodes. Returns the number of
1706 CV-qualifiers written for TYPE.
1708 <CV-qualifiers> ::= [r] [V] [K] */
1710 static int
1711 write_CV_qualifiers_for_type (const tree type)
1713 int num_qualifiers = 0;
1715 /* The order is specified by:
1717 "In cases where multiple order-insensitive qualifiers are
1718 present, they should be ordered 'K' (closest to the base type),
1719 'V', 'r', and 'U' (farthest from the base type) ..."
1721 Note that we do not use cp_type_quals below; given "const
1722 int[3]", the "const" is emitted with the "int", not with the
1723 array. */
1725 if (TYPE_QUALS (type) & TYPE_QUAL_RESTRICT)
1727 write_char ('r');
1728 ++num_qualifiers;
1730 if (TYPE_QUALS (type) & TYPE_QUAL_VOLATILE)
1732 write_char ('V');
1733 ++num_qualifiers;
1735 if (TYPE_QUALS (type) & TYPE_QUAL_CONST)
1737 write_char ('K');
1738 ++num_qualifiers;
1741 return num_qualifiers;
1744 /* Non-terminal <builtin-type>.
1746 <builtin-type> ::= v # void
1747 ::= b # bool
1748 ::= w # wchar_t
1749 ::= c # char
1750 ::= a # signed char
1751 ::= h # unsigned char
1752 ::= s # short
1753 ::= t # unsigned short
1754 ::= i # int
1755 ::= j # unsigned int
1756 ::= l # long
1757 ::= m # unsigned long
1758 ::= x # long long, __int64
1759 ::= y # unsigned long long, __int64
1760 ::= n # __int128
1761 ::= o # unsigned __int128
1762 ::= f # float
1763 ::= d # double
1764 ::= e # long double, __float80
1765 ::= g # __float128 [not supported]
1766 ::= u <source-name> # vendor extended type */
1768 static void
1769 write_builtin_type (tree type)
1771 if (TYPE_CANONICAL (type))
1772 type = TYPE_CANONICAL (type);
1774 switch (TREE_CODE (type))
1776 case VOID_TYPE:
1777 write_char ('v');
1778 break;
1780 case BOOLEAN_TYPE:
1781 write_char ('b');
1782 break;
1784 case INTEGER_TYPE:
1785 /* TYPE may still be wchar_t, since that isn't in
1786 integer_type_nodes. */
1787 if (type == wchar_type_node)
1788 write_char ('w');
1789 else if (TYPE_FOR_JAVA (type))
1790 write_java_integer_type_codes (type);
1791 else
1793 size_t itk;
1794 /* Assume TYPE is one of the shared integer type nodes. Find
1795 it in the array of these nodes. */
1796 iagain:
1797 for (itk = 0; itk < itk_none; ++itk)
1798 if (type == integer_types[itk])
1800 /* Print the corresponding single-letter code. */
1801 write_char (integer_type_codes[itk]);
1802 break;
1805 if (itk == itk_none)
1807 tree t = c_common_type_for_mode (TYPE_MODE (type),
1808 TYPE_UNSIGNED (type));
1809 if (type != t)
1811 type = t;
1812 goto iagain;
1815 if (TYPE_PRECISION (type) == 128)
1816 write_char (TYPE_UNSIGNED (type) ? 'o' : 'n');
1817 else
1819 /* Allow for cases where TYPE is not one of the shared
1820 integer type nodes and write a "vendor extended builtin
1821 type" with a name the form intN or uintN, respectively.
1822 Situations like this can happen if you have an
1823 __attribute__((__mode__(__SI__))) type and use exotic
1824 switches like '-mint8' on AVR. Of course, this is
1825 undefined by the C++ ABI (and '-mint8' is not even
1826 Standard C conforming), but when using such special
1827 options you're pretty much in nowhere land anyway. */
1828 const char *prefix;
1829 char prec[11]; /* up to ten digits for an unsigned */
1831 prefix = TYPE_UNSIGNED (type) ? "uint" : "int";
1832 sprintf (prec, "%u", (unsigned) TYPE_PRECISION (type));
1833 write_char ('u'); /* "vendor extended builtin type" */
1834 write_unsigned_number (strlen (prefix) + strlen (prec));
1835 write_string (prefix);
1836 write_string (prec);
1840 break;
1842 case REAL_TYPE:
1843 if (type == float_type_node
1844 || type == java_float_type_node)
1845 write_char ('f');
1846 else if (type == double_type_node
1847 || type == java_double_type_node)
1848 write_char ('d');
1849 else if (type == long_double_type_node)
1850 write_char ('e');
1851 else
1852 gcc_unreachable ();
1853 break;
1855 default:
1856 gcc_unreachable ();
1860 /* Non-terminal <function-type>. NODE is a FUNCTION_TYPE or
1861 METHOD_TYPE. The return type is mangled before the parameter
1862 types.
1864 <function-type> ::= F [Y] <bare-function-type> E */
1866 static void
1867 write_function_type (const tree type)
1869 MANGLE_TRACE_TREE ("function-type", type);
1871 /* For a pointer to member function, the function type may have
1872 cv-qualifiers, indicating the quals for the artificial 'this'
1873 parameter. */
1874 if (TREE_CODE (type) == METHOD_TYPE)
1876 /* The first parameter must be a POINTER_TYPE pointing to the
1877 `this' parameter. */
1878 tree this_type = TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (type)));
1879 write_CV_qualifiers_for_type (this_type);
1882 write_char ('F');
1883 /* We don't track whether or not a type is `extern "C"'. Note that
1884 you can have an `extern "C"' function that does not have
1885 `extern "C"' type, and vice versa:
1887 extern "C" typedef void function_t();
1888 function_t f; // f has C++ linkage, but its type is
1889 // `extern "C"'
1891 typedef void function_t();
1892 extern "C" function_t f; // Vice versa.
1894 See [dcl.link]. */
1895 write_bare_function_type (type, /*include_return_type_p=*/1,
1896 /*decl=*/NULL);
1897 write_char ('E');
1900 /* Non-terminal <bare-function-type>. TYPE is a FUNCTION_TYPE or
1901 METHOD_TYPE. If INCLUDE_RETURN_TYPE is nonzero, the return value
1902 is mangled before the parameter types. If non-NULL, DECL is
1903 FUNCTION_DECL for the function whose type is being emitted.
1905 If DECL is a member of a Java type, then a literal 'J'
1906 is output and the return type is mangled as if INCLUDE_RETURN_TYPE
1907 were nonzero.
1909 <bare-function-type> ::= [J]</signature/ type>+ */
1911 static void
1912 write_bare_function_type (const tree type, const int include_return_type_p,
1913 const tree decl)
1915 int java_method_p;
1917 MANGLE_TRACE_TREE ("bare-function-type", type);
1919 /* Detect Java methods and emit special encoding. */
1920 if (decl != NULL
1921 && DECL_FUNCTION_MEMBER_P (decl)
1922 && TYPE_FOR_JAVA (DECL_CONTEXT (decl))
1923 && !DECL_CONSTRUCTOR_P (decl)
1924 && !DECL_DESTRUCTOR_P (decl)
1925 && !DECL_CONV_FN_P (decl))
1927 java_method_p = 1;
1928 write_char ('J');
1930 else
1932 java_method_p = 0;
1935 /* Mangle the return type, if requested. */
1936 if (include_return_type_p || java_method_p)
1937 write_type (TREE_TYPE (type));
1939 /* Now mangle the types of the arguments. */
1940 write_method_parms (TYPE_ARG_TYPES (type),
1941 TREE_CODE (type) == METHOD_TYPE,
1942 decl);
1945 /* Write the mangled representation of a method parameter list of
1946 types given in PARM_TYPES. If METHOD_P is nonzero, the function is
1947 considered a non-static method, and the this parameter is omitted.
1948 If non-NULL, DECL is the FUNCTION_DECL for the function whose
1949 parameters are being emitted. */
1951 static void
1952 write_method_parms (tree parm_types, const int method_p, const tree decl)
1954 tree first_parm_type;
1955 tree parm_decl = decl ? DECL_ARGUMENTS (decl) : NULL_TREE;
1957 /* Assume this parameter type list is variable-length. If it ends
1958 with a void type, then it's not. */
1959 int varargs_p = 1;
1961 /* If this is a member function, skip the first arg, which is the
1962 this pointer.
1963 "Member functions do not encode the type of their implicit this
1964 parameter."
1966 Similarly, there's no need to mangle artificial parameters, like
1967 the VTT parameters for constructors and destructors. */
1968 if (method_p)
1970 parm_types = TREE_CHAIN (parm_types);
1971 parm_decl = parm_decl ? TREE_CHAIN (parm_decl) : NULL_TREE;
1973 while (parm_decl && DECL_ARTIFICIAL (parm_decl))
1975 parm_types = TREE_CHAIN (parm_types);
1976 parm_decl = TREE_CHAIN (parm_decl);
1980 for (first_parm_type = parm_types;
1981 parm_types;
1982 parm_types = TREE_CHAIN (parm_types))
1984 tree parm = TREE_VALUE (parm_types);
1985 if (parm == void_type_node)
1987 /* "Empty parameter lists, whether declared as () or
1988 conventionally as (void), are encoded with a void parameter
1989 (v)." */
1990 if (parm_types == first_parm_type)
1991 write_type (parm);
1992 /* If the parm list is terminated with a void type, it's
1993 fixed-length. */
1994 varargs_p = 0;
1995 /* A void type better be the last one. */
1996 gcc_assert (TREE_CHAIN (parm_types) == NULL);
1998 else
1999 write_type (parm);
2002 if (varargs_p)
2003 /* <builtin-type> ::= z # ellipsis */
2004 write_char ('z');
2007 /* <class-enum-type> ::= <name> */
2009 static void
2010 write_class_enum_type (const tree type)
2012 write_name (TYPE_NAME (type), /*ignore_local_scope=*/0);
2015 /* Non-terminal <template-args>. ARGS is a TREE_VEC of template
2016 arguments.
2018 <template-args> ::= I <template-arg>+ E */
2020 static void
2021 write_template_args (tree args)
2023 int i;
2024 int length = TREE_VEC_LENGTH (args);
2026 MANGLE_TRACE_TREE ("template-args", args);
2028 write_char ('I');
2030 gcc_assert (length > 0);
2032 if (TREE_CODE (TREE_VEC_ELT (args, 0)) == TREE_VEC)
2034 /* We have nested template args. We want the innermost template
2035 argument list. */
2036 args = TREE_VEC_ELT (args, length - 1);
2037 length = TREE_VEC_LENGTH (args);
2039 for (i = 0; i < length; ++i)
2040 write_template_arg (TREE_VEC_ELT (args, i));
2042 write_char ('E');
2045 /* <expression> ::= <unary operator-name> <expression>
2046 ::= <binary operator-name> <expression> <expression>
2047 ::= <expr-primary>
2049 <expr-primary> ::= <template-param>
2050 ::= L <type> <value number> E # literal
2051 ::= L <mangled-name> E # external name
2052 ::= sr <type> <unqualified-name>
2053 ::= sr <type> <unqualified-name> <template-args> */
2055 static void
2056 write_expression (tree expr)
2058 enum tree_code code;
2060 code = TREE_CODE (expr);
2062 /* Skip NOP_EXPRs. They can occur when (say) a pointer argument
2063 is converted (via qualification conversions) to another
2064 type. */
2065 while (TREE_CODE (expr) == NOP_EXPR
2066 || TREE_CODE (expr) == NON_LVALUE_EXPR)
2068 expr = TREE_OPERAND (expr, 0);
2069 code = TREE_CODE (expr);
2072 if (code == BASELINK)
2074 expr = BASELINK_FUNCTIONS (expr);
2075 code = TREE_CODE (expr);
2078 /* Handle pointers-to-members by making them look like expression
2079 nodes. */
2080 if (code == PTRMEM_CST)
2082 expr = build_nt (ADDR_EXPR,
2083 build_qualified_name (/*type=*/NULL_TREE,
2084 PTRMEM_CST_CLASS (expr),
2085 PTRMEM_CST_MEMBER (expr),
2086 /*template_p=*/false));
2087 code = TREE_CODE (expr);
2090 /* Handle template parameters. */
2091 if (code == TEMPLATE_TYPE_PARM
2092 || code == TEMPLATE_TEMPLATE_PARM
2093 || code == BOUND_TEMPLATE_TEMPLATE_PARM
2094 || code == TEMPLATE_PARM_INDEX)
2095 write_template_param (expr);
2096 /* Handle literals. */
2097 else if (TREE_CODE_CLASS (code) == tcc_constant
2098 || (abi_version_at_least (2) && code == CONST_DECL))
2099 write_template_arg_literal (expr);
2100 else if (DECL_P (expr))
2102 /* G++ 3.2 incorrectly mangled non-type template arguments of
2103 enumeration type using their names. */
2104 if (code == CONST_DECL)
2105 G.need_abi_warning = 1;
2106 write_char ('L');
2107 write_mangled_name (expr, false);
2108 write_char ('E');
2110 else if (TREE_CODE (expr) == SIZEOF_EXPR
2111 && TYPE_P (TREE_OPERAND (expr, 0)))
2113 write_string ("st");
2114 write_type (TREE_OPERAND (expr, 0));
2116 else if (abi_version_at_least (2) && TREE_CODE (expr) == SCOPE_REF)
2118 tree scope = TREE_OPERAND (expr, 0);
2119 tree member = TREE_OPERAND (expr, 1);
2121 /* If the MEMBER is a real declaration, then the qualifying
2122 scope was not dependent. Ideally, we would not have a
2123 SCOPE_REF in those cases, but sometimes we do. If the second
2124 argument is a DECL, then the name must not have been
2125 dependent. */
2126 if (DECL_P (member))
2127 write_expression (member);
2128 else
2130 tree template_args;
2132 write_string ("sr");
2133 write_type (scope);
2134 /* If MEMBER is a template-id, separate the template
2135 from the arguments. */
2136 if (TREE_CODE (member) == TEMPLATE_ID_EXPR)
2138 template_args = TREE_OPERAND (member, 1);
2139 member = TREE_OPERAND (member, 0);
2141 else
2142 template_args = NULL_TREE;
2143 /* Write out the name of the MEMBER. */
2144 if (IDENTIFIER_TYPENAME_P (member))
2145 write_conversion_operator_name (TREE_TYPE (member));
2146 else if (IDENTIFIER_OPNAME_P (member))
2148 int i;
2149 const char *mangled_name = NULL;
2151 /* Unfortunately, there is no easy way to go from the
2152 name of the operator back to the corresponding tree
2153 code. */
2154 for (i = 0; i < LAST_CPLUS_TREE_CODE; ++i)
2155 if (operator_name_info[i].identifier == member)
2157 /* The ABI says that we prefer binary operator
2158 names to unary operator names. */
2159 if (operator_name_info[i].arity == 2)
2161 mangled_name = operator_name_info[i].mangled_name;
2162 break;
2164 else if (!mangled_name)
2165 mangled_name = operator_name_info[i].mangled_name;
2167 else if (assignment_operator_name_info[i].identifier
2168 == member)
2170 mangled_name
2171 = assignment_operator_name_info[i].mangled_name;
2172 break;
2174 write_string (mangled_name);
2176 else
2177 write_source_name (member);
2178 /* Write out the template arguments. */
2179 if (template_args)
2180 write_template_args (template_args);
2183 else
2185 int i;
2187 /* When we bind a variable or function to a non-type template
2188 argument with reference type, we create an ADDR_EXPR to show
2189 the fact that the entity's address has been taken. But, we
2190 don't actually want to output a mangling code for the `&'. */
2191 if (TREE_CODE (expr) == ADDR_EXPR
2192 && TREE_TYPE (expr)
2193 && TREE_CODE (TREE_TYPE (expr)) == REFERENCE_TYPE)
2195 expr = TREE_OPERAND (expr, 0);
2196 if (DECL_P (expr))
2198 write_expression (expr);
2199 return;
2202 code = TREE_CODE (expr);
2205 /* If it wasn't any of those, recursively expand the expression. */
2206 write_string (operator_name_info[(int) code].mangled_name);
2208 switch (code)
2210 case CALL_EXPR:
2211 sorry ("call_expr cannot be mangled due to a defect in the C++ ABI");
2212 break;
2214 case CAST_EXPR:
2215 write_type (TREE_TYPE (expr));
2216 /* There is no way to mangle a zero-operand cast like
2217 "T()". */
2218 if (!TREE_OPERAND (expr, 0))
2219 sorry ("zero-operand casts cannot be mangled due to a defect "
2220 "in the C++ ABI");
2221 else
2222 write_expression (TREE_VALUE (TREE_OPERAND (expr, 0)));
2223 break;
2225 case STATIC_CAST_EXPR:
2226 case CONST_CAST_EXPR:
2227 write_type (TREE_TYPE (expr));
2228 write_expression (TREE_OPERAND (expr, 0));
2229 break;
2232 /* Handle pointers-to-members specially. */
2233 case SCOPE_REF:
2234 write_type (TREE_OPERAND (expr, 0));
2235 if (TREE_CODE (TREE_OPERAND (expr, 1)) == IDENTIFIER_NODE)
2236 write_source_name (TREE_OPERAND (expr, 1));
2237 else if (TREE_CODE (TREE_OPERAND (expr, 1)) == TEMPLATE_ID_EXPR)
2239 tree template_id;
2240 tree name;
2242 template_id = TREE_OPERAND (expr, 1);
2243 name = TREE_OPERAND (template_id, 0);
2244 /* FIXME: What about operators? */
2245 gcc_assert (TREE_CODE (name) == IDENTIFIER_NODE);
2246 write_source_name (TREE_OPERAND (template_id, 0));
2247 write_template_args (TREE_OPERAND (template_id, 1));
2249 else
2251 /* G++ 3.2 incorrectly put out both the "sr" code and
2252 the nested name of the qualified name. */
2253 G.need_abi_warning = 1;
2254 write_encoding (TREE_OPERAND (expr, 1));
2256 break;
2258 default:
2259 for (i = 0; i < TREE_OPERAND_LENGTH (expr); ++i)
2261 tree operand = TREE_OPERAND (expr, i);
2262 /* As a GNU extension, the middle operand of a
2263 conditional may be omitted. Since expression
2264 manglings are supposed to represent the input token
2265 stream, there's no good way to mangle such an
2266 expression without extending the C++ ABI. */
2267 if (code == COND_EXPR && i == 1 && !operand)
2269 error ("omitted middle operand to %<?:%> operand "
2270 "cannot be mangled");
2271 continue;
2273 write_expression (operand);
2279 /* Literal subcase of non-terminal <template-arg>.
2281 "Literal arguments, e.g. "A<42L>", are encoded with their type
2282 and value. Negative integer values are preceded with "n"; for
2283 example, "A<-42L>" becomes "1AILln42EE". The bool value false is
2284 encoded as 0, true as 1." */
2286 static void
2287 write_template_arg_literal (const tree value)
2289 write_char ('L');
2290 write_type (TREE_TYPE (value));
2292 switch (TREE_CODE (value))
2294 case CONST_DECL:
2295 write_integer_cst (DECL_INITIAL (value));
2296 break;
2298 case INTEGER_CST:
2299 gcc_assert (!same_type_p (TREE_TYPE (value), boolean_type_node)
2300 || integer_zerop (value) || integer_onep (value));
2301 write_integer_cst (value);
2302 break;
2304 case REAL_CST:
2305 write_real_cst (value);
2306 break;
2308 default:
2309 gcc_unreachable ();
2312 write_char ('E');
2315 /* Non-terminal <template-arg>.
2317 <template-arg> ::= <type> # type
2318 ::= L <type> </value/ number> E # literal
2319 ::= LZ <name> E # external name
2320 ::= X <expression> E # expression */
2322 static void
2323 write_template_arg (tree node)
2325 enum tree_code code = TREE_CODE (node);
2327 MANGLE_TRACE_TREE ("template-arg", node);
2329 /* A template template parameter's argument list contains TREE_LIST
2330 nodes of which the value field is the actual argument. */
2331 if (code == TREE_LIST)
2333 node = TREE_VALUE (node);
2334 /* If it's a decl, deal with its type instead. */
2335 if (DECL_P (node))
2337 node = TREE_TYPE (node);
2338 code = TREE_CODE (node);
2342 if (TREE_CODE (node) == NOP_EXPR
2343 && TREE_CODE (TREE_TYPE (node)) == REFERENCE_TYPE)
2345 /* Template parameters can be of reference type. To maintain
2346 internal consistency, such arguments use a conversion from
2347 address of object to reference type. */
2348 gcc_assert (TREE_CODE (TREE_OPERAND (node, 0)) == ADDR_EXPR);
2349 if (abi_version_at_least (2))
2350 node = TREE_OPERAND (TREE_OPERAND (node, 0), 0);
2351 else
2352 G.need_abi_warning = 1;
2355 if (ARGUMENT_PACK_P (node))
2357 /* Expand the template argument pack. */
2358 tree args = ARGUMENT_PACK_ARGS (node);
2359 int i, length = TREE_VEC_LENGTH (args);
2360 for (i = 0; i < length; ++i)
2361 write_template_arg (TREE_VEC_ELT (args, i));
2363 else if (TYPE_P (node))
2364 write_type (node);
2365 else if (code == TEMPLATE_DECL)
2366 /* A template appearing as a template arg is a template template arg. */
2367 write_template_template_arg (node);
2368 else if ((TREE_CODE_CLASS (code) == tcc_constant && code != PTRMEM_CST)
2369 || (abi_version_at_least (2) && code == CONST_DECL))
2370 write_template_arg_literal (node);
2371 else if (DECL_P (node))
2373 /* Until ABI version 2, non-type template arguments of
2374 enumeration type were mangled using their names. */
2375 if (code == CONST_DECL && !abi_version_at_least (2))
2376 G.need_abi_warning = 1;
2377 write_char ('L');
2378 /* Until ABI version 3, the underscore before the mangled name
2379 was incorrectly omitted. */
2380 if (!abi_version_at_least (3))
2382 G.need_abi_warning = 1;
2383 write_char ('Z');
2385 else
2386 write_string ("_Z");
2387 write_encoding (node);
2388 write_char ('E');
2390 else
2392 /* Template arguments may be expressions. */
2393 write_char ('X');
2394 write_expression (node);
2395 write_char ('E');
2399 /* <template-template-arg>
2400 ::= <name>
2401 ::= <substitution> */
2403 static void
2404 write_template_template_arg (const tree decl)
2406 MANGLE_TRACE_TREE ("template-template-arg", decl);
2408 if (find_substitution (decl))
2409 return;
2410 write_name (decl, /*ignore_local_scope=*/0);
2411 add_substitution (decl);
2415 /* Non-terminal <array-type>. TYPE is an ARRAY_TYPE.
2417 <array-type> ::= A [</dimension/ number>] _ </element/ type>
2418 ::= A <expression> _ </element/ type>
2420 "Array types encode the dimension (number of elements) and the
2421 element type. For variable length arrays, the dimension (but not
2422 the '_' separator) is omitted." */
2424 static void
2425 write_array_type (const tree type)
2427 write_char ('A');
2428 if (TYPE_DOMAIN (type))
2430 tree index_type;
2431 tree max;
2433 index_type = TYPE_DOMAIN (type);
2434 /* The INDEX_TYPE gives the upper and lower bounds of the
2435 array. */
2436 max = TYPE_MAX_VALUE (index_type);
2437 if (TREE_CODE (max) == INTEGER_CST)
2439 /* The ABI specifies that we should mangle the number of
2440 elements in the array, not the largest allowed index. */
2441 max = size_binop (PLUS_EXPR, max, size_one_node);
2442 write_unsigned_number (tree_low_cst (max, 1));
2444 else
2446 max = TREE_OPERAND (max, 0);
2447 if (!abi_version_at_least (2))
2449 /* value_dependent_expression_p presumes nothing is
2450 dependent when PROCESSING_TEMPLATE_DECL is zero. */
2451 ++processing_template_decl;
2452 if (!value_dependent_expression_p (max))
2453 G.need_abi_warning = 1;
2454 --processing_template_decl;
2456 write_expression (max);
2460 write_char ('_');
2461 write_type (TREE_TYPE (type));
2464 /* Non-terminal <pointer-to-member-type> for pointer-to-member
2465 variables. TYPE is a pointer-to-member POINTER_TYPE.
2467 <pointer-to-member-type> ::= M </class/ type> </member/ type> */
2469 static void
2470 write_pointer_to_member_type (const tree type)
2472 write_char ('M');
2473 write_type (TYPE_PTRMEM_CLASS_TYPE (type));
2474 write_type (TYPE_PTRMEM_POINTED_TO_TYPE (type));
2477 /* Non-terminal <template-param>. PARM is a TEMPLATE_TYPE_PARM,
2478 TEMPLATE_TEMPLATE_PARM, BOUND_TEMPLATE_TEMPLATE_PARM or a
2479 TEMPLATE_PARM_INDEX.
2481 <template-param> ::= T </parameter/ number> _ */
2483 static void
2484 write_template_param (const tree parm)
2486 int parm_index;
2487 int parm_level;
2488 tree parm_type = NULL_TREE;
2490 MANGLE_TRACE_TREE ("template-parm", parm);
2492 switch (TREE_CODE (parm))
2494 case TEMPLATE_TYPE_PARM:
2495 case TEMPLATE_TEMPLATE_PARM:
2496 case BOUND_TEMPLATE_TEMPLATE_PARM:
2497 parm_index = TEMPLATE_TYPE_IDX (parm);
2498 parm_level = TEMPLATE_TYPE_LEVEL (parm);
2499 break;
2501 case TEMPLATE_PARM_INDEX:
2502 parm_index = TEMPLATE_PARM_IDX (parm);
2503 parm_level = TEMPLATE_PARM_LEVEL (parm);
2504 parm_type = TREE_TYPE (TEMPLATE_PARM_DECL (parm));
2505 break;
2507 default:
2508 gcc_unreachable ();
2511 write_char ('T');
2512 /* NUMBER as it appears in the mangling is (-1)-indexed, with the
2513 earliest template param denoted by `_'. */
2514 if (parm_index > 0)
2515 write_unsigned_number (parm_index - 1);
2516 write_char ('_');
2519 /* <template-template-param>
2520 ::= <template-param>
2521 ::= <substitution> */
2523 static void
2524 write_template_template_param (const tree parm)
2526 tree template = NULL_TREE;
2528 /* PARM, a TEMPLATE_TEMPLATE_PARM, is an instantiation of the
2529 template template parameter. The substitution candidate here is
2530 only the template. */
2531 if (TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
2533 template
2534 = TI_TEMPLATE (TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (parm));
2535 if (find_substitution (template))
2536 return;
2539 /* <template-param> encodes only the template parameter position,
2540 not its template arguments, which is fine here. */
2541 write_template_param (parm);
2542 if (template)
2543 add_substitution (template);
2546 /* Non-terminal <substitution>.
2548 <substitution> ::= S <seq-id> _
2549 ::= S_ */
2551 static void
2552 write_substitution (const int seq_id)
2554 MANGLE_TRACE ("substitution", "");
2556 write_char ('S');
2557 if (seq_id > 0)
2558 write_number (seq_id - 1, /*unsigned=*/1, 36);
2559 write_char ('_');
2562 /* Start mangling ENTITY. */
2564 static inline void
2565 start_mangling (const tree entity, const bool ident_p)
2567 G.entity = entity;
2568 G.need_abi_warning = false;
2569 if (!ident_p)
2571 obstack_free (&name_obstack, name_base);
2572 mangle_obstack = &name_obstack;
2573 name_base = obstack_alloc (&name_obstack, 0);
2575 else
2576 mangle_obstack = &ident_hash->stack;
2579 /* Done with mangling. Return the generated mangled name. If WARN is
2580 true, and the name of G.entity will be mangled differently in a
2581 future version of the ABI, issue a warning. */
2583 static inline const char *
2584 finish_mangling (const bool warn)
2586 if (warn_abi && warn && G.need_abi_warning)
2587 warning (OPT_Wabi, "the mangled name of %qD will change in a future "
2588 "version of GCC",
2589 G.entity);
2591 /* Clear all the substitutions. */
2592 VEC_truncate (tree, G.substitutions, 0);
2594 /* Null-terminate the string. */
2595 write_char ('\0');
2597 return (const char *) obstack_finish (mangle_obstack);
2600 /* Initialize data structures for mangling. */
2602 void
2603 init_mangle (void)
2605 gcc_obstack_init (&name_obstack);
2606 name_base = obstack_alloc (&name_obstack, 0);
2607 G.substitutions = NULL;
2609 /* Cache these identifiers for quick comparison when checking for
2610 standard substitutions. */
2611 subst_identifiers[SUBID_ALLOCATOR] = get_identifier ("allocator");
2612 subst_identifiers[SUBID_BASIC_STRING] = get_identifier ("basic_string");
2613 subst_identifiers[SUBID_CHAR_TRAITS] = get_identifier ("char_traits");
2614 subst_identifiers[SUBID_BASIC_ISTREAM] = get_identifier ("basic_istream");
2615 subst_identifiers[SUBID_BASIC_OSTREAM] = get_identifier ("basic_ostream");
2616 subst_identifiers[SUBID_BASIC_IOSTREAM] = get_identifier ("basic_iostream");
2619 /* Generate the mangled name of DECL. */
2621 static const char *
2622 mangle_decl_string (const tree decl)
2624 const char *result;
2626 start_mangling (decl, /*ident_p=*/true);
2628 if (TREE_CODE (decl) == TYPE_DECL)
2629 write_type (TREE_TYPE (decl));
2630 else
2631 write_mangled_name (decl, true);
2633 result = finish_mangling (/*warn=*/true);
2634 if (DEBUG_MANGLE)
2635 fprintf (stderr, "mangle_decl_string = '%s'\n\n", result);
2636 return result;
2639 /* Like get_identifier, except that NAME is assumed to have been
2640 allocated on the obstack used by the identifier hash table. */
2642 static inline tree
2643 get_identifier_nocopy (const char *name)
2645 hashnode ht_node = ht_lookup (ident_hash, (const unsigned char *) name,
2646 strlen (name), HT_ALLOCED);
2647 return HT_IDENT_TO_GCC_IDENT (ht_node);
2650 /* Create an identifier for the external mangled name of DECL. */
2652 void
2653 mangle_decl (const tree decl)
2655 tree id = get_identifier_nocopy (mangle_decl_string (decl));
2656 id = targetm.mangle_decl_assembler_name (decl, id);
2657 SET_DECL_ASSEMBLER_NAME (decl, id);
2660 /* Generate the mangled representation of TYPE. */
2662 const char *
2663 mangle_type_string (const tree type)
2665 const char *result;
2667 start_mangling (type, /*ident_p=*/false);
2668 write_type (type);
2669 result = finish_mangling (/*warn=*/false);
2670 if (DEBUG_MANGLE)
2671 fprintf (stderr, "mangle_type_string = '%s'\n\n", result);
2672 return result;
2675 /* Create an identifier for the mangled name of a special component
2676 for belonging to TYPE. CODE is the ABI-specified code for this
2677 component. */
2679 static tree
2680 mangle_special_for_type (const tree type, const char *code)
2682 const char *result;
2684 /* We don't have an actual decl here for the special component, so
2685 we can't just process the <encoded-name>. Instead, fake it. */
2686 start_mangling (type, /*ident_p=*/true);
2688 /* Start the mangling. */
2689 write_string ("_Z");
2690 write_string (code);
2692 /* Add the type. */
2693 write_type (type);
2694 result = finish_mangling (/*warn=*/false);
2696 if (DEBUG_MANGLE)
2697 fprintf (stderr, "mangle_special_for_type = %s\n\n", result);
2699 return get_identifier_nocopy (result);
2702 /* Create an identifier for the mangled representation of the typeinfo
2703 structure for TYPE. */
2705 tree
2706 mangle_typeinfo_for_type (const tree type)
2708 return mangle_special_for_type (type, "TI");
2711 /* Create an identifier for the mangled name of the NTBS containing
2712 the mangled name of TYPE. */
2714 tree
2715 mangle_typeinfo_string_for_type (const tree type)
2717 return mangle_special_for_type (type, "TS");
2720 /* Create an identifier for the mangled name of the vtable for TYPE. */
2722 tree
2723 mangle_vtbl_for_type (const tree type)
2725 return mangle_special_for_type (type, "TV");
2728 /* Returns an identifier for the mangled name of the VTT for TYPE. */
2730 tree
2731 mangle_vtt_for_type (const tree type)
2733 return mangle_special_for_type (type, "TT");
2736 /* Return an identifier for a construction vtable group. TYPE is
2737 the most derived class in the hierarchy; BINFO is the base
2738 subobject for which this construction vtable group will be used.
2740 This mangling isn't part of the ABI specification; in the ABI
2741 specification, the vtable group is dumped in the same COMDAT as the
2742 main vtable, and is referenced only from that vtable, so it doesn't
2743 need an external name. For binary formats without COMDAT sections,
2744 though, we need external names for the vtable groups.
2746 We use the production
2748 <special-name> ::= CT <type> <offset number> _ <base type> */
2750 tree
2751 mangle_ctor_vtbl_for_type (const tree type, const tree binfo)
2753 const char *result;
2755 start_mangling (type, /*ident_p=*/true);
2757 write_string ("_Z");
2758 write_string ("TC");
2759 write_type (type);
2760 write_integer_cst (BINFO_OFFSET (binfo));
2761 write_char ('_');
2762 write_type (BINFO_TYPE (binfo));
2764 result = finish_mangling (/*warn=*/false);
2765 if (DEBUG_MANGLE)
2766 fprintf (stderr, "mangle_ctor_vtbl_for_type = %s\n\n", result);
2767 return get_identifier_nocopy (result);
2770 /* Mangle a this pointer or result pointer adjustment.
2772 <call-offset> ::= h <fixed offset number> _
2773 ::= v <fixed offset number> _ <virtual offset number> _ */
2775 static void
2776 mangle_call_offset (const tree fixed_offset, const tree virtual_offset)
2778 write_char (virtual_offset ? 'v' : 'h');
2780 /* For either flavor, write the fixed offset. */
2781 write_integer_cst (fixed_offset);
2782 write_char ('_');
2784 /* For a virtual thunk, add the virtual offset. */
2785 if (virtual_offset)
2787 write_integer_cst (virtual_offset);
2788 write_char ('_');
2792 /* Return an identifier for the mangled name of a this-adjusting or
2793 covariant thunk to FN_DECL. FIXED_OFFSET is the initial adjustment
2794 to this used to find the vptr. If VIRTUAL_OFFSET is non-NULL, this
2795 is a virtual thunk, and it is the vtbl offset in
2796 bytes. THIS_ADJUSTING is nonzero for a this adjusting thunk and
2797 zero for a covariant thunk. Note, that FN_DECL might be a covariant
2798 thunk itself. A covariant thunk name always includes the adjustment
2799 for the this pointer, even if there is none.
2801 <special-name> ::= T <call-offset> <base encoding>
2802 ::= Tc <this_adjust call-offset> <result_adjust call-offset>
2803 <base encoding> */
2805 tree
2806 mangle_thunk (tree fn_decl, const int this_adjusting, tree fixed_offset,
2807 tree virtual_offset)
2809 const char *result;
2811 start_mangling (fn_decl, /*ident_p=*/true);
2813 write_string ("_Z");
2814 write_char ('T');
2816 if (!this_adjusting)
2818 /* Covariant thunk with no this adjustment */
2819 write_char ('c');
2820 mangle_call_offset (integer_zero_node, NULL_TREE);
2821 mangle_call_offset (fixed_offset, virtual_offset);
2823 else if (!DECL_THUNK_P (fn_decl))
2824 /* Plain this adjusting thunk. */
2825 mangle_call_offset (fixed_offset, virtual_offset);
2826 else
2828 /* This adjusting thunk to covariant thunk. */
2829 write_char ('c');
2830 mangle_call_offset (fixed_offset, virtual_offset);
2831 fixed_offset = ssize_int (THUNK_FIXED_OFFSET (fn_decl));
2832 virtual_offset = THUNK_VIRTUAL_OFFSET (fn_decl);
2833 if (virtual_offset)
2834 virtual_offset = BINFO_VPTR_FIELD (virtual_offset);
2835 mangle_call_offset (fixed_offset, virtual_offset);
2836 fn_decl = THUNK_TARGET (fn_decl);
2839 /* Scoped name. */
2840 write_encoding (fn_decl);
2842 result = finish_mangling (/*warn=*/false);
2843 if (DEBUG_MANGLE)
2844 fprintf (stderr, "mangle_thunk = %s\n\n", result);
2845 return get_identifier_nocopy (result);
2848 /* This hash table maps TYPEs to the IDENTIFIER for a conversion
2849 operator to TYPE. The nodes are IDENTIFIERs whose TREE_TYPE is the
2850 TYPE. */
2852 static GTY ((param_is (union tree_node))) htab_t conv_type_names;
2854 /* Hash a node (VAL1) in the table. */
2856 static hashval_t
2857 hash_type (const void *val)
2859 return (hashval_t) TYPE_UID (TREE_TYPE ((const_tree) val));
2862 /* Compare VAL1 (a node in the table) with VAL2 (a TYPE). */
2864 static int
2865 compare_type (const void *val1, const void *val2)
2867 return TREE_TYPE ((const_tree) val1) == (const_tree) val2;
2870 /* Return an identifier for the mangled unqualified name for a
2871 conversion operator to TYPE. This mangling is not specified by the
2872 ABI spec; it is only used internally. */
2874 tree
2875 mangle_conv_op_name_for_type (const tree type)
2877 void **slot;
2878 tree identifier;
2880 if (type == error_mark_node)
2881 return error_mark_node;
2883 if (conv_type_names == NULL)
2884 conv_type_names = htab_create_ggc (31, &hash_type, &compare_type, NULL);
2886 slot = htab_find_slot_with_hash (conv_type_names, type,
2887 (hashval_t) TYPE_UID (type), INSERT);
2888 identifier = (tree)*slot;
2889 if (!identifier)
2891 char buffer[64];
2893 /* Create a unique name corresponding to TYPE. */
2894 sprintf (buffer, "operator %lu",
2895 (unsigned long) htab_elements (conv_type_names));
2896 identifier = get_identifier (buffer);
2897 *slot = identifier;
2899 /* Hang TYPE off the identifier so it can be found easily later
2900 when performing conversions. */
2901 TREE_TYPE (identifier) = type;
2903 /* Set bits on the identifier so we know later it's a conversion. */
2904 IDENTIFIER_OPNAME_P (identifier) = 1;
2905 IDENTIFIER_TYPENAME_P (identifier) = 1;
2908 return identifier;
2911 /* Return an identifier for the name of an initialization guard
2912 variable for indicated VARIABLE. */
2914 tree
2915 mangle_guard_variable (const tree variable)
2917 start_mangling (variable, /*ident_p=*/true);
2918 write_string ("_ZGV");
2919 if (strncmp (IDENTIFIER_POINTER (DECL_NAME (variable)), "_ZGR", 4) == 0)
2920 /* The name of a guard variable for a reference temporary should refer
2921 to the reference, not the temporary. */
2922 write_string (IDENTIFIER_POINTER (DECL_NAME (variable)) + 4);
2923 else
2924 write_name (variable, /*ignore_local_scope=*/0);
2925 return get_identifier_nocopy (finish_mangling (/*warn=*/false));
2928 /* Return an identifier for the name of a temporary variable used to
2929 initialize a static reference. This isn't part of the ABI, but we might
2930 as well call them something readable. */
2932 tree
2933 mangle_ref_init_variable (const tree variable)
2935 start_mangling (variable, /*ident_p=*/true);
2936 write_string ("_ZGR");
2937 write_name (variable, /*ignore_local_scope=*/0);
2938 return get_identifier_nocopy (finish_mangling (/*warn=*/false));
2942 /* Foreign language type mangling section. */
2944 /* How to write the type codes for the integer Java type. */
2946 static void
2947 write_java_integer_type_codes (const tree type)
2949 if (type == java_int_type_node)
2950 write_char ('i');
2951 else if (type == java_short_type_node)
2952 write_char ('s');
2953 else if (type == java_byte_type_node)
2954 write_char ('c');
2955 else if (type == java_char_type_node)
2956 write_char ('w');
2957 else if (type == java_long_type_node)
2958 write_char ('x');
2959 else if (type == java_boolean_type_node)
2960 write_char ('b');
2961 else
2962 gcc_unreachable ();
2965 #include "gt-cp-mangle.h"