]> gcc.gnu.org Git - gcc.git/blame - gcc/cp/mangle.c
Implement defaulted/deleted functions as per N2346
[gcc.git] / gcc / cp / mangle.c
CommitLineData
3461fba7 1/* Name mangling for the 3.0 C++ ABI.
dae4174e 2 Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2007, 2008
b39309c8 3 Free Software Foundation, Inc.
5c31de12 4 Written by Alex Samuel <samuel@codesourcery.com>
1f6e1acc 5
f5adbb8d 6 This file is part of GCC.
1f6e1acc 7
f5adbb8d 8 GCC is free software; you can redistribute it and/or modify it
1f6e1acc 9 under the terms of the GNU General Public License as published by
e77f031d 10 the Free Software Foundation; either version 3, or (at your option)
1f6e1acc
AS
11 any later version.
12
f5adbb8d 13 GCC is distributed in the hope that it will be useful, but
1f6e1acc
AS
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.
17
e77f031d
NC
18You should have received a copy of the GNU General Public License
19along with GCC; see the file COPYING3. If not see
20<http://www.gnu.org/licenses/>. */
1f6e1acc
AS
21
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.
29
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.
34
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:
40
0cbd7506
MS
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
3db45ab5 46 mangle_thunk: thunk function or entry */
1f6e1acc
AS
47
48#include "config.h"
49#include "system.h"
4977bab6
ZW
50#include "coretypes.h"
51#include "tm.h"
1f6e1acc 52#include "tree.h"
24386c5e 53#include "tm_p.h"
1f6e1acc 54#include "cp-tree.h"
11ad4784 55#include "real.h"
1f6e1acc
AS
56#include "obstack.h"
57#include "toplev.h"
58#include "varray.h"
57782ad8 59#include "flags.h"
f18eca82 60#include "target.h"
1f6e1acc
AS
61
62/* Debugging support. */
63
64/* Define DEBUG_MANGLE to enable very verbose trace messages. */
65#ifndef DEBUG_MANGLE
66#define DEBUG_MANGLE 0
67#endif
68
69/* Macros for tracing the write_* functions. */
70#if DEBUG_MANGLE
71# define MANGLE_TRACE(FN, INPUT) \
ff0b0e4c 72 fprintf (stderr, " %-24s: %-24s\n", (FN), (INPUT))
1f6e1acc
AS
73# define MANGLE_TRACE_TREE(FN, NODE) \
74 fprintf (stderr, " %-24s: %-24s (%p)\n", \
0cbd7506 75 (FN), tree_code_name[TREE_CODE (NODE)], (void *) (NODE))
1f6e1acc
AS
76#else
77# define MANGLE_TRACE(FN, INPUT)
78# define MANGLE_TRACE_TREE(FN, NODE)
79#endif
80
838dfd8a 81/* Nonzero if NODE is a class template-id. We can't rely on
722bed0f
AS
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
f0f33848 85 without parameters inside the template. */
6397d80b
MM
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))))))
1f6e1acc
AS
91
92/* Things we only need one of. This module is not reentrant. */
2b8fe4a0 93typedef struct globals GTY(())
1f6e1acc 94{
1f6e1acc
AS
95 /* An array of the current substitution candidates, in the order
96 we've seen them. */
6e1141d7 97 VEC(tree,gc) *substitutions;
8c152bad 98
6397d80b 99 /* The entity that is being mangled. */
2b8fe4a0 100 tree GTY ((skip)) entity;
6397d80b 101
6397d80b
MM
102 /* True if the mangling will be different in a future version of the
103 ABI. */
104 bool need_abi_warning;
2b8fe4a0
MM
105} globals;
106
107static GTY (()) globals G;
108
109/* The obstack on which we build mangled names. */
110static struct obstack *mangle_obstack;
111
112/* The obstack on which we build mangled names that are not going to
113 be IDENTIFIER_NODEs. */
114static struct obstack name_obstack;
115
bb5ecf29
MM
116/* The first object on the name_obstack; we use this to free memory
117 allocated on the name_obstack. */
2b8fe4a0 118static void *name_base;
1f6e1acc
AS
119
120/* Indices into subst_identifiers. These are identifiers used in
121 special substitution rules. */
122typedef enum
123{
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
131}
132substitution_identifier_index_t;
133
134/* For quick substitution checks, look up these common identifiers
135 once only. */
0de298af 136static GTY(()) tree subst_identifiers[SUBID_MAX];
1f6e1acc
AS
137
138/* Single-letter codes for builtin integer types, defined in
139 <builtin-type>. These are indexed by integer_type_kind values. */
eb6b51b9 140static const char
1f6e1acc
AS
141integer_type_codes[itk_none] =
142{
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 */
154};
155
89aec4b1 156static int decl_is_template_id (const tree, tree* const);
722bed0f 157
1f6e1acc
AS
158/* Functions for handling substitutions. */
159
89aec4b1
NN
160static inline tree canonicalize_for_substitution (tree);
161static void add_substitution (tree);
162static inline int is_std_substitution (const tree,
163 const substitution_identifier_index_t);
164static inline int is_std_substitution_char (const tree,
165 const substitution_identifier_index_t);
166static int find_substitution (tree);
167static void mangle_call_offset (const tree, const tree);
1f6e1acc
AS
168
169/* Functions for emitting mangled representations of things. */
170
5fd80fbc 171static void write_mangled_name (const tree, bool);
89aec4b1
NN
172static void write_encoding (const tree);
173static void write_name (tree, const int);
174static void write_unscoped_name (const tree);
175static void write_unscoped_template_name (const tree);
176static void write_nested_name (const tree);
177static void write_prefix (const tree);
178static void write_template_prefix (const tree);
179static void write_unqualified_name (const tree);
180static void write_conversion_operator_name (const tree);
181static void write_source_name (tree);
182static int hwint_to_ascii (unsigned HOST_WIDE_INT, const unsigned int, char *,
183 const unsigned int);
184static void write_number (unsigned HOST_WIDE_INT, const int,
185 const unsigned int);
186static void write_integer_cst (const tree);
187static void write_real_cst (const tree);
188static void write_identifier (const char *);
189static void write_special_name_constructor (const tree);
190static void write_special_name_destructor (const tree);
191static void write_type (tree);
192static int write_CV_qualifiers_for_type (const tree);
193static void write_builtin_type (tree);
194static void write_function_type (const tree);
195static void write_bare_function_type (const tree, const int, const tree);
196static void write_method_parms (tree, const int, const tree);
197static void write_class_enum_type (const tree);
198static void write_template_args (tree);
199static void write_expression (tree);
200static void write_template_arg_literal (const tree);
201static void write_template_arg (tree);
202static void write_template_template_arg (const tree);
203static void write_array_type (const tree);
204static void write_pointer_to_member_type (const tree);
205static void write_template_param (const tree);
206static void write_template_template_param (const tree);
207static void write_substitution (const int);
208static int discriminator_for_local_entity (tree);
209static int discriminator_for_string_literal (tree, tree);
210static void write_discriminator (const int);
211static void write_local_name (const tree, const tree, const tree);
212static void dump_substitution_candidates (void);
dae4174e 213static tree mangle_decl_string (const tree);
1f6e1acc
AS
214
215/* Control functions. */
216
dae4174e 217static inline void start_mangling (const tree);
89aec4b1
NN
218static inline const char *finish_mangling (const bool);
219static tree mangle_special_for_type (const tree, const char *);
1f6e1acc 220
c6002625 221/* Foreign language functions. */
23d4e4cc 222
89aec4b1 223static void write_java_integer_type_codes (const tree);
23d4e4cc 224
1f6e1acc
AS
225/* Append a single character to the end of the mangled
226 representation. */
0cbd7506 227#define write_char(CHAR) \
2b8fe4a0 228 obstack_1grow (mangle_obstack, (CHAR))
1f6e1acc 229
c6002625 230/* Append a sized buffer to the end of the mangled representation. */
0cbd7506 231#define write_chars(CHAR, LEN) \
2b8fe4a0 232 obstack_grow (mangle_obstack, (CHAR), (LEN))
0576ec13 233
1f6e1acc
AS
234/* Append a NUL-terminated string to the end of the mangled
235 representation. */
0cbd7506 236#define write_string(STRING) \
2b8fe4a0 237 obstack_grow (mangle_obstack, (STRING), strlen (STRING))
1f6e1acc 238
838dfd8a 239/* Nonzero if NODE1 and NODE2 are both TREE_LIST nodes and have the
459c43ad 240 same purpose (context, which may be a type) and value (template
1f6e1acc
AS
241 decl). See write_template_prefix for more information on what this
242 is used for. */
0cbd7506
MS
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)) \
1f6e1acc
AS
249 && TREE_VALUE (NODE1) == TREE_VALUE (NODE2))
250
82a362d0 251/* Write out an unsigned quantity in base 10. */
0cbd7506 252#define write_unsigned_number(NUMBER) \
ff0b0e4c 253 write_number ((NUMBER), /*unsigned_p=*/1, 10)
82a362d0 254
838dfd8a 255/* If DECL is a template instance, return nonzero and, if
722bed0f
AS
256 TEMPLATE_INFO is non-NULL, set *TEMPLATE_INFO to its template info.
257 Otherwise return zero. */
258
259static int
89aec4b1 260decl_is_template_id (const tree decl, tree* const template_info)
722bed0f
AS
261{
262 if (TREE_CODE (decl) == TYPE_DECL)
263 {
264 /* TYPE_DECLs are handled specially. Look at its type to decide
265 if this is a template instantiation. */
89aec4b1 266 const tree type = TREE_TYPE (decl);
722bed0f
AS
267
268 if (CLASS_TYPE_P (type) && CLASSTYPE_TEMPLATE_ID_P (type))
269 {
270 if (template_info != NULL)
271 /* For a templated TYPE_DECL, the template info is hanging
272 off the type. */
6397d80b 273 *template_info = TYPE_TEMPLATE_INFO (type);
722bed0f
AS
274 return 1;
275 }
c8094d83 276 }
722bed0f
AS
277 else
278 {
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)
284 {
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;
290 }
291 }
292
293 /* It's not a template id. */
294 return 0;
295}
296
1f6e1acc
AS
297/* Produce debugging output of current substitution candidates. */
298
299static void
edaf3e03 300dump_substitution_candidates (void)
1f6e1acc
AS
301{
302 unsigned i;
6e1141d7 303 tree el;
1f6e1acc
AS
304
305 fprintf (stderr, " ++ substitutions ");
6e1141d7 306 for (i = 0; VEC_iterate (tree, G.substitutions, i, el); ++i)
1f6e1acc 307 {
1f6e1acc
AS
308 const char *name = "???";
309
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);
c8094d83
MS
319 if (TYPE_P (el) &&
320 (CP_TYPE_RESTRICT_P (el)
321 || CP_TYPE_VOLATILE_P (el)
1f6e1acc
AS
322 || CP_TYPE_CONST_P (el)))
323 fprintf (stderr, "CV-");
c8094d83 324 fprintf (stderr, "%s (%s at %p)\n",
1f6e1acc
AS
325 name, tree_code_name[TREE_CODE (el)], (void *) el);
326 }
327}
328
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
34cd5ae7 332 be treated accordingly in substitutions. This function returns a
1f6e1acc
AS
333 canonicalized tree node representing NODE that is used when adding
334 and substitution candidates and finding matches. */
335
336static inline tree
89aec4b1 337canonicalize_for_substitution (tree node)
1f6e1acc
AS
338{
339 /* For a TYPE_DECL, use the type instead. */
340 if (TREE_CODE (node) == TYPE_DECL)
341 node = TREE_TYPE (node);
bc6e9a0a
MM
342 if (TYPE_P (node))
343 node = canonical_type_variant (node);
1f6e1acc
AS
344
345 return node;
346}
347
348/* Add NODE as a substitution candidate. NODE must not already be on
349 the list of candidates. */
350
351static void
89aec4b1 352add_substitution (tree node)
1f6e1acc
AS
353{
354 tree c;
355
356 if (DEBUG_MANGLE)
c8094d83 357 fprintf (stderr, " ++ add_substitution (%s at %10p)\n",
1f6e1acc
AS
358 tree_code_name[TREE_CODE (node)], (void *) node);
359
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;
366
367#if ENABLE_CHECKING
368 /* Make sure NODE isn't already a candidate. */
369 {
370 int i;
6e1141d7
KH
371 tree candidate;
372
373 for (i = 0; VEC_iterate (tree, G.substitutions, i, candidate); i++)
1f6e1acc 374 {
8dc2b103 375 gcc_assert (!(DECL_P (node) && node == candidate));
c8094d83 376 gcc_assert (!(TYPE_P (node) && TYPE_P (candidate)
8dc2b103 377 && same_type_p (node, candidate)));
1f6e1acc
AS
378 }
379 }
380#endif /* ENABLE_CHECKING */
381
382 /* Put the decl onto the varray of substitution candidates. */
6e1141d7 383 VEC_safe_push (tree, gc, G.substitutions, node);
1f6e1acc
AS
384
385 if (DEBUG_MANGLE)
386 dump_substitution_candidates ();
387}
388
838dfd8a 389/* Helper function for find_substitution. Returns nonzero if NODE,
1f6e1acc
AS
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. */
392
c8094d83 393static inline int
89aec4b1
NN
394is_std_substitution (const tree node,
395 const substitution_identifier_index_t index)
1f6e1acc
AS
396{
397 tree type = NULL;
398 tree decl = NULL;
399
400 if (DECL_P (node))
401 {
402 type = TREE_TYPE (node);
403 decl = node;
404 }
405 else if (CLASS_TYPE_P (node))
406 {
407 type = node;
408 decl = TYPE_NAME (node);
409 }
c8094d83 410 else
1f6e1acc
AS
411 /* These are not the droids you're looking for. */
412 return 0;
413
459c43ad 414 return (DECL_NAMESPACE_STD_P (CP_DECL_CONTEXT (decl))
c8094d83 415 && TYPE_LANG_SPECIFIC (type)
6397d80b 416 && TYPE_TEMPLATE_INFO (type)
c8094d83 417 && (DECL_NAME (TYPE_TI_TEMPLATE (type))
459c43ad 418 == subst_identifiers[index]));
1f6e1acc
AS
419}
420
838dfd8a 421/* Helper function for find_substitution. Returns nonzero if NODE,
1f6e1acc
AS
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]. */
425
426static inline int
89aec4b1
NN
427is_std_substitution_char (const tree node,
428 const substitution_identifier_index_t index)
1f6e1acc
AS
429{
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))
c8094d83 436 args = DECL_TI_ARGS (node);
1f6e1acc
AS
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>. */
c8094d83 443 return
1f6e1acc
AS
444 TREE_VEC_LENGTH (args) == 1
445 && TREE_VEC_ELT (args, 0) == char_type_node;
446}
447
448/* Check whether a substitution should be used to represent NODE in
449 the mangling.
450
451 First, check standard special-case substitutions.
452
c8094d83 453 <substitution> ::= St
0cbd7506 454 # ::std
1f6e1acc 455
0cbd7506 456 ::= Sa
1f6e1acc
AS
457 # ::std::allocator
458
0cbd7506
MS
459 ::= Sb
460 # ::std::basic_string
1f6e1acc 461
0cbd7506
MS
462 ::= Ss
463 # ::std::basic_string<char,
1f6e1acc
AS
464 ::std::char_traits<char>,
465 ::std::allocator<char> >
466
0cbd7506
MS
467 ::= Si
468 # ::std::basic_istream<char, ::std::char_traits<char> >
1f6e1acc 469
0cbd7506
MS
470 ::= So
471 # ::std::basic_ostream<char, ::std::char_traits<char> >
1f6e1acc 472
0cbd7506
MS
473 ::= Sd
474 # ::std::basic_iostream<char, ::std::char_traits<char> >
1f6e1acc
AS
475
476 Then examine the stack of currently available substitution
477 candidates for entities appearing earlier in the same mangling
478
479 If a substitution is found, write its mangled representation and
838dfd8a 480 return nonzero. If none is found, just return zero. */
1f6e1acc
AS
481
482static int
89aec4b1 483find_substitution (tree node)
1f6e1acc
AS
484{
485 int i;
6e1141d7 486 const int size = VEC_length (tree, G.substitutions);
1f6e1acc
AS
487 tree decl;
488 tree type;
489
490 if (DEBUG_MANGLE)
491 fprintf (stderr, " ++ find_substitution (%s at %p)\n",
492 tree_code_name[TREE_CODE (node)], (void *) node);
493
494 /* Obtain the canonicalized substitution representation for NODE.
495 This is what we'll compare against. */
496 node = canonicalize_for_substitution (node);
497
498 /* Check for builtin substitutions. */
499
500 decl = TYPE_P (node) ? TYPE_NAME (node) : node;
501 type = TYPE_P (node) ? node : TREE_TYPE (node);
502
503 /* Check for std::allocator. */
c8094d83 504 if (decl
459c43ad
MM
505 && is_std_substitution (decl, SUBID_ALLOCATOR)
506 && !CLASSTYPE_USE_TEMPLATE (TREE_TYPE (decl)))
1f6e1acc
AS
507 {
508 write_string ("Sa");
509 return 1;
510 }
511
512 /* Check for std::basic_string. */
513 if (decl && is_std_substitution (decl, SUBID_BASIC_STRING))
514 {
82a362d0 515 if (TYPE_P (node))
1f6e1acc 516 {
c8094d83
MS
517 /* If this is a type (i.e. a fully-qualified template-id),
518 check for
0cbd7506
MS
519 std::basic_string <char,
520 std::char_traits<char>,
1f6e1acc 521 std::allocator<char> > . */
89d684bb 522 if (cp_type_quals (type) == TYPE_UNQUALIFIED
1f6e1acc
AS
523 && CLASSTYPE_USE_TEMPLATE (type))
524 {
525 tree args = CLASSTYPE_TI_ARGS (type);
526 if (TREE_VEC_LENGTH (args) == 3
bece74bd 527 && same_type_p (TREE_VEC_ELT (args, 0), char_type_node)
1f6e1acc
AS
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))
532 {
533 write_string ("Ss");
534 return 1;
535 }
536 }
537 }
538 else
539 /* Substitute for the template name only if this isn't a type. */
540 {
541 write_string ("Sb");
542 return 1;
543 }
544 }
545
546 /* Check for basic_{i,o,io}stream. */
82a362d0 547 if (TYPE_P (node)
89d684bb 548 && cp_type_quals (type) == TYPE_UNQUALIFIED
1f6e1acc
AS
549 && CLASS_TYPE_P (type)
550 && CLASSTYPE_USE_TEMPLATE (type)
551 && CLASSTYPE_TEMPLATE_INFO (type) != NULL)
552 {
c8094d83 553 /* First, check for the template
1f6e1acc
AS
554 args <char, std::char_traits<char> > . */
555 tree args = CLASSTYPE_TI_ARGS (type);
556 if (TREE_VEC_LENGTH (args) == 2
6df5158a 557 && TYPE_P (TREE_VEC_ELT (args, 0))
bece74bd 558 && same_type_p (TREE_VEC_ELT (args, 0), char_type_node)
1f6e1acc
AS
559 && is_std_substitution_char (TREE_VEC_ELT (args, 1),
560 SUBID_CHAR_TRAITS))
561 {
562 /* Got them. Is this basic_istream? */
3beac910 563 if (is_std_substitution (decl, SUBID_BASIC_ISTREAM))
1f6e1acc
AS
564 {
565 write_string ("Si");
566 return 1;
567 }
568 /* Or basic_ostream? */
3beac910 569 else if (is_std_substitution (decl, SUBID_BASIC_OSTREAM))
1f6e1acc
AS
570 {
571 write_string ("So");
572 return 1;
573 }
574 /* Or basic_iostream? */
3beac910 575 else if (is_std_substitution (decl, SUBID_BASIC_IOSTREAM))
1f6e1acc
AS
576 {
577 write_string ("Sd");
578 return 1;
579 }
580 }
581 }
582
583 /* Check for namespace std. */
82a362d0 584 if (decl && DECL_NAMESPACE_STD_P (decl))
1f6e1acc
AS
585 {
586 write_string ("St");
587 return 1;
588 }
589
590 /* Now check the list of available substitutions for this mangling
c6002625 591 operation. */
1f6e1acc
AS
592 for (i = 0; i < size; ++i)
593 {
6e1141d7 594 tree candidate = VEC_index (tree, G.substitutions, i);
1f6e1acc
AS
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))
601 {
602 write_substitution (i);
603 return 1;
604 }
605 }
606
607 /* No substitution found. */
608 return 0;
609}
610
611
5fd80fbc
NS
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.
c8094d83 615
5fd80fbc 616 <mangled-name> ::= _Z <encoding> */
1f6e1acc 617
965514bd 618static void
5fd80fbc 619write_mangled_name (const tree decl, bool top_level)
1f6e1acc
AS
620{
621 MANGLE_TRACE_TREE ("mangled-name", decl);
622
5fd80fbc
NS
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))
627 {
628 unmangled_name:;
c8094d83 629
5fd80fbc
NS
630 if (top_level)
631 write_string (IDENTIFIER_POINTER (DECL_NAME (decl)));
632 else
633 {
634 /* The standard notes: "The <encoding> of an extern "C"
0cbd7506
MS
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. */
5fd80fbc
NS
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));
644 }
645 }
646 else if (TREE_CODE (decl) == VAR_DECL
a2aa65f0
GK
647 /* The names of non-static global variables aren't mangled. */
648 && DECL_EXTERNAL_LINKAGE_P (decl)
5fd80fbc
NS
649 && (CP_DECL_CONTEXT (decl) == global_namespace
650 /* And neither are `extern "C"' variables. */
651 || DECL_EXTERN_C_P (decl)))
652 {
653 if (top_level || abi_version_at_least (2))
654 goto unmangled_name;
655 else
656 {
657 G.need_abi_warning = true;
658 goto mangled_name;
659 }
660 }
1f6e1acc 661 else
1f6e1acc 662 {
5fd80fbc 663 mangled_name:;
1f6e1acc
AS
664 write_string ("_Z");
665 write_encoding (decl);
5fd80fbc
NS
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* ");
1f6e1acc
AS
673 }
674}
675
676/* <encoding> ::= <function name> <bare-function-type>
bece74bd 677 ::= <data name> */
1f6e1acc
AS
678
679static void
89aec4b1 680write_encoding (const tree decl)
1f6e1acc
AS
681{
682 MANGLE_TRACE_TREE ("encoding", decl);
683
1f6e1acc
AS
684 if (DECL_LANG_SPECIFIC (decl) && DECL_EXTERN_C_FUNCTION_P (decl))
685 {
324ffb8c
JJ
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));
1f6e1acc
AS
692 return;
693 }
694
f0f33848 695 write_name (decl, /*ignore_local_scope=*/0);
1f6e1acc
AS
696 if (TREE_CODE (decl) == FUNCTION_DECL)
697 {
698 tree fn_type;
4a5e0ed9 699 tree d;
1f6e1acc 700
722bed0f 701 if (decl_is_template_id (decl, NULL))
4a5e0ed9
MM
702 {
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;
709 }
1f6e1acc 710 else
4a5e0ed9
MM
711 {
712 fn_type = TREE_TYPE (decl);
713 d = decl;
714 }
1f6e1acc 715
c8094d83 716 write_bare_function_type (fn_type,
94350948
MM
717 (!DECL_CONSTRUCTOR_P (decl)
718 && !DECL_DESTRUCTOR_P (decl)
f22967f3 719 && !DECL_CONV_FN_P (decl)
f58c04ac 720 && decl_is_template_id (decl, NULL)),
4a5e0ed9 721 d);
1f6e1acc 722 }
1f6e1acc
AS
723}
724
725/* <name> ::= <unscoped-name>
0cbd7506 726 ::= <unscoped-template-name> <template-args>
1f6e1acc 727 ::= <nested-name>
c8094d83 728 ::= <local-name>
f0f33848 729
838dfd8a 730 If IGNORE_LOCAL_SCOPE is nonzero, this production of <name> is
f0f33848
AS
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. */
1f6e1acc
AS
735
736static void
89aec4b1 737write_name (tree decl, const int ignore_local_scope)
1f6e1acc 738{
82a362d0
CS
739 tree context;
740
1f6e1acc
AS
741 MANGLE_TRACE_TREE ("name", decl);
742
722bed0f
AS
743 if (TREE_CODE (decl) == TYPE_DECL)
744 {
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)));
749 }
750 else
751 context = (DECL_CONTEXT (decl) == NULL) ? NULL : CP_DECL_CONTEXT (decl);
752
beac9b93
AS
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>. */
c8094d83
MS
758 if (context == NULL
759 || context == global_namespace
beac9b93
AS
760 || DECL_NAMESPACE_STD_P (context)
761 || (ignore_local_scope && TREE_CODE (context) == FUNCTION_DECL))
1f6e1acc 762 {
722bed0f
AS
763 tree template_info;
764 /* Is this a template instance? */
765 if (decl_is_template_id (decl, &template_info))
1f6e1acc 766 {
722bed0f
AS
767 /* Yes: use <unscoped-template-name>. */
768 write_unscoped_template_name (TI_TEMPLATE (template_info));
769 write_template_args (TI_ARGS (template_info));
1f6e1acc
AS
770 }
771 else
772 /* Everything else gets an <unqualified-name>. */
773 write_unscoped_name (decl);
774 }
1f6e1acc 775 else
f0f33848
AS
776 {
777 /* Handle local names, unless we asked not to (that is, invoked
0cbd7506
MS
778 under <local-name>, to handle only the part of the name under
779 the local scope). */
f0f33848 780 if (!ignore_local_scope)
0cbd7506 781 {
f0f33848
AS
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)
790 {
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)
796 {
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;
801 }
802 /* Up one scope level. */
803 local_entity = context;
804 context = CP_DECL_CONTEXT (context);
805 }
806
807 /* No local scope found? Fall through to <nested-name>. */
808 }
809
810 /* Other decls get a <nested-name> to encode their scope. */
811 write_nested_name (decl);
812 }
1f6e1acc
AS
813}
814
815/* <unscoped-name> ::= <unqualified-name>
0cbd7506 816 ::= St <unqualified-name> # ::std:: */
1f6e1acc
AS
817
818static void
89aec4b1 819write_unscoped_name (const tree decl)
1f6e1acc
AS
820{
821 tree context = CP_DECL_CONTEXT (decl);
822
823 MANGLE_TRACE_TREE ("unscoped-name", decl);
824
825 /* Is DECL in ::std? */
826 if (DECL_NAMESPACE_STD_P (context))
827 {
828 write_string ("St");
829 write_unqualified_name (decl);
830 }
8dc2b103
NS
831 else
832 {
833 /* If not, it should be either in the global namespace, or directly
0cbd7506 834 in a local function scope. */
c8094d83 835 gcc_assert (context == global_namespace
8dc2b103
NS
836 || context == NULL
837 || TREE_CODE (context) == FUNCTION_DECL);
c8094d83 838
8dc2b103
NS
839 write_unqualified_name (decl);
840 }
1f6e1acc
AS
841}
842
843/* <unscoped-template-name> ::= <unscoped-name>
0cbd7506 844 ::= <substitution> */
1f6e1acc
AS
845
846static void
89aec4b1 847write_unscoped_template_name (const tree decl)
1f6e1acc
AS
848{
849 MANGLE_TRACE_TREE ("unscoped-template-name", decl);
850
851 if (find_substitution (decl))
852 return;
853 write_unscoped_name (decl);
854 add_substitution (decl);
855}
856
857/* Write the nested name, including CV-qualifiers, of DECL.
858
c8094d83 859 <nested-name> ::= N [<CV-qualifiers>] <prefix> <unqualified-name> E
0cbd7506 860 ::= N [<CV-qualifiers>] <template-prefix> <template-args> E
1f6e1acc
AS
861
862 <CV-qualifiers> ::= [r] [V] [K] */
863
864static void
89aec4b1 865write_nested_name (const tree decl)
1f6e1acc 866{
722bed0f
AS
867 tree template_info;
868
1f6e1acc
AS
869 MANGLE_TRACE_TREE ("nested-name", decl);
870
871 write_char ('N');
c8094d83 872
1f6e1acc 873 /* Write CV-qualifiers, if this is a member function. */
c8094d83 874 if (TREE_CODE (decl) == FUNCTION_DECL
1f6e1acc
AS
875 && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
876 {
877 if (DECL_VOLATILE_MEMFUNC_P (decl))
878 write_char ('V');
879 if (DECL_CONST_MEMFUNC_P (decl))
880 write_char ('K');
881 }
882
722bed0f
AS
883 /* Is this a template instance? */
884 if (decl_is_template_id (decl, &template_info))
1f6e1acc 885 {
722bed0f 886 /* Yes, use <template-prefix>. */
1f6e1acc 887 write_template_prefix (decl);
722bed0f 888 write_template_args (TI_ARGS (template_info));
1f6e1acc
AS
889 }
890 else
891 {
722bed0f 892 /* No, just use <prefix> */
1f6e1acc 893 write_prefix (DECL_CONTEXT (decl));
f0f33848 894 write_unqualified_name (decl);
1f6e1acc
AS
895 }
896 write_char ('E');
897}
898
6397d80b 899/* <prefix> ::= <prefix> <unqualified-name>
0cbd7506
MS
900 ::= <template-param>
901 ::= <template-prefix> <template-args>
1f6e1acc
AS
902 ::= # empty
903 ::= <substitution> */
904
905static void
89aec4b1 906write_prefix (const tree node)
1f6e1acc
AS
907{
908 tree decl;
722bed0f
AS
909 /* Non-NULL if NODE represents a template-id. */
910 tree template_info = NULL;
911
912 MANGLE_TRACE_TREE ("prefix", node);
1f6e1acc
AS
913
914 if (node == NULL
915 || node == global_namespace)
916 return;
917
1f6e1acc
AS
918 if (find_substitution (node))
919 return;
920
722bed0f 921 if (DECL_P (node))
1f6e1acc 922 {
f0f33848
AS
923 /* If this is a function decl, that means we've hit function
924 scope, so this prefix must be for a local name. In this
925 case, we're under the <local-name> production, which encodes
926 the enclosing function scope elsewhere. So don't continue
927 here. */
928 if (TREE_CODE (node) == FUNCTION_DECL)
929 return;
930
722bed0f
AS
931 decl = node;
932 decl_is_template_id (decl, &template_info);
1f6e1acc 933 }
722bed0f 934 else
722bed0f 935 {
6397d80b 936 /* Node is a type. */
722bed0f
AS
937 decl = TYPE_NAME (node);
938 if (CLASSTYPE_TEMPLATE_ID_P (node))
6397d80b 939 template_info = TYPE_TEMPLATE_INFO (node);
722bed0f
AS
940 }
941
6397d80b 942 /* In G++ 3.2, the name of the template parameter was used. */
c8094d83 943 if (TREE_CODE (node) == TEMPLATE_TYPE_PARM
6397d80b
MM
944 && !abi_version_at_least (2))
945 G.need_abi_warning = true;
946
947 if (TREE_CODE (node) == TEMPLATE_TYPE_PARM
948 && abi_version_at_least (2))
949 write_template_param (node);
950 else if (template_info != NULL)
722bed0f 951 /* Templated. */
1f6e1acc 952 {
722bed0f
AS
953 write_template_prefix (decl);
954 write_template_args (TI_ARGS (template_info));
1f6e1acc
AS
955 }
956 else
957 /* Not templated. */
958 {
722bed0f 959 write_prefix (CP_DECL_CONTEXT (decl));
f0f33848 960 write_unqualified_name (decl);
1f6e1acc
AS
961 }
962
963 add_substitution (node);
964}
965
966/* <template-prefix> ::= <prefix> <template component>
0cbd7506
MS
967 ::= <template-param>
968 ::= <substitution> */
1f6e1acc
AS
969
970static void
89aec4b1 971write_template_prefix (const tree node)
1f6e1acc
AS
972{
973 tree decl = DECL_P (node) ? node : TYPE_NAME (node);
974 tree type = DECL_P (node) ? TREE_TYPE (node) : node;
975 tree context = CP_DECL_CONTEXT (decl);
722bed0f 976 tree template_info;
be93747e 977 tree templ;
1f6e1acc
AS
978 tree substitution;
979
980 MANGLE_TRACE_TREE ("template-prefix", node);
981
982 /* Find the template decl. */
722bed0f 983 if (decl_is_template_id (decl, &template_info))
be93747e 984 templ = TI_TEMPLATE (template_info);
1f6e1acc 985 else
8dc2b103
NS
986 {
987 gcc_assert (CLASSTYPE_TEMPLATE_ID_P (type));
c8094d83 988
be93747e 989 templ = TYPE_TI_TEMPLATE (type);
8dc2b103 990 }
1f6e1acc 991
459c43ad
MM
992 /* For a member template, though, the template name for the
993 innermost name must have all the outer template levels
994 instantiated. For instance, consider
995
996 template<typename T> struct Outer {
997 template<typename U> struct Inner {};
998 };
999
1000 The template name for `Inner' in `Outer<int>::Inner<float>' is
1001 `Outer<int>::Inner<U>'. In g++, we don't instantiate the template
1002 levels separately, so there's no TEMPLATE_DECL available for this
1003 (there's only `Outer<T>::Inner<U>').
1004
1005 In order to get the substitutions right, we create a special
1006 TREE_LIST to represent the substitution candidate for a nested
1007 template. The TREE_PURPOSE is the template's context, fully
1008 instantiated, and the TREE_VALUE is the TEMPLATE_DECL for the inner
1009 template.
1010
1011 So, for the example above, `Outer<int>::Inner' is represented as a
1012 substitution candidate by a TREE_LIST whose purpose is `Outer<int>'
1013 and whose value is `Outer<T>::Inner<U>'. */
1014 if (TYPE_P (context))
be93747e 1015 substitution = build_tree_list (context, templ);
459c43ad 1016 else
be93747e 1017 substitution = templ;
1f6e1acc
AS
1018
1019 if (find_substitution (substitution))
1020 return;
1021
6397d80b 1022 /* In G++ 3.2, the name of the template template parameter was used. */
be93747e 1023 if (TREE_CODE (TREE_TYPE (templ)) == TEMPLATE_TEMPLATE_PARM
6397d80b
MM
1024 && !abi_version_at_least (2))
1025 G.need_abi_warning = true;
1026
be93747e 1027 if (TREE_CODE (TREE_TYPE (templ)) == TEMPLATE_TEMPLATE_PARM
6397d80b 1028 && abi_version_at_least (2))
be93747e 1029 write_template_param (TREE_TYPE (templ));
6397d80b
MM
1030 else
1031 {
1032 write_prefix (context);
1033 write_unqualified_name (decl);
1034 }
1f6e1acc
AS
1035
1036 add_substitution (substitution);
1037}
1038
1f6e1acc 1039/* We don't need to handle thunks, vtables, or VTTs here. Those are
c8094d83 1040 mangled through special entry points.
1f6e1acc
AS
1041
1042 <unqualified-name> ::= <operator-name>
c8094d83 1043 ::= <special-name>
a2aa65f0
GK
1044 ::= <source-name>
1045 ::= <local-source-name>
1046
1047 <local-source-name> ::= L <source-name> <discriminator> */
1f6e1acc
AS
1048
1049static void
89aec4b1 1050write_unqualified_name (const tree decl)
1f6e1acc
AS
1051{
1052 MANGLE_TRACE_TREE ("unqualified-name", decl);
1053
1054 if (DECL_LANG_SPECIFIC (decl) != NULL && DECL_CONSTRUCTOR_P (decl))
1055 write_special_name_constructor (decl);
1056 else if (DECL_LANG_SPECIFIC (decl) != NULL && DECL_DESTRUCTOR_P (decl))
1057 write_special_name_destructor (decl);
ed36980c 1058 else if (DECL_NAME (decl) == NULL_TREE)
b87d79e6
JM
1059 {
1060 gcc_assert (DECL_ASSEMBLER_NAME_SET_P (decl));
1061 write_source_name (DECL_ASSEMBLER_NAME (decl));
1062 }
c8094d83 1063 else if (DECL_CONV_FN_P (decl))
1f6e1acc 1064 {
c8094d83 1065 /* Conversion operator. Handle it right here.
0cbd7506 1066 <operator> ::= cv <type> */
83b14b88
JM
1067 tree type;
1068 if (decl_is_template_id (decl, NULL))
1069 {
bb5ecf29 1070 tree fn_type;
bb5ecf29 1071 fn_type = get_mostly_instantiated_function_type (decl);
83b14b88
JM
1072 type = TREE_TYPE (fn_type);
1073 }
1074 else
ca90f3e1 1075 type = DECL_CONV_FN_TYPE (decl);
3fa3c4bd 1076 write_conversion_operator_name (type);
1f6e1acc
AS
1077 }
1078 else if (DECL_OVERLOADED_OPERATOR_P (decl))
1079 {
1080 operator_name_info_t *oni;
1081 if (DECL_ASSIGNMENT_OPERATOR_P (decl))
1082 oni = assignment_operator_name_info;
1083 else
1084 oni = operator_name_info;
c8094d83 1085
1f6e1acc
AS
1086 write_string (oni[DECL_OVERLOADED_OPERATOR_P (decl)].mangled_name);
1087 }
a2aa65f0
GK
1088 else if (VAR_OR_FUNCTION_DECL_P (decl) && ! TREE_PUBLIC (decl)
1089 && DECL_NAMESPACE_SCOPE_P (decl)
1090 && decl_linkage (decl) == lk_internal)
1091 {
1092 MANGLE_TRACE_TREE ("local-source-name", decl);
1093 write_char ('L');
1094 write_source_name (DECL_NAME (decl));
1095 /* The default discriminator is 1, and that's all we ever use,
1096 so there's no code to output one here. */
1097 }
1f6e1acc
AS
1098 else
1099 write_source_name (DECL_NAME (decl));
1100}
1101
3fa3c4bd
MM
1102/* Write the unqualified-name for a conversion operator to TYPE. */
1103
1104static void
89aec4b1 1105write_conversion_operator_name (const tree type)
3fa3c4bd
MM
1106{
1107 write_string ("cv");
1108 write_type (type);
1109}
1110
c8094d83 1111/* Non-terminal <source-name>. IDENTIFIER is an IDENTIFIER_NODE.
1f6e1acc
AS
1112
1113 <source-name> ::= </length/ number> <identifier> */
1114
1115static void
89aec4b1 1116write_source_name (tree identifier)
1f6e1acc
AS
1117{
1118 MANGLE_TRACE_TREE ("source-name", identifier);
1119
1120 /* Never write the whole template-id name including the template
1121 arguments; we only want the template name. */
1122 if (IDENTIFIER_TEMPLATE (identifier))
1123 identifier = IDENTIFIER_TEMPLATE (identifier);
1124
82a362d0 1125 write_unsigned_number (IDENTIFIER_LENGTH (identifier));
1f6e1acc
AS
1126 write_identifier (IDENTIFIER_POINTER (identifier));
1127}
1128
0576ec13
NS
1129/* Convert NUMBER to ascii using base BASE and generating at least
1130 MIN_DIGITS characters. BUFFER points to the _end_ of the buffer
1131 into which to store the characters. Returns the number of
1132 characters generated (these will be layed out in advance of where
1133 BUFFER points). */
1134
1135static int
89aec4b1
NN
1136hwint_to_ascii (unsigned HOST_WIDE_INT number, const unsigned int base,
1137 char *buffer, const unsigned int min_digits)
0576ec13
NS
1138{
1139 static const char base_digits[] = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
1140 unsigned digits = 0;
c8094d83 1141
0576ec13
NS
1142 while (number)
1143 {
1144 unsigned HOST_WIDE_INT d = number / base;
c8094d83 1145
0576ec13
NS
1146 *--buffer = base_digits[number - d * base];
1147 digits++;
1148 number = d;
1149 }
1150 while (digits < min_digits)
1151 {
1152 *--buffer = base_digits[0];
1153 digits++;
1154 }
1155 return digits;
1156}
1157
1f6e1acc
AS
1158/* Non-terminal <number>.
1159
1160 <number> ::= [n] </decimal integer/> */
1161
1162static void
89aec4b1
NN
1163write_number (unsigned HOST_WIDE_INT number, const int unsigned_p,
1164 const unsigned int base)
1f6e1acc 1165{
0576ec13
NS
1166 char buffer[sizeof (HOST_WIDE_INT) * 8];
1167 unsigned count = 0;
1f6e1acc 1168
82a362d0 1169 if (!unsigned_p && (HOST_WIDE_INT) number < 0)
1f6e1acc
AS
1170 {
1171 write_char ('n');
82a362d0 1172 number = -((HOST_WIDE_INT) number);
1f6e1acc 1173 }
0576ec13
NS
1174 count = hwint_to_ascii (number, base, buffer + sizeof (buffer), 1);
1175 write_chars (buffer + sizeof (buffer) - count, count);
1f6e1acc
AS
1176}
1177
0576ec13
NS
1178/* Write out an integral CST in decimal. Most numbers are small, and
1179 representable in a HOST_WIDE_INT. Occasionally we'll have numbers
c6002625 1180 bigger than that, which we must deal with. */
1f6e1acc
AS
1181
1182static inline void
89aec4b1 1183write_integer_cst (const tree cst)
1f6e1acc 1184{
0576ec13
NS
1185 int sign = tree_int_cst_sgn (cst);
1186
1187 if (TREE_INT_CST_HIGH (cst) + (sign < 0))
82a362d0 1188 {
0576ec13 1189 /* A bignum. We do this in chunks, each of which fits in a
c6002625 1190 HOST_WIDE_INT. */
0576ec13
NS
1191 char buffer[sizeof (HOST_WIDE_INT) * 8 * 2];
1192 unsigned HOST_WIDE_INT chunk;
1193 unsigned chunk_digits;
1194 char *ptr = buffer + sizeof (buffer);
1195 unsigned count = 0;
1196 tree n, base, type;
1197 int done;
1198
1199 /* HOST_WIDE_INT must be at least 32 bits, so 10^9 is
c6002625 1200 representable. */
0576ec13
NS
1201 chunk = 1000000000;
1202 chunk_digits = 9;
c8094d83 1203
0576ec13
NS
1204 if (sizeof (HOST_WIDE_INT) >= 8)
1205 {
c6002625 1206 /* It is at least 64 bits, so 10^18 is representable. */
0576ec13
NS
1207 chunk_digits = 18;
1208 chunk *= chunk;
1209 }
c8094d83 1210
ceef8ce4 1211 type = c_common_signed_or_unsigned_type (1, TREE_TYPE (cst));
7d60be94
NS
1212 base = build_int_cstu (type, chunk);
1213 n = build_int_cst_wide (type,
1214 TREE_INT_CST_LOW (cst), TREE_INT_CST_HIGH (cst));
0576ec13
NS
1215
1216 if (sign < 0)
1217 {
1218 write_char ('n');
7866705a 1219 n = fold_build1 (NEGATE_EXPR, type, n);
0576ec13
NS
1220 }
1221 do
1222 {
7866705a
SB
1223 tree d = fold_build2 (FLOOR_DIV_EXPR, type, n, base);
1224 tree tmp = fold_build2 (MULT_EXPR, type, d, base);
0576ec13 1225 unsigned c;
89aec4b1 1226
0576ec13 1227 done = integer_zerop (d);
7866705a 1228 tmp = fold_build2 (MINUS_EXPR, type, n, tmp);
0576ec13 1229 c = hwint_to_ascii (TREE_INT_CST_LOW (tmp), 10, ptr,
f293ce4b 1230 done ? 1 : chunk_digits);
0576ec13
NS
1231 ptr -= c;
1232 count += c;
1233 n = d;
1234 }
1235 while (!done);
1236 write_chars (ptr, count);
1237 }
c8094d83 1238 else
0576ec13
NS
1239 {
1240 /* A small num. */
1241 unsigned HOST_WIDE_INT low = TREE_INT_CST_LOW (cst);
c8094d83 1242
0576ec13
NS
1243 if (sign < 0)
1244 {
1245 write_char ('n');
1246 low = -low;
1247 }
1248 write_unsigned_number (low);
82a362d0 1249 }
1f6e1acc
AS
1250}
1251
c8094d83
MS
1252/* Write out a floating-point literal.
1253
94d3ea58
ZW
1254 "Floating-point literals are encoded using the bit pattern of the
1255 target processor's internal representation of that number, as a
1256 fixed-length lowercase hexadecimal string, high-order bytes first
1257 (even if the target processor would store low-order bytes first).
1258 The "n" prefix is not used for floating-point literals; the sign
1259 bit is encoded with the rest of the number.
1260
1261 Here are some examples, assuming the IEEE standard representation
1262 for floating point numbers. (Spaces are for readability, not
1263 part of the encoding.)
1264
0cbd7506
MS
1265 1.0f Lf 3f80 0000 E
1266 -1.0f Lf bf80 0000 E
1267 1.17549435e-38f Lf 0080 0000 E
1268 1.40129846e-45f Lf 0000 0001 E
1269 0.0f Lf 0000 0000 E"
94d3ea58
ZW
1270
1271 Caller is responsible for the Lx and the E. */
1272static void
89aec4b1 1273write_real_cst (const tree value)
94d3ea58
ZW
1274{
1275 if (abi_version_at_least (2))
1276 {
1277 long target_real[4]; /* largest supported float */
1278 char buffer[9]; /* eight hex digits in a 32-bit number */
1279 int i, limit, dir;
1280
1281 tree type = TREE_TYPE (value);
1282 int words = GET_MODE_BITSIZE (TYPE_MODE (type)) / 32;
1283
1284 real_to_target (target_real, &TREE_REAL_CST (value),
1285 TYPE_MODE (type));
1286
1287 /* The value in target_real is in the target word order,
0cbd7506 1288 so we must write it out backward if that happens to be
94d3ea58
ZW
1289 little-endian. write_number cannot be used, it will
1290 produce uppercase. */
1291 if (FLOAT_WORDS_BIG_ENDIAN)
1292 i = 0, limit = words, dir = 1;
1293 else
1294 i = words - 1, limit = -1, dir = -1;
1295
1296 for (; i != limit; i += dir)
1297 {
8d5b1b67 1298 sprintf (buffer, "%08lx", (unsigned long) target_real[i]);
94d3ea58
ZW
1299 write_chars (buffer, 8);
1300 }
1301 }
1302 else
1303 {
1304 /* In G++ 3.3 and before the REAL_VALUE_TYPE was written out
1305 literally. Note that compatibility with 3.2 is impossible,
1306 because the old floating-point emulator used a different
1307 format for REAL_VALUE_TYPE. */
1308 size_t i;
1309 for (i = 0; i < sizeof (TREE_REAL_CST (value)); ++i)
c8094d83 1310 write_number (((unsigned char *) &TREE_REAL_CST (value))[i],
94d3ea58
ZW
1311 /*unsigned_p*/ 1,
1312 /*base*/ 16);
1313 G.need_abi_warning = 1;
1314 }
1315}
1316
1f6e1acc
AS
1317/* Non-terminal <identifier>.
1318
1319 <identifier> ::= </unqualified source code identifier> */
1320
1321static void
89aec4b1 1322write_identifier (const char *identifier)
1f6e1acc
AS
1323{
1324 MANGLE_TRACE ("identifier", identifier);
1325 write_string (identifier);
1326}
1327
1328/* Handle constructor productions of non-terminal <special-name>.
c8094d83 1329 CTOR is a constructor FUNCTION_DECL.
1f6e1acc
AS
1330
1331 <special-name> ::= C1 # complete object constructor
0cbd7506
MS
1332 ::= C2 # base object constructor
1333 ::= C3 # complete object allocating constructor
1f6e1acc 1334
c8094d83 1335 Currently, allocating constructors are never used.
1f6e1acc 1336
3461fba7
NS
1337 We also need to provide mangled names for the maybe-in-charge
1338 constructor, so we treat it here too. mangle_decl_string will
1339 append *INTERNAL* to that, to make sure we never emit it. */
1f6e1acc
AS
1340
1341static void
89aec4b1 1342write_special_name_constructor (const tree ctor)
1f6e1acc 1343{
8dc2b103 1344 if (DECL_BASE_CONSTRUCTOR_P (ctor))
1f6e1acc 1345 write_string ("C2");
657c130a 1346 else
8dc2b103
NS
1347 {
1348 gcc_assert (DECL_COMPLETE_CONSTRUCTOR_P (ctor)
1349 /* Even though we don't ever emit a definition of
1350 the old-style destructor, we still have to
1351 consider entities (like static variables) nested
1352 inside it. */
1353 || DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (ctor));
1354 write_string ("C1");
1355 }
1f6e1acc
AS
1356}
1357
1358/* Handle destructor productions of non-terminal <special-name>.
c8094d83 1359 DTOR is a destructor FUNCTION_DECL.
1f6e1acc
AS
1360
1361 <special-name> ::= D0 # deleting (in-charge) destructor
0cbd7506
MS
1362 ::= D1 # complete object (in-charge) destructor
1363 ::= D2 # base object (not-in-charge) destructor
1f6e1acc 1364
3461fba7
NS
1365 We also need to provide mangled names for the maybe-incharge
1366 destructor, so we treat it here too. mangle_decl_string will
1367 append *INTERNAL* to that, to make sure we never emit it. */
1f6e1acc
AS
1368
1369static void
89aec4b1 1370write_special_name_destructor (const tree dtor)
1f6e1acc
AS
1371{
1372 if (DECL_DELETING_DESTRUCTOR_P (dtor))
1373 write_string ("D0");
1f6e1acc
AS
1374 else if (DECL_BASE_DESTRUCTOR_P (dtor))
1375 write_string ("D2");
657c130a 1376 else
8dc2b103
NS
1377 {
1378 gcc_assert (DECL_COMPLETE_DESTRUCTOR_P (dtor)
1379 /* Even though we don't ever emit a definition of
0cbd7506
MS
1380 the old-style destructor, we still have to
1381 consider entities (like static variables) nested
1382 inside it. */
8dc2b103
NS
1383 || DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P (dtor));
1384 write_string ("D1");
1385 }
1f6e1acc
AS
1386}
1387
1388/* Return the discriminator for ENTITY appearing inside
1389 FUNCTION. The discriminator is the lexical ordinal of VAR among
1390 entities with the same name in the same FUNCTION. */
1391
1392static int
89aec4b1 1393discriminator_for_local_entity (tree entity)
1f6e1acc 1394{
1f6e1acc 1395 /* Assume this is the only local entity with this name. */
89aec4b1 1396 int discriminator = 0;
1f6e1acc 1397
8e4ce833
JJ
1398 if (DECL_DISCRIMINATOR_P (entity) && DECL_LANG_SPECIFIC (entity))
1399 discriminator = DECL_DISCRIMINATOR (entity);
1400 else if (TREE_CODE (entity) == TYPE_DECL)
1401 {
9267ee62 1402 int ix;
c8094d83 1403
8e4ce833
JJ
1404 /* Scan the list of local classes. */
1405 entity = TREE_TYPE (entity);
9267ee62
NS
1406 for (ix = 0; ; ix++)
1407 {
1408 tree type = VEC_index (tree, local_classes, ix);
1409 if (type == entity)
1410 break;
1411 if (TYPE_IDENTIFIER (type) == TYPE_IDENTIFIER (entity)
1412 && TYPE_CONTEXT (type) == TYPE_CONTEXT (entity))
1413 ++discriminator;
1414 }
c8094d83 1415 }
1f6e1acc
AS
1416
1417 return discriminator;
1418}
1419
1420/* Return the discriminator for STRING, a string literal used inside
cd0be382 1421 FUNCTION. The discriminator is the lexical ordinal of STRING among
1f6e1acc
AS
1422 string literals used in FUNCTION. */
1423
1424static int
5671bf27
AJ
1425discriminator_for_string_literal (tree function ATTRIBUTE_UNUSED,
1426 tree string ATTRIBUTE_UNUSED)
1f6e1acc
AS
1427{
1428 /* For now, we don't discriminate amongst string literals. */
1429 return 0;
1430}
1431
c8094d83 1432/* <discriminator> := _ <number>
1f6e1acc
AS
1433
1434 The discriminator is used only for the second and later occurrences
1435 of the same name within a single function. In this case <number> is
1436 n - 2, if this is the nth occurrence, in lexical order. */
1437
1438static void
89aec4b1 1439write_discriminator (const int discriminator)
1f6e1acc 1440{
c6002625 1441 /* If discriminator is zero, don't write anything. Otherwise... */
1f6e1acc
AS
1442 if (discriminator > 0)
1443 {
1444 write_char ('_');
f1a0345c 1445 write_unsigned_number (discriminator - 1);
1f6e1acc
AS
1446 }
1447}
1448
1449/* Mangle the name of a function-scope entity. FUNCTION is the
1450 FUNCTION_DECL for the enclosing function. ENTITY is the decl for
f0f33848
AS
1451 the entity itself. LOCAL_ENTITY is the entity that's directly
1452 scoped in FUNCTION_DECL, either ENTITY itself or an enclosing scope
1453 of ENTITY.
1f6e1acc
AS
1454
1455 <local-name> := Z <function encoding> E <entity name> [<discriminator>]
0cbd7506 1456 := Z <function encoding> E s [<discriminator>] */
1f6e1acc
AS
1457
1458static void
89aec4b1
NN
1459write_local_name (const tree function, const tree local_entity,
1460 const tree entity)
1f6e1acc
AS
1461{
1462 MANGLE_TRACE_TREE ("local-name", entity);
1463
1464 write_char ('Z');
1465 write_encoding (function);
1466 write_char ('E');
1467 if (TREE_CODE (entity) == STRING_CST)
1468 {
1469 write_char ('s');
c8094d83 1470 write_discriminator (discriminator_for_string_literal (function,
1f6e1acc
AS
1471 entity));
1472 }
1473 else
1474 {
f0f33848
AS
1475 /* Now the <entity name>. Let write_name know its being called
1476 from <local-name>, so it doesn't try to process the enclosing
1477 function scope again. */
1478 write_name (entity, /*ignore_local_scope=*/1);
1479 write_discriminator (discriminator_for_local_entity (local_entity));
1f6e1acc
AS
1480 }
1481}
1482
c8094d83 1483/* Non-terminals <type> and <CV-qualifier>.
1f6e1acc
AS
1484
1485 <type> ::= <builtin-type>
0cbd7506
MS
1486 ::= <function-type>
1487 ::= <class-enum-type>
1488 ::= <array-type>
1489 ::= <pointer-to-member-type>
1490 ::= <template-param>
1491 ::= <substitution>
1492 ::= <CV-qualifier>
1493 ::= P <type> # pointer-to
1494 ::= R <type> # reference-to
1495 ::= C <type> # complex pair (C 2000)
1496 ::= G <type> # imaginary (C 2000) [not supported]
1497 ::= U <source-name> <type> # vendor extended type qualifier
1f6e1acc 1498
8af2fec4
RY
1499 C++0x extensions
1500
1501 <type> ::= RR <type> # rvalue reference-to
3ad6a8e1
DG
1502 <type> ::= Dt <expression> # decltype of an id-expression or
1503 # class member access
1504 <type> ::= DT <expression> # decltype of an expression
8af2fec4 1505
1f6e1acc
AS
1506 TYPE is a type node. */
1507
c8094d83 1508static void
89aec4b1 1509write_type (tree type)
1f6e1acc 1510{
838dfd8a 1511 /* This gets set to nonzero if TYPE turns out to be a (possibly
1f6e1acc
AS
1512 CV-qualified) builtin type. */
1513 int is_builtin_type = 0;
1514
1515 MANGLE_TRACE_TREE ("type", type);
1516
04f3dc2b
MM
1517 if (type == error_mark_node)
1518 return;
1519
1f6e1acc
AS
1520 if (find_substitution (type))
1521 return;
c8094d83 1522
1f6e1acc
AS
1523 if (write_CV_qualifiers_for_type (type) > 0)
1524 /* If TYPE was CV-qualified, we just wrote the qualifiers; now
1525 mangle the unqualified type. The recursive call is needed here
34cd5ae7 1526 since both the qualified and unqualified types are substitution
1f6e1acc
AS
1527 candidates. */
1528 write_type (TYPE_MAIN_VARIANT (type));
b970a21d
MM
1529 else if (TREE_CODE (type) == ARRAY_TYPE)
1530 /* It is important not to use the TYPE_MAIN_VARIANT of TYPE here
1531 so that the cv-qualification of the element type is available
1532 in write_array_type. */
1533 write_array_type (type);
1f6e1acc 1534 else
82a362d0 1535 {
608063c3
JB
1536 tree type_orig = type;
1537
82a362d0
CS
1538 /* See through any typedefs. */
1539 type = TYPE_MAIN_VARIANT (type);
1540
8d245821
MM
1541 if (TYPE_PTRMEM_P (type))
1542 write_pointer_to_member_type (type);
608063c3
JB
1543 else
1544 {
f18eca82
ZL
1545 /* Handle any target-specific fundamental types. */
1546 const char *target_mangling
608063c3 1547 = targetm.mangle_type (type_orig);
f18eca82
ZL
1548
1549 if (target_mangling)
1550 {
1551 write_string (target_mangling);
1552 return;
1553 }
1554
608063c3
JB
1555 switch (TREE_CODE (type))
1556 {
1557 case VOID_TYPE:
1558 case BOOLEAN_TYPE:
1559 case INTEGER_TYPE: /* Includes wchar_t. */
1560 case REAL_TYPE:
1561 {
1562 /* If this is a typedef, TYPE may not be one of
1563 the standard builtin type nodes, but an alias of one. Use
1564 TYPE_MAIN_VARIANT to get to the underlying builtin type. */
1565 write_builtin_type (TYPE_MAIN_VARIANT (type));
1566 ++is_builtin_type;
1567 }
1568 break;
1569
1570 case COMPLEX_TYPE:
1571 write_char ('C');
1572 write_type (TREE_TYPE (type));
1573 break;
1574
1575 case FUNCTION_TYPE:
1576 case METHOD_TYPE:
1577 write_function_type (type);
1578 break;
1579
1580 case UNION_TYPE:
1581 case RECORD_TYPE:
1582 case ENUMERAL_TYPE:
1583 /* A pointer-to-member function is represented as a special
1584 RECORD_TYPE, so check for this first. */
1585 if (TYPE_PTRMEMFUNC_P (type))
1586 write_pointer_to_member_type (type);
1587 else
1588 write_class_enum_type (type);
1589 break;
1590
1591 case TYPENAME_TYPE:
1592 case UNBOUND_CLASS_TEMPLATE:
1593 /* We handle TYPENAME_TYPEs and UNBOUND_CLASS_TEMPLATEs like
1594 ordinary nested names. */
1595 write_nested_name (TYPE_STUB_DECL (type));
1596 break;
1597
1598 case POINTER_TYPE:
1599 write_char ('P');
1600 write_type (TREE_TYPE (type));
1601 break;
1602
1603 case REFERENCE_TYPE:
1604 if (TYPE_REF_IS_RVALUE (type))
1ab28be5
DG
1605 write_char('O');
1606 else
1607 write_char ('R');
608063c3
JB
1608 write_type (TREE_TYPE (type));
1609 break;
1610
1611 case TEMPLATE_TYPE_PARM:
1612 case TEMPLATE_PARM_INDEX:
1613 write_template_param (type);
1614 break;
1615
1616 case TEMPLATE_TEMPLATE_PARM:
1617 write_template_template_param (type);
1618 break;
1619
1620 case BOUND_TEMPLATE_TEMPLATE_PARM:
1621 write_template_template_param (type);
1622 write_template_args
1623 (TI_ARGS (TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (type)));
1624 break;
1625
1626 case VECTOR_TYPE:
1627 write_string ("U8__vector");
1628 write_type (TREE_TYPE (type));
1629 break;
1630
1631 case TYPE_PACK_EXPANSION:
1632 write_string ("U10__variadic");
1633 write_type (PACK_EXPANSION_PATTERN (type));
1634 break;
1635
3ad6a8e1
DG
1636 case DECLTYPE_TYPE:
1637 write_char ('D');
1638 if (DECLTYPE_TYPE_ID_EXPR_OR_MEMBER_ACCESS_P (type))
1639 write_char ('t');
1640 else
1641 write_char ('T');
1642 write_expression (DECLTYPE_TYPE_EXPR (type));
1643 write_char ('E');
1644 break;
1645
231d0665
JM
1646 case TYPEOF_TYPE:
1647 sorry ("mangling typeof, use decltype instead");
1648 break;
1649
608063c3
JB
1650 default:
1651 gcc_unreachable ();
1652 }
82a362d0
CS
1653 }
1654 }
1f6e1acc
AS
1655
1656 /* Types other than builtin types are substitution candidates. */
1657 if (!is_builtin_type)
1658 add_substitution (type);
1659}
1660
1661/* Non-terminal <CV-qualifiers> for type nodes. Returns the number of
1662 CV-qualifiers written for TYPE.
1663
1664 <CV-qualifiers> ::= [r] [V] [K] */
1665
1666static int
89aec4b1 1667write_CV_qualifiers_for_type (const tree type)
1f6e1acc
AS
1668{
1669 int num_qualifiers = 0;
1670
1671 /* The order is specified by:
1672
1673 "In cases where multiple order-insensitive qualifiers are
1674 present, they should be ordered 'K' (closest to the base type),
c8094d83 1675 'V', 'r', and 'U' (farthest from the base type) ..."
b970a21d
MM
1676
1677 Note that we do not use cp_type_quals below; given "const
1678 int[3]", the "const" is emitted with the "int", not with the
1679 array. */
1f6e1acc 1680
b970a21d 1681 if (TYPE_QUALS (type) & TYPE_QUAL_RESTRICT)
1f6e1acc
AS
1682 {
1683 write_char ('r');
1684 ++num_qualifiers;
1685 }
b970a21d 1686 if (TYPE_QUALS (type) & TYPE_QUAL_VOLATILE)
1f6e1acc
AS
1687 {
1688 write_char ('V');
1689 ++num_qualifiers;
1690 }
b970a21d 1691 if (TYPE_QUALS (type) & TYPE_QUAL_CONST)
1f6e1acc
AS
1692 {
1693 write_char ('K');
1694 ++num_qualifiers;
1695 }
1696
1697 return num_qualifiers;
1698}
1699
c8094d83 1700/* Non-terminal <builtin-type>.
1f6e1acc 1701
c8094d83 1702 <builtin-type> ::= v # void
0cbd7506
MS
1703 ::= b # bool
1704 ::= w # wchar_t
1705 ::= c # char
1706 ::= a # signed char
1707 ::= h # unsigned char
1708 ::= s # short
1709 ::= t # unsigned short
1710 ::= i # int
1711 ::= j # unsigned int
1712 ::= l # long
1713 ::= m # unsigned long
1714 ::= x # long long, __int64
1715 ::= y # unsigned long long, __int64
1716 ::= n # __int128
1717 ::= o # unsigned __int128
1718 ::= f # float
1719 ::= d # double
1720 ::= e # long double, __float80
1721 ::= g # __float128 [not supported]
1722 ::= u <source-name> # vendor extended type */
1f6e1acc 1723
c8094d83 1724static void
89aec4b1 1725write_builtin_type (tree type)
1f6e1acc 1726{
0451301c
DG
1727 if (TYPE_CANONICAL (type))
1728 type = TYPE_CANONICAL (type);
1729
1f6e1acc
AS
1730 switch (TREE_CODE (type))
1731 {
1732 case VOID_TYPE:
1733 write_char ('v');
1734 break;
1735
1736 case BOOLEAN_TYPE:
1737 write_char ('b');
1738 break;
1739
1740 case INTEGER_TYPE:
b6baa67d
KVH
1741 /* TYPE may still be wchar_t, char16_t, or char32_t, since that
1742 isn't in integer_type_nodes. */
4d8a1dd6 1743 if (type == wchar_type_node)
1f6e1acc 1744 write_char ('w');
b6baa67d
KVH
1745 else if (type == char16_type_node)
1746 write_string ("u8char16_t");
1747 else if (type == char32_type_node)
1748 write_string ("u8char32_t");
792508b5 1749 else if (TYPE_FOR_JAVA (type))
23d4e4cc 1750 write_java_integer_type_codes (type);
1f6e1acc
AS
1751 else
1752 {
1753 size_t itk;
1754 /* Assume TYPE is one of the shared integer type nodes. Find
1755 it in the array of these nodes. */
c00996a3 1756 iagain:
1f6e1acc 1757 for (itk = 0; itk < itk_none; ++itk)
4d8a1dd6 1758 if (type == integer_types[itk])
1f6e1acc
AS
1759 {
1760 /* Print the corresponding single-letter code. */
1761 write_char (integer_type_codes[itk]);
1762 break;
1763 }
049e6879 1764
1f6e1acc 1765 if (itk == itk_none)
c00996a3 1766 {
b0c48229 1767 tree t = c_common_type_for_mode (TYPE_MODE (type),
8df83eae 1768 TYPE_UNSIGNED (type));
4484e9b6 1769 if (type != t)
049e6879 1770 {
4484e9b6
MO
1771 type = t;
1772 goto iagain;
049e6879 1773 }
4484e9b6
MO
1774
1775 if (TYPE_PRECISION (type) == 128)
1776 write_char (TYPE_UNSIGNED (type) ? 'o' : 'n');
56668fb0
RS
1777 else
1778 {
4484e9b6
MO
1779 /* Allow for cases where TYPE is not one of the shared
1780 integer type nodes and write a "vendor extended builtin
1781 type" with a name the form intN or uintN, respectively.
1782 Situations like this can happen if you have an
1783 __attribute__((__mode__(__SI__))) type and use exotic
62d9f2e9
RS
1784 switches like '-mint8' on AVR. Of course, this is
1785 undefined by the C++ ABI (and '-mint8' is not even
1786 Standard C conforming), but when using such special
1787 options you're pretty much in nowhere land anyway. */
4484e9b6
MO
1788 const char *prefix;
1789 char prec[11]; /* up to ten digits for an unsigned */
1790
1791 prefix = TYPE_UNSIGNED (type) ? "uint" : "int";
1792 sprintf (prec, "%u", (unsigned) TYPE_PRECISION (type));
1793 write_char ('u'); /* "vendor extended builtin type" */
1794 write_unsigned_number (strlen (prefix) + strlen (prec));
1795 write_string (prefix);
1796 write_string (prec);
56668fb0 1797 }
c00996a3 1798 }
1f6e1acc
AS
1799 }
1800 break;
1801
1802 case REAL_TYPE:
23d4e4cc
APB
1803 if (type == float_type_node
1804 || type == java_float_type_node)
1f6e1acc 1805 write_char ('f');
23d4e4cc
APB
1806 else if (type == double_type_node
1807 || type == java_double_type_node)
1f6e1acc 1808 write_char ('d');
4d8a1dd6 1809 else if (type == long_double_type_node)
1f6e1acc
AS
1810 write_char ('e');
1811 else
8dc2b103 1812 gcc_unreachable ();
1f6e1acc
AS
1813 break;
1814
1815 default:
8dc2b103 1816 gcc_unreachable ();
1f6e1acc
AS
1817 }
1818}
1819
1820/* Non-terminal <function-type>. NODE is a FUNCTION_TYPE or
94350948
MM
1821 METHOD_TYPE. The return type is mangled before the parameter
1822 types.
1f6e1acc
AS
1823
1824 <function-type> ::= F [Y] <bare-function-type> E */
1825
1826static void
89aec4b1 1827write_function_type (const tree type)
1f6e1acc
AS
1828{
1829 MANGLE_TRACE_TREE ("function-type", type);
1830
6ea868b7
JM
1831 /* For a pointer to member function, the function type may have
1832 cv-qualifiers, indicating the quals for the artificial 'this'
1833 parameter. */
1834 if (TREE_CODE (type) == METHOD_TYPE)
1835 {
1836 /* The first parameter must be a POINTER_TYPE pointing to the
1837 `this' parameter. */
1838 tree this_type = TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (type)));
1839 write_CV_qualifiers_for_type (this_type);
1840 }
1841
1f6e1acc
AS
1842 write_char ('F');
1843 /* We don't track whether or not a type is `extern "C"'. Note that
1844 you can have an `extern "C"' function that does not have
1845 `extern "C"' type, and vice versa:
1846
1847 extern "C" typedef void function_t();
1848 function_t f; // f has C++ linkage, but its type is
0cbd7506 1849 // `extern "C"'
1f6e1acc
AS
1850
1851 typedef void function_t();
1852 extern "C" function_t f; // Vice versa.
1853
1854 See [dcl.link]. */
c8094d83 1855 write_bare_function_type (type, /*include_return_type_p=*/1,
f58c04ac 1856 /*decl=*/NULL);
1f6e1acc
AS
1857 write_char ('E');
1858}
1859
f58c04ac 1860/* Non-terminal <bare-function-type>. TYPE is a FUNCTION_TYPE or
838dfd8a 1861 METHOD_TYPE. If INCLUDE_RETURN_TYPE is nonzero, the return value
f58c04ac
MM
1862 is mangled before the parameter types. If non-NULL, DECL is
1863 FUNCTION_DECL for the function whose type is being emitted.
1f6e1acc 1864
92aed1cb
TL
1865 If DECL is a member of a Java type, then a literal 'J'
1866 is output and the return type is mangled as if INCLUDE_RETURN_TYPE
1867 were nonzero.
1868
1869 <bare-function-type> ::= [J]</signature/ type>+ */
1f6e1acc
AS
1870
1871static void
89aec4b1
NN
1872write_bare_function_type (const tree type, const int include_return_type_p,
1873 const tree decl)
1f6e1acc 1874{
92aed1cb
TL
1875 int java_method_p;
1876
1f6e1acc
AS
1877 MANGLE_TRACE_TREE ("bare-function-type", type);
1878
92aed1cb
TL
1879 /* Detect Java methods and emit special encoding. */
1880 if (decl != NULL
1881 && DECL_FUNCTION_MEMBER_P (decl)
1882 && TYPE_FOR_JAVA (DECL_CONTEXT (decl))
1883 && !DECL_CONSTRUCTOR_P (decl)
1884 && !DECL_DESTRUCTOR_P (decl)
1885 && !DECL_CONV_FN_P (decl))
1886 {
1887 java_method_p = 1;
1888 write_char ('J');
1889 }
1890 else
1891 {
1892 java_method_p = 0;
1893 }
1894
1f6e1acc 1895 /* Mangle the return type, if requested. */
92aed1cb 1896 if (include_return_type_p || java_method_p)
1f6e1acc
AS
1897 write_type (TREE_TYPE (type));
1898
1899 /* Now mangle the types of the arguments. */
c8094d83 1900 write_method_parms (TYPE_ARG_TYPES (type),
f58c04ac
MM
1901 TREE_CODE (type) == METHOD_TYPE,
1902 decl);
1f6e1acc
AS
1903}
1904
1905/* Write the mangled representation of a method parameter list of
838dfd8a 1906 types given in PARM_TYPES. If METHOD_P is nonzero, the function is
f58c04ac
MM
1907 considered a non-static method, and the this parameter is omitted.
1908 If non-NULL, DECL is the FUNCTION_DECL for the function whose
1909 parameters are being emitted. */
1f6e1acc
AS
1910
1911static void
89aec4b1 1912write_method_parms (tree parm_types, const int method_p, const tree decl)
1f6e1acc 1913{
f58c04ac
MM
1914 tree first_parm_type;
1915 tree parm_decl = decl ? DECL_ARGUMENTS (decl) : NULL_TREE;
1916
1f6e1acc
AS
1917 /* Assume this parameter type list is variable-length. If it ends
1918 with a void type, then it's not. */
1919 int varargs_p = 1;
1920
1921 /* If this is a member function, skip the first arg, which is the
c8094d83 1922 this pointer.
1f6e1acc 1923 "Member functions do not encode the type of their implicit this
c8094d83
MS
1924 parameter."
1925
f58c04ac
MM
1926 Similarly, there's no need to mangle artificial parameters, like
1927 the VTT parameters for constructors and destructors. */
1f6e1acc 1928 if (method_p)
1f6e1acc 1929 {
f58c04ac
MM
1930 parm_types = TREE_CHAIN (parm_types);
1931 parm_decl = parm_decl ? TREE_CHAIN (parm_decl) : NULL_TREE;
1f6e1acc 1932
f58c04ac
MM
1933 while (parm_decl && DECL_ARTIFICIAL (parm_decl))
1934 {
1935 parm_types = TREE_CHAIN (parm_types);
1936 parm_decl = TREE_CHAIN (parm_decl);
1937 }
1938 }
1939
c8094d83
MS
1940 for (first_parm_type = parm_types;
1941 parm_types;
f58c04ac
MM
1942 parm_types = TREE_CHAIN (parm_types))
1943 {
1944 tree parm = TREE_VALUE (parm_types);
b72801e2 1945 if (parm == void_type_node)
1f6e1acc
AS
1946 {
1947 /* "Empty parameter lists, whether declared as () or
1948 conventionally as (void), are encoded with a void parameter
1949 (v)." */
f58c04ac 1950 if (parm_types == first_parm_type)
1f6e1acc
AS
1951 write_type (parm);
1952 /* If the parm list is terminated with a void type, it's
1953 fixed-length. */
1954 varargs_p = 0;
1955 /* A void type better be the last one. */
50bc768d 1956 gcc_assert (TREE_CHAIN (parm_types) == NULL);
1f6e1acc
AS
1957 }
1958 else
1959 write_type (parm);
1960 }
1961
1962 if (varargs_p)
1963 /* <builtin-type> ::= z # ellipsis */
1964 write_char ('z');
1965}
1966
1967/* <class-enum-type> ::= <name> */
1968
c8094d83 1969static void
89aec4b1 1970write_class_enum_type (const tree type)
1f6e1acc 1971{
f0f33848 1972 write_name (TYPE_NAME (type), /*ignore_local_scope=*/0);
1f6e1acc
AS
1973}
1974
1975/* Non-terminal <template-args>. ARGS is a TREE_VEC of template
1976 arguments.
1977
1978 <template-args> ::= I <template-arg>+ E */
1979
1980static void
89aec4b1 1981write_template_args (tree args)
1f6e1acc 1982{
0f30f285
NS
1983 int i;
1984 int length = TREE_VEC_LENGTH (args);
c8094d83 1985
1f6e1acc
AS
1986 MANGLE_TRACE_TREE ("template-args", args);
1987
3fa3c4bd 1988 write_char ('I');
1f6e1acc 1989
50bc768d 1990 gcc_assert (length > 0);
3fa3c4bd 1991
0f30f285 1992 if (TREE_CODE (TREE_VEC_ELT (args, 0)) == TREE_VEC)
3fa3c4bd 1993 {
0f30f285
NS
1994 /* We have nested template args. We want the innermost template
1995 argument list. */
1996 args = TREE_VEC_ELT (args, length - 1);
1997 length = TREE_VEC_LENGTH (args);
1f6e1acc 1998 }
0f30f285
NS
1999 for (i = 0; i < length; ++i)
2000 write_template_arg (TREE_VEC_ELT (args, i));
c8094d83 2001
1f6e1acc
AS
2002 write_char ('E');
2003}
2004
2005/* <expression> ::= <unary operator-name> <expression>
2006 ::= <binary operator-name> <expression> <expression>
2007 ::= <expr-primary>
2008
2009 <expr-primary> ::= <template-param>
0cbd7506
MS
2010 ::= L <type> <value number> E # literal
2011 ::= L <mangled-name> E # external name
2012 ::= sr <type> <unqualified-name>
2013 ::= sr <type> <unqualified-name> <template-args> */
1f6e1acc
AS
2014
2015static void
89aec4b1 2016write_expression (tree expr)
1f6e1acc
AS
2017{
2018 enum tree_code code;
2019
2020 code = TREE_CODE (expr);
2021
b6ab6892
GB
2022 /* Skip NOP_EXPRs. They can occur when (say) a pointer argument
2023 is converted (via qualification conversions) to another
2024 type. */
2025 while (TREE_CODE (expr) == NOP_EXPR
2026 || TREE_CODE (expr) == NON_LVALUE_EXPR)
2027 {
2028 expr = TREE_OPERAND (expr, 0);
2029 code = TREE_CODE (expr);
2030 }
2031
eff3a276
MM
2032 if (code == BASELINK)
2033 {
2034 expr = BASELINK_FUNCTIONS (expr);
2035 code = TREE_CODE (expr);
2036 }
2037
1f6e1acc
AS
2038 /* Handle pointers-to-members by making them look like expression
2039 nodes. */
2040 if (code == PTRMEM_CST)
2041 {
2042 expr = build_nt (ADDR_EXPR,
02ed62dd
MM
2043 build_qualified_name (/*type=*/NULL_TREE,
2044 PTRMEM_CST_CLASS (expr),
2045 PTRMEM_CST_MEMBER (expr),
2046 /*template_p=*/false));
1f6e1acc
AS
2047 code = TREE_CODE (expr);
2048 }
2049
c6002625 2050 /* Handle template parameters. */
c8094d83 2051 if (code == TEMPLATE_TYPE_PARM
1f6e1acc 2052 || code == TEMPLATE_TEMPLATE_PARM
a1281f45
KL
2053 || code == BOUND_TEMPLATE_TEMPLATE_PARM
2054 || code == TEMPLATE_PARM_INDEX)
1f6e1acc
AS
2055 write_template_param (expr);
2056 /* Handle literals. */
6615c446 2057 else if (TREE_CODE_CLASS (code) == tcc_constant
d3133e68 2058 || (abi_version_at_least (2) && code == CONST_DECL))
1f6e1acc
AS
2059 write_template_arg_literal (expr);
2060 else if (DECL_P (expr))
2061 {
d3133e68
MM
2062 /* G++ 3.2 incorrectly mangled non-type template arguments of
2063 enumeration type using their names. */
2064 if (code == CONST_DECL)
2065 G.need_abi_warning = 1;
1f6e1acc 2066 write_char ('L');
5fd80fbc 2067 write_mangled_name (expr, false);
1f6e1acc
AS
2068 write_char ('E');
2069 }
c8094d83 2070 else if (TREE_CODE (expr) == SIZEOF_EXPR
5d69ba1f
MM
2071 && TYPE_P (TREE_OPERAND (expr, 0)))
2072 {
2073 write_string ("st");
2074 write_type (TREE_OPERAND (expr, 0));
2075 }
3fa3c4bd
MM
2076 else if (abi_version_at_least (2) && TREE_CODE (expr) == SCOPE_REF)
2077 {
2078 tree scope = TREE_OPERAND (expr, 0);
2079 tree member = TREE_OPERAND (expr, 1);
2080
2081 /* If the MEMBER is a real declaration, then the qualifying
2082 scope was not dependent. Ideally, we would not have a
2083 SCOPE_REF in those cases, but sometimes we do. If the second
2084 argument is a DECL, then the name must not have been
2085 dependent. */
2086 if (DECL_P (member))
2087 write_expression (member);
2088 else
2089 {
2090 tree template_args;
2091
2092 write_string ("sr");
2093 write_type (scope);
2094 /* If MEMBER is a template-id, separate the template
2095 from the arguments. */
2096 if (TREE_CODE (member) == TEMPLATE_ID_EXPR)
2097 {
2098 template_args = TREE_OPERAND (member, 1);
2099 member = TREE_OPERAND (member, 0);
3fa3c4bd
MM
2100 }
2101 else
2102 template_args = NULL_TREE;
2103 /* Write out the name of the MEMBER. */
2104 if (IDENTIFIER_TYPENAME_P (member))
2105 write_conversion_operator_name (TREE_TYPE (member));
2106 else if (IDENTIFIER_OPNAME_P (member))
2107 {
2108 int i;
2109 const char *mangled_name = NULL;
2110
2111 /* Unfortunately, there is no easy way to go from the
2112 name of the operator back to the corresponding tree
2113 code. */
c0ed0531 2114 for (i = 0; i < MAX_TREE_CODES; ++i)
3fa3c4bd
MM
2115 if (operator_name_info[i].identifier == member)
2116 {
2117 /* The ABI says that we prefer binary operator
2118 names to unary operator names. */
2119 if (operator_name_info[i].arity == 2)
2120 {
2121 mangled_name = operator_name_info[i].mangled_name;
2122 break;
2123 }
2124 else if (!mangled_name)
2125 mangled_name = operator_name_info[i].mangled_name;
2126 }
2127 else if (assignment_operator_name_info[i].identifier
2128 == member)
2129 {
c8094d83 2130 mangled_name
3fa3c4bd
MM
2131 = assignment_operator_name_info[i].mangled_name;
2132 break;
2133 }
2134 write_string (mangled_name);
2135 }
2136 else
2137 write_source_name (member);
2138 /* Write out the template arguments. */
2139 if (template_args)
2140 write_template_args (template_args);
2141 }
2142 }
1f6e1acc
AS
2143 else
2144 {
2145 int i;
2146
0dc09a61
MM
2147 /* When we bind a variable or function to a non-type template
2148 argument with reference type, we create an ADDR_EXPR to show
2149 the fact that the entity's address has been taken. But, we
2150 don't actually want to output a mangling code for the `&'. */
2151 if (TREE_CODE (expr) == ADDR_EXPR
2152 && TREE_TYPE (expr)
2153 && TREE_CODE (TREE_TYPE (expr)) == REFERENCE_TYPE)
82a362d0
CS
2154 {
2155 expr = TREE_OPERAND (expr, 0);
2156 if (DECL_P (expr))
2157 {
2158 write_expression (expr);
2159 return;
2160 }
0dc09a61 2161
82a362d0
CS
2162 code = TREE_CODE (expr);
2163 }
3fa3c4bd 2164
1f6e1acc
AS
2165 /* If it wasn't any of those, recursively expand the expression. */
2166 write_string (operator_name_info[(int) code].mangled_name);
2167
873ff987 2168 switch (code)
1f6e1acc 2169 {
0cbd7506
MS
2170 case CALL_EXPR:
2171 sorry ("call_expr cannot be mangled due to a defect in the C++ ABI");
2172 break;
f8bee204 2173
873ff987
KL
2174 case CAST_EXPR:
2175 write_type (TREE_TYPE (expr));
383c9d5d
MM
2176 /* There is no way to mangle a zero-operand cast like
2177 "T()". */
2178 if (!TREE_OPERAND (expr, 0))
2179 sorry ("zero-operand casts cannot be mangled due to a defect "
2180 "in the C++ ABI");
2181 else
2182 write_expression (TREE_VALUE (TREE_OPERAND (expr, 0)));
873ff987
KL
2183 break;
2184
2185 case STATIC_CAST_EXPR:
2186 case CONST_CAST_EXPR:
2187 write_type (TREE_TYPE (expr));
2188 write_expression (TREE_OPERAND (expr, 0));
2189 break;
2190
c8094d83 2191
873ff987
KL
2192 /* Handle pointers-to-members specially. */
2193 case SCOPE_REF:
1f6e1acc
AS
2194 write_type (TREE_OPERAND (expr, 0));
2195 if (TREE_CODE (TREE_OPERAND (expr, 1)) == IDENTIFIER_NODE)
2196 write_source_name (TREE_OPERAND (expr, 1));
d17811fd
MM
2197 else if (TREE_CODE (TREE_OPERAND (expr, 1)) == TEMPLATE_ID_EXPR)
2198 {
2199 tree template_id;
2200 tree name;
2201
2202 template_id = TREE_OPERAND (expr, 1);
2203 name = TREE_OPERAND (template_id, 0);
2204 /* FIXME: What about operators? */
50bc768d 2205 gcc_assert (TREE_CODE (name) == IDENTIFIER_NODE);
d17811fd
MM
2206 write_source_name (TREE_OPERAND (template_id, 0));
2207 write_template_args (TREE_OPERAND (template_id, 1));
2208 }
1f6e1acc 2209 else
3fa3c4bd
MM
2210 {
2211 /* G++ 3.2 incorrectly put out both the "sr" code and
2212 the nested name of the qualified name. */
2213 G.need_abi_warning = 1;
2214 write_encoding (TREE_OPERAND (expr, 1));
2215 }
873ff987
KL
2216 break;
2217
2218 default:
5039610b 2219 for (i = 0; i < TREE_OPERAND_LENGTH (expr); ++i)
18fd68a8
MM
2220 {
2221 tree operand = TREE_OPERAND (expr, i);
02ed62dd 2222 /* As a GNU extension, the middle operand of a
18fd68a8
MM
2223 conditional may be omitted. Since expression
2224 manglings are supposed to represent the input token
2225 stream, there's no good way to mangle such an
2226 expression without extending the C++ ABI. */
2227 if (code == COND_EXPR && i == 1 && !operand)
2228 {
9e637a26 2229 error ("omitted middle operand to %<?:%> operand "
18fd68a8
MM
2230 "cannot be mangled");
2231 continue;
2232 }
2233 write_expression (operand);
2234 }
1f6e1acc 2235 }
1f6e1acc
AS
2236 }
2237}
2238
c8094d83 2239/* Literal subcase of non-terminal <template-arg>.
1f6e1acc
AS
2240
2241 "Literal arguments, e.g. "A<42L>", are encoded with their type
2242 and value. Negative integer values are preceded with "n"; for
2243 example, "A<-42L>" becomes "1AILln42EE". The bool value false is
94d3ea58 2244 encoded as 0, true as 1." */
1f6e1acc
AS
2245
2246static void
89aec4b1 2247write_template_arg_literal (const tree value)
1f6e1acc 2248{
1f6e1acc 2249 write_char ('L');
8dc2b103 2250 write_type (TREE_TYPE (value));
1f6e1acc 2251
8dc2b103 2252 switch (TREE_CODE (value))
1f6e1acc 2253 {
8dc2b103
NS
2254 case CONST_DECL:
2255 write_integer_cst (DECL_INITIAL (value));
2256 break;
c8094d83 2257
8dc2b103
NS
2258 case INTEGER_CST:
2259 gcc_assert (!same_type_p (TREE_TYPE (value), boolean_type_node)
2260 || integer_zerop (value) || integer_onep (value));
2261 write_integer_cst (value);
2262 break;
2263
2264 case REAL_CST:
2265 write_real_cst (value);
2266 break;
1f6e1acc 2267
8dc2b103
NS
2268 default:
2269 gcc_unreachable ();
2270 }
c8094d83 2271
1f6e1acc
AS
2272 write_char ('E');
2273}
2274
c8094d83 2275/* Non-terminal <template-arg>.
1f6e1acc 2276
0cbd7506
MS
2277 <template-arg> ::= <type> # type
2278 ::= L <type> </value/ number> E # literal
2279 ::= LZ <name> E # external name
2280 ::= X <expression> E # expression */
1f6e1acc
AS
2281
2282static void
89aec4b1 2283write_template_arg (tree node)
1f6e1acc
AS
2284{
2285 enum tree_code code = TREE_CODE (node);
2286
2287 MANGLE_TRACE_TREE ("template-arg", node);
2288
da1d7781 2289 /* A template template parameter's argument list contains TREE_LIST
78dcd41a 2290 nodes of which the value field is the actual argument. */
1f6e1acc
AS
2291 if (code == TREE_LIST)
2292 {
2293 node = TREE_VALUE (node);
2294 /* If it's a decl, deal with its type instead. */
2295 if (DECL_P (node))
2296 {
2297 node = TREE_TYPE (node);
2298 code = TREE_CODE (node);
2299 }
2300 }
c8094d83 2301
0f30f285
NS
2302 if (TREE_CODE (node) == NOP_EXPR
2303 && TREE_CODE (TREE_TYPE (node)) == REFERENCE_TYPE)
2304 {
2305 /* Template parameters can be of reference type. To maintain
2306 internal consistency, such arguments use a conversion from
2307 address of object to reference type. */
50bc768d 2308 gcc_assert (TREE_CODE (TREE_OPERAND (node, 0)) == ADDR_EXPR);
0f30f285
NS
2309 if (abi_version_at_least (2))
2310 node = TREE_OPERAND (TREE_OPERAND (node, 0), 0);
2311 else
2312 G.need_abi_warning = 1;
2313 }
1f6e1acc 2314
5d80a306
DG
2315 if (ARGUMENT_PACK_P (node))
2316 {
2317 /* Expand the template argument pack. */
2318 tree args = ARGUMENT_PACK_ARGS (node);
2319 int i, length = TREE_VEC_LENGTH (args);
2320 for (i = 0; i < length; ++i)
2321 write_template_arg (TREE_VEC_ELT (args, i));
2322 }
2323 else if (TYPE_P (node))
1f6e1acc
AS
2324 write_type (node);
2325 else if (code == TEMPLATE_DECL)
2326 /* A template appearing as a template arg is a template template arg. */
2327 write_template_template_arg (node);
6615c446 2328 else if ((TREE_CODE_CLASS (code) == tcc_constant && code != PTRMEM_CST)
d3133e68
MM
2329 || (abi_version_at_least (2) && code == CONST_DECL))
2330 write_template_arg_literal (node);
1f6e1acc
AS
2331 else if (DECL_P (node))
2332 {
d9634d53 2333 /* Until ABI version 2, non-type template arguments of
c8094d83 2334 enumeration type were mangled using their names. */
d9634d53 2335 if (code == CONST_DECL && !abi_version_at_least (2))
d3133e68 2336 G.need_abi_warning = 1;
1f6e1acc 2337 write_char ('L');
d9634d53
MM
2338 /* Until ABI version 3, the underscore before the mangled name
2339 was incorrectly omitted. */
2340 if (!abi_version_at_least (3))
2341 {
2342 G.need_abi_warning = 1;
2343 write_char ('Z');
2344 }
2345 else
2346 write_string ("_Z");
1f6e1acc
AS
2347 write_encoding (node);
2348 write_char ('E');
2349 }
1f6e1acc
AS
2350 else
2351 {
2352 /* Template arguments may be expressions. */
2353 write_char ('X');
2354 write_expression (node);
2355 write_char ('E');
2356 }
2357}
2358
2359/* <template-template-arg>
2360 ::= <name>
2361 ::= <substitution> */
2362
8ce33230 2363static void
89aec4b1 2364write_template_template_arg (const tree decl)
1f6e1acc
AS
2365{
2366 MANGLE_TRACE_TREE ("template-template-arg", decl);
2367
2368 if (find_substitution (decl))
2369 return;
f0f33848 2370 write_name (decl, /*ignore_local_scope=*/0);
1f6e1acc
AS
2371 add_substitution (decl);
2372}
2373
2374
c8094d83 2375/* Non-terminal <array-type>. TYPE is an ARRAY_TYPE.
1f6e1acc 2376
c8094d83 2377 <array-type> ::= A [</dimension/ number>] _ </element/ type>
0cbd7506 2378 ::= A <expression> _ </element/ type>
1f6e1acc
AS
2379
2380 "Array types encode the dimension (number of elements) and the
2381 element type. For variable length arrays, the dimension (but not
2382 the '_' separator) is omitted." */
2383
89aec4b1
NN
2384static void
2385write_array_type (const tree type)
1f6e1acc
AS
2386{
2387 write_char ('A');
2388 if (TYPE_DOMAIN (type))
2389 {
2390 tree index_type;
2391 tree max;
2392
2393 index_type = TYPE_DOMAIN (type);
2394 /* The INDEX_TYPE gives the upper and lower bounds of the
2395 array. */
2396 max = TYPE_MAX_VALUE (index_type);
2397 if (TREE_CODE (max) == INTEGER_CST)
459c43ad
MM
2398 {
2399 /* The ABI specifies that we should mangle the number of
2400 elements in the array, not the largest allowed index. */
2401 max = size_binop (PLUS_EXPR, max, size_one_node);
2402 write_unsigned_number (tree_low_cst (max, 1));
2403 }
1f6e1acc 2404 else
d63b5e9f
NS
2405 {
2406 max = TREE_OPERAND (max, 0);
2407 if (!abi_version_at_least (2))
2408 {
2409 /* value_dependent_expression_p presumes nothing is
0cbd7506 2410 dependent when PROCESSING_TEMPLATE_DECL is zero. */
d63b5e9f
NS
2411 ++processing_template_decl;
2412 if (!value_dependent_expression_p (max))
2413 G.need_abi_warning = 1;
2414 --processing_template_decl;
2415 }
2416 write_expression (max);
2417 }
c8094d83 2418
1f6e1acc
AS
2419 }
2420 write_char ('_');
2421 write_type (TREE_TYPE (type));
2422}
2423
2424/* Non-terminal <pointer-to-member-type> for pointer-to-member
2425 variables. TYPE is a pointer-to-member POINTER_TYPE.
2426
2427 <pointer-to-member-type> ::= M </class/ type> </member/ type> */
2428
2429static void
89aec4b1 2430write_pointer_to_member_type (const tree type)
1f6e1acc
AS
2431{
2432 write_char ('M');
6ea868b7 2433 write_type (TYPE_PTRMEM_CLASS_TYPE (type));
1f6e1acc
AS
2434 write_type (TYPE_PTRMEM_POINTED_TO_TYPE (type));
2435}
2436
2437/* Non-terminal <template-param>. PARM is a TEMPLATE_TYPE_PARM,
a1281f45
KL
2438 TEMPLATE_TEMPLATE_PARM, BOUND_TEMPLATE_TEMPLATE_PARM or a
2439 TEMPLATE_PARM_INDEX.
1f6e1acc 2440
ee76b931 2441 <template-param> ::= T </parameter/ number> _ */
1f6e1acc
AS
2442
2443static void
89aec4b1 2444write_template_param (const tree parm)
1f6e1acc
AS
2445{
2446 int parm_index;
8c152bad
NS
2447 int parm_level;
2448 tree parm_type = NULL_TREE;
1f6e1acc
AS
2449
2450 MANGLE_TRACE_TREE ("template-parm", parm);
2451
2452 switch (TREE_CODE (parm))
2453 {
2454 case TEMPLATE_TYPE_PARM:
2455 case TEMPLATE_TEMPLATE_PARM:
a1281f45 2456 case BOUND_TEMPLATE_TEMPLATE_PARM:
1f6e1acc 2457 parm_index = TEMPLATE_TYPE_IDX (parm);
8c152bad 2458 parm_level = TEMPLATE_TYPE_LEVEL (parm);
1f6e1acc
AS
2459 break;
2460
2461 case TEMPLATE_PARM_INDEX:
2462 parm_index = TEMPLATE_PARM_IDX (parm);
8c152bad
NS
2463 parm_level = TEMPLATE_PARM_LEVEL (parm);
2464 parm_type = TREE_TYPE (TEMPLATE_PARM_DECL (parm));
1f6e1acc
AS
2465 break;
2466
2467 default:
8dc2b103 2468 gcc_unreachable ();
1f6e1acc
AS
2469 }
2470
2471 write_char ('T');
2472 /* NUMBER as it appears in the mangling is (-1)-indexed, with the
2473 earliest template param denoted by `_'. */
2474 if (parm_index > 0)
82a362d0 2475 write_unsigned_number (parm_index - 1);
1f6e1acc
AS
2476 write_char ('_');
2477}
2478
2479/* <template-template-param>
0cbd7506 2480 ::= <template-param>
1f6e1acc
AS
2481 ::= <substitution> */
2482
2483static void
89aec4b1 2484write_template_template_param (const tree parm)
1f6e1acc 2485{
be93747e 2486 tree templ = NULL_TREE;
1f6e1acc
AS
2487
2488 /* PARM, a TEMPLATE_TEMPLATE_PARM, is an instantiation of the
2489 template template parameter. The substitution candidate here is
2490 only the template. */
a1281f45 2491 if (TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
1f6e1acc 2492 {
be93747e 2493 templ
1f6e1acc 2494 = TI_TEMPLATE (TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (parm));
be93747e 2495 if (find_substitution (templ))
1f6e1acc
AS
2496 return;
2497 }
2498
2499 /* <template-param> encodes only the template parameter position,
2500 not its template arguments, which is fine here. */
2501 write_template_param (parm);
be93747e
KG
2502 if (templ)
2503 add_substitution (templ);
1f6e1acc
AS
2504}
2505
c8094d83 2506/* Non-terminal <substitution>.
1f6e1acc
AS
2507
2508 <substitution> ::= S <seq-id> _
0cbd7506 2509 ::= S_ */
1f6e1acc
AS
2510
2511static void
89aec4b1 2512write_substitution (const int seq_id)
1f6e1acc
AS
2513{
2514 MANGLE_TRACE ("substitution", "");
2515
2516 write_char ('S');
2517 if (seq_id > 0)
82a362d0 2518 write_number (seq_id - 1, /*unsigned=*/1, 36);
1f6e1acc
AS
2519 write_char ('_');
2520}
2521
6397d80b 2522/* Start mangling ENTITY. */
1f6e1acc
AS
2523
2524static inline void
dae4174e 2525start_mangling (const tree entity)
1f6e1acc 2526{
6397d80b
MM
2527 G.entity = entity;
2528 G.need_abi_warning = false;
dae4174e
TT
2529 obstack_free (&name_obstack, name_base);
2530 mangle_obstack = &name_obstack;
2531 name_base = obstack_alloc (&name_obstack, 0);
1f6e1acc
AS
2532}
2533
dae4174e
TT
2534/* Done with mangling. If WARN is true, and the name of G.entity will
2535 be mangled differently in a future version of the ABI, issue a
2536 warning. */
1f6e1acc 2537
dae4174e
TT
2538static void
2539finish_mangling_internal (const bool warn)
1f6e1acc 2540{
6397d80b 2541 if (warn_abi && warn && G.need_abi_warning)
b323323f 2542 warning (OPT_Wabi, "the mangled name of %qD will change in a future "
6397d80b
MM
2543 "version of GCC",
2544 G.entity);
2545
1f6e1acc 2546 /* Clear all the substitutions. */
6e1141d7 2547 VEC_truncate (tree, G.substitutions, 0);
1f6e1acc
AS
2548
2549 /* Null-terminate the string. */
2550 write_char ('\0');
dae4174e
TT
2551}
2552
1f6e1acc 2553
dae4174e
TT
2554/* Like finish_mangling_internal, but return the mangled string. */
2555
2556static inline const char *
2557finish_mangling (const bool warn)
2558{
2559 finish_mangling_internal (warn);
2b8fe4a0 2560 return (const char *) obstack_finish (mangle_obstack);
1f6e1acc
AS
2561}
2562
dae4174e
TT
2563/* Like finish_mangling_internal, but return an identifier. */
2564
2565static tree
2566finish_mangling_get_identifier (const bool warn)
2567{
2568 finish_mangling_internal (warn);
2569 /* Don't obstack_finish here, and the next start_mangling will
2570 remove the identifier. */
2571 return get_identifier ((const char *) name_base);
2572}
2573
1f6e1acc
AS
2574/* Initialize data structures for mangling. */
2575
2576void
edaf3e03 2577init_mangle (void)
1f6e1acc 2578{
2b8fe4a0
MM
2579 gcc_obstack_init (&name_obstack);
2580 name_base = obstack_alloc (&name_obstack, 0);
6e1141d7 2581 G.substitutions = NULL;
1f6e1acc
AS
2582
2583 /* Cache these identifiers for quick comparison when checking for
2584 standard substitutions. */
2585 subst_identifiers[SUBID_ALLOCATOR] = get_identifier ("allocator");
2586 subst_identifiers[SUBID_BASIC_STRING] = get_identifier ("basic_string");
2587 subst_identifiers[SUBID_CHAR_TRAITS] = get_identifier ("char_traits");
2588 subst_identifiers[SUBID_BASIC_ISTREAM] = get_identifier ("basic_istream");
2589 subst_identifiers[SUBID_BASIC_OSTREAM] = get_identifier ("basic_ostream");
2590 subst_identifiers[SUBID_BASIC_IOSTREAM] = get_identifier ("basic_iostream");
2591}
2592
2593/* Generate the mangled name of DECL. */
2594
dae4174e 2595static tree
89aec4b1 2596mangle_decl_string (const tree decl)
1f6e1acc 2597{
dae4174e 2598 tree result;
1f6e1acc 2599
dae4174e 2600 start_mangling (decl);
1f6e1acc
AS
2601
2602 if (TREE_CODE (decl) == TYPE_DECL)
2603 write_type (TREE_TYPE (decl));
2604 else
5fd80fbc 2605 write_mangled_name (decl, true);
c8094d83 2606
dae4174e 2607 result = finish_mangling_get_identifier (/*warn=*/true);
1f6e1acc 2608 if (DEBUG_MANGLE)
dae4174e
TT
2609 fprintf (stderr, "mangle_decl_string = '%s'\n\n",
2610 IDENTIFIER_POINTER (result));
1f6e1acc
AS
2611 return result;
2612}
2613
2614/* Create an identifier for the external mangled name of DECL. */
2615
92643fea 2616void
89aec4b1 2617mangle_decl (const tree decl)
1f6e1acc 2618{
dae4174e 2619 tree id = mangle_decl_string (decl);
5234b8f5
DS
2620 id = targetm.mangle_decl_assembler_name (decl, id);
2621 SET_DECL_ASSEMBLER_NAME (decl, id);
1f6e1acc
AS
2622}
2623
2624/* Generate the mangled representation of TYPE. */
2625
2626const char *
89aec4b1 2627mangle_type_string (const tree type)
1f6e1acc
AS
2628{
2629 const char *result;
2630
dae4174e 2631 start_mangling (type);
1f6e1acc 2632 write_type (type);
6397d80b 2633 result = finish_mangling (/*warn=*/false);
1f6e1acc
AS
2634 if (DEBUG_MANGLE)
2635 fprintf (stderr, "mangle_type_string = '%s'\n\n", result);
2636 return result;
2637}
2638
1f6e1acc
AS
2639/* Create an identifier for the mangled name of a special component
2640 for belonging to TYPE. CODE is the ABI-specified code for this
2641 component. */
2642
2643static tree
89aec4b1 2644mangle_special_for_type (const tree type, const char *code)
1f6e1acc 2645{
dae4174e 2646 tree result;
1f6e1acc
AS
2647
2648 /* We don't have an actual decl here for the special component, so
2649 we can't just process the <encoded-name>. Instead, fake it. */
dae4174e 2650 start_mangling (type);
1f6e1acc
AS
2651
2652 /* Start the mangling. */
2653 write_string ("_Z");
2654 write_string (code);
2655
2656 /* Add the type. */
2657 write_type (type);
dae4174e 2658 result = finish_mangling_get_identifier (/*warn=*/false);
1f6e1acc
AS
2659
2660 if (DEBUG_MANGLE)
dae4174e
TT
2661 fprintf (stderr, "mangle_special_for_type = %s\n\n",
2662 IDENTIFIER_POINTER (result));
1f6e1acc 2663
dae4174e 2664 return result;
1f6e1acc
AS
2665}
2666
2667/* Create an identifier for the mangled representation of the typeinfo
2668 structure for TYPE. */
2669
2670tree
89aec4b1 2671mangle_typeinfo_for_type (const tree type)
1f6e1acc
AS
2672{
2673 return mangle_special_for_type (type, "TI");
2674}
2675
2676/* Create an identifier for the mangled name of the NTBS containing
2677 the mangled name of TYPE. */
2678
2679tree
89aec4b1 2680mangle_typeinfo_string_for_type (const tree type)
1f6e1acc
AS
2681{
2682 return mangle_special_for_type (type, "TS");
2683}
2684
2685/* Create an identifier for the mangled name of the vtable for TYPE. */
2686
2687tree
89aec4b1 2688mangle_vtbl_for_type (const tree type)
1f6e1acc
AS
2689{
2690 return mangle_special_for_type (type, "TV");
2691}
2692
2693/* Returns an identifier for the mangled name of the VTT for TYPE. */
2694
2695tree
89aec4b1 2696mangle_vtt_for_type (const tree type)
1f6e1acc
AS
2697{
2698 return mangle_special_for_type (type, "TT");
2699}
2700
2701/* Return an identifier for a construction vtable group. TYPE is
2702 the most derived class in the hierarchy; BINFO is the base
c8094d83 2703 subobject for which this construction vtable group will be used.
1f6e1acc
AS
2704
2705 This mangling isn't part of the ABI specification; in the ABI
2706 specification, the vtable group is dumped in the same COMDAT as the
2707 main vtable, and is referenced only from that vtable, so it doesn't
2708 need an external name. For binary formats without COMDAT sections,
c8094d83 2709 though, we need external names for the vtable groups.
1f6e1acc
AS
2710
2711 We use the production
2712
2713 <special-name> ::= CT <type> <offset number> _ <base type> */
2714
2715tree
89aec4b1 2716mangle_ctor_vtbl_for_type (const tree type, const tree binfo)
1f6e1acc 2717{
dae4174e 2718 tree result;
1f6e1acc 2719
dae4174e 2720 start_mangling (type);
1f6e1acc
AS
2721
2722 write_string ("_Z");
2723 write_string ("TC");
2724 write_type (type);
2725 write_integer_cst (BINFO_OFFSET (binfo));
2726 write_char ('_');
2727 write_type (BINFO_TYPE (binfo));
2728
dae4174e 2729 result = finish_mangling_get_identifier (/*warn=*/false);
1f6e1acc 2730 if (DEBUG_MANGLE)
dae4174e
TT
2731 fprintf (stderr, "mangle_ctor_vtbl_for_type = %s\n\n",
2732 IDENTIFIER_POINTER (result));
2733 return result;
1f6e1acc
AS
2734}
2735
4977bab6 2736/* Mangle a this pointer or result pointer adjustment.
c8094d83 2737
4977bab6
ZW
2738 <call-offset> ::= h <fixed offset number> _
2739 ::= v <fixed offset number> _ <virtual offset number> _ */
c8094d83 2740
4977bab6 2741static void
89aec4b1 2742mangle_call_offset (const tree fixed_offset, const tree virtual_offset)
4977bab6 2743{
07fa4878 2744 write_char (virtual_offset ? 'v' : 'h');
1f6e1acc 2745
4977bab6
ZW
2746 /* For either flavor, write the fixed offset. */
2747 write_integer_cst (fixed_offset);
2748 write_char ('_');
2749
2750 /* For a virtual thunk, add the virtual offset. */
2751 if (virtual_offset)
2752 {
2753 write_integer_cst (virtual_offset);
2754 write_char ('_');
2755 }
2756}
2757
2758/* Return an identifier for the mangled name of a this-adjusting or
2759 covariant thunk to FN_DECL. FIXED_OFFSET is the initial adjustment
2760 to this used to find the vptr. If VIRTUAL_OFFSET is non-NULL, this
2761 is a virtual thunk, and it is the vtbl offset in
4de8668e 2762 bytes. THIS_ADJUSTING is nonzero for a this adjusting thunk and
4977bab6
ZW
2763 zero for a covariant thunk. Note, that FN_DECL might be a covariant
2764 thunk itself. A covariant thunk name always includes the adjustment
2765 for the this pointer, even if there is none.
2766
2767 <special-name> ::= T <call-offset> <base encoding>
0cbd7506 2768 ::= Tc <this_adjust call-offset> <result_adjust call-offset>
3db45ab5 2769 <base encoding> */
1f6e1acc
AS
2770
2771tree
89aec4b1
NN
2772mangle_thunk (tree fn_decl, const int this_adjusting, tree fixed_offset,
2773 tree virtual_offset)
1f6e1acc 2774{
dae4174e 2775 tree result;
c8094d83 2776
dae4174e 2777 start_mangling (fn_decl);
1f6e1acc
AS
2778
2779 write_string ("_Z");
1f6e1acc 2780 write_char ('T');
c8094d83 2781
07fa4878 2782 if (!this_adjusting)
4977bab6
ZW
2783 {
2784 /* Covariant thunk with no this adjustment */
2785 write_char ('c');
2786 mangle_call_offset (integer_zero_node, NULL_TREE);
2787 mangle_call_offset (fixed_offset, virtual_offset);
2788 }
07fa4878
NS
2789 else if (!DECL_THUNK_P (fn_decl))
2790 /* Plain this adjusting thunk. */
2791 mangle_call_offset (fixed_offset, virtual_offset);
1f6e1acc 2792 else
1f6e1acc 2793 {
4977bab6
ZW
2794 /* This adjusting thunk to covariant thunk. */
2795 write_char ('c');
2796 mangle_call_offset (fixed_offset, virtual_offset);
07fa4878
NS
2797 fixed_offset = ssize_int (THUNK_FIXED_OFFSET (fn_decl));
2798 virtual_offset = THUNK_VIRTUAL_OFFSET (fn_decl);
2799 if (virtual_offset)
2800 virtual_offset = BINFO_VPTR_FIELD (virtual_offset);
2801 mangle_call_offset (fixed_offset, virtual_offset);
2802 fn_decl = THUNK_TARGET (fn_decl);
1f6e1acc
AS
2803 }
2804
2805 /* Scoped name. */
2806 write_encoding (fn_decl);
2807
dae4174e 2808 result = finish_mangling_get_identifier (/*warn=*/false);
1f6e1acc 2809 if (DEBUG_MANGLE)
dae4174e
TT
2810 fprintf (stderr, "mangle_thunk = %s\n\n", IDENTIFIER_POINTER (result));
2811 return result;
1f6e1acc
AS
2812}
2813
ca90f3e1 2814/* This hash table maps TYPEs to the IDENTIFIER for a conversion
c1eb7f5c
NS
2815 operator to TYPE. The nodes are IDENTIFIERs whose TREE_TYPE is the
2816 TYPE. */
ca90f3e1
MM
2817
2818static GTY ((param_is (union tree_node))) htab_t conv_type_names;
2819
2820/* Hash a node (VAL1) in the table. */
2821
2822static hashval_t
2823hash_type (const void *val)
2824{
741ac903 2825 return (hashval_t) TYPE_UID (TREE_TYPE ((const_tree) val));
ca90f3e1
MM
2826}
2827
2828/* Compare VAL1 (a node in the table) with VAL2 (a TYPE). */
2829
2830static int
2831compare_type (const void *val1, const void *val2)
2832{
741ac903 2833 return TREE_TYPE ((const_tree) val1) == (const_tree) val2;
ca90f3e1
MM
2834}
2835
1f6e1acc
AS
2836/* Return an identifier for the mangled unqualified name for a
2837 conversion operator to TYPE. This mangling is not specified by the
6e1b44bc 2838 ABI spec; it is only used internally. */
1f6e1acc
AS
2839
2840tree
89aec4b1 2841mangle_conv_op_name_for_type (const tree type)
1f6e1acc 2842{
ca90f3e1 2843 void **slot;
1f6e1acc
AS
2844 tree identifier;
2845
0fdc23b9
LM
2846 if (type == error_mark_node)
2847 return error_mark_node;
2848
c8094d83 2849 if (conv_type_names == NULL)
ca90f3e1
MM
2850 conv_type_names = htab_create_ggc (31, &hash_type, &compare_type, NULL);
2851
c8094d83 2852 slot = htab_find_slot_with_hash (conv_type_names, type,
c1eb7f5c
NS
2853 (hashval_t) TYPE_UID (type), INSERT);
2854 identifier = (tree)*slot;
2855 if (!identifier)
2856 {
2857 char buffer[64];
c8094d83 2858
c1eb7f5c
NS
2859 /* Create a unique name corresponding to TYPE. */
2860 sprintf (buffer, "operator %lu",
2861 (unsigned long) htab_elements (conv_type_names));
2862 identifier = get_identifier (buffer);
2863 *slot = identifier;
2864
2865 /* Hang TYPE off the identifier so it can be found easily later
2866 when performing conversions. */
2867 TREE_TYPE (identifier) = type;
2868
2869 /* Set bits on the identifier so we know later it's a conversion. */
2870 IDENTIFIER_OPNAME_P (identifier) = 1;
2871 IDENTIFIER_TYPENAME_P (identifier) = 1;
2872 }
c8094d83 2873
1f6e1acc
AS
2874 return identifier;
2875}
2876
2877/* Return an identifier for the name of an initialization guard
2878 variable for indicated VARIABLE. */
2879
2880tree
89aec4b1 2881mangle_guard_variable (const tree variable)
1f6e1acc 2882{
dae4174e 2883 start_mangling (variable);
1f6e1acc 2884 write_string ("_ZGV");
08ac397c
JM
2885 if (strncmp (IDENTIFIER_POINTER (DECL_NAME (variable)), "_ZGR", 4) == 0)
2886 /* The name of a guard variable for a reference temporary should refer
2887 to the reference, not the temporary. */
2888 write_string (IDENTIFIER_POINTER (DECL_NAME (variable)) + 4);
2889 else
2890 write_name (variable, /*ignore_local_scope=*/0);
dae4174e 2891 return finish_mangling_get_identifier (/*warn=*/false);
1f6e1acc 2892}
23d4e4cc 2893
08ac397c
JM
2894/* Return an identifier for the name of a temporary variable used to
2895 initialize a static reference. This isn't part of the ABI, but we might
2896 as well call them something readable. */
2897
2898tree
89aec4b1 2899mangle_ref_init_variable (const tree variable)
08ac397c 2900{
dae4174e 2901 start_mangling (variable);
08ac397c
JM
2902 write_string ("_ZGR");
2903 write_name (variable, /*ignore_local_scope=*/0);
dae4174e 2904 return finish_mangling_get_identifier (/*warn=*/false);
08ac397c 2905}
23d4e4cc
APB
2906\f
2907
2908/* Foreign language type mangling section. */
2909
2910/* How to write the type codes for the integer Java type. */
2911
2912static void
89aec4b1 2913write_java_integer_type_codes (const tree type)
23d4e4cc
APB
2914{
2915 if (type == java_int_type_node)
2916 write_char ('i');
2917 else if (type == java_short_type_node)
2918 write_char ('s');
2919 else if (type == java_byte_type_node)
2920 write_char ('c');
2921 else if (type == java_char_type_node)
2922 write_char ('w');
2923 else if (type == java_long_type_node)
2924 write_char ('x');
2925 else if (type == java_boolean_type_node)
2926 write_char ('b');
2927 else
8dc2b103 2928 gcc_unreachable ();
23d4e4cc
APB
2929}
2930
0de298af 2931#include "gt-cp-mangle.h"
This page took 2.3493 seconds and 5 git commands to generate.