Merged revisions 143552,143554,143557,143560,143562,143564-143567,143570-143573,14357...
[official-gcc.git] / gcc / cp / mangle.c
blobc72747c768e2590a993ca80d247ce6f2d7d7095a
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 "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 /* Indices into subst_identifiers. These are identifiers used in
121 special substitution rules. */
122 typedef enum
124 SUBID_ALLOCATOR,
125 SUBID_BASIC_STRING,
126 SUBID_CHAR_TRAITS,
127 SUBID_BASIC_ISTREAM,
128 SUBID_BASIC_OSTREAM,
129 SUBID_BASIC_IOSTREAM,
130 SUBID_MAX
132 substitution_identifier_index_t;
134 /* For quick substitution checks, look up these common identifiers
135 once only. */
136 static GTY(()) tree subst_identifiers[SUBID_MAX];
138 /* Single-letter codes for builtin integer types, defined in
139 <builtin-type>. These are indexed by integer_type_kind values. */
140 static const char
141 integer_type_codes[itk_none] =
143 'c', /* itk_char */
144 'a', /* itk_signed_char */
145 'h', /* itk_unsigned_char */
146 's', /* itk_short */
147 't', /* itk_unsigned_short */
148 'i', /* itk_int */
149 'j', /* itk_unsigned_int */
150 'l', /* itk_long */
151 'm', /* itk_unsigned_long */
152 'x', /* itk_long_long */
153 'y' /* itk_unsigned_long_long */
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 int hwint_to_ascii (unsigned HOST_WIDE_INT, const unsigned int, char *,
183 const unsigned int);
184 static void write_number (unsigned HOST_WIDE_INT, const int,
185 const unsigned int);
186 static void write_integer_cst (const tree);
187 static void write_real_cst (const tree);
188 static void write_identifier (const char *);
189 static void write_special_name_constructor (const tree);
190 static void write_special_name_destructor (const tree);
191 static void write_type (tree);
192 static int write_CV_qualifiers_for_type (const tree);
193 static void write_builtin_type (tree);
194 static void write_function_type (const tree);
195 static void write_bare_function_type (const tree, const int, const tree);
196 static void write_method_parms (tree, const int, const tree);
197 static void write_class_enum_type (const tree);
198 static void write_template_args (tree);
199 static void write_expression (tree);
200 static void write_template_arg_literal (const tree);
201 static void write_template_arg (tree);
202 static void write_template_template_arg (const tree);
203 static void write_array_type (const tree);
204 static void write_pointer_to_member_type (const tree);
205 static void write_template_param (const tree);
206 static void write_template_template_param (const tree);
207 static void write_substitution (const int);
208 static int discriminator_for_local_entity (tree);
209 static int discriminator_for_string_literal (tree, tree);
210 static void write_discriminator (const int);
211 static void write_local_name (const tree, const tree, const tree);
212 static void dump_substitution_candidates (void);
213 static tree mangle_decl_string (const tree);
215 /* Control functions. */
217 static inline void start_mangling (const tree);
218 static inline const char *finish_mangling (const bool);
219 static tree mangle_special_for_type (const tree, const char *);
221 /* Foreign language functions. */
223 static void write_java_integer_type_codes (const tree);
225 /* Append a single character to the end of the mangled
226 representation. */
227 #define write_char(CHAR) \
228 obstack_1grow (mangle_obstack, (CHAR))
230 /* Append a sized buffer to the end of the mangled representation. */
231 #define write_chars(CHAR, LEN) \
232 obstack_grow (mangle_obstack, (CHAR), (LEN))
234 /* Append a NUL-terminated string to the end of the mangled
235 representation. */
236 #define write_string(STRING) \
237 obstack_grow (mangle_obstack, (STRING), strlen (STRING))
239 /* Nonzero if NODE1 and NODE2 are both TREE_LIST nodes and have the
240 same purpose (context, which may be a type) and value (template
241 decl). See write_template_prefix for more information on what this
242 is used for. */
243 #define NESTED_TEMPLATE_MATCH(NODE1, NODE2) \
244 (TREE_CODE (NODE1) == TREE_LIST \
245 && TREE_CODE (NODE2) == TREE_LIST \
246 && ((TYPE_P (TREE_PURPOSE (NODE1)) \
247 && same_type_p (TREE_PURPOSE (NODE1), TREE_PURPOSE (NODE2))) \
248 || TREE_PURPOSE (NODE1) == TREE_PURPOSE (NODE2)) \
249 && TREE_VALUE (NODE1) == TREE_VALUE (NODE2))
251 /* Write out an unsigned quantity in base 10. */
252 #define write_unsigned_number(NUMBER) \
253 write_number ((NUMBER), /*unsigned_p=*/1, 10)
255 /* If DECL is a template instance, return nonzero and, if
256 TEMPLATE_INFO is non-NULL, set *TEMPLATE_INFO to its template info.
257 Otherwise return zero. */
259 static int
260 decl_is_template_id (const tree decl, tree* const template_info)
262 if (TREE_CODE (decl) == TYPE_DECL)
264 /* TYPE_DECLs are handled specially. Look at its type to decide
265 if this is a template instantiation. */
266 const tree type = TREE_TYPE (decl);
268 if (CLASS_TYPE_P (type) && CLASSTYPE_TEMPLATE_ID_P (type))
270 if (template_info != NULL)
271 /* For a templated TYPE_DECL, the template info is hanging
272 off the type. */
273 *template_info = TYPE_TEMPLATE_INFO (type);
274 return 1;
277 else
279 /* Check if this is a primary template. */
280 if (DECL_LANG_SPECIFIC (decl) != NULL
281 && DECL_USE_TEMPLATE (decl)
282 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl))
283 && TREE_CODE (decl) != TEMPLATE_DECL)
285 if (template_info != NULL)
286 /* For most templated decls, the template info is hanging
287 off the decl. */
288 *template_info = DECL_TEMPLATE_INFO (decl);
289 return 1;
293 /* It's not a template id. */
294 return 0;
297 /* Produce debugging output of current substitution candidates. */
299 static void
300 dump_substitution_candidates (void)
302 unsigned i;
303 tree el;
305 fprintf (stderr, " ++ substitutions ");
306 for (i = 0; VEC_iterate (tree, G.substitutions, i, el); ++i)
308 const char *name = "???";
310 if (i > 0)
311 fprintf (stderr, " ");
312 if (DECL_P (el))
313 name = IDENTIFIER_POINTER (DECL_NAME (el));
314 else if (TREE_CODE (el) == TREE_LIST)
315 name = IDENTIFIER_POINTER (DECL_NAME (TREE_VALUE (el)));
316 else if (TYPE_NAME (el))
317 name = IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (el)));
318 fprintf (stderr, " S%d_ = ", i - 1);
319 if (TYPE_P (el) &&
320 (CP_TYPE_RESTRICT_P (el)
321 || CP_TYPE_VOLATILE_P (el)
322 || CP_TYPE_CONST_P (el)))
323 fprintf (stderr, "CV-");
324 fprintf (stderr, "%s (%s at %p)\n",
325 name, tree_code_name[TREE_CODE (el)], (void *) el);
329 /* Both decls and types can be substitution candidates, but sometimes
330 they refer to the same thing. For instance, a TYPE_DECL and
331 RECORD_TYPE for the same class refer to the same thing, and should
332 be treated accordingly in substitutions. This function returns a
333 canonicalized tree node representing NODE that is used when adding
334 and substitution candidates and finding matches. */
336 static inline tree
337 canonicalize_for_substitution (tree node)
339 /* For a TYPE_DECL, use the type instead. */
340 if (TREE_CODE (node) == TYPE_DECL)
341 node = TREE_TYPE (node);
342 if (TYPE_P (node))
343 node = canonical_type_variant (node);
345 return node;
348 /* Add NODE as a substitution candidate. NODE must not already be on
349 the list of candidates. */
351 static void
352 add_substitution (tree node)
354 tree c;
356 if (DEBUG_MANGLE)
357 fprintf (stderr, " ++ add_substitution (%s at %10p)\n",
358 tree_code_name[TREE_CODE (node)], (void *) node);
360 /* Get the canonicalized substitution candidate for NODE. */
361 c = canonicalize_for_substitution (node);
362 if (DEBUG_MANGLE && c != node)
363 fprintf (stderr, " ++ using candidate (%s at %10p)\n",
364 tree_code_name[TREE_CODE (node)], (void *) node);
365 node = c;
367 #if ENABLE_CHECKING
368 /* Make sure NODE isn't already a candidate. */
370 int i;
371 tree candidate;
373 for (i = 0; VEC_iterate (tree, G.substitutions, i, candidate); i++)
375 gcc_assert (!(DECL_P (node) && node == candidate));
376 gcc_assert (!(TYPE_P (node) && TYPE_P (candidate)
377 && same_type_p (node, candidate)));
380 #endif /* ENABLE_CHECKING */
382 /* Put the decl onto the varray of substitution candidates. */
383 VEC_safe_push (tree, gc, G.substitutions, node);
385 if (DEBUG_MANGLE)
386 dump_substitution_candidates ();
389 /* Helper function for find_substitution. Returns nonzero if NODE,
390 which may be a decl or a CLASS_TYPE, is a template-id with template
391 name of substitution_index[INDEX] in the ::std namespace. */
393 static inline int
394 is_std_substitution (const tree node,
395 const substitution_identifier_index_t index)
397 tree type = NULL;
398 tree decl = NULL;
400 if (DECL_P (node))
402 type = TREE_TYPE (node);
403 decl = node;
405 else if (CLASS_TYPE_P (node))
407 type = node;
408 decl = TYPE_NAME (node);
410 else
411 /* These are not the droids you're looking for. */
412 return 0;
414 return (DECL_NAMESPACE_STD_P (CP_DECL_CONTEXT (decl))
415 && TYPE_LANG_SPECIFIC (type)
416 && TYPE_TEMPLATE_INFO (type)
417 && (DECL_NAME (TYPE_TI_TEMPLATE (type))
418 == subst_identifiers[index]));
421 /* Helper function for find_substitution. Returns nonzero if NODE,
422 which may be a decl or a CLASS_TYPE, is the template-id
423 ::std::identifier<char>, where identifier is
424 substitution_index[INDEX]. */
426 static inline int
427 is_std_substitution_char (const tree node,
428 const substitution_identifier_index_t index)
430 tree args;
431 /* Check NODE's name is ::std::identifier. */
432 if (!is_std_substitution (node, index))
433 return 0;
434 /* Figure out its template args. */
435 if (DECL_P (node))
436 args = DECL_TI_ARGS (node);
437 else if (CLASS_TYPE_P (node))
438 args = CLASSTYPE_TI_ARGS (node);
439 else
440 /* Oops, not a template. */
441 return 0;
442 /* NODE's template arg list should be <char>. */
443 return
444 TREE_VEC_LENGTH (args) == 1
445 && TREE_VEC_ELT (args, 0) == char_type_node;
448 /* Check whether a substitution should be used to represent NODE in
449 the mangling.
451 First, check standard special-case substitutions.
453 <substitution> ::= St
454 # ::std
456 ::= Sa
457 # ::std::allocator
459 ::= Sb
460 # ::std::basic_string
462 ::= Ss
463 # ::std::basic_string<char,
464 ::std::char_traits<char>,
465 ::std::allocator<char> >
467 ::= Si
468 # ::std::basic_istream<char, ::std::char_traits<char> >
470 ::= So
471 # ::std::basic_ostream<char, ::std::char_traits<char> >
473 ::= Sd
474 # ::std::basic_iostream<char, ::std::char_traits<char> >
476 Then examine the stack of currently available substitution
477 candidates for entities appearing earlier in the same mangling
479 If a substitution is found, write its mangled representation and
480 return nonzero. If none is found, just return zero. */
482 static int
483 find_substitution (tree node)
485 int i;
486 const int size = VEC_length (tree, G.substitutions);
487 tree decl;
488 tree type;
490 if (DEBUG_MANGLE)
491 fprintf (stderr, " ++ find_substitution (%s at %p)\n",
492 tree_code_name[TREE_CODE (node)], (void *) node);
494 /* Obtain the canonicalized substitution representation for NODE.
495 This is what we'll compare against. */
496 node = canonicalize_for_substitution (node);
498 /* Check for builtin substitutions. */
500 decl = TYPE_P (node) ? TYPE_NAME (node) : node;
501 type = TYPE_P (node) ? node : TREE_TYPE (node);
503 /* Check for std::allocator. */
504 if (decl
505 && is_std_substitution (decl, SUBID_ALLOCATOR)
506 && !CLASSTYPE_USE_TEMPLATE (TREE_TYPE (decl)))
508 write_string ("Sa");
509 return 1;
512 /* Check for std::basic_string. */
513 if (decl && is_std_substitution (decl, SUBID_BASIC_STRING))
515 if (TYPE_P (node))
517 /* If this is a type (i.e. a fully-qualified template-id),
518 check for
519 std::basic_string <char,
520 std::char_traits<char>,
521 std::allocator<char> > . */
522 if (cp_type_quals (type) == TYPE_UNQUALIFIED
523 && CLASSTYPE_USE_TEMPLATE (type))
525 tree args = CLASSTYPE_TI_ARGS (type);
526 if (TREE_VEC_LENGTH (args) == 3
527 && same_type_p (TREE_VEC_ELT (args, 0), char_type_node)
528 && is_std_substitution_char (TREE_VEC_ELT (args, 1),
529 SUBID_CHAR_TRAITS)
530 && is_std_substitution_char (TREE_VEC_ELT (args, 2),
531 SUBID_ALLOCATOR))
533 write_string ("Ss");
534 return 1;
538 else
539 /* Substitute for the template name only if this isn't a type. */
541 write_string ("Sb");
542 return 1;
546 /* Check for basic_{i,o,io}stream. */
547 if (TYPE_P (node)
548 && cp_type_quals (type) == TYPE_UNQUALIFIED
549 && CLASS_TYPE_P (type)
550 && CLASSTYPE_USE_TEMPLATE (type)
551 && CLASSTYPE_TEMPLATE_INFO (type) != NULL)
553 /* First, check for the template
554 args <char, std::char_traits<char> > . */
555 tree args = CLASSTYPE_TI_ARGS (type);
556 if (TREE_VEC_LENGTH (args) == 2
557 && TYPE_P (TREE_VEC_ELT (args, 0))
558 && same_type_p (TREE_VEC_ELT (args, 0), char_type_node)
559 && is_std_substitution_char (TREE_VEC_ELT (args, 1),
560 SUBID_CHAR_TRAITS))
562 /* Got them. Is this basic_istream? */
563 if (is_std_substitution (decl, SUBID_BASIC_ISTREAM))
565 write_string ("Si");
566 return 1;
568 /* Or basic_ostream? */
569 else if (is_std_substitution (decl, SUBID_BASIC_OSTREAM))
571 write_string ("So");
572 return 1;
574 /* Or basic_iostream? */
575 else if (is_std_substitution (decl, SUBID_BASIC_IOSTREAM))
577 write_string ("Sd");
578 return 1;
583 /* Check for namespace std. */
584 if (decl && DECL_NAMESPACE_STD_P (decl))
586 write_string ("St");
587 return 1;
590 /* Now check the list of available substitutions for this mangling
591 operation. */
592 for (i = 0; i < size; ++i)
594 tree candidate = VEC_index (tree, G.substitutions, i);
595 /* NODE is a matched to a candidate if it's the same decl node or
596 if it's the same type. */
597 if (decl == candidate
598 || (TYPE_P (candidate) && type && TYPE_P (type)
599 && same_type_p (type, candidate))
600 || NESTED_TEMPLATE_MATCH (node, candidate))
602 write_substitution (i);
603 return 1;
607 /* No substitution found. */
608 return 0;
612 /* TOP_LEVEL is true, if this is being called at outermost level of
613 mangling. It should be false when mangling a decl appearing in an
614 expression within some other mangling.
616 <mangled-name> ::= _Z <encoding> */
618 static void
619 write_mangled_name (const tree decl, bool top_level)
621 MANGLE_TRACE_TREE ("mangled-name", decl);
623 if (/* The names of `extern "C"' functions are not mangled. */
624 DECL_EXTERN_C_FUNCTION_P (decl)
625 /* But overloaded operator names *are* mangled. */
626 && !DECL_OVERLOADED_OPERATOR_P (decl))
628 unmangled_name:;
630 if (top_level)
631 write_string (IDENTIFIER_POINTER (DECL_NAME (decl)));
632 else
634 /* The standard notes: "The <encoding> of an extern "C"
635 function is treated like global-scope data, i.e. as its
636 <source-name> without a type." We cannot write
637 overloaded operators that way though, because it contains
638 characters invalid in assembler. */
639 if (abi_version_at_least (2))
640 write_string ("_Z");
641 else
642 G.need_abi_warning = true;
643 write_source_name (DECL_NAME (decl));
646 else if (TREE_CODE (decl) == VAR_DECL
647 /* The names of non-static global variables aren't mangled. */
648 && DECL_EXTERNAL_LINKAGE_P (decl)
649 && (CP_DECL_CONTEXT (decl) == global_namespace
650 /* And neither are `extern "C"' variables. */
651 || DECL_EXTERN_C_P (decl)))
653 if (top_level || abi_version_at_least (2))
654 goto unmangled_name;
655 else
657 G.need_abi_warning = true;
658 goto mangled_name;
661 else
663 mangled_name:;
664 write_string ("_Z");
665 write_encoding (decl);
666 if (DECL_LANG_SPECIFIC (decl)
667 && (DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P (decl)
668 || DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (decl)))
669 /* We need a distinct mangled name for these entities, but
670 we should never actually output it. So, we append some
671 characters the assembler won't like. */
672 write_string (" *INTERNAL* ");
676 /* <encoding> ::= <function name> <bare-function-type>
677 ::= <data name> */
679 static void
680 write_encoding (const tree decl)
682 MANGLE_TRACE_TREE ("encoding", decl);
684 if (DECL_LANG_SPECIFIC (decl) && DECL_EXTERN_C_FUNCTION_P (decl))
686 /* For overloaded operators write just the mangled name
687 without arguments. */
688 if (DECL_OVERLOADED_OPERATOR_P (decl))
689 write_name (decl, /*ignore_local_scope=*/0);
690 else
691 write_source_name (DECL_NAME (decl));
692 return;
695 write_name (decl, /*ignore_local_scope=*/0);
696 if (TREE_CODE (decl) == FUNCTION_DECL)
698 tree fn_type;
699 tree d;
701 if (decl_is_template_id (decl, NULL))
703 fn_type = get_mostly_instantiated_function_type (decl);
704 /* FN_TYPE will not have parameter types for in-charge or
705 VTT parameters. Therefore, we pass NULL_TREE to
706 write_bare_function_type -- otherwise, it will get
707 confused about which artificial parameters to skip. */
708 d = NULL_TREE;
710 else
712 fn_type = TREE_TYPE (decl);
713 d = decl;
716 write_bare_function_type (fn_type,
717 (!DECL_CONSTRUCTOR_P (decl)
718 && !DECL_DESTRUCTOR_P (decl)
719 && !DECL_CONV_FN_P (decl)
720 && decl_is_template_id (decl, NULL)),
725 /* <name> ::= <unscoped-name>
726 ::= <unscoped-template-name> <template-args>
727 ::= <nested-name>
728 ::= <local-name>
730 If IGNORE_LOCAL_SCOPE is nonzero, this production of <name> is
731 called from <local-name>, which mangles the enclosing scope
732 elsewhere and then uses this function to mangle just the part
733 underneath the function scope. So don't use the <local-name>
734 production, to avoid an infinite recursion. */
736 static void
737 write_name (tree decl, const int ignore_local_scope)
739 tree context;
741 MANGLE_TRACE_TREE ("name", decl);
743 if (TREE_CODE (decl) == TYPE_DECL)
745 /* In case this is a typedef, fish out the corresponding
746 TYPE_DECL for the main variant. */
747 decl = TYPE_NAME (TYPE_MAIN_VARIANT (TREE_TYPE (decl)));
748 context = TYPE_CONTEXT (TYPE_MAIN_VARIANT (TREE_TYPE (decl)));
750 else
751 context = (DECL_CONTEXT (decl) == NULL) ? NULL : CP_DECL_CONTEXT (decl);
753 /* A decl in :: or ::std scope is treated specially. The former is
754 mangled using <unscoped-name> or <unscoped-template-name>, the
755 latter with a special substitution. Also, a name that is
756 directly in a local function scope is also mangled with
757 <unscoped-name> rather than a full <nested-name>. */
758 if (context == NULL
759 || context == global_namespace
760 || DECL_NAMESPACE_STD_P (context)
761 || (ignore_local_scope && TREE_CODE (context) == FUNCTION_DECL))
763 tree template_info;
764 /* Is this a template instance? */
765 if (decl_is_template_id (decl, &template_info))
767 /* Yes: use <unscoped-template-name>. */
768 write_unscoped_template_name (TI_TEMPLATE (template_info));
769 write_template_args (TI_ARGS (template_info));
771 else
772 /* Everything else gets an <unqualified-name>. */
773 write_unscoped_name (decl);
775 else
777 /* Handle local names, unless we asked not to (that is, invoked
778 under <local-name>, to handle only the part of the name under
779 the local scope). */
780 if (!ignore_local_scope)
782 /* Scan up the list of scope context, looking for a
783 function. If we find one, this entity is in local
784 function scope. local_entity tracks context one scope
785 level down, so it will contain the element that's
786 directly in that function's scope, either decl or one of
787 its enclosing scopes. */
788 tree local_entity = decl;
789 while (context != NULL && context != global_namespace)
791 /* Make sure we're always dealing with decls. */
792 if (context != NULL && TYPE_P (context))
793 context = TYPE_NAME (context);
794 /* Is this a function? */
795 if (TREE_CODE (context) == FUNCTION_DECL)
797 /* Yes, we have local scope. Use the <local-name>
798 production for the innermost function scope. */
799 write_local_name (context, local_entity, decl);
800 return;
802 /* Up one scope level. */
803 local_entity = context;
804 context = CP_DECL_CONTEXT (context);
807 /* No local scope found? Fall through to <nested-name>. */
810 /* Other decls get a <nested-name> to encode their scope. */
811 write_nested_name (decl);
815 /* <unscoped-name> ::= <unqualified-name>
816 ::= St <unqualified-name> # ::std:: */
818 static void
819 write_unscoped_name (const tree decl)
821 tree context = CP_DECL_CONTEXT (decl);
823 MANGLE_TRACE_TREE ("unscoped-name", decl);
825 /* Is DECL in ::std? */
826 if (DECL_NAMESPACE_STD_P (context))
828 write_string ("St");
829 write_unqualified_name (decl);
831 else
833 /* If not, it should be either in the global namespace, or directly
834 in a local function scope. */
835 gcc_assert (context == global_namespace
836 || context == NULL
837 || TREE_CODE (context) == FUNCTION_DECL);
839 write_unqualified_name (decl);
843 /* <unscoped-template-name> ::= <unscoped-name>
844 ::= <substitution> */
846 static void
847 write_unscoped_template_name (const tree decl)
849 MANGLE_TRACE_TREE ("unscoped-template-name", decl);
851 if (find_substitution (decl))
852 return;
853 write_unscoped_name (decl);
854 add_substitution (decl);
857 /* Write the nested name, including CV-qualifiers, of DECL.
859 <nested-name> ::= N [<CV-qualifiers>] <prefix> <unqualified-name> E
860 ::= N [<CV-qualifiers>] <template-prefix> <template-args> E
862 <CV-qualifiers> ::= [r] [V] [K] */
864 static void
865 write_nested_name (const tree decl)
867 tree template_info;
869 MANGLE_TRACE_TREE ("nested-name", decl);
871 write_char ('N');
873 /* Write CV-qualifiers, if this is a member function. */
874 if (TREE_CODE (decl) == FUNCTION_DECL
875 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
877 if (DECL_VOLATILE_MEMFUNC_P (decl))
878 write_char ('V');
879 if (DECL_CONST_MEMFUNC_P (decl))
880 write_char ('K');
883 /* Is this a template instance? */
884 if (decl_is_template_id (decl, &template_info))
886 /* Yes, use <template-prefix>. */
887 write_template_prefix (decl);
888 write_template_args (TI_ARGS (template_info));
890 else if (TREE_CODE (TREE_TYPE (decl)) == TYPENAME_TYPE)
892 tree name = TYPENAME_TYPE_FULLNAME (TREE_TYPE (decl));
893 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
895 write_template_prefix (decl);
896 write_template_args (TREE_OPERAND (name, 1));
898 else
900 write_prefix (CP_DECL_CONTEXT (decl));
901 write_unqualified_name (decl);
904 else
906 /* No, just use <prefix> */
907 write_prefix (DECL_CONTEXT (decl));
908 write_unqualified_name (decl);
910 write_char ('E');
913 /* <prefix> ::= <prefix> <unqualified-name>
914 ::= <template-param>
915 ::= <template-prefix> <template-args>
916 ::= # empty
917 ::= <substitution> */
919 static void
920 write_prefix (const tree node)
922 tree decl;
923 /* Non-NULL if NODE represents a template-id. */
924 tree template_info = NULL;
926 MANGLE_TRACE_TREE ("prefix", node);
928 if (node == NULL
929 || node == global_namespace)
930 return;
932 if (find_substitution (node))
933 return;
935 if (DECL_P (node))
937 /* If this is a function decl, that means we've hit function
938 scope, so this prefix must be for a local name. In this
939 case, we're under the <local-name> production, which encodes
940 the enclosing function scope elsewhere. So don't continue
941 here. */
942 if (TREE_CODE (node) == FUNCTION_DECL)
943 return;
945 decl = node;
946 decl_is_template_id (decl, &template_info);
948 else
950 /* Node is a type. */
951 decl = TYPE_NAME (node);
952 if (CLASSTYPE_TEMPLATE_ID_P (node))
953 template_info = TYPE_TEMPLATE_INFO (node);
956 /* In G++ 3.2, the name of the template parameter was used. */
957 if (TREE_CODE (node) == TEMPLATE_TYPE_PARM
958 && !abi_version_at_least (2))
959 G.need_abi_warning = true;
961 if (TREE_CODE (node) == TEMPLATE_TYPE_PARM
962 && abi_version_at_least (2))
963 write_template_param (node);
964 else if (template_info != NULL)
965 /* Templated. */
967 write_template_prefix (decl);
968 write_template_args (TI_ARGS (template_info));
970 else if (TREE_CODE (TREE_TYPE (decl)) == TYPENAME_TYPE)
972 tree name = TYPENAME_TYPE_FULLNAME (TREE_TYPE (decl));
973 if (TREE_CODE (name) == TEMPLATE_ID_EXPR)
975 write_template_prefix (decl);
976 write_template_args (TREE_OPERAND (name, 1));
978 else
980 write_prefix (CP_DECL_CONTEXT (decl));
981 write_unqualified_name (decl);
984 else
985 /* Not templated. */
987 write_prefix (CP_DECL_CONTEXT (decl));
988 write_unqualified_name (decl);
991 add_substitution (node);
994 /* <template-prefix> ::= <prefix> <template component>
995 ::= <template-param>
996 ::= <substitution> */
998 static void
999 write_template_prefix (const tree node)
1001 tree decl = DECL_P (node) ? node : TYPE_NAME (node);
1002 tree type = DECL_P (node) ? TREE_TYPE (node) : node;
1003 tree context = CP_DECL_CONTEXT (decl);
1004 tree template_info;
1005 tree templ;
1006 tree substitution;
1008 MANGLE_TRACE_TREE ("template-prefix", node);
1010 /* Find the template decl. */
1011 if (decl_is_template_id (decl, &template_info))
1012 templ = TI_TEMPLATE (template_info);
1013 else if (TREE_CODE (type) == TYPENAME_TYPE)
1014 /* For a typename type, all we have is the name. */
1015 templ = DECL_NAME (decl);
1016 else
1018 gcc_assert (CLASSTYPE_TEMPLATE_ID_P (type));
1020 templ = TYPE_TI_TEMPLATE (type);
1023 /* For a member template, though, the template name for the
1024 innermost name must have all the outer template levels
1025 instantiated. For instance, consider
1027 template<typename T> struct Outer {
1028 template<typename U> struct Inner {};
1031 The template name for `Inner' in `Outer<int>::Inner<float>' is
1032 `Outer<int>::Inner<U>'. In g++, we don't instantiate the template
1033 levels separately, so there's no TEMPLATE_DECL available for this
1034 (there's only `Outer<T>::Inner<U>').
1036 In order to get the substitutions right, we create a special
1037 TREE_LIST to represent the substitution candidate for a nested
1038 template. The TREE_PURPOSE is the template's context, fully
1039 instantiated, and the TREE_VALUE is the TEMPLATE_DECL for the inner
1040 template.
1042 So, for the example above, `Outer<int>::Inner' is represented as a
1043 substitution candidate by a TREE_LIST whose purpose is `Outer<int>'
1044 and whose value is `Outer<T>::Inner<U>'. */
1045 if (TYPE_P (context))
1046 substitution = build_tree_list (context, templ);
1047 else
1048 substitution = templ;
1050 if (find_substitution (substitution))
1051 return;
1053 /* In G++ 3.2, the name of the template template parameter was used. */
1054 if (TREE_TYPE (templ)
1055 && TREE_CODE (TREE_TYPE (templ)) == TEMPLATE_TEMPLATE_PARM
1056 && !abi_version_at_least (2))
1057 G.need_abi_warning = true;
1059 if (TREE_TYPE (templ)
1060 && TREE_CODE (TREE_TYPE (templ)) == TEMPLATE_TEMPLATE_PARM
1061 && abi_version_at_least (2))
1062 write_template_param (TREE_TYPE (templ));
1063 else
1065 write_prefix (context);
1066 write_unqualified_name (decl);
1069 add_substitution (substitution);
1072 /* We don't need to handle thunks, vtables, or VTTs here. Those are
1073 mangled through special entry points.
1075 <unqualified-name> ::= <operator-name>
1076 ::= <special-name>
1077 ::= <source-name>
1078 ::= <local-source-name>
1080 <local-source-name> ::= L <source-name> <discriminator> */
1082 static void
1083 write_unqualified_name (const tree decl)
1085 MANGLE_TRACE_TREE ("unqualified-name", decl);
1087 if (DECL_LANG_SPECIFIC (decl) != NULL && DECL_CONSTRUCTOR_P (decl))
1088 write_special_name_constructor (decl);
1089 else if (DECL_LANG_SPECIFIC (decl) != NULL && DECL_DESTRUCTOR_P (decl))
1090 write_special_name_destructor (decl);
1091 else if (DECL_NAME (decl) == NULL_TREE)
1093 gcc_assert (DECL_ASSEMBLER_NAME_SET_P (decl));
1094 write_source_name (DECL_ASSEMBLER_NAME (decl));
1096 else if (DECL_CONV_FN_P (decl))
1098 /* Conversion operator. Handle it right here.
1099 <operator> ::= cv <type> */
1100 tree type;
1101 if (decl_is_template_id (decl, NULL))
1103 tree fn_type;
1104 fn_type = get_mostly_instantiated_function_type (decl);
1105 type = TREE_TYPE (fn_type);
1107 else
1108 type = DECL_CONV_FN_TYPE (decl);
1109 write_conversion_operator_name (type);
1111 else if (DECL_OVERLOADED_OPERATOR_P (decl))
1113 operator_name_info_t *oni;
1114 if (DECL_ASSIGNMENT_OPERATOR_P (decl))
1115 oni = assignment_operator_name_info;
1116 else
1117 oni = operator_name_info;
1119 write_string (oni[DECL_OVERLOADED_OPERATOR_P (decl)].mangled_name);
1121 else if (VAR_OR_FUNCTION_DECL_P (decl) && ! TREE_PUBLIC (decl)
1122 && DECL_NAMESPACE_SCOPE_P (decl)
1123 && decl_linkage (decl) == lk_internal)
1125 MANGLE_TRACE_TREE ("local-source-name", decl);
1126 write_char ('L');
1127 write_source_name (DECL_NAME (decl));
1128 /* The default discriminator is 1, and that's all we ever use,
1129 so there's no code to output one here. */
1131 else
1132 write_source_name (DECL_NAME (decl));
1135 /* Write the unqualified-name for a conversion operator to TYPE. */
1137 static void
1138 write_conversion_operator_name (const tree type)
1140 write_string ("cv");
1141 write_type (type);
1144 /* Non-terminal <source-name>. IDENTIFIER is an IDENTIFIER_NODE.
1146 <source-name> ::= </length/ number> <identifier> */
1148 static void
1149 write_source_name (tree identifier)
1151 MANGLE_TRACE_TREE ("source-name", identifier);
1153 /* Never write the whole template-id name including the template
1154 arguments; we only want the template name. */
1155 if (IDENTIFIER_TEMPLATE (identifier))
1156 identifier = IDENTIFIER_TEMPLATE (identifier);
1158 write_unsigned_number (IDENTIFIER_LENGTH (identifier));
1159 write_identifier (IDENTIFIER_POINTER (identifier));
1162 /* Convert NUMBER to ascii using base BASE and generating at least
1163 MIN_DIGITS characters. BUFFER points to the _end_ of the buffer
1164 into which to store the characters. Returns the number of
1165 characters generated (these will be layed out in advance of where
1166 BUFFER points). */
1168 static int
1169 hwint_to_ascii (unsigned HOST_WIDE_INT number, const unsigned int base,
1170 char *buffer, const unsigned int min_digits)
1172 static const char base_digits[] = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
1173 unsigned digits = 0;
1175 while (number)
1177 unsigned HOST_WIDE_INT d = number / base;
1179 *--buffer = base_digits[number - d * base];
1180 digits++;
1181 number = d;
1183 while (digits < min_digits)
1185 *--buffer = base_digits[0];
1186 digits++;
1188 return digits;
1191 /* Non-terminal <number>.
1193 <number> ::= [n] </decimal integer/> */
1195 static void
1196 write_number (unsigned HOST_WIDE_INT number, const int unsigned_p,
1197 const unsigned int base)
1199 char buffer[sizeof (HOST_WIDE_INT) * 8];
1200 unsigned count = 0;
1202 if (!unsigned_p && (HOST_WIDE_INT) number < 0)
1204 write_char ('n');
1205 number = -((HOST_WIDE_INT) number);
1207 count = hwint_to_ascii (number, base, buffer + sizeof (buffer), 1);
1208 write_chars (buffer + sizeof (buffer) - count, count);
1211 /* Write out an integral CST in decimal. Most numbers are small, and
1212 representable in a HOST_WIDE_INT. Occasionally we'll have numbers
1213 bigger than that, which we must deal with. */
1215 static inline void
1216 write_integer_cst (const tree cst)
1218 int sign = tree_int_cst_sgn (cst);
1220 if (TREE_INT_CST_HIGH (cst) + (sign < 0))
1222 /* A bignum. We do this in chunks, each of which fits in a
1223 HOST_WIDE_INT. */
1224 char buffer[sizeof (HOST_WIDE_INT) * 8 * 2];
1225 unsigned HOST_WIDE_INT chunk;
1226 unsigned chunk_digits;
1227 char *ptr = buffer + sizeof (buffer);
1228 unsigned count = 0;
1229 tree n, base, type;
1230 int done;
1232 /* HOST_WIDE_INT must be at least 32 bits, so 10^9 is
1233 representable. */
1234 chunk = 1000000000;
1235 chunk_digits = 9;
1237 if (sizeof (HOST_WIDE_INT) >= 8)
1239 /* It is at least 64 bits, so 10^18 is representable. */
1240 chunk_digits = 18;
1241 chunk *= chunk;
1244 type = c_common_signed_or_unsigned_type (1, TREE_TYPE (cst));
1245 base = build_int_cstu (type, chunk);
1246 n = build_int_cst_wide (type,
1247 TREE_INT_CST_LOW (cst), TREE_INT_CST_HIGH (cst));
1249 if (sign < 0)
1251 write_char ('n');
1252 n = fold_build1 (NEGATE_EXPR, type, n);
1256 tree d = fold_build2 (FLOOR_DIV_EXPR, type, n, base);
1257 tree tmp = fold_build2 (MULT_EXPR, type, d, base);
1258 unsigned c;
1260 done = integer_zerop (d);
1261 tmp = fold_build2 (MINUS_EXPR, type, n, tmp);
1262 c = hwint_to_ascii (TREE_INT_CST_LOW (tmp), 10, ptr,
1263 done ? 1 : chunk_digits);
1264 ptr -= c;
1265 count += c;
1266 n = d;
1268 while (!done);
1269 write_chars (ptr, count);
1271 else
1273 /* A small num. */
1274 unsigned HOST_WIDE_INT low = TREE_INT_CST_LOW (cst);
1276 if (sign < 0)
1278 write_char ('n');
1279 low = -low;
1281 write_unsigned_number (low);
1285 /* Write out a floating-point literal.
1287 "Floating-point literals are encoded using the bit pattern of the
1288 target processor's internal representation of that number, as a
1289 fixed-length lowercase hexadecimal string, high-order bytes first
1290 (even if the target processor would store low-order bytes first).
1291 The "n" prefix is not used for floating-point literals; the sign
1292 bit is encoded with the rest of the number.
1294 Here are some examples, assuming the IEEE standard representation
1295 for floating point numbers. (Spaces are for readability, not
1296 part of the encoding.)
1298 1.0f Lf 3f80 0000 E
1299 -1.0f Lf bf80 0000 E
1300 1.17549435e-38f Lf 0080 0000 E
1301 1.40129846e-45f Lf 0000 0001 E
1302 0.0f Lf 0000 0000 E"
1304 Caller is responsible for the Lx and the E. */
1305 static void
1306 write_real_cst (const tree value)
1308 if (abi_version_at_least (2))
1310 long target_real[4]; /* largest supported float */
1311 char buffer[9]; /* eight hex digits in a 32-bit number */
1312 int i, limit, dir;
1314 tree type = TREE_TYPE (value);
1315 int words = GET_MODE_BITSIZE (TYPE_MODE (type)) / 32;
1317 real_to_target (target_real, &TREE_REAL_CST (value),
1318 TYPE_MODE (type));
1320 /* The value in target_real is in the target word order,
1321 so we must write it out backward if that happens to be
1322 little-endian. write_number cannot be used, it will
1323 produce uppercase. */
1324 if (FLOAT_WORDS_BIG_ENDIAN)
1325 i = 0, limit = words, dir = 1;
1326 else
1327 i = words - 1, limit = -1, dir = -1;
1329 for (; i != limit; i += dir)
1331 sprintf (buffer, "%08lx", (unsigned long) target_real[i]);
1332 write_chars (buffer, 8);
1335 else
1337 /* In G++ 3.3 and before the REAL_VALUE_TYPE was written out
1338 literally. Note that compatibility with 3.2 is impossible,
1339 because the old floating-point emulator used a different
1340 format for REAL_VALUE_TYPE. */
1341 size_t i;
1342 for (i = 0; i < sizeof (TREE_REAL_CST (value)); ++i)
1343 write_number (((unsigned char *) &TREE_REAL_CST (value))[i],
1344 /*unsigned_p*/ 1,
1345 /*base*/ 16);
1346 G.need_abi_warning = 1;
1350 /* Non-terminal <identifier>.
1352 <identifier> ::= </unqualified source code identifier> */
1354 static void
1355 write_identifier (const char *identifier)
1357 MANGLE_TRACE ("identifier", identifier);
1358 write_string (identifier);
1361 /* Handle constructor productions of non-terminal <special-name>.
1362 CTOR is a constructor FUNCTION_DECL.
1364 <special-name> ::= C1 # complete object constructor
1365 ::= C2 # base object constructor
1366 ::= C3 # complete object allocating constructor
1368 Currently, allocating constructors are never used.
1370 We also need to provide mangled names for the maybe-in-charge
1371 constructor, so we treat it here too. mangle_decl_string will
1372 append *INTERNAL* to that, to make sure we never emit it. */
1374 static void
1375 write_special_name_constructor (const tree ctor)
1377 if (DECL_BASE_CONSTRUCTOR_P (ctor))
1378 write_string ("C2");
1379 else
1381 gcc_assert (DECL_COMPLETE_CONSTRUCTOR_P (ctor)
1382 /* Even though we don't ever emit a definition of
1383 the old-style destructor, we still have to
1384 consider entities (like static variables) nested
1385 inside it. */
1386 || DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (ctor));
1387 write_string ("C1");
1391 /* Handle destructor productions of non-terminal <special-name>.
1392 DTOR is a destructor FUNCTION_DECL.
1394 <special-name> ::= D0 # deleting (in-charge) destructor
1395 ::= D1 # complete object (in-charge) destructor
1396 ::= D2 # base object (not-in-charge) destructor
1398 We also need to provide mangled names for the maybe-incharge
1399 destructor, so we treat it here too. mangle_decl_string will
1400 append *INTERNAL* to that, to make sure we never emit it. */
1402 static void
1403 write_special_name_destructor (const tree dtor)
1405 if (DECL_DELETING_DESTRUCTOR_P (dtor))
1406 write_string ("D0");
1407 else if (DECL_BASE_DESTRUCTOR_P (dtor))
1408 write_string ("D2");
1409 else
1411 gcc_assert (DECL_COMPLETE_DESTRUCTOR_P (dtor)
1412 /* Even though we don't ever emit a definition of
1413 the old-style destructor, we still have to
1414 consider entities (like static variables) nested
1415 inside it. */
1416 || DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P (dtor));
1417 write_string ("D1");
1421 /* Return the discriminator for ENTITY appearing inside
1422 FUNCTION. The discriminator is the lexical ordinal of VAR among
1423 entities with the same name in the same FUNCTION. */
1425 static int
1426 discriminator_for_local_entity (tree entity)
1428 /* Assume this is the only local entity with this name. */
1429 int discriminator = 0;
1431 if (DECL_DISCRIMINATOR_P (entity) && DECL_LANG_SPECIFIC (entity))
1432 discriminator = DECL_DISCRIMINATOR (entity);
1433 else if (TREE_CODE (entity) == TYPE_DECL)
1435 int ix;
1437 /* Scan the list of local classes. */
1438 entity = TREE_TYPE (entity);
1439 for (ix = 0; ; ix++)
1441 tree type = VEC_index (tree, local_classes, ix);
1442 if (type == entity)
1443 break;
1444 if (TYPE_IDENTIFIER (type) == TYPE_IDENTIFIER (entity)
1445 && TYPE_CONTEXT (type) == TYPE_CONTEXT (entity))
1446 ++discriminator;
1450 return discriminator;
1453 /* Return the discriminator for STRING, a string literal used inside
1454 FUNCTION. The discriminator is the lexical ordinal of STRING among
1455 string literals used in FUNCTION. */
1457 static int
1458 discriminator_for_string_literal (tree function ATTRIBUTE_UNUSED,
1459 tree string ATTRIBUTE_UNUSED)
1461 /* For now, we don't discriminate amongst string literals. */
1462 return 0;
1465 /* <discriminator> := _ <number>
1467 The discriminator is used only for the second and later occurrences
1468 of the same name within a single function. In this case <number> is
1469 n - 2, if this is the nth occurrence, in lexical order. */
1471 static void
1472 write_discriminator (const int discriminator)
1474 /* If discriminator is zero, don't write anything. Otherwise... */
1475 if (discriminator > 0)
1477 write_char ('_');
1478 write_unsigned_number (discriminator - 1);
1482 /* Mangle the name of a function-scope entity. FUNCTION is the
1483 FUNCTION_DECL for the enclosing function. ENTITY is the decl for
1484 the entity itself. LOCAL_ENTITY is the entity that's directly
1485 scoped in FUNCTION_DECL, either ENTITY itself or an enclosing scope
1486 of ENTITY.
1488 <local-name> := Z <function encoding> E <entity name> [<discriminator>]
1489 := Z <function encoding> E s [<discriminator>] */
1491 static void
1492 write_local_name (const tree function, const tree local_entity,
1493 const tree entity)
1495 MANGLE_TRACE_TREE ("local-name", entity);
1497 write_char ('Z');
1498 write_encoding (function);
1499 write_char ('E');
1500 if (TREE_CODE (entity) == STRING_CST)
1502 write_char ('s');
1503 write_discriminator (discriminator_for_string_literal (function,
1504 entity));
1506 else
1508 /* Now the <entity name>. Let write_name know its being called
1509 from <local-name>, so it doesn't try to process the enclosing
1510 function scope again. */
1511 write_name (entity, /*ignore_local_scope=*/1);
1512 write_discriminator (discriminator_for_local_entity (local_entity));
1516 /* Non-terminals <type> and <CV-qualifier>.
1518 <type> ::= <builtin-type>
1519 ::= <function-type>
1520 ::= <class-enum-type>
1521 ::= <array-type>
1522 ::= <pointer-to-member-type>
1523 ::= <template-param>
1524 ::= <substitution>
1525 ::= <CV-qualifier>
1526 ::= P <type> # pointer-to
1527 ::= R <type> # reference-to
1528 ::= C <type> # complex pair (C 2000)
1529 ::= G <type> # imaginary (C 2000) [not supported]
1530 ::= U <source-name> <type> # vendor extended type qualifier
1532 C++0x extensions
1534 <type> ::= RR <type> # rvalue reference-to
1535 <type> ::= Dt <expression> # decltype of an id-expression or
1536 # class member access
1537 <type> ::= DT <expression> # decltype of an expression
1539 TYPE is a type node. */
1541 static void
1542 write_type (tree type)
1544 /* This gets set to nonzero if TYPE turns out to be a (possibly
1545 CV-qualified) builtin type. */
1546 int is_builtin_type = 0;
1548 MANGLE_TRACE_TREE ("type", type);
1550 if (type == error_mark_node)
1551 return;
1553 if (find_substitution (type))
1554 return;
1556 if (write_CV_qualifiers_for_type (type) > 0)
1557 /* If TYPE was CV-qualified, we just wrote the qualifiers; now
1558 mangle the unqualified type. The recursive call is needed here
1559 since both the qualified and unqualified types are substitution
1560 candidates. */
1561 write_type (TYPE_MAIN_VARIANT (type));
1562 else if (TREE_CODE (type) == ARRAY_TYPE)
1563 /* It is important not to use the TYPE_MAIN_VARIANT of TYPE here
1564 so that the cv-qualification of the element type is available
1565 in write_array_type. */
1566 write_array_type (type);
1567 else
1569 tree type_orig = type;
1571 /* See through any typedefs. */
1572 type = TYPE_MAIN_VARIANT (type);
1574 if (TYPE_PTRMEM_P (type))
1575 write_pointer_to_member_type (type);
1576 else
1578 /* Handle any target-specific fundamental types. */
1579 const char *target_mangling
1580 = targetm.mangle_type (type_orig);
1582 if (target_mangling)
1584 write_string (target_mangling);
1585 /* Add substitutions for types other than fundamental
1586 types. */
1587 if (TREE_CODE (type) != VOID_TYPE
1588 && TREE_CODE (type) != INTEGER_TYPE
1589 && TREE_CODE (type) != REAL_TYPE
1590 && TREE_CODE (type) != BOOLEAN_TYPE)
1591 add_substitution (type);
1592 return;
1595 switch (TREE_CODE (type))
1597 case VOID_TYPE:
1598 case BOOLEAN_TYPE:
1599 case INTEGER_TYPE: /* Includes wchar_t. */
1600 case REAL_TYPE:
1601 case FIXED_POINT_TYPE:
1603 /* If this is a typedef, TYPE may not be one of
1604 the standard builtin type nodes, but an alias of one. Use
1605 TYPE_MAIN_VARIANT to get to the underlying builtin type. */
1606 write_builtin_type (TYPE_MAIN_VARIANT (type));
1607 ++is_builtin_type;
1609 break;
1611 case COMPLEX_TYPE:
1612 write_char ('C');
1613 write_type (TREE_TYPE (type));
1614 break;
1616 case FUNCTION_TYPE:
1617 case METHOD_TYPE:
1618 write_function_type (type);
1619 break;
1621 case UNION_TYPE:
1622 case RECORD_TYPE:
1623 case ENUMERAL_TYPE:
1624 /* A pointer-to-member function is represented as a special
1625 RECORD_TYPE, so check for this first. */
1626 if (TYPE_PTRMEMFUNC_P (type))
1627 write_pointer_to_member_type (type);
1628 else
1629 write_class_enum_type (type);
1630 break;
1632 case TYPENAME_TYPE:
1633 case UNBOUND_CLASS_TEMPLATE:
1634 /* We handle TYPENAME_TYPEs and UNBOUND_CLASS_TEMPLATEs like
1635 ordinary nested names. */
1636 write_nested_name (TYPE_STUB_DECL (type));
1637 break;
1639 case POINTER_TYPE:
1640 write_char ('P');
1641 write_type (TREE_TYPE (type));
1642 break;
1644 case REFERENCE_TYPE:
1645 if (TYPE_REF_IS_RVALUE (type))
1646 write_char('O');
1647 else
1648 write_char ('R');
1649 write_type (TREE_TYPE (type));
1650 break;
1652 case TEMPLATE_TYPE_PARM:
1653 case TEMPLATE_PARM_INDEX:
1654 write_template_param (type);
1655 break;
1657 case TEMPLATE_TEMPLATE_PARM:
1658 write_template_template_param (type);
1659 break;
1661 case BOUND_TEMPLATE_TEMPLATE_PARM:
1662 write_template_template_param (type);
1663 write_template_args
1664 (TI_ARGS (TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (type)));
1665 break;
1667 case VECTOR_TYPE:
1668 write_string ("U8__vector");
1669 write_type (TREE_TYPE (type));
1670 break;
1672 case TYPE_PACK_EXPANSION:
1673 write_string ("Dp");
1674 write_type (PACK_EXPANSION_PATTERN (type));
1675 break;
1677 case DECLTYPE_TYPE:
1678 write_char ('D');
1679 if (DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (type))
1680 write_char ('t');
1681 else
1682 write_char ('T');
1683 ++skip_evaluation;
1684 write_expression (DECLTYPE_TYPE_EXPR (type));
1685 --skip_evaluation;
1686 write_char ('E');
1687 break;
1689 case TYPEOF_TYPE:
1690 sorry ("mangling typeof, use decltype instead");
1691 break;
1693 default:
1694 gcc_unreachable ();
1699 /* Types other than builtin types are substitution candidates. */
1700 if (!is_builtin_type)
1701 add_substitution (type);
1704 /* Non-terminal <CV-qualifiers> for type nodes. Returns the number of
1705 CV-qualifiers written for TYPE.
1707 <CV-qualifiers> ::= [r] [V] [K] */
1709 static int
1710 write_CV_qualifiers_for_type (const tree type)
1712 int num_qualifiers = 0;
1714 /* The order is specified by:
1716 "In cases where multiple order-insensitive qualifiers are
1717 present, they should be ordered 'K' (closest to the base type),
1718 'V', 'r', and 'U' (farthest from the base type) ..."
1720 Note that we do not use cp_type_quals below; given "const
1721 int[3]", the "const" is emitted with the "int", not with the
1722 array. */
1724 if (TYPE_QUALS (type) & TYPE_QUAL_RESTRICT)
1726 write_char ('r');
1727 ++num_qualifiers;
1729 if (TYPE_QUALS (type) & TYPE_QUAL_VOLATILE)
1731 write_char ('V');
1732 ++num_qualifiers;
1734 if (TYPE_QUALS (type) & TYPE_QUAL_CONST)
1736 write_char ('K');
1737 ++num_qualifiers;
1740 return num_qualifiers;
1743 /* Non-terminal <builtin-type>.
1745 <builtin-type> ::= v # void
1746 ::= b # bool
1747 ::= w # wchar_t
1748 ::= c # char
1749 ::= a # signed char
1750 ::= h # unsigned char
1751 ::= s # short
1752 ::= t # unsigned short
1753 ::= i # int
1754 ::= j # unsigned int
1755 ::= l # long
1756 ::= m # unsigned long
1757 ::= x # long long, __int64
1758 ::= y # unsigned long long, __int64
1759 ::= n # __int128
1760 ::= o # unsigned __int128
1761 ::= f # float
1762 ::= d # double
1763 ::= e # long double, __float80
1764 ::= g # __float128 [not supported]
1765 ::= u <source-name> # vendor extended type */
1767 static void
1768 write_builtin_type (tree type)
1770 if (TYPE_CANONICAL (type))
1771 type = TYPE_CANONICAL (type);
1773 switch (TREE_CODE (type))
1775 case VOID_TYPE:
1776 write_char ('v');
1777 break;
1779 case BOOLEAN_TYPE:
1780 write_char ('b');
1781 break;
1783 case INTEGER_TYPE:
1784 /* TYPE may still be wchar_t, char16_t, or char32_t, since that
1785 isn't in integer_type_nodes. */
1786 if (type == wchar_type_node)
1787 write_char ('w');
1788 else if (type == char16_type_node)
1789 write_string ("Ds");
1790 else if (type == char32_type_node)
1791 write_string ("Di");
1792 else if (TYPE_FOR_JAVA (type))
1793 write_java_integer_type_codes (type);
1794 else
1796 size_t itk;
1797 /* Assume TYPE is one of the shared integer type nodes. Find
1798 it in the array of these nodes. */
1799 iagain:
1800 for (itk = 0; itk < itk_none; ++itk)
1801 if (type == integer_types[itk])
1803 /* Print the corresponding single-letter code. */
1804 write_char (integer_type_codes[itk]);
1805 break;
1808 if (itk == itk_none)
1810 tree t = c_common_type_for_mode (TYPE_MODE (type),
1811 TYPE_UNSIGNED (type));
1812 if (type != t)
1814 type = t;
1815 goto iagain;
1818 if (TYPE_PRECISION (type) == 128)
1819 write_char (TYPE_UNSIGNED (type) ? 'o' : 'n');
1820 else
1822 /* Allow for cases where TYPE is not one of the shared
1823 integer type nodes and write a "vendor extended builtin
1824 type" with a name the form intN or uintN, respectively.
1825 Situations like this can happen if you have an
1826 __attribute__((__mode__(__SI__))) type and use exotic
1827 switches like '-mint8' on AVR. Of course, this is
1828 undefined by the C++ ABI (and '-mint8' is not even
1829 Standard C conforming), but when using such special
1830 options you're pretty much in nowhere land anyway. */
1831 const char *prefix;
1832 char prec[11]; /* up to ten digits for an unsigned */
1834 prefix = TYPE_UNSIGNED (type) ? "uint" : "int";
1835 sprintf (prec, "%u", (unsigned) TYPE_PRECISION (type));
1836 write_char ('u'); /* "vendor extended builtin type" */
1837 write_unsigned_number (strlen (prefix) + strlen (prec));
1838 write_string (prefix);
1839 write_string (prec);
1843 break;
1845 case REAL_TYPE:
1846 if (type == float_type_node
1847 || type == java_float_type_node)
1848 write_char ('f');
1849 else if (type == double_type_node
1850 || type == java_double_type_node)
1851 write_char ('d');
1852 else if (type == long_double_type_node)
1853 write_char ('e');
1854 else
1855 gcc_unreachable ();
1856 break;
1858 case FIXED_POINT_TYPE:
1859 write_string ("DF");
1860 if (GET_MODE_IBIT (TYPE_MODE (type)) > 0)
1861 write_unsigned_number (GET_MODE_IBIT (TYPE_MODE (type)));
1862 if (type == fract_type_node
1863 || type == sat_fract_type_node
1864 || type == accum_type_node
1865 || type == sat_accum_type_node)
1866 write_char ('i');
1867 else if (type == unsigned_fract_type_node
1868 || type == sat_unsigned_fract_type_node
1869 || type == unsigned_accum_type_node
1870 || type == sat_unsigned_accum_type_node)
1871 write_char ('j');
1872 else if (type == short_fract_type_node
1873 || type == sat_short_fract_type_node
1874 || type == short_accum_type_node
1875 || type == sat_short_accum_type_node)
1876 write_char ('s');
1877 else if (type == unsigned_short_fract_type_node
1878 || type == sat_unsigned_short_fract_type_node
1879 || type == unsigned_short_accum_type_node
1880 || type == sat_unsigned_short_accum_type_node)
1881 write_char ('t');
1882 else if (type == long_fract_type_node
1883 || type == sat_long_fract_type_node
1884 || type == long_accum_type_node
1885 || type == sat_long_accum_type_node)
1886 write_char ('l');
1887 else if (type == unsigned_long_fract_type_node
1888 || type == sat_unsigned_long_fract_type_node
1889 || type == unsigned_long_accum_type_node
1890 || type == sat_unsigned_long_accum_type_node)
1891 write_char ('m');
1892 else if (type == long_long_fract_type_node
1893 || type == sat_long_long_fract_type_node
1894 || type == long_long_accum_type_node
1895 || type == sat_long_long_accum_type_node)
1896 write_char ('x');
1897 else if (type == unsigned_long_long_fract_type_node
1898 || type == sat_unsigned_long_long_fract_type_node
1899 || type == unsigned_long_long_accum_type_node
1900 || type == sat_unsigned_long_long_accum_type_node)
1901 write_char ('y');
1902 else
1903 sorry ("mangling unknown fixed point type");
1904 write_unsigned_number (GET_MODE_FBIT (TYPE_MODE (type)));
1905 if (TYPE_SATURATING (type))
1906 write_char ('s');
1907 else
1908 write_char ('n');
1909 break;
1911 default:
1912 gcc_unreachable ();
1916 /* Non-terminal <function-type>. NODE is a FUNCTION_TYPE or
1917 METHOD_TYPE. The return type is mangled before the parameter
1918 types.
1920 <function-type> ::= F [Y] <bare-function-type> E */
1922 static void
1923 write_function_type (const tree type)
1925 MANGLE_TRACE_TREE ("function-type", type);
1927 /* For a pointer to member function, the function type may have
1928 cv-qualifiers, indicating the quals for the artificial 'this'
1929 parameter. */
1930 if (TREE_CODE (type) == METHOD_TYPE)
1932 /* The first parameter must be a POINTER_TYPE pointing to the
1933 `this' parameter. */
1934 tree this_type = TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (type)));
1935 write_CV_qualifiers_for_type (this_type);
1938 write_char ('F');
1939 /* We don't track whether or not a type is `extern "C"'. Note that
1940 you can have an `extern "C"' function that does not have
1941 `extern "C"' type, and vice versa:
1943 extern "C" typedef void function_t();
1944 function_t f; // f has C++ linkage, but its type is
1945 // `extern "C"'
1947 typedef void function_t();
1948 extern "C" function_t f; // Vice versa.
1950 See [dcl.link]. */
1951 write_bare_function_type (type, /*include_return_type_p=*/1,
1952 /*decl=*/NULL);
1953 write_char ('E');
1956 /* Non-terminal <bare-function-type>. TYPE is a FUNCTION_TYPE or
1957 METHOD_TYPE. If INCLUDE_RETURN_TYPE is nonzero, the return value
1958 is mangled before the parameter types. If non-NULL, DECL is
1959 FUNCTION_DECL for the function whose type is being emitted.
1961 If DECL is a member of a Java type, then a literal 'J'
1962 is output and the return type is mangled as if INCLUDE_RETURN_TYPE
1963 were nonzero.
1965 <bare-function-type> ::= [J]</signature/ type>+ */
1967 static void
1968 write_bare_function_type (const tree type, const int include_return_type_p,
1969 const tree decl)
1971 int java_method_p;
1973 MANGLE_TRACE_TREE ("bare-function-type", type);
1975 /* Detect Java methods and emit special encoding. */
1976 if (decl != NULL
1977 && DECL_FUNCTION_MEMBER_P (decl)
1978 && TYPE_FOR_JAVA (DECL_CONTEXT (decl))
1979 && !DECL_CONSTRUCTOR_P (decl)
1980 && !DECL_DESTRUCTOR_P (decl)
1981 && !DECL_CONV_FN_P (decl))
1983 java_method_p = 1;
1984 write_char ('J');
1986 else
1988 java_method_p = 0;
1991 /* Mangle the return type, if requested. */
1992 if (include_return_type_p || java_method_p)
1993 write_type (TREE_TYPE (type));
1995 /* Now mangle the types of the arguments. */
1996 write_method_parms (TYPE_ARG_TYPES (type),
1997 TREE_CODE (type) == METHOD_TYPE,
1998 decl);
2001 /* Write the mangled representation of a method parameter list of
2002 types given in PARM_TYPES. If METHOD_P is nonzero, the function is
2003 considered a non-static method, and the this parameter is omitted.
2004 If non-NULL, DECL is the FUNCTION_DECL for the function whose
2005 parameters are being emitted. */
2007 static void
2008 write_method_parms (tree parm_types, const int method_p, const tree decl)
2010 tree first_parm_type;
2011 tree parm_decl = decl ? DECL_ARGUMENTS (decl) : NULL_TREE;
2013 /* Assume this parameter type list is variable-length. If it ends
2014 with a void type, then it's not. */
2015 int varargs_p = 1;
2017 /* If this is a member function, skip the first arg, which is the
2018 this pointer.
2019 "Member functions do not encode the type of their implicit this
2020 parameter."
2022 Similarly, there's no need to mangle artificial parameters, like
2023 the VTT parameters for constructors and destructors. */
2024 if (method_p)
2026 parm_types = TREE_CHAIN (parm_types);
2027 parm_decl = parm_decl ? TREE_CHAIN (parm_decl) : NULL_TREE;
2029 while (parm_decl && DECL_ARTIFICIAL (parm_decl))
2031 parm_types = TREE_CHAIN (parm_types);
2032 parm_decl = TREE_CHAIN (parm_decl);
2036 for (first_parm_type = parm_types;
2037 parm_types;
2038 parm_types = TREE_CHAIN (parm_types))
2040 tree parm = TREE_VALUE (parm_types);
2041 if (parm == void_type_node)
2043 /* "Empty parameter lists, whether declared as () or
2044 conventionally as (void), are encoded with a void parameter
2045 (v)." */
2046 if (parm_types == first_parm_type)
2047 write_type (parm);
2048 /* If the parm list is terminated with a void type, it's
2049 fixed-length. */
2050 varargs_p = 0;
2051 /* A void type better be the last one. */
2052 gcc_assert (TREE_CHAIN (parm_types) == NULL);
2054 else
2055 write_type (parm);
2058 if (varargs_p)
2059 /* <builtin-type> ::= z # ellipsis */
2060 write_char ('z');
2063 /* <class-enum-type> ::= <name> */
2065 static void
2066 write_class_enum_type (const tree type)
2068 write_name (TYPE_NAME (type), /*ignore_local_scope=*/0);
2071 /* Non-terminal <template-args>. ARGS is a TREE_VEC of template
2072 arguments.
2074 <template-args> ::= I <template-arg>+ E */
2076 static void
2077 write_template_args (tree args)
2079 int i;
2080 int length = TREE_VEC_LENGTH (args);
2082 MANGLE_TRACE_TREE ("template-args", args);
2084 write_char ('I');
2086 gcc_assert (length > 0);
2088 if (TREE_CODE (TREE_VEC_ELT (args, 0)) == TREE_VEC)
2090 /* We have nested template args. We want the innermost template
2091 argument list. */
2092 args = TREE_VEC_ELT (args, length - 1);
2093 length = TREE_VEC_LENGTH (args);
2095 for (i = 0; i < length; ++i)
2096 write_template_arg (TREE_VEC_ELT (args, i));
2098 write_char ('E');
2101 /* Write out the
2102 <unqualified-name>
2103 <unqualified-name> <template-args>
2104 part of SCOPE_REF or COMPONENT_REF mangling. */
2106 static void
2107 write_member_name (tree member)
2109 if (TREE_CODE (member) == IDENTIFIER_NODE)
2110 write_source_name (member);
2111 else if (DECL_P (member))
2113 /* G++ 3.2 incorrectly put out both the "sr" code and
2114 the nested name of the qualified name. */
2115 G.need_abi_warning = 1;
2116 write_unqualified_name (member);
2118 else if (TREE_CODE (member) == TEMPLATE_ID_EXPR)
2120 tree name = TREE_OPERAND (member, 0);
2121 if (TREE_CODE (name) == OVERLOAD)
2122 name = OVL_FUNCTION (name);
2123 write_member_name (name);
2124 write_template_args (TREE_OPERAND (member, 1));
2126 else
2127 write_expression (member);
2130 /* <expression> ::= <unary operator-name> <expression>
2131 ::= <binary operator-name> <expression> <expression>
2132 ::= <expr-primary>
2134 <expr-primary> ::= <template-param>
2135 ::= L <type> <value number> E # literal
2136 ::= L <mangled-name> E # external name
2137 ::= st <type> # sizeof
2138 ::= sr <type> <unqualified-name> # dependent name
2139 ::= sr <type> <unqualified-name> <template-args> */
2141 static void
2142 write_expression (tree expr)
2144 enum tree_code code = TREE_CODE (expr);
2146 /* Inside decltype we can simplify some expressions, since we're only
2147 interested in the type. */
2148 if (skip_evaluation)
2150 tree type = describable_type (expr);
2151 if (type == NULL_TREE)
2153 else if (TREE_CODE (type) == REFERENCE_TYPE)
2155 write_string ("sT");
2156 write_type (TREE_TYPE (type));
2157 return;
2159 else
2161 write_string ("sR");
2162 write_type (type);
2163 return;
2167 /* Skip NOP_EXPRs. They can occur when (say) a pointer argument
2168 is converted (via qualification conversions) to another
2169 type. */
2170 while (TREE_CODE (expr) == NOP_EXPR
2171 || TREE_CODE (expr) == NON_LVALUE_EXPR)
2173 expr = TREE_OPERAND (expr, 0);
2174 code = TREE_CODE (expr);
2177 if (code == BASELINK)
2179 expr = BASELINK_FUNCTIONS (expr);
2180 code = TREE_CODE (expr);
2183 if (code == OVERLOAD)
2185 expr = OVL_FUNCTION (expr);
2186 code = TREE_CODE (expr);
2189 /* Handle pointers-to-members by making them look like expression
2190 nodes. */
2191 if (code == PTRMEM_CST)
2193 expr = build_nt (ADDR_EXPR,
2194 build_qualified_name (/*type=*/NULL_TREE,
2195 PTRMEM_CST_CLASS (expr),
2196 PTRMEM_CST_MEMBER (expr),
2197 /*template_p=*/false));
2198 code = TREE_CODE (expr);
2201 /* Handle template parameters. */
2202 if (code == TEMPLATE_TYPE_PARM
2203 || code == TEMPLATE_TEMPLATE_PARM
2204 || code == BOUND_TEMPLATE_TEMPLATE_PARM
2205 || code == TEMPLATE_PARM_INDEX)
2206 write_template_param (expr);
2207 /* Handle literals. */
2208 else if (TREE_CODE_CLASS (code) == tcc_constant
2209 || (abi_version_at_least (2) && code == CONST_DECL))
2210 write_template_arg_literal (expr);
2211 else if (code == PARM_DECL)
2213 /* A function parameter used under decltype in a late-specified
2214 return type. Represented with a type placeholder. */
2215 write_string ("sT");
2216 write_type (non_reference (TREE_TYPE (expr)));
2218 else if (DECL_P (expr))
2220 /* G++ 3.2 incorrectly mangled non-type template arguments of
2221 enumeration type using their names. */
2222 if (code == CONST_DECL)
2223 G.need_abi_warning = 1;
2224 write_char ('L');
2225 write_mangled_name (expr, false);
2226 write_char ('E');
2228 else if (TREE_CODE (expr) == SIZEOF_EXPR
2229 && TYPE_P (TREE_OPERAND (expr, 0)))
2231 write_string ("st");
2232 write_type (TREE_OPERAND (expr, 0));
2234 else if (abi_version_at_least (2) && TREE_CODE (expr) == SCOPE_REF)
2236 tree scope = TREE_OPERAND (expr, 0);
2237 tree member = TREE_OPERAND (expr, 1);
2239 /* If the MEMBER is a real declaration, then the qualifying
2240 scope was not dependent. Ideally, we would not have a
2241 SCOPE_REF in those cases, but sometimes we do. If the second
2242 argument is a DECL, then the name must not have been
2243 dependent. */
2244 if (DECL_P (member))
2245 write_expression (member);
2246 else
2248 tree template_args;
2250 write_string ("sr");
2251 write_type (scope);
2252 /* If MEMBER is a template-id, separate the template
2253 from the arguments. */
2254 if (TREE_CODE (member) == TEMPLATE_ID_EXPR)
2256 template_args = TREE_OPERAND (member, 1);
2257 member = TREE_OPERAND (member, 0);
2259 else
2260 template_args = NULL_TREE;
2261 /* Write out the name of the MEMBER. */
2262 if (IDENTIFIER_TYPENAME_P (member))
2263 write_conversion_operator_name (TREE_TYPE (member));
2264 else if (IDENTIFIER_OPNAME_P (member))
2266 int i;
2267 const char *mangled_name = NULL;
2269 /* Unfortunately, there is no easy way to go from the
2270 name of the operator back to the corresponding tree
2271 code. */
2272 for (i = 0; i < MAX_TREE_CODES; ++i)
2273 if (operator_name_info[i].identifier == member)
2275 /* The ABI says that we prefer binary operator
2276 names to unary operator names. */
2277 if (operator_name_info[i].arity == 2)
2279 mangled_name = operator_name_info[i].mangled_name;
2280 break;
2282 else if (!mangled_name)
2283 mangled_name = operator_name_info[i].mangled_name;
2285 else if (assignment_operator_name_info[i].identifier
2286 == member)
2288 mangled_name
2289 = assignment_operator_name_info[i].mangled_name;
2290 break;
2292 write_string (mangled_name);
2294 else
2295 write_source_name (member);
2296 /* Write out the template arguments. */
2297 if (template_args)
2298 write_template_args (template_args);
2301 else
2303 int i;
2305 /* When we bind a variable or function to a non-type template
2306 argument with reference type, we create an ADDR_EXPR to show
2307 the fact that the entity's address has been taken. But, we
2308 don't actually want to output a mangling code for the `&'. */
2309 if (TREE_CODE (expr) == ADDR_EXPR
2310 && TREE_TYPE (expr)
2311 && TREE_CODE (TREE_TYPE (expr)) == REFERENCE_TYPE)
2313 expr = TREE_OPERAND (expr, 0);
2314 if (DECL_P (expr))
2316 write_expression (expr);
2317 return;
2320 code = TREE_CODE (expr);
2323 if (code == COMPONENT_REF)
2325 tree ob = TREE_OPERAND (expr, 0);
2327 if (TREE_CODE (ob) == ARROW_EXPR)
2329 write_string (operator_name_info[(int)code].mangled_name);
2330 ob = TREE_OPERAND (ob, 0);
2332 else
2333 write_string ("dt");
2335 write_expression (ob);
2336 write_member_name (TREE_OPERAND (expr, 1));
2337 return;
2340 /* If it wasn't any of those, recursively expand the expression. */
2341 write_string (operator_name_info[(int) code].mangled_name);
2343 switch (code)
2345 case CALL_EXPR:
2346 write_expression (CALL_EXPR_FN (expr));
2347 for (i = 0; i < call_expr_nargs (expr); ++i)
2348 write_expression (CALL_EXPR_ARG (expr, i));
2349 write_char ('E');
2350 break;
2352 case CAST_EXPR:
2353 write_type (TREE_TYPE (expr));
2354 /* There is no way to mangle a zero-operand cast like
2355 "T()". */
2356 if (!TREE_OPERAND (expr, 0))
2357 sorry ("zero-operand casts cannot be mangled due to a defect "
2358 "in the C++ ABI");
2359 else if (list_length (TREE_OPERAND (expr, 0)) > 1)
2360 sorry ("mangling function-style cast with more than one argument");
2361 else
2362 write_expression (TREE_VALUE (TREE_OPERAND (expr, 0)));
2363 break;
2365 case STATIC_CAST_EXPR:
2366 case CONST_CAST_EXPR:
2367 write_type (TREE_TYPE (expr));
2368 write_expression (TREE_OPERAND (expr, 0));
2369 break;
2371 /* Handle pointers-to-members specially. */
2372 case SCOPE_REF:
2373 write_type (TREE_OPERAND (expr, 0));
2374 write_member_name (TREE_OPERAND (expr, 1));
2375 break;
2377 default:
2378 for (i = 0; i < TREE_OPERAND_LENGTH (expr); ++i)
2380 tree operand = TREE_OPERAND (expr, i);
2381 /* As a GNU extension, the middle operand of a
2382 conditional may be omitted. Since expression
2383 manglings are supposed to represent the input token
2384 stream, there's no good way to mangle such an
2385 expression without extending the C++ ABI. */
2386 if (code == COND_EXPR && i == 1 && !operand)
2388 error ("omitted middle operand to %<?:%> operand "
2389 "cannot be mangled");
2390 continue;
2392 write_expression (operand);
2398 /* Literal subcase of non-terminal <template-arg>.
2400 "Literal arguments, e.g. "A<42L>", are encoded with their type
2401 and value. Negative integer values are preceded with "n"; for
2402 example, "A<-42L>" becomes "1AILln42EE". The bool value false is
2403 encoded as 0, true as 1." */
2405 static void
2406 write_template_arg_literal (const tree value)
2408 write_char ('L');
2409 write_type (TREE_TYPE (value));
2411 switch (TREE_CODE (value))
2413 case CONST_DECL:
2414 write_integer_cst (DECL_INITIAL (value));
2415 break;
2417 case INTEGER_CST:
2418 gcc_assert (!same_type_p (TREE_TYPE (value), boolean_type_node)
2419 || integer_zerop (value) || integer_onep (value));
2420 write_integer_cst (value);
2421 break;
2423 case REAL_CST:
2424 write_real_cst (value);
2425 break;
2427 default:
2428 gcc_unreachable ();
2431 write_char ('E');
2434 /* Non-terminal <template-arg>.
2436 <template-arg> ::= <type> # type
2437 ::= L <type> </value/ number> E # literal
2438 ::= LZ <name> E # external name
2439 ::= X <expression> E # expression */
2441 static void
2442 write_template_arg (tree node)
2444 enum tree_code code = TREE_CODE (node);
2446 MANGLE_TRACE_TREE ("template-arg", node);
2448 /* A template template parameter's argument list contains TREE_LIST
2449 nodes of which the value field is the actual argument. */
2450 if (code == TREE_LIST)
2452 node = TREE_VALUE (node);
2453 /* If it's a decl, deal with its type instead. */
2454 if (DECL_P (node))
2456 node = TREE_TYPE (node);
2457 code = TREE_CODE (node);
2461 if (TREE_CODE (node) == NOP_EXPR
2462 && TREE_CODE (TREE_TYPE (node)) == REFERENCE_TYPE)
2464 /* Template parameters can be of reference type. To maintain
2465 internal consistency, such arguments use a conversion from
2466 address of object to reference type. */
2467 gcc_assert (TREE_CODE (TREE_OPERAND (node, 0)) == ADDR_EXPR);
2468 if (abi_version_at_least (2))
2469 node = TREE_OPERAND (TREE_OPERAND (node, 0), 0);
2470 else
2471 G.need_abi_warning = 1;
2474 if (ARGUMENT_PACK_P (node))
2476 /* Expand the template argument pack. */
2477 tree args = ARGUMENT_PACK_ARGS (node);
2478 int i, length = TREE_VEC_LENGTH (args);
2479 write_char ('I');
2480 for (i = 0; i < length; ++i)
2481 write_template_arg (TREE_VEC_ELT (args, i));
2482 write_char ('E');
2484 else if (TYPE_P (node))
2485 write_type (node);
2486 else if (code == TEMPLATE_DECL)
2487 /* A template appearing as a template arg is a template template arg. */
2488 write_template_template_arg (node);
2489 else if ((TREE_CODE_CLASS (code) == tcc_constant && code != PTRMEM_CST)
2490 || (abi_version_at_least (2) && code == CONST_DECL))
2491 write_template_arg_literal (node);
2492 else if (DECL_P (node))
2494 /* Until ABI version 2, non-type template arguments of
2495 enumeration type were mangled using their names. */
2496 if (code == CONST_DECL && !abi_version_at_least (2))
2497 G.need_abi_warning = 1;
2498 write_char ('L');
2499 /* Until ABI version 3, the underscore before the mangled name
2500 was incorrectly omitted. */
2501 if (!abi_version_at_least (3))
2503 G.need_abi_warning = 1;
2504 write_char ('Z');
2506 else
2507 write_string ("_Z");
2508 write_encoding (node);
2509 write_char ('E');
2511 else
2513 /* Template arguments may be expressions. */
2514 write_char ('X');
2515 write_expression (node);
2516 write_char ('E');
2520 /* <template-template-arg>
2521 ::= <name>
2522 ::= <substitution> */
2524 static void
2525 write_template_template_arg (const tree decl)
2527 MANGLE_TRACE_TREE ("template-template-arg", decl);
2529 if (find_substitution (decl))
2530 return;
2531 write_name (decl, /*ignore_local_scope=*/0);
2532 add_substitution (decl);
2536 /* Non-terminal <array-type>. TYPE is an ARRAY_TYPE.
2538 <array-type> ::= A [</dimension/ number>] _ </element/ type>
2539 ::= A <expression> _ </element/ type>
2541 "Array types encode the dimension (number of elements) and the
2542 element type. For variable length arrays, the dimension (but not
2543 the '_' separator) is omitted." */
2545 static void
2546 write_array_type (const tree type)
2548 write_char ('A');
2549 if (TYPE_DOMAIN (type))
2551 tree index_type;
2552 tree max;
2554 index_type = TYPE_DOMAIN (type);
2555 /* The INDEX_TYPE gives the upper and lower bounds of the
2556 array. */
2557 max = TYPE_MAX_VALUE (index_type);
2558 if (TREE_CODE (max) == INTEGER_CST)
2560 /* The ABI specifies that we should mangle the number of
2561 elements in the array, not the largest allowed index. */
2562 max = size_binop (PLUS_EXPR, max, size_one_node);
2563 write_unsigned_number (tree_low_cst (max, 1));
2565 else
2567 max = TREE_OPERAND (max, 0);
2568 if (!abi_version_at_least (2))
2570 /* value_dependent_expression_p presumes nothing is
2571 dependent when PROCESSING_TEMPLATE_DECL is zero. */
2572 ++processing_template_decl;
2573 if (!value_dependent_expression_p (max))
2574 G.need_abi_warning = 1;
2575 --processing_template_decl;
2577 write_expression (max);
2581 write_char ('_');
2582 write_type (TREE_TYPE (type));
2585 /* Non-terminal <pointer-to-member-type> for pointer-to-member
2586 variables. TYPE is a pointer-to-member POINTER_TYPE.
2588 <pointer-to-member-type> ::= M </class/ type> </member/ type> */
2590 static void
2591 write_pointer_to_member_type (const tree type)
2593 write_char ('M');
2594 write_type (TYPE_PTRMEM_CLASS_TYPE (type));
2595 write_type (TYPE_PTRMEM_POINTED_TO_TYPE (type));
2598 /* Non-terminal <template-param>. PARM is a TEMPLATE_TYPE_PARM,
2599 TEMPLATE_TEMPLATE_PARM, BOUND_TEMPLATE_TEMPLATE_PARM or a
2600 TEMPLATE_PARM_INDEX.
2602 <template-param> ::= T </parameter/ number> _ */
2604 static void
2605 write_template_param (const tree parm)
2607 int parm_index;
2608 int parm_level;
2609 tree parm_type = NULL_TREE;
2611 MANGLE_TRACE_TREE ("template-parm", parm);
2613 switch (TREE_CODE (parm))
2615 case TEMPLATE_TYPE_PARM:
2616 case TEMPLATE_TEMPLATE_PARM:
2617 case BOUND_TEMPLATE_TEMPLATE_PARM:
2618 parm_index = TEMPLATE_TYPE_IDX (parm);
2619 parm_level = TEMPLATE_TYPE_LEVEL (parm);
2620 break;
2622 case TEMPLATE_PARM_INDEX:
2623 parm_index = TEMPLATE_PARM_IDX (parm);
2624 parm_level = TEMPLATE_PARM_LEVEL (parm);
2625 parm_type = TREE_TYPE (TEMPLATE_PARM_DECL (parm));
2626 break;
2628 default:
2629 gcc_unreachable ();
2632 write_char ('T');
2633 /* NUMBER as it appears in the mangling is (-1)-indexed, with the
2634 earliest template param denoted by `_'. */
2635 if (parm_index > 0)
2636 write_unsigned_number (parm_index - 1);
2637 write_char ('_');
2640 /* <template-template-param>
2641 ::= <template-param>
2642 ::= <substitution> */
2644 static void
2645 write_template_template_param (const tree parm)
2647 tree templ = NULL_TREE;
2649 /* PARM, a TEMPLATE_TEMPLATE_PARM, is an instantiation of the
2650 template template parameter. The substitution candidate here is
2651 only the template. */
2652 if (TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
2654 templ
2655 = TI_TEMPLATE (TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (parm));
2656 if (find_substitution (templ))
2657 return;
2660 /* <template-param> encodes only the template parameter position,
2661 not its template arguments, which is fine here. */
2662 write_template_param (parm);
2663 if (templ)
2664 add_substitution (templ);
2667 /* Non-terminal <substitution>.
2669 <substitution> ::= S <seq-id> _
2670 ::= S_ */
2672 static void
2673 write_substitution (const int seq_id)
2675 MANGLE_TRACE ("substitution", "");
2677 write_char ('S');
2678 if (seq_id > 0)
2679 write_number (seq_id - 1, /*unsigned=*/1, 36);
2680 write_char ('_');
2683 /* Start mangling ENTITY. */
2685 static inline void
2686 start_mangling (const tree entity)
2688 G.entity = entity;
2689 G.need_abi_warning = false;
2690 obstack_free (&name_obstack, name_base);
2691 mangle_obstack = &name_obstack;
2692 name_base = obstack_alloc (&name_obstack, 0);
2695 /* Done with mangling. If WARN is true, and the name of G.entity will
2696 be mangled differently in a future version of the ABI, issue a
2697 warning. */
2699 static void
2700 finish_mangling_internal (const bool warn)
2702 if (warn_abi && warn && G.need_abi_warning)
2703 warning (OPT_Wabi, "the mangled name of %qD will change in a future "
2704 "version of GCC",
2705 G.entity);
2707 /* Clear all the substitutions. */
2708 VEC_truncate (tree, G.substitutions, 0);
2710 /* Null-terminate the string. */
2711 write_char ('\0');
2715 /* Like finish_mangling_internal, but return the mangled string. */
2717 static inline const char *
2718 finish_mangling (const bool warn)
2720 finish_mangling_internal (warn);
2721 return (const char *) obstack_finish (mangle_obstack);
2724 /* Like finish_mangling_internal, but return an identifier. */
2726 static tree
2727 finish_mangling_get_identifier (const bool warn)
2729 finish_mangling_internal (warn);
2730 /* Don't obstack_finish here, and the next start_mangling will
2731 remove the identifier. */
2732 return get_identifier ((const char *) name_base);
2735 /* Initialize data structures for mangling. */
2737 void
2738 init_mangle (void)
2740 gcc_obstack_init (&name_obstack);
2741 name_base = obstack_alloc (&name_obstack, 0);
2742 G.substitutions = NULL;
2744 /* Cache these identifiers for quick comparison when checking for
2745 standard substitutions. */
2746 subst_identifiers[SUBID_ALLOCATOR] = get_identifier ("allocator");
2747 subst_identifiers[SUBID_BASIC_STRING] = get_identifier ("basic_string");
2748 subst_identifiers[SUBID_CHAR_TRAITS] = get_identifier ("char_traits");
2749 subst_identifiers[SUBID_BASIC_ISTREAM] = get_identifier ("basic_istream");
2750 subst_identifiers[SUBID_BASIC_OSTREAM] = get_identifier ("basic_ostream");
2751 subst_identifiers[SUBID_BASIC_IOSTREAM] = get_identifier ("basic_iostream");
2754 /* Generate the mangled name of DECL. */
2756 static tree
2757 mangle_decl_string (const tree decl)
2759 tree result;
2761 start_mangling (decl);
2763 if (TREE_CODE (decl) == TYPE_DECL)
2764 write_type (TREE_TYPE (decl));
2765 else
2766 write_mangled_name (decl, true);
2768 result = finish_mangling_get_identifier (/*warn=*/true);
2769 if (DEBUG_MANGLE)
2770 fprintf (stderr, "mangle_decl_string = '%s'\n\n",
2771 IDENTIFIER_POINTER (result));
2772 return result;
2775 /* Create an identifier for the external mangled name of DECL. */
2777 void
2778 mangle_decl (const tree decl)
2780 tree id = mangle_decl_string (decl);
2781 id = targetm.mangle_decl_assembler_name (decl, id);
2782 SET_DECL_ASSEMBLER_NAME (decl, id);
2785 /* Generate the mangled representation of TYPE. */
2787 const char *
2788 mangle_type_string (const tree type)
2790 const char *result;
2792 start_mangling (type);
2793 write_type (type);
2794 result = finish_mangling (/*warn=*/false);
2795 if (DEBUG_MANGLE)
2796 fprintf (stderr, "mangle_type_string = '%s'\n\n", result);
2797 return result;
2800 /* Create an identifier for the mangled name of a special component
2801 for belonging to TYPE. CODE is the ABI-specified code for this
2802 component. */
2804 static tree
2805 mangle_special_for_type (const tree type, const char *code)
2807 tree result;
2809 /* We don't have an actual decl here for the special component, so
2810 we can't just process the <encoded-name>. Instead, fake it. */
2811 start_mangling (type);
2813 /* Start the mangling. */
2814 write_string ("_Z");
2815 write_string (code);
2817 /* Add the type. */
2818 write_type (type);
2819 result = finish_mangling_get_identifier (/*warn=*/false);
2821 if (DEBUG_MANGLE)
2822 fprintf (stderr, "mangle_special_for_type = %s\n\n",
2823 IDENTIFIER_POINTER (result));
2825 return result;
2828 /* Create an identifier for the mangled representation of the typeinfo
2829 structure for TYPE. */
2831 tree
2832 mangle_typeinfo_for_type (const tree type)
2834 return mangle_special_for_type (type, "TI");
2837 /* Create an identifier for the mangled name of the NTBS containing
2838 the mangled name of TYPE. */
2840 tree
2841 mangle_typeinfo_string_for_type (const tree type)
2843 return mangle_special_for_type (type, "TS");
2846 /* Create an identifier for the mangled name of the vtable for TYPE. */
2848 tree
2849 mangle_vtbl_for_type (const tree type)
2851 return mangle_special_for_type (type, "TV");
2854 /* Returns an identifier for the mangled name of the VTT for TYPE. */
2856 tree
2857 mangle_vtt_for_type (const tree type)
2859 return mangle_special_for_type (type, "TT");
2862 /* Return an identifier for a construction vtable group. TYPE is
2863 the most derived class in the hierarchy; BINFO is the base
2864 subobject for which this construction vtable group will be used.
2866 This mangling isn't part of the ABI specification; in the ABI
2867 specification, the vtable group is dumped in the same COMDAT as the
2868 main vtable, and is referenced only from that vtable, so it doesn't
2869 need an external name. For binary formats without COMDAT sections,
2870 though, we need external names for the vtable groups.
2872 We use the production
2874 <special-name> ::= CT <type> <offset number> _ <base type> */
2876 tree
2877 mangle_ctor_vtbl_for_type (const tree type, const tree binfo)
2879 tree result;
2881 start_mangling (type);
2883 write_string ("_Z");
2884 write_string ("TC");
2885 write_type (type);
2886 write_integer_cst (BINFO_OFFSET (binfo));
2887 write_char ('_');
2888 write_type (BINFO_TYPE (binfo));
2890 result = finish_mangling_get_identifier (/*warn=*/false);
2891 if (DEBUG_MANGLE)
2892 fprintf (stderr, "mangle_ctor_vtbl_for_type = %s\n\n",
2893 IDENTIFIER_POINTER (result));
2894 return result;
2897 /* Mangle a this pointer or result pointer adjustment.
2899 <call-offset> ::= h <fixed offset number> _
2900 ::= v <fixed offset number> _ <virtual offset number> _ */
2902 static void
2903 mangle_call_offset (const tree fixed_offset, const tree virtual_offset)
2905 write_char (virtual_offset ? 'v' : 'h');
2907 /* For either flavor, write the fixed offset. */
2908 write_integer_cst (fixed_offset);
2909 write_char ('_');
2911 /* For a virtual thunk, add the virtual offset. */
2912 if (virtual_offset)
2914 write_integer_cst (virtual_offset);
2915 write_char ('_');
2919 /* Return an identifier for the mangled name of a this-adjusting or
2920 covariant thunk to FN_DECL. FIXED_OFFSET is the initial adjustment
2921 to this used to find the vptr. If VIRTUAL_OFFSET is non-NULL, this
2922 is a virtual thunk, and it is the vtbl offset in
2923 bytes. THIS_ADJUSTING is nonzero for a this adjusting thunk and
2924 zero for a covariant thunk. Note, that FN_DECL might be a covariant
2925 thunk itself. A covariant thunk name always includes the adjustment
2926 for the this pointer, even if there is none.
2928 <special-name> ::= T <call-offset> <base encoding>
2929 ::= Tc <this_adjust call-offset> <result_adjust call-offset>
2930 <base encoding> */
2932 tree
2933 mangle_thunk (tree fn_decl, const int this_adjusting, tree fixed_offset,
2934 tree virtual_offset)
2936 tree result;
2938 start_mangling (fn_decl);
2940 write_string ("_Z");
2941 write_char ('T');
2943 if (!this_adjusting)
2945 /* Covariant thunk with no this adjustment */
2946 write_char ('c');
2947 mangle_call_offset (integer_zero_node, NULL_TREE);
2948 mangle_call_offset (fixed_offset, virtual_offset);
2950 else if (!DECL_THUNK_P (fn_decl))
2951 /* Plain this adjusting thunk. */
2952 mangle_call_offset (fixed_offset, virtual_offset);
2953 else
2955 /* This adjusting thunk to covariant thunk. */
2956 write_char ('c');
2957 mangle_call_offset (fixed_offset, virtual_offset);
2958 fixed_offset = ssize_int (THUNK_FIXED_OFFSET (fn_decl));
2959 virtual_offset = THUNK_VIRTUAL_OFFSET (fn_decl);
2960 if (virtual_offset)
2961 virtual_offset = BINFO_VPTR_FIELD (virtual_offset);
2962 mangle_call_offset (fixed_offset, virtual_offset);
2963 fn_decl = THUNK_TARGET (fn_decl);
2966 /* Scoped name. */
2967 write_encoding (fn_decl);
2969 result = finish_mangling_get_identifier (/*warn=*/false);
2970 if (DEBUG_MANGLE)
2971 fprintf (stderr, "mangle_thunk = %s\n\n", IDENTIFIER_POINTER (result));
2972 return result;
2975 /* This hash table maps TYPEs to the IDENTIFIER for a conversion
2976 operator to TYPE. The nodes are IDENTIFIERs whose TREE_TYPE is the
2977 TYPE. */
2979 static GTY ((param_is (union tree_node))) htab_t conv_type_names;
2981 /* Hash a node (VAL1) in the table. */
2983 static hashval_t
2984 hash_type (const void *val)
2986 return (hashval_t) TYPE_UID (TREE_TYPE ((const_tree) val));
2989 /* Compare VAL1 (a node in the table) with VAL2 (a TYPE). */
2991 static int
2992 compare_type (const void *val1, const void *val2)
2994 return TREE_TYPE ((const_tree) val1) == (const_tree) val2;
2997 /* Return an identifier for the mangled unqualified name for a
2998 conversion operator to TYPE. This mangling is not specified by the
2999 ABI spec; it is only used internally. */
3001 tree
3002 mangle_conv_op_name_for_type (const tree type)
3004 void **slot;
3005 tree identifier;
3007 if (type == error_mark_node)
3008 return error_mark_node;
3010 if (conv_type_names == NULL)
3011 conv_type_names = htab_create_ggc (31, &hash_type, &compare_type, NULL);
3013 slot = htab_find_slot_with_hash (conv_type_names, type,
3014 (hashval_t) TYPE_UID (type), INSERT);
3015 identifier = (tree)*slot;
3016 if (!identifier)
3018 char buffer[64];
3020 /* Create a unique name corresponding to TYPE. */
3021 sprintf (buffer, "operator %lu",
3022 (unsigned long) htab_elements (conv_type_names));
3023 identifier = get_identifier (buffer);
3024 *slot = identifier;
3026 /* Hang TYPE off the identifier so it can be found easily later
3027 when performing conversions. */
3028 TREE_TYPE (identifier) = type;
3030 /* Set bits on the identifier so we know later it's a conversion. */
3031 IDENTIFIER_OPNAME_P (identifier) = 1;
3032 IDENTIFIER_TYPENAME_P (identifier) = 1;
3035 return identifier;
3038 /* Return an identifier for the name of an initialization guard
3039 variable for indicated VARIABLE. */
3041 tree
3042 mangle_guard_variable (const tree variable)
3044 start_mangling (variable);
3045 write_string ("_ZGV");
3046 if (strncmp (IDENTIFIER_POINTER (DECL_NAME (variable)), "_ZGR", 4) == 0)
3047 /* The name of a guard variable for a reference temporary should refer
3048 to the reference, not the temporary. */
3049 write_string (IDENTIFIER_POINTER (DECL_NAME (variable)) + 4);
3050 else
3051 write_name (variable, /*ignore_local_scope=*/0);
3052 return finish_mangling_get_identifier (/*warn=*/false);
3055 /* Return an identifier for the name of a temporary variable used to
3056 initialize a static reference. This isn't part of the ABI, but we might
3057 as well call them something readable. */
3059 tree
3060 mangle_ref_init_variable (const tree variable)
3062 start_mangling (variable);
3063 write_string ("_ZGR");
3064 write_name (variable, /*ignore_local_scope=*/0);
3065 return finish_mangling_get_identifier (/*warn=*/false);
3069 /* Foreign language type mangling section. */
3071 /* How to write the type codes for the integer Java type. */
3073 static void
3074 write_java_integer_type_codes (const tree type)
3076 if (type == java_int_type_node)
3077 write_char ('i');
3078 else if (type == java_short_type_node)
3079 write_char ('s');
3080 else if (type == java_byte_type_node)
3081 write_char ('c');
3082 else if (type == java_char_type_node)
3083 write_char ('w');
3084 else if (type == java_long_type_node)
3085 write_char ('x');
3086 else if (type == java_boolean_type_node)
3087 write_char ('b');
3088 else
3089 gcc_unreachable ();
3092 #include "gt-cp-mangle.h"