OSDN Git Service

PR c++/8389
[pf3gnuchains/gcc-fork.git] / gcc / cp / mangle.c
1 /* Name mangling for the 3.0 C++ ABI.
2    Copyright (C) 2000, 2001, 2002 Free Software Foundation, Inc.
3    Written by Alex Samuel <sameul@codesourcery.com>
4
5    This file is part of GNU CC.
6
7    GNU CC is free software; you can redistribute it and/or modify it
8    under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2, or (at your option)
10    any later version.
11
12    GNU CC is distributed in the hope that it will be useful, but
13    WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15    General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with GNU CC; see the file COPYING.  If not, write to the Free
19    Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20    02111-1307, USA.  */
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
41      mangle_typeinfo_for_type:        typeinfo data
42      mangle_typeinfo_string_for_type: typeinfo type name
43      mangle_vtbl_for_type:            virtual table data
44      mangle_vtt_for_type:             VTT data
45      mangle_ctor_vtbl_for_type:       `C-in-B' constructor virtual table data
46      mangle_thunk:                    thunk function or entry
47
48 */
49
50 #include "config.h"
51 #include "system.h"
52 #include "tree.h"
53 #include "cp-tree.h"
54 #include "real.h"
55 #include "obstack.h"
56 #include "toplev.h"
57 #include "varray.h"
58
59 /* Debugging support.  */
60
61 /* Define DEBUG_MANGLE to enable very verbose trace messages.  */
62 #ifndef DEBUG_MANGLE
63 #define DEBUG_MANGLE 0
64 #endif
65
66 /* Macros for tracing the write_* functions.  */
67 #if DEBUG_MANGLE
68 # define MANGLE_TRACE(FN, INPUT) \
69   fprintf (stderr, "  %-24s: %-24s\n", (FN), (INPUT))
70 # define MANGLE_TRACE_TREE(FN, NODE) \
71   fprintf (stderr, "  %-24s: %-24s (%p)\n", \
72            (FN), tree_code_name[TREE_CODE (NODE)], (void *) (NODE))
73 #else
74 # define MANGLE_TRACE(FN, INPUT)
75 # define MANGLE_TRACE_TREE(FN, NODE)
76 #endif
77
78 /* Nonzero if NODE is a class template-id.  We can't rely on
79    CLASSTYPE_USE_TEMPLATE here because of tricky bugs in the parser
80    that hard to distinguish A<T> from A, where A<T> is the type as
81    instantiated outside of the template, and A is the type used
82    without parameters inside the template.  */
83 #define CLASSTYPE_TEMPLATE_ID_P(NODE)                                   \
84   (TYPE_LANG_SPECIFIC (NODE) != NULL                                    \
85    && (TREE_CODE (NODE) == BOUND_TEMPLATE_TEMPLATE_PARM                 \
86        || (CLASSTYPE_TEMPLATE_INFO (NODE) != NULL                       \
87            && (PRIMARY_TEMPLATE_P (CLASSTYPE_TI_TEMPLATE (NODE))))))
88
89 /* Things we only need one of.  This module is not reentrant.  */
90 static struct globals
91 {
92   /* The name in which we're building the mangled name.  */
93   struct obstack name_obstack;
94
95   /* An array of the current substitution candidates, in the order
96      we've seen them.  */
97   varray_type substitutions;
98
99   /* The entity that is being mangled.  */
100   tree entity;
101
102   /* We are mangling an internal symbol. It is important to keep those
103      involving template parmeters distinct by distinguishing their level
104      and, for non-type parms, their type.  */
105   bool internal_mangling_p;
106
107   /* True if the mangling will be different in a future version of the
108      ABI.  */
109   bool need_abi_warning;
110 } G;
111
112 /* Indices into subst_identifiers.  These are identifiers used in
113    special substitution rules.  */
114 typedef enum
115 {
116   SUBID_ALLOCATOR,
117   SUBID_BASIC_STRING,
118   SUBID_CHAR_TRAITS,
119   SUBID_BASIC_ISTREAM,
120   SUBID_BASIC_OSTREAM,
121   SUBID_BASIC_IOSTREAM,
122   SUBID_MAX
123 }
124 substitution_identifier_index_t;
125
126 /* For quick substitution checks, look up these common identifiers
127    once only.  */
128 static tree subst_identifiers[SUBID_MAX];
129
130 /* Single-letter codes for builtin integer types, defined in
131    <builtin-type>.  These are indexed by integer_type_kind values.  */
132 static const char
133 integer_type_codes[itk_none] =
134 {
135   'c',  /* itk_char */
136   'a',  /* itk_signed_char */
137   'h',  /* itk_unsigned_char */
138   's',  /* itk_short */
139   't',  /* itk_unsigned_short */
140   'i',  /* itk_int */
141   'j',  /* itk_unsigned_int */
142   'l',  /* itk_long */
143   'm',  /* itk_unsigned_long */
144   'x',  /* itk_long_long */
145   'y'   /* itk_unsigned_long_long */
146 };
147
148 static int decl_is_template_id PARAMS ((tree, tree*));
149
150 /* Functions for handling substitutions.  */
151
152 static inline tree canonicalize_for_substitution PARAMS ((tree));
153 static void add_substitution PARAMS ((tree));
154 static inline int is_std_substitution PARAMS ((tree, substitution_identifier_index_t));
155 static inline int is_std_substitution_char PARAMS ((tree, substitution_identifier_index_t));
156 static int find_substitution PARAMS ((tree));
157
158 /* Functions for emitting mangled representations of things.  */
159
160 static void write_mangled_name PARAMS ((tree));
161 static void write_encoding PARAMS ((tree));
162 static void write_name PARAMS ((tree, int));
163 static void write_unscoped_name PARAMS ((tree));
164 static void write_unscoped_template_name PARAMS ((tree));
165 static void write_nested_name PARAMS ((tree));
166 static void write_prefix PARAMS ((tree));
167 static void write_template_prefix PARAMS ((tree));
168 static void write_unqualified_name PARAMS ((tree));
169 static void write_conversion_operator_name (tree);
170 static void write_source_name PARAMS ((tree));
171 static int hwint_to_ascii PARAMS ((unsigned HOST_WIDE_INT, unsigned int, char *, unsigned));
172 static void write_number PARAMS ((unsigned HOST_WIDE_INT, int,
173                                   unsigned int));
174 static void write_integer_cst PARAMS ((tree));
175 static void write_identifier PARAMS ((const char *));
176 static void write_special_name_constructor PARAMS ((tree));
177 static void write_special_name_destructor PARAMS ((tree));
178 static void write_type PARAMS ((tree));
179 static int write_CV_qualifiers_for_type PARAMS ((tree));
180 static void write_builtin_type PARAMS ((tree));
181 static void write_function_type PARAMS ((tree));
182 static void write_bare_function_type PARAMS ((tree, int, tree));
183 static void write_method_parms PARAMS ((tree, int, tree));
184 static void write_class_enum_type PARAMS ((tree));
185 static void write_template_args PARAMS ((tree));
186 static void write_expression PARAMS ((tree));
187 static void write_template_arg_literal PARAMS ((tree));
188 static void write_template_arg PARAMS ((tree));
189 static void write_template_template_arg PARAMS ((tree));
190 static void write_array_type PARAMS ((tree));
191 static void write_pointer_to_member_type PARAMS ((tree));
192 static void write_template_param PARAMS ((tree));
193 static void write_template_template_param PARAMS ((tree));
194 static void write_substitution PARAMS ((int));
195 static int discriminator_for_local_entity PARAMS ((tree));
196 static int discriminator_for_string_literal PARAMS ((tree, tree));
197 static void write_discriminator PARAMS ((int));
198 static void write_local_name PARAMS ((tree, tree, tree));
199 static void dump_substitution_candidates PARAMS ((void));
200 static const char *mangle_decl_string PARAMS ((tree));
201
202 /* Control functions.  */
203
204 static inline void start_mangling (tree);
205 static inline const char *finish_mangling (bool);
206 static tree mangle_special_for_type PARAMS ((tree, const char *));
207
208 /* Foreign language functions.  */
209
210 static void write_java_integer_type_codes PARAMS ((tree));
211
212 /* Append a single character to the end of the mangled
213    representation.  */
214 #define write_char(CHAR)                                              \
215   obstack_1grow (&G.name_obstack, (CHAR))
216
217 /* Append a sized buffer to the end of the mangled representation.  */
218 #define write_chars(CHAR, LEN)                                        \
219   obstack_grow (&G.name_obstack, (CHAR), (LEN))
220
221 /* Append a NUL-terminated string to the end of the mangled
222    representation.  */
223 #define write_string(STRING)                                          \
224   obstack_grow (&G.name_obstack, (STRING), strlen (STRING))
225
226 /* Nonzero if NODE1 and NODE2 are both TREE_LIST nodes and have the
227    same purpose (context, which may be a type) and value (template
228    decl).  See write_template_prefix for more information on what this
229    is used for.  */
230 #define NESTED_TEMPLATE_MATCH(NODE1, NODE2)                         \
231   (TREE_CODE (NODE1) == TREE_LIST                                     \
232    && TREE_CODE (NODE2) == TREE_LIST                                  \
233    && ((TYPE_P (TREE_PURPOSE (NODE1))                                 \
234         && same_type_p (TREE_PURPOSE (NODE1), TREE_PURPOSE (NODE2)))\
235        || TREE_PURPOSE (NODE1) == TREE_PURPOSE (NODE2))             \
236    && TREE_VALUE (NODE1) == TREE_VALUE (NODE2))
237
238 /* Write out an unsigned quantity in base 10.  */
239 #define write_unsigned_number(NUMBER) \
240   write_number ((NUMBER), /*unsigned_p=*/1, 10)
241
242 /* If DECL is a template instance, return nonzero and, if
243    TEMPLATE_INFO is non-NULL, set *TEMPLATE_INFO to its template info.
244    Otherwise return zero.  */
245
246 static int
247 decl_is_template_id (decl, template_info)
248      tree decl;
249      tree* template_info;
250 {
251   if (TREE_CODE (decl) == TYPE_DECL)
252     {
253       /* TYPE_DECLs are handled specially.  Look at its type to decide
254          if this is a template instantiation.  */
255       tree type = TREE_TYPE (decl);
256
257       if (CLASS_TYPE_P (type) && CLASSTYPE_TEMPLATE_ID_P (type))
258         {
259           if (template_info != NULL)
260             /* For a templated TYPE_DECL, the template info is hanging
261                off the type.  */
262             *template_info = TYPE_TEMPLATE_INFO (type);
263           return 1;
264         }
265     } 
266   else
267     {
268       /* Check if this is a primary template.  */
269       if (DECL_LANG_SPECIFIC (decl) != NULL
270           && DECL_USE_TEMPLATE (decl)
271           && PRIMARY_TEMPLATE_P (DECL_TI_TEMPLATE (decl))
272           && TREE_CODE (decl) != TEMPLATE_DECL)
273         {
274           if (template_info != NULL)
275             /* For most templated decls, the template info is hanging
276                off the decl.  */
277             *template_info = DECL_TEMPLATE_INFO (decl);
278           return 1;
279         }
280     }
281
282   /* It's not a template id.  */
283   return 0;
284 }
285
286 /* Produce debugging output of current substitution candidates.  */
287
288 static void
289 dump_substitution_candidates ()
290 {
291   unsigned i;
292
293   fprintf (stderr, "  ++ substitutions  ");
294   for (i = 0; i < VARRAY_ACTIVE_SIZE (G.substitutions); ++i)
295     {
296       tree el = VARRAY_TREE (G.substitutions, i);
297       const char *name = "???";
298
299       if (i > 0)
300         fprintf (stderr, "                    ");
301       if (DECL_P (el))
302         name = IDENTIFIER_POINTER (DECL_NAME (el));
303       else if (TREE_CODE (el) == TREE_LIST)
304         name = IDENTIFIER_POINTER (DECL_NAME (TREE_VALUE (el)));
305       else if (TYPE_NAME (el))
306         name = IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (el)));
307       fprintf (stderr, " S%d_ = ", i - 1);
308       if (TYPE_P (el) && 
309           (CP_TYPE_RESTRICT_P (el) 
310            || CP_TYPE_VOLATILE_P (el) 
311            || CP_TYPE_CONST_P (el)))
312         fprintf (stderr, "CV-");
313       fprintf (stderr, "%s (%s at %p)\n", 
314                name, tree_code_name[TREE_CODE (el)], (void *) el);
315     }
316 }
317
318 /* Both decls and types can be substitution candidates, but sometimes
319    they refer to the same thing.  For instance, a TYPE_DECL and
320    RECORD_TYPE for the same class refer to the same thing, and should
321    be treated accordinginly in substitutions.  This function returns a
322    canonicalized tree node representing NODE that is used when adding
323    and substitution candidates and finding matches.  */
324
325 static inline tree
326 canonicalize_for_substitution (node)
327      tree node;
328 {
329   /* For a TYPE_DECL, use the type instead.  */
330   if (TREE_CODE (node) == TYPE_DECL)
331     node = TREE_TYPE (node);
332   if (TYPE_P (node))
333     node = canonical_type_variant (node);
334
335   return node;
336 }
337
338 /* Add NODE as a substitution candidate.  NODE must not already be on
339    the list of candidates.  */
340
341 static void
342 add_substitution (node)
343      tree node;
344 {
345   tree c;
346
347   if (DEBUG_MANGLE)
348     fprintf (stderr, "  ++ add_substitution (%s at %10p)\n", 
349              tree_code_name[TREE_CODE (node)], (void *) node);
350
351   /* Get the canonicalized substitution candidate for NODE.  */
352   c = canonicalize_for_substitution (node);
353   if (DEBUG_MANGLE && c != node)
354     fprintf (stderr, "  ++ using candidate (%s at %10p)\n",
355              tree_code_name[TREE_CODE (node)], (void *) node);
356   node = c;
357
358 #if ENABLE_CHECKING
359   /* Make sure NODE isn't already a candidate.  */
360   {
361     int i;
362     for (i = VARRAY_ACTIVE_SIZE (G.substitutions); --i >= 0; )
363       {
364         tree candidate = VARRAY_TREE (G.substitutions, i);
365         if ((DECL_P (node) 
366              && node == candidate)
367             || (TYPE_P (node) 
368                 && TYPE_P (candidate) 
369                 && same_type_p (node, candidate)))
370           abort ();
371       }
372   }
373 #endif /* ENABLE_CHECKING */
374
375   /* Put the decl onto the varray of substitution candidates.  */
376   VARRAY_PUSH_TREE (G.substitutions, node);
377
378   if (DEBUG_MANGLE)
379     dump_substitution_candidates ();
380 }
381
382 /* Helper function for find_substitution.  Returns nonzero if NODE,
383    which may be a decl or a CLASS_TYPE, is a template-id with template
384    name of substitution_index[INDEX] in the ::std namespace.  */
385
386 static inline int 
387 is_std_substitution (node, index)
388      tree node;
389      substitution_identifier_index_t index;
390 {
391   tree type = NULL;
392   tree decl = NULL;
393
394   if (DECL_P (node))
395     {
396       type = TREE_TYPE (node);
397       decl = node;
398     }
399   else if (CLASS_TYPE_P (node))
400     {
401       type = node;
402       decl = TYPE_NAME (node);
403     }
404   else 
405     /* These are not the droids you're looking for.  */
406     return 0;
407
408   return (DECL_NAMESPACE_STD_P (CP_DECL_CONTEXT (decl))
409           && TYPE_LANG_SPECIFIC (type) 
410           && TYPE_TEMPLATE_INFO (type)
411           && (DECL_NAME (TYPE_TI_TEMPLATE (type)) 
412               == subst_identifiers[index]));
413 }
414
415 /* Helper function for find_substitution.  Returns nonzero if NODE,
416    which may be a decl or a CLASS_TYPE, is the template-id
417    ::std::identifier<char>, where identifier is
418    substitution_index[INDEX].  */
419
420 static inline int
421 is_std_substitution_char (node, index)
422      tree node;
423      substitution_identifier_index_t index;
424 {
425   tree args;
426   /* Check NODE's name is ::std::identifier.  */
427   if (!is_std_substitution (node, index))
428     return 0;
429   /* Figure out its template args.  */
430   if (DECL_P (node))
431     args = DECL_TI_ARGS (node);  
432   else if (CLASS_TYPE_P (node))
433     args = CLASSTYPE_TI_ARGS (node);
434   else
435     /* Oops, not a template.  */
436     return 0;
437   /* NODE's template arg list should be <char>.  */
438   return 
439     TREE_VEC_LENGTH (args) == 1
440     && TREE_VEC_ELT (args, 0) == char_type_node;
441 }
442
443 /* Check whether a substitution should be used to represent NODE in
444    the mangling.
445
446    First, check standard special-case substitutions.
447
448      <substitution> ::= St     
449          # ::std
450
451                     ::= Sa     
452          # ::std::allocator
453
454                     ::= Sb     
455          # ::std::basic_string
456
457                     ::= Ss 
458          # ::std::basic_string<char,
459                                ::std::char_traits<char>,
460                                ::std::allocator<char> >
461
462                     ::= Si 
463          # ::std::basic_istream<char, ::std::char_traits<char> >
464
465                     ::= So 
466          # ::std::basic_ostream<char, ::std::char_traits<char> >
467
468                     ::= Sd 
469          # ::std::basic_iostream<char, ::std::char_traits<char> >   
470
471    Then examine the stack of currently available substitution
472    candidates for entities appearing earlier in the same mangling
473
474    If a substitution is found, write its mangled representation and
475    return nonzero.  If none is found, just return zero.  */
476
477 static int
478 find_substitution (node)
479      tree node;
480 {
481   int i;
482   int size = VARRAY_ACTIVE_SIZE (G.substitutions);
483   tree decl;
484   tree type;
485
486   if (DEBUG_MANGLE)
487     fprintf (stderr, "  ++ find_substitution (%s at %p)\n",
488              tree_code_name[TREE_CODE (node)], (void *) node);
489
490   /* Obtain the canonicalized substitution representation for NODE.
491      This is what we'll compare against.  */
492   node = canonicalize_for_substitution (node);
493
494   /* Check for builtin substitutions.  */
495
496   decl = TYPE_P (node) ? TYPE_NAME (node) : node;
497   type = TYPE_P (node) ? node : TREE_TYPE (node);
498
499   /* Check for std::allocator.  */
500   if (decl 
501       && is_std_substitution (decl, SUBID_ALLOCATOR)
502       && !CLASSTYPE_USE_TEMPLATE (TREE_TYPE (decl)))
503     {
504       write_string ("Sa");
505       return 1;
506     }
507
508   /* Check for std::basic_string.  */
509   if (decl && is_std_substitution (decl, SUBID_BASIC_STRING))
510     {
511       if (TYPE_P (node))
512         {
513           /* If this is a type (i.e. a fully-qualified template-id), 
514              check for 
515                  std::basic_string <char,
516                                     std::char_traits<char>,
517                                     std::allocator<char> > .  */
518           if (cp_type_quals (type) == TYPE_UNQUALIFIED
519               && CLASSTYPE_USE_TEMPLATE (type))
520             {
521               tree args = CLASSTYPE_TI_ARGS (type);
522               if (TREE_VEC_LENGTH (args) == 3
523                   && same_type_p (TREE_VEC_ELT (args, 0), char_type_node)
524                   && is_std_substitution_char (TREE_VEC_ELT (args, 1),
525                                                SUBID_CHAR_TRAITS)
526                   && is_std_substitution_char (TREE_VEC_ELT (args, 2),
527                                                SUBID_ALLOCATOR))
528                 {
529                   write_string ("Ss");
530                   return 1;
531                 }
532             }
533         }
534       else
535         /* Substitute for the template name only if this isn't a type.  */
536         {
537           write_string ("Sb");
538           return 1;
539         }
540     }
541
542   /* Check for basic_{i,o,io}stream.  */
543   if (TYPE_P (node)
544       && cp_type_quals (type) == TYPE_UNQUALIFIED
545       && CLASS_TYPE_P (type)
546       && CLASSTYPE_USE_TEMPLATE (type)
547       && CLASSTYPE_TEMPLATE_INFO (type) != NULL)
548     {
549       /* First, check for the template 
550          args <char, std::char_traits<char> > .  */
551       tree args = CLASSTYPE_TI_ARGS (type);
552       if (TREE_VEC_LENGTH (args) == 2
553           && same_type_p (TREE_VEC_ELT (args, 0), char_type_node)
554           && is_std_substitution_char (TREE_VEC_ELT (args, 1),
555                                        SUBID_CHAR_TRAITS))
556         {
557           /* Got them.  Is this basic_istream?  */
558           tree name = DECL_NAME (CLASSTYPE_TI_TEMPLATE (type));
559           if (name == subst_identifiers[SUBID_BASIC_ISTREAM])
560             {
561               write_string ("Si");
562               return 1;
563             }
564           /* Or basic_ostream?  */
565           else if (name == subst_identifiers[SUBID_BASIC_OSTREAM])
566             {
567               write_string ("So");
568               return 1;
569             }
570           /* Or basic_iostream?  */
571           else if (name == subst_identifiers[SUBID_BASIC_IOSTREAM])
572             {
573               write_string ("Sd");
574               return 1;
575             }
576         }
577     }
578
579   /* Check for namespace std.  */
580   if (decl && DECL_NAMESPACE_STD_P (decl))
581     {
582       write_string ("St");
583       return 1;
584     }
585
586   /* Now check the list of available substitutions for this mangling
587      operation.  */
588   for (i = 0; i < size; ++i)
589     {
590       tree candidate = VARRAY_TREE (G.substitutions, i);
591       /* NODE is a matched to a candidate if it's the same decl node or
592          if it's the same type.  */
593       if (decl == candidate
594           || (TYPE_P (candidate) && type && TYPE_P (type)
595               && same_type_p (type, candidate))
596           || NESTED_TEMPLATE_MATCH (node, candidate))
597         {
598           write_substitution (i);
599           return 1;
600         }
601     }
602
603   /* No substitution found.  */
604   return 0;
605 }
606
607
608 /*  <mangled-name>      ::= _Z <encoding>  */
609
610 static inline void
611 write_mangled_name (decl)
612      tree decl;
613 {
614   MANGLE_TRACE_TREE ("mangled-name", decl);
615
616   if (DECL_LANG_SPECIFIC (decl)
617       && DECL_EXTERN_C_FUNCTION_P (decl)
618       && ! DECL_OVERLOADED_OPERATOR_P (decl))
619     /* The standard notes:
620          "The <encoding> of an extern "C" function is treated like
621          global-scope data, i.e. as its <source-name> without a type."
622        We cannot write overloaded operators that way though,
623        because it contains characters invalid in assembler.  */
624     write_source_name (DECL_NAME (decl));
625   else
626     /* C++ name; needs to be mangled.  */
627     {
628       write_string ("_Z");
629       write_encoding (decl);
630     }
631 }
632
633 /*   <encoding>         ::= <function name> <bare-function-type>
634                         ::= <data name>  */
635
636 static void
637 write_encoding (decl)
638      tree decl;
639 {
640   MANGLE_TRACE_TREE ("encoding", decl);
641
642   if (DECL_LANG_SPECIFIC (decl) && DECL_EXTERN_C_FUNCTION_P (decl))
643     {
644       /* For overloaded operators write just the mangled name
645          without arguments.  */
646       if (DECL_OVERLOADED_OPERATOR_P (decl))
647         write_name (decl, /*ignore_local_scope=*/0);
648       else
649         write_source_name (DECL_NAME (decl));
650       return;
651     }
652
653   write_name (decl, /*ignore_local_scope=*/0);
654   if (TREE_CODE (decl) == FUNCTION_DECL)
655     {
656       tree fn_type;
657
658       if (decl_is_template_id (decl, NULL))
659         fn_type = get_mostly_instantiated_function_type (decl);
660       else
661         fn_type = TREE_TYPE (decl);
662
663       write_bare_function_type (fn_type, 
664                                 (!DECL_CONSTRUCTOR_P (decl)
665                                  && !DECL_DESTRUCTOR_P (decl)
666                                  && !DECL_CONV_FN_P (decl)
667                                  && decl_is_template_id (decl, NULL)),
668                                 decl);
669     }
670 }
671
672 /* <name> ::= <unscoped-name>
673           ::= <unscoped-template-name> <template-args>
674           ::= <nested-name>
675           ::= <local-name>  
676
677    If IGNORE_LOCAL_SCOPE is nonzero, this production of <name> is
678    called from <local-name>, which mangles the enclosing scope
679    elsewhere and then uses this function to mangle just the part
680    underneath the function scope.  So don't use the <local-name>
681    production, to avoid an infinite recursion.  */
682
683 static void
684 write_name (decl, ignore_local_scope)
685      tree decl;
686      int ignore_local_scope;
687 {
688   tree context;
689
690   MANGLE_TRACE_TREE ("name", decl);
691
692   if (TREE_CODE (decl) == TYPE_DECL)
693     {
694       /* In case this is a typedef, fish out the corresponding
695          TYPE_DECL for the main variant.  */
696       decl = TYPE_NAME (TYPE_MAIN_VARIANT (TREE_TYPE (decl)));
697       context = TYPE_CONTEXT (TYPE_MAIN_VARIANT (TREE_TYPE (decl)));
698     }
699   else
700     context = (DECL_CONTEXT (decl) == NULL) ? NULL : CP_DECL_CONTEXT (decl);
701
702   /* A decl in :: or ::std scope is treated specially.  The former is
703      mangled using <unscoped-name> or <unscoped-template-name>, the
704      latter with a special substitution.  Also, a name that is
705      directly in a local function scope is also mangled with
706      <unscoped-name> rather than a full <nested-name>.  */
707   if (context == NULL 
708       || context == global_namespace 
709       || DECL_NAMESPACE_STD_P (context)
710       || (ignore_local_scope && TREE_CODE (context) == FUNCTION_DECL))
711     {
712       tree template_info;
713       /* Is this a template instance?  */
714       if (decl_is_template_id (decl, &template_info))
715         {
716           /* Yes: use <unscoped-template-name>.  */
717           write_unscoped_template_name (TI_TEMPLATE (template_info));
718           write_template_args (TI_ARGS (template_info));
719         }
720       else
721         /* Everything else gets an <unqualified-name>.  */
722         write_unscoped_name (decl);
723     }
724   else
725     {
726       /* Handle local names, unless we asked not to (that is, invoked
727          under <local-name>, to handle only the part of the name under
728          the local scope).  */
729       if (!ignore_local_scope)
730         {
731           /* Scan up the list of scope context, looking for a
732              function.  If we find one, this entity is in local
733              function scope.  local_entity tracks context one scope
734              level down, so it will contain the element that's
735              directly in that function's scope, either decl or one of
736              its enclosing scopes.  */
737           tree local_entity = decl;
738           while (context != NULL && context != global_namespace)
739             {
740               /* Make sure we're always dealing with decls.  */
741               if (context != NULL && TYPE_P (context))
742                 context = TYPE_NAME (context);
743               /* Is this a function?  */
744               if (TREE_CODE (context) == FUNCTION_DECL)
745                 {
746                   /* Yes, we have local scope.  Use the <local-name>
747                      production for the innermost function scope.  */
748                   write_local_name (context, local_entity, decl);
749                   return;
750                 }
751               /* Up one scope level.  */
752               local_entity = context;
753               context = CP_DECL_CONTEXT (context);
754             }
755
756           /* No local scope found?  Fall through to <nested-name>.  */
757         }
758
759       /* Other decls get a <nested-name> to encode their scope.  */
760       write_nested_name (decl);
761     }
762 }
763
764 /* <unscoped-name> ::= <unqualified-name>
765                    ::= St <unqualified-name>   # ::std::  */
766
767 static void
768 write_unscoped_name (decl)
769      tree decl;
770 {
771   tree context = CP_DECL_CONTEXT (decl);
772
773   MANGLE_TRACE_TREE ("unscoped-name", decl);
774
775   /* Is DECL in ::std?  */
776   if (DECL_NAMESPACE_STD_P (context))
777     {
778       write_string ("St");
779       write_unqualified_name (decl);
780     }
781   /* If not, it should be either in the global namespace, or directly
782      in a local function scope.  */
783   else if (context == global_namespace 
784            || context == NULL
785            || TREE_CODE (context) == FUNCTION_DECL)
786     write_unqualified_name (decl);
787   else 
788     abort ();
789 }
790
791 /* <unscoped-template-name> ::= <unscoped-name>
792                             ::= <substitution>  */
793
794 static void
795 write_unscoped_template_name (decl)
796      tree decl;
797 {
798   MANGLE_TRACE_TREE ("unscoped-template-name", decl);
799
800   if (find_substitution (decl))
801     return;
802   write_unscoped_name (decl);
803   add_substitution (decl);
804 }
805
806 /* Write the nested name, including CV-qualifiers, of DECL.
807
808    <nested-name> ::= N [<CV-qualifiers>] <prefix> <unqualified-name> E  
809                  ::= N [<CV-qualifiers>] <template-prefix> <template-args> E
810
811    <CV-qualifiers> ::= [r] [V] [K]  */
812
813 static void
814 write_nested_name (decl)
815      tree decl;
816 {
817   tree template_info;
818
819   MANGLE_TRACE_TREE ("nested-name", decl);
820
821   write_char ('N');
822   
823   /* Write CV-qualifiers, if this is a member function.  */
824   if (TREE_CODE (decl) == FUNCTION_DECL 
825       && DECL_NONSTATIC_MEMBER_FUNCTION_P (decl))
826     {
827       if (DECL_VOLATILE_MEMFUNC_P (decl))
828         write_char ('V');
829       if (DECL_CONST_MEMFUNC_P (decl))
830         write_char ('K');
831     }
832
833   /* Is this a template instance?  */
834   if (decl_is_template_id (decl, &template_info))
835     {
836       /* Yes, use <template-prefix>.  */
837       write_template_prefix (decl);
838       write_template_args (TI_ARGS (template_info));
839     }
840   else
841     {
842       /* No, just use <prefix>  */
843       write_prefix (DECL_CONTEXT (decl));
844       write_unqualified_name (decl);
845     }
846   write_char ('E');
847 }
848
849 /* <prefix> ::= <prefix> <unqualified-name>
850             ::= <template-param>
851             ::= <template-prefix> <template-args>
852             ::= # empty
853             ::= <substitution>  */
854
855 static void
856 write_prefix (node)
857      tree node;
858 {
859   tree decl;
860   /* Non-NULL if NODE represents a template-id.  */
861   tree template_info = NULL;
862
863   MANGLE_TRACE_TREE ("prefix", node);
864
865   if (node == NULL
866       || node == global_namespace)
867     return;
868
869   if (find_substitution (node))
870     return;
871
872   if (DECL_P (node))
873     {
874       /* If this is a function decl, that means we've hit function
875          scope, so this prefix must be for a local name.  In this
876          case, we're under the <local-name> production, which encodes
877          the enclosing function scope elsewhere.  So don't continue
878          here.  */
879       if (TREE_CODE (node) == FUNCTION_DECL)
880         return;
881
882       decl = node;
883       decl_is_template_id (decl, &template_info);
884     }
885   else
886     {
887       /* Node is a type.  */
888       decl = TYPE_NAME (node);
889       if (CLASSTYPE_TEMPLATE_ID_P (node))
890         template_info = TYPE_TEMPLATE_INFO (node);
891     }
892
893   /* In G++ 3.2, the name of the template parameter was used.  */
894   if (TREE_CODE (node) == TEMPLATE_TYPE_PARM 
895       && !abi_version_at_least (2))
896     G.need_abi_warning = true;
897
898   if (TREE_CODE (node) == TEMPLATE_TYPE_PARM
899       && abi_version_at_least (2))
900     write_template_param (node);
901   else if (template_info != NULL)
902     /* Templated.  */
903     {
904       write_template_prefix (decl);
905       write_template_args (TI_ARGS (template_info));
906     }
907   else
908     /* Not templated.  */
909     {
910       write_prefix (CP_DECL_CONTEXT (decl));
911       write_unqualified_name (decl);
912     }
913
914   add_substitution (node);
915 }
916
917 /* <template-prefix> ::= <prefix> <template component>
918                      ::= <template-param>
919                      ::= <substitution>  */
920
921 static void
922 write_template_prefix (node)
923      tree node;
924 {
925   tree decl = DECL_P (node) ? node : TYPE_NAME (node);
926   tree type = DECL_P (node) ? TREE_TYPE (node) : node;
927   tree context = CP_DECL_CONTEXT (decl);
928   tree template_info;
929   tree template;
930   tree substitution;
931
932   MANGLE_TRACE_TREE ("template-prefix", node);
933
934   /* Find the template decl.  */
935   if (decl_is_template_id (decl, &template_info))
936     template = TI_TEMPLATE (template_info);
937   else if (CLASSTYPE_TEMPLATE_ID_P (type))
938     template = TYPE_TI_TEMPLATE (type);
939   else
940     /* Oops, not a template.  */
941     abort ();
942
943   /* For a member template, though, the template name for the
944      innermost name must have all the outer template levels
945      instantiated.  For instance, consider
946
947        template<typename T> struct Outer {
948          template<typename U> struct Inner {};
949        };
950
951      The template name for `Inner' in `Outer<int>::Inner<float>' is
952      `Outer<int>::Inner<U>'.  In g++, we don't instantiate the template
953      levels separately, so there's no TEMPLATE_DECL available for this
954      (there's only `Outer<T>::Inner<U>').
955
956      In order to get the substitutions right, we create a special
957      TREE_LIST to represent the substitution candidate for a nested
958      template.  The TREE_PURPOSE is the template's context, fully
959      instantiated, and the TREE_VALUE is the TEMPLATE_DECL for the inner
960      template.
961
962      So, for the example above, `Outer<int>::Inner' is represented as a
963      substitution candidate by a TREE_LIST whose purpose is `Outer<int>'
964      and whose value is `Outer<T>::Inner<U>'.  */
965   if (TYPE_P (context))
966     substitution = build_tree_list (context, template);
967   else
968     substitution = template;
969
970   if (find_substitution (substitution))
971     return;
972
973   /* In G++ 3.2, the name of the template template parameter was used.  */
974   if (TREE_CODE (TREE_TYPE (template)) == TEMPLATE_TEMPLATE_PARM
975       && !abi_version_at_least (2))
976     G.need_abi_warning = true;
977
978   if (TREE_CODE (TREE_TYPE (template)) == TEMPLATE_TEMPLATE_PARM
979       && abi_version_at_least (2))
980     write_template_param (TREE_TYPE (template));
981   else
982     {
983       write_prefix (context);
984       write_unqualified_name (decl);
985     }
986
987   add_substitution (substitution);
988 }
989
990 /* We don't need to handle thunks, vtables, or VTTs here.  Those are
991    mangled through special entry points.  
992
993     <unqualified-name>  ::= <operator-name>
994                         ::= <special-name>  
995                         ::= <source-name>  */
996
997 static void
998 write_unqualified_name (decl)
999      tree decl;
1000 {
1001   MANGLE_TRACE_TREE ("unqualified-name", decl);
1002
1003   if (DECL_LANG_SPECIFIC (decl) != NULL && DECL_CONSTRUCTOR_P (decl))
1004     write_special_name_constructor (decl);
1005   else if (DECL_LANG_SPECIFIC (decl) != NULL && DECL_DESTRUCTOR_P (decl))
1006     write_special_name_destructor (decl);
1007   else if (DECL_CONV_FN_P (decl)) 
1008     {
1009       /* Conversion operator. Handle it right here.  
1010            <operator> ::= cv <type>  */
1011       tree type;
1012       if (decl_is_template_id (decl, NULL))
1013         {
1014           tree fn_type = get_mostly_instantiated_function_type (decl);
1015           type = TREE_TYPE (fn_type);
1016         }
1017       else
1018         type = TREE_TYPE (DECL_NAME (decl));
1019       write_conversion_operator_name (type);
1020     }
1021   else if (DECL_OVERLOADED_OPERATOR_P (decl))
1022     {
1023       operator_name_info_t *oni;
1024       if (DECL_ASSIGNMENT_OPERATOR_P (decl))
1025         oni = assignment_operator_name_info;
1026       else
1027         oni = operator_name_info;
1028       
1029       write_string (oni[DECL_OVERLOADED_OPERATOR_P (decl)].mangled_name);
1030     }
1031   else
1032     write_source_name (DECL_NAME (decl));
1033 }
1034
1035 /* Write the unqualified-name for a conversion operator to TYPE.  */
1036
1037 static void
1038 write_conversion_operator_name (tree type)
1039 {
1040   write_string ("cv");
1041   write_type (type);
1042 }
1043
1044 /* Non-termial <source-name>.  IDENTIFIER is an IDENTIFIER_NODE.  
1045
1046      <source-name> ::= </length/ number> <identifier>  */
1047
1048 static void
1049 write_source_name (identifier)
1050      tree identifier;
1051 {
1052   MANGLE_TRACE_TREE ("source-name", identifier);
1053
1054   /* Never write the whole template-id name including the template
1055      arguments; we only want the template name.  */
1056   if (IDENTIFIER_TEMPLATE (identifier))
1057     identifier = IDENTIFIER_TEMPLATE (identifier);
1058
1059   write_unsigned_number (IDENTIFIER_LENGTH (identifier));
1060   write_identifier (IDENTIFIER_POINTER (identifier));
1061 }
1062
1063 /* Convert NUMBER to ascii using base BASE and generating at least
1064    MIN_DIGITS characters. BUFFER points to the _end_ of the buffer
1065    into which to store the characters. Returns the number of
1066    characters generated (these will be layed out in advance of where
1067    BUFFER points).  */
1068
1069 static int
1070 hwint_to_ascii (number, base, buffer, min_digits)
1071      unsigned HOST_WIDE_INT number;
1072      unsigned int base;
1073      char *buffer;
1074      unsigned min_digits;
1075 {
1076   static const char base_digits[] = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
1077   unsigned digits = 0;
1078   
1079   while (number)
1080     {
1081       unsigned HOST_WIDE_INT d = number / base;
1082       
1083       *--buffer = base_digits[number - d * base];
1084       digits++;
1085       number = d;
1086     }
1087   while (digits < min_digits)
1088     {
1089       *--buffer = base_digits[0];
1090       digits++;
1091     }
1092   return digits;
1093 }
1094
1095 /* Non-terminal <number>.
1096
1097      <number> ::= [n] </decimal integer/>  */
1098
1099 static void
1100 write_number (number, unsigned_p, base)
1101      unsigned HOST_WIDE_INT number;
1102      int unsigned_p;
1103      unsigned int base;
1104 {
1105   char buffer[sizeof (HOST_WIDE_INT) * 8];
1106   unsigned count = 0;
1107
1108   if (!unsigned_p && (HOST_WIDE_INT) number < 0)
1109     {
1110       write_char ('n');
1111       number = -((HOST_WIDE_INT) number);
1112     }
1113   count = hwint_to_ascii (number, base, buffer + sizeof (buffer), 1);
1114   write_chars (buffer + sizeof (buffer) - count, count);
1115 }
1116
1117 /* Write out an integral CST in decimal. Most numbers are small, and
1118    representable in a HOST_WIDE_INT. Occasionally we'll have numbers
1119    bigger than that, which we must deal with.  */
1120
1121 static inline void
1122 write_integer_cst (cst)
1123      tree cst;
1124 {
1125   int sign = tree_int_cst_sgn (cst);
1126
1127   if (TREE_INT_CST_HIGH (cst) + (sign < 0))
1128     {
1129       /* A bignum. We do this in chunks, each of which fits in a
1130          HOST_WIDE_INT.  */
1131       char buffer[sizeof (HOST_WIDE_INT) * 8 * 2];
1132       unsigned HOST_WIDE_INT chunk;
1133       unsigned chunk_digits;
1134       char *ptr = buffer + sizeof (buffer);
1135       unsigned count = 0;
1136       tree n, base, type;
1137       int done;
1138
1139       /* HOST_WIDE_INT must be at least 32 bits, so 10^9 is
1140          representable.  */
1141       chunk = 1000000000;
1142       chunk_digits = 9;
1143       
1144       if (sizeof (HOST_WIDE_INT) >= 8)
1145         {
1146           /* It is at least 64 bits, so 10^18 is representable.  */
1147           chunk_digits = 18;
1148           chunk *= chunk;
1149         }
1150       
1151       type = c_common_signed_or_unsigned_type (1, TREE_TYPE (cst));
1152       base = build_int_2 (chunk, 0);
1153       n = build_int_2 (TREE_INT_CST_LOW (cst), TREE_INT_CST_HIGH (cst));
1154       TREE_TYPE (n) = TREE_TYPE (base) = type;
1155
1156       if (sign < 0)
1157         {
1158           write_char ('n');
1159           n = fold (build1 (NEGATE_EXPR, type, n));
1160         }
1161       do
1162         {
1163           tree d = fold (build (FLOOR_DIV_EXPR, type, n, base));
1164           tree tmp = fold (build (MULT_EXPR, type, d, base));
1165           unsigned c;
1166           
1167           done = integer_zerop (d);
1168           tmp = fold (build (MINUS_EXPR, type, n, tmp));
1169           c = hwint_to_ascii (TREE_INT_CST_LOW (tmp), 10, ptr,
1170                                 done ? 1 : chunk_digits);
1171           ptr -= c;
1172           count += c;
1173           n = d;
1174         }
1175       while (!done);
1176       write_chars (ptr, count);
1177     }
1178   else 
1179     {
1180       /* A small num.  */
1181       unsigned HOST_WIDE_INT low = TREE_INT_CST_LOW (cst);
1182       
1183       if (sign < 0)
1184         {
1185           write_char ('n');
1186           low = -low;
1187         }
1188       write_unsigned_number (low);
1189     }
1190 }
1191
1192 /* Non-terminal <identifier>.
1193
1194      <identifier> ::= </unqualified source code identifier>  */
1195
1196 static void
1197 write_identifier (identifier)
1198      const char *identifier;
1199 {
1200   MANGLE_TRACE ("identifier", identifier);
1201   write_string (identifier);
1202 }
1203
1204 /* Handle constructor productions of non-terminal <special-name>.
1205    CTOR is a constructor FUNCTION_DECL. 
1206
1207      <special-name> ::= C1   # complete object constructor
1208                     ::= C2   # base object constructor
1209                     ::= C3   # complete object allocating constructor
1210
1211    Currently, allocating constructors are never used. 
1212
1213    We also need to provide mangled names for the maybe-in-charge
1214    constructor, so we treat it here too.  mangle_decl_string will
1215    append *INTERNAL* to that, to make sure we never emit it.  */
1216
1217 static void
1218 write_special_name_constructor (ctor)
1219      tree ctor;
1220 {
1221   if (DECL_COMPLETE_CONSTRUCTOR_P (ctor)
1222       /* Even though we don't ever emit a definition of the
1223          old-style destructor, we still have to consider entities
1224          (like static variables) nested inside it.  */
1225       || DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (ctor))
1226     write_string ("C1");
1227   else if (DECL_BASE_CONSTRUCTOR_P (ctor))
1228     write_string ("C2");
1229   else
1230     abort ();
1231 }
1232
1233 /* Handle destructor productions of non-terminal <special-name>.
1234    DTOR is a destructor FUNCTION_DECL. 
1235
1236      <special-name> ::= D0 # deleting (in-charge) destructor
1237                     ::= D1 # complete object (in-charge) destructor
1238                     ::= D2 # base object (not-in-charge) destructor
1239
1240    We also need to provide mangled names for the maybe-incharge
1241    destructor, so we treat it here too.  mangle_decl_string will
1242    append *INTERNAL* to that, to make sure we never emit it.  */
1243
1244 static void
1245 write_special_name_destructor (dtor)
1246      tree dtor;
1247 {
1248   if (DECL_DELETING_DESTRUCTOR_P (dtor))
1249     write_string ("D0");
1250   else if (DECL_COMPLETE_DESTRUCTOR_P (dtor)
1251            /* Even though we don't ever emit a definition of the
1252               old-style destructor, we still have to consider entities
1253               (like static variables) nested inside it.  */
1254            || DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P (dtor))
1255     write_string ("D1");
1256   else if (DECL_BASE_DESTRUCTOR_P (dtor))
1257     write_string ("D2");
1258   else
1259     abort ();
1260 }
1261
1262 /* Return the discriminator for ENTITY appearing inside
1263    FUNCTION.  The discriminator is the lexical ordinal of VAR among
1264    entities with the same name in the same FUNCTION.  */
1265
1266 static int
1267 discriminator_for_local_entity (entity)
1268      tree entity;
1269 {
1270   tree *type;
1271   int discriminator;
1272
1273   /* Assume this is the only local entity with this name.  */
1274   discriminator = 0;
1275
1276   if (DECL_DISCRIMINATOR_P (entity) && DECL_LANG_SPECIFIC (entity))
1277     discriminator = DECL_DISCRIMINATOR (entity);
1278   else if (TREE_CODE (entity) == TYPE_DECL)
1279     {
1280       /* Scan the list of local classes.  */
1281       entity = TREE_TYPE (entity);
1282       for (type = &VARRAY_TREE (local_classes, 0); *type != entity; ++type)
1283         if (TYPE_IDENTIFIER (*type) == TYPE_IDENTIFIER (entity)
1284             && TYPE_CONTEXT (*type) == TYPE_CONTEXT (entity))
1285           ++discriminator;
1286     }  
1287
1288   return discriminator;
1289 }
1290
1291 /* Return the discriminator for STRING, a string literal used inside
1292    FUNCTION.  The disciminator is the lexical ordinal of STRING among
1293    string literals used in FUNCTION.  */
1294
1295 static int
1296 discriminator_for_string_literal (function, string)
1297      tree function ATTRIBUTE_UNUSED;
1298      tree string ATTRIBUTE_UNUSED;
1299 {
1300   /* For now, we don't discriminate amongst string literals.  */
1301   return 0;
1302 }
1303
1304 /*   <discriminator> := _ <number>   
1305
1306    The discriminator is used only for the second and later occurrences
1307    of the same name within a single function. In this case <number> is
1308    n - 2, if this is the nth occurrence, in lexical order.  */
1309
1310 static void
1311 write_discriminator (discriminator)
1312      int discriminator;
1313 {
1314   /* If discriminator is zero, don't write anything.  Otherwise...  */
1315   if (discriminator > 0)
1316     {
1317       write_char ('_');
1318       write_unsigned_number (discriminator - 1);
1319     }
1320 }
1321
1322 /* Mangle the name of a function-scope entity.  FUNCTION is the
1323    FUNCTION_DECL for the enclosing function.  ENTITY is the decl for
1324    the entity itself.  LOCAL_ENTITY is the entity that's directly
1325    scoped in FUNCTION_DECL, either ENTITY itself or an enclosing scope
1326    of ENTITY.
1327
1328      <local-name> := Z <function encoding> E <entity name> [<discriminator>]
1329                   := Z <function encoding> E s [<discriminator>]  */
1330
1331 static void
1332 write_local_name (function, local_entity, entity)
1333      tree function;
1334      tree local_entity;
1335      tree entity;
1336 {
1337   MANGLE_TRACE_TREE ("local-name", entity);
1338
1339   write_char ('Z');
1340   write_encoding (function);
1341   write_char ('E');
1342   if (TREE_CODE (entity) == STRING_CST)
1343     {
1344       write_char ('s');
1345       write_discriminator (discriminator_for_string_literal (function, 
1346                                                              entity));
1347     }
1348   else
1349     {
1350       /* Now the <entity name>.  Let write_name know its being called
1351          from <local-name>, so it doesn't try to process the enclosing
1352          function scope again.  */
1353       write_name (entity, /*ignore_local_scope=*/1);
1354       write_discriminator (discriminator_for_local_entity (local_entity));
1355     }
1356 }
1357
1358 /* Non-terminals <type> and <CV-qualifier>.  
1359
1360      <type> ::= <builtin-type>
1361             ::= <function-type>
1362             ::= <class-enum-type>
1363             ::= <array-type>
1364             ::= <pointer-to-member-type>
1365             ::= <template-param>
1366             ::= <substitution>
1367             ::= <CV-qualifier>
1368             ::= P <type>    # pointer-to
1369             ::= R <type>    # reference-to
1370             ::= C <type>    # complex pair (C 2000)
1371             ::= G <type>    # imaginary (C 2000)     [not supported]
1372             ::= U <source-name> <type>   # vendor extended type qualifier 
1373
1374    TYPE is a type node.  */
1375
1376 static void 
1377 write_type (type)
1378      tree type;
1379 {
1380   /* This gets set to nonzero if TYPE turns out to be a (possibly
1381      CV-qualified) builtin type.  */
1382   int is_builtin_type = 0;
1383
1384   MANGLE_TRACE_TREE ("type", type);
1385
1386   if (type == error_mark_node)
1387     return;
1388
1389   if (find_substitution (type))
1390     return;
1391   
1392   if (write_CV_qualifiers_for_type (type) > 0)
1393     /* If TYPE was CV-qualified, we just wrote the qualifiers; now
1394        mangle the unqualified type.  The recursive call is needed here
1395        since both the qualified and uqualified types are substitution
1396        candidates.  */
1397     write_type (TYPE_MAIN_VARIANT (type));
1398   else if (TREE_CODE (type) == ARRAY_TYPE)
1399     /* It is important not to use the TYPE_MAIN_VARIANT of TYPE here
1400        so that the cv-qualification of the element type is available
1401        in write_array_type.  */
1402     write_array_type (type);
1403   else
1404     {
1405       /* See through any typedefs.  */
1406       type = TYPE_MAIN_VARIANT (type);
1407
1408       switch (TREE_CODE (type))
1409         {
1410         case VOID_TYPE:
1411         case BOOLEAN_TYPE:
1412         case INTEGER_TYPE:  /* Includes wchar_t.  */
1413         case REAL_TYPE:
1414           /* If this is a typedef, TYPE may not be one of
1415              the standard builtin type nodes, but an alias of one.  Use
1416              TYPE_MAIN_VARIANT to get to the underlying builtin type.  */
1417           write_builtin_type (TYPE_MAIN_VARIANT (type));
1418           ++is_builtin_type;
1419           break;
1420
1421         case COMPLEX_TYPE:
1422           write_char ('C');
1423           write_type (TREE_TYPE (type));
1424           break;
1425
1426         case FUNCTION_TYPE:
1427         case METHOD_TYPE:
1428           write_function_type (type);
1429           break;
1430
1431         case UNION_TYPE:
1432         case RECORD_TYPE:
1433         case ENUMERAL_TYPE:
1434           /* A pointer-to-member function is represented as a special
1435              RECORD_TYPE, so check for this first.  */
1436           if (TYPE_PTRMEMFUNC_P (type))
1437             write_pointer_to_member_type (type);
1438           else
1439             write_class_enum_type (type);
1440           break;
1441
1442         case TYPENAME_TYPE:
1443         case UNBOUND_CLASS_TEMPLATE:
1444           /* We handle TYPENAME_TYPEs and UNBOUND_CLASS_TEMPLATEs like
1445              ordinary nested names.  */
1446           write_nested_name (TYPE_STUB_DECL (type));
1447           break;
1448
1449         case POINTER_TYPE:
1450           /* A pointer-to-member variable is represented by a POINTER_TYPE
1451              to an OFFSET_TYPE, so check for this first.  */
1452           if (TYPE_PTRMEM_P (type))
1453             write_pointer_to_member_type (type);
1454           else
1455             {
1456               write_char ('P');
1457               write_type (TREE_TYPE (type));
1458             }
1459           break;
1460
1461         case REFERENCE_TYPE:
1462           write_char ('R');
1463           write_type (TREE_TYPE (type));
1464           break;
1465
1466         case TEMPLATE_TYPE_PARM:
1467         case TEMPLATE_PARM_INDEX:
1468           write_template_param (type);
1469           break;
1470
1471         case TEMPLATE_TEMPLATE_PARM:
1472           write_template_template_param (type);
1473           break;
1474
1475         case BOUND_TEMPLATE_TEMPLATE_PARM:
1476           write_template_template_param (type);
1477           write_template_args 
1478             (TI_ARGS (TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (type)));
1479           break;
1480
1481         case OFFSET_TYPE:
1482           write_pointer_to_member_type (build_pointer_type (type));
1483           break;
1484
1485         case VECTOR_TYPE:
1486           write_string ("U8__vector");
1487           write_type (TREE_TYPE (type));
1488           break;
1489
1490         default:
1491           abort ();
1492         }
1493     }
1494
1495   /* Types other than builtin types are substitution candidates.  */
1496   if (!is_builtin_type)
1497     add_substitution (type);
1498 }
1499
1500 /* Non-terminal <CV-qualifiers> for type nodes.  Returns the number of
1501    CV-qualifiers written for TYPE.
1502
1503      <CV-qualifiers> ::= [r] [V] [K]  */
1504
1505 static int
1506 write_CV_qualifiers_for_type (type)
1507      tree type;
1508 {
1509   int num_qualifiers = 0;
1510
1511   /* The order is specified by:
1512
1513        "In cases where multiple order-insensitive qualifiers are
1514        present, they should be ordered 'K' (closest to the base type),
1515        'V', 'r', and 'U' (farthest from the base type) ..."  
1516
1517      Note that we do not use cp_type_quals below; given "const
1518      int[3]", the "const" is emitted with the "int", not with the
1519      array.  */
1520
1521   if (TYPE_QUALS (type) & TYPE_QUAL_RESTRICT)
1522     {
1523       write_char ('r');
1524       ++num_qualifiers;
1525     }
1526   if (TYPE_QUALS (type) & TYPE_QUAL_VOLATILE)
1527     {
1528       write_char ('V');
1529       ++num_qualifiers;
1530     }
1531   if (TYPE_QUALS (type) & TYPE_QUAL_CONST)
1532     {
1533       write_char ('K');
1534       ++num_qualifiers;
1535     }
1536
1537   return num_qualifiers;
1538 }
1539
1540 /* Non-terminal <builtin-type>. 
1541
1542      <builtin-type> ::= v   # void 
1543                     ::= b   # bool
1544                     ::= w   # wchar_t
1545                     ::= c   # char
1546                     ::= a   # signed char
1547                     ::= h   # unsigned char
1548                     ::= s   # short
1549                     ::= t   # unsigned short
1550                     ::= i   # int
1551                     ::= j   # unsigned int
1552                     ::= l   # long
1553                     ::= m   # unsigned long
1554                     ::= x   # long long, __int64
1555                     ::= y   # unsigned long long, __int64  
1556                     ::= n   # __int128
1557                     ::= o   # unsigned __int128
1558                     ::= f   # float
1559                     ::= d   # double
1560                     ::= e   # long double, __float80 
1561                     ::= g   # __float128          [not supported]
1562                     ::= u <source-name>  # vendor extended type */
1563
1564 static void 
1565 write_builtin_type (type)
1566      tree type;
1567 {
1568   switch (TREE_CODE (type))
1569     {
1570     case VOID_TYPE:
1571       write_char ('v');
1572       break;
1573
1574     case BOOLEAN_TYPE:
1575       write_char ('b');
1576       break;
1577
1578     case INTEGER_TYPE:
1579       /* If this is size_t, get the underlying int type.  */
1580       if (TYPE_IS_SIZETYPE (type))
1581         type = TYPE_DOMAIN (type);
1582
1583       /* TYPE may still be wchar_t, since that isn't in
1584          integer_type_nodes.  */
1585       if (type == wchar_type_node)
1586         write_char ('w');
1587       else if (TYPE_FOR_JAVA (type))
1588         write_java_integer_type_codes (type);
1589       else
1590         {
1591           size_t itk;
1592           /* Assume TYPE is one of the shared integer type nodes.  Find
1593              it in the array of these nodes.  */
1594         iagain:
1595           for (itk = 0; itk < itk_none; ++itk)
1596             if (type == integer_types[itk])
1597               {
1598                 /* Print the corresponding single-letter code.  */
1599                 write_char (integer_type_codes[itk]);
1600                 break;
1601               }
1602
1603           if (itk == itk_none)
1604             {
1605               tree t = c_common_type_for_mode (TYPE_MODE (type),
1606                                                TREE_UNSIGNED (type));
1607               if (type == t)
1608                 {
1609                   if (TYPE_PRECISION (type) == 128)
1610                     write_char (TREE_UNSIGNED (type) ? 'o' : 'n');
1611                   else
1612                     /* Couldn't find this type.  */
1613                     abort ();
1614                 }
1615               else
1616                 {
1617                   type = t;
1618                   goto iagain;
1619                 }
1620             }
1621         }
1622       break;
1623
1624     case REAL_TYPE:
1625       if (type == float_type_node
1626           || type == java_float_type_node)
1627         write_char ('f');
1628       else if (type == double_type_node
1629                || type == java_double_type_node)
1630         write_char ('d');
1631       else if (type == long_double_type_node)
1632         write_char ('e');
1633       else
1634         abort ();
1635       break;
1636
1637     default:
1638       abort ();
1639     }
1640 }
1641
1642 /* Non-terminal <function-type>.  NODE is a FUNCTION_TYPE or
1643    METHOD_TYPE.  The return type is mangled before the parameter
1644    types.
1645
1646      <function-type> ::= F [Y] <bare-function-type> E   */
1647
1648 static void
1649 write_function_type (type)
1650      tree type;
1651 {
1652   MANGLE_TRACE_TREE ("function-type", type);
1653
1654   /* For a pointer to member function, the function type may have
1655      cv-qualifiers, indicating the quals for the artificial 'this'
1656      parameter.  */
1657   if (TREE_CODE (type) == METHOD_TYPE)
1658     {
1659       /* The first parameter must be a POINTER_TYPE pointing to the
1660          `this' parameter.  */
1661       tree this_type = TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (type)));
1662       write_CV_qualifiers_for_type (this_type);
1663     }
1664
1665   write_char ('F');
1666   /* We don't track whether or not a type is `extern "C"'.  Note that
1667      you can have an `extern "C"' function that does not have
1668      `extern "C"' type, and vice versa:
1669
1670        extern "C" typedef void function_t();
1671        function_t f; // f has C++ linkage, but its type is
1672                      // `extern "C"'
1673
1674        typedef void function_t();
1675        extern "C" function_t f; // Vice versa.
1676
1677      See [dcl.link].  */
1678   write_bare_function_type (type, /*include_return_type_p=*/1, 
1679                             /*decl=*/NULL);
1680   write_char ('E');
1681 }
1682
1683 /* Non-terminal <bare-function-type>.  TYPE is a FUNCTION_TYPE or
1684    METHOD_TYPE.  If INCLUDE_RETURN_TYPE is nonzero, the return value
1685    is mangled before the parameter types.  If non-NULL, DECL is
1686    FUNCTION_DECL for the function whose type is being emitted.
1687
1688      <bare-function-type> ::= </signature/ type>+  */
1689
1690 static void
1691 write_bare_function_type (type, include_return_type_p, decl)
1692      tree type;
1693      int include_return_type_p;
1694      tree decl;
1695 {
1696   MANGLE_TRACE_TREE ("bare-function-type", type);
1697
1698   /* Mangle the return type, if requested.  */
1699   if (include_return_type_p)
1700     write_type (TREE_TYPE (type));
1701
1702   /* Now mangle the types of the arguments.  */
1703   write_method_parms (TYPE_ARG_TYPES (type), 
1704                       TREE_CODE (type) == METHOD_TYPE,
1705                       decl);
1706 }
1707
1708 /* Write the mangled representation of a method parameter list of
1709    types given in PARM_TYPES.  If METHOD_P is nonzero, the function is
1710    considered a non-static method, and the this parameter is omitted.
1711    If non-NULL, DECL is the FUNCTION_DECL for the function whose
1712    parameters are being emitted.  */
1713
1714 static void
1715 write_method_parms (parm_types, method_p, decl)
1716      tree decl;
1717      tree parm_types;
1718      int method_p;
1719 {
1720   tree first_parm_type;
1721   tree parm_decl = decl ? DECL_ARGUMENTS (decl) : NULL_TREE;
1722
1723   /* Assume this parameter type list is variable-length.  If it ends
1724      with a void type, then it's not.  */
1725   int varargs_p = 1;
1726
1727   /* If this is a member function, skip the first arg, which is the
1728      this pointer.  
1729        "Member functions do not encode the type of their implicit this
1730        parameter."  
1731   
1732      Similarly, there's no need to mangle artificial parameters, like
1733      the VTT parameters for constructors and destructors.  */
1734   if (method_p)
1735     {
1736       parm_types = TREE_CHAIN (parm_types);
1737       parm_decl = parm_decl ? TREE_CHAIN (parm_decl) : NULL_TREE;
1738
1739       while (parm_decl && DECL_ARTIFICIAL (parm_decl))
1740         {
1741           parm_types = TREE_CHAIN (parm_types);
1742           parm_decl = TREE_CHAIN (parm_decl);
1743         }
1744     }
1745
1746   for (first_parm_type = parm_types; 
1747        parm_types; 
1748        parm_types = TREE_CHAIN (parm_types))
1749     {
1750       tree parm = TREE_VALUE (parm_types);
1751       if (parm == void_type_node)
1752         {
1753           /* "Empty parameter lists, whether declared as () or
1754              conventionally as (void), are encoded with a void parameter
1755              (v)."  */
1756           if (parm_types == first_parm_type)
1757             write_type (parm);
1758           /* If the parm list is terminated with a void type, it's
1759              fixed-length.  */
1760           varargs_p = 0;
1761           /* A void type better be the last one.  */
1762           my_friendly_assert (TREE_CHAIN (parm_types) == NULL, 20000523);
1763         }
1764       else
1765         write_type (parm);
1766     }
1767
1768   if (varargs_p)
1769     /* <builtin-type> ::= z  # ellipsis  */
1770     write_char ('z');
1771 }
1772
1773 /* <class-enum-type> ::= <name>  */
1774
1775 static void 
1776 write_class_enum_type (type)
1777      tree type;
1778 {
1779   write_name (TYPE_NAME (type), /*ignore_local_scope=*/0);
1780 }
1781
1782 /* Non-terminal <template-args>.  ARGS is a TREE_VEC of template
1783    arguments.
1784
1785      <template-args> ::= I <template-arg>+ E  */
1786
1787 static void
1788 write_template_args (args)
1789      tree args;
1790 {
1791   MANGLE_TRACE_TREE ("template-args", args);
1792
1793   write_char ('I');
1794
1795   if (TREE_CODE (args) == TREE_VEC)
1796     {
1797       int i;
1798       int length = TREE_VEC_LENGTH (args);
1799       my_friendly_assert (length > 0, 20000422);
1800
1801       if (TREE_CODE (TREE_VEC_ELT (args, 0)) == TREE_VEC)
1802         {
1803           /* We have nested template args.  We want the innermost template
1804              argument list.  */
1805           args = TREE_VEC_ELT (args, length - 1);
1806           length = TREE_VEC_LENGTH (args);
1807         }
1808       for (i = 0; i < length; ++i)
1809         write_template_arg (TREE_VEC_ELT (args, i));
1810     }
1811   else 
1812     {
1813       my_friendly_assert (TREE_CODE (args) == TREE_LIST, 20021014);
1814
1815       while (args)
1816         {
1817           write_template_arg (TREE_VALUE (args));
1818           args = TREE_CHAIN (args);
1819         }
1820     }
1821
1822   write_char ('E');
1823 }
1824
1825 /* <expression> ::= <unary operator-name> <expression>
1826                 ::= <binary operator-name> <expression> <expression>
1827                 ::= <expr-primary>
1828
1829    <expr-primary> ::= <template-param>
1830                   ::= L <type> <value number> E  # literal
1831                   ::= L <mangled-name> E         # external name  
1832                   ::= sr <type> <unqualified-name>
1833                   ::= sr <type> <unqualified-name> <template-args> */
1834
1835 static void
1836 write_expression (expr)
1837      tree expr;
1838 {
1839   enum tree_code code;
1840
1841   code = TREE_CODE (expr);
1842
1843   /* Handle pointers-to-members by making them look like expression
1844      nodes.  */
1845   if (code == PTRMEM_CST)
1846     {
1847       expr = build_nt (ADDR_EXPR,
1848                        build_nt (SCOPE_REF,
1849                                  PTRMEM_CST_CLASS (expr),
1850                                  PTRMEM_CST_MEMBER (expr)));
1851       code = TREE_CODE (expr);
1852     }
1853
1854   /* Skip NOP_EXPRs.  They can occur when (say) a pointer argument
1855      is converted (via qualification conversions) to another
1856      type.  */
1857   while (TREE_CODE (expr) == NOP_EXPR
1858          || TREE_CODE (expr) == NON_LVALUE_EXPR)
1859     {
1860       expr = TREE_OPERAND (expr, 0);
1861       code = TREE_CODE (expr);
1862     }
1863
1864   /* Handle template parameters.  */
1865   if (code == TEMPLATE_TYPE_PARM 
1866       || code == TEMPLATE_TEMPLATE_PARM
1867       || code == BOUND_TEMPLATE_TEMPLATE_PARM
1868       || code == TEMPLATE_PARM_INDEX)
1869     write_template_param (expr);
1870   /* Handle literals.  */
1871   else if (TREE_CODE_CLASS (code) == 'c' 
1872            || (abi_version_at_least (2) && code == CONST_DECL))
1873     write_template_arg_literal (expr);
1874   else if (DECL_P (expr))
1875     {
1876       /* G++ 3.2 incorrectly mangled non-type template arguments of
1877          enumeration type using their names.  */
1878       if (code == CONST_DECL)
1879         G.need_abi_warning = 1;
1880       write_char ('L');
1881       write_mangled_name (expr);
1882       write_char ('E');
1883     }
1884   else if (TREE_CODE (expr) == SIZEOF_EXPR 
1885            && TYPE_P (TREE_OPERAND (expr, 0)))
1886     {
1887       write_string ("st");
1888       write_type (TREE_OPERAND (expr, 0));
1889     }
1890   else if (abi_version_at_least (2) && TREE_CODE (expr) == SCOPE_REF)
1891     {
1892       tree scope = TREE_OPERAND (expr, 0);
1893       tree member = TREE_OPERAND (expr, 1);
1894
1895       /* If the MEMBER is a real declaration, then the qualifying
1896          scope was not dependent.  Ideally, we would not have a
1897          SCOPE_REF in those cases, but sometimes we do.  If the second
1898          argument is a DECL, then the name must not have been
1899          dependent.  */
1900       if (DECL_P (member))
1901         write_expression (member);
1902       else
1903         {
1904           tree template_args;
1905
1906           write_string ("sr");
1907           write_type (scope);
1908           /* If MEMBER is a template-id, separate the template
1909              from the arguments.  */
1910           if (TREE_CODE (member) == TEMPLATE_ID_EXPR)
1911             {
1912               template_args = TREE_OPERAND (member, 1);
1913               member = TREE_OPERAND (member, 0);
1914               if (TREE_CODE (member) == LOOKUP_EXPR)
1915                 member = TREE_OPERAND (member, 0);
1916             }
1917           else
1918             template_args = NULL_TREE;
1919           /* Write out the name of the MEMBER.  */
1920           if (IDENTIFIER_TYPENAME_P (member))
1921             write_conversion_operator_name (TREE_TYPE (member));
1922           else if (IDENTIFIER_OPNAME_P (member))
1923             {
1924               int i;
1925               const char *mangled_name = NULL;
1926
1927               /* Unfortunately, there is no easy way to go from the
1928                  name of the operator back to the corresponding tree
1929                  code.  */
1930               for (i = 0; i < LAST_CPLUS_TREE_CODE; ++i)
1931                 if (operator_name_info[i].identifier == member)
1932                   {
1933                     /* The ABI says that we prefer binary operator
1934                        names to unary operator names.  */
1935                     if (operator_name_info[i].arity == 2)
1936                       {
1937                         mangled_name = operator_name_info[i].mangled_name;
1938                         break;
1939                       }
1940                     else if (!mangled_name)
1941                       mangled_name = operator_name_info[i].mangled_name;
1942                   }
1943                 else if (assignment_operator_name_info[i].identifier
1944                          == member)
1945                   {
1946                     mangled_name 
1947                       = assignment_operator_name_info[i].mangled_name;
1948                     break;
1949                   }
1950               write_string (mangled_name);
1951             }
1952           else
1953             write_source_name (member);
1954           /* Write out the template arguments.  */
1955           if (template_args)
1956             write_template_args (template_args);
1957         }
1958     }
1959   else
1960     {
1961       int i;
1962
1963       /* When we bind a variable or function to a non-type template
1964          argument with reference type, we create an ADDR_EXPR to show
1965          the fact that the entity's address has been taken.  But, we
1966          don't actually want to output a mangling code for the `&'.  */
1967       if (TREE_CODE (expr) == ADDR_EXPR
1968           && TREE_TYPE (expr)
1969           && TREE_CODE (TREE_TYPE (expr)) == REFERENCE_TYPE)
1970         {
1971           expr = TREE_OPERAND (expr, 0);
1972           if (DECL_P (expr))
1973             {
1974               write_expression (expr);
1975               return;
1976             }
1977
1978           code = TREE_CODE (expr);
1979         }
1980
1981       /* If it wasn't any of those, recursively expand the expression.  */
1982       write_string (operator_name_info[(int) code].mangled_name);
1983
1984       switch (code)
1985         {
1986         case CAST_EXPR:
1987           write_type (TREE_TYPE (expr));
1988           write_expression (TREE_VALUE (TREE_OPERAND (expr, 0)));
1989           break;
1990
1991         case STATIC_CAST_EXPR:
1992         case CONST_CAST_EXPR:
1993           write_type (TREE_TYPE (expr));
1994           write_expression (TREE_OPERAND (expr, 0));
1995           break;
1996
1997           
1998         /* Handle pointers-to-members specially.  */
1999         case SCOPE_REF:
2000           write_type (TREE_OPERAND (expr, 0));
2001           if (TREE_CODE (TREE_OPERAND (expr, 1)) == IDENTIFIER_NODE)
2002             write_source_name (TREE_OPERAND (expr, 1));
2003           else
2004             {
2005               /* G++ 3.2 incorrectly put out both the "sr" code and
2006                  the nested name of the qualified name.  */
2007               G.need_abi_warning = 1;
2008               write_encoding (TREE_OPERAND (expr, 1));
2009             }
2010           break;
2011
2012         default:
2013           for (i = 0; i < TREE_CODE_LENGTH (code); ++i)
2014             write_expression (TREE_OPERAND (expr, i));
2015         }
2016     }
2017 }
2018
2019 /* Literal subcase of non-terminal <template-arg>.  
2020
2021      "Literal arguments, e.g. "A<42L>", are encoded with their type
2022      and value. Negative integer values are preceded with "n"; for
2023      example, "A<-42L>" becomes "1AILln42EE". The bool value false is
2024      encoded as 0, true as 1. If floating-point arguments are accepted
2025      as an extension, their values should be encoded using a
2026      fixed-length lowercase hexadecimal string corresponding to the
2027      internal representation (IEEE on IA-64), high-order bytes first,
2028      without leading zeroes. For example: "Lfbff000000E" is -1.0f."  */
2029
2030 static void
2031 write_template_arg_literal (value)
2032      tree value;
2033 {
2034   tree type = TREE_TYPE (value);
2035   write_char ('L');
2036   write_type (type);
2037
2038   if (TREE_CODE (value) == CONST_DECL)
2039     write_integer_cst (DECL_INITIAL (value));
2040   else if (TREE_CODE (value) == INTEGER_CST)
2041     {
2042       if (same_type_p (type, boolean_type_node))
2043         {
2044           if (value == boolean_false_node || integer_zerop (value))
2045             write_unsigned_number (0);
2046           else if (value == boolean_true_node)
2047             write_unsigned_number (1);
2048           else 
2049             abort ();
2050         }
2051       else
2052         write_integer_cst (value);
2053     }
2054   else if (TREE_CODE (value) == REAL_CST)
2055     {
2056 #ifdef CROSS_COMPILE
2057       static int explained;
2058
2059       if (!explained) 
2060         {
2061           sorry ("real-valued template parameters when cross-compiling");
2062           explained = 1;
2063         }
2064 #else
2065       size_t i;
2066       for (i = 0; i < sizeof (TREE_REAL_CST (value)); ++i)
2067         write_number (((unsigned char *) 
2068                        &TREE_REAL_CST (value))[i], 
2069                       /*unsigned_p=*/1,
2070                       16);
2071 #endif
2072     }
2073   else
2074     abort ();
2075
2076   write_char ('E');
2077 }
2078
2079 /* Non-terminal <tempalate-arg>.  
2080
2081      <template-arg> ::= <type>                        # type
2082                     ::= L <type> </value/ number> E   # literal
2083                     ::= LZ <name> E                   # external name
2084                     ::= X <expression> E              # expression  */
2085
2086 static void
2087 write_template_arg (node)
2088      tree node;
2089 {
2090   enum tree_code code = TREE_CODE (node);
2091
2092   MANGLE_TRACE_TREE ("template-arg", node);
2093
2094   /* A template template paramter's argument list contains TREE_LIST
2095      nodes of which the value field is the the actual argument.  */
2096   if (code == TREE_LIST)
2097     {
2098       node = TREE_VALUE (node);
2099       /* If it's a decl, deal with its type instead.  */
2100       if (DECL_P (node))
2101         {
2102           node = TREE_TYPE (node);
2103           code = TREE_CODE (node);
2104         }
2105     }
2106
2107   if (TYPE_P (node))
2108     write_type (node);
2109   else if (code == TEMPLATE_DECL)
2110     /* A template appearing as a template arg is a template template arg.  */
2111     write_template_template_arg (node);
2112   else if ((TREE_CODE_CLASS (code) == 'c' && code != PTRMEM_CST)
2113            || (abi_version_at_least (2) && code == CONST_DECL))
2114     write_template_arg_literal (node);
2115   else if (DECL_P (node))
2116     {
2117       /* G++ 3.2 incorrectly mangled non-type template arguments of
2118          enumeration type using their names.  */
2119       if (code == CONST_DECL)
2120         G.need_abi_warning = 1;
2121       write_char ('L');
2122       write_char ('Z');
2123       write_encoding (node);
2124       write_char ('E');
2125     }
2126   else
2127     {
2128       /* Template arguments may be expressions.  */
2129       write_char ('X');
2130       write_expression (node);
2131       write_char ('E');
2132     }
2133 }
2134
2135 /*  <template-template-arg>
2136                         ::= <name>
2137                         ::= <substitution>  */
2138
2139 void
2140 write_template_template_arg (tree decl)
2141 {
2142   MANGLE_TRACE_TREE ("template-template-arg", decl);
2143
2144   if (find_substitution (decl))
2145     return;
2146   write_name (decl, /*ignore_local_scope=*/0);
2147   add_substitution (decl);
2148 }
2149
2150
2151 /* Non-terminal <array-type>.  TYPE is an ARRAY_TYPE.  
2152
2153      <array-type> ::= A [</dimension/ number>] _ </element/ type>  
2154                   ::= A <expression> _ </element/ type>
2155
2156      "Array types encode the dimension (number of elements) and the
2157      element type. For variable length arrays, the dimension (but not
2158      the '_' separator) is omitted."  */
2159
2160 static void 
2161 write_array_type (type)
2162   tree type;
2163 {
2164   write_char ('A');
2165   if (TYPE_DOMAIN (type))
2166     {
2167       tree index_type;
2168       tree max;
2169
2170       index_type = TYPE_DOMAIN (type);
2171       /* The INDEX_TYPE gives the upper and lower bounds of the
2172          array.  */
2173       max = TYPE_MAX_VALUE (index_type);
2174       if (TREE_CODE (max) == INTEGER_CST)
2175         {
2176           /* The ABI specifies that we should mangle the number of
2177              elements in the array, not the largest allowed index.  */
2178           max = size_binop (PLUS_EXPR, max, size_one_node);
2179           write_unsigned_number (tree_low_cst (max, 1));
2180         }
2181       else
2182         write_expression (TREE_OPERAND (max, 0));
2183     }
2184   write_char ('_');
2185   write_type (TREE_TYPE (type));
2186 }
2187
2188 /* Non-terminal <pointer-to-member-type> for pointer-to-member
2189    variables.  TYPE is a pointer-to-member POINTER_TYPE.
2190
2191      <pointer-to-member-type> ::= M </class/ type> </member/ type>  */
2192
2193 static void
2194 write_pointer_to_member_type (type)
2195      tree type;
2196 {
2197   write_char ('M');
2198   write_type (TYPE_PTRMEM_CLASS_TYPE (type));
2199   write_type (TYPE_PTRMEM_POINTED_TO_TYPE (type));
2200 }
2201
2202 /* Non-terminal <template-param>.  PARM is a TEMPLATE_TYPE_PARM,
2203    TEMPLATE_TEMPLATE_PARM, BOUND_TEMPLATE_TEMPLATE_PARM or a
2204    TEMPLATE_PARM_INDEX.
2205
2206      <template-param> ::= T </parameter/ number> _
2207
2208    If we are internally mangling then we distinguish level and, for
2209    non-type parms, type too. The mangling appends
2210    
2211      </level/ number> _ </non-type type/ type> _
2212
2213    This is used by mangle_conv_op_name_for_type.  */
2214
2215 static void
2216 write_template_param (parm)
2217      tree parm;
2218 {
2219   int parm_index;
2220   int parm_level;
2221   tree parm_type = NULL_TREE;
2222
2223   MANGLE_TRACE_TREE ("template-parm", parm);
2224
2225   switch (TREE_CODE (parm))
2226     {
2227     case TEMPLATE_TYPE_PARM:
2228     case TEMPLATE_TEMPLATE_PARM:
2229     case BOUND_TEMPLATE_TEMPLATE_PARM:
2230       parm_index = TEMPLATE_TYPE_IDX (parm);
2231       parm_level = TEMPLATE_TYPE_LEVEL (parm);
2232       break;
2233
2234     case TEMPLATE_PARM_INDEX:
2235       parm_index = TEMPLATE_PARM_IDX (parm);
2236       parm_level = TEMPLATE_PARM_LEVEL (parm);
2237       parm_type = TREE_TYPE (TEMPLATE_PARM_DECL (parm));
2238       break;
2239
2240     default:
2241       abort ();
2242     }
2243
2244   write_char ('T');
2245   /* NUMBER as it appears in the mangling is (-1)-indexed, with the
2246      earliest template param denoted by `_'.  */
2247   if (parm_index > 0)
2248     write_unsigned_number (parm_index - 1);
2249   write_char ('_');
2250   if (G.internal_mangling_p)
2251     {
2252       if (parm_level > 0)
2253         write_unsigned_number (parm_level - 1);
2254       write_char ('_');
2255       if (parm_type)
2256         write_type (parm_type);
2257       write_char ('_');
2258     }
2259 }
2260
2261 /*  <template-template-param>
2262                         ::= <template-param> 
2263                         ::= <substitution>  */
2264
2265 static void
2266 write_template_template_param (parm)
2267      tree parm;
2268 {
2269   tree template = NULL_TREE;
2270
2271   /* PARM, a TEMPLATE_TEMPLATE_PARM, is an instantiation of the
2272      template template parameter.  The substitution candidate here is
2273      only the template.  */
2274   if (TREE_CODE (parm) == BOUND_TEMPLATE_TEMPLATE_PARM)
2275     {
2276       template 
2277         = TI_TEMPLATE (TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO (parm));
2278       if (find_substitution (template))
2279         return;
2280     }
2281
2282   /* <template-param> encodes only the template parameter position,
2283      not its template arguments, which is fine here.  */
2284   write_template_param (parm);
2285   if (template)
2286     add_substitution (template);
2287 }
2288
2289 /* Non-terminal <substitution>.  
2290
2291       <substitution> ::= S <seq-id> _
2292                      ::= S_  */
2293
2294 static void
2295 write_substitution (seq_id)
2296      int seq_id;
2297 {
2298   MANGLE_TRACE ("substitution", "");
2299
2300   write_char ('S');
2301   if (seq_id > 0)
2302     write_number (seq_id - 1, /*unsigned=*/1, 36);
2303   write_char ('_');
2304 }
2305
2306 /* Start mangling ENTITY.  */
2307
2308 static inline void
2309 start_mangling (tree entity)
2310 {
2311   G.entity = entity;
2312   G.need_abi_warning = false;
2313   VARRAY_TREE_INIT (G.substitutions, 1, "mangling substitutions");
2314   obstack_free (&G.name_obstack, obstack_base (&G.name_obstack));
2315 }
2316
2317 /* Done with mangling.  Return the generated mangled name.  If WARN is
2318    true, and the name of G.entity will be mangled differently in a
2319    future version of the ABI, issue a warning.  */
2320
2321 static inline const char *
2322 finish_mangling (bool warn)
2323 {
2324   if (warn_abi && warn && G.need_abi_warning)
2325     warning ("the mangled name of `%D' will change in a future "
2326              "version of GCC",
2327              G.entity);
2328
2329   /* Clear all the substitutions.  */
2330   G.substitutions = 0;
2331
2332   /* Null-terminate the string.  */
2333   write_char ('\0');
2334
2335   return (const char *) obstack_base (&G.name_obstack);
2336 }
2337
2338 /* Initialize data structures for mangling.  */
2339
2340 void
2341 init_mangle ()
2342 {
2343   gcc_obstack_init (&G.name_obstack);
2344
2345   /* Cache these identifiers for quick comparison when checking for
2346      standard substitutions.  */
2347   subst_identifiers[SUBID_ALLOCATOR] = get_identifier ("allocator");
2348   subst_identifiers[SUBID_BASIC_STRING] = get_identifier ("basic_string");
2349   subst_identifiers[SUBID_CHAR_TRAITS] = get_identifier ("char_traits");
2350   subst_identifiers[SUBID_BASIC_ISTREAM] = get_identifier ("basic_istream");
2351   subst_identifiers[SUBID_BASIC_OSTREAM] = get_identifier ("basic_ostream");
2352   subst_identifiers[SUBID_BASIC_IOSTREAM] = get_identifier ("basic_iostream");
2353 }
2354
2355 /* Generate the mangled name of DECL.  */
2356
2357 static const char *
2358 mangle_decl_string (decl)
2359      tree decl;
2360 {
2361   const char *result;
2362
2363   start_mangling (decl);
2364
2365   if (TREE_CODE (decl) == TYPE_DECL)
2366     write_type (TREE_TYPE (decl));
2367   else if (/* The names of `extern "C"' functions are not mangled.  */
2368            (DECL_EXTERN_C_FUNCTION_P (decl)
2369             /* But overloaded operator names *are* mangled.  */
2370             && !DECL_OVERLOADED_OPERATOR_P (decl))
2371            /* The names of global variables aren't mangled either.  */
2372            || (TREE_CODE (decl) == VAR_DECL
2373                && CP_DECL_CONTEXT (decl) == global_namespace)
2374            /* And neither are `extern "C"' variables.  */
2375            || (TREE_CODE (decl) == VAR_DECL
2376                && DECL_EXTERN_C_P (decl)))
2377     write_string (IDENTIFIER_POINTER (DECL_NAME (decl)));
2378   else
2379     {
2380       write_mangled_name (decl);
2381       if (DECL_LANG_SPECIFIC (decl)
2382           && (DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P (decl)
2383               || DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P (decl)))
2384         /* We need a distinct mangled name for these entities, but
2385            we should never actually output it.  So, we append some
2386            characters the assembler won't like.  */
2387         write_string (" *INTERNAL* ");
2388     }
2389
2390   result = finish_mangling (/*warn=*/true);
2391   if (DEBUG_MANGLE)
2392     fprintf (stderr, "mangle_decl_string = '%s'\n\n", result);
2393   return result;
2394 }
2395
2396 /* Create an identifier for the external mangled name of DECL.  */
2397
2398 void
2399 mangle_decl (decl)
2400      tree decl;
2401 {
2402   tree id = get_identifier (mangle_decl_string (decl));
2403
2404   SET_DECL_ASSEMBLER_NAME (decl, id);
2405 }
2406
2407 /* Generate the mangled representation of TYPE.  */
2408
2409 const char *
2410 mangle_type_string (type)
2411      tree type;
2412 {
2413   const char *result;
2414
2415   start_mangling (type);
2416   write_type (type);
2417   result = finish_mangling (/*warn=*/false);
2418   if (DEBUG_MANGLE)
2419     fprintf (stderr, "mangle_type_string = '%s'\n\n", result);
2420   return result;
2421 }
2422
2423 /* Create an identifier for the mangled representation of TYPE.  */
2424
2425 tree
2426 mangle_type (type)
2427      tree type;
2428 {
2429   return get_identifier (mangle_type_string (type));
2430 }
2431
2432 /* Create an identifier for the mangled name of a special component
2433    for belonging to TYPE.  CODE is the ABI-specified code for this
2434    component.  */
2435
2436 static tree
2437 mangle_special_for_type (type, code)
2438      tree type;
2439      const char *code;
2440 {
2441   const char *result;
2442
2443   /* We don't have an actual decl here for the special component, so
2444      we can't just process the <encoded-name>.  Instead, fake it.  */
2445   start_mangling (type);
2446
2447   /* Start the mangling.  */
2448   write_string ("_Z");
2449   write_string (code);
2450
2451   /* Add the type.  */
2452   write_type (type);
2453   result = finish_mangling (/*warn=*/false);
2454
2455   if (DEBUG_MANGLE)
2456     fprintf (stderr, "mangle_special_for_type = %s\n\n", result);
2457
2458   return get_identifier (result);
2459 }
2460
2461 /* Create an identifier for the mangled representation of the typeinfo
2462    structure for TYPE.  */
2463
2464 tree
2465 mangle_typeinfo_for_type (type)
2466      tree type;
2467 {
2468   return mangle_special_for_type (type, "TI");
2469 }
2470
2471 /* Create an identifier for the mangled name of the NTBS containing
2472    the mangled name of TYPE.  */
2473
2474 tree
2475 mangle_typeinfo_string_for_type (type)
2476      tree type;
2477 {
2478   return mangle_special_for_type (type, "TS");
2479 }
2480
2481 /* Create an identifier for the mangled name of the vtable for TYPE.  */
2482
2483 tree
2484 mangle_vtbl_for_type (type)
2485      tree type;
2486 {
2487   return mangle_special_for_type (type, "TV");
2488 }
2489
2490 /* Returns an identifier for the mangled name of the VTT for TYPE.  */
2491
2492 tree
2493 mangle_vtt_for_type (type)
2494      tree type;
2495 {
2496   return mangle_special_for_type (type, "TT");
2497 }
2498
2499 /* Return an identifier for a construction vtable group.  TYPE is
2500    the most derived class in the hierarchy; BINFO is the base
2501    subobject for which this construction vtable group will be used.  
2502
2503    This mangling isn't part of the ABI specification; in the ABI
2504    specification, the vtable group is dumped in the same COMDAT as the
2505    main vtable, and is referenced only from that vtable, so it doesn't
2506    need an external name.  For binary formats without COMDAT sections,
2507    though, we need external names for the vtable groups.  
2508
2509    We use the production
2510
2511     <special-name> ::= CT <type> <offset number> _ <base type>  */
2512
2513 tree
2514 mangle_ctor_vtbl_for_type (type, binfo)
2515      tree type;
2516      tree binfo;
2517 {
2518   const char *result;
2519
2520   start_mangling (type);
2521
2522   write_string ("_Z");
2523   write_string ("TC");
2524   write_type (type);
2525   write_integer_cst (BINFO_OFFSET (binfo));
2526   write_char ('_');
2527   write_type (BINFO_TYPE (binfo));
2528
2529   result = finish_mangling (/*warn=*/false);
2530   if (DEBUG_MANGLE)
2531     fprintf (stderr, "mangle_ctor_vtbl_for_type = %s\n\n", result);
2532   return get_identifier (result);
2533 }
2534
2535 /* Return an identifier for the mangled name of a thunk to FN_DECL.
2536    OFFSET is the initial adjustment to this used to find the vptr.  If
2537    VCALL_OFFSET is non-NULL, this is a virtual thunk, and it is the
2538    vtbl offset in bytes.  
2539
2540     <special-name> ::= Th <offset number> _ <base encoding>
2541                    ::= Tv <offset number> _ <vcall offset number> _
2542                                                             <base encoding>
2543 */
2544
2545 tree
2546 mangle_thunk (fn_decl, offset, vcall_offset)
2547      tree fn_decl;
2548      tree offset;
2549      tree vcall_offset;
2550 {
2551   const char *result;
2552   
2553   start_mangling (fn_decl);
2554
2555   write_string ("_Z");
2556   /* The <special-name> for virtual thunks is Tv, for non-virtual
2557      thunks Th.  */
2558   write_char ('T');
2559   if (vcall_offset != 0)
2560     write_char ('v');
2561   else
2562     write_char ('h');
2563
2564   /* For either flavor, write the offset to this.  */
2565   write_integer_cst (offset);
2566   write_char ('_');
2567
2568   /* For a virtual thunk, add the vcall offset.  */
2569   if (vcall_offset)
2570     {
2571       /* Virtual thunk.  Write the vcall offset and base type name.  */
2572       write_integer_cst (vcall_offset);
2573       write_char ('_');
2574     }
2575
2576   /* Scoped name.  */
2577   write_encoding (fn_decl);
2578
2579   result = finish_mangling (/*warn=*/false);
2580   if (DEBUG_MANGLE)
2581     fprintf (stderr, "mangle_thunk = %s\n\n", result);
2582   return get_identifier (result);
2583 }
2584
2585 /* Return an identifier for the mangled unqualified name for a
2586    conversion operator to TYPE.  This mangling is not specified by the
2587    ABI spec; it is only used internally.  */
2588
2589 tree
2590 mangle_conv_op_name_for_type (type)
2591      tree type;
2592 {
2593   tree identifier;
2594   const char *mangled_type;
2595   char *op_name;
2596
2597   /* Build the internal mangling for TYPE.  */
2598   G.internal_mangling_p = true;
2599   mangled_type = mangle_type_string (type);
2600   G.internal_mangling_p = false;
2601   
2602   /* Allocate a temporary buffer for the complete name.  */
2603   op_name = concat ("operator ", mangled_type, NULL);
2604   /* Find or create an identifier.  */
2605   identifier = get_identifier (op_name);
2606   /* Done with the temporary buffer.  */
2607   free (op_name);
2608
2609   /* It had better be a unique mangling for the type.  */
2610   my_friendly_assert (!IDENTIFIER_TYPENAME_P (identifier)
2611                       || same_type_p (type, TREE_TYPE (identifier)),
2612                       20011230);
2613   
2614   /* Set bits on the identifier so we know later it's a conversion.  */
2615   IDENTIFIER_OPNAME_P (identifier) = 1;
2616   IDENTIFIER_TYPENAME_P (identifier) = 1;
2617   /* Hang TYPE off the identifier so it can be found easily later when
2618      performing conversions.  */
2619   TREE_TYPE (identifier) = type;
2620
2621   return identifier;
2622 }
2623
2624 /* Return an identifier for the name of an initialization guard
2625    variable for indicated VARIABLE.  */
2626
2627 tree
2628 mangle_guard_variable (variable)
2629      tree variable;
2630 {
2631   start_mangling (variable);
2632   write_string ("_ZGV");
2633   if (strncmp (IDENTIFIER_POINTER (DECL_NAME (variable)), "_ZGR", 4) == 0)
2634     /* The name of a guard variable for a reference temporary should refer
2635        to the reference, not the temporary.  */
2636     write_string (IDENTIFIER_POINTER (DECL_NAME (variable)) + 4);
2637   else
2638     write_name (variable, /*ignore_local_scope=*/0);
2639   return get_identifier (finish_mangling (/*warn=*/false));
2640 }
2641
2642 /* Return an identifier for the name of a temporary variable used to
2643    initialize a static reference.  This isn't part of the ABI, but we might
2644    as well call them something readable.  */
2645
2646 tree
2647 mangle_ref_init_variable (variable)
2648      tree variable;
2649 {
2650   start_mangling (variable);
2651   write_string ("_ZGR");
2652   write_name (variable, /*ignore_local_scope=*/0);
2653   return get_identifier (finish_mangling (/*warn=*/false));
2654 }
2655 \f
2656
2657 /* Foreign language type mangling section.  */
2658
2659 /* How to write the type codes for the integer Java type.  */
2660
2661 static void
2662 write_java_integer_type_codes (type)
2663      tree type;
2664 {
2665   if (type == java_int_type_node)
2666     write_char ('i');
2667   else if (type == java_short_type_node)
2668     write_char ('s');
2669   else if (type == java_byte_type_node)
2670     write_char ('c');
2671   else if (type == java_char_type_node)
2672     write_char ('w');
2673   else if (type == java_long_type_node)
2674     write_char ('x');
2675   else if (type == java_boolean_type_node)
2676     write_char ('b');
2677   else
2678     abort ();
2679 }
2680