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)
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
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 */
50 #include "coretypes.h"
61 /* Debugging support. */
63 /* Define DEBUG_MANGLE to enable very verbose trace messages. */
65 #define DEBUG_MANGLE 0
68 /* Macros for tracing the write_* functions. */
70 # define MANGLE_TRACE(FN, INPUT) \
71 fprintf (stderr, " %-24s: %-24s\n", (FN), (INPUT))
72 # define MANGLE_TRACE_TREE(FN, NODE) \
73 fprintf (stderr, " %-24s: %-24s (%p)\n", \
74 (FN), tree_code_name[TREE_CODE (NODE)], (void *) (NODE))
76 # define MANGLE_TRACE(FN, INPUT)
77 # define MANGLE_TRACE_TREE(FN, NODE)
80 /* Nonzero if NODE is a class template-id. We can't rely on
81 CLASSTYPE_USE_TEMPLATE here because of tricky bugs in the parser
82 that hard to distinguish A<T> from A, where A<T> is the type as
83 instantiated outside of the template, and A is the type used
84 without parameters inside the template. */
85 #define CLASSTYPE_TEMPLATE_ID_P(NODE) \
86 (TYPE_LANG_SPECIFIC (NODE) != NULL \
87 && (TREE_CODE (NODE) == BOUND_TEMPLATE_TEMPLATE_PARM \
88 || (CLASSTYPE_TEMPLATE_INFO (NODE) != NULL \
89 && (PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (NODE))))))
91 /* Things we only need one of. This module is not reentrant. */
92 typedef struct GTY(()) globals
{
93 /* An array of the current substitution candidates, in the order
95 VEC(tree
,gc
) *substitutions
;
97 /* The entity that is being mangled. */
98 tree
GTY ((skip
)) entity
;
100 /* True if the mangling will be different in a future version of the
102 bool need_abi_warning
;
105 static GTY (()) globals G
;
107 /* The obstack on which we build mangled names. */
108 static struct obstack
*mangle_obstack
;
110 /* The obstack on which we build mangled names that are not going to
111 be IDENTIFIER_NODEs. */
112 static struct obstack name_obstack
;
114 /* The first object on the name_obstack; we use this to free memory
115 allocated on the name_obstack. */
116 static void *name_base
;
118 /* Indices into subst_identifiers. These are identifiers used in
119 special substitution rules. */
127 SUBID_BASIC_IOSTREAM
,
130 substitution_identifier_index_t
;
132 /* For quick substitution checks, look up these common identifiers
134 static GTY(()) tree subst_identifiers
[SUBID_MAX
];
136 /* Single-letter codes for builtin integer types, defined in
137 <builtin-type>. These are indexed by integer_type_kind values. */
139 integer_type_codes
[itk_none
] =
142 'a', /* itk_signed_char */
143 'h', /* itk_unsigned_char */
145 't', /* itk_unsigned_short */
147 'j', /* itk_unsigned_int */
149 'm', /* itk_unsigned_long */
150 'x', /* itk_long_long */
151 'y', /* itk_unsigned_long_long */
152 'n', /* itk_int128 */
153 'o', /* itk_unsigned_int128 */
156 static int decl_is_template_id (const tree
, tree
* const);
158 /* Functions for handling substitutions. */
160 static inline tree
canonicalize_for_substitution (tree
);
161 static void add_substitution (tree
);
162 static inline int is_std_substitution (const tree
,
163 const substitution_identifier_index_t
);
164 static inline int is_std_substitution_char (const tree
,
165 const substitution_identifier_index_t
);
166 static int find_substitution (tree
);
167 static void mangle_call_offset (const tree
, const tree
);
169 /* Functions for emitting mangled representations of things. */
171 static void write_mangled_name (const tree
, bool);
172 static void write_encoding (const tree
);
173 static void write_name (tree
, const int);
174 static void write_unscoped_name (const tree
);
175 static void write_unscoped_template_name (const tree
);
176 static void write_nested_name (const tree
);
177 static void write_prefix (const tree
);
178 static void write_template_prefix (const tree
);
179 static void write_unqualified_name (const tree
);
180 static void write_conversion_operator_name (const tree
);
181 static void write_source_name (tree
);
182 static void write_unnamed_type_name (const tree
);
183 static void write_closure_type_name (const tree
);
184 static int hwint_to_ascii (unsigned HOST_WIDE_INT
, const unsigned int, char *,
186 static void write_number (unsigned HOST_WIDE_INT
, const int,
188 static void write_compact_number (int num
);
189 static void write_integer_cst (const tree
);
190 static void write_real_cst (const tree
);
191 static void write_identifier (const char *);
192 static void write_special_name_constructor (const tree
);
193 static void write_special_name_destructor (const tree
);
194 static void write_type (tree
);
195 static int write_CV_qualifiers_for_type (const tree
);
196 static void write_builtin_type (tree
);
197 static void write_function_type (const tree
);
198 static void write_bare_function_type (const tree
, const int, const tree
);
199 static void write_method_parms (tree
, const int, const tree
);
200 static void write_class_enum_type (const tree
);
201 static void write_template_args (tree
);
202 static void write_expression (tree
);
203 static void write_template_arg_literal (const tree
);
204 static void write_template_arg (tree
);
205 static void write_template_template_arg (const tree
);
206 static void write_array_type (const tree
);
207 static void write_pointer_to_member_type (const tree
);
208 static void write_template_param (const tree
);
209 static void write_template_template_param (const tree
);
210 static void write_substitution (const int);
211 static int discriminator_for_local_entity (tree
);
212 static int discriminator_for_string_literal (tree
, tree
);
213 static void write_discriminator (const int);
214 static void write_local_name (tree
, const tree
, const tree
);
215 static void dump_substitution_candidates (void);
216 static tree
mangle_decl_string (const tree
);
217 static int local_class_index (tree
);
219 /* Control functions. */
221 static inline void start_mangling (const tree
);
222 static inline const char *finish_mangling (const bool);
223 static tree
mangle_special_for_type (const tree
, const char *);
225 /* Foreign language functions. */
227 static void write_java_integer_type_codes (const tree
);
229 /* Append a single character to the end of the mangled
231 #define write_char(CHAR) \
232 obstack_1grow (mangle_obstack, (CHAR))
234 /* Append a sized buffer to the end of the mangled representation. */
235 #define write_chars(CHAR, LEN) \
236 obstack_grow (mangle_obstack, (CHAR), (LEN))
238 /* Append a NUL-terminated string to the end of the mangled
240 #define write_string(STRING) \
241 obstack_grow (mangle_obstack, (STRING), strlen (STRING))
243 /* Nonzero if NODE1 and NODE2 are both TREE_LIST nodes and have the
244 same purpose (context, which may be a type) and value (template
245 decl). See write_template_prefix for more information on what this
247 #define NESTED_TEMPLATE_MATCH(NODE1, NODE2) \
248 (TREE_CODE (NODE1) == TREE_LIST \
249 && TREE_CODE (NODE2) == TREE_LIST \
250 && ((TYPE_P (TREE_PURPOSE (NODE1)) \
251 && same_type_p (TREE_PURPOSE (NODE1), TREE_PURPOSE (NODE2))) \
252 || TREE_PURPOSE (NODE1) == TREE_PURPOSE (NODE2)) \
253 && TREE_VALUE (NODE1) == TREE_VALUE (NODE2))
255 /* Write out an unsigned quantity in base 10. */
256 #define write_unsigned_number(NUMBER) \
257 write_number ((NUMBER), /*unsigned_p=*/1, 10)
259 /* If DECL is a template instance, return nonzero and, if
260 TEMPLATE_INFO is non-NULL, set *TEMPLATE_INFO to its template info.
261 Otherwise return zero. */
264 decl_is_template_id (const tree decl
, tree
* const template_info
)
266 if (TREE_CODE (decl
) == TYPE_DECL
)
268 /* TYPE_DECLs are handled specially. Look at its type to decide
269 if this is a template instantiation. */
270 const tree type
= TREE_TYPE (decl
);
272 if (CLASS_TYPE_P (type
) && CLASSTYPE_TEMPLATE_ID_P (type
))
274 if (template_info
!= NULL
)
275 /* For a templated TYPE_DECL, the template info is hanging
277 *template_info
= TYPE_TEMPLATE_INFO (type
);
283 /* Check if this is a primary template. */
284 if (DECL_LANG_SPECIFIC (decl
) != NULL
285 && DECL_USE_TEMPLATE (decl
)
286 && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl
))
287 && TREE_CODE (decl
) != TEMPLATE_DECL
)
289 if (template_info
!= NULL
)
290 /* For most templated decls, the template info is hanging
292 *template_info
= DECL_TEMPLATE_INFO (decl
);
297 /* It's not a template id. */
301 /* Produce debugging output of current substitution candidates. */
304 dump_substitution_candidates (void)
309 fprintf (stderr
, " ++ substitutions ");
310 for (i
= 0; VEC_iterate (tree
, G
.substitutions
, i
, el
); ++i
)
312 const char *name
= "???";
315 fprintf (stderr
, " ");
317 name
= IDENTIFIER_POINTER (DECL_NAME (el
));
318 else if (TREE_CODE (el
) == TREE_LIST
)
319 name
= IDENTIFIER_POINTER (DECL_NAME (TREE_VALUE (el
)));
320 else if (TYPE_NAME (el
))
321 name
= IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (el
)));
322 fprintf (stderr
, " S%d_ = ", i
- 1);
324 (CP_TYPE_RESTRICT_P (el
)
325 || CP_TYPE_VOLATILE_P (el
)
326 || CP_TYPE_CONST_P (el
)))
327 fprintf (stderr
, "CV-");
328 fprintf (stderr
, "%s (%s at %p)\n",
329 name
, tree_code_name
[TREE_CODE (el
)], (void *) el
);
333 /* Both decls and types can be substitution candidates, but sometimes
334 they refer to the same thing. For instance, a TYPE_DECL and
335 RECORD_TYPE for the same class refer to the same thing, and should
336 be treated accordingly in substitutions. This function returns a
337 canonicalized tree node representing NODE that is used when adding
338 and substitution candidates and finding matches. */
341 canonicalize_for_substitution (tree node
)
343 /* For a TYPE_DECL, use the type instead. */
344 if (TREE_CODE (node
) == TYPE_DECL
)
345 node
= TREE_TYPE (node
);
347 && TYPE_CANONICAL (node
) != node
348 && TYPE_MAIN_VARIANT (node
) != node
)
350 /* Here we want to strip the topmost typedef only.
351 We need to do that so is_std_substitution can do proper
353 if (TREE_CODE (node
) == FUNCTION_TYPE
)
354 /* Use build_qualified_type and TYPE_QUALS here to preserve
355 the old buggy mangling of attribute noreturn with abi<5. */
356 node
= build_qualified_type (TYPE_MAIN_VARIANT (node
),
359 node
= cp_build_qualified_type (TYPE_MAIN_VARIANT (node
),
360 cp_type_quals (node
));
365 /* Add NODE as a substitution candidate. NODE must not already be on
366 the list of candidates. */
369 add_substitution (tree node
)
374 fprintf (stderr
, " ++ add_substitution (%s at %10p)\n",
375 tree_code_name
[TREE_CODE (node
)], (void *) node
);
377 /* Get the canonicalized substitution candidate for NODE. */
378 c
= canonicalize_for_substitution (node
);
379 if (DEBUG_MANGLE
&& c
!= node
)
380 fprintf (stderr
, " ++ using candidate (%s at %10p)\n",
381 tree_code_name
[TREE_CODE (node
)], (void *) node
);
385 /* Make sure NODE isn't already a candidate. */
390 for (i
= 0; VEC_iterate (tree
, G
.substitutions
, i
, candidate
); i
++)
392 gcc_assert (!(DECL_P (node
) && node
== candidate
));
393 gcc_assert (!(TYPE_P (node
) && TYPE_P (candidate
)
394 && same_type_p (node
, candidate
)));
397 #endif /* ENABLE_CHECKING */
399 /* Put the decl onto the varray of substitution candidates. */
400 VEC_safe_push (tree
, gc
, G
.substitutions
, node
);
403 dump_substitution_candidates ();
406 /* Helper function for find_substitution. Returns nonzero if NODE,
407 which may be a decl or a CLASS_TYPE, is a template-id with template
408 name of substitution_index[INDEX] in the ::std namespace. */
411 is_std_substitution (const tree node
,
412 const substitution_identifier_index_t index
)
419 type
= TREE_TYPE (node
);
422 else if (CLASS_TYPE_P (node
))
425 decl
= TYPE_NAME (node
);
428 /* These are not the droids you're looking for. */
431 return (DECL_NAMESPACE_STD_P (CP_DECL_CONTEXT (decl
))
432 && TYPE_LANG_SPECIFIC (type
)
433 && TYPE_TEMPLATE_INFO (type
)
434 && (DECL_NAME (TYPE_TI_TEMPLATE (type
))
435 == subst_identifiers
[index
]));
438 /* Helper function for find_substitution. Returns nonzero if NODE,
439 which may be a decl or a CLASS_TYPE, is the template-id
440 ::std::identifier<char>, where identifier is
441 substitution_index[INDEX]. */
444 is_std_substitution_char (const tree node
,
445 const substitution_identifier_index_t index
)
448 /* Check NODE's name is ::std::identifier. */
449 if (!is_std_substitution (node
, index
))
451 /* Figure out its template args. */
453 args
= DECL_TI_ARGS (node
);
454 else if (CLASS_TYPE_P (node
))
455 args
= CLASSTYPE_TI_ARGS (node
);
457 /* Oops, not a template. */
459 /* NODE's template arg list should be <char>. */
461 TREE_VEC_LENGTH (args
) == 1
462 && TREE_VEC_ELT (args
, 0) == char_type_node
;
465 /* Check whether a substitution should be used to represent NODE in
468 First, check standard special-case substitutions.
470 <substitution> ::= St
477 # ::std::basic_string
480 # ::std::basic_string<char,
481 ::std::char_traits<char>,
482 ::std::allocator<char> >
485 # ::std::basic_istream<char, ::std::char_traits<char> >
488 # ::std::basic_ostream<char, ::std::char_traits<char> >
491 # ::std::basic_iostream<char, ::std::char_traits<char> >
493 Then examine the stack of currently available substitution
494 candidates for entities appearing earlier in the same mangling
496 If a substitution is found, write its mangled representation and
497 return nonzero. If none is found, just return zero. */
500 find_substitution (tree node
)
503 const int size
= VEC_length (tree
, G
.substitutions
);
508 fprintf (stderr
, " ++ find_substitution (%s at %p)\n",
509 tree_code_name
[TREE_CODE (node
)], (void *) node
);
511 /* Obtain the canonicalized substitution representation for NODE.
512 This is what we'll compare against. */
513 node
= canonicalize_for_substitution (node
);
515 /* Check for builtin substitutions. */
517 decl
= TYPE_P (node
) ? TYPE_NAME (node
) : node
;
518 type
= TYPE_P (node
) ? node
: TREE_TYPE (node
);
520 /* Check for std::allocator. */
522 && is_std_substitution (decl
, SUBID_ALLOCATOR
)
523 && !CLASSTYPE_USE_TEMPLATE (TREE_TYPE (decl
)))
529 /* Check for std::basic_string. */
530 if (decl
&& is_std_substitution (decl
, SUBID_BASIC_STRING
))
534 /* If this is a type (i.e. a fully-qualified template-id),
536 std::basic_string <char,
537 std::char_traits<char>,
538 std::allocator<char> > . */
539 if (cp_type_quals (type
) == TYPE_UNQUALIFIED
540 && CLASSTYPE_USE_TEMPLATE (type
))
542 tree args
= CLASSTYPE_TI_ARGS (type
);
543 if (TREE_VEC_LENGTH (args
) == 3
544 && same_type_p (TREE_VEC_ELT (args
, 0), char_type_node
)
545 && is_std_substitution_char (TREE_VEC_ELT (args
, 1),
547 && is_std_substitution_char (TREE_VEC_ELT (args
, 2),
556 /* Substitute for the template name only if this isn't a type. */
563 /* Check for basic_{i,o,io}stream. */
565 && cp_type_quals (type
) == TYPE_UNQUALIFIED
566 && CLASS_TYPE_P (type
)
567 && CLASSTYPE_USE_TEMPLATE (type
)
568 && CLASSTYPE_TEMPLATE_INFO (type
) != NULL
)
570 /* First, check for the template
571 args <char, std::char_traits<char> > . */
572 tree args
= CLASSTYPE_TI_ARGS (type
);
573 if (TREE_VEC_LENGTH (args
) == 2
574 && TYPE_P (TREE_VEC_ELT (args
, 0))
575 && same_type_p (TREE_VEC_ELT (args
, 0), char_type_node
)
576 && is_std_substitution_char (TREE_VEC_ELT (args
, 1),
579 /* Got them. Is this basic_istream? */
580 if (is_std_substitution (decl
, SUBID_BASIC_ISTREAM
))
585 /* Or basic_ostream? */
586 else if (is_std_substitution (decl
, SUBID_BASIC_OSTREAM
))
591 /* Or basic_iostream? */
592 else if (is_std_substitution (decl
, SUBID_BASIC_IOSTREAM
))
600 /* Check for namespace std. */
601 if (decl
&& DECL_NAMESPACE_STD_P (decl
))
607 /* Now check the list of available substitutions for this mangling
609 for (i
= 0; i
< size
; ++i
)
611 tree candidate
= VEC_index (tree
, G
.substitutions
, i
);
612 /* NODE is a matched to a candidate if it's the same decl node or
613 if it's the same type. */
614 if (decl
== candidate
615 || (TYPE_P (candidate
) && type
&& TYPE_P (type
)
616 && same_type_p (type
, candidate
))
617 || NESTED_TEMPLATE_MATCH (node
, candidate
))
619 write_substitution (i
);
624 /* No substitution found. */
629 /* TOP_LEVEL is true, if this is being called at outermost level of
630 mangling. It should be false when mangling a decl appearing in an
631 expression within some other mangling.
633 <mangled-name> ::= _Z <encoding> */
636 write_mangled_name (const tree decl
, bool top_level
)
638 MANGLE_TRACE_TREE ("mangled-name", decl
);
640 if (/* The names of `extern "C"' functions are not mangled. */
641 DECL_EXTERN_C_FUNCTION_P (decl
)
642 /* But overloaded operator names *are* mangled. */
643 && !DECL_OVERLOADED_OPERATOR_P (decl
))
648 write_string (IDENTIFIER_POINTER (DECL_NAME (decl
)));
651 /* The standard notes: "The <encoding> of an extern "C"
652 function is treated like global-scope data, i.e. as its
653 <source-name> without a type." We cannot write
654 overloaded operators that way though, because it contains
655 characters invalid in assembler. */
656 if (abi_version_at_least (2))
659 G
.need_abi_warning
= true;
660 write_source_name (DECL_NAME (decl
));
663 else if (TREE_CODE (decl
) == VAR_DECL
664 /* The names of non-static global variables aren't mangled. */
665 && DECL_EXTERNAL_LINKAGE_P (decl
)
666 && (CP_DECL_CONTEXT (decl
) == global_namespace
667 /* And neither are `extern "C"' variables. */
668 || DECL_EXTERN_C_P (decl
)))
670 if (top_level
|| abi_version_at_least (2))
674 G
.need_abi_warning
= true;
682 write_encoding (decl
);
683 if (DECL_LANG_SPECIFIC (decl
)
684 && (DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P (decl
)
685 || DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (decl
)))
686 /* We need a distinct mangled name for these entities, but
687 we should never actually output it. So, we append some
688 characters the assembler won't like. */
689 write_string (" *INTERNAL* ");
693 /* <encoding> ::= <function name> <bare-function-type>
697 write_encoding (const tree decl
)
699 MANGLE_TRACE_TREE ("encoding", decl
);
701 if (DECL_LANG_SPECIFIC (decl
) && DECL_EXTERN_C_FUNCTION_P (decl
))
703 /* For overloaded operators write just the mangled name
704 without arguments. */
705 if (DECL_OVERLOADED_OPERATOR_P (decl
))
706 write_name (decl
, /*ignore_local_scope=*/0);
708 write_source_name (DECL_NAME (decl
));
712 write_name (decl
, /*ignore_local_scope=*/0);
713 if (TREE_CODE (decl
) == FUNCTION_DECL
)
718 if (decl_is_template_id (decl
, NULL
))
720 fn_type
= get_mostly_instantiated_function_type (decl
);
721 /* FN_TYPE will not have parameter types for in-charge or
722 VTT parameters. Therefore, we pass NULL_TREE to
723 write_bare_function_type -- otherwise, it will get
724 confused about which artificial parameters to skip. */
729 fn_type
= TREE_TYPE (decl
);
733 write_bare_function_type (fn_type
,
734 (!DECL_CONSTRUCTOR_P (decl
)
735 && !DECL_DESTRUCTOR_P (decl
)
736 && !DECL_CONV_FN_P (decl
)
737 && decl_is_template_id (decl
, NULL
)),
742 /* Lambdas can have a bit more context for mangling, specifically VAR_DECL
743 or PARM_DECL context, which doesn't belong in DECL_CONTEXT. */
746 decl_mangling_context (tree decl
)
748 if (TREE_CODE (decl
) == TYPE_DECL
749 && LAMBDA_TYPE_P (TREE_TYPE (decl
)))
751 tree extra
= LAMBDA_TYPE_EXTRA_SCOPE (TREE_TYPE (decl
));
755 else if (TREE_CODE (decl
) == TYPE_DECL
756 && TREE_CODE (TREE_TYPE (decl
)) == TEMPLATE_TYPE_PARM
)
757 /* template type parms have no mangling context. */
759 return CP_DECL_CONTEXT (decl
);
762 /* <name> ::= <unscoped-name>
763 ::= <unscoped-template-name> <template-args>
767 If IGNORE_LOCAL_SCOPE is nonzero, this production of <name> is
768 called from <local-name>, which mangles the enclosing scope
769 elsewhere and then uses this function to mangle just the part
770 underneath the function scope. So don't use the <local-name>
771 production, to avoid an infinite recursion. */
774 write_name (tree decl
, const int ignore_local_scope
)
778 MANGLE_TRACE_TREE ("name", decl
);
780 if (TREE_CODE (decl
) == TYPE_DECL
)
782 /* In case this is a typedef, fish out the corresponding
783 TYPE_DECL for the main variant. */
784 decl
= TYPE_NAME (TYPE_MAIN_VARIANT (TREE_TYPE (decl
)));
787 context
= decl_mangling_context (decl
);
789 /* A decl in :: or ::std scope is treated specially. The former is
790 mangled using <unscoped-name> or <unscoped-template-name>, the
791 latter with a special substitution. Also, a name that is
792 directly in a local function scope is also mangled with
793 <unscoped-name> rather than a full <nested-name>. */
795 || context
== global_namespace
796 || DECL_NAMESPACE_STD_P (context
)
797 || (ignore_local_scope
&& TREE_CODE (context
) == FUNCTION_DECL
))
800 /* Is this a template instance? */
801 if (decl_is_template_id (decl
, &template_info
))
803 /* Yes: use <unscoped-template-name>. */
804 write_unscoped_template_name (TI_TEMPLATE (template_info
));
805 write_template_args (TI_ARGS (template_info
));
808 /* Everything else gets an <unqualified-name>. */
809 write_unscoped_name (decl
);
813 /* Handle local names, unless we asked not to (that is, invoked
814 under <local-name>, to handle only the part of the name under
816 if (!ignore_local_scope
)
818 /* Scan up the list of scope context, looking for a
819 function. If we find one, this entity is in local
820 function scope. local_entity tracks context one scope
821 level down, so it will contain the element that's
822 directly in that function's scope, either decl or one of
823 its enclosing scopes. */
824 tree local_entity
= decl
;
825 while (context
!= NULL
&& context
!= global_namespace
)
827 /* Make sure we're always dealing with decls. */
828 if (context
!= NULL
&& TYPE_P (context
))
829 context
= TYPE_NAME (context
);
830 /* Is this a function? */
831 if (TREE_CODE (context
) == FUNCTION_DECL
832 || TREE_CODE (context
) == PARM_DECL
)
834 /* Yes, we have local scope. Use the <local-name>
835 production for the innermost function scope. */
836 write_local_name (context
, local_entity
, decl
);
839 /* Up one scope level. */
840 local_entity
= context
;
841 context
= decl_mangling_context (context
);
844 /* No local scope found? Fall through to <nested-name>. */
847 /* Other decls get a <nested-name> to encode their scope. */
848 write_nested_name (decl
);
852 /* <unscoped-name> ::= <unqualified-name>
853 ::= St <unqualified-name> # ::std:: */
856 write_unscoped_name (const tree decl
)
858 tree context
= CP_DECL_CONTEXT (decl
);
860 MANGLE_TRACE_TREE ("unscoped-name", decl
);
862 /* Is DECL in ::std? */
863 if (DECL_NAMESPACE_STD_P (context
))
866 write_unqualified_name (decl
);
870 /* If not, it should be either in the global namespace, or directly
871 in a local function scope. */
872 gcc_assert (context
== global_namespace
874 || TREE_CODE (context
) == FUNCTION_DECL
);
876 write_unqualified_name (decl
);
880 /* <unscoped-template-name> ::= <unscoped-name>
881 ::= <substitution> */
884 write_unscoped_template_name (const tree decl
)
886 MANGLE_TRACE_TREE ("unscoped-template-name", decl
);
888 if (find_substitution (decl
))
890 write_unscoped_name (decl
);
891 add_substitution (decl
);
894 /* Write the nested name, including CV-qualifiers, of DECL.
896 <nested-name> ::= N [<CV-qualifiers>] <prefix> <unqualified-name> E
897 ::= N [<CV-qualifiers>] <template-prefix> <template-args> E
899 <CV-qualifiers> ::= [r] [V] [K] */
902 write_nested_name (const tree decl
)
906 MANGLE_TRACE_TREE ("nested-name", decl
);
910 /* Write CV-qualifiers, if this is a member function. */
911 if (TREE_CODE (decl
) == FUNCTION_DECL
912 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl
))
914 if (DECL_VOLATILE_MEMFUNC_P (decl
))
916 if (DECL_CONST_MEMFUNC_P (decl
))
920 /* Is this a template instance? */
921 if (decl_is_template_id (decl
, &template_info
))
923 /* Yes, use <template-prefix>. */
924 write_template_prefix (decl
);
925 write_template_args (TI_ARGS (template_info
));
927 else if (TREE_CODE (TREE_TYPE (decl
)) == TYPENAME_TYPE
)
929 tree name
= TYPENAME_TYPE_FULLNAME (TREE_TYPE (decl
));
930 if (TREE_CODE (name
) == TEMPLATE_ID_EXPR
)
932 write_template_prefix (decl
);
933 write_template_args (TREE_OPERAND (name
, 1));
937 write_prefix (CP_DECL_CONTEXT (decl
));
938 write_unqualified_name (decl
);
943 /* No, just use <prefix> */
944 write_prefix (DECL_CONTEXT (decl
));
945 write_unqualified_name (decl
);
950 /* <prefix> ::= <prefix> <unqualified-name>
952 ::= <template-prefix> <template-args>
954 ::= <substitution> */
957 write_prefix (const tree node
)
960 /* Non-NULL if NODE represents a template-id. */
961 tree template_info
= NULL
;
964 || node
== global_namespace
)
967 MANGLE_TRACE_TREE ("prefix", node
);
969 if (find_substitution (node
))
974 /* If this is a function or parm decl, that means we've hit function
975 scope, so this prefix must be for a local name. In this
976 case, we're under the <local-name> production, which encodes
977 the enclosing function scope elsewhere. So don't continue
979 if (TREE_CODE (node
) == FUNCTION_DECL
980 || TREE_CODE (node
) == PARM_DECL
)
984 decl_is_template_id (decl
, &template_info
);
988 /* Node is a type. */
989 decl
= TYPE_NAME (node
);
990 if (CLASSTYPE_TEMPLATE_ID_P (node
))
991 template_info
= TYPE_TEMPLATE_INFO (node
);
994 /* In G++ 3.2, the name of the template parameter was used. */
995 if (TREE_CODE (node
) == TEMPLATE_TYPE_PARM
996 && !abi_version_at_least (2))
997 G
.need_abi_warning
= true;
999 if (TREE_CODE (node
) == TEMPLATE_TYPE_PARM
1000 && abi_version_at_least (2))
1001 write_template_param (node
);
1002 else if (template_info
!= NULL
)
1005 write_template_prefix (decl
);
1006 write_template_args (TI_ARGS (template_info
));
1008 else if (TREE_CODE (TREE_TYPE (decl
)) == TYPENAME_TYPE
)
1010 tree name
= TYPENAME_TYPE_FULLNAME (TREE_TYPE (decl
));
1011 if (TREE_CODE (name
) == TEMPLATE_ID_EXPR
)
1013 write_template_prefix (decl
);
1014 write_template_args (TREE_OPERAND (name
, 1));
1018 write_prefix (CP_DECL_CONTEXT (decl
));
1019 write_unqualified_name (decl
);
1023 /* Not templated. */
1025 write_prefix (decl_mangling_context (decl
));
1026 write_unqualified_name (decl
);
1027 if (TREE_CODE (decl
) == VAR_DECL
1028 || TREE_CODE (decl
) == FIELD_DECL
)
1030 /* <data-member-prefix> := <member source-name> M */
1036 add_substitution (node
);
1039 /* <template-prefix> ::= <prefix> <template component>
1040 ::= <template-param>
1041 ::= <substitution> */
1044 write_template_prefix (const tree node
)
1046 tree decl
= DECL_P (node
) ? node
: TYPE_NAME (node
);
1047 tree type
= DECL_P (node
) ? TREE_TYPE (node
) : node
;
1048 tree context
= CP_DECL_CONTEXT (decl
);
1053 MANGLE_TRACE_TREE ("template-prefix", node
);
1055 /* Find the template decl. */
1056 if (decl_is_template_id (decl
, &template_info
))
1057 templ
= TI_TEMPLATE (template_info
);
1058 else if (TREE_CODE (type
) == TYPENAME_TYPE
)
1059 /* For a typename type, all we have is the name. */
1060 templ
= DECL_NAME (decl
);
1063 gcc_assert (CLASSTYPE_TEMPLATE_ID_P (type
));
1065 templ
= TYPE_TI_TEMPLATE (type
);
1068 /* For a member template, though, the template name for the
1069 innermost name must have all the outer template levels
1070 instantiated. For instance, consider
1072 template<typename T> struct Outer {
1073 template<typename U> struct Inner {};
1076 The template name for `Inner' in `Outer<int>::Inner<float>' is
1077 `Outer<int>::Inner<U>'. In g++, we don't instantiate the template
1078 levels separately, so there's no TEMPLATE_DECL available for this
1079 (there's only `Outer<T>::Inner<U>').
1081 In order to get the substitutions right, we create a special
1082 TREE_LIST to represent the substitution candidate for a nested
1083 template. The TREE_PURPOSE is the template's context, fully
1084 instantiated, and the TREE_VALUE is the TEMPLATE_DECL for the inner
1087 So, for the example above, `Outer<int>::Inner' is represented as a
1088 substitution candidate by a TREE_LIST whose purpose is `Outer<int>'
1089 and whose value is `Outer<T>::Inner<U>'. */
1090 if (TYPE_P (context
))
1091 substitution
= build_tree_list (context
, templ
);
1093 substitution
= templ
;
1095 if (find_substitution (substitution
))
1098 /* In G++ 3.2, the name of the template template parameter was used. */
1099 if (TREE_TYPE (templ
)
1100 && TREE_CODE (TREE_TYPE (templ
)) == TEMPLATE_TEMPLATE_PARM
1101 && !abi_version_at_least (2))
1102 G
.need_abi_warning
= true;
1104 if (TREE_TYPE (templ
)
1105 && TREE_CODE (TREE_TYPE (templ
)) == TEMPLATE_TEMPLATE_PARM
1106 && abi_version_at_least (2))
1107 write_template_param (TREE_TYPE (templ
));
1110 write_prefix (context
);
1111 write_unqualified_name (decl
);
1114 add_substitution (substitution
);
1117 /* We don't need to handle thunks, vtables, or VTTs here. Those are
1118 mangled through special entry points.
1120 <unqualified-name> ::= <operator-name>
1123 ::= <unnamed-type-name>
1124 ::= <local-source-name>
1126 <local-source-name> ::= L <source-name> <discriminator> */
1129 write_unqualified_id (tree identifier
)
1131 if (IDENTIFIER_TYPENAME_P (identifier
))
1132 write_conversion_operator_name (TREE_TYPE (identifier
));
1133 else if (IDENTIFIER_OPNAME_P (identifier
))
1136 const char *mangled_name
= NULL
;
1138 /* Unfortunately, there is no easy way to go from the
1139 name of the operator back to the corresponding tree
1141 for (i
= 0; i
< MAX_TREE_CODES
; ++i
)
1142 if (operator_name_info
[i
].identifier
== identifier
)
1144 /* The ABI says that we prefer binary operator
1145 names to unary operator names. */
1146 if (operator_name_info
[i
].arity
== 2)
1148 mangled_name
= operator_name_info
[i
].mangled_name
;
1151 else if (!mangled_name
)
1152 mangled_name
= operator_name_info
[i
].mangled_name
;
1154 else if (assignment_operator_name_info
[i
].identifier
1158 = assignment_operator_name_info
[i
].mangled_name
;
1161 write_string (mangled_name
);
1164 write_source_name (identifier
);
1168 write_unqualified_name (const tree decl
)
1170 MANGLE_TRACE_TREE ("unqualified-name", decl
);
1172 if (TREE_CODE (decl
) == IDENTIFIER_NODE
)
1174 write_unqualified_id (decl
);
1178 if (DECL_NAME (decl
) == NULL_TREE
)
1180 gcc_assert (DECL_ASSEMBLER_NAME_SET_P (decl
));
1181 write_source_name (DECL_ASSEMBLER_NAME (decl
));
1184 else if (DECL_DECLARES_FUNCTION_P (decl
))
1187 if (DECL_CONSTRUCTOR_P (decl
))
1188 write_special_name_constructor (decl
);
1189 else if (DECL_DESTRUCTOR_P (decl
))
1190 write_special_name_destructor (decl
);
1191 else if (DECL_CONV_FN_P (decl
))
1193 /* Conversion operator. Handle it right here.
1194 <operator> ::= cv <type> */
1196 if (decl_is_template_id (decl
, NULL
))
1199 fn_type
= get_mostly_instantiated_function_type (decl
);
1200 type
= TREE_TYPE (fn_type
);
1203 type
= DECL_CONV_FN_TYPE (decl
);
1204 write_conversion_operator_name (type
);
1206 else if (DECL_OVERLOADED_OPERATOR_P (decl
))
1208 operator_name_info_t
*oni
;
1209 if (DECL_ASSIGNMENT_OPERATOR_P (decl
))
1210 oni
= assignment_operator_name_info
;
1212 oni
= operator_name_info
;
1214 write_string (oni
[DECL_OVERLOADED_OPERATOR_P (decl
)].mangled_name
);
1223 if (VAR_OR_FUNCTION_DECL_P (decl
) && ! TREE_PUBLIC (decl
)
1224 && DECL_NAMESPACE_SCOPE_P (decl
)
1225 && decl_linkage (decl
) == lk_internal
)
1227 MANGLE_TRACE_TREE ("local-source-name", decl
);
1229 write_source_name (DECL_NAME (decl
));
1230 /* The default discriminator is 1, and that's all we ever use,
1231 so there's no code to output one here. */
1235 tree type
= TREE_TYPE (decl
);
1237 if (TREE_CODE (decl
) == TYPE_DECL
1238 && TYPE_ANONYMOUS_P (type
))
1239 write_unnamed_type_name (type
);
1240 else if (TREE_CODE (decl
) == TYPE_DECL
1241 && LAMBDA_TYPE_P (type
))
1242 write_closure_type_name (type
);
1244 write_source_name (DECL_NAME (decl
));
1248 /* Write the unqualified-name for a conversion operator to TYPE. */
1251 write_conversion_operator_name (const tree type
)
1253 write_string ("cv");
1257 /* Non-terminal <source-name>. IDENTIFIER is an IDENTIFIER_NODE.
1259 <source-name> ::= </length/ number> <identifier> */
1262 write_source_name (tree identifier
)
1264 MANGLE_TRACE_TREE ("source-name", identifier
);
1266 /* Never write the whole template-id name including the template
1267 arguments; we only want the template name. */
1268 if (IDENTIFIER_TEMPLATE (identifier
))
1269 identifier
= IDENTIFIER_TEMPLATE (identifier
);
1271 write_unsigned_number (IDENTIFIER_LENGTH (identifier
));
1272 write_identifier (IDENTIFIER_POINTER (identifier
));
1275 /* Encode 0 as _, and 1+ as n-1_. */
1278 write_compact_number (int num
)
1281 write_unsigned_number (num
- 1);
1285 /* Return how many unnamed types precede TYPE in its enclosing class. */
1288 nested_anon_class_index (tree type
)
1291 tree member
= TYPE_FIELDS (TYPE_CONTEXT (type
));
1292 for (; member
; member
= DECL_CHAIN (member
))
1293 if (DECL_IMPLICIT_TYPEDEF_P (member
))
1295 tree memtype
= TREE_TYPE (member
);
1296 if (memtype
== type
)
1298 else if (TYPE_ANONYMOUS_P (memtype
))
1305 /* <unnamed-type-name> ::= Ut [ <nonnegative number> ] _ */
1308 write_unnamed_type_name (const tree type
__attribute__ ((__unused__
)))
1311 MANGLE_TRACE_TREE ("unnamed-type-name", type
);
1313 if (TYPE_FUNCTION_SCOPE_P (type
))
1314 discriminator
= local_class_index (type
);
1315 else if (TYPE_CLASS_SCOPE_P (type
))
1316 discriminator
= nested_anon_class_index (type
);
1319 gcc_assert (no_linkage_check (type
, /*relaxed_p=*/true));
1320 /* Just use the old mangling at namespace scope. */
1321 write_source_name (TYPE_IDENTIFIER (type
));
1325 write_string ("Ut");
1326 write_compact_number (discriminator
);
1329 /* <closure-type-name> ::= Ul <lambda-sig> E [ <nonnegative number> ] _
1330 <lambda-sig> ::= <parameter type>+ # Parameter types or "v" if the lambda has no parameters */
1333 write_closure_type_name (const tree type
)
1335 tree fn
= lambda_function (type
);
1336 tree lambda
= CLASSTYPE_LAMBDA_EXPR (type
);
1337 tree parms
= TYPE_ARG_TYPES (TREE_TYPE (fn
));
1339 MANGLE_TRACE_TREE ("closure-type-name", type
);
1341 write_string ("Ul");
1342 write_method_parms (parms
, /*method_p=*/1, fn
);
1344 write_compact_number (LAMBDA_EXPR_DISCRIMINATOR (lambda
));
1347 /* Convert NUMBER to ascii using base BASE and generating at least
1348 MIN_DIGITS characters. BUFFER points to the _end_ of the buffer
1349 into which to store the characters. Returns the number of
1350 characters generated (these will be layed out in advance of where
1354 hwint_to_ascii (unsigned HOST_WIDE_INT number
, const unsigned int base
,
1355 char *buffer
, const unsigned int min_digits
)
1357 static const char base_digits
[] = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
1358 unsigned digits
= 0;
1362 unsigned HOST_WIDE_INT d
= number
/ base
;
1364 *--buffer
= base_digits
[number
- d
* base
];
1368 while (digits
< min_digits
)
1370 *--buffer
= base_digits
[0];
1376 /* Non-terminal <number>.
1378 <number> ::= [n] </decimal integer/> */
1381 write_number (unsigned HOST_WIDE_INT number
, const int unsigned_p
,
1382 const unsigned int base
)
1384 char buffer
[sizeof (HOST_WIDE_INT
) * 8];
1387 if (!unsigned_p
&& (HOST_WIDE_INT
) number
< 0)
1390 number
= -((HOST_WIDE_INT
) number
);
1392 count
= hwint_to_ascii (number
, base
, buffer
+ sizeof (buffer
), 1);
1393 write_chars (buffer
+ sizeof (buffer
) - count
, count
);
1396 /* Write out an integral CST in decimal. Most numbers are small, and
1397 representable in a HOST_WIDE_INT. Occasionally we'll have numbers
1398 bigger than that, which we must deal with. */
1401 write_integer_cst (const tree cst
)
1403 int sign
= tree_int_cst_sgn (cst
);
1405 if (TREE_INT_CST_HIGH (cst
) + (sign
< 0))
1407 /* A bignum. We do this in chunks, each of which fits in a
1409 char buffer
[sizeof (HOST_WIDE_INT
) * 8 * 2];
1410 unsigned HOST_WIDE_INT chunk
;
1411 unsigned chunk_digits
;
1412 char *ptr
= buffer
+ sizeof (buffer
);
1417 /* HOST_WIDE_INT must be at least 32 bits, so 10^9 is
1422 if (sizeof (HOST_WIDE_INT
) >= 8)
1424 /* It is at least 64 bits, so 10^18 is representable. */
1429 type
= c_common_signed_or_unsigned_type (1, TREE_TYPE (cst
));
1430 base
= build_int_cstu (type
, chunk
);
1431 n
= build_int_cst_wide (type
,
1432 TREE_INT_CST_LOW (cst
), TREE_INT_CST_HIGH (cst
));
1437 n
= fold_build1_loc (input_location
, NEGATE_EXPR
, type
, n
);
1441 tree d
= fold_build2_loc (input_location
, FLOOR_DIV_EXPR
, type
, n
, base
);
1442 tree tmp
= fold_build2_loc (input_location
, MULT_EXPR
, type
, d
, base
);
1445 done
= integer_zerop (d
);
1446 tmp
= fold_build2_loc (input_location
, MINUS_EXPR
, type
, n
, tmp
);
1447 c
= hwint_to_ascii (TREE_INT_CST_LOW (tmp
), 10, ptr
,
1448 done
? 1 : chunk_digits
);
1454 write_chars (ptr
, count
);
1459 unsigned HOST_WIDE_INT low
= TREE_INT_CST_LOW (cst
);
1466 write_unsigned_number (low
);
1470 /* Write out a floating-point literal.
1472 "Floating-point literals are encoded using the bit pattern of the
1473 target processor's internal representation of that number, as a
1474 fixed-length lowercase hexadecimal string, high-order bytes first
1475 (even if the target processor would store low-order bytes first).
1476 The "n" prefix is not used for floating-point literals; the sign
1477 bit is encoded with the rest of the number.
1479 Here are some examples, assuming the IEEE standard representation
1480 for floating point numbers. (Spaces are for readability, not
1481 part of the encoding.)
1484 -1.0f Lf bf80 0000 E
1485 1.17549435e-38f Lf 0080 0000 E
1486 1.40129846e-45f Lf 0000 0001 E
1487 0.0f Lf 0000 0000 E"
1489 Caller is responsible for the Lx and the E. */
1491 write_real_cst (const tree value
)
1493 if (abi_version_at_least (2))
1495 long target_real
[4]; /* largest supported float */
1496 char buffer
[9]; /* eight hex digits in a 32-bit number */
1499 tree type
= TREE_TYPE (value
);
1500 int words
= GET_MODE_BITSIZE (TYPE_MODE (type
)) / 32;
1502 real_to_target (target_real
, &TREE_REAL_CST (value
),
1505 /* The value in target_real is in the target word order,
1506 so we must write it out backward if that happens to be
1507 little-endian. write_number cannot be used, it will
1508 produce uppercase. */
1509 if (FLOAT_WORDS_BIG_ENDIAN
)
1510 i
= 0, limit
= words
, dir
= 1;
1512 i
= words
- 1, limit
= -1, dir
= -1;
1514 for (; i
!= limit
; i
+= dir
)
1516 sprintf (buffer
, "%08lx", (unsigned long) target_real
[i
]);
1517 write_chars (buffer
, 8);
1522 /* In G++ 3.3 and before the REAL_VALUE_TYPE was written out
1523 literally. Note that compatibility with 3.2 is impossible,
1524 because the old floating-point emulator used a different
1525 format for REAL_VALUE_TYPE. */
1527 for (i
= 0; i
< sizeof (TREE_REAL_CST (value
)); ++i
)
1528 write_number (((unsigned char *) &TREE_REAL_CST (value
))[i
],
1531 G
.need_abi_warning
= 1;
1535 /* Non-terminal <identifier>.
1537 <identifier> ::= </unqualified source code identifier> */
1540 write_identifier (const char *identifier
)
1542 MANGLE_TRACE ("identifier", identifier
);
1543 write_string (identifier
);
1546 /* Handle constructor productions of non-terminal <special-name>.
1547 CTOR is a constructor FUNCTION_DECL.
1549 <special-name> ::= C1 # complete object constructor
1550 ::= C2 # base object constructor
1551 ::= C3 # complete object allocating constructor
1553 Currently, allocating constructors are never used.
1555 We also need to provide mangled names for the maybe-in-charge
1556 constructor, so we treat it here too. mangle_decl_string will
1557 append *INTERNAL* to that, to make sure we never emit it. */
1560 write_special_name_constructor (const tree ctor
)
1562 if (DECL_BASE_CONSTRUCTOR_P (ctor
))
1563 write_string ("C2");
1566 gcc_assert (DECL_COMPLETE_CONSTRUCTOR_P (ctor
)
1567 /* Even though we don't ever emit a definition of
1568 the old-style destructor, we still have to
1569 consider entities (like static variables) nested
1571 || DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (ctor
));
1572 write_string ("C1");
1576 /* Handle destructor productions of non-terminal <special-name>.
1577 DTOR is a destructor FUNCTION_DECL.
1579 <special-name> ::= D0 # deleting (in-charge) destructor
1580 ::= D1 # complete object (in-charge) destructor
1581 ::= D2 # base object (not-in-charge) destructor
1583 We also need to provide mangled names for the maybe-incharge
1584 destructor, so we treat it here too. mangle_decl_string will
1585 append *INTERNAL* to that, to make sure we never emit it. */
1588 write_special_name_destructor (const tree dtor
)
1590 if (DECL_DELETING_DESTRUCTOR_P (dtor
))
1591 write_string ("D0");
1592 else if (DECL_BASE_DESTRUCTOR_P (dtor
))
1593 write_string ("D2");
1596 gcc_assert (DECL_COMPLETE_DESTRUCTOR_P (dtor
)
1597 /* Even though we don't ever emit a definition of
1598 the old-style destructor, we still have to
1599 consider entities (like static variables) nested
1601 || DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P (dtor
));
1602 write_string ("D1");
1606 /* Scan the vector of local classes and return how many others with the
1607 same name (or same no name) and context precede ENTITY. */
1610 local_class_index (tree entity
)
1612 int ix
, discriminator
= 0;
1613 tree name
= (TYPE_ANONYMOUS_P (entity
) ? NULL_TREE
1614 : TYPE_IDENTIFIER (entity
));
1615 tree ctx
= TYPE_CONTEXT (entity
);
1616 for (ix
= 0; ; ix
++)
1618 tree type
= VEC_index (tree
, local_classes
, ix
);
1620 return discriminator
;
1621 if (TYPE_CONTEXT (type
) == ctx
1622 && (name
? TYPE_IDENTIFIER (type
) == name
1623 : TYPE_ANONYMOUS_P (type
)))
1629 /* Return the discriminator for ENTITY appearing inside
1630 FUNCTION. The discriminator is the lexical ordinal of VAR among
1631 entities with the same name in the same FUNCTION. */
1634 discriminator_for_local_entity (tree entity
)
1636 if (DECL_DISCRIMINATOR_P (entity
))
1638 if (DECL_DISCRIMINATOR_SET_P (entity
))
1639 return DECL_DISCRIMINATOR (entity
);
1641 /* The first entity with a particular name doesn't get
1642 DECL_DISCRIMINATOR set up. */
1645 else if (TREE_CODE (entity
) == TYPE_DECL
)
1647 /* Scan the list of local classes. */
1648 entity
= TREE_TYPE (entity
);
1650 /* Lambdas and unnamed types have their own discriminators. */
1651 if (LAMBDA_TYPE_P (entity
) || TYPE_ANONYMOUS_P (entity
))
1654 return local_class_index (entity
);
1660 /* Return the discriminator for STRING, a string literal used inside
1661 FUNCTION. The discriminator is the lexical ordinal of STRING among
1662 string literals used in FUNCTION. */
1665 discriminator_for_string_literal (tree function ATTRIBUTE_UNUSED
,
1666 tree string ATTRIBUTE_UNUSED
)
1668 /* For now, we don't discriminate amongst string literals. */
1672 /* <discriminator> := _ <number>
1674 The discriminator is used only for the second and later occurrences
1675 of the same name within a single function. In this case <number> is
1676 n - 2, if this is the nth occurrence, in lexical order. */
1679 write_discriminator (const int discriminator
)
1681 /* If discriminator is zero, don't write anything. Otherwise... */
1682 if (discriminator
> 0)
1685 write_unsigned_number (discriminator
- 1);
1689 /* Mangle the name of a function-scope entity. FUNCTION is the
1690 FUNCTION_DECL for the enclosing function, or a PARM_DECL for lambdas in
1691 default argument scope. ENTITY is the decl for the entity itself.
1692 LOCAL_ENTITY is the entity that's directly scoped in FUNCTION_DECL,
1693 either ENTITY itself or an enclosing scope of ENTITY.
1695 <local-name> := Z <function encoding> E <entity name> [<discriminator>]
1696 := Z <function encoding> E s [<discriminator>]
1697 := Z <function encoding> Ed [ <parameter number> ] _ <entity name> */
1700 write_local_name (tree function
, const tree local_entity
,
1703 tree parm
= NULL_TREE
;
1705 MANGLE_TRACE_TREE ("local-name", entity
);
1707 if (TREE_CODE (function
) == PARM_DECL
)
1710 function
= DECL_CONTEXT (parm
);
1714 write_encoding (function
);
1717 /* For this purpose, parameters are numbered from right-to-left. */
1722 for (t
= DECL_ARGUMENTS (function
); t
; t
= DECL_CHAIN (t
))
1730 write_compact_number (i
- 1);
1733 if (TREE_CODE (entity
) == STRING_CST
)
1736 write_discriminator (discriminator_for_string_literal (function
,
1741 /* Now the <entity name>. Let write_name know its being called
1742 from <local-name>, so it doesn't try to process the enclosing
1743 function scope again. */
1744 write_name (entity
, /*ignore_local_scope=*/1);
1745 write_discriminator (discriminator_for_local_entity (local_entity
));
1749 /* Non-terminals <type> and <CV-qualifier>.
1751 <type> ::= <builtin-type>
1753 ::= <class-enum-type>
1755 ::= <pointer-to-member-type>
1756 ::= <template-param>
1759 ::= P <type> # pointer-to
1760 ::= R <type> # reference-to
1761 ::= C <type> # complex pair (C 2000)
1762 ::= G <type> # imaginary (C 2000) [not supported]
1763 ::= U <source-name> <type> # vendor extended type qualifier
1767 <type> ::= RR <type> # rvalue reference-to
1768 <type> ::= Dt <expression> # decltype of an id-expression or
1769 # class member access
1770 <type> ::= DT <expression> # decltype of an expression
1771 <type> ::= Dn # decltype of nullptr
1773 TYPE is a type node. */
1776 write_type (tree type
)
1778 /* This gets set to nonzero if TYPE turns out to be a (possibly
1779 CV-qualified) builtin type. */
1780 int is_builtin_type
= 0;
1782 MANGLE_TRACE_TREE ("type", type
);
1784 if (type
== error_mark_node
)
1787 type
= canonicalize_for_substitution (type
);
1788 if (find_substitution (type
))
1791 /* According to the C++ ABI, some library classes are passed the
1792 same as the scalar type of their single member and use the same
1794 if (TREE_CODE (type
) == RECORD_TYPE
&& TYPE_TRANSPARENT_AGGR (type
))
1795 type
= TREE_TYPE (first_field (type
));
1797 if (write_CV_qualifiers_for_type (type
) > 0)
1798 /* If TYPE was CV-qualified, we just wrote the qualifiers; now
1799 mangle the unqualified type. The recursive call is needed here
1800 since both the qualified and unqualified types are substitution
1802 write_type (TYPE_MAIN_VARIANT (type
));
1803 else if (TREE_CODE (type
) == ARRAY_TYPE
)
1804 /* It is important not to use the TYPE_MAIN_VARIANT of TYPE here
1805 so that the cv-qualification of the element type is available
1806 in write_array_type. */
1807 write_array_type (type
);
1810 tree type_orig
= type
;
1812 /* See through any typedefs. */
1813 type
= TYPE_MAIN_VARIANT (type
);
1815 if (TYPE_PTRMEM_P (type
))
1816 write_pointer_to_member_type (type
);
1819 /* Handle any target-specific fundamental types. */
1820 const char *target_mangling
1821 = targetm
.mangle_type (type_orig
);
1823 if (target_mangling
)
1825 write_string (target_mangling
);
1826 /* Add substitutions for types other than fundamental
1828 if (TREE_CODE (type
) != VOID_TYPE
1829 && TREE_CODE (type
) != INTEGER_TYPE
1830 && TREE_CODE (type
) != REAL_TYPE
1831 && TREE_CODE (type
) != BOOLEAN_TYPE
)
1832 add_substitution (type
);
1836 switch (TREE_CODE (type
))
1840 case INTEGER_TYPE
: /* Includes wchar_t. */
1842 case FIXED_POINT_TYPE
:
1844 /* If this is a typedef, TYPE may not be one of
1845 the standard builtin type nodes, but an alias of one. Use
1846 TYPE_MAIN_VARIANT to get to the underlying builtin type. */
1847 write_builtin_type (TYPE_MAIN_VARIANT (type
));
1854 write_type (TREE_TYPE (type
));
1859 write_function_type (type
);
1865 /* A pointer-to-member function is represented as a special
1866 RECORD_TYPE, so check for this first. */
1867 if (TYPE_PTRMEMFUNC_P (type
))
1868 write_pointer_to_member_type (type
);
1870 write_class_enum_type (type
);
1874 case UNBOUND_CLASS_TEMPLATE
:
1875 /* We handle TYPENAME_TYPEs and UNBOUND_CLASS_TEMPLATEs like
1876 ordinary nested names. */
1877 write_nested_name (TYPE_STUB_DECL (type
));
1882 write_type (TREE_TYPE (type
));
1885 case REFERENCE_TYPE
:
1886 if (TYPE_REF_IS_RVALUE (type
))
1890 write_type (TREE_TYPE (type
));
1893 case TEMPLATE_TYPE_PARM
:
1894 case TEMPLATE_PARM_INDEX
:
1895 write_template_param (type
);
1898 case TEMPLATE_TEMPLATE_PARM
:
1899 write_template_template_param (type
);
1902 case BOUND_TEMPLATE_TEMPLATE_PARM
:
1903 write_template_template_param (type
);
1905 (TI_ARGS (TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (type
)));
1909 if (abi_version_at_least (4))
1911 write_string ("Dv");
1912 /* Non-constant vector size would be encoded with
1913 _ expression, but we don't support that yet. */
1914 write_unsigned_number (TYPE_VECTOR_SUBPARTS (type
));
1919 G
.need_abi_warning
= 1;
1920 write_string ("U8__vector");
1922 write_type (TREE_TYPE (type
));
1925 case TYPE_PACK_EXPANSION
:
1926 write_string ("Dp");
1927 write_type (PACK_EXPANSION_PATTERN (type
));
1931 /* These shouldn't make it into mangling. */
1932 gcc_assert (!DECLTYPE_FOR_LAMBDA_CAPTURE (type
)
1933 && !DECLTYPE_FOR_LAMBDA_RETURN (type
));
1936 if (DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (type
))
1940 ++cp_unevaluated_operand
;
1941 write_expression (DECLTYPE_TYPE_EXPR (type
));
1942 --cp_unevaluated_operand
;
1947 sorry ("mangling typeof, use decltype instead");
1951 if (NULLPTR_TYPE_P (type
))
1953 write_string ("Dn");
1956 /* else fall through. */
1964 /* Types other than builtin types are substitution candidates. */
1965 if (!is_builtin_type
)
1966 add_substitution (type
);
1969 /* Non-terminal <CV-qualifiers> for type nodes. Returns the number of
1970 CV-qualifiers written for TYPE.
1972 <CV-qualifiers> ::= [r] [V] [K] */
1975 write_CV_qualifiers_for_type (const tree type
)
1977 int num_qualifiers
= 0;
1979 /* The order is specified by:
1981 "In cases where multiple order-insensitive qualifiers are
1982 present, they should be ordered 'K' (closest to the base type),
1983 'V', 'r', and 'U' (farthest from the base type) ..."
1985 Note that we do not use cp_type_quals below; given "const
1986 int[3]", the "const" is emitted with the "int", not with the
1988 cp_cv_quals quals
= TYPE_QUALS (type
);
1990 /* Attribute const/noreturn are not reflected in mangling. */
1991 if (abi_version_at_least (5)
1992 && (TREE_CODE (type
) == FUNCTION_TYPE
1993 || TREE_CODE (type
) == METHOD_TYPE
))
1996 if (quals
& TYPE_QUAL_RESTRICT
)
2001 if (quals
& TYPE_QUAL_VOLATILE
)
2006 if (quals
& TYPE_QUAL_CONST
)
2012 return num_qualifiers
;
2015 /* Non-terminal <builtin-type>.
2017 <builtin-type> ::= v # void
2022 ::= h # unsigned char
2024 ::= t # unsigned short
2026 ::= j # unsigned int
2028 ::= m # unsigned long
2029 ::= x # long long, __int64
2030 ::= y # unsigned long long, __int64
2032 ::= o # unsigned __int128
2035 ::= e # long double, __float80
2036 ::= g # __float128 [not supported]
2037 ::= u <source-name> # vendor extended type */
2040 write_builtin_type (tree type
)
2042 if (TYPE_CANONICAL (type
))
2043 type
= TYPE_CANONICAL (type
);
2045 switch (TREE_CODE (type
))
2056 /* TYPE may still be wchar_t, char16_t, or char32_t, since that
2057 isn't in integer_type_nodes. */
2058 if (type
== wchar_type_node
)
2060 else if (type
== char16_type_node
)
2061 write_string ("Ds");
2062 else if (type
== char32_type_node
)
2063 write_string ("Di");
2064 else if (TYPE_FOR_JAVA (type
))
2065 write_java_integer_type_codes (type
);
2069 /* Assume TYPE is one of the shared integer type nodes. Find
2070 it in the array of these nodes. */
2072 for (itk
= 0; itk
< itk_none
; ++itk
)
2073 if (integer_types
[itk
] != NULL_TREE
2074 && type
== integer_types
[itk
])
2076 /* Print the corresponding single-letter code. */
2077 write_char (integer_type_codes
[itk
]);
2081 if (itk
== itk_none
)
2083 tree t
= c_common_type_for_mode (TYPE_MODE (type
),
2084 TYPE_UNSIGNED (type
));
2091 if (TYPE_PRECISION (type
) == 128)
2092 write_char (TYPE_UNSIGNED (type
) ? 'o' : 'n');
2095 /* Allow for cases where TYPE is not one of the shared
2096 integer type nodes and write a "vendor extended builtin
2097 type" with a name the form intN or uintN, respectively.
2098 Situations like this can happen if you have an
2099 __attribute__((__mode__(__SI__))) type and use exotic
2100 switches like '-mint8' on AVR. Of course, this is
2101 undefined by the C++ ABI (and '-mint8' is not even
2102 Standard C conforming), but when using such special
2103 options you're pretty much in nowhere land anyway. */
2105 char prec
[11]; /* up to ten digits for an unsigned */
2107 prefix
= TYPE_UNSIGNED (type
) ? "uint" : "int";
2108 sprintf (prec
, "%u", (unsigned) TYPE_PRECISION (type
));
2109 write_char ('u'); /* "vendor extended builtin type" */
2110 write_unsigned_number (strlen (prefix
) + strlen (prec
));
2111 write_string (prefix
);
2112 write_string (prec
);
2119 if (type
== float_type_node
2120 || type
== java_float_type_node
)
2122 else if (type
== double_type_node
2123 || type
== java_double_type_node
)
2125 else if (type
== long_double_type_node
)
2127 else if (type
== dfloat32_type_node
)
2128 write_string ("Df");
2129 else if (type
== dfloat64_type_node
)
2130 write_string ("Dd");
2131 else if (type
== dfloat128_type_node
)
2132 write_string ("De");
2137 case FIXED_POINT_TYPE
:
2138 write_string ("DF");
2139 if (GET_MODE_IBIT (TYPE_MODE (type
)) > 0)
2140 write_unsigned_number (GET_MODE_IBIT (TYPE_MODE (type
)));
2141 if (type
== fract_type_node
2142 || type
== sat_fract_type_node
2143 || type
== accum_type_node
2144 || type
== sat_accum_type_node
)
2146 else if (type
== unsigned_fract_type_node
2147 || type
== sat_unsigned_fract_type_node
2148 || type
== unsigned_accum_type_node
2149 || type
== sat_unsigned_accum_type_node
)
2151 else if (type
== short_fract_type_node
2152 || type
== sat_short_fract_type_node
2153 || type
== short_accum_type_node
2154 || type
== sat_short_accum_type_node
)
2156 else if (type
== unsigned_short_fract_type_node
2157 || type
== sat_unsigned_short_fract_type_node
2158 || type
== unsigned_short_accum_type_node
2159 || type
== sat_unsigned_short_accum_type_node
)
2161 else if (type
== long_fract_type_node
2162 || type
== sat_long_fract_type_node
2163 || type
== long_accum_type_node
2164 || type
== sat_long_accum_type_node
)
2166 else if (type
== unsigned_long_fract_type_node
2167 || type
== sat_unsigned_long_fract_type_node
2168 || type
== unsigned_long_accum_type_node
2169 || type
== sat_unsigned_long_accum_type_node
)
2171 else if (type
== long_long_fract_type_node
2172 || type
== sat_long_long_fract_type_node
2173 || type
== long_long_accum_type_node
2174 || type
== sat_long_long_accum_type_node
)
2176 else if (type
== unsigned_long_long_fract_type_node
2177 || type
== sat_unsigned_long_long_fract_type_node
2178 || type
== unsigned_long_long_accum_type_node
2179 || type
== sat_unsigned_long_long_accum_type_node
)
2182 sorry ("mangling unknown fixed point type");
2183 write_unsigned_number (GET_MODE_FBIT (TYPE_MODE (type
)));
2184 if (TYPE_SATURATING (type
))
2195 /* Non-terminal <function-type>. NODE is a FUNCTION_TYPE or
2196 METHOD_TYPE. The return type is mangled before the parameter
2199 <function-type> ::= F [Y] <bare-function-type> E */
2202 write_function_type (const tree type
)
2204 MANGLE_TRACE_TREE ("function-type", type
);
2206 /* For a pointer to member function, the function type may have
2207 cv-qualifiers, indicating the quals for the artificial 'this'
2209 if (TREE_CODE (type
) == METHOD_TYPE
)
2211 /* The first parameter must be a POINTER_TYPE pointing to the
2212 `this' parameter. */
2213 tree this_type
= TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (type
)));
2214 write_CV_qualifiers_for_type (this_type
);
2218 /* We don't track whether or not a type is `extern "C"'. Note that
2219 you can have an `extern "C"' function that does not have
2220 `extern "C"' type, and vice versa:
2222 extern "C" typedef void function_t();
2223 function_t f; // f has C++ linkage, but its type is
2226 typedef void function_t();
2227 extern "C" function_t f; // Vice versa.
2230 write_bare_function_type (type
, /*include_return_type_p=*/1,
2235 /* Non-terminal <bare-function-type>. TYPE is a FUNCTION_TYPE or
2236 METHOD_TYPE. If INCLUDE_RETURN_TYPE is nonzero, the return value
2237 is mangled before the parameter types. If non-NULL, DECL is
2238 FUNCTION_DECL for the function whose type is being emitted.
2240 If DECL is a member of a Java type, then a literal 'J'
2241 is output and the return type is mangled as if INCLUDE_RETURN_TYPE
2244 <bare-function-type> ::= [J]</signature/ type>+ */
2247 write_bare_function_type (const tree type
, const int include_return_type_p
,
2252 MANGLE_TRACE_TREE ("bare-function-type", type
);
2254 /* Detect Java methods and emit special encoding. */
2256 && DECL_FUNCTION_MEMBER_P (decl
)
2257 && TYPE_FOR_JAVA (DECL_CONTEXT (decl
))
2258 && !DECL_CONSTRUCTOR_P (decl
)
2259 && !DECL_DESTRUCTOR_P (decl
)
2260 && !DECL_CONV_FN_P (decl
))
2270 /* Mangle the return type, if requested. */
2271 if (include_return_type_p
|| java_method_p
)
2272 write_type (TREE_TYPE (type
));
2274 /* Now mangle the types of the arguments. */
2275 write_method_parms (TYPE_ARG_TYPES (type
),
2276 TREE_CODE (type
) == METHOD_TYPE
,
2280 /* Write the mangled representation of a method parameter list of
2281 types given in PARM_TYPES. If METHOD_P is nonzero, the function is
2282 considered a non-static method, and the this parameter is omitted.
2283 If non-NULL, DECL is the FUNCTION_DECL for the function whose
2284 parameters are being emitted. */
2287 write_method_parms (tree parm_types
, const int method_p
, const tree decl
)
2289 tree first_parm_type
;
2290 tree parm_decl
= decl
? DECL_ARGUMENTS (decl
) : NULL_TREE
;
2292 /* Assume this parameter type list is variable-length. If it ends
2293 with a void type, then it's not. */
2296 /* If this is a member function, skip the first arg, which is the
2298 "Member functions do not encode the type of their implicit this
2301 Similarly, there's no need to mangle artificial parameters, like
2302 the VTT parameters for constructors and destructors. */
2305 parm_types
= TREE_CHAIN (parm_types
);
2306 parm_decl
= parm_decl
? DECL_CHAIN (parm_decl
) : NULL_TREE
;
2308 while (parm_decl
&& DECL_ARTIFICIAL (parm_decl
))
2310 parm_types
= TREE_CHAIN (parm_types
);
2311 parm_decl
= DECL_CHAIN (parm_decl
);
2315 for (first_parm_type
= parm_types
;
2317 parm_types
= TREE_CHAIN (parm_types
))
2319 tree parm
= TREE_VALUE (parm_types
);
2320 if (parm
== void_type_node
)
2322 /* "Empty parameter lists, whether declared as () or
2323 conventionally as (void), are encoded with a void parameter
2325 if (parm_types
== first_parm_type
)
2327 /* If the parm list is terminated with a void type, it's
2330 /* A void type better be the last one. */
2331 gcc_assert (TREE_CHAIN (parm_types
) == NULL
);
2338 /* <builtin-type> ::= z # ellipsis */
2342 /* <class-enum-type> ::= <name> */
2345 write_class_enum_type (const tree type
)
2347 write_name (TYPE_NAME (type
), /*ignore_local_scope=*/0);
2350 /* Non-terminal <template-args>. ARGS is a TREE_VEC of template
2353 <template-args> ::= I <template-arg>* E */
2356 write_template_args (tree args
)
2361 MANGLE_TRACE_TREE ("template-args", args
);
2366 length
= TREE_VEC_LENGTH (args
);
2368 if (args
&& TREE_CODE (TREE_VEC_ELT (args
, 0)) == TREE_VEC
)
2370 /* We have nested template args. We want the innermost template
2372 args
= TREE_VEC_ELT (args
, length
- 1);
2373 length
= TREE_VEC_LENGTH (args
);
2375 for (i
= 0; i
< length
; ++i
)
2376 write_template_arg (TREE_VEC_ELT (args
, i
));
2383 <unqualified-name> <template-args>
2384 part of SCOPE_REF or COMPONENT_REF mangling. */
2387 write_member_name (tree member
)
2389 if (TREE_CODE (member
) == IDENTIFIER_NODE
)
2390 write_unqualified_id (member
);
2391 else if (DECL_P (member
))
2392 write_unqualified_name (member
);
2393 else if (TREE_CODE (member
) == TEMPLATE_ID_EXPR
)
2395 tree name
= TREE_OPERAND (member
, 0);
2396 if (TREE_CODE (name
) == OVERLOAD
)
2397 name
= OVL_FUNCTION (name
);
2398 write_member_name (name
);
2399 write_template_args (TREE_OPERAND (member
, 1));
2402 write_expression (member
);
2405 /* <expression> ::= <unary operator-name> <expression>
2406 ::= <binary operator-name> <expression> <expression>
2409 <expr-primary> ::= <template-param>
2410 ::= L <type> <value number> E # literal
2411 ::= L <mangled-name> E # external name
2412 ::= st <type> # sizeof
2413 ::= sr <type> <unqualified-name> # dependent name
2414 ::= sr <type> <unqualified-name> <template-args> */
2417 write_expression (tree expr
)
2419 enum tree_code code
= TREE_CODE (expr
);
2421 /* Skip NOP_EXPRs. They can occur when (say) a pointer argument
2422 is converted (via qualification conversions) to another
2424 while (TREE_CODE (expr
) == NOP_EXPR
2425 || TREE_CODE (expr
) == NON_LVALUE_EXPR
)
2427 expr
= TREE_OPERAND (expr
, 0);
2428 code
= TREE_CODE (expr
);
2431 if (code
== BASELINK
)
2433 expr
= BASELINK_FUNCTIONS (expr
);
2434 code
= TREE_CODE (expr
);
2437 /* Handle pointers-to-members by making them look like expression
2439 if (code
== PTRMEM_CST
)
2441 expr
= build_nt (ADDR_EXPR
,
2442 build_qualified_name (/*type=*/NULL_TREE
,
2443 PTRMEM_CST_CLASS (expr
),
2444 PTRMEM_CST_MEMBER (expr
),
2445 /*template_p=*/false));
2446 code
= TREE_CODE (expr
);
2449 /* Handle template parameters. */
2450 if (code
== TEMPLATE_TYPE_PARM
2451 || code
== TEMPLATE_TEMPLATE_PARM
2452 || code
== BOUND_TEMPLATE_TEMPLATE_PARM
2453 || code
== TEMPLATE_PARM_INDEX
)
2454 write_template_param (expr
);
2455 /* Handle literals. */
2456 else if (TREE_CODE_CLASS (code
) == tcc_constant
2457 || (abi_version_at_least (2) && code
== CONST_DECL
))
2458 write_template_arg_literal (expr
);
2459 else if (code
== PARM_DECL
)
2461 /* A function parameter used in a late-specified return type. */
2462 int index
= DECL_PARM_INDEX (expr
);
2463 gcc_assert (index
>= 1);
2464 write_string ("fp");
2465 write_compact_number (index
- 1);
2467 else if (DECL_P (expr
))
2469 /* G++ 3.2 incorrectly mangled non-type template arguments of
2470 enumeration type using their names. */
2471 if (code
== CONST_DECL
)
2472 G
.need_abi_warning
= 1;
2474 write_mangled_name (expr
, false);
2477 else if (TREE_CODE (expr
) == SIZEOF_EXPR
2478 && TYPE_P (TREE_OPERAND (expr
, 0)))
2480 write_string ("st");
2481 write_type (TREE_OPERAND (expr
, 0));
2483 else if (TREE_CODE (expr
) == ALIGNOF_EXPR
2484 && TYPE_P (TREE_OPERAND (expr
, 0)))
2486 write_string ("at");
2487 write_type (TREE_OPERAND (expr
, 0));
2489 else if (TREE_CODE (expr
) == SCOPE_REF
)
2491 tree scope
= TREE_OPERAND (expr
, 0);
2492 tree member
= TREE_OPERAND (expr
, 1);
2494 if (!abi_version_at_least (2))
2496 write_string ("sr");
2498 /* G++ 3.2 incorrectly put out both the "sr" code and
2499 the nested name of the qualified name. */
2500 G
.need_abi_warning
= 1;
2501 write_encoding (member
);
2504 /* If the MEMBER is a real declaration, then the qualifying
2505 scope was not dependent. Ideally, we would not have a
2506 SCOPE_REF in those cases, but sometimes we do. If the second
2507 argument is a DECL, then the name must not have been
2509 else if (DECL_P (member
))
2510 write_expression (member
);
2513 write_string ("sr");
2515 write_member_name (member
);
2518 else if (TREE_CODE (expr
) == INDIRECT_REF
2519 && TREE_TYPE (TREE_OPERAND (expr
, 0))
2520 && TREE_CODE (TREE_TYPE (TREE_OPERAND (expr
, 0))) == REFERENCE_TYPE
)
2522 write_expression (TREE_OPERAND (expr
, 0));
2524 else if (TREE_CODE (expr
) == IDENTIFIER_NODE
)
2526 /* An operator name appearing as a dependent name needs to be
2527 specially marked to disambiguate between a use of the operator
2528 name and a use of the operator in an expression. */
2529 if (IDENTIFIER_OPNAME_P (expr
))
2530 write_string ("on");
2531 write_unqualified_id (expr
);
2533 else if (TREE_CODE (expr
) == TEMPLATE_ID_EXPR
)
2535 tree fn
= TREE_OPERAND (expr
, 0);
2536 if (is_overloaded_fn (fn
))
2537 fn
= DECL_NAME (get_first_fn (fn
));
2538 if (IDENTIFIER_OPNAME_P (fn
))
2539 write_string ("on");
2540 write_unqualified_id (fn
);
2541 write_template_args (TREE_OPERAND (expr
, 1));
2548 /* When we bind a variable or function to a non-type template
2549 argument with reference type, we create an ADDR_EXPR to show
2550 the fact that the entity's address has been taken. But, we
2551 don't actually want to output a mangling code for the `&'. */
2552 if (TREE_CODE (expr
) == ADDR_EXPR
2554 && TREE_CODE (TREE_TYPE (expr
)) == REFERENCE_TYPE
)
2556 expr
= TREE_OPERAND (expr
, 0);
2559 write_expression (expr
);
2563 code
= TREE_CODE (expr
);
2566 if (code
== COMPONENT_REF
)
2568 tree ob
= TREE_OPERAND (expr
, 0);
2570 if (TREE_CODE (ob
) == ARROW_EXPR
)
2572 write_string (operator_name_info
[(int)code
].mangled_name
);
2573 ob
= TREE_OPERAND (ob
, 0);
2576 write_string ("dt");
2578 write_expression (ob
);
2579 write_member_name (TREE_OPERAND (expr
, 1));
2583 /* If it wasn't any of those, recursively expand the expression. */
2584 name
= operator_name_info
[(int) code
].mangled_name
;
2587 sorry ("mangling %C", code
);
2591 write_string (name
);
2597 tree fn
= CALL_EXPR_FN (expr
);
2599 if (TREE_CODE (fn
) == ADDR_EXPR
)
2600 fn
= TREE_OPERAND (fn
, 0);
2602 /* Mangle a dependent name as the name, not whatever happens to
2603 be the first function in the overload set. */
2604 if ((TREE_CODE (fn
) == FUNCTION_DECL
2605 || TREE_CODE (fn
) == OVERLOAD
)
2606 && type_dependent_expression_p_push (expr
))
2607 fn
= DECL_NAME (get_first_fn (fn
));
2609 write_expression (fn
);
2612 for (i
= 0; i
< call_expr_nargs (expr
); ++i
)
2613 write_expression (CALL_EXPR_ARG (expr
, i
));
2618 write_type (TREE_TYPE (expr
));
2619 if (list_length (TREE_OPERAND (expr
, 0)) == 1)
2620 write_expression (TREE_VALUE (TREE_OPERAND (expr
, 0)));
2623 tree args
= TREE_OPERAND (expr
, 0);
2625 for (; args
; args
= TREE_CHAIN (args
))
2626 write_expression (TREE_VALUE (args
));
2631 /* FIXME these should have a distinct mangling. */
2632 case STATIC_CAST_EXPR
:
2633 case CONST_CAST_EXPR
:
2634 write_type (TREE_TYPE (expr
));
2635 write_expression (TREE_OPERAND (expr
, 0));
2639 sorry ("mangling new-expression");
2643 /* In the middle-end, some expressions have more operands than
2644 they do in templates (and mangling). */
2647 case PREINCREMENT_EXPR
:
2648 case PREDECREMENT_EXPR
:
2649 case POSTINCREMENT_EXPR
:
2650 case POSTDECREMENT_EXPR
:
2659 len
= TREE_OPERAND_LENGTH (expr
);
2663 for (i
= 0; i
< len
; ++i
)
2665 tree operand
= TREE_OPERAND (expr
, i
);
2666 /* As a GNU extension, the middle operand of a
2667 conditional may be omitted. Since expression
2668 manglings are supposed to represent the input token
2669 stream, there's no good way to mangle such an
2670 expression without extending the C++ ABI. */
2671 if (code
== COND_EXPR
&& i
== 1 && !operand
)
2673 error ("omitted middle operand to %<?:%> operand "
2674 "cannot be mangled");
2677 write_expression (operand
);
2683 /* Literal subcase of non-terminal <template-arg>.
2685 "Literal arguments, e.g. "A<42L>", are encoded with their type
2686 and value. Negative integer values are preceded with "n"; for
2687 example, "A<-42L>" becomes "1AILln42EE". The bool value false is
2688 encoded as 0, true as 1." */
2691 write_template_arg_literal (const tree value
)
2694 write_type (TREE_TYPE (value
));
2696 switch (TREE_CODE (value
))
2699 write_integer_cst (DECL_INITIAL (value
));
2703 gcc_assert (!same_type_p (TREE_TYPE (value
), boolean_type_node
)
2704 || integer_zerop (value
) || integer_onep (value
));
2705 write_integer_cst (value
);
2709 write_real_cst (value
);
2719 /* Non-terminal <template-arg>.
2721 <template-arg> ::= <type> # type
2722 ::= L <type> </value/ number> E # literal
2723 ::= LZ <name> E # external name
2724 ::= X <expression> E # expression */
2727 write_template_arg (tree node
)
2729 enum tree_code code
= TREE_CODE (node
);
2731 MANGLE_TRACE_TREE ("template-arg", node
);
2733 /* A template template parameter's argument list contains TREE_LIST
2734 nodes of which the value field is the actual argument. */
2735 if (code
== TREE_LIST
)
2737 node
= TREE_VALUE (node
);
2738 /* If it's a decl, deal with its type instead. */
2741 node
= TREE_TYPE (node
);
2742 code
= TREE_CODE (node
);
2746 if (TREE_CODE (node
) == NOP_EXPR
2747 && TREE_CODE (TREE_TYPE (node
)) == REFERENCE_TYPE
)
2749 /* Template parameters can be of reference type. To maintain
2750 internal consistency, such arguments use a conversion from
2751 address of object to reference type. */
2752 gcc_assert (TREE_CODE (TREE_OPERAND (node
, 0)) == ADDR_EXPR
);
2753 if (abi_version_at_least (2))
2754 node
= TREE_OPERAND (TREE_OPERAND (node
, 0), 0);
2756 G
.need_abi_warning
= 1;
2759 if (ARGUMENT_PACK_P (node
))
2761 /* Expand the template argument pack. */
2762 tree args
= ARGUMENT_PACK_ARGS (node
);
2763 int i
, length
= TREE_VEC_LENGTH (args
);
2765 for (i
= 0; i
< length
; ++i
)
2766 write_template_arg (TREE_VEC_ELT (args
, i
));
2769 else if (TYPE_P (node
))
2771 else if (code
== TEMPLATE_DECL
)
2772 /* A template appearing as a template arg is a template template arg. */
2773 write_template_template_arg (node
);
2774 else if ((TREE_CODE_CLASS (code
) == tcc_constant
&& code
!= PTRMEM_CST
)
2775 || (abi_version_at_least (2) && code
== CONST_DECL
))
2776 write_template_arg_literal (node
);
2777 else if (DECL_P (node
))
2779 /* Until ABI version 2, non-type template arguments of
2780 enumeration type were mangled using their names. */
2781 if (code
== CONST_DECL
&& !abi_version_at_least (2))
2782 G
.need_abi_warning
= 1;
2784 /* Until ABI version 3, the underscore before the mangled name
2785 was incorrectly omitted. */
2786 if (!abi_version_at_least (3))
2788 G
.need_abi_warning
= 1;
2792 write_string ("_Z");
2793 write_encoding (node
);
2798 /* Template arguments may be expressions. */
2800 write_expression (node
);
2805 /* <template-template-arg>
2807 ::= <substitution> */
2810 write_template_template_arg (const tree decl
)
2812 MANGLE_TRACE_TREE ("template-template-arg", decl
);
2814 if (find_substitution (decl
))
2816 write_name (decl
, /*ignore_local_scope=*/0);
2817 add_substitution (decl
);
2821 /* Non-terminal <array-type>. TYPE is an ARRAY_TYPE.
2823 <array-type> ::= A [</dimension/ number>] _ </element/ type>
2824 ::= A <expression> _ </element/ type>
2826 "Array types encode the dimension (number of elements) and the
2827 element type. For variable length arrays, the dimension (but not
2828 the '_' separator) is omitted." */
2831 write_array_type (const tree type
)
2834 if (TYPE_DOMAIN (type
))
2839 index_type
= TYPE_DOMAIN (type
);
2840 /* The INDEX_TYPE gives the upper and lower bounds of the
2842 max
= TYPE_MAX_VALUE (index_type
);
2843 if (TREE_CODE (max
) == INTEGER_CST
)
2845 /* The ABI specifies that we should mangle the number of
2846 elements in the array, not the largest allowed index. */
2847 max
= size_binop (PLUS_EXPR
, max
, size_one_node
);
2848 write_unsigned_number (tree_low_cst (max
, 1));
2852 max
= TREE_OPERAND (max
, 0);
2853 if (!abi_version_at_least (2))
2855 /* value_dependent_expression_p presumes nothing is
2856 dependent when PROCESSING_TEMPLATE_DECL is zero. */
2857 ++processing_template_decl
;
2858 if (!value_dependent_expression_p (max
))
2859 G
.need_abi_warning
= 1;
2860 --processing_template_decl
;
2862 write_expression (max
);
2867 write_type (TREE_TYPE (type
));
2870 /* Non-terminal <pointer-to-member-type> for pointer-to-member
2871 variables. TYPE is a pointer-to-member POINTER_TYPE.
2873 <pointer-to-member-type> ::= M </class/ type> </member/ type> */
2876 write_pointer_to_member_type (const tree type
)
2879 write_type (TYPE_PTRMEM_CLASS_TYPE (type
));
2880 write_type (TYPE_PTRMEM_POINTED_TO_TYPE (type
));
2883 /* Non-terminal <template-param>. PARM is a TEMPLATE_TYPE_PARM,
2884 TEMPLATE_TEMPLATE_PARM, BOUND_TEMPLATE_TEMPLATE_PARM or a
2885 TEMPLATE_PARM_INDEX.
2887 <template-param> ::= T </parameter/ number> _ */
2890 write_template_param (const tree parm
)
2894 MANGLE_TRACE_TREE ("template-parm", parm
);
2896 switch (TREE_CODE (parm
))
2898 case TEMPLATE_TYPE_PARM
:
2899 case TEMPLATE_TEMPLATE_PARM
:
2900 case BOUND_TEMPLATE_TEMPLATE_PARM
:
2901 parm_index
= TEMPLATE_TYPE_IDX (parm
);
2904 case TEMPLATE_PARM_INDEX
:
2905 parm_index
= TEMPLATE_PARM_IDX (parm
);
2913 /* NUMBER as it appears in the mangling is (-1)-indexed, with the
2914 earliest template param denoted by `_'. */
2915 write_compact_number (parm_index
);
2918 /* <template-template-param>
2919 ::= <template-param>
2920 ::= <substitution> */
2923 write_template_template_param (const tree parm
)
2925 tree templ
= NULL_TREE
;
2927 /* PARM, a TEMPLATE_TEMPLATE_PARM, is an instantiation of the
2928 template template parameter. The substitution candidate here is
2929 only the template. */
2930 if (TREE_CODE (parm
) == BOUND_TEMPLATE_TEMPLATE_PARM
)
2933 = TI_TEMPLATE (TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (parm
));
2934 if (find_substitution (templ
))
2938 /* <template-param> encodes only the template parameter position,
2939 not its template arguments, which is fine here. */
2940 write_template_param (parm
);
2942 add_substitution (templ
);
2945 /* Non-terminal <substitution>.
2947 <substitution> ::= S <seq-id> _
2951 write_substitution (const int seq_id
)
2953 MANGLE_TRACE ("substitution", "");
2957 write_number (seq_id
- 1, /*unsigned=*/1, 36);
2961 /* Start mangling ENTITY. */
2964 start_mangling (const tree entity
)
2967 G
.need_abi_warning
= false;
2968 obstack_free (&name_obstack
, name_base
);
2969 mangle_obstack
= &name_obstack
;
2970 name_base
= obstack_alloc (&name_obstack
, 0);
2973 /* Done with mangling. If WARN is true, and the name of G.entity will
2974 be mangled differently in a future version of the ABI, issue a
2978 finish_mangling_internal (const bool warn
)
2980 if (warn_abi
&& warn
&& G
.need_abi_warning
)
2981 warning (OPT_Wabi
, "the mangled name of %qD will change in a future "
2985 /* Clear all the substitutions. */
2986 VEC_truncate (tree
, G
.substitutions
, 0);
2988 /* Null-terminate the string. */
2993 /* Like finish_mangling_internal, but return the mangled string. */
2995 static inline const char *
2996 finish_mangling (const bool warn
)
2998 finish_mangling_internal (warn
);
2999 return (const char *) obstack_finish (mangle_obstack
);
3002 /* Like finish_mangling_internal, but return an identifier. */
3005 finish_mangling_get_identifier (const bool warn
)
3007 finish_mangling_internal (warn
);
3008 /* Don't obstack_finish here, and the next start_mangling will
3009 remove the identifier. */
3010 return get_identifier ((const char *) obstack_base (mangle_obstack
));
3013 /* Initialize data structures for mangling. */
3018 gcc_obstack_init (&name_obstack
);
3019 name_base
= obstack_alloc (&name_obstack
, 0);
3020 G
.substitutions
= NULL
;
3022 /* Cache these identifiers for quick comparison when checking for
3023 standard substitutions. */
3024 subst_identifiers
[SUBID_ALLOCATOR
] = get_identifier ("allocator");
3025 subst_identifiers
[SUBID_BASIC_STRING
] = get_identifier ("basic_string");
3026 subst_identifiers
[SUBID_CHAR_TRAITS
] = get_identifier ("char_traits");
3027 subst_identifiers
[SUBID_BASIC_ISTREAM
] = get_identifier ("basic_istream");
3028 subst_identifiers
[SUBID_BASIC_OSTREAM
] = get_identifier ("basic_ostream");
3029 subst_identifiers
[SUBID_BASIC_IOSTREAM
] = get_identifier ("basic_iostream");
3032 /* Generate the mangled name of DECL. */
3035 mangle_decl_string (const tree decl
)
3038 location_t saved_loc
= input_location
;
3039 tree saved_fn
= NULL_TREE
;
3040 bool template_p
= false;
3042 if (DECL_LANG_SPECIFIC (decl
) && DECL_USE_TEMPLATE (decl
))
3044 struct tinst_level
*tl
= current_instantiation ();
3045 if (!tl
|| tl
->decl
!= decl
)
3048 saved_fn
= current_function_decl
;
3049 push_tinst_level (decl
);
3050 current_function_decl
= NULL_TREE
;
3053 input_location
= DECL_SOURCE_LOCATION (decl
);
3055 start_mangling (decl
);
3057 if (TREE_CODE (decl
) == TYPE_DECL
)
3058 write_type (TREE_TYPE (decl
));
3060 write_mangled_name (decl
, true);
3062 result
= finish_mangling_get_identifier (/*warn=*/true);
3064 fprintf (stderr
, "mangle_decl_string = '%s'\n\n",
3065 IDENTIFIER_POINTER (result
));
3070 current_function_decl
= saved_fn
;
3072 input_location
= saved_loc
;
3077 /* Create an identifier for the external mangled name of DECL. */
3080 mangle_decl (const tree decl
)
3082 tree id
= mangle_decl_string (decl
);
3083 id
= targetm
.mangle_decl_assembler_name (decl
, id
);
3084 SET_DECL_ASSEMBLER_NAME (decl
, id
);
3086 if (G
.need_abi_warning
)
3088 #ifdef ASM_OUTPUT_DEF
3089 /* If the mangling will change in the future, emit an alias with the
3090 future mangled name for forward-compatibility. */
3095 SET_IDENTIFIER_GLOBAL_VALUE (id
, decl
);
3096 if (IDENTIFIER_GLOBAL_VALUE (id
) != decl
)
3097 inform (DECL_SOURCE_LOCATION (decl
), "-fabi-version=4 (or =0) "
3098 "avoids this error with a change in vector mangling");
3100 #ifdef ASM_OUTPUT_DEF
3101 save_ver
= flag_abi_version
;
3102 flag_abi_version
= 0;
3103 id2
= mangle_decl_string (decl
);
3104 id2
= targetm
.mangle_decl_assembler_name (decl
, id2
);
3105 flag_abi_version
= save_ver
;
3107 alias
= make_alias_for (decl
, id2
);
3108 DECL_IGNORED_P (alias
) = 1;
3109 TREE_PUBLIC (alias
) = TREE_PUBLIC (decl
);
3110 DECL_VISIBILITY (alias
) = DECL_VISIBILITY (decl
);
3111 if (vague_linkage_p (decl
))
3112 DECL_WEAK (alias
) = 1;
3113 if (TREE_CODE (decl
) == FUNCTION_DECL
)
3114 cgraph_same_body_alias (alias
, decl
);
3116 varpool_extra_name_alias (alias
, decl
);
3121 /* Generate the mangled representation of TYPE. */
3124 mangle_type_string (const tree type
)
3128 start_mangling (type
);
3130 result
= finish_mangling (/*warn=*/false);
3132 fprintf (stderr
, "mangle_type_string = '%s'\n\n", result
);
3136 /* Create an identifier for the mangled name of a special component
3137 for belonging to TYPE. CODE is the ABI-specified code for this
3141 mangle_special_for_type (const tree type
, const char *code
)
3145 /* We don't have an actual decl here for the special component, so
3146 we can't just process the <encoded-name>. Instead, fake it. */
3147 start_mangling (type
);
3149 /* Start the mangling. */
3150 write_string ("_Z");
3151 write_string (code
);
3155 result
= finish_mangling_get_identifier (/*warn=*/false);
3158 fprintf (stderr
, "mangle_special_for_type = %s\n\n",
3159 IDENTIFIER_POINTER (result
));
3164 /* Create an identifier for the mangled representation of the typeinfo
3165 structure for TYPE. */
3168 mangle_typeinfo_for_type (const tree type
)
3170 return mangle_special_for_type (type
, "TI");
3173 /* Create an identifier for the mangled name of the NTBS containing
3174 the mangled name of TYPE. */
3177 mangle_typeinfo_string_for_type (const tree type
)
3179 return mangle_special_for_type (type
, "TS");
3182 /* Create an identifier for the mangled name of the vtable for TYPE. */
3185 mangle_vtbl_for_type (const tree type
)
3187 return mangle_special_for_type (type
, "TV");
3190 /* Returns an identifier for the mangled name of the VTT for TYPE. */
3193 mangle_vtt_for_type (const tree type
)
3195 return mangle_special_for_type (type
, "TT");
3198 /* Return an identifier for a construction vtable group. TYPE is
3199 the most derived class in the hierarchy; BINFO is the base
3200 subobject for which this construction vtable group will be used.
3202 This mangling isn't part of the ABI specification; in the ABI
3203 specification, the vtable group is dumped in the same COMDAT as the
3204 main vtable, and is referenced only from that vtable, so it doesn't
3205 need an external name. For binary formats without COMDAT sections,
3206 though, we need external names for the vtable groups.
3208 We use the production
3210 <special-name> ::= CT <type> <offset number> _ <base type> */
3213 mangle_ctor_vtbl_for_type (const tree type
, const tree binfo
)
3217 start_mangling (type
);
3219 write_string ("_Z");
3220 write_string ("TC");
3222 write_integer_cst (BINFO_OFFSET (binfo
));
3224 write_type (BINFO_TYPE (binfo
));
3226 result
= finish_mangling_get_identifier (/*warn=*/false);
3228 fprintf (stderr
, "mangle_ctor_vtbl_for_type = %s\n\n",
3229 IDENTIFIER_POINTER (result
));
3233 /* Mangle a this pointer or result pointer adjustment.
3235 <call-offset> ::= h <fixed offset number> _
3236 ::= v <fixed offset number> _ <virtual offset number> _ */
3239 mangle_call_offset (const tree fixed_offset
, const tree virtual_offset
)
3241 write_char (virtual_offset
? 'v' : 'h');
3243 /* For either flavor, write the fixed offset. */
3244 write_integer_cst (fixed_offset
);
3247 /* For a virtual thunk, add the virtual offset. */
3250 write_integer_cst (virtual_offset
);
3255 /* Return an identifier for the mangled name of a this-adjusting or
3256 covariant thunk to FN_DECL. FIXED_OFFSET is the initial adjustment
3257 to this used to find the vptr. If VIRTUAL_OFFSET is non-NULL, this
3258 is a virtual thunk, and it is the vtbl offset in
3259 bytes. THIS_ADJUSTING is nonzero for a this adjusting thunk and
3260 zero for a covariant thunk. Note, that FN_DECL might be a covariant
3261 thunk itself. A covariant thunk name always includes the adjustment
3262 for the this pointer, even if there is none.
3264 <special-name> ::= T <call-offset> <base encoding>
3265 ::= Tc <this_adjust call-offset> <result_adjust call-offset>
3269 mangle_thunk (tree fn_decl
, const int this_adjusting
, tree fixed_offset
,
3270 tree virtual_offset
)
3274 start_mangling (fn_decl
);
3276 write_string ("_Z");
3279 if (!this_adjusting
)
3281 /* Covariant thunk with no this adjustment */
3283 mangle_call_offset (integer_zero_node
, NULL_TREE
);
3284 mangle_call_offset (fixed_offset
, virtual_offset
);
3286 else if (!DECL_THUNK_P (fn_decl
))
3287 /* Plain this adjusting thunk. */
3288 mangle_call_offset (fixed_offset
, virtual_offset
);
3291 /* This adjusting thunk to covariant thunk. */
3293 mangle_call_offset (fixed_offset
, virtual_offset
);
3294 fixed_offset
= ssize_int (THUNK_FIXED_OFFSET (fn_decl
));
3295 virtual_offset
= THUNK_VIRTUAL_OFFSET (fn_decl
);
3297 virtual_offset
= BINFO_VPTR_FIELD (virtual_offset
);
3298 mangle_call_offset (fixed_offset
, virtual_offset
);
3299 fn_decl
= THUNK_TARGET (fn_decl
);
3303 write_encoding (fn_decl
);
3305 result
= finish_mangling_get_identifier (/*warn=*/false);
3307 fprintf (stderr
, "mangle_thunk = %s\n\n", IDENTIFIER_POINTER (result
));
3311 /* This hash table maps TYPEs to the IDENTIFIER for a conversion
3312 operator to TYPE. The nodes are IDENTIFIERs whose TREE_TYPE is the
3315 static GTY ((param_is (union tree_node
))) htab_t conv_type_names
;
3317 /* Hash a node (VAL1) in the table. */
3320 hash_type (const void *val
)
3322 return (hashval_t
) TYPE_UID (TREE_TYPE ((const_tree
) val
));
3325 /* Compare VAL1 (a node in the table) with VAL2 (a TYPE). */
3328 compare_type (const void *val1
, const void *val2
)
3330 return TREE_TYPE ((const_tree
) val1
) == (const_tree
) val2
;
3333 /* Return an identifier for the mangled unqualified name for a
3334 conversion operator to TYPE. This mangling is not specified by the
3335 ABI spec; it is only used internally. */
3338 mangle_conv_op_name_for_type (const tree type
)
3343 if (type
== error_mark_node
)
3344 return error_mark_node
;
3346 if (conv_type_names
== NULL
)
3347 conv_type_names
= htab_create_ggc (31, &hash_type
, &compare_type
, NULL
);
3349 slot
= htab_find_slot_with_hash (conv_type_names
, type
,
3350 (hashval_t
) TYPE_UID (type
), INSERT
);
3351 identifier
= (tree
)*slot
;
3356 /* Create a unique name corresponding to TYPE. */
3357 sprintf (buffer
, "operator %lu",
3358 (unsigned long) htab_elements (conv_type_names
));
3359 identifier
= get_identifier (buffer
);
3362 /* Hang TYPE off the identifier so it can be found easily later
3363 when performing conversions. */
3364 TREE_TYPE (identifier
) = type
;
3366 /* Set bits on the identifier so we know later it's a conversion. */
3367 IDENTIFIER_OPNAME_P (identifier
) = 1;
3368 IDENTIFIER_TYPENAME_P (identifier
) = 1;
3374 /* Return an identifier for the name of an initialization guard
3375 variable for indicated VARIABLE. */
3378 mangle_guard_variable (const tree variable
)
3380 start_mangling (variable
);
3381 write_string ("_ZGV");
3382 if (strncmp (IDENTIFIER_POINTER (DECL_NAME (variable
)), "_ZGR", 4) == 0)
3383 /* The name of a guard variable for a reference temporary should refer
3384 to the reference, not the temporary. */
3385 write_string (IDENTIFIER_POINTER (DECL_NAME (variable
)) + 4);
3387 write_name (variable
, /*ignore_local_scope=*/0);
3388 return finish_mangling_get_identifier (/*warn=*/false);
3391 /* Return an identifier for the name of a temporary variable used to
3392 initialize a static reference. This isn't part of the ABI, but we might
3393 as well call them something readable. */
3396 mangle_ref_init_variable (const tree variable
)
3398 start_mangling (variable
);
3399 write_string ("_ZGR");
3400 write_name (variable
, /*ignore_local_scope=*/0);
3401 return finish_mangling_get_identifier (/*warn=*/false);
3405 /* Foreign language type mangling section. */
3407 /* How to write the type codes for the integer Java type. */
3410 write_java_integer_type_codes (const tree type
)
3412 if (type
== java_int_type_node
)
3414 else if (type
== java_short_type_node
)
3416 else if (type
== java_byte_type_node
)
3418 else if (type
== java_char_type_node
)
3420 else if (type
== java_long_type_node
)
3422 else if (type
== java_boolean_type_node
)
3428 #include "gt-cp-mangle.h"